#wrapper {
	margin: 0 auto;
	width: 100%;
	background: #fff;
}

#header {
	background-color: #C9C5CC;
	padding: 20px;
}

	#header h1 {
		margin: 0;
	}

#nav {
	float: left;
	width: 100%;
	background: #A66CD1;
}

	#nav ul {
		margin: 0;
		padding: 0;
	}

		#nav ul li {
			list-style-type: none;
			display: inline;
		}

	#nav li a {
		display: block;
		float: left;
		padding: 14px 16px;
		color: #fff;
		text-decoration: none;
		border-right: 1px solid #fff;
	}

		#nav li a:hover {
			background: #736F6E;
		}

#content-container {
	float: left;
	width: 100%;
	background: #FFF repeat-y;
}

#main {
	clear: left;
	float: left;
	width: 60%;
	padding: 20px 0;
	margin: 0 0 0 4%;
	display: inline;
}

	#main h2 {
		margin: 0;
	}

#side {
	float: right;
	width: 26%;
	padding: 20px 0;
	margin: 0 3% 0 0;
	display: inline;
}

	#side h3 {
		margin: 0;
	}

#footer {
	clear: left;
	background: #ccc;
	text-align: right;
	padding: 20px;
	height: 1%;
}

.dropbtn {
	background-color: #5f6161;
	color: white;
	padding: 10px;
	font-size: 16px;
	border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	display: inline-block;
	position: absolute;
	top: 26px;
	right: 30px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

	/* Links inside the dropdown */
	.dropdown-content a {
		color: black;
		padding: 12px 16px;
		text-decoration: none;
		display: block;
	}

		/* Change color of dropdown links on hover */
		.dropdown-content a:hover {
			background-color: #ddd;
		}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
	display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
	background-color: #A66CD1;
}

@media (max-width: 600px) {
	header, nav, footer {
		width: 100%;
		height: auto;
	}
}
