/* 
========================================================================
Cookie Compliance Script
========================================================================
*/
body
{
  margin: 0;
  padding: 0;
}
#cookieMessageWrapper
{
	background: #FF9;
	font-family: "Segoe UI",Verdana,Arial,Helvetica,Sans-Serif; 
	font-size: 11pt; 
	font-weight: normal; 
	color:#06F;
	padding: 10px;
	margin: 0;
	display: none;
	border: solid 2px #FC0;
	border-radius: 10px;
	
}
#cookieMessage
{
	width: 850px; /* this needs to be set to the width of the centre container */
	padding: 3px 0 3px 0;
	margin: 0 auto;
	position: relative;
}
#cookieMessage:after
{
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
#cookieMessage p
{
	margin: 5px 0 0;
}
#cookieClose
{
	float: right;
	display: block;
	padding: 0px 5px;
	text-decoration: none;
	background:#0C0;
	border: solid 1px #000;
	border-radius: 3px;
	color: #fff;
	font-size: 100%;
	margin-top: 6px;
	font-weight: bold;
}
#cookieReject
{
	float: right;
	display: block;
	padding: 0px 5px;
	text-decoration: none;
	background: #F00;
	border: solid 1px #000;
	border-radius: 3px;
	color: #fff;
	font-size: 100%;
	margin: 6px 6px 0px 10px;
	font-weight: bold;
}