@charset "utf-8";

/* CSS Document */

/*NEWS CONTAINER　共通*/
.news_block {
	width:932px;
	margin:0 auto;
	position:relative;
	}
	
/*NEWS BOXES　共通*/
.news_box {
	height:300px;
	width:193px;
	padding:10px 8px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px; 
	float:left;
	margin-right:8px;
	background:#fff;
	}
/******スライダー******/
.news_slider {
	width: 860px;
	position: relative;
	z-index: 10;
	margin:0 auto;
	margin-bottom:10px;
	overflow:hidden;
	}
.news_slider ul.slides {
	position:relative;
	width:auto;
	overflow:hidden;
	left:0;
	}
.news_slider ul.slides li {
	float:left;
	width:860px;
	}
	
/*LEFT and RIGHT ARROWS　スライダー両サイド矢印*/
.news_slider-right, .news_slider-left {
	background-image:url(../img/news_slider-frecce.png);
	background-repeat:no-repeat;
	height:37px;
	width:25px;
	cursor: pointer;
	position:absolute;
	top:44.5%;
	z-index:100;
	}
.news_slider-right {
	background-position: -25px 0;
	right:0;
	}
.news_slider-left {
	display:none;
	left:0;
	}
.news_slider-right:hover {
	background-position: -25px -37px;
	}
.news_slider-left:hover{
	background-position: 0px -37px;
	}
	
/*SPOTS*/
.news_slider-spots {
	text-align: center;
	list-style: none;
	width: auto;
	height:18px;
	margin:0 auto;
	position:relative;
	overflow:hidden;
	}
.news_slider-spots li {
	background-image:url(../img/news_slider-step.png);
	background-repeat:no-repeat;
	background-position:0 0;
	position: relative;
	float:left;
	width: 18px;
	height: 16px; 
	text-indent:-9999px;
	outline:none;
	cursor:pointer;
	}
.news_slider-spots li:hover, .news_slider-spots li.active {
	background-position:-18px 0;
	}
	
