/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0 auto;
	padding: 0;
	text-align: left;
	font: 12px Arial, Helvetica, sans-serif;
	color: #323A43;
	background-color: #1D2738;
}
/* Sets the margin and padding to zero */
ul, li {
	 margin: 0;
	 padding: 0;
	 text-align: left;  /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Styles h1, h2, h3, h4, h5 tags */
h1 {
	color: #551918;
	font-size: 18px;
	margin-top: 20px;
	margin-right: 20px;
	margin-left: 20px;
	text-transform: uppercase;
}
h2 {
	font-size: 12px;
	font-weight: bold;
	border-bottom: 1px solid #CCCCCC;
	background-color: #eeeeee;
	margin-right: 25px;
	margin-left: 25px;
	text-transform: uppercase;
	color: #551918;
	padding: 5px;
	margin-bottom: 10px;
}
h3 {
	font-size: 16px;
}
h4 {
	font-size: 14px;
}

/* Sets the line-height for the p, td, and address tags */
p {
	line-height: 20px;
	margin: 0px 30px 20px;
}

address {
	line-height: 14px;
	font-size: 12px;
	font-style: normal;
	padding: 20px;
	color: #8BA0C5;
	}

/* Styles A links */
a:link {
	text-decoration: underline;
	color: #324462;
	}
a:visited {
	text-decoration: underline;
	color: #324462;
 }
a:hover {
	text-decoration: none;
	color: #CC0000;
	}
a:active, a.selected {
	text-decoration: none;
	color: #f19915;
	}
	
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Styles the DIV that serves as the container for the layout. Setting the left and right margins to auto will center DIV. */
div#container {
	width: 985px;
	margin: 0px auto;
	background: url(images/contentbg.gif) repeat-y; /* Faux column bg for page */
}

/* Creates DIV container for header. */
div#header {
	width: 985px;
	margin: 0px auto;
	background-image: url(images/header.jpg);
	height: 284px;
	background-repeat: no-repeat;
	}
	
/* Creates DIV container for main content */ 
div#content {
	width: 730px;
	margin: 0px auto;
	padding: 0px 0px 10px;
	float: left;
}

/* Creates DIV container for footer content */ 
div#footer {
	font-size: 10px;
	width: 985px;
	margin: 0px auto;
	text-align: left;
	clear: both;
	color: #A1A1A1;
	background-color: #1D2738;
}
div#footer a {
	font-weight: bold;
}
div#footer a:link, div#footer a:visited {
	text-decoration: underline;
	color: #a1a1a1;
}
div#footer a:hover, div#footer a:active {
	text-decoration: none;
	color: #b3b2b2;
}

/* Creates DIV container for sub-navigation */
div#subnav {
	font-size: 10px;
	margin: 0px auto;
	padding: 0px 0px 5px;
	background-color: #1D2738;
	text-transform: uppercase;
}

/* Creates DIV container for copyright statement */
div#copyright {
	font-size: 9px;
	margin: 0px auto;
	padding: 5px 0px 10px;
}
/* ----------------- 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 {
	width: 985px;
	height: 37px;
	padding: 0px;
	margin: 0;
	background: url(images/navbg.gif);
	position: relative;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-transform: uppercase;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
	position: relative;	
	float: left;
}
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	padding: 11px 20px 11px 21px;
	width: auto;
	display: block;
	text-decoration: none;
	color: #CB4845;
	}

/* Creates our hover status. */
ul#mainnav li a:hover {
	color: #ffffff;
	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: #2E0504;
	color: #FFFFFF;
	width: auto;
	}
	
/* ----------------- DROP-DOWN NAVIGATION -------------------------*/
ul#mainnav li ul {
	position: absolute;
	top: 35px;
	left: 0;
	width: 240px;
	display: none;
	background: #5A1B1A;
	padding: 5px 0px 0px;
	}
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: 200px;
	padding: 11px 11px 11px;
	color: #CB4845;
	z-index: 2;
}
ul#mainnav li ul li a:hover {
	width: 200px;
	background: #591B1A;
	color: #ffffff;
	z-index: 2;
}

.clear {
	clear: both;
}
div#rightside {
	float: right;
	width: 250px;
}
address strong {
	color: #FFFFFF;
}
address a:link {
	color: #8BA0C5;
}
div#subnav a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-transform: uppercase;
}
div#content img.right {
	clear: right;
	float: right;
	margin-right: 35px;
	margin-bottom: 20px;
	margin-left: 20px;
}
div#content img.left {
	clear: left;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 25px;
}
div#rightcolumn {
	float: right;
	margin-right: 30px;
}
iframe {
	margin-left: 35px;
}
div#list {
	float: left;
	margin-left: 100px;
	width: 210px;
}
div#content img.center {
	text-align: center;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	float: none;
}

dl.img {
	float: left;
	margin-left: 25px
}	
	dl.img dt {
		text-align: center;
	}
		
		.img dt img {
		}
	
	dl.img dd {
		text-align: center;
		padding: 5px 0 10px;
	}

	
	dl.imgfloat {
		width: 200px;
		float: left;
	}
	
	dl.imgfloat dt {
		text-align: center;
	}
		
		.imgfloat dt img {
			border: 1px solid #333;
		}
	
	dl.imgfloat dd {
		text-align: center;
		font-weight: bold;
		padding: 5px 0 10px;
	}