/*=====================================
	Main Menu - Start
=====================================*/
.topnav {
	overflow: hidden;
	background-color: #25408f;
	padding: 0px 0px 0px 0px;
	margin:0 auto;
	}

.topnav a {
	float: left;
	display: block;

	padding: 0px 20px 0px 20px;
	margin: 0 auto;

	/*
	width:120px;
	text-align: center;
	*/

	height:50px;
	line-height:50px;
	font-size: 16px;
	font-family: 'Hind', sans-serif;
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none;
	}

.topnav a:hover {
	background: #3e5cb5;
	}

.active {
	background: #061647;
	}

.topnav .icon {
	display: none;
	}

/*=====================================
	Screen Control - width:600 or less
=====================================*/

@media screen and (max-width: 600px) {
	.topnav a:not(:first-child){
		display: none;
		}
	.topnav a.icon {
		float: right;
		display: block;
		}
	}

@media screen and (max-width: 600px) {
	.topnav.responsive {
		padding: 0px 0px 0px 0px;
		margin: 0 auto;
		position: relative;

		font-family: 'Hind', sans-serif;
		color: #ffffff;
		text-transform: uppercase;
		text-decoration: none;
		
		}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
		text-align:center;
		}
	.topnav.responsive a {
		float: none;
		display: block;

		}

	}

