/*/////////////// Carousel ///////////////*/

.tile-carousel {
  background-color: #ebe7dc;
  height: 300px;
  margin-top: 50px;
  overflow: hidden;
  padding: 30px;
}

.carousel-inner {
  position: relative;
}

.tile-viewport {
  border: 30px solid #ebe7dc;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.carousel-inner .tile {
  background-color: #fff;
  border-top: 4px solid #0073CF;
  float: left;
  margin-right: 15px;
  min-height: 225px;
  padding-bottom: 15px;
}

.carousel-inner .tile img {
  height: auto;
}

.carousel-inner .tile h1 {
  color: #4D4D4D;
  font-family: "connectionslight";
  font-size: 1.6em;
  font-weight: bold;
  padding: 8px 15px 8px 15px;
}

.carousel-inner .tile p {
  color: #666;
  display: block;
  font-size: 1.1em;
  font-weight: normal;
  padding: 8px 15px 8px 15px;
}

.carousel-inner .tile a {
  color: #0073CF;
  padding: 8px 15px;
}

.carousel-inner .tile a:hover {
  color: #0052C2;
}

.carousel-inner .tile:last-child {
  margin-right: 0;
}

.tile-carousel-arrow-left {
  background-color: #ebe7dc;
  cursor: pointer;
  height: 300px;
  left: -30px;
  position: absolute;
  text-align: center;
  top: -30px;
  width: 30px;
  z-index: 1;
}

.tile-carousel-arrow-right {
  background-color: #ebe7dc;
  cursor: pointer;
  height: 300px;
  position: absolute;
  right: -30px;
  text-align: center;
  top: -30px;
  width: 30px;
  z-index: 1;
}

.tile-carousel-arrow-right img,
.tile-carousel-arrow-left img {
  position: relative;
  top: 50%;
}

.carousel-dots-container {
  background-color: #ebe7dc;
  bottom: -30px;
  display: inline;
  height: 27px;
  padding-top: 3px;
  position: absolute;
  width: auto;
}

.carousel-dots-container a {
  margin-right: 5px;
}

.carousel-dots-container a:last-child {
  margin-right: 0
}

.carousel-dots-container a svg circle:hover {
  fill: #0052C2;
}

img.carousel-icon-image {
  display: block;
  height: auto;
  margin: 15px 33% 15px 33%;
  text-align: center;
  width: 33%;
}

img.carousel-fullwidth-image {
  display: block;
  height: auto;
  margin: 0 0 15px 0;
  text-align: center;
  width: 100%;
}


/* end carousel */
