/*Horizontal Navigation*/
.h-nav{
width: 100%;
overflow: hidden;
/*background:url(../images/nav-bg-x.jpg) repeat-x;*/
}

.h-nav ul{
margin: 0;
padding: 0;
padding-left: 10px; /*offset of tabs relative to browser left edge*/
font:14px;
list-style-type: none;
float:left;
}

.h-nav li{
display: inline;
margin: 0;
}

.h-nav li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 11px 8px 13px 8px; /*padding inside each tab*/
font-size:13px;
color: white;
font-family:Arial;
}

.h-nav li a:visited{
/*color: white;*/
}

.h-nav li a:hover, .h-nav li.selected a{
color:#fff;
background:url(/images/nav-hover-bg.jpg) no-repeat center top; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}
