
    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_a53816ffb0aabd495af5f75f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_9ac66008545af18ddd55ff1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_7291f92a741bf28231dcb518.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935547;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_3c4bdf9d983c88550413dcc5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_4e62ace5028c591172857049.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.862793;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;}
.v1{vertical-align:2.513700px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:6.884793px;}
.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;}
}
.wsa{word-spacing:-20.003907px;}
.ws0{word-spacing:-18.336914px;}
.ws6{word-spacing:-14.920899px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:2371.911517px;}
.ws8{word-spacing:2394.534564px;}
.ws7{word-spacing:2415.062888px;}
.ws4{word-spacing:2523.666399px;}
.ws3{word-spacing:2528.983782px;}
.ws5{word-spacing:2551.252338px;}
.ws2{word-spacing:2559.566790px;}
._4{width:1.053556px;}
._6{width:2.129483px;}
._49{width:3.508754px;}
._42{width:4.990949px;}
._43{width:6.666092px;}
._44{width:8.607878px;}
._4b{width:9.957091px;}
._47{width:10.963348px;}
._4f{width:12.034142px;}
._45{width:13.141020px;}
._7{width:14.207650px;}
._9{width:16.157450px;}
._4c{width:18.011699px;}
._46{width:21.146268px;}
._3{width:22.497933px;}
._5{width:23.549375px;}
._54{width:24.880275px;}
._a{width:26.195948px;}
._48{width:27.333486px;}
._4e{width:28.351286px;}
._51{width:29.435786px;}
._50{width:30.481844px;}
._59{width:31.782896px;}
._4d{width:33.198127px;}
._8{width:34.389575px;}
._57{width:35.726070px;}
._0{width:37.080464px;}
._5a{width:38.485163px;}
._58{width:39.502798px;}
._1{width:40.965071px;}
._56{width:42.652632px;}
._4a{width:44.210629px;}
._53{width:45.991695px;}
._5f{width:47.217674px;}
._61{width:48.393068px;}
._52{width:49.568204px;}
._5e{width:51.393033px;}
._60{width:53.345014px;}
._5d{width:55.142391px;}
._5b{width:57.249544px;}
._55{width:62.782285px;}
._2{width:66.471094px;}
._5c{width:68.441048px;}
._1c{width:115.403316px;}
._18{width:130.324215px;}
._40{width:493.264013px;}
._d{width:495.745486px;}
._35{width:644.696634px;}
._41{width:802.091170px;}
._26{width:872.860702px;}
._3f{width:925.680041px;}
._e{width:937.603894px;}
._3d{width:979.337270px;}
._1d{width:985.299216px;}
._33{width:1034.122425px;}
._13{width:1038.344133px;}
._29{width:1061.740591px;}
._31{width:1109.468129px;}
._c{width:1195.126359px;}
._39{width:1209.080438px;}
._28{width:1266.475948px;}
._20{width:1273.694724px;}
._15{width:1284.039454px;}
._30{width:1339.114618px;}
._3c{width:1411.044311px;}
._21{width:1431.508203px;}
._14{width:1450.779689px;}
._1e{width:1499.506250px;}
._17{width:1521.194729px;}
._2c{width:1556.676158px;}
._1b{width:1621.483802px;}
._34{width:1659.833378px;}
._36{width:1690.416385px;}
._19{width:1702.920326px;}
._f{width:1714.264068px;}
._1a{width:1743.461342px;}
._1f{width:1756.932040px;}
._37{width:1766.922248px;}
._2d{width:1840.269912px;}
._3b{width:1913.391976px;}
._16{width:1917.323645px;}
._23{width:1920.546274px;}
._22{width:1944.909584px;}
._3a{width:1949.840221px;}
._2a{width:1953.642954px;}
._12{width:1955.802161px;}
._2e{width:1977.232799px;}
._38{width:1991.573619px;}
._2b{width:1993.088275px;}
._25{width:2011.296276px;}
._32{width:2012.424206px;}
._2f{width:2060.635146px;}
._3e{width:2099.468152px;}
._27{width:2132.468156px;}
._10{width:2134.788494px;}
._24{width:2207.266008px;}
._11{width:2234.078536px;}
._b{width:2362.565841px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.000001px;}
.fs0{font-size:72.000001px;}
.y0{bottom:0.000000px;}
.y97{bottom:113.778165px;}
.y37{bottom:116.051235px;}
.y12{bottom:126.655605px;}
.yb4{bottom:129.373815px;}
.y36{bottom:143.692845px;}
.y96{bottom:144.825525px;}
.y11{bottom:145.629000px;}
.yb3{bottom:160.421175px;}
.y75{bottom:160.571130px;}
.y35{bottom:171.334440px;}
.y95{bottom:175.872900px;}
.yb2{bottom:191.468535px;}
.y34{bottom:191.476050px;}
.y74{bottom:191.618505px;}
.y94{bottom:206.920260px;}
.y33{bottom:211.617645px;}
.yb1{bottom:222.515895px;}
.y73{bottom:222.665865px;}
.y93{bottom:237.967620px;}
.y32{bottom:239.259240px;}
.yb0{bottom:253.563270px;}
.y72{bottom:253.713225px;}
.y31{bottom:266.900850px;}
.y92{bottom:269.014980px;}
.yaf{bottom:284.610630px;}
.y71{bottom:284.760585px;}
.y30{bottom:294.542445px;}
.y57{bottom:297.318690px;}
.y91{bottom:300.062340px;}
.yae{bottom:315.657990px;}
.y70{bottom:315.807960px;}
.y2f{bottom:322.184055px;}
.y56{bottom:324.960300px;}
.y90{bottom:331.109715px;}
.yad{bottom:346.705350px;}
.y6f{bottom:346.855320px;}
.y2e{bottom:349.825650px;}
.y10{bottom:350.886570px;}
.y55{bottom:352.601895px;}
.y8f{bottom:362.157075px;}
.yf{bottom:369.859950px;}
.y2d{bottom:377.467260px;}
.yac{bottom:377.752710px;}
.y6e{bottom:377.902680px;}
.y54{bottom:380.243505px;}
.ye{bottom:388.833345px;}
.y8e{bottom:393.204435px;}
.y2c{bottom:405.108855px;}
.yd{bottom:407.806725px;}
.y53{bottom:407.885100px;}
.yab{bottom:408.800085px;}
.y6d{bottom:408.950040px;}
.y8d{bottom:424.251795px;}
.yc{bottom:426.780120px;}
.y52{bottom:428.026710px;}
.y2b{bottom:432.750465px;}
.yaa{bottom:439.847445px;}
.y6c{bottom:439.997400px;}
.yb{bottom:445.753515px;}
.y8c{bottom:455.299170px;}
.y51{bottom:455.668305px;}
.y2a{bottom:460.392060px;}
.ya{bottom:464.726895px;}
.ya9{bottom:470.894805px;}
.y6b{bottom:471.044775px;}
.y50{bottom:483.309900px;}
.y9{bottom:483.700290px;}
.y8b{bottom:486.346530px;}
.y29{bottom:488.033655px;}
.ya8{bottom:501.942165px;}
.y6a{bottom:502.092180px;}
.y8{bottom:502.673715px;}
.y4f{bottom:510.951555px;}
.y28{bottom:515.675310px;}
.y8a{bottom:517.393935px;}
.y7{bottom:521.647110px;}
.ya7{bottom:532.989525px;}
.y69{bottom:533.139540px;}
.y4e{bottom:538.593150px;}
.y6{bottom:540.620505px;}
.y27{bottom:543.316905px;}
.y89{bottom:548.441295px;}
.y5{bottom:559.593885px;}
.ya6{bottom:564.036900px;}
.y68{bottom:564.186900px;}
.y4d{bottom:566.234760px;}
.y26{bottom:570.958515px;}
.y88{bottom:579.488670px;}
.y4c{bottom:593.876355px;}
.ya5{bottom:595.084260px;}
.y67{bottom:595.234275px;}
.y25{bottom:598.600110px;}
.y87{bottom:610.536030px;}
.y4b{bottom:621.517965px;}
.ya4{bottom:626.131620px;}
.y24{bottom:626.241720px;}
.y66{bottom:626.281635px;}
.y86{bottom:641.583390px;}
.y4a{bottom:649.159560px;}
.y23{bottom:653.883315px;}
.ya3{bottom:657.178980px;}
.y65{bottom:657.328995px;}
.y85{bottom:672.630750px;}
.y49{bottom:676.801170px;}
.y22{bottom:681.524925px;}
.ya2{bottom:688.226355px;}
.y64{bottom:688.376355px;}
.y84{bottom:703.678110px;}
.y48{bottom:704.442765px;}
.y21{bottom:709.166520px;}
.ya1{bottom:719.273715px;}
.y63{bottom:719.423715px;}
.y47{bottom:732.084360px;}
.y83{bottom:734.725485px;}
.y20{bottom:736.808115px;}
.ya0{bottom:750.321075px;}
.y62{bottom:750.471090px;}
.y46{bottom:752.225970px;}
.y1f{bottom:764.449725px;}
.y82{bottom:765.772845px;}
.y45{bottom:779.867565px;}
.y9f{bottom:781.368435px;}
.y61{bottom:781.518450px;}
.y4{bottom:785.867565px;}
.y1e{bottom:792.091320px;}
.y81{bottom:796.820205px;}
.y3{bottom:806.565810px;}
.y44{bottom:807.509175px;}
.y9e{bottom:812.415795px;}
.y60{bottom:812.565810px;}
.y1d{bottom:819.732930px;}
.y80{bottom:827.867565px;}
.y43{bottom:835.150770px;}
.y9d{bottom:843.463170px;}
.y5f{bottom:843.613170px;}
.y1c{bottom:847.374525px;}
.y7f{bottom:858.914925px;}
.y42{bottom:862.792380px;}
.y9c{bottom:874.510530px;}
.y5e{bottom:874.660545px;}
.y1b{bottom:875.016135px;}
.y7e{bottom:889.962300px;}
.y41{bottom:890.433975px;}
.y1a{bottom:902.657730px;}
.y9b{bottom:905.557920px;}
.y5d{bottom:905.707905px;}
.y40{bottom:918.075570px;}
.y7d{bottom:921.009660px;}
.y19{bottom:930.299325px;}
.y9a{bottom:936.605280px;}
.y5c{bottom:936.755265px;}
.y3f{bottom:945.717180px;}
.y7c{bottom:952.057020px;}
.y18{bottom:957.940905px;}
.y99{bottom:967.652640px;}
.y5b{bottom:967.802625px;}
.y3e{bottom:973.358775px;}
.y7b{bottom:983.104380px;}
.y17{bottom:984.954090px;}
.y5a{bottom:998.849985px;}
.y3d{bottom:1001.000385px;}
.y16{bottom:1013.224113px;}
.y7a{bottom:1014.151749px;}
.y98{bottom:1019.473229px;}
.y3c{bottom:1028.641983px;}
.y59{bottom:1029.897354px;}
.y2{bottom:1034.849991px;}
.y15{bottom:1040.865716px;}
.y79{bottom:1045.199112px;}
.y3b{bottom:1056.283584px;}
.y14{bottom:1068.507316px;}
.y78{bottom:1076.246487px;}
.y58{bottom:1081.642971px;}
.y3a{bottom:1083.925197px;}
.y13{bottom:1089.976993px;}
.y77{bottom:1107.293850px;}
.y39{bottom:1111.566799px;}
.y1{bottom:1117.642971px;}
.y76{bottom:1138.341213px;}
.y38{bottom:1139.208400px;}
.h4{height:54.430665px;}
.h2{height:59.167970px;}
.h3{height:64.546876px;}
.h1{height:65.003908px;}
.h0{height:1261.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:127.575005px;}
.xa{left:144.075005px;}
.x3{left:151.988674px;}
.xb{left:160.575005px;}
.xd{left:191.399997px;}
.x1{left:237.972084px;}
.x4{left:288.452070px;}
.x2{left:318.963300px;}
.x6{left:383.202180px;}
.x7{left:402.453510px;}
.x8{left:412.962300px;}
.x5{left:467.775015px;}
.xc{left:814.686675px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.234400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:6.119816pt;}
.wsa{word-spacing:-17.781250pt;}
.ws0{word-spacing:-16.299479pt;}
.ws6{word-spacing:-13.263021pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:2108.365793pt;}
.ws8{word-spacing:2128.475168pt;}
.ws7{word-spacing:2146.722567pt;}
.ws4{word-spacing:2243.259021pt;}
.ws3{word-spacing:2247.985584pt;}
.ws5{word-spacing:2267.779856pt;}
.ws2{word-spacing:2275.170480pt;}
._4{width:0.936494pt;}
._6{width:1.892874pt;}
._49{width:3.118892pt;}
._42{width:4.436399pt;}
._43{width:5.925415pt;}
._44{width:7.651447pt;}
._4b{width:8.850747pt;}
._47{width:9.745198pt;}
._4f{width:10.697015pt;}
._45{width:11.680906pt;}
._7{width:12.629023pt;}
._9{width:14.362178pt;}
._4c{width:16.010399pt;}
._46{width:18.796682pt;}
._3{width:19.998163pt;}
._5{width:20.932778pt;}
._54{width:22.115800pt;}
._a{width:23.285288pt;}
._48{width:24.296432pt;}
._4e{width:25.201143pt;}
._51{width:26.165143pt;}
._50{width:27.094973pt;}
._59{width:28.251464pt;}
._4d{width:29.509446pt;}
._8{width:30.568511pt;}
._57{width:31.756507pt;}
._0{width:32.960413pt;}
._5a{width:34.209034pt;}
._58{width:35.113598pt;}
._1{width:36.413397pt;}
._56{width:37.913450pt;}
._4a{width:39.298337pt;}
._53{width:40.881506pt;}
._5f{width:41.971265pt;}
._61{width:43.016061pt;}
._52{width:44.060626pt;}
._5e{width:45.682696pt;}
._60{width:47.417790pt;}
._5d{width:49.015459pt;}
._5b{width:50.888484pt;}
._55{width:55.806475pt;}
._2{width:59.085417pt;}
._5c{width:60.836488pt;}
._1c{width:102.580726pt;}
._18{width:115.843747pt;}
._40{width:438.456900pt;}
._d{width:440.662654pt;}
._35{width:573.063675pt;}
._41{width:712.969929pt;}
._26{width:775.876180pt;}
._3f{width:822.826703pt;}
._e{width:833.425683pt;}
._3d{width:870.522017pt;}
._1d{width:875.821526pt;}
._33{width:919.219934pt;}
._13{width:922.972562pt;}
._29{width:943.769414pt;}
._31{width:986.193893pt;}
._c{width:1062.334541pt;}
._39{width:1074.738167pt;}
._28{width:1125.756398pt;}
._20{width:1132.173088pt;}
._15{width:1141.368403pt;}
._30{width:1190.324105pt;}
._3c{width:1254.261609pt;}
._21{width:1272.451736pt;}
._14{width:1289.581946pt;}
._1e{width:1332.894444pt;}
._17{width:1352.173093pt;}
._2c{width:1383.712140pt;}
._1b{width:1441.318935pt;}
._34{width:1475.407447pt;}
._36{width:1502.592342pt;}
._19{width:1513.706956pt;}
._f{width:1523.790283pt;}
._1a{width:1549.743415pt;}
._1f{width:1561.717369pt;}
._37{width:1570.597554pt;}
._2d{width:1635.795478pt;}
._3b{width:1700.792867pt;}
._16{width:1704.287684pt;}
._23{width:1707.152244pt;}
._22{width:1728.808519pt;}
._3a{width:1733.191308pt;}
._2a{width:1736.571514pt;}
._12{width:1738.490810pt;}
._2e{width:1757.540266pt;}
._38{width:1770.287661pt;}
._2b{width:1771.634022pt;}
._25{width:1787.818912pt;}
._32{width:1788.821516pt;}
._2f{width:1831.675685pt;}
._3e{width:1866.193913pt;}
._27{width:1895.527250pt;}
._10{width:1897.589772pt;}
._24{width:1962.014229pt;}
._11{width:1985.847587pt;}
._b{width:2100.058525pt;}
.fs1{font-size:58.666668pt;}
.fs0{font-size:64.000001pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:101.136147pt;}
.y37{bottom:103.156653pt;}
.y12{bottom:112.582760pt;}
.yb4{bottom:114.998947pt;}
.y36{bottom:127.726973pt;}
.y96{bottom:128.733800pt;}
.y11{bottom:129.448000pt;}
.yb3{bottom:142.596600pt;}
.y75{bottom:142.729893pt;}
.y35{bottom:152.297280pt;}
.y95{bottom:156.331467pt;}
.yb2{bottom:170.194253pt;}
.y34{bottom:170.200933pt;}
.y74{bottom:170.327560pt;}
.y94{bottom:183.929120pt;}
.y33{bottom:188.104573pt;}
.yb1{bottom:197.791907pt;}
.y73{bottom:197.925213pt;}
.y93{bottom:211.526773pt;}
.y32{bottom:212.674880pt;}
.yb0{bottom:225.389573pt;}
.y72{bottom:225.522867pt;}
.y31{bottom:237.245200pt;}
.y92{bottom:239.124427pt;}
.yaf{bottom:252.987227pt;}
.y71{bottom:253.120520pt;}
.y30{bottom:261.815507pt;}
.y57{bottom:264.283280pt;}
.y91{bottom:266.722080pt;}
.yae{bottom:280.584880pt;}
.y70{bottom:280.718187pt;}
.y2f{bottom:286.385827pt;}
.y56{bottom:288.853600pt;}
.y90{bottom:294.319747pt;}
.yad{bottom:308.182533pt;}
.y6f{bottom:308.315840pt;}
.y2e{bottom:310.956133pt;}
.y10{bottom:311.899173pt;}
.y55{bottom:313.423907pt;}
.y8f{bottom:321.917400pt;}
.yf{bottom:328.764400pt;}
.y2d{bottom:335.526453pt;}
.yac{bottom:335.780187pt;}
.y6e{bottom:335.913493pt;}
.y54{bottom:337.994227pt;}
.ye{bottom:345.629640pt;}
.y8e{bottom:349.515053pt;}
.y2c{bottom:360.096760pt;}
.yd{bottom:362.494867pt;}
.y53{bottom:362.564533pt;}
.yab{bottom:363.377853pt;}
.y6d{bottom:363.511147pt;}
.y8d{bottom:377.112707pt;}
.yc{bottom:379.360107pt;}
.y52{bottom:380.468187pt;}
.y2b{bottom:384.667080pt;}
.yaa{bottom:390.975507pt;}
.y6c{bottom:391.108800pt;}
.yb{bottom:396.225347pt;}
.y8c{bottom:404.710373pt;}
.y51{bottom:405.038493pt;}
.y2a{bottom:409.237387pt;}
.ya{bottom:413.090573pt;}
.ya9{bottom:418.573160pt;}
.y6b{bottom:418.706467pt;}
.y50{bottom:429.608800pt;}
.y9{bottom:429.955813pt;}
.y8b{bottom:432.308027pt;}
.y29{bottom:433.807693pt;}
.ya8{bottom:446.170813pt;}
.y6a{bottom:446.304160pt;}
.y8{bottom:446.821080pt;}
.y4f{bottom:454.179160pt;}
.y28{bottom:458.378053pt;}
.y8a{bottom:459.905720pt;}
.y7{bottom:463.686320pt;}
.ya7{bottom:473.768467pt;}
.y69{bottom:473.901813pt;}
.y4e{bottom:478.749467pt;}
.y6{bottom:480.551560pt;}
.y27{bottom:482.948360pt;}
.y89{bottom:487.503373pt;}
.y5{bottom:497.416787pt;}
.ya6{bottom:501.366133pt;}
.y68{bottom:501.499467pt;}
.y4d{bottom:503.319787pt;}
.y26{bottom:507.518680pt;}
.y88{bottom:515.101040pt;}
.y4c{bottom:527.890093pt;}
.ya5{bottom:528.963787pt;}
.y67{bottom:529.097133pt;}
.y25{bottom:532.088987pt;}
.y87{bottom:542.698693pt;}
.y4b{bottom:552.460413pt;}
.ya4{bottom:556.561440pt;}
.y24{bottom:556.659307pt;}
.y66{bottom:556.694787pt;}
.y86{bottom:570.296347pt;}
.y4a{bottom:577.030720pt;}
.y23{bottom:581.229613pt;}
.ya3{bottom:584.159093pt;}
.y65{bottom:584.292440pt;}
.y85{bottom:597.894000pt;}
.y49{bottom:601.601040pt;}
.y22{bottom:605.799933pt;}
.ya2{bottom:611.756760pt;}
.y64{bottom:611.890093pt;}
.y84{bottom:625.491653pt;}
.y48{bottom:626.171347pt;}
.y21{bottom:630.370240pt;}
.ya1{bottom:639.354413pt;}
.y63{bottom:639.487747pt;}
.y47{bottom:650.741653pt;}
.y83{bottom:653.089320pt;}
.y20{bottom:654.940547pt;}
.ya0{bottom:666.952067pt;}
.y62{bottom:667.085413pt;}
.y46{bottom:668.645307pt;}
.y1f{bottom:679.510867pt;}
.y82{bottom:680.686973pt;}
.y45{bottom:693.215613pt;}
.y9f{bottom:694.549720pt;}
.y61{bottom:694.683067pt;}
.y4{bottom:698.548947pt;}
.y1e{bottom:704.081173pt;}
.y81{bottom:708.284627pt;}
.y3{bottom:716.947387pt;}
.y44{bottom:717.785933pt;}
.y9e{bottom:722.147373pt;}
.y60{bottom:722.280720pt;}
.y1d{bottom:728.651493pt;}
.y80{bottom:735.882280pt;}
.y43{bottom:742.356240pt;}
.y9d{bottom:749.745040pt;}
.y5f{bottom:749.878373pt;}
.y1c{bottom:753.221800pt;}
.y7f{bottom:763.479933pt;}
.y42{bottom:766.926560pt;}
.y9c{bottom:777.342693pt;}
.y5e{bottom:777.476040pt;}
.y1b{bottom:777.792120pt;}
.y7e{bottom:791.077600pt;}
.y41{bottom:791.496867pt;}
.y1a{bottom:802.362427pt;}
.y9b{bottom:804.940373pt;}
.y5d{bottom:805.073693pt;}
.y40{bottom:816.067173pt;}
.y7d{bottom:818.675253pt;}
.y19{bottom:826.932733pt;}
.y9a{bottom:832.538027pt;}
.y5c{bottom:832.671347pt;}
.y3f{bottom:840.637493pt;}
.y7c{bottom:846.272907pt;}
.y18{bottom:851.503027pt;}
.y99{bottom:860.135680pt;}
.y5b{bottom:860.269000pt;}
.y3e{bottom:865.207800pt;}
.y7b{bottom:873.870560pt;}
.y17{bottom:875.514747pt;}
.y5a{bottom:887.866653pt;}
.y3d{bottom:889.778120pt;}
.y16{bottom:900.643656pt;}
.y7a{bottom:901.468221pt;}
.y98{bottom:906.198425pt;}
.y3c{bottom:914.348429pt;}
.y59{bottom:915.464315pt;}
.y2{bottom:919.866659pt;}
.y15{bottom:925.213969pt;}
.y79{bottom:929.065877pt;}
.y3b{bottom:938.918741pt;}
.y14{bottom:949.784281pt;}
.y78{bottom:956.663544pt;}
.y58{bottom:961.460419pt;}
.y3a{bottom:963.489064pt;}
.y13{bottom:968.868439pt;}
.y77{bottom:984.261200pt;}
.y39{bottom:988.059377pt;}
.y1{bottom:993.460419pt;}
.y76{bottom:1011.858856pt;}
.y38{bottom:1012.629689pt;}
.h4{height:48.382813pt;}
.h2{height:52.593751pt;}
.h3{height:57.375001pt;}
.h1{height:57.781251pt;}
.h0{height:1121.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:113.400004pt;}
.xa{left:128.066671pt;}
.x3{left:135.101044pt;}
.xb{left:142.733337pt;}
.xd{left:170.133331pt;}
.x1{left:211.530741pt;}
.x4{left:256.401840pt;}
.x2{left:283.522933pt;}
.x6{left:340.624160pt;}
.x7{left:357.736453pt;}
.x8{left:367.077600pt;}
.x5{left:415.800013pt;}
.xc{left:724.165933pt;}
}




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