/***********************************************/
/* 2col_leftNav.css                            */
/* Use with template 2col_leftNav.html          */
/***********************************************/

/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 

body{
	font-family: Arial,sans-serif;
	background-color: #ffffaa;
	color: #333333;
	line-height: 1.166;	
	margin: 0px;
	padding: 0px;
}

a:link, a:visited, a:hover {
	color: #0033cc;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
/* overrides decoration from previous rule for hovered links */


ul {
	line-height: 14px;
	margin-bottom: -10px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Arial,sans-serif;
	margin: 0px;
	padding: 0px;
}

h1{
 font-size: 150%;
 color: #660000;
}

h2{
 font-size: 120%;
 color: #660000;
}

h3{
 font-size: 100%;
 color: #990000;
}

h4{
 font-size: 90%;
 color: #990000;
}

h5{
 font-size: 85%;
 color: #990000;
}



/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#outer-wrapper{
	width: 800px;
	padding: 10px 0px;
	background-color:#999999;
}

#outer-wrapperH{
	width: 800px;
	background-color:#999999;
	height: 2000px;
}

#banner{
	position: relative;
	margin-top: -10px;
	background-color: #660000;
	border-top: 4px solid #660000;
}

#navBar{
	position: absolute;
	width: 150px;
	margin-top: -1px;
	z-index:10;
}

#content{
	position: relative; top: 0px; left: 0px;
  	float:right;
	width: 75%;
	margin: 0;
	padding: 0 3% 0 0;
	z-index: 1;

}


/************* #globalNav styles **************/

#globalNav{
color: #cccccc;
padding: 0px 0px 0px 10px;
white-space: normal;
}
/* 'nowrap' prevents links from line-wrapping if there are too many to fit in one line
   this will force a horizontal scrollbar if there isn't enough room for all links
   remove rule or change value to 'normal' if you want the links to line-wrap */

#globalNav img{
 display: block;
}

#globalNav a {
	font-size: 90%;
	padding: 0px 4px 0px 0px; 
}




/************** .feature styles ***************/

.feature{
	position: relative;
	width: 95%;
	padding: 0px 0px 10px 10px;
	font-size: 80%;
}

.feature h3{
	padding: 30px 0px 5px 0px;
	text-align: left;
}

.feature img{
	float: left;
	padding: 0px 10px 0px 0px;
	margin: 0 5px 5px 0;
}
/* adjust margins to change separation between the feature image and text flowing around it */

.cree {
	margin: 10px;
	float: right;
}

.bold {
	font-weight: bold;
}

.larger {
	font-size: 18px;
}

.left {
	text-align: right;
	position:absolute; left:50px;
	width: 325px;
	background-color:#FFFFFF;
	padding: 10px;
	border: 1px solid #000000;
	}
	
.right {
	text-align: left;
	position:absolute; left:400px;
	width: 325px;
	background-color:#FFFFFF;
	padding: 10px;
	border: 1px solid #000000;
	}

/************* #siteInfo styles ***************/

#siteInfo{
	clear: both;
	border: 1px solid #cccccc;
	font-size: 75%;
	color: #FFFFFF;
	background-color: #660000;
	margin-top: -1px;
	padding: 0px 10px 0px 10px;

}

/* negative top margin pulls siteinfo up so its top border overlaps (and thus lines up with)
	the bottom border of the navBar in cases where they "touch" */

#siteInfo a:link{
	font-size: 100%;
	color: #FFFF00
}

#siteInfo a:visited{
	font-size: 100%;
	color: #00FF00
}

#siteInfo img{
	padding: 4px 4px 4px 0px;
	vertical-align: middle;
}



