.menu {
font: 17px Helvetica;
padding-left: 1px; /*offset of tabs relative to browser left edge*/
}

.jquerycssmenu{
font: 15px Helvetica;
padding-left: 1px; /*offset of tabs relative to browser left 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{
display: block;
background: #FF1926 url(css/tintblue.gif) top center repeat-x;; /*background of tabs (default state)*/
padding: 9px 7px 7px 7px;
margin-right: 3px; /*spacing between tabs*/
border-bottom-width: 0;
color: #ffffff;
text-decoration: NONE; 

	border-radius: 4px;
	-ms-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;


	border-radius: 1px 1 1em 1pt;
	-ms-border-radius: 5px 1 1em 1pt;
	-moz-border-radius: 5px 1 1em 1pt;
	-webkit-border-radius: 5px 1 1em 1pt;
	-khtml-border-radius: 5px 1 1em 1pt;

}


.jquerycssmenu ul li a:hover{
background-image: url(css/tintbluedark.gif) /*tab link background during hover state*/
}
.jquerycssmenu li a.active, .jquerycssmenu li a.active:hover{background-image: url(css/tintbluedark.gif) /*tab link background during hover state*/}	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
border-top: 0px solid #FF1926;
}

/*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-family: helvetica, arial;
font: 15px;
width: 185px; /*width of sub menus*/
background: #FF1926;
color: white;
padding: 4px 5px;
border-bottom: 0px solid #FF1926;
}

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

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

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

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


