/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom: 40px;
	right:40px;
	overflow:hidden;
	z-index: 10000;
	transition: all 0.35s linear;
	-moz-transition: all 0.35s linear;
	-webkit-transition: all 0.35s linear;
	-o-transition: all 0.35s linear;
	color:white;
	font-size:14px;
	border:2px solid white;
	padding:5px 10px;
	margin:60px 0 0;
}
#toTop:hover {
	
	opacity: 0.75;
	-moz-opacity: 0.75;
	filter:alpha(opacity=0.75);
}
#toTopHover {

	opacity: 0.5;
	-moz-opacity: 0.5;
	filter:alpha(opacity=0.5);
}

#toTop:active, #toTop:focus {
	outline:none;
}
.top-inside{
	color: black!important;
    border-color: black!important;
	background:white;
}

.apps-totop{
	display: block!important;
    border-radius: 50%!important;
    font-size: 26px!important;
    width: 36px!important;
    height: 36px!important;
    padding: 2px 9.5px!important;
    box-shadow: 0px 0px 5px 1px #4E5000!important;
    border: 0!important;
}

@media (max-width: 768px) {	
#toTop {
	 bottom: 20px;
	 right:20px;
	}
}