html, body{
    margin: 0;
    padding: 0;
    min-height: 100%;
    min-width: 100%;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
body{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 15px;
    position: relative;
    line-height: 1.65;
}
#wrapPanel{
    position: relative;
    min-height: calc(100% - 60px);
    min-width: 100%;
    height: calc(100% - 60px);
    width: 100%;
    overflow: hidden;
    display: flex;
}
#treePanel{
    position: relative;
    background: #fdfdfd;
    /*-webkit-box-shadow: 2px 0px 10px 0px rgb(162, 162, 162);
    -moz-box-shadow: 2px 0px 10px 0px rgb(162, 162, 162);
    box-shadow: 2px 0px 10px 0px rgb(162, 162, 162);*/
    padding: 10px 15px 10px 10px;
    overflow-y: scroll;
    min-height: calc(100% - 20px);
    height: calc(100% - 20px);
    overflow-x: auto;
    flex: 0 1 300px;
    z-index: 10;
}
#readPanel{
    flex: 1 1;
    text-align: left;
    overflow: hidden;
    min-height: calc(100% - 30px);
    height: calc(100% - 30px);
    padding-top: 60px;
    color: rgb(51, 51, 51);
}
#treePanel .tree{

    background: #fdfdfd;
    font-size: 14px;
    color: #000;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
}
.tree-wrapper{
    display: flex;
    flex-flow: column nowrap;
}
.node-wrapper{
    display: flex;
    width: 100%;
    position: relative;
}
#treePanel .tree .node-expand-state,
#treePanel .tree .node-read-icon{
    flex: 0 0 24px;
    background-image: url("/resources/img/help-round.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 5px;
    z-index: 15;
}
#treePanel .tree .node-expand-state{
    background-image: url("/resources/img/plus-round.png");
    cursor: pointer;
}
#treePanel .tree .node-expand-state.expanded{
    background-image: url("/resources/img/minus-round.png");
    cursor: pointer;
}
#treePanel .tree .node-label{
    flex: 1 1 auto;
    padding: 1px;
    z-index: 14;
    position: relative;
    padding-left: 2px;
    color: #004675;
    cursor: pointer;
}

#treePanel .node-wrapper:hover > .node-label
{
    color: rgb(227, 46, 0);
    /*background: #e7e7e7;*/
}
#treePanel .node-wrapper:hover:after{
    /*background: #e7e7e7;
    width: 15px;
    height: 100%;
    content: '';
    display: inline-block;
    position: absolute;
    left: 11px;
    top: 0px;
    z-index: 11;*/
}
#treePanel .node-wrapper:hover:before{
    /*background: white;
    width: 20px;
    height: 20px;
    content: '';
    display: inline-block;
    position: absolute;
    left: 2px;
    top: 3px;
    border-radius: 25px;
    z-index: 12;*/
}
#treePanel .tree.expandable.active > .node-wrapper .node-label
{
    color: rgb(227, 46, 0);
    /*border-bottom: 1px solid rgb(227, 46, 0);*/
    /*background: #3db39e;
    text-shadow: 1px 1px 0px rgba(150, 150, 150, 1);*/
}
#treePanel .tree.read-node.active > .node-wrapper .node-label
{
    color: rgb(227, 46, 0);
    /*border-bottom: 1px solid rgb(227, 46, 0);*/
    /*background: #3498DB;
    text-shadow: 1px 1px 0px rgba(150, 150, 150, 1);*/
}

#treePanel .tree.expandable.active > .node-wrapper:after,
#treePanel .tree.read-node.active > .node-wrapper:after{
    /*background: #3498DB;
    width: 15px;
    height: 100%;
    content: '';
    display: inline-block;
    position: absolute;
    left: 11px;
    top: 0px;
    z-index: 11;*/
}
#treePanel .tree.expandable.active > .node-wrapper:after {
    /*background: #3db39e;*/
}
#treePanel .tree.read-node.active > .node-wrapper:before,
#treePanel .tree.expandable.active > .node-wrapper:before{
    /*background: white;
    width: 20px;
    height: 20px;
    content: '';
    display: inline-block;
    position: absolute;
    left: 2px;
    top: 3px;
    border-radius: 25px;
    z-index: 12;*/
}
#readPanel .read-header{
    font-size: 30px;
    text-align: left;
    padding: 5px 10px;
    background: #fff;
    /*letter-spacing: 0.5px;*/
    margin-top: 0px;
    color: rgb(19, 6, 84);
    position: absolute;
    width: 100%;
    top: -2px;
    font-weight: 400;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(196,196,196,1);
    -moz-box-shadow: 0px 1px 5px 0px rgba(196,196,196,1);
    box-shadow: 0px 1px 5px 0px rgba(196,196,196,1);
    z-index: 10;
}
#readPanel .read-header.read-header-blue{
    /*background: #3498DB;*/
}
#readPanel .read-header:after{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: #fff;
    left: 0;
    top: 2px;
}
#readPanel .read-header:before{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: #fff;
    left: 0;
    bottom: 2px;
}
#readPanel .read-content{
    padding: 0;
    text-align: left;
    min-height: calc(100% - 28px);
    height: calc(100% - 28px);
    overflow: hidden;
    display: flex;
}
main{
    overflow-x: auto;
    flex: 1 1 auto;
    padding-bottom: 50px;
    padding-right: 10px;
    padding-left: 10px;
}
#readPanel .read-content img{
    max-width: 100%;
    padding: 5px 0;
    vertical-align: middle;
    border: 0;
}
#readPanel .headerlink{
    display: none;
}

