﻿.foo
{
}
/* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* header - Main horizontal navigation */
.mainNav { margin: 0 0 10px 0; padding: 0; color: #fff; clear: both; height: 36px; background: #3D6A7D; url(/images/site/main-nav-bg-down.jpg) top left repeat-x;}


/* Home button */


/* Help button */
.mainMenuItemHelp{display: block;float: right; z-index: 500;}
.mainMenuItemHelp a{position: relative;display: block;padding: 10px 15px 10px 15px;text-decoration: none;color: #fff;}
.mainMenuItemHelp a:hover{text-decoration: underline;background: transparent url(/images/site/main-nav-bg-help-up.jpg) top left repeat-x; color:#fff;}
.mainMenuItemHelpText {font-size: 100%; margin:0; font-family: Georgia, "Times New Roman" , Times, serif;font-weight: bold;color: #fff;background: transparent url(/images/site/help-icon.gif) center left no-repeat;padding-left: 20px;}


/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */

#MainMenu
{
	height: 36px;
	width: 100%;
	white-space: nowrap;
	background: #3D6A7D url(/images/site/main-nav-bg-down.jpg) top left repeat-x;
	z-index: 400;
}

.HeaderMenu
{
	width: auto;
	z-index: 1;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.HeaderMenu ul
{
	height: 36px;
	white-space: nowrap;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
.HeaderMenu ul.AspNet-Menu ul
{
	width: auto;
	left: 8.9em;
	top: -1em;
	z-index: 400;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.HeaderMenu ul.AspNet-Menu li
{
	font-family: Tahoma, Arial, sans-serif;
	font-weight: bold;
	color: #fff;
	background: transparent url(/images/site/main-nav-rule.jpg) center right no-repeat;
	padding: 0;
	display: inline-block;
}

/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
.HeaderMenu ul.AspNet-Menu li a, .HeaderMenu ul.AspNet-Menu li span
{
	color: white;
	padding: 10px 14px;
	border-bottom: 0;
	display: block;
	letter-spacing: 0.05em;
}

.HeaderMenu ul.AspNet-Menu li a.menu-image
{
	padding: 8px 14px 7px;
}

.HeaderMenu ul.AspNet-Menu li a:hover 
{
	text-decoration: underline;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.HeaderMenu ul.AspNet-Menu ul li.AspNet-Menu-Leaf
{
	background-image: none;
	background-color: #61a4c2;
	border-bottom: 1px solid #528aa3;
	display: block;
	float: none;
	width: auto;
	z-index: 500;
}

.HeaderMenu ul.AspNet-Menu ul li.AspNet-Menu-Leaf a
{ 
	margin:0;
	padding: 3px 8px 3px 15px;
	text-decoration: none;
	display: block;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.HeaderMenu ul.AspNet-Menu li a img
{
	border-style: none;
	vertical-align: middle;
}

/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.HeaderMenu ul.AspNet-Menu li:hover,
.HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover,
.HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
	background: transparent url(/images/site/main-nav-bg-dropdown-up.jpg) center right no-repeat;
}

.HeaderMenu ul.AspNet-Menu li:hover a,
.HeaderMenu ul.AspNet-Menu li:hover span,
.HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover span,
.HeaderMenu ul.AspNet-Menu li:hover li:hover a,
.HeaderMenu ul.AspNet-Menu li:hover li:hover span,
.HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
	color: White;
}

.HeaderMenu ul.AspNet-Menu li:hover ul a, .HeaderMenu ul.AspNet-Menu li:hover ul span, .HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a, .HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span
{
	padding: auto 10px;
}

.HeaderMenu ul.AspNet-Menu li:hover ul li.AspNet-Menu-Leaf a:hover, .HeaderMenu ul.AspNet-Menu li:hover ul li.AspNet-Menu-Leaf a:hover, .HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul li.AspNet-Menu-Leaf a:hover, .HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul li.AspNet-Menu-Leaf a:hover
{
	background: #96C2D6 url(/images/site/submenu-active.gif) center left no-repeat;
	text-decoration: none;
}

/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
.HeaderMenu ul.AspNet-Menu li a:hover, .HeaderMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
}

.HeaderMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
	background-image: none;
}


/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */

.HeaderMenu .AspNet-Menu-Horizontal
{
	position: absolute;
	top: 0;
	z-index: 300;
}

/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accommodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. */
.HeaderMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
	width: 100%;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.HeaderMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
	left: 0;
	top: 100%;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.HeaderMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{	margin:0; padding:0;
	width: auto;
	_width: 1%;
	text-align: center;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.HeaderMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
	text-align: left;
	width: 100%;
	margin: 0;
	padding: 0;
	display: block;
	float: none;
}
.HeaderMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li a
{
	padding-left: 15px;
	line-height: 15px;
	display: block;
	margin-top: 0;
	letter-spacing: 0;

}
.HeaderMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li a img
{
	margin-left: -13px;
	margin-right: 1px;
}

/* ------------------------------------------------------------------- */
/* Specific to this sample web site. */
/* These rules are probably not useful in your site. */

#MainMenu
{
	position: relative;
	width: 100%;
	font-size: small;
	font-family: Tahoma;
}

/* --------------------------------------------------------------------------------------------------- */
/* Used when the Menu adapter is NOT used. */
/* These styles are used by the Menu's skin, found in this theme's skin file. */

#MainMenu .Menu-Skin-Horizontal
{
	position: absolute;
	left: 9.5em;
	top: 0;
	width: 45em;
	z-index: 350;
}

#MainMenu .Menu-Skin-StaticItem
{
	background: #7795BD url(bg_nav.gif) repeat-x;
	font-size: small;
}

#MainMenu .Menu-Skin-DynamicHover
{
	background: #7795BD;
}
a.menu-home
{
	width: 165px;
}
a.menu-birds
{
	width: 165px;
}
a.menu-gardening
{
	width: 135px;
}
a.menu-butterflies
{
	width: 105px;
}
a.menu-photos
{
	width: 165px;
}
a.menu-contests
{
	width: 165px;
}
a.menu-community
{
	width: 145px;
}
a.menu-plus
{
	width: 180px;
}
a.menu-shop
{
	width: 170px;
}
/*
#mainmenuwrapper {background-color: transparent; margin: 0; padding: 0; width: 100%; z-index: 100; clear: both; height: 39px;}
*/
