
 #wrapper
{

	background-color:Gainsboro;

	
}

#header
{
	width:80%;
	height:20%;
	background-color:white;
	margin:auto;
	text-align:center;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

#menu
{
	width:80%;
	height:5%;
	background:White ;
	margin-right:auto;
	margin-left:auto;
	border-bottom:0px solid black;
	border-top:0px solid gray;
	font-family: "Times New Roman", Times, serif;
	color:black;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 0px 0 rgba(0, 0, 0, 0.19);
	
	
	
	
}
#content
{
	width:80%;
	height:73%;
	background-color:white;
	margin:auto;
	border:0 solid black;
	text-align:center;
	font-family: "Times New Roman", Times, serif;
	
	
	
}


#footer
{
	width:80%;
	height:20%;
	background-color:black;
	margin:auto;
	border-bottom:0px solid black;
	border-top:0px solid black;
	padding-top:0px;
	text-align:center;
	color:white;
	font-family: "Times New Roman", Times, serif;
	
	
	
}

a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width:0%;
  border-top: 2px solid black ;
  transition: 0.4s;
} 

a:hover:after {
  width: 100%;
}

#navigation ul
{
	list-style: none;
	margin: 0;
}

#navigation ul li
{
	position:relative;
	float:left;
	width:12%;
	text-align:center;
	height:90%;
	z-index:1000;
}

#navigation ul a
{
	display:block;
	text-decoration:none;
	color:black;
	text-align:center;
	padding:11% 5%;
	font-size:14px;
}

#navigation ul li a:hover
{
	background-color:white;
	color:Black;
	width:90%;
	height:40%;
}
#navigation ul li.current-menu-item
{
	background: linear-gradient(to bottom, #ffffff 0%, #ffccff 114%);
	color:white;	
}

#navigation ul ul
{
	display:none;
	position:absolute;
	background:linear-gradient(to bottom, #ffffff 0%, #ffccff 114%);
	width:80%;
}
#navigation ul ul li
{
	width:80%;
}
#navigation ul ul a
{
	padding:8% 0%;
	
}
#navigation ul li:hover>ul
{
	display:block;
}

