 /* 
========================================================================
Cookie Compliance Script
========================================================================
*/
        body {
            margin: 0;
            padding: 0;
        }

        #cookieMessageWrapper {
            background: #808080;
            font-family: "Segoe UI",Verdana,Arial,Helvetica,Sans-Serif;
            font-size: 11pt;
            font-weight: normal;
            color: #000;            
            padding: 0;
            margin: 0;
            display: none;            
            left: 0;
            right: 0;
            bottom: 0;
            align-items: center;
            position: fixed;
            overflow: hidden;
            box-sizing: border-box;
            font-family: Helvetica,Calibri,Arial,sans-serif;
            line-height: 1.5em;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            z-index: 9999;
        }

        #cookieMessage {
            width: auto; /* this needs to be set to the width of the centre container */
            padding: 3px 0 3px 0;
            margin: 0 auto;
            position: relative;
        }

            #cookieMessage:after {
                content: ".";
                display: block;
                height: 0;
                clear: both;
                visibility: hidden;
            }

            #cookieMessage p {
                margin: 5px 0;
            }

            #cookieMessage a {
                font-size: 100%;
            }

        #cookieClose {
            display: inline-block;
            padding: .3em .6em;
            
            border-width: 2px;
            border-style: solid;
            border-color: transparent;
            text-align: center;
            white-space: nowrap;
            border-radius: 5px;
            background-color: #FF9900;
            color: rgb(255, 255, 255);
        }