/* CSS Document */


.tabset {
	width:100%;
	height:50px;
	background-color:#F1F1F1;
}

.tabpage {
	width:25%;
	background-color:#F1F1F1;
	float:left;
	display:flex;
	align-items:center;
	justify-content:center;
	border-top:thin #666 solid;
}


.tabpage.deselected {
	border-bottom:thin #666 solid;
	height:50px;
	border-top:none;
	
}
.tabpage.selected {
	height:40px;
	margin-top:10px;
	background-color:#FFF;
	border-color:#666;
	border-width:medium;
	border-style: solid;
	border-bottom:none;
	border-top:thin #666 solid;
	border-left:thin #666 solid;
	border-right:thin #666 solid;
	border-radius:10px 10px 0px 00px;
	color:#039;
}

