.jqueryslidemenu {
     font-size: 13px;
     font-family: Arial, Helvetica, sans-serif;
     font-weight: bold;
     color: #404040;
     background: #E2E5EC url(../images/navbg.jpg); background-repeat: repeat-x;
     width: 100%;
}
.jqueryslidemenu ul {
     margin: 0;
     padding: 0;
     list-style-type: none;
}

/*Top level list items*/

.jqueryslidemenu ul li {
     position: relative;
     display: inline;
     float: left;
     align: center;
     z-index: 9999; 

}

/*Top level menu link items style*/

.jqueryslidemenu ul li a {
     display: block;
     width: 150px;
     background: #E2E5EC url(../images/navbg.jpg); background-repeat: repeat-x; /*background of tabs (default state)*/
     padding: 8px 8px;
     border-right: #2B4054 1px solid;
     text-decoration: none;
}

* html .jqueryslidemenu ul li a { /*IE6 hack to get sub menu links to behave correctly*/
     display: inline-block;
}
.jqueryslidemenu ul li a:link, .jqueryslidemenu ul li a:visited {
     color: #A75737;
}
.jqueryslidemenu ul li a:hover {
     background: #E2E5EC url(../images/navbgh.jpg); background-repeat: repeat-x; /*background of tabs (default state)*/
     color: #7496B6;
}
	
/*1st sub level menu*/

.jqueryslidemenu ul li ul {
     position: absolute;
     left: 0;
     display: block;
     z-index: 9999; 
}

/*Sub level menu list items (undo style from Top level List Items)*/

.jqueryslidemenu ul li ul li {
     display: list-item;
     float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */

.jqueryslidemenu ul li ul li ul {
     top: 0;
}

/* Sub level menu links style */

.jqueryslidemenu ul li ul li a {
     background: #E2E6E9; /*background of tabs (default state subitems)*/
     font-size: 13px;
     font-family: Arial, Helvetica, sans-serif;
     font-weight: bold;
     width: 165px; /*width of sub menus*/
     padding: 8px;
     margin: 0;
     border-right: 0px solid;
     border-top: #2B4054 1px solid;
}

.jqueryslidemenu ul li ul li a:hover { /*sub menus hover style*/
     background: #CBD1DD;
     color: #2487A7;
}

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

.downarrowclass {
     position: absolute;
     top: 12px;
     right: 8px;
}

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

