@charset "utf-8";
/* CSS Document */


html {
height: 100%;
}

body  {
	height:100%;
	font: 75% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	color: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */


}

h1 {
font-size: 2.2em;
color:#e88c30;
padding-top:20px;
}

h2 {
font-size: 1.4em;
color:#666666;
padding:0;
}

h3 {
font-size: 1.2em;
color:#999999;
font-weight:700;
padding:0;
}

.twoColFixLtHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;  /*the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */


} 
.twoColFixLtHdr #header { 
	background: #e88c30; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height:170px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #columnWrapper {
	background-color:#FFFFFF;
	height:100%;
}
.twoColFixLtHdr #mainWrapper {
	background-color:#FFFFFF;
	height:100%;
}
.twoColFixLtHdr #navWrapper {
	float:left;
	background-image:url(../images/feathers.jpg);
	background-position:top;
	background-repeat:no-repeat;
	min-height: 400px;
	background-color: #e88c30;
	margin: 0 auto;
	width:150px;	
}
.contentimg{
	float:right;
	padding-left: 20px;
	padding-top:20px;
	padding-bottom:20px;
}


.twoColFixLtHdr #mainContent { 
	margin: 0;  /*the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding-right: 100px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size:11px;
	width: 500px;
	float:right;
	height:100%;
} 

.twoColFixLtHdr #mainContent li{ 
margin-left:auto;
padding-bottom: 1.3em;
} 

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*------------------------------------------------------------------------*/
/*----------------------   Navigations Styles  ---------------------------*/
/*------------------------------------------------------------------------*/


.navbackground {
	background-color:#1968B3;
	vertical-align:top;
}

#navpadding {
	background-color:#FFFFFF;
	height:2px;
}

#nav, #nav ul{ /* width of main level nav buttons on up state*/
	float: left;
	width: 150px;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	padding: 0;
	margin: 0;	
	line-height: 1;
	list-style: none;
	list-style-position:outside;
	list-style-type:none;
	border-width: 0px;
}

#nav a { /* width of main level nav buttons on over state*/
	display: block;
	width: 140px;
	color: #FFFFFF;
	text-decoration:none;
	text-indent: 0px;
	padding: 3px 0px 4px 10px;
	border-bottom: 1px;
	border-bottom-color:#000000;
	height:100%;

}
/*
#nav a.drop {
	background-color:#FF0000;
	display: block;
	width: 200px;
	color: lime;
	text-decoration:none;
	text-indent: 5px;
	padding: 3px 0px 3px 0px;
}
*/
#nav a.tier1 {
	width: auto;
}

#nav a.tier1-arrow {
	display: block;
	width: 150px;
	color: #FFFFFF;
	text-decoration:none;
	text-indent: 5px;
	padding: 3px 0px 3px 0px;
	background: url(../images/arrow.gif) center right no-repeat;
}

#nav li { /* all list items -- width of main nav buttons*/
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	padding-right: auto;
	position: relative;
	background:#e88c30;
	border-bottom:1px solid;
	border-bottom-color:#FFFFFF;
}

#nav li ul { /* second-level lists */
	position: absolute;
	margin-top: -17px;
	background: #666666;
	width: 50px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li li { /* Rollover background states of dropdowns from main navigation*/
	background-color: #666666;
	padding-right: 0;
	width: 150px;
}

#nav li ul ul { /* horizontal spacing placement of list tiers from left edge of parent button */
	margin: -17px 0px 0px 0px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

/* button holder dimension--causes buttons to tile left to right based on their size in comparison to the width entered -- lists nested under hovered list items */
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { 
	left: 150px;
	width: 150px;
}
/*over state colors*/
#nav li:hover, #nav li.sfhover {
	background: #999999;
}




#footerwrapper {
	width: 780px;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}

#footer {
	color:#FFFFFF;
	position:absolute;
	font-size:9px;
	text-align:center;
	background-image:url(../images/background_repeat.jpg);
	background-repeat:repeat-x;
	visibility: visible;
	width: 780px;
	padding-top:10px;
	padding-bottom:25px;

}

#footer a, #footer a:hover, #footer a:visited {
	color:#ffffff;
}
#footernav {
	width:780px;
	text-align: center;
	font-family:verdana, arial, sans-serif;
	font-size: 11px;
	font-weight:100;
	padding-top:20px;
	padding-bottom:20px;
	background-color: #e88c30;
	color: #FFFFFF;
	line-height: 1em;
	margin-top: 1em;


}
















/* ----------------------------------------------------- 
    CLEAR FLOATS WITHOUT EXTRA HTML MARKUP
----------------------------------------------------- */ 
#wrapper:after,
#mainNav:after,
#topNav:after,
#columnWrapper:after,
#mainColumn:after,
#subColumn:after,
#mainContent:after,
#subContent:after,
ul.promotes:after,
#breadCrumbs:after,
div.noteframe:after,
#subContent div.caseStudy ul:after { 
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden; 
} 
#wrapper,
#mainNav,
#topNav,
#columnWrapper,
#mainColumn,
#subColumn,
#mainContent,
#subContent,
ul.promotes,
#breadCrumbs,
#subContent div.caseStudy ul { 
	display: inline-block; 
}
/* Hides from IE-mac \*/
#wrapper,
#mainNav,
#topNav,
#columnWrapper,
#mainColumn,
#subColumn,
#mainContent,
#subContent,
ul.promotes,
#breadCrumbs,
#subContent div.caseStudy ul { display: block; }
/* ----------------------------------------------------- 
    END CLEAR FLOATS WITHOUT EXTRA HTML MARKUP
----------------------------------------------------- */ 
