@CHARSET "UTF-8";
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.slideshow_box{
	position: relative;
	width: 840px;
	height: 342px;
	margin-bottom: 20px
}
#cadre{
	overflow:hidden;
	width: 720px;
	height: 322px;
	border: 1px solid #CD9450;
	background: #fff;
	margin-left: 50px;
	padding: 10px;
}
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 720px;
	height: 322px;
	background: #fff;
}

/*
	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:720px;
	height: 322px;
	position: relative;
	background: #CCC;
}
div#slideshow1{
	background: #CCC url("/images/slideshow1.jpg") center no-repeat;
}
div#slideshow2{
	background: #CCC url("/images/slideshow2.jpg") center no-repeat;
}
div#slideshow3{
	background: #CCC url("/images/slideshow3.jpg") center no-repeat;
}



/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	height:60px;
	cursor:pointer;
	font-size:1px;
	position: absolute;
	bottom: 30px; 
}

/* right */
a.right { 
	width: 58px;
	right: 38px;
	background: url("/images/slideshow_right.png") top left no-repeat;
	padding-right: 0;
}
a.right:hover 	{ 
	bottom: 28px  
}


/* left */
a.left	{ 
	width: 58px;
	left: 40px;
	background: url("/images/slideshow_left.png") top left no-repeat;
} 
a.left:hover  	{ 
	bottom: 28px 
}


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	
/* position and dimensions of the navigator */
.navi {
	width:224px;
	height:39px;
	background: url("/images/navi.png") top left no-repeat;
	position: absolute;
	top: 11px;
	left: 304px;
	padding-left: 78px
}


/* items inside navigator */
.navi a {
	width:10px;
	height:10px;
	float:left;
	margin:5px 6px 0;
	display:block;
	font-size:1px;
	background: url("/images/bullet.png") left bottom no-repeat;
}

/* mouseover state */
.navi a:hover {
	margin-top: 6px;
}

/* active state (current page state) */
.navi a.active {
	background-position: top left;
}
