/* CSS Document */

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/img/images2/bannerAL.png) 0 0 no-repeat;
	display:block;
	width:21px;
	height:33px;
	margin:-6px 0 0 0;
	float:left;
	cursor:pointer;
	font-size:1px;	
}

/* right */
a.right 				{ background:url(/img/images2/bannerAR.png) no-repeat; clear:right; margin-right:0px;
	position:absolute; right:10px; bottom:70px; z-index:999;}
a.right:hover 		{ background-position:0 0; }



/* left */
a.left				{ margin-left: 0px;
	position:absolute; left:10px;bottom:70px; z-index:999;} 
a.left:hover  		{ background-position:0 0; }
a.left:active  	{ background-position:0px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:676px;
	height:354px;
	padding:0px 0 0 0;
	/*background-color:#eeeeee;*/
}

/*
	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;
}

.itemsList {
	float:left;
	width:676px;
	position:relative;
}

/* single scrollable item */
.scrollable img {
	float:left;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
	
.navi{
	margin:0; padding:0; position:absolute; left:0px; width:676px; bottom:5px; z-index:999; text-align:center;
	}
.navi a{
	margin:0 0px 0 2px; background:url(/img/images2/banNor.png); background-repeat:no-repeat; width:14px; height:14px; text-decoration:none; display:inline-block;
	}
.navi a:hover{
	background:url(/img/images2/banSel.png); background-repeat:no-repeat;
	}
.navi a.active{
	background:url(/img/images2/banSel.png); background-repeat:no-repeat;
	}