.guideArticle {
    margin-left:auto;
    margin-right:auto;
    max-width:840px;
    padding: 20px;
    font-family:"Segoe UI",Arial,sans-serif;
    line-height:1.5;
}
.guideArticle h1, h2, h3, h4, h5, h6 {
    font-family: "Segoe UI",Arial,sans-serif;
    font-weight: 400;
    margin: 10px 0;
}
.guideArticle p, li, td {
    font-size:15px;
}
.guideArticle td p {
    margin: 0px 12px;
}
.guideArticle a {
    color: #26a3d5;
    text-decoration: none;
} 
.guideArticle a:hover {
    color: #ee7752;
    text-decoration: underline;
}
.footnotes p {
    font-size:10px
}

/* ordered lists */
ol {margin-bottom: 24px}
ol li { list-style-type: decimal; ; font-size:12px;}
ol ol li { list-style-type: lower-alpha; font-size:12px;}
ol ol ol li {list-style-type: lower-roman; font-size:12px;}
ol ol ol ol li {list-style-type: upper-alpha; font-size:12px;}
ol ol ol ol ol li {list-style-type: upper-roman; font-size:12px;}
ol ol ol ol ol ol li {list-style-type: lower-greek; font-size:12px;}

.guideVideoSection{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}
.guideVideoContainer {
    width: 300px;
    margin: 12px;
    max-height:450px;
    overflow-y: hidden;
    transition: max-height 0.5s; 
    padding:4px;
}

video[poster]{
    height:100%;
    width:100%;
    object-fit: cover;
}

#guide_video_fullscreen {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    padding: 12px;
    z-index: 1000;
}
#guide_video_here {
    max-height: 90%;
    max-width: 90%;
    margin:auto;
}
#guide_video_close {
    margin: auto;
    padding: 8px 16px;
    color: white;
    float: right;
    border: 1px solid white;
    border-radius: 24px;
    text-align: center;
    width: auto;
    cursor: pointer;
}