
    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_9896f0beaa206b885b311bae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_37cf6e1af4e6f48390aeaf95.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_a5698a9af6aab7acfb783109.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_0eec4ef28d5f9e6a62f9cfd6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_cf5b54b838ee9f69dcdff9c4.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.511800px;}
.ls1{letter-spacing:0.720000px;}
.lsf{letter-spacing:41.706720px;}
.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:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-2846.549520px;}
._3{margin-left:-1378.964160px;}
._5{margin-left:-989.170560px;}
._7{margin-left:-512.988480px;}
._4{margin-left:-8.213760px;}
._8{margin-left:-6.814080px;}
._a{margin-left:-5.148720px;}
._6{margin-left:-3.214080px;}
._1{margin-left:-1.532160px;}
._0{width:1.244880px;}
._e{width:2.370960px;}
._f{width:3.672240px;}
._d{width:4.840560px;}
._c{width:6.633360px;}
._b{width:8.007840px;}
._1b{width:9.028080px;}
._19{width:10.038960px;}
._18{width:11.117760px;}
._12{width:12.736560px;}
._10{width:13.814640px;}
._16{width:15.540240px;}
._15{width:17.460000px;}
._17{width:18.468720px;}
._14{width:19.491840px;}
._13{width:20.736720px;}
._1a{width:21.752640px;}
._11{width:23.794560px;}
._9{width:25.811760px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs4{font-size:38.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:5.760000px;}
.y21{bottom:14.760000px;}
.y1f{bottom:25.740000px;}
.y20{bottom:34.770000px;}
.y1e{bottom:54.570000px;}
.y6{bottom:59.256000px;}
.y1d{bottom:74.370000px;}
.y1c{bottom:94.170000px;}
.y6a{bottom:94.896000px;}
.y9d{bottom:96.696000px;}
.y35{bottom:109.836000px;}
.y1b{bottom:113.970000px;}
.y69{bottom:114.696000px;}
.y8b{bottom:116.676000px;}
.y34{bottom:129.636000px;}
.y1a{bottom:133.950000px;}
.y68{bottom:134.676000px;}
.y8a{bottom:136.476000px;}
.y33{bottom:149.436000px;}
.y19{bottom:153.750000px;}
.y67{bottom:154.470000px;}
.y89{bottom:156.270000px;}
.y32{bottom:169.410000px;}
.y18{bottom:173.550000px;}
.y66{bottom:174.270000px;}
.y88{bottom:176.070000px;}
.y31{bottom:189.210000px;}
.y17{bottom:193.350000px;}
.y65{bottom:194.070000px;}
.y87{bottom:195.870000px;}
.y9c{bottom:204.870000px;}
.y30{bottom:209.010000px;}
.y16{bottom:213.150000px;}
.y64{bottom:213.870000px;}
.y86{bottom:215.850000px;}
.y9b{bottom:224.850000px;}
.y2f{bottom:228.810000px;}
.y15{bottom:233.130000px;}
.y85{bottom:235.650000px;}
.y63{bottom:242.850000px;}
.y9a{bottom:244.650000px;}
.y2e{bottom:248.610000px;}
.y14{bottom:252.930000px;}
.y84{bottom:255.450000px;}
.y62{bottom:262.650000px;}
.y13{bottom:272.730000px;}
.y99{bottom:273.495000px;}
.y83{bottom:275.295000px;}
.y2d{bottom:277.635000px;}
.y61{bottom:282.495000px;}
.y12{bottom:292.530000px;}
.y98{bottom:293.295000px;}
.y82{bottom:295.095000px;}
.y2c{bottom:297.435000px;}
.y60{bottom:302.295000px;}
.y11{bottom:312.330000px;}
.y97{bottom:313.095000px;}
.y81{bottom:314.895000px;}
.y2b{bottom:317.235000px;}
.y5f{bottom:322.095000px;}
.y96{bottom:332.895000px;}
.y2a{bottom:337.035000px;}
.y5e{bottom:341.895000px;}
.y80{bottom:343.875000px;}
.y29{bottom:356.835000px;}
.y95{bottom:361.875000px;}
.y7f{bottom:363.675000px;}
.y5d{bottom:370.875000px;}
.y94{bottom:381.675000px;}
.y7e{bottom:383.475000px;}
.y28{bottom:385.815000px;}
.y5c{bottom:390.675000px;}
.y93{bottom:401.475000px;}
.y7d{bottom:403.275000px;}
.y27{bottom:405.615000px;}
.y5b{bottom:410.475000px;}
.y92{bottom:421.275000px;}
.y7c{bottom:423.075000px;}
.y26{bottom:425.415000px;}
.y5a{bottom:430.275000px;}
.yad{bottom:439.275000px;}
.y25{bottom:445.215000px;}
.y59{bottom:450.075000px;}
.y7b{bottom:452.055000px;}
.yac{bottom:459.075000px;}
.y24{bottom:465.015000px;}
.y91{bottom:470.055000px;}
.y7a{bottom:471.855000px;}
.y58{bottom:479.055000px;}
.y23{bottom:484.995000px;}
.y90{bottom:489.855000px;}
.y79{bottom:491.655000px;}
.y57{bottom:498.855000px;}
.y22{bottom:504.795000px;}
.y8f{bottom:509.655000px;}
.y78{bottom:511.455000px;}
.y56{bottom:518.655000px;}
.y10{bottom:520.995000px;}
.y8e{bottom:529.455000px;}
.y77{bottom:531.255000px;}
.y55{bottom:538.455000px;}
.y8d{bottom:549.255000px;}
.y54{bottom:558.285000px;}
.y76{bottom:560.265000px;}
.y8c{bottom:569.265000px;}
.y53{bottom:578.265000px;}
.y75{bottom:580.065000px;}
.y52{bottom:598.065000px;}
.y74{bottom:599.865000px;}
.y51{bottom:617.865000px;}
.y73{bottom:619.665000px;}
.y50{bottom:637.665000px;}
.y72{bottom:639.465000px;}
.y4f{bottom:657.465000px;}
.y71{bottom:668.445000px;}
.y4e{bottom:677.445000px;}
.y70{bottom:688.245000px;}
.y4d{bottom:697.245000px;}
.y6f{bottom:708.045000px;}
.y4c{bottom:717.045000px;}
.y4b{bottom:736.845000px;}
.y4a{bottom:756.645000px;}
.y6e{bottom:776.625000px;}
.y49{bottom:785.625000px;}
.y6d{bottom:796.425000px;}
.y48{bottom:805.425000px;}
.yab{bottom:816.225000px;}
.y47{bottom:825.225000px;}
.yaa{bottom:836.025000px;}
.y46{bottom:845.070000px;}
.ye{bottom:849.750000px;}
.ya9{bottom:855.870000px;}
.y45{bottom:864.870000px;}
.ya8{bottom:875.850000px;}
.yd{bottom:877.650000px;}
.y44{bottom:884.850000px;}
.ya7{bottom:895.650000px;}
.yc{bottom:902.670000px;}
.y6c{bottom:904.650000px;}
.y43{bottom:913.650000px;}
.ya6{bottom:915.450000px;}
.yb{bottom:922.470000px;}
.y42{bottom:933.450000px;}
.ya{bottom:937.050000px;}
.ya5{bottom:944.250000px;}
.y41{bottom:953.250000px;}
.y9{bottom:957.030000px;}
.ya4{bottom:964.050000px;}
.y40{bottom:973.050000px;}
.y8{bottom:980.430000px;}
.ya3{bottom:984.030000px;}
.y3f{bottom:993.030000px;}
.ya2{bottom:1003.830000px;}
.y7{bottom:1012.110000px;}
.y6b{bottom:1012.830000px;}
.y3e{bottom:1021.830000px;}
.ya1{bottom:1032.630000px;}
.y3d{bottom:1041.630000px;}
.y5{bottom:1052.070000px;}
.ya0{bottom:1052.430000px;}
.y3c{bottom:1061.430000px;}
.y9f{bottom:1072.230000px;}
.y3b{bottom:1081.230000px;}
.y4{bottom:1082.850000px;}
.y9e{bottom:1092.210000px;}
.y3a{bottom:1101.210000px;}
.y3{bottom:1113.630000px;}
.y39{bottom:1121.010000px;}
.y38{bottom:1140.840000px;}
.y2{bottom:1144.620000px;}
.y37{bottom:1172.520000px;}
.y1{bottom:1178.460000px;}
.y36{bottom:1194.300000px;}
.h9{height:19.800000px;}
.h7{height:32.425313px;}
.h5{height:42.164648px;}
.hb{height:46.736719px;}
.h6{height:48.312422px;}
.h8{height:49.838906px;}
.h4{height:55.243125px;}
.h2{height:67.565039px;}
.h3{height:70.254844px;}
.ha{height:326.415000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:175.530000px;}
.w3{width:614.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.179987px;}
.x4{left:64.799987px;}
.x5{left:91.799987px;}
.x3{left:668.445000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.454933pt;}
.ls1{letter-spacing:0.640000pt;}
.lsf{letter-spacing:37.072640pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-2530.266240pt;}
._3{margin-left:-1225.745920pt;}
._5{margin-left:-879.262720pt;}
._7{margin-left:-455.989760pt;}
._4{margin-left:-7.301120pt;}
._8{margin-left:-6.056960pt;}
._a{margin-left:-4.576640pt;}
._6{margin-left:-2.856960pt;}
._1{margin-left:-1.361920pt;}
._0{width:1.106560pt;}
._e{width:2.107520pt;}
._f{width:3.264213pt;}
._d{width:4.302720pt;}
._c{width:5.896320pt;}
._b{width:7.118080pt;}
._1b{width:8.024960pt;}
._19{width:8.923520pt;}
._18{width:9.882453pt;}
._12{width:11.321387pt;}
._10{width:12.279680pt;}
._16{width:13.813547pt;}
._15{width:15.520000pt;}
._17{width:16.416640pt;}
._14{width:17.326080pt;}
._13{width:18.432640pt;}
._1a{width:19.335680pt;}
._11{width:21.150720pt;}
._9{width:22.943787pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:5.120000pt;}
.y21{bottom:13.120000pt;}
.y1f{bottom:22.880000pt;}
.y20{bottom:30.906667pt;}
.y1e{bottom:48.506667pt;}
.y6{bottom:52.672000pt;}
.y1d{bottom:66.106667pt;}
.y1c{bottom:83.706667pt;}
.y6a{bottom:84.352000pt;}
.y9d{bottom:85.952000pt;}
.y35{bottom:97.632000pt;}
.y1b{bottom:101.306667pt;}
.y69{bottom:101.952000pt;}
.y8b{bottom:103.712000pt;}
.y34{bottom:115.232000pt;}
.y1a{bottom:119.066667pt;}
.y68{bottom:119.712000pt;}
.y8a{bottom:121.312000pt;}
.y33{bottom:132.832000pt;}
.y19{bottom:136.666667pt;}
.y67{bottom:137.306667pt;}
.y89{bottom:138.906667pt;}
.y32{bottom:150.586667pt;}
.y18{bottom:154.266667pt;}
.y66{bottom:154.906667pt;}
.y88{bottom:156.506667pt;}
.y31{bottom:168.186667pt;}
.y17{bottom:171.866667pt;}
.y65{bottom:172.506667pt;}
.y87{bottom:174.106667pt;}
.y9c{bottom:182.106667pt;}
.y30{bottom:185.786667pt;}
.y16{bottom:189.466667pt;}
.y64{bottom:190.106667pt;}
.y86{bottom:191.866667pt;}
.y9b{bottom:199.866667pt;}
.y2f{bottom:203.386667pt;}
.y15{bottom:207.226667pt;}
.y85{bottom:209.466667pt;}
.y63{bottom:215.866667pt;}
.y9a{bottom:217.466667pt;}
.y2e{bottom:220.986667pt;}
.y14{bottom:224.826667pt;}
.y84{bottom:227.066667pt;}
.y62{bottom:233.466667pt;}
.y13{bottom:242.426667pt;}
.y99{bottom:243.106667pt;}
.y83{bottom:244.706667pt;}
.y2d{bottom:246.786667pt;}
.y61{bottom:251.106667pt;}
.y12{bottom:260.026667pt;}
.y98{bottom:260.706667pt;}
.y82{bottom:262.306667pt;}
.y2c{bottom:264.386667pt;}
.y60{bottom:268.706667pt;}
.y11{bottom:277.626667pt;}
.y97{bottom:278.306667pt;}
.y81{bottom:279.906667pt;}
.y2b{bottom:281.986667pt;}
.y5f{bottom:286.306667pt;}
.y96{bottom:295.906667pt;}
.y2a{bottom:299.586667pt;}
.y5e{bottom:303.906667pt;}
.y80{bottom:305.666667pt;}
.y29{bottom:317.186667pt;}
.y95{bottom:321.666667pt;}
.y7f{bottom:323.266667pt;}
.y5d{bottom:329.666667pt;}
.y94{bottom:339.266667pt;}
.y7e{bottom:340.866667pt;}
.y28{bottom:342.946667pt;}
.y5c{bottom:347.266667pt;}
.y93{bottom:356.866667pt;}
.y7d{bottom:358.466667pt;}
.y27{bottom:360.546667pt;}
.y5b{bottom:364.866667pt;}
.y92{bottom:374.466667pt;}
.y7c{bottom:376.066667pt;}
.y26{bottom:378.146667pt;}
.y5a{bottom:382.466667pt;}
.yad{bottom:390.466667pt;}
.y25{bottom:395.746667pt;}
.y59{bottom:400.066667pt;}
.y7b{bottom:401.826667pt;}
.yac{bottom:408.066667pt;}
.y24{bottom:413.346667pt;}
.y91{bottom:417.826667pt;}
.y7a{bottom:419.426667pt;}
.y58{bottom:425.826667pt;}
.y23{bottom:431.106667pt;}
.y90{bottom:435.426667pt;}
.y79{bottom:437.026667pt;}
.y57{bottom:443.426667pt;}
.y22{bottom:448.706667pt;}
.y8f{bottom:453.026667pt;}
.y78{bottom:454.626667pt;}
.y56{bottom:461.026667pt;}
.y10{bottom:463.106667pt;}
.y8e{bottom:470.626667pt;}
.y77{bottom:472.226667pt;}
.y55{bottom:478.626667pt;}
.y8d{bottom:488.226667pt;}
.y54{bottom:496.253333pt;}
.y76{bottom:498.013333pt;}
.y8c{bottom:506.013333pt;}
.y53{bottom:514.013333pt;}
.y75{bottom:515.613333pt;}
.y52{bottom:531.613333pt;}
.y74{bottom:533.213333pt;}
.y51{bottom:549.213333pt;}
.y73{bottom:550.813333pt;}
.y50{bottom:566.813333pt;}
.y72{bottom:568.413333pt;}
.y4f{bottom:584.413333pt;}
.y71{bottom:594.173333pt;}
.y4e{bottom:602.173333pt;}
.y70{bottom:611.773333pt;}
.y4d{bottom:619.773333pt;}
.y6f{bottom:629.373333pt;}
.y4c{bottom:637.373333pt;}
.y4b{bottom:654.973333pt;}
.y4a{bottom:672.573333pt;}
.y6e{bottom:690.333333pt;}
.y49{bottom:698.333333pt;}
.y6d{bottom:707.933333pt;}
.y48{bottom:715.933333pt;}
.yab{bottom:725.533333pt;}
.y47{bottom:733.533333pt;}
.yaa{bottom:743.133333pt;}
.y46{bottom:751.173333pt;}
.ye{bottom:755.333333pt;}
.ya9{bottom:760.773333pt;}
.y45{bottom:768.773333pt;}
.ya8{bottom:778.533333pt;}
.yd{bottom:780.133333pt;}
.y44{bottom:786.533333pt;}
.ya7{bottom:796.133333pt;}
.yc{bottom:802.373333pt;}
.y6c{bottom:804.133333pt;}
.y43{bottom:812.133333pt;}
.ya6{bottom:813.733333pt;}
.yb{bottom:819.973333pt;}
.y42{bottom:829.733333pt;}
.ya{bottom:832.933333pt;}
.ya5{bottom:839.333333pt;}
.y41{bottom:847.333333pt;}
.y9{bottom:850.693333pt;}
.ya4{bottom:856.933333pt;}
.y40{bottom:864.933333pt;}
.y8{bottom:871.493333pt;}
.ya3{bottom:874.693333pt;}
.y3f{bottom:882.693333pt;}
.ya2{bottom:892.293333pt;}
.y7{bottom:899.653333pt;}
.y6b{bottom:900.293333pt;}
.y3e{bottom:908.293333pt;}
.ya1{bottom:917.893333pt;}
.y3d{bottom:925.893333pt;}
.y5{bottom:935.173333pt;}
.ya0{bottom:935.493333pt;}
.y3c{bottom:943.493333pt;}
.y9f{bottom:953.093333pt;}
.y3b{bottom:961.093333pt;}
.y4{bottom:962.533333pt;}
.y9e{bottom:970.853333pt;}
.y3a{bottom:978.853333pt;}
.y3{bottom:989.893333pt;}
.y39{bottom:996.453333pt;}
.y38{bottom:1014.080000pt;}
.y2{bottom:1017.440000pt;}
.y37{bottom:1042.240000pt;}
.y1{bottom:1047.520000pt;}
.y36{bottom:1061.600000pt;}
.h9{height:17.600000pt;}
.h7{height:28.822500pt;}
.h5{height:37.479688pt;}
.hb{height:41.543750pt;}
.h6{height:42.944375pt;}
.h8{height:44.301250pt;}
.h4{height:49.105000pt;}
.h2{height:60.057813pt;}
.h3{height:62.448750pt;}
.ha{height:290.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:156.026667pt;}
.w3{width:546.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.159988pt;}
.x4{left:57.599988pt;}
.x5{left:81.599988pt;}
.x3{left:594.173333pt;}
}




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