/*  custom-tabs.css */
.tablist{
	width: 100%; margin: 0em 0em; padding: 0em 0em;
	padding-bottom: 0.5em; position: relative;
}

.tablist .tabs__header{
	width: 99%; margin: 0em 0em; padding: 0.1em 0.1em;
	/*text-align: left;*/ text-align: center;
	background-color: #fb0; cursor: pointer;
}

.tablist .tabs__header .tab__title{
	display: inline-block; color: #323232; background-color: #fb0; /*border: 1px solid #323232;*/ padding: 0.2em 0.5em ; margin: 0em 0em;
	    margin-right: -0.25em;
}

.tablist .tabs__header .tab__title.active{
	background-color: #fff; color: #fb0; /*border: 0px solid #fff;*/ font-weight: bolder;
}

.tablist .tabs__header .tab__title:hover{
	background-color: #fff; color: 323232;
}

.tablist .tabs__content__all{
	width: 100%; margin: 0em 0em; padding: 0.3em 0.3em;
	/*border-radius: 0.3em; -moz-border-radius: 0.3em; -webkit-border-radius: 0.3em; -o-border-radius: 0.3em;
	border:1px solid #323232; */
	position: relative; display: block; float: none; height: auto; overflow: hidden;
}

.tablist .tabs__content__all .tab__content{
	display: none; float: none; color: #121212; text-align: center;
	/*position: absolute; top: 0.1em; left: 0.1em; width: 99%;*/
}

.tablist .tabs__content__all .tab__content.active{
	display: block;
}

