@charset "utf-8";

body {
	background-color: #000000;
	background-image:url(../images/background.jpg);
	background-repeat: no-repeat;
	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;
}

#container {
	width: 1024px;/* this width will create a container that will fit in an 1024px browser window if text is left at browser default font sizes */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 10px 0 0 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	height: 150px;
	margin:0;
	padding: 0;
	background-image: url(../images/main_banner.jpg); /* 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. */
} 

#nav {
	width: 1024px;
	margin: 0;
	padding: 0;
	
}

#nav img {
	border: none;
}

#subnav {
	margin: 0;
	padding: 0 0 0 256px;
}

#subnav img {
	border: none;
}

#mainContent {
	padding: 0;/* remember that padding is the space inside the div box and margin is the space outside the div box */
	clear: right;
}

#mainContent .reader{
	padding: 10px 0 0 0;/* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
}

#mainContent h1 {
	font-size: 24px;
	letter-spacing: .4em;
	
}


#mainContent img{
	margin: 10px 0 0 20px;
	float: right;
	border: none;
}

#mainContent object.flash{
	margin: 10px 0;
	float: right;
}

#mainContent iframe {
	margin: 0 0;
	height: 600px;
	width: 1024px;
	border: 0;
}
