/*!
 * jQuery Cookiebar Plugin
 * https://github.com/carlwoodhouse/jquery.cookieBar
 *
 * Copyright 2012, Carl Woodhouse
 * Disclaimer: if you still get fined for not complying with the eu cookielaw, it's not our fault.
 */

.cookie-message {
    position:fixed;
    bottom:0;left:0;right:0;
    background:#fff;
    border-bottom:1px solid #ccc;
    box-shadow:0px 0px 3px #ccc;
    z-index: 99;
    height: auto;
    min-height: 24px;
    line-height: 24px;
    color: #eeeeee;
    text-align: center;
    padding: 20px 0;
}

.cookie-message p, .cookie-message a {
    color: white;
    font: bold 14px/14px Arial;

    /*margin:0.6em 0;*/
}

.cookie-message a {
    cursor:pointer;
    text-decoration: underline;
}

.cookie-message a:hover {
    color: white;
}


.cookie-message p{
    margin-bottom: 15px;
}

.green {
    border-bottom:1px solid #ffffff;
    background-color:#2b8441;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0e83ae), color-stop(50%, #2b8441), color-stop(100%, #2b8441));
    background: -webkit-linear-gradient(#2b8441, #2b8441, #2b8441);
    background: -moz-linear-gradient(#2b8441, #2b8441, #2b8441);
    background: -o-linear-gradient(#2b8441, #2b8441, #2b8441);
    background: -ms-linear-gradient(#2b8441, #2b8441, #2b8441);
    background: linear-gradient(#2b8441, #2b8441, #2b8441);
}
.green p, .green a { color:#fff; }