

/* top dropdown menu formatting  */


/* another son of suckerfish...
http://www.htmldog.com/articles/suckerfish/dropdowns/
http://www.alistapart.com/articles/horizdropdowns
*/ 


#nav h2.navtitle {
  display: none;
}

#nav ul.menu { /* top level ul */
	margin: 0;
	list-style: none;
	height: 1.6em;
	padding: 0;
	margin-left: 0px;
	z-index: 100;
} 


#nav a {
	display: block;
	margin: 0;
	line-height: 1.6em;
	/*width: 6em;*/
  color: #fff;
	text-decoration: none;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;

}

#nav a:hover {
	color:#003366;
    text-decoration: none;
}

#nav a.active {
  text-decoration: none;
  
}

#nav li {
  display: inline;
  float: left;
  margin: 0;
  padding: 0;
 /* height: 1.6em;*/
  /*width: 10em;/* fixed width works better, but looks ugly */
}

/* second-level lists */



#nav li ul {
  position: absolute;
  width: 10.7em; 
  left: -999em; /* to hide menus because display: none isn't read by screen readers */
	z-index: 100;
}



#nav li li {
  /*height: auto;*/
  float: left;
  width: 6.8em;

}

#nav li ul a {
  /*display: block;*/
  padding: 0.6em;
  width: 8em;
  /*height: auto;*/
  text-align: left;
  line-height: normal;
  color: white;
  background-color: #7CB4DB;

}

#nav li ul a:hover {
	color:#003366;
	 text-decoration: none;
}

#nav li ul ul {
  margin: -1.3em 0 0 10.4em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
  left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
  left: auto;
}
#nav li:hover, #nav li.hover {
	position:static;
}

/* end top dropdown menu  */



/* back to top links   */
.arrup{padding:4px 0pt 4px 15px;}
.arrup{
	background:url("../images/arrow_up.gif") no-repeat 0 10px;
	padding:4px 0 4px 9px;
	background-repeat:no-repeat;
	font-size:0.9em;
}
