/*
      PlainMacaron.com v1_3

      by Ryan E. Anderson

      Copyright (C) 2014–2016 Plain Macaron
*/

/*    ---------------
          general    
      ---------------    */

@font-face {
    font-family: 'OpenSans';
    src: url('../ttf/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('../ttf/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('../ttf/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

body {
    width : 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    color: #FFF;
    background-color: #3B4D50;
    font: 16px/100% 'OpenSans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

main, article, section, header, footer, nav {
    display: block;
}

hr {
    width: 100%;
    border-bottom: 0;
}

h1, h2, h3,
h4, h5, h6 {
    display: inline-block;
    width: 100%;
    margin: 0.5em 0;
}

h1 {
    font-size: 1.75em;
    line-height: normal;
}

h2 {
    font-size: 1.5em;
    line-height: normal;
}

h3 {
    font-size: 1.35em;
    line-height: normal;
}

h4 {
    font-size: 1.25em;
    line-height: normal;
}

h5 {
    font-size: 1.0em;
    line-height: normal;
}

h6 {
    font-size: 0.85em;
    line-height: normal;
}

label {
    cursor: pointer;
}

a {
    color: #283437;
    border: 1px dotted transparent;
}

a:link {
    color: #283437;
}

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

a:hover {
    color: #283437;
    border: 1px dotted #283437;
}

a:active {
    color: #283437;
    border: 1px dotted #283437;
}

p {
    display: inline-block;
    line-height: 1.4em;
}

li {
    line-height: 1.6em;
}

pre {
    display: block;
}

code {
    display: block;
    font-family: monospace;
}

iframe {
    width: 100%;
    height: 160px;
}

/*    -------------------
          end general        
      -------------------    */

/*    ---------------
          classes    
      ---------------    */

.demo-control {
    display: block;
    width: 100%;
}

.control-demo-group {
    width: 100%;
}

.notification-mask {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
    z-index: 999;
}

.notification-container {
    position: fixed;
    left: 50%;
    top: 50%;
    display: none;
    float: left;
    padding: 15px;
    background-color: #ACDDEA;
    z-index: 99999;
}

.notifier-mouseover-demo {
    width: calc(100% - 2px);
    text-align: center;
    border: 1px dashed #283437;
}

.notifier-click-demo {
    width: 100%;
}

.notifier-click-demo button {
    padding: 5px;
    background-color: #edc6d3;
    color: #3a3034;
    border: 1px solid #3a3034;
    cursor: pointer;
}

.notifier-dblclick-demo {
    width: 100%;
    float: left;
    clear: right;
    background-color: #ed9c73;
}

.notifier-dblclick-demo p {
    padding-left: 16px;
}

.notifier-change-demo {
    width: 100%;
}

.notifier-change-demo label {
    margin-right: 16px;
}

.notifier-change-demo select {
    background-color: #7486b7;
    border: 1px solid #232937;
}

.notifier-submit-demo {
    width: 100%;
}

.notifier-submit-demo label {
    margin-right: 8px;
}

.notifier-submit-demo input[type="number"] {
    margin-right: 8px;
}

.notifier-submit-demo input[type="submit"] {
    padding: 2px;
    color: #33281b;
    background-color: #9d7854;
    border: 1px solid #33281b;
    cursor: pointer;
}

@media (max-width: 768px) {
    .notification-container {
        left:0;
        right: 0;
    }
}

.notification-message {
    display: block;
    float: left;
    width: 100%;
}

.notification-close {
    display: block;
    float: right;
}

hr.separator {
    border-top: 1px solid #283437;
}

.expand {
    list-style-image: url('../png/Expand-Icon.png');    
}

.collapse {
    list-style-image: url('../png/Collapse-Icon.png');    
}

.empty {
    list-style-image: url('../png/Empty-Icon.png');    
}

.no-icon {
    list-style-image: none; 
}

.control-list {
    display: block;
}

.control-list > li > ol {
    display: none;
}

.control-list > li > ul {
    display: none;
}

.control-list > li > ul > li {
    width: 100%;
}

.control-list > li > ol > li > p {
    margin: 0;
}

.control-list > li > ol > li > p.release-date {
    display: inline;
    font-style: italic;
}

.demo-list li div div {
    display: none;
}

.option-list,
.demo-list {
    display: none;
}

.option-list > li {
    word-wrap: break-word;
}

.code {
    display: none;
    overflow: auto;
    color: #FFF;
    background-color: #3B4C50;
}

.form-wrapper {
    position: relative;
    width: 64%;
}

.form-row {
    padding-bottom: 10px;    
}

.form-label {
    display: inline-block;
    width: 30%;
    padding-bottom: 10px;
    white-space: nowrap;
    font-weight: bold;
}

.textarea-label {
    padding-top: 5px;
    vertical-align: top;
}

.required {
    position: relative;
    top: 2px;
    right: 16px;
    display: inline-block;
    color: #FF0000;
    vertical-align: top;
}

.form-button {
    padding: 5px 15px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    color: #FFF;
    background-color: #283437;
    border: none;
}

.text-field {
    padding: 5px;
    font-weight: bold;
    font-family: inherit;
    color: #283437;
    border: none;
}

.form-row .text-field {
    width: 60%;
}

.form-row textarea {
    height: 160px;
}

.submit {
    width: calc(90% + 15px);
    text-align: right;
}

.response {
    display: inline-block;
}

.response ol {
    display: block;
    margin: 0 0 0 1.0em;
}

.response ol li {
    line-height: 1.6em;
}

@media (max-width: 768px) {
    .form-wrapper {
        width: 100%;
    }

    .form-label {
        width: 100%;
    }

    .form-row {
        position: relative;
    }

    .form-row .text-field {
        width: calc(100% - 10px);
        padding: 8px 5px;
    }

    .textarea-label {
        padding-top: 0;
    }

    .required {
        position: absolute;
        top: 34px;
        right: 4px;
    }

    .submit {
        width: 100%;
    }
}

.fine-print {
    font-family: 'OpenSans', Geneva, Verdana, "Verdana Ref", sans-serif;
}

a.current {
    border: 1px dotted #283437;
    text-decoration: none;
}

/*    -------------------
          end classes        
      -------------------    */

/*    ----------------------
          general layout
      ----------------------    */

div#wrapper {
    width: 70%;
    margin: 0 auto;
    color: #283437;
    background-color: #ACDDEA;
}

@media (max-width: 768px) {
    div#wrapper {
        width: 100%;
    }
}

/*    header    */

div#header-container {
    width: 100%;
    background-color: #3B4D50;
}

div#header-content {
    display: block;
    padding: 8px 16px;
}

