MediaWiki:Mobile.css

Материал из RuBeta Wiki
Версия от 17:18, 20 июля 2021; HappyWaffle (обсуждение | вклад) (Новая страница: «→‎All CSS here will be loaded for users of the mobile site: →‎* CSS an dieser Stelle wirkt sich auf almble Skins aus: /* Common skin for desktop and mobile v...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Замечание: Возможно, после публикации вам придётся очистить кэш своего браузера, чтобы увидеть изменения.

  • Firefox / Safari: Удерживая клавишу Shift, нажмите на панели инструментов Обновить либо нажмите Ctrl+F5 или Ctrl+R (⌘+R на Mac)
  • Google Chrome: Нажмите Ctrl+Shift+R (⌘+Shift+R на Mac)
  • Internet Explorer / Edge: Удерживая Ctrl, нажмите Обновить либо нажмите Ctrl+F5
  • Opera: Нажмите Ctrl+F5.
/* All CSS here will be loaded for users of the mobile site */
/** CSS an dieser Stelle wirkt sich auf almble Skins aus */
/* Common skin for desktop and mobile versions */
/* MediaWiki:Mobile.css is a copy of MediaWiki:Common.css */
/* <nowiki> */

/* Design für Dialoge */
@import url('//de.wikivoyage.org/w/index.php?title=MediaWiki:WV-Dialog.css&action=raw&ctype=text/css');

/* Unterdrückung Ausgabe Überschrift auf Hauptseite */
body.page-Hauptseite.action-view .firstHeading,
body.page-Hauptseite.action-view #contentSub {
	display: none;
}

/* Unterdrückt Ausgabe nachgestellter Links */
#content .url a.external.text:after, #content .url a.external.autonumber:after,
#content a[href^="tel:"].external.text:after, #content a[href^="tel:"].external.autonumber:after,
#content a[href^="mailto:"].external.text:after, #content a[href^="mailto:"].external.autonumber:after,
#content .printNoLink a.external.text:after, #content .printNoLink a.external.autonumber:after {
	content: '';
}
@media print {
	#content a.external.text:after, #content a.external.autonumber:after {
		font-weight: normal;
	}
}

/* größere Schrift Brotkrümelnavigation, Anpassung unterer Rand */
#contentSub, #contentSub2 {
	font-size: 1em; /* 0.7 -> 1em */
	margin-bottom: 1em; /* 1.4 -> 1em */
}
/* Breadcrumb nicht vorlesen */
@media speech {
	#contentSub { 
		display: none; 
	}
}

/* Einzelnachweise */
.references {
	font-size:90%;
}

/* Fehlerausschriften */
.error {
	background-color: #ffffff;
}

/* Minerva skin */
.skin-minerva .content ul {
	list-style: square outside;
	padding-left: 1em;
}
.skin-minerva .content .tocUl, .skin-minerva .content .tocUl ul {
	list-style: none;
}

/* Timeless skin */
.skin-timeless .mw-indicators {
	margin-top: -0.5em;
}
.skin-timeless .mw-indicators img {
	margin-top: 0;
}
.skin-timeless .wv-timeless-no-emoji { /* preventing 'Segoe UI Emoji' font */
	font-family: 'Lato','Liberation Sans','Noto Sans','Helvetica Neue','Helvetica',sans-serif;
}
.skin-timeless .toctoggle {
	top: -0.5em;
	position: relative;
}
/* Mapframe magnify button */
.skin-timeless .magnify a {
	background-image: url(/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.png?4f704) !important;
	display: block;
	text-indent: 15px;
	white-space: nowrap;
	overflow: hidden;
	width: 15px;
	height: 11px;
	margin-top: 0.2em;
}
#mf-destination-of-the-month .floatleft {
	margin: 0 0.5em 0.5em 0;
}
.newsheader .floatleft {
	margin: 0 0.5em 0 0;	
}

.skin-timeless #mw-content h1.firstHeading {
	overflow: visible;
}

/* Hiding sidebar on mobile devices; a Hamburger menu needed */
@media (max-width: 600px) {
	.skin-vector #mw-panel {
		display: none;
	}
	.skin-vector .mw-body, .skin-vector #footer {
		margin-left: 0;
	}
	.skin-vector #left-navigation {
		margin-left: 1em;
	}
	.skin-vector #p-personal {
		right: auto;
		left: 0;
	}
	.skin-vector #p-personal ul {
		padding-left: 0;
	}
}

/* Allgemeines */
/* Stellt denText so dar, als würde man das Tag <code>...</code> oder Die Vorlage {{Code|...}} benutzen */
.code {
	font-family: monospace,Courier; 
	color: black; 
	background-color: #f9f9f9; 
	border: 1px solid #ddd; 
	border-radius: 2px; padding: 1px 4px;
}

/* Generic class for Times-based serif, texhtml class for inline math */
span.texhtml {
    font-family: "Nimbus Roman No9 L", "Times New Roman", Times, serif;
    font-size: 118%;
    line-height: 1;
    white-space: nowrap;
    font-size: 100%;
    -moz-font-feature-settings: "lnum", "tnum", "kern" 0;
    -webkit-font-feature-settings: "lnum", "tnum", "kern" 0;
    font-feature-settings: "lnum", "tnum", "kern" 0;
    font-variant-numeric: lining-nums tabular-nums;
    font-kerning: none;
}
span.mwe-math-mathml-inline {
    font-size: 118%;
}

/* ermöglicht senkrechte Schrift, wie z.B. mongolisch */
.verticalFont {
	vertical-align:top; 
	layout-flow:vertical-ideographic; 
	writing-mode:vertical-lr;
}

/* Mehrspaltiger Text */

.nColumns {
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
}
.twoColumns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
	column-count: 2;
}
.threeColumns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}
.fourColumns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
	column-count: 4;
}
.nColumns *:first-child {
	margin-top: 0;
	padding-top: 0;
}
@media (max-width: 800px) {
	.twoColumns, .threeColumns, .fourColumns {
	    -webkit-column-count: 1;
    	-moz-column-count: 1;
		column-count: 1;
	}
}

/* Auslagerung von Stil-Vorlagen zur Performance-Steigerung */

/* Multiline and pretty tables */
/* -> MediaWiki:Tables.css */

.multiline, .prettytable {
	border: none;
	background-color: #ffffff;
	border-collapse: collapse;
	border-spacing: 0 0;
	margin: 1em 0;
	empty-cells: show;
}
.multiline th, .multiline td, .prettytable td, .prettytable th {
	border: 1px solid #6cc8f3;
	padding: 0.25em;
	vertical-align: baseline;
}
.prettytable th, .multiline th { /* hightlighting */
	text-align: center;
	background: #f0f0f0;
	color: #004f80;
}
.multiline th {
	text-align: left;
}
.multiline .even td {
	background-color: #F8f8f8;
}
.multiline .odd td {
	background-color: #ffffff;
}
.multiline.noBorder th {
	border-left: none;
	border-right: none;
}
.multiline.noBorder td {
	border: none;
}

.wv-table-odd-even tr:nth-child(even) td {
	background-color: #F8f8f8;
}
.wv-table-odd-even tr:nth-child(odd) td {
	background-color: #ffffff;
}

.wv-table-cell-vAlignTop tr th, .wv-table-cell-vAlignTop tr td {
	vertical-align: top;
}

/* Nutzung in Tabellen */

.sortable th {
	text-align: left;
}
.verticalCentered td, .verticalCentered th {
	vertical-align: middle;
}
.textCentered td, .textCentered th {
	text-align: center;
}
.lastColAlign td:last-child {
	vertical-align: middle;
	text-align: center;
}

/* Tabellen für Bildergalerien */

.galleryTable {
	clear: right;
	float: right;
	margin: 0 0 1em 1em;
	vertical-align: top;
	border-collapse: collapse;
	background: #fff;
	border-spacing: 0 0;
}
.noFloat {
	clear: both;
	float: none;
	margin: 0;
}
.galleryTable td, .galleryTable th {
	padding: 0;
	vertical-align: top;
}

/* für Vorlage:Bildergalerie */

