@charset "utf-8";
/* BackToTop button css */
#scroll {
    position:fixed;
    right:20px;
    bottom:20px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#000000;
    opacity:0.5;
	filter:"alpha(opacity=50)";
    -ms-filter:"alpha(opacity=50)";
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px;
	z-index: 1000px;
}
#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;
	z-index: 1000px;
}
#scroll:hover {
    background-color:#000000;
    opacity:0.9;
	filter:"alpha(opacity=90)";
    -ms-filter:"alpha(opacity=90)";
	z-index: 1000px;
}



