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


.scrollOutside{
	margin-top: 150px;
	width: 500px;
	height: 200px;
	background-color:#CCCCCC;
}

.scrollHeader, .scrollFooter{
	width: 100%;
	height: 30px;
	background-color:#FFFFFF;
	font-family:Arial, Helvetica, sans-serif;
	color:#666666;
	line-height: 30px;
	font-size:16px;
	font-weight:bold;
	text-align: left;
}

.scrollFooter{
	font-size:12px;
	font-weight:normal;
	height: 20px;
	line-height: 20px;
}


.scrollable {
	
	/* required settings */
	margin-top:10px;
	position:relative;
	overflow:hidden;	 	
	width: 460px;	
	height:130px;	
	
	/* custom decorations */
	/*	background-image:url(images/moo.ong);
*/
}

.items {	
	/* this cannot be too large */
	width:10000px;	
	position:absolute;
	clear:both;		
	left:0px;

	/* decoration */

}

.item{
	float:left;
	width:115px;
	height: 130px;
	
	/* decoration */
	text-align:center;

	font-size:14px;
	font-family: Arial, Helvetica, sans-serif;
/*	border:1px #00cc33 solid;*/
}

.item_img_box{
	width:100%;
	height: 110px;
}

.item_text{
	width:100%;
	height: 20px;
	/*background-color:#FF0000;*/
	font-family:Verdana, Arial, Helvetica, sans-serif;
/*	color:#666666;*/
	font-size:11px;
}

.item_img{
	margin-top:10px;
	width:110px;
}

.prevPage, .nextPage{
	width:15px;
	height:15px;
}

.prevPage{
	background-image:url(../images/scroll_arrow_left.png);
	float:left;
}

.nextPage{
	background-image:url(../images/scroll_arrow_right.png);
	float:right;
}

