
    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_b18be50a23abb9aeeb170d80.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_1faccf0bde0514cfff1148a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.899000;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_c0eb03595eb4e21d8931fcd0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c0534925baa72d7d4fdf5cc3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6d585f2bc55bf73557d0063c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_a29514eb966f3f81d369fd9b.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:21.796382px;}
.ls1{letter-spacing:28.341842px;}
.ls3{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;}
}
.ws14{word-spacing:-18.183288px;}
.ws21{word-spacing:-3.652367px;}
.ws2f{word-spacing:-3.259639px;}
.ws4c{word-spacing:-3.168003px;}
.ws1e{word-spacing:-2.997821px;}
.ws4d{word-spacing:-2.801457px;}
.wsd{word-spacing:-2.605093px;}
.ws2c{word-spacing:-2.212365px;}
.ws4f{word-spacing:-1.099637px;}
.ws23{word-spacing:-0.706910px;}
.ws22{word-spacing:-0.445091px;}
.ws4b{word-spacing:-0.052364px;}
.ws18{word-spacing:0.000000px;}
.ws1d{word-spacing:0.340364px;}
.ws1c{word-spacing:0.602182px;}
.ws9{word-spacing:0.667637px;}
.ws44{word-spacing:0.733092px;}
.ws10{word-spacing:0.890183px;}
.ws51{word-spacing:0.929455px;}
.ws47{word-spacing:0.994910px;}
.ws46{word-spacing:1.086546px;}
.ws43{word-spacing:1.544729px;}
.ws4e{word-spacing:1.584001px;}
.ws4a{word-spacing:1.911274px;}
.wsf{word-spacing:2.002911px;}
.ws49{word-spacing:2.199275px;}
.ws48{word-spacing:2.434911px;}
.wsb{word-spacing:2.696730px;}
.ws26{word-spacing:2.958548px;}
.ws41{word-spacing:3.024003px;}
.ws2b{word-spacing:3.089457px;}
.ws27{word-spacing:3.351276px;}
.ws7{word-spacing:3.547639px;}
.ws6{word-spacing:3.613094px;}
.wse{word-spacing:3.678549px;}
.ws3d{word-spacing:4.005822px;}
.ws25{word-spacing:4.333095px;}
.wsa{word-spacing:4.464004px;}
.ws8{word-spacing:4.483200px;}
.ws13{word-spacing:4.791277px;}
.ws24{word-spacing:5.118550px;}
.ws2{word-spacing:5.379825px;}
.ws19{word-spacing:5.707641px;}
.ws3e{word-spacing:5.799278px;}
.wsc{word-spacing:6.165823px;}
.ws3a{word-spacing:6.558551px;}
.ws15{word-spacing:6.624006px;}
.ws20{word-spacing:6.820369px;}
.ws39{word-spacing:6.951279px;}
.ws33{word-spacing:7.239279px;}
.ws2e{word-spacing:7.344006px;}
.ws11{word-spacing:7.370188px;}
.ws34{word-spacing:7.409461px;}
.ws42{word-spacing:7.540370px;}
.ws28{word-spacing:7.605825px;}
.ws40{word-spacing:7.959279px;}
.ws38{word-spacing:8.024734px;}
.ws3f{word-spacing:8.456734px;}
.ws1b{word-spacing:8.522189px;}
.ws45{word-spacing:8.718553px;}
.ws50{word-spacing:8.849462px;}
.ws37{word-spacing:8.980371px;}
.ws1a{word-spacing:9.569463px;}
.ws3{word-spacing:9.831281px;}
.ws16{word-spacing:9.988372px;}
.ws12{word-spacing:10.158554px;}
.ws36{word-spacing:10.354918px;}
.ws32{word-spacing:10.682191px;}
.ws2a{word-spacing:11.140373px;}
.ws5{word-spacing:11.205828px;}
.ws3c{word-spacing:11.336737px;}
.ws52{word-spacing:11.860374px;}
.ws31{word-spacing:12.384010px;}
.ws17{word-spacing:12.645829px;}
.ws4{word-spacing:12.907647px;}
.ws29{word-spacing:13.365829px;}
.ws1f{word-spacing:14.478558px;}
.ws2d{word-spacing:19.348380px;}
.ws1{word-spacing:23.384371px;}
.ws35{word-spacing:28.381115px;}
.ws0{word-spacing:31.091012px;}
.ws3b{word-spacing:31.195662px;}
.ws30{word-spacing:34.468392px;}
._a{margin-left:-6.281678px;}
._2{margin-left:-5.276561px;}
._14{margin-left:-4.189094px;}
._1{margin-left:-2.685602px;}
._4{margin-left:-1.636365px;}
._7{width:1.045310px;}
._0{width:2.685602px;}
._12{width:4.191058px;}
._17{width:16.298195px;}
._15{width:18.787434px;}
._9{width:20.685617px;}
._d{width:21.927291px;}
._f{width:24.543511px;}
._13{width:26.382131px;}
._c{width:28.544097px;}
._11{width:29.912752px;}
._8{width:32.009263px;}
._10{width:33.187446px;}
._e{width:36.654576px;}
._18{width:39.665488px;}
._1a{width:44.306873px;}
._19{width:45.421565px;}
._6{width:47.847313px;}
._16{width:51.512770px;}
._5{width:57.076411px;}
._b{width:80.697600px;}
._3{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1f{bottom:63.168000px;}
.y60{bottom:119.802000px;}
.y5f{bottom:140.125500px;}
.y5e{bottom:160.449000px;}
.y1e{bottom:165.393000px;}
.y5d{bottom:194.223000px;}
.y1d{bottom:196.284000px;}
.y5c{bottom:214.546500px;}
.y3b{bottom:231.742500px;}
.y1c{bottom:233.410500px;}
.y5b{bottom:234.870000px;}
.y3a{bottom:252.066000px;}
.y5a{bottom:268.644000px;}
.y39{bottom:272.391000px;}
.y1b{bottom:284.968500px;}
.y59{bottom:288.967500px;}
.y38{bottom:303.282000px;}
.y1a{bottom:305.292000px;}
.y58{bottom:309.291000px;}
.y19{bottom:325.617000px;}
.y57{bottom:343.065000px;}
.y18{bottom:345.940500px;}
.y37{bottom:347.101500px;}
.y56{bottom:363.388500px;}
.y17{bottom:366.264000px;}
.y36{bottom:367.425000px;}
.y55{bottom:383.712000px;}
.y7a{bottom:386.467500px;}
.y16{bottom:386.587500px;}
.y35{bottom:398.317500px;}
.y79{bottom:406.791000px;}
.y15{bottom:406.911000px;}
.y54{bottom:417.486000px;}
.y78{bottom:427.114500px;}
.y14{bottom:427.236000px;}
.y53{bottom:437.809500px;}
.y34{bottom:442.137000px;}
.y13{bottom:447.559500px;}
.y52{bottom:458.133000px;}
.y33{bottom:462.460500px;}
.y77{bottom:463.642500px;}
.y12{bottom:484.087500px;}
.y51{bottom:491.907000px;}
.y32{bottom:493.351500px;}
.y50{bottom:512.230500px;}
.y76{bottom:515.200500px;}
.y4f{bottom:532.554000px;}
.y75{bottom:535.525500px;}
.y11{bottom:535.645500px;}
.y31{bottom:537.171000px;}
.y74{bottom:555.849000px;}
.y10{bottom:555.969000px;}
.y30{bottom:557.494500px;}
.y4e{bottom:566.328000px;}
.y73{bottom:576.172500px;}
.yf{bottom:576.292500px;}
.y4d{bottom:586.651500px;}
.y2f{bottom:588.387000px;}
.y72{bottom:596.496000px;}
.ye{bottom:596.617500px;}
.y4c{bottom:606.975000px;}
.y71{bottom:616.819500px;}
.yd{bottom:616.941000px;}
.y2e{bottom:632.206500px;}
.y70{bottom:637.144500px;}
.yc{bottom:637.264500px;}
.y4b{bottom:643.503000px;}
.y2d{bottom:652.530000px;}
.yb{bottom:668.157000px;}
.y6f{bottom:673.672500px;}
.y2c{bottom:683.422500px;}
.y4a{bottom:695.061000px;}
.ya{bottom:711.975000px;}
.y49{bottom:715.384500px;}
.y6e{bottom:725.230500px;}
.y2b{bottom:727.240500px;}
.y9{bottom:732.300000px;}
.y48{bottom:735.709500px;}
.y6d{bottom:745.554000px;}
.y2a{bottom:747.565500px;}
.y8{bottom:752.623500px;}
.y47{bottom:756.033000px;}
.y6c{bottom:765.877500px;}
.y7{bottom:772.947000px;}
.y46{bottom:776.356500px;}
.y29{bottom:778.456500px;}
.y6{bottom:793.270500px;}
.y45{bottom:796.680000px;}
.y6b{bottom:799.651500px;}
.y5{bottom:813.594000px;}
.y6a{bottom:819.975000px;}
.y28{bottom:822.276000px;}
.y44{bottom:833.208000px;}
.y69{bottom:840.298500px;}
.y27{bottom:842.599500px;}
.y4{bottom:850.123500px;}
.y26{bottom:873.492000px;}
.y68{bottom:874.072500px;}
.y43{bottom:884.767500px;}
.y67{bottom:894.396000px;}
.y42{bottom:905.091000px;}
.y66{bottom:914.719500px;}
.y25{bottom:917.311500px;}
.y3{bottom:919.614000px;}
.y41{bottom:925.414500px;}
.y24{bottom:937.635000px;}
.y40{bottom:945.738000px;}
.y65{bottom:948.493500px;}
.y2{bottom:965.080500px;}
.y3f{bottom:966.061500px;}
.y23{bottom:968.526000px;}
.y64{bottom:968.817000px;}
.y3e{bottom:986.386500px;}
.y63{bottom:989.140500px;}
.y1{bottom:997.957500px;}
.y3d{bottom:1006.710000px;}
.y22{bottom:1012.345500px;}
.y62{bottom:1022.914500px;}
.y3c{bottom:1027.033500px;}
.y21{bottom:1032.669000px;}
.y61{bottom:1043.238000px;}
.y20{bottom:1063.561500px;}
.h4{height:46.865494px;}
.h6{height:49.090950px;}
.h2{height:49.781453px;}
.h5{height:50.211840px;}
.h3{height:60.254040px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:108.000000px;}
.x5{left:133.404000px;}
.x1{left:143.065500px;}
.x7{left:148.909500px;}
.x3{left:320.928000px;}
.x2{left:417.078000px;}
.x6{left:454.909500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:19.374562pt;}
.ls1{letter-spacing:25.192748pt;}
.ls3{letter-spacing:29.090933pt;}
.ws14{word-spacing:-16.162923pt;}
.ws21{word-spacing:-3.246548pt;}
.ws2f{word-spacing:-2.897457pt;}
.ws4c{word-spacing:-2.816002pt;}
.ws1e{word-spacing:-2.664729pt;}
.ws4d{word-spacing:-2.490184pt;}
.wsd{word-spacing:-2.315638pt;}
.ws2c{word-spacing:-1.966547pt;}
.ws4f{word-spacing:-0.977455pt;}
.ws23{word-spacing:-0.628364pt;}
.ws22{word-spacing:-0.395637pt;}
.ws4b{word-spacing:-0.046545pt;}
.ws18{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.302546pt;}
.ws1c{word-spacing:0.535273pt;}
.ws9{word-spacing:0.593455pt;}
.ws44{word-spacing:0.651637pt;}
.ws10{word-spacing:0.791273pt;}
.ws51{word-spacing:0.826183pt;}
.ws47{word-spacing:0.884364pt;}
.ws46{word-spacing:0.965819pt;}
.ws43{word-spacing:1.373092pt;}
.ws4e{word-spacing:1.408001pt;}
.ws4a{word-spacing:1.698911pt;}
.wsf{word-spacing:1.780365pt;}
.ws49{word-spacing:1.954911pt;}
.ws48{word-spacing:2.164365pt;}
.wsb{word-spacing:2.397093pt;}
.ws26{word-spacing:2.629820pt;}
.ws41{word-spacing:2.688002pt;}
.ws2b{word-spacing:2.746184pt;}
.ws27{word-spacing:2.978912pt;}
.ws7{word-spacing:3.153457pt;}
.ws6{word-spacing:3.211639pt;}
.wse{word-spacing:3.269821pt;}
.ws3d{word-spacing:3.560730pt;}
.ws25{word-spacing:3.851640pt;}
.wsa{word-spacing:3.968003pt;}
.ws8{word-spacing:3.985067pt;}
.ws13{word-spacing:4.258913pt;}
.ws24{word-spacing:4.549822pt;}
.ws2{word-spacing:4.782067pt;}
.ws19{word-spacing:5.073459pt;}
.ws3e{word-spacing:5.154913pt;}
.wsc{word-spacing:5.480732pt;}
.ws3a{word-spacing:5.829823pt;}
.ws15{word-spacing:5.888005pt;}
.ws20{word-spacing:6.062551pt;}
.ws39{word-spacing:6.178914pt;}
.ws33{word-spacing:6.434914pt;}
.ws2e{word-spacing:6.528005pt;}
.ws11{word-spacing:6.551278pt;}
.ws34{word-spacing:6.586187pt;}
.ws42{word-spacing:6.702551pt;}
.ws28{word-spacing:6.760733pt;}
.ws40{word-spacing:7.074915pt;}
.ws38{word-spacing:7.133097pt;}
.ws3f{word-spacing:7.517097pt;}
.ws1b{word-spacing:7.575279pt;}
.ws45{word-spacing:7.749825pt;}
.ws50{word-spacing:7.866188pt;}
.ws37{word-spacing:7.982552pt;}
.ws1a{word-spacing:8.506189pt;}
.ws3{word-spacing:8.738916pt;}
.ws16{word-spacing:8.878553pt;}
.ws12{word-spacing:9.029826pt;}
.ws36{word-spacing:9.204371pt;}
.ws32{word-spacing:9.495281pt;}
.ws2a{word-spacing:9.902554pt;}
.ws5{word-spacing:9.960736pt;}
.ws3c{word-spacing:10.077099pt;}
.ws52{word-spacing:10.542554pt;}
.ws31{word-spacing:11.008009pt;}
.ws17{word-spacing:11.240737pt;}
.ws4{word-spacing:11.473464pt;}
.ws29{word-spacing:11.880737pt;}
.ws1f{word-spacing:12.869829pt;}
.ws2d{word-spacing:17.198560pt;}
.ws1{word-spacing:20.786108pt;}
.ws35{word-spacing:25.227657pt;}
.ws0{word-spacing:27.636455pt;}
.ws3b{word-spacing:27.729478pt;}
.ws30{word-spacing:30.638571pt;}
._a{margin-left:-5.583714pt;}
._2{margin-left:-4.690276pt;}
._14{margin-left:-3.723639pt;}
._1{margin-left:-2.387202pt;}
._4{margin-left:-1.454547pt;}
._7{width:0.929164pt;}
._0{width:2.387202pt;}
._12{width:3.725385pt;}
._17{width:14.487285pt;}
._15{width:16.699941pt;}
._9{width:18.387215pt;}
._d{width:19.490925pt;}
._f{width:21.816454pt;}
._13{width:23.450783pt;}
._c{width:25.372531pt;}
._11{width:26.589113pt;}
._8{width:28.452678pt;}
._10{width:29.499952pt;}
._e{width:32.581845pt;}
._18{width:35.258211pt;}
._1a{width:39.383887pt;}
._19{width:40.374724pt;}
._6{width:42.530945pt;}
._16{width:45.789129pt;}
._5{width:50.734588pt;}
._b{width:71.731200pt;}
._3{width:86.077200pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:56.149333pt;}
.y60{bottom:106.490667pt;}
.y5f{bottom:124.556000pt;}
.y5e{bottom:142.621333pt;}
.y1e{bottom:147.016000pt;}
.y5d{bottom:172.642667pt;}
.y1d{bottom:174.474667pt;}
.y5c{bottom:190.708000pt;}
.y3b{bottom:205.993333pt;}
.y1c{bottom:207.476000pt;}
.y5b{bottom:208.773333pt;}
.y3a{bottom:224.058667pt;}
.y5a{bottom:238.794667pt;}
.y39{bottom:242.125333pt;}
.y1b{bottom:253.305333pt;}
.y59{bottom:256.860000pt;}
.y38{bottom:269.584000pt;}
.y1a{bottom:271.370667pt;}
.y58{bottom:274.925333pt;}
.y19{bottom:289.437333pt;}
.y57{bottom:304.946667pt;}
.y18{bottom:307.502667pt;}
.y37{bottom:308.534667pt;}
.y56{bottom:323.012000pt;}
.y17{bottom:325.568000pt;}
.y36{bottom:326.600000pt;}
.y55{bottom:341.077333pt;}
.y7a{bottom:343.526667pt;}
.y16{bottom:343.633333pt;}
.y35{bottom:354.060000pt;}
.y79{bottom:361.592000pt;}
.y15{bottom:361.698667pt;}
.y54{bottom:371.098667pt;}
.y78{bottom:379.657333pt;}
.y14{bottom:379.765333pt;}
.y53{bottom:389.164000pt;}
.y34{bottom:393.010667pt;}
.y13{bottom:397.830667pt;}
.y52{bottom:407.229333pt;}
.y33{bottom:411.076000pt;}
.y77{bottom:412.126667pt;}
.y12{bottom:430.300000pt;}
.y51{bottom:437.250667pt;}
.y32{bottom:438.534667pt;}
.y50{bottom:455.316000pt;}
.y76{bottom:457.956000pt;}
.y4f{bottom:473.381333pt;}
.y75{bottom:476.022667pt;}
.y11{bottom:476.129333pt;}
.y31{bottom:477.485333pt;}
.y74{bottom:494.088000pt;}
.y10{bottom:494.194667pt;}
.y30{bottom:495.550667pt;}
.y4e{bottom:503.402667pt;}
.y73{bottom:512.153333pt;}
.yf{bottom:512.260000pt;}
.y4d{bottom:521.468000pt;}
.y2f{bottom:523.010667pt;}
.y72{bottom:530.218667pt;}
.ye{bottom:530.326667pt;}
.y4c{bottom:539.533333pt;}
.y71{bottom:548.284000pt;}
.yd{bottom:548.392000pt;}
.y2e{bottom:561.961333pt;}
.y70{bottom:566.350667pt;}
.yc{bottom:566.457333pt;}
.y4b{bottom:572.002667pt;}
.y2d{bottom:580.026667pt;}
.yb{bottom:593.917333pt;}
.y6f{bottom:598.820000pt;}
.y2c{bottom:607.486667pt;}
.y4a{bottom:617.832000pt;}
.ya{bottom:632.866667pt;}
.y49{bottom:635.897333pt;}
.y6e{bottom:644.649333pt;}
.y2b{bottom:646.436000pt;}
.y9{bottom:650.933333pt;}
.y48{bottom:653.964000pt;}
.y6d{bottom:662.714667pt;}
.y2a{bottom:664.502667pt;}
.y8{bottom:668.998667pt;}
.y47{bottom:672.029333pt;}
.y6c{bottom:680.780000pt;}
.y7{bottom:687.064000pt;}
.y46{bottom:690.094667pt;}
.y29{bottom:691.961333pt;}
.y6{bottom:705.129333pt;}
.y45{bottom:708.160000pt;}
.y6b{bottom:710.801333pt;}
.y5{bottom:723.194667pt;}
.y6a{bottom:728.866667pt;}
.y28{bottom:730.912000pt;}
.y44{bottom:740.629333pt;}
.y69{bottom:746.932000pt;}
.y27{bottom:748.977333pt;}
.y4{bottom:755.665333pt;}
.y26{bottom:776.437333pt;}
.y68{bottom:776.953333pt;}
.y43{bottom:786.460000pt;}
.y67{bottom:795.018667pt;}
.y42{bottom:804.525333pt;}
.y66{bottom:813.084000pt;}
.y25{bottom:815.388000pt;}
.y3{bottom:817.434667pt;}
.y41{bottom:822.590667pt;}
.y24{bottom:833.453333pt;}
.y40{bottom:840.656000pt;}
.y65{bottom:843.105333pt;}
.y2{bottom:857.849333pt;}
.y3f{bottom:858.721333pt;}
.y23{bottom:860.912000pt;}
.y64{bottom:861.170667pt;}
.y3e{bottom:876.788000pt;}
.y63{bottom:879.236000pt;}
.y1{bottom:887.073333pt;}
.y3d{bottom:894.853333pt;}
.y22{bottom:899.862667pt;}
.y62{bottom:909.257333pt;}
.y3c{bottom:912.918667pt;}
.y21{bottom:917.928000pt;}
.y61{bottom:927.322667pt;}
.y20{bottom:945.388000pt;}
.h4{height:41.658217pt;}
.h6{height:43.636400pt;}
.h2{height:44.250180pt;}
.h5{height:44.632747pt;}
.h3{height:53.559147pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:96.000000pt;}
.x5{left:118.581333pt;}
.x1{left:127.169333pt;}
.x7{left:132.364000pt;}
.x3{left:285.269333pt;}
.x2{left:370.736000pt;}
.x6{left:404.364000pt;}
}




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