﻿@charset "utf-8";





/* ------------------------------
   DESIGN/LAYOUT ELEMENTS
------------------------------ */

a:link,
a:visited,
a:active,
a:hover {
    text-decoration: none;
}

#wrapper {
    margin: 0 auto;
    padding: 50px 0;
    width: 800px;
    text-align: left;
}

.btnArea {
    padding-bottom: 1.5em;
    text-align: center;
}






/* ------------------------------
   CHAPTER ELEMENTS
------------------------------ */

#mdOverlay {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 97;
    background: #000;
    display: none;
}

#mdWindow {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 650px;
    height: 780px;
    position: fixed;
    z-index: 98;
    background: #fff;
    border-radius: 15px;
    display: none;
}

#mdWindow>.mdClose {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    line-height: 30px;
    color: #fff;
    font-size: 35px;
    text-align: center;
    background: #77a619;
    border-radius: 35px;
    position: absolute;
    z-index: 99;
    cursor: pointer;
    /*     box-shadow: 0 0 3px 0 #000; */
}

.modalBtn {
    padding: 15px 20px;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.modalBtn:hover {
    opacity: 0.7;
}

#modalInclude {
    display: none;
}

#contWrap {
    margin: 15px auto;
    padding: 0px 30px;
    width: 100%;
    height: 94%;
    box-sizing: border-box;
    overflow-y: auto;
}

#modalWrapper h2 {
    margin-bottom: 20px;
    padding: 20px 0;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    border-bottom: #333 1px dotted;
}

#modalWrapper p {
    padding-bottom: 2em;
    font-size: 1em;
}