html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
}
html {
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}
* {
    -webkit-appearance: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
input,
label,
select,
button,
textarea {
    line-height: 1;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    white-space: normal;
    border: 0;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    margin-bottom: 20px;
    border-spacing: 0;
    border-collapse: collapse;
}
table,
th,
td {
    padding: 10px;
    border: 1px solid black;
}
input,
textarea,
select {
    width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}
*:focus {
    outline: 0;
}
button,
input[type='submit'] {
    cursor: pointer;
    border: none;
}
strong {
    font-weight: bold;
}
em {
    font-style: italic;
}
tr,
img {
    page-break-inside: avoid;
}
article p {
    margin-bottom: 20px;
}
article ul,
article ol {
    line-height: 1.3;
    margin-bottom: 10px;
    padding-right: 20px;
}
article ul {
    list-style-type: disc;
}
article ol {
    list-style-type: decimal;
}
.clearfix:before,
.clearfix:after {
    display: table;
    content: ' ';
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}
.mobile_only {
    display: none;
}
.desktop_only {
    display: block;
}
input[type='checkbox'] {
    width: 13px;
    height: 13px;

    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    -ms-appearance: checkbox;
    -o-appearance: checkbox;
    appearance: checkbox;
}
input[type='radio'] {
    display: inline-block;
    width: auto;

    -webkit-appearance: radio;
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}
img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}
img.aligncenter {
    display: block;
    margin: auto;
}
.fl-l {
    float: left;
}
.fl-r {
    float: right;
}

/* mobile menu */

div.mobile_menu_trigger {
    position: fixed;
    z-index: 9999;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 50px;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    background: #888;
}
span.menuline {
    display: block;
    width: 100%;
    height: 4px;
    margin-bottom: 9px;
    background: #fff;
}
.mobile_menu_wrap {
    font-weight: bold;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    padding: 60px 20px 20px;
    background: #888;
}
.mobile_menu_wrap ul li {
    margin-bottom: 20px;
}
.mobile_menu_wrap ul li a {
    font-size: 20px;
    color: #fff;
}
.mobile_menu_wrap ul li ul.sub-menu li a {
    font-size: 14px;
}
body.mobile_menu_active div.mobile_menu_trigger span.menuline {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 45px;
    margin: auto;
}
body.admin-bar div.mobile_menu_trigger,
body.admin-bar.mobile_menu_active .mobile_menu_wrap {
    top: 46px;
}
body.mobile_menu_active div.mobile_menu_trigger span.menuline:nth-child(1) {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
body.mobile_menu_active div.mobile_menu_trigger span.menuline:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
body.mobile_menu_active div.mobile_menu_trigger span.menuline:nth-child(3) {
    display: none;
}
body.mobile_menu_active .mobile_menu_wrap {
    right: 0;
}
.sprite,
.before_icon:before,
.after_icon:after {
    background-image: url(../img/sprite.png);
    background-repeat: no-repeat;
}
.before_icon:before,
.after_icon:after {
    position: relative;
    display: inline-block;
    content: '';
}
.transition {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}