/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;color:#333333;
	
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:80px;
	background: #fff;
	cursor:pointer;
	border-bottom:3px solid #ccc;
}
.dropdown li:hover{
	border-bottom:3px solid #3b92b3;
	
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown 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:#000000;
}
.dropdown a:visited{
	text-decoration:none;
	color:#333333;

}
.dropdown a:hover{
	text-decoration:none;
	color:#333333;

}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	padding:0;
	margin-left:-1px;
	width:235px;
	text-align:left;
	background: url(../img/white_transparent.png) repeat;
	color:#333333;
	border:none;
}
.dropdown ul li:hover{
	border:none;
}
.dropdown ul li a{
	padding-top:5px;
	padding-bottom:5px;
	margin:0;
	text-align:left;
	color:#333333;
	
}

.dropdown ul li a:hover{
	color:#fff;
	background:#333333;
}
/* these are the LIs that contains a submenu*/
.dropdown li.submenu{

}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{


}
