
/* tab style*/
.nav-tabs {
  border-bottom: 3px solid #0086c0;
  background-color: #eee;
  padding-top: 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: #fff;
}
.nav-tabs > li > a,
.nav-tabs > li > a:hover {
  border: none;
  margin-right: 0;
	border-radius: 0;
}
.nav-tabs > li {
  margin-bottom: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	position: relative;
	border:none;
	border-radius: 0;
}
.nav-tabs > li.active > a:before{
	content: ' ';
	position: absolute;
	left: 0;
	bottom: -3px;
	height: 0;
	width: 100%;
	border-top: 3px solid #fff;
}
.nav-tabs > li.active > a:after{
	content: ' ';
	position: absolute;
	left: 0;
	top: -3px;
	height: 0;
	width: 100%;
	border-top: 3px solid #0086c0;
}