/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10-sep-2015, 15:51:48
    Author     : Thim
*/

/*
* Scroll to top button CSS
*/

.scrollup {
    border-radius: 25px;
    padding: 20px;
    min-width: 120px;
    min-height: 20px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    opacity: 0.3;
    background-color: black;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
    text-decoration: none;
    z-index: 999;
}
    
.scrollup:link{
    text-decoration: none;
    color: white;
}
   
.scrollup:visited{
    text-decoration: none;
    color: white;
}
    
.scrollup:hover{
    opacity: 0.5;
    text-decoration: none;
}
    
.scrollup:active{
    text-decoration: none;
    color: white;
}