.tree .tree-wrapper{
    padding-left: 22px;
    position: relative;
}
.tree .tree-wrapper:after{
    height: 100%;
    content: '';
    display: inline-block;
    position: absolute;
    width: 1px;
    background: #bbbbbb;
    left: 11px;
    top: 0px;
}
/*.tree .tree-wrapper .tree:after{
    height: 1px;
    content: '';
    display: inline-block;
    position: absolute;
    width: 10px;
    background: #e2e2e2;
    left: -10px;
    top: 12px;
    z-index: 10;
}*/

#toolbar {
    line-height: 32px;
    position: relative;
    height: 35px;
    background: #fff;
    /*-webkit-box-shadow: 0px 2px 5px 0px rgba(209, 209, 209, 1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(209, 209, 209, 1);
    box-shadow: 0px 2px 5px 0px rgba(209, 209, 209, 1);*/
    border-bottom: 1px solid #ccc;
    display: flex;
    line-height: 32px;
}
.footer {
    position: relative;
    height: 25px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 5px 0px rgb(209 209 209);
    -moz-box-shadow: 0px 2px 5px 0px rgba(209, 209, 209, 1);
    box-shadow: 0px 2px 5px 0px rgb(209 209 209);
    border-top: 1px solid #ccc;
    line-height: 22px;
    font-size: 12px;
    letter-spacing: 0.2px;
    color: #6f6f6f;
    text-align: right;
    padding-right: 5px;
}
#toolbar--left{position: relative;flex: 0 0 auto;z-index: 9;}
#toolbar--left a{
    position: relative;
    display: inline-block;
}
#toolbar--right{
    position: relative;flex: 1 1;line-height: 33px;text-align: right;
    font-size: 13px;
    margin-right: 5px;
    letter-spacing: 0.2px;
    color: #6f6f6f;
    white-space: nowrap;
}
#toolbar--left .logo{
    margin-left: 2px;
    margin-top: 2px;
    cursor: pointer;
}
#toolbar--left .product-name{
    margin-left: 40px;
    font-size: 20px;
    color: #F44336;
    line-height: 35px;
    text-shadow: 1px 1px 0px rgb(206, 206, 206);
}
.version-change-btn,
.version-change--fix-btn,
.language-select{
    border: 1px solid #ccc;
    padding: 2px 10px;
    background: #fff;
    border-radius: 2px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    outline: none;
    background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
    border-radius: 2px;
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(123, 123, 123, 0.39);
    width: auto;
}
.version-change-btn:hover,
.version-change--fix-btn:hover,
.language-select:hover{
    background: #f9ffe5;
}
.version-compare{
    margin-right: 10px;
}
.is-compare-wrapper{
    display: inline-block;
}
.is-compare-wrapper span{
    margin: 0 5px;
}
.is-compare-wrapper input{
    /* border: 1px solid #ccc; */
}
.is-compare-wrapper label{

}
.is-fix-wrapper{
    display: inline-block;
}
.is-fix-wrapper span{
    margin: 0 5px;
}
.is-fix-wrapper input{
    /* border: 1px solid #ccc; */
}
.is-fix-wrapper label{

}
#readPanel .wrapper-compare .read-content{
    overflow: hidden;
}
/*.wrapper-compare{
    display: flex;
    position: relative;
}
#readPanel .wrapper-compare .read-content{
    flex: 1 1;
    overflow-y: hidden;
}
#readPanel .wrapper-compare div:first-child{
    border-right: 1px dashed #3f90b9;
}*/
#readPanel.compare-state{
    overflow-y: hidden;
    padding-top: 0;
    min-height: 100%;
    height: 100%;
    position: relative;
}
#readPanel .wrapper-panel{
    overflow-y: scroll;
    min-height: calc(100% - 32px);
    height: calc(100% - 32px);
    position: relative;
    margin-top: 32px;
}
#readPanel .header-wrapper {
    position: absolute;
    width: 100%;
    min-width: 100%;
    z-index: 55;
    top: 0;
}
#readPanel .header-wrapper .flex-wrapper{
    display: flex;
    position: relative;
}
#readPanel .header-wrapper .flex-wrapper .read-header{
    flex: 1 1;
    width: auto;
    background: #fff;
    font-size: 13px;
    padding: 8px;
    display: block;
    position: relative;
    color: rgb(19, 6, 84);
    font-weight: 100;
}
#readPanel .header-wrapper .flex-wrapper .read-header:first-child{
    padding-left: 20px;
}
#readPanel .header-wrapper .flex-wrapper .read-header:after{
    background: #fff;
}
#readPanel .header-wrapper .flex-wrapper .read-header:before{
    background: #fff;
}
ins{
    position: relative;
    z-index: 2;
    text-decoration: none !important;
    background: rgb(196, 255, 196);
    display: inline-block;
    min-width: 10px;
    min-height: 10px;
}
ins > img {
    border: 4px solid rgb(196, 255, 196);
}
del{
    position: relative;
    z-index: 2;
    text-decoration: none !important;
    background: rgb(255, 185, 153);
    display: inline-block;
    min-width: 10px;
    min-height: 10px;
}
.loader-bg{
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9988;
    /* display: none; */
}
.loader-bg:before{
    content: '';
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.3;
    left: 0;
    top: 0;
    z-index: 9977;
}
.container-preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    animation-delay: 1s;
    z-index: 9999;
    position: relative;
}

