@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
/**
 * Solarized Dark theme for reveal.js.
 * Author: Achim Staebler
 */
@font-face {
  font-family: 'League Gothic';
  src: url("font/league_gothic-webfont.eot");
  src: url("font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"),
       url("font/league_gothic-webfont.woff") format("woff"),
       url("font/league_gothic-webfont.ttf") format("truetype"),
       url("font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/**
 * Solarized colors by Ethan Schoonover
 */
html * {
  color-profile: sRGB;
  rendering-intent: auto;
}

/*********************************************
 * GLOBAL STYLES
 *********************************************/
body {
  background: #ff0000;
  background-image: -webkit-radial-gradient(center, #ff0000, #000000);
  background-image: radial-gradient(center, #ff0000, #000000);
}

.reveal {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: normal;
  letter-spacing: -0.02em;
  color: #fdd;
}

.reveal blockquote {
  color: white;
  margin: 20px auto;
  background: #0598FA;
  -webkit-box-shadow: #000 0 0 10px;
  box-shadow: #000 0 0 10px;
  border-radius: 40px;
  padding: 30px;
  margin-bottom: 50px;
}

.reveal blockquote p {
  margin: 0;
}

.reveal table {
  background: white;
  border-radius: 20px;
  color: black;
  margin: 30px auto;
  -webkit-box-shadow: rgba(0,0,0,0.5) 0 0 20px;
  box-shadow: rgba(0,0,0,0.5) 0 0 20px;
}

.reveal table th,
.reveal table td {
  vertical-align: middle;
  padding: 5px 20px;
  color: #333;
  border-bottom: 1px solid #666;
}
.reveal table th {
  border-top: 1px solid #666;
  color: #000;
  font-weight: bold;
  vertical-align: bottom;
}
.reveal table th:first-child,
.reveal table td:first-child {
  border-right: 1px solid #666;
}
.reveal table tr:first-child td {
  border-top: 0;
}
.reveal table tr:first-child th:first-child {
  border-top-left-radius: 20px;
}
.reveal table tr:first-child th:last-child {
  border-top-right-radius: 20px;
}
.reveal table tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}
.reveal table tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

::-moz-selection {
  color: white;
  background: #0099ff;
  text-shadow: none;
}

::selection {
  color: white;
  background: #0099ff;
  text-shadow: none;
}

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  margin: 0 0 20px 0;
  color: #fff;
  text-shadow: black 0 3px;
  font-family: "League Gothic", Impact, sans-serif;
  line-height: 0.9em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.reveal h1 {
  text-shadow: 0px 0px 5px black;
}

/*********************************************
 * LINKS
 *********************************************/

.reveal a:not(.image) {
  color: #68B0E3;
  text-decoration: none;
  border-bottom: 1px solid;
  -webkit-transition: color .15s ease;
  transition: color .15s ease;
}
.reveal a:not(.image):hover {
  color: #BEDDF3;
  text-shadow: none;
}
.reveal .roll span:after {
  color: #fff;
  background: #1a6091;
}

/*********************************************
 * IMAGES
 *********************************************/
.reveal section img {
  margin: -15px 0 15px;
  background: rgba(255, 255, 255, 0.12);
  border: 4px solid #93a1a1;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.reveal a:hover img {
  background: rgba(255, 255, 255, 0.2);
  border-color: #268bd2;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

/*********************************************
 * NAVIGATION CONTROLS
 *********************************************/
.reveal .controls div.navigate-left,
.reveal .controls div.navigate-left.enabled {
  border-right-color: #268bd2;
}

.reveal .controls div.navigate-right,
.reveal .controls div.navigate-right.enabled {
  border-left-color: #268bd2;
}

.reveal .controls div.navigate-up,
.reveal .controls div.navigate-up.enabled {
  border-bottom-color: #268bd2;
}

.reveal .controls div.navigate-down,
.reveal .controls div.navigate-down.enabled {
  border-top-color: #268bd2;
}

.reveal .controls div.navigate-left.enabled:hover {
  border-right-color: #78b9e6;
}

.reveal .controls div.navigate-right.enabled:hover {
  border-left-color: #78b9e6;
}

.reveal .controls div.navigate-up.enabled:hover {
  border-bottom-color: #78b9e6;
}

.reveal .controls div.navigate-down.enabled:hover {
  border-top-color: #78b9e6;
}

/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  background: rgba(0, 0, 0, 0.2);
}

.reveal .progress span {
  background: #07a;
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

/*********************************************
 * SLIDE NUMBER
 *********************************************/
.reveal .slide-number {
  color: #268bd2;
}

.reveal .caption {
  display: inline-block;
  margin-left: 300px;
}

/*# sourceMappingURL=timmy.css.map */