@charset "windows-1252";
/*****************************************************************************

	Use: This file builds the layout and format for all 
	top menuns on the national template.
	
	author: Alex Belleque 
		Note: The orginal deisgn prior to changes was Steve Johnson 
		
	date: March 17, 2011
	
	Changes: 
			April 1st 2011, ACB 
				Added new code to replace images with color fading.
	
	
*****************************************************************************/
/*
Container for the menu. We set top and bottom borders only because the menu container
stretches the entire window width. Note that this container can go inside a fixed width
element that is centered on the page, if you so desire. It can even go inside a table cell.
It carries a background image for aesthetics.
*/
#TopBanner {
	width: 1020px;
	border-bottom: 1px solid #069;
	height: 86px; /* Needed for IE7 and older */	
}
#topnav {
	border: 0;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	width: 1020px; /* ect */
}
/*Clears the floated menu items.Assigned to a BR tag placed just before menuwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
/*
topmenu is the root UL and topmenu ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#topmenu, #topmenu ul {
	width: 1020px; /* ect */
	margin: 0; /* ect - Changed from 3 to make new menu look work */
	padding: 5px; /* ect - changed from 0 */
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #A2AAAD;
	font-size: 12px;
	/* width: auto; */
	font-weight:normal;
	z-index: 5000;
	/* background-color: transparent; */
	text-transform: uppercase; /* Required to make IE 8 & 9 transform to uppercase */
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray. We also set the basic background colors for the menu
note that each browser has it own set of commands.
*/
#topmenu a {
	display: block;
	cursor: pointer;
	background-color: #A2AAAD;
	background: transparent url(//cgaux.org/_images/auxpa_Button_Up.jpg) top left repeat-x;
	padding-top: 5px;
	padding-bottom: 5px; /* added to keep padding under main menu */;
	font-size: 12px;
	height: auto; /* allows sub menu to have two lines of text */;
	color: #000000;
	overflow: hidden;
	text-decoration: none;
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#topmenu li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	/* border-bottom: 1px solid #666; */
/* this also sets line between each of the sub menus*/ 
	/* border-right: 1px solid #AAA; */
	/* border-right: 1px solid #999; */
	text-align: center;
	cursor: pointer;
	float: left;
	z-index: 5000;
}
/*
Sets width for Sub-Menu box and the List Items inside. We also align the text for sub menus 
to the left as we will add padding in the class below. 
*/
#topmenu li ul, #topmenu ul li {
	width: 275px;
	text-align: left;
}
/*
The sub-menu links. We set color and turn off the right border. We set the padding for the 
sub menu links to 10px to allow for a cleaner look.
*/
#topmenu ul li a {
	color: #A2AAAD;
	border-right: 0;
	padding-left: 10px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#topmenu li ul {
	position: relative;
	display: none;
	background-color: #CCCCCC;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#topmenu li:hover a, #topmenu a:focus, #topmenu a:active {
	color: #FFFFFF;
	background-color: #666666;
	background: transparent url(//cgaux.org/_images/auxpa_Button_Hover.jpg) top left repeat-x;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over.
*/
#topmenu li:hover ul {
	display: block;
	position: absolute;
	padding-left: 0px;
	background-color: #CCCCCC; /*Sets the submenu background color */;
	left: 0px; /*required to make IE7 behave */
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over.
*/
#topmenu li:hover ul a {
	color: #000000;
	background-color: transparent;
	background: none; /*Allows the background color, above, to show through */
/*	
background: transparent url(//d11s.org/_platform/_images/auxpa_Button_Up.jpg) top left repeat-x;	*/
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color. We set text color to white.
*/
#topmenu ul a:hover {
	/* background-color: #666666!important; */
	color: #FFFFFF!important;
}
#topmenu li:hover ul a:hover {
	background: transparent url(//cgaux.org/_images/auxpa_Button_Hover.jpg) top left repeat-x;
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#topmenu li {
	width: 99px;
}
/*  * html #topmenu ul a {zoom:1}; Hack to make older IE "get laytout". */