
    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_1b0fbf497b68d664114e73a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_3ae29e4ffd1f5bc818d3cfaa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_efe739c9324baec1425267fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.453000;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_e62375be23c742c192753e0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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:ff5;src:url('chunks/assets/font_07d0e5c11b8ac172078eaf96.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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:ff6;src:url('chunks/assets/font_4d25092d65ea5124d850a869.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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:ff7;src:url('chunks/assets/font_18cd8a77fa12d52ea63ec057.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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:ff8;src:url('chunks/assets/font_c4a99d408dfdfa8391db6a5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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:ff9;src:url('chunks/assets/font_4948cbaf5ef4dbc664e7490d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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:ffa;src:url('chunks/assets/font_4bfb3e9c0636e9e7529fba17.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.389000;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:ffb;src:url('chunks/assets/font_dbf84019eb6fc8334508d6d3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017668px;}
.ls0{letter-spacing:2.986053px;}
.ls3{letter-spacing:28.930933px;}
.ls2{letter-spacing:32.727300px;}
.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;}
}
.wse{word-spacing:-22.416000px;}
.ws15{word-spacing:-18.183288px;}
.ws17{word-spacing:-2.539638px;}
.ws2b{word-spacing:-1.361456px;}
.ws23{word-spacing:-1.099637px;}
.ws19{word-spacing:-0.065455px;}
.ws38{word-spacing:-0.059776px;}
.wsd{word-spacing:0.000000px;}
.ws1f{word-spacing:0.340364px;}
.ws22{word-spacing:1.584001px;}
.ws1c{word-spacing:2.500366px;}
.wsb{word-spacing:2.565820px;}
.ws36{word-spacing:2.642082px;}
.ws2a{word-spacing:2.827639px;}
.ws33{word-spacing:3.299613px;}
.ws35{word-spacing:3.359389px;}
.ws4{word-spacing:3.613094px;}
.ws1d{word-spacing:3.678549px;}
.ws16{word-spacing:3.809458px;}
.wsa{word-spacing:3.874912px;}
.wsf{word-spacing:4.162913px;}
.ws10{word-spacing:4.228367px;}
.ws12{word-spacing:4.483200px;}
.ws30{word-spacing:4.987641px;}
.ws2c{word-spacing:5.184004px;}
.ws32{word-spacing:5.576732px;}
.ws14{word-spacing:5.904005px;}
.ws13{word-spacing:6.100369px;}
.ws20{word-spacing:6.427642px;}
.ws18{word-spacing:6.689460px;}
.ws24{word-spacing:7.082188px;}
.ws28{word-spacing:7.409461px;}
.wsc{word-spacing:7.802188px;}
.ws2e{word-spacing:9.111280px;}
.ws9{word-spacing:9.176735px;}
.ws27{word-spacing:9.504008px;}
.ws8{word-spacing:9.831281px;}
.ws2f{word-spacing:9.896736px;}
.ws5{word-spacing:10.878555px;}
.ws29{word-spacing:11.009464px;}
.ws26{word-spacing:11.205828px;}
.ws7{word-spacing:12.449465px;}
.ws25{word-spacing:13.169466px;}
.ws31{word-spacing:13.365829px;}
.ws37{word-spacing:20.682358px;}
.ws34{word-spacing:21.339889px;}
.ws1e{word-spacing:23.367292px;}
.ws1a{word-spacing:24.756235px;}
.ws2{word-spacing:26.253619px;}
.ws21{word-spacing:27.594235px;}
.ws1b{word-spacing:29.389115px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws11{word-spacing:39.639306px;}
.ws1{word-spacing:54.432472px;}
.ws2d{word-spacing:58.281600px;}
.ws6{word-spacing:86.131977px;}
._3{margin-left:-8.822938px;}
._6{margin-left:-7.330915px;}
._4{margin-left:-5.432732px;}
._c{margin-left:-4.059974px;}
._1{margin-left:-2.223667px;}
._14{margin-left:-1.116307px;}
._13{width:1.050852px;}
._2{width:2.223667px;}
._0{width:4.461678px;}
._15{width:17.669164px;}
._17{width:19.569136px;}
._18{width:21.007348px;}
._1e{width:22.054622px;}
._5{width:26.316328px;}
._19{width:28.281755px;}
._1c{width:29.649145px;}
._21{width:32.697253px;}
._1a{width:34.165512px;}
._20{width:35.407360px;}
._16{width:38.812789px;}
._7{width:41.629126px;}
._1f{width:48.367371px;}
._1d{width:51.645469px;}
._1b{width:52.680218px;}
._8{width:60.545505px;}
._12{width:80.697600px;}
._10{width:935.869871px;}
._e{width:1366.953866px;}
._b{width:1404.588472px;}
._a{width:1485.295783px;}
._f{width:1722.959647px;}
._d{width:1808.639718px;}
._9{width:1874.492413px;}
._11{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2f{bottom:93.813000px;}
.y2e{bottom:176.005500px;}
.y52{bottom:183.145500px;}
.y2d{bottom:196.329000px;}
.y51{bottom:203.470500px;}
.y2c{bottom:216.652500px;}
.y50{bottom:223.794000px;}
.y2b{bottom:236.976000px;}
.y4f{bottom:244.117500px;}
.y4e{bottom:264.441000px;}
.y2a{bottom:272.326500px;}
.y4d{bottom:284.764500px;}
.y4c{bottom:305.089500px;}
.y29{bottom:315.844500px;}
.y28{bottom:341.331000px;}
.y4b{bottom:341.617500px;}
.y27{bottom:371.979000px;}
.y10{bottom:386.586000px;}
.y4a{bottom:387.198000px;}
.y26{bottom:404.503500px;}
.yf{bottom:406.909500px;}
.y49{bottom:407.521500px;}
.ye{bottom:427.233000px;}
.y25{bottom:437.026500px;}
.y48{bottom:445.777500px;}
.yd{bottom:447.558000px;}
.y47{bottom:466.101000px;}
.y24{bottom:467.676000px;}
.yc{bottom:467.881500px;}
.yb{bottom:488.205000px;}
.y46{bottom:499.875000px;}
.y23{bottom:503.025000px;}
.ya{bottom:508.528500px;}
.y45{bottom:533.649000px;}
.y22{bottom:546.543000px;}
.y9{bottom:548.280000px;}
.y21{bottom:566.866500px;}
.y44{bottom:571.905000px;}
.y8{bottom:585.003000px;}
.y20{bottom:587.191500px;}
.y43{bottom:592.228500px;}
.y1f{bottom:607.515000px;}
.y7{bottom:613.734000px;}
.y1e{bottom:627.838500px;}
.y42{bottom:628.756500px;}
.y1d{bottom:648.162000px;}
.y1c{bottom:668.485500px;}
.y41{bottom:674.337000px;}
.y40{bottom:694.662000px;}
.y1b{bottom:703.836000px;}
.y3f{bottom:714.985500px;}
.y6{bottom:730.344000px;}
.y3e{bottom:735.309000px;}
.y1a{bottom:747.354000px;}
.y3d{bottom:755.632500px;}
.y5{bottom:767.625000px;}
.y19{bottom:790.569000px;}
.y3c{bottom:792.160500px;}
.y4{bottom:812.457000px;}
.y18{bottom:827.256000px;}
.y3b{bottom:837.741000px;}
.y3{bottom:857.289000px;}
.y3a{bottom:858.066000px;}
.y17{bottom:863.944500px;}
.y39{bottom:878.389500px;}
.y38{bottom:898.713000px;}
.y16{bottom:900.631500px;}
.y2{bottom:902.121000px;}
.y37{bottom:919.036500px;}
.y15{bottom:937.318500px;}
.y36{bottom:955.564500px;}
.y14{bottom:974.005500px;}
.y35{bottom:1001.145000px;}
.y13{bottom:1010.694000px;}
.y34{bottom:1021.470000px;}
.y56{bottom:1023.561000px;}
.y55{bottom:1041.495000px;}
.y33{bottom:1041.793500px;}
.y12{bottom:1047.381000px;}
.y32{bottom:1062.117000px;}
.y54{bottom:1066.899000px;}
.y31{bottom:1082.440500px;}
.y11{bottom:1084.068000px;}
.y53{bottom:1084.831500px;}
.y1{bottom:1087.587000px;}
.y30{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.ha{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:61.631275px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x9{left:137.107500px;}
.x4{left:139.332000px;}
.x6{left:152.019000px;}
.xa{left:161.064000px;}
.x5{left:164.010000px;}
.x8{left:168.336000px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015705pt;}
.ls0{letter-spacing:2.654270pt;}
.ls3{letter-spacing:25.716385pt;}
.ls2{letter-spacing:29.090933pt;}
.wse{word-spacing:-19.925333pt;}
.ws15{word-spacing:-16.162923pt;}
.ws17{word-spacing:-2.257456pt;}
.ws2b{word-spacing:-1.210183pt;}
.ws23{word-spacing:-0.977455pt;}
.ws19{word-spacing:-0.058182pt;}
.ws38{word-spacing:-0.053134pt;}
.wsd{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.302546pt;}
.ws22{word-spacing:1.408001pt;}
.ws1c{word-spacing:2.222547pt;}
.wsb{word-spacing:2.280729pt;}
.ws36{word-spacing:2.348517pt;}
.ws2a{word-spacing:2.513457pt;}
.ws33{word-spacing:2.932989pt;}
.ws35{word-spacing:2.986123pt;}
.ws4{word-spacing:3.211639pt;}
.ws1d{word-spacing:3.269821pt;}
.ws16{word-spacing:3.386185pt;}
.wsa{word-spacing:3.444367pt;}
.wsf{word-spacing:3.700367pt;}
.ws10{word-spacing:3.758549pt;}
.ws12{word-spacing:3.985067pt;}
.ws30{word-spacing:4.433458pt;}
.ws2c{word-spacing:4.608004pt;}
.ws32{word-spacing:4.957095pt;}
.ws14{word-spacing:5.248004pt;}
.ws13{word-spacing:5.422550pt;}
.ws20{word-spacing:5.713459pt;}
.ws18{word-spacing:5.946187pt;}
.ws24{word-spacing:6.295278pt;}
.ws28{word-spacing:6.586187pt;}
.wsc{word-spacing:6.935279pt;}
.ws2e{word-spacing:8.098916pt;}
.ws9{word-spacing:8.157098pt;}
.ws27{word-spacing:8.448007pt;}
.ws8{word-spacing:8.738916pt;}
.ws2f{word-spacing:8.797098pt;}
.ws5{word-spacing:9.669826pt;}
.ws29{word-spacing:9.786190pt;}
.ws26{word-spacing:9.960736pt;}
.ws7{word-spacing:11.066191pt;}
.ws25{word-spacing:11.706192pt;}
.ws31{word-spacing:11.880737pt;}
.ws37{word-spacing:18.384318pt;}
.ws34{word-spacing:18.968790pt;}
.ws1e{word-spacing:20.770926pt;}
.ws1a{word-spacing:22.005542pt;}
.ws2{word-spacing:23.336550pt;}
.ws21{word-spacing:24.528209pt;}
.ws1b{word-spacing:26.123658pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws11{word-spacing:35.234938pt;}
.ws1{word-spacing:48.384419pt;}
.ws2d{word-spacing:51.805867pt;}
.ws6{word-spacing:76.561757pt;}
._3{margin-left:-7.842611pt;}
._6{margin-left:-6.516369pt;}
._4{margin-left:-4.829095pt;}
._c{margin-left:-3.608866pt;}
._1{margin-left:-1.976593pt;}
._14{margin-left:-0.992273pt;}
._13{width:0.934091pt;}
._2{width:1.976593pt;}
._0{width:3.965936pt;}
._15{width:15.705923pt;}
._17{width:17.394788pt;}
._18{width:18.673198pt;}
._1e{width:19.604108pt;}
._5{width:23.392291pt;}
._19{width:25.139338pt;}
._1c{width:26.354795pt;}
._21{width:29.064225pt;}
._1a{width:30.369344pt;}
._20{width:31.473209pt;}
._16{width:34.500257pt;}
._7{width:37.003667pt;}
._1f{width:42.993219pt;}
._1d{width:45.907083pt;}
._1b{width:46.826860pt;}
._8{width:53.818227pt;}
._12{width:71.731200pt;}
._10{width:831.884330pt;}
._e{width:1215.070103pt;}
._b{width:1248.523086pt;}
._a{width:1320.262918pt;}
._f{width:1531.519686pt;}
._d{width:1607.679749pt;}
._9{width:1666.215478pt;}
._11{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:83.389333pt;}
.y2e{bottom:156.449333pt;}
.y52{bottom:162.796000pt;}
.y2d{bottom:174.514667pt;}
.y51{bottom:180.862667pt;}
.y2c{bottom:192.580000pt;}
.y50{bottom:198.928000pt;}
.y2b{bottom:210.645333pt;}
.y4f{bottom:216.993333pt;}
.y4e{bottom:235.058667pt;}
.y2a{bottom:242.068000pt;}
.y4d{bottom:253.124000pt;}
.y4c{bottom:271.190667pt;}
.y29{bottom:280.750667pt;}
.y28{bottom:303.405333pt;}
.y4b{bottom:303.660000pt;}
.y27{bottom:330.648000pt;}
.y10{bottom:343.632000pt;}
.y4a{bottom:344.176000pt;}
.y26{bottom:359.558667pt;}
.yf{bottom:361.697333pt;}
.y49{bottom:362.241333pt;}
.ye{bottom:379.762667pt;}
.y25{bottom:388.468000pt;}
.y48{bottom:396.246667pt;}
.yd{bottom:397.829333pt;}
.y47{bottom:414.312000pt;}
.y24{bottom:415.712000pt;}
.yc{bottom:415.894667pt;}
.yb{bottom:433.960000pt;}
.y46{bottom:444.333333pt;}
.y23{bottom:447.133333pt;}
.ya{bottom:452.025333pt;}
.y45{bottom:474.354667pt;}
.y22{bottom:485.816000pt;}
.y9{bottom:487.360000pt;}
.y21{bottom:503.881333pt;}
.y44{bottom:508.360000pt;}
.y8{bottom:520.002667pt;}
.y20{bottom:521.948000pt;}
.y43{bottom:526.425333pt;}
.y1f{bottom:540.013333pt;}
.y7{bottom:545.541333pt;}
.y1e{bottom:558.078667pt;}
.y42{bottom:558.894667pt;}
.y1d{bottom:576.144000pt;}
.y1c{bottom:594.209333pt;}
.y41{bottom:599.410667pt;}
.y40{bottom:617.477333pt;}
.y1b{bottom:625.632000pt;}
.y3f{bottom:635.542667pt;}
.y6{bottom:649.194667pt;}
.y3e{bottom:653.608000pt;}
.y1a{bottom:664.314667pt;}
.y3d{bottom:671.673333pt;}
.y5{bottom:682.333333pt;}
.y19{bottom:702.728000pt;}
.y3c{bottom:704.142667pt;}
.y4{bottom:722.184000pt;}
.y18{bottom:735.338667pt;}
.y3b{bottom:744.658667pt;}
.y3{bottom:762.034667pt;}
.y3a{bottom:762.725333pt;}
.y17{bottom:767.950667pt;}
.y39{bottom:780.790667pt;}
.y38{bottom:798.856000pt;}
.y16{bottom:800.561333pt;}
.y2{bottom:801.885333pt;}
.y37{bottom:816.921333pt;}
.y15{bottom:833.172000pt;}
.y36{bottom:849.390667pt;}
.y14{bottom:865.782667pt;}
.y35{bottom:889.906667pt;}
.y13{bottom:898.394667pt;}
.y34{bottom:907.973333pt;}
.y56{bottom:909.832000pt;}
.y55{bottom:925.773333pt;}
.y33{bottom:926.038667pt;}
.y12{bottom:931.005333pt;}
.y32{bottom:944.104000pt;}
.y54{bottom:948.354667pt;}
.y31{bottom:962.169333pt;}
.y11{bottom:963.616000pt;}
.y53{bottom:964.294667pt;}
.y1{bottom:966.744000pt;}
.y30{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.ha{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:54.783356pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x9{left:121.873333pt;}
.x4{left:123.850667pt;}
.x6{left:135.128000pt;}
.xa{left:143.168000pt;}
.x5{left:145.786667pt;}
.x8{left:149.632000pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
}




    .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; }
  