.preloader-item-1 {
    width: 20px;
    height: 20px;
    background: #3f90b9;
    border-radius: 50%;
    background-color: #3f90b9;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes scale {
    0% {
        transform: scale(1);
    }
    50%,
    75% {
        transform: scale(2.5);
    }
    78%, 100% {
        opacity: 0;
    }
}
.preloader-item-1:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3f90b9;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 200ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.preloader-item-2 {
    width: 20px;
    height: 20px;
    background: #f583a1;
    border-radius: 50%;
    background-color: #eec368;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes scale {
    0% {
        transform: scale(1);
    }
    50%,
    75% {
        transform: scale(2.5);
    }
    78%, 100% {
        opacity: 0;
    }
}
.preloader-item-2:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #eece68;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 400ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.preloader-item-3 {
    width: 20px;
    height: 20px;
    background: #3db39e;
    border-radius: 50%;
    background-color: #3db39e;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes scale {
    0% {
        transform: scale(1);
    }
    50%,
    75% {
        transform: scale(2.5);
    }
    78%, 100% {
        opacity: 0;
    }
}
.preloader-item-3:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3db39e;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 600ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.preloader-item-4 {
    width: 20px;
    height: 20px;
    background: #f583a1;
    border-radius: 50%;
    background-color: #eead68;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes scale {
    0% {
        transform: scale(1);
    }
    50%,
    75% {
        transform: scale(2.5);
    }
    78%, 100% {
        opacity: 0;
    }
}
.preloader-item-4:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #eead68;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 800ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.preloader-item-5 {
    width: 20px;
    height: 20px;
    background: #f44336;
    border-radius: 50%;
    background-color: #f44336;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes scale {
    0% {
        transform: scale(1);
    }
    50%,
    75% {
        transform: scale(2.5);
    }
    78%, 100% {
        opacity: 0;
    }
}
.preloader-item-5:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f44336;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 1000ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.item-new:before{
    content: '';
    position: absolute;
    left: -5px;
    top: 9px;
    width: 7px;
    height: 7px;
    background: #000;
    opacity: 0.8;
    z-index: 14;
    border-radius: 50%;
}
.item-change:before{
    content: '';
    position: absolute;
    left: -5px;
    top: 9px;
    width: 7px;
    height: 7px;
    background: #008805;
    opacity: 0.8;
    z-index: 14;
    border-radius: 50%;
}
.children-change:after{
    content: '';
    position: absolute;
    left: -5px;
    top: 9px;
    width: 7px;
    height: 7px;
    background: #9c27b0;
    opacity: 0.8;
    z-index: 14;
    border-radius: 50%;
}

.item-change.children-change:before{
    content: '';
    position: absolute;
    left: -5px;
    top: 5px;
    width: 7px;
    height: 7px;
    background: #008805;
    opacity: 0.8;
    z-index: 14;
    border-radius: 50%;
}

.item-change.children-change:after{
    content: '';
    position: absolute;
    left: -5px;
    top: 13px;
    width: 7px;
    height: 7px;
    background: #9c27b0;
    opacity: 0.8;
    z-index: 14;
    border-radius: 50%;
}

.search-wrapper{
    display: inline-block;
    margin-right: 10px;
    border-right: 1px dashed #bbb;
    padding-right: 15px;
    margin-top: 1px;
}
.search-wrapper input{
    outline: none;
    border: 1px solid #ccc;
    line-height: 19px;
    color: #444;
    padding-left: 6px;
    border-radius: 2px;
    width: 250px;
}
#toolbar--right label{
    font-size: 13px;
    margin-right: 5px;
    letter-spacing: 0.2px;
    color: #6f6f6f;
    text-shadow: 1px 1px 1px rgb(255, 255, 255);
}
.s-results-item{
    margin: 10px 0 0 0;
}
.s-results-item-title{
    color: #717171;
}
.read-content table{
    border-collapse: collapse;
}
.read-content td{
    border-top: 1px solid rgb(222, 226, 230);
    padding: 0;
    width: auto !important;
}
.read-content th{
    border-top: 1px solid rgb(222, 226, 230);
    padding: 0;
    width: auto !important;
}
.read-content th.head{
    font-weight: bold;
}
/*#readPanel p,
#readPanel a,
#readPanel span,
#readPanel .Text_t,
#readPanel .Normal_t
#readPanel .Code_t{
    font-size: 16px !important;
    line-height: 20px !important;
    margin-left: 0 !important;
    text-indent: 0 !important;
    color: #000;
    font-weight: normal;
}*/
#readPanel ul{
    /*margin-left: 15px !important;
    padding-left: 0px !important;*/
    list-style-type: disk !important;
    list-style: disc !important;
}
#readPanel li{
    margin-left: 10px !important;
}
#readPanel li > p{
    margin-top: 2px;
    margin-bottom: 0px;
}
.ExampleToggle_p,
.ExampleToggle_p span{
    color: #008205 !important;
}
#readPanel .Heading2_p,
#readPanel .Heading2_t{
    font-size: 16px;
    color: #F44336;
    font-weight: bold;
}
#readPanel .Heading3_p,
#readPanel .Heading3_t{
    font-size: 16px;
    color: #F44336;
    font-weight: bold;
}

