     
/* submenu, it's hidden by default */
#nav ul {
	position:absolute; 
    left:0; 
    display:none; 
     margin:0 0 0 -1px; 
     padding:0; 
     list-style:none;
			
	width:13em;
}
         
ul#nav li ul li {
	background-color: rgb(20, 32, 61);
	display:block;
	width: 12.5em;
	padding:10px 10px 0 15px
}
ul#nav li ul li:last-child {
	height:.25em;
}
ul#nav li ul li.pushDown {
	padding:0;
	height:10px;
	background-color: transparent;
}

 
/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #nav2 ul {
    margin:0 0 0 -2px;
}
