/*****************************************************************
 *                                                               *
 *  XCSS Menu Styles                                             *
 *  ----------------                                             *
 *                                                               *
 * This area will include details regarding the required and     *
 * optional styles, how they are used, and in most cases why.    *
 *                                                               *
 *                                                               *
 *                                                               *
 *****************************************************************/

/******************************************************** 
 * Top Horizontal Menu Styles                           * 
 ********************************************************/

/* Container div, mainly used to cascade defaults so that multiple menus 
   can coexist on a single page without having to share a layout and design. */
.hnav .xcsstitle { display:none; }

.hnav {
	z-index:200;
}
* html .hnav { display:block; }

/* Setup appearance of links */
.hnav a { font-size: 12px; color: #fff; font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; text-decoration: none; height:100%; }
/*Fix for IE6 block hover issue*/
* html .hnav a { height:auto; }

.hnav a:hover {display: block; color:silver; text-decoration: none;}
.hnav a:active { color: red; text-decoration: none; display: block; }
/* Setup appearance of the top level menu "button", including background images*/
.hnav .button { font-size: 12pt; float:left; z-index:0; margin-right:10px; margin-left: 30px; padding: 0 3px 0 30px; }
.hnav .buttonlast {margin-right:0px;}
.hnav .button:hover { color: #bcd531; }

/* Setup the currently active button to look different. Optional, but nice */
.hnav .activebutton {
	display: block;
	float:left; 
	z-index:0;
}
.hnav .activebutton a {  }
/* This is the arrow shown in the top level, where there is a dropdown level of menu */
.hnav a.navarrow {}

/* This is the arrow shown in the dropdown where there is a third level of menu */
.hnav a.subarrow {}

/* Hide the dot on unordered lists */
.hnav ul, .hnav li {padding:0; margin:0; list-style: none;}

.hnav .parent:hover div.dropdown {left: -35px;} /* hover rule for 1st dropdowns */ 

/* hover rule for 2nd level flyouts */
.hnav .dropdown li:hover div { color: #a99c5f; left: 200px; /* this value controls the amount of flyout "overlap" */
	top: -31px; /* this value controls the amount of flyout vertical offset */
}

/******************************************************** 
 * Common/Shared Dropdown Menu Styles                   * 
 ********************************************************/

/******************************************************** 
 * Second Level Dropdown Menu Styles                   * 
 ********************************************************/

/* 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. */
.parent {
	position: relative;
}
.parent:hover {
	background-image: url(images/bgfix.gif);
	background-repeat:repeat;
} 

/*Over-rides default a properties from Parent*/
.parent ul a { font-size: 12px; font-weight: normal; line-height: 19px; }
/*Fix for IE6 block hover issue*/
* html .parent ul a { height:200%; /*this makes the link the full button area*/
	width:100px; /*this sets a width on each button*/
	text-align:left; }
/* Could be different for each of the container navs... hnav, vnav, etc. */
.dropdown { width: 250px; position: absolute; left: -2000px; top: auto; /* puts dropdowns directly under top nav */
	text-align: left; /* needed because IE misapplies text centering to boxes */	
	background: url(../images/bgfix.gif); z-index: 10000; }

/* 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, although this method does eliminate
possible box model problems */
.dropdown ul { width: 200px; margin: 11px 4px 4px; /* creates "sticky hovering" zones for dropdowns */
  background-image: url(http://67.225.211.26/images/drop-bkg.jpg); } 
.dropdown li { padding: 5px 8px; border-top: 2px solid #9e866b; } /* IE5/win bugfix */
.dropdown li:hover {color:#9bb7d5; background: url(../images/bgfix.gif);} /* hover color effect on dropdown links. This line must have a background value for IE7 */

/* Setup defaults for the second level items (we need one per, so they can be styled differently) */
.drop4 ul {}

/******************************************************** 
 * Third Level Dropdown Menu Styles                   * 
 ********************************************************/

/* rules for divs inside dropdown */
.dropdown div {
	width: 200px;
	position: absolute;		
	left: -3000px;
	top: 0;  
	background: url(../images/bgfix.gif);
	text-align: left; /* needed because IE misapplies text centering to boxes */
}

/* Background colour for flyouts, and "sticky hovering" zones for flyouts */
.dropdown div ul {margin: 30px 30px 30px 0;}  
.dropdown div ul a {} /* Foreground colour for  flyouts */ 
.dropdown div li:hover {color:#9bb7d5;} /* hover color effect on flyout links */

/* Setup styles for the third level items... with a cascade to keep it simple */
.drop4 ul div ul {}

/******************************************************** 
 * Misc Styles and IE Fixes                             * 
 ********************************************************/

.floatfix {margin-right: -3px;}
/* this fixes the IE 3px bug that is common in this type of float arrangement */ 

/* This is to hide the following from IE/Mac. \*/
* html .button .dropdown li {
height: 1%;
margin-left: -16px;
mar\gin-left: 0;
}
/* */

/* The first rule above fixes "bullet region" problems in IE5.x/win, 
and the 2nd is to make all links fully clickable. */    

/*\*/ /*/
.hnav .dropdown, .hnav .dropdown div {width: 189px;}
.hnav .button .dropdown ul {margin: 0px;}
.hnav .dropdown, .hnav .dropdown div {position: static;}
.hnav .dropdown ul {border: 0;}

.vnav .dropdown, .vnav .dropdown div {width: 189px;}
.vnav .button .dropdown ul {margin: 0px;}
.vnav .dropdown, .vnav .dropdown div {position: static;}
.vnav .dropdown ul {border: 0;}*/

	

/* Required to hide new xcss mobile elements when not in use. Added by MikeM via pre-launch script */
.menu-trigger { display: none; }
.mp-arrow { display: none; }
	