﻿/* root element for the whole scrollable setup */
div.scrollable
{
	position:relative;
	overflow:hidden;
	width: 265px;
	height: 300px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs
{
	/*sposition: absolute;*/
	position:relative;
	width: 2000em;
	clear: both;
}


/* single item */
#thumbs div
{
	float: left;
	width: 265px;
	cursor: pointer;
}


/* --------------------------------------------------------------------------------------------- */

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next
{   
	display: block;
	width: 18px;
	height: 18px;
	float: left;
	margin: 20px 20px;
	cursor: pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover
{
	background-position: 0px -18px;
}

/* disabled navigational button */
a.disabled
{
	visibility: hidden !important;
}

/* next button uses another background image */
a.next
{
	background-image: url(images/right.png);
}

/* next button uses another background image */
a.prev
{
    margin-left:100px;
    _margin-left:50px; /* IE6 */
	background: url(images/left.png) no-repeat;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi
{
    border:solid 1px black;
	width:200px;
	height: 20px;
	
	text-align:center;
		margin-left: auto; 
    margin-right: auto
}


/* items inside navigator */
div.navi a
{
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	background: url(images/navigator.png);
	background-repeat: no-repeat;
	cursor: pointer;
}

/* mouseover state */
div.navi a:hover
{
	background-position: 0 -8px;
}

/* active state (current page state) */
div.navi a.active
{
	background-position: 0 -16px;
}

