@import url("https://fonts.verwaltungsportal.de/import/?family=Barlow:400,400i,500,500i,600,600i");

html {
	max-width: 1930px;
	margin-left: auto;
	margin-right: auto;
	background: #def5e5;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	scrollbar-color: #144d26 #ffffff;
	scrollbar-width: thin;
}

body {
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	color: #3c4241;
	background: #ffffff;
	font-size: clamp(1rem, 2vw, 1.125rem);
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #144d26;
}

a:is(:hover, :focus),
#contentBox a {
	color: #144d26;
	text-decoration: underline;
}

#contentBox a,
b,
strong {
	font-weight: 500;
}

/* ------------------------------------------- contact ------------------------------------------ */

.contact {
	background-color: #21803f;
	color: #ffffff;
	font-size: 0.75rem;
	padding: 6px 0;
	font-weight: 500;
}

@media (max-width: 991px) {
	nav.horizontally .contact {
		padding: 15px 0;
	}

	nav.horizontally .contact p + p {
		margin-top: 8px;
	}
}

@media (min-width: 992px) {
	.contact p {
		margin: 0;
		display: inline-block;
	}

	.contact p + p {
		margin-left: 30px;
	}
}

.contact a {
	color: #ffffff;
	text-decoration: underline;
}

.contact :is(b, strong) {
	font-weight: 600;
}

.contact img {
	display: inline-block;
	margin-right: 2px;
	vertical-align: middle;
}

/* --------------------------------------------- logo ------------------------------------------- */

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

@media (max-width: 991px) {
	#logo img {
		max-width: calc(100vw - 120px);
		width: 100%;
	}
}

/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
	nav.horizontally {
		position: static !important;
		padding: 15px 0;
	}

	#burgerButton {
		font-size: 0;
		display: block;
		height: 50px;
		width: 60px;
		border-radius: 2px;
		padding: 6px 8px;
		cursor: pointer;
		background: #ffffff;
		border: none !important;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #21803f;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 10px;
		transition:
			transform 200ms linear,
			opacity 200ms linear;
	}

	#burgerButton[aria-expanded="true"] #burgerButtonInner {
		transform: rotate(-45deg) translate(-6px, 6px);
	}

	#burgerButton[aria-expanded="true"]::before {
		opacity: 0;
	}

	#burgerButton[aria-expanded="true"]:after {
		transform: rotate(45deg) translate(-4px, -6px);
	}

	#burgerButtonInner {
		top: 16px;
	}

	#burgerButton::before {
		top: 24px;
		content: "";
	}

	#burgerButton::after {
		top: 32px;
		content: "";
	}

	.navbar-nav {
		margin: 20px 0;
	}

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 0;
		background: #ffffff;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		overflow-y: auto;
		transition:
			left 300ms linear,
			opacity 300ms linear,
			box-shadow 600ms linear;
		box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
	}

	.navbar-collapse:is([aria-expanded="true"], .in) {
		left: 0;
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
		box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
	}

	.navbar-header {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 101;
	}

	.dropdown-toggle-button-wrapper {
		top: 7px;
	}

	.dropdown-toggle-button-wrapper2 {
		top: 4px;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		background: #ffffff;
		padding: 30px 0;
		transition: padding 0.2s 0s linear;
	}

	.is-sticky nav.horizontally {
		padding: 10px 0;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	}

	nav.horizontally .navbar-nav {
		margin-top: 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	nav.horizontally .navbar-nav ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: block !important;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 300ms linear;
	}

	nav.horizontally .navbar-nav [class*="secondlevel"] > ul {
		left: 100%;
		top: 0;
	}

	nav.horizontally .navbar-nav li {
		position: relative;
	}

	nav.horizontally .navbar-nav li:is(.open:focus-within, :hover) > ul,
	nav.horizontally .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
		pointer-events: auto !important;
		opacity: 1 !important;
		visibility: visible;
	}

	nav.horizontally .navbar-nav li:is(:hover, :focus-within) > ul {
		z-index: 1003;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #3c4241;
	font-weight: 600;
	text-align: left;
	padding: 10px 15px 14px 15px;
	position: relative;
	font-size: 1.0625rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (max-width: 991px) {
	nav.horizontally li[class*="toplevel"] {
		border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	}

	nav.horizontally a[class*="toplevel"].dropdown-toggle {
		padding-right: 35px;
	}
}

@media (min-width: 992px) {
	nav.horizontally li[class*="toplevel"] + li {
		margin-left: 20px;
	}

	nav.horizontally a[class*="toplevel"] {
		padding: 11px 0;
	}
}

nav.horizontally a[class*="toplevel"]::before {
	content: "";
	width: 0;
	height: 4px;
	display: block;
	position: absolute;
	left: 0;
	transform: translateX(-50%);
	bottom: 0;
	background-color: #144d26;
	opacity: 0;
	transition:
		opacity 300ms linear,
		width 300ms linear;
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"]::before {
		left: 50%;
	}
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within) > a::before,
nav.horizontally li[class*="toplevel"] > a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open > a::before,
nav.horizontally li[class*="toplevel"].open > a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"] > a::before,
nav.horizontally li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus)::before {
	opacity: 1;
	width: 100%;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background-color: #ffffff;
	-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
	nav.horizontally [class*="toplevel"] > ul {
		padding: 10px 0;
	}

	nav.horizontally [class*="secondlevel"] > ul {
		padding-left: 10px;
	}
}

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"] ul {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	nav.horizontally [class*="toplevel"] > ul {
		margin-top: 10px;
		border-bottom-left-radius: 3px;
		border-bottom-right-radius: 3px;
	}

	nav.horizontally :is([class*="toplevel"], [class*="secondlevel"]) > ul::before {
		content: "";
		position: absolute;
		display: block;
	}

	nav.horizontally [class*="toplevel"] > ul::before {
		height: 10px;
		left: 0;
		right: 0;
		top: -10px;
	}

	nav.horizontally [class*="secondlevel"] > ul {
		margin-top: -10px;
		border-radius: 3px;
		margin-left: 10px;
	}

	nav.horizontally [class*="secondlevel"] > ul::before {
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #3c4241;
	font-weight: 400;
	text-align: left;
	padding: 9px 25px 9px 35px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	position: relative;
}

