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: #333333;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 88%;
	background-color: #252986;
	line-height: 1.5em;
	background-image: url(Images/topBG.jpg);
	background-repeat: repeat-x;
	background-position: center top;
}
#container  {
	width: 1000px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header  {
	background-image: url(Images/STREAM-FacilitiesLogo.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 100px;
	background-color: #252986;
	padding: 0;
} 
#header img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#header  h1  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FFFFFF;
	font-weight: normal;
	padding-top: 34px;
	padding-bottom: 10px;
	padding-left: 240px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 160%;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	background-color: #CCCCCC;
	background-image: url(Images/sidebarCorner.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
#sidebar1 ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#sidebar1 li {
	margin: 0px;
	padding: 0px;
	border-bottom-width: 1px;
	border-bottom-style: ridge;
	border-bottom-color: #252986;
}
#sidebar1 a {
	color: #252986;
	text-decoration: none;
	display: block;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 6px;
}
#sidebar1 a:hover, #sidebar1 a:focus, #sidebar1 a:active {
	display: block;
	background-color: #252986;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 6px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #252986;
	color: #FFFFFF;
}	
#mainContent  {
	background-image: url(Images/chevron.gif);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	text-align: justify;
} 
#mainContent ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
#mainContent li {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
}
#mainContent a {
	color: #252986;
	text-decoration: none;
	padding-bottom: 4px;
	padding-top: 2px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D0D3DB;
	padding-right: 20px;
	padding-left: 2px;
}
#mainContent a:hover, #mainContent a:focus, #mainContent a:active {
	display: inline;
	background-color: #CCCCCC;
	padding-top: 2px;
	padding-right: 20px;
	padding-bottom: 4px;
	padding-left: 2px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	color: #252986;
}	
#footer  {
	background-color: #FFFFFF;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	padding-top: 0;
	padding-right: 10px;
	padding-left: 20px;
	background-image: url(Images/footerBG.gif);
	background-repeat: no-repeat;
	background-position: center top;
	height: 100px;
} 
#footer ul {
	margin: 0px;
	padding: 0px;
	text-align: right;
}
#footer li {
	display: inline;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 0px;
	list-style-type: none;
	font-size: .8em;
	color: #333333;
	text-align: right;
}
#footer a {
	text-decoration: none;
	padding-top: 2px;
	padding-bottom: 2px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	color: #333333;
}
#footer a:hover, #sidebar2 a:focus, #sidebar2 a:active {
	color: #252986;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #252986;
}
#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 80%;
}
#footer img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 10px;
}
.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;
}
.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;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
}
h1 {
	font-size: 180%;
	font-weight: normal;
	color: #252986;
	text-decoration: none;
	margin-bottom: .8em;
	letter-spacing: 1px;
}
h2 {
	font-size: 140%;
	font-weight: normal;
	color: #252986;
	text-decoration: none;
	margin-bottom: .6em;
	text-align: left;
	letter-spacing: 1px;
}
h3 {
	font-size: 120%;
	font-style: italic;
	color: #252986;
	letter-spacing: 0.1em;
}
#WhoWeAre1 {
	float: right;
	height: 100px;
	width: 227px;
	padding-bottom: 20px;
	padding-left: 40px;
}
#WhoWeAre2 {
	float: left;
	padding-right: 20px;
	padding-bottom: 10px;
}
#IndexPic {
	float: right;
	padding-bottom: 20px;
	padding-left: 40px;
}
#indexPic2 {
	float: left;
	padding-right: 40px;
	padding-bottom: 20px;
}
fieldset {
	padding: 0px;
	margin: 0px;
}
legend {
	font-weight: bold;
	margin-left: 1em;
	color: #252986;
}
fieldset ol {
	margin: 0px;
	padding: 1em;
	list-style-type: none;
}
fieldset li {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1em;
	margin-left: 0px;
}
fieldset ul {
	display: inline;
	padding-right: 1em;
}
label {
	text-align: right;
	float: left;
	width: 10em;
	padding-right: .5em;
}
.options label {
	text-align: left;
	float: none;
	width: auto;
}
#formSubmit {
	float: left;
}
#formReset {
	float: right;
	margin-right: 1em;
}
#Operations {
	background-color: #272A86;
	color: #999;
	font-size: 90%;
	text-align: center;
}
