.container-wrapper {
  position: relative;
  width: 100%;
  height: 600px
}

.carousel-wrapper {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.container-wrapper .container {
  z-index: 2
}

.carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  *height: 600px;
  overflow: hidden
}

.carousel-inner {
  position: absolute;
  top: 0;
  min-width: 100%;
  height: 100%
}

.carousel-item {
  display: block;
  float: left;
  height: 100%;
  text-align: center
}

.carousel-item .container {
  height: 100%
}

.carousel-indicators {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 30px;
  left: 0;
  height: 5px;
  font-size: 0;
  text-align: center
}

.carousel-indicators li {
  display: inline-block;
  width: 20px;
  height: 5px;
  margin: 0 5px;
  background-color: #CCCCCC;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  opacity: .6;
  filter: alpha(opacity=60);
  cursor: pointer;
  -webkit-transition: all linear .3s;
  transition: all linear .3s
}

.carousel-indicators li.active,
.carousel-indicators li:hover {
  width: 50px;
  background-color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100)
}

.carousel-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  background-color: #FFFFFF;
  opacity: .5;
  filter: alpha(opacity=50)
}