/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:10px 0px 0px 0px;
	padding:0px 0px 0px 10px;
	list-style:none;
	float:left;
	width: auto;
}
.dropdown ul{
	margin:0px;
	padding:0px;
	list-style:none;
}

/* these are first the LIs in the menu*/
.dropdown li{
	margin:0px;
	padding:0px;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	width:120px;
	cursor:pointer;
	text-align:center;
}
.dropdown li:hover{
	margin:0px;
	background-color: #00257D;
	border-left: 1px solid #5b5b5b;
	border-right: 1px solid #5b5b5b;
	color:#ff0000;
	padding:0px;
	width:120px;
	cursor:pointer;
	text-align:center;
}
.dropdown li a{
	display:inline-block;
	width: 120px;
	text-decoration: none;
	color:#ffffff;
	font-size: 18px;
	padding: 5px 0px 5px 0px;
	line-height: 32px;
}
.dropdown li a:hover{
	display:inline-block;
	width: 120px;
	text-decoration: none;
	background-color:#00257D;
	color:#ff0000;
	padding: 5px 0px 5px 0px;
	font-size: 18px;
}


/*Second menu*/
.dropdown li ul {
	width:180px;
	position: absolute; 
	top: 100%; 
	left: 0; 
}
.dropdown li ul li:first-child{
	width:180px;
	border: 1px solid #5b5b5b;
	font-size: 12px;
}
.dropdown li ul li{
	background-color:#111111;
	width:180px;
	border-right: 1px solid #5b5b5b;
	border-bottom: 1px solid #5b5b5b;
	border-left: 1px solid #5b5b5b;
	font-size: 12px;
}
.dropdown li ul li:hover{
	background-color:#00257D;
	width:180px;
	border-right: 1px solid #5b5b5b;
	border-bottom: 1px solid #5b5b5b;
	border-left: 1px solid #5b5b5b;
	font-size: 12px;
}
.dropdown li ul li a{
	display: inline-block;
	width: 180px;
	text-decoration:none;
	color:#ffffff;
	border: none;
	font-size: 12px;
	padding: 2px 0px 2px 0px;
	line-height: normal;
}
.dropdown li ul li a:hover{
	display: inline-block;
	width: 180px;
	text-decoration:none;
	color:#ff0000;
	border: none;
	font-size: 12px;
	padding: 2px 0px 2px 0px;
	line-height: normal;
}
