﻿/** Styles in this sheet are available in Content Editor 
/** Styles in this sheet are available in Content Editor 
*** See SiteStyles.css for General Site Layout/Backgrounds Styles
*** Do not include positioning and layout styles in this sheet, use SiteStyles css file instead
**/ 

/* Start General Styles */

body
{
	font-family:Arial, Verdana, Helvetica, sans-serif;  
	font-size: 12px;
}

th {font-weight:bold;}

img { border:0px none #ffffff;}

p
{
    margin: 0px 0px 15px 15px;
    /*IE6 hack*/
    _margin: 0px 0px 15px 0px;
    
}   

h1  
{
    font-weight:bold; 
    font-size:1.6em; 
    padding:5px 0px 5px 0px;
    color:#414345;
    text-transform:uppercase;
}

h2  
{
    font-weight:bold; 
    font-size: 1.3em; 
    padding:5px 0px 5px 0px;
    color:#414345;
}

h3
{
    font-size:1.1em;
    color:#000000;
    text-transform:uppercase;
    margin-left:15px;
    font-weight:bold;
}

h4
{
    font-weight:bold;
    color:#000000;
    margin-left:15px;
}


strong, b {font-weight:bold;}
i   {font-style:italic;}


/*Begin Link Attributes*/

a { color: #006699; text-decoration: none; }
a:hover { color: #006699; text-decoration: underline; }
a:active { color: #000000; text-decoration: none; font-weight:bold; }
a:visited { color: #5E5052; text-decoration: none; }

#footer_content a { color: #FFFFFF; text-decoration:none; }
#footer_content a:hover { color: #FFFFFF; text-decoration:underline; }
#footer_content a:visited { color: #B9ACAE; text-decoration:none; }

/*End Link Attributes*/

.small
{
    font-size: .7em;
}

p ul li 
{
    margin-left:40px;
    list-style-type:disc;
}

/* - Header Green Color - */
.accentColor01
{
     color:#7ca61a;
}


/* - Header Orange Color - */
.accentColor02
{
    color:#fbaa22;
}

/* - Header Grey Color - */
.accentColor03
{
    color:#888889;
}


/* End General Styles */

/* Start Main Navigation Styles */
/* -------------------------------------------------------------------------- */
/* 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. */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
.PrettyMenu .AspNet-Menu-Horizontal{}

.PrettyMenu a:visited,
.PrettyMenu a
{
    color:#FFFFFF;
}


.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 100%;
}


/* 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... */
.PrettyMenu ul
{
    /*background:#19afe0;*/
}
.PrettyMenu ul ul
{
    background:#19afe0;
}
.PrettyMenu ul li ul li
{
    /*display: block;*/
	clear: left;
	white-space: nowrap;
}

/* 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. */
.PrettyMenu ul.AspNet-Menu li
{
    /*background: url(../images/Layout/menuTail.gif) repeat-x;*/
    background: none;
    _width: 50px;
    white-space: nowrap;
}

/* Main selected li */
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
    background:#19afe0;
}
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Selected a.AspNet-Menu-Selected
{
    font-weight: bold;
}

/* 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). */
.PrettyMenu ul.AspNet-Menu li a,
.PrettyMenu ul.AspNet-Menu li span
{
    color: #FFFFFF;
    padding: 4px 2px 4px 8px;
    /*border 
    background: transparent url(arrowRight.gif) right center no-repeat;*/
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    color: #FFFFFF;
    background-image: none;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.PrettyMenu 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). */
.PrettyMenu ul.AspNet-Menu li:hover, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    background:#19afe0;
}

.PrettyMenu ul.AspNet-Menu li:hover a, 
.PrettyMenu ul.AspNet-Menu li:hover span 
{
    color: White;
}
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: White;
}
.PrettyMenu ul.AspNet-Menu li:hover li:hover a, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover span 
{
    color: White;
}
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: White;
}
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover 
{
    color: White;
}
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: White;
}

.PrettyMenu ul.AspNet-Menu li:hover ul a, 
.PrettyMenu ul.AspNet-Menu li:hover ul span 
{
    /*color: #648ABD;*/
	padding: 0px 0px 0px 0px;
	color: #000000;
}
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span
{
    color: #648ABD;
}
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul a, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul span 
{
    color: #648ABD;
}
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
    color: #648ABD;
}

/* 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. */
.PrettyMenu ul.AspNet-Menu li a:hover,
.PrettyMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: White;
    background: transparent url(activeArrowRight.gif) right center no-repeat;
}

.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}

/* 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. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    left: 0;
    top: 100%;
}

.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: -0.3em;
}

.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
   /* width: 11.5em; */
}

/* 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. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    padding: 5px 10px 3px 10px;
    text-align:left;
}

/* 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. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:left;
    width: 140px;
}

.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    /*width: 11.5em;*/
}

/* 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. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: -1.4em 0 0 10.35em;
}

/* End Main Navigation Styles */

/* Partner Page Fix */
#partnerTable td  
{
    padding: 0px 20px 20px 20px; 
} 
/* End Partner Page Fix */