/* scrollable-horizontal.css*/
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 518px;
	height:136px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(images/jquery-scrollable/arrow/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 yy, .scrollable span {
	float:left;
	margin: 5px 0px 5px 5px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:160px;
	height:120px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:1px solid #666666;
	z-index:9999;
	position:relative;
}

/* scrollable-buttons.css*/
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
#navigator a.browse {	
	display:block;
	width:18px;
	height:18px;
	float:left;
	margin: 55px 10px 50px 10px;
	cursor:pointer;
	font-size:1px;
	border:0px solid red;
}

/* right */
#navigator a.right 				{ background:url(images/jquery-scrollable/arrow/right.png) no-repeat;background-position: 0 -18px; clear:right; margin-right: 0px;}
#navigator a.right:hover 		{ background-position: 0px 0px; }
#navigator a.right:active 	{ background-position:0px -18px; } 


/* left */
#navigator a.left				{ background:url(images/jquery-scrollable/arrow/left.png) no-repeat;margin-left: 0px;background-position: 0 -18px; clear:right; margin-right: 10px; } 
#navigator a.left:hover  		{ background-position:0px 0; }
#navigator a.left:active  	{ background-position:0px -18px; }

/* up and down */
#navigator a.up, #navigator a.down		{ 
	background:url(images/jquery-scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
#navigator a.up:hover  		{ background-position:-30px 0; }
#navigator a.up:active  		{ background-position:-60px 0; }

/* down */
#navigator a.down 				{ background-position: 0 -30px; }
#navigator a.down:hover  		{ background-position:-30px -30px; }
#navigator a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
#navigator a.disabled {
	visibility:hidden !important;		
} 	



/* scrollable-navigator.css*/
/* position and dimensions of the navigator */
.navi {
	margin-left:250px;
	width:200px;
	height:20px;
	border:0px solid red;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(images/jquery-scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;	
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}


/* make A tags our floating scrollable items */ 
.items a { 
    display:block; 
    float:left;    
}  

 

/* tooltip styling */ 
#tooltip { 
    display:none; 
    background:url(images/jquery-scrollable/arrow/black_arrow_tooltip.png); 
    font-size:12px; 
    height:45px; 
    width:173px; 
    padding: 15px;
    color:#3d8d15;    
    
}
