    /** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     *
     * CookieNotice.css
     *
     * @category     Template
     * @copyright    Manuela v.d.Decken <manuela@isteam.de>
     * @author       Manuela v.d.Decken <manuela@isteam.de>
     * @license      http://www.gnu.org/licenses/gpl.html   GPL License
     * @version      0.0.1
     * @lastmodified 19.09.2015
     * @since        File available since 04.07.2015
     * @description  switch off the cookie notice for n days
        (by default after 7 days the cookie will be removed again)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
     
    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        format the cookie notice
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
    #CookieNotice {
        box-sizing: border-box;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        padding: 15px;
        background-color: transparent;
        display: none;
        z-index: 9999;
    }
    #CookieNoticeBar {
        position: relative;
        top: 0%;
        background-color: rgba(118,9,39,0.8);
        text-align: center;
        color: #ffffff;
        font-size: 0.7em;
        padding: 6px 4px;
        border-radius: 6px;
        border: none;
    }
    #CookieNoticeClose {
        float:right;
        background: #afc73f;
        color: #f9f9f9;
        font-weight: bold;
        width: 1.525em;
        cursor: pointer;
        border-radius: 4px;
    }
    #CookieNoticeInfo {}
    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

