/* this is the main UL element*/
.dropdown2{
	visibility:hidden;
	margin:0;
	padding-left:20px;
	list-style:none;color:#333333;
	
	
}

/* these are the inner menus*/
.dropdown2 ul{
	margin:0;
	padding:0;
	list-style:none;
		
	
}
.dropdown2 ul li{
margin:0;
padding:0;
}

/* these are all the LIs in the menu*/
.dropdown2 li{
	margin:0;
	padding:5px;
	background: #666;
	cursor:pointer;
	border-bottom:3px solid #ccc;
	
}
.dropdown2 li:hover{
	border-bottom:3px solid #3b92b3;
	
}

/* these are anchor in the menu */
.dropdown2 a{
	margin:0;
	padding:0;
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	width:100%;
	font-size:12px;
	font-weight:bold;
	text-align:center;
	color:#fff;
}

.dropdown2 a:hover{
	text-decoration:none;
	color:#fff;

}

/* these are the LIs that only belong to submenu*/
.dropdown2 ul li{

	padding:0;
	margin-left:-1px;
	width:235px;
	text-align:left;
	background: url(../img/dark_transparent.png) repeat;
	color:#333333;
	border:none;
}
.dropdown2 ul li:hover{
	border:none;
}
.dropdown2 ul li a{
	padding-top:5px;
	padding-bottom:5px;
	margin:0;
	text-align:left;
	color:#fff;
	
}
.dropdown2 ul li a:hover{
	color:#333333;
	background:#ccc;
}
/* these are the LIs that contains a submenu*/
.dropdown2 li.submenu{

}

/* these are the LIs that contains a submenu and which are in a sub-menu themselves*/
.dropdown2 ul li.submenu{


}
