/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
 */
.scrollable {
	position: relative;
	overflow: hidden;
	margin: 30px 0 0;
	width: 600px;
	height: 224px;
	border: 1px solid #ccc;
}

/*
   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 {
	width: 20000em;
	position: absolute;
	clear: both;
}

.items div {
	float: left;
	width: 600px;
}

.scrollable span {
	float: left;
	display: block;
	margin: 0;
	padding: 0;
	width: 300px;
	height: 224px;
	overflow: hidden;
}

.scrollable .active {
	border: 2px solid #000;
	position: relative;
	cursor: default;
}

a.browse {
	background: url("/pict/hori_large.png") no-repeat;
	display: block;
	width: 30px;
	height: 30px;
	float: left;
	margin: 40px 10px;
	cursor: pointer;
	font-size: 1px;
	padding: 0;
}

a.browse.right {
	background-position: 0 -30px;
	clear: right;
	margin-right: 0px;
}

a.browse.right:hover {
	background-position: -30px -30px;
}

a.browse.right:active {
	background-position: -60px -30px;
}

a.browse.left {
	margin-left: 0px;
}

a.browse.left:hover {
	background-position: -30px 0;
}

a.browse.left:active {
	background-position: -60px 0;
}

a.disabled {
	visibility: hidden !important;
}

.navi {
	clear: both;
	height: 20px;
	margin: 10px 10px 0;
}

.navi a {
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	background: url("/pict/navi.png") 0 0 no-repeat;
	display: block;
	font-size: 1px;
}

.navi a:hover {
	background-position: 0 -8px;
}

.navi a.active {
	background-position: 0 -16px;
}


