@charset "UTF-8";

/* AuxSpryMenuBarHorizontal.css - Set up for MellettePC.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: 710px;
	margin:0;
	padding:0;
	font-size: 14px;
	line-height:1.2;
}

/* 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:14px;
	font-weight:bold;
}

/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	width: 142px;
				
	float: left;
	white-space: nowrap;
	background-image:none;
}
/* 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: 162px;
	border:none;
	background:#090 url(drop_down_wood.jpg); 
}

/* 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;
		padding:5px;
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 162px;
	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 transparent background with white text, to show over navbar bg image in main.css  */
ul.MenuBarHorizontal a
{
/*	background-color:transparent;   Works in FF; IE shows as white background   */
/******************** JDW: Had to comment out BG color in regular SpryMenuBarHorizontal.css **********************/
	background-color:transparent;
	padding: 6px 2px 6px 2px;
	color: #FFFFFF;
}
/* JDW--customize this as needed */
/* Menu items that have mouse over or focus have a transparent background and light yellow text */
/* JDW -- changed to dark marine blue background */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: transparent;
	color:#FFFF9F;
}
/* JDW--customize this as needed  */
/* Menu items that are open with submenus are set to MenuBarItemHover with a transparent background and light yellow text */
/* JDW -- changed to dark marine blue background */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: transparent; 
	color:#FFFF9F;
}

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

 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%;
}

/*JDW added to permit background color for submenu item hover w/o affecting other menu items, with or without submenus  */
ul.MenuBarHorizontal ul a.MenuBarItemHover
{
	background-image:none;
	background-color:#500;
}

/* 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-color:transparent;
	background-image: url(SpryMenuBarDownHover.gif);
	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-color:transparent;
				background-color:#500;
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

