/* 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: #265F55;
}

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

a:hover {
    color: #F7F757;
}

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

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

/*Custom caption */
.captioner { 
    display: block;
    text-align: center;
    font-size: 12px;
    font-family: "Open Sans";
    color: #000000;
    font-weight: 100;
}

.describer { 
    display: block;
    text-align: left;
    font-size: 13px;
    margin-top: 1em;
    line-height: 150%;
    font-family: "Open Sans";
    letter-spacing: 1.1;
    color: #000000;
    font-weight: 100;
}

p { 
    display: block;
    font-family:  "Open Sans"; "Calibri", "Verdana";
    font-size: 16px;
    line-height: 1.25;
    color: #000000;
    margin-top: 0em;
    margin-bottom: 0.75em;
    margin-left: 0;
    margin-right: 0;
    font-weight: 100;
}

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

h2 { 
    display: block;
    font-family:  "Calibri", "Verdana";
    font-size: 18px;
    line-height: 1.25;
    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;
}

/* Blockers */
.blocktext {
    width: auto;
    border: solid #efefef;
    border-style: dotted;
    border-top-width: 10px;
    border-left: none;
    border-right: none;
    border-bottom-width: 10px;
    font-family: "Georgia", "Times New Roman";
    font-style: italic;
    font-size: 36px;
    font-align:center;
    position: relative;
    line-height: 1.5;
    color: #40619e;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 20px 20px;
}

.blockline {
    width: auto;
    border: solid #efefef;
    border-style: dotted;
    border-top-width: 10px;
    border-left: none;
    border-right: none;
    border-bottom:none;
    font-family: "Georgia", "Times New Roman";
    font-style: italic;
    font-size: 10px;
    font-align:center;
    position: relative;
    line-height: 1.5;
    color: #40619e;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 20px 20px;
}

/* Dropdown button */
.dropbtn {
    background-color: #ffffff;
    border-radius: 8px;
    color: #000000;
    text-color: #000000;
    padding: 12px;
    font-size: 18px;
    font-family: "Arial Narrow", "Century Gothic", "Open Sans", "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:#fabb87; color:#ffffff;}

}