#wrapper
{
	width:100%;
	height:100%;
	background-image:url("snow.jpg");


}
#header
{
	width:80%;
	height:10%;
	margin:auto;
	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-image:url("MENU.jpg");
	background-repeat:no-repeat;
	margin-left:190px;
	
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#content
{
	width:80%;
	height:70%;
	background-color:White;
	margin:auto;

	text-align:center;
	
}
#footer
{
	width:80%;
	height:6%;
	background-color:mistyrose;
	margin:auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
}
#navigation ul
{
	list-style:none;
	
	margin: 0;
	padding: 0;
}

#navigation ul li
{
	position:relative;
	float:left;
	width:12.5%;
	z-index:1000;
}
#navigation ul a
{
	display:block;
	text-decoration:none;
	color:white;
	text-align:center;
	padding:8% 6%;
	font-size:14px;
}
#navigation ul li a:hover
{
	background-color:transparent;
	color:black;
}
#navigation ul ul
{
	display:none;
	position:absolute;
	margin-left:11px;
	background-color:green;
	width:100%;
}

#navigation ul ul li
{
	width:100%;
}

#navigation ul ul a
{
	padding:8% 6%;
	border-bottom:1px solid gray;
}

#navigation ul li:hover> ul
{
	display:block;
}
* {
  box-sizing: border-box;
}

