/*!
 * 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:10px 85px 10px 20px;
  background:#000;
  color:#fff;
  border-bottom:1px solid #ccc;
  box-shadow:0px 0px 3px #ccc;
  z-index: 9999999;
  opacity:0.9;
}

.cookie-container {
  max-width:900px;
  margin:auto;
}
.cookie-message .my-close-button a {
  top:0; right:150px;
  cursor:pointer;
}

.cookie-message a {
 color:#0097c6;
 text-decoration:none;
}

a.my-close-button {
  display:block;
  float:right;

  color:#fff;
  background-color:#0097c6;
  padding:3px 10px 3px 10px;
  margin:0.6em 0;
  margin-left:50px;
  margin-right:40px;
}

.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; }