/* this is the main UL element*/
.dropdown{
	margin-top:15px;
	height: 37px;
	list-style:none;
	overflow:hidden;	
	font-family: Lucida Sans, Arial;
	font-weight:bold;
	font-size:14px;
	color: #b5c8e8;
	float:right;
	padding-right:10px;
}

/* these are the inner menus*/
.dropdown ul{
	margin: 5px -15px 0 0;
	padding:0;
	border:1px solid #b5c8e8;
	list-style:none;
	background:#FFF;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0;
	cursor:pointer;
	list-style:none;
	
}

/* these are anchor in the menu, if you want to style them differently from the rest of your website*/
.dropdown a{
	text-decoration:none;
	color: #3c357b;
}

.dropdown a:hover{
	color:#D0E0ED;
}
.dropdown li a:hover{
	color:#104ebf;
}
.dropdown ul li a:hover{
	color:#104ebf;
	background: url(../images/menu_bullet.gif) no-repeat top left;
	list-style-position:inside;
	padding-left:15px;
}
.dropdown a:visited{
	color: #3c357b;
}
.dropdown a:link{
	color: #3c357b;
}


/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	/*border:1px solid #3c5f8d;*/
	border-top:0;
	margin-left:5px;
	width:180px;
	padding:6px;
	list-style:none;
	font-size:12px;
}
/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	white-space:wrap;
}



