/*!
 * 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:0px;left:0;right:0;
  padding:0 85px 0 20px;
  background:#fff;
  border:none;
  box-shadow:none;
  z-index: 99;
  box-shadow: 2px 0 2px 2px rgba(106, 106, 106, 0.2);
}
.cookie-message p, .cookie-message a {
  color:#333;
  font:bold 12px/18px Arial;
  margin:0;
  padding: 15px 0;
}
.cookie-message a {
  position:absolute;
  top:10px; right:20px;
  cursor:pointer;
  border: 2px solid #333;
  padding: 3px 8px;
  text-transform: uppercase;
}
.cookie-message.red {
  border-top:1px solid #FFF;
  border-bottom:1px solid #FFF;
  background-color:#c00;
}
.cookie-message.red p, .cookie-message.red a { color:#fff; }