﻿/* navigation */

.Menu
{
    float: left;
    width: 640px;
    height: 63px;
    padding-left: 25px;
    text-align: left;
    font-family: Arial;
    font-size: 14px;
}

table.nav td
{
    padding-right: 27px;
    vertical-align: top;
}

table.sublevel
{
    border-top: solid 1px #2c424a;
    background: #326171 url('_images/menuout.gif') repeat-x;
}

a.nav, a.nav:link, a.nav:active, a.nav:visited, a.nav:hover
{
    height: 100%;
    width: 100%;
    color: white;
}

a.nav:hover
{
    color: white;
}

a.nav_selected, a.nav_selected:link, a.nav_selected:active, a.nav_selected:visited, a.nav_selected:hover
{
    color: #3e3d3a;
}

div.sublevelwrapper
{
    background: url('_images/bg.gif') repeat-x left top;
}

a.sublevel, a.sublevel:link, a.sublevel:active, a.sublevel:visited, a.sublevel:hover
{
    padding: 5px; /* adds 5px around each submenu item */
    display: block;
    height: 100%;
    width: 100%;
    color: white;
}

a.sublevel:hover
{
    text-decoration: none;
    color: black;
    background: url('_images/menuover1.gif') repeat-x;
}

a.sublevel_selected, a.sublevel_selected:link, a.sublevel_selected:active, a.sublevel_selected:visited, a.sublevel_selected:hover
{
    font-weight: bold;
    color: black;
}

/* footer */
.FooterMenu
{
    float: left;
    width: 924px;
    overflow: hidden;
    text-align: left;
    font-family: Arial;
    font-size: 11px;
}

table.footernav td
{
    padding-left: 4px;
    padding-right: 5px;
    vertical-align: top;
}

a.footernav, a.footernav:link, a.footernav:active, a.footernav:visited, a.footernav:hover
{
    height: 100%;
    width: 100%;
    color: white;
}

a.footernav:hover
{
    color: white;
}

a.footernav_selected, a.footernav_selected:link, a.footernav_selected:active, a.footernav_selected:visited, a.footernav_selected:hover
{
    color: white;
}

/* Wizard */
/* WIZARD */
.stepNotCompleted
{
    background-color: rgb(153,153,153);
    width: 15px;
    border: 1px solid rgb(153,153,153);
    margin-right: 5px;
    color: White;
    font-family: Arial;
    font-size: 12px;
    text-align: center;
}

.stepCompleted
{
    background-color: #4d4d4d;
    width: 15px;
    border: 1px solid #4d4d4d;
    color: White;
    font-family: Arial;
    font-size: 12px;
    text-align: center;
}

.stepCurrent
{
    background-color: #e01122;
    width: 15px;
    border: 1px solid #e01122;
    color: White;
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.stepBreak
{
    width: 3px;
    background-color: Transparent;
}

.wizardProgress
{
    padding-right: 10px;
    font-family: Arial;
    color: #333333;
    font-size: 12px;

}

.wizardTitle
{
    font-family: Arial;
    font-size: 120%;
    font-weight: bold;
    color: #333333;
    vertical-align: middle;
}

.wizardNavigation
{
    text-align: left;
}

.wizardNavigationNone
{
    display: none;
}

.wizardNext
{
	float: left;
	width: 55px;
	height: 26px;
	background: url('Images/Next.gif') no-repeat;
	overflow: hidden;
	border: 0px;
	cursor: pointer;
    margin-left: -10px;
    margin-top: 10px;
}

.wizardSave
{
	float: left;
	width: 58px;
	height: 26px;
	background: url('Images/Save.gif') no-repeat;
	overflow: hidden;
	border: 0px;
	cursor: pointer;
    margin-left: -24px;
    margin-top: 10px;
}

/* end navigation */

/* Top Menu */

.MenuTop
{
    float: left;
    height: 40px;
    text-align: left;
    font-family: Arial;
    font-size: 14px;
    display: inline;
    vertical-align: top;
}

/* 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. */

.MenuTop ul.AspNet-Menu li a img
{
	border: none;
	padding-right: 7px;
	margin-bottom: 2px;
}

/* TOP TIER */
.MenuTop ul.AspNet-Menu li
{
    line-height: 40px;
	padding: 0 14px 0 14px;
}

.MenuTop ul.AspNet-Menu li:hover
{
}

.MenuTop ul.AspNet-Menu li:hover a
{
}
/* END TOP TIER */

/* 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). */
.MenuTop ul.AspNet-Menu li a, .MenuTop ul.AspNet-Menu li span
{
	color: White;
	padding: 0;
	font-size: 14px;
	font-weight: normal;

}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.MenuTop ul.AspNet-Menu li.AspNet-Menu-Leaf a, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
	color: White; /*Home*/
	font-size: 14px;
}

/* 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). */
.MenuTop ul.AspNet-Menu li:hover, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover
{
	/* not required */
}

.MenuTop ul.AspNet-Menu li:hover a, .MenuTop ul.AspNet-Menu li:hover span, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover a, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover span, .MenuTop ul.AspNet-Menu li:hover li:hover a, .MenuTop ul.AspNet-Menu li:hover li:hover span, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span, .MenuTop ul.AspNet-Menu li:hover li:hover ul a:hover, .MenuTop ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
	/*bf - this is hover on all items*/
}

.MenuTop ul.AspNet-Menu li:hover ul a, .MenuTop ul.AspNet-Menu li:hover ul span, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover ul a, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover ul span, .MenuTop ul.AspNet-Menu li:hover li:hover ul a, .MenuTop ul.AspNet-Menu li:hover li:hover ul span, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a, .MenuTop ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
	color: #555; /* this is individual items below parent*/
	border-top: solid 1px #e0e0e0;
	text-align: left;
	text-decoration: none;
	background: 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. */
.MenuTop ul.AspNet-Menu li a:hover, .MenuTop ul.AspNet-Menu li span.Asp-Menu-Hover
{
}

.MenuTop ul.AspNet-Menu ul li:hover, .MenuTop ul.AspNet-Menu ul li.AspNet-Menu-Leaf a:hover /* hover styles for lower tiers */
{
	background-image: none;
	background-color: #FDEFD5;
}


/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */

.MenuTop .AspNet-Menu-Horizontal
{
	position: relative;
}

/* 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. */
.MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu
{
	width: 1000px;
}

/* 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. */



.MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
	width: 170px;
	left: 0;
	top: 100%;
	background-color: #f0f0f0;
	border: solid 1px #6b798c;
	margin-left: 1px;
}


.MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
	width: 170px;
}

.MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
	width: 170px;
}

/* 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. */
.MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
	/*this is the top one */

}


*html .MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
	width: 1%;
	vertical-align: middle;
	margin: 5px 0;
}

/* 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. */
.MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
	text-align: left;
	width: 170px;
	padding: 0;
	margin: 0;
}

.MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
	text-align: left;
	width: 170px;
	padding: 0;
	margin: 0;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.MenuTop .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
	margin: -31px 0 0 170px;
}

/* selected / active link */

.MenuTop .AspNet-Menu-Selected /* this tier is selected */
{
    background: url('Images/MenuBackground.gif') repeat-x;
}

.MenuTop .AspNet-Menu-ChildSelected /* a tier below this one is selected */
{
	font-weight: bold !important;
}

.MenuTop .AspNet-Menu-ParentSelected /* a tier above this one is selected */
{

}


