/* adapted from: http://bootsnipp.com/snippets/6n3Wr */
.carousel {
  margin-bottom: 20px;
	border-top: 3px solid #1ba1e2;
	border-bottom: 3px solid #1ba1e2;
}
.carousel-control.left {
  background: none;
}
.carousel-control.right {
  background: none;
}
.carousel-control {
  position: absolute;
  top: 90%;
  bottom: 0;
  left: 0;
  width: 5%;
  color: #fff;
  text-align: center;
  opacity: 1;
  /*text-shadow: none;*/
}
.carousel-control:hover {
  color: #1ba1e2;
}
.carousel-indicators {
  bottom: 0px;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000\9;
  background-color: rgba(0,0,0,0);
  /*border: 1px solid #16a085;*/
  border: 1px solid #ffffff;
  border-radius: 50%;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #16a085;
}
.carousel-caption {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 600px;
  z-index: 10;
  text-align: left;
  padding-left: 40px;
  padding-right: 60px;
  color: #003399;
  /*background: rgba(0,0,0,0.2);*/
  text-shadow: none;
  /*text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);*/
}
.carousel-caption h3 {
  color: #003399;
  font-weight: bold;
}
.carousel-caption p {
  color: #003399;
  /*font-size: 110%;*/
}
.carousel-caption a {
  color: #ff0000;
  /*font-size: 110%;*/
}
