/*
#	Srollable navigator
#	--------------------

#	@file 		scrollable-navig.css
#	@version 	1.0.0b
#	@date 		2009-07-31 11:37:51 +0200 (Fri, 31 Jul 2009)
#	@author 	Aleksandar Markovic <mikikg@gmail.com>

#	Copyright (c) 2009 Netsector <http://www.netsector.biz>
*/

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
}

/******************** scroller 1 *********************/
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:48px;
	height:48px;
	background:url(../img/aleft.png) no-repeat;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -48px;
}

/* disabled navigational button */
a.disabled {
	/* visibility:hidden !important;		*/
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../img/aright.png);
	clear:right;
}


/******************** scroller 2 (small) *********************/
/* prev, next, prevPage and nextPage buttons */
a.browse2 {
	background:url(../img/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	/* margin:40px 10px; */
	margin:38px 5px 0 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right2 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right2:hover 		{ background-position:-30px -30px; }
a.right2:active 	{ background-position:-60px -30px; }


/* left */
a.left2				{ margin-left: 0px; }
a.left2:hover  		{ background-position:-30px 0; }
a.left2:active  	{ background-position:-60px 0; }

/* disabled navigational button */
a.disabled2 {
	/* visibility:hidden !important;*/
}


/*********** navigator ***********/
/* position and dimensions of the navigator */
div.navi {
	margin-left:0px;
	width:600px;
	height:48px;
	float:left;
	margin-left:4px;
	margin-right:4px;
}

/* items inside navigator */
div.navi a {
	width:16px;
	height:16px;
	float:left;
	margin:0px;
	background:url(../img/navigator1.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -16px;
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -32px;
}

/*************** SCROLLER ************/
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 710px;
	height:540px;
	padding-bottom:5px;
}

div.scrollable_small {
	height:85px;
	width:630px;
	padding-bottom:20px;
	padding-top:8px;
}
div.items_small {
	width:720px;
}


/* single scrollable item */
div.scrollable div.items div.item_page {
	float:left;
	text-align:left;
	width:720px;
	padding:3px 0px;
	margin-right: 8px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;

	/* decoration */
	margin-left:0px;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;
	background-color:#fff;
}

