#cookies-consent-wrapper
{
	display: none;
	z-index: 9999;
	overflow: hidden;
	position: fixed;
	bottom: 0px;
	left: 0px;
	margin: 0px;
	width: 100%;
	overflow: visible;
}

#cookies-consent-container
{
	border: 0px;
	border-top: solid 1px #555;
	background-color: rgb(157,157,157);
	background: linear-gradient(rgb(157,157,157), rgb(206,206,206));
	opacity: 0.90;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
}

#cookies-consent-message
{
	padding: 20px;
	width: 950px;
	margin: 0px auto;
	font-size: 14px;
	line-height: 20px;
}

#cookies-consent-close-button
{
	float: right;
	content: "X";
	font-weight: 400;
	font-size: 20px;
	margin: 10px;
	color: #000;
	opacity: 0.5;
	transition: opacity 0.4s ease;
	cursor: pointer;
	cursor: hand;
}
	#cookies-consent-close-button:hover
	{
		opacity: 1.0;
	}


