.demo-container {
  position: relative;
  width: 756px;
  margin: auto;
  margin-top: 40px;
  text-align: left;
  padding-bottom: 100px;
}

.demo-left {
  float: left;
  width: 300px;
  margin-right: 50px;
  position: relative;
  height: 300px;
}

.demo-carousel-container {
  text-align: center;
}
.demo-image-container {
  position: relative;
  width: 300px;
  height: 225px;
}
.demo-image-container > img {
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  width: 300px;
  height: 225px;
  box-shadow: 3px 3px 6px 3px rgba(0,0,0,0.3);
  opacity: 0;
  -webkit-transition: opacity 1000ms;
  -moz-transition: opacity 1000ms;
  -ms-transition: opacity 1000ms;
  -o-transition: opacity 1000ms;
  transition: opacity 1000ms;
}

.demo-image-container > img.selected {
  opacity: 1;
}

.demo-carousel-nav {
  font-size: 0;
  text-align: center;
  margin-top: 30px;
}
.demo-carousel-dot {
  border-radius: 10px;
  width: 10px;
  height: 10px;
  display: inline-block;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  cursor: hand;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-transition: background 200ms;
  -moz-transition: background 200ms;
  -ms-transition: background 200ms;
  -o-transition: background 200ms;
  transition: background 200ms;
}

.demo-carousel-dot:hover,
.demo-carousel-dot.selected {
  background: rgba(255,255,255,0.9);
}

.demo-right {
  overflow: hidden;
  line-height: 1.6em;
  font-size: 19px;
  height: 350px;
}

.demo-button, .front-demo-button {
  background: #f1a700;
  border: 2px solid #f0b300;
  margin: auto;
  margin-top: 30px;
  height: 60px;
  border-radius: 5px;
  text-align: center;
  line-height: 60px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;

  box-shadow: 1px 1px 4px rgba(40,40, 40,1);
  -webkit-box-shadow: 1px 1px 4px rgba(40,40, 40,1);
  -moz-box-shadow: 1px 1px 4px rgba(40,40, 40,1);
  -o-box-shadow: 1px 1px 4px rgba(40,40, 40,1);
  -ms-box-shadow: 1px 1px 4px rgba(40,40, 40,1);

  -webkit-transition: background 200ms;
  -moz-transition: background 200ms;
  -ms-transition: background 200ms;
  -o-transition: background 200ms;
  transition: background 200ms;
}

.demo-button {
  width: 240px;
}

.front-demo-button {
  width: 150px;
  margin-left: 7px;
  margin-right: 7px;
  display: inline-block;
  margin-top: 11px;
}

.front-demo-button:hover {
  background: #f0b300;
}
