
.tabmenu {
	position: relative;
	width: 100%;
	font-size: 0;
}

.tabmenu input[type="radio"] {
	display: none;
}

.tabmenu input[type="radio"] + em {
	position: absolute;
	z-index: 100;
	display: inline-block;
	line-height: 30px;
	min-width: 80px;
	width: 48%;
	-webkit-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	line-height: 40px;
	cursor: pointer;
	top: 0px;
}


.tabmenu .tabContents {
	position: absolute;
	top: 40px;
	left: 0;
	display: block;
	padding: 10px 10px;
	width: 100%;
	height: 260px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	
	overflow: auto;
}

.tabmenu input[type="radio"] + em ~ .tabContents {
	display: none;
}

.tabmenu input[type="radio"]:checked + em ~ .tabContents {
	display: block;
}

/*---------------------------------------------------*/


.tabmenu input[type="radio"] + em.tab1{
	background: #E82736;
	color: #FFF;
	left: 2%;
}

.tabmenu input[type="radio"] + em.tab2{
	background: #f9f13a;
	color: #0068b7;
	left: 51%;
}

.tabmenu .tabBox1{
	border: 5px solid #E82736;
	background:#fff;
}

.tabmenu .tabBox2{
	border: 5px solid #f9f13a;
	background:#fff;
}


@media screen and (max-width : 959px) {


.tabmenu {
	height:285px;
}
.tabmenu .tabContents {
	padding:0;
}


}

