/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	list-style:none;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0 0 0 1px;
	padding: 7px 18px;
/*	width:120px; */
	background-color:#E42C2A;
	border-right:1px solid #FFF;
	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:#FFF;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	width: 160px;
	border:1px solid #FFF;
	border-top:0;
	margin-left:-1px;
	background-color:#0062AC;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url('images/expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
/*	width:120px; */
}

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