﻿/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background: url(http://colorprintfitas.com.br/media/imagens/setas.png)   no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:6px 0;
	margin-left:73px;
	cursor:pointer;
	font-size:1px;
}
a.up, a.down{ 
	float: none;
	margin: 6px 70px 0;
}

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 {

	position:relative;
	overflow:hidden;
	width: 146px;
	height:640px;
	border:1px solid #ccc;
	background:url(http://colorprintfitas.com.br/media/imagens/gradiente.png)   repeat-x;
}


.scrollable .items {
	position:absolute;
	clear:both;
}


/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
a.jqzoom{
	display: block;
	width:100px;
	float: left;
	margin: 10px;
}

.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	
	height: 338px;	
	width:172px;
	border-top:1px solid #ddd;	
}
/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	clear: both;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;

}


/* the action buttons above the scrollable */
#actions {
	width:700px;
	margin:30px 0 10px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	


