/*

CSS styles for cookie law notice

*/

#cookielawNotice {
  width: 300px;
  padding-top: 5px; 
  background-color: #e5e5e5;
  border: solid 1px silver;
  position: fixed; 
  top: -100px; right: 10%;
  }
#cookielawNotice .title {
  text-align: center;
  cursor: pointer;
  }
#cookielawNotice .title span.small {
  font-size: 0.8em;
  }
  
#cookielawNotice .message {
  text-align: center;
  padding: 5px 15px;
  display: none;
  }
  
#cookielawNotice .buttons { 
  text-align: center; 
  padding: 5px 0 15px 0;
  }
#cookielawNotice .buttons .allow { 
  font-weight: bold;
  background-color: maroon;
  color: #fff;
  padding: 4px 10px;
  margin-right: 10px;
  }
#cookielawNotice .buttons .disallow {
  color: #777; 
  padding: 4px 10px;
  }
  
#cookielawNotice img.close {
  cursor: pointer;
  position: absolute;
  bottom: 7px;
  right: 9px;
  }