
    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_18792e31486d1f6741c3fa8c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4b7b5383d534761d2d288cfb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_a8391797f7cda63eb60a64fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.431000;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_86abed163d7acb06b8c572b2.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_482dcc73e6f377aaeed50445.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_ab9c9b18c3fc8a254e6374f5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_515b30e1ad64e01c0ade6bdb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_9c2d611e270cae98791e56e3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7eace16d6c122870bef127ad.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b1fb006b3e518ffa0e2d0f51.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_99fb29c992ec94a4cdd7f560.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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-26.034000px;}
.v4{vertical-align:-8.897487px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.529060px;}
.v1{vertical-align:26.034000px;}
.lsd{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.002481px;}
.ls3{letter-spacing:0.002832px;}
.ls5{letter-spacing:0.002854px;}
.ls1{letter-spacing:0.004856px;}
.lsa{letter-spacing:0.004893px;}
.ls12{letter-spacing:0.018961px;}
.ls10{letter-spacing:0.057452px;}
.ls11{letter-spacing:0.098155px;}
.lsf{letter-spacing:1.880823px;}
.lse{letter-spacing:1.886823px;}
.lsb{letter-spacing:2.984525px;}
.ls2{letter-spacing:3.295536px;}
.ls4{letter-spacing:19.922338px;}
.lsc{letter-spacing:19.928338px;}
.ls0{letter-spacing:26.402915px;}
.ls13{letter-spacing:27.604298px;}
.ls9{letter-spacing:147.776525px;}
.ls7{letter-spacing:245.888525px;}
.ls6{letter-spacing:268.940525px;}
.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;}
}
.wsf{word-spacing:-38.937826px;}
.ws4{word-spacing:-38.648907px;}
.ws23{word-spacing:-26.925491px;}
.ws17{word-spacing:-0.059776px;}
.ws10{word-spacing:-0.041843px;}
.ws1a{word-spacing:0.000000px;}
.ws1{word-spacing:3.873485px;}
.ws24{word-spacing:3.919381px;}
.ws0{word-spacing:5.379825px;}
.ws22{word-spacing:5.502885px;}
.ws2{word-spacing:19.845499px;}
.ws12{word-spacing:19.861778px;}
.ws25{word-spacing:20.204153px;}
.ws26{word-spacing:20.622582px;}
.ws11{word-spacing:22.865208px;}
.ws13{word-spacing:22.871208px;}
.ws27{word-spacing:22.894055px;}
.ws29{word-spacing:23.671138px;}
.ws28{word-spacing:24.149342px;}
.wse{word-spacing:71.139146px;}
.ws18{word-spacing:71.670944px;}
.ws19{word-spacing:101.558744px;}
.wsa{word-spacing:122.502195px;}
.wsd{word-spacing:139.577799px;}
.ws20{word-spacing:140.621208px;}
.ws9{word-spacing:146.639755px;}
.ws1f{word-spacing:147.735956px;}
.ws1e{word-spacing:147.739431px;}
.ws8{word-spacing:166.415398px;}
.ws1b{word-spacing:170.408815px;}
.ws6{word-spacing:170.715254px;}
.ws5{word-spacing:170.721210px;}
.wsb{word-spacing:170.893919px;}
.ws1c{word-spacing:173.431431px;}
.ws1d{word-spacing:173.437431px;}
.ws16{word-spacing:177.621956px;}
.wsc{word-spacing:180.780016px;}
.ws3{word-spacing:187.499171px;}
.ws7{word-spacing:190.499359px;}
.ws15{word-spacing:205.125949px;}
.ws14{word-spacing:239.552815px;}
.ws21{word-spacing:449.396846px;}
._2{margin-left:-35.621729px;}
._8{margin-left:-33.355008px;}
._4{margin-left:-31.418266px;}
._6{margin-left:-27.329587px;}
._5{margin-left:-7.746970px;}
._9{margin-left:-6.570593px;}
._1{margin-left:-5.336786px;}
._3{margin-left:-3.730022px;}
._7{margin-left:-1.865011px;}
._c{width:1.240956px;}
._0{width:2.668393px;}
._17{width:5.729387px;}
._11{width:26.915778px;}
._18{width:28.132799px;}
._a{width:30.471421px;}
._1a{width:31.807594px;}
._19{width:35.826492px;}
._15{width:71.730720px;}
._f{width:81.106933px;}
._d{width:90.956056px;}
._b{width:96.836850px;}
._14{width:98.869531px;}
._13{width:101.618520px;}
._12{width:128.757331px;}
._e{width:336.887465px;}
._16{width:339.405857px;}
._10{width:356.645043px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.532326px;}
.fs6{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs9{font-size:49.678027px;}
.fs4{font-size:59.332065px;}
.fs3{font-size:59.775600px;}
.fs8{font-size:66.237370px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs7{font-size:99.356055px;}
.y0{bottom:0.000000px;}
.y26{bottom:28.648697px;}
.y25{bottom:60.418444px;}
.y27{bottom:82.842289px;}
.y28{bottom:148.115574px;}
.y1e{bottom:169.011000px;}
.y2d{bottom:191.923647px;}
.y29{bottom:213.388859px;}
.y37{bottom:240.802500px;}
.y1d{bottom:252.646500px;}
.y36{bottom:258.736500px;}
.y35{bottom:276.669000px;}
.y2a{bottom:278.662144px;}
.y1c{bottom:288.612000px;}
.y1b{bottom:306.544500px;}
.y34{bottom:309.400500px;}
.y1a{bottom:324.477000px;}
.y31{bottom:325.780606px;}
.y19{bottom:342.409500px;}
.y2b{bottom:343.935429px;}
.y30{bottom:350.650669px;}
.y33{bottom:357.138000px;}
.y18{bottom:360.343500px;}
.y2f{bottom:374.600771px;}
.y32{bottom:375.070500px;}
.y17{bottom:378.276000px;}
.y16{bottom:396.208500px;}
.y2e{bottom:397.766375px;}
.y24{bottom:407.947500px;}
.y2c{bottom:409.208714px;}
.y15{bottom:414.141000px;}
.y14{bottom:432.073500px;}
.y13{bottom:450.006000px;}
.y12{bottom:467.940000px;}
.y11{bottom:485.872500px;}
.y10{bottom:503.805000px;}
.yf{bottom:521.737500px;}
.ye{bottom:539.670000px;}
.yd{bottom:565.105500px;}
.yc{bottom:624.018000px;}
.yb{bottom:659.915443px;}
.ya{bottom:677.714884px;}
.y9{bottom:695.514325px;}
.y8{bottom:720.762582px;}
.y7{bottom:758.697000px;}
.y6{bottom:791.428500px;}
.y23{bottom:895.134000px;}
.y5{bottom:904.819500px;}
.y4{bottom:919.233000px;}
.y3{bottom:940.153500px;}
.y22{bottom:947.458500px;}
.y2{bottom:982.335000px;}
.y21{bottom:983.424000px;}
.y20{bottom:1001.356500px;}
.y1f{bottom:1026.792000px;}
.y1{bottom:1030.494000px;}
.h3{height:27.764400px;}
.h8{height:41.484266px;}
.h6{height:44.499049px;}
.h4{height:44.831700px;}
.hc{height:49.678027px;}
.h5{height:52.678305px;}
.h9{height:53.072100px;}
.h7{height:53.078100px;}
.h2{height:53.798400px;}
.h1{height:60.254040px;}
.hb{height:74.517041px;}
.ha{height:448.778880px;}
.h0{height:1188.000000px;}
.w1{width:598.371840px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:39.688217px;}
.x10{left:52.828703px;}
.x6{left:85.039500px;}
.x7{left:98.883013px;}
.x12{left:99.984000px;}
.xa{left:151.164000px;}
.x8{left:153.489000px;}
.xd{left:159.831000px;}
.x4{left:172.356000px;}
.x2{left:210.733500px;}
.x9{left:221.307000px;}
.xe{left:228.362186px;}
.xf{left:265.442225px;}
.xc{left:273.445500px;}
.x5{left:275.253000px;}
.x3{left:299.523000px;}
.x1{left:330.775500px;}
.xb{left:455.263500px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.v4{vertical-align:-7.908877pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.136942pt;}
.v1{vertical-align:23.141333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002205pt;}
.ls3{letter-spacing:0.002518pt;}
.ls5{letter-spacing:0.002537pt;}
.ls1{letter-spacing:0.004317pt;}
.lsa{letter-spacing:0.004349pt;}
.ls12{letter-spacing:0.016854pt;}
.ls10{letter-spacing:0.051069pt;}
.ls11{letter-spacing:0.087249pt;}
.lsf{letter-spacing:1.671842pt;}
.lse{letter-spacing:1.677176pt;}
.lsb{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.929366pt;}
.ls4{letter-spacing:17.708745pt;}
.lsc{letter-spacing:17.714079pt;}
.ls0{letter-spacing:23.469258pt;}
.ls13{letter-spacing:24.537153pt;}
.ls9{letter-spacing:131.356911pt;}
.ls7{letter-spacing:218.567578pt;}
.ls6{letter-spacing:239.058245pt;}
.wsf{word-spacing:-34.611401pt;}
.ws4{word-spacing:-34.354584pt;}
.ws23{word-spacing:-23.933770pt;}
.ws17{word-spacing:-0.053134pt;}
.ws10{word-spacing:-0.037194pt;}
.ws1a{word-spacing:0.000000pt;}
.ws1{word-spacing:3.443098pt;}
.ws24{word-spacing:3.483894pt;}
.ws0{word-spacing:4.782067pt;}
.ws22{word-spacing:4.891453pt;}
.ws2{word-spacing:17.640444pt;}
.ws12{word-spacing:17.654913pt;}
.ws25{word-spacing:17.959247pt;}
.ws26{word-spacing:18.331184pt;}
.ws11{word-spacing:20.324629pt;}
.ws13{word-spacing:20.329963pt;}
.ws27{word-spacing:20.350271pt;}
.ws29{word-spacing:21.041011pt;}
.ws28{word-spacing:21.466082pt;}
.wse{word-spacing:63.234796pt;}
.ws18{word-spacing:63.707506pt;}
.ws19{word-spacing:90.274439pt;}
.wsa{word-spacing:108.890840pt;}
.wsd{word-spacing:124.069154pt;}
.ws20{word-spacing:124.996629pt;}
.ws9{word-spacing:130.346449pt;}
.ws1f{word-spacing:131.320850pt;}
.ws1e{word-spacing:131.323938pt;}
.ws8{word-spacing:147.924798pt;}
.ws1b{word-spacing:151.474502pt;}
.ws6{word-spacing:151.746893pt;}
.ws5{word-spacing:151.752187pt;}
.wsb{word-spacing:151.905706pt;}
.ws1c{word-spacing:154.161272pt;}
.ws1d{word-spacing:154.166605pt;}
.ws16{word-spacing:157.886183pt;}
.wsc{word-spacing:160.693347pt;}
.ws3{word-spacing:166.665930pt;}
.ws7{word-spacing:169.332763pt;}
.ws15{word-spacing:182.334177pt;}
.ws14{word-spacing:212.935836pt;}
.ws21{word-spacing:399.463863pt;}
._2{margin-left:-31.663759pt;}
._8{margin-left:-29.648896pt;}
._4{margin-left:-27.927347pt;}
._6{margin-left:-24.292966pt;}
._5{margin-left:-6.886195pt;}
._9{margin-left:-5.840527pt;}
._1{margin-left:-4.743810pt;}
._3{margin-left:-3.315575pt;}
._7{margin-left:-1.657788pt;}
._c{width:1.103072pt;}
._0{width:2.371905pt;}
._17{width:5.092789pt;}
._11{width:23.925136pt;}
._18{width:25.006932pt;}
._a{width:27.085708pt;}
._1a{width:28.273417pt;}
._19{width:31.845771pt;}
._15{width:63.760640pt;}
._f{width:72.095051pt;}
._d{width:80.849827pt;}
._b{width:86.077200pt;}
._14{width:87.884027pt;}
._13{width:90.327573pt;}
._12{width:114.450961pt;}
._e{width:299.455525pt;}
._16{width:301.694095pt;}
._10{width:317.017816pt;}
.fs5{font-size:36.917623pt;}
.fs6{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs9{font-size:44.158247pt;}
.fs4{font-size:52.739613pt;}
.fs3{font-size:53.133867pt;}
.fs8{font-size:58.877662pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs7{font-size:88.316493pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:25.465509pt;}
.y25{bottom:53.705283pt;}
.y27{bottom:73.637590pt;}
.y28{bottom:131.658288pt;}
.y1e{bottom:150.232000pt;}
.y2d{bottom:170.598797pt;}
.y29{bottom:189.678986pt;}
.y37{bottom:214.046667pt;}
.y1d{bottom:224.574667pt;}
.y36{bottom:229.988000pt;}
.y35{bottom:245.928000pt;}
.y2a{bottom:247.699684pt;}
.y1c{bottom:256.544000pt;}
.y1b{bottom:272.484000pt;}
.y34{bottom:275.022667pt;}
.y1a{bottom:288.424000pt;}
.y31{bottom:289.582761pt;}
.y19{bottom:304.364000pt;}
.y2b{bottom:305.720381pt;}
.y30{bottom:311.689483pt;}
.y33{bottom:317.456000pt;}
.y18{bottom:320.305333pt;}
.y2f{bottom:332.978463pt;}
.y32{bottom:333.396000pt;}
.y17{bottom:336.245333pt;}
.y16{bottom:352.185333pt;}
.y2e{bottom:353.570111pt;}
.y24{bottom:362.620000pt;}
.y2c{bottom:363.741079pt;}
.y15{bottom:368.125333pt;}
.y14{bottom:384.065333pt;}
.y13{bottom:400.005333pt;}
.y12{bottom:415.946667pt;}
.y11{bottom:431.886667pt;}
.y10{bottom:447.826667pt;}
.yf{bottom:463.766667pt;}
.ye{bottom:479.706667pt;}
.yd{bottom:502.316000pt;}
.yc{bottom:554.682667pt;}
.yb{bottom:586.591505pt;}
.ya{bottom:602.413230pt;}
.y9{bottom:618.234955pt;}
.y8{bottom:640.677851pt;}
.y7{bottom:674.397333pt;}
.y6{bottom:703.492000pt;}
.y23{bottom:795.674667pt;}
.y5{bottom:804.284000pt;}
.y4{bottom:817.096000pt;}
.y3{bottom:835.692000pt;}
.y22{bottom:842.185333pt;}
.y2{bottom:873.186667pt;}
.y21{bottom:874.154667pt;}
.y20{bottom:890.094667pt;}
.y1f{bottom:912.704000pt;}
.y1{bottom:915.994667pt;}
.h3{height:24.679467pt;}
.h8{height:36.874903pt;}
.h6{height:39.554710pt;}
.h4{height:39.850400pt;}
.hc{height:44.158247pt;}
.h5{height:46.825160pt;}
.h9{height:47.175200pt;}
.h7{height:47.180533pt;}
.h2{height:47.820800pt;}
.h1{height:53.559147pt;}
.hb{height:66.237370pt;}
.ha{height:398.914560pt;}
.h0{height:1056.000000pt;}
.w1{width:531.886080pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:35.278415pt;}
.x10{left:46.958847pt;}
.x6{left:75.590667pt;}
.x7{left:87.896012pt;}
.x12{left:88.874667pt;}
.xa{left:134.368000pt;}
.x8{left:136.434667pt;}
.xd{left:142.072000pt;}
.x4{left:153.205333pt;}
.x2{left:187.318667pt;}
.x9{left:196.717333pt;}
.xe{left:202.988610pt;}
.xf{left:235.948644pt;}
.xc{left:243.062667pt;}
.x5{left:244.669333pt;}
.x3{left:266.242667pt;}
.x1{left:294.022667pt;}
.xb{left:404.678667pt;}
}




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