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: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000;
}
#container  {
	width: 90%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #FFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	color: #FFF;
	background-position: right;
	background-repeat: no-repeat;
	word-spacing: normal;
	padding: 1em;
	text-align: center;
	background-color: #000;
}
#logo {
	background-image: url(../images/EagleColor.png);
}
/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
#sidebar1  {
	float: left;
	width: 12em; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1.5em; /* top and bottom padding create visual space within this div  */
	color: #FFF;
	background-color: #000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-width: thick;
	border-right-width: thick;
	border-bottom-width: thick;
	border-left-width: thick;
	white-space: normal;
	overflow: auto;
	text-align: center;
}
sidebar1 ul {
	padding: 1em;
	list-style-position: outside;
	color: #FFF;
}
sidebar1 li {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E8E8E8;
	list-style-type: none;
	color: #FFF;
}
sidebar1 ul li {
	color: #F00;
	text-decoration: none;
}

.twoColHybLtHdr #mainContent {
	color: #000;
	list-style-position: inside;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0em;
	padding-right: 1em;
	padding-bottom: 0.7em;
	padding-left: 2em;
	overflow: scroll;
	height: 650px;
} 
.twoColHybLtHdr #container #mainContent h2 {
	text-align: left;
}
#footer {
	font-family: "Arial Black", Gadget, sans-serif;
	background-color: #000;
	padding: 1em;
}
h1 {
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: xx-large;
	color: #FFF;
	font-style: normal;
	font-weight: bold;
}
a:link {
	color: #00C;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #00C;
}
a:hover {
	text-decoration: none;
	color: #999;
}
a:active {
	text-decoration: none;
	color: #F90;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-large;
	font-weight: bolder;
	color: #F00;
	font-style: normal;
}
