
/*************************************************************************/
/* scroll-onTop nav-on-top */

.scroll-on-top {
}
#nav-on-top {
	height: 45px;
	width: 45px;
	text-align: center;
	font-size: 130%;
    line-height: 161%;
	border: 0px solid #dedede;
	color: #000;
	border-radius: 45px;
	bottom: 2%;
	right: 1%;
	padding: 0;
	display: none;
	position: fixed;
	z-index: 999;
	overflow: hidden;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 490px) {
	#nav-on-top {padding-top: 5px; border:0; right: 0%;}
}

#nav-on-top:hover {
	opacity: 0.8;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}

