@charset "UTF-8";
/* FW100R3 */
/* (c)2010 SugarHill Works LLC - http://www.sugarhillworks.com */

#menu_cntr_cntr{
	background: none !important;
	position: relative;
	float: right;
	top: 0px;
	right: 0px;
	width: 500px;
	margin: 0;
	overflow: visible;	
	z-index: 100;
}


/**** MENU CENTERING NOTES: ************************************************************************************
***** The width + padding, etc of .nav_menu should equal the width of #menu_cntr_cntr2 
***** The width of the li's should be the .nav_menu's width only divided by the # of top level menu items
***** See  MENU CENTERING comments below.
***************************************************************************************************************/
.nav_menu {
	background: none !important;
	position: relative;
	float: right;
	right: 5px;
	margin: 0;
}

.nav_menu ul {
	position: relative;
	float: right;
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 220;
}

/*Top level list items*/
.nav_menu ul li {
	position: relative;
	float: left;
	width: auto; /* MENU CENTERING! - the width should be inner width of .nav_menu divided by number of top-level menu items */
	height: 15px !important; /* Safari likey for ddshadow */
	padding: 0 5px;
	display: inline;
}

/*Top level menu link items style*/
.nav_menu ul li a {
	display: block;
	background: none; /*background of menu items (default state)*/
	color: #000000;
	margin: 0; /* was 0 34 0 42 */ /* must adjust the padding in .js file to match, for no submenu arrows */
	text-decoration: none;
	font-weight: bold;
	z-index: 240;
	white-space: nowrap !important;
}


.nav_menu ul li a:link, .nav_menu ul li a:visited {
	color: #000000;
}

/*CSS class that's dynamically added to the currently active menu items' LI A element*/
.nav_menu ul li a.current-page {
	color: #694b04;
	cursor: default;
}
.nav_menu ul li a.current-page:hover {
	cursor: default;
}

/*.nav_menu ul li a.selected {
	
}*/

	
/*1st sub level menu*/
.nav_menu ul li ul {
	position: absolute;
	top: 0px;
	right: 0px;
	width: auto;
	margin-left: 5px;
	padding: 5px 0px 0px 0px;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	z-index: 320;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.nav_menu ul li ul li {
	position: relative;
	float: none;
	left: 0px;
	top: 0px;
	width: auto;
	height: 15px;
	padding: 3px 4px;
	display: block;
	z-index: 330;
}
.nav_menu ul li ul li.lastItem {
	background: none;
	height: 0px !important;
	font-size: 0px;/*IE6*/
	margin: 0;
	padding: 0;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.nav_menu ul li ul li ul{
	top: 0;
}

/* Sub level menu links style */
.nav_menu ul li ul li a{ 
	position: relative;
	width: auto; /*width of sub menus*/
	color: #000;
	text-align: left;
	font-size: 90%;
	display: block;
	white-space: nowrap;
}






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

.downarrowclass {
	position: absolute;
	top: 0px;
	right: 0px;
}

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


/* ######### ANIMATION DEFAULT STYLES ######### */
/*.menuFadeBG {
	background: #CCF;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	border-radius: 8px; 
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	z-index:-10;
} 
*/

/* ######### CSS for shadow added to sub menus  ######### */
.ddshadow{
	background: #FFF;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	z-index: 100;
}

.toplevelshadow{ 
	opacity: 0.75;
	-moz-opacity: 0.75;
	filter: alpha(opacity=75);
}