.igContainer {
	margin: 0;
}
.igContainer.tright, .igContainer.tleft {
	margin-bottom: 0;
}
.igContainer + .igContainer {
	margin-top: 0;
}
.igCol {
	display: inline-block;
	vertical-align: top;
	margin: 0 0.5em 0 0;
	padding: 0;
}
.skin-minerva .igCol {
	display: block;
}
.igContainer.tright .igCol {
	margin: 0 0 0 0.5em;
}
.igCol .thumb {
	margin: 0 0 0.7em;
}
@media print {
	.igContainer .thumbinner {
		max-width: 200px;
	}
	.igContainer img  {
		max-width: 95%;
		height: auto;
	}
}

/* Artikel-Inhaltsverzeichnis */

/* Allow limiting of which header levels are shown in a TOC;
 * <div class="toclimit-3"></div>, for instance, will limit
 * to showing ==headings== and ===headings=== but no further
 * (as long as there are no =headings= on the page, which
 * there shouldn't be according to the MoS).
 * [[Vorlage:TOC limit]]
 */
.toclimit-2 .toclevel-1 ul,
.toclimit-3 .toclevel-2 ul,
.toclimit-4 .toclevel-3 ul,
.toclimit-5 .toclevel-4 ul,
.toclimit-6 .toclevel-5 ul,
.toclimit-7 .toclevel-6 ul {
	display: none;
}

/* Artikelstatus */

.article_status, .wv-article-status {
	clear: both;
	padding: 5px;
	margin: 0.75em 0;
	text-align: center;
	border: 1px solid #6CC8F3;
	background: #F0F0F0;
	border-radius: 5px;
}
.article_status table, .wv-article-status table {
	margin: 0;
}
.article_status td, .wv-article-status td {
	text-align: center;
	vertical-align: middle;
	padding: 5px;
}
.article_status td:first-child, .wv-article-status td:first-child {
	padding: 5px 1em;
}
@media (max-width: 800px) {
	.article_status td:first-child, .wv-article-status td:first-child {
		display: none;
	}
}

/* Für Babel-Vorlagen */

.babel {
	margin-bottom: 0.5em;
	border: #99B3FF solid 1px;
	background: transparent;
	padding-top: 3px;
}
.babel-header {
	text-align: center;
	font-weight: bold;
	margin: 0 3px 3px;
}
.babel-footer {
	text-align: center;
	margin: 3px;
}

#content .usr-lng {width: 238px; background: #c5fcdc; border: solid #6EF7A7 1px; margin: 0 3px 3px;}
.usr-lng .usr-code {background: #6ef7a7;}
#content .usr-lng-0 {width: 238px; background: #FFE0E8; border: solid #ffb3b3 1px; margin: 0 3px 3px;}
.usr-lng-0 .usr-code {background: #FFB3B3;}
#content .usr-lng-1 {width:238px; background: #f0f8ff; border: solid #c0c8ff 1px; margin: 0 3px 3px;}
.usr-lng-1 .usr-code {background: #c0c8ff;}
#content .usr-lng-2 {width: 238px; background: #d0f8ff; border: solid #77e0e8 1px; margin: 0 3px 3px;}
.usr-lng-2 .usr-code {background: #77e0e8;}
#content .usr-lng-3 {width: 238px; background: #e0e8ff; border: solid #99b3ff 1px; margin: 0 3px 3px;}
.usr-lng-3 .usr-code {background: #99b3ff;}
#content .usr-lng-4 {width: 238px; background: #ffff99; border: solid #cccc00 1px; margin: 0 3px 3px;}
.usr-lng-4 .usr-code {background: #ffff00;}
#content .usr-loc {width: 238px; background: #c0c0ff; border: solid #5050ff 1px; margin: 0 3px 3px;}
.usr-loc .usr-code {background: #5050ff;}
#content .usr-code, #bodyContent .usr-text {border-style: none; vertical-align: middle;}
#content .usr-code {width: 45px; height: 45px; text-align: center; font-size: 14pt;}
#content .usr-text {text-align: left; vertical-align: middle; font-size: 8pt; padding: 4pt; line-height: 1.25em;}
#content .usr-rtl {font-size: 11pt; text-align: right; direction: rtl;}

.skin-minerva .usr-lng, .skin-minerva .usr-lng-0, .skin-minerva .usr-lng-1,
.skin-minerva .usr-lng-2, .skin-minerva .usr-lng-3, .skin-minerva .usr-lng-4,
.skin-minerva .usr-loc {
	display: table;
	margin: 0 3px 3px !important;
	width: 238px !important;
}

/* Styles for article indicators */

.mw-indicators { /* Workaround for bug 73297 */
	float: right;
	line-height: 1.6;
	font-size: 0.875em;
	position: relative;
}
.mw-indicator { /* Workaround for bug 73297 */
	display: inline-block;
	zoom: 1;
	*display: inline
}

.mw-indicators {
	background: #ffffff;
}
.mw-indicator {
	margin-left: 5px;
	vertical-align: top;
}

#mw-indicator-i3-geo table {
	border-collapse: collapse;
	background: transparent;
}
#mw-indicator-i3-geo td {
	font-size: 0.9em;
	line-height: 100%;
	vertical-align: middle;
	padding: 0 0 0 10px;
	text-align: right;
	border-left: 1px solid #88a;
}
#mw-indicator-i3-geo .wv-icon {
	border-left: none;
	height: 27px;
	width: 35px;
	padding: 0 10px 0 0;
}
#mw-indicator-i3-geo .wv-coords {
	white-space: nowrap;
}
#mw-indicator-i3-geo a.external:link, #mw-indicator-i3-geo a.external:visited,
#mw-indicator-i3-geo a.external:hover, #mw-indicator-i3-geo a.external:active {
	text-decoration: none;
}
#mw-indicator-i3-gpx, #mw-indicator-i4-thema, #mw-indicator-i4-unesco,
#mw-indicator-i5-ferientipps, #mw-indicator-i6-zdm, #mw-indicator-i9-status {
	padding-top: 1px;
}
#mw-indicator-i3-gpx {
	margin-left: 9px;
}

/* Schriften für seltenere Sprachen */

.spanCop { /* Vorlage:cop, copS */
	font-family: ArialCoptic,'Arial Coptic','Segoe UI Historic',Arial,Helvetica,sans-serif;
}

/* Edittools: Specialchars */

#specialchars {
	margin-top: 3px;
	border: 1px solid #aaa;
	padding: 1px 1px 3px;
	text-align: left;
	background-color: #fff;
}
#specialchars p {
	font-family: 'Arial Unicode MS','Lucida Sans Unicode','MS Mincho',Arial,sans-serif;
	text-decoration: none;
	line-height: 1.7em;
}
#specialchars .arabic {
	font-family: 'Traditional Arabic','Arial Unicode MS','Lucida Sans Unicode','MS Mincho',sans-serif;
	font-size: 1.5em;
	line-height: 1.8em;
}
#specialchars .burmese {
	font-family: 'Myazedi',sans-serif;
	font-size: 1.5em;
	line-height: 1.8em;
}
#specialchars .khmer {
	font-family: 'Khmer OS',sans-serif;
	font-size: 1.5em;
	line-height: 2.2em;
}
#specialchars a {
	color: #000;
	background: #dff1ff;
	border: 1px #000 outset;
	padding: 0 3px 3px;
	font-size: 0.9em;
}
#specialchars a:hover {
	background-color: #f3faff;
	border-style: outset;
}
#specialchars a:active {
	background-color: #f3faff;
	border-style: inset;
}

/* Tags for most accessed pages */

#tags {
	float: right;
	background: #ffffff;
	width: 25%;
	padding: 0.5em 1em;
	line-height: 2em;
}
#tags span {
	display: inline-block;
}
#tags a {
	padding: 2px 4px 2px 0;
}

.tag0 a {
	font-size: 12px;
	color: #004f80;
}
.tag1 a {
	font-size: 16px;
	color: #247ca1;
}
.tag2 a {
	font-size: 18px;
	color: #48aac2;
}
.tag3 a {
	font-size: 20px;
	color: #6cc8f3;
}

/* Image information container */

