html{
    --absolute: black;
    --documentBackground: #f3f3f3;
    --contentBackground: #fff;
    --textColor: #333;
    --textColorLight: #666;
    --textColorLighter: #888;
    --externalsBackground: #fff;
    --inputFocusBorder: #35b5f4;
    --focusBackground: #e5e5e5;
    --focusBorder: #d4d4d4;
    --focusText: #000;
    --loadingText: #ccc;
    --selectionBackground: #398df0;
    --selectionBorder: #196fc2;
    --highlightBackground: #fffdcd;
    --linkColor: #3377c0;
    --linkColorHover: #2f6cb6;
    --linkTextDecoration: none;
    --headerBackground: #eee;
    --headerBorder: #d7d7d7;
    --searchTagBackground: #e1e1e1;
    --searchBorder: #d2d2d2;
    --sidebarBackground: #f9f9f9;
    --transparentSidebarBackground: rgba(249, 249, 249, 0);
    --sidebarBorder: #e1e1e1;
    --scrollbarColor: #ccc;
    --scrollbarColorHover: #999;
    --pathBackground: var(--sidebarBackground);
    --pathBorder: var(--sidebarBorder);
    --noticeBackground: #faf9e2;
    --noticeBorder: #e2e2c1;
    --boxBackground: #fafafa;
    --boxBorder: #d8d8d8;
    --boxBorderLight: #e5e5e5;
    --boxHeaderColor: var(--textColor);
    --boxHeaderBackground: #f5f5f5;
    --noteBackground: #f8f8dd;
    --noteBorder: #d3d952;
    --noteGreenBackground: #e7f8e1;
    --noteGreenBorder: #89da70;
    --noteBlueBackground: #d4f3fd;
    --noteBlueBorder: #94bbeb;
    --noteOrangeBackground: #fbe6d1;
    --noteOrangeBorder: #ec8b01;
    --noteRedBackground: #fed5d3;
    --noteRedBorder: #dc7874;
    --labelBackground: #f4f4f4;
    --notifBackground: rgba(51, 51, 51, 0.85);
    --notifBorder: none;
    --tipBackground: rgba(255, 253, 205, 0.95);
    --tipBorder: 1px solid #e7dca9
    --baseFont: -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Arial, sans-serif;
    --monoFont: 'SF Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    --boldFontWeight: 500;
    --bolderFontWeight: 600;
    --textColorRed: #f44336;
    --splashText: var(--loadingText);
    --selectionText: #fff;
    --transparentSelectionText: rgba(255, 255, 255, 0.9);
    --notifColor: #fff;
    --notifColorLight: #ccc;
    --maxWidth: 80rem;
    --headerHeight: 3rem;
    --sidebarWidth: 20rem;
    --sidebarMediumWidth: 16rem;
    --focusBackground: #e5e5e5;
    --focusBorder: #d4d4d4;
    --focusText: #000;
    --contentZ: 1;
    --sidebarZ: 2;
    --headerZ: 3;
    --noticeZ: 4;
    --hoverZ: 5
}
blockquote
{
    background: #ffe60073!important;
    border: 1px dashed #d09d04!important;
    padding: 10px!important;    
}
._app{
    position:relative;
    z-index:1;
    height:100%;
    overflow:hidden;
    -webkit-transition:opacity .2s;
    transition:opacity .2s
}
._booting ._app{
    opacity:0
}
._max-width ._app{
    margin:0 auto;
    max-width:var(--maxWidth);
    background:var(--contentBackground);
    box-shadow:1px 0 var(--headerBorder),-1px 0 var(--headerBorder)
}
._header{
    position:absolute;
    z-index:var(--headerZ);
    top:0;
    left:0;
    display:-ms-flexbox;
    display:flex;
    width:var(--sidebarWidth);
    height:var(--headerHeight);
    background:var(--headerBackground);
    border-bottom:1px solid var(--headerBorder);
    border-right:1px solid var(--headerBorder)
}
@media (max-width: 800px){
    ._header{
        width:var(--sidebarMediumWidth)
    }
}
._header-left{
    float:left;
    height:100%
}
._header-right{
    float:right;
    height:100%
}
._header-btn{
    position:relative;
    flex:0 0 auto;
    width:2.25rem;
    height:100%;
    color:var(--textColorLight);
    text-align:center
}

