/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/

	

#menu{
	font-size:12px;
}




#menu  li ul {
	position:absolute;
	left: 0;
	font-weight: normal;
	padding: 10px 0 10px 0;
	margin-left:-1px;
	background-color:#ff99cc;
	padding-left:4px;
	opacity:0.95;
}
 
#menu p a {
	color: #000;
	text-decoration:underline!important;

}
#menu a{
	color:#000;
	text-decoration:none;
	}
#menu p a:hover{	text-decoration: none!important;
}





#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
}

#nav li { /* all list items */
	float: left;
	padding:0px;
	margin:0px;
	//width: 10em; /* width needed or else Opera goes nuts */
}

ul#nav li a {
	display: block;
	
	
}

ul#nav li a:hover{
	color:#fff;
	background:#333;
	}

#nav ul li a{
padding: 3px 0 3px 0;	
}



#nav li ul { /* second-level lists */
	position: absolute;
	background: #ff99cc;
	width:13em;
	padding:5px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


