/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 940px;
	height:185px;

}

/*
	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 .strip {
	float:left;
	width:940px;
}

/* single scrollable item */
.scrollable .prop{
	float:left;
	margin:0 7px 0px;
	width:174px;
	height:185px;
	display: inline-block;
	font-size: 1.1em;
}

.scrollable img {
	width:174px;
	height:120px;
	border: 1px solid #ccc;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(images/scroll/hori_large.png) no-repeat;
	display:block;
	width:20px;
	height:20px;
	float:left;
	margin:0 3px;
	cursor:pointer;
	font-size:1px;
	float: left;
	text-indent: -9999px;
}

/* right */
a.right 				{ background-position: 0 -20px;}
a.right:hover 		{ background-position:-20px -20px; }
a.right:active 	{ background-position:-40px -20px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-20px 0; }
a.left:active  	{ background-position:-40px 0; }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	





/* position and dimensions of the navigator */
.navi {
	margin:auto;
	width:100px;
	height:20px;
	overflow: visible;
}


/* items inside navigator */
.navi a {
	width:9px;
	height:9px;
	float:left;
	margin:3px;
	background:url(images/scroll/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -9px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -18px;     
}

#scrollnav {
	clear: both;
	padding: 15px 0;
}

#scrollnav .viewall {
	float: left;
	display: inline-block;
}
#scrollnav .arrownavi {
	float: right;
	display: inline-block;
}
