.jquerycssmenu{
margin: 2px 0 0px 0px;
position: relative;
float: left;
padding: 0;
z-index: 1;
font: bold 11px Arial, Verdana, sans-serif;
padding-left: 10px; /*offset of tabs relative to browser left edge*/
padding-right: 0px; /*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: 115px;

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/tab_off.jpg') no-repeat; /*background of tabs (default state)*/
margin-right: 0px; /*spacing between tabs*/
color: #5B9CBD;
text-decoration: none; padding-left:0px; padding-right:0px; padding-top:3px; padding-bottom:0px
}

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

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

.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: 0px solid #ccc;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
border-left:0px solid #ccc; border-right:0px 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: 140px; /*width of sub menus*/
height:12px;
background: #000000;
color: #ffffff;
padding: 4px 5px;
margin: 0;
border-top-width: 0;
border-bottom: 0px solid #ccc;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background: #000000;
color: #5B9CBD;
}

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

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

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