@charset "utf-8";
/* CSS Document */
.clear,.clean {clear:both;}

/* Scroll top */

#toTop{
    border:1px solid #ccc;
        background:#f7f7f7;
        text-align:center;
        padding:18px;
        border-radius:5px;
        position:fixed; /* this is the magic */
        bottom:10px; /* together with this to put the div at the bottom*/
        right:10px;
        cursor:pointer;
        display:none;
        color:#333;
        font-size:11px;
}
 
#toTop:before{
    content:"";
    position:Absolute;
    width:0;
    height:0;
    border:11px solid transparent;
    border-bottom:11px solid #445f6e;
    left:7px;
    top:-4px;
}
 
 
#toTop:after{
    content:"";
    position:Absolute;
    width:10px;
    height:12px;
    background-color:#445f6e;
    left:13px;
    top:18px;
}

/* End scroll top */