#nav {
	
}

#nav_container ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav_container li { /* all list items */
	float: left;
	position: relative;
}

#nav_container li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: -1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #7F5C76;
	border-left-color: #7F5C76;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #7F5C76;
	background-color: #592154;
	margin-top: 8px;
}

#nav_container li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: -1px;
	margin-top: 0px;
}
#nav_container li ul li {  /* second-level list items */
	display: block;
	float: none;
}


#nav_container li:hover ul, #nav_container li.over ul { /* lists nested under hovered list items */
	display: block;
}

#nav_container li a {
	color: #FFFFFF;
	text-decoration: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #7F5C76;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 1.2em;
	line-height: 1.5em;
	display: block;
	
}
#nav_container li a#contact {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#nav_container li a:hover{
	background-color: #72356D;
}
#nav_container li ul li a{  /* second-level list items links */
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: 72px;
	display: block;
	float: none;
}
#nav_container li a#you_are_here {
	background-color:#FFFFFF;
	color:#592154;
}
