
/* Positioning tips from http://www.yourhtmlsource.com/examples/positioning2.html */

/* Getting to the center http://www.kirkdesigns.co.uk/vertically-and-horizontally-center-div-using-css */

body{
	font-family: "Century Gothic", sans-serif;
	font-size: 26pt;
	font-weight: bold;
	font-style: normal;	
	background-color: black;
}

#mission{
	filter:alpha(opacity=63);
	-moz-opacity:0.63;
	-khtml-opacity: 0.63;
	opacity: 0.63;
	color: white;
	z-index: 2;
	position: absolute;
	left: 10px; top: 275px;
	width: 400px;
	height: 130px;
	padding: 10px;
	background-color: black;
}

#missiontext{
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity: 1;
	color: white;
	z-index: 2;
	position: absolute;
	left: 10px; top: 275px;
	width: 400px;
	padding: 10px;
}

#center {
	position: absolute;
	left: 0px;
	width: 100%;
	height: 1px;
	overflow: visible;
}

#main {
	position: absolute;
	left: 50%;
	width: 960px;
	margin-left: -480px;  /***  width / 2   ***/
	height: 512px;
	top: 50px; /***  height / 2   ***/
}

img { border: none; }

a:link { 
color: #ffffff;
}

a:hover { 
	color: #CCCCCC
 }

a:visited { 
	color: #999999
}

a:active { } 


