/* div */
#menudiv{
position: relative;
/*background: #0BB511 url('/images/menubg.gif') repeat-x top left;  /* a green */
  background:#194FFF ;  /*blue */
height: 1.0em;
margin-bottom: 1px;
z-index: 4;
font-size: 16px;
padding:0.5em 1.0em 1.1em 1.0em;
color: #000;  /* black */
text-decoration: none;
/*border: thin solid #000; */
}

/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	z-index:5;
	/*border-bottom:1px solid #444; */
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
	z-index:5;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:1px;
	width:130px;
	background-color:#6677ff;  /* blue */
	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:#000;
	width:100%;
}

.dropdown a:hover{
	/*	text-decoration:underline; */
	background:#F3F71E;   /* bright-green:33cc00 bright-yellow:f3f71e*/
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	border-top:0;
	margin-left:-1px;
	background:#ff0033;  /* pastel blue */
	width:150px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#6677ff url('expand_down.gif') center left no-repeat; 
	padding-left:5px;
	width:110px;
	text-indent: 1em; /*text-align: center; */
}

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