/* 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;
	list-style:none;
	top: 0px;
	border-top: 1px solid #6C0C04;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	width:232px;
	cursor:pointer;
	border-color: #EA512B;
	border-width: 1px;
	border-left-style: solid;
	border-bottom-style: solid;
	border-right-style: solid;
	border-bottom-color: #6C0C04;
	border-top-style: solid;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 1px;
	padding-bottom: 2px;
	border-right-color: #6C0C04;
	float: left;
}
.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 #6C0C04;
	border-top:0;
	background-color: #BB1D0A;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-left{
	background-image:url(../css/expand_right.gif);
	background-position:center right;
	background-repeat:no-repeat;
	width:232px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu-left{
	background-image:url('../css/expand_right.gif');
	background-position:center right;
	padding:5px;
	width:120px;
}

