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

	/* required settings */
	position: relative;
	overflow: hidden;
	width: 380px;
	height: 470px;
	padding: 10px 10px 10px 10px;
}

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

.items div {
	float: left;
	width: 390px;
	font-size: 11px;
	line-height: 14px;
	padding: 0px 10px 0px 0px;
}

/* single scrollable item */
.scrollable img {
	float: left;
	padding: 0px 10px 0px 0px;
	margin: 0px;
}

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


/* position and dimensions of the navigator */
.navi {
	width: 400px;
	text-align: left;
}


/* items inside navigator */
.navi a {
	font-size: 11px;
	line-height: 12px;
	text-decoration: none;
	padding: 0px 10px 0px 10px;
	color: #c26133;
}

/* mouseover state */
.navi a:hover {
	text-decoration: underline;
	color: #000000;   
}

/* active state (current page state) */
.navi a.active {
	color: #5c250a;
	text-decoration: underline;
}

.navi a:link, .navi a:visited {
	text-decoration: none;
}

.casttitle {
	font-size: 14px;
	font-weight: bold;
	line-height: 20px;
}