/* CSS Document */
/* took out what I believe to be unneccesary lines,  plan to modify menu width settings */
#menubar {
	line-height: 30px;
}
#nav, #nav ul {
	list-style: none;
	line-height: 2;   /* for wider menu line */
	background-color:#B0C3C7;
	padding: 0;
	margin: 0;
	font-family: Georgia, sans-serif;
	font-weight: bold;
	z-index: 999;
}
.skinny_line	{
	line-height: 1;   /* for 2 line list items, looks weird using 2 */
}
#nav a {    
  display: block;     
  width: 113px;     /* width of main item, divide width of whole menu by # of menu items*/
  text-decoration:none;
  text-align:center;
  color: black;
  font-size: 14px;
  font-weight: bold;
  font-family: Georgia, sans-serif;
  letter-spacing: 0px;
  line-height: normal;
  padding-bottom: 5px; 
  padding-top: 5px;
} 
#nav a:hover	{
  background-color: #C2D5D9;
  width: 113px;   /*how wide the highlight on main menu is (and sub-menu, if don't have nav li a:hover */  
}
#nav ul li {
	line-height: 18pt;
}
#nav ul li a {
  font-weight:normal;
  font-size: 14px;
  font-family: Georgia, sans-serif;
  letter-spacing: 0px;
}
#nav ul li a:hover	{
  background-color: #C2D5D9;
  width: 113px;		/*how wide the highlight on sub-menu is */ 
}
#nav li {     
  float: left;  /* makes menu horizontal */
 width: 113px;   /* how wide each main list, nav a also specifies this*/

}

#nav li ul {     
  position: absolute;     
  width: 113px;  /*how wide the sub menu is, without this the sub-menu is 1 long line */  
  left: -999em; 
} 

#nav li:hover, #nav li.sfhover {
  background-color: #C2D5D9;  /* color of main menu item when on sub menu */  
} 


#nav li:hover ul, #nav li.sfhover ul  {     
  left: auto; 

}
#nav li:hover ul li, #nav li.sfhover ul li {  
  border-bottom: solid white;	/*for lines between submenu items */
  border-width: 1px;
  width: 113px;
} 