@charset "UTF-8";

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #7f8183 url(../interface/background_gradiant.jpg) repeat-x left top;
	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 */
	color: #000000;
}

/* Structure */

#container-shadow {
	width: 933px;
	background: transparent url(../interface/bkgrnd-shadow-edges.png) repeat-y center top; /* light gray */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000;
}

#container { 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	width: 800px;
	background: #e7e8e9; /* light gray */
	border: 0px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0 9px 0 9px;
}

#header { 
	background: #fff; 
	padding: 0;  /* 0 10px 0 20px  padding matches the left alignment of the elements in the divs that appear beneath it */
	height:	285px;
	margin: 0;
	}

#header h1 {
	background: url(../interface/logo-banner.jpg) no-repeat left top;
	text-indent: -999em;
	overflow: hidden;
	width: 800px;
	height: 95px;
	margin: 0;
	padding: 0;
	}

#header ul {
	margin: 0;
	padding: 0px;
	list-style-type: none;
	height: 30px;
}
#header ul li {
	float: left;
	margin: 0;
	padding: 0;
	height: 30px; /* to remove space before/after the tag */
	position: relative; /* required for links to work with alphaimageloader in IE6 */
}

#contentBackground {
	border: 1px solid #fff; /* needed to collapse vertical - margin collapse */
	background-color: #fff;
	margin: 0;
	padding: 0;
	border-bottom: 10px solid #fff;
}


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer,  includes the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed only for the length of the content in the column */
	padding: 0px 10px 15px 20px;
}


#mainContent { 
	margin: 0 0 0 225px; /* 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: 0 20px; /* space inside the div box */
}


#homeMasthead { /* image replacement technique to combine real text with graphical version; IE6 conditional also */
	display: block;
	background: url(../interface/masthead-banner.png) no-repeat 0 0;
	text-indent: -1000em;
	z-index: 99;
	top: 242px; /* doesn't align in IE, hence new position in @import */
	position: absolute;
	width: 543px;
	height: 40px;
	}


#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #d9dad7;
	margin-top: 10px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0;
	font-size: .6em;
}

#container hr { /* float clearing element, formerly br */
	visibility: hidden;
	height: 0px;
}


.floatRight { /* 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;
}

.floatLeft { /* 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;
}


/* * * * * Design formatting * * * * * */


a {
	text-decoration: none;	
	color: #6788a8;
	font-weight: bold;
}

a:hover {
	text-decoration: underline;
	color: #dd704d;
}

h1 {
	font-size: 1.3em;
}
h2 {
	font-size: 1.1em;
}
h3 {
	font-size: .8em;
	color: #dd704d; /* orange */
	line-height: 140%;
}

p {
	font-size: .7em;
	line-height: 140%;
	color: #666;
}

.stripe {
	margin-top: 15px;
}


#sidebar1 h3 {
	border-bottom: 1px solid #a2b7cb;	
	color: #a2b7cb;
}

#sidebar1 p {
	font-size: .7em;
	padding: 0 .5em .25em .25em;
	margin: 0;
	color: #000;
}

.highlightOn {
	background-color: #ecf1f5;
}

.highlightOff {
	background-color: transparent;
	border-top: 1px dotted #a2b7cb;
	border-bottom: 1px dotted #a2b7cb;
	margin: .5em 0 .5em 0;
}

#sidebar1 .grayText {
	color: #666;
	font-family: Arial, sans-serif;
}
