.jqpopupmenu, .jqpopupmenu ul{ /*topmost and sub ULs, respectively*/
	margin: 0;
	padding: 0;
	position: absolute;
	left: -50px;
	top: 50px;
	list-style-type: none;
	border: thin solid #0794CC;
	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;
	background-color: #BFE3F3;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
}


.jqpopupmenu li{
	position: relative;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

.jqpopupmenu li a{
	display: block;
	width: 160px; /*width of menu (not including side paddings)*/
	color: #FFFFFF;
	text-decoration: none;
	padding: 4px 5px;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	background-color: #48AFDC;
}

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

.jqpopupmenu li a:hover, .jqpopupmenu li.selected>a{
	background-color: #E7F6FB;
	color: #0796CE;
}

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

