/*
 * 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;
  padding:60px 85px 60px 20px;
  background:#fff;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.8) ;
  display:none;
  color: white;
  font-size:18px;
  line-height: 1.55em;
  
}

.cookie-message a {
  color: white;
  text-decoration: underline;
  
}
.cookie-message a.cookiebar-close {
  clear:both;
  display:block;
  width:10em;
  margin:20px auto;
  cursor:pointer;
  font-weight:bold;
  border:1px solid;
  border-radius:4px;
  padding:7px 10px 9px;
  
}
.cookie-message p, .cookie-message a.cookiebar-close {
/*  font:bold 11px/18px Arial;  */
/*   margin:0.2em 0; */
}
.blue {
  border-bottom:1px solid #0E83AE;
  background-color:#0990c3;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0e83ae), color-stop(50%, #0990c3), color-stop(100%, #0e9dd2));
  background: -webkit-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -moz-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -o-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -ms-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: linear-gradient(#0e83ae, #0990c3, #0e9dd2);
}
.blue p, .blue a { color:#fff; }