article.tabs
{
	position: relative;
	display: block;
	width: 100%;
	margin: 0em auto;
}
article.tabs section
{
	position: absolute;
	display: block;
	top: 2.5em;
	left: 0;
	right: 0;
	padding: 10px 20px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.1);
	z-index: 0;
	color: black;
}
article.tabs section .tab-content 
{
	display: none;
}
article.tabs section:last-child
{
	z-index: 1;
	color: #333;
	background-color: #fff;
    height:auto;
}
article.tabs section:last-child .tab-content
{
	display: block;
}
article.tabs section h2
{
	position: absolute;
	font-size: 1em;
	font-weight: normal;
	width: 120px;
	height: 1.8em;
	top: -1.8em;
	left: 10px;
	padding: 0;
	margin: 0;
	color: #000;
	background-color: #fff;
	border-radius: 5px 5px 0 0;
}
article.tabs section:last-child h2
{
	color: #333;
	background-color: #fff;
}
article.tabs section:nth-child(1) h2
{
	left: 138px;
	color: #fff;
	background-color: #0067ab;
}

article.tabs section:nth-child(2) h2
{
	left: 265px;
	color: #fff;
	background-color: #0067ab;
}
article.tabs section:nth-child(3) h2
{
	left: 392px;
	color: #fff;
	background-color: #0067ab;
}
article.tabs section:nth-child(4) h2
{
	left: 519px;
	color: #fff;
	background-color: #0067ab;
}
article.tabs section:nth-child(5) h2
{
	left: 646px;
	color: #fff;
	background-color: #0067ab;
}
 
article.tabs section h2 a
{
	display: block;
	width: 100%;
	line-height: 1.8em;
	text-align: center;
	text-decoration: underline;
	color: inherit;
	outline: 0 none;
}
article.tabs section:target,
article.tabs section:target h2
{
	color: #333;
	background-color: #fff;
	z-index: 2;
}
article.tabs section:target .tab-content
{
	display: block;
}
article.tabs section:target ~ section:last-child h2
{
	color: #fff;
	background-color: #0067ab;
}
article.tabs section:target ~ section:last-child .tab-content
{
	display: none;
}
article.tabs section,
article.tabs section h2
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}