body {
    font-size: 100%;
}

header {
    padding: 1.5em;
}

#bodyDiv {
    width: 90%;
    position: absolute;
    left: 5%;
    top: 5%;
}

#headerDiv {
    background-color: #ffffff;
}

#contentDiv {
    background-color: #ffffff;
}

#footerDiv {
    display: flex;
    flex-flow: row nowrap;
    background-color: #177ed3;
    color: white;
    font-size: 1.1vw;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 5%;
}

#footerDiv a {
    color: white;
    text-decoration: none;
}

#contactDiv {
    padding: 10px;
    flex-grow: 1;
    display: inline-block;
}

#socialDiv {
    flex-grow: 1;
    display: inline-block;
    padding: 10px;
    text-align: right;
}

#navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}

.titleLi {
    text-align: left; 
    background: #ffffff;
}

.linkLi {
    justify-content: center;
}

#emptyLi {
    flex-grow: 1;
}

#navigation a {
    white-space: nowrap;
    text-decoration: none;
    display: block;
    padding: 1em;
    color: white;
    background: #177ed3;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.3vw;
}

#navigation a:hover {
    background: #176ec3;
}

#titleMain {
    color: #177ed3;
    white-space: nowrap;
    font-weight: bold;
    font-size: 2.2vw;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#titleSub {
    color: #177ed3;
    white-space: nowrap;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
    font-size: 1.2vw;
    width: 100%;
    text-align: center;
    display: inline-block;
    font-style: italic;
}

#menuDiv {
    width: 100%;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #177ed3;
    min-width: auto; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    white-space: nowrap;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {display: block;}

.dropdown-content a:hover { background-color: #176ec3; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.9vw;
}

header p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.3vw;
}