/*
 * Simple Scroll to Top Button
 * Style sheet for button
 * @since 1.0
 * @agareginyan
 */


#ssttbutton {
    position: fixed;
    right: 30px;
    bottom: 20px;
    padding: 5px;
    box-sizing: content-box;
    cursor: pointer;
    font-family: Fontawesome;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    z-index: 9999;
}

#ssttbutton:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}