
.hBar{ /*black big hBar*/
 	float: left;
	width: 100%;
	position: relative;
	background: none;
	border-bottom: 2px solid #2d2e32;
	color: #2d2e32;
}
.hBar a.navTab {
	float: left;
	padding: 15px;
	font-size: 13px;
	border-right: 1px solid #CCC;
	color: white;
	-webkit-transition: background-color .3s ease;
}

.hBar a.navTab.active, .hBar a.navTab:active {
	background: #0E669E;
	position: relative;
	color: white;
	text-decoration: none;
}
.hBar a.navTab:first-child {
	border-radius: 5px 0 0 0;
}
.hBar a.navTab.active:after {
	content: "";
	position: absolute;
	left: 40%;
	bottom: -10px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #0E669E;
}
