/* ================================================================ 
CSS MULTILEVEL DROPDOWN MENU
Original version by Stu Nicholls Copyright (c) 2005-2009 
The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/anywidth2.html
Modified and annotated by Mike Nichols, October 24, 2009
=================================================================== */

/* MENU BAR WIDTH, TAB ALIGNMENT & POSITIONING */
#css_menu {
	/* width of menu */
	width: 1000px;
	/*background: transparent;*/
	/* center menu tabs or not */
	/*text-align:center;*/
	/* positioning the menu */
	position: relative;
/*	top: -27px;*/
	left: 160px;
	margin-top: 3px;
	z-index: 100;
}

/*-----HEIGHT OF ITEMS */
/* all menu items */
#css_menu { height: 20px; }
#css_menu a { line-height:20px; }
/* all hover items */
#css_menu a:hover ul,
#css_menu li.left a:hover ul,
#css_menu ul li:hover > ul,
#css_menu li.left:hover > ul { top:20px; }
/* flyout positioning - this number must remain negative */
#css_menu ul ul li:hover > ul,
#css_menu li.left ul li:hover > ul { margin-top:-20px;}
/*-----*/

/* ITEM ARROWS AND FONT STYLING WHEN ITEM HAS DROPDOWNS AND FLYOUTS */
/* menu arrow down */
#css_menu li a.down {
	background:transparent url(arrow-down-white.gif) no-repeat right center;
}
/* menu arrow right, font color and weight when item has flyouts */
#css_menu li ul a.flyout {
	background:transparent url(arrow-right-black.gif) no-repeat right center;
	color: #000000;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	/*text-transform: uppercase;*/
}
/* menu arrow left, font color and weight when item has flyouts */
#css_menu li.left ul a.flyout {
	background:transparent url(arrow-left-black.gif) no-repeat left center;
	color: #408000;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
}

/* ITEM BACKGROUND, BORDER AND FONT STYLING */
/* level one: main menu and default font styling */
#css_menu { 
	/* remove background to get floating tabs */
	background: transparent; 
	/* font family if desired */
/*	font-family: Candara, Trebuchet,Arial,sans-serif;*/
	font-family: Tahoma, Trebuchet,Arial,sans-serif;
	/* cursor style */
	cursor: pointer;
	/* border if desired */
	/*border: 1px solid #000000;
	border-width: 0px 1px 0px 1px;*/
}

/* level one; main menu tabs */
#css_menu ul.level1 { background: transparent; }
#css_menu ul.level1 a { 
	/*width: 80px;*/
	color: #EAEAEA; 
	font-size: 1.5em; 
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	/*text-transform: uppercase;*/
	/*text-align: center;*/
	/* letter spacing */
	/*letter-spacing: 2px;*/
	/* item padding */
	padding:0 10px 0 10px;
	/* border if desired */
	/*border: 1px solid #000000;
	border-width: 1px 1px 1px 1px;*/
} 
/* level two dropdown */
#css_menu ul.level2 { background:#FEEE80; }
#css_menu ul.level2 a { 
	color: #000000; 
	font-size: 1.2em; 
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: none;
	/* letter spacing */
	/*letter-spacing: 2px;*/
	/* item padding */
	padding:0 20px 0 10px;
	/* border if desired */
	/*border: 1px solid #000000;
	border-width: 1px 1px 1px 1px;*/
}
/* level three flyout */
#css_menu ul.level3 { background:#FEF7BF; } 
#css_menu ul.level3 a { 
	color: #000000; 
	font-size: 1.2em; 
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: none;
	/* letter spacing */
	/*letter-spacing: 2px;*/
	/* item padding */
	padding:0 20px 0 10px;
	/* border if desired */
	/*border: 1px solid #000000;
	border-width: 1px 1px 1px 1px;*/
}
/* level four flyout */
#css_menu ul.level4 { background:#DCCD9B; } 
#css_menu ul.level4 a {
	color: #000000; 
	font-size: 1.2em; 
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: none;
	/* letter spacing */
	/*letter-spacing: 2px;*/
	/* item padding */
	padding:0 20px 0 10px;
	/* border if desired */
	/*border: 1px solid #000000;
	border-width: 1px 1px 1px 1px;*/
}
/* hover - these two should be the same */
#css_menu li a:hover,
#css_menu li a.flyout:hover {
	background-color:#EFCF00;
	color: #000000;
	/* bold or not */
	font-weight: bold;
	/* underline or not */
	text-decoration:none;
} 
#css_menu li:hover > a,
#css_menu ul li:hover > a.flyout {
	background-color:#EFCF00;
	color: #000000;
	/* bold or not */
	font-weight: bold;
	/* underline or not */
	text-decoration:none;
}

/* INDIVIDUAL LEVEL 1 TAB BACKGROUNDS */
#css_menu #tab1 { background: transparent; }
#css_menu #tab2 { background: transparent; }
#css_menu #tab3 { background: transparent; }
#css_menu #tab4 { background: transparent; }
#css_menu #tab5 { background: transparent; }
#css_menu #tab6 { background: transparent; }
#css_menu #tab7 { background: transparent; }
#css_menu #tab8 { background: transparent; }
#css_menu #tab9 { background: transparent; }
#css_menu #tab10 { background: transparent; }

/*===== DO NOT CHANGE ANYTHING BELOW THIS LINE =====*/
#css_menu a { display:block; }
#css_menu a:hover ul {left:0; }
#css_menu li.left a:hover ul {left:auto; right:-1px; }
#css_menu ul {margin:0; padding:0; list-style:none; white-space:nowrap; text-align:left;}
#css_menu ul {display:inline-block;} 
#css_menu li {margin:0; padding:0; list-style:none;}
#css_menu li {display:inline-block; display:inline;}
#css_menu ul ul {position:absolute; left:-9999px;}
#css_menu ul.level1 {margin:0 auto;}
#css_menu ul.level1 li.level1-li {float:left; display:block; position:relative;}
#css_menu b {position:absolute;}
#css_menu ul.level1 li.level1-li a.level1-a {float:left;}
#css_menu ul li:hover > ul {visibility:visible; left:0; }
#css_menu ul ul li:hover > ul {visibility:visible; left:100%; top:auto;}
#css_menu li.left:hover > ul {visibility:visible; left:auto; right:0; }
#css_menu li.left ul li:hover > ul {visibility:visible; left:auto; right:100%; top:auto; }
#css_menu li.left ul a {text-align:right; padding:0 10px 0 20px;}
#css_menu a:hover a:hover ul, 
#css_menu a:hover a:hover a:hover ul {left:100%; visibility:visible;}
#css_menu li.left a:hover a:hover ul, 
#css_menu li.left a:hover a:hover a:hover ul {left:auto; right:0; visibility:visible;}
#css_menu a:hover ul ul, #css_menu a:hover a:hover ul ul {left:-9999px;}
#css_menu li.left a:hover ul ul, #css_menu li.left a:hover a:hover ul ul {left:-9999px;}
#css_menu table {position:absolute; height:0; width:0; left:0; border-collapse:collapse; margin-top:-4px;}
#css_menu table table {position:absolute; left:99%; height:0; width:0; border-collapse:collapse; margin-top:-29px;}
#css_menu li.left table {position:absolute; height:0; width:0; left:auto; right:0; border-collapse:collapse; margin-top:-4px;}
#css_menu li.left table table {position:absolute; left:auto; right:100%; height:0; width:0; border-collapse:collapse; margin-top:-29px;}