.information {
	width: 100%;
}
.information th {
	background: #ccccff;
	text-align: right;
	padding: 0.4em;
	width: 15%;
	vertical-align: top;
}
.information[dir="rtl"] th {
	text-align: left;
}
.information td {
	vertical-align: top;
	padding: 0.4em;
	text-align: left;
}
.information + .information {
	border-top: none;
}

.InformationBox, .LizenzBox {
	margin: 0.5em 0;
	padding: 0.5em;
	border: 2px solid #6cc8f3;
	background: #F6F6F6;
	position: relative;
	clear: both;
}
.LizenzBox {
	border: 2px solid #80F000;
}

div.permissionStyle, div.restrictionStyle {
	text-align: center;
	padding: 0;
}
div.permissionStyle table, table.permissionStyle, div.restrictionStyle table,
table.restrictionStyle {
	text-align: left;
	clear: both;
	width: 100%;
	margin: 0.5em auto;
	background-color: #f6f6f6;
	border: 2px solid #80F000;
	border-collapse: collapse;
}
div.restrictionStyle table, table.restrictionStyle {
	background-color: #e8f8e8;
	border: 2px solid #80d080;
}
div.permissionStyle td, div.restrictionStyle td {
	padding: 1em;
	vertical-align: middle;
}
div.permissionStyle td:first-child, div.restrictionStyle td:first-child {
	width: 90px;
	text-align: center;
	padding-right: 0;
}
.selfBox {
	text-align: center;
	padding: 0.5em;
	clear: both;
	margin: 0.5em auto;
	background-color: #f6f6f6;
	border: 2px solid #80f000;
}

.warning {
	clear: both;
	margin: 0.5em auto;
	padding: 1em 1em 1em 7.5em;
	background-color: #fff0f0;
	background-position: 1em 50%;
	background-repeat: no-repeat;
	border: 2px solid #ff0000;
}

.missing {
	border: 1px solid #e3e3b0;
	background: #ffffee;
	padding: 0.5em 1em;
	text-align: center;
	margin: 0;
}

/* Quickbar styles */

.qb { /* is table */
	width: 308px;
	margin: 0 0 0.5em;
	border: 1px solid #6cc8f3;
	border-radius: 5px;
}
.skin-minerva table.qb {
	display: table; /* In der mobilen Ansicht werden Tabelen als block dargestellt! */
	width: 308px !important;
	margin: 0;
}
.skin-minerva  div.qb {
	width: 308px !important;
	margin: 0;
}
.qbRight {
	clear: right;
	float: right;
	margin-left: 1em;
}
.qbLeft {
	clear: left;
	float: left;
	margin-right: 1em;
}
.qbDiv, .qbRightDiv {
	box-sizing: border-box;
	overflow: hidden;
	border: 1px solid #6cc8f3;
	border-radius: 5px;
	margin: 0;
}
.qbRightDiv {
	clear: right;
	float: right;
	margin: 0 0 0.5em 1em;
}
.qbDiv .qb, .qbRightDiv .qb {
	border: none;
	margin: 0;
}
.qb td {
	padding: 2px 4px;
	vertical-align: baseline;
}
.qb th {
	padding: 2px 4px;
	vertical-align: baseline;
	text-align: left;
	font-weight: bold;
}
.qb .qbHeader {
	text-align: center;
	color: #004f80;
	padding: 0.3em 0.35em;
	font-size: 1.2em;
	background: #f0f0f0;
	border-top: 1px solid #c0c0c0;
}
.qb tr:first-child .qbHeader {
	border-top: none;
	border-radius: 5px 5px 0 0;
}
.qbImage {
	text-align: center;
	padding: 5px 3px;
	margin-left: auto;
	margin-right: auto;
}
.qbImage div.thumb {
	border-style: none;
	margin-bottom: 0;
	margin-top: 0;
}
.qbImage div.thumbinner {
	border-style: none;
	padding: 0 !important;
	background: transparent;
	margin: 0 auto;
}
.qbImage div.tright, .qbImage .thumb.tright {
	float: none;
	margin: 0;
	padding: 0;
}
.qb .qbImageCell {
	padding: 0;
}
.qbImageCell .qbHeader {
	border-bottom: none;
}
.qbEmpty {
	display: none;
}
.qbItemSmall {
	font-size:80%;
}

.qb-flag img, #qb_flag img /* <- veraltet */ {
	box-shadow: 2px 2px 6px #a4a4a4;
}

.qb-line td {
	padding: 0 4px; 
	height: 1px; 
	vertical-align: middle;
}
.qb-line td hr {
	height: 0px; 
	border-bottom: 1px solid gray;
}
.qb-alt-image {
	clear: right;
	float: right;
	display: none;
}

.breakable {
	font-size: 7%;
	line-height: 0.1%;
	text-decoration: none !important;
	visibility: hidden;
}

@media print {
	#content .qb { border-width: 0.25mm; }
	#content .qb .qbHeader {
		font-size: 1em;
		background: #f0f0f0;
		border-top: 0.25mm solid #c0c0c0;
		border-bottom: 0.25mm solid #c0c0c0;
	}
}

/* Corporate Design */

.wv-tabsWrapper {
	position: relative;
	top: 1px;
	margin: 0 0.75em;
	word-spacing: -0.25em;
	white-space: nowrap;
	overflow: hidden;
}
.wv-tab {
	display: inline-block;
	border: 1px solid #6cc8f3;
	border-bottom: 1px solid #f0f0f0;
	border-radius: 5px 5px 0 0;
	margin: 0 0.75em 0 0;
	padding: 0.1em 1em;
	background: #f0f0f0;
	max-width: 15%;
	word-spacing: normal;
	vertical-align: bottom;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	line-height: 140%;
}
.wv-mainTab {
	position: relative;
	z-index: 1;
}
/* JS-generierte Tabs, siehe [[Portal:Ägypten/Auf einen Blick 2]] */
.tabbedContainers .wv-tabsWrapper {
	display: none;
}
.tabbedContainers .wv-tab {
	font-weight: normal;
	text-decoration: none;
	color: #002bb8;
	cursor: pointer;
	max-width: 30%;
}
.tabbedContainers .wv-mainTab {
	font-weight: bold;
	color: #000000;
	cursor: text;
}
.tabbedContainers.wv-js .wv-tab {
	text-decoration: none;
}
.tabbedContainers.wv-js .wv-tab:hover, .tabbedContainers.wv-js .wv-tab:active {
	text-decoration: underline;
}
.tabbedContainers.wv-js .wv-mainTab {
	text-decoration: none !important;
}
@media print {
	.wv-tabsWrapper, .tabbedContainers .wv-showIt  {
		display: none;
	}
}
@media (max-width: 800px) {
	.wv-tab {
		padding: 0.1em 0.3em;
		margin-right: 0.5em;
	}
	.mobileMaxHeight15 {
		max-height: 15em;
		overflow-y: auto;
	}
}

/* Rahmen und Überschriften */

.container, .framedBox, .mcContainer, .navContainer {
	box-sizing: border-box;
	border: 1px solid #6cc8f3;
	border-radius: 5px;
	position: relative;
	padding: 0 0.5em 3px;
	margin: 0.75em 0 0;
	background: #ffffff;
}
.mcContainer {
	display: flex;
}
.skin-minerva .container, .skin-minerva .framedBox, .skin-minerva .mcContainer,
.skin-minerva .navContainer {
	width: auto !important; /* for Minerva skin */
}
.qbDiv .container, .qbRightDiv .container {
	border: none;
	margin: 0;
}
.framedBox { /* immer ohne Überschrift */
	padding-top: 0.4em;
}
.mcContainer {
	margin-top: 0;
	padding-bottom: 0.75em;
}
.mcContainer + .mcContainer, .container + .mcContainer, .mcContainer .mcContainer, .mcCol > .qbDiv {
	margin-top: 0.75em;
}
.cFirst, .wv-tabsWrapper + .container {
	margin: 0;
	clear: both;
}

.var1, .mcVar1 { /* blau */
	border-color: #6cc8f3;
}
.var2, .mcVar2 { /* grün */
	border-color: #80f000;
}
.var3, .mcVar3 { /* rot */
	border-color: #f3706c;
}

