/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	font-family:"Times New Roman", Times, serif;
	position:absolute;
	left:-1px;
	width:100%;
	font-size:12px;
	text-transform: uppercase;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	font-family:"Times New Roman", Times, serif;
	font-size:12px;
	list-style:none;
	text-transform:uppercase;
	white-space:nowrap;
}

/* these are all the LIs in the menu */
.dropdown li{
	margin:0;
	padding:8px 8px 8px 8px;
	width:120px;
	font-family:"Times New Roman", Times, serif;	
	font-size:12px;
	background-color:#000;
	text-align:center;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	position:relative;
	text-decoration:none;
	color:#bddcfa;
	width:100%
}

.dropdown a:hover{
	position:relative;
	z-index:9;
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	position:relative;
	z-index:9999;
	border-top:0;
	text-decoration:underline;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu
.dropdown li.submenu{
	background-image:url('expand_down.png');
	background-position:center right;
	background-repeat:no-repeat;
	padding-left:16px;
	padding-right:16px;
	width:105px;
	z-index:9999;
}

*/

/* 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.png');
	background-position:center right;
	padding-left:5px;
	z-index:9999;
	
}
