
    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_55fd19b8413361478ab37ed7.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_58f68b489df89ee850c258a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_f69ef602ec1f26792e91e8dd.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_c7c0eb0bc9e9038c5606a7d3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ff40c6ed8e42c8c12874bb8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_b903b49d85826dbcb6501030.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.390000;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:19.922338px;}
.ls2{letter-spacing:19.928338px;}
.ls4{letter-spacing:29.890178px;}
.ls0{letter-spacing:39.590338px;}
.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;}
}
.ws13{word-spacing:-16.605662px;}
.ws34{word-spacing:-3.215927px;}
.ws36{word-spacing:-2.917049px;}
.ws3e{word-spacing:-2.558396px;}
.ws6{word-spacing:-1.721537px;}
.ws10{word-spacing:-1.661762px;}
.ws2f{word-spacing:-1.482435px;}
.ws39{word-spacing:-0.705352px;}
.ws3{word-spacing:-0.526025px;}
.ws1{word-spacing:-0.103292px;}
.ws16{word-spacing:-0.059776px;}
.ws25{word-spacing:0.000000px;}
.ws4{word-spacing:0.071731px;}
.ws21{word-spacing:0.609711px;}
.ws3f{word-spacing:0.729262px;}
.ws33{word-spacing:1.087916px;}
.ws8{word-spacing:1.147692px;}
.ws1a{word-spacing:1.267243px;}
.ws9{word-spacing:1.805223px;}
.ws5{word-spacing:2.402979px;}
.ws23{word-spacing:3.291585px;}
.wsb{word-spacing:3.299613px;}
.wsa{word-spacing:3.359389px;}
.ws3c{word-spacing:4.016920px;}
.wsf{word-spacing:4.256023px;}
.ws37{word-spacing:4.315798px;}
.ws30{word-spacing:5.152657px;}
.ws31{word-spacing:5.212432px;}
.ws1c{word-spacing:5.272208px;}
.ws15{word-spacing:5.677935px;}
.ws17{word-spacing:5.690637px;}
.ws2d{word-spacing:7.005700px;}
.ws1d{word-spacing:7.842559px;}
.ws7{word-spacing:8.260988px;}
.ws28{word-spacing:8.320764px;}
.ws26{word-spacing:8.320800px;}
.ws3a{word-spacing:8.739193px;}
.ws2c{word-spacing:9.097846px;}
.ws2a{word-spacing:9.456500px;}
.ws35{word-spacing:9.934705px;}
.ws11{word-spacing:10.950890px;}
.ws20{word-spacing:11.548646px;}
.ws1e{word-spacing:12.505056px;}
.ws2e{word-spacing:14.716753px;}
.ws29{word-spacing:16.041464px;}
.ws3b{word-spacing:17.107777px;}
.ws3d{word-spacing:17.466430px;}
.ws18{word-spacing:19.020596px;}
.ws24{word-spacing:19.865084px;}
.ws38{word-spacing:20.335659px;}
.ws1f{word-spacing:20.455210px;}
.ws12{word-spacing:21.949600px;}
.ws14{word-spacing:22.231754px;}
.ws19{word-spacing:22.965786px;}
.ws2{word-spacing:23.312640px;}
.ws27{word-spacing:24.871274px;}
.wse{word-spacing:25.297034px;}
.ws2b{word-spacing:26.827469px;}
.wsd{word-spacing:27.927160px;}
.ws41{word-spacing:28.823794px;}
.ws40{word-spacing:30.557287px;}
.ws0{word-spacing:31.091012px;}
.ws1b{word-spacing:32.192873px;}
.ws32{word-spacing:55.347640px;}
.ws22{word-spacing:80.625869px;}
.wsc{word-spacing:96.750773px;}
._7{margin-left:-28.214083px;}
._d{margin-left:-8.091257px;}
._5{margin-left:-4.961375px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.673717px;}
._2{width:1.613941px;}
._1{width:2.685602px;}
._14{width:14.704798px;}
._f{width:22.639616px;}
._4{width:25.464406px;}
._8{width:26.779469px;}
._15{width:28.214083px;}
._9{width:30.301930px;}
._c{width:31.501741px;}
._13{width:34.131868px;}
._16{width:36.821770px;}
._12{width:38.077057px;}
._b{width:40.288754px;}
._6{width:41.544042px;}
._10{width:44.891476px;}
._e{width:51.227689px;}
._17{width:53.563237px;}
._11{width:80.697600px;}
._a{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y36{bottom:134.047500px;}
.y22{bottom:178.879500px;}
.y21{bottom:196.812000px;}
.y35{bottom:208.873500px;}
.y20{bottom:214.744500px;}
.y1f{bottom:232.677000px;}
.y34{bottom:238.869000px;}
.y53{bottom:242.328000px;}
.y1e{bottom:250.609500px;}
.y1d{bottom:268.543500px;}
.y33{bottom:268.863000px;}
.y52{bottom:283.039500px;}
.y1c{bottom:286.476000px;}
.y32{bottom:298.858500px;}
.y51{bottom:300.972000px;}
.y1b{bottom:304.408500px;}
.y50{bottom:318.904500px;}
.y1a{bottom:322.341000px;}
.y31{bottom:328.827000px;}
.y4f{bottom:336.837000px;}
.y6b{bottom:353.994000px;}
.y19{bottom:355.072500px;}
.y30{bottom:356.460000px;}
.y4e{bottom:364.422000px;}
.y6a{bottom:371.926500px;}
.y69{bottom:389.859000px;}
.y2f{bottom:392.230500px;}
.y4d{bottom:400.141500px;}
.y18{bottom:403.450500px;}
.y68{bottom:419.746500px;}
.y17{bottom:421.383000px;}
.y4c{bottom:427.041000px;}
.y67{bottom:437.679000px;}
.y16{bottom:439.315500px;}
.y2e{bottom:441.792000px;}
.y66{bottom:455.613000px;}
.y15{bottom:457.248000px;}
.y2d{bottom:459.724500px;}
.y14{bottom:475.180500px;}
.y4b{bottom:475.338000px;}
.y2c{bottom:477.657000px;}
.y65{bottom:485.500500px;}
.y13{bottom:493.114500px;}
.y4a{bottom:493.270500px;}
.y2b{bottom:495.589500px;}
.y12{bottom:511.047000px;}
.y49{bottom:511.203000px;}
.y2a{bottom:513.522000px;}
.y64{bottom:518.232000px;}
.y11{bottom:528.979500px;}
.y48{bottom:529.137000px;}
.y29{bottom:546.303000px;}
.y10{bottom:546.912000px;}
.y47{bottom:547.069500px;}
.yf{bottom:564.844500px;}
.y63{bottom:567.651000px;}
.y46{bottom:571.746000px;}
.y62{bottom:585.583500px;}
.ye{bottom:591.676500px;}
.y28{bottom:595.864500px;}
.y45{bottom:599.028000px;}
.y61{bottom:603.516000px;}
.yd{bottom:609.609000px;}
.y27{bottom:613.797000px;}
.y60{bottom:621.448500px;}
.y44{bottom:626.310000px;}
.yc{bottom:627.543000px;}
.y26{bottom:631.729500px;}
.y5f{bottom:639.381000px;}
.yb{bottom:645.475500px;}
.y25{bottom:649.662000px;}
.y43{bottom:650.986500px;}
.ya{bottom:663.408000px;}
.y5e{bottom:672.112500px;}
.y9{bottom:681.340500px;}
.y24{bottom:682.444500px;}
.y42{bottom:683.718000px;}
.y8{bottom:699.273000px;}
.y7{bottom:717.205500px;}
.y5d{bottom:721.531500px;}
.y23{bottom:732.004500px;}
.y41{bottom:732.015000px;}
.y5c{bottom:739.464000px;}
.y6{bottom:749.937000px;}
.y40{bottom:749.949000px;}
.y5b{bottom:757.396500px;}
.y3f{bottom:767.881500px;}
.y5a{bottom:775.330500px;}
.y59{bottom:793.263000px;}
.y3e{bottom:795.465000px;}
.y5{bottom:805.728000px;}
.y58{bottom:825.994500px;}
.y3d{bottom:836.176500px;}
.y4{bottom:840.897000px;}
.y3c{bottom:854.109000px;}
.y3{bottom:861.817500px;}
.y3b{bottom:872.041500px;}
.y57{bottom:875.413500px;}
.y3a{bottom:899.625000px;}
.y2{bottom:905.155500px;}
.y56{bottom:905.301000px;}
.y55{bottom:935.188500px;}
.y1{bottom:938.032500px;}
.y39{bottom:940.336500px;}
.y54{bottom:953.121000px;}
.y38{bottom:958.269000px;}
.y37{bottom:985.852500px;}
.h4{height:44.831700px;}
.h5{height:50.211840px;}
.h2{height:51.216077px;}
.h3{height:60.254040px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:108.000000px;}
.x8{left:111.300000px;}
.xc{left:117.360000px;}
.x11{left:118.792500px;}
.x7{left:123.442500px;}
.xa{left:124.936500px;}
.x9{left:128.589000px;}
.xb{left:140.025000px;}
.x1{left:144.403500px;}
.xd{left:235.252500px;}
.x4{left:341.833500px;}
.x5{left:385.884000px;}
.x3{left:417.955500px;}
.x2{left:421.495500px;}
.x10{left:454.699500px;}
.xe{left:465.907500px;}
.xf{left:476.700000px;}
.x12{left:480.853500px;}
.x13{left:495.796500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:17.708745pt;}
.ls2{letter-spacing:17.714079pt;}
.ls4{letter-spacing:26.569047pt;}
.ls0{letter-spacing:35.191412pt;}
.ws13{word-spacing:-14.760588pt;}
.ws34{word-spacing:-2.858602pt;}
.ws36{word-spacing:-2.592933pt;}
.ws3e{word-spacing:-2.274129pt;}
.ws6{word-spacing:-1.530255pt;}
.ws10{word-spacing:-1.477121pt;}
.ws2f{word-spacing:-1.317720pt;}
.ws39{word-spacing:-0.626980pt;}
.ws3{word-spacing:-0.467578pt;}
.ws1{word-spacing:-0.091815pt;}
.ws16{word-spacing:-0.053134pt;}
.ws25{word-spacing:0.000000pt;}
.ws4{word-spacing:0.063761pt;}
.ws21{word-spacing:0.541965pt;}
.ws3f{word-spacing:0.648233pt;}
.ws33{word-spacing:0.967036pt;}
.ws8{word-spacing:1.020170pt;}
.ws1a{word-spacing:1.126438pt;}
.ws9{word-spacing:1.604643pt;}
.ws5{word-spacing:2.135981pt;}
.ws23{word-spacing:2.925854pt;}
.wsb{word-spacing:2.932989pt;}
.wsa{word-spacing:2.986123pt;}
.ws3c{word-spacing:3.570596pt;}
.wsf{word-spacing:3.783131pt;}
.ws37{word-spacing:3.836265pt;}
.ws30{word-spacing:4.580139pt;}
.ws31{word-spacing:4.633273pt;}
.ws1c{word-spacing:4.686407pt;}
.ws15{word-spacing:5.047053pt;}
.ws17{word-spacing:5.058344pt;}
.ws2d{word-spacing:6.227289pt;}
.ws1d{word-spacing:6.971163pt;}
.ws7{word-spacing:7.343100pt;}
.ws28{word-spacing:7.396234pt;}
.ws26{word-spacing:7.396267pt;}
.ws3a{word-spacing:7.768171pt;}
.ws2c{word-spacing:8.086975pt;}
.ws2a{word-spacing:8.405778pt;}
.ws35{word-spacing:8.830849pt;}
.ws11{word-spacing:9.734124pt;}
.ws20{word-spacing:10.265463pt;}
.ws1e{word-spacing:11.115605pt;}
.ws2e{word-spacing:13.081558pt;}
.ws29{word-spacing:14.259079pt;}
.ws3b{word-spacing:15.206913pt;}
.ws3d{word-spacing:15.525716pt;}
.ws18{word-spacing:16.907196pt;}
.ws24{word-spacing:17.657853pt;}
.ws38{word-spacing:18.076141pt;}
.ws1f{word-spacing:18.182409pt;}
.ws12{word-spacing:19.510756pt;}
.ws14{word-spacing:19.761559pt;}
.ws19{word-spacing:20.414032pt;}
.ws2{word-spacing:20.722347pt;}
.ws27{word-spacing:22.107799pt;}
.wse{word-spacing:22.486252pt;}
.ws2b{word-spacing:23.846639pt;}
.wsd{word-spacing:24.824143pt;}
.ws41{word-spacing:25.621151pt;}
.ws40{word-spacing:27.162033pt;}
.ws0{word-spacing:27.636455pt;}
.ws1b{word-spacing:28.615887pt;}
.ws32{word-spacing:49.197902pt;}
.ws22{word-spacing:71.667439pt;}
.wsc{word-spacing:86.000687pt;}
._7{margin-left:-25.079185pt;}
._d{margin-left:-7.192228pt;}
._5{margin-left:-4.410111pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.487748pt;}
._2{width:1.434614pt;}
._1{width:2.387202pt;}
._14{width:13.070931pt;}
._f{width:20.124103pt;}
._4{width:22.635027pt;}
._8{width:23.803972pt;}
._15{width:25.079185pt;}
._9{width:26.935049pt;}
._c{width:28.001548pt;}
._13{width:30.339438pt;}
._16{width:32.730462pt;}
._12{width:33.846273pt;}
._b{width:35.812226pt;}
._6{width:36.928037pt;}
._10{width:39.903534pt;}
._e{width:45.535724pt;}
._17{width:47.611766pt;}
._11{width:71.731200pt;}
._a{width:86.077200pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:119.153333pt;}
.y22{bottom:159.004000pt;}
.y21{bottom:174.944000pt;}
.y35{bottom:185.665333pt;}
.y20{bottom:190.884000pt;}
.y1f{bottom:206.824000pt;}
.y34{bottom:212.328000pt;}
.y53{bottom:215.402667pt;}
.y1e{bottom:222.764000pt;}
.y1d{bottom:238.705333pt;}
.y33{bottom:238.989333pt;}
.y52{bottom:251.590667pt;}
.y1c{bottom:254.645333pt;}
.y32{bottom:265.652000pt;}
.y51{bottom:267.530667pt;}
.y1b{bottom:270.585333pt;}
.y50{bottom:283.470667pt;}
.y1a{bottom:286.525333pt;}
.y31{bottom:292.290667pt;}
.y4f{bottom:299.410667pt;}
.y6b{bottom:314.661333pt;}
.y19{bottom:315.620000pt;}
.y30{bottom:316.853333pt;}
.y4e{bottom:323.930667pt;}
.y6a{bottom:330.601333pt;}
.y69{bottom:346.541333pt;}
.y2f{bottom:348.649333pt;}
.y4d{bottom:355.681333pt;}
.y18{bottom:358.622667pt;}
.y68{bottom:373.108000pt;}
.y17{bottom:374.562667pt;}
.y4c{bottom:379.592000pt;}
.y67{bottom:389.048000pt;}
.y16{bottom:390.502667pt;}
.y2e{bottom:392.704000pt;}
.y66{bottom:404.989333pt;}
.y15{bottom:406.442667pt;}
.y2d{bottom:408.644000pt;}
.y14{bottom:422.382667pt;}
.y4b{bottom:422.522667pt;}
.y2c{bottom:424.584000pt;}
.y65{bottom:431.556000pt;}
.y13{bottom:438.324000pt;}
.y4a{bottom:438.462667pt;}
.y2b{bottom:440.524000pt;}
.y12{bottom:454.264000pt;}
.y49{bottom:454.402667pt;}
.y2a{bottom:456.464000pt;}
.y64{bottom:460.650667pt;}
.y11{bottom:470.204000pt;}
.y48{bottom:470.344000pt;}
.y29{bottom:485.602667pt;}
.y10{bottom:486.144000pt;}
.y47{bottom:486.284000pt;}
.yf{bottom:502.084000pt;}
.y63{bottom:504.578667pt;}
.y46{bottom:508.218667pt;}
.y62{bottom:520.518667pt;}
.ye{bottom:525.934667pt;}
.y28{bottom:529.657333pt;}
.y45{bottom:532.469333pt;}
.y61{bottom:536.458667pt;}
.yd{bottom:541.874667pt;}
.y27{bottom:545.597333pt;}
.y60{bottom:552.398667pt;}
.y44{bottom:556.720000pt;}
.yc{bottom:557.816000pt;}
.y26{bottom:561.537333pt;}
.y5f{bottom:568.338667pt;}
.yb{bottom:573.756000pt;}
.y25{bottom:577.477333pt;}
.y43{bottom:578.654667pt;}
.ya{bottom:589.696000pt;}
.y5e{bottom:597.433333pt;}
.y9{bottom:605.636000pt;}
.y24{bottom:606.617333pt;}
.y42{bottom:607.749333pt;}
.y8{bottom:621.576000pt;}
.y7{bottom:637.516000pt;}
.y5d{bottom:641.361333pt;}
.y23{bottom:650.670667pt;}
.y41{bottom:650.680000pt;}
.y5c{bottom:657.301333pt;}
.y6{bottom:666.610667pt;}
.y40{bottom:666.621333pt;}
.y5b{bottom:673.241333pt;}
.y3f{bottom:682.561333pt;}
.y5a{bottom:689.182667pt;}
.y59{bottom:705.122667pt;}
.y3e{bottom:707.080000pt;}
.y5{bottom:716.202667pt;}
.y58{bottom:734.217333pt;}
.y3d{bottom:743.268000pt;}
.y4{bottom:747.464000pt;}
.y3c{bottom:759.208000pt;}
.y3{bottom:766.060000pt;}
.y3b{bottom:775.148000pt;}
.y57{bottom:778.145333pt;}
.y3a{bottom:799.666667pt;}
.y2{bottom:804.582667pt;}
.y56{bottom:804.712000pt;}
.y55{bottom:831.278667pt;}
.y1{bottom:833.806667pt;}
.y39{bottom:835.854667pt;}
.y54{bottom:847.218667pt;}
.y38{bottom:851.794667pt;}
.y37{bottom:876.313333pt;}
.h4{height:39.850400pt;}
.h5{height:44.632747pt;}
.h2{height:45.525402pt;}
.h3{height:53.559147pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.000000pt;}
.x8{left:98.933333pt;}
.xc{left:104.320000pt;}
.x11{left:105.593333pt;}
.x7{left:109.726667pt;}
.xa{left:111.054667pt;}
.x9{left:114.301333pt;}
.xb{left:124.466667pt;}
.x1{left:128.358667pt;}
.xd{left:209.113333pt;}
.x4{left:303.852000pt;}
.x5{left:343.008000pt;}
.x3{left:371.516000pt;}
.x2{left:374.662667pt;}
.x10{left:404.177333pt;}
.xe{left:414.140000pt;}
.xf{left:423.733333pt;}
.x12{left:427.425333pt;}
.x13{left:440.708000pt;}
}




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