h4{
	color: black;
	font-size: 14pt;
	font-weight: normal;
	margin-left: 50px;
	margin-right: 50px;
	text-align: justify;
	font-family: calibri;
}
h3{
	font-size: 18pt;
	font-weight: strong;
	text-align: center;
	font-family: calibri;
	color: #015D93;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
}
.lbl-menu{
    background: #015D93;
}
.lbl-menu label{
    display: inline-block;
	width: 13.5%;
	height: 7%;
    padding: 5px;
    color: #ffffff;
    cursor: pointer;
    transition: all 400ms ease;
	font-size: 14px;
	font-weight: strong;
	margin-right: auto;
	margin-left: 5px;
	text-align: center;
	border: 1px solid #ccc;
}
.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: #ffffff;
    padding-bottom: 40px;
}
#radio1,#radio2,#radio3,#radio4,#radio5,#radio6,#radio7{
    display: none;
}
#radio1:checked ~ .tab1,
#radio2:checked ~ .tab2,
#radio3:checked ~ .tab3,
#radio4:checked ~ .tab4,
#radio5:checked ~ .tab5,
#radio6:checked ~ .tab6,
#radio7:checked ~ .tab7
{
    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: 300%;
    left: 50px;
}
.content .tab2:after{
    left: 50px;
}
.content .tab3:after{
    left: 122px;
}
.content .tab4:after{
    left: 210px;
} 
.content .tab5:after{
    left: 350px;
}
.content .tab6:after{
    left: 400px;
}
.content .tab7:after{
    left: 450px;
}  
.table {
	margin: auto;
}
.content-table {
    border-collapse: collapse;
    margin: auto;
    font-size: 0.9em;
    min-width: 200px;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.60);
}

.content-table thead tr {
    background-color: #015D93;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
	border-bottom: 4px solid #dddddd;
	border-right: 4px solid #dddddd;
	border-left: 4px solid #dddddd;
}

.content-table tbody tr {
    border-bottom: 4px solid #dddddd;
	border-right: 4px solid #dddddd;
	border-left: 4px solid #dddddd;
	
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 6px solid #dddddd;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}