body{
	margin: 0px;
	padding: 0px;
	background: #e74c3c;
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	
	letter-spacing: 4px;

}

nav{
	width: 1000px;
	margin-top: 1em;
	margin-right: auto;
	margin-bottom: 1em;
	margin-left: auto;
	font-variant: small-caps;
}

ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.dropdown{ 
  position: relative; 
  width: 100%; 
}

ul.dropdown li{
	font-weight: bold;
	float: left;
	width: 200px;
	position: relative;
	background: #ecf0f1;
}

ul.dropdown a:hover{ 
  color: #000; 
}

ul.dropdown li a {
	display: block;
	padding: 10px 8px;
	color: #2D3033;
	position: relative;
	z-index: 2000;
	text-align: center;
	text-decoration: none;
	font-weight: 300;
}

ul.dropdown li a:hover,
ul.dropdown li a.hover{
	position: relative;
	color: #fff;
	background-color: #2F3236;
}


ul.dropdown ul{ 
 display: none;
 position: absolute; 
  top: 0; 
  left: 0; 
  width: 180px; 
  z-index: 1000;
}

ul.dropdown ul li { 
  font-weight: normal; 
  background: #f6f6f6; 
  color: #000; 
  border-bottom: 1px solid #ccc; 
}

ul.dropdown ul li a{ 
  display: block; 
  color: #34495e !important;
  background: #eee !important;
} 

ul.dropdown ul li a:hover{
	display: block;
	color: #39B54A !important;
	background-color: #2F3236;
} 

.drop > a{
  position: relative;
}

.drop > a:after{
  content:"";
  position: absolute;
  right: 10px;
  top: 40%;
  border-left: 5px solid transparent;
  border-top: 5px solid #333;
  border-right: 5px solid transparent;
  z-index: 999;
}

.drop > a:hover:after{
  content:"";
   border-left: 5px solid transparent;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
}
.iframe-container{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; 
	height: 0;
  }
  .iframe-container iframe{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
  }