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

/*     Scroll     */

#scroll {
    position:fixed;
    right: 1.5em;
    bottom: 1.5em;
    cursor:pointer;
    width: 3.5em;
    height: 3.5em;
    background: rgba(173,173,173,1.00);
    text-indent:-9999px;
    display:none;
	z-index: 99999;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background: rgba(204,0,0,1);
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

@media only screen and (max-width: 800px){

#scroll{
	visibility: hidden;
	}	
}






