/**
 * Theme for reveal.js.
 * 
 * Copyright (C) 2013      Hugh Pyle, http://hughpyle.com
 * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
 */

/*********************************************
 * GLOBAL STYLES
 *********************************************/
body {
    background: white;
    }

.dark {
    background: black;
    }

.reveal {
  font-family: 'Quattrocento', 'Palatino Linotype', Palatino, serif;
  font-size: 36px;
  font-weight: 200;
  letter-spacing: -0.02em;
  }

::selection {
  color: black;
  background: #b7aad5;
  text-shadow: none; }

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  margin: 0 0 20px 0;
  color: #222222;
  font-family: 'Andale Mono', 'Consolas', 'Courier New', monospace;
  line-height: 0.9em;
  letter-spacing: 0.02em;
  }


/*********************************************
 * LINKS
 *********************************************/
.reveal a:not(.image) {
  color: darkblue;
  text-decoration: none;
  }
  
.reveal a:not(.image):hover {
  color: darkblue;
  text-shadow: none;
  text-decoration: underline;
  border: none; }


/*********************************************
 * IMAGES
 *********************************************/
.reveal section img {
  margin: 15px 0px; 
  background: rgba(255, 255, 255, 0.12);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.reveal a:hover img {
  background: rgba(255, 255, 255, 0.2);
  border-color: #b7aad5;
  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: #332244; }

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

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

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

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

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

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

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

/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  background: white;
  }

.reveal .progress span {
  background: #444444;
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  -o-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); }