@media (max-width: 991px) {
	nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
		padding-right: 35px;
	}
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
	content: "";
	display: block;
	position: absolute;
	left: 20px;
	top: 16px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3c4241;
   opacity: .5;
	transition: background 300ms linear, opacity 300ms linear;
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):not(:nth-child(2)) {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus)::before {
	background: #144d26;
   opacity: 1;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

/* ----------------------------------------- button design -------------------------------------- */

.buttonStyle a {
	display: inline-block;
	background: #144d26;
	border-radius: 3px;
	color: #ffffff;
	border: 1px solid #144d26;
	font-size: 0.75rem;
	text-transform: uppercase;
	padding: 5px 20px;
	font-weight: 600;
	text-decoration: none;
	transition:
		background 300ms linear,
		color 300ms linear,
		border 300ms linear;
      margin-top: 30px;
}

@media (min-width: 768px) {
	.buttonStyle a + a {
		margin-left: 12px;
	}
}

.buttonStyle a::after {
	content: "\00BB";
	margin-left: 4px;
	position: relative;
	bottom: 1px;
}

.buttonStyle a:is(:hover, :focus) {
	color: #fff;
	background: #144d26;
	border-color: #144d26;
   border-color: #fff;
}

/* #region ------------------------------------ banner ------------------------------------------ */

header > .row {
	row-gap: 30px;
}

#slider {
	height: clamp(300px, 42vw, 400px);
	position: relative;
	border-radius: 3px;
}

.slider-wrapper,
.nivo-main-image,
#slider > a > div {
	height: 100% !important;
}

@media (min-width: 768px) {
	#slider,
	#headerpic {
		height: 100% !important;
		max-height: 650px;
	}
}

