#dropdown-menu {
	visibility: hidden; /*IE issue*/
	position: absolute;
	z-index: 20000;
}

/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	/*border-bottom:1px solid #444;*/
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding: 5px 12px 5px 12px;
	/*width:120px;*/
	background: url(../images/generic/bg-menu.png) repeat-x 0 bottom #e9ddd0;
	cursor:pointer;
}

.dropdown li.active {
	background: url(../images/generic/bg-menu-on.png) repeat-x 0 bottom #f0e9e0;
}

/* 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: #44170d;
	width:100%;
	font-size: 13px;
}

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

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

.dropdown ul li:hover{
	background: url(../images/generic/bg-menu-on.png) repeat-x 0 bottom #f0e9e0;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:url(../images/generic/bg-menu.png) repeat-x 0 bottom #e9ddd0;
	/*padding-left:20px;
	width:105px;*/
	padding: 5px 12px 5px 12px;
}

.dropdown li.submenu-down:hover, li.menu-rollover:hover {
	background:  url(../images/generic/bg-menu-on.png) repeat-x 0 bottom #f0e9e0;
	/*padding-left:20px;
	width:105px;*/
	padding: 5px 12px 5px 12px;
}

li.submenu-down ul li {
	width: 200px;
	margin: 0;
}

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