/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	list-style:none;
	color: #FFFFFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
	top: 0px;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	width:222px;
	cursor:pointer;
	border-color: #EC5333;
	border-width: 1px;
	border-left-style: solid;
	border-bottom-style: solid;
	border-right-style: solid;
	border-bottom-color: #700401;
	border-top-style: solid;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 1px;
	padding-bottom: 2px;
	border-right-color: #700401;
	float: left;
}
.dropdown li li {
	background-color: #BB1D0A;
}
.dropdown li:hover{

	background-color:#333333;

}
/* 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:#FFFFFF;
}

.dropdown a:hover{
	text-decoration:underline;
	color: #FFFF99;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	border-top:0;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-left{
	background-image:url(expand_right.gif);
	background-position:center right;
	background-repeat:no-repeat;
	width:222px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu-left{
	background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	width:120px;
}
