body {
	margin:0;
}

.header {
	text-align: center;
	vertical-align: bottom;
}

.menuwrapper { /* wrapper for the menu and places the banner background */
	text-align: center;
	background-image: url("../pictures/graphics/33coloursbanner.png");
	width:100%;
	box-shadow: 0px 8px 20px 5px rgba(0,0,0,0.7);	
}

/* DROPDOWN BUTTON FORMATTING */
/*  format the lists */
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

li a {
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:visited {
	color: inherit;
	text-decoration: none;
}

/* style the dropdown button */
.dropbtn {
	display: block;
	color: white;
	min-width: 160px;
	padding: 16px;
	font-weight: bold;
	border: none;
	cursor: pointer;
	font-size: 18pt;
	background-color: rgba(0,0,0,0);
}

/*alter the dropdown text on hovering*/
.dropbtn:hover {
	color: white;
	text-shadow: 2px 2px 1px rgba(0,0,0,1);
	background-color: rgba(255,255,255,0.3);
}

/* the container <div> to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
	font-family: Arial;
	min-width: 160px;
}

/* dropdown content (hidden by default) */
.dropdown-content {
	overflow: hidden;
	visibility: hidden;
	position: absolute;
	background-color: #f9f9f9;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,1);
	z-index: 101;
	font-size: 16pt;
	text-align: left;
	min-width: 160px;
	max-height: 0;
	transition: max-height 1000ms;
	white-space: nowrap;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	padding: 0px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	background-color: #f9f9f9;
	font-weight: bold;
}

/* link colour on hover */
.dropdown-content a:hover {
	background-color: #d8d8d8;
}

/* show dropdown menu on hover */
.dropdown:hover .dropdown-content {
	display: block;	
	visibility: visible;
	max-height: 1000px;
}

/* DROPDOWN BUTTON FORMATTING END */