/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 175px;
	height:228px;

	/* 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;
}

/* single scrollable item */
.scrollable span {
	float:left;
	margin:8px 5px 2px 7px;
	background-color:#fff;
	padding:0px;
	
	cursor:pointer;
	width:160px;
	height:210px;
}

.scrollable span p {
	width: 164px;
	height: 55px
	font-family: 'µ¸¿ò', '±¼¸²';
	font-weight: bold;
	font-size: 13px;
	color: #FFF;
	background-color: #000;
	text-align: center;
	padding: 15px 0px 15px 0px;
	margin: -138px 0 0 0;
	cursor: pointer;
	opacity: 0.65; 
	filter: alpha(opacity=65);
}

.scrollable img {
	float:center;
	margin: 0px;
	padding: 0px;
	border:2px solid #000;
	cursor:pointer;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

#prev_bt {
	cursor:pointer;	
}

#next_bt {
	cursor:pointer;
}

/* overlay */
/* use a semi-transparent image for the overlay */
#overlay {
	background-image:url(http://static.flowplayer.org/img/overlay/transparent.png);
	color:#efefef;
	width:610px;
	height:450px;
}


