@charset "utf-8";
/* CSS Document */
body{
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}
nav ul{
	list-style-type: none;
	display: block;
	margin-left: 10px;
	padding: 0;
	background-color: none;
	text-align: center;
}
nav li{
	padding-right: 50px;
	padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	display: inline-block;
}
nav li a:hover{
	color: #DE1F26;
}
a{
	text-decoration: none;
	color:#396AB3;
}
section{
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
}
.article-g{
	margin: 10px;
	padding: 5px;
	width: 351px;
	max-height:inherit;
	border-bottom: 4px solid #396AB3;
}
.article-a{
border-bottom:4px solid #DE1F26;
	margin: 10px;
	padding: 5px;
	width: 351px;
	max-height:inherit;
}
.article-l{
border-bottom:4px solid #0BAA4B;
	margin: 10px;
	padding: 5px;
	width: 351px;
	max-height:inherit;
}
.article-e{
	margin: 10px;
	padding: 5px;
	width: 351px;
	max-height:inherit;
	border-bottom: 4px solid #F7941D;
}
.logos{
	display: flex;
	justify-content:space-between;
	flex-flow: wrap;
}
.logo1{
	margin-left: 40px;
	margin-top: 20px;
	max-width:100%;
	max-height: auto;
}
.logo2{
	margin-right: 20px;
	margin-top: 20px;
	max-width:100%;
	max-height:auto;
}
footer{
	text-align:center;
	clear:both;

}
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color:#396AB3;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}