/* container for slides */
.images {
	position:relative;
	width: 100%;
	height: 420px;
	cursor:pointer;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;
	width: 100%;
	height: 420px;
	z-index:10;
	/*margin:7px;
	padding:15px 30px 15px 15px;
	height:256px;
	font-size:12px;*/
}
.slideshowTitle {
	margin: 0px;
	padding: 0px;
	color: #00A1D2;
	font-size: 18px;
	font-weight: normal;
	line-height: 24px;
}
.slideshowText {
	position:absolute;
	width: 500px;
	padding: 20px;
	top:300px;
	right: 10px;
	background-color: #2b518f;
	opacity: 0.8;
	filter: alpha(opacity=80);
	font-family: 'thesans-b3-light.ttf', 'Oxygen', sans-serif;
	font-weight: bold;
	color: #ffffff;
	font-size: 24px;
	line-height: 36px;
	text-align:center;
	z-index:80;
}
.slideshowButton {
	position:absolute;
	width: 75px;
	height: 30px;
	top:320px;
	left:236px;
	line-height: 30px;
	color: #fff;
	padding-left: 15px;
	text-align: left;
	font-size: 14px;
	background: url(../../images/button_slideshow.jpg) 0 0 no-repeat;
	z-index: 85;
	text-decoration:none;
}

/* header */
.images h3 {
	font-size:22px;
	font-weight:normal;
	margin:0 0 20px 0;
	color:#456;
}

/* tabs (those little circles below slides) */
/* tabs (those little circles below slides) */
.slidetabs {
	position:absolute;
	/*width wird direkt angegeben*/
	height: 20px;
	line-height: 20px;
	background-color: transparent;
	z-index: 85;
	top:660px;
	/*left wird direkt angegeben*/
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.slidetabs a:hover {
	background-position:0 -8px;
}

/* active state (current page state) */
.slidetabs a.current {
	background-position:0 -16px;
}



/* prev and next buttons */
/*.backward {
	margin-top:-40px;
	margin-left: 0px;
	display:block;
	width:40px;
	height:40px;
	cursor:pointer;
	position: absolute;
	background-color: #333333;
	opacity: 0.7;
	filter: alpha(opacity=70);
	z-index:60;
}
.forward {
	margin-top:-40px;
	margin-left: 780px;
	display:block;
	width:40px;
	height:40px;
	cursor:pointer;
	position: absolute;
	background-color: #333333;
	opacity: 0.7;
	filter: alpha(opacity=70);
	z-index:60;
}*/

/* next */

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;
}


