@charset "UTF-8";
body {
	font: Arial, Helvetica, sans-serif;
	color: #58979e;
	background: #97bede;
	background-image: url(images/bak.jpg);
	background-repeat: repeat-x;
	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 */
}

#ContainerBorder {
		border: 8px solid #dfefff;
		border-top: 0px;
}
#container {
	width: 957px;  /* 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. */
}
#header {
	background: #FFF;
	background-image: url(images/header0916.png);
	background-repeat: no-repeat;
	height: 200px;
	padding: 0 0px 0 0px;  /* 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. */
}
#header h1 {
	margin: 0;
	position:absolute;
	top: -500px;
	padding: 10px 0;
}


#header a:link {
	color: #413f70;  
	font-weight : normal; 
	text-decoration: none;
} 

#header a:visited {
	color: #413f70;  
	font-weight : normal; 
	text-decoration: none;
} 
#header a:hover {
	color: #000;  
	font-weight : normal; 
	text-decoration: underline;
} 
#header a:active {
	color: #000;  
	font-weight : normal; 
	text-decoration: underline;
}


.HeaderFontChange {
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	margin-right: 20px;
	height: 30px;
	color: #413f70;
	margin-top: 150px;
	text-align: right;
}

#Navigation {
	background-image: url(images/navbak_04.jpg);
	background-repeat: repeat-x;
	height: 54px;
}

#mainContent {
	padding: 0 30px;
	margin-top: 30px;
	background: #FFFFFF;
}

#mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 25px;
	color: #413f70;
}

#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	line-height: 20px;
	color: #413f70;
	font-weight:bold;
}

#mainContent h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ff9001;
	font-weight: bold;
}

#mainContent h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #EB0647;
	font-weight: bold;
}

#mainContent h6 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 19px;
	color: #EB0647;
	font-weight: bold;
}


#mainContent a:link {
	color: #413f70;  
	font-weight : normal; 
	text-decoration: underline;
} 

#mainContent a:visited {
	color: #413f70;  
	font-weight : normal; 
	text-decoration: underline;
} 
#mainContent a:hover {
	color: #000;  
	font-weight : normal; 
	text-decoration: none;
} 
#mainContent a:active {
	color: #000;  
	font-weight : normal; 
	text-decoration: none;
}


#mainContent li {
	color: #413f70; 
	font-family:Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 26px;
	margin-left: -5px; /* negative numbers can be used */
	padding-left: 10px /* negative numbers can be used */
	
} 

#mainContent ul {
	list-style-type: circle;
} 

#mainContent ol {
	list-style-type: decimal;
} 

.ContactBox {
	border: 2px solid #58979e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #5a589d;
}

.ContactBoxImage {
	margin-right: 5px;
	vertical-align: -8px; /* negative numbers can be used */
}

.ContactBox a:link {
	color: #5a589d;  
	font-weight : normal; 
	text-decoration: none;
} 

.ContactBox a:visited {
	color: #5a589d;  
	font-weight : normal; 
	text-decoration: none;
} 
.ContactBox a:hover {
	color: #000;  
	font-weight : normal; 
	text-decoration: underline;
} 
.ContactBox a:active {
	color: #000;  
	font-weight : normal; 
	text-decoration: underline;
}

.ContactTable {
	border: 1px solid #58979e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #58979e;	
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
}
#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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #5a589d;
	text-align: center;

}

#footer a:link {
	color: #5a589d;  
	font-weight : normal; 
	text-decoration: none;
} 

#footer a:visited {
	color: #5a589d;  
	font-weight : normal; 
	text-decoration: none;
} 
#footer a:hover {
	color: #000;  
	font-weight : normal; 
	text-decoration: underline;
} 
#footer a:active {
	color: #000;  
	font-weight : normal; 
	text-decoration: underline;
}

.FooterNavBox {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #5a589d;
	text-align: center;	
}

/* MISC STUFF */

.ImageFloatLeft {
	float: left;
	padding-right: 10px;
}

.ImageFloatRight {
	float: right;
	border: 6px solid #dfefff;
	margin-left: 10px;
}

a img {
	border: none;
}

.IndentParagraph {
	margin-left: 40px;
}

.red { 
	color: #EB0647;
	font-weight: bold;
}