.container .editLink, .wv-mod-toggle .mw-collapsible-toggle {
	display: block;
	float: right;
	font-size: 90%;
	background: transparent;
	margin: 0.5em 0 0.5em 0.5em;
	padding-top: 0.4em;
}

.container .ctHeader, .mcContainer .ctHeader {
	background: #f0f0f0;
	color: #004f80;
	margin: 0.75em -0.4em 0.4em;
	padding: 0.3em 0.4em;
	border-top: 1px solid #c0c0c0;
	border-bottom: none;
	font-size: 1.25em;
}
.skin-minerva .container .ctHeader .lazy-image-placeholder {
	display: inline;
}
.container > .chFirst, .mcContainer > .chFirst {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin-top: 0;
	border-top: none;
}
.mcContainer .chFirst {
	margin-bottom: 0.75em;
}
.container.mw-collapsed {
	padding-bottom: 0;
}
.container.mw-collapsed .chFirst {
	border-radius: 5px;
	margin-bottom: 0;
}
.var1 > .ctHeader, .var1 > .ctHeader a, .mcVar1 > .ctHeader, .mcVar1 > .ctHeader a {
	color: #004f80;
}
.var2 > .ctHeader, .var2 > .ctHeader a, .mcVar2 > .ctHeader, .mcVar2 > .ctHeader a {
	color: #00804f;
}
.var3 > .ctHeader, .var3 > .ctHeader a, .mcVar3 > .ctHeader, .mcVar3 > .ctHeader a {
	color: #800200;
}
@media print {
	.container { border: 0.25mm solid #6cc8f3; }
	.container .ctHeader, .mcContainer .ctHeader {
		font-size: 1em;
		border-top: 0.25mm solid #c0c0c0;
		border-bottom: 0.25mm solid #c0c0c0;
	}
	.container .editLink, .container .mw-collapsible-toggle { display: none; }
}

.navLeiste {
	text-align: center;
	padding-bottom: 0;
}
.navLeiste .ctHeader {
	margin-bottom: 0;
}
.navLeiste .boxContent {
	margin-top: 0.3em;
	padding: 0 0 0.3em;
}
.navImage {
	position: relative; /* IE quirks mode */
	background-color: #ffffff;
	margin: 0 0 0 -0.5em;
	padding: 2px 2px 1px;
	float: left;
	border-top-left-radius: 5px;
}

/* boxContent */

.container .centered {
	text-align: center;
}
.container .justified {
	text-align: justify;
}
.container p, .container ul, .container .div {
	margin-bottom: 0.3em;
}
.skin-minerva .container + ul, .skin-minerva .container + ol {
 margin-top: 0.75em;
}
.container .emph { /* für Hauptseite */
	font-size: 110%;
	font-weight: bold;
}
.container .usr-code .center { /* für Babel */
	margin: 0;
}
.boxContent > *:first-child, .framedBox > *:first-child {
	margin-top: 0;
	padding-top: 0;
}

/* Mehrspaltenlayout */

.blindIntro {
	display: none;
}
.mw-body .pIntro {
	border: 1px solid #6cc8f3;
	border-radius: 5px;
	padding: 0.5em 0.5em;
	margin-bottom: 0.75em;
}
.mcWithoutFrame {
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none !important;
}
.mcCols {
	display: flex;
}
.mcCol {
	box-sizing: border-box;
	margin: 0 0.5em 0 0.25em;
	padding: 0;
}
.mcCol:last-child {
	margin-right: 0.25em;
	width: 100%;
}
.mcWithoutFrame .mcCol:first-child {
	margin-left: 0;
}
.mcWithoutFrame .mcCol:last-child {
	margin-right: 0;
}
.mcCol > *:first-child {
	margin-top: 0;
}

.mcIntro, .mcFooter {
	margin: 0.75em 0.25em;
}
.mcFooter {
	margin-bottom: 0;
}
.mcWithoutFrame .mcIntro, .mcWithoutFrame .mcFooter {
	margin-left: 0;
	margin-right: 0;
}

@media (max-width: 900px) {
	.mcContainer {
		border: none;
		padding: 0;
	}
	.mcIntro, .mcFooter, .ctHeader {
		margin-left: 0;
		margin-right: 0;
	}
	.mcCols {
		flex-direction: column;
	}
	.mcCol {
		width: 100% !important;
		margin: 0;
		padding: 0;
	}
	.mcCol + .mcCol {
		margin-top: 0.75em;
	}
}

/* Mehrspaltenlayout Reisethemen */

.travelTopics {
	margin-bottom: 1em;
}
.travelTopics .floatright {
	border: solid 1px #cccccc;
	background: #eeeeee;
	padding: 3px;
	margin: 0.5em 0 0 1em;
}
.travelTopics .ctHeader {
	margin: 0 0 0.7em;
	background-color: #ffffff;
	border-top: none;
	border-bottom: 1px solid #a2a9b1;
	padding: 0.3em 0 0;
	overflow: hidden;
}

/* Stylesheet extension for navigation bars */

.navContainer {
	padding: 0;
}
.navContainer + .navContainer {
	border-top-style: none;
}
.navContainer .container {
	clear: both;
	text-align: center;
	border-style: none;
	margin-top: 0;
}

/* Nachrichtenübersichten */

.newsheader {
	width: 100%;
	background-color: #f3f3f3;
	border: 1px solid #6cc8f3;
	border-radius: 5px;
	margin: 0;
}
.newsheader td, .newsheader th {
	vertical-align: top;
	padding: 0.6em;
}
.newsheader th {
	text-align: left;
}
.newsheader td {
	font-size: 95%;
}
.newsheader .calendar {
	float: right;
}
.newsheader .calendar tr, .newsheader .calendar td {
	padding: 0;
}
.container .remark {
	font-size: 85%;
	font-weight: normal;
	float: right;
}

/* Kalender im Mehrspaltenlayout */

.mcCol .calWidth {
	width: 100%;
}

/* Removes underlines from certain links */

.nounderlines a,
.IPA a:link, .IPA a:visited { /* Vorlage:IPA (phonetisches Alphabet) */
	text-decoration: none !important;
}

/* Zwingt Bild etc. auf Grundlinie */

.baseline * {
	vertical-align: baseline;
}

/* Hervorhebung der angeklickten Fußnoten und der Rückverweise in blau */
 
.references > li:target {
	background-color: #ddeeff;
}
sup.reference:target {
	background-color: #ddeeff;
}

/* General */
/* Floating not in mobile view */

.float-left {
	clear: left;
	float: left;
	margin: 0 1em 1em 0;
}
.float-right {
	clear: right;
	float: right;
	margin: 0 0 1em 1em;
}
@media (max-width: 720px) {
	.float-left, .float-right {
		clear: both;
		float: none;
		margin: 0 0 1em;
		width: 100% !important;
	}
}
div.centered, table.centered, ul.centered, .centered {
	clear: both;
	float: none;
	margin: 1em auto;
}
.tablecenter {
	margin-left: auto;
	margin-right: auto;
}

/* für Vorlage:RegionFlag */

.regionFlag {
	position: relative;
	float: left;
	border-left: 1.33em solid #ffffff;
	width: 0;
	height: 1em;
	margin: 0.2em 0.5em 0 0;
}
.regionFlag:before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	border: 0.07em solid #404040;
	width: 1.33em;
	height: 1em;
	top: 0;
	left: -1.33em;
	background: transparent;
}

/* Mobile devices: different containers */

@media (max-width: 600px) {
	.qbRightDiv, .qbRight, .qbLeft {
		clear: both;
		float: none;
	}
	.qbRightDiv {
		width: auto !important;
		margin: 0.7em 0;
	}
	.content table.qb, .content div.qb, .content .tabbedContainers, .content .ImageGroup,
	.qbDiv .qb, .qbRightDiv .qb {
		width: 100% !important;
	}
}

/* für Vorlage:Coord */

.coordBox { /* Koordinate in einer Box */
	clear: right;
	float: right;
	margin: 0 0 0.5em 1em;
	padding: 0.5em;
	border: solid 1px #999;
	font-size: smaller;
	display: block;
}
.coordStyle {
	white-space: nowrap;
}