.read-content a:link,
.read-content a:visited{
    color: #004675;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.read-content a:hover{
    color: rgb(227, 46, 0);
    border-bottom: 1px solid rgb(227, 46, 0);
}
.read-content a:hover mark {
    color: rgb(227, 46, 0);
}
code{
    color: #0063b1;
    font-size: 16px;
    font-weight: normal;
}
.Code_t{
    background: #fafafa;
    padding: 0 4px;
}
.no-results{
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.no-results h4{
    text-align: center;
    color: #717171;
    font-size: 20px;
    margin-top: 30px;
}
.no-results .results-image{
    margin-top: 30px;
}
.is-compare-wrapper {
    position: relative;
}
.is-compare-wrapper span{
    padding-right: 5px;
}
.is-compare-wrapper label {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 7px;
    left: 4px;
    background: #fcfff4;
    background: linear-gradient(to bottom, #ffffff 0%, #dadada 100%);
    border-radius: 2px;
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(2, 2, 2, 0.39);
}
.is-compare-wrapper label:after {
    content: '';
    width: 8px;
    height: 5px;
    position: absolute;
    top: 4px;
    left: 4px;
    border: 3px solid #0065a9;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.is-compare-wrapper label::after {
    opacity: 0;
}
.is-compare-wrapper input[type=checkbox] {
    visibility: hidden;
}
.is-compare-wrapper input[type=checkbox]:checked + label:after {
    opacity: 1;
}
.is-fix-wrapper {
    position: relative;
}
.is-fix-wrapper span{
    padding-right: 5px;
}
.is-fix-wrapper label {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 7px;
    left: 4px;
    background: #fcfff4;
    background: linear-gradient(to bottom, #ffffff 0%, #dadada 100%);
    border-radius: 2px;
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(2, 2, 2, 0.39);
}
.is-fix-wrapper label:after {
    content: '';
    width: 8px;
    height: 5px;
    position: absolute;
    top: 4px;
    left: 4px;
    border: 3px solid #0065a9;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.is-fix-wrapper label::after {
    opacity: 0;
}
.is-fix-wrapper input[type=checkbox] {
    visibility: hidden;
}
.is-fix-wrapper input[type=checkbox]:checked + label:after {
    opacity: 1;
}

#scroll-toolbar{
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 95px;
    z-index: 999;
}
.scroll-btn{
    cursor: pointer;
    background: #f7f7f7;
    margin-right: 5px;
    padding: 4px;
    position: relative;
    width: 26px;
    height: 26px;
    display: inline-block;
    -webkit-box-shadow: 0px 1px 10px 0px rgb(160, 160, 160);
    -moz-box-shadow: 0px 1px 10px 0px rgb(160, 160, 160);
    box-shadow: 0px 1px 10px 0px rgb(160, 160, 160);
}
.scroll-btn img{
    position: absolute;
    top: 5px;
    left: 5px;
}
.scroll-btn:hover{
    background: #ececec;
}
.focus{
    background: yellow;
}
.focus img{
    border-color: yellow;
}


#readPanel .guilabel{
    border: 1px solid #7fbbe3;
    background: #e7f2fa;
    font-weight: 700;
    border-radius: 4px;
    padding: 2.4px 6px;
    margin: auto 2px;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 700;
}
#readPanel .pre {
    color: #004eff !important;
    font-size: 13px;
}
#readPanel pre {
    /*-moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;*/
    font-family: SFMono-Regular, Menlo, Consolas, Monaco, "Liberation Mono", "Lucida Console", monospace;
    font-size: 13px;
    margin: 1.5em 0;
    padding: 10px;
    background-color: rgb(250, 250, 250);
    color: rgb(34, 34, 34);
    line-height: 1.2em;
    border: 1px solid #c9c9c9;
    box-shadow: 1px 1px 1px #d8d8d8;
    white-space: pre;
    overflow: auto;
    overflow-y: hidden;
}

.dfn {
    font-style: normal;
    font-weight: bolder;
    word-wrap: break-word;
}

#readPanel blockquote{
    padding: 0 1em;
    margin: 0 0 1rem;
    clear: left;
}

#readPanel h2{
    font-weight: 400;
    font-size: 26px;
    color: rgb(19, 6, 84);
}

#readPanel h3{
    color: rgb(51, 51, 51);
    font-size:22px;
    font-weight:400;
}

#readPanel .toggle-content{
    display: none;
}

#readPanel .toggle-header{
    cursor: pointer;
    color: #2980b9;
    font-weight: bold;
}
#readPanel .toggle-header p {
    display: inline;
}
#readPanel .toggle-header:hover{
    color: rgb(227, 46, 0);
}

#readPanel .toggle-header:after{
    content: ' ▼';
    color: #000;
}

#readPanel .toggle-header.open:after{
    content: ' ▲';
    color: #000;
}

