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

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

.dropdown li ul{
	margin-top: 1px;
}


.dropdown li{
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	width:201px;
    background-color:#E9BD10;
	cursor:pointer;
	border-bottom:2px solid #E2860B;
}





/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
    padding-left:10px;
	color:#000;
	width:111px;
    height:22px;
}


.dropdown a:hover{
    background-color:Silver;
	text-decoration:none;
	color: #5D6B78;
    width:191px;
    display:block;
}



li a.linkActive{
   background-color:#E2860B;
   width:191px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#A01325 url('../images/expand_down.gif') center left no-repeat;
	padding-left:5px;
	width:auto;
	color:#000;
}

* html .dropdown li.submenu-down{ /*ie6*/
	background:#A01325 url('../images/expand_down.gif') center left no-repeat;
	padding-left:5px;
	display:inline-block;
	color:#000;
	width: 3px;
	white-space: nowrap;
}

* html .dropdown li.submenu-down ul li{ /*ie6*/
	
	padding-left:5px;
	display:inline-block;
	color:#000;
	width: 200px;
	
}

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

