a, a > code {
  color: #ff0000;
    text-decoration: none;
}


/**************
 *
 * Font size and colours
 *
 **************/


.Large { font-size: 144% }
.large { font-size: 120% }
.small { font-size: 90% }
.footnotesize { font-size: 80% }
.scriptsize { font-size: 70% }
.tiny { font-size: 60% }

.black { color: black; }
.red { color: red; }
.blue { color: blue; }
.green { color: green; }
.yellow { color: yellow; }
.orange { color: #FFB300; }
.purple { color: purple; }
.gray { color: gray; }
.grey { color: gray; }
.white { color: white; }

.bold { font-weight: bold; }
.bolder { font-weight: bolder; }


/******************
 * 
 * Coloured content boxes
 *
 ****************/


.content-box { 
    box-sizing: content-box;
    	background-color: #e2e2e2;
  /* Total width: 160px + (2 * 20px) + (2 * 8px) = 216px
     Total height: 80px + (2 * 20px) + (2 * 8px) = 136px
     Content box width: 160px
     Content box height: 80px */
}


.content-box-blue,
.content-box-blue-dark,
.content-box-gray,
.content-box-grey2,
.content-box-grey3,
.content-box-grey,
.content-box-grey-dark,
.content-box-army,
.content-box-green,
.content-box-green-dark,
.content-box-purple,
.content-box-purple-dark,
.content-box-red,
.content-box-red2,
.content-box-red-dark,
.content-box-yellow,
.content-box-title {
    border-radius: 15px;
    margin: 0 auto;
    overflow: hidden;
    padding: 5px;
    display: block;
    text-align: center;
}

.content-box-blue {
    background-color: #F0F8FF;
}

.content-box-blue-dark {
    background-color: blue;

}

.content-box-gray {
    background-color: #e2e2e2;
    padding: 1px;
}

.content-box-grey {
	background-color: #F5F5F5;
}

.content-box-grey2 {
    padding: 1px;
	background-color: #f5f5f561;
}

.content-box-grey3 {
    padding: 1px;
	background-color: #f5f5f5e6;
}

.content-box-grey-dark {
	background-color: gray;
}

.content-box-army {
	background-color: #737a36;
}

.content-box-green {
	background-color: #d9edc2;
}

.content-box-green-dark {
	background-color: #006400;
}

.content-box-purple {
	background-color: #e2e2f9;
}

.content-box-purple-dark {
	background-color: #800080;
}

.content-box-red {
	background-color: #f9dbdb;
}

.content-box-red-dark {
	background-color: red;
}

.content-box-yellow {
	background-color: #fef5c4;
}

.content-box-title {
	background-color: #FF8400;
}


.full-width {
    display: flex;
    width: 100%;
    flex: 1 1 auto;
}



/***********
 *
 * Changed CSS
 *
 **************/

.opacity{
    opacity: 0.5;
}

.opacity20{
    opacity: 0.2;
}



.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(10px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}


.grayscale img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}






/**************
 *
 * Fancy stuff
 *
 **************/


.rotate-left {
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    transform: rotate(-2deg); 
}

.rotate-right {
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    transform: rotate(2deg);     
}



/********** 
 * 
 * Image stuff
 *
 ************/


.polaroid img {
    border: 10px solid #fff;
    border-bottom: 45px solid #fff;
    -webkit-box-shadow: 3px 3px 3px #111;
    -moz-box-shadow: 3px 3px 3px #111;
    box-shadow: 3px 3px 3px #111;
}



.shadow {
    -moz-border-radius: 5px;
    -moz-box-shadow: 5px 5px 5px #aaa;
    -webkit-box-shadow: 5px 5px 5px #aaa;
    box-shadow: 5px 5px 5px #aaa;
    border-radius: 2px;  
}

