/* CSS Document */

body {
	margin: 0;
	padding: 0;
}

a:link, a:visited, a:hover, a:active {
	color: #000;
	text-decoration: none;
}


/***********LAYOUT********************/

#container {
	position: relative;
	top: 0px;
	left: 0px;
	border: solid 5px #fff;
}

#leftnav {
	position: absolute;
	top: 0;
	left: 0;
	width: 140px;
	height: 100%;
	background-color: #1CBBB4;
	border-right: solid 2px #fff;
}

#banner {
	width: 100%;
	height: 75px;
	border-bottom: solid 2px #fff;
	background-color: #1CBBB4;
}

#banner img {
	clear: both;
	float: right;
}
	
#subnav {
	position:absolute;
	top: 55px;
	left: 150px;
	width: 400px;
	/*padding-left: 10px;*/
	height: 25px;
}

#contentContainer {
	width: 100%;
	background-color: #C4DF9B;
}

#content { /*had to pull the padding out of contentContainer div, b/c it was causing an overflow on the right side of the screen, i.e. horizontal scroll. */
	padding-left: 150px;
	overflow: auto;

}



/******VISUAL STYLES************/
a.nav:link, a.nav:visited, a.nav:active, a.nav:hover { 
	cursor: hand; 
	color: #FFFFFF; 
	text-decoration: none;
	font-weight: bold;
}

a.current:link, a.current:visited, a.current:active, a.current:hover {
	cursor: hand; 
	color: #9E0B0E; 
	text-decoration: none;
	font-weight: bold;
}


/*****TEXT STYLES ************/

.bodytext {
	font: lighter 12px Verdana, Arial, Helvetica, sans-serif;
	color: #000;
}

.leftnav { /*USE '.white', '.bodytext' & '.strong' WITH THIS */
	padding-left: 5px;
	/*background-color: #1CBBB4;*/
}

.subnav { /*USE '.white', '.bodytext' & '.strong' WITH THIS */
	font-size: 14px;
}

.header { /*USE '.strong' & '.bodytext' WITH THIS */
	font-size: 18px;
	font-style: italic;
}

.copyright { /*USE '.bodytext' & '.white' WITH THIS */
	font-size: 10px;
}

.subheader { /*USE '.bodytext' WITH THIS */
	font-size: 14px;
	font-weight: normal;
}

.highlight {
	color: #9E0B0E;
}

.strong {
	font-weight: bold;
}

.white {
	color: #FFF;
}
