
    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_7767af6dfddfc7da4ee8e297.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971208;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_a39f30b5d7b27a980c136109.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;}
}
.ws0{word-spacing:-42.192000px;}
.ws1{word-spacing:-21.096000px;}
.ws13{word-spacing:-16.902000px;}
.wsd{word-spacing:-15.822000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:42.979500px;}
.wsa{word-spacing:43.965000px;}
.ws7{word-spacing:45.598500px;}
.ws9{word-spacing:46.984500px;}
.ws8{word-spacing:60.979500px;}
.ws5{word-spacing:78.237000px;}
.ws4{word-spacing:97.965000px;}
.wsc{word-spacing:174.276000px;}
.ws3{word-spacing:350.999437px;}
.ws16{word-spacing:1041.966000px;}
.wsf{word-spacing:1135.206000px;}
.ws11{word-spacing:1189.206000px;}
.ws15{word-spacing:1232.514000px;}
.wse{word-spacing:1250.514000px;}
.wsb{word-spacing:1266.979500px;}
.ws12{word-spacing:1277.514000px;}
.ws10{word-spacing:1283.562000px;}
.ws14{word-spacing:1295.514000px;}
._30{margin-left:-8.136000px;}
._14{margin-left:-6.048000px;}
._37{margin-left:-4.230000px;}
._2{margin-left:-2.664000px;}
._0{margin-left:-1.008000px;}
._1{width:1.512000px;}
._4{width:2.628000px;}
._23{width:3.676500px;}
._3{width:4.680000px;}
._34{width:5.904000px;}
._31{width:57.060000px;}
._10{width:58.176000px;}
._11{width:59.220000px;}
._13{width:60.300000px;}
._e{width:61.488000px;}
._24{width:62.946000px;}
._c{width:68.328000px;}
._d{width:71.892000px;}
._25{width:77.143500px;}
._27{width:81.612000px;}
._22{width:108.265500px;}
._1c{width:109.719000px;}
._1e{width:113.593500px;}
._20{width:116.104500px;}
._1f{width:119.479500px;}
._2c{width:121.140000px;}
._1d{width:128.740500px;}
._5{width:134.855438px;}
._b{width:144.935438px;}
._7{width:148.247437px;}
._2a{width:152.671500px;}
._28{width:183.982500px;}
._f{width:195.696000px;}
._12{width:196.776000px;}
._32{width:201.996000px;}
._21{width:207.481500px;}
._9{width:216.287438px;}
._33{width:251.014500px;}
._26{width:266.373000px;}
._8{width:269.927438px;}
._1b{width:271.449000px;}
._6{width:278.567437px;}
._19{width:305.064000px;}
._36{width:314.927438px;}
._17{width:355.752000px;}
._35{width:391.247437px;}
._1a{width:394.200000px;}
._a{width:408.707438px;}
._16{width:424.224000px;}
._29{width:441.265500px;}
._18{width:532.332000px;}
._2b{width:575.748000px;}
._15{width:605.916000px;}
._49{width:636.921000px;}
._65{width:669.649500px;}
._47{width:678.375000px;}
._62{width:701.581500px;}
._41{width:747.958500px;}
._2d{width:751.248000px;}
._58{width:753.637500px;}
._4b{width:777.631500px;}
._64{width:790.231500px;}
._48{width:798.687000px;}
._43{width:807.822000px;}
._45{width:809.779500px;}
._60{width:853.816500px;}
._42{width:875.011500px;}
._3c{width:889.501500px;}
._3d{width:898.650000px;}
._2e{width:926.748000px;}
._4e{width:947.673000px;}
._61{width:953.113500px;}
._5f{width:955.350000px;}
._3e{width:965.947500px;}
._39{width:989.739000px;}
._54{width:992.605500px;}
._4c{width:1001.821500px;}
._5d{width:1011.919500px;}
._5c{width:1016.244000px;}
._53{width:1019.119500px;}
._55{width:1021.086000px;}
._4a{width:1028.457000px;}
._52{width:1029.771000px;}
._44{width:1031.359500px;}
._50{width:1032.777000px;}
._63{width:1041.709500px;}
._46{width:1043.523000px;}
._5b{width:1061.181000px;}
._3a{width:1065.645000px;}
._66{width:1070.217000px;}
._59{width:1074.321000px;}
._38{width:1078.902000px;}
._5e{width:1093.392000px;}
._4d{width:1096.069500px;}
._57{width:1101.834000px;}
._2f{width:1106.775000px;}
._4f{width:1123.105500px;}
._3f{width:1158.511500px;}
._40{width:1187.059500px;}
._56{width:1249.686000px;}
._5a{width:1254.006000px;}
._51{width:1267.506000px;}
._6a{width:1274.724000px;}
._3b{width:1295.257500px;}
._68{width:1335.919500px;}
._69{width:1346.868000px;}
._67{width:1374.678000px;}
.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;}
.ye{bottom:67.511719px;}
.yb0{bottom:107.625000px;}
.y78{bottom:108.750000px;}
.yaf{bottom:127.875000px;}
.y77{bottom:129.000000px;}
.yae{bottom:147.000000px;}
.y76{bottom:148.125000px;}
.yad{bottom:166.125000px;}
.y75{bottom:167.250000px;}
.yac{bottom:186.375000px;}
.y74{bottom:187.500000px;}
.yab{bottom:205.500000px;}
.y73{bottom:206.625000px;}
.y22{bottom:210.193359px;}
.yaa{bottom:224.625000px;}
.y72{bottom:225.750000px;}
.y21{bottom:244.312500px;}
.ya9{bottom:244.875000px;}
.y71{bottom:246.000000px;}
.y32{bottom:250.324219px;}
.ya8{bottom:264.000000px;}
.y70{bottom:265.125000px;}
.y20{bottom:278.062500px;}
.ya7{bottom:283.125000px;}
.y6f{bottom:284.250000px;}
.y31{bottom:284.812500px;}
.ya6{bottom:303.375000px;}
.y6e{bottom:304.500000px;}
.y30{bottom:311.812500px;}
.y44{bottom:315.011719px;}
.ya5{bottom:322.500000px;}
.y6d{bottom:323.625000px;}
.y2f{bottom:338.812500px;}
.ya4{bottom:341.625000px;}
.y43{bottom:342.574219px;}
.y6c{bottom:342.750000px;}
.ya3{bottom:361.875000px;}
.y6b{bottom:363.000000px;}
.y2e{bottom:366.937500px;}
.y42{bottom:377.062500px;}
.ya2{bottom:381.000000px;}
.y6a{bottom:382.125000px;}
.y1f{bottom:384.199219px;}
.y2d{bottom:393.937500px;}
.ya1{bottom:400.125000px;}
.y69{bottom:401.250000px;}
.y41{bottom:409.687500px;}
.y1e{bottom:414.205078px;}
.ya0{bottom:420.375000px;}
.y2c{bottom:420.937500px;}
.y68{bottom:421.500000px;}
.y9f{bottom:439.500000px;}
.y67{bottom:440.625000px;}
.y1d{bottom:444.193359px;}
.y2b{bottom:449.062500px;}
.y9e{bottom:458.625000px;}
.y66{bottom:459.750000px;}
.y1c{bottom:474.199219px;}
.y2a{bottom:476.062500px;}
.y9d{bottom:478.875000px;}
.y65{bottom:480.000000px;}
.y40{bottom:481.142578px;}
.y9c{bottom:498.000000px;}
.y64{bottom:499.125000px;}
.y29{bottom:503.062500px;}
.y3f{bottom:508.705078px;}
.y9b{bottom:517.125000px;}
.y63{bottom:518.250000px;}
.y1b{bottom:536.267578px;}
.y9a{bottom:537.375000px;}
.y62{bottom:538.500000px;}
.y99{bottom:556.500000px;}
.y61{bottom:557.625000px;}
.y28{bottom:569.437500px;}
.y98{bottom:575.625000px;}
.y1a{bottom:575.642578px;}
.y60{bottom:576.750000px;}
.y97{bottom:595.875000px;}
.y5f{bottom:597.000000px;}
.y27{bottom:602.062500px;}
.y96{bottom:615.000000px;}
.y5e{bottom:616.125000px;}
.y95{bottom:634.125000px;}
.y5d{bottom:635.250000px;}
.y26{bottom:650.437500px;}
.y94{bottom:654.375000px;}
.y5c{bottom:655.500000px;}
.y93{bottom:673.500000px;}
.y5b{bottom:674.625000px;}
.y25{bottom:683.062500px;}
.y92{bottom:692.625000px;}
.y5a{bottom:693.750000px;}
.y91{bottom:712.875000px;}
.y59{bottom:714.000000px;}
.y90{bottom:732.000000px;}
.y58{bottom:733.125000px;}
.y8f{bottom:751.125000px;}
.y57{bottom:752.250000px;}
.y24{bottom:753.761719px;}
.y8e{bottom:771.375000px;}
.y56{bottom:772.500000px;}
.y23{bottom:773.625000px;}
.y8d{bottom:790.500000px;}
.y55{bottom:791.625000px;}
.y45{bottom:797.812500px;}
.y8c{bottom:809.625000px;}
.y54{bottom:810.750000px;}
.yd{bottom:812.455078px;}
.y8b{bottom:829.875000px;}
.y53{bottom:831.000000px;}
.yc{bottom:840.017578px;}
.y8a{bottom:849.000000px;}
.y52{bottom:850.125000px;}
.yb{bottom:861.392578px;}
.y3e{bottom:863.625000px;}
.y89{bottom:868.125000px;}
.y51{bottom:869.250000px;}
.ya{bottom:882.767578px;}
.y88{bottom:888.375000px;}
.y50{bottom:889.500000px;}
.y9{bottom:904.142578px;}
.y87{bottom:907.500000px;}
.y4f{bottom:908.625000px;}
.y33{bottom:911.437500px;}
.y8{bottom:925.517578px;}
.y86{bottom:926.625000px;}
.y4e{bottom:927.750000px;}
.y34{bottom:929.437500px;}
.y10{bottom:930.562500px;}
.y85{bottom:946.875000px;}
.y7{bottom:946.892578px;}
.y35{bottom:947.437500px;}
.y4d{bottom:948.000000px;}
.y11{bottom:948.562500px;}
.y36{bottom:965.437500px;}
.y84{bottom:966.000000px;}
.y12{bottom:966.562500px;}
.y4c{bottom:967.125000px;}
.y6{bottom:968.267578px;}
.y37{bottom:983.437500px;}
.y13{bottom:984.562500px;}
.y83{bottom:985.125000px;}
.y4b{bottom:986.250000px;}
.y5{bottom:989.642578px;}
.y38{bottom:1001.437500px;}
.y14{bottom:1002.562500px;}
.y82{bottom:1005.375000px;}
.y4a{bottom:1006.500000px;}
.y4{bottom:1011.017578px;}
.y39{bottom:1019.437500px;}
.y15{bottom:1020.562500px;}
.y81{bottom:1024.500000px;}
.y49{bottom:1025.625000px;}
.y3{bottom:1032.392578px;}
.y3a{bottom:1037.437500px;}
.y16{bottom:1038.562500px;}
.y80{bottom:1043.625000px;}
.y48{bottom:1044.750000px;}
.y2{bottom:1053.767578px;}
.y3b{bottom:1055.437500px;}
.y17{bottom:1056.562500px;}
.y7f{bottom:1063.875000px;}
.y47{bottom:1065.000000px;}
.y3c{bottom:1073.437500px;}
.y18{bottom:1074.562500px;}
.y7e{bottom:1083.000000px;}
.y3d{bottom:1091.437500px;}
.y1{bottom:1092.000000px;}
.y19{bottom:1092.562500px;}
.y46{bottom:1097.062500px;}
.y7d{bottom:1102.125000px;}
.y7c{bottom:1122.375000px;}
.y7b{bottom:1141.500000px;}
.yf{bottom:1159.500000px;}
.y7a{bottom:1160.625000px;}
.y79{bottom:1180.875000px;}
.h3{height:37.850098px;}
.h4{height:41.291016px;}
.h2{height:55.054688px;}
.h1{height:110.109375px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:67.500000px;}
.x23{left:69.750000px;}
.x10{left:71.244141px;}
.x16{left:74.250000px;}
.x24{left:87.750000px;}
.x25{left:105.750000px;}
.x12{left:117.000000px;}
.x1d{left:119.988281px;}
.x1f{left:136.125000px;}
.x18{left:183.375000px;}
.x17{left:213.750000px;}
.x1e{left:221.800781px;}
.x19{left:229.113281px;}
.x1c{left:267.363281px;}
.x15{left:268.488281px;}
.xf{left:270.738281px;}
.x21{left:287.613281px;}
.x20{left:289.863281px;}
.x9{left:298.863281px;}
.x4{left:305.050781px;}
.x8{left:316.863281px;}
.x7{left:326.988281px;}
.x1{left:329.800781px;}
.x6{left:341.050781px;}
.x5{left:344.988281px;}
.x3{left:348.925781px;}
.xa{left:360.738281px;}
.x13{left:374.800781px;}
.xb{left:419.238281px;}
.x2{left:422.613281px;}
.x11{left:446.238281px;}
.x26{left:448.875000px;}
.x14{left:587.250000px;}
.xe{left:617.519531px;}
.x22{left:714.375000px;}
.xd{left:715.500000px;}
.x1a{left:718.875000px;}
.x1b{left:725.062500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.056000pt;}
.ws0{word-spacing:-37.504000pt;}
.ws1{word-spacing:-18.752000pt;}
.ws13{word-spacing:-15.024000pt;}
.wsd{word-spacing:-14.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:38.204000pt;}
.wsa{word-spacing:39.080000pt;}
.ws7{word-spacing:40.532000pt;}
.ws9{word-spacing:41.764000pt;}
.ws8{word-spacing:54.204000pt;}
.ws5{word-spacing:69.544000pt;}
.ws4{word-spacing:87.080000pt;}
.wsc{word-spacing:154.912000pt;}
.ws3{word-spacing:311.999500pt;}
.ws16{word-spacing:926.192000pt;}
.wsf{word-spacing:1009.072000pt;}
.ws11{word-spacing:1057.072000pt;}
.ws15{word-spacing:1095.568000pt;}
.wse{word-spacing:1111.568000pt;}
.wsb{word-spacing:1126.204000pt;}
.ws12{word-spacing:1135.568000pt;}
.ws10{word-spacing:1140.944000pt;}
.ws14{word-spacing:1151.568000pt;}
._30{margin-left:-7.232000pt;}
._14{margin-left:-5.376000pt;}
._37{margin-left:-3.760000pt;}
._2{margin-left:-2.368000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.344000pt;}
._4{width:2.336000pt;}
._23{width:3.268000pt;}
._3{width:4.160000pt;}
._34{width:5.248000pt;}
._31{width:50.720000pt;}
._10{width:51.712000pt;}
._11{width:52.640000pt;}
._13{width:53.600000pt;}
._e{width:54.656000pt;}
._24{width:55.952000pt;}
._c{width:60.736000pt;}
._d{width:63.904000pt;}
._25{width:68.572000pt;}
._27{width:72.544000pt;}
._22{width:96.236000pt;}
._1c{width:97.528000pt;}
._1e{width:100.972000pt;}
._20{width:103.204000pt;}
._1f{width:106.204000pt;}
._2c{width:107.680000pt;}
._1d{width:114.436000pt;}
._5{width:119.871500pt;}
._b{width:128.831500pt;}
._7{width:131.775500pt;}
._2a{width:135.708000pt;}
._28{width:163.540000pt;}
._f{width:173.952000pt;}
._12{width:174.912000pt;}
._32{width:179.552000pt;}
._21{width:184.428000pt;}
._9{width:192.255500pt;}
._33{width:223.124000pt;}
._26{width:236.776000pt;}
._8{width:239.935500pt;}
._1b{width:241.288000pt;}
._6{width:247.615500pt;}
._19{width:271.168000pt;}
._36{width:279.935500pt;}
._17{width:316.224000pt;}
._35{width:347.775500pt;}
._1a{width:350.400000pt;}
._a{width:363.295500pt;}
._16{width:377.088000pt;}
._29{width:392.236000pt;}
._18{width:473.184000pt;}
._2b{width:511.776000pt;}
._15{width:538.592000pt;}
._49{width:566.152000pt;}
._65{width:595.244000pt;}
._47{width:603.000000pt;}
._62{width:623.628000pt;}
._41{width:664.852000pt;}
._2d{width:667.776000pt;}
._58{width:669.900000pt;}
._4b{width:691.228000pt;}
._64{width:702.428000pt;}
._48{width:709.944000pt;}
._43{width:718.064000pt;}
._45{width:719.804000pt;}
._60{width:758.948000pt;}
._42{width:777.788000pt;}
._3c{width:790.668000pt;}
._3d{width:798.800000pt;}
._2e{width:823.776000pt;}
._4e{width:842.376000pt;}
._61{width:847.212000pt;}
._5f{width:849.200000pt;}
._3e{width:858.620000pt;}
._39{width:879.768000pt;}
._54{width:882.316000pt;}
._4c{width:890.508000pt;}
._5d{width:899.484000pt;}
._5c{width:903.328000pt;}
._53{width:905.884000pt;}
._55{width:907.632000pt;}
._4a{width:914.184000pt;}
._52{width:915.352000pt;}
._44{width:916.764000pt;}
._50{width:918.024000pt;}
._63{width:925.964000pt;}
._46{width:927.576000pt;}
._5b{width:943.272000pt;}
._3a{width:947.240000pt;}
._66{width:951.304000pt;}
._59{width:954.952000pt;}
._38{width:959.024000pt;}
._5e{width:971.904000pt;}
._4d{width:974.284000pt;}
._57{width:979.408000pt;}
._2f{width:983.800000pt;}
._4f{width:998.316000pt;}
._3f{width:1029.788000pt;}
._40{width:1055.164000pt;}
._56{width:1110.832000pt;}
._5a{width:1114.672000pt;}
._51{width:1126.672000pt;}
._6a{width:1133.088000pt;}
._3b{width:1151.340000pt;}
._68{width:1187.484000pt;}
._69{width:1197.216000pt;}
._67{width:1221.936000pt;}
.fs2{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:60.010417pt;}
.yb0{bottom:95.666667pt;}
.y78{bottom:96.666667pt;}
.yaf{bottom:113.666667pt;}
.y77{bottom:114.666667pt;}
.yae{bottom:130.666667pt;}
.y76{bottom:131.666667pt;}
.yad{bottom:147.666667pt;}
.y75{bottom:148.666667pt;}
.yac{bottom:165.666667pt;}
.y74{bottom:166.666667pt;}
.yab{bottom:182.666667pt;}
.y73{bottom:183.666667pt;}
.y22{bottom:186.838542pt;}
.yaa{bottom:199.666667pt;}
.y72{bottom:200.666667pt;}
.y21{bottom:217.166667pt;}
.ya9{bottom:217.666667pt;}
.y71{bottom:218.666667pt;}
.y32{bottom:222.510417pt;}
.ya8{bottom:234.666667pt;}
.y70{bottom:235.666667pt;}
.y20{bottom:247.166667pt;}
.ya7{bottom:251.666667pt;}
.y6f{bottom:252.666667pt;}
.y31{bottom:253.166667pt;}
.ya6{bottom:269.666667pt;}
.y6e{bottom:270.666667pt;}
.y30{bottom:277.166667pt;}
.y44{bottom:280.010417pt;}
.ya5{bottom:286.666667pt;}
.y6d{bottom:287.666667pt;}
.y2f{bottom:301.166667pt;}
.ya4{bottom:303.666667pt;}
.y43{bottom:304.510417pt;}
.y6c{bottom:304.666667pt;}
.ya3{bottom:321.666667pt;}
.y6b{bottom:322.666667pt;}
.y2e{bottom:326.166667pt;}
.y42{bottom:335.166667pt;}
.ya2{bottom:338.666667pt;}
.y6a{bottom:339.666667pt;}
.y1f{bottom:341.510417pt;}
.y2d{bottom:350.166667pt;}
.ya1{bottom:355.666667pt;}
.y69{bottom:356.666667pt;}
.y41{bottom:364.166667pt;}
.y1e{bottom:368.182292pt;}
.ya0{bottom:373.666667pt;}
.y2c{bottom:374.166667pt;}
.y68{bottom:374.666667pt;}
.y9f{bottom:390.666667pt;}
.y67{bottom:391.666667pt;}
.y1d{bottom:394.838542pt;}
.y2b{bottom:399.166667pt;}
.y9e{bottom:407.666667pt;}
.y66{bottom:408.666667pt;}
.y1c{bottom:421.510417pt;}
.y2a{bottom:423.166667pt;}
.y9d{bottom:425.666667pt;}
.y65{bottom:426.666667pt;}
.y40{bottom:427.682292pt;}
.y9c{bottom:442.666667pt;}
.y64{bottom:443.666667pt;}
.y29{bottom:447.166667pt;}
.y3f{bottom:452.182292pt;}
.y9b{bottom:459.666667pt;}
.y63{bottom:460.666667pt;}
.y1b{bottom:476.682292pt;}
.y9a{bottom:477.666667pt;}
.y62{bottom:478.666667pt;}
.y99{bottom:494.666667pt;}
.y61{bottom:495.666667pt;}
.y28{bottom:506.166667pt;}
.y98{bottom:511.666667pt;}
.y1a{bottom:511.682292pt;}
.y60{bottom:512.666667pt;}
.y97{bottom:529.666667pt;}
.y5f{bottom:530.666667pt;}
.y27{bottom:535.166667pt;}
.y96{bottom:546.666667pt;}
.y5e{bottom:547.666667pt;}
.y95{bottom:563.666667pt;}
.y5d{bottom:564.666667pt;}
.y26{bottom:578.166667pt;}
.y94{bottom:581.666667pt;}
.y5c{bottom:582.666667pt;}
.y93{bottom:598.666667pt;}
.y5b{bottom:599.666667pt;}
.y25{bottom:607.166667pt;}
.y92{bottom:615.666667pt;}
.y5a{bottom:616.666667pt;}
.y91{bottom:633.666667pt;}
.y59{bottom:634.666667pt;}
.y90{bottom:650.666667pt;}
.y58{bottom:651.666667pt;}
.y8f{bottom:667.666667pt;}
.y57{bottom:668.666667pt;}
.y24{bottom:670.010417pt;}
.y8e{bottom:685.666667pt;}
.y56{bottom:686.666667pt;}
.y23{bottom:687.666667pt;}
.y8d{bottom:702.666667pt;}
.y55{bottom:703.666667pt;}
.y45{bottom:709.166667pt;}
.y8c{bottom:719.666667pt;}
.y54{bottom:720.666667pt;}
.yd{bottom:722.182292pt;}
.y8b{bottom:737.666667pt;}
.y53{bottom:738.666667pt;}
.yc{bottom:746.682292pt;}
.y8a{bottom:754.666667pt;}
.y52{bottom:755.666667pt;}
.yb{bottom:765.682292pt;}
.y3e{bottom:767.666667pt;}
.y89{bottom:771.666667pt;}
.y51{bottom:772.666667pt;}
.ya{bottom:784.682292pt;}
.y88{bottom:789.666667pt;}
.y50{bottom:790.666667pt;}
.y9{bottom:803.682292pt;}
.y87{bottom:806.666667pt;}
.y4f{bottom:807.666667pt;}
.y33{bottom:810.166667pt;}
.y8{bottom:822.682292pt;}
.y86{bottom:823.666667pt;}
.y4e{bottom:824.666667pt;}
.y34{bottom:826.166667pt;}
.y10{bottom:827.166667pt;}
.y85{bottom:841.666667pt;}
.y7{bottom:841.682292pt;}
.y35{bottom:842.166667pt;}
.y4d{bottom:842.666667pt;}
.y11{bottom:843.166667pt;}
.y36{bottom:858.166667pt;}
.y84{bottom:858.666667pt;}
.y12{bottom:859.166667pt;}
.y4c{bottom:859.666667pt;}
.y6{bottom:860.682292pt;}
.y37{bottom:874.166667pt;}
.y13{bottom:875.166667pt;}
.y83{bottom:875.666667pt;}
.y4b{bottom:876.666667pt;}
.y5{bottom:879.682292pt;}
.y38{bottom:890.166667pt;}
.y14{bottom:891.166667pt;}
.y82{bottom:893.666667pt;}
.y4a{bottom:894.666667pt;}
.y4{bottom:898.682292pt;}
.y39{bottom:906.166667pt;}
.y15{bottom:907.166667pt;}
.y81{bottom:910.666667pt;}
.y49{bottom:911.666667pt;}
.y3{bottom:917.682292pt;}
.y3a{bottom:922.166667pt;}
.y16{bottom:923.166667pt;}
.y80{bottom:927.666667pt;}
.y48{bottom:928.666667pt;}
.y2{bottom:936.682292pt;}
.y3b{bottom:938.166667pt;}
.y17{bottom:939.166667pt;}
.y7f{bottom:945.666667pt;}
.y47{bottom:946.666667pt;}
.y3c{bottom:954.166667pt;}
.y18{bottom:955.166667pt;}
.y7e{bottom:962.666667pt;}
.y3d{bottom:970.166667pt;}
.y1{bottom:970.666667pt;}
.y19{bottom:971.166667pt;}
.y46{bottom:975.166667pt;}
.y7d{bottom:979.666667pt;}
.y7c{bottom:997.666667pt;}
.y7b{bottom:1014.666667pt;}
.yf{bottom:1030.666667pt;}
.y7a{bottom:1031.666667pt;}
.y79{bottom:1049.666667pt;}
.h3{height:33.644531pt;}
.h4{height:36.703125pt;}
.h2{height:48.937500pt;}
.h1{height:97.875000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:60.000000pt;}
.x23{left:62.000000pt;}
.x10{left:63.328125pt;}
.x16{left:66.000000pt;}
.x24{left:78.000000pt;}
.x25{left:94.000000pt;}
.x12{left:104.000000pt;}
.x1d{left:106.656250pt;}
.x1f{left:121.000000pt;}
.x18{left:163.000000pt;}
.x17{left:190.000000pt;}
.x1e{left:197.156250pt;}
.x19{left:203.656250pt;}
.x1c{left:237.656250pt;}
.x15{left:238.656250pt;}
.xf{left:240.656250pt;}
.x21{left:255.656250pt;}
.x20{left:257.656250pt;}
.x9{left:265.656250pt;}
.x4{left:271.156250pt;}
.x8{left:281.656250pt;}
.x7{left:290.656250pt;}
.x1{left:293.156250pt;}
.x6{left:303.156250pt;}
.x5{left:306.656250pt;}
.x3{left:310.156250pt;}
.xa{left:320.656250pt;}
.x13{left:333.156250pt;}
.xb{left:372.656250pt;}
.x2{left:375.656250pt;}
.x11{left:396.656250pt;}
.x26{left:399.000000pt;}
.x14{left:522.000000pt;}
.xe{left:548.906250pt;}
.x22{left:635.000000pt;}
.xd{left:636.000000pt;}
.x1a{left:639.000000pt;}
.x1b{left:644.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; }
  