/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position: relative;
	overflow: hidden;
	width: 750px;
	height: 215px;
	
	background: green;
	}

/*
	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 div.scroll-item{
	float: left;
	background-color: #ffffff;
	padding: 10px;
	width: 230px;
	height: 215px;
	overflow: hidden;
	line-height: 130%;
	font-size: 8pt;
	}
	.scrollable div.scroll-item h1{
		font-size: 9pt;
		color: #666666;
		font-weight: normal;
		margin-top: 0;
		}
/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
	}




/* position and dimensions of the navigator */
.navi {
	padding: 5px 0 0 8px;
	}


/* items inside navigator */
.navi a {
	width:9px;
	height:9px;
	float:left;
	margin:3px;
	background: #bef2be;
	display:block;
	cursor: pointer;
	}

/* mouseover state */
.navi a:hover {
	background: #005100;
	}

/* active state (current page state) */
.navi a.active {
	background: #005100;
	}

div#actionButtons{
	text-align: right;
	padding: 0 8px 0 0;
	}
div#actionButtons button{
	border: 1px solid #005100;
	-moz-border-radius: 5px;
	margin: 0 0 0 10px;
	background: #e5f6ee url('../../img/layout/bg_darkgreen.jpg') top left repeat-x;
	font-weight: bold;
	font-size: 8pt;
	color: #005100;
	}



