/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	width:200px;
}

/* these are the inner menus*/
.dropdown ul {
	margin:0;
	padding:0;
	list-style:none;
	color:#CCCCCC;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	padding-left:30px;
	width:170px;
	
	background-color:#FE4D01;
	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;
	width:100%;
}

.dropdown li:hover,
.dropdown a:hover{
	color:Yellow;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu, .dropdown ul li.submenu{
	background-image:url('str_menu.jpg');
	background-repeat:no-repeat;
	background-position:center left;
	padding-left:30px;
	width:170px;
}