.footnote {
  position: absolute;
  bottom: 3em;
  padding-right: 4em;
  font-size: 90%;
}
.remark-code-line-highlighted     { background-color: #ffff88; }

.hljs-github .hljs {
    background: #e7e8e2;
}
    
    .remark-slide-content {
      background-color: #FFFFFF;
        border-top: 80px solid #23373B;
      font-size: 20px;
      font-weight: 300;
      line-height: 1.5;
      padding: 1em 2em 1em 2em
    }
    
    .yourturn {
      background-color: #FFFFFF;
        border-top: 80px solid #B22222;
      font-size: 20px;
      font-weight: 300;
      line-height: 1.5;
      padding: 1em 2em 1em 2em
    }
  
  .title-slide .inverse .remark-slide-content {
    background-color: #FFFFFF;
    background-size: cover;
    border-top: 0px;
  }
  
  .inverse .remark-slide-number {
    display: none;
  }
  
  .inverse {
    background-color: #23373B;
      text-shadow: none;
      border-top: 80px solid #23373B;
  }
  .inverse h1, .inverse h2, .inverse h3 {
    color: #f3f3f3;
  }
  /* Two-column layout */
    .left-column {
      color: #777;
        width: 20%;
      height: 92%;
      float: left;
    }
  .left-column h2:last-of-type, .left-column h3:last-child {
    color: #000;
  }
  .right-column {
    width: 75%;
    float: right;
    padding-top: 1em;
  }
  .left-column50 {
        width: 45%;
      height: 92%;
      float: left;
     /* padding-right:3em; */
    }
  .right-column50 {
    width: 45%;
    height: 92%;
    float: left;
  }
  .pull-left {
    float: left;
    width: 50%;
  }
  .m0p p {
      margin-top: 0;
  }
  .m0ul ul {
      margin: 0;
  }
  .m10bp p {
      margin-top: 0px;
      margin-bottom: 10px;
  }
  .m0tbp p {
      margin: 0px;
  }
  .m0tbul ul {
      margin: 0px;
  }
  .m2tbp p {
      margin: 2px;
  }
  .pull-right {
    float: right;
    width: 50%;
  }
  .pull-left-wide {
    float: left;
    width: 75%;
  }
  .pull-right-narrow {
    float: right;
    width: 25%;
  }
  .pull-right-wide {
    float: right;
    width: 75%;
  }
  .pull-left-narrow {
    float: left;
    width: 25%;
  }
  .pull-left-30 {
    float: left;
    width: 30%;
  }
  .pull-right-70 {
    float: right;
    width: 70%;
  }
  .pull-left-60 {
    float: left;
    width: 60%;
  }
  .pull-right-40 {
    float: right;
    width: 40%;
  }
  .pull-right-45 {
    float: right;
    width: 45%;
  }
  .pull-right-70 {
    float: right;
    width: 70%;
  }
  .pull-left-40 {
    float: left;
    width: 40%;
  }
    .pull-left-45 {
    float: left;
    width: 45%;
  }
  .pull-right-60 {
    float: right;
    width: 60%;
  }
  .pull-right ~ * {
    clear: both;
  }
  .whole {
    float: left;
    width: 100%;
  }
  img, video, iframe {
    max-width: 100%;
  }
  blockquote {
    border-left: solid 5px lightgray;
    padding-left: 1em;
  }
  table {
    margin: auto;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
  }
  table thead th { border-bottom: 1px solid #ddd; }
    th, td { padding: 5px; }
    thead, tfoot, tr:nth-child(even) { background: #eee }
        
        @page { margin: 0; }
      @media print {
        .remark-slide-scaler {
          width: 100% !important;
          height: 100% !important;
          transform: scale(1) !important;
          top: 0 !important;
          left: 0 !important;
        }
      }
      
      .remark-slide-content > h1 {
        font-family: 'Roboto';
        font-weight: normal;
        font-size: 45px;
        margin-top: -95px;
        margin-left: -00px;
        color: #FAFAFA;
      }
      
      .remark-slide-content > inverse {
        width: 112px;
        height: 47px;
        border-bottom: 1px solid black;
        position: absolute;
      }
      
      .remark-slide-content > h2 {
        padding-top: -15px;
        padding-bottom: 00px;
        color: #FF8400;
          text-shadow: none;
        font-weight: 400;
        font-size: 35px;
        text-align: left;
        margin-left: 00px;
      }
      
      .remark-slide-content > h3 {
        padding-top: -15px;
        padding-bottom: 10px;
        color: #FF8400;
          text-shadow: none;
        font-weight: 400;
        font-size: 30px;
        text-align: left;
        margin-left: 00px;
      }
      
      .title-slide {
        background-color: #FAFAFA;
          border-top: 80px solid #FAFAFA;
      }
      
      .title-slide > h1  {
        color: #2D2F36;
          font-size: 45px;
        text-shadow: none;
        font-weight: 400;
        text-align: left;
        margin-left: 15px;
        padding-top: 80px;
      }
      .title-slide > h2  {
        margin-top: -25px;
        padding-bottom: -20px;
        color: #2D2F36;
          text-shadow: none;
        font-weight: 300;
        font-size: 35px;
        text-align: left;
        margin-left: 15px;
      }
      .title-slide > h3  {
        color: #000000;
          text-shadow: none;
        font-weight: 300;
        font-size: 25px;
        text-align: left;
        margin-left: 15px;
        margin-bottom: -30px;
      }
      
      .remark-slide-number {
        /*font-size: 13pt;
        font-family: 'Roboto';
        color: #272822;
          opacity: 1;*/
          display: none;
      }
      .inverse .remark-slide-number {
        diplay: none;
      }
      
      /* turns off slide numbers for title page: https://github.com/gnab/remark/issues/298 */
        .title-slide .remark-slide-number {
          display: none;
        }
      
      
      
      .title-hex{
        height: 60px;
        align: middle;
        float: right;
      }
      
.clear {
  border-top: 0px solid #FFFFFF;
  border-bottom: 0px solid #FFFFFF;
}

.clear > h1 {
  font-family: 'Fira Sans';
  font-weight: normal;
  font-size: 45px;
  margin-top: -1px;
  margin-left: -00px;
  color: #FFFFFF;
}

.clear > h2 {
  font-family: 'Fira Sans';
  font-weight: normal;
  font-size: 35px;
  margin-top: -1px;
  margin-left: -00px;
  color: #FFFFFF;
}

.clear > h3 {
  font-family: 'Roboto';
  font-weight: normal;
  margin-top: -30px;
  font-size: 25px;
  color: #FFFFFF;
}
