:root {
    --flex-gap: 10px;
}

html,
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    color: #4d4e4e;
}

body,
div,
dl,
dt,
dd,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    height: auto;
    max-width: 100%;
}

a {
    color: #4d4d4d;
    text-decoration: none;
}

button:focus,
a:focus {
    outline: medium none;
    outline-offset: 0;
}

.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

#page-wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 940px;
}

#header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 10px 0;
}

#menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: var(--flex-gap);
}

#menu a {
    font-size: 12px;
    padding: 7px 8px 7px 8px;
    color: #414042;
    text-transform: uppercase;
    display: block;
}

#menu a.active,
#menu a:hover {
    color: #fff;
    background-color: #2c2a6d;
}

#footer {
    border-top: 1px solid #cacac9;
    padding: 10px 0;
}

#footer-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#footer-menu ul li {
    position: relative;
}

#footer-menu ul li + li {
    margin-left: 10px;
}

#footer-menu ul li + li::before {
    font-size: 9px;
    color: #4d4d4d;
    content: "|";
    position: absolute;
    left: -6px;
    top: 0;
}

#footer-menu a {
    font-size: 9px;
    color: #4d4d4d;
    text-decoration: none;
    display: block;
}

#footer-menu a:hover {
    text-decoration: underline;
}

#banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#main {
    padding: 25px 0;
}

#main > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
    gap: 20px;
}

#sidebar {
    width: 320px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 320px;
    flex: 1 0 320px;
}

#sidebar .box {
    background: #f2f2f2;
    background: -webkit-linear-gradient(0deg, rgba(242, 242, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -moz-linear-gradient(0deg, rgba(242, 242, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(242, 242, 242, 1)), to(rgba(255, 255, 255, 1)));
    background: -o-linear-gradient(bottom, rgba(242, 242, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(0deg, rgba(242, 242, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F2F2F2", endColorstr="#FFFFFF", GradientType=0);
    padding: 20px;
    border: 1px solid #e7e7e7;
}

#sidebar h2 {
    margin-bottom: 25px;
    font-size: 17px;
    color: #808080;
    font-weight: normal;
}

#sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sidebar ul li + li {
    margin-top: 10px;
}

#sidebar ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
    font-size: 14px;
    color: #808080;
}

#sidebar ul li .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

#sidebar ul li a:hover {
    text-decoration: underline;
}

#content h1 {
    font-size: 24px;
    color: #2c2a6d;
    font-weight: bold;
    margin: 0 0 20px;
}

#content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-weight: bold;
}

#content ul li::before {
    content: "- ";
}

#content p + p {
    margin-top: 20px;
}
