/* this is the main UL element*/
.dropdown{
	display:					none;
	margin:						0;
	padding:					0;
	list-style:					none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:						0;
	padding:					0;
	list-style:					none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:						0;
	padding:					0;
	width:						150px;
	cursor:						pointer;
	
}

.dropdown .sottomenu:first-child {
	margin-top:					6px;
}

.dropdown .sottomenu {
	background-color:			#9FB3EE;
	border-bottom:				1px solid white;
	border-left:				1px solid white;
	border-right:				1px solid white;
	/*height: 					20px;*/
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown .sottomenu a{
	margin:						0;
	padding:					3px 0 0 5px;
	height:						16px;
	width:						148px;
	font-family: 				"Times New Roman", Times, serif;
	font-size: 					12px;
	font-style: 				normal;
	font-weight: 				normal;
	color: 						#0e246c;
	text-decoration: 			none;
	display:					block;

	border-bottom:				none;
	text-align:					left;
}

.dropdown .sottomenu:last-child {
	border-bottom:						1px solid white;
}

/*.dropdown .sottomenu a:hover{
	background-color:			#BECCF3;
}*/

.dropdown .sottosottomenu:first-child {
	border-top:					1px solid white;
}

.dropdown .sottosottomenu {
	background-color:			#9FB3EE;
	border-bottom:				1px solid white;
	border-left:				1px solid white;
	border-right:				1px solid white;
	/*height: 					20px;*/
}

.dropdown .sottosottomenu a {
	margin:						0;
	padding:					3px 0 0 5px;
	height:						16px;
	width:						148px;
	font-family: 				"Times New Roman", Times, serif;
	font-size: 					12px;
	font-style: 				normal;
	font-weight: 				normal;
	color: 						#0e246c;
	text-decoration: 			none;
	display:					block;

	border-bottom:				none;
	text-align:					left;
	
}


.dropdown .sottomenu:hover{
	background-color:			#BECCF3;
}

.dropdown .sottosottomenu:hover{
	background-color:			#BECCF3;
}


/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	/*border:					1px solid white;*/
	border-top:					0;
	margin-left:				-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down {
	width:						100%;
}
