
    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_53fddbb8405a6efe39fb9aef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a74d613df8f67318504eaacc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_46d2312cc0482903b5869c2b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_812264c8af24bc6491c827de.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_6582935f449c972416fc5b81.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_b6b96a5c2822aaf957d52981.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_840d338669453a3b0cd5dd91.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096191;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);}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.lsd{letter-spacing:2.880000px;}
.lse{letter-spacing:7.920000px;}
.ls0{letter-spacing:1039.457280px;}
.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;}
}
.ws8{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws0{word-spacing:-17.784000px;}
.ws5{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.716000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.392000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-4.801920px;}
._2{margin-left:-3.559680px;}
._4{margin-left:-2.183040px;}
._0{margin-left:-1.072320px;}
._1{width:1.144320px;}
._8{width:2.333760px;}
._12{width:3.827040px;}
._5{width:4.896000px;}
._6{width:6.247680px;}
._14{width:7.339200px;}
._a{width:8.352000px;}
._b{width:9.599040px;}
._e{width:10.802880px;}
._9{width:12.168000px;}
._19{width:13.573920px;}
._11{width:14.927040px;}
._10{width:15.976320px;}
._13{width:16.991040px;}
._18{width:19.152000px;}
._7{width:20.232000px;}
._f{width:21.240000px;}
._d{width:22.404000px;}
._c{width:23.472000px;}
._15{width:24.612000px;}
._16{width:25.824000px;}
._17{width:30.024000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,127,172);}
.fs7{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y9{bottom:3.780000px;}
.y46{bottom:7.020000px;}
.y43{bottom:7.200000px;}
.y7{bottom:18.000000px;}
.y5{bottom:22.500000px;}
.y8{bottom:22.680000px;}
.y45{bottom:30.780000px;}
.y4f{bottom:30.810000px;}
.y4a{bottom:30.960000px;}
.y4{bottom:41.400000px;}
.y3f{bottom:87.876000px;}
.y3e{bottom:92.376000px;}
.y3d{bottom:103.356000px;}
.y4d{bottom:107.856000px;}
.y7e{bottom:111.096000px;}
.y7d{bottom:115.596000px;}
.y3c{bottom:118.836000px;}
.y3b{bottom:123.336000px;}
.y7c{bottom:126.936000px;}
.y7b{bottom:132.156000px;}
.y3a{bottom:134.496000px;}
.y39{bottom:138.996000px;}
.y7a{bottom:144.756000px;}
.y4c{bottom:150.690000px;}
.y38{bottom:151.050000px;}
.y37{bottom:156.270000px;}
.y36{bottom:169.050000px;}
.y4b{bottom:175.530000px;}
.y78{bottom:185.610000px;}
.y79{bottom:192.450000px;}
.y77{bottom:209.550000px;}
.y35{bottom:210.990000px;}
.y49{bottom:223.950000px;}
.y76{bottom:233.310000px;}
.y34{bottom:234.750000px;}
.y75{bottom:257.070000px;}
.y33{bottom:258.510000px;}
.y48{bottom:272.370000px;}
.y74{bottom:280.830000px;}
.y31{bottom:282.450000px;}
.y32{bottom:289.290000px;}
.y73{bottom:304.770000px;}
.y30{bottom:306.210000px;}
.y47{bottom:320.610000px;}
.y72{bottom:328.530000px;}
.y2f{bottom:329.970000px;}
.y44{bottom:345.315000px;}
.y71{bottom:352.335000px;}
.y2d{bottom:353.775000px;}
.y2e{bottom:360.615000px;}
.y70{bottom:376.095000px;}
.y2c{bottom:377.715000px;}
.y42{bottom:393.555000px;}
.y6f{bottom:399.855000px;}
.y2b{bottom:401.475000px;}
.y6e{bottom:423.795000px;}
.y2a{bottom:425.235000px;}
.y6d{bottom:447.555000px;}
.y29{bottom:448.995000px;}
.y6c{bottom:471.315000px;}
.y28{bottom:472.935000px;}
.y6b{bottom:495.075000px;}
.y27{bottom:496.695000px;}
.y6a{bottom:519.015000px;}
.y26{bottom:520.455000px;}
.y69{bottom:542.775000px;}
.y25{bottom:544.215000px;}
.y68{bottom:566.535000px;}
.y23{bottom:567.975000px;}
.y24{bottom:574.815000px;}
.y67{bottom:590.295000px;}
.y22{bottom:591.915000px;}
.y66{bottom:614.265000px;}
.y20{bottom:615.705000px;}
.y21{bottom:622.545000px;}
.y65{bottom:638.025000px;}
.y1f{bottom:639.465000px;}
.y64{bottom:661.785000px;}
.y1e{bottom:663.225000px;}
.y63{bottom:685.545000px;}
.y1d{bottom:687.165000px;}
.y62{bottom:709.485000px;}
.y1c{bottom:710.925000px;}
.y60{bottom:733.245000px;}
.y1b{bottom:734.685000px;}
.y61{bottom:740.085000px;}
.y5f{bottom:757.005000px;}
.y1a{bottom:758.445000px;}
.y5e{bottom:780.765000px;}
.y19{bottom:782.385000px;}
.y5d{bottom:804.705000px;}
.y18{bottom:806.145000px;}
.y5c{bottom:828.465000px;}
.y17{bottom:829.905000px;}
.y5b{bottom:852.225000px;}
.y16{bottom:853.665000px;}
.y5a{bottom:876.030000px;}
.y15{bottom:877.650000px;}
.y59{bottom:899.790000px;}
.y14{bottom:901.410000px;}
.y41{bottom:908.250000px;}
.y58{bottom:923.730000px;}
.y13{bottom:925.170000px;}
.y57{bottom:947.490000px;}
.y12{bottom:948.930000px;}
.y56{bottom:971.250000px;}
.y11{bottom:972.870000px;}
.y54{bottom:995.010000px;}
.y10{bottom:996.630000px;}
.y55{bottom:1001.850000px;}
.y40{bottom:1003.470000px;}
.y53{bottom:1018.950000px;}
.yf{bottom:1020.390000px;}
.y52{bottom:1042.710000px;}
.ye{bottom:1044.150000px;}
.y51{bottom:1066.470000px;}
.yd{bottom:1067.910000px;}
.y50{bottom:1090.230000px;}
.yc{bottom:1091.850000px;}
.y4e{bottom:1107.870000px;}
.yb{bottom:1115.610000px;}
.ya{bottom:1139.400000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1209.060000px;}
.y1{bottom:1233.180000px;}
.hf{height:23.940000px;}
.h11{height:23.976000px;}
.hc{height:35.332031px;}
.h13{height:37.863281px;}
.h4{height:37.980000px;}
.h16{height:38.158594px;}
.ha{height:38.671172px;}
.h7{height:47.321367px;}
.h8{height:47.344922px;}
.h10{height:47.520000px;}
.h14{height:47.556000px;}
.h12{height:47.700000px;}
.he{height:50.484375px;}
.hd{height:52.998047px;}
.h15{height:59.343750px;}
.hb{height:59.439023px;}
.h3{height:65.010937px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h2{height:87.859687px;}
.h0{height:1263.420000px;}
.h1{height:1263.750000px;}
.w3{width:23.760000px;}
.w5{width:148.176000px;}
.w6{width:541.545000px;}
.w1{width:894.000000px;}
.w4{width:894.059973px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:84.995987px;}
.x13{left:89.855987px;}
.x5{left:93.635987px;}
.x16{left:96.156000px;}
.x6{left:126.215987px;}
.x14{left:132.515987px;}
.xf{left:191.549973px;}
.x10{left:197.669987px;}
.x17{left:245.055000px;}
.x9{left:258.554987px;}
.xa{left:262.874987px;}
.x8{left:301.934987px;}
.x1e{left:387.794987px;}
.x7{left:432.824987px;}
.x3{left:442.365000px;}
.x2{left:457.664987px;}
.x1a{left:460.004973px;}
.x1b{left:466.124987px;}
.x1c{left:504.104973px;}
.x1d{left:510.224987px;}
.xd{left:517.784973px;}
.xe{left:523.904987px;}
.xb{left:527.684973px;}
.xc{left:533.804987px;}
.x11{left:578.489973px;}
.x12{left:584.609987px;}
.x15{left:591.629987px;}
.x18{left:670.289973px;}
.x19{left:676.409987px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsd{letter-spacing:2.560000pt;}
.lse{letter-spacing:7.040000pt;}
.ls0{letter-spacing:923.962027pt;}
.ws8{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws0{word-spacing:-15.808000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.192000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.904000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-4.268373pt;}
._2{margin-left:-3.164160pt;}
._4{margin-left:-1.940480pt;}
._0{margin-left:-0.953173pt;}
._1{width:1.017173pt;}
._8{width:2.074453pt;}
._12{width:3.401813pt;}
._5{width:4.352000pt;}
._6{width:5.553493pt;}
._14{width:6.523733pt;}
._a{width:7.424000pt;}
._b{width:8.532480pt;}
._e{width:9.602560pt;}
._9{width:10.816000pt;}
._19{width:12.065707pt;}
._11{width:13.268480pt;}
._10{width:14.201173pt;}
._13{width:15.103147pt;}
._18{width:17.024000pt;}
._7{width:17.984000pt;}
._f{width:18.880000pt;}
._d{width:19.914667pt;}
._c{width:20.864000pt;}
._15{width:21.877333pt;}
._16{width:22.954667pt;}
._17{width:26.688000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y9{bottom:3.360000pt;}
.y46{bottom:6.240000pt;}
.y43{bottom:6.400000pt;}
.y7{bottom:16.000000pt;}
.y5{bottom:20.000000pt;}
.y8{bottom:20.160000pt;}
.y45{bottom:27.360000pt;}
.y4f{bottom:27.386667pt;}
.y4a{bottom:27.520000pt;}
.y4{bottom:36.800000pt;}
.y3f{bottom:78.112000pt;}
.y3e{bottom:82.112000pt;}
.y3d{bottom:91.872000pt;}
.y4d{bottom:95.872000pt;}
.y7e{bottom:98.752000pt;}
.y7d{bottom:102.752000pt;}
.y3c{bottom:105.632000pt;}
.y3b{bottom:109.632000pt;}
.y7c{bottom:112.832000pt;}
.y7b{bottom:117.472000pt;}
.y3a{bottom:119.552000pt;}
.y39{bottom:123.552000pt;}
.y7a{bottom:128.672000pt;}
.y4c{bottom:133.946667pt;}
.y38{bottom:134.266667pt;}
.y37{bottom:138.906667pt;}
.y36{bottom:150.266667pt;}
.y4b{bottom:156.026667pt;}
.y78{bottom:164.986667pt;}
.y79{bottom:171.066667pt;}
.y77{bottom:186.266667pt;}
.y35{bottom:187.546667pt;}
.y49{bottom:199.066667pt;}
.y76{bottom:207.386667pt;}
.y34{bottom:208.666667pt;}
.y75{bottom:228.506667pt;}
.y33{bottom:229.786667pt;}
.y48{bottom:242.106667pt;}
.y74{bottom:249.626667pt;}
.y31{bottom:251.066667pt;}
.y32{bottom:257.146667pt;}
.y73{bottom:270.906667pt;}
.y30{bottom:272.186667pt;}
.y47{bottom:284.986667pt;}
.y72{bottom:292.026667pt;}
.y2f{bottom:293.306667pt;}
.y44{bottom:306.946667pt;}
.y71{bottom:313.186667pt;}
.y2d{bottom:314.466667pt;}
.y2e{bottom:320.546667pt;}
.y70{bottom:334.306667pt;}
.y2c{bottom:335.746667pt;}
.y42{bottom:349.826667pt;}
.y6f{bottom:355.426667pt;}
.y2b{bottom:356.866667pt;}
.y6e{bottom:376.706667pt;}
.y2a{bottom:377.986667pt;}
.y6d{bottom:397.826667pt;}
.y29{bottom:399.106667pt;}
.y6c{bottom:418.946667pt;}
.y28{bottom:420.386667pt;}
.y6b{bottom:440.066667pt;}
.y27{bottom:441.506667pt;}
.y6a{bottom:461.346667pt;}
.y26{bottom:462.626667pt;}
.y69{bottom:482.466667pt;}
.y25{bottom:483.746667pt;}
.y68{bottom:503.586667pt;}
.y23{bottom:504.866667pt;}
.y24{bottom:510.946667pt;}
.y67{bottom:524.706667pt;}
.y22{bottom:526.146667pt;}
.y66{bottom:546.013333pt;}
.y20{bottom:547.293333pt;}
.y21{bottom:553.373333pt;}
.y65{bottom:567.133333pt;}
.y1f{bottom:568.413333pt;}
.y64{bottom:588.253333pt;}
.y1e{bottom:589.533333pt;}
.y63{bottom:609.373333pt;}
.y1d{bottom:610.813333pt;}
.y62{bottom:630.653333pt;}
.y1c{bottom:631.933333pt;}
.y60{bottom:651.773333pt;}
.y1b{bottom:653.053333pt;}
.y61{bottom:657.853333pt;}
.y5f{bottom:672.893333pt;}
.y1a{bottom:674.173333pt;}
.y5e{bottom:694.013333pt;}
.y19{bottom:695.453333pt;}
.y5d{bottom:715.293333pt;}
.y18{bottom:716.573333pt;}
.y5c{bottom:736.413333pt;}
.y17{bottom:737.693333pt;}
.y5b{bottom:757.533333pt;}
.y16{bottom:758.813333pt;}
.y5a{bottom:778.693333pt;}
.y15{bottom:780.133333pt;}
.y59{bottom:799.813333pt;}
.y14{bottom:801.253333pt;}
.y41{bottom:807.333333pt;}
.y58{bottom:821.093333pt;}
.y13{bottom:822.373333pt;}
.y57{bottom:842.213333pt;}
.y12{bottom:843.493333pt;}
.y56{bottom:863.333333pt;}
.y11{bottom:864.773333pt;}
.y54{bottom:884.453333pt;}
.y10{bottom:885.893333pt;}
.y55{bottom:890.533333pt;}
.y40{bottom:891.973333pt;}
.y53{bottom:905.733333pt;}
.yf{bottom:907.013333pt;}
.y52{bottom:926.853333pt;}
.ye{bottom:928.133333pt;}
.y51{bottom:947.973333pt;}
.yd{bottom:949.253333pt;}
.y50{bottom:969.093333pt;}
.yc{bottom:970.533333pt;}
.y4e{bottom:984.773333pt;}
.yb{bottom:991.653333pt;}
.ya{bottom:1012.800000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1074.720000pt;}
.y1{bottom:1096.160000pt;}
.hf{height:21.280000pt;}
.h11{height:21.312000pt;}
.hc{height:31.406250pt;}
.h13{height:33.656250pt;}
.h4{height:33.760000pt;}
.h16{height:33.918750pt;}
.ha{height:34.374375pt;}
.h7{height:42.063437pt;}
.h8{height:42.084375pt;}
.h10{height:42.240000pt;}
.h14{height:42.272000pt;}
.h12{height:42.400000pt;}
.he{height:44.875000pt;}
.hd{height:47.109375pt;}
.h15{height:52.750000pt;}
.hb{height:52.834688pt;}
.h3{height:57.787500pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h2{height:78.097500pt;}
.h0{height:1123.040000pt;}
.h1{height:1123.333333pt;}
.w3{width:21.120000pt;}
.w5{width:131.712000pt;}
.w6{width:481.373333pt;}
.w1{width:794.666667pt;}
.w4{width:794.719976pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:75.551988pt;}
.x13{left:79.871988pt;}
.x5{left:83.231988pt;}
.x16{left:85.472000pt;}
.x6{left:112.191988pt;}
.x14{left:117.791988pt;}
.xf{left:170.266643pt;}
.x10{left:175.706655pt;}
.x17{left:217.826667pt;}
.x9{left:229.826655pt;}
.xa{left:233.666655pt;}
.x8{left:268.386655pt;}
.x1e{left:344.706655pt;}
.x7{left:384.733321pt;}
.x3{left:393.213333pt;}
.x2{left:406.813321pt;}
.x1a{left:408.893310pt;}
.x1b{left:414.333321pt;}
.x1c{left:448.093310pt;}
.x1d{left:453.533321pt;}
.xd{left:460.253310pt;}
.xe{left:465.693321pt;}
.xb{left:469.053310pt;}
.xc{left:474.493321pt;}
.x11{left:514.213310pt;}
.x12{left:519.653321pt;}
.x15{left:525.893321pt;}
.x18{left:595.813310pt;}
.x19{left:601.253321pt;}
}




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