/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 890px;
	height:300px;
	/* custom decorations */
	border:0px solid #ccc;
}

/*
	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;
	overflow:hidden;
	list-style:none;
	padding:0;
	margin:0;
	height:300px;
}
.scrollable .items li{
	float:left;
	margin:0px;
	width: 930px;
	height:300px;
	vertical-align: middle;
}
.scrollable .items li .inside{
	width: 930px;
	height:354px;
	vertical-align: middle;
	display: table-cell;	
}
/* single scrollable item */
.scrollable img {
	float:none;
	clear:both;
	margin:0px auto;
	background-color:#fff;
	padding:0px;
	border:0px solid #ccc;
	z-index:0;
/* leaving native dimentions of images	
	width: 885px;
	height:300px;
*/
}
/* for text in description */
.scrollable .descr {
	text-align: left;
	position: absolute;
	padding: 0px;
	margin:0 0 0 690px;
	top: 0px;
	z-index:9;
	float: left;
	background:url(images/bg_carousle_descr.png) repeat 0 0;
	height:100%;
	width:200px;
	vertical-align: middle;
	display: table;
}
.scrollable .descr h1 {
	font-size: 120%;
	color: #fff;
	text-transform:none;
	margin: 10px 0;
}
.scrollable .descr p {
	text-align: right;
	width:100%;
	margin-bottom:0;
}
/* next two blocks are for IE and aligning vertically in the middle */
.scrollable .descr .container{
	padding:0;
	margin:0;
	width:100%;
	height:auto;
	vertical-align: top;
	display: table-cell;
	padding:20px 5px 5px;
}
.scrollable .descr .inner{
	width:200px;
	vertical-align: middle;
	display: table-cell;
	margin:0;
	padding:0;
	text-decoration:none !important;
}

.scrollable input{
	background-color:#CAFF30;
	color:#000;
	border:1px solid #CAFF30;
	cursor: pointer;
	clear:both;
	margin: 25px 0px;
	margin: 15px 0 0;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(img/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:136px 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 5px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 5px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(img/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
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;		
} 	

/* position and dimensions of the navigator */
.navi {
	padding:10px 0 0;
	margin:0 auto;
	width:200px;
	height:20px;
	clear:both;
}


/* items inside navigator */
.navi a {
	width:17px;
	height:11px;
	/*float:left;*/
	margin:3px;
	background:url(img/navigator_blocks.png) 0 0 no-repeat;
	display:inline-block;
	font-size:1px;
	cursor:pointer;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -11px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -22px;     
}




