/* this is the main UL element*/
.dropdown {
	font-family:Arial;
	font-size:9px;
	font-weight:Bold;
	color:#ececec;
	margin:0;
	padding:0;
	list-style:none;
	display:none;
position: static;
}

/* these are the inner menus*/

.dropdown ul{
	padding:0;
	margin-top:33px;
	* margin-top:0px;
	list-style:none;
	
}
/* these are all the LIs in the menu*/
.dropdown li{ 
	margin:0;
	padding:0;
	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;
	font-size: 11px;
	font-weight: normal;
	color:#fff;
		margin:0;

}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li a {margin:0;background-image: none;background-color: #ff6500; height:auto;
padding:7px; padding-left: 15px;
width:auto !important;}
.dropdown ul li a:hover {background-image: none;text-decoration: none;background-color: #ff4f00;}

.dropdown ul li {
	clear:both;
	background-color: #ff7300;
	border-top:0;
	margin:0 0 0 -1px;
	* margin:-2px 0 0 -1px;
	padding:0;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	padding: 0; margin:0;

}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	padding: 0; margin:0;
	* margin:-2px 0 0 0;
}