/*
	Name: Smashing HTML5
	Date: July 2009
	Description: Sample layout for HTML5 and CSS3 goodness.
	Version: 1.0
	License: MIT <http://opensource.org/licenses/MIT>
	Licensed by: Smashing Media GmbH <http://www.smashingmagazine.com/>
	Original author: Enrique Ramírez <http://enrique-ramirez.com/>
*/

/* Imports */
@import url("bootstrap.min.css");
@import url("bootstrap-theme.min.css");
@import url("font-awesome.min.css");

/* embedded https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz&subset=latin import from Google CDN due to legal concerns (https://www.golem.de/news/landgericht-muenchen-einbindung-von-google-fonts-ist-rechtswidrig-2202-162826.html) */

/* cyrillic */
@font-face {
  font-family: 'Yanone Kaffeesatz';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/YanoneKaffeesatzCyrillic.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Yanone Kaffeesatz';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/YanoneKaffeesatzVietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Yanone Kaffeesatz';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/YanoneKaffeesatzLatinExt.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Yanone Kaffeesatz';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/YanoneKaffeesatzLatin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* end Google embed */

/* prevent first column in table from wrapping */
@media (min-width: 768px)
{
    table.table-sm-nowrap-col1 th:nth-child(1),
    table.table-sm-nowrap-col1 td:nth-child(1)
    {
        white-space: nowrap;
    }
}

/* fixed-width thumbnails */
.download-thumbnail
{
    width: 200px;
    margin: 5px;
}

/* Font Awesome adblock social removal workaround */
.mrw-fa-youtube:before {
  content: "\f167";
}
.mrw-fa-twitter:before {
  content: "\f099";
}
.mrw-fa-github:before {
  content: "\f09b";
}
.mrw-fa-linkedin:before {
  content: "\f0e1";
}
.mrw-fa-steam:before {
  content: "\f1b6";
}
