/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	border-bottom:0px solid #444;
	font-size:11px;
	font-weight: normal;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:0px solid #444;
	list-style:none;
	text-align:left;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	margin-left:0px;
/*	width:100px;*/
/*	background-color:#000;*/
	cursor:pointer;
	font-size:11px;
	font-weight: normal;
	text-align:left;
	

}

/* 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:#ffffff;
	text-align:left;
}

.dropdown a:hover{
	font-size:11px;
	text-decoration:none;
	color:#ffcc00;
}


/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #333333;
	border-top:0;
	margin-left:-1px;
	text-align:left;
}

/* 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;
	text-align:left;
}

/*.dropdown li.submenu{
	background-image:url('expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
	width:70px;
}*/

/* 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;

}

.submenutxt{
	font-size:11px;
	font-weight: normal;
	width:150px;
	color:#FFFFFF;
	background-color:#000000;
}