/* this is the main UL element*/
.dropdown{
	display:none;
	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:5px;
	width:165px;
	background-color:#fff;
	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:#6a6a6a;
	width:100%;
}

.dropdown a:hover{
	text-decoration:none;
	color:#0079be;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	/*background:transparent url('bgbtn1.gif') top left no-repeat;*/
	background:transparent;
	color:white;
	font-weight:bold;
	padding:10px 25px 0px 25px;
	height:25px;
	border-right:1px solid white;
	/*width:105px;*/
	width:auto;
}

*html .dropdown li.submenu-down{width:105px; height:22px; padding:10px 25px 12px 25px;}

.dropdown li.submenu-down:hover{background-color:#0079be;}

*html .dropdown .hover{background-color:#0079be;}


.dropdown a.toplevelitem {white-space:nowrap; color:white;}



*html .dropdown a.toplevelitem:hover {
white-space:nowrap; 
color:white;
/*
background:#0079be none repeat scroll 0 0;
color:white;
display:block;
margin:-10px -25px;
padding:10px 25px;
*/
}

.activeitem {background-color:#0079be !important;}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#fff url('expand_right.gif') center right no-repeat;
	padding-right:20px;
	width:150px;
}
*html .dropdown li.submenu-left{width:165px;}