/* Pill style */
#scrollUp {
	bottom: 5%;
	right: 1%;
	background: #99CCFF;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
/*	font-family: sans-serif;	*/
		box-shadow: 0 0 0px #fff;
		font-weight: bold;
	text-decoration: none;
	opacity: .9;
	padding: 0.7em 1.5em;	/* 相対数値指定が必要 */
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 50%;
	border: 1px solid #ccc;
	-webkit-transition: box-shadow 200ms linear;
	-moz-transition: box-shadow 200ms linear;
	transition: all 200ms linear;
}
	#scrollUp:hover {
		box-shadow: 0 0 3px #777;
		text-shadow: 0 0 8px #fff;
		background: #fff;
		color: #666;
		border: 1px solid #fff;
	}


