
  
div.header{
	margin-left:auto;
    margin-right:auto;
	color: #000;
	font-size: 18px;
	width: 900px;
	height:240px;
	align: center;
	text-align: center;
}

div.headerleft{
	margin-left:auto;
    margin-right:auto;
	color: #000;
	font-size: 18px;
	width: 200px;
	height:270px;
	align: center;
	text-align: center;
	float: left;
}

div.headerright{
	margin-left:auto;
    margin-right:auto;
	color: #000;
	font-size: 18px;
	width: 700px;
	height:270px;
	align: center;
	text-align: center;
	float:right;
}

div.content{
	margin-left:auto;
    margin-right:auto;
	color: #000;
	font-size: 16px;
	width: 800px;
	height: auto;
	align: center;
	text-align: center;
	
}

.tablelinks {
	font-size: 24px;
}

nav ul ul {
	display: none;
}

nav ul li:hover > ul {
	display: block;
}


nav ul {
	background: #006; 
	background: linear-gradient(#36c, #fc6);  
	background: -moz-linear-gradient(top, #36c 0%, #fc6 100%); 
	background: -webkit-linear-gradient(top, #36c 0%,#fc6 100%); 
	box-shadow: 0px 0px 9px #000;
	color: #fff;
	padding: 0 10px;
	border-radius: 10px;  
	list-style: none;
	position: relative;
	display: inline-table;
	font-size: 18px;
	
}

nav ul:after {
		content: ""; clear: both; display: block;
	}

nav ul li {
	float: left;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	
	}

nav ul li:hover {
	background: #696;
	
	}
		
		
nav ul li:hover a {
		color: #fff;
	}
	
nav ul li a {
		display: block; 
		padding: 5px 30px;
		color: #fff; 
		text-decoration: none;
	}

	
nav ul ul {
		background: linear-gradient(#36c, #fc6); 
		border-radius: 0px; 
		padding: 0;
		position: absolute; 
		top: 100%;
		z-index:1;
	}
	
	
nav ul ul li {
		float: none; 
		border-top: 1px solid #6b727c;
		border-bottom: 1px solid #575f6a;
		position: relative;
	}
		

nav ul ul li a {
		padding: 10px 10px;
		color: #fff;
		font-size: 14px;
	}	


nav ul ul li a:hover {
		background: #696;
	}

div.photos {
	width: 100%;
	height: auto;
	align: center;
	text-align: center;
}

.copyright {
    margin-left:auto;
    margin-right:auto;
	width: 900px;
	background-color: #fff;
    text-align: right;
	position: absolute;
	bottom: 80px;
}

.footer {
    width: 100%;
    background-color: #fff;
    text-align: center;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
	left: 0;
	border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}