@media (min-width: 992px) {
	#slider {
		min-height: clamp(300px, 42vw, 400px);
	}

	body.index #slider {
		min-height: 500px;
	}
}

#headerpic {
	padding: 0;
	position: relative;
	border-radius: 3px;
	background: #3c4241;
}

.slider-mask {
	display: none;
}

@media (min-width: 768px) {
	#headerpic:hover .slider-mask {
		top: -200%;
	}
}

#headerpic .nivo-directionNav a,
#headerpic .slick-dots * {
	color: #ffffff !important;
}

/* #endregion --------------------------------- banner ------------------------------------------ */

/* ------------------------------------------- header tab --------------------------------------- */

#headerTab {
	border-radius: 3px;
	background: #21803f;
	color: #ffffff;
	height: 100%;
	min-height: 100%;
}

.headerContent {
	padding: 35px 30px 30px 30px;
}

.headerContent :is(h1, h2, h3, h4, h5, h6) {
	font-size: 2rem;
	margin-bottom: 22px;
	color: #ffffff;
}

.headerContent :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
	color: #ffffff;
	display: block;
	font-style: normal;
	font-size: 68%;
}

/* #region ----------------------------------- search ------------------------------------------- */

.search {
	padding: 30px;
}

.headerContent + .headerContent2 {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

form[id^="search"] {
	display: flex;
	flex-wrap: wrap;
}

form[id^="search"] label {
	display: block;
	font-weight: 600;
	font-size: 1.125rem;
	margin-bottom: 18px;
	line-height: 1;
	width: 100%;
}

form [id^="search_input"] {
	color: #383838;
	font-size: 0.9375rem;
	font-style: normal;
	padding: 8px 10px 8px 14px;
	border: 0;
	width: calc(100% - 38px);
	background: #ffffff !important;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

form [id^="search_submit"] {
	width: 38px;
	flex-shrink: 0;
	border: none;
	background: #ffffff url("../img/lupe-icon.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	font-size: 0;
	transition: background 150ms linear;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

form [id^="search_submit"]:is(:hover, :focus) {
	background-color: #def5e5;
}

form [id^="search_input"]::placeholder {
	color: #383838 !important;
	opacity: 1 !important;
	font-style: italic !important;
}

/* #endregion -------------------------------- search ------------------------------------------- */

/* #region ------------------------------ styler + contrast ------------------------------------- */

@media (min-width: 992px) {
	#styleContrast {
		margin: 0;
	}

	#styleContrast > * {
		padding: 11px 10px 15px 10px;
	}

	#style {
		background: rgba(0, 0, 0, 0.1);
	}

	#contrast_style {
		background: rgba(0, 0, 0, 0.2);
	}

	#styleContrast h2 {
		color: inherit;
		font-weight: inherit;
		font-size: 0.875rem;
		margin-bottom: 9px;
	}

	#styleContrast button {
		font-size: 18px;
		padding: 0 0 2px 0 !important;
		border: none;
		color: #ffffff;
		display: inline-block;
		width: 24px;
		height: 24px;
		border-radius: 50%;
		font-weight: 500;
		text-align: center;
		background: rgba(0, 0, 0, 0.2);
		position: relative;
		line-height: 1;
	}

	#contrast_style button::after {
		content: "";
		display: block;
		position: absolute;
		top: 5px;
		left: 5px;
		right: 5px;
		bottom: 5px;
		border-radius: 50%;
		border: 1px solid #ffffff;
		background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 50%, #21803f 50%);
	}

	#contrast_style button:nth-of-type(2)::after {
		transform: scaleX(-1);
	}

	#contrast_style button:nth-of-type(3)::after {
		background: #c2722d;
	}

	#styleContrast button + button {
		margin-left: 4px;
	}

	#styleContrast button:is(:hover, :focus) {
		background: rgba(0, 0, 0, 0.4);
	}
}

/* #endregion --------------------------- styler + contrast ------------------------------------- */

