/* CSS Document */

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

<!--

body {
	background:#660000;
	margin:0 auto; /* Always set margins to 0. Some browsers automatically apply them. */
	padding:0 0 20px 0; /* Always apply padding if you apply margins */
}

/* 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, lo, td {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	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: 14px;
	color:#000000;
	margin-left:15px;
	line-height:20px;
}

h1 {
	font-size:20px;
	font-style:italic;
	color:#416078;
	margin:15px 0 15px 0;
}

h2 {
	font-size:20px;
	font-style:italic;
	color:#000099;
	margin:15px 0 15px 0;
}

address {
	font-size: 11px;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	font-style:normal;
}

div#addresscontainer {
	margin:0px;
	padding:185px 0 0 135px;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
div#container {
	width:770px;
	height:auto;
	margin:0 auto;
}

/* Created to hold the background stip that is displayed when content area is stretched */
div#contentcontainer {
	float:left;
	width:770px;
	height:auto;
	background-image:url(images/contentstrip.gif);	
	background-repeat:repeat-y;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width:770px;
	height:201px;
	background-image:url(images/header_bg.gif);
	background-repeat:no-repeat
}

div#navbackground {
	background-image:url(images/nav_bg.gif);
	float:left;
	width:770px;
	height:49px;
}

div#contentarea {
	float:right;
	width:680px;
	height:auto;
	background-image:url(images/content_bg.gif);
	background-repeat:no-repeat;
	padding:10px 50px 5px 40px;
}

div#footer {
	clear:both;
	width:770px;
	height:67px;
	background-image:url(images/footer_bg.gif);
	background-repeat:no-repeat;
}

img.right {
	float:right;
	border:#663300 1px solid;
	margin:0 0 10px 15px;
	padding:2px;
	clear:right;
}

img.left {
	float:left;
	border:#663300 1px solid;
	margin:0 10px 15px 0;
	padding:2px;
	clear:left;
}

/* -----------------Main Navigation Images and Link Effects. ----------------- */


div#navigation {
	float:left;
	margin:25px 100px 0 65px;
}

div#navigation a {
	font-family:Arial, Helvetica, sans-serif; 
	color:#FFFFFF;
	font-size:14px;
	padding:0 5px 0 5px;
	text-decoration:none;
	font-weight:bold;
}

div#navigation a:visited {
	color:#FFFFFF;
	text-decoration:none;
}

div#navigation a:hover {
	color:#660000;
	text-decoration:none;
	background-repeat:no-repeat;
}

div#navigation a.current {
	color:#660000;
	text-decoration:underline;
}

/* ----------------- Bottom Navigation Link Effects. ----------------- */
div#bottomnav {
	margin:0 auto;
}

div#bottomnav {
	text-align:center;
	font-size: 12px;
	padding:30px 20px 0 15px;
}

div#bottomnav a { 
	color:#999999;
	font-family:"Times New Roman", Times, serif;
	padding:0 20px 0 15px;
	
}

div#bottomnav a:visited {
	color:#999999;
	text-decoration:none;
}

div#bottomnav a:hover {
	color:#000000;
	text-decoration:none;
	background-image:url(images/buttonbg.gif);
	background-repeat:no-repeat;
	text-decoration:underline;
}

div#bottomnav a.current {
	color:#999999;
	text-decoration:underline;
	background-repeat:no-repeat;
}

/* ----------------- Copyright ----------------- */
div#copyright {
	text-align:center;
	font-size: 10px;
	padding-top:30px;
	color:#999999;
	clear:both;
}

div#footer a:link { 
	color:#cccccc;
}

div#footer a:hover {
	color:#999999;
	text-decoration:none;
}


/* ----------------- IMAGE ELEMENTS ----------------- */

clear {
	clear: both;
}