

html {

	font-family: Arial, Helvetica, sans-serif;
	color: black;

	height: 100%;
	background: #5B78C4;	
	background-attachment: fixed; 
	background-repeat: no-repeat;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	/* Elliptic background gradient from http://ie.microsoft.com/TestDrive/Graphics/CSSGradientBackgroundMaker/Default.html */	
	/* Mozilla Firefox */ 
	background-image: -moz-radial-gradient(right top, ellipse farthest-corner, #9FC3FF 0%, #273082 100%);
	/* Opera */ 
	background-image: -o-radial-gradient(right top, ellipse farthest-corner, #9FC3FF 0%, #273082 100%);
	/* Webkit (Safari/Chrome 10) */ 
	background-image: -webkit-gradient(radial, right top, 0, right top, 904, color-stop(0, #9FC3FF), color-stop(1, #273082));
	/* Webkit (Chrome 11+) */ 
	background-image: -webkit-radial-gradient(right top, ellipse farthest-corner, #9FC3FF 0%, #273082 100%);
	/* W3C Markup, IE10 Release Preview */ 
	background-image: radial-gradient(ellipse farthest-corner at right top, #9FC3FF 0%, #273082 100%);

}

.hyphen_block{
	text-align: justify;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto; 
}


#canvas {
	margin: 0px auto;
	margin-top: 50px;
	
	min-height: 700px;
	width: 780px;
	font-size: 16px;
	background: white;
	
	-moz-box-shadow: 10px 20px 40px black;
	-webkit-box-shadow: 10px 20px 40px black;
	box-shadow: 10px 20px 40px black;
}



#head {
	width: 100%;
	position: relative;
	left: 0;
	top: 0;
	overflow: hidden;
}

#headimg {
	width: 300%;
	position: relative;
	left: 0;
	top: 0;
}

#logo{
	position: absolute;
	bottom: 0;
	overflow: hidden;
	width: 50%;
}

#headimg_frame {
	width: 100%;
	height: 100%;
	position: absolute;
	background-image: url(../resources/separator.svg);
	background-size: 100% auto;
	background-repeat: no-repeat;
    background-position: bottom; 
	bottom: 0;
	left: 0;
}




#container {
	padding: 30px 15px;
}



#menu {
	float: left;
	font-size: 16px;
	width: 120px;
}

.menu_entry a {
	text-decoration: none;
	color: black;
}

.menu_entry a:hover {
	text-decoration: underline;
}



#content {
	float: right;
	width: 580px;
	
	padding: 10px;
}


#footer {

	font-size: 12px;
	text-align: center;
	width: 780px;
	clear: right;
	padding: 100px 10px 20px 10px;
}