@charset "utf-8";

html {
	height: 100%; 
}
body  {
	height: 100%;
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	background-color: #000; 
	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: #000;
}

#horizon {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 0px;
	overflow: visible;
	visibility: visible;
	display: block
	}

#container {
	width: 692px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 928px;
	position: absolute;
	top: -300px;
	left: 50%;
	margin-left: -346px;
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-repeat: no-repeat;
	background-image: url('../images/main2.png');
	padding: 0 0 0 0px;
}

/* MAIN CONTENT */

#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. */
	padding: 65px 0px 0px 23px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

/* FOOTER */

#footer {
	position: relative;
	top: 1px;
	margin: 0 0 0 0px;
	padding: 0px 0px 0px 0px;
	COLOR: #888;
}

/* LINKS */

A {
	COLOR: #FFF;
	TEXT-DECORATION: none;
}
A:visited {
	COLOR: #FFC;
	TEXT-DECORATION: none;
}
A:link {
	COLOR: #FFF;
	TEXT-DECORATION: none;
}
A:link img {
         text-decoration: none;
         border:0;
         border:none;
}
A:visited img {
         text-decoration: none;
         border:0;
         border:none;
}
A:hover {
    COLOR: #09F;
    TEXT-DECORATION: none;
}

/* ALIGNMENT CLASSES */
.float-left  { float: left; }
.float-right { float: right; }
.align-left  { text-align: left; }
.align-right { text-align: right; }
.align-center { text-align: center; }
.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;
}
.indent_10 { padding-left: 10px; }
.indent_20 { padding-left: 20px; }

/* BG_FILL */

#bg_fill{
	position: fixed;
	margin-top: 0px;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0px;
	overflow: visible;
	z-index: -1001;
	background-attachment: scroll;
}
#bg_video{
	position: fixed;
	margin-top: 0px;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0px;
	overflow: visible;
	z-index: -1000;
	background-attachment: scroll;
}