
    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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_87a059313fd68c16332727ea.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fb09026e44c9cc5649fa2d4a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_259128f87faa84ea91cf5cf3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_5d123772bb4c8abe91c34807.woff')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_43a86b8b1ac73016a925ed4f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v3{vertical-align:-77.760000px;}
.v2{vertical-align:-75.600000px;}
.v1{vertical-align:-74.160000px;}
.v4{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.lse{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:2.340000px;}
.ls9{letter-spacing:3.060000px;}
.ls8{letter-spacing:3.780000px;}
.lsb{letter-spacing:5.220000px;}
.ls5{letter-spacing:10.980000px;}
.ls18{letter-spacing:17.946720px;}
.ls7{letter-spacing:46.026720px;}
.ls17{letter-spacing:47.442720px;}
.lsd{letter-spacing:47.466720px;}
.ls13{letter-spacing:64.722720px;}
.ls14{letter-spacing:819.696000px;}
.ls11{letter-spacing:875.880000px;}
.lsc{letter-spacing:906.096000px;}
.ls6{letter-spacing:993.216000px;}
.ls15{letter-spacing:996.096000px;}
.ls16{letter-spacing:1055.856000px;}
.ls12{letter-spacing:1065.216000px;}
.ls4{letter-spacing:1217.676000px;}
.ls3{letter-spacing:1339.656000px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-5.087520px;}
._6{margin-left:-4.039920px;}
._9{margin-left:-2.299920px;}
._1{margin-left:-1.143360px;}
._0{width:1.322400px;}
._5{width:2.868480px;}
._2{width:4.134720px;}
._c{width:5.330880px;}
._d{width:7.124880px;}
._e{width:8.304960px;}
._8{width:10.047600px;}
._b{width:12.389280px;}
._a{width:13.909200px;}
._12{width:16.576560px;}
._13{width:17.853120px;}
._11{width:19.180560px;}
._f{width:32.187120px;}
._10{width:33.332400px;}
._4{width:162.576000px;}
._3{width:664.386000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.220000px;}
.y4{bottom:9.000000px;}
.y2{bottom:24.120000px;}
.y13{bottom:32.400000px;}
.y12{bottom:36.180000px;}
.y11{bottom:51.660000px;}
.y5{bottom:51.840000px;}
.y74{bottom:112.860000px;}
.y44{bottom:113.580000px;}
.y73{bottom:129.960000px;}
.y43{bottom:130.860000px;}
.y85{bottom:135.396000px;}
.y72{bottom:147.276000px;}
.y42{bottom:148.176000px;}
.y84{bottom:152.670000px;}
.y71{bottom:164.550000px;}
.y41{bottom:165.450000px;}
.y83{bottom:169.950000px;}
.y70{bottom:181.830000px;}
.y40{bottom:182.730000px;}
.y82{bottom:187.230000px;}
.y6f{bottom:199.110000px;}
.y3f{bottom:200.010000px;}
.y81{bottom:204.510000px;}
.y6e{bottom:216.210000px;}
.y80{bottom:221.610000px;}
.y3e{bottom:234.390000px;}
.y7f{bottom:238.890000px;}
.y6d{bottom:250.770000px;}
.y3d{bottom:251.670000px;}
.y7e{bottom:256.170000px;}
.y6c{bottom:268.050000px;}
.y3c{bottom:268.950000px;}
.y7d{bottom:273.450000px;}
.y3b{bottom:286.230000px;}
.y6b{bottom:286.410000px;}
.y7c{bottom:290.730000px;}
.y3a{bottom:303.330000px;}
.y6a{bottom:303.690000px;}
.y7b{bottom:307.830000px;}
.y39{bottom:320.610000px;}
.y69{bottom:320.790000px;}
.y7a{bottom:325.110000px;}
.y38{bottom:337.890000px;}
.y68{bottom:338.070000px;}
.y79{bottom:342.390000px;}
.y37{bottom:355.170000px;}
.y67{bottom:356.430000px;}
.y78{bottom:359.670000px;}
.y36{bottom:372.450000px;}
.y66{bottom:374.790000px;}
.y77{bottom:376.950000px;}
.y35{bottom:389.775000px;}
.y65{bottom:393.195000px;}
.y76{bottom:394.275000px;}
.y34{bottom:406.875000px;}
.y75{bottom:411.375000px;}
.y33{bottom:424.155000px;}
.y64{bottom:428.655000px;}
.y32{bottom:441.435000px;}
.y63{bottom:445.935000px;}
.y31{bottom:458.715000px;}
.y62{bottom:463.215000px;}
.y61{bottom:480.495000px;}
.y30{bottom:495.435000px;}
.y60{bottom:497.775000px;}
.y2f{bottom:512.715000px;}
.y5f{bottom:514.875000px;}
.y2e{bottom:529.995000px;}
.y5e{bottom:532.155000px;}
.y2d{bottom:547.275000px;}
.y5d{bottom:549.435000px;}
.y2c{bottom:564.375000px;}
.y5c{bottom:566.715000px;}
.y2b{bottom:581.655000px;}
.y5b{bottom:583.995000px;}
.y2a{bottom:598.935000px;}
.y5a{bottom:601.275000px;}
.y29{bottom:616.215000px;}
.y59{bottom:618.375000px;}
.y28{bottom:633.495000px;}
.y58{bottom:635.655000px;}
.y27{bottom:650.625000px;}
.y57{bottom:652.965000px;}
.y26{bottom:667.905000px;}
.y56{bottom:670.245000px;}
.y25{bottom:685.185000px;}
.y55{bottom:687.525000px;}
.y24{bottom:702.465000px;}
.y54{bottom:704.625000px;}
.y23{bottom:719.745000px;}
.y53{bottom:721.905000px;}
.y22{bottom:737.025000px;}
.y52{bottom:739.185000px;}
.y21{bottom:754.125000px;}
.y51{bottom:756.465000px;}
.y20{bottom:771.405000px;}
.y50{bottom:773.745000px;}
.y1f{bottom:788.685000px;}
.y4f{bottom:791.025000px;}
.y1e{bottom:808.125000px;}
.y1d{bottom:825.405000px;}
.y1c{bottom:842.685000px;}
.y4e{bottom:859.965000px;}
.y1b{bottom:860.325000px;}
.y4d{bottom:877.245000px;}
.y1a{bottom:879.405000px;}
.y4c{bottom:894.570000px;}
.y19{bottom:898.350000px;}
.y4b{bottom:911.670000px;}
.y18{bottom:916.890000px;}
.y4a{bottom:928.950000px;}
.y17{bottom:934.530000px;}
.y49{bottom:946.230000px;}
.y48{bottom:963.510000px;}
.y16{bottom:972.510000px;}
.y47{bottom:980.790000px;}
.y15{bottom:991.770000px;}
.y46{bottom:998.070000px;}
.y14{bottom:1012.470000px;}
.y45{bottom:1015.170000px;}
.y10{bottom:1029.390000px;}
.yf{bottom:1033.890000px;}
.ye{bottom:1052.430000px;}
.yd{bottom:1069.710000px;}
.yc{bottom:1087.710000px;}
.yb{bottom:1104.450000px;}
.y3{bottom:1161.720000px;}
.ya{bottom:1164.960000px;}
.y1{bottom:1168.740000px;}
.y9{bottom:1182.240000px;}
.y8{bottom:1199.340000px;}
.y7{bottom:1216.620000px;}
.h6{height:21.060000px;}
.h2{height:39.780000px;}
.h4{height:41.940000px;}
.hc{height:52.998047px;}
.h8{height:58.651172px;}
.hb{height:60.226875px;}
.he{height:61.423863px;}
.h9{height:65.010937px;}
.hd{height:66.757500px;}
.h3{height:67.824844px;}
.h7{height:71.613281px;}
.ha{height:72.562500px;}
.h5{height:159.978164px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:59.940000px;}
.w2{width:206.535000px;}
.w3{width:311.790000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x4{left:1.440000px;}
.x3{left:79.596000px;}
.x6{left:108.035987px;}
.x13{left:135.935987px;}
.xb{left:144.575987px;}
.x8{left:157.349987px;}
.x14{left:162.929987px;}
.x2{left:205.095000px;}
.xd{left:211.529987px;}
.x11{left:246.629987px;}
.x12{left:292.214987px;}
.x10{left:294.914987px;}
.xa{left:368.354987px;}
.xe{left:379.154987px;}
.x9{left:401.834987px;}
.xc{left:427.964987px;}
.x5{left:430.665000px;}
.xf{left:446.684987px;}
.x7{left:518.684987px;}
.x1{left:578.445000px;}
@media print{
.v3{vertical-align:-69.120000pt;}
.v2{vertical-align:-67.200000pt;}
.v1{vertical-align:-65.920000pt;}
.v4{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lse{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:2.080000pt;}
.ls9{letter-spacing:2.720000pt;}
.ls8{letter-spacing:3.360000pt;}
.lsb{letter-spacing:4.640000pt;}
.ls5{letter-spacing:9.760000pt;}
.ls18{letter-spacing:15.952640pt;}
.ls7{letter-spacing:40.912640pt;}
.ls17{letter-spacing:42.171307pt;}
.lsd{letter-spacing:42.192640pt;}
.ls13{letter-spacing:57.531307pt;}
.ls14{letter-spacing:728.618667pt;}
.ls11{letter-spacing:778.560000pt;}
.lsc{letter-spacing:805.418667pt;}
.ls6{letter-spacing:882.858667pt;}
.ls15{letter-spacing:885.418667pt;}
.ls16{letter-spacing:938.538667pt;}
.ls12{letter-spacing:946.858667pt;}
.ls4{letter-spacing:1082.378667pt;}
.ls3{letter-spacing:1190.805333pt;}
.ws5{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-4.522240pt;}
._6{margin-left:-3.591040pt;}
._9{margin-left:-2.044373pt;}
._1{margin-left:-1.016320pt;}
._0{width:1.175467pt;}
._5{width:2.549760pt;}
._2{width:3.675307pt;}
._c{width:4.738560pt;}
._d{width:6.333227pt;}
._e{width:7.382187pt;}
._8{width:8.931200pt;}
._b{width:11.012693pt;}
._a{width:12.363733pt;}
._12{width:14.734720pt;}
._13{width:15.869440pt;}
._11{width:17.049387pt;}
._f{width:28.610773pt;}
._10{width:29.628800pt;}
._4{width:144.512000pt;}
._3{width:590.565333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.640000pt;}
.y4{bottom:8.000000pt;}
.y2{bottom:21.440000pt;}
.y13{bottom:28.800000pt;}
.y12{bottom:32.160000pt;}
.y11{bottom:45.920000pt;}
.y5{bottom:46.080000pt;}
.y74{bottom:100.320000pt;}
.y44{bottom:100.960000pt;}
.y73{bottom:115.520000pt;}
.y43{bottom:116.320000pt;}
.y85{bottom:120.352000pt;}
.y72{bottom:130.912000pt;}
.y42{bottom:131.712000pt;}
.y84{bottom:135.706667pt;}
.y71{bottom:146.266667pt;}
.y41{bottom:147.066667pt;}
.y83{bottom:151.066667pt;}
.y70{bottom:161.626667pt;}
.y40{bottom:162.426667pt;}
.y82{bottom:166.426667pt;}
.y6f{bottom:176.986667pt;}
.y3f{bottom:177.786667pt;}
.y81{bottom:181.786667pt;}
.y6e{bottom:192.186667pt;}
.y80{bottom:196.986667pt;}
.y3e{bottom:208.346667pt;}
.y7f{bottom:212.346667pt;}
.y6d{bottom:222.906667pt;}
.y3d{bottom:223.706667pt;}
.y7e{bottom:227.706667pt;}
.y6c{bottom:238.266667pt;}
.y3c{bottom:239.066667pt;}
.y7d{bottom:243.066667pt;}
.y3b{bottom:254.426667pt;}
.y6b{bottom:254.586667pt;}
.y7c{bottom:258.426667pt;}
.y3a{bottom:269.626667pt;}
.y6a{bottom:269.946667pt;}
.y7b{bottom:273.626667pt;}
.y39{bottom:284.986667pt;}
.y69{bottom:285.146667pt;}
.y7a{bottom:288.986667pt;}
.y38{bottom:300.346667pt;}
.y68{bottom:300.506667pt;}
.y79{bottom:304.346667pt;}
.y37{bottom:315.706667pt;}
.y67{bottom:316.826667pt;}
.y78{bottom:319.706667pt;}
.y36{bottom:331.066667pt;}
.y66{bottom:333.146667pt;}
.y77{bottom:335.066667pt;}
.y35{bottom:346.466667pt;}
.y65{bottom:349.506667pt;}
.y76{bottom:350.466667pt;}
.y34{bottom:361.666667pt;}
.y75{bottom:365.666667pt;}
.y33{bottom:377.026667pt;}
.y64{bottom:381.026667pt;}
.y32{bottom:392.386667pt;}
.y63{bottom:396.386667pt;}
.y31{bottom:407.746667pt;}
.y62{bottom:411.746667pt;}
.y61{bottom:427.106667pt;}
.y30{bottom:440.386667pt;}
.y60{bottom:442.466667pt;}
.y2f{bottom:455.746667pt;}
.y5f{bottom:457.666667pt;}
.y2e{bottom:471.106667pt;}
.y5e{bottom:473.026667pt;}
.y2d{bottom:486.466667pt;}
.y5d{bottom:488.386667pt;}
.y2c{bottom:501.666667pt;}
.y5c{bottom:503.746667pt;}
.y2b{bottom:517.026667pt;}
.y5b{bottom:519.106667pt;}
.y2a{bottom:532.386667pt;}
.y5a{bottom:534.466667pt;}
.y29{bottom:547.746667pt;}
.y59{bottom:549.666667pt;}
.y28{bottom:563.106667pt;}
.y58{bottom:565.026667pt;}
.y27{bottom:578.333333pt;}
.y57{bottom:580.413333pt;}
.y26{bottom:593.693333pt;}
.y56{bottom:595.773333pt;}
.y25{bottom:609.053333pt;}
.y55{bottom:611.133333pt;}
.y24{bottom:624.413333pt;}
.y54{bottom:626.333333pt;}
.y23{bottom:639.773333pt;}
.y53{bottom:641.693333pt;}
.y22{bottom:655.133333pt;}
.y52{bottom:657.053333pt;}
.y21{bottom:670.333333pt;}
.y51{bottom:672.413333pt;}
.y20{bottom:685.693333pt;}
.y50{bottom:687.773333pt;}
.y1f{bottom:701.053333pt;}
.y4f{bottom:703.133333pt;}
.y1e{bottom:718.333333pt;}
.y1d{bottom:733.693333pt;}
.y1c{bottom:749.053333pt;}
.y4e{bottom:764.413333pt;}
.y1b{bottom:764.733333pt;}
.y4d{bottom:779.773333pt;}
.y1a{bottom:781.693333pt;}
.y4c{bottom:795.173333pt;}
.y19{bottom:798.533333pt;}
.y4b{bottom:810.373333pt;}
.y18{bottom:815.013333pt;}
.y4a{bottom:825.733333pt;}
.y17{bottom:830.693333pt;}
.y49{bottom:841.093333pt;}
.y48{bottom:856.453333pt;}
.y16{bottom:864.453333pt;}
.y47{bottom:871.813333pt;}
.y15{bottom:881.573333pt;}
.y46{bottom:887.173333pt;}
.y14{bottom:899.973333pt;}
.y45{bottom:902.373333pt;}
.y10{bottom:915.013333pt;}
.yf{bottom:919.013333pt;}
.ye{bottom:935.493333pt;}
.yd{bottom:950.853333pt;}
.yc{bottom:966.853333pt;}
.yb{bottom:981.733333pt;}
.y3{bottom:1032.640000pt;}
.ya{bottom:1035.520000pt;}
.y1{bottom:1038.880000pt;}
.y9{bottom:1050.880000pt;}
.y8{bottom:1066.080000pt;}
.y7{bottom:1081.440000pt;}
.h6{height:18.720000pt;}
.h2{height:35.360000pt;}
.h4{height:37.280000pt;}
.hc{height:47.109375pt;}
.h8{height:52.134375pt;}
.hb{height:53.535000pt;}
.he{height:54.598989pt;}
.h9{height:57.787500pt;}
.hd{height:59.340000pt;}
.h3{height:60.288750pt;}
.h7{height:63.656250pt;}
.ha{height:64.500000pt;}
.h5{height:142.202812pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:53.280000pt;}
.w2{width:183.586667pt;}
.w3{width:277.146667pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x4{left:1.280000pt;}
.x3{left:70.752000pt;}
.x6{left:96.031988pt;}
.x13{left:120.831988pt;}
.xb{left:128.511988pt;}
.x8{left:139.866655pt;}
.x14{left:144.826655pt;}
.x2{left:182.306667pt;}
.xd{left:188.026655pt;}
.x11{left:219.226655pt;}
.x12{left:259.746655pt;}
.x10{left:262.146655pt;}
.xa{left:327.426655pt;}
.xe{left:337.026655pt;}
.x9{left:357.186655pt;}
.xc{left:380.413321pt;}
.x5{left:382.813333pt;}
.xf{left:397.053321pt;}
.x7{left:461.053321pt;}
.x1{left:514.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; }
  