._sidebar{
    position:absolute;
    z-index:var(--sidebarZ);
    top:0;
    bottom:0;
    left:0;
    overflow-x:hidden;
    overflow-y:scroll;
    padding-top:var(--headerHeight);
    background:var(--sidebarBackground)!important;
    background-clip:content-box;
    -webkit-overflow-scrolling:touch;
    -ms-overflow-style:none
}
._sidebar:focus{
    outline:none
}
._overlay-scrollbars ._sidebar{
    padding-top:0;
    top:var(--headerHeight)
}
body:not(._native-scrollbars) ._sidebar::-webkit-scrollbar{
    width:10px
}
body:not(._native-scrollbars) ._sidebar::-webkit-scrollbar-track{
    background:var(--contentBackground);
    border:0
}
body:not(._native-scrollbars) ._sidebar::-webkit-scrollbar-thumb{
    border-width:3px
}
body:not(._native-scrollbars) ._sidebar::-webkit-scrollbar-thumb:hover,body:not(._native-scrollbars) ._sidebar::-webkit-scrollbar-thumb:active{
    border-width:2px
}
._sidebar-hidden ._sidebar{
    transform:translateX(-95%);
    transform:translateX(calc(.5rem - 100%));
    opacity:0
}
._sidebar:hover:not(.no-hover),._sidebar.show{
    transform:none;
    opacity:1
}
._resizer{
    position:absolute;
    z-index:var(--headerZ);
    top:var(--headerHeight);
    bottom:var(--headerHeight);
    left:var(--sidebarWidth);
    margin-left:-2px;
    width:3px;
    cursor:col-resize
}
._sidebar-hidden ._resizer{
    display:none
}
._sidebar-hidden ._sidebar.show ~ ._resizer{
    display:block
}
._list{
    margin:0;
    padding:0;
    list-style:none;
    width:var(--sidebarWidth);
    box-shadow:inset -1px 0 var(--sidebarBorder);
}
@media (max-width: 800px){
    ._list{
        width:var(--sidebarMediumWidth)
    }
}
._sidebar>._list{
    min-height:100%
}
._list a:focus{
    outline:0
}
._list-title{
    position:relative;
    margin:.5rem 0 0;
    padding:0 .75rem 0 2.125rem;
    line-height:2rem;
    font-size:.75rem;
    color:var(--textColorLight);
    text-transform:uppercase;
    cursor:default
}
._list-title-link{
    display:none;
    float:right;
    font-weight:normal;
    text-transform:none
}
._list-title:hover>._list-title-link{
    display:block
}
._list-item{
    display:block;
    position:relative;
    padding:.25rem .75rem;
    line-height:1.5rem;
    font-size:.875rem;
    cursor:pointer;
    background:var(--sidebarBackground);
    box-shadow:inset -1px 0 var(--sidebarBorder)
}
._list-item,._list-item:hover{
    color:inherit;
    text-decoration:none
}
._list-item.focus,._list-item.focus:hover,._list-item.active,._list-item.active:hover{
    color:var(--focusText);
    background:var(--focusBackground);
    box-shadow:inset -1px 0 var(--focusBorder)
}
._list-item.active,._list-item.active:hover{
    color:var(--selectionText);
    background:var(--selectionBackground);
    box-shadow:inset -1px 0 var(--selectionBorder)
}
._list-text{
    display:block;
    pointer-events:none
}
._list-count,._list-enable{
    float:right;
    font-size:.75rem;
    margin-left:.375rem
}
.focus>._list-count,.active>._list-count,.focus>._list-enable,.active>._list-enable{
    color:inherit
}
._list-count{
    color:var(--textColorLighter);
    pointer-events:none
}
._list-disabled:hover>._list-count{
    display:none
}
._list-enable{
    display:none;
    color:var(--linkColor);
    cursor:pointer
}
._list-enable:hover{
    text-decoration:underline
}
._list-disabled:hover>._list-enable,._list-result>._list-enable{
    display:block
}
._list-result.active>._list-enable{
    margin-right:-1rem
}
._list-dir:not(._list-rdir),._list-disabled{
    padding-left:2.125rem
}
._list-disabled,._list-disabled:hover{
    color:var(--textColorLight)
}
._list-disabled:before{
    opacity:.7
}
._list-arrow{
    position:absolute;
    top:0;
    left:.25rem;
    padding:.5rem .375rem .5rem .5rem;
    width:1rem;
    height:1rem;
    cursor:pointer;
    fill:var(--absolute);
    opacity:.4
}
._list-arrow:hover{
    opacity:.65
}
._list-rdir>._list-arrow{
    left:auto;
    right:.25rem
}
.open>._list-arrow,.open-title>._list-arrow{
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg)
}
._list-sub{
    display:none
}
.ws-cat-clist.open{
    width: 96%;
    float: left;
    padding: 5px;    
}
.open+._list-sub{
    display:block
}
._list-sub>._list-item{
    padding-left:2.375rem
}
._list-sub>._list-dir,._list-sub>._list-sub>._list-item{
    padding-left:2.75rem
}
._list-sub>._list-disabled{
    padding-left:3.75rem
}
._list-sub>._list-dir{
    line-height:1.375rem
}
._list-sub ._list-arrow{
    left:1rem;
    padding:.4375rem
}
._list-pagelink{
    color:var(--linkColor);
    cursor:pointer
}
._list-pagelink:hover{
    color:var(--linkColorHover);
    text-decoration:underline
}
._list-result.active{
    padding-right:1.75rem
}
._list-result.active>._list-reveal{
    display:block
}
._list-result.active>._list-count{
    display:none
}
._list-reveal{
    display:none;
    position:absolute;
    top:0;
    bottom:0;
    right:0;
    width:2rem;
    cursor:pointer
}
._list-reveal:before{
    content:'';
    position:absolute;
    bottom:50%;
    left:.75rem;
    width:.75rem;
    height:1px;
    background:var(--transparentSelectionText);
    box-shadow:0 -3px var(--transparentSelectionText),0 3px var(--transparentSelectionText)
}
._list-note{
    padding:.5rem .75rem;
    line-height:1.25rem;
    font-size:.8125rem;
    color:var(--textColorLight)
}
._list-note+._list-note{
    padding-top:0
}
._list-note-link{
    cursor:pointer
}
._list-hover.clone{
    position:fixed;
    overflow:visible;
    z-index:var(--hoverZ);
    left:0;
    min-width:var(--sidebarWidth);
    padding:.25rem .75rem;
    pointer-events:none;
    -webkit-font-smoothing:subpixel-antialiased;
    -webkit-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0)
}
@media (max-width: 800px){
    ._list-hover.clone{
        min-width:var(--sidebarMediumWidth)
    }
}
._list-hover.clone>._list-text{
    display:inline
}
._list-hover.clone:not(._list-result){
    padding-left:2.75rem
}
._list-hover.clone:not(._list-result):before{
    content:none
}
._list-hover.clone ._list-reveal,._list-hover.clone ._list-enable{
    display:none
}
._list-picker ._list-item{
    cursor:pointer
}
._list-picker ._list-sub>._list-item{
    padding-left:2.375rem
}

