@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #020001;
	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;
	background-image: url("../images/ray.png");
	background-attachment: fixed;
  	background-position: 0% 100%;
  	background-repeat: no-repeat;
}





/* TYPOGRAPHY *****************************************/



p 			{
			letter-spacing: -1px;
			font-family: Helvetica, Arial, sans-serif;
			font-size: 20px;
			font-weight: bold;
			padding-left: 2px;
			color: #666;
			margin: 0; 
			}

a 			{ color: #FFF; text-decoration: none; }
a:hover 	{ color: #0CF; }


h1 			{
			letter-spacing: -3px; 
			font-family: Helvetica, Arial, sans-serif; font-size: 60px; font-weight: bold;
			margin: 0;
			}







/* CONTAINER *****************************************/


.oneColElsCtrHdr #container {
	width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #020001;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #header { 
	background: #020001;
	padding: 0 10px 0 20px;  /* 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. */
} 


.oneColElsCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #020001;
	color: #000;
}
.oneColElsCtrHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #020001;
} 
.oneColElsCtrHdr #footer p {
	margin: 0; 
	padding: 10px 0;
	padding-left: 12px;
	font-family: Helvetica, Arial, sans-serif; font-size: 10px; font-weight: bold;
	letter-spacing: -1px;
}