@charset "utf-8";
body {
	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: #a09e96;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: #eceade url(../img/bodyBG.jpg) left top repeat-x;
}
#container {
	width: 900px;
	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. */
	background: #fff url(../img/contentBG.jpg) top center no-repeat;
}
#header {
	background: #eceade url(../img/header.jpg) top center no-repeat;
	height: 150px;
	padding: 0;  /* 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. */
	margin: 0 0 20px 0;
	position: relative;
}
#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 */
}
#nav {
	height: 28px;
	margin: 0;
	padding:0;
	position: absolute;
	bottom: -1px;
	left: 0px;
	width: 520px;
}
#nav ul{
	font-size: 16px;
	font-weight: bold;
	color: #666560;
	display: inline;
	margin: 0px;
	position: relative;
}
#nav ul li{
	margin: 0px;
	float: left;
	display: inline;
	list-style: none;
}
.selected {
	display: inline;
	zoom: 1;
	padding: 0 0 0 15px;
	margin: 0px;
	border-bottom: 5px solid #788634;
	text-decoration: none;
}
#nav ul li a{
	display: inline;
	zoom: 1;
	padding: 0 0 0 15px;
	margin: 0px;
	border-bottom: 5px solid #788634;
	color: #f1f7dc;
	text-decoration: none;
}
#nav ul li a:hover {
	margin: 0px;
	border-bottom: 5px solid #e3efb1;
}
#mainContent {
	padding: 0 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
}
#mainContent h1 {
	margin: 0;
	font-size: 24px;
	padding: 0;
}
#mainContent h2 {
	margin: 0; 
	padding: 0;
	font-size: 18px;
}
#mainContent p {
	margin: 0; 
	padding: 10px 0;
}
#mainContent a {
	font-weight: bold;
	text-decoration: none;
	color: #a09e96;
}
#mainContent a:hover {
	text-decoration: underline;
}
#flash {
	margin: 5px 25px 25px 0;
	width: 400px;
	float: left;
	border: solid 1px #788634;
}
#cta {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0 0 10px 0;
	width: 400px;
	height: 190px;
	border: solid 1px #788634;
	overflow: hidden;
}
#cta ul{
	padding:0; 
    margin:0; 
    list-style-type: none;
	width: 400px;
	height: 190px;
}
#cta ul li{
	float:left;
	display: inline;
}
#cta ul li a{
	display: block; 
    text-decoration: none;  
    text-align: left;
	padding:200px 0 0 0;
}	
#cta a.sellers {
    background:url(../img/sellersCTA.jpg); 
    height:190px; 
    width:200px;
}
#cta a.styles {
    background:url(../img/stylesCTA.jpg); 
    height:190px; 
    width:200px;
}
		
#cta a.sellers:hover {
    background:url(../img/sellersCTA.jpg); 
	background-position: 0 -190px;
}
#cta a.styles:hover {
    background:url(../img/stylesCTA.jpg);
	background-position: 0 -190px; 
}
	
#sig {
	padding: 0;
	text-align: left;
	width: 425px;
	margin: 0 0 0 425px;
}
#spacer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(../img/spacerBG.jpg) top center no-repeat;
	height: 65px;
	clear: both;
}
#product {
	padding: 0;
	width: 270px;
	height: 210px;
	border: solid 2px #788634;
	margin: 10px 14px 10px 0;
	float: left;
}
#productLast {
	padding: 0;
	width: 270px;
	height: 210px;
	border: solid 2px #788634;
	margin: 10px 0;
	float: left;
}
.left {
	padding: 0;
	border: solid 2px #788634;
	margin: 5px 10px 5px 0;
	float: left;
}
.right {
	padding: 0;
	border: solid 2px #788634;
	margin: 5px 0 5px 10px;
	float: right;
}
#clear {
	padding: 0;
	width: 100%;
	height: 5px;
	margin: 0;
	clear: both;
}
#footer {
	padding: 0 25px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: right;
	font-size:10px;
}
#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 */
}
#footer a {
	text-decoration: none;
	font-weight: bold;
	color: #a09e96;
}
#footer a:hover {
	text-decoration: underline;
}
#colL {
	margin: 5px 30px 10px 0;
	width: 410px;
	float: left;
}
#colR {
	margin: 5px 0 10px 0;
	width: 410px;
	float: left;
}