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

/******************************************************** 
 * Bottom Horizontal Menu Styles                        * 
 ********************************************************/
.bnav .xcsstitle {display:none;}

/* 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. */
.bnav {
	position: relative;
	width:100%;
}

/* Setup appearance of the top level menu "button", including background images*/
.bnav .button {
	float:left; 
	background-position:right;
	background-repeat:no-repeat;
}

/* Setup the currently active button to look different. Optional, but nice */
.bnav .activebutton {
	float:left; 
}

.bnav a {
	display: inline;
	color: #ffffff;
	font-weight: normal;
	font-family: Helvetica, Arial, sans-serif;
 	font-size: 12px;
	text-decoration: none;
	padding: 0px 4px 0px 4px;
}

.bnav a:hover {color: #c3c2b3;}

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

/* You'll notice that .bnav is missing a number of cascaded defaults... 
   ithis s because (in this example) the bottom nav only shows the top 
   level of items. In other words, there are no fly-outs or dropdowns to 
   style. The SiteApex code will generate all of the html for the other 
   menu items but they will not display if you do not style them to.    */


