div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 310px; 
    height:550px; 
} 
 
/* 
    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 width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:3000px; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 310px;
	height:100px;
	/* custom decorations */
	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:280px;
	position:absolute;
	clear:both;
}

div.items div.srccontainer{
	float:left;
	padding:0px;
	margin-right:20px;
	cursor:pointer;
	}
div.items div.srccontainer ul{
	margin:0px;
	padding-left:10px;
	
}
div.items div.srccontainer ul li{
	list-style-type:none;
	margin:0px;
	padding:0px;
}
div.items div.srccontainer ul h1{
	width:200px;
}
div.items div.srccontainer ul h2{
	width:200px;
	font-size:12px;
}
div.items div.srccontainer ul h1 a{
	color:#ffffff;
}
/* single scrollable item */
.scrollable img {
	float:left;
	
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:260px;
	height:85px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}



/* BUTTON -------------    this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:15px;
	height:15px;
	float:left;
	margin:0px;
	padding:0px;
	margin-top:-10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-image:url(/include/mod/layout1/images/right.png); clear:right; margin-right: 0px;}



/* left */
a.left				{ margin-left: 0px; background-image:url(/include/mod/layout1/images/left.png);} 

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	



