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

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: url(images/bg_site.gif);
}

/* 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: Verdana, Arial, 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: 12px;
}
h1 {
	color: #0000CC;
	font-size: 16px;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 10px;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width: 770px;
	margin: 5px auto 0px;
	}

/* Styles the div that serves as the container for the content and sidebar navigation.*/
div#container {
	width: 770px;
	margin: 0px auto;
	background: url(images/layout.jpg) no-repeat; /* Faux column bg for page */
	height: 600px; /* Sets height to simulate stetched div for sidebar bg. Change, if more or less room needed. Fixed here only because this is a placeholder site. */
	border-left: 1px solid #000066;
	border-right: 1px solid #000066;
	border-bottom: 1px solid #000066;
}
/* Creates DIV container for sidebar navigation */ 
div#sidebar {
	width: 140px;
	float: left;
}
/* Creates DIV container for content */ 
div#content {
	width: 570px;
	float: right;
	margin-top: 90px;
}
div#copyright {
	font-size: 9px;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	text-align: right;
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 5px;
}
div#copyright a {
	color: #03F;
	text-decoration: underline;
}
/* ----------------- 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 {
	margin: 0px;
	padding: 0px;
	width: 156px;
}

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

/* 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 {
	font-size: 11px;
	color: #00C;
	text-decoration: none;
	display: block;
	width: 146px;
	border-bottom: 1px solid #FFF;
	padding: 5px;
	text-transform: uppercase;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: #0000CC;
	color: #FFFFFF;
	width: auto;
}

