body {
    font-size: 12px;
    font-family: Verdana, Arial, sans-serif;
}

div.container {
    box-sizing: border-box;
    max-width: 108em;
    margin-left: auto;
    margin-right: auto;
}

.main-header{
}

.main-header ul {
    list-style: none;
}

.blue-nav-bar {
    background-color: #0063BE;
    overflow: auto;
}

.blue-nav-bar nav {
    float: right;
}

.blue-nav-bar nav ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.blue-nav-bar nav ul li {
    display: inline;
    padding-right: 1.5em;
}

.blue-nav-bar nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: normal;
}

.blue-nav-bar nav ul li.active-country a {
    color: #c2d9ef;
    font-weight: bold;
}

.active-country:before {
    content: "|";
    display: inline-block;
    margin: 0 1em 0 0;
    color: #FFFFFF;
    font-weight: bold;
}

.mod-white-nav-bar {
    background-color: #F7FBFE;
    overflow: auto;
}

.mod-white-nav-bar table.layout-table {
    width: 100%;
    table-layout: auto;
}

.mod-white-nav-bar table.layout-table td {
    padding: 0.5em 1.5em;
}

.mod-white-nav-bar table.layout-table td.image-cell{
    text-align: left;
}

.mod-white-nav-bar table.layout-table td.image-cell img{
    width: 211px;
}

.mod-white-nav-bar table.layout-table td.navigation-cell{
    vertical-align: bottom;
    text-align: right;
}

.mod-white-nav-bar table.layout-table td.navigation-cell>ul {
    margin: 0;
}

.mod-white-nav-bar table.layout-table td.navigation-cell>ul li {
    display: inline;
    padding-left: 0.5em;
}

.mod-white-nav-bar table.layout-table td.navigation-cell>ul li:after {
    content: '|';
    padding-left: 0.5em;
    color: #939ba2;
    font-size: 1.4em;
}

.mod-white-nav-bar table.layout-table td.navigation-cell>ul li:last-child:after {
    content: '';
    padding: 0;
}

.mod-white-nav-bar table.layout-table td.navigation-cell>ul li a {
    color: #0063be;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

div.main-body {
    overflow: auto;
    background-color: #F7F7F7;
    padding: 1.5em;
    width: 100%;
    box-sizing: border-box;
}

div.main-body div.pages-menu {
    float: left;
    background-color: white;
    width: 18%;
    box-sizing: border-box;
}

div.main-body div.pages-menu div {
    border-bottom: solid #F7F7F7 2px;
    padding: 1em;
}

div.main-body div.pages-menu div a {
    color: #656C76;
    text-decoration: none;
}

div.main-body div.page-content {
    float: right;
    background: #DFE8EF;
    width: 80%;
    box-sizing: border-box;
}

div.footer {
    display: flex;
    justify-content: space-between;
    gap: 3em;
    padding: 1em;
}

div.footer div.copyright {
    display: flex;
    flex-shrink: 0;
}

div.footer div.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: 1em;
    row-gap: 0.5em;
}

div.footer div.footer-nav a {
    color:#000;
    text-decoration: none;
    font-weight: normal;
    text-align: right;
}

div.footer div.footer-nav a:hover {
    text-decoration: underline;
}