/* 
    Document   : style_scroll_to_top
    Created on : Feb 3, 2014, 4:08:04 PM
    Author     : snatch-pc
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

.back-to-top {
    position: fixed;
    bottom: 10em;
    right: 0px;
    text-decoration: none;
    color: #000000;
/*    background-color: rgba(235, 235, 235, 0.80);*/
/*    background-color: rgba(135, 135, 135, 0.80);*/
    background-color: rgba(100, 100, 100, 0.40);
    font-size: 12px;
    padding: 1em;
    display: none;
        
    
    box-shadow: 1px 1px 2px #777;
    -moz-box-shadow: 1px 1px 2px #777;
    -webkit-box-shadow: 1px 1px 2px #777;                
    -moz-border-radius: 8px;
/*    border-radius: 10px;*/
    
/*    box-shadow: -1px 1px 2px #777;*/
    border-top-left-radius:1em;
    border-bottom-left-radius:1em;
    z-index: 1000;
    
    
}

.back-to-top:hover {	
/*    background-color: rgba(100, 100, 100, 0.50);*/
    background-color: rgba(135, 135, 135, 0.80);
}	