.jqueryslidemenu{
font: bold 11px Arial;
/*background: #414141;*/
/*width: 100%;*/
float: right; /* align the menu right or left */
}

.jqueryslidemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.jqueryslidemenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.jqueryslidemenu ul li a{
display: block;
background: transparent; /*background of tabs (default state)*/
color: black;
padding-left: 18px;
padding-right: 18px; /*8px 10px;*/
border-left: 1px solid #525252;
text-decoration: none;
height: 64px;
line-height: 64px;
font-weight: bold;
font-size: 10px;
}

* 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: black;
font-size: 11px;
}

.jqueryslidemenu ul li a:hover{
background: #F3F3F3; /*tab link background during hover state*/
color: black;
font-weight: bold;
background-image: url('menu_button_bg_pressed.jpg');
}
	
/*1st sub level menu*/
.jqueryslidemenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
border-top: 0px solid gray;
}

/*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{
font: bold 11px Arial;
width: 160px; /*width of sub menus*/
padding: 5px;
padding-top: 7px;
margin: 0;
border-top-width: 0;
border-top: 1px solid #525252;
height: 15px;
background-color: #ABABAB;
background-image: url('menu_button_bg_dropdown.jpg');
}

.jqueryslidemenu ul li ul li a:hover{ /*sub menus hover style*/
background: #eff9ff;
color: black;
background-image: url('menu_button_bg_dropdown_pressed.jpg');
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 31px;
right: 8px;
}

.rightarrowclass{
position: absolute;
top: 11px;
right: 5px;
}
