/*this centers the page and sets baseline font for page*/
body {
	font-family:Arial, Helvetica, sans-serif;
	text-align:center;
	text-decoration:none;
	font-size:12px;
	color:#666666;
	margin:0px auto;
	padding:0px;
	float:none;
	clear:none;
	background-color:#FFFFFF;
	
	 

}


/*overall page div's which center the inner divs*/
#containerDiv {
	margin:0px auto;
	padding:0px;
	width:850px;
	/* part 2 of the centering hack*/
	text-align:center;
	clear:none;
	float:none;
}



/*layout of content of the page*/

#header {
	display:block;
	float:left;
	width:825px;
	height:114px;
	background-image:url(../images/css3/header_bg.jpg);
	background-position: 0 0;
	background-repeat:no-repeat;
	
	z-index:99;

	
	}


#menu {
	display:block;
	float:left;

	width:100%;
	height:27px;
	background-image:url(../images/css3/menu_bg.jpg);
	background-position: 0 0;
	background-repeat:repeat-y;
	
	text-align:left;
	z-index:99;
	
	}



#content {
	display:block;
	float:left;

	width:100%;
	height:600px;
	background-image:url(../images/css3/middle_bg.jpg);
	background-position: 0 0;
	background-repeat: repeat-y;
	
	text-align:left;
	z-index:99;

	}


#leftNav {
	display:block;
	float:left;

	width:15%;
	height:100%;
	
	margin-left: 12px;/*aligns div edge to header graphic */
	
	text-align:left;
	z-index:99;
	
	padding: 0px 5px 0px 5px;
	}
	

#rightSide {
	display:block;
	float:left;

	width:70%;
	height:100%;
	
	padding:5px;
	margin-left: 14px;/*creates the gutter between the content divs*/
	
	text-align:left;
	z-index:99;
	
	
	}	
	
	
#singleCol {
	display:block;
	float:left;
	padding:10px;
	width: 90%;
	
	text-align:center;
}

#image {
	display:block;
	float:left;
	padding:5px;
	width:100%;

}

#text {
	display:block;
	float:left;
	width:100%;
	text-align:left;
	padding:5px;
	}

#slideshow {
	width:100%; 
	height:580px; 
	margin-top:0px;
	padding:0px;
	
	}

#pullquote {
 	float: left; 
	width: 150px; 
	margin-top: 10px; 
	margin-bottom: 10px; 
	margin-right: 10px; 
	padding-bottom: 10px; 
	font-family: Times, Georgia; 
	font-size: 1.5em; 
	line-height: 20px; 
	color: #999; 
	text-align: left;
	
	}



#footer {
	display:block;
	float:left;
	
	width:100%;
	height:94px;
	background-image:url(../images/css3/footer_bg.jpg);
	background-position:  0 0;
	background-repeat:no-repeat;
	
	text-align:center;
	padding-top:20px;
	color: #FFFFFF;	
	
	font-size:0.95em;

}

