/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 965px;
	height:423px;

	/* custom decorations */
	border:0px solid #ccc;
	background:url(/img/global/gradient/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;
}

.items div {
	float:left;
	width:787px;
    	padding-left:7px;
    padding-right:7px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 84px 0px 84px;
	background-color:#fff;

	border:0px solid #ccc;
	width:787px;
	height:423px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
}



/*
	root element for the scrollable of hitech-scroller.
	when scrolling occurs this element stays still.
*/
.scrollable_2 {

	/* required settings */
	position:relative;
	overflow:hidden;
    margin-left: 10px;
    margin-top: 10px;
	width: 944px;
	height:135px;

	/* custom decorations */
	border:0px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
}

.scrollable_2 .items_2 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items_2 div {
	float:left;
	width:944px;
    	padding-left:4px;
    padding-right:4px;
}

/* single scrollable item */
.scrollable_2 img {
	float:left;
	margin:0px 4px 0px 4px;
	background-color:#fff;

	border:0px solid #ccc;
	width:304px;
	height:135px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable_2 .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
}




/*
	NAVIGATOR
*/

 /* position and dimensions of the navigator */
.navi {

}
.clix_banner_navi {
	position: absolute;
	margin-left:670px;
	margin-top:0px;
	display:block;
	width:304px;
	height:20px;
	z-index: 9990;
	line-height: 21px;
	text-indent:20px;
	background-image: url(../img/scrollable/arrow/nav_bg_2.png);
	background-repeat: repeat-x;
	background-position: 0 0;
}



/* items inside navigator */
.navi a {
	width:40px;
	height:19px;
	float:left;
	margin-left:10px;
    margin-right:-18px;
	font-size:11px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-image: url(../img/scrollable/arrow/nav_item_bg.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
    text-indent:16px;
	text-decoration: none;
}

/* mouseover state */
.navi a:hover {
	background-position:0px -19px;
}

/* active state (current page state) */
.navi a.active {
	background-position:0px -19px;
}

/*

BUTTONS

 */
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;
}

.scrollable_2 {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../img/scrollable/arrow/hori_large_banner.png) no-repeat;
	display:block;
	width:37px;
	height:29px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

.clix_banner_buttons_left {
  position: absolute;
	margin-left:-5px;
    margin-top:140px;
	z-index: 99999;
}

.clix_banner_buttons_right {
  position: absolute;
	margin-left:930px;
    margin-top:140px;
	z-index: 99999;
}




/* right */
a.right 				{ background-position: -37px 0px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-37px -29px; }
a.right:active 	{ background-position:-37px -58px; }


/* left */
a.left				{ margin-left: 0px; }
a.left:hover  		{ background-position:0px -29px; }
a.left:active  	{ background-position:-0px -58px; }


a.browse_2 {
	background:url(../img/scrollable/arrow/hori_large_scroller.png) no-repeat;
	display:block;
	width:25px;
	height:25px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}



.clix_scroller_buttons_left {
  position: absolute;
	margin-left:-3px;
    margin-top:20px;
	z-index: 99999;
}

.clix_scroller_buttons_right {
  position: absolute;
	margin-left:930px;
    margin-top:20px;
	z-index: 99999;
}


/* right */
a.right_2 				{ background-position: -25px 0px; clear:right; margin-right: 0px;}
a.right_2:hover 		{ background-position:-25px -25px; }
a.right_2:active 	{ background-position:-25px -50px; }


/* left */
a.left_2				{ margin-left: 0px; }
a.left_2:hover  		{ background-position:0px -25px; }
a.left_2:active  	{ background-position:0px -50px; }



/* up and down */
a.up, a.down		{
	background:url(../img/scrollable/arrow/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;
}
