
    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_f8cde1b58a9b24d18a0f8339.woff')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_64714e84c15e3b7d84d01f60.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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_36b7b96ff7612cfa0d505bc5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_a4916c2178ada3262fe747d0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_195ecff2d8a42276e008adba.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:11.700000px;}
.ls5{letter-spacing:13.860000px;}
.lsb{letter-spacing:16.865280px;}
.lsa{letter-spacing:26.945280px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws7{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.145400px;}
.ws0{word-spacing:-15.300000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws8{word-spacing:0.000000px;}
._15{margin-left:-4.438080px;}
._19{margin-left:-3.426240px;}
._e{margin-left:-2.356080px;}
._0{margin-left:-1.192320px;}
._1{width:1.166400px;}
._7{width:2.350320px;}
._a{width:3.865920px;}
._6{width:5.728320px;}
._5{width:6.912000px;}
._d{width:8.914320px;}
._c{width:9.936000px;}
._4{width:11.856000px;}
._14{width:13.124880px;}
._b{width:14.547600px;}
._10{width:17.982000px;}
._f{width:19.008000px;}
._1a{width:20.053680px;}
._9{width:21.064320px;}
._8{width:22.356000px;}
._16{width:24.376320px;}
._1c{width:25.436160px;}
._1d{width:26.484240px;}
._11{width:27.810000px;}
._1b{width:29.410560px;}
._17{width:32.391360px;}
._18{width:33.488880px;}
._13{width:43.194000px;}
._12{width:44.226000px;}
._3{width:511.736160px;}
._2{width:804.396000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y33{bottom:2.880000px;}
.y2f{bottom:3.060000px;}
.y2{bottom:5.400000px;}
.y31{bottom:9.360000px;}
.y9{bottom:10.440000px;}
.y32{bottom:18.360000px;}
.y2e{bottom:18.540000px;}
.y5{bottom:24.150000px;}
.y8{bottom:29.010000px;}
.y2d{bottom:34.020000px;}
.y4{bottom:43.230000px;}
.y7{bottom:46.110000px;}
.y2c{bottom:49.500000px;}
.yc{bottom:57.240000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y2b{bottom:65.160000px;}
.yb{bottom:77.220000px;}
.y2a{bottom:80.640000px;}
.y29{bottom:96.120000px;}
.y28{bottom:111.600000px;}
.y48{bottom:114.300000px;}
.y7c{bottom:122.220000px;}
.y27{bottom:127.260000px;}
.y47{bottom:133.200000px;}
.y7b{bottom:141.300000px;}
.y26{bottom:142.770000px;}
.y46{bottom:152.280000px;}
.y25{bottom:158.250000px;}
.y7a{bottom:160.200000px;}
.y45{bottom:171.180000px;}
.y24{bottom:173.730000px;}
.y79{bottom:179.280000px;}
.y23{bottom:189.390000px;}
.y44{bottom:190.080000px;}
.y78{bottom:198.180000px;}
.y22{bottom:204.870000px;}
.y43{bottom:209.160000px;}
.y77{bottom:217.110000px;}
.y21{bottom:220.350000px;}
.y42{bottom:228.090000px;}
.y20{bottom:235.830000px;}
.y76{bottom:236.190000px;}
.y41{bottom:247.170000px;}
.y1f{bottom:251.490000px;}
.y75{bottom:255.090000px;}
.y40{bottom:266.070000px;}
.y1e{bottom:266.970000px;}
.y74{bottom:274.170000px;}
.y1d{bottom:282.450000px;}
.y3f{bottom:284.970000px;}
.y73{bottom:293.070000px;}
.y1c{bottom:297.930000px;}
.y3e{bottom:304.050000px;}
.y72{bottom:311.970000px;}
.y1b{bottom:313.410000px;}
.y3d{bottom:322.950000px;}
.y1a{bottom:329.070000px;}
.y71{bottom:331.050000px;}
.y3c{bottom:342.030000px;}
.y19{bottom:344.550000px;}
.y70{bottom:349.950000px;}
.y18{bottom:360.030000px;}
.y3b{bottom:360.930000px;}
.y6f{bottom:369.030000px;}
.y17{bottom:375.510000px;}
.y3a{bottom:379.830000px;}
.y6e{bottom:387.930000px;}
.y16{bottom:391.215000px;}
.y39{bottom:398.910000px;}
.y6d{bottom:406.830000px;}
.y38{bottom:417.810000px;}
.y6c{bottom:425.910000px;}
.y37{bottom:436.890000px;}
.y6b{bottom:444.810000px;}
.y36{bottom:455.835000px;}
.y6a{bottom:463.935000px;}
.y35{bottom:474.735000px;}
.y69{bottom:482.835000px;}
.y34{bottom:493.815000px;}
.y68{bottom:501.735000px;}
.y30{bottom:509.115000px;}
.y67{bottom:520.815000px;}
.y66{bottom:539.715000px;}
.y15{bottom:540.075000px;}
.y65{bottom:558.795000px;}
.y64{bottom:577.695000px;}
.y63{bottom:596.595000px;}
.y62{bottom:615.675000px;}
.y61{bottom:634.575000px;}
.y60{bottom:653.655000px;}
.y5f{bottom:672.555000px;}
.y5e{bottom:691.665000px;}
.y5d{bottom:710.565000px;}
.y5c{bottom:729.465000px;}
.y5b{bottom:748.545000px;}
.y5a{bottom:767.445000px;}
.y59{bottom:786.525000px;}
.y58{bottom:805.425000px;}
.y57{bottom:824.325000px;}
.y56{bottom:843.405000px;}
.y55{bottom:862.305000px;}
.y54{bottom:881.385000px;}
.y53{bottom:900.285000px;}
.y52{bottom:919.230000px;}
.y51{bottom:938.310000px;}
.y14{bottom:947.490000px;}
.y50{bottom:957.210000px;}
.y13{bottom:966.570000px;}
.y4f{bottom:976.290000px;}
.y12{bottom:985.470000px;}
.y4e{bottom:995.190000px;}
.y11{bottom:1004.370000px;}
.y4d{bottom:1014.090000px;}
.y10{bottom:1023.450000px;}
.y4c{bottom:1033.170000px;}
.yf{bottom:1045.050000px;}
.y4b{bottom:1052.070000px;}
.ye{bottom:1064.670000px;}
.y4a{bottom:1071.150000px;}
.yd{bottom:1087.170000px;}
.y49{bottom:1090.050000px;}
.ya{bottom:1108.770000px;}
.y1{bottom:1131.090000px;}
.he{height:30.960000px;}
.hc{height:37.705078px;}
.hd{height:38.100586px;}
.h7{height:39.147891px;}
.hb{height:44.507812px;}
.h9{height:46.251562px;}
.h3{height:46.736719px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.ha{height:403.815000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:72.000000px;}
.w4{width:209.415000px;}
.w7{width:263.955000px;}
.w3{width:427.935000px;}
.w6{width:436.035000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xf{left:29.700000px;}
.x2{left:70.374000px;}
.x6{left:85.725000px;}
.x1{left:108.036000px;}
.xa{left:126.935987px;}
.x11{left:129.275987px;}
.x12{left:140.075987px;}
.x7{left:147.285000px;}
.x10{left:161.129987px;}
.x3{left:180.030000px;}
.x8{left:201.135000px;}
.xd{left:204.329987px;}
.xb{left:333.614987px;}
.xc{left:414.254987px;}
.x9{left:515.264987px;}
.xe{left:544.065000px;}
.x5{left:607.965000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:10.400000pt;}
.ls5{letter-spacing:12.320000pt;}
.lsb{letter-spacing:14.991360pt;}
.lsa{letter-spacing:23.951360pt;}
.ws9{word-spacing:-58.880000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.351467pt;}
.ws0{word-spacing:-13.600000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws8{word-spacing:0.000000pt;}
._15{margin-left:-3.944960pt;}
._19{margin-left:-3.045547pt;}
._e{margin-left:-2.094293pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.036800pt;}
._7{width:2.089173pt;}
._a{width:3.436373pt;}
._6{width:5.091840pt;}
._5{width:6.144000pt;}
._d{width:7.923840pt;}
._c{width:8.832000pt;}
._4{width:10.538667pt;}
._14{width:11.666560pt;}
._b{width:12.931200pt;}
._10{width:15.984000pt;}
._f{width:16.896000pt;}
._1a{width:17.825493pt;}
._9{width:18.723840pt;}
._8{width:19.872000pt;}
._16{width:21.667840pt;}
._1c{width:22.609920pt;}
._1d{width:23.541547pt;}
._11{width:24.720000pt;}
._1b{width:26.142720pt;}
._17{width:28.792320pt;}
._18{width:29.767893pt;}
._13{width:38.394667pt;}
._12{width:39.312000pt;}
._3{width:454.876587pt;}
._2{width:715.018667pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.560000pt;}
.y2f{bottom:2.720000pt;}
.y2{bottom:4.800000pt;}
.y31{bottom:8.320000pt;}
.y9{bottom:9.280000pt;}
.y32{bottom:16.320000pt;}
.y2e{bottom:16.480000pt;}
.y5{bottom:21.466667pt;}
.y8{bottom:25.786667pt;}
.y2d{bottom:30.240000pt;}
.y4{bottom:38.426667pt;}
.y7{bottom:40.986667pt;}
.y2c{bottom:44.000000pt;}
.yc{bottom:50.880000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y2b{bottom:57.920000pt;}
.yb{bottom:68.640000pt;}
.y2a{bottom:71.680000pt;}
.y29{bottom:85.440000pt;}
.y28{bottom:99.200000pt;}
.y48{bottom:101.600000pt;}
.y7c{bottom:108.640000pt;}
.y27{bottom:113.120000pt;}
.y47{bottom:118.400000pt;}
.y7b{bottom:125.600000pt;}
.y26{bottom:126.906667pt;}
.y46{bottom:135.360000pt;}
.y25{bottom:140.666667pt;}
.y7a{bottom:142.400000pt;}
.y45{bottom:152.160000pt;}
.y24{bottom:154.426667pt;}
.y79{bottom:159.360000pt;}
.y23{bottom:168.346667pt;}
.y44{bottom:168.960000pt;}
.y78{bottom:176.160000pt;}
.y22{bottom:182.106667pt;}
.y43{bottom:185.920000pt;}
.y77{bottom:192.986667pt;}
.y21{bottom:195.866667pt;}
.y42{bottom:202.746667pt;}
.y20{bottom:209.626667pt;}
.y76{bottom:209.946667pt;}
.y41{bottom:219.706667pt;}
.y1f{bottom:223.546667pt;}
.y75{bottom:226.746667pt;}
.y40{bottom:236.506667pt;}
.y1e{bottom:237.306667pt;}
.y74{bottom:243.706667pt;}
.y1d{bottom:251.066667pt;}
.y3f{bottom:253.306667pt;}
.y73{bottom:260.506667pt;}
.y1c{bottom:264.826667pt;}
.y3e{bottom:270.266667pt;}
.y72{bottom:277.306667pt;}
.y1b{bottom:278.586667pt;}
.y3d{bottom:287.066667pt;}
.y1a{bottom:292.506667pt;}
.y71{bottom:294.266667pt;}
.y3c{bottom:304.026667pt;}
.y19{bottom:306.266667pt;}
.y70{bottom:311.066667pt;}
.y18{bottom:320.026667pt;}
.y3b{bottom:320.826667pt;}
.y6f{bottom:328.026667pt;}
.y17{bottom:333.786667pt;}
.y3a{bottom:337.626667pt;}
.y6e{bottom:344.826667pt;}
.y16{bottom:347.746667pt;}
.y39{bottom:354.586667pt;}
.y6d{bottom:361.626667pt;}
.y38{bottom:371.386667pt;}
.y6c{bottom:378.586667pt;}
.y37{bottom:388.346667pt;}
.y6b{bottom:395.386667pt;}
.y36{bottom:405.186667pt;}
.y6a{bottom:412.386667pt;}
.y35{bottom:421.986667pt;}
.y69{bottom:429.186667pt;}
.y34{bottom:438.946667pt;}
.y68{bottom:445.986667pt;}
.y30{bottom:452.546667pt;}
.y67{bottom:462.946667pt;}
.y66{bottom:479.746667pt;}
.y15{bottom:480.066667pt;}
.y65{bottom:496.706667pt;}
.y64{bottom:513.506667pt;}
.y63{bottom:530.306667pt;}
.y62{bottom:547.266667pt;}
.y61{bottom:564.066667pt;}
.y60{bottom:581.026667pt;}
.y5f{bottom:597.826667pt;}
.y5e{bottom:614.813333pt;}
.y5d{bottom:631.613333pt;}
.y5c{bottom:648.413333pt;}
.y5b{bottom:665.373333pt;}
.y5a{bottom:682.173333pt;}
.y59{bottom:699.133333pt;}
.y58{bottom:715.933333pt;}
.y57{bottom:732.733333pt;}
.y56{bottom:749.693333pt;}
.y55{bottom:766.493333pt;}
.y54{bottom:783.453333pt;}
.y53{bottom:800.253333pt;}
.y52{bottom:817.093333pt;}
.y51{bottom:834.053333pt;}
.y14{bottom:842.213333pt;}
.y50{bottom:850.853333pt;}
.y13{bottom:859.173333pt;}
.y4f{bottom:867.813333pt;}
.y12{bottom:875.973333pt;}
.y4e{bottom:884.613333pt;}
.y11{bottom:892.773333pt;}
.y4d{bottom:901.413333pt;}
.y10{bottom:909.733333pt;}
.y4c{bottom:918.373333pt;}
.yf{bottom:928.933333pt;}
.y4b{bottom:935.173333pt;}
.ye{bottom:946.373333pt;}
.y4a{bottom:952.133333pt;}
.yd{bottom:966.373333pt;}
.y49{bottom:968.933333pt;}
.ya{bottom:985.573333pt;}
.y1{bottom:1005.413333pt;}
.he{height:27.520000pt;}
.hc{height:33.515625pt;}
.hd{height:33.867188pt;}
.h7{height:34.798125pt;}
.hb{height:39.562500pt;}
.h9{height:41.112500pt;}
.h3{height:41.543750pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.ha{height:358.946667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:64.000000pt;}
.w4{width:186.146667pt;}
.w7{width:234.626667pt;}
.w3{width:380.386667pt;}
.w6{width:387.586667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xf{left:26.400000pt;}
.x2{left:62.554667pt;}
.x6{left:76.200000pt;}
.x1{left:96.032000pt;}
.xa{left:112.831988pt;}
.x11{left:114.911988pt;}
.x12{left:124.511988pt;}
.x7{left:130.920000pt;}
.x10{left:143.226655pt;}
.x3{left:160.026667pt;}
.x8{left:178.786667pt;}
.xd{left:181.626655pt;}
.xb{left:296.546655pt;}
.xc{left:368.226655pt;}
.x9{left:458.013322pt;}
.xe{left:483.613333pt;}
.x5{left:540.413333pt;}
}




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