@charset "UTF-8";
/* CSS Document */


/* ============================ MAIN NAVIGATION ============================ */

#topnav_container, #topnav_container ul.floater{
	
	z-index: 1000;
}

ul.floater {
	padding: 0;
}

#topnav_container li.parent {
	position: relative;
	z-index: 1000;
}

/* ============================ POPUP MENU STYLING ============================ */

.dropdown { /* rules for dropdown div */
	
	position: absolute;
	left: -3000px;
	top: 26px; /* puts dropdowns directly under top nav */
	text-align: left; /* needed because IE misapplies text centering to boxes */
	background: url(images/bgfix.gif);
}

html.ie6 .dropdown, html.ie7 .dropdown {
	top: 41px; /* puts dropdowns directly under top nav */
}

html.ie8 .dropdown {
	top: 27px; /* puts dropdowns directly under top nav */
}

html.mac .dropdown {
	top: 24px; /* puts dropdowns directly under top nav */
}

div.links{
	background: #1f2429;
	border-right: 5px solid #555654;
	border-left: 5px solid #555654;
	padding: 20px 20px 0px 0px;
	z-index: 1000;
}

li.parent a {
	cursor: pointer;
}

.col1 {
	width: 203px;
}

.col2 {
	width: 410px;
}

.col3 {
	width: 607px;
}

/* ====== ALL TIERS ======= */

.dropdown .links ul, .dropdown .links li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align:left;
	z-index: 1000;
}

.dropdown .links ul ul, .dropdown .links ul ul ul, .dropdown .links li{
	float: none;
	background: url(none);
	text-align: left;
}

.dropdown .links ul.col {
	width: 182px;
	float: left;
}

.dropdown .links ul a {
	padding: 10px;
	display: block;
	font-size: 1em;
	margin-bottom: 2px;
	height: auto;
}

/* ====== TIER 1 ======= */

.dropdown .links ul {
	padding-left: 20px;
}
.dropdown .links ul a:link, .dropdown .links ul a:visited, .dropdown .links ul a:active {
	font-weight: bold;
	color: #f7f7f7;
	background: #30363d;
	width: 162px;
}

.dropdown .links ul a:hover{
	color: #f7f7f7;
	background: #50565d;
}

/* ====== TIER 2 ======= */

.dropdown .links ul ul a:link, .dropdown .links ul ul a:visited, .dropdown .links ul ul a:active {
	width: 152px;
	color: #828b90;
	background: none;
	font-weight: normal;
	padding-left: 0px;
}

.dropdown .links ul ul a:hover {
	color: #f7f7f7;
	background: none;
}

/* ====== TIER 3 ======= */

.dropdown .links ul ul ul a{
	font-size: 11px;
	font-weight: normal;
	color: #f0e6ad;
	padding-left: 30px;
	background: none;
}

.dropdown .links ul ul ul a:hover {
	color: #f7f7f7;
	background: none;
}

/* ====== FOOTER ======= */

div.dropdown .footer{
	float: left;
}
div.dropdown .footer1 {
	width: 243px;
}

div.dropdown .footer2 {
	width: 440px;
}

div.dropdown .footer3 {
	width: 637px;
}

.footer .col1 {
	width: 213px;
}

.footer .col2 {
	width: 420px;
}

.footer .col3 {
	width: 617px;
}

div.dropdown .footer .leftcorner {
	background: url(images/dd_cornerleft.gif) no-repeat;
	float: left;
	height: 10px;
	width: 10px;
}

div.dropdown .footer .mid {
	background: url(images/dd_mid.gif) repeat-x;
	float: left;
	height: 10px;
}

div.dropdown .footer .rightcorner {
	background: url(images/dd_cornerright.gif) no-repeat;
	float: left;
	height: 10px;
	width: 10px;
}

.parent {position: relative;}
/* this parent div does not provide "sticky hovering", but instead fixes a
strange bug in Op7. When an element serves as a hovered popup "parent" element,
that element must not also be floated or all heck breaks loose in Opera 7.
To prevent this, we have floated the top level list items, while nesting
hoverable parent divs inside that are then hovered to generate the dropdowns.
Thus the ugly (but interesting) Op7 bug is defeated. */


/*XXXXXXXXXXXX Primary dropdown/flyout rules XXXXXXXXXXX*/

/* The margins on the UL's replace the div paddings to create "sticky hovering"
zones,  and the margins should "fill" the divs, making the IE BG fix unnecessary.
Unfortunately the BG fix is still needed, altho this method does eliminate
possible box model problems */


.parent:hover {
	background-image: url(images/bgfix.gif);
}
/* this hover calls a transparent GIF only to defeat the IE failed hover bug. Any
background change on hovering div.parent will make IE obey and display the dropdown.
While the call itself will fix the bug, make sure you actually call a real image
file so that your site error logs will not fill with failed image calls. */

.parent:hover div.dropdown {left: 0px;} /* hover rule for dropdowns */
/* extra pixel makes dropdowns "line up" with top links */



/*XXXXXXXXXXX Special fixes XXXXXXXXXXX*/

* html .topnav_container a
 {height: 1%;}

/* The first 2 rules above fix "bullet region" problems in IE5.x/win,
and the 2nd is to make all links fully clickable. */

.brclear { /* Use a break with this class to clear float containers */
clear:both;
height:0;
margin:0;
font-size: 1px;
line-height: 0;
}





