@import url("https://fonts.googleapis.com/css?family=Lato:400,700,700italic,900,400italic,300");
* {
    margin: 0px;
    padding: 0px;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: Lato, sans-serif;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #232a2a;
    font-size: 17px;
    line-height: 24px;
    background-color: #ecf0ef;
}
p, ul, ol {
    margin: 10px 0px;
}
a {
    color: #4ab367;
    text-decoration: none;
}
h2 {
    margin-bottom: 35px;
    line-height: 40px;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
.inner {
    overflow: hidden;
    max-width: 960px;
    margin: 0px auto;
}
.area {
    min-height: 600px;
    padding: 55px 120px 60px 120px;
}
.paper {
    position: relative;
    z-index: 99;
    background: white;
    box-shadow: 0 0 8px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.12);
}
#header {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 80px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    background-color: #4ab367;
}
#header .inner {
    position: relative;
}
#header .logo {
    display: inline-block;
    margin-top: 10px;
}
#header .navigation {
    position: absolute;
    left: 375px;
    top: 0;
    line-height: 80px;
}
#header .nav-button {
    display: inline-block;
    line-height: 30px;
    color: white;
    font-size: 17px;
    font-weight: bold;
    margin-right: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    -webkit-backface-visibility: hidden;
}
#header .nav-button:hover {
    color: white;
    border-bottom: 2px solid white;
}
#header .nav-button.selected {
    color: white;
    border-bottom: 2px solid white;
}
#footer {
    line-height: 19px;
    background-color:#fff;
}
#footer .area .col {
    padding:0px;
}
@media only screen and (max-width: 768px), screen and (max-device-width: 768px) {
    #header {
        text-align: center;
    }
    #header .navigation {
        display: none;
    }
    #footer {
        display: none;
    }
    .area {
        padding: 20px;
    }
}
