/* Farbenspiel */
/**
 * This is a stylesheet for a demo presentation for impress.js
 * 
 * It is not meant to be a part of impress.js and is not required by impress.js.
 * I expect that anyone creating a presentation for impress.js would create their own
 * set of styles.
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* line 46, ../sass/mbo.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 57, ../sass/mbo.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 60, ../sass/mbo.scss */
body {
  line-height: 1;
}

/* line 63, ../sass/mbo.scss */
ol, ul {
  list-style: none;
}

/* line 66, ../sass/mbo.scss */
blockquote, q {
  quotes: none;
}

/* line 70, ../sass/mbo.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 75, ../sass/mbo.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 80, ../sass/mbo.scss */
body {
  font-family: "Syncopate", sans-serif;
  min-height: 740px;
  background: #80ff00;
  background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 500, from(#80ff00), to(#407f00));
  background: -webkit-radial-gradient(#80ff00, #407f00);
  background: -moz-radial-gradient(#80ff00, #407f00);
  background: -o-radial-gradient(#80ff00, #407f00);
  background: radial-gradient(#80ff00, #407f00);
  -webkit-font-smoothing: antialiased;
}

/* line 94, ../sass/mbo.scss */
b, strong {
  font-weight: bold;
}

/* line 95, ../sass/mbo.scss */
i, em {
  font-style: italic;
}

/* line 97, ../sass/mbo.scss */
a {
  color: inherit;
  text-decoration: none;
  padding: 0 0.1em;
  background: rgba(255, 255, 255, 0.5);
  text-shadow: -1px -1px 2px rgba(100, 100, 100, 0.9);
  border-radius: 0.2em;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* line 112, ../sass/mbo.scss */
a:hover {
  background: white;
  text-shadow: -1px -1px 2px rgba(100, 100, 100, 0.5);
}

/* enable clicking on elements 'hiding' behind body in 3D */
/* line 118, ../sass/mbo.scss */
body {
  pointer-events: none;
  font-weight: 700;
}

/* line 119, ../sass/mbo.scss */
#impress {
  pointer-events: auto;
}

/* COMMON STEP STYLES */
/* line 123, ../sass/mbo.scss */
.step {
  width: 900px;
  padding: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Syncopate", georgia, serif;
  font-size: 24px;
  line-height: 1.5;
}

/* fade out inactive slides */
/* line 141, ../sass/mbo.scss */
.step {
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

/* line 149, ../sass/mbo.scss */
.step:not(.active) {
  opacity: 0.3;
}

/* line 153, ../sass/mbo.scss */
.step q {
  font-size: 1.3em;
}

/* line 156, ../sass/mbo.scss */
.step p {
  font-size: 0.7em;
}

/* line 159, ../sass/mbo.scss */
.step i {
  font-family: 'Old Standard TT', serif;
}

/* STEP SPECIFIC STYLES */
/* hint on the first slide */
/* line 168, ../sass/mbo.scss */
.hint {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 100px;
  background: #e37723;
  color: #fff;
  text-align: center;
  font-size: 30px;
  padding: 20px;
  z-index: 100;
  opacity: 0;
  -webkit-transform: translateY(400px);
  -moz-transform: translateY(400px);
  -ms-transform: translateY(400px);
  -o-transform: translateY(400px);
  transform: translateY(400px);
  -webkit-transition: opacity 1s, -webkit-transform 0.5s 1s;
  -moz-transition: opacity 1s,    -moz-transform 0.5s 1s;
  -ms-transition: opacity 1s,     -ms-transform 0.5s 1s;
  -o-transition: opacity 1s,      -o-transform 0.5s 1s;
  transition: opacity 1s,         transform 0.5s 1s;
}

/* line 198, ../sass/mbo.scss */
.step-bored + .hint {
  opacity: 1;
  -webkit-transition: opacity 1s 5s, -webkit-transform 0.5s;
  -moz-transition: opacity 1s 5s,    -moz-transform 0.5s;
  -ms-transition: opacity 1s 5s,     -ms-transform 0.5s;
  -o-transition: opacity 1s 5s,      -o-transform 0.5s;
  transition: opacity 1s 5s,         transform 0.5s;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

/* impress.js title */
/* line 216, ../sass/mbo.scss */
#bored {
  padding: 0;
  width: 940px;
  margin-left: 300px;
}

/* line 222, ../sass/mbo.scss */
#bored .try {
  font-size: 14px;
  position: absolute;
  top: -0.5em;
  left: 1.5em;
  -webkit-transform: translateZ(20px);
  -moz-transform: translateZ(20px);
  -ms-transform: translateZ(20px);
  -o-transform: translateZ(20px);
  transform: translateZ(20px);
}

/* line 236, ../sass/mbo.scss */
#bored h1 {
  font-size: 110px;
  -webkit-transform: translateZ(50px);
  -moz-transform: translateZ(50px);
  -ms-transform: translateZ(50px);
  -o-transform: translateZ(50px);
  transform: translateZ(50px);
}

/* line 246, ../sass/mbo.scss */
#bored .footnote {
  font-size: 18px;
  margin-left: 10px;
}

/* line 251, ../sass/mbo.scss */
sup {
  color: red;
}

/* overview step */
/* line 257, ../sass/mbo.scss */
#overview {
  z-index: -1;
  padding: 0;
}

/* on overview step everything is visible */
/* line 264, ../sass/mbo.scss */
#impress.step-overview .step {
  opacity: 1;
  cursor: pointer;
}

/*
 * SLIDE STEP STYLES
 *
 * inspired by: http://html5slides.googlecode.com/svn/trunk/styles.css
 *
 * ;)
 */
/* line 277, ../sass/mbo.scss */
.slide {
  display: block;
  width: 900px;
  height: 700px;
  padding: 40px 60px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-family: "Syncopate", Arial, sans-serif;
  color: #32325a;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -1px;
}

/* line 303, ../sass/mbo.scss */
.slide q {
  display: block;
  font-size: 25px;
  line-height: 72px;
  margin-top: 100px;
}

/* line 311, ../sass/mbo.scss */
.slide q strong {
  white-space: nowrap;
}

/* line 315, ../sass/mbo.scss */
.slide p {
  margin-top: 50px;
  font-size: 0.7em;
}

/* line 320, ../sass/mbo.scss */
.slide i {
  font-family: 'Old Standard TT', serif;
  font-size: 1.25em;
}

/* IMPRESS NOT SUPPORTED STYLES */
/* line 328, ../sass/mbo.scss */
.fallback-message {
  font-family: sans-serif;
  line-height: 1.3;
  display: none;
  width: 780px;
  padding: 10px 10px 0;
  margin: 20px auto;
  border-radius: 10px;
  border: 1px solid #E4C652;
  background: #EEDC94;
}

/* line 342, ../sass/mbo.scss */
.fallback-message p {
  margin-bottom: 10px;
}

/* line 346, ../sass/mbo.scss */
.impress-not-supported .step {
  position: relative;
  opacity: 1;
  margin: 20px auto;
}

/* line 352, ../sass/mbo.scss */
.impress-not-supported .fallback-message {
  display: block;
}

/* line 356, ../sass/mbo.scss */
p.referenz {
  font-size: 50%;
}

/* line 359, ../sass/mbo.scss */
p.referenz i {
  font-size: 175%;
}

/* line 362, ../sass/mbo.scss */
.slidenbr {
  float: right;
  font-size: 0.9em;
}
