/* this is the main UL element*/
.dropdown{	
	visibility:hidden;
	margin:2px;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0px;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li
{		
	margin:0;	
	padding-left:15px;	
	padding-right:15px;
	height:25px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	line-height:30px;
	padding-left:4px;
	padding-right:4px;
	font-weight:bold;
	color:#FFFFFF;
	display:block;
	text-align:center;
	font-size:12pt;
	font-family: Arial, Helvetica, sans-serif;	
	cursor:pointer;
	text-decoration:none;
	z-Index:10;

}

.dropdown a:hover{
	color:#ce5938;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
			
	font-size:12pt;
	font-weight:normal;
	font-family: Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	z-Index:10;
}
.dropdown ul li a
{
	text-align:left;
}
/* these are the LIs that only belong to submenu*/
.dropdown ul li
{	
	background-color:#25519d;
	margin-left:9px;
	margin-right:9px;
	padding:0px;
	width:150px;
	text-align:left;
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
}
.dropdown ul li.submenu a
{	
	text-align:left;
	font-size:12pt;	
}
