<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * 	
 * Pure javascript cookie notice 2018 by Michael Hudault, https://hudault.de
 * Javascript in /cookie_notice/cookie_notice.js
 * 
 * Without-any-warranty-do-whatever-you-want licence
 *
 */


/* Cookie notice main container */

.cookie-notice-container {
	background-color: #fff;
	font-family: "Arial", "Helvetica", "Verdana", "Tahoma", sans-serif;
	padding: 20px;
	text-align:center;
	max-width:1024px;
	margin:0 auto;
	}


/* Logo */

.cookie-notice-container .cookie-notice-logo{
	text-align:center;
	width:100px;
	}


/* Headline */

.cookie-notice-container .cookie-notice-headline{
	color: #99b900;
	text-align:center;
	font-size: 22px;
	font-weight: bold;
	padding: 7px;
	margin-bottom:15px;
	}


/* Text */

.cookie-notice-container p{
	color: #333;
	font-size: 14px;
	text-align:center;
	margin:5px;
	}


/* Privacy-Link */

.cookie-notice-container .cookie-notice-privacy-link {
	color: #99b900;
	text-decoration:underline;
	font-weight:bold;
	}

.cookie-notice-privacy-link:hover {
	color: #999 !important;
	text-decoration:underline;
	}


/* Button Container */

.cookie-notice-container .cookie-notice-buttons {
	text-align:center;
	margin-top:40px;
	margin-bottom:20px;
	}


/* Accept-Button */

.cookie-notice-container .cookie-notice-buttons .cookie-notice-button-accept{
	background: #99b900;
	color: #fff;
	margin: 10px;
	padding:10px;
	padding-left:20px;
	padding-right:20px;
	font-size: 20px;
	font-weight: bold;
	white-space:nowrap;
	text-decoration:none;
	}


/* Accept-Butoon hover */

.cookie-notice-container .cookie-notice-buttons .cookie-notice-button-accept:hover,
.cookie-notice-container .cookie-notice-buttons .cookie-notice-button-accept:focus {
	background: #bfe800;
	}

/* Deny-Button */

.cookie-notice-button-deny {
	background: #8a8888;
	color: #fff;
	margin: 10px;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
	font-size: 14px;	
	white-space:nowrap;
	text-decoration:none;	
	position:relative;
	top: 5px;
	}
	
.cookie-notice-container .cookie-notice-buttons .cookie-notice-button-deny:hover,
.cookie-notice-container .cookie-notice-buttons .cookie-notice-button-deny:focus {
	background: #afafaf;
	}</pre></body></html>