
    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_f71f5f4c884954c7d87870e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_144c9182139263dd2d83c848.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_9b1385c628ec766e0ce793bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ef353f5d20ffc3bb054205a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_983aa3465898ef17030069b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.799967px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:82.799967px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.021106px;}
.ls4{letter-spacing:0.021282px;}
.ls3{letter-spacing:67.010373px;}
.ls1{letter-spacing:84.300566px;}
.ls7{letter-spacing:305.470678px;}
.ls6{letter-spacing:322.040271px;}
.ls0{letter-spacing:1391.153444px;}
.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:-16.613273px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.510116px;}
._3{width:1.010466px;}
._5{width:2.934816px;}
._9{width:4.149662px;}
._8{width:5.319309px;}
._2{width:6.956789px;}
._1{width:8.045173px;}
._6{width:9.128154px;}
._7{width:10.283623px;}
._2f{width:11.462712px;}
._43{width:12.590933px;}
._2d{width:14.101411px;}
._2e{width:15.215705px;}
._4{width:16.257977px;}
._c{width:20.017107px;}
._d{width:23.667722px;}
._e{width:24.752606px;}
._a{width:28.710716px;}
._b{width:29.716717px;}
._39{width:50.206371px;}
._32{width:56.711951px;}
._3f{width:69.214335px;}
._31{width:73.049389px;}
._38{width:74.700761px;}
._3c{width:76.270601px;}
._36{width:86.354929px;}
._35{width:93.559246px;}
._34{width:110.850039px;}
._2b{width:117.557744px;}
._2c{width:130.824440px;}
._10{width:137.069489px;}
._20{width:153.639227px;}
._16{width:154.735164px;}
._11{width:163.005318px;}
._12{width:170.930686px;}
._1b{width:172.027003px;}
._15{width:187.500933px;}
._28{width:188.596874px;}
._1c{width:196.522020px;}
._1d{width:205.167496px;}
._27{width:261.394871px;}
._22{width:268.028262px;}
._14{width:284.581835px;}
._18{width:317.808180px;}
._1e{width:357.668196px;}
._19{width:370.994326px;}
._1a{width:380.931620px;}
._f{width:400.934079px;}
._17{width:414.200954px;}
._26{width:418.498344px;}
._21{width:420.834292px;}
._2a{width:441.804773px;}
._1f{width:445.091137px;}
._23{width:451.725022px;}
._29{width:461.644726px;}
._25{width:468.337764px;}
._13{width:490.574012px;}
._24{width:508.094974px;}
._3e{width:522.551475px;}
._3b{width:728.397896px;}
._37{width:738.467705px;}
._41{width:746.459701px;}
._3d{width:934.451626px;}
._33{width:966.505444px;}
._3a{width:1002.419599px;}
._40{width:1036.415585px;}
._42{width:1040.435584px;}
._30{width:1078.592449px;}
.fc0{color:rgb(0,0,10);}
.fs2{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.239060px;}
.y55{bottom:3.239229px;}
.y2e{bottom:3.419318px;}
.y6d{bottom:4.318937px;}
.y71{bottom:4.318957px;}
.y5a{bottom:4.319252px;}
.y5e{bottom:4.319272px;}
.y61{bottom:4.319292px;}
.y66{bottom:4.319315px;}
.y9b{bottom:91.919963px;}
.y32{bottom:100.560260px;}
.y69{bottom:111.540255px;}
.y9a{bottom:112.619955px;}
.y31{bottom:126.480249px;}
.y68{bottom:132.240247px;}
.y99{bottom:133.319947px;}
.y30{bottom:152.219939px;}
.y98{bottom:154.019938px;}
.y67{bottom:161.579935px;}
.y97{bottom:174.719930px;}
.y2f{bottom:178.139929px;}
.y64{bottom:190.919924px;}
.y96{bottom:195.419922px;}
.y2d{bottom:200.820600px;}
.y65{bottom:207.300600px;}
.y63{bottom:211.619915px;}
.y95{bottom:216.119914px;}
.y2c{bottom:226.919909px;}
.y94{bottom:236.819905px;}
.y62{bottom:240.959904px;}
.y2b{bottom:247.619901px;}
.y93{bottom:257.519897px;}
.y60{bottom:265.980600px;}
.y2a{bottom:268.319893px;}
.y5f{bottom:270.299892px;}
.y92{bottom:278.219889px;}
.y29{bottom:289.019884px;}
.y91{bottom:298.919880px;}
.y5c{bottom:299.639880px;}
.y28{bottom:309.719876px;}
.y5d{bottom:316.020600px;}
.y90{bottom:319.619872px;}
.y5b{bottom:320.339872px;}
.y27{bottom:330.419868px;}
.y8f{bottom:340.319864px;}
.y58{bottom:349.679860px;}
.y26{bottom:351.119860px;}
.y8e{bottom:361.019856px;}
.y59{bottom:366.060600px;}
.y57{bottom:370.379852px;}
.y25{bottom:371.819851px;}
.y8d{bottom:381.719847px;}
.y24{bottom:392.519843px;}
.y56{bottom:399.719840px;}
.y8c{bottom:402.419839px;}
.y23{bottom:413.219835px;}
.y8b{bottom:422.759831px;}
.y54{bottom:424.560600px;}
.y53{bottom:427.799829px;}
.y22{bottom:433.919826px;}
.y8a{bottom:443.819822px;}
.y52{bottom:450.659820px;}
.y21{bottom:454.619818px;}
.y89{bottom:464.519814px;}
.y51{bottom:471.359811px;}
.y20{bottom:475.319810px;}
.y88{bottom:485.219806px;}
.y50{bottom:492.059803px;}
.y1f{bottom:496.019802px;}
.y87{bottom:505.919798px;}
.y4f{bottom:512.759795px;}
.y1e{bottom:516.719793px;}
.y86{bottom:526.619789px;}
.y4e{bottom:533.459787px;}
.y1d{bottom:537.419785px;}
.y4d{bottom:554.159778px;}
.y1c{bottom:558.119777px;}
.y85{bottom:568.019773px;}
.y4c{bottom:574.859770px;}
.y1b{bottom:578.819768px;}
.y84{bottom:588.719765px;}
.y4b{bottom:595.559762px;}
.y1a{bottom:599.519760px;}
.y83{bottom:609.419756px;}
.y4a{bottom:616.259753px;}
.y19{bottom:620.219752px;}
.y18{bottom:640.919744px;}
.y82{bottom:650.819740px;}
.y49{bottom:657.659737px;}
.y17{bottom:661.619735px;}
.y81{bottom:671.519731px;}
.y48{bottom:677.639729px;}
.y16{bottom:682.319727px;}
.y80{bottom:692.219723px;}
.y47{bottom:695.639722px;}
.y15{bottom:703.019719px;}
.y7f{bottom:712.919715px;}
.y46{bottom:719.759712px;}
.y14{bottom:723.719711px;}
.y13{bottom:744.419702px;}
.y45{bottom:745.679702px;}
.y7e{bottom:754.319698px;}
.y12{bottom:765.119694px;}
.y44{bottom:771.419691px;}
.y7d{bottom:775.019690px;}
.y11{bottom:785.819686px;}
.y7c{bottom:795.719682px;}
.y43{bottom:797.339681px;}
.y42{bottom:823.259671px;}
.y10{bottom:827.039669px;}
.y7b{bottom:837.119665px;}
.y40{bottom:845.940600px;}
.yf{bottom:847.379661px;}
.y3f{bottom:849.179660px;}
.y7a{bottom:857.819657px;}
.ye{bottom:868.439653px;}
.y3e{bottom:874.919650px;}
.y79{bottom:878.519649px;}
.yd{bottom:888.779644px;}
.y78{bottom:899.219640px;}
.y3d{bottom:900.839640px;}
.yc{bottom:909.479636px;}
.y3c{bottom:926.759629px;}
.yb{bottom:930.539628px;}
.y77{bottom:940.619624px;}
.ya{bottom:951.239620px;}
.y3b{bottom:952.679619px;}
.y76{bottom:961.319615px;}
.y9{bottom:971.939611px;}
.y3a{bottom:978.419609px;}
.y75{bottom:982.019607px;}
.y8{bottom:992.639603px;}
.y74{bottom:1002.719599px;}
.y39{bottom:1004.339598px;}
.y7{bottom:1013.339595px;}
.y38{bottom:1030.259588px;}
.y6{bottom:1034.039586px;}
.y73{bottom:1044.119582px;}
.y5{bottom:1054.739578px;}
.y37{bottom:1056.179578px;}
.y72{bottom:1064.099574px;}
.y4{bottom:1075.079570px;}
.y36{bottom:1081.919567px;}
.y6f{bottom:1086.599565px;}
.y3{bottom:1096.139562px;}
.y70{bottom:1102.980600px;}
.y6e{bottom:1107.299557px;}
.y35{bottom:1107.839557px;}
.y34{bottom:1133.759546px;}
.y6b{bottom:1136.639545px;}
.y2{bottom:1137.539545px;}
.y6c{bottom:1153.020600px;}
.y6a{bottom:1157.339537px;}
.y1{bottom:1158.599537px;}
.y33{bottom:1159.679536px;}
.h6{height:16.560000px;}
.h9{height:16.740000px;}
.h4{height:17.100000px;}
.hb{height:20.520000px;}
.h7{height:58.621969px;}
.hc{height:58.651148px;}
.h8{height:60.226851px;}
.h5{height:62.327788px;}
.hd{height:70.628878px;}
.h2{height:70.664034px;}
.h3{height:72.562471px;}
.h1{height:84.898091px;}
.ha{height:153.464001px;}
.h0{height:1263.000000px;}
.w8{width:3.060000px;}
.wb{width:4.500000px;}
.wa{width:6.660000px;}
.w9{width:7.380000px;}
.w2{width:8.280000px;}
.w1{width:51.660000px;}
.w6{width:56.700000px;}
.w5{width:59.220000px;}
.w4{width:59.940000px;}
.w7{width:64.980000px;}
.w3{width:65.880000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:85.499966px;}
.x14{left:106.739208px;}
.x3{left:111.059493px;}
.x15{left:120.419952px;}
.x1d{left:166.320671px;}
.x1c{left:170.460026px;}
.x4{left:207.000000px;}
.x5{left:258.660000px;}
.x10{left:346.140000px;}
.x6{left:361.260000px;}
.x11{left:372.959851px;}
.x1a{left:421.200000px;}
.x12{left:424.079830px;}
.x7{left:427.140000px;}
.x1b{left:440.819824px;}
.x8{left:453.600000px;}
.x13{left:470.339812px;}
.x9{left:513.540000px;}
.xa{left:549.720000px;}
.x16{left:575.820000px;}
.x17{left:593.279763px;}
.xb{left:608.940000px;}
.x2{left:630.899748px;}
.xc{left:648.720000px;}
.xd{left:705.420000px;}
.x18{left:721.800000px;}
.xe{left:733.860000px;}
.x19{left:740.879704px;}
.xf{left:798.840000px;}
@media print{
.v1{vertical-align:-73.599971pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:73.599971pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.018761pt;}
.ls4{letter-spacing:0.018917pt;}
.ls3{letter-spacing:59.564776pt;}
.ls1{letter-spacing:74.933837pt;}
.ls7{letter-spacing:271.529491pt;}
.ls6{letter-spacing:286.258019pt;}
.ls0{letter-spacing:1236.580839pt;}
.ws0{word-spacing:-14.767354pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.342325pt;}
._3{width:0.898192pt;}
._5{width:2.608725pt;}
._9{width:3.688589pt;}
._8{width:4.728275pt;}
._2{width:6.183812pt;}
._1{width:7.151265pt;}
._6{width:8.113915pt;}
._7{width:9.140998pt;}
._2f{width:10.189077pt;}
._43{width:11.191941pt;}
._2d{width:12.534587pt;}
._2e{width:13.525071pt;}
._4{width:14.451535pt;}
._c{width:17.792984pt;}
._d{width:21.037975pt;}
._e{width:22.002317pt;}
._a{width:25.520636pt;}
._b{width:26.414860pt;}
._39{width:44.627885pt;}
._32{width:50.410623pt;}
._3f{width:61.523853pt;}
._31{width:64.932790pt;}
._38{width:66.400677pt;}
._3c{width:67.796090pt;}
._36{width:76.759937pt;}
._35{width:83.163774pt;}
._34{width:98.533368pt;}
._2b{width:104.495772pt;}
._2c{width:116.288391pt;}
._10{width:121.839545pt;}
._20{width:136.568202pt;}
._16{width:137.542368pt;}
._11{width:144.893616pt;}
._12{width:151.938388pt;}
._1b{width:152.912892pt;}
._15{width:166.667496pt;}
._28{width:167.641666pt;}
._1c{width:174.686240pt;}
._1d{width:182.371107pt;}
._27{width:232.350996pt;}
._22{width:238.247344pt;}
._14{width:252.961631pt;}
._18{width:282.496160pt;}
._1e{width:317.927285pt;}
._19{width:329.772735pt;}
._1a{width:338.605884pt;}
._f{width:356.385848pt;}
._17{width:368.178626pt;}
._26{width:371.998528pt;}
._21{width:374.074926pt;}
._2a{width:392.715354pt;}
._1f{width:395.636566pt;}
._23{width:401.533353pt;}
._29{width:410.350867pt;}
._25{width:416.300235pt;}
._13{width:436.065789pt;}
._24{width:451.639977pt;}
._3e{width:464.490200pt;}
._3b{width:647.464796pt;}
._37{width:656.415737pt;}
._41{width:663.519735pt;}
._3d{width:830.623668pt;}
._33{width:859.115950pt;}
._3a{width:891.039644pt;}
._40{width:921.258298pt;}
._42{width:924.831630pt;}
._30{width:958.748843pt;}
.fs2{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.879165pt;}
.y55{bottom:2.879315pt;}
.y2e{bottom:3.039394pt;}
.y6d{bottom:3.839055pt;}
.y71{bottom:3.839073pt;}
.y5a{bottom:3.839335pt;}
.y5e{bottom:3.839353pt;}
.y61{bottom:3.839371pt;}
.y66{bottom:3.839391pt;}
.y9b{bottom:81.706634pt;}
.y32{bottom:89.386898pt;}
.y69{bottom:99.146894pt;}
.y9a{bottom:100.106627pt;}
.y31{bottom:112.426888pt;}
.y68{bottom:117.546886pt;}
.y99{bottom:118.506619pt;}
.y30{bottom:135.306613pt;}
.y98{bottom:136.906612pt;}
.y67{bottom:143.626609pt;}
.y97{bottom:155.306605pt;}
.y2f{bottom:158.346603pt;}
.y64{bottom:169.706599pt;}
.y96{bottom:173.706597pt;}
.y2d{bottom:178.507200pt;}
.y65{bottom:184.267200pt;}
.y63{bottom:188.106591pt;}
.y95{bottom:192.106590pt;}
.y2c{bottom:201.706586pt;}
.y94{bottom:210.506582pt;}
.y62{bottom:214.186581pt;}
.y2b{bottom:220.106579pt;}
.y93{bottom:228.906575pt;}
.y60{bottom:236.427200pt;}
.y2a{bottom:238.506571pt;}
.y5f{bottom:240.266571pt;}
.y92{bottom:247.306568pt;}
.y29{bottom:256.906564pt;}
.y91{bottom:265.706560pt;}
.y5c{bottom:266.346560pt;}
.y28{bottom:275.306557pt;}
.y5d{bottom:280.907200pt;}
.y90{bottom:284.106553pt;}
.y5b{bottom:284.746553pt;}
.y27{bottom:293.706549pt;}
.y8f{bottom:302.506546pt;}
.y58{bottom:310.826542pt;}
.y26{bottom:312.106542pt;}
.y8e{bottom:320.906538pt;}
.y59{bottom:325.387200pt;}
.y57{bottom:329.226535pt;}
.y25{bottom:330.506534pt;}
.y8d{bottom:339.306531pt;}
.y24{bottom:348.906527pt;}
.y56{bottom:355.306525pt;}
.y8c{bottom:357.706524pt;}
.y23{bottom:367.306520pt;}
.y8b{bottom:375.786516pt;}
.y54{bottom:377.387200pt;}
.y53{bottom:380.266515pt;}
.y22{bottom:385.706512pt;}
.y8a{bottom:394.506509pt;}
.y52{bottom:400.586506pt;}
.y21{bottom:404.106505pt;}
.y89{bottom:412.906502pt;}
.y51{bottom:418.986499pt;}
.y20{bottom:422.506498pt;}
.y88{bottom:431.306494pt;}
.y50{bottom:437.386492pt;}
.y1f{bottom:440.906490pt;}
.y87{bottom:449.706487pt;}
.y4f{bottom:455.786484pt;}
.y1e{bottom:459.306483pt;}
.y86{bottom:468.106479pt;}
.y4e{bottom:474.186477pt;}
.y1d{bottom:477.706476pt;}
.y4d{bottom:492.586470pt;}
.y1c{bottom:496.106468pt;}
.y85{bottom:504.906465pt;}
.y4c{bottom:510.986462pt;}
.y1b{bottom:514.506461pt;}
.y84{bottom:523.306457pt;}
.y4b{bottom:529.386455pt;}
.y1a{bottom:532.906454pt;}
.y83{bottom:541.706450pt;}
.y4a{bottom:547.786448pt;}
.y19{bottom:551.306446pt;}
.y18{bottom:569.706439pt;}
.y82{bottom:578.506435pt;}
.y49{bottom:584.586433pt;}
.y17{bottom:588.106431pt;}
.y81{bottom:596.906428pt;}
.y48{bottom:602.346426pt;}
.y16{bottom:606.506424pt;}
.y80{bottom:615.306421pt;}
.y47{bottom:618.346419pt;}
.y15{bottom:624.906417pt;}
.y7f{bottom:633.706413pt;}
.y46{bottom:639.786411pt;}
.y14{bottom:643.306409pt;}
.y13{bottom:661.706402pt;}
.y45{bottom:662.826402pt;}
.y7e{bottom:670.506398pt;}
.y12{bottom:680.106395pt;}
.y44{bottom:685.706392pt;}
.y7d{bottom:688.906391pt;}
.y11{bottom:698.506387pt;}
.y7c{bottom:707.306384pt;}
.y43{bottom:708.746383pt;}
.y42{bottom:731.786374pt;}
.y10{bottom:735.146373pt;}
.y7b{bottom:744.106369pt;}
.y40{bottom:751.947200pt;}
.yf{bottom:753.226365pt;}
.y3f{bottom:754.826365pt;}
.y7a{bottom:762.506362pt;}
.ye{bottom:771.946358pt;}
.y3e{bottom:777.706356pt;}
.y79{bottom:780.906354pt;}
.yd{bottom:790.026351pt;}
.y78{bottom:799.306347pt;}
.y3d{bottom:800.746346pt;}
.yc{bottom:808.426343pt;}
.y3c{bottom:823.786337pt;}
.yb{bottom:827.146336pt;}
.y77{bottom:836.106332pt;}
.ya{bottom:845.546328pt;}
.y3b{bottom:846.826328pt;}
.y76{bottom:854.506325pt;}
.y9{bottom:863.946321pt;}
.y3a{bottom:869.706319pt;}
.y75{bottom:872.906318pt;}
.y8{bottom:882.346314pt;}
.y74{bottom:891.306310pt;}
.y39{bottom:892.746310pt;}
.y7{bottom:900.746306pt;}
.y38{bottom:915.786300pt;}
.y6{bottom:919.146299pt;}
.y73{bottom:928.106295pt;}
.y5{bottom:937.546292pt;}
.y37{bottom:938.826291pt;}
.y72{bottom:945.866288pt;}
.y4{bottom:955.626284pt;}
.y36{bottom:961.706282pt;}
.y6f{bottom:965.866280pt;}
.y3{bottom:974.346277pt;}
.y70{bottom:980.427200pt;}
.y6e{bottom:984.266273pt;}
.y35{bottom:984.746273pt;}
.y34{bottom:1007.786264pt;}
.y6b{bottom:1010.346263pt;}
.y2{bottom:1011.146262pt;}
.y6c{bottom:1024.907200pt;}
.y6a{bottom:1028.746255pt;}
.y1{bottom:1029.866255pt;}
.y33{bottom:1030.826254pt;}
.h6{height:14.720000pt;}
.h9{height:14.880000pt;}
.h4{height:15.200000pt;}
.hb{height:18.240000pt;}
.h7{height:52.108417pt;}
.hc{height:52.134354pt;}
.h8{height:53.534979pt;}
.h5{height:55.402478pt;}
.hd{height:62.781225pt;}
.h2{height:62.812475pt;}
.h3{height:64.499974pt;}
.h1{height:75.464970pt;}
.ha{height:136.412445pt;}
.h0{height:1122.666667pt;}
.w8{width:2.720000pt;}
.wb{width:4.000000pt;}
.wa{width:5.920000pt;}
.w9{width:6.560000pt;}
.w2{width:7.360000pt;}
.w1{width:45.920000pt;}
.w6{width:50.400000pt;}
.w5{width:52.640000pt;}
.w4{width:53.280000pt;}
.w7{width:57.760000pt;}
.w3{width:58.560000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.999970pt;}
.x14{left:94.879296pt;}
.x3{left:98.719549pt;}
.x15{left:107.039957pt;}
.x1d{left:147.840597pt;}
.x1c{left:151.520023pt;}
.x4{left:184.000000pt;}
.x5{left:229.920000pt;}
.x10{left:307.680000pt;}
.x6{left:321.120000pt;}
.x11{left:331.519867pt;}
.x1a{left:374.400000pt;}
.x12{left:376.959849pt;}
.x7{left:379.680000pt;}
.x1b{left:391.839843pt;}
.x8{left:403.200000pt;}
.x13{left:418.079833pt;}
.x9{left:456.480000pt;}
.xa{left:488.640000pt;}
.x16{left:511.840000pt;}
.x17{left:527.359789pt;}
.xb{left:541.280000pt;}
.x2{left:560.799776pt;}
.xc{left:576.640000pt;}
.xd{left:627.040000pt;}
.x18{left:641.600000pt;}
.xe{left:652.320000pt;}
.x19{left:658.559737pt;}
.xf{left:710.080000pt;}
}




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