/* 
========================================================================
Cookie Compliance Script
========================================================================
*/

#cookieMessageWrapper
{
	position:fixed;
	background: rgba(255, 191, 0, 0.9);
	font-size: 11pt; 
	height:250px;
	font-weight: normal; 
	color: #333;
	padding: 0;
	margin: 0;
	display: none;
	border-bottom: solid 1px #f80;
	width: 100%; 
	text-align:center;
	z-index:100;
}
#cookieMessage
{
	width: 100%; /* 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: 70px 0 50px;
	font-size:20px;
	color:white;
}
#cookieClose
{
	width:100px;
	height:40px;
	display: block;
	padding-top: 8px;
	text-decoration: none;
	background: #f80;
	border: solid 2px #ffbf00;
	border-radius: 20px;
	color: #fff;
	font-size:20px;
	margin-top: 6px;
	margin:0 auto;
	font-weight: bold;
	transition:0.5s;
}

#cookieClose:hover
{
	transform:scale(0.95);
	background: white;
	color: orange;

}