@charset "utf-8";

/* CSS Information ========================================
File name: styles.css
Editors: 
Last Editor: Yuko Shigeoka
Date: 2010.3.16
==========================================================*/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.today {
	position: relative;
	width: 300px;
	height: 131px;
	background:url(../images/bg_today_player.jpg) no-repeat;
}
.scrollable {
	/* required settings */
	position:relative;
	width: 240px;
	margin-left: 30px;
	padding-top: 20px;

	/* custom decorations */
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	/*width:20000em;*/
	/*position:absolute;*/
	/*clear:both;*/
	width: 240px;
	/*margin-left: 5px;*/
	height: 94px;
	overflow:hidden;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:28px 0 0 5px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:48px;
	height:48px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}




