
.jqpopupmenu, .jqpopupmenu ul{ /*topmost and sub ULs, respectively*/
font: normal 13px Verdana;
margin: 0;
padding: 10;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: white;

border:solid 5px #CCCC99;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/
box-shadow: 3px 3px 8px #818181; /*shadow for CSS3 capable browsers.*/
-webkit-box-shadow: 3px 3px 8px #818100;
-moz-box-shadow: 3px 3px 8px #818100;
white-space: nowrap;
}


.jqpopupmenu li{
position: relative;
}

.jqpopupmenu li a{
display: block;
//width: 160px; /*width of menu (not including side paddings)*/
color: black;
background: #ffffff;
text-decoration: none;
padding: 4px 5px;
white-space: nowrap;
}

* html .jqpopupmenu li{ /*IE6 CSS hack*/
display: inline-block;
//width: 170px; /*width of menu (include side paddings of LI A*/
white-space: nowrap;
}

.jqpopupmenu li a:hover, .jqpopupmenu li.selected>a{
background: #E9E9BE;
color: black;
text-decoration: none;
padding: 4px 5px;
white-space: nowrap;
display: block;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}