@import url('https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic');

/* yanone-kaffeesatz-regular - latin */
@font-face {
    font-family: 'Yanone Kaffeesatz';
    font-style: normal;
    font-weight: 400;
    src: local('Yanone Kaffeesatz Regular'), local('YanoneKaffeesatz-Regular'),
        url('fonts/yanone-kaffeesatz-v9-latin-regular.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('fonts/yanone-kaffeesatz-v9-latin-regular.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-regular - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'),
        url('fonts/open-sans-v15-latin-regular.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('fonts/open-sans-v15-latin-regular.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* ubuntu-mono-regular - latin */
@font-face {
    font-family: 'Ubuntu Mono';
    font-style: normal;
    font-weight: 400;
    src: local('Ubuntu Mono'), local('UbuntuMono-Regular'),
        url('fonts/ubuntu-mono-v7-latin-regular.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('fonts/ubuntu-mono-v7-latin-regular.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* ubuntu-mono-700 - latin */
@font-face {
    font-family: 'Ubuntu Mono';
    font-style: normal;
    font-weight: 700;
    src: local('Ubuntu Mono Bold'), local('UbuntuMono-Bold'),
        url('fonts/ubuntu-mono-v7-latin-700.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('fonts/ubuntu-mono-v7-latin-700.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* ubuntu-mono-700italic - latin */
@font-face {
    font-family: 'Ubuntu Mono';
    font-style: italic;
    font-weight: 700;
    src: local('Ubuntu Mono Bold Italic'), local('UbuntuMono-BoldItalic'),
        url('fonts/ubuntu-mono-v7-latin-700italic.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('fonts/ubuntu-mono-v7-latin-700italic.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}



body {
    font-family: 'Open Sans';
}

h1,
h2,
h3 {
    font-family: 'Yanone Kaffeesatz';
    font-weight: normal;
    color: #00838F;
}

h1 {
    margin-bottom: 0.5em;
}

h2 {
    margin-top: 0.5em;
    margin-bottom: 0.25em;
}

h3 {
    font-style: italic;
}

p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

a {
    color: #f44336;
    text-decoration: none;
}


.inverse {
    background-color: #ECEFF1;
    color: #CC071E;
    text-shadow: 0 0 0px black;
}

.inverse h1,
.inverse h2,
.inverse h3 {
    color: #CC071E;
    line-height: 0.8em;
    text-shadow: 0 0 8px gray;
}

.inverse a {
    color: #CC071E;
    text-decoration: none;
    font-family: monospace;
}

.bgimg h1,
.bgimg h2 {
    /* 5 shadows for extra contrast on top of background image */
    text-shadow: 0px 0px 2px #111, -2px -2px 4px #111, -2px 2px 4px #111, 2px 2px 4px #111, 2px -2px 4px #111;
}

.bottom-right {
    position: absolute;
    right: 0px;
    bottom: 0px;
}



.footer {
    position: absolute;
    bottom: 12px;
    left: 20px;
}

.footer a {
    font-family: 'Yanone Kaffeesatz';
}

.footer img {
    vertical-align: middle;
}

blockquote {
    background: #fdf6e3;
    border-left: 0.3em solid #cb4b16;
    margin: 0.5em 0.5em;
    padding: 0.5em 1.5em;
    quotes: "\201C""\201D""\2018""\2019";
    font-style: italic;
}

blockquote:before {
    color: #cb4b16;
    content: open-quote;
    font-size: 5em;
    line-height: 0.1em;
    margin-left: -0.25em;
    vertical-align: -0.5em;
}


ol {
    counter-reset: li;
    padding-left: 18px;
    font-size: 32px;
}

ol>li {
    list-style: none;

}

ol>li:before {
    content: counter(li) ".";
    counter-increment: li;
    display: inline-block;
    width: 1.7em;

    color: #EF6C00;
    font-size: 32px;
    font-style: italic;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.small {
    font-size: 0.75em;
}

.small .remark-code {
    font-size: 1em;
}

.credit {
    font-size: 0.75em;
    opacity: 0.75;
    position: absolute;
    left: 20px;
    bottom: 12px;
}

.credit a {
    font-family: inherit;
}

.remark-inline-code {
    font-family: 'Ubuntu Mono';
    font-size: 1.2em;
}

.remark-code-line-highlighted {
    background-color: #fdeab5;
}

/* Two-column layout */
.left-column {
    color: #777;
    width: 40%;
    height: 80%;
    float: left;
    font-family: inherit;
    padding-top: 1em;

}

.right-column {
    width: 55%;
    float: right;
    padding-top: 1em;
    font-family: inherit;
}


/** css workaround to use chrome's print to pdf*/
@page {
    /* size: 908px 681px for 4:3 */
    size: 1210px 681px;
    margin: 0;
}

@media print {
    .remark-slide-scaler {
        width: 100% !important;
        height: 100% !important;
        transform: scale(1) !important;
        top: 0 !important;
        left: 0 !important;
    }
}