/*START SCROLL TO TOP*/
.topcontrol {
	background: #30A3F0;
	color: #fff;
	font-size: 26px;
	text-align: center;
	height: 45px;
	width: 45px;
	line-height: 45px;
	position: fixed;
	bottom: 5px;
	right: 5px;
	z-index: 999;
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}
.topcontrol:hover {
    background: #333;
    color: #fff;
}
/*END SCROLL TO TOP*/