@import url(//db.onlinewebfonts.com/c/d09623c1a870f47fcd0cde5ad909d9c4?family=Keqima);
@font-face {font-family: "Keqima"; 
    src: url("//db.onlinewebfonts.com/t/d09623c1a870f47fcd0cde5ad909d9c4.eot"); 
    src: url("//db.onlinewebfonts.com/t/d09623c1a870f47fcd0cde5ad909d9c4.eot?#iefix") format("embedded-opentype"), 
    url("//db.onlinewebfonts.com/t/d09623c1a870f47fcd0cde5ad909d9c4.woff2") format("woff2"), 
    url("//db.onlinewebfonts.com/t/d09623c1a870f47fcd0cde5ad909d9c4.woff") format("woff"), 
    url("//db.onlinewebfonts.com/t/d09623c1a870f47fcd0cde5ad909d9c4.ttf") format("truetype"), 
    url("//db.onlinewebfonts.com/t/d09623c1a870f47fcd0cde5ad909d9c4.svg#Keqima") format("svg"); }

/* global tags */

h2 {
    line-height:0.1;
}

h3 {
    line-height:0.1;
}

body {
    font-family: sans-serif;
    line-height: 1.5;
}

/* nav and footer */

.navbar {
    z-index: 0px;
    top: 0px; /* Stay at the top */
    background: #e3d8c1; 
    font-weight: bold;
    margin-bottom: 20px;
    position: sticky;
    border-bottom: 2px double #464141;
    display: flex; 
    justify-content: space-between;
}

.navbar a {
    padding: 10px 15px;
    font-size: 16px;
    color: #464141;
}

.navbar a:hover{
    background-color: #8a806b;
    color: #ffffff;
}

#navHomepage {
    color: white; /* main colour of title nav */
    font-size: 30px;
    float: left;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #464141; /* the outline of title nav */
}

.dropdownMenu {
    justify-content: flex-end;
    overflow: hidden;
    float: right;
}

.dropdownMenu:hover {
    background-color: #8a806b;
}

.dropdownMenu #dropdownBtn {
    font-size: 30px;  
    border: none;
    outline: none;
    color: #464141; /* the colour of the icon */
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdownContent {
    display: none;
    position: absolute;
    right: 0px;
    background-color: #e7decb; /* background colour of dropdown content menu */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdownContent a {
    float: none;
    color: black; /* the colour of the text in dropdown content menu */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdownContent a:hover {
    background-color: #8a806b; /* background colour of dropdown item when hovered */
    border: 2px double #464141; /* border of dropdown item when hovered*/
}


.dropdownMenu:hover .dropdownContent {
    display: block;

}

#footerNav {
    background: #e3d8c1;
    padding-top: 10px;
    padding-bottom: 5px;
    margin-top: 0px;
    margin-bottom: -10px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    position: absolute;
}

#footerNav a {
    color: #464141;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    vertical-align: auto;
}

#footerNav a:hover {
    color: #000000;
    text-decoration: none;
}

#copyrightDisclaimer {
    padding: 0px 15px;
    float: right;
    font-size: 12px;
    line-height: 0px;
}

#footerCredit {
    padding: 0px 15px;
    float: left;
    font-size: 14px;
    line-height: 0px;
}

/* classes and ids */

#qnaHeader {
    height: 155px;
	width: 100%;
	background-image: url(../images/qnaHeader.jpg);
	background-size: cover;
    border: 2px solid black
}

#headerBox {
    background-color: rgba(0,0,0,.5);
    color: #fff;
    width: 80%;
    height: 100%;
    margin: -30px auto;
}

#qnaTitle {
    text-shadow: 0 0 3px red, 0 0 5px blue;
    font-family: Keqima;
    vertical-align: middle;
    color: white;
    font-size: 45px;
    opacity: 1;
    padding: 30px 100px;
    letter-spacing: 2px;
}

#qnaSubtitle {
    margin: -50px 100px;
    font-size: 16px;
}

#assessmentAnswers {
    border-collapse: collapse;
    width: 85%;
    margin: 20px 20px;
}

#assessmentAnswers td {
    border: 1px solid black;
}

#assessmentAnswers ol, #assessmentAnswers ul {
    margin-top: 0px;
    margin-bottom: 10px;
}

.answerCell h2 {
    margin-top: 20px;
    margin-bottom: -5px;
    font-size: 16px;
}

.questionCell {
    padding-left: 20px;
    background-color: #e6e6e6;
}

.answerCell {
    padding-left: 20px;
}

.indentList {
    margin-left: 40px;
    list-style: circle;
}