@charset "utf-8";
/* CSS Document */

.jqpopupmenu, .jqpopupmenu ul { /*topmost and sub ULs, respectively*/
	margin: 0px;
	padding: 8px;
	position: absolute;
	left: 0px;
	top: 0px;
	list-style-type: none;
	background: #eeeeee;
	border: 1px solid #DEDEDE;
	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;
	text-align:left;
}
.jqpopupmenu li {
	position: relative;
	background-image: none;
	background-position: 0px;
	background-repeat: no-repeat;
	margin: 0px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: left;
	font-size: 11px;
}
.jqpopupmenu li a {
	background-image: none;
	display: block;
	/* width: 225px; */ /*width of menu (not including side paddings)*/
	color: #505050;
	background: #eeeeee;
	text-decoration: underline;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: left;
	font-size: 11px;
}
* html .jqpopupmenu li { /*IE6 CSS hack*/
	display: inline-block;
	background-image: none;
	width: 170px; /*width of menu (include side paddings of LI A*/
}
.jqpopupmenu li a:hover, .jqpopupmenu li.selected>a {
	color: #679fda;
	background: #F9F9F9;
	text-align: left;
	text-decoration: none;
}
.rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}
