.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font: normal 12px Arial;
line-height: 21px;
margin: 0;
padding: 0;
text-indent: 5px;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: url(../images/navigation_bg3.png);
border: 1px solid #6c6c6c;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/
}


.flexdropdownmenu li{
position: relative;
}

.flexdropdownmenu li a{
display: block;
width: 210px; /*width of menu (not including side paddings)*/
line-height: 20px;
background: url(../images/navigation_bg3.png);
color: #333333;
padding: 2px 0;
text-decoration: none;
text-indent: 5px;

}

* 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: url(../images/navigation_bg1.png);
color: white;

}

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


