/* Tab container */
.tabulaWrap {
	display:block;
    display:flex;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
	justify-content:space-between;
	margin:40px 0 3px;
}
.tabula.right .tabulaWrap{
    width:25%;
    border-left: 5px solid #aaaaaa;
    border-bottom:none;
}
.tabula.left .tabulaWrap{
    width:25%;
    border-right: 5px solid #aaaaaa;
    border-bottom:none;
}
.tabula.bottom .tabulaWrap{
    border-top: 5px solid #aaaaaa;
    border-bottom:none;
}

/* Tabs */
.tabula.top .tabulaTab:first-child, .tabula.bottom .tabulaTab:first-child {
    margin-left: 0;
}
.tabula.left .tabulaTab:first-child, .tabula.right .tabulaTab:first-child {
    margin-top: 0;
}
.tabulaTab {
	font-size:26px;
	line-height:1em;
	border-radius:3px;
}
.tabula.left .tabulaTab, .tabula.right .tabulaTab {
    margin: 5px 0px;
    box-sizing: border-box;
    width: 100%;
}
.tabulaTab.active{
	position:relative;
background: #3f3f3f; /* Old browsers */
background: -moz-linear-gradient(top, #3f3f3f 0%, #595959 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #3f3f3f 0%,#595959 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #3f3f3f 0%,#595959 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f3f3f', endColorstr='#595959',GradientType=0 ); /* IE6-9 */
}
.structLeft .tabulaTab a{
    color:#858585;
    text-decoration:none;
	 padding: 8px 11px;
	 display:block;
	 webkit-transition: all 250ms ease;-moz-transition: all 250ms ease;-ms-transition: all 250ms ease;-o-transition: all 250ms ease;transition: all 250ms ease;
}
.tabulaTab.active a{
    color:#ffffff;
}
.tabulaTab.active > a::after {
    bottom: -14px;
    color: #595959;
    content: "\f0d7";
    font-family: fontawesome;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}


/* Container linked to tabs */
.tabContainer{
    display:none;
	border:1px solid #ddd; border-radius:4px; overflow:hidden; padding:10px;
}
.tabContainer.facebookWrap {padding:0; border-radius:0;}
.tabContainer.instaWrap {padding:0;}
.tabula.left .tabContainer, .tabula.right .tabContainer{
    width:75%;
}
.tabContainer.active{
    display:block;
}