.download-version{
    padding: 4px 10px;
    border-radius: 2px;
    background: #2196f3;
    color: #fff;
    cursor: pointer;
}
.download-version:hover{
    background: #1c83d4;
}

.prev-next-bottom{
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

#readPanel .prev-next-bottom a.left-prev:link,
#readPanel .prev-next-bottom a.right-next:link{
    text-decoration: none !important;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.2) !important;
    overflow-x: hidden;
    color: rgba(0,0,0,.65)!important;
    display: inline-block;
}
#readPanel .prev-next-bottom a.left-prev:hover,
#readPanel .prev-next-bottom a.right-next:hover{
    color: #004675 !important;
    border: 1px solid #3f7094 !important;
}
.prev-next-bottom a.left-prev:before {
    content: "<< ";
}

.prev-next-bottom a.right-next:after {
    content: " >>";
}
.bd-toc{
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /*flex: 1 1 auto;*/
    min-width: 235px;
}
.bd-toc .toc-item:last-child {
    display: none;
}
.bd-toc .onthispage {
    padding-top: 15px !important;
    padding-bottom: 0 !important;
    white-space: nowrap;
    width: 100%;
    padding-left: 10px;
}
.bd-toc .onthispage {
    color: #a4a6a7;
}
.toc-item {
    display: flex;
    overflow: hidden;
    word-wrap: normal;
    flex-direction: column;
    /*flex: 1 1 auto;*/
}
#bd-toc-nav {
    /*flex: 1 1 auto;*/
    overflow: auto;

}
.tocsection {
    border-left: 1px solid #eee;
    padding: .3rem 1.5rem;
}
.pt-5, .py-5 {
    padding-top: 3rem!important;
}
.pb-3, .py-3 {
    padding-bottom: 1rem!important;
}
.section-nav {
    padding-left: 0;
    border-left: 1px solid #eee;
    border-bottom: none;
}

.visible {
    visibility: visible!important;
}
.flex-column {
    flex-direction: column!important;
}
#readPanel .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
#readPanel .toc-h2,
#readPanel .toc-h2 a:link{
    font-size: .85rem !important;
    text-decoration: none !important;
    border-bottom: none !important;
    margin-bottom: 0;
}

#readPanel .toc-entry, #readPanel .toc-entry a:link {
    display: block;
    text-decoration: none !important;
}
#readPanel .toc-entry a:link {
    color:#666 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    line-height: 15px;
}
#readPanel .toc-entry a.active:link,
#readPanel .toc-entry a:hover{
    color: #000 !important;
}
#readPanel .toc-h3,
#readPanel .toc-h3 a:link{
    font-size: .75rem !important;
    text-decoration: none !important;
    border-bottom: none !important;
    margin-bottom: 0;
}
#readPanel .section-nav ul {
    padding-left: 1rem;
}
#readPanel li.toc-entry{
    margin-bottom: 8px !important;
}
#readPanel .bd-toc .nav-link{
    padding-right: 20px;
}
#readPanel .toc-h4.toc-entry{
    margin-bottom: 0 !important;
}
.read-content .tree-wrapper{

}
.read-content .tree-wrapper a:link{

}
#readPanel .read-content.search-results{
    display: flex;
    flex-flow: column nowrap;
    overflow: auto;
    padding: 0px 10px;
}
#readPanel .section-nav{
    margin-top: 5px;
    margin-left: 0px !important;
    display: block;
}
.legend{
    margin-right: 5px;
}
.legend-is-change-children,
.legend-is-change-item,
.legend-is-added-item{
    width: 8px;
    height: 8px;
    margin-left: 5px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.legend-is-added-item{
    background-color: #000;
}
.legend-is-change-children{
    background-color: #9c27b0;
}
.legend-is-change-item{
    background-color: #008805;
}
.read-content main > .tree-wrapper{
    padding: 20px;
}
div.admonition{
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 7px;
}
.admonition{
    margin: 1.5625em auto;
    padding: 0 .6rem .8rem!important;
    overflow: hidden;
    page-break-inside: avoid;
    border-left: .2rem solid;
    border-radius: .1rem;
    box-shadow: 0 0.2rem 0.5rem rgb(0 0 0 / 5%), 0 0 0.05rem rgb(0 0 0 / 10%);
    transition: color .25s,background-color .25s,border-color .25s;
}
.admonition.warning {
    border-color: rgb(255, 193, 7);
}
.admonition.note {
    border-color: rgb(40, 167, 69);
}
.admonition.error {
    border-color: rgb(220, 53, 69);
}
.admonition.important {
    border-color: rgb(40, 167, 69);
}
.admonition.seealso{
    border-color: rgb(0, 123, 255);
}
.admonition-title{
    position: relative;
    margin: 0 -.6rem!important;
    padding: .4rem .6rem .4rem 2rem;
    font-weight: 700;
}
.admonition.warning .admonition-title {
    background-color: rgba(255, 193, 7, 0.1);
}
.admonition.note .admonition-title {
    background-color: rgba(40, 167, 69, 0.1);
}
.admonition.error .admonition-title {
    background-color: rgba(220, 53, 69, 0.1);
}
.admonition.important .admonition-title {
    background-color: rgba(40, 167, 69, 0.1);
}
.admonition.seealso .admonition-title {
    background-color: rgba(0, 123, 255, 0.1);
}
.admonition .admonition-title:before {
    position: absolute;
    left: .6rem;
    width: 1rem;
    height: 1rem;
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
}
.admonition.warning .admonition-title:before {
    color: rgb(255, 193, 7);
    content: '';
}
.admonition.note .admonition-title:before {
    color: rgb(40, 167, 69);
    content: '';
}
.admonition.error .admonition-title:before {
    color: rgb(220, 53, 69);
    content: '\f057';
}
.admonition.important .admonition-title:before {
    color: rgb(40, 167, 69);
    content: '';
}
.admonition.seealso .admonition-title:before {
    color: rgb(0, 123, 255);
    content: '';
}
.admonition p.admonition-title~* {
    padding: 0 1.4rem;
}
.admonition .admonition-title+* {
    margin-top: .4em;
}
.admonition :last-child {
    margin-bottom: 0;
}
.table td, .table th{
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
h4{
    font-size: 21px;
    font-weight: 400;
    line-height: 24.15px;
}
#context-menu {
    position: fixed;
    z-index: 10000;
    width: auto;
    background: #fff;
    border: 1px solid #dadce0;
    display: none;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(143,143,143,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(143,143,143,1);
    box-shadow: 3px 3px 5px 0px rgba(143,143,143,1);
}

#context-menu.visible {
    display: block;
}

#context-menu .context-menu-item {
    padding: 5px 10px;
    font-size: 12px;
    color: #000;
    white-space: nowrap;
    cursor: pointer;
    border-radius: inherit;
}

