﻿@media all {

    /* Style the buttons that are used to open and close the accordion panel */
    .accordion {
        color: #007ba4;
        cursor: pointer;
        padding: 15px;
        width: 100%;
        /* border: 1px solid #007ba4; */
        text-align: left;
        outline: none;
        font-size: 14px;
        transition: .4s;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #fff;
        margin-bottom: 5px;
    }

        .accordion:after {
            content: '\002B';
            color: #007ba4;
            font-weight: bold; /* Unicode character for "plus" sign (+) */
            float: right;
            margin-left: 5px;
        }

    .active:after {
        content: "\2212"; /* Unicode character for "minus" sign (-) */
    }

    /* Style the accordion panel. Note: hidden by default */
    .panel {
       
        background-color: #f2f7fc;
        color: #005571;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
        font-size: 18px;
    }

        .panel .answer {
            padding: 5px;
            font-size: 14px;
        }

    .p {
        display: block;
        margin: 12px;
    }

    .titlestart {
        clear: both;
        padding-top: 30px;
    }
}