.menuWrapper {
	float: left;
	width: 800px;
	height: auto;
	padding-left: 13px;
}
/* General menu styling */
.nav {
	margin: 0;
	padding: 0;
	line-height: 22px;
	font-family: DepotNew-Medium;
	letter-spacing: 2px;
	text-transform: uppercase;
}
	
	/* The main navigation link containers */
	.nav>li {
		display: block;
		float: left; /* Displaying them on the same line */
		margin: 0;
		padding: 0;
	}

		/* The main navigation links */
		.nav>li>a {
	/* Layout */
			display: block;
	position: relative;
	padding: 0px;
	/* Text */
			font-family: DepotNew-Medium;
	color: #cc992e;
	font-size: 12px;
	text-decoration: none;
	/* Background */
			background: black; /* For older browsers */
	background: none; /* Transparent background for modern browsers */
	/* Making the color to change on hover with a transition */
			-webkit-transition: color .3s ease-in;
	-moz-transition: color .3s ease-in;
	-o-transition: color .3s ease-in;
	-ms-transition: color .3s ease-in;
		}

		/* Changing the color on hover */
		.nav>li>a:hover, .nav>li:hover>a {
	color: #FFFFFF;
	background: #000;
		}

		/* The links which contain dropdowns menu are wider, because they have a little arrow */
		.nav>.dropdown>a {
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
		}

		/* The arrow indicating the dropdown */
		.dropdown>a::after {
	content: "";
	position: absolute;
	top: 10px;
	right: 0px;
	width: 0px;
	height: 12px;
	border-right-width: 0px;
	border-right-style: solid;
	border-right-color: #5e5246;
			}

		/* Changing the color of the arrow on hover */	
		.dropdown>a:hover::after, .dropdown:hover>a::after {
		}

		/* The submenus */
		.nav ul {
	position: absolute;
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
	z-index: 1000;
		}

		/* General layout settings for the link containers of the submenus */
		.nav ul li {
			position: absolute;
			top: -9999px; /* Hiding them */
			height: 0px; 
			display: block;
			margin: 0;
			padding: 0;

			/* Making them to expand their height with a transition, for a slide effect */
			-webkit-transition: height .2s ease-in;
			-moz-transition: height .2s ease-in;
			-o-transition: height .2s ease-in;
			-ms-transition: height .2s ease-in;
		}

		/* Displays the submenu links, by expading their containers (with a transition, previously defined) and by repositioning them */
		.dropdown:hover>ul>li {
	height: 30px;
	position: relative;
	top: auto;
		}

			/* The submenu links */
			.nav ul li a {
	width: 210px;
	display: block;
	position: relative;
	/* Text */
				font-family: DepotNew-Medium;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 11px;
	/* Background & effects */
				background: black;
	background: rgba(0, 0, 0, .75);
	-webkit-transition: color .3s ease-in, background .3s ease-in;
	-moz-transition: color .3s ease-in, background .3s ease-in;
	-o-transition: color .3s ease-in, background .3s ease-in;
	-ms-transition: color .3s ease-in, background .3s ease-in;
	padding-top: 4px;
	padding-right: 5px;
	padding-bottom: 4px;
	padding-left: 15px;
	z-index: 1000000;
			}

			/* Changing the link's color and background on hover */
			.nav ul li:hover>a, .nav ul li a:hover {
	color: #FFFFFF;
	background-color: rgba(102,153,153,1);
			}

			/* Making the level 2 (or higher) submenus to appear at the right of their parent */
			.nav ul .dropdown:hover ul {
				left: 160px;
				top: 0px;
			}

			/* The submenu links have a different arrow which indicates another dropdown submenu */
			.nav ul .dropdown a::after{
				width: 6px;
				height: 6px;
				border-bottom: 0;
				border-right: 1px solid #fff;
				border-top: 1px solid #fff;
				top: 12px;
			}

			/* Changing the color of the arrow on hover */
			.nav ul .dropdown:hover>a::after, .nav ul .dropdown>a:hover::after {
				border-right: 1px solid #0fd0f9;
				border-top: 1px solid #0fd0f9;
			}
