@charset "utf-8";
/* CSS Document */

body{
		margin: 0;
		padding: 0;
		font-family: sans-serif;
}
header{
	background: #0080C0;
	width: 100%;
	padding: 40px 0;
	color: white;
	text-align: center;
}
a{
	text-decoration: none;
	color:inherit;
}

nav {}

nav ul{	
	background-color: transparent;
	overflow: hidden;
	color: #4F4F4F;
	padding: 0;
	text-align: center;
	margin: 0;
	font-weight: 500;
	/*
	border-bottom: 1px solid #C9C9C9;
	border-top: 1px solid #C9C9C9;  */
	-webkit-transition: max-height 0.4s;
	-ms-transition: max-height 0.4s;
	-moz-transition: max-height 0.4s;
	-o-transition: max-height 0.4s;
	transition: max-height 0.4s;	
}

nav ul li{	
	display: inline-block;
	padding: 8px;
}

nav ul li:hover{
	background-color: #3A67A6;
	color:  #FFFFFF;
}

.handle{
	width: 100%;
	background: #3A67A6;
	text-align: left;
	box-sizing:border-box;
	padding: 10px 10px;
	cursor:pointer;
	color: white;
	display: none;
}
@media screen and (max-width: 700px){
	nav ul{
		max-height: 0;
	}
	.showing{
		max-height: 300em;
	}
	nav ul li{
		float:right;
		
		box-sizing: border-box;
		width: 100%;
		padding: 15px;
		text-align: left;
	}
	.handle{
		display: block;
		background-color: transparent;
		color: #3A67A6;
	
}
}