@chardet="UTF8";
/* wideslider.css */


/* 画像マージンのリセット */

.wideslider * {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}


/* スライダー本体のスタイル */


.wideslider {
	width: 100%;
	height: 400px;/* スライダーの縦幅(ページャーを画像から出したい場合は画像の縦幅より広くする) */
	text-align: left;
	position: relative;
	overflow: hidden;
}

.wideslider li img {/* 画像のスタイル(画像のスタイル(スライダー幅より画像を小さくする場合。jsファイルで指定したサイズを超えないように) */
/*
	width: 960px;
	height: 400px;
	padding: 0;
*/
}

.wideslider ul,
.wideslider ul li {
	float: left;
	display: inline;
	overflow: hidden;
}

.wideslider_base {
	top: 0;
	position: absolute;
}
.wideslider_wrap {
	top: 0;
	position: absolute;
	overflow: hidden;
}

.slider_prev,
.slider_next {
	top: 0;
	overflow: hidden;
	position: absolute;
	z-index: 100;
	cursor: pointer;
}
.slider_prev {background: #fff url(../img/prev.png) no-repeat right center;}/* 戻るボタンの画像(jsファイルで透明度を指定) */
.slider_next {background: #fff url(../img/next.png) no-repeat left center;}/* 次へボタンの画像(jsファイルで透明度を指定) */


/* ページャーのスタイル */

.pagination {/* ページャーのポジション等 */
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 15px;
	text-align: center;
	position: absolute;
	z-index: 200;
}

.pagination a {/* ボタンのスタイル */
	margin: 0 5px;
	width: 15px;
	height: 15px;
	display: inline-block;
	overflow: hidden;
	background: url(../img/pn_btn.png) no-repeat;
}
.pagination a.active {
	filter:alpha(opacity=100)!important;
	-moz-opacity: 1!important;
	opacity: 1!important;
}

/* =======================================
	ClearFixElements
======================================= */
.wideslider ul:after {
	content: ".";
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

.wideslider ul {
	display: inline-block;
	overflow: hidden;
}