#cookielaw-box {
	width: 80%;
	position: fixed;
	top: 10px;
	margin-left: 10%;
	margin-right: 10%;
	z-index: 9997;
	box-shadow: 0px 0px 6px #6e6e6e;
/*	box-shadow: 0 0 15px rgba(0,0,0,0.15);*/
	border-bottom: 1px solid #ededed;
	border-right: 1px solid #ededed;
	border-left: 1px solid #ededed;
}

#cookielaw-box #cookielaw-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--page_background-color);
	opacity: 0.95;
	filter: alpha(opacity=95);
	z-index: 9998;
}

#cookielaw-box #cookielaw-content {
	position: relative;
	z-index: 9999;
	padding: 15px 20px 10px 20px;
}

#cookielaw-box #cookielaw-content h3 {
	font-weight: bold;
	color: #000;
	margin: 0 0 12px 0;
	font-size: 18px;
	line-height: normal;
}

#cookielaw-box #cookielaw-content p {
	font-weight: normal;
	margin: 8px 0;
	font-size: 12px;
	line-height: normal;
	text-align: justify;
}

#cookielaw-box #cookielaw-content a {
	text-decoration: none;
}

#cookielaw-box #cookielaw-content a:hover {
	text-decoration: underline;
}


#cookielaw-box #cookielaw-close {
	width: 14px;
	height: 13px;
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	z-index: 9999;
	opacity: 100;
	color: var(--page-a_color);
/*	filter: alpha(opacity=25);*/
	text-decoration: none;
}


#cookielaw-box #cookielaw-close:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}


