@charset "utf-8";
/* CSS Document */

<style type="text/css"> 
 
body  {

}
#container {
	width: 950px;
	height: 633px;
	border: 1px solid #000000; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-style: normal;
	background-image: url(Images/Background_Building.jpg);
	background-repeat: repeat-y;
	position: relative;
} 
#header {
	position: absolute;
	width: 940px;
	height: 105px;
	left: 10px;
	top: 0px;
} 
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#mainContent {
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	position: absolute;
	height: 400px;
	width: 950;
	top: 100px;
	left: 0px;
} 
#footer {
	position: absolute;
	top: 599px;
	left: 56px;
	width: 859px;
	height: 34px;
} 
#footer a:link, #footer a:visited, #footer a:active {
	font-family: "Times New Roman", Times, serif;
	font-size: 22px;
	color: #FFFFFF;
	font-style: normal;
	font-weight: normal;
	text-decoration: underline;
}

#footer a:hover {
	color: #FFFFCC;
}

</style>
