﻿.text-decoration-dashed {
    text-decoration: dashed;
}

.text-decoration-dotted {
    text-decoration: dotted;
}

.text-decoration-double {
    text-decoration: double;
}

.text-decoration-line-through {
    text-decoration: line-through;
}

.text-decoration-none {
    text-decoration: none;
}

.text-decoration-overline {
    text-decoration: overline;
}

.text-decoration-solid {
    text-decoration: solid;
}

.text-decoration-underline {
    text-decoration: underline;
}

.text-decoration-wavy {
    text-decoration: wavy;
}


.float-left {
    float: left;
}

.float-right {
    float: right;
}

/*此元素不会被显示*/
.display-none {
    display: none !important;
}

/*此元素将显示为块级元素，此元素前后会带有换行符*/
.display-block {
    display: block !important;
}

/*此元素会被显示为内联元素，元素前后没有换行符*/
.display-inline {
    display: inline !important;
}

/*行内块元素。（CSS2.1 新增的值）*/
.display-inline-block {
    display: inline-block !important;
}

/*此元素会作为列表显示*/
.display-list-item {
    display: list-item !important;
}

/*此元素会根据上下文作为块级元素或内联元素显示*/
.display-run-in {
    display: run-in !important;
}

/*CSS 中有值 compact，不过由于缺乏广泛支持，已经从 CSS2.1 中删除*/
.display-compact {
    display: compact !important;
}

/*CSS 中有值 marker，不过由于缺乏广泛支持，已经从 CSS2.1 中删除*/
.display-marker {
    display: marker !important;
}

/*此元素会作为块级表格来显示（类似 <table>），表格前后带有换行符*/
.display-table {
    display: table !important;
}

/*此元素会作为内联表格来显示（类似 <table>），表格前后没有换行符*/
.display-inline-table {
    display: display-inline-table !important;
}

/*此元素会作为一个或多个行的分组来显示（类似 <tbody>）*/
.display-table-row-group {
    display: table-row-group !important;
}

/*此元素会作为一个或多个行的分组来显示（类似 <thead>）*/
.display-table-header-group {
    display: table-header-group !important;
}

/*此元素会作为一个或多个行的分组来显示（类似 <tfoot>）*/
.display-table-footer-group {
    display: table-footer-group !important;
}

/*此元素会作为一个表格行显示（类似 <tr>）*/
.display-table-row {
    display: table-row !important;
}

/*此元素会作为一个或多个列的分组来显示（类似 <colgroup>）*/
.display-table-column-group {
    display: table-column-group !important;
}

/*此元素会作为一个单元格列显示（类似 <col>）*/
.display-table-column {
    display: table-column !important;
}

/*此元素会作为一个表格单元格显示（类似 <td> 和 <th>）*/
.display-table-cell {
    display: table-cell !important;
}

/*此元素会作为一个表格标题显示（类似 <caption>）*/
.display-table-caption {
    display: table-caption !important;
}

.position-absolute {
    position: absolute;
}

.position-center {
    position: center;
}

.position-fixed {
    position: fixed;
}

.position-inherit {
    position: inherit;
}

.position-initial {
    position: initial;
}

.position-page {
    position: page;
}

.position-relative {
    position: relative;
}

.position-static {
    position: static;
}

.position-sticky {
    position: sticky;
}

.word-break {
    word-wrap: break-word;
    word-break: break-all;
}

.cursor-pointer {
    cursor: pointer;
}

.text-indent-2em {
    text-indent: 2em;
}

.vertical-align-baseline {
    vertical-align: baseline !important;
}

.vertical-align-sub {
    vertical-align: sub !important;
}

.vertical-align-super {
    vertical-align: super !important;
}

.vertical-align-top {
    vertical-align: top !important;
}

.vertical-align-text-top {
    vertical-align: text-top !important;
}

.vertical-align-middle {
    vertical-align: middle !important;
}

.vertical-align-bottom {
    vertical-align: bottom !important;
}

.vertical-align-text-bottom {
    vertical-align: text-bottom !important;
}
/*
    stretch	默认。项目被拉伸以适合容器。
center	项目位于容器的中央。
*/

/*项目被拉伸以适合容器.默认*/
.align-items-stretch {
    align-items: stretch;
}

/*项目位于容器的中央*/
.align-items-center {
    align-items: center;
}

/*项目位于容器的开头*/
.align-items-flex-start {
    align-items: flex-start;
}

/*项目位于容器的末端*/
.align-items-flex-end {
    align-items: flex-end;
}

/*项目被定位到容器的基线*/
.align-items-baseline {
    align-items: baseline;
}

/*默认值。项目位于容器的开头*/
.justify-content-flex-start {
    justify-content: flex-start;
}

/*项目位于容器的结尾*/
.justify-content-flex-end {
    justify-content: flex-end;
}

/*项目位于容器中央*/
.justify-content-center {
    justify-content: center;
}

/*项目在行与行之间留有间隔*/
.justify-content-space-between {
    justify-content: space-between;
}

/*项目在行之前、行之间和行之后留有空间*/
.justify-content-space-around {
    justify-content: space-around;
}

.font-weight-100 {
    font-weight: 100 !important;
}

