@charset "UTF-8";
/* Simplify width and height calculations */
html {box-sizing: border-box;
}
body {
    color: #282829;
    font-family: "Futura Medium", "Gill Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    font-size: 1.0em;
    text-align: left;
    background-color: #FFFFFF;
    margin: 0;
}
#wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
    background-color: white;
}
#logo figure img {
    width: 20%;
    display: block;
    float: left;
    max-width: 1000px;
    min-width: 200px;
    border: 10px double #FFFFFF;
}
h1 {
    text-align: left;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #3b54a5;
    font-size: 2.5em;
    padding-left: 5px;
}
header h1 a:visited {
    color: #99c355;
    text-decoration: none;    
}
header h1 a:hover {
    color: #e6e7e8;
    text-decoration: none;    
}
a {
    font-weight: bold;
    text-decoration: none;
}
a:link {
    color: #99c355;
}
a:visited {
    color: #809481;
}
a:hover {
    color: #e6e7e8;
}
#menulink {
    margin-top: 0;
    margin-right: 25px;
    margin-bottom: 0;
    padding-right: 10px;
    text-align: right;
    background-color: #99c355;
}
#menulink a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding-top: 0.1em;
    padding-bottom: 0.1em;
    text-align: right;
    font-family: "Futura Medium", "Gill Sans", sans-serif;
    font-style: normal;
}
#navlinks {
    width: 100%;
    display: block;
    position: relative;
    right: 50px;
    margin-right: 25px;
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 25px;
    padding-bottom: 10px;
    text-align: right;
    list-style-type: none;
    background-color: #363436;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
}
#navlinks.displayed {
    z-index: 1;
    opacity: 1;
}
#navlinks.start {
    display: none;
}
#navlinks.collapsed {
    top: -25;
    opacity: 0;
}
main {
    width: 60%;
    min-width: 400px;
    max-width: 1000px;
    
}
aside {
    width: 40%;
    padding-bottom: 100px;
}
main, aside {
    float: left;
}
h1, h2 {
    text-transform: uppercase;
    color: #99c355;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    text-decoration: none;
}
main figure img {
    top: 100px;
    width: 100%;
    min-width: 25%
}

@media (max-width:850px){
aside {
    margin-left: 25px;
    position: relative;
    right: -20px;
    width: 80%;
}
h1 {
    margin-left: 25px;
}
}
