/* Slider
--------------------------------------------------------------------------------------- */
.fotofenster {
  width: 665px;
	height: 480px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
#bilder {
	position: absolute;
	top: 0; left: 0;
}
#bilder img {
  float: left;
}

.thumbsframe {
  width: 940px;
	height: 118px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.thumbs {
	position: absolute;
	top: 0; left: 0;
}
.thumbs img {
  margin: 0px;
  padding: 10px 10px 10px 10px;
}
.thumbs a {
  margin: 0px 5px 0px 5px;
  padding: 0px;
  border: 1px solid #CCCCCC;
  float: left;
  background-color: #E6E6E6;
}
.thumbs a.active {
  border: 1px solid #9D030A;
}
.thumbs a:hover {
  border: 1px solid #9D030A;
}


/*-- Slider control and paging styles
--------------------------------------------------------------------------------------- */
.slider_control_hold {
  display: block;
  position: absolute;
	bottom: 50%; right: 10px;
	width: 50px;
  height: 50px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
  line-height: 45px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.slider_control_play {
  display: block;
  position: absolute;
	bottom: 50%; right: 10px;
	width: 50px;
  height: 50px;
	z-index: 200; /*--Assures the paging stays on the top layer--*/
	text-align: center;
  line-height: 45px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.slider_paging {
  display: block;
  position: absolute;
	bottom: 5px; right: 5px;
	width: 180px;
  height: 40px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
  line-height: 40px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.slider_paging a {
  border: 1px solid #E41819;
  padding: 5px;
  background-color: #9D030A;
	text-decoration: none;
	color: #FFF;
}
.slider_paging a.active, .slider_paging a:hover {
  border: 1px solid #FFF;
}
