/* Reset */
.nav,
.nav a,
.nav ul,
.nav li,
.nav div,
.nav form,
.nav input {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

.nav a { text-decoration: none; }

.nav li { list-style: none; }

/* Menu Container */

.nav {
	display: inline-block;
	position: relative;
	cursor: default;
	z-index: 500;
}

/* Menu List */
.nav > li {
	display: block;
	float: left;
}

/* Menu Links */
.nav > li > a {
	position: relative;
	display: block;
	z-index: 510;
	height: 34px;
	padding: 0 10px;
	line-height: 34px;
	
	font-family: Geneva, sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #ffffff;
	text-shadow: 0 0 1px rgba(0,0,0,.35);

	background: #005f7f;
	border: 2px solid #00274c;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

.nav > li > a::after {
	content: "\25BC";
     height: 1em;
	  right: 1.8em;
  font-size: 1em;
}

.nav > li:hover > a { background: #823125; }

.nav > li:first-child > a {
	border-radius: 3px 0 0 3px;
	border-left: none;
}

/* Menu Dropdown */
.nav > li > div {
	position: absolute;
	display: block;
	width: 1100px;
	top: 40px;
	left: -200px;
	font-family: Geneva, Arial, sans-serif;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;

	background: #eff2ff;
	border-radius: 0 0 3px 3px;
	-moz-border-raduis: 0 0 3px 3px;

	-webkit-transition: all .3s ease .15s;
	-moz-transition: all .3s ease .15s;
	-o-transition: all .3s ease .15s;
	-ms-transition: all .3s ease .15s;
	transition: all .3s ease .15s;
	-moz-box-shadow: 3px 5px 5px #000; /* Firefox */
   -webkit-box-shadow: 3px 5px 5px #000; /* Safari and Chrome */
   box-shadow: 3px 5px 5px #000;
}

.nav > li:hover > div {
	opacity: 1;
	visibility: visible;
	overflow: visible;
	border-radius: 0 0 8px 8px;
	-moz-border-raduis: 0 0 8px 8px;

}

/* Menu Content Styles */
.nav .nav-column {
	float: left;
	width: 18%;
	padding: 1%;
}

.nav .nav-column h3 {
	margin: 20px 0 10px 0;
	line-height: 18px;
	
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 14px;
	color: #6b1800;
	text-transform: uppercase;
}

.nav .nav-column h3.orange { color: #ff722b; }

.nav .nav-column li a {
	display: block;
	line-height: 20px;
	
	font-family: Verdana, Georgia, Constantia, Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 10px;
	color: #00274c;
}

.nav .nav-column li a:hover { 
	color: #ffffff; 
	background: #005f7f;
	padding-left: 2px;
	border-radius: 4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	
	}