/* CSS Document */
.amb-tabs {
	width: 100%;
	margin-top:35px;
}
.amb-tabs > div > a, .amb-tabs > div > label {
	text-decoration: none;
	color: black;
	background: white;
	display: block;
	height:40px;
	line-height:40px;
	padding:0 15px;
	border: 1px solid #ccc;
	border-bottom: 1px solid white;
	border-top-left-radius:2px;
	border-top-right-radius:2px;
	background: -moz-linear-gradient(top, white, #eee);
	cursor:inherit;
	font-weight: normal;
	margin: 0;
}
.amb-tabs > div > div {
	background: white;
	padding: 20px;
	border: 1px solid #ccc;
	border-top:none;
	margin-top:-1px;
	margin-bottom:15px; 
	overflow:auto;
}

@media screen and (min-width: 900px) {
.amb-tabs {
	position: relative;
	height:450px;
}
.amb-tabs > div {
	display: inline;
}
.amb-tabs > div > a, .amb-tabs > div > label {
	margin-left: -1px;
	position: relative;
	left: 1px;
	float: left;
	z-index:3;
	cursor:pointer;
	border-bottom: 2px solid #666;
}
.amb-tabs > div:not(:target) > a, .amb-tabs input[type=radio]:not(:checked) + div > label {
	background: -moz-linear-gradient(top, white, #eee);
	height:35px;
	line-height:35px;
	margin-top:5px;
}
.amb-tabs > div:target > a, .amb-tabs input[type=radio]:checked + div > label {
	background: white;
	border-top:2px solid #666;
	border-bottom: none;
}

.amb-tabs > div > div {
	z-index: 0;
	min-height: 350px;
	overflow:auto;
	left: 0;
	top: 40px;
	bottom: 0;
	right: 0;
	padding: 20px;
	margin-top:-2px;
	border: 1px solid #ccc;
	border-top: 2px solid #666;
	border-bottom-color: #666;
}
.amb-tabs > div:first-child > div {
	z-index: 1;
}
.amb-tabs > div:not(:target) > div, .amb-tabs input[type=radio]:not(:checked) + div > label + div {
	position: absolute;
}
.amb-tabs > div:target > div, .amb-tabs input[type=radio]:checked + div > label + div {
	position: absolute;
	z-index: 1;
}
}