
.jqpopupmenu, .jqpopupmenu ul
{
    /*topmost and sub ULs, respectively*/
    font-stretch: expanded;	
    background-color: White;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    list-style-type: none; /*background: white;*/
    border: 2px solid rgb(182, 196, 143);
    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 #818181;
    -moz-box-shadow: 3px 3px 8px #818181;
    
}


.jqpopupmenu li
{
    position: relative;
}

.jqpopupmenu li a
{
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    font-style: normal;
    font-stretch: expanded;	
    list-style-type: none;
    display: inline-block;
    width: 220px; /*width of menu (not including side paddings)*/
    color: black;
    background: #FFFFFF;
    text-decoration: none;
    padding: 4px 5px;
    border-bottom: solid 1px black;
}

* html .jqpopupmenu li
{
    /*IE6 CSS hack*/
    /*display: inline-block;
     width: 170px; /*width of menu (include side paddings of LI A*/
    display: inline-block;
    width: 220px;     
}

.jqpopupmenu li a:hover, .jqpopupmenu li.selected > a
{
    color: #374F07;
    background: #B6C48F;
}

.rightarrowclass
{
    position: absolute;
    top: 6px;
    right: 5px;
}

