
.tabh
{
	position: relative;
	margin: 0px;
	padding: 0px;
	display: block;
	width: 97.8%; 
	overflow: hidden;
	border-bottom: 1px dotted var(--color2);
}

.tabh > span {
	position: absolute;
	right: 0;
	line-height: 30px;
	display: none;
}

.tabh > ul {
	list-style: inside none;		
	width:100%;
	display: inline;	
	padding: 0px;
	margin: 0px;

}
.tabh > ul > li {
	list-style:inside none;	
	float:left;
	color: #888;
	background-color: var(--dashbox-B);
	height: 30px;
	padding: 0px 10px 0px 10px;	
	font-size: 16px;
	border-top-right-radius: 16px;
	border-top-left-radius: 5px;
	box-sizing: border-box;
	line-height: 30px;
	border: 1px solid var(--dropdown-border); 
	border: none;
	user-select: none; 
	font-weight: 300;
}

.tabh > ul > li:hover
{
	cursor: pointer;
	background-color: #00cd78;
	color: #fff;
	
	-web-kit-transition:  color 0.5s ease;
	-moz-transition:  color 0.5s ease;
	-o-transition:    color 0.5s ease;
	 transition:   color 0.5s ease;
}

.tabh > ul > li.s
{
	color: #FFF;
	background:	var(--color2); 
	border-top-right-radius: 16px;
	border-top-left-radius: 5px;
	border-bottom: none;
	transition:   background-color 0.2s ease;
}

.tabc {
	display: none;
	display: block;
}