/* Source: http://kevinburke.bitbucket.org/markdowncss/markdown.css */

/* 2021 modified to migrate to BrightSpace, hints on loading external fonts on
   https://css-tricks.com/the-best-font-loading-strategies-and-how-to-execute-them/ 
*/

@font-face{
    font-family:Lato;
    font-style:normal;
    font-weight:400;
    src: url(https://s.brightspace.com/lib/fonts/0.5.0/assets/Lato-400.woff2)
            format("woff2"),
         url(https://s.brightspace.com/lib/fonts/0.5.0/assets/Lato-400.woff)
            format("woff")
}

@font-face{
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    src: url(https://s.brightspace.com/lib/fonts/0.5.0/assets/Lato-700.woff2)
            format("woff2"),
    url(https://s.brightspace.com/lib/fonts/0.5.0/assets/Lato-700.woff)
       format("woff")
}

body{
    margin: 0 auto;
    font-family: Lato, Lucida Sans Unicode, Lucida Grande, sans-serif;
   
    /* font-family: Georgia, Palatino, sans-serif;*/
   
    color: #494c4e;
    line-height: 1;
    /* max-width: 960px; */
    padding: 30px;
}
h1, h2, h3, h4 {
    color: #393c3c;
    font-weight: 400;
}
h1, h2, h3, h4, h5, p {
    margin-bottom: 24px;
    padding: 0;
}
h1 {
    font-weight: 700;
    font-size: 40px;
    border-bottom: 8px solid #ddd;
}
h2 {
    font-size: 30px;
    /* The bottom margin is small. It's designed to be used with gray meta text
     * below a post title. */
    margin: 24px 0 6px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 21px;
}
h5 {
    font-size: 18px;
}
a {
    color: #0099ff;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
a:hover {
    text-decoration: none;
    color: #ff6600;
}
a:visited {
    color: purple;
}
/*
ul, ol {
    padding: 0;
    margin: 0;
} */
li {
    line-height: 24px;
}
li ul, li ul {
    margin-left: 24px;
}
p, ul, ol {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* max-width: 540px; */
}
pre {
    font-family: Consolas, Monaco, Andale Mono, monospace;
    padding: 0px 24px;
    /* max-width: 800px; */
    white-space: pre-wrap;
}
code {
    font-family: Consolas, Monaco, Andale Mono, monospace;
    line-height: 1.5;
    font-size: 13px;
}
aside {
    display: block;
    float: right;
    width: 390px;
}
blockquote {
    border-left:.5em solid #ddd;
    padding: 0 2em;
    margin-left:0;
    /* max-width: 476px; */
}
blockquote  cite {
    font-size:14px;
    line-height:20px;
    color:#bfbfbf;
}
blockquote cite:before {
    content: '\2014 \00A0';
}

blockquote p {  
    color: #666;
    /* max-width: 460px; */
}
hr {
    width: 540px;
    text-align: left;
    margin: 0 auto 0 0;
    color: #999;
}

