/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	border-bottom:1px solid #444;
	background-image: url(../images/content/bg_menu.jpg);
	
	background-color:#4192DE;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
	background-image: url(../images/content/bg_menu.jpg);
	
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	cursor:pointer;
	background-image: url(../images/content/bg_menu.jpg);

}

/* 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{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	margin-left:-1px;
	background-image:none;
	
	width:300px;
}
.dropdown ul li a{

	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;	
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
		
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{

	background-position:center right;
	padding:5px;
	width:300px;
	border:1px solid #ddd;
}