/* -- Please ask questions if you need help -- */

#mobileMenu {
display:none;
cursor:pointer;
  position: absolute;
  right: 0px;
  top: 0px;
}

#nav {
	background: #67899d;
	z-index: 500;
	position: absolute;
	top: 70px;
	right: 0px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	padding: 0px 30px;
}

#nav .menu {
	margin: 0;
	padding: 0;
	position: relative;
    float:right;
}

#nav .menu li {
	list-style: none outside;
	float: left;
	position: relative;
}

#nav .menu li a {
	color: #e4ebf0;
	display: block;
	padding: 3px 14px 5px;
	text-decoration: none;
	font-size: 14.82pt;
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
}

#nav .menu li.first a {
	/* -- For specific CSS on the first link in the Main Menu.  For example, nav dividers and borders. -- */
}

#nav .menu li.last a {
	/* -- For specific CSS on the last link in the Main Menu.  For example, nav dividers and borders. -- */
	border-right: none;
}

#nav .menu li a:hover {
	color: #fff; /* -- Main menu hover color. -- */
}

#nav .menu ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0%;
	width: 100%;
}

#nav .menu ul li {
	float: none;
	width: 160px;
}

#nav .menu ul li a {
	padding: 4px 10px;
	background: #3d5a74; /* -- Sub menu background color.  This will also affect the sub sub background color. -- */
	border-bottom: #233d54 solid 1px;
	border-right: none;
	font-size: 15px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}

#nav .menu ul li a:hover {
	background: #dd6b65; /* -- Sub menu hover color. -- */
	color: #fff;
}

#nav .menu ul ul {
	top: 0%;
	left: 100%;
}

#nav .menu ul ul li a:hover {
	background: #dd6b65; /* -- Sub sub menu hover color. -- */
	color: #fff;
}

/* -- The CSS below does not need to be edited in any way.  It is for multiple sub menus if they appear on the site. -- */

#nav .menu li:hover ul ul {display: none; }
#nav .menu li:hover ul, #nav .menu ul li:hover ul { display: block; }

#nav .menu li:hover ul ul ul { display: none; }
#nav .menu ul ul li:hover ul { display: block; }