@charset "UTF-8";
body {
	font-family: Georgia, 'Times New Roman', Times, serif; 
	font-size:11pt;
	background: #a0a0a0;
	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;
        background-image:url(images/fadedlogo.png);
        background-position:top left; 
        background-repeat:repeat;
}

a.cart
{
   font-size:9pt;
   font-weight:bold;
   color:black;
   text-decoration:none;
}
a.cart:link { color:black; }
a.cart:visited { color:black; }
a.cart:hover { color:black; text-decoration:none; }

.style1 {font-family: Georgia, 'Times New Roman', Times, serif; font-size:11pt;}
#container {
	width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:10px;
	border: 4px solid #555555;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header { 
	background: #DDDDDD; 
	padding: 0 10px 0 20px;  /* 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. */
	border-bottom: 4px solid #555555;
} 
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	border-top: 4px solid #555555;
} 
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#alert
{
   width:400px;
   padding:4px 4px 4px 4px;
   background-color:#FFFFCC;
   border: #000000 1px solid;
   text-valign:center;
   text-align:center;
}
#error
{
   width:400px;
   padding:4px 4px 4px 4px;
   background-color:#ff0000;
   color:#ffffff;
   border: #000000 1px solid;
   text-valign:center;
   text-align:center;
}
#cartholder
{
   width:90%;
}
#cart
{
   padding: 4px 4px 4px 4px;
   border:black 1px solid;
   width: 70px;
   background-color:#F0F0F0;
   text-align:center;
}

.smallbuttons a, .smallbuttons button
{
        display:block;
        margin:0 7px 0 0;
        background-color:#f5f5f5;
        border:1px solid #000000;
        border-top:1px solid #000;
        border-left:1px solid #000;
        font-size:95%;
        line-height:130%;
        text-decoration:none;
        font-weight:bold;
        color:#333333;
        cursor:pointer;
        padding:5px 10px 6px 7px; /* Links */
	font-family: Georgia, 'Times New Roman', Times, serif;
}
.buttons button{
        width:auto;
        overflow:visible;
        padding:4px 10px 3px 7px; /* IE6 */
}
.smallbuttons button{
        width:auto;
        overflow:visible;
        padding:4px 10px 3px 7px; /* IE6 */
}
