/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	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: 2px 15px 2px 0px;
	/*width: 6em;*/
	/*background-color:#000;*/
	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: #33cc99;
	/*width:100%;*/
}

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

a:hover.menu-header {
	text-decoration:none;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	/*border:1px solid #444;*/
	border:0;
	margin:0;
	padding: 2px 0px 0px 15px;
	margin-left:-15px;
	/*background-color:#888;*/
	background-color:#330703;
}

.dropdown ul li a {
    width: 200px;
	/*background-color: #fff;*/
	/* for IE */
    /*filter:alpha(opacity=60);*/
    /* CSS3 standard */
    /*opacity:0.6;*/
}

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