#context-menu .context-menu-item:hover {
    background: #e8e8e9;
}

ol.arabic {
    list-style: decimal;

}
a.feedback-link{
    padding: 4px 10px;
    background: #2196f3;
    color: #fff;
    cursor: pointer;
}
a.feedback-link:hover{
    background: #1c83d4!important;
}

#readPanel .section-nav{
    margin-left: 0px !important;
}


.s-results-item-title a:link{
    font-weight: bold !important;
}
.s-results-item-title{
    margin-bottom: 5px;
}
.s-results-item-quote{
    font-size: 15px;
    padding: 0;
    color: rgb(136, 136, 136) !important;
}
.s-results-item{
    margin: 10px 0 10px 0;
}
.s-results-item-quote mark{
    background-color: transparent !important;
    color: rgb(136, 136, 136) !important;
}
.s-results-item-title mark{
    background-color: transparent !important;
    color: #004675;
}
.change-size-tree{
    width: 3px;
}
.resize-el{
    height: 100%;
    width: 2px;
    z-index: 9;
    background: #f9f9f9;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    cursor: e-resize;
}
.resize-el.active,
.resize-el:hover{
    background: #00bcd4;
}

.message-top{
    width: 600px;
    z-index: 999;
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translate(-50%, 5px);
    -webkit-transform: translate(-50%, 5px);
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(169 167 167 / 75%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(169, 167, 167, 0.75);
    box-shadow: 0px 0px 5px 0px rgb(169 167 167 / 75%);
    overflow: hidden;
    color: #4a4a4a;
    font-size: 16px;
    border-radius: 4px;
    line-height: 20px;
}

.message-wrap{
    position: relative;
    padding: 5px;
    z-index: 0;
    margin-right: 22px;
    margin-bottom: 5px;
}

.message-close{
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 14px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    z-index: 1;
    background: url("/resources/img/close.png") no-repeat center;
    background-size: 16px;
    opacity: 0.8;
}
.message-close:hover{
    opacity: 1;
}


button.copybtn img {
    width: 100%;
    padding: 0 !important;
}

button.copybtn {
    position: absolute;
    display: flex;
    top: 0.3em;
    right: 0.5em;
    width: 1.7em;
    height: 1.7em;
    opacity: 0;
    transition: opacity 0.3s, border .3s, background-color .3s;
    user-select: none;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 0.4em;
    border: #e1e1e1 1px solid;
    background-color: rgb(245, 245, 245);
    cursor: pointer;
}

.highlight{
    position: relative;
}

.highlight:hover button.copybtn{
    opacity: 1;
}

button.copybtn:focus{
    background-color: rgb(178, 178, 178);
}

p.rubric {
    margin-top: 30px;
    font-weight: bold;
}

p.rubric {
    border-bottom: 1px solid #c9c9c9;
}

abbr[data-original-title], abbr[title]{
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none;
}

details.sd-dropdown {
    position: relative
}

details.sd-dropdown .sd-summary-title {
    font-weight: 700;
    padding-right: 3em !important;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none
}

details.sd-dropdown:hover {
    cursor: pointer
}

details.sd-dropdown .sd-summary-content {
    cursor: default
}

details.sd-dropdown summary {
    list-style: none;
    padding: 1em
}

details.sd-dropdown summary .sd-octicon.no-title {
    vertical-align: middle
}

details.sd-dropdown[open] summary .sd-octicon.no-title {
    visibility: hidden
}

details.sd-dropdown summary::-webkit-details-marker {
    display: none
}

details.sd-dropdown summary:focus {
    outline: none
}

details.sd-dropdown .sd-summary-icon {
    margin-right: .5em
}

details.sd-dropdown .sd-summary-icon svg {
    opacity: .8
}

details.sd-dropdown summary:hover .sd-summary-up svg,details.sd-dropdown summary:hover .sd-summary-down svg {
    opacity: 1;
    transform: scale(1.1)
}

details.sd-dropdown .sd-summary-up svg,details.sd-dropdown .sd-summary-down svg {
    display: block;
    opacity: .6
}

details.sd-dropdown .sd-summary-up,details.sd-dropdown .sd-summary-down {
    pointer-events: none;
    position: absolute;
    right: 1em;
    top: 1em
}

details.sd-dropdown[open]>.sd-summary-title .sd-summary-down {
    visibility: hidden
}

details.sd-dropdown:not([open])>.sd-summary-title .sd-summary-up {
    visibility: hidden
}

details.sd-dropdown:not([open]).sd-card {
    border: none;
    padding: 0;
}

details.sd-dropdown:not([open])>.sd-card-header {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: .25rem
}

details.sd-dropdown.sd-fade-in[open] summary~* {
    -moz-animation: sd-fade-in .5s ease-in-out;
    -webkit-animation: sd-fade-in .5s ease-in-out;
    animation: sd-fade-in .5s ease-in-out
}

details.sd-dropdown.sd-fade-in-slide-down[open] summary~* {
    -moz-animation: sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;
    -webkit-animation: sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;
    animation: sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out
}

.sd-col>.sd-dropdown {
    width: 100%
}

.sd-summary-content>.sd-tab-set:first-child {
    margin-top: 0
}

@keyframes sd-fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes sd-slide-down {
    0% {
        transform: translate(0, -10px)
    }

    100% {
        transform: translate(0, 0)
    }
}

.sd-card {
    background-clip: border-box;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: .25rem;
    color: inherit;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    position: relative;
    word-wrap: break-word
}

.sd-card>hr {
    margin-left: 0;
    margin-right: 0
}

.sd-card-hover:hover {
    border-color: hsla(231, 99%, 66%, 1);
    transform: scale(1.01)
}

.sd-card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem 1rem
}

