.jquerycssmenu{
position: relative;
float: right;
z-index: 1;
font-size: 11px;
font-family: arial;
padding-left: 0px; /*offset of tabs relative to browser left edge*/
padding-right: 16px; /*offset of tabs relative to browser right edge*/
}

.jquerycssmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}


/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
width: 101px;
text-align: center;
border-left:0px solid #ccc; border-right:0px solid #ccc; border-top:0px solid #ccc; border-bottom:0px solid #ccc; display: block;
background: white url('images/topnav_bg.jpg') no-repeat; /*background of tabs (default state)*/
margin-right: 0px; /*spacing between tabs*/
color: #000000;
text-decoration: none; padding-left:0px; padding-right:0px; padding-top:10px; padding-bottom:8px
}

.jquerycssmenu ul li a:hover{
background-image: url('images/topnav_bg_lila.jpg') /*tab link background during hover state*/ 
}

.jquerycssmenu ul li a.selected{
color: #ffffff;
background-image: url('images/topnav_bg_lila.jpg') /*tab link background during selected state*/ 
}

.jquerycssmenu ul li a.selected span {
  padding-right: 10px;
  color: #ffffff;
  background: url('images/arrow_white.gif') no-repeat center right;
}

.jquerycssmenu li a span {
  padding-right: 10px;
  background: url('images/arrow_black.gif') no-repeat center right;
}

.jquerycssmenu li a:hover span {
  padding-right: 10px;
  color: #ffffff;
  background: url('images/arrow_white.gif') no-repeat center right;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
border-top: 1px solid #ccc;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
border-left:1px solid #ccc; border-right:1px solid #ccc;
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
margin-left: -3px;
top: 0;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
font: normal 11px arial;
text-align: left;
width: 180px; /*width of sub menus*/
background: white;
color: #795f93;
padding: 4px 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid #ccc;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background: #795f93;
color: white;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 5px;
right: 5px;
}

.rightarrowclass{
position: absolute;
top: 7px;
right: 5px;
}