@charset "UTF-8";
/* CSS Document */

.tabs {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: 1em 0 2em;
	font-weight: 300;
}
#tabs nav {
	width:100%;
}

/* Nav */
.tabs nav {
	text-align: center;
}

.tabs nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
}

.tabs nav ul li {
	border: 1px solid #000;
	border-bottom: none;
	margin: 0 0.25em;
	display: block;
	float: left;
	position: relative;
}

.tabs nav li.tab-current {
	border: 1px solid #000;
	box-shadow: inset 0 2px #000;
	border-bottom: none;
	z-index: 100;
}

.tabs nav li.tab-current:before,
.tabs nav li.tab-current:after {
	content: '';
	position: absolute;
	height: 1px;
	right: 100%;
	bottom: 0;
	width: 1000px;
	background: #000;
}

.tabs nav li.tab-current:after {
	right: auto;
	left: 100%;
	width: 4000px;
}

.tabs nav a {
	color: #000;
	display: block;
	font-size: 18px;
	line-height: 2.5;
	padding: 0 1.25em;
	white-space: nowrap;
}

.tabs nav a:hover {
	color: #768e9d;
}

.tabs nav li.tab-current a {
	color: #0089b0;
}


/* Content */
.content section {
	font-size: 1.25em;
	padding: 50px 0px 20px 0px;
	display: none;
	max-width: 1230px;
	margin: 0 auto;
}

.content section:before,
.content section:after {
	content: '';
	display: table;
}

.content section:after {
	clear: both;
}

/* Fallback example */
.no-js .content section {
	display: block;
	padding-bottom: 2em;
	border-bottom: 1px solid #47a3da;
}

.content section.content-current {
	display: block;
}


/* Example media queries */

@media screen and (max-width: 52.375em) {
	.tabs nav a span {
	}

	.tabs nav a:before {
		margin-right: 0;
	}
.tabs nav a {
    color: #000;
    display: block;
    font-size: 16px;
    line-height: 2.5;
    padding: 0px 10px;
    white-space: nowrap;
}
.content {
	clear:both;
	
	display:block;
}
nav ul {
    padding-left: 0 !important;
}
nav ul li a {
    text-transform: capitalize;
}
.tabs nav a {
    padding: 0px 5px;
}

}

@media screen and (max-width: 480px) {
.tabs nav a {
    font-size: 12px;
}
}