a 
{
	color: #CC6600;
}

a:hover 
{
	color: #999;
}

body 
{
	background-color: #FFFFFF;
	color: #666;
	font-family: Lucida Grande, Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 2em;
	margin-top: 0em;
	margin-left: 4em;
	margin-bottom: 10em;
}

h1 
{
	font-family: Lucida Grande, Arial, Verdana, Helvetica, sans-serif;
	font-size:16px;
	font-weight: 900;
	line-height: 1em;
	text-align:center;
}

h2 
{
	color: #CCC;
	margin-bottom:2em;
}

img 
{
}

input 
{
	border: 1px solid #CCC;
	background-color:#FFFFFF;
	color: #666;
	font-size: 11px;
	padding: 1.5px;
}

li 
{
	/*margin-bottom: 2em;*/
}

#header 
{
	height:113px;
	width: 750px;
}

/*#header h1 
{
	padding-top: 20px;
	font-size: 30px;
	font-weight: normal;
	color:#CC6600;
}*/


#logo
{
	float:left;
}

/* ASP .NET Menu - CSS Friendly */
#navigation .AspNet-Menu-Horizontal
{
	position:relative;
	top: 8.3em;
	right: 1em;
	z-index:300;
}

#navigation ul
{
	font-size: 1.1em;
	float:right;
}

/* Top Tier */
#navigation .AspNet-Menu-Horizontal ul.AspNet-Menu
{
/*	width: 22em;*/
}

/* 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. For the 3rd tier add another class for "#navigation ul.AspNet-Menu ul ul" */
#navigation .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
	/*width: 65em;*/
    left: 0;
    top: 100%;
}

/* 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. */
#navigation .AspNet-Menu-Horizontal li.AspNet-Menu-Leaf,
#navigation .AspNet-Menu-Horizontal li.AspNet-Menu-WithChildren
{
    background: url(images/menu_orange.png) repeat-x;
    text-align:center;
	width: 7.5em;
}

/* 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). */
#navigation .AspNet-Menu-Horizontal ul.AspNet-Menu li a,
#navigation .AspNet-Menu-Horizontal ul.AspNet-Menu li span
{
    color: #ddd;
    padding: 2px 8px 2px 8px;
    border-top: solid 1px #E7E7E7;
    border-right: solid 1px #D2D2D2;
    border-bottom: solid 1px #D2D2D2;
    border-left: solid 1px #E7E7E7;
    background: transparent url(images/arrow.png) 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. */
#navigation ul.AspNet-Menu li.AspNet-Menu-Leaf a,
#navigation ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    background-image: none;
}

/* Selected */
#navigation .AspNet-Menu-Horizontal li.AspNet-Menu-Selected
{
	background: #FF873D url(images/menuselect.gif) top center no-repeat;
	z-index:500;
}

/* Hover */
/* 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). */
#navigation ul.AspNet-Menu li:hover, 
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover
{
    /*background: url(images/menu_orange_hover.png) repeat-x;*/
    background-color: #FF9148;
    background-image: none;
}

#navigation ul.AspNet-Menu li:hover a, 
#navigation ul.AspNet-Menu li:hover span, 
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover a,
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover span,
#navigation ul.AspNet-Menu li:hover li:hover a, 
#navigation ul.AspNet-Menu li:hover li:hover span, 
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
#navigation ul.AspNet-Menu li:hover li:hover ul a:hover, 
#navigation ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #FFF;
}

#navigation ul.AspNet-Menu li:hover ul a, 
#navigation ul.AspNet-Menu li:hover ul span, 
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
#navigation ul.AspNet-Menu li:hover li:hover ul a, 
#navigation ul.AspNet-Menu li:hover li:hover ul span, 
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
#navigation ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
    color: #ddd;
}

/* 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. */
#navigation ul.AspNet-Menu li a:hover,
#navigation ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #ddd;
    /*background: transparent url(images/arrow.png) right center no-repeat;*/
}

#navigation ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    /*background-image: none;*/
}


/* ---------------------------- */

/*
.navigation li.active { 
	background: #E0691A url(images/menuselect.gif) no-repeat center top; 
	color: #fff;
	font-weight: bold; 
	padding: 7px 10px 6px 10px;
}*/

/*
.navigation li a { 
	font-weight: bold;
	color: #FFF; 
	background: inherit;
	text-decoration: none;
} 

.navigation li a:hover { 
	color: #E0691A; 
	background: inherit;
} */

#container 
{
	background: #f7f7f7 url(images/dot-top.gif) top repeat-x; 
	width: 730px;
	padding: 1em;
	height: 1000px;
}


#powerLinks 
{
	padding-top: 20px;
	float: right;
	width: 150px;
	background: #f7f7f7 url(images/dot.gif) right top repeat-y; 
	padding-right: 20px;
}

#footer
{
	position:relative;
	width: 730px;
	text-align:right;
}

#footer li
{
	display: inline;
	
}

.text 
{
	width: 520px;
	padding-top: 1em;
	background: url(images/dot.gif) right top repeat-y;
	padding-right: 20px;
	margin-right: 20px;
}
