*{
    box-sizing: border-box;
}
:root{
    --page-width: 1200px;
}
body{ position:relative;
    height: 100%;
    background: linear-gradient(white, #c8c7c8);
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #4e4e4e;
    margin: 0;
    padding: 0;
}
a{
    color: #97a61e;
    text-decoration: none;
    font-weight: bold;
}
.page{
    width: var(--page-width);
    margin: 0 auto;
    background: #fff;
    padding: 0 7px 7px 7px;
    box-shadow: 15px 0 0 #0000000c, -15px 0 0 #0000000c, 7px 0 0 #0000000c, -7px 0 0 #0000000c;
}
.footer{
    width: 100%;
}
.header{
    width: 100%;
}
.header .artwork{
    width: 100%;
    height: 150px;
    background: url(img/header.png) no-repeat center;
    overflow: hidden;
}
.header .navbar{
    width: 100%;
    height: 33px;
    background: #d7d7d7;
    border: 1px solid #0001;
}
.header .navbar .left{
    height: 31px;
    width: 20%;
    display: block;
    float: left;
    font-size: 12px;
    padding: 0 7px;
    line-height: 31px;
}
.header .navbar .right{
    height: 31px;
    width: 20%;
    display: block;
    float: right;
    padding: 6px 7px;
}
.header .navbar .right .navbar-charactersearch-input{
    width: 160px;
}
.header .navbar ul{
    width: 60%;
    float: left;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.header .navbar ul li{
    display: inline-block;
    margin: 0;
}
.header .navbar ul li a{
    float: left;
    display: inline-block;
    width: 100px;
    background: #f0ebee;
    height: 31px;
    line-height: 31px;
    color: #1d1d1d;
    font-weight: normal;
    margin: 0 1px 0 0;
    text-align: center;
}
.header .navbar ul li a:hover{
    background: #fff;
}
.header .banner{
    width: 100%;
    height: 60px;
    background: #eeecee;
    margin-top: 15px;
    border: 1px solid #0001;
}
.left-container{
    width: 18%;
    float: left;
}
.left-container ul{
    list-style: none;
    margin: 5px 0;
    width: 100%;
    padding: 0;
}
.left-container ul li a{
    display: block;
    width: 100%;
    height: 25px;
    line-height: 25px;
    background: #e7e5e7;
    text-decoration: none;
    padding: 0 5px;
    color: #1d1d1d;
    margin: 1px 0 0 0;
    font-weight: normal;
}
.left-container ul li a:hover{
    background: #bdd663;
}
.left-container h2, .right-container h2{
    color: #000;
    font-size: 16px;
}
.left-container h2{
    border: 1px solid #0002;
    margin: 5px 0;
    padding: 7px;
}
.right-container{
    width: 79%;
    margin-left: 3%;
    float: left;
}
.footer-shadow{
    width: calc(var(--page-width) + 30px);
    margin: 0 auto;
    height: 200px;
    box-shadow: 0 15px 0 #0000000c inset;
    position: relative;
}
.footer-shadow:before{
    content: "";
    position: absolute;
    width: calc(var(--page-width) + 14px);
    top: 0;
    left: 7px;
    height: 7px;
    background: #0000000c;
}
.footer-shadow:after{
    content: "";
    margin-top: 15px;
    display: block;
    margin: 0 auto;
    background: url(img/footer.png) center 7px no-repeat;
    width: var(--page-width);
    height: 200px;
}
.postinfo{
    padding: 5px 10px;
    border: 1px solid #0002;
    display: block;
    margin: 5px 0;
}
table{
    font-size: 13px;
    border: 0 none;
}