
#animatedTabs .tabs {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	font-weight: 300;
	font-size: 1.25em;
}

/* Nav */
#animatedTabs .tabs nav {
	text-align: center;
}

#animatedTabs .tabs nav ul {
	position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	margin: 0 auto;
	padding: 0;
	max-width: 1200px;
	list-style: none;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#animatedTabs .tabs nav ul li {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0;
	text-align: center;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#animatedTabs .tabs nav a {
	position: relative;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 2.5;
	text-decoration: none;

}

#animatedTabs .tabs nav a span {
	vertical-align: middle;
}

#animatedTabs .tabs nav li.tab-current a {
	color: #74777b;
}

#animatedTabs .tabs nav a:focus {
	outline: none;
}

/* Content */
#animatedTabs .content-wrap {
	position: relative;
}

#animatedTabs .content-wrap section {
	display: none;
	padding: 1em;
}

#animatedTabs .content-wrap section.content-current {
	display: block;
}

#animatedTabs .tabs-style-line nav ul {
	max-width: none;
	/*box-shadow: inset 0 -2px #979797;*/
}

#animatedTabs .tabs-style-line nav a {
	padding: 15px 10px;
	box-shadow: inset 0 -1px #979797;
	color: #3494C1;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	line-height: 2;
	-webkit-transition: color 0.3s, box-shadow 0.3s;
	transition: color 0.3s, box-shadow 0.3s;
	text-align: center;
	cursor: pointer;
}
#animatedTabs .tabs-style-line nav li.tab-current a,
#animatedTabs .tabs-style-line nav a:hover,
#animatedTabs .tabs-style-line nav a:focus {
	box-shadow: inset 0 -3px #D5D900;
	color: #3494C1;
}


@media screen and (max-width: 58em) {
	#animatedTabs .tabs-style-line nav ul {
		box-shadow: none;
	}
}




