﻿@charset "utf-8";
/* CSS Document */


/*--スライダ--*/


*{outline: none;}


/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	width: 526px;
	height:234px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel img {float: left;}


/*--Paging Styles ■■■■■ページ送りボックス■■■■■--*/
.paging {
	width: 250px;
	height:35px;
	padding-left:15px;
	
	
	position: absolute;
	bottom: 0px; left: 0px;

	z-index:100; /*--Assures the paging stays on the top layer--*/
	text-align:left;

	/*数字の場合、ページ送りボックスの高さ調節*/
	line-height: 40px;
	
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}

.paging a {
	/*数字を入れた場合、設定 10px*/
	font-size:0px;
	
	/*数字がない場合、ページ送りボックスの高さ調節*/	
	/*width:px;*/
	height:6px;
	padding:6px;

	
	text-decoration: none !important;
	color: #000 !important;
	border: #999999 solid 1px;

	/*Pagebox color*/	
	background-color:#fff;
}

.paging a.active {
	color:white;
	
	/*数字がない場合、ページ送りボックスの高さ調節*/		
	/*width:px;*/
	height:6px;
	padding: 6px;
	
	font-weight: bold; 
	border: #999999 solid 1px;

	/*Pagebox color*/	
	background-color:#0c2236
}

.paging a:hover {}





