@charset "UTF-8";
/* CSS Document */

*{/* fixes spacing problems in IE */
	margin: 0;
	padding: 0;
}

body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	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: #666;
	background-color: #FFF;
	background-image: url(../_img/back-fade-intro.gif);
	background-repeat: repeat-x;
	margin-top: 30px;
}
.twoColFixLtHdr #container {
	width: 798px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #E6E6E6; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: center; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	background-color: #FFFFFF;
	background-image: url(../_img/corners-top.gif);
	background-repeat: no-repeat;
	background-position: top;
	height: 173px;
	padding-top: 45px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	text-align: center;
} 
	
.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 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	background-color: #FFFFFF;
	text-align: right;
}
.twoColFixLtHdr #sidebar1 p {
	text-align: right;
	}

#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left:0px;
} 
.twoColFixLtHdr #footer {
	background-color: transparent;
	background-image: url(../_img/corners-btm-grey.png);
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	width:768px;
	margin-left: auto;
	margin-right: auto;
} 
.twoColFixLtHdr #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: 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:10px;
	color: #004FA2;
}
.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;
}
body,td,th {
	color: #333333;
}

#grouplogo {
	width:798px;
	margin-top: 30px;
	margin-bottom: 50px;
	padding: 0;
	margin-left: 0;
	margin-right :0;
}

p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	line-height:1.2em;
	margin-bottom:0.8em;
	font-size:1.0em;
	text-align:center;
	color:#666666;
}

a {
	color: #004FA2;
	text-decoration: none;
	font-weight:normal;
}

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


h1 {
	color:#004FA2;
	font-size:16px;
	line-height:0.8em;
	margin-bottom:1em;
	}

h1 {
	color:#004FA2;
	font-size:14px;
	line-height:1.4em;
	margin-bottom:1em;
	font-weight:normal;
	}

h3 {
	color:#004FA2;
	font-size:12px;
	line-height:1.2em;
	margin-bottom:1em;
	}
	
.lightblue{
color:#99CCFF;
}


/* Hacks */
/*clearfix hack*/
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {
	display: block;
}

/* End hide from IE-mac */
