/* this is the main wrapper*/
#menu_top{
	width:98%;
	background-color: #000099;
	margin-left: 10px;
	margin-right: 10px;
	position: relative;
	z-index: 0;
}

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

/* these are the inner menus*/
.dropdown ul{
	width: auto;
	font-size: 14px;
	margin:0;
	padding:0px 0px 0px 10px;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width: 20%;
	background-color:#000099;
	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;
	font-weight: bold;
	font-size: 18px;
	color:#FFFFFF;
	padding-left:20px;
	padding-right:20px;
}

.dropdown a:hover{
	text-decoration:underline;
	width:auto;
	color:#FFFF00;
}

/* 
#########################
these are the LIs that only belong to submenu
*/
.dropdown ul li{
	font-size: 12px;
	margin-left:-1px;
	margin-top:-1px;
	width:auto;
	padding-left:10px;
	padding-right:20px;
	color:#000000;
	background-color:#0000CC;
}

/* 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;
	padding-right: 20px;
	width:auto;
	white-space:nowrap;
	text-align: left;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselves*/
.dropdown ul li.submenu{
	background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	width:auto;
	color:#000000;
}
.dd_bg{
	background-color:#0000CC;
}