
    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_3f350d5e332b2141ac51da48.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.155000;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_fa9755a814640ca68c4f6e14.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.155000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_27b672a3e88e6e3e36775498.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_f52f9f635159008a1dbbc4cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.034500;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.744000px;}
.ls1{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.278400px;}
.ls2{letter-spacing:-0.169200px;}
.ls3{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.037740px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.180000px;}
.ls5{letter-spacing:29.664000px;}
.lsf{letter-spacing:36.604224px;}
.ls10{letter-spacing:36.718560px;}
.ls14{letter-spacing:93.886560px;}
.ls6{letter-spacing:119.469600px;}
.ls4{letter-spacing:119.520000px;}
.lse{letter-spacing:119.865600px;}
.lsd{letter-spacing:119.916000px;}
.ls9{letter-spacing:122.157600px;}
.lsa{letter-spacing:122.184000px;}
.ls8{letter-spacing:122.208000px;}
.ls11{letter-spacing:136.353600px;}
.ls12{letter-spacing:136.404000px;}
.ls15{letter-spacing:136.428000px;}
.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:-55.754640px;}
.ws3{word-spacing:-45.504000px;}
.ws9{word-spacing:-35.427744px;}
.wsa{word-spacing:-35.397360px;}
.ws8{word-spacing:-23.996004px;}
.ws6{word-spacing:-23.359104px;}
.ws4{word-spacing:-23.328000px;}
.ws7{word-spacing:-22.818384px;}
.ws5{word-spacing:-22.788000px;}
.wsb{word-spacing:-20.205360px;}
.ws0{word-spacing:-15.192000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-2.267520px;}
._3{margin-left:-1.056960px;}
._0{width:1.008000px;}
._6{width:2.159520px;}
._2{width:52.408560px;}
._8{width:101.717472px;}
._9{width:258.506400px;}
._a{width:4225.764000px;}
._d{width:4228.944000px;}
._c{width:4230.084000px;}
._b{width:4234.404000px;}
._5{width:4237.284000px;}
._4{width:4240.164000px;}
._7{width:4241.604000px;}
.fc6{color:rgb(87,77,102);}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(64,137,136);}
.fc2{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(137,137,137);}
.fs0{font-size:72.000000px;}
.fsc{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs8{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fsa{font-size:113.760000px;}
.fsb{font-size:113.904000px;}
.fsd{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs3{font-size:167.760000px;}
.fs2{font-size:167.904000px;}
.fs5{font-size:192.240000px;}
.fs4{font-size:216.000000px;}
.fs10{font-size:216.144000px;}
.fs1{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:25.056000px;}
.y6{bottom:30.492000px;}
.y4{bottom:53.892000px;}
.y25{bottom:67.248000px;}
.y3{bottom:104.328000px;}
.y24{bottom:151.050000px;}
.y3b{bottom:154.905000px;}
.y45{bottom:173.550000px;}
.y3a{bottom:183.705000px;}
.y23{bottom:198.930000px;}
.y44{bottom:202.350000px;}
.y31{bottom:203.835000px;}
.y2{bottom:208.410000px;}
.y2e{bottom:209.550000px;}
.y39{bottom:239.550000px;}
.y43{bottom:240.150000px;}
.y2d{bottom:245.550000px;}
.y22{bottom:246.810000px;}
.y18{bottom:254.190000px;}
.y14{bottom:264.990000px;}
.y38{bottom:268.350000px;}
.y42{bottom:268.950000px;}
.y50{bottom:269.070000px;}
.yc{bottom:279.210000px;}
.y16{bottom:281.520000px;}
.y2c{bottom:281.550000px;}
.y21{bottom:294.735000px;}
.y37{bottom:297.150000px;}
.y13{bottom:297.390000px;}
.y4f{bottom:297.870000px;}
.y17{bottom:304.590000px;}
.y41{bottom:306.795000px;}
.y49{bottom:308.085000px;}
.y55{bottom:311.580000px;}
.y2b{bottom:335.550000px;}
.y40{bottom:335.595000px;}
.y48{bottom:336.885000px;}
.y54{bottom:340.380000px;}
.y20{bottom:342.615000px;}
.y12{bottom:347.835000px;}
.yb{bottom:349.410000px;}
.y36{bottom:352.980000px;}
.y4e{bottom:355.500000px;}
.y30{bottom:358.665000px;}
.y53{bottom:369.180000px;}
.y2a{bottom:371.595000px;}
.y35{bottom:381.780000px;}
.y4d{bottom:384.300000px;}
.y1f{bottom:384.555000px;}
.y3f{bottom:391.395000px;}
.ya{bottom:392.610000px;}
.y47{bottom:392.730000px;}
.y11{bottom:398.235000px;}
.y4c{bottom:413.100000px;}
.y3e{bottom:420.195000px;}
.y1e{bottom:421.275000px;}
.y46{bottom:421.530000px;}
.y29{bottom:425.595000px;}
.y52{bottom:426.810000px;}
.y2f{bottom:436.110000px;}
.y34{bottom:437.580000px;}
.y56{bottom:440.715000px;}
.y4b{bottom:441.900000px;}
.y10{bottom:448.635000px;}
.y5{bottom:452.265000px;}
.y51{bottom:455.610000px;}
.y28{bottom:461.595000px;}
.y9{bottom:462.855000px;}
.y1d{bottom:469.185000px;}
.y4a{bottom:470.700000px;}
.y3d{bottom:476.025000px;}
.y33{bottom:493.380000px;}
.yf{bottom:499.065000px;}
.y8{bottom:506.595000px;}
.y27{bottom:515.595000px;}
.y1c{bottom:517.065000px;}
.y32{bottom:522.210000px;}
.ye{bottom:531.465000px;}
.y3c{bottom:531.825000px;}
.y19{bottom:535.710000px;}
.y26{bottom:551.625000px;}
.y1b{bottom:564.945000px;}
.yd{bottom:581.865000px;}
.y15{bottom:586.110000px;}
.y1a{bottom:685.590000px;}
.y7{bottom:690.810000px;}
.h1{height:66.456000px;}
.ha{height:87.966000px;}
.hd{height:88.083288px;}
.h6{height:88.200000px;}
.h11{height:88.386480px;}
.h14{height:88.519392px;}
.hb{height:99.684000px;}
.he{height:99.816912px;}
.hf{height:105.000480px;}
.h10{height:105.133392px;}
.h12{height:110.981520px;}
.h13{height:111.114432px;}
.h8{height:132.912000px;}
.h9{height:133.044912px;}
.h4{height:154.842480px;}
.h3{height:154.975392px;}
.h7{height:177.437520px;}
.h5{height:199.368000px;}
.h15{height:199.500912px;}
.h2{height:243.893520px;}
.hc{height:528.480000px;}
.h0{height:810.000000px;}
.w4{width:226.620000px;}
.w2{width:263.700000px;}
.w3{width:784.620000px;}
.w5{width:795.060000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x16{left:10.980000px;}
.x1{left:30.743979px;}
.xb{left:35.100000px;}
.xa{left:70.379979px;}
.x25{left:76.319979px;}
.x1c{left:88.560000px;}
.x26{left:91.259979px;}
.x1d{left:96.015000px;}
.x29{left:102.131979px;}
.x2a{left:106.235979px;}
.xd{left:108.359979px;}
.x5{left:111.059979px;}
.x12{left:112.319979px;}
.x10{left:118.979979px;}
.x7{left:122.507979px;}
.xc{left:126.900000px;}
.xe{left:129.780000px;}
.x13{left:133.020000px;}
.x1b{left:134.891979px;}
.x14{left:136.440000px;}
.x11{left:137.520000px;}
.x27{left:145.259979px;}
.x2c{left:148.715979px;}
.x23{left:150.509979px;}
.x2b{left:160.229979px;}
.x22{left:165.674979px;}
.x2d{left:171.329979px;}
.x28{left:187.739979px;}
.x21{left:188.969979px;}
.x24{left:191.009979px;}
.x8{left:218.954979px;}
.xf{left:252.750000px;}
.x9{left:261.434979px;}
.x2{left:263.669979px;}
.x15{left:323.100000px;}
.x1e{left:339.660000px;}
.x2e{left:393.044979px;}
.x18{left:427.889979px;}
.x20{left:435.209979px;}
.x1a{left:490.169979px;}
.x4{left:564.014979px;}
.x19{left:623.729979px;}
.x3{left:636.734979px;}
.x17{left:742.574979px;}
.x1f{left:750.059979px;}
.x6{left:1409.294979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.328000pt;}
.ls1{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.247467pt;}
.ls2{letter-spacing:-0.150400pt;}
.ls3{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.033547pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls5{letter-spacing:26.368000pt;}
.lsf{letter-spacing:32.537088pt;}
.ls10{letter-spacing:32.638720pt;}
.ls14{letter-spacing:83.454720pt;}
.ls6{letter-spacing:106.195200pt;}
.ls4{letter-spacing:106.240000pt;}
.lse{letter-spacing:106.547200pt;}
.lsd{letter-spacing:106.592000pt;}
.ls9{letter-spacing:108.584533pt;}
.lsa{letter-spacing:108.608000pt;}
.ls8{letter-spacing:108.629333pt;}
.ls11{letter-spacing:121.203200pt;}
.ls12{letter-spacing:121.248000pt;}
.ls15{letter-spacing:121.269333pt;}
.ws1{word-spacing:-49.559680pt;}
.ws3{word-spacing:-40.448000pt;}
.ws9{word-spacing:-31.491328pt;}
.wsa{word-spacing:-31.464320pt;}
.ws8{word-spacing:-21.329781pt;}
.ws6{word-spacing:-20.763648pt;}
.ws4{word-spacing:-20.736000pt;}
.ws7{word-spacing:-20.283008pt;}
.ws5{word-spacing:-20.256000pt;}
.wsb{word-spacing:-17.960320pt;}
.ws0{word-spacing:-13.504000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-2.015573pt;}
._3{margin-left:-0.939520pt;}
._0{width:0.896000pt;}
._6{width:1.919573pt;}
._2{width:46.585387pt;}
._8{width:90.415531pt;}
._9{width:229.783467pt;}
._a{width:3756.234667pt;}
._d{width:3759.061333pt;}
._c{width:3760.074667pt;}
._b{width:3763.914667pt;}
._5{width:3766.474667pt;}
._4{width:3769.034667pt;}
._7{width:3770.314667pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs8{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fsa{font-size:101.120000pt;}
.fsb{font-size:101.248000pt;}
.fsd{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs3{font-size:149.120000pt;}
.fs2{font-size:149.248000pt;}
.fs5{font-size:170.880000pt;}
.fs4{font-size:192.000000pt;}
.fs10{font-size:192.128000pt;}
.fs1{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:22.272000pt;}
.y6{bottom:27.104000pt;}
.y4{bottom:47.904000pt;}
.y25{bottom:59.776000pt;}
.y3{bottom:92.736000pt;}
.y24{bottom:134.266667pt;}
.y3b{bottom:137.693333pt;}
.y45{bottom:154.266667pt;}
.y3a{bottom:163.293333pt;}
.y23{bottom:176.826667pt;}
.y44{bottom:179.866667pt;}
.y31{bottom:181.186667pt;}
.y2{bottom:185.253333pt;}
.y2e{bottom:186.266667pt;}
.y39{bottom:212.933333pt;}
.y43{bottom:213.466667pt;}
.y2d{bottom:218.266667pt;}
.y22{bottom:219.386667pt;}
.y18{bottom:225.946667pt;}
.y14{bottom:235.546667pt;}
.y38{bottom:238.533333pt;}
.y42{bottom:239.066667pt;}
.y50{bottom:239.173333pt;}
.yc{bottom:248.186667pt;}
.y16{bottom:250.240000pt;}
.y2c{bottom:250.266667pt;}
.y21{bottom:261.986667pt;}
.y37{bottom:264.133333pt;}
.y13{bottom:264.346667pt;}
.y4f{bottom:264.773333pt;}
.y17{bottom:270.746667pt;}
.y41{bottom:272.706667pt;}
.y49{bottom:273.853333pt;}
.y55{bottom:276.960000pt;}
.y2b{bottom:298.266667pt;}
.y40{bottom:298.306667pt;}
.y48{bottom:299.453333pt;}
.y54{bottom:302.560000pt;}
.y20{bottom:304.546667pt;}
.y12{bottom:309.186667pt;}
.yb{bottom:310.586667pt;}
.y36{bottom:313.760000pt;}
.y4e{bottom:316.000000pt;}
.y30{bottom:318.813333pt;}
.y53{bottom:328.160000pt;}
.y2a{bottom:330.306667pt;}
.y35{bottom:339.360000pt;}
.y4d{bottom:341.600000pt;}
.y1f{bottom:341.826667pt;}
.y3f{bottom:347.906667pt;}
.ya{bottom:348.986667pt;}
.y47{bottom:349.093333pt;}
.y11{bottom:353.986667pt;}
.y4c{bottom:367.200000pt;}
.y3e{bottom:373.506667pt;}
.y1e{bottom:374.466667pt;}
.y46{bottom:374.693333pt;}
.y29{bottom:378.306667pt;}
.y52{bottom:379.386667pt;}
.y2f{bottom:387.653333pt;}
.y34{bottom:388.960000pt;}
.y56{bottom:391.746667pt;}
.y4b{bottom:392.800000pt;}
.y10{bottom:398.786667pt;}
.y5{bottom:402.013333pt;}
.y51{bottom:404.986667pt;}
.y28{bottom:410.306667pt;}
.y9{bottom:411.426667pt;}
.y1d{bottom:417.053333pt;}
.y4a{bottom:418.400000pt;}
.y3d{bottom:423.133333pt;}
.y33{bottom:438.560000pt;}
.yf{bottom:443.613333pt;}
.y8{bottom:450.306667pt;}
.y27{bottom:458.306667pt;}
.y1c{bottom:459.613333pt;}
.y32{bottom:464.186667pt;}
.ye{bottom:472.413333pt;}
.y3c{bottom:472.733333pt;}
.y19{bottom:476.186667pt;}
.y26{bottom:490.333333pt;}
.y1b{bottom:502.173333pt;}
.yd{bottom:517.213333pt;}
.y15{bottom:520.986667pt;}
.y1a{bottom:609.413333pt;}
.y7{bottom:614.053333pt;}
.h1{height:59.072000pt;}
.ha{height:78.192000pt;}
.hd{height:78.296256pt;}
.h6{height:78.400000pt;}
.h11{height:78.565760pt;}
.h14{height:78.683904pt;}
.hb{height:88.608000pt;}
.he{height:88.726144pt;}
.hf{height:93.333760pt;}
.h10{height:93.451904pt;}
.h12{height:98.650240pt;}
.h13{height:98.768384pt;}
.h8{height:118.144000pt;}
.h9{height:118.262144pt;}
.h4{height:137.637760pt;}
.h3{height:137.755904pt;}
.h7{height:157.722240pt;}
.h5{height:177.216000pt;}
.h15{height:177.334144pt;}
.h2{height:216.794240pt;}
.hc{height:469.760000pt;}
.h0{height:720.000000pt;}
.w4{width:201.440000pt;}
.w2{width:234.400000pt;}
.w3{width:697.440000pt;}
.w5{width:706.720000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x16{left:9.760000pt;}
.x1{left:27.327981pt;}
.xb{left:31.200000pt;}
.xa{left:62.559981pt;}
.x25{left:67.839981pt;}
.x1c{left:78.720000pt;}
.x26{left:81.119981pt;}
.x1d{left:85.346667pt;}
.x29{left:90.783981pt;}
.x2a{left:94.431981pt;}
.xd{left:96.319981pt;}
.x5{left:98.719981pt;}
.x12{left:99.839981pt;}
.x10{left:105.759981pt;}
.x7{left:108.895981pt;}
.xc{left:112.800000pt;}
.xe{left:115.360000pt;}
.x13{left:118.240000pt;}
.x1b{left:119.903981pt;}
.x14{left:121.280000pt;}
.x11{left:122.240000pt;}
.x27{left:129.119981pt;}
.x2c{left:132.191981pt;}
.x23{left:133.786648pt;}
.x2b{left:142.426648pt;}
.x22{left:147.266648pt;}
.x2d{left:152.293314pt;}
.x28{left:166.879981pt;}
.x21{left:167.973314pt;}
.x24{left:169.786648pt;}
.x8{left:194.626648pt;}
.xf{left:224.666667pt;}
.x9{left:232.386648pt;}
.x2{left:234.373314pt;}
.x15{left:287.200000pt;}
.x1e{left:301.920000pt;}
.x2e{left:349.373314pt;}
.x18{left:380.346648pt;}
.x20{left:386.853314pt;}
.x1a{left:435.706648pt;}
.x4{left:501.346648pt;}
.x19{left:554.426648pt;}
.x3{left:565.986648pt;}
.x17{left:660.066648pt;}
.x1f{left:666.719981pt;}
.x6{left:1252.706648pt;}
}




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