._container{
    position:relative;
    z-index:var(--contentZ);
    height:100%;
    margin-left:var(--sidebarWidth);
    pointer-events:none;
        background: #fff; 
}
@media (max-width: 800px){
    ._container{
        margin-left:var(--sidebarMediumWidth)
    }
}
._sidebar-hidden ._container{
    margin-left:0
}
body:not(._native-scrollbars) ._container{
    -webkit-margin-end:-1px
}
._content{
    position:relative;
    height:100%;
    overflow-y:scroll;
    margin-left:.875rem;
    padding:1.125rem 1.5rem 0;
    font-size:.875rem;
    pointer-events:auto;
    -webkit-overflow-scrolling:touch
}
/* for block of numbers */
.hljs-ln-numbers {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center!important;
    color: #069!important;
    border-right: 3px solid #CCC!important;
    vertical-align: top!important;
    width: 40px!important;    
}

/* for block of code */
.hljs-ln-code {
    padding-left: 10px!important;
    background:#fff!important;
}

pre{display:block;overflow-x:auto;background:#f3f3f3;color:#444;border: 2px solid #ccc;}
.hljs {
  /* var(--highlight-color) */
  color: #2f3337;
  /* var(--highlight-bg) */
  background: #f6f6f6;
}

.hljs-subst {
  /* var(--highlight-color) */
  color: #2f3337;
}

.hljs-comment {
  /* var(--highlight-comment) */
  color: #656e77;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-meta .hljs-keyword,
.hljs-doctag,
.hljs-section {
  /* var(--highlight-keyword) */
  color: #015692;
}

.hljs-attr {
  /* var(--highlight-attribute); */
  color: #015692;
}

.hljs-attribute {
  /* var(--highlight-symbol) */
  color: #803378;
}

.hljs-name,
.hljs-type,
.hljs-number,
.hljs-selector-id,
.hljs-quote,
.hljs-template-tag {
  /* var(--highlight-namespace) */
  color: #b75501;
}

.hljs-selector-class {
  /* var(--highlight-keyword) */
  color: #015692;
}

.hljs-string,
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr {
  /* var(--highlight-variable) */
  color: #54790d;
}

.hljs-meta,
.hljs-selector-pseudo {
  /* var(--highlight-keyword) */
  color: #015692;
}

.hljs-built_in,
.hljs-title,
.hljs-literal {
  /* var(--highlight-literal) */
  color: #b75501;
}

.hljs-bullet,
.hljs-code {
  /* var(--highlight-punctuation) */
  color: #535a60;
}

.hljs-meta .hljs-string {
  /* var(--highlight-variable) */
  color: #54790d;
}

.hljs-deletion {
  /* var(--highlight-deletion) */
  color: #c02d2e;
}

.hljs-addition {
  /* var(--highlight-addition) */
  color: #2f6f44;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-formula,
.hljs-operator,
.hljs-params,
.hljs-property,
.hljs-punctuation,
.hljs-tag {
  /* purposely ignored */
}
.hljs-ln{
    width:100%;
}