@charset "utf-8";
/* CSS Document */
#pagewrap {
	margin: 0 auto;
	width: 960px;
/*	padding-right: 150px;*/
	position: relative;
}
/*
Back to top button 
*/
#back-top {
	position: fixed;
	bottom: 10px;
	right:50px;
	z-index:1;
}
#back-top a {
	width: 100px;
	display: block;
	text-align: center;
	font: 11px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color:#fff;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #fff;
}
/* arrow icon (span tag) */
#back-top span {
	width: 100px;
	height: 10px;
	display: block;
	margin-bottom: 0px;
		padding:10px;
	background: #090 center center;
	
	filter: alpha(opacity=80);
    -moz-opacity:0.8;
    opacity:0.8;
	
	
	/* rounded corners */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	 /*background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background-color:#3C9;
}