@charset "utf-8"; /* CSS Document */ /* Painted Car Parts */ body  { font: 100% Verdana, Arial, Helvetica, sans-serif; background: #ffffff; margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */ padding: 0; padding-top: 25px; text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */ color: #000000; } img{ border: none; } #container { width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */ background: #FFFFFF; margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */ border: 3px solid #c42026; text-align: left; /* this overrides the text-align: center on the body element. */ }  #header { background: #000000;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */ padding: 20px 10px 20px 20px; border-bottom: 2px solid #c42026; }  #header h1 { margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */ padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */ color: #c42026; font-size: 20px; font-weight: bolder; font-style: italic; } #header img{ padding: 0px 30px 0px 0px; } #sidebar1 { margin-right: 10px; padding: 0; width: 130px; float: left;  } #mainContent { float: right; margin: 3px 0 20px 0; border: 0; padding: 0; width: 652px;  } #footer { padding: 7px 10px 7px 20px; background-color: #000000; text-align: center; border-top: 2px solid #c24026; }  #footer p { margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */ padding: 4px 1px 4px 1px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */  font: 0.75em/0.9em "Trebuchet MS", Tahoma, Arial, Geneva, Helvetica, sans-serif; color: white; } div#footer a{ color: #c42026; text-decoration: none; margin: 0 25px 0 25px ; } div#footer a:hover{ color: white; text-decoration: underline; }  h1, h2, h3, h4, h5, h6{ font: "Trebuchet MS", Tahoma, Arial, Geneva, Helvetica, sans-serif; font-weight: bold; font-style: italic; color: #c42026; } p{ font: 1em/1.3em "Trebuchet MS", Tahoma, Arial, Geneva, Helvetica, sans-serif; padding: 0.1em 10px 0.4em 5px; margin: 0; } ol, ul{ font: 1em/1.3em "Trebuchet MS", Tahoma, Arial, Geneva, Helvetica, sans-serif; padding: 0.1em 10px 0.4em 5px; margin: 28px; } li{ padding: 0 2px 0.3em 15px; } .address{ padding: 0.1em 10px 0.1em 35px; margin: 0; font-weight: bold; }	 .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */ float: right; margin-left: 8px; } .fltlft { /* this class can be used to float an element left in your page */ float: left; margin-right: 8px; } .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */ clear:both; height:0; font-size: 1px; line-height: 0px; } /* ---------- 5. Shop Items ---------- */  #searchbar { float: right; margin: 0 10px 5px 15px; border: #c24026 1px solid; } #links { margin-top: 2px; margin-right: 5px; } /** Actinic CSS Modifications : These may need the unchanged parts deleting or akternatively reference the CSS files in actinic folder **/ .tech_menu_button_title	{ width: 128px;  /** Changed  **/ border-top: 3px #c42026 solid;  /** Changed  **/ border-right: 2px #c42026 solid;	/** new */ background-color: #ffffff; } .tech_text_product_section	{ padding: 3px 3px 3px 5px; margin: 0px; color : #c42026; font-size: 14px;  /** Changed  **/ font-weight: 900; } .tech_menu_button_border	{ width: 128px;  /** Changed  **/  border-right: 2px #c42026 solid; border-top: 1px #c42026 solid; } div.tech_menu_button_product { width: 126px;  /** Changed  **/  top: 0px; left: 0px;  border: 1px #ffffff solid; } div.tech_menu_button_product a   { width: 111px;  /** Changed  **/  color: #c42026; text-decoration:none; display:block; padding:3px 3px 3px 12px; text-align:left; background-color: black; font-size: 12px; } div.tech_menu_button_product a:visited { color: #c42026;  text-decoration:none; background-color: #ffffff; background-image: url(../graphics/theme_arrow.gif); } div.tech_menu_button_product a:active { color: #c42026;  text-decoration:none; background-image: url(../graphics/theme_arrow.gif); } div.tech_menu_button_product a:link { color: #c42026;  text-decoration:none; background-color: #ffffff; background-image: url(../graphics/theme_arrow.gif); } div.tech_menu_button_product a:hover { color: #c42026;  text-decoration:none; background-color: #ffea09; background-image: url(../graphics/theme_arrow.gif); } .form_button_add_to_cart	{ width: 82px; padding: 1px 0px 1px 20px; background-color: white; border: 1px solid black; }		 /* Shopping cart and checkout fields ------------------------------------------- */ table.checkout th { color:  #ffea09; background-color: black; } .cartheading { color:  #ffea09; background-color: black; font-weight: bold; } /* ----------- Breadcrumb Menus ----------- */ a.link_breadcrumbs:visited	{	 color : #c42026; text-decoration : none; } a.link_breadcrumbs:link  { color : #c42026; text-decoration : none; } a.link_breadcrumbs:active  { color : #ffea09; text-decoration : underline; } a.link_breadcrumbs:hover  { color : #ffea09; text-decoration : underline; } 
