/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#scroller-container {
	display:block;
	width: 1000px;
	background:#fff;
	overflow:hidden;
	position:relative;
}
.scrollable {
	/* required settings */
	position:relative;
	overflow:visible;
	padding-top:0;
	width: 1000px;
	height:308px;
	background:#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 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items>div {
	float:left;
	width: 1000px;
	height:308px;
	position:relative;
}
.items article {
	width:1000px;
}
.items h1 {
	
}
.items p {
	
}


#browsable .btn a { /* In the scrolling panel, the buttons have a darker drop-shadow */
	border:1px solid #89DA8B;
	-webkit-box-shadow: #222 3px 3px 3px;
	-moz-box-shadow: #222 3px 3px 3px;
	box-shadow: #222 3px 3px 3px;
}

/*
.ie6 #panel-1 {
	background: url(../images/SampleContentHeroPanel.gif) no-repeat 380px bottom;
} */

/* single scrollable item */
.scrollable img {

}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}












/* this makes it possible to add next button beside scrollable */
.scrollable {
	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:39px;
	height:39px;
	position:absolute;
	overflow:hidden;
	top:130px;
	z-index:11;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{
	right:0;
	/*background-image:url(../img/backgrounds/slidehow-arrows-r.png);*/
	background-repeat:no-repeat;
	background-position:0 -39px;
}
a.right:hover 		{
	background-position:0 0;
}



/* left */
a.left				{
	left:0;
	/*background-image:url(../img/backgrounds/slidehow-arrows-l.png);*/
	background-repeat:no-repeat;
	background-position:0 -39px;
} 
a.left:hover  		{
	background-position:0 0;
}


/* up and down */
a.up, a.down		{ 
	/*background:#00ff00 url(../../img/scrollable/arrow/vert_large.png) no-repeat;*/
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button 
a.disabled {
	visibility:hidden !important;		
} 	
*/

a.disabled {
			
} 	




/* position and dimensions of the navigator */
.navi {
	position:absolute;
	bottom:35px;
	left:-330px;
	z-index:1000;
	height:15px;
}


/* items inside navigator */
.navi a {
	width:16px;
	height:16px;
	float:left;
	margin:0 7px;
	/*background:url(../img/backgrounds/navi-icons.png) no-repeat 0 -16px;*/
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	 
}
/* active state (current page state) */
.navi a.active {
	background-position:0 0;
}




