/* page structure */
#wrapper {
  display: block;
  width: 1200px;
  margin: 0 auto;
}

.cs-style-2 figcaption h1 {
    font-family:arial;
	color: #fff;
	font-size:16px;
    line-height: 19px;
    margin: 0;
    padding: 0;
}
	
/* animated elements */
.animateblock {
  padding: 8px 0;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.55s linear;
  -moz-transition: all 0.55s linear;
  transition: all 0.55s linear;
}

.animateblock.animated {
  opacity: 1;
}

/* animation transition styles */
.animateblock.left {
	position:absolute;
	margin-left: 0%;
	z-index:1;
	height:362px;
}
.animateblock.left.animated {
  margin-left: 8%;
}

.animateblock.right {
	position:relative;
	width:375px;
	height:362px;
	margin-left: 50%;
	padding-top:110px;
	z-index:2;
}
.animateblock.right.animated {
  margin-left: 48%;
}