@charset "UTF-8";

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300);
.gallery:nth-of-type(2) {
  height: 700px;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
/*
body {
	 [disabled]background-color: #f4f4f4; 
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
}
*/

h1 {
  font-weight: 300;
  text-align: center;
  margin-bottom: 1em;
}

p {
  margin-bottom: 1em;
}


.gallery {
	position: relative;
	width: 700px;
	height: 394px;
	overflow: hidden;
	margin-left: 250px;
}
.gallery img {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
	/* [disabled]width: 700; */
	/* [disabled]height: 394; */
}
.gallery img.active, .gallery img:first-of-type {
  opacity: 1;
}
.gallery .gallery-buttons {
  position: absolute;
  height: 20px;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.gallery .gallery-buttons .gallery-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.gallery .gallery-buttons .gallery-btn + .gallery-btn {
  margin-left: 10px;
}
.gallery .gallery-buttons .gallery-btn:hover, .gallery .gallery-buttons .gallery-btn.active {
  background-color: #3498db;
}
.gallery .gallery-buttons .gallery-btn.active {
  cursor: default;
}
.gallery + .gallery {
  margin-top: 20px;
}
.galleryContainer {
	height: auto;
	width: auto;
	text-align:center
}
