
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#scroller .scrollable,#scroller2 .scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 496px;
	height:120px;
	font-family:Trebuchet MS,Tahoma;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(../images/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.
*/
#scroller .scrollable .items,#scroller2 .scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

#scroller .items div,#scroller2 .items div {
	float:left;
	width:680px;
}

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

/* active item */
#scroller .scrollable .active,#scroller2 .scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

#scroller div.items p.item01,#scroller2 div.items p.item01 {
	float: left;
	margin: 10px 0 10px 19px;
	padding: 0;
	width: 224px;
}
p.item01 a {
	display: block;
	width: 224px;
	height: 120px;
	text-decoration: none;
}
p.item01 span.s_title {
	font-size: 12px;
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #475057;
}
p.item01 a:hover span.s_title {color: #156193;}
p.item01 span.s_typ {
	font-size: 11px;
	color: #156193;
	font-weight: bold;
	display: block;
	padding-bottom: 3px;
}