.font-weight-200 {
    font-weight: 200 !important;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-normal,
.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-bold,
.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.font-weight-lighter {
    font-weight: lighter !important;
}

.color-707070 {
    color: #707070 !important;
}

.color-maroon, .color-800000 {
    color: #800000 !important;
}

.color-darkred, .color-8B0000 {
    color: #8B0000 !important;
}

.color-brown, .color-A52A2A {
    color: #A52A2A !important;
}

.color-firebrick, .color-B22222 {
    color: #B22222 !important;
}

.color-crimson, .color-DC143C {
    color: #DC143C !important;
}

.color-red, .color-FF0000 {
    color: #FF0000 !important;
}

.color-mediumvioletred, .color-C71585 {
    color: #C71585 !important;
}

.color-palevioletred, .color-D87093 {
    color: #D87093 !important;
}

.color-deeppink, .color-FF1493 {
    color: #FF1493 !important;
}

.color-fuchsia, .color-magenta, .color-FF00FF {
    color: #FF00FF !important;
}

.color-hotpink, .color-FF69B4 {
    color: #FF69B4 !important;
}

.color-pink, .color-FFC0CB {
    color: #FFC0CB !important;
}

.color-lightpink, .color-FFB6C1 {
    color: #FFB6C1 !important;
}

.color-mistyrose, .color-FFE4E1 {
    color: #FFE4E1 !important;
}

.color-lavenderblush, .color-FFF0F5 {
    color: #FFF0F5 !important;
}

.color-indigo, .color-4B0082 {
    color: #4B0082 !important;
}

.color-purple, .color-800080 {
    color: #800080 !important;
}

.color-darkmagenta, .color-8B008B {
    color: #8B008B !important;
}

.color-darkorchid , .color-9932CC {
    color: #9932CC !important;
}

.color-blueviolet, .color-8A2BE2 {
    color: #8A2BE2 !important;
}

.color-darkviolet, .color-9400D3 {
    color: #9400D3 !important;
}

.color-slateblue, .color-6A5ACD {
    color: #6A5ACD !important;
}

.color-mediumpurple, .color-9370DB {
    color: #9370DB !important;
}

.color-mediumslateblue, .color-7B68EE {
    color: #7B68EE !important;
}

.color-mediumorchid, .color-BA55D3 {
    color: #BA55D3 !important;
}

.color-violet, .color-EE82EE {
    color: #EE82EE !important;
}

.color-plum, .color-DDA0DD {
    color: #DDA0DD !important;
}

.color-thistle, .color-D8BFD8 {
    color: #D8BFD8 !important;
}

.color-lavender, .color-E6E6FA {
    color: #E6E6FA !important;
}

.color-saddlebrown, .color-8B4513 {
    color: #8B4513 !important;
}

.color-sienna, .color-A0522D {
    color: #A0522D !important;
}

.color-chocolate, .color-D2691E {
    color: #D2691E !important;
}

.color-indianred, .color-CD5C5C {
    color: #CD5C5C !important;
}

.color-rosybrown, .color-BC8F8F {
    color: #BC8F8F !important;
}

.color-lightcoral, .color-F08080 {
    color: #F08080 !important;
}

.color-salmon, .color-FA8072 {
    color: #FA8072 !important;
}

.color-lightsalmon, .color-FFA07A {
    color: #FFA07A !important;
}

.color-orangered, .color-FF4500 {
    color: #FF4500 !important;
}

.color-tomato, .color-FF6347 {
    color: #FF6347 !important;
}

.color-coral, .color-FF7F50 {
    color: #FF7F50 !important;
}

.color-darkorange, .color-FF8C00 {
    color: #FF8C00 !important;
}

.color-sandybrown, .color-F4A460 {
    color: #F4A460 !important;
}

.color-peru, .color-CD853F {
    color: #CD853F !important;
}

.color-tan, .color-D2B48C {
    color: #D2B48C !important;
}

.color-burlywood, .color-DEB887 {
    color: #DEB887 !important;
}

.color-wheat, .color-F5DEB3 {
    color: #F5DEB3 !important;
}

.color-moccasin, .color-FFE4B5 {
    color: #FFE4B5 !important;
}

.color-navajowhite, .color-FFDEAD {
    color: #FFDEAD !important;
}

.color-peachpuff, .color-FFDAB9 {
    color: #FFDAB9 !important;
}

.color-bisque, .color-FFE4C4 {
    color: #FFE4C4 !important;
}

.color-antiquewhite, .color-FAEBD7 {
    color: #FAEBD7 !important;
}

.color-papayawhip, .color-FFEFD5 {
    color: #FFEFD5 !important;
}

.color-cornsilk, .color-FFF8DC {
    color: #FFF8DC !important;
}

.color-oldlace, .color-FDF5E6 {
    color: #FDF5E6 !important;
}

.color-linen, .color-FAF0E6 {
    color: #FAF0E6 !important;
}

.color-seashell, .color-FFF5EE {
    color: #FFF5EE !important;
}

.color-snow, .color-FFFAFA {
    color: #FFFAFA !important;
}

.color-floralwhite, .color-FFFAF0 {
    color: #FFFAF0 !important;
}

.color-ivory, .color-FFFFF0 {
    color: #FFFFF0 !important;
}

.color-mintcream, .color-F5FFFA {
    color: #F5FFFA !important;
}

.color-darkgoldenrod, .color-B8860B {
    color: #B8860B !important;
}

.color-goldenrod, .color-DAA520 {
    color: #DAA520 !important;
}

.color-gold, .color-FFD700 {
    color: #FFD700 !important;
}

.color-yellow, .color-FFFF00 {
    color: #FFFF00 !important;
}

.color-darkkhaki, .color-BDB76B {
    color: #BDB76B !important;
}

.color-khaki, .color-F0E68C {
    color: #F0E68C !important;
}

.color-palegoldenrod, .color-EEE8AA {
    color: #EEE8AA !important;
}

.color-beige, .color-F5F5DC {
    color: #F5F5DC !important;
}

.color-lemonchiffon, .color-FFFACD {
    color: #FFFACD !important;
}

.color-lightgoldenrodyellow, .color-FAFAD2 {
    color: #FAFAD2 !important;
}

.color-lightyellow , .color-FFFFE0 {
    color: #FFFFE0 !important;
}

.color-darkslategray, .color-2F4F4F {
    color: #2F4F4F !important;
}

.color-darkolivegreen, .color-556B2F {
    color: #556B2F !important;
}

.color-olive, .color-808000 {
    color: #808000 !important;
}

.color-darkgreen, .color-006400 {
    color: #006400 !important;
}

.color-forestgreen, .color-228B22 {
    color: #228B22 !important;
}

.color-seagreen, .color-2E8B57 {
    color: #2E8B57 !important;
}

.color-green, .color-008000 {
    color: #008000 !important;
}

.color-teal, .color-008080 {
    color: #008080 !important;
}

.color-lightseagreen, .color-20B2AA {
    color: #20B2AA !important;
}

.color-mediumaquamarine, .color-66CDAA {
    color: #66CDAA !important;
}

.color-mediumseagreen, .color-3CB371 {
    color: #3CB371 !important;
}

.color-darkseagreen, .color-8FBC8F {
    color: #8FBC8F !important;
}

.color-yellowgreen, .color-9ACD32 {
    color: #9ACD32 !important;
}

.color-limegreen, .color-32CD32 {
    color: #32CD32 !important;
}

.color-lime, .color-00FF00 {
    color: #00FF00 !important;
}

.color-chartreuse, .color-7FFF00 {
    color: #7FFF00 !important;
}

.color-lawngreen, .color-7CFC00 {
    color: #7CFC00 !important;
}

.color-greenyellow, .color-ADFF2F {
    color: #ADFF2F !important;
}

.color-mediumspringgreen, .color-00FA9A {
    color: #00FA9A !important;
}

.color-springgreen, .color-00FF7F {
    color: #00FF7F !important;
}

.color-lightgreen , .color-90EE90 {
    color: #90EE90 !important;
}

.color-palegreen, .color-98F898 {
    color: #98F898 !important;
}

.color-aquamarine, .color-7FFFD4 {
    color: #7FFFD4 !important;
}

.color-honeydew, .color-F0FFF0 {
    color: #F0FFF0 !important;
}

.color-midnightblue, .color-191970 {
    color: #191970 !important;
}

.color-navy, .color-000080 {
    color: #000080 !important;
}

.color-darkblue, .color-00008B {
    color: #00008B !important;
}

.color-darkslateblue, .color-483D8B {
    color: #483D8B !important;
}

.color-mediumblue, .color-0000CD {
    color: #0000CD !important;
}

.color-royalblue, .color-4169E1 {
    color: #4169E1 !important;
}

.color-dodgerblue, .color-1E90FF {
    color: #1E90FF !important;
}

.color-cornflowerblue, .color-6495ED {
    color: #6495ED !important;
}

.color-deepskyblue, .color-00BFFF {
    color: #00BFFF !important;
}

.color-lightskyblue, .color-87CEFA {
    color: #87CEFA !important;
}

.color-lightsteelblue, .color-B0C4DE {
    color: #B0C4DE !important;
}

.color-lightblue, .color-ADD8E6 {
    color: #ADD8E6 !important;
}

.color-steelblue, .color-4682B4 {
    color: #4682B4 !important;
}

.color-darkcyan, .color-008B8B {
    color: #008B8B !important;
}

.color-cadetblue, .color-5F9EA0 {
    color: #5F9EA0 !important;
}

.color-darkturquoise, .color-00CED1 {
    color: #00CED1 !important;
}

.color-mediumturquoise, .color-48D1CC {
    color: #48D1CC !important;
}

.color-turquoise, .color-40E0D0 {
    color: #40E0D0 !important;
}

.color-skyblue, .color-87CECB {
    color: #87CECB !important;
}

.color-powderblue, .color-B0E0E6 {
    color: #B0E0E6 !important;
}

.color-paleturquoise, .color-AFEEEE {
    color: #AFEEEE !important;
}

.color-lightcyan, .color-E0FFFF {
    color: #E0FFFF !important;
}

.color-azure, .color-F0FFFF {
    color: #F0FFFF !important;
}

.color-aliceblue, .color-F0F8FF {
    color: #F0F8FF !important;
}

.color-aqua, .color-cyan, .color-00FFFF {
    color: #00FFFF !important;
}

.color-black, .color-000000 {
    color: #000000 !important;
}

.color-dimgray, .color-696969 {
    color: #696969 !important;
}

.color-gray, .color-808080 {
    color: #808080 !important;
}

.color-slategray, .color-708090 {
    color: #708090 !important;
}

.color-lightslategray, .color-778899 {
    color: #778899 !important;
}

.color-dakgray, .color-A9A9A9 {
    color: #A9A9A9 !important;
}

.color-silver, .color-C0C0C0 {
    color: #C0C0C0 !important;
}

.color-lightgray, .color-D3D3D3 {
    color: #D3D3D3 !important;
}

.color-gainsboro, .color-DCDCDC {
    color: #DCDCDC !important;
}

.color-whitesmoke, .color-F5F5F5 {
    color: #F5F5F5 !important;
}

.color-ghostwhite, .color-F8F8FF {
    color: #F8F8FF !important;
}

.color-white, .color-FFFFFF {
    color: #FFFFFF !important;
}

.color-blue, .color-0000FF {
    color: #0000FF !important;
}

.color-rebeccapurple, .color-663399 {
    color: #663399 !important;
}

.backgroundcolor-transparent {
    background-color: transparent !important;
}

.backgroundcolor-maroon, .backgroundcolor-800000 {
    background-color: #800000 !important;
}

.backgroundcolor-darkred, .backgroundcolor-8B0000 {
    background-color: #8B0000 !important;
}

.backgroundcolor-brown, .backgroundcolor-A52A2A {
    background-color: #A52A2A !important;
}

.backgroundcolor-firebrick, .backgroundcolor-B22222 {
    background-color: #B22222 !important;
}

.backgroundcolor-crimson, .backgroundcolor-DC143C {
    background-color: #DC143C !important;
}

.backgroundcolor-red, .backgroundcolor-FF0000 {
    background-color: #FF0000 !important;
}

.backgroundcolor-mediumvioletred, .backgroundcolor-C71585 {
    background-color: #C71585 !important;
}

.backgroundcolor-palevioletred, .backgroundcolor-D87093 {
    background-color: #D87093 !important;
}

.backgroundcolor-deeppink, .backgroundcolor-FF1493 {
    background-color: #FF1493 !important;
}

.backgroundcolor-fuchsia, .backgroundcolor-magenta, .backgroundcolor-FF00FF {
    background-color: #FF00FF !important;
}

.backgroundcolor-hotpink, .backgroundcolor-FF69B4 {
    background-color: #FF69B4 !important;
}

.backgroundcolor-pink, .backgroundcolor-FFC0CB {
    background-color: #FFC0CB !important;
}

.backgroundcolor-lightpink, .backgroundcolor-FFB6C1 {
    background-color: #FFB6C1 !important;
}

.backgroundcolor-mistyrose, .backgroundcolor-FFE4E1 {
    background-color: #FFE4E1 !important;
}

.backgroundcolor-lavenderblush, .backgroundcolor-FFF0F5 {
    background-color: #FFF0F5 !important;
}

.backgroundcolor-indigo, .backgroundcolor-4B0082 {
    background-color: #4B0082 !important;
}

.backgroundcolor-purple, .backgroundcolor-800080 {
    background-color: #800080 !important;
}

.backgroundcolor-darkmagenta, .backgroundcolor-8B008B {
    background-color: #8B008B !important;
}

.backgroundcolor-darkorchid , .backgroundcolor-9932CC {
    background-color: #9932CC !important;
}

.backgroundcolor-blueviolet, .backgroundcolor-8A2BE2 {
    background-color: #8A2BE2 !important;
}

.backgroundcolor-darkviolet, .backgroundcolor-9400D3 {
    background-color: #9400D3 !important;
}

.backgroundcolor-slateblue, .backgroundcolor-6A5ACD {
    background-color: #6A5ACD !important;
}

.backgroundcolor-mediumpurple, .backgroundcolor-9370DB {
    background-color: #9370DB !important;
}

.backgroundcolor-mediumslateblue, .backgroundcolor-7B68EE {
    background-color: #7B68EE !important;
}

.backgroundcolor-mediumorchid, .backgroundcolor-BA55D3 {
    background-color: #BA55D3 !important;
}

.backgroundcolor-violet, .backgroundcolor-EE82EE {
    background-color: #EE82EE !important;
}

.backgroundcolor-plum, .backgroundcolor-DDA0DD {
    background-color: #DDA0DD !important;
}

.backgroundcolor-thistle, .backgroundcolor-D8BFD8 {
    background-color: #D8BFD8 !important;
}

.backgroundcolor-lavender, .backgroundcolor-E6E6FA {
    background-color: #E6E6FA !important;
}

.backgroundcolor-saddlebrown, .backgroundcolor-8B4513 {
    background-color: #8B4513 !important;
}

.backgroundcolor-sienna, .backgroundcolor-A0522D {
    background-color: #A0522D !important;
}

.backgroundcolor-chocolate, .backgroundcolor-D2691E {
    background-color: #D2691E !important;
}

.backgroundcolor-indianred, .backgroundcolor-CD5C5C {
    background-color: #CD5C5C !important;
}

.backgroundcolor-rosybrown, .backgroundcolor-BC8F8F {
    background-color: #BC8F8F !important;
}

.backgroundcolor-lightcorol, .backgroundcolor-F08080 {
    background-color: #F08080 !important;
}

.backgroundcolor-salmon, .backgroundcolor-FA8072 {
    background-color: #FA8072 !important;
}

.backgroundcolor-lightsalmon, .backgroundcolor-FFA07A {
    background-color: #FFA07A !important;
}

.backgroundcolor-orangered, .backgroundcolor-FF4500 {
    background-color: #FF4500 !important;
}

.backgroundcolor-tomato, .backgroundcolor-FF6347 {
    background-color: #FF6347 !important;
}

.backgroundcolor-coral, .backgroundcolor-FF7F50 {
    background-color: #FF7F50 !important;
}

.backgroundcolor-darkorange, .backgroundcolor-FF8C00 {
    background-color: #FF8C00 !important;
}

.backgroundcolor-sandybrown, .backgroundcolor-F4A460 {
    background-color: #F4A460 !important;
}

.backgroundcolor-peru, .backgroundcolor-CD853F {
    background-color: #CD853F !important;
}

.backgroundcolor-tan, .backgroundcolor-D2B48C {
    background-color: #D2B48C !important;
}

.backgroundcolor-burlywood, .backgroundcolor-DEB887 {
    background-color: #DEB887 !important;
}

.backgroundcolor-wheat, .backgroundcolor-F5DEB3 {
    background-color: #F5DEB3 !important;
}

.backgroundcolor-moccasin, .backgroundcolor-FFE4B5 {
    background-color: #FFE4B5 !important;
}

.backgroundcolor-navajowhite, .backgroundcolor-FFDEAD {
    background-color: #FFDEAD !important;
}

.backgroundcolor-peachpuff, .backgroundcolor-FFDAB9 {
    background-color: #FFDAB9 !important;
}

.backgroundcolor-bisque, .backgroundcolor-FFE4C4 {
    background-color: #FFE4C4 !important;
}

.backgroundcolor-antuquewhite, .backgroundcolor-FAEBD7 {
    background-color: #FAEBD7 !important;
}

.backgroundcolor-papayawhip, .backgroundcolor-FFEFD5 {
    background-color: #FFEFD5 !important;
}

.backgroundcolor-cornsilk, .backgroundcolor-FFF8DC {
    background-color: #FFF8DC !important;
}

.backgroundcolor-oldlace, .backgroundcolor-FDF5E6 {
    background-color: #FDF5E6 !important;
}

.backgroundcolor-linen, .backgroundcolor-FAF0E6 {
    background-color: #FAF0E6 !important;
}

.backgroundcolor-seashell, .backgroundcolor-FFF5EE {
    background-color: #FFF5EE !important;
}

.backgroundcolor-snow, .backgroundcolor-FFFAFA {
    background-color: #FFFAFA !important;
}

.backgroundcolor-floralwhite, .backgroundcolor-FFFAF0 {
    background-color: #FFFAF0 !important;
}

.backgroundcolor-ivory, .backgroundcolor-FFFFF0 {
    background-color: #FFFFF0 !important;
}

.backgroundcolor-mintcream, .backgroundcolor-F5FFFA {
    background-color: #F5FFFA !important;
}

.backgroundcolor-darkgoldenrod, .backgroundcolor-B8860B {
    background-color: #B8860B !important;
}

.backgroundcolor-goldenrod, .backgroundcolor-DAA520 {
    background-color: #DAA520 !important;
}

.backgroundcolor-gold, .backgroundcolor-FFD700 {
    background-color: #FFD700 !important;
}

.backgroundcolor-yellow, .backgroundcolor-FFFF00 {
    background-color: #FFFF00 !important;
}

.backgroundcolor-darkkhaki, .backgroundcolor-BDB76B {
    background-color: #BDB76B !important;
}

.backgroundcolor-khaki, .backgroundcolor-F0E68C {
    background-color: #F0E68C !important;
}

.backgroundcolor-palegoldenrod, .backgroundcolor-EEE8AA {
    background-color: #EEE8AA !important;
}

.backgroundcolor-beige, .backgroundcolor-F5F5DC {
    background-color: #F5F5DC !important;
}

.backgroundcolor-lemonchiffon, .backgroundcolor-FFFACD {
    background-color: #FFFACD !important;
}

.backgroundcolor-lightgoldenrodyellow, .backgroundcolor-FAFAD2 {
    background-color: #FAFAD2 !important;
}

.backgroundcolor-lightyellow , .backgroundcolor-FFFFE0 {
    background-color: #FFFFE0 !important;
}

.backgroundcolor-darkslategray, .backgroundcolor-2F4F4F {
    background-color: #2F4F4F !important;
}

.backgroundcolor-darkolivegreen, .backgroundcolor-556B2F {
    background-color: #556B2F !important;
}

.backgroundcolor-olive, .backgroundcolor-808000 {
    background-color: #808000 !important;
}

.backgroundcolor-darkgreen, .backgroundcolor-006400 {
    background-color: #006400 !important;
}

.backgroundcolor-forestgreen, .backgroundcolor-228B22 {
    background-color: #228B22 !important;
}

.backgroundcolor-seagreen, .backgroundcolor-2E8B57 {
    background-color: #2E8B57 !important;
}

.backgroundcolor-green, .backgroundcolor-008080 {
    background-color: #008000 !important;
}

.backgroundcolor-teal, .backgroundcolor-008080 {
    background-color: #008080 !important;
}

.backgroundcolor-lightseagreen, .backgroundcolor-20B2AA {
    background-color: #20B2AA !important;
}

.backgroundcolor-mediumseagreen, .backgroundcolor-3CB371 {
    background-color: #3CB371 !important;
}

.backgroundcolor-darkseagreen, .backgroundcolor-8FBC8F {
    background-color: #8FBC8F !important;
}

.backgroundcolor-yellowgreen, .backgroundcolor-9ACD32 {
    background-color: #9ACD32 !important;
}

.backgroundcolor-limegreen, .backgroundcolor-32CD32 {
    background-color: #32CD32 !important;
}

.backgroundcolor-lime, .backgroundcolor-00FF00 {
    background-color: #00FF00 !important;
}

.backgroundcolor-chartreuse, .backgroundcolor-7FFF00 {
    background-color: #7FFF00 !important;
}

.backgroundcolor-lawngreen, .backgroundcolor-7CFC00 {
    background-color: #7CFC00 !important;
}

.backgroundcolor-greenyellow, .backgroundcolor-ADFF2F {
    background-color: #ADFF2F !important;
}

.backgroundcolor-mediumspringgreen, .backgroundcolor-00FA9A {
    background-color: #00FA9A !important;
}

.backgroundcolor-springgreen, .backgroundcolor-00FF7F {
    background-color: #00FF7F !important;
}

.backgroundcolor-lightgreen , .backgroundcolor-90EE90 {
    background-color: #90EE90 !important;
}

.backgroundcolor-palegreen, .backgroundcolor-98F898 {
    background-color: #98F898 !important;
}

.backgroundcolor-aquamarine, .backgroundcolor-7FFFD4 {
    background-color: #7FFFD4 !important;
}

.backgroundcolor-honeydew, .backgroundcolor-F0FFF0 {
    background-color: #F0FFF0 !important;
}

.backgroundcolor-midnightblue, .backgroundcolor-191970 {
    background-color: #191970 !important;
}

.backgroundcolor-navy, .backgroundcolor-000080 {
    background-color: #000080 !important;
}

.backgroundcolor-darkblue, .backgroundcolor-00008B {
    background-color: #00008B !important;
}

.backgroundcolor-darkslateblue, .backgroundcolor-483D8B {
    background-color: #483D8B !important;
}

.backgroundcolor-mediumblue, .backgroundcolor-0000CD {
    background-color: #0000CD !important;
}

.backgroundcolor-royalblue, .backgroundcolor-4169E1 {
    background-color: #4169E1 !important;
}

.backgroundcolor-dodgerblue, .backgroundcolor-1E90FF {
    background-color: #1E90FF !important;
}

.backgroundcolor-cornflowerblue, .backgroundcolor-6495ED {
    background-color: #6495ED !important;
}

.backgroundcolor-deepskyblue, .backgroundcolor-00BFFF {
    background-color: #00BFFF !important;
}

.backgroundcolor-lightskyblue, .backgroundcolor-87CEFA {
    background-color: #87CEFA !important;
}

.backgroundcolor-lightsteelblue, .backgroundcolor-B0C4DE {
    background-color: #B0C4DE !important;
}

.backgroundcolor-lightblue, .backgroundcolor-ADD8E6 {
    background-color: #ADD8E6 !important;
}

.backgroundcolor-steelblue, .backgroundcolor-4682B4 {
    background-color: #4682B4 !important;
}

.backgroundcolor-darkcyan, .backgroundcolor-008B8B {
    background-color: #008B8B !important;
}

.backgroundcolor-cadetblue, .backgroundcolor-5F9EA0 {
    background-color: #5F9EA0 !important;
}

.backgroundcolor-darkturquoise, .backgroundcolor-00CED1 {
    background-color: #00CED1 !important;
}

.backgroundcolor-mediumturquoise, .backgroundcolor-48D1CC {
    background-color: #48D1CC !important;
}

.backgroundcolor-turquoise, .backgroundcolor-40E0D0 {
    background-color: #40E0D0 !important;
}

.backgroundcolor-skyblue, .backgroundcolor-87CECB {
    background-color: #87CECB !important;
}

.backgroundcolor-powderblue, .backgroundcolor-B0E0E6 {
    background-color: #B0E0E6 !important;
}

.backgroundcolor-paleturquoise, .backgroundcolor-AFEEEE {
    background-color: #AFEEEE !important;
}

.backgroundcolor-lightcyan, .backgroundcolor-E0FFFF {
    background-color: #E0FFFF !important;
}

.backgroundcolor-azure, .backgroundcolor-F0FFFF {
    background-color: #F0FFFF !important;
}

.backgroundcolor-aliceblue, .backgroundcolor-F0F8FF {
    background-color: #F0F8FF !important;
}

.backgroundcolor-aqua, .backgroundcolor-cyan, .backgroundcolor-00FFFF {
    background-color: #00FFFF !important;
}

.backgroundcolor-black, .backgroundcolor-000000 {
    background-color: #000000 !important;
}

.backgroundcolor-dimgray, .backgroundcolor-696969 {
    background-color: #696969 !important;
}

.backgroundcolor-gray, .backgroundcolor-808080 {
    background-color: #808080 !important;
}

.backgroundcolor-slategray, .backgroundcolor-708090 {
    background-color: #708090 !important;
}

.backgroundcolor-lightslategray, .backgroundcolor-778899 {
    background-color: #778899 !important;
}

.backgroundcolor-darkgray, .backgroundcolor-A9A9A9 {
    background-color: #A9A9A9 !important;
}

.backgroundcolor-silver, .backgroundcolor-C0C0C0 {
    background-color: #C0C0C0 !important;
}

.backgroundcolor-lightgray, .backgroundcolor-D3D3D3 {
    background-color: #D3D3D3 !important;
}

.backgroundcolor-gainsboro, .backgroundcolor-DCDCDC {
    background-color: #DCDCDC !important;
}

.backgroundcolor-whitesmoke, .backgroundcolor-F5F5F5 {
    background-color: #F5F5F5 !important;
}

.backgroundcolor-ghostwhite, .backgroundcolor-F8F8FF {
    background-color: #F8F8FF !important;
}

.backgroundcolor-white, .backgroundcolor-FFFFFF {
    background-color: #FFFFFF !important;
}

.backgroundcolor-blue, .backgroundcolor-0000FF {
    background-color: #0000FF !important;
}

.backgroundcolor-rebeccapurple, .backgroundcolor-663399 {
    background-color: #663399 !important;
}

.backgroundcolor-F1F1F1 {
    background-color: #F1F1F1 !important;
}

.backgroundcolor-F9F9F9 {
    background-color: #F9F9F9 !important;
}

.btn-link {
    color: #0000FF;
}

    .btn-link:hover {
        color: #FF0000;
        text-decoration: none;
    }

.p0 {
    padding: 0px !important;
}

.m-0 {
    margin: 0px !important;
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-25 {
    width: 25% !important;
}

.w-30 {
    width: 30% !important;
}

.w-33 {
    width: 33.3333% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.width-10 {
    width: 10px !important;
}

.width-15 {
    width: 15px !important;
}

.width-20 {
    width: 20px !important;
}

.width-25 {
    width: 25px !important;
}

.width-30 {
    width: 30px !important;
}

.width-35 {
    width: 35px !important;
}

.width-40 {
    width: 40px !important;
}

.width-45 {
    width: 45px !important;
}

.width-50 {
    width: 50px !important;
}

.width-55 {
    width: 55px !important;
}

.width-60 {
    width: 60px !important;
}

.width-65 {
    width: 65px !important;
}

.width-70 {
    width: 70px !important;
}

.width-75 {
    width: 75px !important;
}

.width-80 {
    width: 80px !important;
}

.width-85 {
    width: 85px !important;
}

.width-90 {
    width: 90px !important;
}

.width-95 {
    width: 95px !important;
}

.width-100 {
    width: 100px !important;
}

.width-auto {
    width: auto !important;
}

.maxW-100 {
    max-width: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.height-10 {
    height: 10px !important;
}

.height-15 {
    height: 15px !important;
}

.height-20 {
    height: 20px !important;
}

.height-25 {
    height: 25px !important;
}

.height-30 {
    height: 30px !important;
}

.height-35 {
    height: 35px !important;
}

.height-40 {
    height: 40px !important;
}

.height-45 {
    height: 45px !important;
}

.height-50 {
    height: 50px !important;
}

.height-55 {
    height: 55px !important;
}

.height-60 {
    height: 60px !important;
}

.height-65 {
    height: 65px !important;
}

.height-70 {
    height: 70px !important;
}

.height-75 {
    height: 75px !important;
}

.height-80 {
    height: 80px !important;
}

.height-85 {
    height: 85px !important;
}

.height-90 {
    height: 90px !important;
}

.height-95 {
    height: 95px !important;
}

.height-100 {
    height: 100px !important;
}

.height-auto {
    height: auto !important;
}

.maxH-100 {
    max-height: 100% !important;
}

.min-height-1 {
    min-height: 1px !important;
}

.min-height-2 {
    min-height: 2px !important;
}

.min-height-3 {
    min-height: 3px !important;
}

.min-height-4 {
    min-height: 4px !important;
}

.min-height-5 {
    min-height: 5px !important;
}

.min-height-6 {
    min-height: 6px !important;
}

.min-height-7 {
    min-height: 7px !important;
}

.min-height-8 {
    min-height: 8px !important;
}

.min-height-9 {
    min-height: 9px !important;
}

.min-height-10 {
    min-height: 10px !important;
}

.min-height-15 {
    min-height: 15px !important;
}

.min-height-20 {
    min-height: 20px !important;
}

.min-height-25 {
    min-height: 25px !important;
}

.min-height-30 {
    min-height: 30px !important;
}

.min-height-35 {
    min-height: 35px !important;
}

.min-height-40 {
    min-height: 40px !important;
}

.min-height-45 {
    min-height: 45px !important;
}

.min-height-50 {
    min-height: 50px !important;
}

.min-height-55 {
    min-height: 55px !important;
}

.min-height-60 {
    min-height: 60px !important;
}

.min-height-65 {
    min-height: 65px !important;
}

.min-height-70 {
    min-height: 70px !important;
}

.min-height-75 {
    min-height: 75px !important;
}

.min-height-80 {
    min-height: 80px !important;
}

.min-height-85 {
    min-height: 85px !important;
}

.min-height-90 {
    min-height: 90px !important;
}

.min-height-95 {
    min-height: 95px !important;
}

.min-height-100 {
    min-height: 100px !important;
}

.line-height-10 {
    line-height: 10px !important;
}

.line-height-15 {
    line-height: 15px !important;
}

.line-height-20 {
    line-height: 20px !important;
}

.line-height-25 {
    line-height: 25px !important;
}

.line-height-30 {
    line-height: 30px !important;
}

.line-height-35 {
    line-height: 35px !important;
}

.line-height-40 {
    line-height: 40px !important;
}

.line-height-45 {
    line-height: 45px !important;
}

.line-height-50 {
    line-height: 50px !important;
}

.line-height-55 {
    line-height: 55px !important;
}

.line-height-60 {
    line-height: 60px !important;
}

.line-height-65 {
    line-height: 65px !important;
}

.line-height-70 {
    line-height: 70px !important;
}

.line-height-75 {
    line-height: 75px !important;
}

.line-height-80 {
    line-height: 80px !important;
}

.line-height-85 {
    line-height: 85px !important;
}

.line-height-90 {
    line-height: 90px !important;
}

.line-height-95 {
    line-height: 95px !important;
}

.line-height-100 {
    line-height: 100px !important;
}

.line-height-normal {
    line-height: normal !important;
}

.pt-0px {
    padding-top: 0px !important;
}

.pt-1px {
    padding-top: 1px !important;
}

.pt-2px {
    padding-top: 2px !important;
}

.pt-3px {
    padding-top: 3px !important;
}

.pt-4px {
    padding-top: 4px !important;
}

.pt-5px {
    padding-top: 5px !important;
}

.pt-6px {
    padding-top: 6px !important;
}

.pt-7px {
    padding-top: 7px !important;
}

.pt-8px {
    padding-top: 8px !important;
}

.pt-9px {
    padding-top: 9px !important;
}

.pt-10px {
    padding-top: 10px !important;
}

.pt-15px {
    padding-top: 15px !important;
}

.pt-20px {
    padding-top: 20px !important;
}

.pt-25px {
    padding-top: 25px !important;
}

.pt-30px {
    padding-top: 30px !important;
}

.pt-35px {
    padding-top: 35px !important;
}

.pt-40px {
    padding-top: 40px !important;
}

.pt-45px {
    padding-top: 45px !important;
}

.pt-50px {
    padding-top: 50px !important;
}

.pt-55px {
    padding-top: 55px !important;
}

.pt-60px {
    padding-top: 60px !important;
}

.pt-65px {
    padding-top: 65px !important;
}

.pt-70px {
    padding-top: 70px !important;
}

.pt-75px {
    padding-top: 75px !important;
}

.pt-80px {
    padding-top: 80px !important;
}

.pt-85px {
    padding-top: 85px !important;
}

.pt-90px {
    padding-top: 90px !important;
}

.pt-95px {
    padding-top: 95px !important;
}

.pt-100px {
    padding-top: 10px !important;
}

.pr-0px {
    padding-right: 0px !important;
}

.pr-1px {
    padding-right: 1px !important;
}

.pr-2px {
    padding-right: 2px !important;
}

.pr-3px {
    padding-right: 3px !important;
}

.pr-4px {
    padding-right: 4px !important;
}

.pr-5px {
    padding-right: 5px !important;
}

.pr-6px {
    padding-right: 6px !important;
}

.pr-7px {
    padding-right: 7px !important;
}

.pr-8px {
    padding-right: 8px !important;
}

.pr-9px {
    padding-right: 9px !important;
}

.pr-10px {
    padding-right: 10px !important;
}

.pr-15px {
    padding-right: 15px !important;
}

.pr-20px {
    padding-right: 20px !important;
}

.pr-25px {
    padding-right: 25px !important;
}

.pr-30px {
    padding-right: 30px !important;
}

.pr-35px {
    padding-right: 35px !important;
}

.pr-40px {
    padding-right: 40px !important;
}

.pr-45px {
    padding-right: 45px !important;
}

.pr-50px {
    padding-right: 50px !important;
}

.pr-55px {
    padding-right: 55px !important;
}

.pr-60px {
    padding-right: 60px !important;
}

.pr-65px {
    padding-right: 65px !important;
}

.pr-70px {
    padding-right: 70px !important;
}

.pr-75px {
    padding-right: 75px !important;
}

.pr-80px {
    padding-right: 80px !important;
}

.pr-85px {
    padding-right: 85px !important;
}

.pr-90px {
    padding-right: 90px !important;
}

.pr-95px {
    padding-right: 95px !important;
}

.pr-100px {
    padding-right: 10px !important;
}

.pb-0px {
    padding-bottom: 0px !important;
}

.pb-1px {
    padding-bottom: 1px !important;
}

.pb-2px {
    padding-bottom: 2px !important;
}

.pb-3px {
    padding-bottom: 3px !important;
}

.pb-4px {
    padding-bottom: 4px !important;
}

.pb-5px {
    padding-bottom: 5px !important;
}

.pb-6px {
    padding-bottom: 6px !important;
}

.pb-7px {
    padding-bottom: 7px !important;
}

.pb-8px {
    padding-bottom: 8px !important;
}

.pb-9px {
    padding-bottom: 9px !important;
}

.pb-10px {
    padding-bottom: 10px !important;
}

.pb-15px {
    padding-bottom: 15px !important;
}

.pb-20px {
    padding-bottom: 20px !important;
}

.pb-25px {
    padding-bottom: 25px !important;
}

.pb-30px {
    padding-bottom: 30px !important;
}

.pb-35px {
    padding-bottom: 35px !important;
}

.pb-40px {
    padding-bottom: 40px !important;
}

.pb-45px {
    padding-bottom: 45px !important;
}

.pb-50px {
    padding-bottom: 50px !important;
}

.pb-55px {
    padding-bottom: 55px !important;
}

.pb-60px {
    padding-bottom: 60px !important;
}

.pb-65px {
    padding-bottom: 65px !important;
}

.pb-70px {
    padding-bottom: 70px !important;
}

.pb-75px {
    padding-bottom: 75px !important;
}

.pb-80px {
    padding-bottom: 80px !important;
}

.pb-85px {
    padding-bottom: 85px !important;
}

.pb-90px {
    padding-bottom: 90px !important;
}

.pb-95px {
    padding-bottom: 95px !important;
}

.pb-100px {
    padding-bottom: 10px !important;
}

.pl-0px {
    padding-left: 0px !important;
}

.pl-1px {
    padding-left: 1px !important;
}

.pl-2px {
    padding-left: 2px !important;
}

.pl-3px {
    padding-left: 3px !important;
}

.pl-4px {
    padding-left: 4px !important;
}

.pl-5px {
    padding-left: 5px !important;
}

.pl-6px {
    padding-left: 6px !important;
}

.pl-7px {
    padding-left: 7px !important;
}

.pl-8px {
    padding-left: 8px !important;
}

.pl-9px {
    padding-left: 9px !important;
}

.pl-10px {
    padding-left: 10px !important;
}

.pl-15px {
    padding-left: 15px !important;
}

.pl-20px {
    padding-left: 20px !important;
}

.pl-25px {
    padding-left: 25px !important;
}

.pl-30px {
    padding-left: 30px !important;
}

.pl-35px {
    padding-left: 35px !important;
}

.pl-40px {
    padding-left: 40px !important;
}

.pl-45px {
    padding-left: 45px !important;
}

.pl-50px {
    padding-left: 50px !important;
}

.pl-55px {
    padding-left: 55px !important;
}

.pl-60px {
    padding-left: 60px !important;
}

.pl-65px {
    padding-left: 65px !important;
}

.pl-70px {
    padding-left: 70px !important;
}

.pl-75px {
    padding-left: 75px !important;
}

.pl-80px {
    padding-left: 80px !important;
}

.pl-85px {
    padding-left: 85px !important;
}

.pl-90px {
    padding-left: 90px !important;
}

.pl-95px {
    padding-left: 95px !important;
}

.pl-100px {
    padding-left: 10px !important;
}

.mt-0px {
    margin-top: 0px !important;
}

.mt-1px {
    margin-top: 1px !important;
}

.mt-2px {
    margin-top: 2px !important;
}

.mt-3px {
    margin-top: 3px !important;
}

.mt-4px {
    margin-top: 4px !important;
}

.mt-5px {
    margin-top: 5px !important;
}

.mt-6px {
    margin-top: 6px !important;
}

.mt-7px {
    margin-top: 7px !important;
}

.mt-8px {
    margin-top: 8px !important;
}

.mt-9px {
    margin-top: 9px !important;
}

.mt-10px {
    margin-top: 10px !important;
}

.mt-15px {
    margin-top: 15px !important;
}

.mt-20px {
    margin-top: 20px !important;
}

.mt-25px {
    margin-top: 25px !important;
}

.mt-30px {
    margin-top: 30px !important;
}

.mt-35px {
    margin-top: 35px !important;
}

.mt-40px {
    margin-top: 40px !important;
}

.mt-45px {
    margin-top: 45px !important;
}

.mt-50px {
    margin-top: 50px !important;
}

.mt-55px {
    margin-top: 55px !important;
}

.mt-60px {
    margin-top: 60px !important;
}

.mt-65px {
    margin-top: 65px !important;
}

.mt-70px {
    margin-top: 70px !important;
}

.mt-75px {
    margin-top: 75px !important;
}

.mt-80px {
    margin-top: 80px !important;
}

.mt-85px {
    margin-top: 85px !important;
}

.mt-90px {
    margin-top: 90px !important;
}

.mt-95px {
    margin-top: 95px !important;
}

.mt-100px {
    margin-top: 10px !important;
}

.mr-0px {
    margin-right: 0px !important;
}

.mr-1px {
    margin-right: 1px !important;
}

.mr-2px {
    margin-right: 2px !important;
}

.mr-3px {
    margin-right: 3px !important;
}

.mr-4px {
    margin-right: 4px !important;
}

.mr-5px {
    margin-right: 5px !important;
}

.mr-6px {
    margin-right: 6px !important;
}

.mr-7px {
    margin-right: 7px !important;
}

.mr-8px {
    margin-right: 8px !important;
}

.mr-9px {
    margin-right: 9px !important;
}

.mr-10px {
    margin-right: 10px !important;
}

.mr-15px {
    margin-right: 15px !important;
}

.mr-20px {
    margin-right: 20px !important;
}

.mr-25px {
    margin-right: 25px !important;
}

.mr-30px {
    margin-right: 30px !important;
}

.mr-35px {
    margin-right: 35px !important;
}

.mr-40px {
    margin-right: 40px !important;
}

.mr-45px {
    margin-right: 45px !important;
}

.mr-50px {
    margin-right: 50px !important;
}

.mr-55px {
    margin-right: 55px !important;
}

.mr-60px {
    margin-right: 60px !important;
}

.mr-65px {
    margin-right: 65px !important;
}

.mr-70px {
    margin-right: 70px !important;
}

.mr-75px {
    margin-right: 75px !important;
}

.mr-80px {
    margin-right: 80px !important;
}

.mr-85px {
    margin-right: 85px !important;
}

.mr-90px {
    margin-right: 90px !important;
}

.mr-95px {
    margin-right: 95px !important;
}

.mr-100px {
    margin-right: 10px !important;
}

.mb-0px {
    margin-bottom: 0px !important;
}

.mb-1px {
    margin-bottom: 1px !important;
}

.mb-2px {
    margin-bottom: 2px !important;
}

.mb-3px {
    margin-bottom: 3px !important;
}

.mb-4px {
    margin-bottom: 4px !important;
}

.mb-5px {
    margin-bottom: 5px !important;
}

.mb-6px {
    margin-bottom: 6px !important;
}

.mb-7px {
    margin-bottom: 7px !important;
}

.mb-8px {
    margin-bottom: 8px !important;
}

.mb-9px {
    margin-bottom: 9px !important;
}

.mb-10px {
    margin-bottom: 10px !important;
}

.mb-15px {
    margin-bottom: 15px !important;
}

.mb-20px {
    margin-bottom: 20px !important;
}

.mb-25px {
    margin-bottom: 25px !important;
}

.mb-30px {
    margin-bottom: 30px !important;
}

.mb-35px {
    margin-bottom: 35px !important;
}

.mb-40px {
    margin-bottom: 40px !important;
}

.mb-45px {
    margin-bottom: 45px !important;
}

.mb-50px {
    margin-bottom: 50px !important;
}

.mb-55px {
    margin-bottom: 55px !important;
}

.mb-60px {
    margin-bottom: 60px !important;
}

.mb-65px {
    margin-bottom: 65px !important;
}

.mb-70px {
    margin-bottom: 70px !important;
}

.mb-75px {
    margin-bottom: 75px !important;
}

.mb-80px {
    margin-bottom: 80px !important;
}

.mb-85px {
    margin-bottom: 85px !important;
}

.mb-90px {
    margin-bottom: 90px !important;
}

.mb-95px {
    margin-bottom: 95px !important;
}

.mb-100px {
    margin-bottom: 10px !important;
}

.ml-0px {
    margin-left: 0px !important;
}

.ml-1px {
    margin-left: 1px !important;
}

.ml-2px {
    margin-left: 2px !important;
}

.ml-3px {
    margin-left: 3px !important;
}

.ml-4px {
    margin-left: 4px !important;
}

.ml-5px {
    margin-left: 5px !important;
}

.ml-6px {
    margin-left: 6px !important;
}

.ml-7px {
    margin-left: 7px !important;
}

.ml-8px {
    margin-left: 8px !important;
}

.ml-9px {
    margin-left: 9px !important;
}

.ml-10px {
    margin-left: 10px !important;
}

.ml-15px {
    margin-left: 15px !important;
}

.ml-20px {
    margin-left: 20px !important;
}

.ml-25px {
    margin-left: 25px !important;
}

.ml-30px {
    margin-left: 30px !important;
}

.ml-35px {
    margin-left: 35px !important;
}

.ml-40px {
    margin-left: 40px !important;
}

.ml-45px {
    margin-left: 45px !important;
}

.ml-50px {
    margin-left: 50px !important;
}

.ml-55px {
    margin-left: 55px !important;
}

.ml-60px {
    margin-left: 60px !important;
}

.ml-65px {
    margin-left: 65px !important;
}

.ml-70px {
    margin-left: 70px !important;
}

.ml-75px {
    margin-left: 75px !important;
}

.ml-80px {
    margin-left: 80px !important;
}

.ml-85px {
    margin-left: 85px !important;
}

.ml-90px {
    margin-left: 90px !important;
}

.ml-95px {
    margin-left: 95px !important;
}

.ml-100px {
    margin-left: 10px !important;
}

.top-0px {
    top: 0px !important;
}

.top-1px {
    top: 1px !important;
}

.top-2px {
    top: 2px !important;
}

.top-3px {
    top: 3px !important;
}

.top-4px {
    top: 4px !important;
}

.top-5px {
    top: 5px !important;
}

.top-6px {
    top: 6px !important;
}

.top-7px {
    top: 7px !important;
}

.top-8px {
    top: 8px !important;
}

.top-9px {
    top: 9px !important;
}

.top-10px {
    top: 10px !important;
}

.top-15px {
    top: 15px !important;
}

.top-20px {
    top: 20px !important;
}

.top-25px {
    top: 25px !important;
}

.top-30px {
    top: 30px !important;
}

.top-35px {
    top: 35px !important;
}

.top-40px {
    top: 40px !important;
}

.top-45px {
    top: 45px !important;
}

.top-50px {
    top: 50px !important;
}

.top-55px {
    top: 55px !important;
}

.top-60px {
    top: 60px !important;
}

.top-65px {
    top: 65px !important;
}

.top-70px {
    top: 70px !important;
}

.top-75px {
    top: 75px !important;
}

.top-80px {
    top: 80px !important;
}

.top-85px {
    top: 85px !important;
}

.top-90px {
    top: 90px !important;
}

.top-95px {
    top: 95px !important;
}

.top-100px {
    top: 10px !important;
}

.right-0px {
    right: 0px !important;
}

.right-1px {
    right: 1px !important;
}

.right-2px {
    right: 2px !important;
}

.right-3px {
    right: 3px !important;
}

.right-4px {
    right: 4px !important;
}

.right-5px {
    right: 5px !important;
}

.right-6px {
    right: 6px !important;
}

.right-7px {
    right: 7px !important;
}

.right-8px {
    right: 8px !important;
}

.right-9px {
    right: 9px !important;
}

.right-10px {
    right: 10px !important;
}

.right-15px {
    right: 15px !important;
}

.right-20px {
    right: 20px !important;
}

.right-25px {
    right: 25px !important;
}

.right-30px {
    right: 30px !important;
}

.right-35px {
    right: 35px !important;
}

.right-40px {
    right: 40px !important;
}

.right-45px {
    right: 45px !important;
}

.right-50px {
    right: 50px !important;
}

.right-55px {
    right: 55px !important;
}

.right-60px {
    right: 60px !important;
}

.right-65px {
    right: 65px !important;
}

.right-70px {
    right: 70px !important;
}

.right-75px {
    right: 75px !important;
}

.right-80px {
    right: 80px !important;
}

.right-85px {
    right: 85px !important;
}

.right-90px {
    right: 90px !important;
}

.right-95px {
    right: 95px !important;
}

.right-100px {
    right: 10px !important;
}

.bottom-0px {
    bottom: 0px !important;
}

.bottom-1px {
    bottom: 1px !important;
}

.bottom-2px {
    bottom: 2px !important;
}

.bottom-3px {
    bottom: 3px !important;
}

.bottom-4px {
    bottom: 4px !important;
}

.bottom-5px {
    bottom: 5px !important;
}

.bottom-6px {
    bottom: 6px !important;
}

.bottom-7px {
    bottom: 7px !important;
}

.bottom-8px {
    bottom: 8px !important;
}

.bottom-9px {
    bottom: 9px !important;
}

.bottom-10px {
    bottom: 10px !important;
}

.bottom-15px {
    bottom: 15px !important;
}

.bottom-20px {
    bottom: 20px !important;
}

.bottom-25px {
    bottom: 25px !important;
}

.bottom-30px {
    bottom: 30px !important;
}

.bottom-35px {
    bottom: 35px !important;
}

.bottom-40px {
    bottom: 40px !important;
}

.bottom-45px {
    bottom: 45px !important;
}

.bottom-50px {
    bottom: 50px !important;
}

.bottom-55px {
    bottom: 55px !important;
}

.bottom-60px {
    bottom: 60px !important;
}

.bottom-65px {
    bottom: 65px !important;
}

.bottom-70px {
    bottom: 70px !important;
}

.bottom-75px {
    bottom: 75px !important;
}

.bottom-80px {
    bottom: 80px !important;
}

.bottom-85px {
    bottom: 85px !important;
}

.bottom-90px {
    bottom: 90px !important;
}

.bottom-95px {
    bottom: 95px !important;
}

.bottom-100px {
    bottom: 10px !important;
}

.left-0px {
    left: 0px !important;
}

.left-1px {
    left: 1px !important;
}

.left-2px {
    left: 2px !important;
}

.left-3px {
    left: 3px !important;
}

.left-4px {
    left: 4px !important;
}

.left-5px {
    left: 5px !important;
}

.left-6px {
    left: 6px !important;
}

.left-7px {
    left: 7px !important;
}

.left-8px {
    left: 8px !important;
}

.left-9px {
    left: 9px !important;
}

.left-10px {
    left: 10px !important;
}

.left-15px {
    left: 15px !important;
}

.left-20px {
    left: 20px !important;
}

.left-25px {
    left: 25px !important;
}

.left-30px {
    left: 30px !important;
}

.left-35px {
    left: 35px !important;
}

.left-40px {
    left: 40px !important;
}

.left-45px {
    left: 45px !important;
}

.left-50px {
    left: 50px !important;
}

.left-55px {
    left: 55px !important;
}

.left-60px {
    left: 60px !important;
}

.left-65px {
    left: 65px !important;
}

.left-70px {
    left: 70px !important;
}

.left-75px {
    left: 75px !important;
}

.left-80px {
    left: 80px !important;
}

.left-85px {
    left: 85px !important;
}

.left-90px {
    left: 90px !important;
}

.left-95px {
    left: 95px !important;
}

.left-100px {
    left: 10px !important;
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}

.border-0,
tr.border-0 > th,
tr.border-0 > td {
    border-width: 0px !important;
}

.border-1,
tr.border-1 > th,
tr.border-1 > td {
    border-width: 1px !important;
}

.border-2,
tr.border-2 > th,
tr.border-2 > td {
    border-width: 2px !important;
}

.border-3,
tr.border-3 > th,
tr.border-3 > td {
    border-width: 3px !important;
}

.border-4,
tr.border-4 > th,
tr.border-4 > td {
    border-width: 4px !important;
}

.border-5,
tr.border-5 > th,
tr.border-5 > td {
    border-width: 5px !important;
}

.border-top-0,
tr.border-top-0 > th,
tr.border-top-0 > td {
    border-top: 0px !important;
}

.border-top-1,
tr.border-top-1 > th,
tr.border-top-1 > td {
    border-top-width: 1px !important;
}

.border-top-2,
tr.border-top-2 > th,
tr.border-top-2 > td {
    border-top-width: 2px !important;
}

.border-top-3,
tr.border-top-3 > th,
tr.border-top-3 > td {
    border-top-width: 3px !important;
}

.border-top-4,
tr.border-top-4 > th,
tr.border-top-4 > td {
    border-top-width: 4px !important;
}

.border-top-5,
tr.border-top-5 > th,
tr.border-top-5 > td {
    border-top-width: 5px !important;
}

.border-right-0,
tr.border-right-0 > th,
tr.border-right-0 > td {
    border-right-width: 0px !important;
}

.border-right-1,
tr.border-right-1 > th,
tr.border-right-1 > td {
    border-right-width: 1px !important;
}

.border-right-2,
tr.border-right-2 > th,
tr.border-right-2 > td {
    border-right-width: 2px !important;
}

.border-right-3,
tr.border-right-3 > th,
tr.border-right-3 > td {
    border-right-width: 3px !important;
}

.border-right-4,
tr.border-right-4 > th,
tr.border-right-4 > td {
    border-right-width: 4px !important;
}

.border-right-5,
tr.border-right-5 > th,
tr.border-right-5 > td {
    border-right-width: 5px !important;
}

.border-bottom-0,
tr.border-bottom-0 > th,
tr.border-bottom-0 > td {
    border-bottom-width: 0px !important;
}

.border-bottom-1,
tr.border-bottom-1 > th,
tr.border-bottom-1 > td {
    border-bottom-width: 1px !important;
}

.border-bottom-2,
tr.border-bottom-2 > th,
tr.border-bottom-2 > td {
    border-bottom-width: 2px !important;
}

.border-bottom-3,
tr.border-bottom-3 > th,
tr.border-bottom-3 > td {
    border-bottom-width: 3px !important;
}

.border-bottom-4,
tr.border-bottom-4 > th,
tr.border-bottom-4 > td {
    border-bottom-width: 4px !important;
}

.border-bottom-5,
tr.border-bottom-5 > th,
tr.border-bottom-5 > td {
    border-bottom-width: 5px !important;
}

.border-left-0,
tr.border-left-0 > th,
tr.border-left-0 > td {
    border-left-width: 0px !important;
}

.border-left-1,
tr.border-left-1 > th,
tr.border-left-1 > td {
    border-left-width: 1px !important;
}

.border-left-2,
tr.border-left-2 > th,
tr.border-left-2 > td {
    border-left-width: 2px !important;
}

.border-left-3,
tr.border-left-3 > th,
tr.border-left-3 > td {
    border-left-width: 3px !important;
}

.border-left-4,
tr.border-left-4 > th,
tr.border-left-4 > td {
    border-left-width: 4px !important;
}

.border-left-5,
tr.border-left-5 > th,
tr.border-left-5 > td {
    border-left-width: 5px !important;
}

.border-primary,
tr.border-color-primary > th,
tr.border-color-primary > td {
    border-color: #007bff !important;
}

.border-color-top-primary,
tr.border-color-top-primary > th,
tr.border-color-top-primary > td {
    border-top-color: #007bff !important;
}

.border-color-right-primary,
tr.border-color-right-primary > th,
tr.border-color-right-primary > td {
    border-right-color: #007bff !important;
}

.border-color-bottom-primary,
tr.border-color-bottom-primary > th,
tr.border-color-bottom-primary > td {
    border-bottom-color: #007bff !important;
}

.border-color-left-primary,
tr.border-color-left-primary > th,
tr.border-color-left-primary > td {
    border-left-color: #007bff !important;
}

.border-color-secondary,
tr.border-color-secondary > th,
tr.border-color-secondary > td {
    border-color: #6c757d !important;
}

.border-color-top-secondary,
tr.border-color-top-secondary > th,
tr.border-color-top-secondary > td {
    border-top-color: #6c757d !important;
}

.border-color-right-secondary,
tr.border-color-right-secondary > th,
tr.border-color-right-secondary > td {
    border-right-color: #6c757d !important;
}

.border-color-bottom-secondary,
tr.border-color-bottom-secondary > th,
tr.border-color-bottom-secondary > td {
    border-bottom-color: #6c757d !important;
}

.border-color-left-secondary,
tr.border-color-left-secondary > th,
tr.border-color-left-secondary > td {
    border-left-color: #6c757d !important;
}


.border-color-success,
tr.borde-success > th,
tr.border-color-success > td {
    border-color: #28a745 !important;
}

.border-color-top-success,
tr.border-color-top-success > th,
tr.border-color-top-success > td {
    border-top-color: #28a745 !important;
}

.border-color-right-success,
tr.border-color-right-success > th,
tr.border-color-right-success > td {
    border-right-color: #28a745 !important;
}

.border-color-bottom-success,
tr.border-color-bottom-success > th,
tr.border-color-bottom-success > td {
    border-bottom-color: #28a745 !important;
}

.border-color-left-success,
tr.border-color-left-success > th,
tr.border-color-left-success > td {
    border-left-color: #28a745 !important;
}

.border-color-info,
tr.border-color-info > th,
tr.border-color-info > td {
    border-color: #17a2b8 !important;
}

.border-color-top-info,
tr.border-color-top-info > th,
tr.border-color-top-info > td {
    border-top-color: #17a2b8 !important;
}

.border-color-right-info,
tr.border-color-right-info > th,
tr.border-color-right-info > td {
    border-right-color: #17a2b8 !important;
}

.border-color-bottom-info,
tr.border-color-bottom-info > th,
tr.border-color-bottom-info > td {
    border-bottom-color: #17a2b8 !important;
}

.border-color-left-info,
tr.border-color-left-info > th,
tr.border-color-left-info > td {
    border-left-color: #17a2b8 !important;
}

.border-color-warning,
tr.border-color-warning > th,
tr.border-color-warning > td {
    border-color: #ffc107 !important;
}

.border-color-top-warning,
tr.border-color-left-warning > th,
tr.border-color-left-warning > td {
    border-top-color: #ffc107 !important;
}

.border-color-right-warning,
tr.border-color-right-warning > th,
tr.border-color-right-warning > td {
    border-right-color: #ffc107 !important;
}

.border-color-bottom-warning,
tr.border-color-bottom-warning > th,
tr.border-color-bottom-warning > td {
    border-bottom-color: #ffc107 !important;
}

.border-color-left-warning,
tr.border-color-left-warning > th,
tr.border-color-left-warning > td {
    border-left-color: #ffc107 !important;
}

.border-color-danger,
tr.border-color-danger > th,
tr.border-color-danger > td {
    border-color: #dc3545 !important;
}

.border-color-top-danger,
tr.border-color-top-danger > th,
tr.border-color-top-danger > td {
    border-top-color: #dc3545 !important;
}

.border-color-right-danger,
tr.border-color-right-danger > th,
tr.border-color-right-danger > td {
    border-right-color: #dc3545 !important;
}

.border-color-bottom-danger,
tr.border-color-bottom-danger > th,
tr.border-color-bottom-danger > td {
    border-bottom-color: #dc3545 !important;
}

.border-color-left-danger,
tr.border-color-left-danger > th,
tr.border-color-left-danger > td {
    border-left-color: #dc3545 !important;
}

.border-color-light,
tr.border-color-light > th,
tr.border-color-light > td {
    border-color: #f8f9fa !important;
}

.border-color-top-light,
tr.border-color-top-light > th,
tr.border-color-top-light > td {
    border-top-color: #f8f9fa !important;
}

.border-color-right-light,
tr.border-color-right-light > th,
tr.border-color-right-light > td {
    border-right-color: #f8f9fa !important;
}

.border-color-bottom-light,
tr.border-color-bottom-light > th,
tr.border-color-bottom-light > td {
    border-bottom-color: #f8f9fa !important;
}

.border-color-left-light,
tr.border-color-left-light > th,
tr.border-color-left-light > td {
    border-left-color: #f8f9fa !important;
}

.border-color-dark,
tr.border-color-dark > th,
tr.border-color-dark > td {
    border-color: #343a40 !important;
}

.border-color-top-dark,
tr.border-color-top-dark > th,
tr.border-color-top-dark > td {
    border-top-color: #343a40 !important;
}

.border-color-right-dark,
tr.border-color-right-dark > th,
tr.border-color-right-dark > td {
    border-right-color: #343a40 !important;
}

.border-color-bottom-dark,
tr.border-color-bottom-dark > th,
tr.border-color-bottom-dark > td {
    border-bottom-color: #343a40 !important;
}

.border-color-left-dark,
tr.border-color-left-dark > th,
tr.border-color-left-dark > td {
    border-left-color: #343a40 !important;
}

.border-color-white,
tr.border-color-white > th,
tr.border-color-white > td {
    border-color: #fff !important;
}

.border-color-top-white,
tr.border-color-top-white > th,
tr.border-color-top-white > td {
    border-top-color: #fff !important;
}

.border-color-right-white,
tr.border-color-right-white > th,
tr.border-color-right-white > td {
    border-right-color: #fff !important;
}

.border-color-bottom-white,
tr.border-color-bottom-white > th,
tr.border-color-bottom-white > td {
    border-bottom-color: #fff !important;
}

.border-color-left-white,
tr.border-color-left-white > th,
tr.border-color-left-white > td {
    border-left-color: #fff !important;
}

.border-color-ddd,
tr.border-color-ddd > th,
tr.border-color-ddd > td {
    border-color: #ddd !important;
}

.border-color-top-ddd,
tr.border-color-left-ddd > th,
tr.border-color-left-ddd > td {
    border-top-color: #ddd !important;
}

.border-color-right-ddd,
tr.border-color-right-ddd > th,
tr.border-color-right-ddd > td {
    border-right-color: #ddd !important;
}

.border-color-bottom-ddd,
tr.border-color-bottom-ddd > th,
tr.border-color-bottom-ddd > td {
    border-bottom-color: #ddd !important;
}

.border-color-left-ddd,
tr.border-color-left-ddd > th,
tr.border-color-left-ddd > td {
    border-left-color: #ddd !important;
}

.border-dashed {
    border: dashed;
}

.border-dotted {
    border: dotted;
}

.border-double {
    border: double;
}

.border-groove {
    border: groove;
}

.border-hidden {
    border: hidden;
}

.border-inherit {
    border: inherit;
}

.border-initial {
    border: initial;
}

.border-inset {
    border: inset;
}

.border-medium {
    border: medium;
}

.border-none {
    border: none;
}

.border-outset {
    border: outset;
}

.border-ridge {
    border: ridge;
}

.border-solid {
    border: solid;
}

.border-thick {
    border: thick;
}

.border-thin {
    border: thin;
}

.border-top-dashed {
    border-top: dashed;
}

.border-top-dotted {
    border-top: dotted;
}

.border-top-double {
    border-top: double;
}

.border-top-groove {
    border-top: groove;
}

.border-top-hidden {
    border-top: hidden;
}

.border-top-inherit {
    border-top: inherit;
}

.border-top-initial {
    border-top: initial;
}

.border-top-inset {
    border-top: inset;
}

.border-top-medium {
    border-top: medium;
}

.border-top-none {
    border-top: none;
}

.border-top-outset {
    border-top: outset;
}

.border-top-ridge {
    border-top: ridge;
}

.border-top-solid {
    border-top: solid;
}

.border-top-thick {
    border-top: thick;
}

.border-top-thin {
    border-top: thin;
}

.border-right-dashed {
    border-right: dashed;
}

.border-right-dotted {
    border-right: dotted;
}

.border-right-double {
    border-right: double;
}

.border-right-groove {
    border-right: groove;
}

.border-right-hidden {
    border-right: hidden;
}

.border-right-inherit {
    border-right: inherit;
}

.border-right-initial {
    border-right: initial;
}

.border-right-inset {
    border-right: inset;
}

.border-right-medium {
    border-right: medium;
}

.border-right-none {
    border-right: none;
}

.border-right-outset {
    border-right: outset;
}

.border-right-ridge {
    border-right: ridge;
}

.border-right-solid {
    border-right: solid;
}

.border-right-thick {
    border-right: thick;
}

.border-right-thin {
    border-right: thin;
}

.border-bottom-dashed {
    border-bottom: dashed;
}

.border-bottom-dotted {
    border-bottom: dotted;
}

.border-bottom-double {
    border-bottom: double;
}

.border-bottom-groove {
    border-bottom: groove;
}

.border-bottom-hidden {
    border-bottom: hidden;
}

.border-bottom-inherit {
    border-bottom: inherit;
}

.border-bottom-initial {
    border-bottom: initial;
}

.border-bottom-inset {
    border-bottom: inset;
}

.border-bottom-medium {
    border-bottom: medium;
}

.border-bottom-none {
    border-bottom: none;
}

.border-bottom-outset {
    border-bottom: outset;
}

.border-bottom-ridge {
    border-bottom: ridge;
}

.border-bottom-solid {
    border-bottom: solid;
}

.border-bottom-thick {
    border-bottom: thick;
}

.border-bottom-thin {
    border-bottom: thin;
}

.border-left-dashed {
    border-left: dashed;
}

.border-left-dotted {
    border-left: dotted;
}

.border-left-double {
    border-left: double;
}

.border-left-groove {
    border-left: groove;
}

.border-left-hidden {
    border-left: hidden;
}

.border-left-inherit {
    border-left: inherit;
}

.border-left-initial {
    border-left: initial;
}

.border-left-inset {
    border-left: inset;
}

.border-left-medium {
    border-left: medium;
}

.border-left-none {
    border-left: none;
}

.border-left-outset {
    border-left: outset;
}

.border-left-ridge {
    border-left: ridge;
}

.border-left-solid {
    border-left: solid;
}

.border-left-thick {
    border-left: thick;
}

.border-left-thin {
    border-left: thin;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.font-size-5 {
    font-size: 5px !important;
}

.font-size-6 {
    font-size: 6px !important;
}

.font-size-7 {
    font-size: 7px !important;
}

.font-size-8 {
    font-size: 8px !important;
}

.font-size-9 {
    font-size: 9px !important;
}

.font-size-10 {
    font-size: 10px !important;
}

.font-size-11 {
    font-size: 11px !important;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-13 {
    font-size: 13px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

.font-size-15 {
    font-size: 15px !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-17 {
    font-size: 17px !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-19 {
    font-size: 19px !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-21 {
    font-size: 21px !important;
}

.font-size-22 {
    font-size: 22px !important;
}

.font-size-23 {
    font-size: 23px !important;
}

.font-size-24 {
    font-size: 24px !important;
}

.font-size-25 {
    font-size: 25px !important;
}

.font-size-26 {
    font-size: 26px !important;
}

.font-size-27 {
    font-size: 27px !important;
}

.font-size-28 {
    font-size: 28px !important;
}

.font-size-29 {
    font-size: 29px !important;
}

.font-size-30 {
    font-size: 30px !important;
}

.list-style-type-armenian {
    list-style-type: armenian !important;
}

.list-style-type-circle {
    list-style-type: circle !important;
}

.list-style-type-decimal {
    list-style-type: decimal !important;
}

.list-style-type-decimal-leading-zero {
    list-style-type: decimal-leading-zero !important;
}

.list-style-type-disc {
    list-style-type: disc !important;
}

.list-style-type-georgian {
    list-style-type: georgian !important;
}

.list-style-type-inherit {
    list-style-type: inherit !important;
}

.list-style-type-initial {
    list-style-type: initial !important;
}

.list-style-type-lower-alpha {
    list-style-type: lower-alpha !important;
}

.list-style-type-lower-greek {
    list-style-type: lower-greek !important;
}

.list-style-type-lower-latin {
    list-style-type: lower-latin !important;
}

.list-style-type-lower-roman {
    list-style-type: lower-roman !important;
}

.list-style-type-none {
    list-style-type: none !important;
}

.list-style-type-square {
    list-style-type: square !important;
}

.list-style-type-upper-alpha {
    list-style-type: upper-alpha !important;
}

.list-style-type-upper-latin {
    list-style-type: upper-latin !important;
}

.list-style-type-upper-roman {
    list-style-type: upper-roman !important;
}

.white-space-normal {
    white-space: normal !important;
    /*默认。空白会被浏览器忽略。*/
}

.white-space-pre {
    white-space: pre !important;
    /*	空白会被浏览器保留。其行为方式类似 HTML 中的 <pre> 标签。*/
}

.white-space-nowrap {
    white-space: nowrap !important;
    /*文本不会换行，文本会在在同一行上继续，直到遇到 <br> 标签为止。*/
}

.white-space-pre-wrap {
    white-space: pre-wrap !important;
    /*保留空白符序列，但是正常地进行换行。*/
}

.white-space-pre-line {
    white-space: pre-line !important;
    /*合并空白符序列，但是保留换行符。*/
}

.white-space-inherit {
    white-space: inherit !important;
    /*规定应该从父元素继承 white-space 属性的值。*/
}
