@charset "utf-8";
/* CSS Document */

/* All */
.nav {
	margin: 20px 0 0 0; float:right;
}
.nav ul {
 *zoom: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	background: #333;
}
.nav ul:before, .nav ul:after {
	content: "";
	display: table;
}
.nav ul:after {
	clear: both;
}
.nav ul > li {
	float: left;
	position: relative;
}
.nav a {
	display: block;
	padding: 10px 20px;
	line-height: 1.2em;
	color: #fff;
	border-left: 1px solid #595959;
	text-decoration:none;
	font-weight:bold;
}
.nav a:hover {
	text-decoration: none;
	background: #ff993d;
}
.nav li ul {
	background: #ff993d;
}
.nav li ul li {
	width: 250px;
}
.nav li ul a {
	border: none;
}
.nav li ul a:hover {
	background: rgba(0, 0, 0, 0.2);
}
/* Fade In and Out ============================== */
.nav2 ul > li:hover ul {
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=100);
}
.nav2 li ul {
	position: absolute;
	left: 0;
	top: 36px;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: 200ms ease;
	-moz-transition: 200ms ease;
	-o-transition: 200ms ease;
	transition: 200ms ease;
}
/* Slide Down ============================== */