/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	background-image: url(images/bg.gif);
	background-repeat: repeat-x;
	background-color: #302E2F;
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, ol, td {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: #333333;
}
ul, li {
	 margin: 0;
	 padding: 0;
	 text-align: left;  /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p tag */
p {
	font-size: 12px;
	line-height: 16px;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 30px;
}

h1 {
	text-indent: 5pt;
	font-size: 18px;
	color: #FFFFFF;
	background-image: url(images/heading.jpg);
	text-transform: uppercase;
	padding: 5px 0px 5px 5px;
	border: 1px solid #7E7A7A;
	width: 855px;
	margin-top: 5px;
	margin-bottom: 20px;
}
h2 {
	text-indent: 5pt;
	font-size: 12px;
	color: #FFFFFF;
	background-image: url(images/heading.jpg);
	text-transform: uppercase;
	padding: 5px;
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #7E7A7A;
}
/* Creates the general link style for the site. This is not the main navigation.  */
a:link, a:visited {
	color: #333333;
	margin: 0px;
	padding: 0px;
}
a:hover {
	text-decoration: underline;
	color: #FA3435;
}

address {
	font: bold normal 11px Arial, Helvetica, sans-serif;
	color: #F5C950;
	padding: 0px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 10px;
	text-transform: uppercase;
}
address a:link, address a:hover, address a:visited {
	padding: 0px;
	margin: 0px;
	text-decoration: underline;
	color: #F5C950;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	background: url(images/header.jpg) no-repeat;
	position: relative;
	width: 875px;
	height: 146px;
	margin: 0px;
	padding: 0px;
	text-align: left;
	z-index: 2;
}
div#nav {
	top: 119px;
	position: absolute;
	text-align: left;
	width: 100%;
}

/* ----------------- MAIN NAVIGATION ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	font: bold 11px Arial, Helvetica, sans-serif;
	margin: 0;
	position: relative;
	padding: 0px;
	width: 875px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
	position: relative;	
	float: left;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	color: #000000;
	display: block;
	padding: 6px 30px;
	text-decoration: none;
	position: relative;
	text-transform: uppercase;
}

/* Creates our hover status. */
ul#mainnav li a:hover {
	background: url(images/navcurrent.jpg) repeat-x;
	color: #000000;
	width: auto;
}

/* Creates our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: url(images/navcurrent.jpg) repeat-x;
	color: #000000;
	width: auto;
	text-transform: uppercase;
}

/* ----------------- DROP-DOWN NAVIGATION -------------------------*/
ul#mainnav li ul {
	position: absolute;
	top: 26px;
	left: 0;
	width: 150px;
	display: none;
	background: url(images/navcurrent.jpg);
	}
ul#mainnav li>ul {
	top: auto;
	left: auto;
}
/* Fix IE. Hide from IE Mac \*/
* html ul#mainnav li li { float: none; height: 1%; }
* html ul#mainnav li li a { height: 1%; }
/* End */
ul#mainnav li li {
	display: block;
	float: none;
}
ul#mainnav li:hover ul, ul#mainnav li.over ul {
	display: block;
	z-index: 2;
}
ul#mainnav li ul li a, ul#mainnav li ul li a:link, ul#mainnav li ul li a:visited, ul#mainnav li ul li a:active {
	display: block;
	width: 150px;
	color: #000000;
	z-index: 2;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 30px;
	background-image: url(images/navcurrent.jpg);
	background-repeat: repeat-x;
}
ul#mainnav li ul li a:hover {
	width: 150px;
	color: #ffffff;
	z-index: 2;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 30px;
}


/* Creates the div container for the site. */
div#container {
	background: #FFFFFF url(images/contentbg.gif) repeat-y;
	width: 875px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: left;
	position: relative;
}

/* Creates the div for the content */
div#content {
	padding: 5px;
}

div#content img {
	margin: 0px;
	padding: 0px;
	border: none;
}

div#content img.right {
	float: right;
	clear: right;
	margin-left: 30px;
	margin-right: 32px;
	margin-top: 0px;
	margin-bottom: 10px;
	padding: 0px;
}

div#content img.left {
	padding: 0px;
	margin: 0px;
	float: none;
}

