/** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 * 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; 
    color: #fff;
	width: 100%; 
    position: bottom;
    left: 0; top: 0; right: 0; bottom: 0;
    display: none;
    z-index: 9999;
}
#CookieNoticeBar {
    position: relative;
    top: 30%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
    font-size: 14px;
    padding: 8px 6px;
    border-radius: 6px;
    border: solid 1px red;
}
#CookieNoticeClose {
    float:right;
    background: #ff0000;
    color: #ffffff;
    font-weight: bold;
    width: 1.525em;
    cursor: pointer;
    border-radius: 4px;
}
#CookieNoticeInfo {}

.tab7 {
    font-size: 14px; color: #fff;  text-decoration: underline;
}
A.tab7:link {
    font-size: 14px; color: #fff;  text-decoration: underline;
}
A.tab7:visited {
    font-size: 14px; color: #fff;  text-decoration: underline;
}
A.tab7:active {
    font-size: 14px; color: #b70000;  text-decoration: underline;
}
A.tab7:hover {
    font-size: 14px; color: #b70000;  text-decoration: underline;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/