/*ページ設定部分（style.cssなどで設定していれば削除する）*/
* {
	margin: 0;
	padding: 0;
}
body {
	background: #fff;
	font-family: Arial;
}
#container {
	width: 520px;
	margin: 20px auto;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #ff0000;
	text-decoration: underline;
}
/*ここまでページ設定部分*/


/*ここからTinyScrollbarの設定*/
#scrollbar1 {
	width: 520px;
	clear: both;
	margin: 20px 0 10px;
}
#scrollbar1 .viewport {
	width: 500px;
	height: 200px;
	overflow: hidden;
	position: relative;
}
#scrollbar1 .overview {
	list-style: none;
	position: absolute;
	left: 0;
	top: 0;
}
#scrollbar1 .thumb .end, #scrollbar1 .thumb {
	background-color: #003D5D;
}
#scrollbar1 .scrollbar {
	position: relative;
	float: right;
	width: 15px;
}
#scrollbar1 .track {
	background-color: #D8EEFD;
	height: 100%;
	width: 13px;
	position: relative;
	padding: 0 1px;
}
#scrollbar1 .thumb {
	height: 20px;
	width: 13px;
	cursor: pointer;
	overflow: hidden;
	position: absolute;
	top: 0;
}
#scrollbar1 .thumb .end {
	overflow: hidden;
	height: 5px;
	width: 13px;
}
#scrollbar1 .disable {
	display: none;
}
.new {
	border-top: 2px solid #fa8072;
	border-right: 1px solid #c6c6c4;
	border-left: 1px solid #c6c6c4;
	border-bottom: 1px solid #c6c6c4;
}
