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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 850px;
	height:179px;

	/* custom decorations */
	
}

/*
	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 img {
	cursor:pointer;
}

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

#red{
	height:179px;
	width:267px;
	float:left;
	margin:0px 10px 0 10px;
	
}
#optionSlider{
	margin:0 0 0 10px;
}

/********************************************************
SCROLLABLE BUTTONS
********************************************************/


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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:50px 0 0 0;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background:url(../images/optionArrows.png) no-repeat -40px 5px; margin:50px 0 0 10px;}
a.right:hover 		{ background-position:-40px -35px; }
a.right:active 	{ background-position:-40px 5px; } 


/* left */
a.left				{ background:url(../images/optionArrows.png) no-repeat 10px 5px; } 
a.left:hover  		{ background-position:10px -35px; }
a.left:active  	{ background-position:10px 5px; }




/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


