/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings width: 680px;*/
	position:relative;
	overflow:hidden;
	width: 850px;
	height:170px;
        margin:0 auto;
        

}

/*
	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;
}

.scrollable .pre_item {
	float:left;
	margin: 0 5px 0 5px;
	padding:2px;
	cursor:pointer;
	width: 269px;
        height:170px;

}

.scrollable .pre_item p{
	font:bold 12px Arial, Helvetica, sans-serif;
        margin:2px 0 0 0;
        padding:5px 0 0 0;
        width:269px;
        height:28px;
        background:url(./images/preview/bottom_pre.png) no-repeat;       
}

.scrollable .pre_item span{
        color:#fff;
        float:left;
        margin:0 0 0 10px;
}

.scrollable .pre_item a{
        font:normal 12px Arial, Helvetica, sans-serif;
        text-decoration:none;
        color:#000;
        float:right;
        margin:0 10px 0 0;
}
.scrollable .pre_item a:hover{
        font:normal 12px Arial, Helvetica, sans-serif;
        text-decoration:none;
        color:#000;
        float:right;
        margin:0 10px 0 0;
}
.scrollable .pre_item a:visited{
        font:normal 12px Arial, Helvetica, sans-serif;
        color:#000;
        float:right;
        margin:0 10px 0 0;
}
/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}