.sd-card-title {
    margin-bottom: .5rem
}

.sd-card-subtitle {
    margin-top: -0.25rem;
    margin-bottom: 0
}

.sd-card-text:last-child {
    margin-bottom: 0
}

.sd-card-link:hover {
    text-decoration: none
}

.sd-card-link+.card-link {
    margin-left: 1rem
}

.sd-card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125)
}

.sd-card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0
}

.sd-card-footer {
    padding: .5rem 1rem;
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.125)
}

.sd-card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)
}

.sd-card-header-tabs {
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
    margin-left: -0.5rem;
    border-bottom: 0
}

.prev-next-area {
    margin: 20px 0
}

.prev-next-area p {
    margin: 0 .3em;
    line-height: 1.3em
}

.prev-next-area i {
    font-size: 1.2em
}

.prev-next-area a {
    display: flex;
    align-items: center;
    border: none;
    padding: 10px;
    max-width: 45%;
    overflow-x: hidden;
    color: rgba(0,0,0,.65);
    text-decoration: none
}

.prev-next-area a p.prev-next-title {
    color: rgba(0, 91, 129,1);
    font-weight: 600;
    font-size: 1.1em;
    border-bottom: 1px solid transparent;
}
.prev-next-area a:hover {
    border-bottom: transparent;
}
.prev-next-area a:hover p.prev-next-title {
    text-decoration: none;
    color: rgb(227, 46, 0);
    border-bottom: 1px solid rgb(227, 46, 0);
}

.prev-next-area a .prev-next-info {
    flex-direction: column;
    margin: 0 .5em
}

.prev-next-area a .prev-next-info .prev-next-subtitle {
    text-transform: capitalize;
    color: #000;
}

.prev-next-area a.left-prev {
    float: left
}

.prev-next-area a.right-next {
    float: right
}

.prev-next-area a.right-next div.prev-next-info {
    text-align: right
}
dl.footnote > dt,
dl.citation > dt {
    float: left;
    margin-right: 0.5em;
}

dl.footnote > dd,
dl.citation > dd {
    margin-bottom: 0em;
}

dl.footnote > dd:after,
dl.citation > dd:after {
    content: "";
    clear: both;
}

dl.field-list {
    display: grid;
    grid-template-columns: fit-content(30%) auto;
}

dl.field-list > dt {
    font-weight: bold;
    word-break: break-word;
    padding-left: 0.5em;
    padding-right: 5px;
}

dl.field-list > dt:after {
    content: ":";
}

dl.field-list > dd {
    padding-left: 0.5em;
    margin-top: 0em;
    margin-left: 0em;
    margin-bottom: 0em;
}

dl {
    margin-bottom: 15px;
}

dd > :first-child {
    margin-top: 0px;
}

dd ul, dd table {
    margin-bottom: 10px;
}

dd {
    margin-top: 3px;
    margin-bottom: 10px;
    margin-left: 30px;
}

dl > dd:last-child,
dl > dd:last-child > :last-child {
    margin-bottom: 0;
}

dt:target, span.highlighted {
    background-color: #fbe54e;
}

rect.highlighted {
    fill: #fbe54e;
}

dl.glossary dt {
    font-weight: bold;
    font-size: 1.1em;
}