/* #region --------------------------------- news + events -------------------------------------- */

#news .tab,
#eventsBG {
	border-radius: 3px;
	background-color: #21803f;
	overflow: hidden;
}

:is(#news, #events) .tab {
	padding: 30px;
	color: #ffffff;
	background-position: top 20px right 20px;
	background-repeat: no-repeat;
}

:is(#news, #events) .tabHeadline {
	color: #ffffff;
	margin: 0 0 clamp(15px, 2vw, 25px) 0;
}

@media (min-width: 1200px) {
	:is(#news, #events) .tabHeadline {
		-webkit-hyphens: manual;
		-moz-hyphens: manual;
		-ms-hyphens: manual;
		hyphens: manual;
	}
}

:is(#news, #events) .tab_link_entry {
	font-size: 1rem;
	position: relative;
	width: 100%;
}

:is(#news, #events) .tab_link_title a {
	line-height: 1.2;
	font-weight: 600;
	font-size: 1.125rem;
	display: block;
	margin-bottom: 8px;
}

:is(#news, #events) .tab_link_entries {
	display: grid;
}

@media (min-width: 576px) {
	:is(#news, #events) .tab_link_entries {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	:is(#news, #events) .tab_link_entries {
		grid-template-columns: repeat(3, 1fr);
	}
}

#news .tab,
:is(#news, #events) .tab_link,
:is(#news, #events) .tab_link_entries {
	height: 100%;
	min-height: 100%;
}

:is(#news, #events) .tab_link_entries .tab_spacer,
:is(#news, #events) .tab_link_entry > .tab_link_mehr {
	display: none;
}

/* #endregion ------------------------------ news + events -------------------------------------- */

/* #region ------------------------------------- news ------------------------------------------- */

#news {
	padding-top: 30px;
}

#news > .row {
	row-gap: 30px;
}

#news .tab {
	background-image: url("../img/icon-zeitung.png");
}

#news .tab_link_entries {
	gap: 30px;
}

#news .tab_link_entry {
	background: #ffffff;
	border-radius: 3px;
	padding: 160px 30px 30px 30px;
	border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

#news .tab_link_entry .tab_link_title a::before,
#news .tab_link_entry .tab_preview_picture {
	position: absolute;
	display: block;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 120px;
	overflow: hidden;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

#news .tab_link_entry .tab_link_title a::before {
	content: "";
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#news .tab_preview_picture img {
	margin: 0 !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#news .tab_date {
	font-size: 0.75rem;
	font-weight: 600;
	position: absolute;
	left: -1px;
	top: 105px;
	z-index: 1;
	display: inline-block;
	padding: 6px 20px;
	background: #21803f;
	color: #fff;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

#news .tab_link_title a {
	color: #144d26;
}

/* #endregion ---------------------------------- news ------------------------------------------- */

/* --------------------------------------------- events ----------------------------------------- */

#events {
	margin-bottom: 40px;
}

#eventsBG .tab {
	background-image: url("../img/icon-kalender.png");
}

#events .tab_link_entry {
	color: #ffffff;
	padding: 30px;
	border: none !important;
}

#events .tab_link_entry a {
	color: #ffffff;
}

#events .tab_link_mandat a {
	text-decoration: underline;
}

@media (max-width: 767px) {
	#events .tab_link_entry:nth-child(2n + 1) {
		background: rgba(0, 0, 0, 0.1);
	}
}

@media (min-width: 768px) {
	#events .tab_link_entry:is(:nth-child(6n + 1), :nth-child(6n + 5)) {
		background: rgba(0, 0, 0, 0.3);
	}

	#events .tab_link_entry:is(:nth-child(6n + 3), :nth-child(6n + 4)) {
		background: rgba(0, 0, 0, 0.2);
	}
}

/* ------------------------------------------- content ------------------------------------------ */

#contentBox {
	text-align: left;
	padding-bottom: clamp(40px, 5vw, 80px);
	padding-top: clamp(30px, 5vw, 80px);
}

