.jquerycssmenu{
font: 12px "Trebuchet MS", Arial, sans-serif;
font-weight:normal;
padding-left: 15px; /*offset of tabs relative to browser left edge*/
background-color: #cc0000;
border-radius: 5px;
  -moz-border-radius: 5px; /* firefox */
  -webkit-border-radius: 5px; /* safari, chrome */
}

.jquerycssmenu h2 {
font: 12px "Trebuchet MS", Arial, sans-serif;
}

.jquerycssmenu h3 {
font: 12px "Trebuchet MS", Arial, sans-serif;
margin-top:0px;
}

.jquerycssmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: inline;
float: left;
padding-right:3px;
margin-right:8px;
margin-left:0px;
z-index:1010;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
word-spacing:-2px;
display: block;
font-weight:normal;
background-color: #cc0000; /*background of tabs (default state)*/
border-radius: 5px;
  -moz-border-radius: 5px; /* firefox */
  -webkit-border-radius: 5px; /* safari, chrome */
padding: 0px 0px 0px 0px; /*era 5 7 4 7*/
margin-right: 1px; /*spacing between tabs*/
color: #ffffff;
text-decoration:underline;
/*width: 115px;*/

}

.jquerycssmenu ul li a:hover{
background-color:#FF3333;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
font-size:12px;
width: 85px; /*width of sub menus*/
background: #cc0000;
color: #ffffff;
padding: 0px 3px; /*era 4 5*/
margin-left: 3px;
margin-top: 1px;
text-decoration:none;
}

.jquerycssmenu ul li ul li ul li a{
margin-top: 0px;
margin-bottom: 2px;
text-decoration:none;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background-color:#FF3333;
text-decoration:underline;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 2px;
}

.rightarrowclass{
position: absolute;
top: 2px;
right: 5px;
}

