
.container{
    width: 100%;
    max-width: 961px;
    margin: auto;
    margin-top: 60px;
}
.lbl-menu{
    background: #015D93;
}
.lbl-menu label{
    display: inline-block;
    padding: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: all 400ms ease;
	font-size: 18px;
	margin-right: 100px;
	margin-left: 35px;
}
.lbl-menu label:hover{
    background: #48A1D6;
}
.content{
    position: relative;
}
.content div{
    position: absolute;
    line-height: 1.8;
    transition: all 600ms ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.90);
    padding: 30px;
    background: #ebebeb;
    padding-bottom: 40px;
}
#radio1,#radio2,#radio3,#radio4{
    display: none;
}
#radio1:checked ~ .tab1,
#radio2:checked ~ .tab2,
#radio3:checked ~ .tab3,
#radio4:checked ~ .tab4
{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.content div:after{
    position: absolute;
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #fff;
    bottom: 200%;
    left: 200px;
}
.content .tab2:after{
    left: 122px;
}
.content .tab3:after{
    left: 210px;
}
h3{
	font-size: 18pt;
	font-weight: strong;
	text-align: center;
	font-family: calibri;
	color: #015D93;
}