/* this is the main UL element*/
.dropdown{
	display:none;
	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;
	padding:0px;
	height:26px;
	width:135px;
	background-color:#27201E;
	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:#ffffff;
	padding-top:10px;
	font-size:12px;	
	width:80%;
	height:100%;
	text-align:center;
}

.dropdown a:hover, a.selected{
	background: url(../images/top_menu_hover_bg.gif) repeat-x center;
	background-position: 15% 25%;
	text-decoration: underline;
}

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

.dropdown ul li a{
	text-align:left;
	padding-left:5px;
	width:96%;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#27201E url('') center left no-repeat;
	width:105px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#27201E url('../right.gif') center right no-repeat;
	padding-right:15px;
	width:105px;
}