#readPanel .glossary dt:not(.glossary-active):hover .headerlink{
    display: inline;
    padding: 0 2px;
    margin-left: 1px;
}
#readPanel .glossary dt .headerlink:hover{
    color: #fff;
    background-color: #dc3545;
    text-decoration: none;
}
#readPanel .glossary .glossary-active {
    background-color: #fbe54e;
}
#readPanel .samp ,
#readPanel .samp .pre{
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
    font-weight: bolder;
    color: #000 !important;
}
.line-block {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
}

.menuselection {
    font-weight: normal !important;
    font: 80% sans-serif;
    border-radius: 4px;
    border: 1px solid #fce9e9;
    background: #fff5f5;
    padding: 2.4px 6px;
    margin: auto 2px;
}

.kbd {
    font-weight: normal;
    font: sans-serif;
    background: #fff3f3;
    border: 1px solid #fcd0d0;
}

/**/
#toggle {
    display: none;
}
.top-nav {
    position: relative;
    width: 34px;
    height: 34px;
    display: none;
}

.hamburger {
    position: absolute;
    top: 1px;
    left: 5px;
    margin-left: 0;
    margin-top: 0;
    width: 30px;
    height: 34px;
    z-index: 5;
}

.hamburger div {
    position: relative;
    width: 30px;
    height: 3px;
    border-radius: 0px;
    background-color: #544b83;
    margin-top: 6px;
    transition: all 0.3s ease-in-out;
}

#toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 13px;
}
#toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(34deg);
}
#toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -3px;
}

#toggle:checked + .hamburger + .nav {
    top: 0;
    transform: scale(1);
}

@media screen and (max-width:500px) {
    #treePanel{
        width: 100%;
    }
}

@media screen and (max-width:520px) {
    .search-wrapper{
        position: fixed;
        height: 36px;
        top: 35px;
        left: 0;
        width: 100%;
        z-index: 99;
        background: #fff;
        border-bottom: 1px solid #c3c3c3;
    }
    .search-wrapper > div {
        text-align: center;
    }
    .search-wrapper input {
        width: 95%;
    }
    #wrapPanel {
        /*margin-top: 38px;*/
    }
    #readPanel {
        padding-top: 40px !important;
    }
}
@media screen and (max-width:1000px) {
    #treePanel {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 100;
        border-right: 1px solid #c3c3c3;
        display: none;
    }
    .top-nav {
        display: block;
    }
    #toolbar--left a  {
        display: none;
    }
    #treePanel.menu-visible{
        display: block;
    }
}
@media screen and (max-width:679px) {
    .is-compare-wrapper,
    .version-compare {
        display: none;
    }
}
@media screen and (max-width:778px) {
    .version-label,
    .language-label{
        display: none;
    }
    .message-top{
        width: 95%;
        font-size: 12px;
    }
}

@media screen and (max-width: 800px) {
    .bd-toc {
        display: none;
    }
    #readPanel {
        padding-top: 4px;
    }
    #readPanel .read-header {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 5px;
        left: 0;
        position: relative;
        margin: 0;
        margin-right: 4px !important;
        width: auto;
    }
    #readPanel .read-content {
        padding-bottom: 50px;
    }
    #readPanel h1 {
        font-size: 20px;
        line-height: 20px;
    }
    #readPanel h2, #readPanel h3, #readPanel h4 {
        font-size: 18px;
        line-height: 18px;
    }
    main {
        padding-bottom: 0px;
    }
    .prev-next-area {
        display: flex;
        flex-flow: column nowrap;
    }
    .prev-next-area a {
        max-width: 100%;
    }
    .prev-next-area a.left-prev {
        justify-content: flex-start;
    }
    .prev-next-area a.right-next {
        justify-content: flex-end;
    }
    .prev-next-info {
        font-size: 14px;
    }
    #treePanel .tree {
        font-size: 13px;
    }
}
@media screen and (max-width: 859px) {
    .is-compare-wrapper > span {
        display: none;
    }
    .is-compare-wrapper{
        min-width: 27px;
    }
}

@media screen and (max-width: 600px) {
    .top-nav {
        display: block;
    }
    #toolbar--left a  {
        display: none;
    }
}

.search-clear{
    position: absolute;
    background: url("/resources/img/clear.png") no-repeat center;
    width: 20px;
    height: 30px;
    cursor: pointer;
    right: 2px;
    top: 2px;
    z-index: 1;
    opacity: 0.5;
}
.search-clear:hover {
    opacity: 0.8;
}

.search-clear.loading {
    background: url("/resources/img/search_preloader.gif") no-repeat center;
    width: 18px;
    height: 18px;
    cursor: auto;
}
.search-clear.loading {
    background: url("/resources/img/search_preloader.gif") no-repeat center;
    width: 18px;
    height: 18px;
    cursor: auto;
    opacity: 1;
    top: 8px;
    right: 2px;
}

.popup__container {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    overflow: auto;
    z-index: 99;
    cursor: pointer;
}

.popup__background {
    transition: all 0.3s ease-in-out;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
}

.popup__background.active {
    background-color: rgba(0, 0, 0, 0.4);
}

.popup__image {
    position: relative;
    display: block;
    border-radius: 6px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15),
    0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

main img[style] {
    cursor: pointer;
}

.kbd {
    font-style: italic;
    color: grey;
    border:none!important;
    box-shadow: none;
    background-color: transparent !important;
}
