/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	float:left;
	
	/* doesn't show nice in chrome/safari
	
	filter:alpha(opacity=90);
	-moz-opacity:0.90;
	-khtml-opacity:0.90;
	opacity: 0.90;	*/
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
	border-top:4px solid #83d2e1;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding: 5px 10px 5px 10px;
	/*width:120px;*/
	/*background-color:#490a5f;*/
	white-space:nowrap;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	font-size:12px;
	text-decoration:none;
	color:#ffffff;	
	font-weight: bold;
}

.dropdown a:hover{
	text-decoration:none;
	color:#83d2e1;
	font-weight: bold;
}

.dropdown ul li a{
	font-size:11px;
	text-decoration:none;
	color:#490a5f;
	font-weight: normal;
}

.dropdown ul li a:hover{
	font-weight: normal;
}

.dropdown ul li{
	width:140px;
	color:#490a5f;
	background-color:#ffffff;
	/*border:1px solid #83d2e1;*/
	border-top:0;	
}

.dropdown a.active{
	color:#83d2e1;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url('expand_right.gif');
	background-position:center right;
	background-repeat:no-repeat;	
}

