
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d42722880bc814e8e5d9215b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a82920f66ce305662389577f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e2f49c5c50ed891a13a3eb54.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_adb9a4e8e34de854a826aa55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.359989px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.254880px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-13.844874px;}
.ws4b{word-spacing:-13.018315px;}
.ws2a{word-spacing:-12.610075px;}
.ws4a{word-spacing:-12.409915px;}
.ws23{word-spacing:-11.158556px;}
.ws4d{word-spacing:-9.607676px;}
.ws1d{word-spacing:-2.208871px;}
.wsd{word-spacing:-0.740139px;}
.ws48{word-spacing:-0.730069px;}
.ws40{word-spacing:-0.397127px;}
.ws19{word-spacing:-0.354942px;}
.ws44{word-spacing:-0.349862px;}
.ws1c{word-spacing:-0.012519px;}
.ws27{word-spacing:-0.005035px;}
.ws51{word-spacing:0.000000px;}
.ws15{word-spacing:0.228251px;}
.ws3a{word-spacing:0.233286px;}
.ws22{word-spacing:0.301689px;}
.ws3d{word-spacing:0.471608px;}
.ws6{word-spacing:0.699859px;}
.ws41{word-spacing:0.715009px;}
.ws2e{word-spacing:0.948250px;}
.wsb{word-spacing:0.953195px;}
.ws50{word-spacing:1.350735px;}
.ws3e{word-spacing:1.435008px;}
.ws42{word-spacing:1.668249px;}
.ws0{word-spacing:2.154962px;}
.ws5{word-spacing:2.388248px;}
.ws1b{word-spacing:3.108247px;}
.ws14{word-spacing:3.351604px;}
.ws25{word-spacing:3.594960px;}
.ws1{word-spacing:3.828246px;}
.ws3c{word-spacing:4.791602px;}
.ws47{word-spacing:5.268244px;}
.ws2d{word-spacing:5.410085px;}
.wsf{word-spacing:6.474956px;}
.ws2c{word-spacing:7.428241px;}
.ws46{word-spacing:7.904839px;}
.ws2b{word-spacing:8.218861px;}
.ws38{word-spacing:8.619848px;}
.ws24{word-spacing:8.644705px;}
.wsa{word-spacing:9.588238px;}
.ws31{word-spacing:10.069916px;}
.ws12{word-spacing:10.308237px;}
.ws17{word-spacing:10.789915px;}
.ws4f{word-spacing:10.846074px;}
.ws8{word-spacing:11.028236px;}
.ws32{word-spacing:11.345030px;}
.ws43{word-spacing:11.507465px;}
.ws3{word-spacing:11.509914px;}
.ws33{word-spacing:11.514949px;}
.ws26{word-spacing:11.748235px;}
.ws45{word-spacing:12.235039px;}
.wse{word-spacing:12.944877px;}
.ws1a{word-spacing:12.954856px;}
.ws7{word-spacing:13.193268px;}
.ws1e{word-spacing:13.431590px;}
.ws4{word-spacing:13.674946px;}
.ws3b{word-spacing:14.389910px;}
.ws16{word-spacing:14.871588px;}
.ws9{word-spacing:15.353265px;}
.ws18{word-spacing:15.829908px;}
.ws34{word-spacing:16.068229px;}
.ws20{word-spacing:17.926537px;}
.ws10{word-spacing:17.979835px;}
.ws4e{word-spacing:18.203038px;}
.ws3f{word-spacing:18.704824px;}
.ws1f{word-spacing:18.953306px;}
.ws11{word-spacing:19.419833px;}
.ws39{word-spacing:19.429903px;}
.ws36{word-spacing:19.731456px;}
.ws37{word-spacing:20.154937px;}
.wsc{word-spacing:20.621510px;}
.ws21{word-spacing:20.705017px;}
.ws2{word-spacing:20.874936px;}
.ws28{word-spacing:23.346737px;}
.ws29{word-spacing:23.864159px;}
.ws13{word-spacing:23.993298px;}
.ws2f{word-spacing:25.025057px;}
.ws30{word-spacing:25.671618px;}
.ws35{word-spacing:74.859846px;}
.ws4c{word-spacing:167.124932px;}
._4{margin-left:-5.618849px;}
._2{margin-left:-3.551749px;}
._3{margin-left:-2.316616px;}
._0{margin-left:-1.311061px;}
._1{width:1.176678px;}
._19{width:7.676540px;}
._18{width:11.839448px;}
._e{width:13.183077px;}
._c{width:14.800329px;}
._9{width:16.028000px;}
._5{width:17.878139px;}
._13{width:19.085039px;}
._f{width:20.244160px;}
._12{width:22.323025px;}
._b{width:23.521693px;}
._7{width:25.661523px;}
._8{width:27.434855px;}
._a{width:29.276372px;}
._10{width:30.782973px;}
._d{width:32.161718px;}
._17{width:33.517857px;}
._6{width:34.679155px;}
._11{width:37.917969px;}
._14{width:39.427706px;}
._16{width:40.611656px;}
._15{width:89.122135px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.359989px;}
.fs7{font-size:34.559986px;}
.fs4{font-size:38.879984px;}
.fs6{font-size:44.639982px;}
.fs2{font-size:45.359982px;}
.fs5{font-size:48.239981px;}
.fs3{font-size:49.679980px;}
.fs1{font-size:66.239974px;}
.fs0{font-size:91.439963px;}
.y0{bottom:0.000000px;}
.y42{bottom:60.060276px;}
.y41{bottom:73.740271px;}
.y40{bottom:87.420265px;}
.y6e{bottom:96.960261px;}
.y3f{bottom:101.100260px;}
.y6d{bottom:105.240258px;}
.y6c{bottom:113.520255px;}
.y3e{bottom:114.780254px;}
.y3d{bottom:142.319943px;}
.y3c{bottom:155.819938px;}
.y3b{bottom:169.319932px;}
.y3a{bottom:183.179927px;}
.y53{bottom:203.879918px;}
.y39{bottom:210.359916px;}
.y52{bottom:217.559913px;}
.y38{bottom:224.039910px;}
.y51{bottom:231.239908px;}
.y37{bottom:237.719905px;}
.y50{bottom:244.919902px;}
.y4f{bottom:258.419897px;}
.y36{bottom:265.079894px;}
.y35{bottom:278.759888px;}
.y4e{bottom:285.779886px;}
.y34{bottom:292.439883px;}
.y4d{bottom:299.459880px;}
.y33{bottom:306.119878px;}
.y4c{bottom:313.139875px;}
.y32{bottom:319.799872px;}
.y4b{bottom:326.819869px;}
.y4a{bottom:340.499864px;}
.y31{bottom:350.399860px;}
.y49{bottom:367.859853px;}
.y30{bottom:368.039853px;}
.y48{bottom:381.539847px;}
.y2f{bottom:381.719847px;}
.y47{bottom:395.039842px;}
.y2e{bottom:395.399842px;}
.y46{bottom:408.719837px;}
.y2d{bottom:409.079836px;}
.y2c{bottom:429.239828px;}
.y45{bottom:436.079826px;}
.y44{bottom:449.759820px;}
.y43{bottom:463.439815px;}
.y2b{bottom:494.219802px;}
.y2a{bottom:507.719797px;}
.y29{bottom:521.399791px;}
.y28{bottom:535.079786px;}
.y27{bottom:548.759780px;}
.y26{bottom:562.439775px;}
.y65{bottom:608.879756px;}
.y64{bottom:627.059749px;}
.y20{bottom:637.679745px;}
.y1f{bottom:651.359739px;}
.y1e{bottom:664.859734px;}
.y1d{bottom:678.539729px;}
.y6b{bottom:689.159724px;}
.y66{bottom:697.259721px;}
.y6a{bottom:705.719718px;}
.y1c{bottom:705.899718px;}
.y1b{bottom:719.579712px;}
.y69{bottom:726.959709px;}
.y1a{bottom:733.259707px;}
.y68{bottom:743.699703px;}
.y19{bottom:746.939701px;}
.y67{bottom:760.259696px;}
.y18{bottom:760.619696px;}
.y17{bottom:774.299690px;}
.y16{bottom:787.979685px;}
.y15{bottom:801.479679px;}
.y55{bottom:811.919675px;}
.y5d{bottom:823.079671px;}
.y54{bottom:825.059670px;}
.y14{bottom:828.839668px;}
.y13{bottom:842.519663px;}
.y12{bottom:856.199658px;}
.y11{bottom:869.879652px;}
.y5c{bottom:872.039651px;}
.y57{bottom:877.259649px;}
.y10{bottom:883.559647px;}
.y5b{bottom:888.599645px;}
.y56{bottom:893.819642px;}
.yf{bottom:897.239641px;}
.y63{bottom:899.579640px;}
.y5a{bottom:900.659640px;}
.y5f{bottom:901.199640px;}
.y62{bottom:904.619638px;}
.ye{bottom:910.919636px;}
.y59{bottom:917.399633px;}
.y5e{bottom:917.759633px;}
.y61{bottom:921.359631px;}
.yd{bottom:924.599630px;}
.y58{bottom:929.279628px;}
.y60{bottom:937.919625px;}
.yc{bottom:951.779619px;}
.yb{bottom:965.459614px;}
.y25{bottom:968.699613px;}
.ya{bottom:979.139608px;}
.y9{bottom:992.819603px;}
.y24{bottom:996.959601px;}
.y8{bottom:1006.499597px;}
.y23{bottom:1010.639596px;}
.y7{bottom:1020.179592px;}
.y22{bottom:1024.319590px;}
.y6{bottom:1033.859586px;}
.y21{bottom:1037.999585px;}
.y5{bottom:1109.099556px;}
.y4{bottom:1128.899548px;}
.y3{bottom:1148.699541px;}
.y2{bottom:1169.399532px;}
.y1{bottom:1196.759521px;}
.ha{height:20.279523px;}
.h6{height:28.818270px;}
.h8{height:33.044049px;}
.h3{height:33.577018px;}
.h5{height:33.621315px;}
.h7{height:35.756001px;}
.h4{height:36.823345px;}
.h2{height:48.580293px;}
.h9{height:60.404038px;}
.h1{height:95.369024px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:25.019990px;}
.x6{left:26.459989px;}
.xb{left:32.399987px;}
.x8{left:48.599981px;}
.x1{left:165.239934px;}
.xa{left:174.959930px;}
.x3{left:250.019900px;}
.x2{left:251.099900px;}
.x4{left:424.439830px;}
.x5{left:425.699830px;}
.x7{left:454.319818px;}
.xc{left:468.359813px;}
.x10{left:475.919810px;}
.xf{left:480.419808px;}
.xe{left:506.519797px;}
.xd{left:509.939796px;}
.x11{left:521.999791px;}
.x21{left:529.376788px;}
.x12{left:541.439783px;}
.x1d{left:575.279770px;}
.x1c{left:606.953907px;}
.x14{left:615.959754px;}
.x13{left:620.999752px;}
.x1b{left:635.399746px;}
.x1e{left:643.319743px;}
.x1f{left:659.159736px;}
.x17{left:673.559731px;}
.x16{left:681.119728px;}
.x15{left:686.699725px;}
.x18{left:727.919709px;}
.x19{left:743.759702px;}
.x20{left:748.619701px;}
.x1a{left:801.539679px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.319990pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.226560pt;}
.ws49{word-spacing:-12.306555pt;}
.ws4b{word-spacing:-11.571835pt;}
.ws2a{word-spacing:-11.208956pt;}
.ws4a{word-spacing:-11.031036pt;}
.ws23{word-spacing:-9.918716pt;}
.ws4d{word-spacing:-8.540157pt;}
.ws1d{word-spacing:-1.963441pt;}
.wsd{word-spacing:-0.657901pt;}
.ws48{word-spacing:-0.648950pt;}
.ws40{word-spacing:-0.353001pt;}
.ws19{word-spacing:-0.315504pt;}
.ws44{word-spacing:-0.310988pt;}
.ws1c{word-spacing:-0.011128pt;}
.ws27{word-spacing:-0.004476pt;}
.ws51{word-spacing:0.000000pt;}
.ws15{word-spacing:0.202890pt;}
.ws3a{word-spacing:0.207366pt;}
.ws22{word-spacing:0.268168pt;}
.ws3d{word-spacing:0.419207pt;}
.ws6{word-spacing:0.622097pt;}
.ws41{word-spacing:0.635564pt;}
.ws2e{word-spacing:0.842889pt;}
.wsb{word-spacing:0.847284pt;}
.ws50{word-spacing:1.200654pt;}
.ws3e{word-spacing:1.275563pt;}
.ws42{word-spacing:1.482888pt;}
.ws0{word-spacing:1.915522pt;}
.ws5{word-spacing:2.122887pt;}
.ws1b{word-spacing:2.762887pt;}
.ws14{word-spacing:2.979203pt;}
.ws25{word-spacing:3.195520pt;}
.ws1{word-spacing:3.402886pt;}
.ws3c{word-spacing:4.259201pt;}
.ws47{word-spacing:4.682884pt;}
.ws2d{word-spacing:4.808964pt;}
.wsf{word-spacing:5.755516pt;}
.ws2c{word-spacing:6.602881pt;}
.ws46{word-spacing:7.026523pt;}
.ws2b{word-spacing:7.305655pt;}
.ws38{word-spacing:7.662087pt;}
.ws24{word-spacing:7.684183pt;}
.wsa{word-spacing:8.522879pt;}
.ws31{word-spacing:8.951036pt;}
.ws12{word-spacing:9.162878pt;}
.ws17{word-spacing:9.591036pt;}
.ws4f{word-spacing:9.640955pt;}
.ws8{word-spacing:9.802877pt;}
.ws32{word-spacing:10.084471pt;}
.ws43{word-spacing:10.228857pt;}
.ws3{word-spacing:10.231035pt;}
.ws33{word-spacing:10.235510pt;}
.ws26{word-spacing:10.442876pt;}
.ws45{word-spacing:10.875590pt;}
.wse{word-spacing:11.506557pt;}
.ws1a{word-spacing:11.515428pt;}
.ws7{word-spacing:11.727350pt;}
.ws1e{word-spacing:11.939191pt;}
.ws4{word-spacing:12.155507pt;}
.ws3b{word-spacing:12.791031pt;}
.ws16{word-spacing:13.219189pt;}
.ws9{word-spacing:13.647347pt;}
.ws18{word-spacing:14.071029pt;}
.ws34{word-spacing:14.282870pt;}
.ws20{word-spacing:15.934700pt;}
.ws10{word-spacing:15.982076pt;}
.ws4e{word-spacing:16.180479pt;}
.ws3f{word-spacing:16.626510pt;}
.ws1f{word-spacing:16.847383pt;}
.ws11{word-spacing:17.262074pt;}
.ws39{word-spacing:17.271025pt;}
.ws36{word-spacing:17.539072pt;}
.ws37{word-spacing:17.915499pt;}
.wsc{word-spacing:18.330231pt;}
.ws21{word-spacing:18.404460pt;}
.ws2{word-spacing:18.555498pt;}
.ws28{word-spacing:20.752655pt;}
.ws29{word-spacing:21.212585pt;}
.ws13{word-spacing:21.327376pt;}
.ws2f{word-spacing:22.244495pt;}
.ws30{word-spacing:22.819216pt;}
.ws35{word-spacing:66.542085pt;}
.ws4c{word-spacing:148.555495pt;}
._4{margin-left:-4.994532pt;}
._2{margin-left:-3.157110pt;}
._3{margin-left:-2.059214pt;}
._0{margin-left:-1.165387pt;}
._1{width:1.045936pt;}
._19{width:6.823591pt;}
._18{width:10.523954pt;}
._e{width:11.718291pt;}
._c{width:13.155848pt;}
._9{width:14.247111pt;}
._5{width:15.891679pt;}
._13{width:16.964479pt;}
._f{width:17.994808pt;}
._12{width:19.842689pt;}
._b{width:20.908172pt;}
._7{width:22.810243pt;}
._8{width:24.386538pt;}
._a{width:26.023442pt;}
._10{width:27.362642pt;}
._d{width:28.588194pt;}
._17{width:29.793650pt;}
._6{width:30.825916pt;}
._11{width:33.704862pt;}
._14{width:35.046850pt;}
._16{width:36.099250pt;}
._15{width:79.219675pt;}
.fs8{font-size:24.319990pt;}
.fs7{font-size:30.719988pt;}
.fs4{font-size:34.559986pt;}
.fs6{font-size:39.679984pt;}
.fs2{font-size:40.319984pt;}
.fs5{font-size:42.879983pt;}
.fs3{font-size:44.159982pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:81.279967pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:53.386912pt;}
.y41{bottom:65.546907pt;}
.y40{bottom:77.706902pt;}
.y6e{bottom:86.186899pt;}
.y3f{bottom:89.866897pt;}
.y6d{bottom:93.546896pt;}
.y6c{bottom:100.906893pt;}
.y3e{bottom:102.026893pt;}
.y3d{bottom:126.506616pt;}
.y3c{bottom:138.506611pt;}
.y3b{bottom:150.506606pt;}
.y3a{bottom:162.826602pt;}
.y53{bottom:181.226594pt;}
.y39{bottom:186.986592pt;}
.y52{bottom:193.386589pt;}
.y38{bottom:199.146587pt;}
.y51{bottom:205.546584pt;}
.y37{bottom:211.306582pt;}
.y50{bottom:217.706580pt;}
.y4f{bottom:229.706575pt;}
.y36{bottom:235.626572pt;}
.y35{bottom:247.786568pt;}
.y4e{bottom:254.026565pt;}
.y34{bottom:259.946563pt;}
.y4d{bottom:266.186560pt;}
.y33{bottom:272.106558pt;}
.y4c{bottom:278.346555pt;}
.y32{bottom:284.266553pt;}
.y4b{bottom:290.506550pt;}
.y4a{bottom:302.666546pt;}
.y31{bottom:311.466542pt;}
.y49{bottom:326.986536pt;}
.y30{bottom:327.146536pt;}
.y48{bottom:339.146531pt;}
.y2f{bottom:339.306531pt;}
.y47{bottom:351.146526pt;}
.y2e{bottom:351.466526pt;}
.y46{bottom:363.306521pt;}
.y2d{bottom:363.626521pt;}
.y2c{bottom:381.546514pt;}
.y45{bottom:387.626512pt;}
.y44{bottom:399.786507pt;}
.y43{bottom:411.946502pt;}
.y2b{bottom:439.306491pt;}
.y2a{bottom:451.306486pt;}
.y29{bottom:463.466481pt;}
.y28{bottom:475.626476pt;}
.y27{bottom:487.786472pt;}
.y26{bottom:499.946467pt;}
.y65{bottom:541.226450pt;}
.y64{bottom:557.386444pt;}
.y20{bottom:566.826440pt;}
.y1f{bottom:578.986435pt;}
.y1e{bottom:590.986430pt;}
.y1d{bottom:603.146425pt;}
.y6b{bottom:612.586422pt;}
.y66{bottom:619.786419pt;}
.y6a{bottom:627.306416pt;}
.y1c{bottom:627.466416pt;}
.y1b{bottom:639.626411pt;}
.y69{bottom:646.186408pt;}
.y1a{bottom:651.786406pt;}
.y68{bottom:661.066402pt;}
.y19{bottom:663.946401pt;}
.y67{bottom:675.786396pt;}
.y18{bottom:676.106396pt;}
.y17{bottom:688.266391pt;}
.y16{bottom:700.426386pt;}
.y15{bottom:712.426382pt;}
.y55{bottom:721.706378pt;}
.y5d{bottom:731.626374pt;}
.y54{bottom:733.386373pt;}
.y14{bottom:736.746372pt;}
.y13{bottom:748.906367pt;}
.y12{bottom:761.066362pt;}
.y11{bottom:773.226357pt;}
.y5c{bottom:775.146357pt;}
.y57{bottom:779.786355pt;}
.y10{bottom:785.386353pt;}
.y5b{bottom:789.866351pt;}
.y56{bottom:794.506349pt;}
.yf{bottom:797.546348pt;}
.y63{bottom:799.626347pt;}
.y5a{bottom:800.586346pt;}
.y5f{bottom:801.066346pt;}
.y62{bottom:804.106345pt;}
.ye{bottom:809.706343pt;}
.y59{bottom:815.466340pt;}
.y5e{bottom:815.786340pt;}
.y61{bottom:818.986339pt;}
.yd{bottom:821.866338pt;}
.y58{bottom:826.026336pt;}
.y60{bottom:833.706333pt;}
.yc{bottom:846.026328pt;}
.yb{bottom:858.186323pt;}
.y25{bottom:861.066322pt;}
.ya{bottom:870.346319pt;}
.y9{bottom:882.506314pt;}
.y24{bottom:886.186312pt;}
.y8{bottom:894.666309pt;}
.y23{bottom:898.346307pt;}
.y7{bottom:906.826304pt;}
.y22{bottom:910.506302pt;}
.y6{bottom:918.986299pt;}
.y21{bottom:922.666298pt;}
.y5{bottom:985.866272pt;}
.y4{bottom:1003.466265pt;}
.y3{bottom:1021.066258pt;}
.y2{bottom:1039.466251pt;}
.y1{bottom:1063.786241pt;}
.ha{height:18.026243pt;}
.h6{height:25.616240pt;}
.h8{height:29.372488pt;}
.h3{height:29.846238pt;}
.h5{height:29.885613pt;}
.h7{height:31.783112pt;}
.h4{height:32.731862pt;}
.h2{height:43.182483pt;}
.h9{height:53.692479pt;}
.h1{height:84.772466pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:22.239991pt;}
.x6{left:23.519991pt;}
.xb{left:28.799988pt;}
.x8{left:43.199983pt;}
.x1{left:146.879941pt;}
.xa{left:155.519938pt;}
.x3{left:222.239911pt;}
.x2{left:223.199911pt;}
.x4{left:377.279849pt;}
.x5{left:378.399849pt;}
.x7{left:403.839838pt;}
.xc{left:416.319833pt;}
.x10{left:423.039831pt;}
.xf{left:427.039829pt;}
.xe{left:450.239820pt;}
.xd{left:453.279819pt;}
.x11{left:463.999814pt;}
.x21{left:470.557145pt;}
.x12{left:481.279807pt;}
.x1d{left:511.359795pt;}
.x1c{left:539.514584pt;}
.x14{left:547.519781pt;}
.x13{left:551.999779pt;}
.x1b{left:564.799774pt;}
.x1e{left:571.839771pt;}
.x1f{left:585.919766pt;}
.x17{left:598.719761pt;}
.x16{left:605.439758pt;}
.x15{left:610.399756pt;}
.x18{left:647.039741pt;}
.x19{left:661.119736pt;}
.x20{left:665.439734pt;}
.x1a{left:712.479715pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  