html{
	margin: 0;
	width: 100%;
	height: 100%;

}

body{
	position:absolute;
	margin: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
}

@font-face {
    font-family: GenBas;
    src: url("../fonts/GenBasR.ttf");
}



/* ######################################
   ######################################
				 WEBSITE
   ######################################
   ###################################### */
   
  
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#website{
	animation-name: fadein;
	animation-duration: 0.5s;
	animation-timing-function: ease-in-out; /*	cubic-bezier(0.1, 0.7, 1.0, 0.1);	*/
}
   
#background_image{
	background-image: url("../images/fell.jpg");
	background-size: cover;
	filter: brightness(1.5); 
	position: fixed;
	top:0;
	left:0;
	background-color:#2E2E2E; 
	display: table;
	height:100%;
	width:100%;
	z-index: -1;
}	

/* ######################################
				 START
   ###################################### */
   
#back{
	height:200px;
	width:100%;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.8) 60%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.8) 60%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

#back_text{
	margin:auto;
	position:relative;
	top:50px;
	width:200px;
	height:60px;
}

#back_cross{
	margin:auto;
	position:relative;
	top:-20px;
	left:-30px;
	width:80px;
	height:80px;
	float:right;
}

#back a{
	text-decoration:none;
	text-align:center;
	display:block;
	font-family:GenBas;
	font-size:50px;
	text-shadow: 0px 0px 3px rgba(255,255,255,0.5);
	color:rgba(255,255,255,0.5);
	
	transition:
		color 0.5s,
		text-shadow 0.5s;
}

#back a:hover{
	text-shadow: 0px 0px 3px rgba(255,255,255,0.5);
	color:rgba(255,255,255,1);
}


/* ######################################
				 CONTENT
   ###################################### */

#content{

	margin:auto;
	margin-top:0px;
	font-family:GenBas;
	font-size:18px;
	text-shadow:0px 0px 3px rgba(0,0,0,0.3);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#element{
	text-align:center;
	margin:0px auto;
	padding:40px;
	margin-bottom:50px;
	width:800px;
	background-color:rgba(255,255,255,0.75); 
	box-shadow: 0px 0px 5px rgba(0,0,0,0.9);
	transition: box-shadow 0.5s;
	
	overflow: hidden;
}

/*
#####################################################
################	SLIDESHOW 	#####################
#####################################################
*/

#slideshow_box{
	position:relative;
	width:700px;
	height:850px;
	margin: 0px auto;
}

#div_slideshow{
	position:absolute;
	left:50px;
	width: 600px;
	height: 850px;
	overflow: hidden; /* Hide Stuff that is lager than this Box */
	border: 2px solid rgba(0,0,0,0.25);
}

#div_slideshow .ul_slides{
	position:absolute;
	left:0px;
	display: block;
	width: 1800px; //
	height: 850px;
	margin: 0;
	padding: 0;
}

#div_slideshow .ul_slide{

	float:left;
	list-style-type: none;
	width: 600px;
	height: 850px;
}

.slide_button{
	font-family: "Century Gothic", Sans-serif;
	font-size:24pt;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
	height:854px;
	width:50px;
	position:absolute;
	text-align: center;
	color:white ;
	line-height: 800px;
}


.slide_button:hover{
	cursor:pointer;
	color:gray ;
}


#slide_bl{

	background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.25) 100%); /* Chrome10-25,Safari5.1-6 */
}

#slide_br{
	left:654px;
	background: -moz-linear-gradient(left, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
}