
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font-family: arial;
font-size: 15px;
margin: 0;
padding: 2px 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: white;
border-bottom-width: 0;
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;
}


.flexdropdownmenu li
{
    position: relative;
    padding: 2px 4px;
}

.flexdropdownmenu li a
{
    font-size: 15px;
    color: #5b0942;
    background: #e2f4f3;
    display: block;
    padding: 8px;
    line-height: 17px;
    text-decoration: none;
    white-space: nowrap;
}

* html .flexdropdownmenu li{ /*IE6 CSS hack*/
display: inline-block;
width: 170px; /*width of menu (include side paddings of LI A*/
}

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
    background: #836a9b;
    color: white;
}

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