/* Creates the div container for the footer. */
div#footer {
	clear: both;
	margin: 0px auto;
	width: 875px;
	height: 6px;
	background-repeat: no-repeat;
	background-color: #000000;
}

div#footer a {
	font-size: 9px;
	color: #FBC644;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
}

/* Styles the copyright div */
div#copyright {
	text-align: center;
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	color: #999999;
	margin: 10px auto 20px;
	padding: 0px;
	clear: both;
	width: 875px;
	text-transform: uppercase;
}
div#copyright a:link, div#copyright a:visited {
	font-size: 10px;
	color: #999999;
	text-decoration: underline;
	font-weight: normal;
}
div#copyright a:hover {
	font-size: 10px;
	color: #fff;
	text-decoration: underline;
	font-weight: normal;
}
/* ----------------- right side ----------------- */

div#rightside {
	float: right;
	width: 238px;
	margin: 0px;
	padding: 0px;
	vertical-align: top;
	background-color: #1E3765;
}
div#rightside img {
	border: none;
	background-color: #970000;
}

ul#list {
	font-size: 11px;
	font-weight: bold;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
}

ul#list li {
	line-height: 13pt;
	list-style-position: outside;
	list-style-type: disc;
}
ul#list2 {
	font-size: 12px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 80px;
}

ul#list2 li {
	line-height: 13pt;
	list-style-position: outside;
	list-style-type: disc;
}

.clear {
	clear: both;
}
div#address {
	bottom: 0px;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #A9D2FD;
	margin-right: 30px;
	margin-left: 30px;
	padding-top: 8px;
	margin-top: 0px;
	margin-bottom: 0px;
	clear: both;
}
.name {
	color: #F00F17;
}
.clearleft {
	clear: left;
}
div#images {
	float: right;
	margin-left: 30px;
	margin-right: 32px;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 270px;
}
div#bucket {
	background-color: #D1CFD0;
	width: 283px;
	border: 1px solid #7E7A7A;
	float: left;
	height: 261px;
	margin-bottom: 5px;
}
div#list {
	width: 115px;
	padding-right: 5px;
	padding-top: 8px;
	position: relative;
	top: 0px;
	right: 0px;
	float: right;
	clear: right;
	height: 190px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	line-height: 18px;
	font-weight: bold;
	z-index: 0;
}
div#clear {
	clear: both;
}
div#catalog {
	float: right;
	clear: right;
}
div#catalog img {
	margin: 5px 15px 0px 0px;
	padding: 0px;
	border-right: none;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
div#searchbox {
	position: absolute;
	top: 50px;
	right: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: bold;
	color: #FFFFFF;
	font-style: normal;
}
.search {
	color: #FFFFFF;
}
div#topnav {
	color: #868686;
	position: absolute;
	top: 6px;
	right: 10px;
	font-size: 12px;
}

div#topnav a:link, div#topnav a:visited {
	color: #CCCCCC;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
}
div#topnav a:hover {
	color: #FFFFFF;
}
div#vendorbox {
	float: left;
	width: 255px;
	margin-left: 20px;
}
h3 {
	font-size: 12px;
	text-transform: uppercase;
	margin: 0px 0px 0px 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	background-color: #eeeeee;
	padding: 5px;
}
h4 {
	font-size: 13px;
	line-height: 16px;
	margin-right: 25px;
	margin-bottom: 0px;
	margin-left: 25px;
	padding: 5px;
	color: #F10009;
	border: 1px solid #CCCCCC;
}
div#halfbox {
	float: left;
	width: 380px;
	margin-left: 20px;
	margin-bottom: 20px;
}
div#clear {
	clear: both;
}
div#list2 {
	width: 115px;
	padding-right: 5px;
	padding-top: 8px;
	position: relative;
	top: 0px;
	right: 0px;
	float: right;
	clear: right;
	height: 190px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	line-height: 16px;
	font-weight: bold;
	z-index: 0;
}
div#thirdbox {
	float: left;
	width: 230px;
	margin-left: 20px;
	margin-bottom: 20px;
}
div#spacer {
	width: 5px;
	float: left;
	margin-bottom: 5px;
	height: 261px;
}
div#searchbox table td {
	color: #FFFFFF;
	font-style: normal;
	font-size: 9px;
}
