@media print {
	/* stylelint-disable selector-class-pattern */
	/*!
	 * File description page - print style
	 */
	span.mw-filepage-other-resolutions,
	#filetoc {
	  display: none;
	}
	.mw_metadata {
	  background: #fff;
	  margin: 1em 0;
	  border: 1pt solid #aaa;
	  border-collapse: collapse;
	  font-size: 10pt;
	}
	.mw_metadata caption {
	  padding: 5px;
	  font-size: 10pt;
	}
	.mw_metadata th,
	.mw_metadata td {
	  /* Important is required to override any inline styles provided by editors */
	  background: #fff !important;
	  /* stylelint-disable-line declaration-no-important */
	  /* We need to also set color in case editors applied a light text color */
	  color: #000 !important;
	  /* stylelint-disable-line declaration-no-important */
	  border: 1pt solid #aaa;
	  padding: 0.4em 0.6em;
	}
	.mw_metadata th {
	  text-align: center;
	}}/*!
 * File description page
 */
/**
 * This file is a LESS import match for "mediawiki.skin.variables.less"
 * when legacy Vector is the active skin.
 */
/* stylelint-disable selector-class-pattern */
.mw-filepage-resolutioninfo {
  font-size: smaller;
}
/*
 * Multipage navigation
 */
.mw-filepage-multipage {
  display: flex;
  flex-direction: column;
}
.mw-filepage-multipage-navigation {
  align-items: center;
  display: flex;
}
.mw-filepage-multipage-navigation > * {
  margin: 0.5em 0;
}
.client-js .mw-filepage-multipage-navigation [type='submit'] {
  display: none;
}
@media (max-width: calc(720px - 1px)) {
  .mw-filepage-multipage-navigation {
    flex-wrap: wrap;
    justify-content: space-between;
    /* We need high specificity here */
  }
  .mw-filepage-multipage-navigation.mw-filepage-multipage-navigation figure,
  .mw-filepage-multipage-navigation.mw-filepage-multipage-navigation .thumb {
    display: none;
  }
  .mw-filepage-multipage-navigation > * {
    flex: 1 1 auto;
  }
  .mw-filepage-multipage-navigation > form {
    text-align: center;
  }
  .mw-filepage-multipage-navigation > :last-child {
    text-align: end;
  }
}
@media (min-width: 720px) {
  .mw-filepage-multipage {
    flex-direction: row;
  }
  .mw-filepage-multipage-navigation {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1em;
  }
  .mw-filepage-multipage-navigation > a {
    display: none;
  }
}
/*
 * File histories
 */
#filehistory {
  clear: both;
}
.filehistory th,
.filehistory td {
  vertical-align: top;
}
.filehistory th {
  text-align: left;
}
.filehistory .mw-imagepage-filesize {
  white-space: nowrap;
}
.filehistory .filehistory-selected {
  font-weight: bold;
}
/*
 * Add a checkered background image on hover for file
 * description pages. (T28470)
 */
.filehistory a img,
#file img:hover {
  background: url(/resources/src/mediawiki.action/images/checker.svg?ff513) repeat;
}
/*
 * filetoc
 */
#filetoc {
  text-align: center;
  border: 1px solid #a2a9b1;
  background-color: #f8f9fa;
  padding: 5px;
  font-size: 95%;
  margin: 0 0 0.5em 0;
}
#filetoc li {
  display: inline;
  list-style-type: none;
  padding-right: 2em;
}
/*
 * Shared images hint
 */
#shared-image-dup,
#shared-image-conflict {
  font-style: italic;
}
/*
 * Classes for Exif data display
 */
.mw_metadata {
  font-size: 0.8em;
  margin-bottom: 0.5em;
  border: 0;
  border-collapse: collapse;
  width: 400px;
}
.mw_metadata caption {
  font-weight: bold;
}
.mw_metadata td,
.mw_metadata th {
  border: 1px solid #a2a9b1;
  padding-left: 5px;
  padding-right: 5px;
}
.mw_metadata th {
  background-color: #f8f9fa;
  font-weight: normal;
  text-align: center;
}
.mw_metadata td {
  background-color: #fcfcfc;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}
.mw_metadata .metadata-langlist {
  list-style: none;
  padding-right: 5px;
  padding-left: 5px;
  margin: 0;
}
.client-js .mw_metadata.collapsed .mw-metadata-collapsible {
  display: none;
}
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
@supports (aspect-ratio: 16 / 9) {
  #file img {
    max-width: 100%;
    height: auto;
  }
}
