/* this is the main UL element*/
.dropdown{
	margin:0;
	margin-left:10px;
	padding:10px 0 0 50px;
	list-style:none;
	font-weight: bold;
	font-stretch:narrower;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	width:200px;
	border-top:1px solid #0E334E;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:10px 30px 5px 0;
	cursor:pointer;
	font-size:13px;
}

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

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #0E334E;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	/*background-image:url('expand_down.png');
	background-position:center left;
	background-repeat:no-repeat;*/
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	/*background-image:url('expand_right.png');
	background-position:center right;*/
}

.dropdown .mainlink li{
	background-color:#134A8E;
	padding:10px;
	font-size:12px;
	font-weight:normal;
}