
    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_b585c4e9aacf1eb27797b5d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966325;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_c65e7a265f71ff9126a1d641.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971224;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.188000px;}
.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;}
}
.ws11{word-spacing:-16.902000px;}
.wsb{word-spacing:-15.822000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:42.979500px;}
.ws7{word-spacing:43.965000px;}
.ws5{word-spacing:45.598500px;}
.ws6{word-spacing:46.984500px;}
.ws8{word-spacing:60.979500px;}
.ws3{word-spacing:78.237000px;}
.ws2{word-spacing:97.965000px;}
.wsa{word-spacing:138.276000px;}
.ws1{word-spacing:350.999437px;}
.ws14{word-spacing:1041.966000px;}
.wsd{word-spacing:1135.206000px;}
.wsf{word-spacing:1189.206000px;}
.wsc{word-spacing:1223.514000px;}
.ws13{word-spacing:1232.514000px;}
.ws10{word-spacing:1277.514000px;}
.wse{word-spacing:1283.562000px;}
.ws12{word-spacing:1295.514000px;}
.ws9{word-spacing:1302.979500px;}
._28{margin-left:-8.172000px;}
._10{margin-left:-6.048000px;}
._4c{margin-left:-4.284000px;}
._11{margin-left:-3.258000px;}
._1{margin-left:-1.584000px;}
._0{width:1.548000px;}
._2{width:2.700000px;}
._2d{width:3.852000px;}
._31{width:4.950000px;}
._2a{width:6.336000px;}
._29{width:56.880000px;}
._e{width:58.248000px;}
._f{width:60.552000px;}
._c{width:61.992000px;}
._1e{width:63.752063px;}
._b{width:70.776000px;}
._1f{width:76.999500px;}
._22{width:81.220500px;}
._1b{width:96.169500px;}
._26{width:98.716500px;}
._19{width:117.729000px;}
._1c{width:120.055500px;}
._1a{width:128.740500px;}
._3{width:135.359438px;}
._9{width:144.215437px;}
._5{width:148.067437px;}
._a{width:185.148000px;}
._d{width:196.596000px;}
._1d{width:206.401500px;}
._2b{width:207.576000px;}
._2c{width:211.896000px;}
._7{width:216.251437px;}
._6{width:269.927437px;}
._18{width:272.025000px;}
._4{width:279.035437px;}
._20{width:301.833000px;}
._16{width:305.064000px;}
._2f{width:314.675437px;}
._14{width:356.256000px;}
._63{width:358.290000px;}
._2e{width:391.247437px;}
._17{width:394.740000px;}
._8{width:409.679438px;}
._13{width:424.260000px;}
._60{width:455.004000px;}
._21{width:459.288000px;}
._15{width:532.872000px;}
._23{width:567.221063px;}
._12{width:606.492000px;}
._42{width:636.318000px;}
._61{width:639.180000px;}
._40{width:678.888000px;}
._62{width:682.956000px;}
._5d{width:700.686000px;}
._64{width:709.722000px;}
._24{width:734.346000px;}
._3a{width:748.062000px;}
._46{width:750.942000px;}
._51{width:753.228000px;}
._44{width:777.186000px;}
._5e{width:790.956000px;}
._41{width:798.336000px;}
._3c{width:807.354000px;}
._56{width:808.668000px;}
._3e{width:810.864000px;}
._5b{width:853.902000px;}
._3b{width:874.962000px;}
._35{width:889.488000px;}
._36{width:898.884000px;}
._25{width:909.720563px;}
._52{width:938.574000px;}
._48{width:948.132000px;}
._5c{width:952.632000px;}
._5a{width:955.530000px;}
._37{width:966.114000px;}
._32{width:989.550000px;}
._4e{width:993.456000px;}
._45{width:1001.754000px;}
._58{width:1011.600000px;}
._57{width:1016.136000px;}
._4d{width:1020.114000px;}
._43{width:1029.132000px;}
._3d{width:1030.176000px;}
._4a{width:1032.678000px;}
._3f{width:1043.172000px;}
._30{width:1046.016000px;}
._54{width:1061.226000px;}
._33{width:1065.294000px;}
._65{width:1068.930000px;}
._55{width:1074.906000px;}
._59{width:1078.092000px;}
._47{width:1095.732000px;}
._27{width:1097.640000px;}
._50{width:1101.024000px;}
._5f{width:1107.360000px;}
._49{width:1122.642000px;}
._38{width:1159.722000px;}
._39{width:1187.262000px;}
._4f{width:1249.632000px;}
._53{width:1254.204000px;}
._4b{width:1267.776000px;}
._69{width:1275.192000px;}
._34{width:1294.470000px;}
._67{width:1335.816000px;}
._68{width:1346.868000px;}
._66{width:1374.642000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y18{bottom:67.511719px;}
.ya6{bottom:107.625000px;}
.y6e{bottom:108.750000px;}
.ya5{bottom:127.875000px;}
.y6d{bottom:129.000000px;}
.ya4{bottom:147.000000px;}
.y6c{bottom:148.125000px;}
.ya3{bottom:166.125000px;}
.y6b{bottom:167.250000px;}
.ya2{bottom:186.375000px;}
.y6a{bottom:187.500000px;}
.ya1{bottom:205.500000px;}
.y69{bottom:206.625000px;}
.y17{bottom:210.193359px;}
.ya0{bottom:224.625000px;}
.y68{bottom:225.750000px;}
.y16{bottom:244.312500px;}
.y9f{bottom:244.875000px;}
.y67{bottom:246.000000px;}
.y28{bottom:250.324219px;}
.y9e{bottom:264.000000px;}
.y66{bottom:265.125000px;}
.y15{bottom:278.062500px;}
.y9d{bottom:283.125000px;}
.y65{bottom:284.250000px;}
.y27{bottom:284.812500px;}
.y9c{bottom:303.375000px;}
.y64{bottom:304.500000px;}
.y26{bottom:311.812500px;}
.y3a{bottom:315.011719px;}
.y9b{bottom:322.500000px;}
.y63{bottom:323.625000px;}
.y25{bottom:338.812500px;}
.y9a{bottom:341.625000px;}
.y39{bottom:342.574219px;}
.y62{bottom:342.750000px;}
.y99{bottom:361.875000px;}
.y61{bottom:363.000000px;}
.y24{bottom:366.937500px;}
.y38{bottom:377.062500px;}
.y98{bottom:381.000000px;}
.y60{bottom:382.125000px;}
.y14{bottom:384.199219px;}
.y23{bottom:393.937500px;}
.y97{bottom:400.125000px;}
.y5f{bottom:401.250000px;}
.y37{bottom:409.687500px;}
.y13{bottom:414.205078px;}
.y96{bottom:420.375000px;}
.y22{bottom:420.937500px;}
.y5e{bottom:421.500000px;}
.y95{bottom:439.500000px;}
.y5d{bottom:440.625000px;}
.y12{bottom:444.193359px;}
.y21{bottom:449.062500px;}
.y94{bottom:458.625000px;}
.y5c{bottom:459.750000px;}
.y11{bottom:474.199219px;}
.y20{bottom:476.062500px;}
.y93{bottom:478.875000px;}
.y5b{bottom:480.000000px;}
.y36{bottom:481.142578px;}
.y92{bottom:498.000000px;}
.y5a{bottom:499.125000px;}
.y1f{bottom:503.062500px;}
.y35{bottom:508.705078px;}
.y91{bottom:517.125000px;}
.y59{bottom:518.250000px;}
.y10{bottom:536.267578px;}
.y90{bottom:537.375000px;}
.y58{bottom:538.500000px;}
.y8f{bottom:556.500000px;}
.y57{bottom:557.625000px;}
.y1e{bottom:569.437500px;}
.y8e{bottom:575.625000px;}
.yf{bottom:575.642578px;}
.y56{bottom:576.750000px;}
.y8d{bottom:595.875000px;}
.y55{bottom:597.000000px;}
.y1d{bottom:602.062500px;}
.y8c{bottom:615.000000px;}
.y54{bottom:616.125000px;}
.y8b{bottom:634.125000px;}
.y53{bottom:635.250000px;}
.y1c{bottom:650.437500px;}
.y8a{bottom:654.375000px;}
.y52{bottom:655.500000px;}
.y89{bottom:673.500000px;}
.y51{bottom:674.625000px;}
.y1b{bottom:683.062500px;}
.y88{bottom:692.625000px;}
.y50{bottom:693.750000px;}
.y87{bottom:712.875000px;}
.y4f{bottom:714.000000px;}
.y86{bottom:732.000000px;}
.y4e{bottom:733.125000px;}
.y85{bottom:751.125000px;}
.y4d{bottom:752.250000px;}
.y1a{bottom:753.761719px;}
.y84{bottom:771.375000px;}
.y4c{bottom:772.500000px;}
.y19{bottom:773.625000px;}
.y83{bottom:790.500000px;}
.y4b{bottom:791.625000px;}
.y3b{bottom:797.812500px;}
.y82{bottom:809.625000px;}
.y4a{bottom:810.750000px;}
.y81{bottom:829.875000px;}
.y49{bottom:831.000000px;}
.y80{bottom:849.000000px;}
.y48{bottom:850.125000px;}
.y34{bottom:863.625000px;}
.y7f{bottom:868.125000px;}
.y47{bottom:869.250000px;}
.y7e{bottom:888.375000px;}
.y46{bottom:889.500000px;}
.y7d{bottom:907.500000px;}
.y45{bottom:908.625000px;}
.y29{bottom:911.437500px;}
.y7c{bottom:926.625000px;}
.y44{bottom:927.750000px;}
.y2a{bottom:929.437500px;}
.y5{bottom:930.562500px;}
.y7b{bottom:946.875000px;}
.y2b{bottom:947.437500px;}
.y43{bottom:948.000000px;}
.y6{bottom:948.562500px;}
.y2c{bottom:965.437500px;}
.y7a{bottom:966.000000px;}
.y7{bottom:966.562500px;}
.y42{bottom:967.125000px;}
.y2d{bottom:983.437500px;}
.y8{bottom:984.562500px;}
.y79{bottom:985.125000px;}
.y41{bottom:986.250000px;}
.y2e{bottom:1001.437500px;}
.y9{bottom:1002.562500px;}
.y78{bottom:1005.375000px;}
.y40{bottom:1006.500000px;}
.y2f{bottom:1019.437500px;}
.ya{bottom:1020.562500px;}
.y77{bottom:1024.500000px;}
.y3f{bottom:1025.625000px;}
.y3{bottom:1026.205078px;}
.y30{bottom:1037.437500px;}
.yb{bottom:1038.562500px;}
.y76{bottom:1043.625000px;}
.y3e{bottom:1044.750000px;}
.y2{bottom:1053.767578px;}
.y31{bottom:1055.437500px;}
.yc{bottom:1056.562500px;}
.y75{bottom:1063.875000px;}
.y3d{bottom:1065.000000px;}
.y32{bottom:1073.437500px;}
.yd{bottom:1074.562500px;}
.y74{bottom:1083.000000px;}
.y33{bottom:1091.437500px;}
.y1{bottom:1092.000000px;}
.ye{bottom:1092.562500px;}
.y3c{bottom:1097.062500px;}
.y73{bottom:1102.125000px;}
.y72{bottom:1122.375000px;}
.y71{bottom:1141.500000px;}
.y4{bottom:1159.500000px;}
.y70{bottom:1160.625000px;}
.y6f{bottom:1180.875000px;}
.h7{height:37.608398px;}
.h4{height:37.850098px;}
.h8{height:41.027344px;}
.h6{height:41.291016px;}
.h2{height:54.703125px;}
.h5{height:55.054688px;}
.h1{height:109.406250px;}
.h3{height:110.109375px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x1b{left:69.750000px;}
.x8{left:71.244141px;}
.xe{left:74.250000px;}
.x1c{left:87.750000px;}
.xa{left:102.375000px;}
.x1d{left:105.750000px;}
.x15{left:119.988281px;}
.x17{left:136.125000px;}
.x10{left:184.500000px;}
.x2{left:194.800781px;}
.xf{left:214.875000px;}
.x16{left:221.800781px;}
.x11{left:229.113281px;}
.xd{left:253.863281px;}
.x14{left:267.363281px;}
.x7{left:270.738281px;}
.x1{left:282.550781px;}
.x19{left:287.613281px;}
.x18{left:289.863281px;}
.xb{left:374.800781px;}
.x3{left:388.300781px;}
.xc{left:419.238281px;}
.x9{left:446.238281px;}
.x6{left:590.906250px;}
.x1a{left:714.375000px;}
.x5{left:715.500000px;}
.x12{left:718.875000px;}
.x13{left:721.687500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.056000pt;}
.ws11{word-spacing:-15.024000pt;}
.wsb{word-spacing:-14.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:38.204000pt;}
.ws7{word-spacing:39.080000pt;}
.ws5{word-spacing:40.532000pt;}
.ws6{word-spacing:41.764000pt;}
.ws8{word-spacing:54.204000pt;}
.ws3{word-spacing:69.544000pt;}
.ws2{word-spacing:87.080000pt;}
.wsa{word-spacing:122.912000pt;}
.ws1{word-spacing:311.999500pt;}
.ws14{word-spacing:926.192000pt;}
.wsd{word-spacing:1009.072000pt;}
.wsf{word-spacing:1057.072000pt;}
.wsc{word-spacing:1087.568000pt;}
.ws13{word-spacing:1095.568000pt;}
.ws10{word-spacing:1135.568000pt;}
.wse{word-spacing:1140.944000pt;}
.ws12{word-spacing:1151.568000pt;}
.ws9{word-spacing:1158.204000pt;}
._28{margin-left:-7.264000pt;}
._10{margin-left:-5.376000pt;}
._4c{margin-left:-3.808000pt;}
._11{margin-left:-2.896000pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.376000pt;}
._2{width:2.400000pt;}
._2d{width:3.424000pt;}
._31{width:4.400000pt;}
._2a{width:5.632000pt;}
._29{width:50.560000pt;}
._e{width:51.776000pt;}
._f{width:53.824000pt;}
._c{width:55.104000pt;}
._1e{width:56.668500pt;}
._b{width:62.912000pt;}
._1f{width:68.444000pt;}
._22{width:72.196000pt;}
._1b{width:85.484000pt;}
._26{width:87.748000pt;}
._19{width:104.648000pt;}
._1c{width:106.716000pt;}
._1a{width:114.436000pt;}
._3{width:120.319500pt;}
._9{width:128.191500pt;}
._5{width:131.615500pt;}
._a{width:164.576000pt;}
._d{width:174.752000pt;}
._1d{width:183.468000pt;}
._2b{width:184.512000pt;}
._2c{width:188.352000pt;}
._7{width:192.223500pt;}
._6{width:239.935500pt;}
._18{width:241.800000pt;}
._4{width:248.031500pt;}
._20{width:268.296000pt;}
._16{width:271.168000pt;}
._2f{width:279.711500pt;}
._14{width:316.672000pt;}
._63{width:318.480000pt;}
._2e{width:347.775500pt;}
._17{width:350.880000pt;}
._8{width:364.159500pt;}
._13{width:377.120000pt;}
._60{width:404.448000pt;}
._21{width:408.256000pt;}
._15{width:473.664000pt;}
._23{width:504.196500pt;}
._12{width:539.104000pt;}
._42{width:565.616000pt;}
._61{width:568.160000pt;}
._40{width:603.456000pt;}
._62{width:607.072000pt;}
._5d{width:622.832000pt;}
._64{width:630.864000pt;}
._24{width:652.752000pt;}
._3a{width:664.944000pt;}
._46{width:667.504000pt;}
._51{width:669.536000pt;}
._44{width:690.832000pt;}
._5e{width:703.072000pt;}
._41{width:709.632000pt;}
._3c{width:717.648000pt;}
._56{width:718.816000pt;}
._3e{width:720.768000pt;}
._5b{width:759.024000pt;}
._3b{width:777.744000pt;}
._35{width:790.656000pt;}
._36{width:799.008000pt;}
._25{width:808.640500pt;}
._52{width:834.288000pt;}
._48{width:842.784000pt;}
._5c{width:846.784000pt;}
._5a{width:849.360000pt;}
._37{width:858.768000pt;}
._32{width:879.600000pt;}
._4e{width:883.072000pt;}
._45{width:890.448000pt;}
._58{width:899.200000pt;}
._57{width:903.232000pt;}
._4d{width:906.768000pt;}
._43{width:914.784000pt;}
._3d{width:915.712000pt;}
._4a{width:917.936000pt;}
._3f{width:927.264000pt;}
._30{width:929.792000pt;}
._54{width:943.312000pt;}
._33{width:946.928000pt;}
._65{width:950.160000pt;}
._55{width:955.472000pt;}
._59{width:958.304000pt;}
._47{width:973.984000pt;}
._27{width:975.680000pt;}
._50{width:978.688000pt;}
._5f{width:984.320000pt;}
._49{width:997.904000pt;}
._38{width:1030.864000pt;}
._39{width:1055.344000pt;}
._4f{width:1110.784000pt;}
._53{width:1114.848000pt;}
._4b{width:1126.912000pt;}
._69{width:1133.504000pt;}
._34{width:1150.640000pt;}
._67{width:1187.392000pt;}
._68{width:1197.216000pt;}
._66{width:1221.904000pt;}
.fs2{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:60.010417pt;}
.ya6{bottom:95.666667pt;}
.y6e{bottom:96.666667pt;}
.ya5{bottom:113.666667pt;}
.y6d{bottom:114.666667pt;}
.ya4{bottom:130.666667pt;}
.y6c{bottom:131.666667pt;}
.ya3{bottom:147.666667pt;}
.y6b{bottom:148.666667pt;}
.ya2{bottom:165.666667pt;}
.y6a{bottom:166.666667pt;}
.ya1{bottom:182.666667pt;}
.y69{bottom:183.666667pt;}
.y17{bottom:186.838542pt;}
.ya0{bottom:199.666667pt;}
.y68{bottom:200.666667pt;}
.y16{bottom:217.166667pt;}
.y9f{bottom:217.666667pt;}
.y67{bottom:218.666667pt;}
.y28{bottom:222.510417pt;}
.y9e{bottom:234.666667pt;}
.y66{bottom:235.666667pt;}
.y15{bottom:247.166667pt;}
.y9d{bottom:251.666667pt;}
.y65{bottom:252.666667pt;}
.y27{bottom:253.166667pt;}
.y9c{bottom:269.666667pt;}
.y64{bottom:270.666667pt;}
.y26{bottom:277.166667pt;}
.y3a{bottom:280.010417pt;}
.y9b{bottom:286.666667pt;}
.y63{bottom:287.666667pt;}
.y25{bottom:301.166667pt;}
.y9a{bottom:303.666667pt;}
.y39{bottom:304.510417pt;}
.y62{bottom:304.666667pt;}
.y99{bottom:321.666667pt;}
.y61{bottom:322.666667pt;}
.y24{bottom:326.166667pt;}
.y38{bottom:335.166667pt;}
.y98{bottom:338.666667pt;}
.y60{bottom:339.666667pt;}
.y14{bottom:341.510417pt;}
.y23{bottom:350.166667pt;}
.y97{bottom:355.666667pt;}
.y5f{bottom:356.666667pt;}
.y37{bottom:364.166667pt;}
.y13{bottom:368.182292pt;}
.y96{bottom:373.666667pt;}
.y22{bottom:374.166667pt;}
.y5e{bottom:374.666667pt;}
.y95{bottom:390.666667pt;}
.y5d{bottom:391.666667pt;}
.y12{bottom:394.838542pt;}
.y21{bottom:399.166667pt;}
.y94{bottom:407.666667pt;}
.y5c{bottom:408.666667pt;}
.y11{bottom:421.510417pt;}
.y20{bottom:423.166667pt;}
.y93{bottom:425.666667pt;}
.y5b{bottom:426.666667pt;}
.y36{bottom:427.682292pt;}
.y92{bottom:442.666667pt;}
.y5a{bottom:443.666667pt;}
.y1f{bottom:447.166667pt;}
.y35{bottom:452.182292pt;}
.y91{bottom:459.666667pt;}
.y59{bottom:460.666667pt;}
.y10{bottom:476.682292pt;}
.y90{bottom:477.666667pt;}
.y58{bottom:478.666667pt;}
.y8f{bottom:494.666667pt;}
.y57{bottom:495.666667pt;}
.y1e{bottom:506.166667pt;}
.y8e{bottom:511.666667pt;}
.yf{bottom:511.682292pt;}
.y56{bottom:512.666667pt;}
.y8d{bottom:529.666667pt;}
.y55{bottom:530.666667pt;}
.y1d{bottom:535.166667pt;}
.y8c{bottom:546.666667pt;}
.y54{bottom:547.666667pt;}
.y8b{bottom:563.666667pt;}
.y53{bottom:564.666667pt;}
.y1c{bottom:578.166667pt;}
.y8a{bottom:581.666667pt;}
.y52{bottom:582.666667pt;}
.y89{bottom:598.666667pt;}
.y51{bottom:599.666667pt;}
.y1b{bottom:607.166667pt;}
.y88{bottom:615.666667pt;}
.y50{bottom:616.666667pt;}
.y87{bottom:633.666667pt;}
.y4f{bottom:634.666667pt;}
.y86{bottom:650.666667pt;}
.y4e{bottom:651.666667pt;}
.y85{bottom:667.666667pt;}
.y4d{bottom:668.666667pt;}
.y1a{bottom:670.010417pt;}
.y84{bottom:685.666667pt;}
.y4c{bottom:686.666667pt;}
.y19{bottom:687.666667pt;}
.y83{bottom:702.666667pt;}
.y4b{bottom:703.666667pt;}
.y3b{bottom:709.166667pt;}
.y82{bottom:719.666667pt;}
.y4a{bottom:720.666667pt;}
.y81{bottom:737.666667pt;}
.y49{bottom:738.666667pt;}
.y80{bottom:754.666667pt;}
.y48{bottom:755.666667pt;}
.y34{bottom:767.666667pt;}
.y7f{bottom:771.666667pt;}
.y47{bottom:772.666667pt;}
.y7e{bottom:789.666667pt;}
.y46{bottom:790.666667pt;}
.y7d{bottom:806.666667pt;}
.y45{bottom:807.666667pt;}
.y29{bottom:810.166667pt;}
.y7c{bottom:823.666667pt;}
.y44{bottom:824.666667pt;}
.y2a{bottom:826.166667pt;}
.y5{bottom:827.166667pt;}
.y7b{bottom:841.666667pt;}
.y2b{bottom:842.166667pt;}
.y43{bottom:842.666667pt;}
.y6{bottom:843.166667pt;}
.y2c{bottom:858.166667pt;}
.y7a{bottom:858.666667pt;}
.y7{bottom:859.166667pt;}
.y42{bottom:859.666667pt;}
.y2d{bottom:874.166667pt;}
.y8{bottom:875.166667pt;}
.y79{bottom:875.666667pt;}
.y41{bottom:876.666667pt;}
.y2e{bottom:890.166667pt;}
.y9{bottom:891.166667pt;}
.y78{bottom:893.666667pt;}
.y40{bottom:894.666667pt;}
.y2f{bottom:906.166667pt;}
.ya{bottom:907.166667pt;}
.y77{bottom:910.666667pt;}
.y3f{bottom:911.666667pt;}
.y3{bottom:912.182292pt;}
.y30{bottom:922.166667pt;}
.yb{bottom:923.166667pt;}
.y76{bottom:927.666667pt;}
.y3e{bottom:928.666667pt;}
.y2{bottom:936.682292pt;}
.y31{bottom:938.166667pt;}
.yc{bottom:939.166667pt;}
.y75{bottom:945.666667pt;}
.y3d{bottom:946.666667pt;}
.y32{bottom:954.166667pt;}
.yd{bottom:955.166667pt;}
.y74{bottom:962.666667pt;}
.y33{bottom:970.166667pt;}
.y1{bottom:970.666667pt;}
.ye{bottom:971.166667pt;}
.y3c{bottom:975.166667pt;}
.y73{bottom:979.666667pt;}
.y72{bottom:997.666667pt;}
.y71{bottom:1014.666667pt;}
.y4{bottom:1030.666667pt;}
.y70{bottom:1031.666667pt;}
.y6f{bottom:1049.666667pt;}
.h7{height:33.429688pt;}
.h4{height:33.644531pt;}
.h8{height:36.468750pt;}
.h6{height:36.703125pt;}
.h2{height:48.625000pt;}
.h5{height:48.937500pt;}
.h1{height:97.250000pt;}
.h3{height:97.875000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x1b{left:62.000000pt;}
.x8{left:63.328125pt;}
.xe{left:66.000000pt;}
.x1c{left:78.000000pt;}
.xa{left:91.000000pt;}
.x1d{left:94.000000pt;}
.x15{left:106.656250pt;}
.x17{left:121.000000pt;}
.x10{left:164.000000pt;}
.x2{left:173.156250pt;}
.xf{left:191.000000pt;}
.x16{left:197.156250pt;}
.x11{left:203.656250pt;}
.xd{left:225.656250pt;}
.x14{left:237.656250pt;}
.x7{left:240.656250pt;}
.x1{left:251.156250pt;}
.x19{left:255.656250pt;}
.x18{left:257.656250pt;}
.xb{left:333.156250pt;}
.x3{left:345.156250pt;}
.xc{left:372.656250pt;}
.x9{left:396.656250pt;}
.x6{left:525.250000pt;}
.x1a{left:635.000000pt;}
.x5{left:636.000000pt;}
.x12{left:639.000000pt;}
.x13{left:641.500000pt;}
}




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