.jquery-slider {
    overflow: hidden;
    position: relative;
}
.jquery-slider-element { /* 基本要素 */
    overflow: hidden;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width:100%;
    height:196px; /* 画像の高さ */
}
.jquery-slider-control { /* 左右のスライダー表示 */
    overflow: hidden;
    position: absolute;
    text-align: center;
    width: 24px;
    height: 24px;
    line-height: 0px;
    font-size: 0px;
    /* font-weight: bold; */
    padding: 0;
    margin: 0;
    /* border: 1px solid #666; */ /* ←罫→ */
    /* background: #fff;
    opacity: 0.33;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: #666 0 0 2px;
    text-shadow: #fff 0 0 1px; */
}
.jquery-slider-control:hover {
    opacity: 1;
}
.jquery-slider-control-prev {
    left: 5px;
    bottom: 5px;
}
.jquery-slider-control-next {
    right: 5px;
    bottom: 5px;
}
.jquery-slider-pages { /* スライダー位置 */
	overflow: visible;
	position:absolute;
	bottom:0px;
	left:40%;
}
.jquery-slider-page { /* 下中央の○ */
	overflow: hidden;
	position: relative;
	display: block;
	float:right;
	width: 12px;
	height: 12px;
	width: 9px\9; /* IE8 */
	height: 9px\9; /* IE8 */
	*width: 9px\9; /* IE7 */
	*height: 9px\9; /* IE7 */
	_width: 9px\9; /* IE6 */
	_height: 9px\9; /* IE6 */
	padding: 0;
	background: #999;
	cursor: pointer;
	opacity: 0.33;
	margin: 5px;
	border-radius: 6px;
	box-shadow: #333 0 0 2px;
}
.jquery-slider-page:hover {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
}
*.jquery-slider-page:hover {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	background: #666;
}
.jquery-slider-page-current {
    opacity: 1;
}