/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	margin-top:7px;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	margin-top:9px;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0px;
	width:138px;
	cursor:pointer;
	border-right:1px solid #FFF;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	color:#FFF;
	width:100%;
}

.dropdown a:hover{
	
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	margin-left:-1px;
    border:0px;	
	background-color:#b50b0c;
	padding:5px;
	text-align:left;
	font-size:10px;
}

