#megamenu {
	width: 980px;
	background: #FFFFFF;
	position: relative;
	left: 0;
	top: 0;
}
#megamenu-wrapper {
	margin: 0 auto;
	width: 950px;
	position: relative;
	left: 0;
	top: 0;
}

/* 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: table;
	position: relative;
	cursor: default;
	z-index: 500;
	width: 950px;
	background: #E00000;
	height: 40px;
}

/* Menu List */
.nav > li {
	display: table-cell;
}

/* Menu Links */
.nav > li > a {
	position: relative;
	display: block;
	z-index: 510;
	height: 40px;
	padding: 0 17px;
	line-height: 40px;
	text-align: center;
	
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;
	color: #fcfcfc;
	text-shadow: 0 0 1px rgba(0,0,0,.35);

	background: #000000;
	border-left: 1px solid #333333;
	border-right: 1px solid #111111;

	-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:hover > a { background: #444444; }

.nav > li:first-child > a {
	border-left: none;
}
.nav > li:last-child > a {
	border-right: none;
}
.nav > li > a.specials {
	background: #E00000;
	border-right: none\9; /* IE 8 and below */
	*border-right: none; /* IE 7 and below */
	_border-right: none; /* IE 6 */
}
.nav > li:hover > a.specials { background: #E00000; }

/* Search Form */
.nav > li.nav-search > form {
	position: relative;
	width: inherit;
	height: 54px;
	z-index: 510;
	border-left: 1px solid #4b4441;
}

.nav > li.nav-search input[type="text"] {
	display: block;
	float: left;
	width: 1px;
	height: 24px;
	padding: 15px 0;
	line-height: 24px;

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;
	color: #999999;
	text-shadow: 0 0 1px rgba(0,0,0,.35);

	background: #372f2b;

	-webkit-transition: all .3s ease 1s;
	-moz-transition: all .3s ease 1s;
	-o-transition: all .3s ease 1s;
	-ms-transition: all .3s ease 1s;
	transition: all .3s ease 1s;
}

.nav > li.nav-search input[type="text"]:focus { color: #fcfcfc; }

.nav > li.nav-search input[type="text"]:focus,
.nav > li.nav-search:hover input[type="text"] {
	width: 110px;
	padding: 15px 20px;

	-webkit-transition: all .3s ease .1s;
	-moz-transition: all .3s ease .1s;
	-o-transition: all .3s ease .1s;
	-ms-transition: all .3s ease .1s;
	transition: all .3s ease .1s;
}

.nav > li.nav-search input[type="submit"] {
	display: block;
	float: left;
	width: 20px;
	height: 54px;
	padding: 0 25px;
	cursor: pointer;

	background: #372f2b url(../img/search-icon.png) no-repeat center center;

	border-radius: 0 3px 3px 0;

	-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.nav-search input[type="submit"]:hover { background-color: #4b4441; }

/* Menu Dropdown */
.nav > li > div {
	position: absolute;
	display: block;
	width: 100%;
	top: 40px;
	left: 0;

	opacity: 0;
	visibility: hidden;
	overflow: hidden;

	background: #ffffff;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 0 10px #333333;

	-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;
}

.nav > li:hover > div {
	opacity: 1;
	visibility: visible;
	overflow: visible;
}

/* Menu Content Styles */
.nav .nav-column {
	float: left;
	width: 19%;
	padding: 5px 2.5% 15px;
}

.nav .nav-column h3 {
	margin: 15px 0 5px 0;
	line-height: 18px;
	
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 12px;
	color: #333333;
}
.nav .nav-column h3 a {
	color: #333333;
}
.nav .nav-column h3 a:hover { color: #E00000; }

.nav .nav-column h3.red { color: #E00000; }
.nav .nav-column h3.red a { color: #E00000; }

.nav .nav-column img {
	margin: 20px 0 10px 0;
	max-width: 150px;
	
	-webkit-box-shadow: 1px 1px 10px #CCCCCC;
	-moz-box-shadow: 1px 1px 10px #CCCCCC;
	-o-box-shadow: 1px 1px 10px #CCCCCC;
	-ms-box-shadow: 1px 1px 10px #CCCCCC;
	box-shadow: 1px 1px 10px #CCCCCC;
}

.nav .nav-column ul {
	padding-left: 10px;
}
.nav .nav-column li a {
	display: block;
	padding: 3px 0;
	margin: 3px 0;
	
	font-family: Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 12px;
	color: #555555;
}

.nav .nav-column li a:hover { color: #E00000; }