
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/

font-family: 'PT Sans', sans-serif;
font-size : 13px;
text-align: center;
	line-height : 200%;
  color: #bdd9f0;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: white;
border: 0px solid black;
border-bottom-width: 0;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/
     text-transform: uppercase;
opacity: 0.9;
}


.flexdropdownmenu li{
position: relative;
}

.flexdropdownmenu li a{
display: block;
width: 190px; /*width of menu (not including side paddings)*/
color: black;
background: #c4dcf0;

border-bottom: 0px solid black;
text-decoration: none;
padding: 4px 5px;
}

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

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
background: #c4dcf0;
}

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

