/* remove the bullets, padding and margins from the lists */
.menuDown1
{
	z-index:10000;}
.menuDown1 ul
{
	list-style-type:none;
	padding:0;
	margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menuDown1 li
{
	float:left;
	position:relative;
}

.menuDown1 ul li a, .menuDown1 ul li a:visited 
{
	display:block;
/*	width:335px;*/
	width:100%;
	padding:7px 0;
	color:White;
	text-decoration:none;
	margin-right:1px;
	text-align:left;
	font-size:24px;
	height:25px;
}

/* use the table to position the dropdown list */
.menuDown1 table
{
	position:absolute;
	border-collapse:collapse;
	left:-1px;
	top:25px;
}

.menuDown1 ul li:hover ul li a, .menuDown1 ul li a:hover ul li a 
{
	display:block; 
	background:White; 
	color:#000; 
	padding-left:10px;
	border:none;
	width:220px;
	font-size:13px;
	height:16px;
	font-weight:bold;
}

/* style all the links 
.menuDown1 a, .menuDown1 :visited 
{
	display:block;
	font-size:10px;
	width:335px;
	padding:7px 0;
	color:Black;
	text-decoration:none;
	margin-right:1px;
	text-align:center;
}*/

.menuDown1 ul li:hover ul li a:hover, .menuDown1 ul li a:hover ul li a:hover 
{
	background:grey; 
	color:White;
}
/*.menuDown1 ul li:hover a, .menuDown1 ul li a:hover 
{
	color:#000; 
	background:white;
}


 hide the sub level links */
.menuDown1 ul ul 
{
	visibility:hidden;
	position:absolute;
	width:149px;
	height:0;
}
/* make the sub level visible on hover list or link */
.menuDown1 ul li:hover ul,
.menuDown1 ul a:hover ul
{
	visibility:visible;
	font-size:15px;
}

