
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable-1,.scrollable-2 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:525px;
	height:200px;

	/* custom decorations */
	/* border:1px solid #ccc; */
	/* background:url("../scrollable/images/bg-scroll.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-1 .items-1,.scrollable-2 .items-2 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable-1 img,.scrollable-2 img ,.scrollable-1 span,.scrollable-2 span {
	float:left;
	margin:18px 16px 15px 0;
	background-color:#FFF;
	padding:1px;
	border:1px solid #CCC;
	cursor:pointer;
	width:250px;
	height:157px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable-1 .active,.scrollable-2 .active {
	border:1px solid #000;
	z-index:9999;
	position:relative;
}

.scrollable-1 img.hover,.scrollable-2 img.hover {
	background-color:#FFCC66;	
}

/* this makes it possible to add next button beside scrollable */
.scrollable-1,.scrollable-2 {
	float:left;	
}


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url("../images/hori_large.png") no-repeat;
	display:block;
	width:15px;
	height:15px;
	float:left;
	margin:90px 5px;
	cursor:pointer;
	font-size:1px;
}
a.empty {
	background:url("../images/empty.png") no-repeat;
	display:block;
	width:15px;
	height:15px;
	float:left;
	margin:90px 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right { background-position: 0 -15px; clear:right; margin-right: 0px;}
a.right:hover { background-position:-15px -15px; }
a.right:active { background-position:-30px -15px; } 


/* left */
a.left { margin-left: 7px; } 
a.left:hover { background-position:-15px 0; }
a.left:active { background-position:-30px 0; }

/* up and down */
a.up, a.down { 
	background:url("../scrollable/images/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;		
}


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable-3,.scrollable-4 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:150px;
	height:150px;

	/* custom decorations */
	/* border:1px solid #ccc; */
	/* background:url("../scrollable/images/bg-scroll.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-3 .items-3,.scrollable-4 .items-4 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
/*.scrollable-3 img,.scrollable-4 img {
	float:left;
	margin:18px 59px 15px 8px;
	background-color:#FFF;
	padding:1px;
	border:1px solid #CCC;
	cursor:pointer;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}*/

/* active item */
.scrollable-3 .active,.scrollable-4 .active {
	border:1px solid #000;
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable-3,.scrollable-4 {
	float:left;	
}

/*
	root element for the t-scrollable.
	when scrolling occurs this element stays still.
*/
.t-scrollable-1,.t-scrollable-2 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:525px;
	height:200px;

	/* custom decorations */
	/* border:1px solid #ccc; */
	/* background:url("../t-scrollable/images/bg-scroll.png") repeat-x; */
}

/*
	root element for t-scrollable t-items. Must be absolutely positioned
	and it should have a extremely large width to accomodate t-scrollable t-items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.t-scrollable-1 .t-items-1,.t-scrollable-2 .t-items-2 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single t-scrollable item */
.t-scrollable-1 img,.t-scrollable-2 img ,.t-scrollable-1 span,.t-scrollable-2 span {
	float:left;
	/*margin:18px 16px 15px 0;*/
	margin:18px  16px 15px 0;
	background-color:#FFF;
	padding:1px;
	border:1px solid #CCC;
	cursor:pointer;
	width:210px;
	height:157px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.t-scrollable-1 .active,.t-scrollable-2 .active {
	border:1px solid #000;
	z-index:9999;
	position:relative;
}

.t-scrollable-1 img.hover,.t-scrollable-2 img.hover {
	background-color:#FFCC66;	
}

/* this makes it possible to add next button beside t-scrollable */
.t-scrollable-1,.t-scrollable-2 {
	float:left;	

}


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url("../images/hori_large.png") no-repeat;
	display:block;
	width:15px;
	height:15px;
	float:left;
	/*margin:90px 5px;*/
	margin:90px 5px;
	cursor:pointer;
	font-size:1px;
}
a.empty {
	background:url("../images/empty.png") no-repeat;
	display:block;
	width:15px;
	height:15px;
	float:left;
	margin:90px 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right { background-position: 0 -15px; clear:right; margin-right: 0px;}
a.right:hover { background-position:-15px -15px; }
a.right:active { background-position:-30px -15px; } 


/* left  */
a.left { margin-left: 7px; }
a.left:hover { background-position:-15px 0; }
a.left:active { background-position:-30px 0; }

/* up and down */
a.up, a.down { 
	background:url("../t-scrollable/images/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;		
}


/*
	root element for the t-scrollable.
	when scrolling occurs this element stays still.
*/
.t-scrollable-3,.t-scrollable-4 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:150px;
	height:150px;

	/* custom decorations */
	/* border:1px solid #ccc; */
	/* background:url("../t-scrollable/images/bg-scroll.png") repeat-x; */
}

/*
	root element for t-scrollable t-items. Must be absolutely positioned
	and it should have a extremely large width to accomodate t-scrollable t-items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.t-scrollable-3 .t-items-3,.t-scrollable-4 .t-items-4 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single t-scrollable item */
/*.t-scrollable-3 img,.t-scrollable-4 img {
	float:left;
	margin:18px 59px 15px 8px;
	background-color:#FFF;
	padding:1px;
	border:1px solid #CCC;
	cursor:pointer;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}*/

/* active item */
.t-scrollable-3 .active,.t-scrollable-4 .active {
	border:1px solid #000;
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside t-scrollable */
.t-scrollable-3,.t-scrollable-4 {
	float:left;	
}
