
    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_64fa8f38cd20e3ddb9eb6ee9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ae2f812c7c6d1aa8640c8b67.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e09ada625588950f26224275.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_1d12b25c4c5bd634f30e04d3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c73ab8f8757a56c44edbe19d.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_02da1bc9eba03a5a927ea9ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_a43d238982833073f7869962.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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:ff8;src:url('chunks/assets/font_2f2d2d7de0da9cef26d4bc44.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-4.320000px;}
.lsa{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.840000px;}
.ls5{letter-spacing:6.480000px;}
.ls9{letter-spacing:16.560000px;}
.ls3{letter-spacing:61.200000px;}
.ls8{letter-spacing:138.384000px;}
.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:-21.060000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws0{word-spacing:-15.238800px;}
.ws4{word-spacing:-13.680000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-8.184960px;}
._3{margin-left:-6.912000px;}
._18{margin-left:-4.969440px;}
._2{margin-left:-3.816000px;}
._1{margin-left:-2.568240px;}
._6{margin-left:-1.343520px;}
._0{width:1.513440px;}
._1b{width:3.168000px;}
._17{width:4.295040px;}
._16{width:5.472240px;}
._4{width:6.528000px;}
._19{width:7.704000px;}
._1a{width:9.048000px;}
._f{width:10.054800px;}
._9{width:11.856000px;}
._13{width:13.565280px;}
._d{width:15.022080px;}
._8{width:16.416000px;}
._7{width:19.944000px;}
._5{width:21.528000px;}
._1f{width:22.608000px;}
._e{width:28.702800px;}
._a{width:30.816000px;}
._b{width:32.382960px;}
._1c{width:34.679520px;}
._11{width:35.856000px;}
._12{width:36.874560px;}
._1d{width:47.232000px;}
._1e{width:48.456000px;}
._20{width:51.552000px;}
._21{width:52.558560px;}
._22{width:55.021440px;}
._15{width:60.708000px;}
._14{width:77.952000px;}
._c{width:85.127040px;}
.fc3{color:rgb(32,33,34);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y63{bottom:3.960000px;}
.y67{bottom:14.220000px;}
.y65{bottom:14.400000px;}
.y62{bottom:24.660000px;}
.y6{bottom:69.480000px;}
.y47{bottom:104.040000px;}
.y61{bottom:117.000000px;}
.y52{bottom:117.540000px;}
.y27{bottom:124.740000px;}
.y85{bottom:130.680000px;}
.y46{bottom:135.180000px;}
.y51{bottom:148.680000px;}
.y26{bottom:155.910000px;}
.y84{bottom:161.670000px;}
.y45{bottom:166.170000px;}
.y60{bottom:173.370000px;}
.y50{bottom:179.670000px;}
.y25{bottom:186.870000px;}
.y83{bottom:192.810000px;}
.y44{bottom:197.310000px;}
.y5f{bottom:204.510000px;}
.y4f{bottom:210.810000px;}
.y24{bottom:218.010000px;}
.y82{bottom:223.770000px;}
.y43{bottom:228.270000px;}
.y5e{bottom:235.470000px;}
.y4e{bottom:241.770000px;}
.y23{bottom:248.970000px;}
.y81{bottom:254.910000px;}
.y42{bottom:259.410000px;}
.y5d{bottom:266.610000px;}
.y4d{bottom:272.910000px;}
.y22{bottom:280.110000px;}
.y80{bottom:285.870000px;}
.y41{bottom:290.370000px;}
.y5c{bottom:297.570000px;}
.y4c{bottom:303.870000px;}
.y21{bottom:311.070000px;}
.y7f{bottom:317.010000px;}
.y40{bottom:321.510000px;}
.y5b{bottom:328.710000px;}
.y4b{bottom:335.010000px;}
.y20{bottom:342.210000px;}
.y7e{bottom:347.970000px;}
.y3f{bottom:352.470000px;}
.y5a{bottom:359.670000px;}
.y4a{bottom:365.970000px;}
.y1f{bottom:373.170000px;}
.y7d{bottom:379.110000px;}
.y3e{bottom:383.610000px;}
.y59{bottom:390.810000px;}
.y49{bottom:397.110000px;}
.y1e{bottom:404.355000px;}
.y7c{bottom:410.115000px;}
.y3d{bottom:414.615000px;}
.y58{bottom:421.815000px;}
.y48{bottom:424.155000px;}
.y1d{bottom:435.315000px;}
.y7b{bottom:441.255000px;}
.y3c{bottom:445.755000px;}
.y57{bottom:452.955000px;}
.y1c{bottom:466.455000px;}
.y7a{bottom:472.215000px;}
.y3b{bottom:476.715000px;}
.y56{bottom:483.915000px;}
.y1b{bottom:497.415000px;}
.y79{bottom:503.355000px;}
.y3a{bottom:507.855000px;}
.y55{bottom:515.055000px;}
.y1a{bottom:528.555000px;}
.y78{bottom:534.315000px;}
.y39{bottom:538.815000px;}
.y54{bottom:546.015000px;}
.y19{bottom:559.515000px;}
.y77{bottom:565.455000px;}
.y38{bottom:569.955000px;}
.y53{bottom:573.195000px;}
.y18{bottom:590.655000px;}
.y76{bottom:596.415000px;}
.y37{bottom:600.915000px;}
.y17{bottom:621.615000px;}
.y75{bottom:627.555000px;}
.y36{bottom:632.055000px;}
.y16{bottom:652.785000px;}
.y74{bottom:658.545000px;}
.y35{bottom:663.045000px;}
.y15{bottom:683.745000px;}
.y73{bottom:689.685000px;}
.y34{bottom:694.185000px;}
.y14{bottom:714.885000px;}
.y72{bottom:720.645000px;}
.y33{bottom:725.145000px;}
.y13{bottom:745.845000px;}
.y71{bottom:751.785000px;}
.y32{bottom:756.285000px;}
.y12{bottom:776.985000px;}
.y70{bottom:782.745000px;}
.y31{bottom:787.245000px;}
.y11{bottom:807.945000px;}
.y6f{bottom:813.885000px;}
.y30{bottom:818.385000px;}
.y10{bottom:838.905000px;}
.y6e{bottom:844.845000px;}
.y2f{bottom:849.345000px;}
.yf{bottom:870.045000px;}
.y6d{bottom:875.805000px;}
.y2e{bottom:880.305000px;}
.ye{bottom:901.050000px;}
.y6c{bottom:906.990000px;}
.y2d{bottom:911.490000px;}
.yd{bottom:932.190000px;}
.y6b{bottom:937.950000px;}
.y2c{bottom:942.450000px;}
.y6a{bottom:955.590000px;}
.yc{bottom:963.150000px;}
.y2b{bottom:973.590000px;}
.y69{bottom:987.270000px;}
.yb{bottom:994.290000px;}
.y2a{bottom:1004.550000px;}
.y68{bottom:1019.130000px;}
.ya{bottom:1025.250000px;}
.y29{bottom:1035.690000px;}
.y66{bottom:1050.990000px;}
.y9{bottom:1056.390000px;}
.y28{bottom:1066.650000px;}
.y8{bottom:1077.090000px;}
.y64{bottom:1082.670000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.hd{height:30.960000px;}
.hc{height:31.140000px;}
.hb{height:41.436000px;}
.h2{height:42.164648px;}
.h8{height:59.343750px;}
.h3{height:62.211094px;}
.h9{height:63.457031px;}
.ha{height:70.664062px;}
.h7{height:71.824219px;}
.he{height:74.004654px;}
.h6{height:74.953125px;}
.h5{height:82.676953px;}
.h4{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:208.290000px;}
.w5{width:231.510000px;}
.w3{width:240.510000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x3{left:84.995987px;}
.xb{left:312.914987px;}
.x8{left:320.294987px;}
.x12{left:327.135000px;}
.xa{left:338.654987px;}
.x9{left:339.734987px;}
.x14{left:341.714987px;}
.x4{left:350.714987px;}
.x6{left:353.234987px;}
.xe{left:362.774987px;}
.x10{left:369.794987px;}
.x5{left:430.634987px;}
.x7{left:446.504987px;}
.x2{left:457.124987px;}
.x1{left:510.404987px;}
.x13{left:536.145000px;}
.xf{left:649.049987px;}
.xd{left:658.049987px;}
.xc{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-3.840000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.746667pt;}
.ls5{letter-spacing:5.760000pt;}
.ls9{letter-spacing:14.720000pt;}
.ls3{letter-spacing:54.400000pt;}
.ls8{letter-spacing:123.008000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws4{word-spacing:-12.160000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-7.275520pt;}
._3{margin-left:-6.144000pt;}
._18{margin-left:-4.417280pt;}
._2{margin-left:-3.392000pt;}
._1{margin-left:-2.282880pt;}
._6{margin-left:-1.194240pt;}
._0{width:1.345280pt;}
._1b{width:2.816000pt;}
._17{width:3.817813pt;}
._16{width:4.864213pt;}
._4{width:5.802667pt;}
._19{width:6.848000pt;}
._1a{width:8.042667pt;}
._f{width:8.937600pt;}
._9{width:10.538667pt;}
._13{width:12.058027pt;}
._d{width:13.352960pt;}
._8{width:14.592000pt;}
._7{width:17.728000pt;}
._5{width:19.136000pt;}
._1f{width:20.096000pt;}
._e{width:25.513600pt;}
._a{width:27.392000pt;}
._b{width:28.784853pt;}
._1c{width:30.826240pt;}
._11{width:31.872000pt;}
._12{width:32.777387pt;}
._1d{width:41.984000pt;}
._1e{width:43.072000pt;}
._20{width:45.824000pt;}
._21{width:46.718720pt;}
._22{width:48.907947pt;}
._15{width:53.962667pt;}
._14{width:69.290667pt;}
._c{width:75.668480pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:3.520000pt;}
.y67{bottom:12.640000pt;}
.y65{bottom:12.800000pt;}
.y62{bottom:21.920000pt;}
.y6{bottom:61.760000pt;}
.y47{bottom:92.480000pt;}
.y61{bottom:104.000000pt;}
.y52{bottom:104.480000pt;}
.y27{bottom:110.880000pt;}
.y85{bottom:116.160000pt;}
.y46{bottom:120.160000pt;}
.y51{bottom:132.160000pt;}
.y26{bottom:138.586667pt;}
.y84{bottom:143.706667pt;}
.y45{bottom:147.706667pt;}
.y60{bottom:154.106667pt;}
.y50{bottom:159.706667pt;}
.y25{bottom:166.106667pt;}
.y83{bottom:171.386667pt;}
.y44{bottom:175.386667pt;}
.y5f{bottom:181.786667pt;}
.y4f{bottom:187.386667pt;}
.y24{bottom:193.786667pt;}
.y82{bottom:198.906667pt;}
.y43{bottom:202.906667pt;}
.y5e{bottom:209.306667pt;}
.y4e{bottom:214.906667pt;}
.y23{bottom:221.306667pt;}
.y81{bottom:226.586667pt;}
.y42{bottom:230.586667pt;}
.y5d{bottom:236.986667pt;}
.y4d{bottom:242.586667pt;}
.y22{bottom:248.986667pt;}
.y80{bottom:254.106667pt;}
.y41{bottom:258.106667pt;}
.y5c{bottom:264.506667pt;}
.y4c{bottom:270.106667pt;}
.y21{bottom:276.506667pt;}
.y7f{bottom:281.786667pt;}
.y40{bottom:285.786667pt;}
.y5b{bottom:292.186667pt;}
.y4b{bottom:297.786667pt;}
.y20{bottom:304.186667pt;}
.y7e{bottom:309.306667pt;}
.y3f{bottom:313.306667pt;}
.y5a{bottom:319.706667pt;}
.y4a{bottom:325.306667pt;}
.y1f{bottom:331.706667pt;}
.y7d{bottom:336.986667pt;}
.y3e{bottom:340.986667pt;}
.y59{bottom:347.386667pt;}
.y49{bottom:352.986667pt;}
.y1e{bottom:359.426667pt;}
.y7c{bottom:364.546667pt;}
.y3d{bottom:368.546667pt;}
.y58{bottom:374.946667pt;}
.y48{bottom:377.026667pt;}
.y1d{bottom:386.946667pt;}
.y7b{bottom:392.226667pt;}
.y3c{bottom:396.226667pt;}
.y57{bottom:402.626667pt;}
.y1c{bottom:414.626667pt;}
.y7a{bottom:419.746667pt;}
.y3b{bottom:423.746667pt;}
.y56{bottom:430.146667pt;}
.y1b{bottom:442.146667pt;}
.y79{bottom:447.426667pt;}
.y3a{bottom:451.426667pt;}
.y55{bottom:457.826667pt;}
.y1a{bottom:469.826667pt;}
.y78{bottom:474.946667pt;}
.y39{bottom:478.946667pt;}
.y54{bottom:485.346667pt;}
.y19{bottom:497.346667pt;}
.y77{bottom:502.626667pt;}
.y38{bottom:506.626667pt;}
.y53{bottom:509.506667pt;}
.y18{bottom:525.026667pt;}
.y76{bottom:530.146667pt;}
.y37{bottom:534.146667pt;}
.y17{bottom:552.546667pt;}
.y75{bottom:557.826667pt;}
.y36{bottom:561.826667pt;}
.y16{bottom:580.253333pt;}
.y74{bottom:585.373333pt;}
.y35{bottom:589.373333pt;}
.y15{bottom:607.773333pt;}
.y73{bottom:613.053333pt;}
.y34{bottom:617.053333pt;}
.y14{bottom:635.453333pt;}
.y72{bottom:640.573333pt;}
.y33{bottom:644.573333pt;}
.y13{bottom:662.973333pt;}
.y71{bottom:668.253333pt;}
.y32{bottom:672.253333pt;}
.y12{bottom:690.653333pt;}
.y70{bottom:695.773333pt;}
.y31{bottom:699.773333pt;}
.y11{bottom:718.173333pt;}
.y6f{bottom:723.453333pt;}
.y30{bottom:727.453333pt;}
.y10{bottom:745.693333pt;}
.y6e{bottom:750.973333pt;}
.y2f{bottom:754.973333pt;}
.yf{bottom:773.373333pt;}
.y6d{bottom:778.493333pt;}
.y2e{bottom:782.493333pt;}
.ye{bottom:800.933333pt;}
.y6c{bottom:806.213333pt;}
.y2d{bottom:810.213333pt;}
.yd{bottom:828.613333pt;}
.y6b{bottom:833.733333pt;}
.y2c{bottom:837.733333pt;}
.y6a{bottom:849.413333pt;}
.yc{bottom:856.133333pt;}
.y2b{bottom:865.413333pt;}
.y69{bottom:877.573333pt;}
.yb{bottom:883.813333pt;}
.y2a{bottom:892.933333pt;}
.y68{bottom:905.893333pt;}
.ya{bottom:911.333333pt;}
.y29{bottom:920.613333pt;}
.y66{bottom:934.213333pt;}
.y9{bottom:939.013333pt;}
.y28{bottom:948.133333pt;}
.y8{bottom:957.413333pt;}
.y64{bottom:962.373333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.hd{height:27.520000pt;}
.hc{height:27.680000pt;}
.hb{height:36.832000pt;}
.h2{height:37.479688pt;}
.h8{height:52.750000pt;}
.h3{height:55.298750pt;}
.h9{height:56.406250pt;}
.ha{height:62.812500pt;}
.h7{height:63.843750pt;}
.he{height:65.781915pt;}
.h6{height:66.625000pt;}
.h5{height:73.490625pt;}
.h4{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:185.146667pt;}
.w5{width:205.786667pt;}
.w3{width:213.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x3{left:75.551988pt;}
.xb{left:278.146655pt;}
.x8{left:284.706655pt;}
.x12{left:290.786667pt;}
.xa{left:301.026655pt;}
.x9{left:301.986655pt;}
.x14{left:303.746655pt;}
.x4{left:311.746655pt;}
.x6{left:313.986655pt;}
.xe{left:322.466655pt;}
.x10{left:328.706655pt;}
.x5{left:382.786655pt;}
.x7{left:396.893322pt;}
.x2{left:406.333322pt;}
.x1{left:453.693322pt;}
.x13{left:476.573333pt;}
.xf{left:576.933322pt;}
.xd{left:584.933322pt;}
.xc{left:718.239988pt;}
}




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