
/* Policy Styles */

.policy-note {
    /* a note within a policy */

    font-style: italic;
}

.policy-list ul {
    /* organization of the main clauses of a policy */

    list-style-type: none;
}

.policy-list li {
    /* spacing between clauses of a policy */

    padding: 10px 0;
}

.policy-list ul ul {
    /* stlying of bullet points under a clause */

    list-style-type: disc;
}

.policy-list ul ul li {
    /* spacing between bullet points under a clause */

    padding: 5px 0;
}

.policy-content a {
    /* links within a policy */

    color: black;
    text-decoration: underline;
}

.policy-content a:hover {
    /* links within a policy (hover) */

    color: darkgray;
}