﻿/**
 * Survey pages
 */

/**
 * Header
 */
#logo {
    border-right: 1px solid #000;
    padding-right: 10px;
}

#header-top {
    width: 900px;
    margin: auto;
    padding: 0;
}

#header-top h1 {
    margin: 0 auto;
    padding-left: 10px;
    line-height: 38px;
    display: inline-block;
}

#header-container h1 a {
    text-decoration: none;
    color: #000;
    font-size: 34px;
    font-family: officinasanitc-extrabold;
    font-weight: normal;
}

#nav-bar .home-btn {
    position: relative;
}

#nav-bar .home-btn img {
    margin-right: 10px;
    margin-bottom: -1px;
}

.back-home {
    cursor: pointer;
}

#nav-bar > li:nth-child(1) a {
    width: 65px;
}

#nav-bar > li:nth-child(2) a {
    width: 86px;
}

#nav-bar > li:nth-child(3) a {
    width: 95px;
}


/**
 * Content
 */
#content-container {
    border-top: 5px solid #dadad9;
    margin-top: 10px;
    padding: 0 60px;
}

#content-container h3 {
    font-size: 30px;
    font-family: officinasanitc-extrabold;
    font-weight: normal;
    color: #24b3c3;
    margin: 20px auto;
}

#content-container h4 {
    font-size: 17px;
    margin-bottom: 17px;
    margin-top: 15px;
}

/** Answer Key page **/
#content-container .park h4 {
    /*color: #24b3c3;*/
    font-family: Verdana;
}

#content-container .pet h4  {
    /*color: #912b8d;*/
    font-family: Verdana;
}

#content-container .music h4 {
    /*color: #e91b40;*/
    font-family: Verdana;
}

#content-container .tech h4 {
    /*color: #f5c225;*/
    font-family: Verdana;
}

#content-container ul {
    list-style-type: none;
}

#content-container ul li {
    margin-bottom: 20px;
    position: relative;
}

#content-container ul.compatibility li {    
    margin-bottom: 5px;
}

#content-container ul li:before {
    content: "• ";
    color: #24b3c3; 
    position: absolute;
    left: -15px;
}

#content-container ul li strong {
    padding-right: 5px;
}

#content-container a {
    color: #24b3c3;
    font-weight: bold;
}

/** Fieldsets **/
.fieldset {
    margin-bottom: 10px;
}

.fieldset .fieldset-header {
    background: #f0f0f0;
    position: relative;
    padding: 10px 0 10px 50px;
    cursor: pointer;
    font-family: Verdana;
    font-weight: bold;
}

.fieldset .fieldset-header:before {
    content: "";
    background: url('../images/arrow-right.png') no-repeat 13px;
    width: 36px;
    height: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
}

.fieldset.open .fieldset-header:before {
    background: url('../images/arrow-down.png') no-repeat 9px;
}

.park .fieldset .fieldset-header:before {
    background-color: #24b3c3;
}

.pet .fieldset .fieldset-header:before  {
    background-color: #912b8d;
}

.music .fieldset .fieldset-header:before {
    background-color: #e91b40;
}

.tech .fieldset .fieldset-header:before {
    background-color: #f5c225;
}

.fieldset .fieldset-body {
    display: none;
    font-family: Verdana;
}

.fieldset.open .fieldset-body {
    display: block;
    padding: 5px 10px 5px 50px;
}

.answer-key p,
.answer-key strong {
    font-family: Verdana;
}

.answer-key h4 {
    font-size: 15px !important;
}

/**
 * Footer
 */
#footer p,
#footer p strong {
    font-size: 12px;
}

#footer p:first-of-type {
    margin-bottom: 12px;
}

#footer p:last-of-type {    
    font-size: 10px;
}