@charset "utf-8";
/* CSS Document */

/* additives */
.shadowed {
    -webkit-filter: drop-shadow(0.2rem 0.2rem 0.2rem #000);
     filter: drop-shadow(0.3rem 0.2rem 0.2rem #000); 
}

/* transit */
.transit {	
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-ms-trasition: all 1s ease-in-out;
	transition: all 1s ease-in-out;	format */
}

.transit-2s {	
	-moz-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	-webkit-transition: all 2s ease-in-out;
	-ms-trasition: all 2s ease-in-out;
	transition: all 2s ease-in-out;	format */
}

.transit-05s {	
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-trasition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;	format */
}

/* rotatio-animation */
.rotate:hover {
     transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transform-origin: center;
	-moz-transform-origin: center;
	-webkit-transform-origin: center;
	 transition:  2s ease all;
	-moz-transition: 2s ease all;
	-webkit-transition:  2s ease all;
}

.rotateY:hover {
     transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-webkit-transform: rotateY(360deg);
	 transform-origin: center;
	-moz-transform-origin: center;
	-webkit-transform-origin: center;
	 transition: 2.0s ease;
	-moz-transition: 2.0s ease;
	-webkit-transition: 2.0s ease;
}

.rotateX:hover {
   	 transform: rotateX(360deg);
	-moz-transform: rotateX(360deg);
	-webkit-transform: rotateX(360deg);
	 transform-origin: center;
	-moz-transform-origin: center;
	-webkit-transform-origin: center;
	 transition: 2.0s ease;
	-moz-transition: 2.0s ease;
	-webkit-transition: 2.0s ease;
}

/* text-shadow */
.txt-shadow {
	text-shadow: 2px 2px 4px #000;
}

/* grayscale */
.grayscale {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

/* opacity */
.opacity {
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
}

/* shadow */
.shadow-in {
	-webkit-box-shadow: inset 0 2em 2em -2em rgba(0,0,0,0.8);
    -moz-box-shadow: inset 0 2em 2em -2em rgba(0,0,0,0.8);
     box-shadow: inset 0 2em 2em -2em rgba(0,0,0,0.8);
}

.shadow-out {
	-webkit-box-shadow: 0 1rem 1rem -1rem rgba(0,0,0,0.8);
    -moz-box-shadow: 0 1rem 1rem -1rem rgba(0,0,0,0.8);
     box-shadow: 0 1rem 1rem -1rem rgba(0,0,0,0.8);
}

.shadow-out-2 {
	-webkit-box-shadow: 0 2rem 2rem -2rem rgba(0,0,0,0.8);
    -moz-box-shadow: 0 2rem 2rem -2rem rgba(0,0,0,0.8);
     box-shadow: 0 2rem 2rem -2rem rgba(0,0,0,0.8);
}

.text-shadow: { 0rem 0.1rem 0.1rem rgba(0,0,0,0.90); }

.pix-shadow: {
	-webkit-filter: drop-shadow(0.1rem 0.1rem 0.1rem #000);
            filter: drop-shadow(0.1rem 0.1rem 0.1rem #000);
}

/* fadein */
.fadein {		
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;	
}

@keyframes fadein {	
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* slideout */
.about {
	color: #F60;	
	line-height: 115%;	
}

#slideout {
    position: fixed;
    top: 3.1rem;
    left: 0;
	display: none;
	
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
	z-index: 98;
}

#slideout_inner {
    position: fixed;
    top: 3.1rem;
    left: -17rem;
    width: 17rem;
    height: auto;
    background: rgba(000,0,0,0.7);		
	border-radius: 0 1rem 1rem 0;			
		   
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#slideout_container {
	color: #FFF;
	font-family: "Khand Medium";
	font-size: 105%;	
	padding: 1rem;
}

#slideout:hover { left: 17rem; }
#slideout:hover #slideout_inner { left: 0; }

/* shake */
.shake {
	-webkit-animation-name: shake;
	-webkit-animation-duration: 0.2s;
	-webkit-transform-origin: 50% 50%;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
}	
	
@-webkit-keyframes shake {
  	  0% { -webkit-transform: translate(2px, 1px) rotate(0deg); }
	 10% { -webkit-transform: translate(-1px, -2px) rotate(-1deg); }
	 20% { -webkit-transform: translate(-3px, 0px) rotate(1deg); }
	 30% { -webkit-transform: translate(0px, 2px) rotate(0deg); }
	 40% { -webkit-transform: translate(1px, -1px) rotate(1deg); }
	 50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
	 60% { -webkit-transform: translate(-3px, 1px) rotate(0deg); }
	 70% { -webkit-transform: translate(2px, 1px) rotate(-1deg); }
	 80% { -webkit-transform: translate(-1px, -1px) rotate(1deg); }
	 90% { -webkit-transform: translate(2px, 2px) rotate(0deg); }
	100% { -webkit-transform: translate(1px, -2px) rotate(-1deg); }
}

/* crossfade */
#crossfade img {
    width: 100%;
    height: auto;
    position: absolute;
    animation-name: crossfade;
    animation-iteration-count: infinite;
    animation-duration: 34s;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

@keyframes crossfade {
  0% {
    opacity:1;
  }
  17% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

#crossfade img:nth-of-type(1) {
  animation-delay: 27s;
}
#crossfade img:nth-of-type(2) {
  animation-delay: 20s;
}
#crossfade img:nth-of-type(3) {
  animation-delay: 14s;
}
#crossfade img:nth-of-type(4) {
  animation-delay: 6s;
}
#crossfade img:nth-of-type(5) {
  animation-delay: 0s;
}

/* preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff; /* change if the mask should have another color then white */
	z-index:9999; /* makes sure it stays on top */
}

#status {
	width: 200px;
	height: 200px;
	position:absolute;
	left: 50%; /* centers the loading animation horizontally one the screen */
	top: 50%; /* centers the loading animation vertically one the screen */
	background-image: url(../index_files/status.gif); /* path to your loading animation */
	background-repeat: no-repeat;
	background-position: center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}