/* CSS Document */

body {
	background: #0d2f54;
	font-size:22px;
	line-height: 32px;
	color: #ffffff;
	word-wrap:break-word !important;
	font-family: sans-serif;
	}


h3 {
	font-size: 30px;
	text-align: center;
	color: #FFF;
}

h3 a {
	color: #FFF;
}

a {
	color: #FFF;
}

h1 {
	margin-top: 100px;
	text-align:center;
	font-size:30px;
	font-family: serif;
	color: #FFF;
	}

#container {
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	background-color: #E64A19;
}

p {
	text-align: center;
}

nav {
	margin: 0px 0;
	background-color: #E64A19;
}

nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	}
	
nav ul li {
	display:inline-block;
	background-color: #E64A19;
	}

nav a {
	display:block;
	padding:0 10px;	
	color:#FFF;
	font-size:12px;
	line-height: 30px;
	text-decoration:none;
	font-weight: bold;
}

nav a:hover { 
	background-color: #FFFFFF;
	color:#E64A19;
}

/* Hide Dropdowns by Default */
nav ul ul {
	display: none;
	position: absolute; 
	top: 30px; /* the height of the main nav */
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* First Tier Dropdown */
nav ul ul li {
	width:220px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	*/
nav ul ul ul li {
	position: relative;
	top:-30px; 
	left:220px;
}

	
/* Change this in order to change the Dropdown symbol */
/* li > a:after { content:  ' ⇂'; } */
li > a:after { content:  ''; } 
li > a:only-child:after { content: ''; }