/* basic elements */
html {
	height: 100%;
	width: 100%
	overflow: hidden;
	}
	
body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font: 11px/16px Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background: #e5ecf2;
	}
	
a:link, a:visited {
	text-decoration: none;
	color: #3a6c8d;
	}
a:hover, a:active {
	text-decoration: underline;
	color: #3a6c8d;
	}

/* specific divs */
#global {
    height: 100%;
    width: 100%;
	overflow: hidden;
     }
     
#main_container { 
	position: absolute;
    left: 50%; 
    top: 50%;
    width: 970px;
    height: 555px;
    margin-left: -485px; /* half of the width */
    margin-top: -277px; /* half of the height */
	}
	
#flashcontent {
	width: 970px;
    height: 555px;
}

#sorry_container {
	text-align: center;
    background: #ffffff;
    border: solid 1px black;
}


#register_container { 
	position: absolute;
	left: 50%; 
    width: 600px;
    margin: 10px 0;
    margin-left: -300px; /* half of the width */
    background: #ffffff;
    border: solid 1px black;
	}