div#header-content a {
    display: block;
}

img#logo {
    position: relative;
    display: block;
    width: 70%;
}

@media (max-width: 768px) {
    div#header-content {
        margin-top: 128px;
    }

    img#logo {
        width: 100%;
    }
}

/*    navigation    */

ul#navigation {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
    text-transform: uppercase;
}

ul#navigation li {
    display: inline-block;
    padding: 10px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    ul#navigation li {
        width: 100%;
        padding: 10px 0;
    }
}

ul#navigation li a {
    display: inline-block;
    padding: 0 8px;
}

ul#navigation li a:link,
ul#navigation li a:visited,
ul#navigation li a:hover,
ul#navigation li a:active {
    text-decoration: none;
}

/*    main    */

main#main-content {
    padding: 0 15px;
}

/*    footer    */

div#footer-container {
    padding: 15px;
    text-align: center;
}

/*    --------------------------
          end general layout
      --------------------------    */

/*    ---------------
          content    
      ---------------   */

/*    home    */

div#notifier {
    width: 50%;
}

@media (max-width: 768px) {
    div#notifier {
        width: 100%;
    }
}

/*    contact    */

div#contact-content {
    display: block;
    width: 100%;
    margin: 0 auto;
}

div#contact-form-container {
    position: relative;
    width: 100%;
}

div#contact-form-wrapper {
    margin: 0 auto;
}

/*    -------------------
          end content    
      -------------------    */