/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

img,span,i,em,u,b{
    display: inline-block;
    font-style: normal;
}
a {
    outline: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /*color: #333;*/
    display: inline-block;
}

a:hover,
a:focus {
    /*color: #ed1b23;*/
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

mark {
    background: #ff0;
    color: #000;
}

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

pre {
    white-space: pre-wrap;
}

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

fieldset {
    border: 1px solid #d6d6d6;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body,
html {
    font-size: 100%;
    padding: 0;
    margin: 0;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Reset */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

body {
    color: #333;
    font-family: 'Arial';
    font-size: 16px;
    word-spacing: 2px;
    background-color: #fff;
    min-width: 320px;
}

h3{
    font-size: 24px;
    margin: 15px 0;
}
h4{
    font-size: 16px;
    /*color: #333;*/
    font-weight: bold;
}
p{
    /*color: #888;*/
}
.css_table {
    display:table;
    width: 100%;
}
.css_tr {
    display: table-row;
}
.css_td {
    display: table-cell;
    vertical-align: middle;
}
/* 弹性布局 */
.flex{
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/* 主轴居中 */
.flex-hc {
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

/* 主轴两端对齐 */
.flex-zBetween {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* 主轴end对齐 */
.flex-zEnd {
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

/* 主轴start对齐 */
.flex-zStart {
    -webkit-box-pack: start;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

/* 侧轴居中 */
.flex-ac {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

/* 侧轴start对齐 */
.flex-cStart {
    -webkit-box-align: start;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

/* 侧轴底部对齐 */
.flex-cEnd {
    -webkit-box-align: end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

/* 侧轴文本基线对齐 */
.flex-cBaseline {
    -webkit-box-align: baseline;
    -moz-align-items: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

/* 侧轴上下对齐并铺满 */
.flex-cStretch {
    -webkit-box-align: stretch;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

/* 主轴从上到下 */
.flex-zTopBottom {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/* 主轴从下到上 */
.flex-zBottomTop {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

/* 主轴从左到右 */
.flex-zLeftRight {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

/* 主轴从右到左 */
.flex-zRightLeft {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}


/* 不允许子元素缩小 */
.flex-shrink {
    -webkit-box-flex: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

/*各个行中间对齐*/
.flex-container {
    -webkit-align-content: center;
    align-content: center;
}

/*各个行中间对齐*/
.flex-container {
    -webkit-align-content: flex-start;
    align-content: flex-start;
}

/*各个行中间对齐*/
.flex-container {
    -webkit-align-content: flex-end;
    align-content: flex-end;
}

/*各个行平均分布*/
.flex-container {
    -webkit-align-content: space-between;
    align-content: space-between;
}

/*各个行两端保留子元素与子元素之间间距大小的一半*/
.flex-container {
    -webkit-align-content: space-around ;
    align-content: space-around ;
}

/*父元素-横向换行 */
.flex-wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap:wrap;
}

/*父元素-不允许横向换行 */
.flex-nowrap{
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap:nowrap;
}
/*充满父元素*/
.flex1{
    -prefix-box-flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}


.section-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.section-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.section-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-34 {
    padding-top: 34px;
    padding-bottom: 34px;
}

.section-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-65 {
    padding-top: 65px;
    padding-bottom: 65px;
}

.section-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-85 {
    padding-top: 85px;
    padding-bottom: 85px;
}

.section-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-95 {
    padding-top: 95px;
    padding-bottom: 95px;
}

.section-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (min-width: 480px) {
    .section-xs-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .section-xs-25 {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .section-xs-30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-xs-34 {
        padding-top: 34px;
        padding-bottom: 34px;
    }
    .section-xs-40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-xs-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-xs-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-xs-65 {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .section-xs-70 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .section-xs-80 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-xs-85 {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .section-xs-90 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .section-xs-95 {
        padding-top: 95px;
        padding-bottom: 95px;
    }
    .section-xs-100 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 768px) {
    .section-sm-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .section-sm-25 {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .section-sm-30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-sm-34 {
        padding-top: 34px;
        padding-bottom: 34px;
    }
    .section-sm-40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-sm-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-sm-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-sm-65 {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .section-sm-70 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .section-sm-80 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-sm-85 {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .section-sm-90 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .section-sm-95 {
        padding-top: 95px;
        padding-bottom: 95px;
    }
    .section-sm-100 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 992px) {
    .section-md-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .section-md-25 {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .section-md-30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-md-34 {
        padding-top: 34px;
        padding-bottom: 34px;
    }
    .section-md-40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-md-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-md-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-md-65 {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .section-md-70 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .section-md-80 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-md-85 {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .section-md-90 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .section-md-95 {
        padding-top: 95px;
        padding-bottom: 95px;
    }
    .section-md-100 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 1200px) {
    .section-lg-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .section-lg-25 {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .section-lg-30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-lg-34 {
        padding-top: 34px;
        padding-bottom: 34px;
    }
    .section-lg-40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-lg-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-lg-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-lg-65 {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .section-lg-70 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .section-lg-80 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-lg-85 {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .section-lg-90 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .section-lg-95 {
        padding-top: 95px;
        padding-bottom: 95px;
    }
    .section-lg-100 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 1800px) {
    .section-xl-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .section-xl-25 {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .section-xl-30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-xl-34 {
        padding-top: 34px;
        padding-bottom: 34px;
    }
    .section-xl-40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-xl-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-xl-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-xl-65 {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .section-xl-70 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .section-xl-80 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-xl-85 {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .section-xl-90 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .section-xl-95 {
        padding-top: 95px;
        padding-bottom: 95px;
    }
    .section-xl-100 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.section-top-20 {
    padding-top: 20px;
}

.section-top-25 {
    padding-top: 25px;
}

.section-top-30 {
    padding-top: 30px;
}

.section-top-34 {
    padding-top: 34px;
}

.section-top-40 {
    padding-top: 40px;
}

.section-top-50 {
    padding-top: 50px;
}

.section-top-60 {
    padding-top: 60px;
}

.section-top-65 {
    padding-top: 65px;
}

.section-top-70 {
    padding-top: 70px;
}

.section-top-80 {
    padding-top: 80px;
}

.section-top-85 {
    padding-top: 85px;
}

.section-top-90 {
    padding-top: 90px;
}

.section-top-95 {
    padding-top: 95px;
}

.section-top-100 {
    padding-top: 100px;
}


@media (min-width: 480px) {
    .section-xs-top-20 {
        padding-top: 20px;
    }
    .section-xs-top-25 {
        padding-top: 25px;
    }
    .section-xs-top-30 {
        padding-top: 30px;
    }
    .section-xs-top-34 {
        padding-top: 34px;
    }
    .section-xs-top-40 {
        padding-top: 40px;
    }
    .section-xs-top-50 {
        padding-top: 50px;
    }
    .section-xs-top-60 {
        padding-top: 60px;
    }
    .section-xs-top-65 {
        padding-top: 65px;
    }
    .section-xs-top-70 {
        padding-top: 70px;
    }
    .section-xs-top-80 {
        padding-top: 80px;
    }
    .section-xs-top-85 {
        padding-top: 85px;
    }
    .section-xs-top-90 {
        padding-top: 90px;
    }
    .section-xs-top-95 {
        padding-top: 95px;
    }
    .section-xs-top-100 {
        padding-top: 100px;
    }
}

@media (min-width: 768px) {
    .section-sm-top-20 {
        padding-top: 20px;
    }
    .section-sm-top-25 {
        padding-top: 25px;
    }
    .section-sm-top-30 {
        padding-top: 30px;
    }
    .section-sm-top-34 {
        padding-top: 34px;
    }
    .section-sm-top-40 {
        padding-top: 40px;
    }
    .section-sm-top-50 {
        padding-top: 50px;
    }
    .section-sm-top-60 {
        padding-top: 60px;
    }
    .section-sm-top-65 {
        padding-top: 65px;
    }
    .section-sm-top-70 {
        padding-top: 70px;
    }
    .section-sm-top-80 {
        padding-top: 80px;
    }
    .section-sm-top-85 {
        padding-top: 85px;
    }
    .section-sm-top-90 {
        padding-top: 90px;
    }
    .section-sm-top-95 {
        padding-top: 95px;
    }
    .section-sm-top-100 {
        padding-top: 100px;
    }
}

@media (min-width: 992px) {
    .section-md-top-20 {
        padding-top: 20px;
    }
    .section-md-top-25 {
        padding-top: 25px;
    }
    .section-md-top-30 {
        padding-top: 30px;
    }
    .section-md-top-34 {
        padding-top: 34px;
    }
    .section-md-top-40 {
        padding-top: 40px;
    }
    .section-md-top-50 {
        padding-top: 50px;
    }
    .section-md-top-60 {
        padding-top: 60px;
    }
    .section-md-top-65 {
        padding-top: 65px;
    }
    .section-md-top-70 {
        padding-top: 70px;
    }
    .section-md-top-80 {
        padding-top: 80px;
    }
    .section-md-top-85 {
        padding-top: 85px;
    }
    .section-md-top-90 {
        padding-top: 90px;
    }
    .section-md-top-95 {
        padding-top: 95px;
    }
    .section-md-top-100 {
        padding-top: 100px;
    }
}

@media (min-width: 1200px) {
    .section-lg-top-0 {
        padding-top: 0;
    }
    .section-lg-top-20 {
        padding-top: 20px;
    }
    .section-lg-top-25 {
        padding-top: 25px;
    }
    .section-lg-top-30 {
        padding-top: 30px;
    }
    .section-lg-top-34 {
        padding-top: 34px;
    }
    .section-lg-top-40 {
        padding-top: 40px;
    }
    .section-lg-top-50 {
        padding-top: 50px;
    }
    .section-lg-top-60 {
        padding-top: 60px;
    }
    .section-lg-top-65 {
        padding-top: 65px;
    }
    .section-lg-top-70 {
        padding-top: 70px;
    }
    .section-lg-top-80 {
        padding-top: 80px;
    }
    .section-lg-top-85 {
        padding-top: 85px;
    }
    .section-lg-top-90 {
        padding-top: 90px;
    }
    .section-lg-top-95 {
        padding-top: 95px;
    }
    .section-lg-top-100 {
        padding-top: 100px;
    }
}

@media (min-width: 1800px) {
    .section-xl-top-20 {
        padding-top: 20px;
    }
    .section-xl-top-25 {
        padding-top: 25px;
    }
    .section-xl-top-30 {
        padding-top: 30px;
    }
    .section-xl-top-34 {
        padding-top: 34px;
    }
    .section-xl-top-40 {
        padding-top: 40px;
    }
    .section-xl-top-50 {
        padding-top: 50px;
    }
    .section-xl-top-60 {
        padding-top: 60px;
    }
    .section-xl-top-65 {
        padding-top: 65px;
    }
    .section-xl-top-70 {
        padding-top: 70px;
    }
    .section-xl-top-80 {
        padding-top: 80px;
    }
    .section-xl-top-85 {
        padding-top: 85px;
    }
    .section-xl-top-90 {
        padding-top: 90px;
    }
    .section-xl-top-95 {
        padding-top: 95px;
    }
    .section-xl-top-100 {
        padding-top: 100px;
    }
}
.section-bottom-0 {
    padding-bottom: 0;
}
.section-bottom-10 {
    padding-bottom: 10px;
}
.section-bottom-20 {
    padding-bottom: 20px;
}

.section-bottom-25 {
    padding-bottom: 25px;
}

.section-bottom-30 {
    padding-bottom: 30px;
}

.section-bottom-34 {
    padding-bottom: 34px;
}

.section-bottom-40 {
    padding-bottom: 40px;
}

.section-bottom-50 {
    padding-bottom: 50px;
}

.section-bottom-60 {
    padding-bottom: 60px;
}

.section-bottom-65 {
    padding-bottom: 65px;
}

.section-bottom-70 {
    padding-bottom: 70px;
}

.section-bottom-80 {
    padding-bottom: 80px;
}

.section-bottom-85 {
    padding-bottom: 85px;
}

.section-bottom-90 {
    padding-bottom: 90px;
}

.section-bottom-95 {
    padding-bottom: 95px;
}

.section-bottom-100 {
    padding-bottom: 100px;
}

@media (min-width: 480px) {
    .section-xs-bottom-20 {
        padding-bottom: 20px;
    }
    .section-xs-bottom-25 {
        padding-bottom: 25px;
    }
    .section-xs-bottom-30 {
        padding-bottom: 30px;
    }
    .section-xs-bottom-34 {
        padding-bottom: 34px;
    }
    .section-xs-bottom-40 {
        padding-bottom: 40px;
    }
    .section-xs-bottom-50 {
        padding-bottom: 50px;
    }
    .section-xs-bottom-60 {
        padding-bottom: 60px;
    }
    .section-xs-bottom-65 {
        padding-bottom: 65px;
    }
    .section-xs-bottom-70 {
        padding-bottom: 70px;
    }
    .section-xs-bottom-80 {
        padding-bottom: 80px;
    }
    .section-xs-bottom-85 {
        padding-bottom: 85px;
    }
    .section-xs-bottom-90 {
        padding-bottom: 90px;
    }
    .section-xs-bottom-95 {
        padding-bottom: 95px;
    }
    .section-xs-bottom-100 {
        padding-bottom: 100px;
    }
}

@media (min-width: 768px) {
    .section-sm-bottom-20 {
        padding-bottom: 20px;
    }
    .section-sm-bottom-25 {
        padding-bottom: 25px;
    }
    .section-sm-bottom-30 {
        padding-bottom: 30px;
    }
    .section-sm-bottom-34 {
        padding-bottom: 34px;
    }
    .section-sm-bottom-40 {
        padding-bottom: 40px;
    }
    .section-sm-bottom-50 {
        padding-bottom: 50px;
    }
    .section-sm-bottom-60 {
        padding-bottom: 60px;
    }
    .section-sm-bottom-65 {
        padding-bottom: 65px;
    }
    .section-sm-bottom-70 {
        padding-bottom: 70px;
    }
    .section-sm-bottom-80 {
        padding-bottom: 80px;
    }
    .section-sm-bottom-85 {
        padding-bottom: 85px;
    }
    .section-sm-bottom-90 {
        padding-bottom: 90px;
    }
    .section-sm-bottom-95 {
        padding-bottom: 95px;
    }
    .section-sm-bottom-100 {
        padding-bottom: 100px;
    }
}

@media (min-width: 992px) {
    .section-md-bottom-20 {
        padding-bottom: 20px;
    }
    .section-md-bottom-25 {
        padding-bottom: 25px;
    }
    .section-md-bottom-30 {
        padding-bottom: 30px;
    }
    .section-md-bottom-34 {
        padding-bottom: 34px;
    }
    .section-md-bottom-40 {
        padding-bottom: 40px;
    }
    .section-md-bottom-50 {
        padding-bottom: 50px;
    }
    .section-md-bottom-60 {
        padding-bottom: 60px;
    }
    .section-md-bottom-65 {
        padding-bottom: 65px;
    }
    .section-md-bottom-70 {
        padding-bottom: 70px;
    }
    .section-md-bottom-80 {
        padding-bottom: 80px;
    }
    .section-md-bottom-85 {
        padding-bottom: 85px;
    }
    .section-md-bottom-90 {
        padding-bottom: 90px;
    }
    .section-md-bottom-95 {
        padding-bottom: 95px;
    }
    .section-md-bottom-100 {
        padding-bottom: 100px;
    }
}

@media (min-width: 1200px) {
    .section-lg-bottom-20 {
        padding-bottom: 20px;
    }
    .section-lg-bottom-25 {
        padding-bottom: 25px;
    }
    .section-lg-bottom-30 {
        padding-bottom: 30px;
    }
    .section-lg-bottom-34 {
        padding-bottom: 34px;
    }
    .section-lg-bottom-40 {
        padding-bottom: 40px;
    }
    .section-lg-bottom-50 {
        padding-bottom: 50px;
    }
    .section-lg-bottom-60 {
        padding-bottom: 60px;
    }
    .section-lg-bottom-65 {
        padding-bottom: 65px;
    }
    .section-lg-bottom-70 {
        padding-bottom: 70px;
    }
    .section-lg-bottom-80 {
        padding-bottom: 80px;
    }
    .section-lg-bottom-85 {
        padding-bottom: 85px;
    }
    .section-lg-bottom-90 {
        padding-bottom: 90px;
    }
    .section-lg-bottom-95 {
        padding-bottom: 95px;
    }
    .section-lg-bottom-100 {
        padding-bottom: 100px;
    }
}

@media (min-width: 1800px) {
    .section-xl-bottom-20 {
        padding-bottom: 20px;
    }
    .section-xl-bottom-25 {
        padding-bottom: 25px;
    }
    .section-xl-bottom-30 {
        padding-bottom: 30px;
    }
    .section-xl-bottom-34 {
        padding-bottom: 34px;
    }
    .section-xl-bottom-40 {
        padding-bottom: 40px;
    }
    .section-xl-bottom-50 {
        padding-bottom: 50px;
    }
    .section-xl-bottom-60 {
        padding-bottom: 60px;
    }
    .section-xl-bottom-65 {
        padding-bottom: 65px;
    }
    .section-xl-bottom-70 {
        padding-bottom: 70px;
    }
    .section-xl-bottom-80 {
        padding-bottom: 80px;
    }
    .section-xl-bottom-85 {
        padding-bottom: 85px;
    }
    .section-xl-bottom-90 {
        padding-bottom: 90px;
    }
    .section-xl-bottom-95 {
        padding-bottom: 95px;
    }
    .section-xl-bottom-100 {
        padding-bottom: 100px;
    }
}
.offset-top-auto {
    margin-top: auto;
}

.offset-bottom-0 {
    margin-bottom: 0;
}
.offset-botom-10 {
    margin-bottom: 10px;
}
.offset-botom-70 {
    margin-bottom: 70px;
}
.offset-botom-20 {
    margin-bottom: 20px;
}
.offset-botom-30 {
    margin-bottom: 30px;
}
.offset-botom-40 {
    margin-bottom: 40px;
}
.offset-botom-50 {
    margin-bottom: 50px;
}

html .page .offset-top-0 {
    margin-top: 0;
}

html .page .offset-top-5 {
    margin-top: 5px;
}

html .page .offset-top-8 {
    margin-top: 8px;
}

html .page .offset-top-10 {
    margin-top: 10px;
}

html .page .offset-top-15 {
    margin-top: 15px;
}

html .page .offset-top-20 {
    margin-top: 20px;
}

html .page .offset-top-25 {
    margin-top: 25px;
}

html .page .offset-top-30 {
    margin-top: 30px;
}

html .page .offset-top-35 {
    margin-top: 35px;
}

html .page .offset-top-40 {
    margin-top: 40px;
}

html .page .offset-top-45 {
    margin-top: 45px;
}

html .page .offset-top-50 {
    margin-top: 50px;
}

html .page .offset-top-55 {
    margin-top: 55px;
}

html .page .offset-top-60 {
    margin-top: 60px;
}

html .page .offset-top-65 {
    margin-top: 65px;
}

html .page .offset-top-70 {
    margin-top: 70px;
}

html .page .offset-top-80 {
    margin-top: 80px;
}

html .page .offset-top-90 {
    margin-top: 90px;
}

html .page .offset-top-100 {
    margin-top: 100px;
}

@media (min-width: 480px) {
    html .page .offset-xs-top-0 {
        margin-top: 0;
    }
    html .page .offset-xs-top-5 {
        margin-top: 5px;
    }
    html .page .offset-xs-top-8 {
        margin-top: 8px;
    }
    html .page .offset-xs-top-10 {
        margin-top: 10px;
    }
    html .page .offset-xs-top-15 {
        margin-top: 15px;
    }
    html .page .offset-xs-top-20 {
        margin-top: 20px;
    }
    html .page .offset-xs-top-25 {
        margin-top: 25px;
    }
    html .page .offset-xs-top-30 {
        margin-top: 30px;
    }
    html .page .offset-xs-top-35 {
        margin-top: 35px;
    }
    html .page .offset-xs-top-40 {
        margin-top: 40px;
    }
    html .page .offset-xs-top-45 {
        margin-top: 45px;
    }
    html .page .offset-xs-top-50 {
        margin-top: 50px;
    }
    html .page .offset-xs-top-55 {
        margin-top: 55px;
    }
    html .page .offset-xs-top-60 {
        margin-top: 60px;
    }
    html .page .offset-xs-top-65 {
        margin-top: 65px;
    }
    html .page .offset-xs-top-70 {
        margin-top: 70px;
    }
    html .page .offset-xs-top-80 {
        margin-top: 80px;
    }
    html .page .offset-xs-top-90 {
        margin-top: 90px;
    }
    html .page .offset-xs-top-100 {
        margin-top: 100px;
    }
}

@media (min-width: 768px) {
    html .page .offset-sm-top-0 {
        margin-top: 0;
    }
    html .page .offset-sm-top-5 {
        margin-top: 5px;
    }
    html .page .offset-sm-top-8 {
        margin-top: 8px;
    }
    html .page .offset-sm-top-10 {
        margin-top: 10px;
    }
    html .page .offset-sm-top-15 {
        margin-top: 15px;
    }
    html .page .offset-sm-top-20 {
        margin-top: 20px;
    }
    html .page .offset-sm-top-25 {
        margin-top: 25px;
    }
    html .page .offset-sm-top-30 {
        margin-top: 30px;
    }
    html .page .offset-sm-top-35 {
        margin-top: 35px;
    }
    html .page .offset-sm-top-40 {
        margin-top: 40px;
    }
    html .page .offset-sm-top-45 {
        margin-top: 45px;
    }
    html .page .offset-sm-top-50 {
        margin-top: 50px;
    }
    html .page .offset-sm-top-55 {
        margin-top: 55px;
    }
    html .page .offset-sm-top-60 {
        margin-top: 60px;
    }
    html .page .offset-sm-top-65 {
        margin-top: 65px;
    }
    html .page .offset-sm-top-70 {
        margin-top: 70px;
    }
    html .page .offset-sm-top-80 {
        margin-top: 80px;
    }
    html .page .offset-sm-top-90 {
        margin-top: 90px;
    }
    html .page .offset-sm-top-100 {
        margin-top: 100px;
    }
}

@media (min-width: 992px) {
    html .page .offset-md-top-0 {
        margin-top: 0;
    }
    html .page .offset-md-top-5 {
        margin-top: 5px;
    }
    html .page .offset-md-top-8 {
        margin-top: 8px;
    }
    html .page .offset-md-top-10 {
        margin-top: 10px;
    }
    html .page .offset-md-top-15 {
        margin-top: 15px;
    }
    html .page .offset-md-top-20 {
        margin-top: 20px;
    }
    html .page .offset-md-top-25 {
        margin-top: 25px;
    }
    html .page .offset-md-top-30 {
        margin-top: 30px;
    }
    html .page .offset-md-top-35 {
        margin-top: 35px;
    }
    html .page .offset-md-top-40 {
        margin-top: 40px;
    }
    html .page .offset-md-top-45 {
        margin-top: 45px;
    }
    html .page .offset-md-top-50 {
        margin-top: 50px;
    }
    html .page .offset-md-top-55 {
        margin-top: 55px;
    }
    html .page .offset-md-top-60 {
        margin-top: 60px;
    }
    html .page .offset-md-top-65 {
        margin-top: 65px;
    }
    html .page .offset-md-top-70 {
        margin-top: 70px;
    }
    html .page .offset-md-top-80 {
        margin-top: 80px;
    }
    html .page .offset-md-top-90 {
        margin-top: 90px;
    }
    html .page .offset-md-top-100 {
        margin-top: 100px;
    }
}

@media (min-width: 1200px) {
    html .page .offset-lg-top-0 {
        margin-top: 0;
    }
    html .page .offset-lg-top-5 {
        margin-top: 5px;
    }
    html .page .offset-lg-top-8 {
        margin-top: 8px;
    }
    html .page .offset-lg-top-10 {
        margin-top: 10px;
    }
    html .page .offset-lg-top-15 {
        margin-top: 15px;
    }
    html .page .offset-lg-top-20 {
        margin-top: 20px;
    }
    html .page .offset-lg-top-25 {
        margin-top: 25px;
    }
    html .page .offset-lg-top-30 {
        margin-top: 30px;
    }
    html .page .offset-lg-top-35 {
        margin-top: 35px;
    }
    html .page .offset-lg-top-40 {
        margin-top: 40px;
    }
    html .page .offset-lg-top-45 {
        margin-top: 45px;
    }
    html .page .offset-lg-top-50 {
        margin-top: 50px;
    }
    html .page .offset-lg-top-55 {
        margin-top: 55px;
    }
    html .page .offset-lg-top-60 {
        margin-top: 60px;
    }
    html .page .offset-lg-top-65 {
        margin-top: 65px;
    }
    html .page .offset-lg-top-70 {
        margin-top: 70px;
    }
    html .page .offset-lg-top-80 {
        margin-top: 80px;
    }
    html .page .offset-lg-top-90 {
        margin-top: 90px;
    }
    html .page .offset-lg-top-100 {
        margin-top: 100px;
    }
}

@media (min-width: 1800px) {
    html .page .offset-xl-top-0 {
        margin-top: 0;
    }
    html .page .offset-xl-top-5 {
        margin-top: 5px;
    }
    html .page .offset-xl-top-8 {
        margin-top: 8px;
    }
    html .page .offset-xl-top-10 {
        margin-top: 10px;
    }
    html .page .offset-xl-top-15 {
        margin-top: 15px;
    }
    html .page .offset-xl-top-20 {
        margin-top: 20px;
    }
    html .page .offset-xl-top-25 {
        margin-top: 25px;
    }
    html .page .offset-xl-top-30 {
        margin-top: 30px;
    }
    html .page .offset-xl-top-35 {
        margin-top: 35px;
    }
    html .page .offset-xl-top-40 {
        margin-top: 40px;
    }
    html .page .offset-xl-top-45 {
        margin-top: 45px;
    }
    html .page .offset-xl-top-50 {
        margin-top: 50px;
    }
    html .page .offset-xl-top-55 {
        margin-top: 55px;
    }
    html .page .offset-xl-top-60 {
        margin-top: 60px;
    }
    html .page .offset-xl-top-65 {
        margin-top: 65px;
    }
    html .page .offset-xl-top-70 {
        margin-top: 70px;
    }
    html .page .offset-xl-top-80 {
        margin-top: 80px;
    }
    html .page .offset-xl-top-90 {
        margin-top: 90px;
    }
    html .page .offset-xl-top-100 {
        margin-top: 100px;
    }
}
