/* SCROLLABLE */

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

	/* required settings */
	position:relative;
	overflow:hidden;
	padding: 25px 0 0 0;
	margin: 0;
	width:686px;
	height:227px;
	z-index:100;
	
	/* custom decorations */
	/*background:url(/img/global/gradient/h300.png) repeat-x;*/
}

/*
	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 img {
	float:left;
	margin:0;
	/*background-color:#fff;*/
	/*padding:2px;*/
	/*border:1px solid #ccc;*/
	cursor:pointer;
	width:686px;
	height:213px;
	/*
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	*/
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:150;
	position:relative;
}





/* LOUIS */

.scrollerNav{
	text-align: center;
	/* clear:both; */
	width:100%;
	height:35px;
	margin-top: -35px;
	/* background-color:green; */
	/* background:url(../images/scrollable/arrow/naviBack.jpg) center top no-repeat; */
	
	
}
.picScroller{
	clear:both;
	margin-bottom: 25px;
}

#actionButtons{
	float:left;
	text-align:center;
	width:400px;
	/*background-color:fuchsia;*/
	height:30px;
}


a.playButton {
	background:url(../images/scrollable/arrow/pausePlay.png) no-repeat;
	display:block;
	margin: 2px 0 0 20px;
	width:26px;
	height:26px;
	float:left;
	position:relative;
	/* z-index: 53; */
}

a.pauseButton {
	background:url(../images/scrollable/arrow/pausePlay.png) no-repeat;
	background-position: 0 -26px;
	margin: 2px 20px 0 0;
	display:block;
	width:26px;
	height:26px;
	float:right;
	position:relative;
	/* z-index: 53; */
}

a:hover.pauseButton {
	background-position: -26px -26px;
	/* background-color:fuchsia; */
}

a:hover.playButton {
	background-position: -26px 0;
	/* background-color:fuchsia; */
}

.naviIcons {
	float:left;
	position:relative;
	left:50%;
	text-align:left;
	/*background-color:fuchsia;*/
	height:30px;
	margin-left:-30px; /* - pauseButton width */
	/* margin-bottom: 30px; */
}




/* NAVIGATOR */
/* position and dimensions of the navigator */
.navi {
	position:relative;
	left:-50%;
	background: url(../images/scrollable/bgSlideNavTrans.png);
	padding:0 10px;
	height:35px;
	z-index: 200;
}



/* items inside navigator */
.navi a {
	position:relative;
	width:15px;
	height:15px;
	float:left;
	margin:10px 3px 3px 3px;
	background:url(../images/scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -15px;      
}

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





/* BUTTONS */

/* this makes it possible to add next button beside scrollable */
/*
.scrollable {
	float:left;	
}
*/
/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	/*
	float:left;
	margin:40px 10px;
	*/
	
	cursor:pointer;
	
	font-size:1px;
}

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


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



/* up and down */
a.up, a.down { 
	background:url(../images/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;
}

/*
img.topLevel{
	position: absolute;
	z-index: 2;
}
*/

.topLevel{
	width:686px;
	height:278px;
	position: absolute;
	z-index: 200;
	background: url(../images/homeScrollerFrame.png) no-repeat;
}
