/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
display: none;
position: fixed;
bottom: 0;
right: 0;
padding: 5px 10px;
font-size: 0;
color: #fff;
text-decoration: none;
text-align: right;
border: none;
background-color: #535423;
overflow: hidden;
z-index: 999;
-webkit-transition: background-color .4s ease-in-out;	
-moz-transition: background-color .4s ease-in-out;
-o-transition: background-color .4s ease-in-out;
-ms-transition: background-color .4s ease-in-out;
transition: background-color .4s ease-in-out;
}

#toTop:hover {
background-color: #7a7a48;	
}

#toTop:before {
content: "\f106";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
font-size: 28px;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

#toTopHover {
display: none;
}

#toTop:active, #toTop:focus {
outline: none;
}