/* Für Vorlage:Klappbox */

.klappbox {
	clear: both;
}
.klappbox .mw-collapsible-toggle {
	font-weight: normal;
	text-align: right;
	margin: 0;
	padding: 0;
}
.klappboxInhalt {
	border-top: 1px solid #a0a0a0;
	padding-top: 2px;
	margin-top: 2px;
}

/* für Vorlage:Banner */

.simpleBanner {
	clear: both;
	position: relative;
	margin: 0 0 1em;
	max-width: 1800px; 
	overflow: hidden;
	height: auto;
}
.simpleBanner img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* CSS hack specific to IE 7, 8, & 9 */
}
.simpleBanner .imgTitle {
	position: absolute;
	padding: 3px 5px;
	width: auto;
	left: 5px;
	bottom: 5px;
	background: #000000;
	background: rgba(0,0,0,0.3);
	border-radius: 4px;
	color: white;
}
@media (max-width: 720px) {
	.simpleBanner {
		display: none;
	}
}

/* Location map */

.skin-minerva .locationMap {
	display: table;
	margin: 0 auto !important;
}

/* Kartographer and static maps */

.leaflet-popup-content { /* Kartographer-Popup */
	width: 141px !important;
}
.leaflet-popup-content .marker-title {
	font-weight: normal;
}
.leaflet-popup-content img {
	display: block;
	width: 100% !important;
	height: auto !important;
}
.leaflet-container img {
    border: none;
}
.mw-kartographer-interactive .leaflet-control-layers-expanded { /* Layers control */
	overflow-x: hidden;
	overflow-y: auto;
	width: 200px;
}
@media print {
	.leaflet-bar, .leaflet-control {
		display: none;
	}
}

.mw-kartographer-container.thumb:not(.mw-kartographer-full) .thumbinner > .mw-kartographer-map {
	border: 1px solid #ccc;
	box-sizing: border-box;
}

.wv-staticMap {
	position: relative;
	left: -3px;
	margin-top: 3px;
}
.skin-minerva .wv-staticMap {
	left: 0;
}
.mw-kartographer-container .magnify { /* magnify button of Minerva skin */
	float: right;
	margin-left: 3px;
	margin-right: 0;
	display: block !important;
}
.mw-kartographer-container div.magnify a {
	background-image: url(/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.png?4f704);
	background-image: linear-gradient( transparent,transparent ),url("data:image/svg+xml,%3C%3Fxml version=%221.0%22 encoding=%22UTF-8%22 standalone=%22no%22%3F%3E%0A%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 11 15%22 width=%2215%22 height=%2211%22%3E%0A %3Cg id=%22magnify-clip%22 fill=%22%23fff%22 stroke=%22%23000%22%3E%0A %3Cpath id=%22bigbox%22 d=%22M1.509 1.865h10.99v7.919h-10.99z%22/%3E%0A %3Cpath id=%22smallbox%22 d=%22M-1.499 6.868h5.943v4.904h-5.943z%22/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A");
	display: block;
	text-indent: 15px;
	white-space: nowrap;
	overflow: hidden;
	width: 15px;
	height: 11px;
	text-decoration: none;
}

/* Indicator map */
#wv-topMap {
	height: 400px;
	border: 1px solid #c8ccd1;
	margin-bottom: 1em;
}
#wv-articles-map {
	height: 600px;
	border: 1px solid #c8ccd1;
}
@media (max-width: 1300px) { /* laptop and smartphone support */
	#wv-articles-map {
		height: 450px;
	}
}
@media (max-width: 800px) {
	#wv-articles-map {
		height: 350px;
	}
}
@media (max-width: 600px) {
	#wv-articles-map {
		height: 300px;
	}
}
#wv-topMap .closeControl, #wv-fullScreenMap .closeControl, #wv-articles-map .closeControl {
	background-image: url(/w/load.php?modules=oojs-ui.styles.icons-interactions&image=close&format=rasterized&lang=de&skin=vector&version=12ligfd);
	background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3Eclose%3C/title%3E%3Cpath d=%22M4.34 2.93l12.73 12.73-1.41 1.41L2.93 4.35z%22/%3E%3Cpath d=%22M17.07 4.34L4.34 17.07l-1.41-1.41L15.66 2.93z%22/%3E%3C/svg%3E");
	background-position: center center;
}

.osm div.thumb { /* Karten- und Datenquellen */
	margin-bottom: 0;
}
.osm div.thumbinner {
	border: none;
	padding: 0;
}
.osm .thumbcaption {
	padding: 0;
}

@media print {
	.poi {
		background: #ffffff;
	}
	.poi a.external:link, .poi a.external:visited, .poi a.external:hover, .poi a.external:active {
		color: #000000;
	}
}

/* Vorlagenmaster */

h3.tm_group_heading {
    margin-top: 2px !important;
    margin-left: 2px !important;
}

div.tm_group input {
	margin: 0;
}

/* Message Boxes */
 
/* Messagebox templates */
.messagebox {
    border: 1px solid #aaa;
    background-color: #f9f9f9;
    width: 80%;
    margin: 0 auto 1em auto;
    padding: .2em;
}
.messagebox.merge {
    border: 1px solid #c0b8cc;
    background-color: #f0e5ff;
    text-align: center;
}
.messagebox.cleanup {
    border: 1px solid #9f9fff;
    background-color: #efefff;
    text-align: center;
}
.messagebox.standard-talk {
    border: 1px solid #c0c090;
    background-color: #f8eaba;
    margin: 4px auto;
}
/* For old WikiProject banners inside banner shells. */
.mbox-inside .standard-talk,
.messagebox.nested-talk {
    border: 1px solid #c0c090;
    background-color: #f8eaba;
    width: 100%;
    margin: 2px 0;
    padding: 2px;
}
.messagebox.small {
    width: 238px;
    font-size: 85%;
    /* @noflip */
    float: right;
    clear: both;
    /* @noflip */
    margin: 0 0 1em 1em;
    line-height: 1.25em;
}
.messagebox.small-talk {
    width: 238px;
    font-size: 85%;
    /* @noflip */
    float: right;
    clear: both;
    /* @noflip */
    margin: 0 0 1em 1em;
    line-height: 1.25em;
    background: #F8EABA;
}
/* Seitenprobleme ausgeblendet */
.skin-minerva .cleanup { display: none; }


/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
th.mbox-text, td.mbox-text {   /* The message body cell(s) */
    border: none;
    /* @noflip */
    padding: 0.25em 0.9em;     /* 0.9em left/right */
    width: 100%;               /* Make all mboxes the same width regardless of text length */
}
td.mbox-image {                /* The left image cell */
    border: none;
    /* @noflip */
    padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
    text-align: center;
}
td.mbox-imageright {           /* The right image cell */
    border: none;
    /* @noflip */
    padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
    text-align: center;
}
td.mbox-image img {
	vertical-align: -0.3em;
}
td.mbox-empty-cell {           /* An empty narrow cell */
    border: none;
    padding: 0px;
    width: 1px;
}
 
/* Article message box styles */
table.ambox {
    margin: 0px 10%;                  /* 10% = Will not overlap with other elements */
    border: 1px solid #aaa;
    /* @noflip */
    border-left: 10px solid #1e90ff;  /* Default "notice" blue */
    background: #fbfbfb;
}
table.ambox + table.ambox {      /* Single border between stacked boxes. */
    margin-top: -1px;
}
.ambox th.mbox-text,
.ambox td.mbox-text {            /* The message body cell(s) */
    padding: 0.25em 0.5em;       /* 0.5em left/right */
}
.ambox td.mbox-image {           /* The left image cell */
    /* @noflip */
    padding: 2px 0 2px 0.5em;    /* 0.5em left, 0px right */
}
.ambox td.mbox-imageright {      /* The right image cell */
    /* @noflip */
    padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */
}
 
