
    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_8e73f492f0745aea515fbca4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_ccc0da3521531272443f5642.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_e73b882166fb22c2b682557f.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_dd9497e2b1eb9e047a11efd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_7187b410247487e4475541cf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d47909a277afced9389e674c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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;}
.v1{vertical-align:12.240418px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.312986px;}
.ls2{letter-spacing:0.375631px;}
.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;}
}
.ws2{word-spacing:-79.203150px;}
.ws1{word-spacing:-23.760900px;}
.ws4{word-spacing:-19.800788px;}
.ws0{word-spacing:-15.840563px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-22.687483px;}
._6{margin-left:-13.306023px;}
._f{margin-left:-11.110797px;}
._13{margin-left:-10.059034px;}
._c{margin-left:-8.344809px;}
._3{margin-left:-6.417397px;}
._4{margin-left:-5.100519px;}
._5{margin-left:-3.611679px;}
._2{margin-left:-1.900868px;}
._0{width:1.064507px;}
._8{width:2.547150px;}
._7{width:3.611657px;}
._e{width:4.866251px;}
._d{width:6.449228px;}
._11{width:7.698532px;}
._12{width:9.519582px;}
._14{width:10.611191px;}
._10{width:12.050402px;}
._b{width:13.078055px;}
._a{width:14.294595px;}
._9{width:15.397063px;}
._16{width:16.632630px;}
._19{width:18.897805px;}
._18{width:190.087200px;}
._1b{width:557.130065px;}
._1a{width:852.631684px;}
._15{width:1632.191776px;}
._1{width:1634.351960px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs5{font-size:87.123155px;}
.fs2{font-size:95.043600px;}
.fs4{font-size:102.964046px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y19{bottom:41.040115px;}
.ya0{bottom:110.340088px;}
.y6c{bottom:120.420043px;}
.y4f{bottom:121.320099px;}
.y17{bottom:121.860077px;}
.y83{bottom:124.200096px;}
.y48{bottom:124.560036px;}
.y9f{bottom:138.780052px;}
.yae{bottom:139.860077px;}
.y6b{bottom:149.040047px;}
.y25{bottom:149.940033px;}
.y16{bottom:150.300041px;}
.y82{bottom:152.640060px;}
.y47{bottom:153.000068px;}
.y9e{bottom:167.400055px;}
.y6a{bottom:177.480079px;}
.y8b{bottom:178.380066px;}
.y4e{bottom:178.560036px;}
.y81{bottom:181.260064px;}
.y46{bottom:181.620072px;}
.y9d{bottom:195.840088px;}
.y24{bottom:207.000068px;}
.y15{bottom:207.360077px;}
.y9c{bottom:224.460091px;}
.y60{bottom:234.540047px;}
.y8a{bottom:235.440033px;}
.y4d{bottom:235.620072px;}
.y80{bottom:238.320099px;}
.y45{bottom:238.680039px;}
.y9b{bottom:252.900055px;}
.yad{bottom:253.980079px;}
.y5f{bottom:263.160049px;}
.y6e{bottom:264.060036px;}
.y7f{bottom:266.760064px;}
.y9a{bottom:280.620072px;}
.yac{bottom:282.420043px;}
.y5e{bottom:291.600083px;}
.y4c{bottom:292.680039px;}
.y14{bottom:293.040047px;}
.y44{bottom:295.740074px;}
.y5d{bottom:320.220085px;}
.y35{bottom:321.120072px;}
.y7e{bottom:323.820099px;}
.y40{bottom:324.180039px;}
.y99{bottom:336.240074px;}
.yab{bottom:339.480079px;}
.y5c{bottom:348.660049px;}
.y89{bottom:349.560036px;}
.y34{bottom:349.740074px;}
.y7d{bottom:352.440033px;}
.y3f{bottom:352.800041px;}
.yaa{bottom:368.100083px;}
.y5b{bottom:377.280052px;}
.y33{bottom:378.180039px;}
.y13{bottom:378.540047px;}
.y43{bottom:381.240074px;}
.ya9{bottom:396.540047px;}
.y5a{bottom:405.720085px;}
.y88{bottom:406.620072px;}
.y32{bottom:406.800041px;}
.y12{bottom:407.160049px;}
.y3e{bottom:409.860077px;}
.y98{bottom:419.400055px;}
.ya8{bottom:425.160049px;}
.y59{bottom:434.340088px;}
.y31{bottom:435.240074px;}
.y11{bottom:435.600083px;}
.y7c{bottom:437.940033px;}
.y3d{bottom:438.300041px;}
.y97{bottom:447.120072px;}
.ya7{bottom:453.600083px;}
.y58{bottom:462.780052px;}
.y87{bottom:463.680039px;}
.y30{bottom:463.860077px;}
.y7b{bottom:466.560036px;}
.y3c{bottom:466.920043px;}
.y96{bottom:474.840088px;}
.y57{bottom:491.400055px;}
.y2f{bottom:492.300041px;}
.y10{bottom:492.660049px;}
.y7a{bottom:495.000068px;}
.y3b{bottom:495.360077px;}
.y95{bottom:502.560036px;}
.y2e{bottom:520.920043px;}
.y79{bottom:523.620072px;}
.y42{bottom:523.980079px;}
.ya6{bottom:539.280052px;}
.y56{bottom:548.460091px;}
.y2d{bottom:549.360077px;}
.y3a{bottom:552.420043px;}
.ya5{bottom:567.720085px;}
.y69{bottom:576.900055px;}
.y4b{bottom:577.980079px;}
.yf{bottom:578.340088px;}
.y78{bottom:580.680039px;}
.y39{bottom:581.040047px;}
.y94{bottom:585.720085px;}
.ya4{bottom:596.340088px;}
.y68{bottom:605.520058px;}
.y4a{bottom:606.420043px;}
.ye{bottom:606.780052px;}
.y38{bottom:609.480079px;}
.y93{bottom:613.440033px;}
.ya3{bottom:624.780052px;}
.y67{bottom:633.960091px;}
.y86{bottom:634.860077px;}
.y49{bottom:635.040047px;}
.y37{bottom:638.100083px;}
.y92{bottom:641.340088px;}
.ya2{bottom:653.400055px;}
.y6d{bottom:663.480079px;}
.y41{bottom:666.540047px;}
.y91{bottom:669.060036px;}
.y66{bottom:691.020058px;}
.y85{bottom:691.920078px;}
.y2c{bottom:692.100083px;}
.yd{bottom:692.460056px;}
.ya1{bottom:710.460056px;}
.y65{bottom:719.640060px;}
.y2b{bottom:720.540081px;}
.yc{bottom:720.900055px;}
.y36{bottom:723.600083px;}
.y90{bottom:724.500068px;}
.y64{bottom:748.080059px;}
.y2a{bottom:749.160049px;}
.yb{bottom:749.520058px;}
.y8f{bottom:752.220051px;}
.y63{bottom:776.700061px;}
.y29{bottom:777.600083px;}
.ya{bottom:777.960056px;}
.y8e{bottom:779.940067px;}
.y84{bottom:806.040081px;}
.y23{bottom:806.220051px;}
.y9{bottom:806.580059px;}
.y8d{bottom:807.660049px;}
.y22{bottom:834.660049px;}
.y8{bottom:835.020058px;}
.y8c{bottom:835.380066px;}
.y62{bottom:862.200061px;}
.y28{bottom:863.280052px;}
.y77{bottom:865.980079px;}
.y27{bottom:891.720051px;}
.y76{bottom:894.420078px;}
.y61{bottom:919.260064px;}
.y21{bottom:920.340054px;}
.y7{bottom:920.700061px;}
.y55{bottom:947.880066px;}
.y20{bottom:948.780053px;}
.y6{bottom:949.140060px;}
.y75{bottom:951.480079px;}
.y54{bottom:976.320065px;}
.y1f{bottom:977.400072px;}
.y5{bottom:977.760064px;}
.y74{bottom:980.100065px;}
.y53{bottom:1004.940067px;}
.y1e{bottom:1005.840070px;}
.y4{bottom:1006.200061px;}
.y73{bottom:1008.540064px;}
.y52{bottom:1033.380066px;}
.y1d{bottom:1034.460074px;}
.y3{bottom:1034.820065px;}
.y72{bottom:1037.160067px;}
.y51{bottom:1062.000068px;}
.y1c{bottom:1062.900072px;}
.y71{bottom:1065.600065px;}
.y1b{bottom:1091.520058px;}
.y2{bottom:1091.880066px;}
.y70{bottom:1094.220068px;}
.y26{bottom:1119.960065px;}
.y6f{bottom:1122.660067px;}
.y18{bottom:1123.020066px;}
.y50{bottom:1147.500068px;}
.y1a{bottom:1148.580068px;}
.h7{height:55.302981px;}
.h9{height:55.596662px;}
.h8{height:57.534328px;}
.h5{height:64.414315px;}
.h6{height:65.992187px;}
.h2{height:67.837080px;}
.hb{height:69.496123px;}
.ha{height:70.346938px;}
.hd{height:76.445463px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.hc{height:91.450976px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:89.819996px;}
.x18{left:97.560001px;}
.x1c{left:101.700002px;}
.xf{left:107.459997px;}
.x1{left:140.939999px;}
.x12{left:174.060001px;}
.x4{left:197.099997px;}
.x13{left:208.259994px;}
.x11{left:211.680005px;}
.xb{left:224.639992px;}
.x1a{left:230.580008px;}
.x16{left:235.620002px;}
.x1e{left:240.840002px;}
.x14{left:258.840002px;}
.x3{left:264.960005px;}
.x21{left:266.759994px;}
.x15{left:270.000000px;}
.x17{left:288.540012px;}
.x1b{left:291.240006px;}
.x19{left:296.459988px;}
.xc{left:312.480011px;}
.x6{left:316.259994px;}
.x2{left:318.060001px;}
.x22{left:331.920010px;}
.x10{left:334.980011px;}
.x1f{left:340.920010px;}
.x24{left:361.259994px;}
.x8{left:365.220017px;}
.x5{left:370.800007px;}
.x1d{left:377.819996px;}
.xa{left:385.379998px;}
.x9{left:408.060001px;}
.x7{left:417.600014px;}
.x23{left:478.079990px;}
.x25{left:485.279983px;}
.xd{left:524.879998px;}
.x26{left:583.919975px;}
.x27{left:604.620002px;}
.x20{left:724.860008px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.278210pt;}
.ls2{letter-spacing:0.333894pt;}
.ws2{word-spacing:-70.402800pt;}
.ws1{word-spacing:-21.120800pt;}
.ws4{word-spacing:-17.600700pt;}
.ws0{word-spacing:-14.080500pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-20.166651pt;}
._6{margin-left:-11.827576pt;}
._f{margin-left:-9.876264pt;}
._13{margin-left:-8.941364pt;}
._c{margin-left:-7.417608pt;}
._3{margin-left:-5.704353pt;}
._4{margin-left:-4.533794pt;}
._5{margin-left:-3.210382pt;}
._2{margin-left:-1.689660pt;}
._0{width:0.946228pt;}
._8{width:2.264133pt;}
._7{width:3.210362pt;}
._e{width:4.325556pt;}
._d{width:5.732647pt;}
._11{width:6.843139pt;}
._12{width:8.461850pt;}
._14{width:9.432170pt;}
._10{width:10.711468pt;}
._b{width:11.624938pt;}
._a{width:12.706306pt;}
._9{width:13.686278pt;}
._16{width:14.784560pt;}
._19{width:16.798049pt;}
._18{width:168.966400pt;}
._1b{width:495.226724pt;}
._1a{width:757.894830pt;}
._15{width:1450.837134pt;}
._1{width:1452.757298pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs5{font-size:77.442804pt;}
.fs2{font-size:84.483200pt;}
.fs4{font-size:91.523596pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y19{bottom:36.480103pt;}
.ya0{bottom:98.080079pt;}
.y6c{bottom:107.040039pt;}
.y4f{bottom:107.840088pt;}
.y17{bottom:108.320069pt;}
.y83{bottom:110.400086pt;}
.y48{bottom:110.720032pt;}
.y9f{bottom:123.360047pt;}
.yae{bottom:124.320069pt;}
.y6b{bottom:132.480042pt;}
.y25{bottom:133.280030pt;}
.y16{bottom:133.600037pt;}
.y82{bottom:135.680054pt;}
.y47{bottom:136.000061pt;}
.y9e{bottom:148.800049pt;}
.y6a{bottom:157.760071pt;}
.y8b{bottom:158.560059pt;}
.y4e{bottom:158.720032pt;}
.y81{bottom:161.120057pt;}
.y46{bottom:161.440064pt;}
.y9d{bottom:174.080079pt;}
.y24{bottom:184.000061pt;}
.y15{bottom:184.320069pt;}
.y9c{bottom:199.520081pt;}
.y60{bottom:208.480042pt;}
.y8a{bottom:209.280030pt;}
.y4d{bottom:209.440064pt;}
.y80{bottom:211.840088pt;}
.y45{bottom:212.160035pt;}
.y9b{bottom:224.800049pt;}
.yad{bottom:225.760071pt;}
.y5f{bottom:233.920044pt;}
.y6e{bottom:234.720032pt;}
.y7f{bottom:237.120057pt;}
.y9a{bottom:249.440064pt;}
.yac{bottom:251.040039pt;}
.y5e{bottom:259.200074pt;}
.y4c{bottom:260.160035pt;}
.y14{bottom:260.480042pt;}
.y44{bottom:262.880066pt;}
.y5d{bottom:284.640076pt;}
.y35{bottom:285.440064pt;}
.y7e{bottom:287.840088pt;}
.y40{bottom:288.160035pt;}
.y99{bottom:298.880066pt;}
.yab{bottom:301.760071pt;}
.y5c{bottom:309.920044pt;}
.y89{bottom:310.720032pt;}
.y34{bottom:310.880066pt;}
.y7d{bottom:313.280030pt;}
.y3f{bottom:313.600037pt;}
.yaa{bottom:327.200074pt;}
.y5b{bottom:335.360047pt;}
.y33{bottom:336.160035pt;}
.y13{bottom:336.480042pt;}
.y43{bottom:338.880066pt;}
.ya9{bottom:352.480042pt;}
.y5a{bottom:360.640076pt;}
.y88{bottom:361.440064pt;}
.y32{bottom:361.600037pt;}
.y12{bottom:361.920044pt;}
.y3e{bottom:364.320069pt;}
.y98{bottom:372.800049pt;}
.ya8{bottom:377.920044pt;}
.y59{bottom:386.080079pt;}
.y31{bottom:386.880066pt;}
.y11{bottom:387.200074pt;}
.y7c{bottom:389.280030pt;}
.y3d{bottom:389.600037pt;}
.y97{bottom:397.440064pt;}
.ya7{bottom:403.200074pt;}
.y58{bottom:411.360047pt;}
.y87{bottom:412.160035pt;}
.y30{bottom:412.320069pt;}
.y7b{bottom:414.720032pt;}
.y3c{bottom:415.040039pt;}
.y96{bottom:422.080079pt;}
.y57{bottom:436.800049pt;}
.y2f{bottom:437.600037pt;}
.y10{bottom:437.920044pt;}
.y7a{bottom:440.000061pt;}
.y3b{bottom:440.320069pt;}
.y95{bottom:446.720032pt;}
.y2e{bottom:463.040039pt;}
.y79{bottom:465.440064pt;}
.y42{bottom:465.760071pt;}
.ya6{bottom:479.360047pt;}
.y56{bottom:487.520081pt;}
.y2d{bottom:488.320069pt;}
.y3a{bottom:491.040039pt;}
.ya5{bottom:504.640076pt;}
.y69{bottom:512.800049pt;}
.y4b{bottom:513.760071pt;}
.yf{bottom:514.080079pt;}
.y78{bottom:516.160035pt;}
.y39{bottom:516.480042pt;}
.y94{bottom:520.640076pt;}
.ya4{bottom:530.080079pt;}
.y68{bottom:538.240052pt;}
.y4a{bottom:539.040039pt;}
.ye{bottom:539.360047pt;}
.y38{bottom:541.760071pt;}
.y93{bottom:545.280030pt;}
.ya3{bottom:555.360047pt;}
.y67{bottom:563.520081pt;}
.y86{bottom:564.320069pt;}
.y49{bottom:564.480042pt;}
.y37{bottom:567.200074pt;}
.y92{bottom:570.080079pt;}
.ya2{bottom:580.800049pt;}
.y6d{bottom:589.760071pt;}
.y41{bottom:592.480042pt;}
.y91{bottom:594.720032pt;}
.y66{bottom:614.240052pt;}
.y85{bottom:615.040070pt;}
.y2c{bottom:615.200074pt;}
.yd{bottom:615.520050pt;}
.ya1{bottom:631.520050pt;}
.y65{bottom:639.680054pt;}
.y2b{bottom:640.480072pt;}
.yc{bottom:640.800049pt;}
.y36{bottom:643.200074pt;}
.y90{bottom:644.000061pt;}
.y64{bottom:664.960053pt;}
.y2a{bottom:665.920044pt;}
.yb{bottom:666.240052pt;}
.y8f{bottom:668.640046pt;}
.y63{bottom:690.400055pt;}
.y29{bottom:691.200074pt;}
.ya{bottom:691.520050pt;}
.y8e{bottom:693.280060pt;}
.y84{bottom:716.480072pt;}
.y23{bottom:716.640046pt;}
.y9{bottom:716.960053pt;}
.y8d{bottom:717.920044pt;}
.y22{bottom:741.920044pt;}
.y8{bottom:742.240052pt;}
.y8c{bottom:742.560059pt;}
.y62{bottom:766.400055pt;}
.y28{bottom:767.360047pt;}
.y77{bottom:769.760071pt;}
.y27{bottom:792.640046pt;}
.y76{bottom:795.040070pt;}
.y61{bottom:817.120057pt;}
.y21{bottom:818.080048pt;}
.y7{bottom:818.400055pt;}
.y55{bottom:842.560059pt;}
.y20{bottom:843.360047pt;}
.y6{bottom:843.680054pt;}
.y75{bottom:845.760071pt;}
.y54{bottom:867.840058pt;}
.y1f{bottom:868.800064pt;}
.y5{bottom:869.120057pt;}
.y74{bottom:871.200058pt;}
.y53{bottom:893.280060pt;}
.y1e{bottom:894.080063pt;}
.y4{bottom:894.400055pt;}
.y73{bottom:896.480057pt;}
.y52{bottom:918.560059pt;}
.y1d{bottom:919.520066pt;}
.y3{bottom:919.840058pt;}
.y72{bottom:921.920060pt;}
.y51{bottom:944.000061pt;}
.y1c{bottom:944.800064pt;}
.y71{bottom:947.200058pt;}
.y1b{bottom:970.240052pt;}
.y2{bottom:970.560059pt;}
.y70{bottom:972.640061pt;}
.y26{bottom:995.520058pt;}
.y6f{bottom:997.920060pt;}
.y18{bottom:998.240059pt;}
.y50{bottom:1020.000061pt;}
.y1a{bottom:1020.960061pt;}
.h7{height:49.158205pt;}
.h9{height:49.419255pt;}
.h8{height:51.141625pt;}
.h5{height:57.257169pt;}
.h6{height:58.659722pt;}
.h2{height:60.299627pt;}
.hb{height:61.774332pt;}
.ha{height:62.530612pt;}
.hd{height:67.951523pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.hc{height:81.289756pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:79.839996pt;}
.x18{left:86.720001pt;}
.x1c{left:90.400002pt;}
.xf{left:95.519997pt;}
.x1{left:125.279999pt;}
.x12{left:154.720001pt;}
.x4{left:175.199997pt;}
.x13{left:185.119995pt;}
.x11{left:188.160004pt;}
.xb{left:199.679993pt;}
.x1a{left:204.960007pt;}
.x16{left:209.440002pt;}
.x1e{left:214.080002pt;}
.x14{left:230.080002pt;}
.x3{left:235.520004pt;}
.x21{left:237.119995pt;}
.x15{left:240.000000pt;}
.x17{left:256.480011pt;}
.x1b{left:258.880005pt;}
.x19{left:263.519989pt;}
.xc{left:277.760010pt;}
.x6{left:281.119995pt;}
.x2{left:282.720001pt;}
.x22{left:295.040009pt;}
.x10{left:297.760010pt;}
.x1f{left:303.040009pt;}
.x24{left:321.119995pt;}
.x8{left:324.640015pt;}
.x5{left:329.600006pt;}
.x1d{left:335.839996pt;}
.xa{left:342.559998pt;}
.x9{left:362.720001pt;}
.x7{left:371.200012pt;}
.x23{left:424.959991pt;}
.x25{left:431.359985pt;}
.xd{left:466.559998pt;}
.x26{left:519.039978pt;}
.x27{left:537.440002pt;}
.x20{left:644.320007pt;}
}




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