/* FEATURED : http://tympanus.net/codrops/2012/12/31/how-to-create-a-simple-multi-item-slider/ */

#emi_nav {
	margin-top: 20px;
	margin-bottom: 20px;
}

.mi-mnu {
	position: relative;
	text-align: center;
	border-top: 5px solid #fff;
}
.mi-mnu a {
	display: inline-block;
	letter-spacing: 5px;
	padding: 30px 5px 5px 30px;
	position: relative;
	outline: none;
	text-decoration: none;
	cursor: pointer;
	font-size: 0.9em;
	font-weight: bolder;
	color: #3D87C2 !important;
}
.mi-mnu a:hover,
.mi-mnu a.mi-selected {
	color: #FFFFFF !important;
	font-weight: bolder;
}

.mi-mnu a.mi-selected:after,
.mi-mnu a.mi-selected:before {
	content: '';
	position: absolute;
	top: -5px;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.mi-mnu a.mi-selected:after {
	border-color: transparent;
	border-top-color: #D3DDE9;
	border-width: 20px;
	left: 50%;
	margin-left: -20px;
}

.mi-mnu a.mi-selected:before {
	border-color: transparent;
	border-top-color: #fff;
	border-width: 27px;
	left: 50%;
	margin-left: -27px;
}