.jquerycssmenu{
text-align: center;
margin-top:0px;
padding-left: 0px; /*offset of tabs relative to content box and page left edge*/
}

.jquerycssmenu ul{
list-style-type: none;
position: relative;
float:left;                  /*this moves the menu text within the menu container either left right or none for center */
}

/*Top level list items*/
.jquerycssmenu ul li{
position:relative;
float:left;                  /*this changes text cells home-about us----->about us-home */
padding: 0px;
}

/* Top level menu link items style */
.jquerycssmenu ul li a{
display: block;
width: 115px;
line-height: 20px;      /*this centers text vertically on background image*/
text-align: center;
background:none;                         /*url(navigation.png) 50% 0px no-repeat;  background of tabs (default state)*/
padding: 0px 0px 0px 0px;
margin-right: 1px; /*spacing between tabs*/ 
border: none;
border-bottom-width: 0px;
color: #FFFFFF;
text-decoration: none; }

/* Top level tab link background during hover state */
.jquerycssmenu ul li a:hover{
background:none;                       /*url(navhover.png) 50% 0px no-repeat; */
border:none;    
}
	
/* 1st sub level menu */
.jquerycssmenu ul li ul{
position: absolute; 
background:none;
display: block;
visibility: visible;
border-top:none;              /*this displays a single border line at the top of sub menu box */
}

/* Sub level menu list items (undo style from Top level List Items) */
.jquerycssmenu ul li ul li{
display: list-item;
float:left;
}

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

/* 1st Sub level menu links style */
.jquerycssmenu ul li ul li a{
width: 260px; /*width of sub menus*/
height:20px;
background:#1293A9;              /*this is the background cell color of the submenu */
padding: 5px 5px;
margin: 0;
border-top:none;   /*this changes the color of the separator lines in the submenu */
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
font:Verdana;
background:#FFFFFF;              /*this changes the hover background cell color */

}

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

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

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

