.jumbotron 
{
  position:relative;
  width: calc (100% - 2px);
  padding-top: 55.25%; /* 16:9 Aspect Ratio */
  margin-bottom: 15px;
  border:1px solid #211;
  border:1px solid #ccc;
  border-radius: 0px;
  background-color: transparent;
  background:silver;  
  overflow:hidden;
 }

.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

.jumbotron > hr {
  border-top-color: #5b121f;
}


.carousel
 {
  position: absolute;
  float:left;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border-radius:0px;
  overflow:hidden;
  margin:0;
 }
.carousel-inner
 {
  position: absolute;
  top:0;
  left:0;
  overflow: hidden;
  width: 100%;
  height:100%;
  background: transparent; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 }
 
.carousel-inner > .item
 {
  display: none;
  position: relative;
  width: calc (100% - 0px);
  height: 100%;
  -webkit-transition: 2.5s ease-in-out left;
  -o-transition: 2.5s ease-in-out left;
  transition: 2.5s ease-in-out left;
 }
 
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d)
 {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .75s ease-in-out;
    -moz-transition: -moz-transform .75s ease-in-out;
    -o-transition: -o-transform .75s ease-in-out;
    transition: transform .75s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev 
{
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control
 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10%;
  font-size: 40px;
  color: #fff;
  text-shadow: 0px 0px 2px #112;
  text-align: center;
 }
 
.carousel-control > i
 {
  opacity: 0.15;
  filter: alpha(opacity=15);
   padding:10px;
   border-radius:50%;
   border:0px dashed red;
   text-align:center;
  transition: all 0.5s;
  webkit-transition: all 0.5s;
 }
 
.carousel:hover > .carousel-control > i
 {
  opacity: 1.0;
  filter: alpha(opacity=100);
 }
 
 
.carousel-control.left
 {
 border:0px dashed orange;
 }
.carousel-control.right
 {
 border:0px dashed orange;
  left: auto;
  right: 0;
 }
.carousel-control:hover,
.carousel-control:focus
 {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
 }
 
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -0px;
  z-index: 5;
  display: inline-block;
  border:1px dotted red;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 50px;
  height: 50px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}





.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 9999915;
  width: 60%;
  margin-left: 0%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(200, 200, 200, .50);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
}







.carousel-caption
 {
  position: absolute;
  z-index: 15;
  left: 0%;
  bottom: 0%;     
  width:100%;
  height: 37.5%;    
  padding:0;
  margin:0;     
  color: #ffffff;
  text-align: left;
  border:0px;
  border-top:1px solid #a11;
  background: rgba(150,10,10, 0.5);
 }

.carousel-caption p
 {
  color:#ddd;
  text-shadow: 1px 1px 1px #112;
  line-height:1.1250;
  font-size:28px;
  font-weight: normal;
 }              
 
.carousel-caption .btn
 {
  text-shadow: none;
}

.carousel-caption DIV
 {
  position: absolute;
  top: 0%;
  left: 5%;
  width:90%;
  border:0px dotted orange;
 }


.carousel-bild
 {
  position:absolute;
  z-index:10;
  top:0; left:0;
  width:100%;
  height:100%;
 
 }

.ZommOutBild
 {
    animation-name: ZommOutBild_animation2;
    animation-duration: 10000ms;
    transform-origin:100% 100%;
    animation-iteration-count: 1;
    animation-timing-function: linear;
 }

@keyframes ZommOutBild_animation2
 {
    0% { transform: scaleY(1.1) scaleX(1.1); }
    100% { transform: scaleY(1) scaleX(1); }
 }




