@charset "UTF-8";

#container {
  margin: 0 auto;
  max-width: 890px;
}

p { text-align: center; }
 .toggle, [id^=drop] {
 display: none;
}

nav {
	margin: 0;
	padding: 0;
	background-color: #134891;
	position: fixed;
	left: 0px;
	top: 100px;
	right: 0px;
	z-index: 2;
	box-shadow: 0px 10px 5px rgba(19,72,145,0.3);
}


#logo {
	display: block;
	float: left;
	font-size: 20px;
	line-height: 60px;
	vertical-align: middle;
	margin-top: 10px;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 30px;
}

nav:after {
  content: "";
  display: table;
  clear: both;
}

nav ul {
	float: right;
	padding: 0;
	list-style: none;
	position: relative;
	text-transform: uppercase;
	color: #000;
}

nav ul li {
	margin: 0px;
	display: inline-block;
	float: left;
	background-color: #134891;
}

nav a {
	display: block;
	padding: 0 20px;
	color: #FFF;
	font-size: 0.7em;
	line-height: 40px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
}

nav ul li ul li:hover {
	background-color: #000066;
}

nav a:hover {
	background-color: #000066;
}

nav ul ul {
	display: none;
	position: absolute;
	top: 40px;
}

nav ul li:hover > ul { display: inherit; }

nav ul ul li {
  width: 170px;
  float: none;
  display: list-item;
  position: relative;
}

nav ul ul ul li {
  position: relative;
  top: -60px;
  left: 170px;
}

li > a:after { content: ' +'; }

li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

