﻿/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 80px;
	height:445px;
	margin-right: 20px;

	/* custom decorations */
	/*border:1px solid #ccc;*/
	/*background:url(/img/global/gradient/h300.png) repeat-x;*/
}


.itemContainer{width: 80px; height: 80px; display: block;margin:8px 0; }

/*
	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 */
	height:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	/*float:left;*/
	cursor:pointer;
	background: #fff; 
	border-bottom: 2px solid #ccc !important; 
	padding: 4px; 
	height: 70px; 
	width: 70px; 
	display: block;	
}

.scrollable img:hover, .scrollable img.activeItem{background: #74bde9;}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:80px;
	height:25px;
	cursor:pointer;
}

/* right */
a.right 				{ /*background-position: 0 -30px; */clear:both; margin-right: 0px;}
/*a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 
*/

/* left */
a.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(../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 */
.disabledTop { background: url(http://external.server2.52m.be/FiveToMSite/Images/Standard/Images/scrollerUp.png) no-repeat 0px -57px !important; }
.disabledBottom { background: url(http://external.server2.52m.be/FiveToMSite/Images/Standard/Images/scrollerUp.png) no-repeat -80px -57px !important;  }
	

a.prevPage{background: url(http://external.server2.52m.be/FiveToMSite/Images/Standard/Images/scrollerUp.png) no-repeat 0px 0px; width: 80px; height: 57px; display: block;}
a.prevPage:hover{background: url(http://external.server2.52m.be/FiveToMSite/Images/Standard/Images/scrollerUp.png) no-repeat 0px -57px;}
a.nextPage{background: url(http://external.server2.52m.be/FiveToMSite/Images/Standard/Images/scrollerUp.png) no-repeat -80px 0px; width: 80px; height: 57px; display: block;}
a.nextPage:hover{background: url(http://external.server2.52m.be/FiveToMSite/Images/Standard/Images/scrollerUp.png) no-repeat -80px -57px;}


#scrollerTop, #scrollerBottom{background: url(http://external.server2.52m.be/FiveToMSite/Images/Standard/Images/scrollerFade.png) no-repeat; height:35px; width:80px; position:absolute; z-index:1;}

#scrollerTop{background-position: center top; top:50px; }
#scrollerBottom{background-position: center bottom; bottom: 50px;}