/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	text-align:center;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #fff;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	cursor:pointer;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#333;
	text-align:left;
	float:left;
}

/* 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:#FFB119;
	font-family:Arial, Helvetica, sans-serif;
	color:#333;
	padding:0 10px 0 10px;
}

.dropdown a:hover{
	text-decoration:none;
	color:#3F99D2;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	background-color:#D3D3D3;
	border:1px solid #fff;
	border-top:0;
	margin-left:-2px;
	width:180px;
	text-align:left;
	background-image:none;
}

/* these are the LIs that contains a submenu*/
.dropdown li{
	background:url(../imgs/nav/nav-div.gif) left no-repeat;
}

/* 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;
}