table.ambox-notice {
    /* @noflip */
    border-left: 10px solid #1e90ff;    /* Blue */
}
table.ambox-speedy {
    /* @noflip */
    border-left: 10px solid #b22222;    /* Red */
    background: #fee;                   /* Pink */
}
table.ambox-delete {
    /* @noflip */
    border-left: 10px solid #b22222;    /* Red */
}
table.ambox-content {
    /* @noflip */
    border-left: 10px solid #f28500;    /* Orange */
}
table.ambox-style {
    /* @noflip */
    border-left: 10px solid #f4c430;    /* Yellow */
}
table.ambox-move {
    /* @noflip */
    border-left: 10px solid #9932cc;    /* Purple */
}
table.ambox-protection {
    /* @noflip */
    border-left: 10px solid #bba;       /* Gray-gold */
}
table.ambox-collaboration {
    /* background: #FFF9DB;     Yellow */
    border-left: 10px solid #f28500;
}
table.ambox-inuse {
    /* background: #FFF8F2; 
    border: 1px solid #DD3300; */
    border-left: 10px solid #DD3300;
}
table.ambox-travel-warning {
    background: #FFCCCC; 
    /*border: 1px solid #DD3300; */
    border-left: 10px solid #CC9999;
}
table.ambox-translate {
    /* @noflip */
    border-left: 10px solid #f4c430;    /* Yellow */
}
 
/* Image message box styles */
table.imbox {
    margin: 4px 10%;
    border-collapse: collapse;
    border: 3px solid #1e90ff;    /* Default "notice" blue */
    background: #fbfbfb;
}
.imbox .mbox-text .imbox {  /* For imboxes inside imbox-text cells. */
    margin: 0 -0.5em;       /* 0.9 - 0.5 = 0.4em left/right.        */
    display: block;         /* Fix for webkit to force 100% width.  */
}
.mbox-inside .imbox {       /* For imboxes inside other templates.  */
    margin: 4px;
}
 
table.imbox-notice {
    border: 3px solid #1e90ff;    /* Blue */
}
table.imbox-speedy {
    border: 3px solid #b22222;    /* Red */
    background: #fee;             /* Pink */
}
table.imbox-delete {
    border: 3px solid #b22222;    /* Red */
}
table.imbox-content {
    border: 3px solid #f28500;    /* Orange */
}
table.imbox-style {
    border: 3px solid #f4c430;    /* Yellow */
}
table.imbox-move {
    border: 3px solid #9932cc;    /* Purple */
}
table.imbox-protection {
    border: 3px solid #bba;       /* Gray-gold */
}
table.imbox-license {
    border: 3px solid #88a;       /* Dark gray */
    background: #f7f8ff;          /* Light gray */
}
table.imbox-featured {
    border: 3px solid #cba135;    /* Brown-gold */
}
table.imbox-translate {
    border: 3px solid #f4c430;    /* Yellow */
}
 
/* Category message box styles */
table.cmbox {
    margin: 3px 10%;
    border-collapse: collapse;
    border: 1px solid #aaa;
    background: #DFE8FF;    /* Default "notice" blue */
    border-radius:5px;
}
 
table.cmbox-notice {
    background: #D8E8FF;    /* Blue */
}
table.cmbox-speedy {
    margin-top: 4px;
    margin-bottom: 4px;
    border: 4px solid #b22222;    /* Red */
    background: #FFDBDB;          /* Pink */
}
table.cmbox-delete {
    background: #FFDBDB;    /* Red */
}
table.cmbox-content {
    background: #FFE7CE;    /* Orange */
}
table.cmbox-style {
    background: #FFF9DB;    /* Yellow */
}
table.cmbox-move {
    background: #E4D8FF;    /* Purple */
}
table.cmbox-protection {
    background: #EFEFE1;    /* Gray-gold */
}
table.cmbox-collaboration {
    background: #FFF9DB;    /* Yellow */
}
table.cmbox-inuse {
    background: #FFF8F2;
    border: 1px solid #DD3300;
    font-size: 110%;
}
table.cmbox-translate {
    background: #FFF9DB;    /* Yellow */
}

/* Other pages message box styles */
table.ombox {
    margin: 4px 10%;
    border-collapse: collapse;
    border: 1px solid #aaa;       /* Default "notice" gray */
    background: #f9f9f9;
}
 
table.ombox-notice {
    border: 1px solid #aaa;       /* Gray */
}
table.ombox-speedy {
    border: 2px solid #b22222;    /* Red */
    background: #fee;             /* Pink */
}
table.ombox-delete {
    border: 2px solid #b22222;    /* Red */
}
table.ombox-content {
    border: 1px solid #f28500;    /* Orange */
}
table.ombox-style {
    border: 1px solid #f4c430;    /* Yellow */
}
table.ombox-move {
    border: 1px solid #9932cc;    /* Purple */
}
table.ombox-protection {
    border: 2px solid #bba;       /* Gray-gold */
}
table.ombox-translate {
    border: 1px solid #f4c430;    /* Yellow */
}
 
/* Talk page message box styles */
table.tmbox {
    margin: 4px 10%;
    border-collapse: collapse;
    border: 1px solid #c0c090;    /* Default "notice" gray-brown */
    background: #f8eaba;
}
.mediawiki .mbox-inside .tmbox { /* For tmboxes inside other templates. The "mediawiki" class ensures that */
    margin: 2px 0;               /* this declaration overrides other styles (including mbox-small above)   */
    width: 100%;                 /* For Safari and Opera */
}
.mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
    line-height: 1.5em;          /* also "nested", so reset styles that are   */
    font-size: 100%;             /* set in "mbox-small" above.                */
}
 
table.tmbox-speedy {
    border: 2px solid #b22222;    /* Red */
    background: #fee;             /* Pink */
}
table.tmbox-delete {
    border: 2px solid #b22222;    /* Red */
}
table.tmbox-content {
    border: 2px solid #f28500;    /* Orange */
}
table.tmbox-style {
    border: 2px solid #f4c430;    /* Yellow */
}
table.tmbox-move {
    border: 2px solid #9932cc;    /* Purple */
}
table.tmbox-protection,
table.tmbox-notice {
    border: 1px solid #c0c090;    /* Gray-brown */
}
table.tmbox-translate {
    border: 2px solid #f4c430;    /* Yellow */
}
 
/* Disambig and set index box styles */
table.dmbox {
    clear: both;
    margin: 0.9em 1em;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: transparent;
}
 
/* Footer and header message box styles */
table.fmbox {
    clear: both;
    margin: 0.2em 0;
    width: 100%;
    border: 1px solid #aaa;
    background: #f9f9f9;     /* Default "system" gray */
}
table.fmbox-system {
    background: #f9f9f9;
}
table.fmbox-warning {
    border: 1px solid #bb7070;  /* Dark pink */
    background: #ffdbdb;        /* Pink */
}
table.fmbox-editnotice {
    background: transparent;
}
/* Div based "warning" style fmbox messages. */
div.mw-warning-with-logexcerpt,
div.mw-lag-warn-high,
div.mw-cascadeprotectedwarning,
div#mw-protect-cascadeon {
    clear: both;
    margin: 0.2em 0;
    border: 1px solid #bb7070;
    background: #ffdbdb;
    padding: 0.25em 0.9em;
}
/* Div based "system" style fmbox messages.
   Used in [[MediaWiki:Readonly lag]]. */
div.mw-lag-warn-normal,
div.fmbox-system {
    clear: both;
    margin: 0.2em 0;
    border: 1px solid #aaa;
    background: #f9f9f9;
    padding: 0.25em 0.9em;
}
 
/* These mbox-small classes must be placed after all other
   ambox/tmbox/ombox etc classes. "body.mediawiki" is so
   they override "table.ambox + table.ambox" above. */
body.mediawiki table.mbox-small {   /* For the "small=yes" option. */
    /* @noflip */
    clear: right;
    /* @noflip */
    float: right;
    /* @noflip */
    margin: 4px 0 4px 1em;
    width: 238px;
    font-size: 88%;
    line-height: 1.25em;
}
body.mediawiki table.mbox-small-left {   /* For the "small=left" option. */
    /* @noflip */
    margin: 4px 1em 4px 0;
    width: 238px;
    border-collapse: collapse;
    font-size: 88%;
    line-height: 1.25em;
}
 
