/* -- Please ask questions if you need help -- */

#nav {
  z-index: 500;
  position: absolute;
  text-align: right;
  clear: both;
  margin-top: 15px;
  right: 30px;
  top: 50px;
}

.menu {
	margin: 0;
	padding: 0;
	position: relative;
}

.menu li {
	list-style: none outside;
	float: left;
	position: relative;
}

.menu li a {
    font-family:'Open Sans', sans-serif;
    font-size:17px;
    font-weight:100;
	color: #d5c7c9;
	display: block;
	padding: 10px 12px;
	text-decoration: none;
}

.menu li.first a {
	/* -- For specific CSS on the first link in the Main Menu.  For example, nav dividers and borders. -- */
}

.menu li.last a {
	/* -- For specific CSS on the last link in the Main Menu.  For example, nav dividers and borders. -- */
	border-right: none;
}

.menu li a:hover {
	color:#fff;
}

.menu ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0%;
	width: 100%;
}

.menu ul li {
	float: none;
	text-align: center; /* -- Take this line of css out if links need to be left aligned. -- */
}

.menu ul li a {
	padding: 6px 8px;
	background: #000; /* -- Sub menu background color.  This will also affect the sub sub background color. -- */
	border-bottom: #333 solid 1px;
	border-right: none;
}

.menu ul li a:hover {
	background: #999; /* -- Sub menu hover color. -- */
}

.menu ul ul {
	top: 0%;
	left: 100%;
}

.menu ul ul li a:hover {
	background: #ccc; /* -- Sub sub menu hover color. -- */
}

/* -- The CSS below does not need to be edited in any way.  It is for multiple sub menus if they appear on the site. -- */

.menu li:hover ul ul {display: none; }
.menu li:hover ul, .menu ul li:hover ul { display: block; }

.menu li:hover ul ul ul { display: none; }
.menu ul ul li:hover ul { display: block; }