/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	font-size:14px;
	text-align:right;
}

.dropdown:active{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	//*border-bottom:1px solid #444;*//
	font-size:14px;
	font-weight:bold;
}


/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding-left:inherit;
	border-top:1px solid #999999;
	list-style:none;
	
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	padding-right:35px;
	//*width:115px;*//
	
	//*background-color:#000;*//
	cursor:pointer;
	text-align:left;
	font-weight:normal;
}

.dropdown li:active{
	margin:0;
	padding:5px;
	padding-right:35px;
	cursor:pointer;
	text-align:left;
	font-weight:bold;
}

.dropdown_sublevel li{
	padding:5px;
	width:180px;
	background-color:#CCCCCC;
	cursor:pointer;
	text-align:left;
	font-weight:normal;
	color:#ffffff;
	font-size:14px;

	
}

.dropdown_sublevel li:active{
	margin:0;
	padding:5px;
	width:180px;
	background-color:#999999;
	cursor:pointer;
	text-align:left;
	color:#232951;
	font-size:12px;
	font-weight:bold;

}



/* 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:#232951;
	width:100%;
	background-color:;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size:14px;
		font-weight:normal;

}



.dropdown a:hover{
	//*text-decoration:underline;*//
	color:#232951;
	
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #999999;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	/*background: url('../images/expand_down.png') center left no-repeat;*/
	padding-left:20px;
	//*width:105px;*//
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	/*background:#CCCCCC url('../images/expand_right.png') center right no-repeat;*/
	padding-right:20px;
	width:165px;
}