nav {
    background-color: #fff;
	margin:10px 0;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
	z-index:99999;
	text-align:right;
}

nav ul li {
    display: inline-block;
	padding:0 0 10px 0;
}

nav a {
    display: block;
    padding: 0 10px;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    text-decoration: none;
}

nav a:hover {
    background-color: #0280df;
	color:#fff;
    font-size: 16px;
}
nav li.active a {
    background-color: #0280df !important;
	color:#fff;
    font-size: 16px;
}

nav ul ul {
    display: none;
    position: absolute;
    top: 28px;
}

nav ul li:hover > ul {
    display: inherit;
}
nav ul li:hover > a {
	background: #0280df !important;
	color:#fff;
}

nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
	background:#0280df;
	color:#fff;
}

nav ul ul ul li {
    position: relative;
    top: -60px;
    right: 230px;
}

nav ul ul li {
    
}

li > a:after {
    content: ' ▼';
}

li > a:only-child:after {
    content: '';
}