/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #144d26;
	font-weight: 600;
	line-height: 1.2;
	font-family: "Barlow", sans-serif;
}

h1,
.h1,
.legacy_h1 {
	font-size: 2rem;
}

h2,
.h2,
.legacy_h2 {
	font-size: 1.75rem;
}

h3,
.h3,
.legacy_h3 {
	font-size: 1.625rem;
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
	font-size: 1.5rem;
}

h5,
.h5,
.legacy_h5 {
	font-size: 1.375rem;
}

h6,
.h6,
.legacy_h6 {
	font-size: 1.25rem;
}

/* -------------------------------------------- icons ------------------------------------------- */

#icons {
	padding: 40px 0;
   color: #21803f;
   font-size: clamp(1.125rem, 1.5vw, 1.375rem);
}

/* #region ----------------------------------- footer ------------------------------------------- */

footer {
	background: #21803f;
	padding: 40px 0;
	color: #ffffff;
	font-size: 1rem;
}

footer > .row {
	row-gap: 30px;
}

@media (min-width: 1199px) {
	footer > .row > div:nth-child(2) {
		padding: 0 30px;
	}
}

footer a,
footer a:is(:hover, :focus) {
	color: #ffffff;
}

footer :is(iframe, .iframe-wrapper-manual-enabling) {
	width: 100% !important;
	min-width: 100% !important;
}

.footerTab a {
	text-decoration: underline;
	border-radius: 3px;
	padding: 2px;
}

.footerTab a:is(:hover, :focus) {
	background-color: rgba(0, 0, 0, 0.2);
}

.footerTab :is(h1, h2, h3, h4, h5, h6) {
	font-size: 1.375rem;
	color: #ffffff;
}


/* Map -------------------------------------------------------- */

#map :is(iframe, .iframe-wrapper-manual-enabling) {
	width: 100%;
	min-width: 100% !important;
}

#map iframe {
	display: block;
}

/* Full height */
#map :is(iframe, .iframe-wrapper-manual-enabling),
#map .template-page,
#map .template-page > .row {
	height: 100%;
}

/* Map -------------------------------------------------------- */


#innerfooter ul {
	padding: 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#innerfooter li {
	border-top: 2px solid rgba(0, 0, 0, 0.1);
}

#innerfooter a {
	text-decoration: none;
	font-weight: 500;
	position: relative;
	display: inline-block;
	padding: 6px 10px 6px 25px;
}

#innerfooter a::before {
	content: "";
	display: block;
	position: absolute;
	left: 10px;
	top: 16px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	transition: background 300ms linear;
}

#innerfooter a:is(:hover, :focus)::before {
	background: #ffffff;
}

/* #endregion -------------------------------- footer ------------------------------------------- */

/* ------------------------------------------ vernetzt ------------------------------------------ */

#vernetzt {
	gap: 18px;
	text-align: right;
	font-size: 0.8125rem;
	color: #ffffff;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
}

#vernetzt span span {
	display: block;
}

/* ------------------------------------------ contrast ------------------------------------------ */

.contrast_light_font form [id^="search_submit"] {
	background: url("../img/lupe-icon.png") center no-repeat;
}

.contrast_light_font #news .tab,
.contrast_light_font #eventsBG .tab,
.contrast_light_font #contact .phoneNumber,
.contrast_dark_font #contrast_style button {
	background: #000000 !important;
}

form[id^="search_input"].contrast_light_font,
[id^="search_submit"].contrast_light_font {
   background-color: #fff !important;
}

:is(.contrast_light_font, .contrast_dark_font) #contact > .row > div:last-child::after,
:is(.contrast_light_font, .contrast_dark_font) #contact > .row > div:last-child::before {
	display: none !important;
}

:is(.contrast_light_font, .contrast_dark_font) #news .tab_link_title a {
	filter: unset !important;
}

.contrast_dark_font #bannerOverlay,
.contrast_dark_font #news .tab {
	background: #ffffff !important;
}
