﻿.sliderelement
{
	width:500px;
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 800px;
	height:190px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(/images/slider/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;
}

/* single scrollable item */
.scrollable .sliderelement
{
	float:left;
	padding:10px;
	cursor:pointer;
	width:178px;
	height:145px;
	border: solid 1px transparent;
	text-align:center;
}

.scrollable .sliderelement .imagearea
{
	background-color:#fff;
	padding:5px;
	border:1px solid #ccc;
	cursor:pointer;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	height:120px;
}
.scrollable .sliderelement .linkarea
{
}
.scrollable .sliderelement .linkarea
{
	color:#FF6600;
	font-family:Arial;
	font-size:11px;
	text-decoration: none;
}
.scrollable .sliderelement .imagearea img
{
}



/* 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 */
.prevPage
{
	margin-left:10px;
}
a.browse {
	/*	background:url(hori_large.png) no-repeat;*/
	background:url(/images/slider/h190_buttons.png) repeat-x;
	border:1px solid #ccc;
	display:block;
	width:30px;
	height:190px;
	float:left;
	cursor:pointer;
	font-size:1px;
}



/* right */
a.right 				{ background-position: -30px 0px; clear:right; margin-right: 0px; border-width:1px 1px 1px 0px;}
a.right:hover 		{ }
a.right:active 	{ } 


/* left */
a.left				{ margin-left: 0px; border-width:1px 0px 1px 1px;} 
a.left:hover  		{ }
a.left:active  		{ }



/* disabled navigational button */
a.disabled.left{
	 background-position:0px -100px; 
} 	

a.disabled.right{
	 background-position:-30px -100px; 
} 	





