@charset "UTF-8";
/* CSS Document */

.c-tabs {
	text-align: center;
}
.c-tabs__item {
	display: inline;
}
.c-tabs__link { 
	display: inline-block;
	color: #999;
	text-decoration: none;
	/*padding: 1rem 1.5rem;*/
	background: rgb(204,204,204);
	background: -moz-linear-gradient(top,  rgba(204,204,204,1) 0%, rgba(238,238,238,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(204,204,204,1) 0%,rgba(238,238,238,1) 100%);
	background: linear-gradient(to bottom,  rgba(204,204,204,1) 0%,rgba(238,238,238,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#eeeeee',GradientType=0 );
	width: 16.07%;
	border-radius: 4px 4px 0 0 / 4px 4px 0 0;
	line-height: 3.5rem;
	font-size: 1.4rem;
	text-shadow: #fff 0 1px 0;
}

.c-tabs__link.is-active {
	background: rgb(1,64,153);
	background: -moz-linear-gradient(top,  rgba(1,64,153,1) 0%, rgba(8,85,193,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(1,64,153,1) 0%,rgba(8,85,193,1) 100%);
	background: linear-gradient(to bottom,  rgba(1,64,153,1) 0%,rgba(8,85,193,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#014099', endColorstr='#0855c1',GradientType=0 );
	color: #fff;
	text-shadow: #022759 0 -1px 0;
}

.c-tabs__content {
	display: none;
	width: 95%;
	/* float: left; */
	padding: 0 1.5rem 1.5rem 1.5rem;
	box-sizing: border-box;
	border-radius: 10px;
	border: solid 1px #004098;
	box-shadow: #004098 0 4px 0;
	padding: 2.5rem;
	margin: 0 auto 3rem auto;
	background-color: #fff;
}

@media screen and (max-width: 800px) {
	.c-tabs__link { 
		width: 16%;
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 736px) {
	.c-tabs {
		margin: 0 0 1.5rem 0;
	}
	.c-tabs__link { 
		display: block;
		width: 100%;
		border-radius: 0;
	}
	.c-tabs__content {
		padding: 1.5rem;
		border-radius: 0;
		background: #fff;
		box-shadow: none;
		margin: 0 auto;
	}
}

.c-tabs {
	/* background: #fff; */
	overflow: hidden;
	margin-top: 2rem;
}

