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


.teaser1 {
	float:left;
	}
	
	

.scrollable_featured {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 638px;
	height:376px;
	margin:0px;
	padding:0px;
	float:left;
	/* custom decorations 
   border:0px solid #ccc;*/
		/*background:url(../images/tomgarten/featuredp/h300.png) repeat-x;
	background-color: Aqua;*/
}

/*
	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_featured .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}




/* single scrollable item */
.scrollable_featured .featured_item {
	float:left;
	margin:0px 0px 0px 0px;
	
	/*background-color:#fff;*/
	padding: 0;
	border:0;
	cursor:pointer;
	width:638px;
	height:376px;
/*	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
*/	
}

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

/* this makes it possible to add next button beside scrollable */


/* prev, next, prevPage and nextPage buttons */
a.browse#featured {
	background:url(../images/tomgarten/featuredp/hori_large.gif) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

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


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



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


