@charset "utf-8";


/* TOPローテーション */
.items{

}
.items dl{
margin:0;
}
.items dl dt{
width:80px;
float:left;
}
.items dl dd{
width:175px;
float:right;
font-size:12px;
}
.items dl dd a{
font-weight:bold;
text-decoration:none;
}
.items dl dd span{
padding:2px 0 0 0;
font-size:10px;
display:block;
}


div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 560px;/*565*/
	height:72px;/*x+5+5+1+1=82*/
	font-size:13px;

	/* custom decorations 
	padding:5px 0;
	border:1px solid #eee;
	background:#fff;*/
	/*margin:0 0 15px 0;*/
	margin:0 0 15px 0;
padding:5px 0 5px 5px;
background:#f4f2f2;


}

div.scrollable div.items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	/* decoration */
	margin-left:0px;
}

/* single scrollable item */
div.scrollable div.items .top-rotation {
	float:left;
width:263px/*275*/;
border:1px solid #e5e4e4;
margin:0 5px 0 0;
padding:5px;
background:#fff;
	/* custom decoration 
	width:180px;
	height:200px;
	padding:0 5px;
	background:#fff;
	margin-left:0px;
	margin-right:0px;
	border-right:1px solid #eee;*/
}

/* active item */
div.scrollable div.items div:hover {

}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/left.png) no-repeat;
	float:left;
	margin:102px 3px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/right.png);
	clear:right;
}

/*********** navigator ***********/

/* position and dimensions of the navigator */
div.navi {
	height:20px;
	margin-top:5px;
/*	clear:both;*/
	display:inline;
	float:right;
}
/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px 5px;
	background:url(../images/navigator.gif) 0 0 no-repeat;
	cursor:pointer;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;
}


/* clearfix */
div.scrollable div.items:after,
div.scrollable:after{  
	visibility: hidden;  
	display: block;  
	font-size: 0;  
	content: " ";  
	clear: both;  
	height: 0;  
}
* html div.scrollable div.items,
* html div.scrollable{
	zoom: 1;/* IE6 */ 
}
*:first-child+html div.scrollable div.items,
*:first-child+html div.scrollable{
	zoom: 1;/* IE7 */ 
}