body {
	margin: auto;
	background: url(bg.png);
}

.header {
	width: 100%;
	height: auto;
	top: 0px;
	text-align: center;
	background-color: #fff;
}

.headerContent {
	width: 1024px;
	height: auto;
	margin: 0px auto;
}

.headerContent img {
	width: 150px;
	height: 150px;
	margin: 0px auto;
	display: block;
}

.nav {
	height:40px;
	background: #daf2f9;
}

.nav ul {
	margin: 0;
	padding: 0;
}

.nav ul li {
	list-style: none;
	text-align: center;
}

.nav ul li a {
	text-decoration: none;
	font-family: Impact;
	font-size: 20px;
	float: left;
	display: block;
	padding: 10px 95px;
	color: black;
}

.nav ul li a:hover {
	color: white;
}

.headerBreak {
	width: 100%;
	height: 0px;
	border-bottom: 2px solid #cde9f4;
}

/***SLIDESHOW***/

.slideshow {
  position: relative;
  width: 600px;
  height: 300px;
  margin: 5em auto .5em auto;
}

.slideshow figure{
  margin: 0px;
  width: 600px;
  height: 300px;
  background: #000;
  position: absolute;
}

.slideshow img{
  box-shadow: 0 0 2px #ccc;
}

.css-slideshow figure{
  opacity:0;
}

figure:nth-child(1) {
  animation: xfade 48s 42s infinite;
}
figure:nth-child(2) {
  animation: xfade 48s 36s infinite;
}
figure:nth-child(3) {
  animation: xfade 48s 30s infinite;
}
figure:nth-child(4) {
  animation: xfade 48s 24s infinite;
}
figure:nth-child(5) {
  animation: xfade 48s 18s infinite;
}
figure:nth-child(6) {
  animation: xfade 48s 12s infinite;
}
figure:nth-child(7) {
  animation: xfade 48s 6s infinite;
}
figure:nth-child(8) {
  animation: xfade 48s 0s infinite;
}

@keyframes xfade{
  0%{
    opacity: 1;
  }
  10.5% {
    opacity: 1;
  }
  12.5%{
    opacity: 0;
  }
  98% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/***end of SLIDESHOW***/

.desc {
	top: 0;
	font-family: Candara;
	font-size: 17px;
	text-align: center;
}

.footer {
	width: 100%;
	background-color: #daf2f9;
	position: absolute;
	bottom: 0px;
}

.footer p {
	text-align: center;
	color: #3A66A7;
	font-family: Consolas;
	font-size: 11px;
}