@charset "UTF-8";
body  {
	font: 90% 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 */
	background: #58B7DD;
	}
	
#container { 
	width: 870px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
    background: #FFFFFF;
	height: 10px;
    border: none;
}

#navigation {
	float: right; /* since this element is floated, a width must be given */
	width: 226px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* background: #FFFFFF; 
	padding: 0px 0px 0px 0px;
	background-image: url(images/navigation/nav_base.gif);
	background-repeat:no-repeat;
	background-position:bottom right; */ 
	}
	
#mainContent {
	width: 590px;
	margin: 0 10px 0 10px;
	background-image:url(images/elements/content_box_back.gif);
} 
/* IE MARGIN MOD TO BE UPDATED	
* html #mainContent { 
	margin: 0 0 0 93px;
} 
*/

#top_wrap {
	background-image:url(images/elements/content_box_top.gif);
	height:31px;
}

#copy {
	width: 450px;
	padding: 0 0px 0 95px; 
	height:auto;
	font-weight: normal;
	background-image:url(images/side_text/welcome.gif);
	background-repeat:no-repeat;
	background-position:top left;
}

#bottom_wrap {
	background-image:url(images/elements/content_box_bottom.gif);
	height:33px;
}

#footerspace {
	height: 20px;
}
	
#footer { 
	height: 100px;
	padding: 10px 0px 0 10px;
	margin: 10px 10px 0 10px;
	background-color:#e8eef3;
	background-image: url(images/footer/footer_background.gif);
	background-repeat:no-repeat;
	background-position:top;
	} 
	
#footer p {
	margin: 0 10px 0 0px; 
	padding: 0 0 0 0;
	color:#acacac;
	font-size:xx-small;
	float:right;
	}
	
.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;
}
/* Main Text Styling */	
	
p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	color:#58595b;
    }
	
a:link {
	color: #58B7DD;
	text-decoration:none;
	}	
	
a:visited {
	color: #53accf;	
	text-decoration:none;
	}

a:hover {
	color: #1c386a;
	text-decoration:none;
	}
	
a:active {
	color: #1c386a;
	text-decoration:none;
	}				

img	{
	border-style: none;
	}
p.footer {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	color:#1c386a;	
	text-align:right;
    }
	
a.footer:link {
	color: #ad9158;
	text-decoration:none;
	}	
	
a.footer:visited {
	color: #ad9158;	
	text-decoration:none;
	}

a.footer:hover {
	color: #1c386a;
	text-decoration:none;
	}
	
a.footer:active {
	color: #ad9158;
	text-decoration:none;
	}				

img.footer	{
	border-style: none;
}
