/* remove the bullets, padding and margins from the lists */
#key_menu_items ul, #other_menu_items ul{
list-style-type:none;
padding:0;
margin:0;
}
#other_menu_new_line ul{
list-style-type:none;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
#key_menu_items li, #other_menu_items  li, #other_menu_new_line li{
float:left;
position:relative;
z-index:100;
/*padding:0;*/
padding-left:4px;
padding-right:4px;
border-right: 1px solid;
margin:0;
}

#key_menu_items .lastitem, #other_menu_items .lastitem{
float:left;
position:relative;
z-index:100;
/*padding:0;*/
padding-left:4px;
padding-right:4px;
border-right: 0px;
margin:0;
}


/* use the table to position the dropdown list */
#key_menu_items table, #other_menu_items table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
#key_menu_items a, #key_menu_items :visited, #other_menu_items  a, #other_menu_items :visited{
}
/* style the links hover */
#key_menu_items :hover, #other_menu_items :hover {
}

/* hide the sub level links */
#key_menu_items ul ul, #other_menu_items ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;

}

/* make the sub level visible on hover list or link */
#key_menu_items ul li:hover ul,
#key_menu_items ul a:hover ul,
#other_menu_items ul li:hover ul,
#other_menu_items ul a:hover ul{
visibility:visible;
}

#other_menu_items ul li ul li {
	display: block;
	clear: both;
	background: #444;
	border-bottom: 2px solid #222;
	width: 130px;
	padding-left: 4px;
	
}

#key_menu_items ul li ul li {
	display: block;
	clear: both;
	background: #444;
	border-bottom: 2px solid #222;
	width: 160px;
	padding: 6px;
	font-size: 12px !important;
}
