/**
 * slideShow
 */
DIV.slideShow {
	position:relative;
	margin:2em 0 0 0;
	width:525px;
}
DIV.slideContent {
	position:relative;
	height:170px;
	width:525px;
	background:#f3f3f3;
}
DIV.slideShow DIV.slide {
	position:absolute;
	height:170px;
	width:525px;
	visibility:hidden;
}
DIV.slideShow DIV.selected {
	visibility:visible;
}
DIV.slideShow UL.headNavi {
	position:static;
	height:1.7em;
	border-bottom:1px solid #cdcdcd;
}
DIV.slideShow UL.headNavi LI.firstItem A {
	padding-left:0;	
}
DIV.slideShow UL.withLabel {
	position:absolute;
	right:0;
	border-bottom:0;
}
/**
 * scrollShow
 */
DIV.scrollContent {
	position:absolute;
	left:30px;
	width:470px;
	height:170px;
	overflow:hidden;
}
DIV.scrollWrapper {
	position:absolute;
	left:0;
	top:0;
}
A.handleLeft,
A.handleRight {
	position:absolute;
	width:30px;
	height:170px;
	display:none; /* wird per js eingeblendet */
	overflow:hidden;
	color:#f3f3f3;
}
A.handleLeft {
	background:#f3f3f3 url(../img/layout/scroller-handle-left.gif) no-repeat center left;
}
A.handleLeft:hover {
	color:#f3f3f3;
	background-position:center right;
}
A.handleRight {
	background:#f3f3f3 url(../img/layout/scroller-handle-right.gif) no-repeat right center;
	right:0;
}
A.handleRight:hover {
	color:#f3f3f3;
	background-position:center left;
}
DIV.scrollContent TABLE {
	width:470px;
	height:170px;
	float:left;
	background:#f3f3f3;
}
DIV.scrollContent TABLE TD {
	text-align:center;
}
DIV.scrollContent IMG {
	display:inline;
}
/**
 * Tooltips
 */
DIV.tooltip {
	position:absolute;
	display:none;
	font-size:0.9em;
	line-height:1.3em;
	z-index:100;
}
P.tooltipLogo {
	padding:7px 0 0 0;
	text-align:center;
}
P.tooltipLogo IMG {
	display:inline;
	width:23px;
	height:14px;
}
/* Tooltips innerhalb scrollShows*/
DIV.scrollShow DIV.tooltip {
	height:150px;
	width:200px;
	overflow:hidden;
}
DIV.scrollShow DIV.tooltip DIV.wrapper {
	position:absolute;
	top:0;
	width:170px;
	display:block;
	color:#fff;
}
DIV.scrollShow DIV.tooltipRight DIV.wrapper {
	background:url(../img/layout/tooltip_bg_scroll_right.png) no-repeat left center;
	padding:5px 7px 5px 25px;
}
DIV.scrollShow DIV.tooltipLeft DIV.wrapper {
	background:url(../img/layout/tooltip_bg_scroll_left.png) no-repeat right center;
	padding:5px 25px 5px 7px;
}