@charset "utf-8";
/* CSS Document */
/* additives */

/* arrow */
#button-1 {
	position: fixed;
	bottom: 1rem;
    right: 2rem;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
	z-index: 9999;
}

#button-1:hover { bottom: 2em; }

#arrow {	
    position: fixed;
	bottom: 2rem;
    right: 2rem;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
	z-index: 99;
}

#arrow:hover { bottom: 3em; }

/* 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 */
.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 */
}

.transit05 {	
	-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 */
}

/* 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);
}

/* 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 */
.lang-icos {
	width: 3rem;
	height: auto;
	padding: 0.5rem;
}

.lang-icos:hover{
	background: #ff7612;	
	text-decoration:none;
	-moz-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	-webkit-transition: all 1s ease-out;
	-ms-trasition: all 1s ease-out;
	transition: all 1s ease-out;	format */	
}

#slideout {
    position: fixed;
    top: 6rem;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
	z-index: 9999;
}

#slideout_inner {
    position: fixed;
    top: 6rem;
    left: -4rem;
    width: 4rem;
    height: auto;
    background: rgba(000,0,0,0.6);    
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#slideout:hover {
    left: 4em;
}

#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); }
}