/* Body */
body {
    margin: 0;
    padding: 0;
}

img { 
    max-width: 100%; 
    height: auto;
}

figcaption {
    display: block;
    font-family: 'Open Sans', 'Lucida Sans';
    font-size:12px;
    margin-top:10px;
    text-align: center;
}

font {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input {
    font-family: "Open Sans", "Lucida Sans";
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 1.1;
}

/* Links */
a:link {
    text-decoration: none;
    color: #000080;
}

a:visited {
    text-decoration: none;
    color: #008080;
}

a:hover {
    color: #FFFFFF;
}

a:active {
    text-decoration: none;
    color: #ffffff;
}

/* Heading */

h1 { 
    display: block;
    font-family: "Open Sans", Verdana, Tahoma, Helvetica;
    font-size: 20px;
    line-height: 1.75;
    color: #000000;
    border: solid 4px;
    border-color: #FFFFFF;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 18px;
    margin-top: 0em;
    margin-bottom: 0.25em;
    margin-left: 0;
    margin-right: 0;
    font-weight: 100;
}

h2 { 
    display: block;
    font-family: "Open Sans", Verdana, Tahoma, Helvetica;
    font-size: 20px;
    line-height: 1.75;
    color: #000000;
    margin-top: 0em;
    margin-bottom: 0.75em;
    margin-left: 0;
    margin-right: 0;
    font-weight: 100;
}

h3 { 
    display: block;
    text-align: left;
    line-height: 1.75;
    font-size: 16px;
    font-family:  "Georgia", "Times New Roman";
    color: #000000;
    margin-top: 1em;
    margin-bottom: 0.5em;
    margin-left: 0;
    margin-right: 0;
    font-weight: 100;
}

h4 { 
    display: block;
    text-align: center;
    line-height: 2;
    font-size: 15px;
    font-family:  "Georgia", "Times New Roman";
    font-style: italic;
    color: #000000;
    margin-top: 1em;
    margin-bottom: 0.5em;
    margin-left: 0;
    margin-right: 0;
    font-weight: 100;
}

caption { 
    display: block;
    text-align: left;
    line-height: 1.5;
    font-size: 10px;
    font-family:  "Arial Narrow";
    color: #000000;
    margin-top: 5em;
    margin-bottom: 5em;
    margin-left: 0;
    margin-right: 0;
    font-weight: 100;
}

/* Dropdown button */
.dropbtn {
    background-color: #ffffff;
    border-radius: 8px;
    color: #000000;
    text-color: #000000;
    padding: 12px;
    font-size: 20px;
    font-family: "Open Sans", "Arial Narrow", "Century Gothic", "Tahoma";
    letter-spacing: 1.1px;
    border: none;
}

/* Container DIV to position dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}
    
/* Dropdown content */
.dropdown-content {
    display: none;
    font-family: "Century Gothic", "Open Sans", "Tahoma";
    text-align: left;
    position: absolute;
    background-color: #82a0cc;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
    min-width: 200px;
    max-width: 400px;
    z-index: 20;
}

/* Links within dropdown */
.dropdown-content a {
    color: #12256b;
    padding: 4px 4px;
    text-decoration: none;
    font-size: 15px;
    font-family:  "Century Gothic", "Tahoma";
    display: block;
}

/* Change appearance of dropdown links on hover */
.dropdown-content a:hover {background-color: #5779ab;}
.dropdown-content a:hover {color: #ffffff;}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change background color of dropdown button when dropdown content is shown */
.dropdown:hover .dropbtn {background-color:#66E4BC; t:#ffffff;}

}