@charset "utf-8"; /* CSS Document */  /* --------- 1. defaults  --------- */ *	{ margin: 0; padding: 0; } body  { font: 100% "Trebuchet MS", Tahoma, Arial, Geneva, Helvetica, sans-serif; background: rgb(255,255,204); margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */ padding: 0; 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	{ padding: 0; margin: 0; border: none; } ul {  padding: 0px; margin:0px; } #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 */ text-align: left; /* this overrides the text-align: center on the body element. */ }  #header { position: absolute; top: 25px; width: 784px;  background: black;  padding: 0 8px 0 8px;  /* 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. */ height: 90px; z-index: 2; } #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: 4px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */ color: rgb(177,161,103); font-size: 21px; z-index: 2; } #menubar { position: absolute; top: 115px; width: 794px;  height: 23px; padding: 0; background-color: rgb(177,161,103); z-index: 1; border-left: solid 3px rgb(48, 31, 23); border-right: solid 3px rgb(48, 31, 23);	 } /* menu design */ div#menubar ul{ margin: 0; padding: 0; }	 div#menubar ul li { font: 1.05em/0.6em "Times New Roman",times, palatino, serif;  font-weight: 900; font-style: italic; list-style-type: none; float: left; background-color: rgb(177, 161, 103); padding: 0 0 0px 0; } div#menubar ul li a { display:block; width:185px; text-indent:3px; text-decoration: none; line-height:1.2em; color: black; border:1px solid black; /* format the design */ } div#menubar ul li a:hover { text-decoration: none; color: white; background-color: rgb(229,220,179); } #inner_container{ position: absolute; top: 138px; width: 794px; padding: 0; z-index: 1; background: rgb(255,255,204); border: solid 3px rgb(48, 31, 23); border-top: none; } #sidebar1 { border: 0; margin-right: 10px; padding: 0 0 3px 0; padding-top: 5px; width: 127px; float: left; background: black; } #mainContent { float: left; margin: 10px 0; border: 0; padding: 0; width: 645px;  }  #footer {  padding: 7px 10px 7px 20px; text-align: center; background: black; } #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: rgb(212, 175, 55); text-decoration: none; margin: 0 25px 0 25px ; } div#footer a:hover{ color: white; text-decoration: underline; }  /* ---------- 3. fonts ---------- */ h1, h2, h3, h4, h5, h6{ font-family: "Times New Roman", times, palatino, serif; letter-spacing: 0.05em; font-weight: 900; color: rgb(48,31,23); font-style: italic; }  h1	{ font-size: 1.3em; margin: 0em; padding: 0em; } h2	{ font-size: 1.1em; padding: 0.7em 0em 0em 0em; }  h3	{ font-size: 1.35em; margin: 0.7em 0em 0.5em 0em;	 } h4	{ font: 800 0.9em/1.3em "Times New Roman", times, palatino, serif; margin: 0.9em 0em 0.3em 0em; text-align: center; } p{ font: 1em/1.3em  "Trebuchet MS", Tahoma, Arial, Geneva, Helvetica, sans-serif; padding: 8px 0 8px 0; margin: 0; } #mainContent ul li{ margin: 0px 0 0.3em 2px; padding: 2px; list-style-type: none; font: 0.9em/1em "Trebuchet MS", Tahoma, Arial, Geneva, Helvetica, sans-serif; } /* ---------- 4. Image Positioning and Clearing ---------- */  	 .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; } #links { margin: 2px 5px 4px 5px; } #links img { margin: 0 2px 0 0; } /**** Cart and Checkout Colours  ***/ .cart { border-bottom: solid 1px black; } .checkout-cartheading { border-top: solid 1px black; border-bottom: solid 1px black; } .cartheading { background-color: black; } h2.checkout-heading { background-color: black; } h3.checkout-heading { background-color: black; } table.checkout th { background-color: black; }	 .checkout-change-button	{ font-weight:bolder; color: red; background-image: none; }