/* Style for compact ambox */
/* Hide the images */
.compact-ambox table .mbox-image,
.compact-ambox table .mbox-imageright,
.compact-ambox table .mbox-empty-cell {
    display: none;
}
/* Remove borders, backgrounds, padding, etc. */
.compact-ambox table.ambox {
    border: none;
    border-collapse: collapse;
    background: transparent;
    margin: 0 0 0 1.6em !important;
    padding: 0 !important;
    width: auto;
    display: block;
}
body.mediawiki .compact-ambox table.mbox-small-left {
    font-size: 100%;
    width: auto;
    margin: 0;
}
/* Style the text cell as a list item and remove its padding */
.compact-ambox table .mbox-text {
    padding: 0 !important;
    margin: 0 !important;
}
.compact-ambox table .mbox-text-span {
    display: list-item;
    line-height: 1.5em;
    list-style-type: square;
    list-style-image: url(/static/current/skins/MonoBook/bullet.gif);
}
.skin-vector .compact-ambox table .mbox-text-span {
    list-style-type: circle;
    list-style-image: url(/static/current/skins/Vector/images/bullet-icon.png)
}
/* Allow for hiding text in compact form */
.compact-ambox .hide-when-compact {
    display: none;
}

/* Normal font styling for table row headers with scope="row" tag */
.wikitable.plainrowheaders th[scope=row] {
    font-weight: normal;
    /* @noflip */
    text-align: left;
}
 
/* Lists in data cells are always left-aligned */
.wikitable td ul,
.wikitable td ol,
.wikitable td dl {
    /* @noflip */
    text-align: left;
}
/* ...unless they also use the hlist class */
.wikitable.hlist td ul,
.wikitable.hlist td ol,
.wikitable.hlist td dl {
    text-align: inherit;
}

/* Style for horizontal lists (separator following item).
   Note: hlist formatting will break if the resulting HTML lacks a breakable character
   between list items. This happens when the following conditions are true:
   1) The list is made using wiki markup (where HTML is built by parser.php)
   2) HTMLTidy is disabled or unavailable (such as on Special: pages)
   In such cases, building lists with .hlist using HTML instead of wiki markup
   will work around this problem. See also [[Bugzilla:39617]].
   IE8-specific classes are assigned in [[MediaWiki:Common.js/IEFixes.js]].
   @source mediawiki.org/wiki/Snippets/Horizontal_lists
   @revision 3.2 (2013-09-25)
   @author [[User:Edokter]]
 */
.skin-monobook .hlist dl,
.skin-modern .hlist dl,
.skin-vector .hlist dl {
    line-height: 1.5em;
}
.hlist dl,
.hlist ol,
.hlist ul {
    margin: 0;
    padding: 0;
}
/* Display list items inline and make them nowrap */
.hlist dd,
.hlist dt,
.hlist li {
    margin: 0;
    display: inline;
    white-space: nowrap;
}
/* Allow wrapping for list items (in tight spaces) */
.hlist.hwrap dd,
.hlist.hwrap dt,
.hlist.hwrap li {
    white-space: normal;
}
/* Display nested lists inline and allow them to wrap */
.hlist dl dl, .hlist dl ol, .hlist dl ul,
.hlist ol dl, .hlist ol ol, .hlist ol ul,
.hlist ul dl, .hlist ul ol, .hlist ul ul {
    display: inline;
    white-space: normal;
}
/* Generate interpuncts */
.hlist dt:after {
    content: ":";
}
.hlist dd:after,
.hlist li:after {
    content: " ·";
    font-weight: bold;
}
.hlist dd:last-child:after,
.hlist dt:last-child:after,
.hlist li:last-child:after {
    content: none;
}
/* For IE8 */
.hlist dd.hlist-last-child:after,
.hlist dt.hlist-last-child:after,
.hlist li.hlist-last-child:after {
    content: none;
}
/* Add parentheses around nested lists */
.hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
    content: "(";
    font-weight: normal;
}
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
    content: ")";
    font-weight: normal;
}
/* For IE8 */
.hlist dd dd.hlist-last-child:after, .hlist dd dt.hlist-last-child:after, .hlist dd li.hlist-last-child:after,
.hlist dt dd.hlist-last-child:after, .hlist dt dt.hlist-last-child:after, .hlist dt li.hlist-last-child:after,
.hlist li dd.hlist-last-child:after, .hlist li dt.hlist-last-child:after, .hlist li li.hlist-last-child:after {
    content: ")";
    font-weight: normal;
}
/* Put ordinals in front of ordered list items */
.hlist ol {
    counter-reset: list-item;
}
.hlist ol > li {
    counter-increment: list-item;
}
.hlist ol > li:before {
    content: counter(list-item) " ";
}
.hlist dd ol > li:first-child:before,
.hlist dt ol > li:first-child:before,
.hlist li ol > li:first-child:before {
    content: "(" counter(list-item) " ";
}
 
/* Unbulleted lists */
.plainlist ul {
    line-height: inherit;
    list-style: none none;
    margin: 0;
}
.plainlist ul li {
    margin-bottom: 0;
}

/* Styling for Template:Quote */
blockquote.templatequote {
     margin-top: 0;
}
blockquote.templatequote div.templatequotecite {
    line-height: 1em;
    /* @noflip */
    text-align: left;
    /* @noflip */
    padding-left: 2em;
    margin-top: 0;
}
blockquote.templatequote div.templatequotecite cite {
    font-size: 85%;
}

/* Default style for navigation boxes */
.navbox {                     /* Navbox container style */
    border: 1px solid #aaa;
    width: 100%;
    margin: auto;
    clear: both;
    font-size: 88%;
    text-align: center;
    padding: 1px;
}
.navbox-inner,
.navbox-subgroup {
    width: 100%;
}
.navbox-group,
.navbox-title,
.navbox-abovebelow {
    padding: 0.25em 1em;      /* Title, group and above/below styles */
    line-height: 1.5em;
    text-align: center;
}
th.navbox-group {             /* Group style */
    white-space: nowrap;
    /* @noflip */
    text-align: right;
}
.navbox,
.navbox-subgroup {
    background: #fdfdfd;      /* Background color */
}
.navbox-list {
    line-height: 1.8em;
    border-color: #fdfdfd;    /* Must match background color */
}
.navbox th,
.navbox-title {
    background: #ccccff;      /* Level 1 color */
}
.navbox-abovebelow,
th.navbox-group,
.navbox-subgroup .navbox-title {
    background: #ddddff;      /* Level 2 color */
}
.navbox-subgroup .navbox-group,
.navbox-subgroup .navbox-abovebelow {
    background: #e6e6ff;      /* Level 3 color */
}
.navbox-even {
    background: #f7f7f7;      /* Even row striping */
}
.navbox-odd {
    background: transparent;  /* Odd row striping */
}
table.navbox + table.navbox {  /* Single pixel border between adjacent navboxes */
    margin-top: -1px;          /* (doesn't work for IE6, but that's okay)       */
}
.navbox .hlist td dl,
.navbox .hlist td ol,
.navbox .hlist td ul,
.navbox td.hlist dl,
.navbox td.hlist ol,
.navbox td.hlist ul {
    padding: 0.125em 0;       /* Adjust hlist padding in navboxes */
}
ol + table.navbox,
ul + table.navbox {
    margin-top: 0.5em;        /* Prevent lists from clinging to navboxes */
}
 

/* Default styling for Navbar template */
.navbar {
    display: inline;
    font-size: 88%;
    font-weight: normal;
}
.navbar ul {
    display: inline;
    white-space: nowrap;
}
.navbar li {
    word-spacing: -0.125em;
}
.navbar.mini li span {
  font-variant: small-caps;
}
/* Navbar styling when nested in navbox */
.navbox .navbar {
    display: block;
    font-size: 100%;
}
.navbox-title .navbar {
    /* @noflip */
    float: left;
    /* @noflip */
    text-align: left;
    /* @noflip */
    margin-right: 0.5em;
    width: 6em;
}
 
/* 'show'/'hide' buttons created dynamically by the CollapsibleTables javascript
   in [[MediaWiki:Common.js]] are styled here so they can be customised. */
