
    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_bbd92797acbe066ec56fcec7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_46d633c096cc47a8e223e091.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_695197e12656212156ca5289.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8d9157f3df38318632ee3e31.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_501da10cd957398515ac4897.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bfdb92c525b731d98954eac7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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:ff7;src:url('chunks/assets/font_57ba091bd6898ebfb96af2cb.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f222bbff76586deb1a8e10ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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;}
.ls3{letter-spacing:-0.454800px;}
.ls1{letter-spacing:-0.126600px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:5.040000px;}
.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;}
}
.ws3{word-spacing:-74.880000px;}
.ws0{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.593400px;}
.ws4{word-spacing:-18.265200px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.198080px;}
._0{width:1.198080px;}
._4{width:2.920320px;}
._5{width:4.268160px;}
._c{width:5.840640px;}
._14{width:6.877920px;}
._8{width:7.948800px;}
._a{width:9.060480px;}
._b{width:10.782720px;}
._15{width:12.055680px;}
._1d{width:13.178880px;}
._12{width:14.302080px;}
._e{width:16.174080px;}
._f{width:17.222400px;}
._9{width:20.292480px;}
._19{width:21.415680px;}
._13{width:22.913280px;}
._1c{width:24.261120px;}
._17{width:25.309440px;}
._d{width:26.357760px;}
._1e{width:27.620640px;}
._2{width:28.828800px;}
._3{width:29.970720px;}
._16{width:31.028160px;}
._1f{width:32.572800px;}
._1b{width:34.669440px;}
._10{width:36.241920px;}
._11{width:37.290240px;}
._18{width:39.162240px;}
._21{width:43.016160px;}
._20{width:44.311440px;}
._22{width:45.448800px;}
._1a{width:46.650240px;}
._6{width:65.520000px;}
._7{width:193.680000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:74.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.636000px;}
.y1{bottom:77.796000px;}
.y19{bottom:104.616000px;}
.y4b{bottom:114.516000px;}
.y70{bottom:122.076000px;}
.y4a{bottom:139.356000px;}
.y9d{bottom:141.156000px;}
.y8c{bottom:141.696000px;}
.y6f{bottom:147.096000px;}
.y49{bottom:164.190000px;}
.y9c{bottom:166.170000px;}
.y8b{bottom:166.710000px;}
.y6e{bottom:171.930000px;}
.y6d{bottom:196.770000px;}
.y48{bottom:203.790000px;}
.y8a{bottom:206.310000px;}
.y6c{bottom:221.430000px;}
.y47{bottom:228.810000px;}
.y89{bottom:231.330000px;}
.y6b{bottom:246.270000px;}
.y46{bottom:253.470000px;}
.y88{bottom:256.170000px;}
.y6a{bottom:271.110000px;}
.y45{bottom:278.355000px;}
.y9b{bottom:280.875000px;}
.y87{bottom:295.815000px;}
.y69{bottom:295.995000px;}
.y44{bottom:303.195000px;}
.y9a{bottom:305.715000px;}
.yaf{bottom:310.755000px;}
.y68{bottom:320.655000px;}
.y43{bottom:328.035000px;}
.y99{bottom:330.555000px;}
.y86{bottom:335.595000px;}
.yae{bottom:335.775000px;}
.y67{bottom:345.495000px;}
.y42{bottom:352.695000px;}
.y98{bottom:355.395000px;}
.y85{bottom:360.615000px;}
.y66{bottom:370.335000px;}
.y41{bottom:377.535000px;}
.y97{bottom:380.055000px;}
.y84{bottom:385.275000px;}
.y40{bottom:402.375000px;}
.y65{bottom:409.935000px;}
.y83{bottom:410.115000px;}
.yb9{bottom:414.615000px;}
.y96{bottom:419.655000px;}
.yad{bottom:424.875000px;}
.y3f{bottom:427.215000px;}
.y64{bottom:434.955000px;}
.y33{bottom:444.495000px;}
.y95{bottom:444.675000px;}
.yac{bottom:449.895000px;}
.y3e{bottom:451.875000px;}
.yb8{bottom:454.395000px;}
.y63{bottom:459.795000px;}
.y32{bottom:469.515000px;}
.yab{bottom:474.735000px;}
.y62{bottom:484.455000px;}
.y3d{bottom:491.475000px;}
.yb7{bottom:494.175000px;}
.y31{bottom:494.355000px;}
.y82{bottom:499.395000px;}
.yaa{bottom:499.575000px;}
.y94{bottom:509.115000px;}
.y61{bottom:509.295000px;}
.y3c{bottom:516.495000px;}
.y18{bottom:521.715000px;}
.y81{bottom:524.235000px;}
.y30{bottom:533.955000px;}
.y60{bottom:534.135000px;}
.y3b{bottom:541.335000px;}
.y17{bottom:546.555000px;}
.y80{bottom:549.075000px;}
.y2f{bottom:559.005000px;}
.ya9{bottom:563.865000px;}
.y3a{bottom:566.205000px;}
.y16{bottom:571.425000px;}
.yb6{bottom:573.765000px;}
.y7f{bottom:573.945000px;}
.y2e{bottom:583.665000px;}
.ya8{bottom:588.885000px;}
.y39{bottom:590.865000px;}
.y15{bottom:596.265000px;}
.y93{bottom:598.605000px;}
.y7e{bottom:598.785000px;}
.y2d{bottom:608.505000px;}
.yb5{bottom:613.545000px;}
.ya7{bottom:613.725000px;}
.y38{bottom:615.705000px;}
.y14{bottom:621.105000px;}
.y5f{bottom:623.265000px;}
.y7d{bottom:623.445000px;}
.y2c{bottom:633.345000px;}
.ya6{bottom:638.565000px;}
.y37{bottom:640.545000px;}
.y13{bottom:645.765000px;}
.y5e{bottom:648.285000px;}
.y2b{bottom:658.185000px;}
.ya5{bottom:663.225000px;}
.y36{bottom:665.385000px;}
.y12{bottom:670.605000px;}
.y5d{bottom:673.125000px;}
.y2a{bottom:682.845000px;}
.ya4{bottom:688.065000px;}
.y11{bottom:695.445000px;}
.y5c{bottom:697.965000px;}
.y35{bottom:704.985000px;}
.y29{bottom:707.685000px;}
.y7c{bottom:712.725000px;}
.ya3{bottom:712.905000px;}
.y5b{bottom:722.625000px;}
.y10{bottom:735.045000px;}
.y7b{bottom:737.745000px;}
.y34{bottom:740.445000px;}
.y28{bottom:746.745000px;}
.y5a{bottom:747.465000px;}
.yf{bottom:760.065000px;}
.y7a{bottom:762.405000px;}
.y27{bottom:771.765000px;}
.y92{bottom:772.305000px;}
.yb4{bottom:777.345000px;}
.ye{bottom:784.725000px;}
.y59{bottom:786.525000px;}
.y79{bottom:787.245000px;}
.y26{bottom:796.605000px;}
.y91{bottom:797.145000px;}
.yb3{bottom:802.365000px;}
.yd{bottom:809.565000px;}
.y58{bottom:811.545000px;}
.y78{bottom:812.085000px;}
.y90{bottom:821.805000px;}
.ya2{bottom:826.845000px;}
.yb2{bottom:827.025000px;}
.yc{bottom:834.405000px;}
.y25{bottom:836.745000px;}
.y77{bottom:836.925000px;}
.y57{bottom:851.730000px;}
.ya1{bottom:851.910000px;}
.y8f{bottom:861.450000px;}
.y24{bottom:861.630000px;}
.yb{bottom:873.510000px;}
.y56{bottom:876.750000px;}
.y23{bottom:886.470000px;}
.ya{bottom:898.530000px;}
.y76{bottom:901.410000px;}
.y55{bottom:901.590000px;}
.y22{bottom:911.310000px;}
.y54{bottom:926.250000px;}
.y21{bottom:936.150000px;}
.y9{bottom:937.770000px;}
.y8e{bottom:950.910000px;}
.y53{bottom:951.090000px;}
.y20{bottom:960.810000px;}
.yb1{bottom:965.850000px;}
.y8{bottom:973.950000px;}
.y52{bottom:975.930000px;}
.y1f{bottom:985.650000px;}
.ya0{bottom:990.690000px;}
.yb0{bottom:990.870000px;}
.y51{bottom:1000.770000px;}
.y7{bottom:1009.770000px;}
.y1e{bottom:1010.490000px;}
.y9f{bottom:1015.710000px;}
.y75{bottom:1025.430000px;}
.y50{bottom:1040.370000px;}
.y9e{bottom:1040.550000px;}
.y6{bottom:1049.550000px;}
.y1d{bottom:1050.090000px;}
.y74{bottom:1064.490000px;}
.y8d{bottom:1065.030000px;}
.y4f{bottom:1065.210000px;}
.y5{bottom:1074.570000px;}
.y1c{bottom:1075.110000px;}
.y73{bottom:1089.510000px;}
.y4e{bottom:1090.050000px;}
.y4{bottom:1099.410000px;}
.y1b{bottom:1099.950000px;}
.y72{bottom:1114.350000px;}
.y4d{bottom:1114.890000px;}
.y3{bottom:1139.040000px;}
.y71{bottom:1139.220000px;}
.y1a{bottom:1139.580000px;}
.y4c{bottom:1139.760000px;}
.h2{height:45.184219px;}
.h5{height:51.991875px;}
.h7{height:66.507188px;}
.h6{height:73.454062px;}
.h4{height:73.490625px;}
.h3{height:75.465000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.x4{left:127.476000px;}
.x3{left:170.130000px;}
.x1{left:442.335000px;}
.x5{left:695.085000px;}
.x6{left:726.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.404267pt;}
.ls1{letter-spacing:-0.112533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:4.480000pt;}
.ws3{word-spacing:-66.560000pt;}
.ws0{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.527467pt;}
.ws4{word-spacing:-16.235733pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.064960pt;}
._0{width:1.064960pt;}
._4{width:2.595840pt;}
._5{width:3.793920pt;}
._c{width:5.191680pt;}
._14{width:6.113707pt;}
._8{width:7.065600pt;}
._a{width:8.053760pt;}
._b{width:9.584640pt;}
._15{width:10.716160pt;}
._1d{width:11.714560pt;}
._12{width:12.712960pt;}
._e{width:14.376960pt;}
._f{width:15.308800pt;}
._9{width:18.037760pt;}
._19{width:19.036160pt;}
._13{width:20.367360pt;}
._1c{width:21.565440pt;}
._17{width:22.497280pt;}
._d{width:23.429120pt;}
._1e{width:24.551680pt;}
._2{width:25.625600pt;}
._3{width:26.640640pt;}
._16{width:27.580587pt;}
._1f{width:28.953600pt;}
._1b{width:30.817280pt;}
._10{width:32.215040pt;}
._11{width:33.146880pt;}
._18{width:34.810880pt;}
._21{width:38.236587pt;}
._20{width:39.387947pt;}
._22{width:40.398933pt;}
._1a{width:41.466880pt;}
._6{width:58.240000pt;}
._7{width:172.160000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:66.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.232000pt;}
.y1{bottom:69.152000pt;}
.y19{bottom:92.992000pt;}
.y4b{bottom:101.792000pt;}
.y70{bottom:108.512000pt;}
.y4a{bottom:123.872000pt;}
.y9d{bottom:125.472000pt;}
.y8c{bottom:125.952000pt;}
.y6f{bottom:130.752000pt;}
.y49{bottom:145.946667pt;}
.y9c{bottom:147.706667pt;}
.y8b{bottom:148.186667pt;}
.y6e{bottom:152.826667pt;}
.y6d{bottom:174.906667pt;}
.y48{bottom:181.146667pt;}
.y8a{bottom:183.386667pt;}
.y6c{bottom:196.826667pt;}
.y47{bottom:203.386667pt;}
.y89{bottom:205.626667pt;}
.y6b{bottom:218.906667pt;}
.y46{bottom:225.306667pt;}
.y88{bottom:227.706667pt;}
.y6a{bottom:240.986667pt;}
.y45{bottom:247.426667pt;}
.y9b{bottom:249.666667pt;}
.y87{bottom:262.946667pt;}
.y69{bottom:263.106667pt;}
.y44{bottom:269.506667pt;}
.y9a{bottom:271.746667pt;}
.yaf{bottom:276.226667pt;}
.y68{bottom:285.026667pt;}
.y43{bottom:291.586667pt;}
.y99{bottom:293.826667pt;}
.y86{bottom:298.306667pt;}
.yae{bottom:298.466667pt;}
.y67{bottom:307.106667pt;}
.y42{bottom:313.506667pt;}
.y98{bottom:315.906667pt;}
.y85{bottom:320.546667pt;}
.y66{bottom:329.186667pt;}
.y41{bottom:335.586667pt;}
.y97{bottom:337.826667pt;}
.y84{bottom:342.466667pt;}
.y40{bottom:357.666667pt;}
.y65{bottom:364.386667pt;}
.y83{bottom:364.546667pt;}
.yb9{bottom:368.546667pt;}
.y96{bottom:373.026667pt;}
.yad{bottom:377.666667pt;}
.y3f{bottom:379.746667pt;}
.y64{bottom:386.626667pt;}
.y33{bottom:395.106667pt;}
.y95{bottom:395.266667pt;}
.yac{bottom:399.906667pt;}
.y3e{bottom:401.666667pt;}
.yb8{bottom:403.906667pt;}
.y63{bottom:408.706667pt;}
.y32{bottom:417.346667pt;}
.yab{bottom:421.986667pt;}
.y62{bottom:430.626667pt;}
.y3d{bottom:436.866667pt;}
.yb7{bottom:439.266667pt;}
.y31{bottom:439.426667pt;}
.y82{bottom:443.906667pt;}
.yaa{bottom:444.066667pt;}
.y94{bottom:452.546667pt;}
.y61{bottom:452.706667pt;}
.y3c{bottom:459.106667pt;}
.y18{bottom:463.746667pt;}
.y81{bottom:465.986667pt;}
.y30{bottom:474.626667pt;}
.y60{bottom:474.786667pt;}
.y3b{bottom:481.186667pt;}
.y17{bottom:485.826667pt;}
.y80{bottom:488.066667pt;}
.y2f{bottom:496.893333pt;}
.ya9{bottom:501.213333pt;}
.y3a{bottom:503.293333pt;}
.y16{bottom:507.933333pt;}
.yb6{bottom:510.013333pt;}
.y7f{bottom:510.173333pt;}
.y2e{bottom:518.813333pt;}
.ya8{bottom:523.453333pt;}
.y39{bottom:525.213333pt;}
.y15{bottom:530.013333pt;}
.y93{bottom:532.093333pt;}
.y7e{bottom:532.253333pt;}
.y2d{bottom:540.893333pt;}
.yb5{bottom:545.373333pt;}
.ya7{bottom:545.533333pt;}
.y38{bottom:547.293333pt;}
.y14{bottom:552.093333pt;}
.y5f{bottom:554.013333pt;}
.y7d{bottom:554.173333pt;}
.y2c{bottom:562.973333pt;}
.ya6{bottom:567.613333pt;}
.y37{bottom:569.373333pt;}
.y13{bottom:574.013333pt;}
.y5e{bottom:576.253333pt;}
.y2b{bottom:585.053333pt;}
.ya5{bottom:589.533333pt;}
.y36{bottom:591.453333pt;}
.y12{bottom:596.093333pt;}
.y5d{bottom:598.333333pt;}
.y2a{bottom:606.973333pt;}
.ya4{bottom:611.613333pt;}
.y11{bottom:618.173333pt;}
.y5c{bottom:620.413333pt;}
.y35{bottom:626.653333pt;}
.y29{bottom:629.053333pt;}
.y7c{bottom:633.533333pt;}
.ya3{bottom:633.693333pt;}
.y5b{bottom:642.333333pt;}
.y10{bottom:653.373333pt;}
.y7b{bottom:655.773333pt;}
.y34{bottom:658.173333pt;}
.y28{bottom:663.773333pt;}
.y5a{bottom:664.413333pt;}
.yf{bottom:675.613333pt;}
.y7a{bottom:677.693333pt;}
.y27{bottom:686.013333pt;}
.y92{bottom:686.493333pt;}
.yb4{bottom:690.973333pt;}
.ye{bottom:697.533333pt;}
.y59{bottom:699.133333pt;}
.y79{bottom:699.773333pt;}
.y26{bottom:708.093333pt;}
.y91{bottom:708.573333pt;}
.yb3{bottom:713.213333pt;}
.yd{bottom:719.613333pt;}
.y58{bottom:721.373333pt;}
.y78{bottom:721.853333pt;}
.y90{bottom:730.493333pt;}
.ya2{bottom:734.973333pt;}
.yb2{bottom:735.133333pt;}
.yc{bottom:741.693333pt;}
.y25{bottom:743.773333pt;}
.y77{bottom:743.933333pt;}
.y57{bottom:757.093333pt;}
.ya1{bottom:757.253333pt;}
.y8f{bottom:765.733333pt;}
.y24{bottom:765.893333pt;}
.yb{bottom:776.453333pt;}
.y56{bottom:779.333333pt;}
.y23{bottom:787.973333pt;}
.ya{bottom:798.693333pt;}
.y76{bottom:801.253333pt;}
.y55{bottom:801.413333pt;}
.y22{bottom:810.053333pt;}
.y54{bottom:823.333333pt;}
.y21{bottom:832.133333pt;}
.y9{bottom:833.573333pt;}
.y8e{bottom:845.253333pt;}
.y53{bottom:845.413333pt;}
.y20{bottom:854.053333pt;}
.yb1{bottom:858.533333pt;}
.y8{bottom:865.733333pt;}
.y52{bottom:867.493333pt;}
.y1f{bottom:876.133333pt;}
.ya0{bottom:880.613333pt;}
.yb0{bottom:880.773333pt;}
.y51{bottom:889.573333pt;}
.y7{bottom:897.573333pt;}
.y1e{bottom:898.213333pt;}
.y9f{bottom:902.853333pt;}
.y75{bottom:911.493333pt;}
.y50{bottom:924.773333pt;}
.y9e{bottom:924.933333pt;}
.y6{bottom:932.933333pt;}
.y1d{bottom:933.413333pt;}
.y74{bottom:946.213333pt;}
.y8d{bottom:946.693333pt;}
.y4f{bottom:946.853333pt;}
.y5{bottom:955.173333pt;}
.y1c{bottom:955.653333pt;}
.y73{bottom:968.453333pt;}
.y4e{bottom:968.933333pt;}
.y4{bottom:977.253333pt;}
.y1b{bottom:977.733333pt;}
.y72{bottom:990.533333pt;}
.y4d{bottom:991.013333pt;}
.y3{bottom:1012.480000pt;}
.y71{bottom:1012.640000pt;}
.y1a{bottom:1012.960000pt;}
.y4c{bottom:1013.120000pt;}
.h2{height:40.163750pt;}
.h5{height:46.215000pt;}
.h7{height:59.117500pt;}
.h6{height:65.292500pt;}
.h4{height:65.325000pt;}
.h3{height:67.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.x4{left:113.312000pt;}
.x3{left:151.226667pt;}
.x1{left:393.186667pt;}
.x5{left:617.853333pt;}
.x6{left:646.053333pt;}
}




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