/* menu */
#nav {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 549px;
	height: 93px;
	border-top: 1px solid #7e7e7e;
	border-bottom: 1px solid #7e7e7e;
	margin-right: 20px;
	padding: 7px 0px 0px 0px
}

#nav ul ul{
	z-index:100;
	width: 124px;
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.8s ease-in;
	-moz-transition: max-height 0.8s ease-in;
	-o-transition: max-height 0.8s ease-in;
	-ms-transition: max-height 0.8s v;
	transition: max-height 0.8s ease-in;
	/* padding: 15px 0px 0px 5px; */
}
#nav > ul > li:hover ul {
	float:left;
	max-height: 500px;
}
#nav > ul > li .submenu {
  visibility: hidden;
  opacity: 0;
}
#nav > ul > li:hover .submenu {
  visibility: visible;
  opacity: 1;
}

#nav ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
#nav ul li {
	float: left;
}
#nav .submenu {
	background-color: #fff;
}
#nav ul li.black .submenu { border-left: 1px solid #000000; }
#nav ul li.grey .submenu { border-left: 1px solid #949599; }
#nav ul li.orange .submenu { border-left: 1px solid #ff8800; }
#nav ul li .submenu {
	position: absolute;
	/*display: none;*/
	padding: 15px 0px 0px 5px;
	top: 27px;
}
/*#nav ul li:hover .submenu {
	display: block;
*/

}
#nav ul li ul {
	float: left;
	width: 120px;
	text-transform: lowercase;
	background-color: #fff;
}
#nav ul li ul li {
	float: none;
	width:190px;
	padding-right: 1px;
}
#nav .arrow {
	width: 70px;
	padding-bottom: 9px;
	border-bottom: 1px solid #bdbec2;
	cursor: pointer;
}
#nav .last .arrow {
	margin-right: 0px;
}
#nav a { color: #949599; }
#nav a:hover, #nav a.selected { color: #000000; }

#nav .admin {
	position: absolute;
	padding-top: 8px;
	top: 67px;
	right: -146px;
	z-index: 999;
	/*border-top: 1px solid #7e7e7e;*/
}
#nav .admin .submenu {
	background-color: #ffffff;
	width: 104px;
	top: 28px;
}
#nav .admin .arrow {
	padding-bottom: 8px;
	border-bottom: 0px solid #bdbec2;
}
#nav .login {
	width: 104px;
	height: 30px;
	border-top: 0px none !important;
}
#nav .login a {
	display: block;
	height: 100%;
	cursor: default;
}
