/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	text-transform: uppercase;
	font-size: 11px;
	
	

}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding-bottom: 0;
	list-style:none;
	width: 100px;

			


}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding-top:10px;
	padding-bottom: 5px;
	padding-left: 11px;
	padding-right: 11px;
	cursor:pointer;



}

/* 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:#000;
}

.dropdown a:hover{
	text-decoration:none;
	color: #891C27;

}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-bottom:1px dotted #666;
	margin-left:-40px;
	background: url(menu_bg.png);


}


/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	

}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#f2f2f2 ;
			overflow-x: visible;


}