/*MAIN PAGE
*/
#links{
    margin: 0 auto;
}
div.navbtn {
   height: 3.5em;
    text-align: center;
    color: #FFFFFF;
    font-size: 1.5em;
    line-height: 3.5em;
    font-family: 'Open Sans', sans-serif;
    border: 0;
    outline: 0;
    outline-width: 0;
    outline-style: none;
    box-shadow: none;
    background: #16a79d;
    text-decoration: none;
    cursor: pointer;
    margin: 3% 0;

}
div.navbtn:hover {
    background-color: #148277;
    text-decoration: none;
}
.navbtn a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

/* unvisited link */

div.navbtn a:link {
    color: #FFFFFF;
}

/* visited link */

div.navbtn a:visited {
    color: #FFFFFF;
}


/* mouse over link */

div.navbtn a:hover {
    color: #FFFFFF;
}


/* selected link */

div.navbtn a:active {
    color: #FFFFFF;
}

ul.instructionText li {
    display: block;
    font-family: 'Open Sans', sans-serif;
    color: #32343a;
    font-size: 1em;
    line-height: 1.5em;
}


/*TEXT INPUT PAGES
*/

#bar {
    background: #f4ac42;
    border-bottom: 1px dashed #4d505b!important;
}

#bar h1 {
    color: #4d505b;
}

.userAnswersHolder {
    height: 100%;
}

.userAnswerTitle {
    font-size: 1.1em;
    height: 2em;
    margin-bottom: 0;
    padding-top: .7em;
    text-align: center;
    border: 1px dashed #fff;
    background-color: #16a79d;
    color: #fff;
}

#activity {
    height: 60%;
}


/*TEXTAREA
*/

textarea {
    width: 99%;
    height: 70%;
    margin: 0;
    overflow: auto;
    font-size: 1em;
}

[contenteditable="true"].single-line {
    white-space: nowrap;
    width: 200px;
    overflow: hidden;
}

[contenteditable="true"].single-line br {
    display: none;
}

[contenteditable="true"].single-line * {
    display: inline;
    white-space: nowrap;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #32343a;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #32343a;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #32343a;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #32343a;
}


/*ANSWERS*/

#showAnswersBtn {
    float: right;
    margin-right: 3%;
    /*visibility:hidden; hide answers button*/
}

.answer {
    display: none;
    margin: 1% 0 0% 0;
    height: 24%;
    background-color: #16a79d;
    overflow: auto;
    padding: 0.5em;
}


    /* ----------- Large Display ----------- */
    @media screen and (min-width: 1920px) and (min-height: 1080px) { 
      /* Styles */
    }
    /* ----------- Laptop HiDPI screen ----------- */
    @media screen and (min-width: 1440px) and (min-height: 900px) { 
      /* Styles */
    }
    /* ----------- Laptop ----------- */
    @media screen and (min-width: 1366px) and (min-height: 768px) {
      /* Styles */ 
      #bar{
      height: 3em;
  }
      #bar h1 {
          font-size: 1.5em !important;
      }
      #navButtonRight{
        margin-top: 0.5em;
      }
      #showAnswersBtn{
        margin-top: 0;
        margin-bottom: 0;
      }
      #activity{
        height: 50%;
      }
    }
    
    /* ----------- Laptop MDPI screen ----------- */
    @media screen and (min-width: 1280px) and (min-height: 800px) { 
      /* Styles */
    }
    /* ----------- iPad ----------- */
@media only screen and (max-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {      
      /* Styles */
      #activity {
          height: 52%;
      }
    }
    /* ----------- iPhone 5 ----------- */
    @media only screen and (min-device-width: 568px) and (min-device-height: 320px) {
      /* Styles */
    }


@media print {
    #showAnswersBtn {
        display: none;
    }
    #pdfMarker{
        float: left;
    }
    #instructions{
        display: block;
    }
}