/*

File:     cookie_warning.css
Notes:    Used to style the Cookie Acceptance message module

 */

#cookie-popover {
    position:absolute;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background-color:#fffdd4;
    color:#000;
    font-family:Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    line-height:16px;
    z-index: 99999999;
    -moz-box-shadow:0 0 25px rgba(0,0,0,0.5);
    -webkit-box-shadow:0 0 25px rgba(0,0,0,0.5);
    box-shadow:0 0 25px rgba(0,0,0,0.5);
}

.js #cookie-popover {
  position:relative;
}

#cookie-popover .in {
    width:980px;
    max-width:100%;
    margin:0 auto;
/*     padding: 8px 0 3px; */
}

#cookie-popover .in .cookieContent {
    padding:0 10px;
}
#cookie-popover .in .cookieContent p{
    padding: 5px 0;
}
#cookie-popover .in .cookieContent p.action{
    padding: 5px 0 15px 0;
}
#cookie-popover a {
    color:#136697;
}

#cookie-popover a:hover,
#cookie-popover a:focus {
    color:#4dabcf;
}

#cookie-popover .action a {
    padding:3px 6px;
    background:#136697;
    color:#fff;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    text-shadow:0 1px 0 rgba(0,0,0,0.6);
    text-decoration:none;
}

#cookie-popover .action a:hover,
#cookie-popover .action a:focus {
    background:#4dabcf;
    text-decoration:none;
}

.cookieInfo .in {
    margin:20px 310px 20px 0;
}