
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
	font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
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*/

}


.flexdropdownmenu li{
position: relative;
clear:both;
}

.flexdropdownmenu_old li a{
display: block;
width: 130px; /*width of menu (not including side paddings)*/
color: black;
background: #fae7a9;
border-bottom: 0px solid black;
text-decoration: none;
padding: 0px 0px;
}

.flexdropdownmenu li a{
	display: block;
	width: 130px; /*width of menu (not including side paddings)*/
	text-align: left;
	font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
	font-size: 13.5px;
	color: #ffffff;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;

	background-color: #80b32e;
	border-bottom: solid 1px #c2eb8e;
	float: left;
	padding: 10px 0px 10px 18px;
	margin: 0px 0px 0px 0px;

	background-image: url(./images/subarrow.png);
	background-repeat: no-repeat;
	background-position: 5% 50%;

	text-decoration: none;
}
.flexdropdownmenu li a:hover{
	background-color: #50920e;
	cursor: pointer;
}



* html .flexdropdownmenu li{ /*IE6 CSS hack*/
display: inline-block;
width: 130px; /*width of menu (include side paddings of LI A*/
}

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
//background: #FFFFFF;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}



