
    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_be72281a4b26c17e067b86ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_ffc7c9bddbd6a27f39747f3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_148df355e41fff424692d5fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_81a85dc0d960ed3cae3acf89.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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;}
.lsa{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000001px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.720000px;}
.ls9{letter-spacing:13.680000px;}
.ls4{letter-spacing:38.880000px;}
.ls5{letter-spacing:64.397280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-23.921280px;}
.ws5{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-5.184000px;}
._a{margin-left:-3.948000px;}
._7{margin-left:-2.736000px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._8{width:3.413760px;}
._b{width:4.421280px;}
._16{width:5.960160px;}
._e{width:7.776000px;}
._f{width:8.820000px;}
._19{width:9.936000px;}
._1e{width:11.081280px;}
._5{width:12.912960px;}
._1d{width:14.447040px;}
._4{width:15.730320px;}
._21{width:16.741680px;}
._6{width:18.698880px;}
._13{width:19.728000px;}
._10{width:20.808000px;}
._11{width:21.888000px;}
._1c{width:22.967040px;}
._1a{width:24.192000px;}
._1b{width:25.488000px;}
._1f{width:28.200000px;}
._20{width:29.351520px;}
._14{width:30.456000px;}
._15{width:31.787520px;}
._c{width:33.804000px;}
._d{width:34.992000px;}
._12{width:37.806240px;}
._17{width:39.449760px;}
._18{width:41.201280px;}
._22{width:59.832000px;}
._23{width:60.833760px;}
._24{width:62.094720px;}
._2{width:186.374640px;}
._3{width:187.881120px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:82.116000px;}
.y5{bottom:102.816000px;}
.y4{bottom:129.096000px;}
.y3{bottom:154.110000px;}
.y2{bottom:173.190000px;}
.y31{bottom:196.410000px;}
.ya2{bottom:204.870000px;}
.y30{bottom:217.110000px;}
.y51{bottom:225.930000px;}
.y8c{bottom:235.470000px;}
.y2f{bottom:237.810000px;}
.ya1{bottom:241.950000px;}
.y50{bottom:257.070000px;}
.y2e{bottom:258.510000px;}
.y8b{bottom:266.430000px;}
.ya0{bottom:279.030000px;}
.y2d{bottom:279.210000px;}
.y4f{bottom:288.030000px;}
.y8a{bottom:297.570000px;}
.y2c{bottom:299.910000px;}
.y9f{bottom:309.990000px;}
.y4e{bottom:319.170000px;}
.y2b{bottom:320.610000px;}
.y89{bottom:328.530000px;}
.y9e{bottom:341.175000px;}
.y2a{bottom:341.355000px;}
.y4d{bottom:350.175000px;}
.y88{bottom:359.715000px;}
.y29{bottom:362.055000px;}
.y76{bottom:367.455000px;}
.y9d{bottom:372.135000px;}
.y4c{bottom:381.315000px;}
.y28{bottom:382.755000px;}
.y80{bottom:389.955000px;}
.y87{bottom:390.675000px;}
.y75{bottom:398.595000px;}
.y9c{bottom:403.275000px;}
.y27{bottom:403.455000px;}
.y4b{bottom:412.275000px;}
.y7f{bottom:421.095000px;}
.y86{bottom:421.635000px;}
.y26{bottom:424.155000px;}
.y74{bottom:429.555000px;}
.y9b{bottom:434.235000px;}
.y4a{bottom:443.415000px;}
.y25{bottom:444.855000px;}
.y66{bottom:449.535000px;}
.y63{bottom:450.255000px;}
.y7e{bottom:452.055000px;}
.y73{bottom:460.695000px;}
.y9a{bottom:465.375000px;}
.y24{bottom:465.555000px;}
.y49{bottom:474.375000px;}
.y85{bottom:475.995000px;}
.y62{bottom:481.395000px;}
.y7d{bottom:483.195000px;}
.y23{bottom:486.255000px;}
.y72{bottom:491.655000px;}
.y99{bottom:496.335000px;}
.y48{bottom:505.515000px;}
.y22{bottom:506.955000px;}
.y61{bottom:512.355000px;}
.y7c{bottom:514.155000px;}
.y84{bottom:519.015000px;}
.y71{bottom:522.795000px;}
.y98{bottom:527.475000px;}
.y21{bottom:527.655000px;}
.y47{bottom:536.475000px;}
.y60{bottom:543.495000px;}
.y7b{bottom:545.295000px;}
.y20{bottom:548.355000px;}
.y83{bottom:550.155000px;}
.y70{bottom:553.755000px;}
.y97{bottom:558.435000px;}
.y46{bottom:567.615000px;}
.y1f{bottom:569.055000px;}
.y5f{bottom:574.455000px;}
.y7a{bottom:576.255000px;}
.y6f{bottom:584.895000px;}
.y96{bottom:589.575000px;}
.y1e{bottom:589.755000px;}
.y45{bottom:598.575000px;}
.y5e{bottom:605.625000px;}
.y79{bottom:607.425000px;}
.y1d{bottom:610.485000px;}
.y6e{bottom:615.885000px;}
.y95{bottom:620.565000px;}
.yb7{bottom:622.365000px;}
.y44{bottom:629.745000px;}
.y1c{bottom:631.185000px;}
.y5d{bottom:636.585000px;}
.y78{bottom:638.385000px;}
.yb6{bottom:643.065000px;}
.y6d{bottom:647.025000px;}
.y94{bottom:651.705000px;}
.y1b{bottom:651.885000px;}
.y43{bottom:660.705000px;}
.yb5{bottom:663.765000px;}
.y5c{bottom:667.725000px;}
.y77{bottom:669.525000px;}
.y1a{bottom:672.585000px;}
.y6c{bottom:677.985000px;}
.y93{bottom:682.665000px;}
.yb4{bottom:684.465000px;}
.y42{bottom:691.845000px;}
.y19{bottom:693.285000px;}
.y5b{bottom:698.685000px;}
.yb3{bottom:705.165000px;}
.y6b{bottom:709.125000px;}
.y92{bottom:713.805000px;}
.y18{bottom:713.985000px;}
.y65{bottom:715.065000px;}
.y41{bottom:722.805000px;}
.yb2{bottom:725.865000px;}
.y5a{bottom:729.825000px;}
.y17{bottom:734.685000px;}
.y6a{bottom:740.085000px;}
.y91{bottom:744.765000px;}
.y64{bottom:746.205000px;}
.yb1{bottom:746.565000px;}
.y40{bottom:753.945000px;}
.y16{bottom:755.385000px;}
.y59{bottom:760.785000px;}
.yb0{bottom:767.265000px;}
.y69{bottom:771.225000px;}
.y90{bottom:775.905000px;}
.y15{bottom:776.085000px;}
.y3f{bottom:784.905000px;}
.yaf{bottom:787.965000px;}
.y58{bottom:791.925000px;}
.y14{bottom:796.785000px;}
.y68{bottom:802.185000px;}
.y8f{bottom:806.865000px;}
.yae{bottom:808.665000px;}
.y3e{bottom:816.045000px;}
.y13{bottom:817.485000px;}
.y57{bottom:822.885000px;}
.yad{bottom:829.365000px;}
.y82{bottom:832.605000px;}
.y67{bottom:833.325000px;}
.y12{bottom:838.185000px;}
.y8e{bottom:846.105000px;}
.y3d{bottom:847.005000px;}
.yac{bottom:850.065000px;}
.y11{bottom:858.885000px;}
.y81{bottom:863.565000px;}
.yab{bottom:870.810000px;}
.y56{bottom:877.110000px;}
.y3c{bottom:878.010000px;}
.y10{bottom:879.630000px;}
.yaa{bottom:891.510000px;}
.yf{bottom:900.330000px;}
.y8d{bottom:901.230000px;}
.ya9{bottom:912.210000px;}
.y3b{bottom:920.310000px;}
.ye{bottom:925.350000px;}
.y55{bottom:932.190000px;}
.ya8{bottom:932.910000px;}
.yd{bottom:947.310000px;}
.y3a{bottom:952.890000px;}
.ya7{bottom:953.610000px;}
.y54{bottom:963.330000px;}
.y39{bottom:973.590000px;}
.ya6{bottom:974.310000px;}
.yc{bottom:975.030000px;}
.y38{bottom:994.290000px;}
.ya5{bottom:1001.490000px;}
.yb{bottom:1002.570000px;}
.y37{bottom:1014.990000px;}
.y53{bottom:1025.430000px;}
.ya{bottom:1030.110000px;}
.y36{bottom:1035.690000px;}
.ya4{bottom:1044.510000px;}
.y35{bottom:1056.390000px;}
.y9{bottom:1057.830000px;}
.y34{bottom:1077.090000px;}
.ya3{bottom:1081.410000px;}
.y8{bottom:1085.370000px;}
.y52{bottom:1087.530000px;}
.y33{bottom:1097.790000px;}
.y7{bottom:1112.910000px;}
.y32{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h5{height:52.628906px;}
.h3{height:59.383125px;}
.h7{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x5{left:135.755987px;}
.x8{left:143.675987px;}
.x6{left:144.935987px;}
.xc{left:160.049987px;}
.xb{left:170.129987px;}
.x4{left:180.749987px;}
.x11{left:186.329987px;}
.x9{left:280.514987px;}
.xd{left:284.834987px;}
.x12{left:295.274987px;}
.x13{left:312.554987px;}
.x10{left:314.174987px;}
.xe{left:363.314987px;}
.x7{left:365.834987px;}
.xa{left:467.924987px;}
.xf{left:484.124987px;}
.x1{left:489.164987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls9{letter-spacing:12.160000pt;}
.ls4{letter-spacing:34.560000pt;}
.ls5{letter-spacing:57.242027pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.263360pt;}
.ws5{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-4.608000pt;}
._a{margin-left:-3.509333pt;}
._7{margin-left:-2.432000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._8{width:3.034453pt;}
._b{width:3.930027pt;}
._16{width:5.297920pt;}
._e{width:6.912000pt;}
._f{width:7.840000pt;}
._19{width:8.832000pt;}
._1e{width:9.850027pt;}
._5{width:11.478187pt;}
._1d{width:12.841813pt;}
._4{width:13.982507pt;}
._21{width:14.881493pt;}
._6{width:16.621227pt;}
._13{width:17.536000pt;}
._10{width:18.496000pt;}
._11{width:19.456000pt;}
._1c{width:20.415147pt;}
._1a{width:21.504000pt;}
._1b{width:22.656000pt;}
._1f{width:25.066667pt;}
._20{width:26.090240pt;}
._14{width:27.072000pt;}
._15{width:28.255573pt;}
._c{width:30.048000pt;}
._d{width:31.104000pt;}
._12{width:33.605547pt;}
._17{width:35.066453pt;}
._18{width:36.623360pt;}
._22{width:53.184000pt;}
._23{width:54.074453pt;}
._24{width:55.195307pt;}
._2{width:165.666347pt;}
._3{width:167.005440pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:91.392000pt;}
.y4{bottom:114.752000pt;}
.y3{bottom:136.986667pt;}
.y2{bottom:153.946667pt;}
.y31{bottom:174.586667pt;}
.ya2{bottom:182.106667pt;}
.y30{bottom:192.986667pt;}
.y51{bottom:200.826667pt;}
.y8c{bottom:209.306667pt;}
.y2f{bottom:211.386667pt;}
.ya1{bottom:215.066667pt;}
.y50{bottom:228.506667pt;}
.y2e{bottom:229.786667pt;}
.y8b{bottom:236.826667pt;}
.ya0{bottom:248.026667pt;}
.y2d{bottom:248.186667pt;}
.y4f{bottom:256.026667pt;}
.y8a{bottom:264.506667pt;}
.y2c{bottom:266.586667pt;}
.y9f{bottom:275.546667pt;}
.y4e{bottom:283.706667pt;}
.y2b{bottom:284.986667pt;}
.y89{bottom:292.026667pt;}
.y9e{bottom:303.266667pt;}
.y2a{bottom:303.426667pt;}
.y4d{bottom:311.266667pt;}
.y88{bottom:319.746667pt;}
.y29{bottom:321.826667pt;}
.y76{bottom:326.626667pt;}
.y9d{bottom:330.786667pt;}
.y4c{bottom:338.946667pt;}
.y28{bottom:340.226667pt;}
.y80{bottom:346.626667pt;}
.y87{bottom:347.266667pt;}
.y75{bottom:354.306667pt;}
.y9c{bottom:358.466667pt;}
.y27{bottom:358.626667pt;}
.y4b{bottom:366.466667pt;}
.y7f{bottom:374.306667pt;}
.y86{bottom:374.786667pt;}
.y26{bottom:377.026667pt;}
.y74{bottom:381.826667pt;}
.y9b{bottom:385.986667pt;}
.y4a{bottom:394.146667pt;}
.y25{bottom:395.426667pt;}
.y66{bottom:399.586667pt;}
.y63{bottom:400.226667pt;}
.y7e{bottom:401.826667pt;}
.y73{bottom:409.506667pt;}
.y9a{bottom:413.666667pt;}
.y24{bottom:413.826667pt;}
.y49{bottom:421.666667pt;}
.y85{bottom:423.106667pt;}
.y62{bottom:427.906667pt;}
.y7d{bottom:429.506667pt;}
.y23{bottom:432.226667pt;}
.y72{bottom:437.026667pt;}
.y99{bottom:441.186667pt;}
.y48{bottom:449.346667pt;}
.y22{bottom:450.626667pt;}
.y61{bottom:455.426667pt;}
.y7c{bottom:457.026667pt;}
.y84{bottom:461.346667pt;}
.y71{bottom:464.706667pt;}
.y98{bottom:468.866667pt;}
.y21{bottom:469.026667pt;}
.y47{bottom:476.866667pt;}
.y60{bottom:483.106667pt;}
.y7b{bottom:484.706667pt;}
.y20{bottom:487.426667pt;}
.y83{bottom:489.026667pt;}
.y70{bottom:492.226667pt;}
.y97{bottom:496.386667pt;}
.y46{bottom:504.546667pt;}
.y1f{bottom:505.826667pt;}
.y5f{bottom:510.626667pt;}
.y7a{bottom:512.226667pt;}
.y6f{bottom:519.906667pt;}
.y96{bottom:524.066667pt;}
.y1e{bottom:524.226667pt;}
.y45{bottom:532.066667pt;}
.y5e{bottom:538.333333pt;}
.y79{bottom:539.933333pt;}
.y1d{bottom:542.653333pt;}
.y6e{bottom:547.453333pt;}
.y95{bottom:551.613333pt;}
.yb7{bottom:553.213333pt;}
.y44{bottom:559.773333pt;}
.y1c{bottom:561.053333pt;}
.y5d{bottom:565.853333pt;}
.y78{bottom:567.453333pt;}
.yb6{bottom:571.613333pt;}
.y6d{bottom:575.133333pt;}
.y94{bottom:579.293333pt;}
.y1b{bottom:579.453333pt;}
.y43{bottom:587.293333pt;}
.yb5{bottom:590.013333pt;}
.y5c{bottom:593.533333pt;}
.y77{bottom:595.133333pt;}
.y1a{bottom:597.853333pt;}
.y6c{bottom:602.653333pt;}
.y93{bottom:606.813333pt;}
.yb4{bottom:608.413333pt;}
.y42{bottom:614.973333pt;}
.y19{bottom:616.253333pt;}
.y5b{bottom:621.053333pt;}
.yb3{bottom:626.813333pt;}
.y6b{bottom:630.333333pt;}
.y92{bottom:634.493333pt;}
.y18{bottom:634.653333pt;}
.y65{bottom:635.613333pt;}
.y41{bottom:642.493333pt;}
.yb2{bottom:645.213333pt;}
.y5a{bottom:648.733333pt;}
.y17{bottom:653.053333pt;}
.y6a{bottom:657.853333pt;}
.y91{bottom:662.013333pt;}
.y64{bottom:663.293333pt;}
.yb1{bottom:663.613333pt;}
.y40{bottom:670.173333pt;}
.y16{bottom:671.453333pt;}
.y59{bottom:676.253333pt;}
.yb0{bottom:682.013333pt;}
.y69{bottom:685.533333pt;}
.y90{bottom:689.693333pt;}
.y15{bottom:689.853333pt;}
.y3f{bottom:697.693333pt;}
.yaf{bottom:700.413333pt;}
.y58{bottom:703.933333pt;}
.y14{bottom:708.253333pt;}
.y68{bottom:713.053333pt;}
.y8f{bottom:717.213333pt;}
.yae{bottom:718.813333pt;}
.y3e{bottom:725.373333pt;}
.y13{bottom:726.653333pt;}
.y57{bottom:731.453333pt;}
.yad{bottom:737.213333pt;}
.y82{bottom:740.093333pt;}
.y67{bottom:740.733333pt;}
.y12{bottom:745.053333pt;}
.y8e{bottom:752.093333pt;}
.y3d{bottom:752.893333pt;}
.yac{bottom:755.613333pt;}
.y11{bottom:763.453333pt;}
.y81{bottom:767.613333pt;}
.yab{bottom:774.053333pt;}
.y56{bottom:779.653333pt;}
.y3c{bottom:780.453333pt;}
.y10{bottom:781.893333pt;}
.yaa{bottom:792.453333pt;}
.yf{bottom:800.293333pt;}
.y8d{bottom:801.093333pt;}
.ya9{bottom:810.853333pt;}
.y3b{bottom:818.053333pt;}
.ye{bottom:822.533333pt;}
.y55{bottom:828.613333pt;}
.ya8{bottom:829.253333pt;}
.yd{bottom:842.053333pt;}
.y3a{bottom:847.013333pt;}
.ya7{bottom:847.653333pt;}
.y54{bottom:856.293333pt;}
.y39{bottom:865.413333pt;}
.ya6{bottom:866.053333pt;}
.yc{bottom:866.693333pt;}
.y38{bottom:883.813333pt;}
.ya5{bottom:890.213333pt;}
.yb{bottom:891.173333pt;}
.y37{bottom:902.213333pt;}
.y53{bottom:911.493333pt;}
.ya{bottom:915.653333pt;}
.y36{bottom:920.613333pt;}
.ya4{bottom:928.453333pt;}
.y35{bottom:939.013333pt;}
.y9{bottom:940.293333pt;}
.y34{bottom:957.413333pt;}
.ya3{bottom:961.253333pt;}
.y8{bottom:964.773333pt;}
.y52{bottom:966.693333pt;}
.y33{bottom:975.813333pt;}
.y7{bottom:989.253333pt;}
.y32{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h5{height:46.781250pt;}
.h3{height:52.785000pt;}
.h7{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x5{left:120.671988pt;}
.x8{left:127.711988pt;}
.x6{left:128.831988pt;}
.xc{left:142.266655pt;}
.xb{left:151.226655pt;}
.x4{left:160.666655pt;}
.x11{left:165.626655pt;}
.x9{left:249.346655pt;}
.xd{left:253.186655pt;}
.x12{left:262.466655pt;}
.x13{left:277.826655pt;}
.x10{left:279.266655pt;}
.xe{left:322.946655pt;}
.x7{left:325.186655pt;}
.xa{left:415.933322pt;}
.xf{left:430.333322pt;}
.x1{left:434.813322pt;}
.x3{left:718.373322pt;}
}




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