@charset "UTF-8";
body  {
	background: #666666 url(images_2/background.jpg);
	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: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 18px;
}
 
#top_email {
	height: 40px;
	margin: 8px auto;
	width: 880px;
}
 
#e-mailbox {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #81814D;
	background: #231F20;
	height: 35px;
	width: 245px;
	line-height: 35px;
	float: right;
	text-align: center;
	margin-top: 5px;
}

#container {
	width: 880px;
	margin: 0 auto;
	text-align: left;
	background: #FFF url(images_2/fauxcolumn.jpg);
} 
#bigpixel {
	width: 880px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	text-align: right;
	padding-right: 10px;
	margin-bottom: 10px;
}

#header {
	background: #DDDDDD;  /* 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: 187px;
	width: 880px;
} 


/*-------------------- Navigation ---------------------*/

#nav {
	width: 880px;
	height: 46px;
	display: inline;
	float: left;
	margin-bottom: 10px;
}

#nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	border: 0;
	top: 0px;
	left: 0px;
	width:  880px;
	height: 46px;
	float: left;
}

#nav ul li {
	padding: 0;
	margin: 0;
	display: block;
	float: left;
	text-indent: -9999px;	
}

#nav li a {
	border: 0;
	display: block;
	height: 46px;
	background: url(images_2/nav.jpg) no-repeat;
}

#nav li a:hover {
	border: 0;
	display: block;
	background-image: url(images_2/nav.jpg);
}

#nav li#home a {
	width: 119px;
}
 
#nav li#home a:link,
#nav li#home a:visited {
	background-position: 0px 0px;
}

#nav li#home a:hover {
	background-position: 0px -46px;
}

#nav li#contactus a {
	width: 168px;
}

#nav li#contactus a:link,
#nav li#contactus a:visited {
	background-position: -119px 0px;
}

#nav li#contactus a:hover {
	background-position: -119px -46px;
}

#nav li#faq a {
	width: 91px;
}

#nav li#faq a:link,
#nav li#faq a:visited {
	background-position: -287px 0px;
}

#nav li#faq a:hover {
	background-position: -287px -46px;
}

#nav li#productsearch a {
	width: 210px;
}

#nav li#productsearch a:link,
#nav li#productsearch a:visited {
	background-position: -378px 0px;
}

#nav li#productsearch a:hover {
	background-position: -378px -46px;
}

#nav li#viewcart a {
	width: 153px;
}

#nav li#viewcart a:link,
#nav li#viewcart a:visited {
	background-position: -588px 0px;
}

#nav li#viewcart a:hover {
	background-position: -588px -46px;
}

#nav li#policies a {
	width: 139px;
}

#nav li#policies a:link,
#nav li#policies a:visited {
	background-position: -741px 0px;
}

#nav li#policies a:hover {
	background-position: -741px -46px;
}

 #sidebar1 {
	width: 222px;
	float: left;
	min-height: 540px;
}

#container #sidebar1 #newslink a {
	color: #FFF;
	text-decoration: none;
	width: 222px;
	text-align: center;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	display: block;
}

#container #sidebar1 #newslink a:hover {
	text-decoration: underline;
}

 #side_barcontent {
	width: 202px;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 10px;
}

#side_barcontent a {
	color: #F4B707;
	text-decoration: none;
}

#side_barcontent a:hover {
	text-decoration: underline;
}

 #mainContent {
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: right;
	width: 640px;
} 

#footer {
	background:#231F20 url(images_2/footer_background.jpg) no-repeat 0px 0px;
	height: 109px;
	width: 880px;
	margin-top: 15px;
} 

#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 */
}

#bottom_links {
	color: #F4B707;
	float: right;
	margin-top: 10px;
	margin-right: 50px;
}

#bottom_links a {
	color: #F4B707;
	text-decoration: none;
}

#bottom_links a:hover {
	text-decoration: underline;
}

.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;
}
#container #Content_main {
	padding: 10px;
}
