/*!
 * 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:0 20px 5px 20px;
  background: #fff;
  border-bottom:1px solid #ccc;
  box-shadow:0 0 3px #ccc;
  z-index: 9999;
  text-align: center;
}
.cookie-message .my-close-button {
  text-decoration:none;
  line-height: 1;
  border: 1px solid #fff;
  padding: 5px 20px;
  border-radius: 3px 3px 3px 3px;
  background-color: transparent;
  font-weight: bold;
}
.cookie-message .my-close-button:hover {
  color: #a4c408;
  background: none;
  border: 1px solid #a4c408;
}
.cookie-message p, .cookie-message a {
  font-size: 14px;
  color: #222;
  margin: 0.6em 0 0.8em 0;
  text-align: center;
}
.cookie-message a {
  font-weight: 700;
  color: #222;
}
.cookie-message a:hover {
  text-decoration: none;
  color: #a4c408;
  cursor: pointer;
}
.blue {
  background-color:rgba(0,0,0,.80);
}
.blue p, .blue a {
  color:#fff;
}