
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 550px;
	height:350px;
	/* custom decorations 
	border:1px solid #FF0000;*/
	border: 1px solid #eaeaea;
    
	/*background:url(/img/global/gradient/h300.png) repeat-x;*/
}

/*
	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 .pudInfo {
	float:left;
	/*margin:20px 5px 20px 21px;*/
	background-color:#fff;
	margin:0px;
	padding:0px;
	/*border:1px solid #ccc;*/
	cursor:pointer;
	width:181px;
	height:348px;
	border: 1px solid #ffffff;
	background-color:#ececec;
	/*background-image: url(../images/Indonesia_69.gif);
    background-repeat: no-repeat;
    background-position: center bottom;*/
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .pudInfo.hover {
	background-color:#c7dfec;	
}

/* active item */
.scrollable .active
{
    border: 1px solid #079ddd;
    z-index: 9999;
    position: relative;
    height: 348px;
}

.promotionScrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 400px;
	height:125px;
	/* custom decorations 
	border:1px solid #FF0000;
	border: 1px solid #eaeaea;*/
    
	/*background:url(/img/global/gradient/h300.png) repeat-x;*/
}

/*
	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.
*/
.promotionScrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	background-color: #eaeaea;
}


