@charset "UTF-8";

/* For menu */
.jquerycssmenu
{
	/* font: bold 12px Verdana; - use same font as rest of site */
	padding-left: 160px; /*offset of tabs relative to browser left edge - moved to alight with logo text*/
	padding-top: 130px;	/*offset of tabs relative to browser top edge - moved down slightly */
}

.jquerycssmenu ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 10003;
}

/*Top level list items*/
.jquerycssmenu ul li
{
	position: relative;
	display: inline;
	float: left;
	z-index: 10004;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a
{
	display: block;
	color: #555;
	padding: 5px 7px 4px 7px;
	margin-right: 3px; /*spacing between tabs*/
	text-decoration: none;
	border-style: none;
}

.jquerycssmenu ul li a:hover
{
	color: #f5f5f5;
	border-style: none;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul
{
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
	border-style: none;
	opacity: 0.95;
	z-index: 10005;
	background-color:#000; /* we still need background for drop downs */
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li
{
	 display: list-item; 
	list-style:none; /* get rid of bullets added by base.css */
	float: none;
	border-style: none;
	z-index: 10006;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul
{
	top: 0;
	border-style: none;
	z-index: 10007;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a
{
	/* font: normal 13px Verdana; -- use site wide typography */
	width: 160px; /*width of sub menus*/
	padding: 4px 5px;
	margin: 0;
}

.jquerycssmenu ul li ul li a:hover
{ /*sub menus hover style*/
	color: #f5f5f5;
	border-style: none;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass
{
	position: absolute;
	top: 7px;
	right: 5px;
}

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