/* CSS reset */
* {
	border: 0px;
	margin: 0px;
	padding: 0px;
	z-index: 0;
	zoom: 1;
}

body {
	background-color: black;
	background-image: url("../img/page_bg.jpg");
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	font-family: Calibri, "DejaVu Sans Serif", "Arial CE", Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #c9c9c8;
	text-shadow: 0px 1px #262826;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

a[href] {
	color: #a6b3f9;
	text-shadow: 0px 1px #262866;
	text-decoration: underline;
	transition: color 0.1s, text-shadow 0.1s;
}

a[href]:hover {
	color: #f9b3a6;
	text-shadow: 0px 1px #662826;
	text-decoration: none;
}

#page-bg {
	position: fixed;
	z-index: -999;
	width: 100%;
	top: 0px;
	left: 0px;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
	
	visibility: hidden;
}

#wrapper {
	margin: 20px;
	margin-left: 30px;
	margin-right: 30px;
}

#header {
	background-color: rgba(205, 229, 213, 0.1);
	font-size: 200%;
	font-weight: bold;
	padding: 10px;
	padding-right: 80px;
	margin-bottom: 5px;
}

#switch-language {
	position: absolute;
	top: 30px;
	right: 40px;
	width: 60px;
}

.switch-language {
	width: 100%;
}

#ftp-body {
	background-color: rgba(205, 229, 213, 0.2);
	text-align: center;
	padding: 10px;
	margin-bottom: 5px;
	overflow: auto;
}

#caption {
	font-size: 150%;
}

#link-downloads, #link-images {
	width: 200px;
	display: block;
}

#link-downloads-image, #link-images-image {
	opacity: 0.6;
	transition: opacity 0.1s;
}

#link-downloads:hover #link-downloads-image, #link-images:hover #link-images-image {
	opacity: 1;
}

#link-downloads-image img, #link-images-image img {
	width: 200px;
	margin-bottom: 5px;
}

#link-downloads {
	float: left;
	margin-left: 10%;
}

#link-images {
	float: right;
	margin-right: 10%;
}

#footer {
	clear: both;
	background-color: rgba(205, 229, 213, 0.1);
	text-align: center;
	padding: 10px;
}