@charset "utf-8";
/* clientstyles.css */

/*Universal style rule */
*{
 /*Block all browser default margins and padding */
 	margin:0;
 	padding:0;
 /*Temporary borders */
	 border:dashed 0px #f00;
}

/*body sets the background color */
body{
	background-color:#7E97A6;
	font-family:Geneva, Tahoma, sans-serif;
	text-align:center;
}

/*wrapper sets the layout width */
#wrapper{
	width:790px;		
	/*put 5 px margin above the wrapper*/
	/*Center the wrapper */
	margin:5px auto 0 auto;
	 /* Required for absolutely-positioned layout only */
  position:relative;
  background-image:url(images/contentBackground.jpg);
  background-repeat:repeat-y;
  border:#f1f5f7 groove 2px;
 }

/* Make branding a positioned element, but don't move it*/
#branding{
	position:relative;
}
/* fixes the mysterious image gap */
#branding img{
	display:block;
}
/* Absolute position links in the branding division*/
#branding a{
	position: absolute;
	text-decoration:none;	
}

#navigation{
	background:#7E97A6;
	background-image:url(images/footer.jpg);
	height:2em;
	/* For absolutely-positioned navigation */
  position:absolute;
	top:150px; /* Same as branding div height */
	left:0px; 	
	width:790px;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;	
}

/* Remove bullets from ul in the navigation */
#navigation ul{
	list-style-type:none;
	text-align:center;
	padding-left:.3em;
	
}

/* List items in the navigation */
#navigation li{
	float:left;
	position:relative;
	text-align:center;
	
}

/* Applies to navigation links visited and unvisited */
#navigation a,
#navigation a:link,
#navigation a:visited{
	text-decoration:none;	
	font-size:100%;
	color:#c8d6dd;	
	display:block;
	height:2em;
	width:8em;	
	text-align:center;
	line-height:2em;
	outline-style:none;
}

/* navigation hover and active links */
#navigation a:hover,
#navigation a:active,
#navigation li.selected a:link,
#navigation li.selected a:visited{
	background:#c8d6dd;
	color:#466573;
	font-style:italic;
	font-weight:bold;
	text-transform:uppercase;
	background-position:center;
	background-repeat:no-repeat;
}
/* End of navigation */

#content{
	margin-left:30px;
	margin-right:30px;
	color:#036;
	padding:2.5em 3em 5em 3em;
	background-color:#c8d6dd;
}
#content a, a:link{
	text-decoration:none;
	color:#466573;
}
#content a:hover, a:active{
	color:#6FB0BE;
}

/* Styles h1, h2, and h3 style rules in the content div */
#content h1, #content h3{
	font-family: Arial, Helvetica, sans-serif;	
	color:#466573;
	font-size:1.55em;
	font-weight:bold;
}
#content h2{
	font-family:"Times New Roman", Times, serif;
	text-align:left;
	font-style:italic;	
	color:#466573;
	}
#content h4{
	font-size:.75em;
	color:#466573;
}
#content h5{
	font-family: Arial, Helvetica, sans-serif;	
	color:#466573;
	font-size:85%;	
}

/* Styles p, ul, and ol styles in the content div */
#content p{
	text-align: left;
	font-size:1.10em;
	line-height:1.25em;
	color:#466573;
	font-family: Arial, Helvetica, sans-serif;
}
#content ul, content ol{
	text-indent:3em;	
	font-size:85%;
	line-height:1.25em;
	color:#466573;
	font-family: Arial, Helvetica, sans-serif;
}
#content table{
	border:  inset thin #c8d6dd;
	width:100%;
	}

.quote{
	text-align:center;
	font-style:italic;
	color:#466573;
	font-size:12px;
	font-weight:bold;
	}

/* Make footer a positioned element, but don't move it */
#footer{
	position:relative;
	background-image:url(images/footer.jpg);
}

/*page footer */
#footer{
position: relative;
clear: both;
}

#footer p{
	font-size:11px;
	line-height:1.25em;
	color:#c8d6dd;
	font-family: Arial, Helvetica, sans-serif;
	padding-left:30px;
	padding-right:30px;
		
}

#footer a,
#footer a:link{
	font-family:Georgia, "Times New Roman", Times, serif;
	text-decoration: none;
	color:#c8d6dd;
}

/* Hover links in the footer division  */
#footer a:hover{
	color:#6FB0BE;
}

/* Active links in footer */
#footer a:active{
	color:#6FB0BE;
}
.top,
.top a, 
.top a:link{
	font-size: smaller;
	text-align:left;
	text-decoration:none;
	color:#466573;
}










	
