/* basic elements */
html {
	height: 100%;
	width: 100%
	overflow: hidden;
	}
	
body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font: 11px/17px Verdana, Arial, Helvetica, sans-serif;
	color: #595959;
	background: #666666;
	}
	
a:link, a:visited {
	text-decoration: none;
	color: #595959;
	}
a:hover, a:active {
	text-decoration: underline;
	color: #595959;
	}

/* specific divs */
#global {
    height: 100%;
    width: 100%;
	overflow: hidden;
     }
     
#main_container { 
	position: absolute;
    left: 50%; 
    top: 50%;
    width: 750px;
    height: 450px;
    margin-top: -225px; /* half of the height */
    margin-left: -375px; /* half of the width */
    background: #ffffff;
    border: solid 2px #333333;
	}
	
#flashcontent {
	width: 100%;
	height: 100%;
	position: relative;
}

#logo {
	position: absolute;
	top: 22px;
	right: 24px;
}

#sorry_container {
	position: absolute;
	top: 180px;
	left: 300px;
	width: 420px;
}