/*
Back to top button 
*/
#back-top {
	position: fixed;
	right: 90px;
    bottom: 30px;
    z-index: 1030;
}
#back-top a {
	width: 54px;
	display: block;
	text-align: center;
	font: 9px/100%  Verdana, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #dedede;
    right: 90px;
    bottom: 30px;
    z-index: 1030;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #000;
}
/* arrow icon (span tag) */
#back-top span {
	width: 54px;
	height: 54px;
	display: block;
	margin-bottom: 7px;
	background: #ddd url(up-arrow.png) no-repeat center center;
	/* rounded corners */
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
	margin-right: 40px !important;
}
#back-top a:hover span {
	background-color: #777;
}

