/*keeps the vertical scrollbar visible to keep the page from shifting*/
html {
	overflow-y: scroll;
	overflow-x: auto;
}
body {
	margin: 0px;
	padding: 0px;
	font-family: verdana, helvetica, geneva, arial, sans-serif;
	background-color: #e5e5e5;
	width: 100%
}
 
#wrapper {
/*keep all page content with in here*/
	position: relative;
	width: 760px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
	background: url(../layout_images/background.jpg) repeat-y scroll center top;
}
#header {
	position: relative;
	padding: 0px 0px 0px 0px;
	margin-left: 10px;
	height: 77px;
	width: 740px;
	background-color: #206BB1;
}

.logo_img{
  position: absolute;
  top: 6px;
  left: 15px;
  z-index: 2;
}
.logo_img a img{
    border: none;
}
.logo {
	float: left;
	position: relative;
	top: -8px;
	font-size: 13px;
	color: #ffffff;
	padding-left: 20px;
	z-index: 3;
	font-family: verdana, helvetica, geneva, arial, sans-serif;
	
}
.logo a:hover, .logo a:visited, .logo a:link{
  text-decoration: none;
  color: #ffffff;
  
}
/* site map and footer*/
#sitemap {
	clear: both;
	text-align: center;
	font-size: .6em;
	color: #666666;
	padding-top: 30px;
}
#sitemap a:link, #sitemap a:visited {
	color: #666666;
	padding-top: 5px;
	padding-bottom: 5px;
}
#sitemap a:hover {
	color: #206BB1;
}
#footer {
	clear: both;
	margin: 0pt auto;
	padding: 0pt 0pt 30pt 0px;
	width: 760px;
	font-size: .7em;
	background: url(../layout_images/footer.jpg) no-repeat scroll center bottom;
}
#footer_text{
	font-size: .6em;
	color: #666666;
	padding: 5px;
	text-align: center;
}
#footer_text a:link, #footer_text a:visited{
  color: #666666;
}
#footer_text a:hover{  
  color: #206BB1
}
/* menu starts */
#nav_wrap{
  padding-left: 10px;
}
#nav {
/*makes sure menu is above content with z-index*/
  z-index: 100;
}

#nav, #nav ul {
/* all lists */
	padding: 0;
	margin: 0;
	font-family: verdana, helvetica, geneva, arial, sans-serif;
	font-size: .9em;
	font-weight: bold;
	list-style: none;
	line-height: 1;
	z-index: 100;
}
#nav li {
/* all list items */
	float: left;
	width: 123px; /* width needed to keep Opera happy */
}
#nav li ul {
/* second-level lists inc width */
	position: absolute;
	width: 123px;
	left: -999em;
/* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav a {
/* width is for ie mouseover */
	display: block;
	width: 120px;
}
#nav li ul ul {
/* third-and-above-level lists submenu positioning*/
	margin: -4em 0 0 10em;
}
#nav li:hover ul ul, #nav li.sfhover ul ul {
/* hides submenus */
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul {
/* lists nested under hovered list items */
	left: auto;
}
#nav a:link, #nav a:visited {/*fix width in ie 6.0*/
/* menu color style */
  width: 118px;
	border-left: 1px solid #9ec3de;
	border-right: 1px solid #9ec3de;
	border-bottom: 1px solid #9ec3de;
	border-top: 1px solid #9ec3de;
	padding: 6px 2px 6px 1px; /*the right 2 px makes the width right*/
	background-color: #e7edf5;
	text-decoration: none;
	color: #2d486c;
}
html>body #nav a:link, html>body #nav a:visited{
	width: 120px;
	}
#nav a:hover {
/* mouseover color style */
	color: #2d486c;
	background-color: #ffffff;
}
/* breadcrumbs bar */
#breadcrumbs_background {
	clear: both;
	position: relative;
	left: 10px;
	top: 0px;
	width: 740px;
	height: 25px;
	background-color: #9ec3de;
	z-index: 1;
}
.breadcrumbs_text{/*old*/
	padding-left: 20px;
	font-family: verdana, helvetica, geneva, arial, sans-serif;
	font-size: .8em;
}
.breadcrumbs{
	position: absolute;
	top: -22px;
	left: 10px;
	font-family: verdana, helvetica, geneva, arial, sans-serif;
	font-size: .8em;
	z-index:  2;
	font-weight: bold;
	color: #333333;
}
.breadcrumbs a:link, .breadcrumbs a:visited{
	color: #333333;
}
.breadcrumbs a:hover{
	color: #2D486C;
}
.date {
	float: right;
	position: relative;
	top: 2px;
	font-size: .8em;
	color: #333333;
	padding-top: 1px;
	padding-right: 15px;
	font-weight: bold;
}
.header_info{
  display: none;
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: verdana, helvetica, geneva, arial, sans-serif;
	font-size: 8px;
	text-align: center;
	color: #ffffff;
}
.header_info a:link, .header_info a:visited, .header_info a:hover{
  text-decoration: none;
  color: #ffffff;
  
}
