article.tabs
{
	position: relative;
	display: block;
	width: 755px;
	height: 550px;
	margin: 2em auto;
}
article.tabs section
{
	position: absolute;
	display: block;
	top: 1px;
	left: 0;
	height: 530px;
	
	background-color: #ddd;
	border-radius: 5px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.1);
	z-index: 0;
}
article.tabs section:first-child
{
	z-index: 1;
}
article.tabs section h2
{
	position: absolute;
	font-size: 1em;
	font-weight: normal;
	width: 250px;
	display: block;
	height: 1.8em;
	top: -1.8em;
	left: 10px;
	padding: 0;
	margin: 0;
	color: #fff;
	background-color: #157DC0;
	border-radius: 5px 5px 0 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
    
}

article.tabs section:nth-child(2) h2
{
	left: 264px;
}

article.tabs section:nth-child(3) h2
{
	left: 518px;
}

article.tabs section h2 a
{
	display: block;
	width: 85%;
	line-height: 1.8em;
	text-align: center;
	text-decoration: none;
	color: inherit;
	outline: 0 none;
}
article.tabs section:target,
article.tabs section:target h2
{
	color: #157DC0;
	background-color: #DDDDDD;
	
}
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;
}