/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1px;

}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding-bottom: 0;
	list-style:none;
	width: 220px;
	background: url(menu_bg.png);

			


}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding-top:5px;
	padding-bottom: 5px;
	padding-left: 7px;
	padding-right: 7px;
	background: url(menu_bg_top.png);
	cursor:pointer;
	padding-top: 10px;


}

/* 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:#000;
}

.dropdown a:hover{
	text-decoration:none;
	color: #ff6633;

}

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

}


/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:url(menu_bg_top.png);

}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#f2f2f2 ;


}