.navigation, .navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1;
}

.navigation {
	/* Layout & positioning */
	position: relative;
	margin: auto; /* Centering the menu */
	height: 46px;
	width: 100%;
	text-align: center;
}


.navigation>li {
	margin: 0;
	line-height: 1;
	padding: 0;
	display: inline;
	position: relative;
}

.navigation::after, .navigation::before {
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	height: 0px;
	width: 0px;
	z-index: -1;
}

/* The left ribbon */
.navigation::before {
	border-left-color: transparent;
	left: -30px;
}

/* The right ribbon */
.navigation::after {
	border-right-color: transparent;
	right: -30px;
}

.navigation>li>a {
	display: inline-block;
	float:left;
	padding: 15px 10px;
	position: relative;
	font-weight:bold;
	text-decoration: none;
	color: #fff;
	text-shadow: 1px 2px rgba(0, 0, 0, .2);	
	-webkit-transition: color .3s linear;
	   -moz-transition: color .3s linear;
	     -o-transition: color .3s linear;
	    -ms-transition: color .3s linear;
	        transition: color .3s linear;
}

.navigation>li.active>a {
	color: #eae8a5;
}

.navigation>li>a:hover, .navigation>li:hover>a {
	color: #eae8a5;
}

.navigation>li>a::after {
	content: "";
	height: 15px;
	width: 15px;
	position: absolute;
	right: -20px;
	top: 16px;
	display: block;
}

.navigation>li:last-child>a::after {
	display: none;
}

.navigation ul {
	position: absolute;
	left: -9999px;
	padding-top: 10px;
	border-bottom: 1px solid #ccc;
	opacity: 0;
	-webkit-transition: opacity .3s linear;
	-moz-transition: opacity .3s linear;
	-o-transition: opacity .3s linear;
	-ms-transition: opacity .3s linear;
}

.navigation>li:hover>ul {
	left: 0;
	opacity: 1;
	top: 30px;
}


.navigation ul li:hover>ul {
	left: 150px;
	opacity: 1;
	top: -11px;
	padding-left: 12px;
	border-bottom: 0;
	box-shadow: none;
}

.navigation ul li {
	display: block;
	position: relative;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	width: 150px;
	text-align: justify;
	z-index: 9;
	background: #eee;
	box-shadow: 3px 4px 0 rgba(0, 0, 0, .1);
	-webkit-transition: background .3s linear;
	-moz-transition: background .3s linear;
	-ms-transition: background .3s linear;
	-o-transition: background .3s linear;
}

.navigation ul li a {
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	text-decoration: none;
	display: block;
	padding: 7px 12px 7px 20px;
	color: #003366;
	-webkit-transition: color .3s linear;
	-moz-transition: color .3s linear;
	-ms-transition: color .3s linear;
	-o-transition: color .3s linear;
}

.navigation ul li:hover>a, .navigation ul li a:hover {
	color: #4db6b0;
}

.navigation ul li:hover {
	background: #f7f7f7;
}

.navigation ul ul li:last-child {
	border-bottom: 1px solid #ccc;
}

.navigation ul ul li {
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .1);
}

.navigation ul::after, .navigation ul::before {
	content: "";
	display: block;
	z-index: 1;
	position: absolute;
	height: 9px;
	width: 9px;
}

.navigation>li>ul::after {
	border: 1px solid #ccc;
	background: #eee;
	border-right: 0;
	border-bottom: 0;
	top: 5px;
	left: 25px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}

.navigation>li>ul::before {
	height: 1px;
	width: 12px;
	background: #eee;
	border-right: 0;
	border-bottom: 0;
	top: 10px;
	left: 24px;
	z-index: 99;
}

.navigation ul ul::after {
	border: 1px solid #ccc;
	background: #eee;
	border-right: 0;
	border-bottom: 0;
	top: 20px;
	left: 8px;
	position: absolute;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}

.navigation ul ul::before {
	height: 10px;
	width: 1px;
	background: #eee;
	z-index: 99;
	top: 20px;
	left: 12px;
}