.navhor{
    line-height: 42px;
    margin-bottom: 20px;
    clear: both;position: absolute;
    height: 42px;
    width: 1000px;
    background: url(../images/menu_right.png) repeat-x;
}

.navhor ul>li{
    height:42px;
    float: left;
    width:auto;
    background: url(../images/border_right.png) right no-repeat;
}
.navhor ul>li:first-child{
}
.navhor ul>li:hover:first-child{
}
.navhor ul>li:last-child{

}
.navhor ul>li :hover{
    background: #711c77;
}
.navhor ul>li:hover:last-child{
}

.navhor ul>li:hover:first-child{
}
.navhor ul>li a{
    color: #ffffff;
    font-size: 12px;
    display: block;
    font-weight:bold;
    font-family: Arial;
    padding-left: 23px;
    padding-right: 23px;
    text-transform: uppercase;
}   
.navhor ul>li a:hover{
    text-decoration: underline;
}
/*Top level list items*/
.navhor ul li{
    position: relative;
}
/*Top level menu link items style*/
.navhor ul li a{
 /*background of menu items (default state)*/
}
* html .navhor ul li a{ /*IE6 hack to get sub menu links to behave correctly*/

    display: inline-block;

    margin-top:10px;

}
.navhor ul li a:link, .navhor ul li a:visited{
	color: white;
	height:42px;
	line-height: 42px;

}
.navhor ul li ul li a:link, .navhor ul li ul li a:visited{
    border-top: #76cea0 dotted 1px;
    width: 187px;
}

.navhor ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    color: white;

}
.navhor ul li a:hover{

 /*background of menu items during onmouseover (hover state)*/	

}
/*1st sub level menu*/

.navhor ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	width: 232px !important;
	visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.navhor ul li ul li{
	display: list-item;
	float: none;
    width: ;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.navhor ul li ul li ul{
    top: 0;
}
/* Sub level menu links style */
.navhor ul li ul li a{
    color: #fff;
	width: 149px; /*width of sub menus*/			
    font-weight: bold;
    text-transform: none;
	background: #01a54f;
    line-height: 19px;
    font-weight: bold;
    border-bottom: #76cea0 dotted 1px;
 }

.navhor ul li ul li a:hover{
    
}
/* Holly Hack for IE \*/
* html .navhor{height: 1%;} /*Holly Hack for IE7 and below*/
/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass{
    display:none;
}
    .rightarrowclass{
    display:none;
}
/* ######### CSS for shadow added to sub menus  ######### */
.ddshadow{ /*shadow for NON CSS3 capable browsers*/
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}
.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
opacity: 0.8;

}