<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#cookie-warning {
	display: none;
	position: absolute;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 300px;
	background-color: White;
	border: 1px solid #CCC;
	padding: 15px;
	box-shadow: 0px 0px 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 10px; 
	z-index: 2147483647;
	
	/* IE */
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#DDDDDD', Direction=225, Strength=8);
	
	/* IE6 */
	_position: absolute;
	_top: 60px;
}

@media screen and (max-width:720px) {
	#cookie-warning {
		width: 100%;
		right: 0;
		bottom: 0;
		border: 0px;
		border-top: 1px solid #CCC;
		border-radius: 0px; 
		box-shadow: 0px 0px 2px 4px rgba(0, 0, 0, 0.5);
	}
}

#cookie-warning:not([dummy]) {
	/* IE9 */
	filter: progid:DXImageTransform.Microsoft.Shadow(enabled='false');
}

#cookie-warning &gt; :first-child {
	margin-top: 0;
	padding-top: 0;
}

#cookie-warning &gt; :last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

#cookie-warning a.cookie-close {
	float: right;
	position: relative;
	top: -15px;
	right: -15px;
	margin: 0 0 -5px 0;
	padding: 3px 8px;
	border-left: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	text-decoration: none;
	color: #999;
	text-transform: uppercase;
	font-size: 0.8em;
}

#cookie-warning a.cookie-close:hover {
	color: #666;
}

</pre></body></html>