
    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_c0e009d36f0078d3102f10e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_c96387a44b4f9cb3cea06151.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_7cc5bd1a00807de6d200aad6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_40746833fb4fd1f33c75a160.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_980ca682ad3fbd0a3b68b210.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844727;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);}
.v8{vertical-align:-83.853543px;}
.v3{vertical-align:-51.063783px;}
.v5{vertical-align:-35.744415px;}
.v9{vertical-align:-34.395121px;}
.v7{vertical-align:-14.926770px;}
.v2{vertical-align:-5.106609px;}
.v1{vertical-align:-2.553066px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:35.744883px;}
.v6{vertical-align:51.110549px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.037501px;}
.ls9{letter-spacing:0.053190px;}
.ls2{letter-spacing:24.008242px;}
.ls1{letter-spacing:36.014064px;}
.ls8{letter-spacing:54.010550px;}
.ls4{letter-spacing:74.995314px;}
.ls7{letter-spacing:81.010551px;}
.ls6{letter-spacing:90.014065px;}
.ls5{letter-spacing:132.008246px;}
.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;}
}
.ws1{word-spacing:-65.088002px;}
.ws7{word-spacing:-59.664003px;}
.ws6{word-spacing:-54.240000px;}
.ws2{word-spacing:-48.816002px;}
.ws3{word-spacing:-37.968000px;}
.ws12{word-spacing:-29.916001px;}
.ws11{word-spacing:-29.832002px;}
.ws5{word-spacing:-24.408001px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:1049.676334px;}
.wsb{word-spacing:1262.523325px;}
.ws8{word-spacing:1270.045436px;}
.wsa{word-spacing:1310.896032px;}
.wsd{word-spacing:1493.091003px;}
.ws9{word-spacing:1576.428080px;}
.ws4{word-spacing:2072.590380px;}
.wse{word-spacing:2471.175799px;}
.ws10{word-spacing:3385.104197px;}
.wsf{word-spacing:4435.414144px;}
._10{margin-left:-65.619808px;}
._f{margin-left:-27.864001px;}
._e{margin-left:-17.232000px;}
._b{margin-left:-15.984001px;}
._0{margin-left:-14.976001px;}
._13{margin-left:-13.896000px;}
._3{margin-left:-12.864001px;}
._6{margin-left:-11.256000px;}
._4{margin-left:-9.600001px;}
._7{margin-left:-8.351999px;}
._9{margin-left:-6.480000px;}
._8{margin-left:-4.776000px;}
._1{margin-left:-3.648000px;}
._2{margin-left:-2.304000px;}
._5{margin-left:-1.127998px;}
._a{width:1.440000px;}
._d{width:2.507589px;}
._c{width:3.638548px;}
._12{width:4.680900px;}
._11{width:598.837789px;}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(54,84,34);}
.fc5{color:rgb(85,131,53);}
.fc4{color:transparent;}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(136,136,136);}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs6{font-size:72.000002px;}
.fsa{font-size:84.000000px;}
.fs4{font-size:108.000003px;}
.fs3{font-size:120.000001px;}
.fsf{font-size:132.000007px;}
.fs1{font-size:144.000005px;}
.fs2{font-size:167.999999px;}
.fs0{font-size:192.000012px;}
.fs8{font-size:216.000007px;}
.fs7{font-size:240.000002px;}
.fs9{font-size:264.000014px;}
.fs5{font-size:288.000009px;}
.fsc{font-size:299.999998px;}
.fsd{font-size:306.000010px;}
.fsb{font-size:324.000010px;}
.fse{font-size:335.999999px;}
.y0{bottom:0.000000px;}
.yf{bottom:31.207513px;}
.y36{bottom:91.580872px;}
.y62{bottom:100.706929px;}
.yb0{bottom:132.150972px;}
.y9a{bottom:144.250269px;}
.y61{bottom:146.066941px;}
.y6d{bottom:148.788879px;}
.y3f{bottom:149.123713px;}
.y93{bottom:167.506674px;}
.yaf{bottom:177.510974px;}
.y30{bottom:183.649154px;}
.y26{bottom:193.513866px;}
.y92{bottom:199.906664px;}
.y49{bottom:203.579982px;}
.yc{bottom:204.068861px;}
.yc0{bottom:208.192019px;}
.y35{bottom:212.300970px;}
.y1a{bottom:219.993371px;}
.y6c{bottom:220.788881px;}
.y3e{bottom:221.123715px;}
.y51{bottom:225.822593px;}
.y91{bottom:232.306643px;}
.y99{bottom:234.345930px;}
.y41{bottom:235.783928px;}
.yb{bottom:236.468855px;}
.ybf{bottom:237.352054px;}
.yae{bottom:237.871039px;}
.y7c{bottom:248.150975px;}
.y3d{bottom:257.123716px;}
.y50{bottom:264.702616px;}
.y90{bottom:264.706644px;}
.y60{bottom:266.787050px;}
.ya{bottom:268.868853px;}
.y19{bottom:273.873414px;}
.yad{bottom:283.231041px;}
.y7b{bottom:287.031010px;}
.y6b{bottom:292.788883px;}
.y8f{bottom:297.106622px;}
.y57{bottom:304.246751px;}
.ya6{bottom:309.493458px;}
.y3{bottom:309.891923px;}
.y73{bottom:310.952470px;}
.y18{bottom:312.753415px;}
.y98{bottom:316.965933px;}
.y7e{bottom:318.638797px;}
.y66{bottom:319.211984px;}
.ybe{bottom:325.672061px;}
.y7a{bottom:325.911011px;}
.y9{bottom:326.765070px;}
.yb4{bottom:327.147026px;}
.y5f{bottom:327.147037px;}
.y3c{bottom:329.123718px;}
.y8e{bottom:329.506646px;}
.y64{bottom:333.860666px;}
.ye{bottom:337.655685px;}
.ya5{bottom:341.893452px;}
.yac{bottom:343.591050px;}
.y20{bottom:346.169689px;}
.y70{bottom:348.259069px;}
.ybd{bottom:354.832062px;}
.y1d{bottom:355.615860px;}
.y8{bottom:359.165068px;}
.y72{bottom:361.352472px;}
.y8d{bottom:361.906669px;}
.y59{bottom:363.850020px;}
.y2f{bottom:364.729227px;}
.y6a{bottom:364.788886px;}
.y79{bottom:364.791001px;}
.y3b{bottom:365.123720px;}
.y22{bottom:365.956526px;}
.y17{bottom:366.633413px;}
.y75{bottom:369.473006px;}
.y42{bottom:369.511523px;}
.ya4{bottom:374.293450px;}
.y58{bottom:376.381049px;}
.y85{bottom:376.445407px;}
.y25{bottom:383.391923px;}
.y13{bottom:385.049866px;}
.yb3{bottom:387.507013px;}
.y5e{bottom:387.507024px;}
.yab{bottom:388.951040px;}
.y2c{bottom:390.809871px;}
.y45{bottom:391.006769px;}
.y84{bottom:391.246169px;}
.y34{bottom:393.380987px;}
.y8c{bottom:394.306670px;}
.y7d{bottom:396.398799px;}
.y65{bottom:396.971987px;}
.y63{bottom:398.660659px;}
.y97{bottom:399.585936px;}
.y78{bottom:403.671002px;}
.y16{bottom:405.513415px;}
.y2b{bottom:409.814863px;}
.y71{bottom:411.752467px;}
.y48{bottom:417.457676px;}
.y56{bottom:419.287324px;}
.y2{bottom:419.656656px;}
.yd{bottom:424.055688px;}
.y6f{bottom:426.019071px;}
.y4f{bottom:426.342610px;}
.y8b{bottom:426.706671px;}
.yb6{bottom:427.774515px;}
.yb2{bottom:432.867003px;}
.y1c{bottom:434.815863px;}
.y69{bottom:436.788888px;}
.y3a{bottom:437.123722px;}
.y33{bottom:438.740977px;}
.ybc{bottom:443.152035px;}
.y43{bottom:446.509118px;}
.y5{bottom:447.693243px;}
.y5d{bottom:447.867011px;}
.yaa{bottom:449.311027px;}
.y55{bottom:451.687331px;}
.y2a{bottom:453.014860px;}
.y12{bottom:458.930903px;}
.y8a{bottom:459.106661px;}
.y15{bottom:459.393401px;}
.yb5{bottom:463.414511px;}
.y4e{bottom:465.222611px;}
.y1{bottom:471.496680px;}
.ybb{bottom:472.312035px;}
.y39{bottom:473.123723px;}
.y96{bottom:482.205950px;}
.y54{bottom:484.087325px;}
.y89{bottom:491.506657px;}
.y4{bottom:493.053238px;}
.yb1{bottom:493.226995px;}
.y29{bottom:496.214866px;}
.y14{bottom:498.273391px;}
.y4d{bottom:504.102603px;}
.y5c{bottom:508.226998px;}
.y68{bottom:508.788894px;}
.y38{bottom:509.123726px;}
.y83{bottom:509.170615px;}
.y82{bottom:509.293094px;}
.ya9{bottom:509.671014px;}
.y80{bottom:510.485323px;}
.y77{bottom:511.431009px;}
.y53{bottom:516.487323px;}
.y1f{bottom:517.279438px;}
.y4b{bottom:523.252312px;}
.y11{bottom:523.730896px;}
.y88{bottom:523.906663px;}
.y40{bottom:529.215352px;}
.y24{bottom:538.586995px;}
.y28{bottom:539.414868px;}
.y2e{bottom:545.809202px;}
.y76{bottom:550.311000px;}
.y5b{bottom:553.586991px;}
.ya8{bottom:555.031008px;}
.y4a{bottom:555.652309px;}
.y87{bottom:556.306658px;}
.y32{bottom:559.460965px;}
.yba{bottom:560.632031px;}
.ya3{bottom:564.611922px;}
.y95{bottom:564.825944px;}
.y47{bottom:577.267914px;}
.y86{bottom:588.706655px;}
.yb9{bottom:589.792032px;}
.y7f{bottom:591.485314px;}
.yb8{bottom:618.952035px;}
.y67{bottom:629.614299px;}
.y10{bottom:641.307638px;}
.y94{bottom:647.445941px;}
.y52{bottom:648.339891px;}
.y5a{bottom:667.209717px;}
.y6e{bottom:671.224982px;}
.y1e{bottom:673.381802px;}
.y81{bottom:677.239164px;}
.y1b{bottom:679.901099px;}
.y27{bottom:681.118969px;}
.y2d{bottom:688.896763px;}
.ya2{bottom:688.897472px;}
.y37{bottom:688.917787px;}
.ya7{bottom:689.127433px;}
.y4c{bottom:689.352610px;}
.y46{bottom:695.183654px;}
.y23{bottom:696.674440px;}
.y21{bottom:703.125471px;}
.y44{bottom:708.284914px;}
.yb7{bottom:710.500898px;}
.y31{bottom:710.563378px;}
.ya1{bottom:729.035785px;}
.y9c{bottom:741.282164px;}
.y9b{bottom:743.835354px;}
.y9e{bottom:744.840472px;}
.ya0{bottom:749.889330px;}
.y9d{bottom:750.062834px;}
.y9f{bottom:750.986810px;}
.y74{bottom:764.913424px;}
.y6{bottom:773.783564px;}
.y7{bottom:778.194567px;}
.h8{height:51.679689px;}
.hf{height:60.292969px;}
.h5{height:75.093752px;}
.h6{height:77.519534px;}
.h15{height:77.730471px;}
.h4{height:83.437501px;}
.h13{height:86.132813px;}
.h12{height:86.367188px;}
.h1e{height:91.781255px;}
.h2{height:103.359378px;}
.hb{height:103.640628px;}
.h1c{height:113.264416px;}
.h3{height:116.812500px;}
.h11{height:120.585937px;}
.h14{height:120.586477px;}
.he{height:120.914062px;}
.h1d{height:128.630083px;}
.h1{height:133.500008px;}
.hc{height:138.187509px;}
.ha{height:146.812505px;}
.h10{height:150.187505px;}
.h9{height:166.875001px;}
.h17{height:172.265626px;}
.h18{height:172.734376px;}
.hd{height:183.562510px;}
.h7{height:200.250006px;}
.h19{height:208.593748px;}
.h1a{height:212.765632px;}
.h16{height:225.281257px;}
.h1b{height:233.624999px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:9.887481px;}
.x52{left:17.476261px;}
.x19{left:19.865854px;}
.x18{left:29.304988px;}
.x25{left:31.830819px;}
.x13{left:33.749477px;}
.x42{left:36.087284px;}
.x27{left:40.534490px;}
.x14{left:42.528611px;}
.x22{left:45.015066px;}
.x20{left:47.011182px;}
.x2d{left:51.108074px;}
.x24{left:55.914215px;}
.x2e{left:58.074212px;}
.x26{left:61.079647px;}
.x12{left:63.122363px;}
.x23{left:65.717127px;}
.x2b{left:66.737010px;}
.x4f{left:70.934477px;}
.x29{left:76.932902px;}
.x28{left:78.144637px;}
.x4d{left:79.321184px;}
.x4b{left:82.137877px;}
.x10{left:86.226258px;}
.x4e{left:87.421417px;}
.x50{left:91.636537px;}
.x21{left:95.978454px;}
.x38{left:100.125003px;}
.x48{left:103.316460px;}
.x51{left:107.839986px;}
.x17{left:109.233543px;}
.x36{left:115.422944px;}
.x37{left:136.125004px;}
.x31{left:137.360671px;}
.x11{left:145.380953px;}
.x1{left:148.005038px;}
.xe{left:152.003536px;}
.x47{left:169.699382px;}
.xf{left:173.607052px;}
.x2a{left:176.124921px;}
.x4{left:188.142227px;}
.x9{left:193.158782px;}
.x34{left:219.535286px;}
.xb{left:228.858195px;}
.x3b{left:323.121104px;}
.x1c{left:337.783918px;}
.x2{left:348.077306px;}
.x5{left:363.223857px;}
.x1b{left:365.082747px;}
.x1e{left:376.772201px;}
.xc{left:421.330783px;}
.x1d{left:433.435289px;}
.x1f{left:454.969252px;}
.xd{left:459.413655px;}
.x3a{left:482.787994px;}
.x44{left:487.345066px;}
.x35{left:492.228443px;}
.x43{left:498.703235px;}
.x16{left:501.635941px;}
.x3d{left:503.260295px;}
.x30{left:526.080234px;}
.x3c{left:527.184354px;}
.x6{left:534.171538px;}
.x2c{left:546.551376px;}
.x49{left:561.333100px;}
.x3e{left:615.077148px;}
.x3f{left:636.680664px;}
.x15{left:642.901858px;}
.x45{left:696.337848px;}
.x46{left:726.040486px;}
.x39{left:730.347323px;}
.x4c{left:811.467026px;}
.x40{left:823.884821px;}
.x2f{left:827.678407px;}
.x4a{left:829.028209px;}
.x32{left:844.027902px;}
.x41{left:886.994241px;}
.x3{left:948.087874px;}
.x33{left:1008.791582px;}
.x8{left:1108.491639px;}
.x1a{left:1312.628948px;}
.xa{left:1321.751990px;}
@media print{
.v8{vertical-align:-74.536482pt;}
.v3{vertical-align:-45.390029pt;}
.v5{vertical-align:-31.772813pt;}
.v9{vertical-align:-30.573441pt;}
.v7{vertical-align:-13.268240pt;}
.v2{vertical-align:-4.539208pt;}
.v1{vertical-align:-2.269392pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:31.773229pt;}
.v6{vertical-align:45.431599pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.033335pt;}
.ls9{letter-spacing:0.047280pt;}
.ls2{letter-spacing:21.340660pt;}
.ls1{letter-spacing:32.012501pt;}
.ls8{letter-spacing:48.009378pt;}
.ls4{letter-spacing:66.662502pt;}
.ls7{letter-spacing:72.009378pt;}
.ls6{letter-spacing:80.012503pt;}
.ls5{letter-spacing:117.340663pt;}
.ws1{word-spacing:-57.856002pt;}
.ws7{word-spacing:-53.034670pt;}
.ws6{word-spacing:-48.213334pt;}
.ws2{word-spacing:-43.392001pt;}
.ws3{word-spacing:-33.749333pt;}
.ws12{word-spacing:-26.592001pt;}
.ws11{word-spacing:-26.517335pt;}
.ws5{word-spacing:-21.696001pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:933.045630pt;}
.wsb{word-spacing:1122.242956pt;}
.ws8{word-spacing:1128.929276pt;}
.wsa{word-spacing:1165.240917pt;}
.wsd{word-spacing:1327.192002pt;}
.ws9{word-spacing:1401.269405pt;}
.ws4{word-spacing:1842.302560pt;}
.wse{word-spacing:2196.600710pt;}
.ws10{word-spacing:3008.981508pt;}
.wsf{word-spacing:3942.590350pt;}
._10{margin-left:-58.328718pt;}
._f{margin-left:-24.768001pt;}
._e{margin-left:-15.317333pt;}
._b{margin-left:-14.208000pt;}
._0{margin-left:-13.312001pt;}
._13{margin-left:-12.352000pt;}
._3{margin-left:-11.434667pt;}
._6{margin-left:-10.005333pt;}
._4{margin-left:-8.533334pt;}
._7{margin-left:-7.423999pt;}
._9{margin-left:-5.760000pt;}
._8{margin-left:-4.245333pt;}
._1{margin-left:-3.242667pt;}
._2{margin-left:-2.048000pt;}
._5{margin-left:-1.002665pt;}
._a{width:1.280000pt;}
._d{width:2.228968pt;}
._c{width:3.234265pt;}
._12{width:4.160800pt;}
._11{width:532.300257pt;}
.fs6{font-size:64.000002pt;}
.fsa{font-size:74.666666pt;}
.fs4{font-size:96.000003pt;}
.fs3{font-size:106.666667pt;}
.fsf{font-size:117.333340pt;}
.fs1{font-size:128.000004pt;}
.fs2{font-size:149.333333pt;}
.fs0{font-size:170.666677pt;}
.fs8{font-size:192.000006pt;}
.fs7{font-size:213.333335pt;}
.fs9{font-size:234.666680pt;}
.fs5{font-size:256.000008pt;}
.fsc{font-size:266.666665pt;}
.fsd{font-size:272.000009pt;}
.fsb{font-size:288.000009pt;}
.fse{font-size:298.666666pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:27.740012pt;}
.y36{bottom:81.405220pt;}
.y62{bottom:89.517270pt;}
.yb0{bottom:117.467531pt;}
.y9a{bottom:128.222461pt;}
.y61{bottom:129.837281pt;}
.y6d{bottom:132.256781pt;}
.y3f{bottom:132.554411pt;}
.y93{bottom:148.894822pt;}
.yaf{bottom:157.787532pt;}
.y30{bottom:163.243692pt;}
.y26{bottom:172.012325pt;}
.y92{bottom:177.694813pt;}
.y49{bottom:180.959984pt;}
.yc{bottom:181.394543pt;}
.yc0{bottom:185.059573pt;}
.y35{bottom:188.711973pt;}
.y1a{bottom:195.549663pt;}
.y6c{bottom:196.256783pt;}
.y3e{bottom:196.554413pt;}
.y51{bottom:200.731193pt;}
.y91{bottom:206.494794pt;}
.y99{bottom:208.307494pt;}
.y41{bottom:209.585714pt;}
.yb{bottom:210.194538pt;}
.ybf{bottom:210.979604pt;}
.yae{bottom:211.440924pt;}
.y7c{bottom:220.578644pt;}
.y3d{bottom:228.554414pt;}
.y50{bottom:235.291214pt;}
.y90{bottom:235.294794pt;}
.y60{bottom:237.144045pt;}
.ya{bottom:238.994536pt;}
.y19{bottom:243.443035pt;}
.yad{bottom:251.760925pt;}
.y7b{bottom:255.138675pt;}
.y6b{bottom:260.256785pt;}
.y8f{bottom:264.094775pt;}
.y57{bottom:270.441557pt;}
.ya6{bottom:275.105296pt;}
.y3{bottom:275.459487pt;}
.y73{bottom:276.402196pt;}
.y18{bottom:278.003036pt;}
.y98{bottom:281.747496pt;}
.y7e{bottom:283.234486pt;}
.y66{bottom:283.743986pt;}
.ybe{bottom:289.486276pt;}
.y7a{bottom:289.698676pt;}
.y9{bottom:290.457840pt;}
.yb4{bottom:290.797356pt;}
.y5f{bottom:290.797366pt;}
.y3c{bottom:292.554416pt;}
.y8e{bottom:292.894796pt;}
.y64{bottom:296.765036pt;}
.ye{bottom:300.138387pt;}
.ya5{bottom:303.905291pt;}
.yac{bottom:305.414267pt;}
.y20{bottom:307.706390pt;}
.y70{bottom:309.563617pt;}
.ybd{bottom:315.406277pt;}
.y1d{bottom:316.102987pt;}
.y8{bottom:319.257838pt;}
.y72{bottom:321.202197pt;}
.y8d{bottom:321.694817pt;}
.y59{bottom:323.422240pt;}
.y2f{bottom:324.203757pt;}
.y6a{bottom:324.256787pt;}
.y79{bottom:324.258667pt;}
.y3b{bottom:324.554417pt;}
.y22{bottom:325.294689pt;}
.y17{bottom:325.896367pt;}
.y75{bottom:328.420449pt;}
.y42{bottom:328.454687pt;}
.ya4{bottom:332.705289pt;}
.y58{bottom:334.560933pt;}
.y85{bottom:334.618140pt;}
.y25{bottom:340.792821pt;}
.y13{bottom:342.266548pt;}
.yb3{bottom:344.450678pt;}
.y5e{bottom:344.450688pt;}
.yab{bottom:345.734258pt;}
.y2c{bottom:347.386552pt;}
.y45{bottom:347.561572pt;}
.y84{bottom:347.774372pt;}
.y34{bottom:349.671988pt;}
.y8c{bottom:350.494818pt;}
.y7d{bottom:352.354488pt;}
.y65{bottom:352.863988pt;}
.y63{bottom:354.365030pt;}
.y97{bottom:355.187498pt;}
.y78{bottom:358.818668pt;}
.y16{bottom:360.456368pt;}
.y2b{bottom:364.279879pt;}
.y71{bottom:366.002193pt;}
.y48{bottom:371.073490pt;}
.y56{bottom:372.699844pt;}
.y2{bottom:373.028139pt;}
.yd{bottom:376.938389pt;}
.y6f{bottom:378.683619pt;}
.y4f{bottom:378.971209pt;}
.y8b{bottom:379.294819pt;}
.yb6{bottom:380.244013pt;}
.yb2{bottom:384.770669pt;}
.y1c{bottom:386.502989pt;}
.y69{bottom:388.256789pt;}
.y3a{bottom:388.554419pt;}
.y33{bottom:389.991979pt;}
.ybc{bottom:393.912920pt;}
.y43{bottom:396.896994pt;}
.y5{bottom:397.949550pt;}
.y5d{bottom:398.104010pt;}
.yaa{bottom:399.387580pt;}
.y55{bottom:401.499850pt;}
.y2a{bottom:402.679876pt;}
.y12{bottom:407.938580pt;}
.y8a{bottom:408.094810pt;}
.y15{bottom:408.349690pt;}
.yb5{bottom:411.924010pt;}
.y4e{bottom:413.531210pt;}
.y1{bottom:419.108160pt;}
.ybb{bottom:419.832920pt;}
.y39{bottom:420.554420pt;}
.y96{bottom:428.627511pt;}
.y54{bottom:430.299845pt;}
.y89{bottom:436.894806pt;}
.y4{bottom:438.269545pt;}
.yb1{bottom:438.423996pt;}
.y29{bottom:441.079881pt;}
.y14{bottom:442.909681pt;}
.y4d{bottom:448.091202pt;}
.y5c{bottom:451.757331pt;}
.y68{bottom:452.256794pt;}
.y38{bottom:452.554423pt;}
.y83{bottom:452.596102pt;}
.y82{bottom:452.704972pt;}
.ya9{bottom:453.040901pt;}
.y80{bottom:453.764731pt;}
.y77{bottom:454.605342pt;}
.y53{bottom:459.099843pt;}
.y1f{bottom:459.803945pt;}
.y4b{bottom:465.113166pt;}
.y11{bottom:465.538574pt;}
.y88{bottom:465.694812pt;}
.y40{bottom:470.413646pt;}
.y24{bottom:478.743995pt;}
.y28{bottom:479.479882pt;}
.y2e{bottom:485.163735pt;}
.y76{bottom:489.165334pt;}
.y5b{bottom:492.077326pt;}
.ya8{bottom:493.360896pt;}
.y4a{bottom:493.913164pt;}
.y87{bottom:494.494807pt;}
.y32{bottom:497.298636pt;}
.yba{bottom:498.339583pt;}
.ya3{bottom:501.877264pt;}
.y95{bottom:502.067506pt;}
.y47{bottom:513.127034pt;}
.y86{bottom:523.294805pt;}
.yb9{bottom:524.259584pt;}
.y7f{bottom:525.764724pt;}
.yb8{bottom:550.179587pt;}
.y67{bottom:559.657155pt;}
.y10{bottom:570.051234pt;}
.y94{bottom:575.507503pt;}
.y52{bottom:576.302125pt;}
.y5a{bottom:593.075304pt;}
.y6e{bottom:596.644428pt;}
.y1e{bottom:598.561602pt;}
.y81{bottom:601.990368pt;}
.y1b{bottom:604.356532pt;}
.y27{bottom:605.439083pt;}
.y2d{bottom:612.352679pt;}
.ya2{bottom:612.353309pt;}
.y37{bottom:612.371367pt;}
.ya7{bottom:612.557719pt;}
.y4c{bottom:612.757876pt;}
.y46{bottom:617.941026pt;}
.y23{bottom:619.266169pt;}
.y21{bottom:625.000419pt;}
.y44{bottom:629.586590pt;}
.yb7{bottom:631.556354pt;}
.y31{bottom:631.611892pt;}
.ya1{bottom:648.031809pt;}
.y9c{bottom:658.917479pt;}
.y9b{bottom:661.186981pt;}
.y9e{bottom:662.080419pt;}
.ya0{bottom:666.568293pt;}
.y9d{bottom:666.722519pt;}
.y9f{bottom:667.543831pt;}
.y74{bottom:679.923044pt;}
.y6{bottom:687.807612pt;}
.y7{bottom:691.728504pt;}
.h8{height:45.937501pt;}
.hf{height:53.593750pt;}
.h5{height:66.750002pt;}
.h6{height:68.906252pt;}
.h15{height:69.093752pt;}
.h4{height:74.166667pt;}
.h13{height:76.562501pt;}
.h12{height:76.770834pt;}
.h1e{height:81.583338pt;}
.h2{height:91.875003pt;}
.hb{height:92.125003pt;}
.h1c{height:100.679481pt;}
.h3{height:103.833333pt;}
.h11{height:107.187500pt;}
.h14{height:107.187980pt;}
.he{height:107.479166pt;}
.h1d{height:114.337852pt;}
.h1{height:118.666674pt;}
.hc{height:122.833341pt;}
.ha{height:130.500004pt;}
.h10{height:133.500004pt;}
.h9{height:148.333334pt;}
.h17{height:153.125001pt;}
.h18{height:153.541668pt;}
.hd{height:163.166676pt;}
.h7{height:178.000006pt;}
.h19{height:185.416665pt;}
.h1a{height:189.125006pt;}
.h16{height:200.250006pt;}
.h1b{height:207.666666pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:8.788872pt;}
.x52{left:15.534454pt;}
.x19{left:17.658537pt;}
.x18{left:26.048878pt;}
.x25{left:28.294061pt;}
.x13{left:29.999535pt;}
.x42{left:32.077586pt;}
.x27{left:36.030658pt;}
.x14{left:37.803210pt;}
.x22{left:40.013392pt;}
.x20{left:41.787717pt;}
.x2d{left:45.429399pt;}
.x24{left:49.701525pt;}
.x2e{left:51.621522pt;}
.x26{left:54.293020pt;}
.x12{left:56.108767pt;}
.x23{left:58.415224pt;}
.x2b{left:59.321787pt;}
.x4f{left:63.052868pt;}
.x29{left:68.384802pt;}
.x28{left:69.461899pt;}
.x4d{left:70.507719pt;}
.x4b{left:73.011446pt;}
.x10{left:76.645562pt;}
.x4e{left:77.707926pt;}
.x50{left:81.454700pt;}
.x21{left:85.314182pt;}
.x38{left:89.000003pt;}
.x48{left:91.836853pt;}
.x51{left:95.857765pt;}
.x17{left:97.096483pt;}
.x36{left:102.598172pt;}
.x37{left:121.000004pt;}
.x31{left:122.098374pt;}
.x11{left:129.227514pt;}
.x1{left:131.560034pt;}
.xe{left:135.114254pt;}
.x47{left:150.843895pt;}
.xf{left:154.317380pt;}
.x2a{left:156.555485pt;}
.x4{left:167.237535pt;}
.x9{left:171.696695pt;}
.x34{left:195.142476pt;}
.xb{left:203.429507pt;}
.x3b{left:287.218759pt;}
.x1c{left:300.252372pt;}
.x2{left:309.402050pt;}
.x5{left:322.865650pt;}
.x1b{left:324.517997pt;}
.x1e{left:334.908623pt;}
.xc{left:374.516252pt;}
.x1d{left:385.275812pt;}
.x1f{left:404.417113pt;}
.xd{left:408.367693pt;}
.x3a{left:429.144884pt;}
.x44{left:433.195614pt;}
.x35{left:437.536394pt;}
.x43{left:443.291764pt;}
.x16{left:445.898614pt;}
.x3d{left:447.342484pt;}
.x30{left:467.626875pt;}
.x3c{left:468.608315pt;}
.x6{left:474.819145pt;}
.x2c{left:485.823446pt;}
.x49{left:498.962756pt;}
.x3e{left:546.735242pt;}
.x3f{left:565.938368pt;}
.x15{left:571.468318pt;}
.x45{left:618.966976pt;}
.x46{left:645.369321pt;}
.x39{left:649.197621pt;}
.x4c{left:721.304023pt;}
.x40{left:732.342063pt;}
.x2f{left:735.714140pt;}
.x4a{left:736.913964pt;}
.x32{left:750.247024pt;}
.x41{left:788.439325pt;}
.x3{left:842.744777pt;}
.x33{left:896.703629pt;}
.x8{left:985.325902pt;}
.x1a{left:1166.781287pt;}
.xa{left:1174.890658pt;}
}




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