
.jqpopupmenu, .jqpopupmenu ul{ /*topmost and sub ULs, respectively*/
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	background: white;
	border: 1px solid black;
	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;
	font-family: "Lucida Calligraphy";  /* font was changed, but not color */
	font-size: 12px;  /*sets font size */
	font-color: #00C;  /* not changing color, I think overridden later down the styles, Yes, see li a   ...*/
	font-style: normal;
	color: #FFF;
	}


.jqpopupmenu li{
position: relative;
}

.jqpopupmenu li a{
	display: block;
	width: 160px; /*width of menu (not including side paddings)*/
	color: #093;  /* Controls font color  */
	text-decoration: none;
	padding: 4px 5px;
	background-color: #FFF;  /* Changes background color of menu lists */
}

* 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: #e0e0e0;
	color: #000;
	background-color: #CCFFFF;
}

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


