﻿/* remove the bullets, padding and margins from the lists */
.menu1 ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu1 li{
vertical-align:vertical;
position:relative;
z-index:100px;
left:0.5px;
}

/* use the table to position the dropdown list */
.menu1 table{
position:absolute;
border-collapse:collapse;
z-index:98;
left:147px;
top:0px;
}

/* style all the links */
.menu1 a, .menu1 :visited {
	display: block;
	font-size: 11px;
	font-weight:bold;
	font-family:sans-serif;
	width: 146px;
	padding: 7px 0;
	color: #0B3861;
	background: #A6C5E2;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
}
/* style the links hover */
.menu1 :hover{
	display:block;
	color: #000000;
	background: #CFEB69; 
}

/* hide the sub level links */
.menu1 ul ul {
visibility:hidden;
position:absolute;
width:140px;
height:0;
display:block;
background:red;
}
/* make the sub level visible on hover list or link */
.menu1 ul li:hover ul,
.menu1 ul a:hover ul{
visibility:visible;
}

/* --------------------------------------------------------------- */

/* remove the bullets, padding and margins from the lists */
.menu12 ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu12 li{
vertical-align:vertical;
position:relative;
z-index:100px;
left:0.5px;

}

/* use the table to position the dropdown list */
.menu12 table{
position:absolute;
border-collapse:collapse;
z-index:98;
left:147px;
top:0px;
}

/* style all the links */
.menu12 a, .menu12 :visited {
	display: block;
	font-size: 11px;
	font-weight:bold;
	width: 146px;
	padding: 7px 0;
	color: #000;
	background: #A6C5E2;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;

}
/* style the links hover */
.menu12 :hover{
	display:block;
	color: #000000;
	background: #CFEB69; 
}

/* hide the sub level links */
.menu12 ul ul {
visibility:hidden;
position:absolute;
width:140px;
height:0;
display:block;
background:red;
}
/* make the sub level visible on hover list or link */
.menu12 ul li:hover ul,
.menu12 ul a:hover ul{
visibility:visible;
}
