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

body {
	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: #FFFFFF;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000000;
	background-image: url(images/bg_sml.png);
	background-repeat: repeat;
	background-position: center;
}

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

#container {
	width: 780px;	/* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #091b3d;
	margin: 0 auto;
	text-align: justify; /* this overrides the text-align: center on the body element. */
	padding: 0;
}
#header {
	background: #091b3d;
	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. */
	margin: 0;
}
#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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #091b3d;
}
#footer {
	background:#091b3d;
	text-align: center;
	font-size: 90%;
	font-weight: normal;
	color: #5c7fa5;
}
#footer p {
	margin: 0px;
	padding: 3px;
}
.biohead {
	font-size: 110%;
	font-weight: normal;
	text-align: left;
	color: #5c7fa5;
	margin-left: 20px;
}
.biotext {
	width: 700px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 10px;
	font-size: 100%;
	text-align: justify;
}
.newshead {
	font-size: 120%;
	font-weight: normal;
	text-align: center;
	color: #5c7fa5
}
.newstext {
	width: 700px;
	font-size: 100%;
	text-align: justify;
	margin-left: 20px;
	margin-right: 10px;
}
.blueText {
	color: #5c7fa5;
	text-decoration: none;
}
.whiteText {
	color: #FFFFFF;
	text-decoration: none;
}
.smalltext {
	font-size: 80%;
	font-weight: normal;
	color: #BBBBBB;
	text-align: center;
	margin-left: 60px;
	text-decoration: none;
}
img.floatLeft { 
	float: left; 
	margin: 4px; 
}
hr {
	border:0;
	border-top: 1px solid #5c7fa5;
	height: 0;
	background: #091b3d;
	margin-bottom: 20px;
}


