﻿#cont-menu {
    z-index: -100;
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100px;
    width: auto;
    background-color: #ffffff;
    color: #1a2e61;
    font-family: 'TelstraBody';
    font-size: 90%;
    padding: 1vw;
    border: 1px solid #000000;
    border-radius: 8px;
}
    #cont-menu p {
        margin: 0px 0px 0.8vw 0px;
        /*white-space: nowrap;*/
    }
    #menu-items {
        display: block;
        width: 100%;
    }
        #menu-items span.head {
            display: block;
            padding: 0.1vw 0px 0.1vw 0px;
            color: inherit;
        }
        #menu-items a.sub {
            margin-left: 0.5vw;
        }
            #menu-items a.sub span {
                display: inline-block;
                vertical-align: middle;
                width: 0.5vw;
                border-top: 1px solid black;
                border-bottom: 1px solid black;
                margin-right: 0.5vw;
            }
            #menu-items a, #menu-items a:visited {
                display: block;
                padding: 0.1vw 0px 0.1vw 0px;
                color: inherit;
                text-decoration: none;
            }

        #menu-items a:hover, #menu-items a:visited:hover {
            color: #f96449ff;
            text-decoration: none;
        }
        #menu-items a:first-of-type {
            border-top: none;
        }
