/* CSS Document */
.menuH {
height:22px;

float:left;
	
}

/* remove all the bullets, borders and padding from the default list styling */
.menuH ul {
	text-align:center;
	z-index:500;
	padding:0;
	margin:0;
	list-style-type:none;
	
	font-size:11px;


}
/* style the list items */
.menuH li {
background:#F8F8F8 ;
height:20px;
margin:0;
width:100px;
float:left;
border:1px solid #ccc;
margin-right:2px;
/* for IE7 */

}

.menuH li.sub {background:#fff url(images/listbg.png) no-repeat right center;} 


/* get rid of the table */
.menuH table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menuH a, .menuH a:visited {
display:block; 
text-decoration:none;
height:19px;
line-height:19px;
width:100px;
color:#666666;
text-indent:5px;
color:#47529C;


}

/* hack for IE5.5 */
* html .menuH a, * html .menuH a:visited {width:100px; w\idth:99px;}
/* style the link hover */
* html .menuH a:hover {
	color:#47529C;
	background:#F3F3F3;
	position:relative;
	font-weight: bold;
}

.menuH li:hover {position:relative;}

/* For accessibility of the top level menuH when tabbing */
.menuH a:active, .menuH a:focus {color:#47529C; background:#F3F3F3;}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.menuH li:hover > a {color:#47529C;font-weight: bold;background:#F3F3F3;}
 
