/* Tab style */
.scrollup-tab {
	zIndex: 9999999;
	bottom: -10px;
	width: 70px;
	height: 70px;
	padding: 10px 5px;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
	color: #828282;
	-webkit-box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.2);
	background-color: #E6E6E6;
	background-image: -moz-linear-gradient(top, #EBEBEB, #DEDEDE);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#EBEBEB), to(#DEDEDE));
	background-image: -webkit-linear-gradient(top, #EBEBEB, #DEDEDE);
	background-image: -o-linear-gradient(top, #EBEBEB, #DEDEDE);
	background-image: linear-gradient(to bottom, #EBEBEB, #DEDEDE);
	background-repeat: repeat-x;
	-webkit-transition: bottom 150ms linear;
	-moz-transition: bottom 150ms linear;
	transition: bottom 150ms linear;
}

.scrollup-tab:hover {
	bottom: 0px;
}

/* Pill style */
.scrollup-pill {
	zIndex: 9999999;
	font-family: Arial sans-serif;
	font-weight: bold;
	line-height: 58px;
	text-align: center;
	font-size: 35px;
	right: 1px;
	color: #fff!important;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	opacity: 0.5;
	width: 50px;
	height: 50px;
	display: inline;
	position: fixed;
	cursor: pointer;
	margin: 0 auto;
	right: 7px;
	bottom: 7px;
	background: #000;
	text-decoration: none!important;
}

.scrollup-pill:hover {
	color: #fff;
}

/* Text link style */
.scrollup-link {
	bottom: 20px;
	zIndex: 9999999;
}
/* Center style */
.scrollup-center {left: 47%;}

/* Right style */
.scrollup-right {right: 20px;}

/* Left style */
.scrollup-left {left: 20px;}