/* GENERAL STYLES */
/* http://www.htmldog.com/articles/suckerfish/dropdowns/example/bones1.html */

#nav, #nav ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
line-height: 1;
}

#nav a {
display: block;
/*width: 70px;*/
font-size: 14px;
color: #4e632e;
text-decoration: none;
font-weight:bold;
margin-left:15px;
margin-right:15px;
padding-top: 20px;
}

#nav a:hover {
  color:#8cc63e; 
}

#nav li { /* all list items */
float: left;
/*width: 80px; /* width needed or else Opera goes nuts */*/
}

#nav .sfhover { 
}

#nav li ul { /* second-level lists */
position: absolute;
background: #FFF;
width: 125px;
padding-left:5px;
padding-right:5px;
left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
padding-bottom: 5px;
}

#nav li ul a{
 font-size: 12px;
 color: #000;
 background: url(../images/bullet2.jpg) no-repeat left center;
 padding-left:15px;
 display:block;
 text-algin:left;
 padding-top:0px;
 padding-bottom:3px;
}

#nav li ul li{
 width: 90%;
 padding-top:5px;
 padding-right:5px;
 text-align:left;
 border-bottom:1px #8cc63e dotted;
 margin-left:0;
}


#nav li ul a:hover{
  color:#8cc63e;
}


#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}



/* EDITOR PROPERTIES */

