div.scrollable, 
div.thumbgallery {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 960px;
	height:280px;

	/* custom decorations */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background: url("/img/teaser-back.jpg") no-repeat;
}


.thumbcontainer {
	margin-top:20px;
	position: relative;
}

div.thumbgallery {
	height:156px;
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items,
div.thumbgallery div.items {
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;
}

div.thumbgallery div.items {
	margin: 0;
}



/* single scrollable item just style*/
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	width: 960px;
	height:280px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	overflow:hidden;
}

/* active item */
div.scrollable div.items div.active {

}

#content .scrollable .ctabutton {
	padding: 8px 12px !important;
	font-size: 14px;
	margin: 0 0 -8px 0
}


/* teaser special classes */

#rabbitteaser {
	background: url(/img/teaser-fortrabbit.png) no-repeat right top;
}

#content .scrollable #rabbitteaser p {
	padding-right: 300px;
}

#rechnungteaser {
	background: url(/img/teaser-rechnung.png) no-repeat right top;
}

#content .scrollable #rechnungteaser p {
	padding-right: 300px;
}

#hostingteaser {
	background: url(/img/teaser-hosting.png) no-repeat right top;
}

#content .scrollable #hostingteaser p {
	padding-right: 280px;
}

#mishteaser {
	background: url(/img/teaser-mish.png) no-repeat right top;
}

#content .scrollable #mishteaser p {
	padding-right: 300px;
}






#content .scrollable #rechnungteaserdiv.scrollable, 
div.thumbgallery {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 960px;
	height:280px;

/* this makes it possible to add next button beside scrollable */
	float:left;

	/* custom decorations */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background: url("../img/teaser-back.jpg") no-repeat scroll center center;
}

div.thumbgallery {
	height:156px;
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items,
div.thumbgallery div.items {
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;
}

div.thumbgallery div.items {
	margin: 0;
}



/* single scrollable item just style*/
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	width: 960px;
	height:280px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	overflow:hidden;
}

/* active item */
div.scrollable div.items div.active {

}

#content .scrollable .ctabutton {
	padding: 8px 12px !important;
	font-size: 14px;
	margin: 0 0 -8px 0
}



/* prev, next, prevPage and nextPage buttons */

a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	position: absolute;
	width:18px;
	height:18px;
	background:url(/img/left.png) no-repeat;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/img/right.png);
	clear:right;
	overflow: hidden;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin:auto;
	width:60px;
	overflow: hidden;
	margin-bottom:2px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/img/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
	overflow: hidden;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;
} 


/* thumbnails */

.thumbgallery a {
	float:left;
	margin:16px 0 0 65px;
	font: 10px Verdana;
	color: #333;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}

.thumbgallery a:hover {
	color: #000;
}

.thumbgallery a img {
	display: block;
	border: 1px solid #666;
	-moz-box-shadow: 0px 0px 7px #666;
	-webkit-box-shadow: 0px 0px 7px #666;
}

.thumbgallery a:hover img {
	border: 1px solid #333;
	-moz-box-shadow: 0px 0px 10px #333;
	-webkit-box-shadow: 0px 0px 10px #333;
}

