/* -- Please ask questions if you need help -- */

#nav {
	/*background: #333 url(../image/nav_bg.png) repeat-x;*/
    background-color: #630460;
    border-radius:35px;
	z-index: 500;
	position: relative;
    width:105%;
    margin-left:-2.5%;
	/* height: 34px; -- If the nav_bg.png image has a specific height, please put it here.  The set padding for the links may add more height than the design should show. -- */
}

.menu {
	margin: 0;
	padding: 0;
	position: relative;
    /*text-align:center;*/
}

.menu li {
	list-style: none outside;
	float: left;
	position: relative;
}

.menu li a {
	color: #fff;
	display: block;
	padding: 10px 50px;
	text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
	/*border-right: #000 solid 1px;*/
}

.menu li.first a {
	/* -- For specific CSS on the first link in the Main Menu.  For example, nav dividers and borders. -- */
    /*padding-left:38%;*/
}

.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: #e5a22d; /* -- Main menu hover color. -- */
}

.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; }