.collapseButton {
    /* @noflip */
    float: right;
    font-weight: normal;
    /* @noflip */
    margin-left: 0.5em;
    /* @noflip */
    text-align: right;
    width: auto;
}
/* In navboxes, the show/hide button balances the v·d·e links
   from [[Template:Navbar]], so they need to be the same width. */
.navbox .collapseButton {
    width: 6em;
}
 
/* Styling for JQuery makeCollapsible, matching that of collapseButton */
.mw-parser-output .mw-collapsible-toggle {
    font-weight: normal;
    /* @noflip */
    text-align: right;
}
.navbox .mw-collapsible-toggle {
    width: 6em;
}

/* Standard Navigationsleisten, aka box hiding thingy
   from .de.  Documentation at [[Wikipedia:NavFrame]]. */
div.NavFrame {
    margin: 0;
    padding: 4px;
    border: 1px solid #aaa;
    text-align: center;
    border-collapse: collapse;
    font-size: 95%;
}
div.NavFrame + div.NavFrame {
    border-top-style: none;
    border-top-style: hidden;
}
div.NavPic {
    background-color: #fff;
    margin: 0;
    padding: 2px;
    /* @noflip */
    float: left;
}
div.NavFrame div.NavHead {
    height: 1.6em;
    font-weight: bold;
    background-color: #ccf;
    position: relative;
}
div.NavFrame p,
div.NavFrame div.NavContent,
div.NavFrame div.NavContent p {
    font-size: 100%;
}
div.NavEnd {
    margin: 0;
    padding: 0;
    line-height: 1px;
    clear: both;
}
a.NavToggle {
    position: absolute;
    top: 0;
    /* @noflip */
    right: 3px;
    font-weight: normal;
    font-size: 90%;
}

/* Prevent line breaks in silly places:
   1) Where desired
   2) Links when we don't want them to
   3) Bold "links" to the page itself
   4) Ref tags with group names <ref group="Note"> --> "[Note 1]" */
.nowrap,
.nowraplinks a,
.nowraplinks .selflink,
sup.reference a {
    white-space: nowrap;
}
/* But allow wrapping where desired: */
.wrap,
.wraplinks a {
    white-space: normal;
}

/* Hatnotes and disambiguation notices */
.rellink,
.dablink {
    font-style: italic;
    /* @noflip */
    padding-left: 1.6em;
    margin-bottom: 0.5em;
}
.rellink i,
.dablink i {
    font-style: normal;
}

.wdItem:hover {
   background-image: url('//upload.wikimedia.org/wikipedia/commons/f/ff/Wikidata-logo.svg');
   background-size: 15px;
   background-position: right center;
   background-repeat: no-repeat;
}

/* Regelmäßige Veranstaltungen */

.veranstaltungshinweis { display: none; }

body.action-view div.ve-ui-surface .veranstaltungshinweis { display: block; }

.veranstaltungshinweis-edit { display: none; }

body.page-Veranstaltungen_Januar .veranstaltungshinweis-edit,
body.page-Veranstaltungen_Februar .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_März .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_April .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_Mai .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_Juni .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_Juli .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_August .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_September .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_Oktober .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_November .veranstaltungshinweis-edit, 
body.page-Veranstaltungen_Dezember .veranstaltungshinweis-edit 
{ display: block; }


/* Feiertage */
table.wv-holiday {
}

table.wv-holiday tr td {
	vertical-align:top;
}

table.wv-holiday tr td:nth-child(2) {
	padding-left:0.5em;
	padding-right:0.5em;
	font-weight: bold;
}

table.wv-holiday tr td:nth-child(2) .wv-lang {
	font-weight: normal;
}

/* Fehlermeldungen des Moduls Check */
#WV-Check-Error-Messages {
	border: 1px solid #AAAAAA;
	border-left-width: 5px;
	border-left-color: #B22222;
	background-color: #FFEEEE;
	text-align: left;
	padding: 0.75em 1.2em;
}
#WV-Check-Error-Messages ul li {
	list-style-image: none;
}

/* Ausgaben des Moduls Wikidata */
/* Ranking */
.wd-rank-truth { color: blue; }
.wd-rank-preferred { color: green; }
.wd-rank-normal { color: black; }
.wd-rank-deprecated { color: gray; }

/* Wikivoyage-Tools */
#wvDEaddTools-requestDelete-edit-message {
	margin: 0.5em 2em;
	font-size: 1.2em;
	color: red;
}

/* Wikidata-Tools */
/* spezielle Quickbar Elemente für Wikidata individuell formatieren */
.qb .qb-wd-comment td {
	display: none;
	text-align: center;
	font-size: 80%;
	border-bottom: 1px solid #999999;
}

.qb-edit-delete:hover {
	cursor:pointer;
}

#wvDEaddWDTools-deleteQBItemValue {
	margin: 0.5em 2em;
	font-size: 1.2em;
	color: red;
}

/*  Tags im Fließtext für Leser ausblenden */
.wd-tools-message-inline {
	display: none;
}
.wd-tools-message-block {
	display: none;
}

/* Boxes with the same height */

.justifyContent {   
    display: -webkit-flex;  /* Chrome < v. 29, Safari, etc. */
    display: -moz-box;      /* Firefox < v. 28 */
    display: -ms-flexbox;   /* IE 10 */
    display: flex;

    -webkit-justify-content: space-between; /* Chrome < v. 29, Safari, etc. */
    -ms-flex-pack: justify; /* IE 10 */
    justify-content: space-between;
}

/* Infobox für shortcuts */
.wv-shortcut-box {
	border: 1px solid #aaaaff; 
	margin: 0.3em 0 0 1em; 
	text-align: center; 
	padding:5px; 
	float: right; 
	clear: right; 
	background-color: #f4f4ff;
}

/* ZdM */
ul.wv-aotm-list {
	margin: 0;
	list-style-type: none;
	list-style-image: none;
	width: 100%;
	box-sizing: border-box;
}
ul.wv-aotm-list li {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding-right: 0.6em;
	padding-left: 0.6em;
	border-top: 1px solid LightGrey;
	border-left: 1px solid LightGrey;
	border-right: 1px solid LightGrey;
}
ul.wv-aotm-list li div.floatleft {
	margin: 0.4em 0.6em 0.4em 0;
}
ul.wv-aotm-list li:last-child {
	border-bottom: 1px solid LightGrey;
}
ul.wv-aotm-list li:nth-child(odd) {
	background-color: AliceBlue;
}

/* Artikel des Monats auf der Hauptseite */
#mf-off-beaten-path .center, #mf-topic-of-the-month .center {
	padding-bottom: 0.6em;
}

/* Panorama */
.wv-panorama-scroll-notice {
	display: block;
	margin-top:0.2em;
	font-style: italic;
	font-size: 0.9em;
}
.wv-panorama {
	margin-top:0.2em;
}

/* Feiertage2 (Test) */
table.wv-holiday2 {
	display: table;
}

table.wv-holiday2 tr td {
	vertical-align:top;
}

table.wv-holiday2 tr td:nth-child(2) {
	padding-left:0.5em;
	padding-right:0.5em;
	font-weight: bold;
}

table.wv-holiday2 tr td:nth-child(2) .wv-lang {
	font-weight: normal;
}

table.wv-holiday2 th.wv-holiday-name,
table.wv-holiday2 td.wv-holiday-name {
	 border-right: 0 none;
}

table.wv-holiday2 th.wv-holiday-description,
table.wv-holiday2 td.wv-holiday-description {
	display: none;
}

table.wv-holiday2 th.wv-holiday-info {
	display:table-cell;
	border-left: 0 none;
	width: 30px;
}

table.wv-holiday2 td.wv-holiday-info {
	display:table-cell;
	background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Breezeicons-emblems-8-emblem-information.svg/240px-Breezeicons-emblems-8-emblem-information.svg.png');
	background-size: 25px 25px;
	background-repeat: no-repeat;
	background-position:center center;
	border-left: 0 none;
	width: 30px;
	cursor: pointer;
}

.wv-hiero-inline {
	margin: 0.5em 0 1em 0;
}

.wv-hiero-inline .mw-hiero-outer {
	display: inline-table !important;
	width: auto !important;
	vertical-align: middle;
	margin: 0;
}
/* </nowiki> */