@charset "UTF-8";

/* AuxSpryMenuBarHorizontal.css - Set up for bowmanwalker.com */

/* This CSS file contains only custom tweaks to be applied on top of standard Spry CSS file. */
/* The link to this file must FOLLOW the link to the standard Spry CSS file.  */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/
/* The outermost container of the Menu Bar      */
/* JDW--changes here include setting font-size to 13px andd line-height   */
/*     to normal to offset the general setting in the overall site CSS file     */
/* Also to center menu: set fixed width to sum of menu item widths, and set margin: 0 auto; */

ul.MenuBarHorizontal
{
	width: 960px;
	margin:0 auto;
	font-size: 12px;
	line-height:normal;
}

/* JDW -- added this rule to specify centering of top menu items -- must set lower level */
/*     menu items specifically to text-align: left in order to offset effect  */
/* 	Also set larger font size and bold weight, which is offset below for sub items      */
ul.MenuBarHorizontal a
{
	text-align:center;
	font-size:13px;
	font-weight:bold;
}

/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	width: 133px;
	float: left;
	white-space: nowrap;

}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	width: 133px;
}

/* JDW -- added this rule to set lower level menu items specifically to text-align: left */
/*     in order to offset effect of centering top-level items; also set font size, weight */
ul.MenuBarHorizontal ul a
{
		text-align:left;
		font-size:11px;
/*		font-weight:normal;  */
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 133px;
	float: none;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
/* JDW -- reduced right overlap to 0% (margin:100%) to avoid obscuring right arrow image and use full page width without going past right edge. */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 100%;
}


/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* JDW--customize this as needed  */
/* Menu items are a light gray block with padding and no text decoration */
/* JDW -- changed to dark red background with light cream text  */

/* JDW--Submenu containers have borders only on top */
ul.MenuBarHorizontal ul
{
	border:none;
	border-top: 1px solid #CCC;
}

ul.MenuBarHorizontal a
{
	background-color: #800000;
	padding: 2px 2px;
	color: #F8E3ED;
}
/* JDW--customize this as needed */
/* Menu items that have mouse over or focus have a blue background and white text */
/* JDW -- changed to dark marine blue background */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
/*	background-color: #33C;  */
	background-color: #003366;
	background-color: #648DAC;

	color: #FFF;
}
/* JDW--customize this as needed  */
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
/* JDW -- changed to dark marine blue background */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #648DAC;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* JDW--customize the next 4 sections as needed for menu arrow images --CHANGES SO FAR: */
/* 1. Don't display arrow gifs on top level items until hover             */
/* 2. Move arrow gifs to left side of menu items (5%) for top level items on hover */
/* 3. Use Hover image for both right arrows, as normal image is too dark for background */

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
/*	background-image: url(SpryMenuBarDown.gif);  */
	background-image:none;
	background-repeat: no-repeat;
/*	background-position: 95% 50%;  */
	background-position: 2% 50%;
}

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
/*	background-image: url(SpryMenuBarRight.gif);  */
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
/*	background-image: url(SpryMenuBarDownHover.gif);  */ /* JDW: don't display on top-level, even on hover */
	background-image: none;
	background-repeat: no-repeat;
	background-position: 5% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

