
    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_eb0116fd499703707433d1d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_8568a6e46f6fb9b137e9cc4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_9a7014471873f20fcb04a433.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_15a42927fd7b6e22c9b3a869.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_92f2751ae8eb992d180895ca.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b360f11468a33dadc49a0609.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773926;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.648000px;}
.ls5{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.187200px;}
.ls11{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.097800px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.lsf{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.532800px;}
.lsc{letter-spacing:0.732000px;}
.ls0{letter-spacing:1.039680px;}
.lsa{letter-spacing:5.328000px;}
.ls9{letter-spacing:24.768000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-16.488000px;}
.ws2{word-spacing:-16.272000px;}
.ws9{word-spacing:-16.056000px;}
.ws5{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.879200px;}
.ws0{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.049400px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-1.347840px;}
._0{width:1.075680px;}
._1{width:2.180400px;}
._4{width:3.960000px;}
._5{width:5.976000px;}
._6{width:7.383840px;}
._14{width:8.424000px;}
._9{width:9.576000px;}
._8{width:11.280000px;}
._7{width:12.456000px;}
._d{width:13.743360px;}
._c{width:15.048000px;}
._f{width:18.216000px;}
._10{width:19.944000px;}
._11{width:21.028320px;}
._b{width:24.039840px;}
._a{width:25.200000px;}
._e{width:28.416000px;}
._13{width:30.888000px;}
._12{width:31.968000px;}
._16{width:60.912000px;}
._15{width:62.328000px;}
._18{width:144.319680px;}
._17{width:145.368000px;}
._2{width:1338.448800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.380000px;}
.y20{bottom:56.340000px;}
.y6{bottom:57.060000px;}
.y5{bottom:77.436000px;}
.y1f{bottom:125.136000px;}
.y5a{bottom:131.796000px;}
.y1e{bottom:143.676000px;}
.y3d{bottom:146.016000px;}
.y1d{bottom:151.230000px;}
.y1c{bottom:161.850000px;}
.y59{bottom:164.910000px;}
.y3c{bottom:178.950000px;}
.y58{bottom:197.850000px;}
.y1b{bottom:200.730000px;}
.y75{bottom:207.030000px;}
.y3b{bottom:211.890000px;}
.y1a{bottom:220.890000px;}
.y74{bottom:229.170000px;}
.y57{bottom:230.790000px;}
.y19{bottom:241.050000px;}
.y3a{bottom:244.830000px;}
.y73{bottom:251.130000px;}
.y72{bottom:273.090000px;}
.y39{bottom:277.770000px;}
.y56{bottom:278.670000px;}
.y18{bottom:288.390000px;}
.y71{bottom:295.050000px;}
.y38{bottom:310.890000px;}
.y55{bottom:311.610000px;}
.y17{bottom:313.230000px;}
.y70{bottom:317.010000px;}
.y16{bottom:335.235000px;}
.y6f{bottom:339.015000px;}
.y37{bottom:343.875000px;}
.y54{bottom:344.595000px;}
.y15{bottom:357.195000px;}
.y6e{bottom:375.915000px;}
.y36{bottom:376.815000px;}
.y53{bottom:377.715000px;}
.y13{bottom:379.155000px;}
.y14{bottom:387.435000px;}
.y12{bottom:400.395000px;}
.y35{bottom:409.755000px;}
.y52{bottom:410.655000px;}
.y6d{bottom:412.995000px;}
.y34{bottom:442.695000px;}
.y51{bottom:443.595000px;}
.y11{bottom:444.855000px;}
.y6c{bottom:449.895000px;}
.y33{bottom:475.635000px;}
.y50{bottom:476.535000px;}
.y6b{bottom:486.795000px;}
.y32{bottom:508.575000px;}
.y4f{bottom:509.475000px;}
.y6a{bottom:533.595000px;}
.y31{bottom:541.515000px;}
.y4e{bottom:542.415000px;}
.y30{bottom:574.455000px;}
.y4d{bottom:575.355000px;}
.y69{bottom:581.475000px;}
.y4c{bottom:608.325000px;}
.y2f{bottom:622.545000px;}
.y68{bottom:629.565000px;}
.y2e{bottom:655.485000px;}
.y4b{bottom:656.385000px;}
.y67{bottom:677.445000px;}
.y2d{bottom:688.425000px;}
.y4a{bottom:689.325000px;}
.y2c{bottom:721.365000px;}
.y49{bottom:722.265000px;}
.y66{bottom:725.325000px;}
.y2b{bottom:754.305000px;}
.y48{bottom:755.205000px;}
.y65{bottom:758.445000px;}
.y10{bottom:782.025000px;}
.y47{bottom:788.145000px;}
.y64{bottom:791.385000px;}
.y2a{bottom:802.365000px;}
.yf{bottom:806.865000px;}
.y46{bottom:821.085000px;}
.y63{bottom:824.325000px;}
.ye{bottom:831.525000px;}
.y29{bottom:835.305000px;}
.yd{bottom:856.005000px;}
.y62{bottom:857.265000px;}
.y28{bottom:868.290000px;}
.y45{bottom:869.190000px;}
.yc{bottom:881.430000px;}
.y61{bottom:890.250000px;}
.y27{bottom:901.230000px;}
.y44{bottom:902.130000px;}
.yb{bottom:909.510000px;}
.y60{bottom:923.190000px;}
.y26{bottom:934.170000px;}
.y43{bottom:935.070000px;}
.ya{bottom:937.590000px;}
.y5f{bottom:956.130000px;}
.y25{bottom:967.110000px;}
.y42{bottom:968.010000px;}
.y5e{bottom:989.070000px;}
.y9{bottom:994.830000px;}
.y24{bottom:1000.050000px;}
.y41{bottom:1000.950000px;}
.y23{bottom:1032.990000px;}
.y40{bottom:1033.890000px;}
.y5d{bottom:1037.130000px;}
.y8{bottom:1052.070000px;}
.y22{bottom:1066.110000px;}
.y5c{bottom:1070.070000px;}
.y3f{bottom:1081.950000px;}
.y21{bottom:1099.050000px;}
.y5b{bottom:1103.010000px;}
.y7{bottom:1109.310000px;}
.y3e{bottom:1114.890000px;}
.y4{bottom:1135.980000px;}
.y3{bottom:1157.040000px;}
.y1{bottom:1182.960000px;}
.h2{height:21.600000px;}
.hd{height:31.286250px;}
.ha{height:38.818125px;}
.he{height:48.088125px;}
.h3{height:51.998203px;}
.h4{height:52.465078px;}
.hc{height:53.302500px;}
.hf{height:54.914062px;}
.h8{height:57.937500px;}
.h5{height:62.648438px;}
.hb{height:73.298672px;}
.h7{height:73.956797px;}
.h6{height:84.070547px;}
.h1{height:1263.000000px;}
.h9{height:1263.057990px;}
.h0{height:1263.060000px;}
.w3{width:85.125000px;}
.w2{width:608.670000px;}
.w4{width:892.438125px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:7.020000px;}
.x2{left:22.669500px;}
.x16{left:33.469500px;}
.x1{left:97.786500px;}
.x5{left:106.416000px;}
.x15{left:111.276000px;}
.x12{left:126.756000px;}
.xa{left:135.036000px;}
.x9{left:154.470000px;}
.x13{left:269.670000px;}
.xb{left:317.955000px;}
.x14{left:322.455000px;}
.x10{left:337.935000px;}
.x8{left:343.335000px;}
.xd{left:357.015000px;}
.x11{left:361.875000px;}
.x17{left:404.175000px;}
.x7{left:405.255000px;}
.x6{left:446.295000px;}
.xe{left:529.483125px;}
.xf{left:535.605000px;}
.xc{left:542.625000px;}
.x3{left:709.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.166400pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.086933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.lsf{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.473600pt;}
.lsc{letter-spacing:0.650667pt;}
.ls0{letter-spacing:0.924160pt;}
.lsa{letter-spacing:4.736000pt;}
.ls9{letter-spacing:22.016000pt;}
.ws8{word-spacing:-14.656000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws9{word-spacing:-14.272000pt;}
.ws5{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws4{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.337067pt;}
.ws0{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.599467pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-1.198080pt;}
._0{width:0.956160pt;}
._1{width:1.938133pt;}
._4{width:3.520000pt;}
._5{width:5.312000pt;}
._6{width:6.563413pt;}
._14{width:7.488000pt;}
._9{width:8.512000pt;}
._8{width:10.026667pt;}
._7{width:11.072000pt;}
._d{width:12.216320pt;}
._c{width:13.376000pt;}
._f{width:16.192000pt;}
._10{width:17.728000pt;}
._11{width:18.691840pt;}
._b{width:21.368747pt;}
._a{width:22.400000pt;}
._e{width:25.258667pt;}
._13{width:27.456000pt;}
._12{width:28.416000pt;}
._16{width:54.144000pt;}
._15{width:55.402667pt;}
._18{width:128.284160pt;}
._17{width:129.216000pt;}
._2{width:1189.732267pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.560000pt;}
.y20{bottom:50.080000pt;}
.y6{bottom:50.720000pt;}
.y5{bottom:68.832000pt;}
.y1f{bottom:111.232000pt;}
.y5a{bottom:117.152000pt;}
.y1e{bottom:127.712000pt;}
.y3d{bottom:129.792000pt;}
.y1d{bottom:134.426667pt;}
.y1c{bottom:143.866667pt;}
.y59{bottom:146.586667pt;}
.y3c{bottom:159.066667pt;}
.y58{bottom:175.866667pt;}
.y1b{bottom:178.426667pt;}
.y75{bottom:184.026667pt;}
.y3b{bottom:188.346667pt;}
.y1a{bottom:196.346667pt;}
.y74{bottom:203.706667pt;}
.y57{bottom:205.146667pt;}
.y19{bottom:214.266667pt;}
.y3a{bottom:217.626667pt;}
.y73{bottom:223.226667pt;}
.y72{bottom:242.746667pt;}
.y39{bottom:246.906667pt;}
.y56{bottom:247.706667pt;}
.y18{bottom:256.346667pt;}
.y71{bottom:262.266667pt;}
.y38{bottom:276.346667pt;}
.y55{bottom:276.986667pt;}
.y17{bottom:278.426667pt;}
.y70{bottom:281.786667pt;}
.y16{bottom:297.986667pt;}
.y6f{bottom:301.346667pt;}
.y37{bottom:305.666667pt;}
.y54{bottom:306.306667pt;}
.y15{bottom:317.506667pt;}
.y6e{bottom:334.146667pt;}
.y36{bottom:334.946667pt;}
.y53{bottom:335.746667pt;}
.y13{bottom:337.026667pt;}
.y14{bottom:344.386667pt;}
.y12{bottom:355.906667pt;}
.y35{bottom:364.226667pt;}
.y52{bottom:365.026667pt;}
.y6d{bottom:367.106667pt;}
.y34{bottom:393.506667pt;}
.y51{bottom:394.306667pt;}
.y11{bottom:395.426667pt;}
.y6c{bottom:399.906667pt;}
.y33{bottom:422.786667pt;}
.y50{bottom:423.586667pt;}
.y6b{bottom:432.706667pt;}
.y32{bottom:452.066667pt;}
.y4f{bottom:452.866667pt;}
.y6a{bottom:474.306667pt;}
.y31{bottom:481.346667pt;}
.y4e{bottom:482.146667pt;}
.y30{bottom:510.626667pt;}
.y4d{bottom:511.426667pt;}
.y69{bottom:516.866667pt;}
.y4c{bottom:540.733333pt;}
.y2f{bottom:553.373333pt;}
.y68{bottom:559.613333pt;}
.y2e{bottom:582.653333pt;}
.y4b{bottom:583.453333pt;}
.y67{bottom:602.173333pt;}
.y2d{bottom:611.933333pt;}
.y4a{bottom:612.733333pt;}
.y2c{bottom:641.213333pt;}
.y49{bottom:642.013333pt;}
.y66{bottom:644.733333pt;}
.y2b{bottom:670.493333pt;}
.y48{bottom:671.293333pt;}
.y65{bottom:674.173333pt;}
.y10{bottom:695.133333pt;}
.y47{bottom:700.573333pt;}
.y64{bottom:703.453333pt;}
.y2a{bottom:713.213333pt;}
.yf{bottom:717.213333pt;}
.y46{bottom:729.853333pt;}
.y63{bottom:732.733333pt;}
.ye{bottom:739.133333pt;}
.y29{bottom:742.493333pt;}
.yd{bottom:760.893333pt;}
.y62{bottom:762.013333pt;}
.y28{bottom:771.813333pt;}
.y45{bottom:772.613333pt;}
.yc{bottom:783.493333pt;}
.y61{bottom:791.333333pt;}
.y27{bottom:801.093333pt;}
.y44{bottom:801.893333pt;}
.yb{bottom:808.453333pt;}
.y60{bottom:820.613333pt;}
.y26{bottom:830.373333pt;}
.y43{bottom:831.173333pt;}
.ya{bottom:833.413333pt;}
.y5f{bottom:849.893333pt;}
.y25{bottom:859.653333pt;}
.y42{bottom:860.453333pt;}
.y5e{bottom:879.173333pt;}
.y9{bottom:884.293333pt;}
.y24{bottom:888.933333pt;}
.y41{bottom:889.733333pt;}
.y23{bottom:918.213333pt;}
.y40{bottom:919.013333pt;}
.y5d{bottom:921.893333pt;}
.y8{bottom:935.173333pt;}
.y22{bottom:947.653333pt;}
.y5c{bottom:951.173333pt;}
.y3f{bottom:961.733333pt;}
.y21{bottom:976.933333pt;}
.y5b{bottom:980.453333pt;}
.y7{bottom:986.053333pt;}
.y3e{bottom:991.013333pt;}
.y4{bottom:1009.760000pt;}
.y3{bottom:1028.480000pt;}
.y1{bottom:1051.520000pt;}
.h2{height:19.200000pt;}
.hd{height:27.810000pt;}
.ha{height:34.505000pt;}
.he{height:42.745000pt;}
.h3{height:46.220625pt;}
.h4{height:46.635625pt;}
.hc{height:47.380000pt;}
.hf{height:48.812500pt;}
.h8{height:51.500000pt;}
.h5{height:55.687500pt;}
.hb{height:65.154375pt;}
.h7{height:65.739375pt;}
.h6{height:74.729375pt;}
.h1{height:1122.666667pt;}
.h9{height:1122.718213pt;}
.h0{height:1122.720000pt;}
.w3{width:75.666667pt;}
.w2{width:541.040000pt;}
.w4{width:793.278333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:6.240000pt;}
.x2{left:20.150667pt;}
.x16{left:29.750667pt;}
.x1{left:86.921333pt;}
.x5{left:94.592000pt;}
.x15{left:98.912000pt;}
.x12{left:112.672000pt;}
.xa{left:120.032000pt;}
.x9{left:137.306667pt;}
.x13{left:239.706667pt;}
.xb{left:282.626667pt;}
.x14{left:286.626667pt;}
.x10{left:300.386667pt;}
.x8{left:305.186667pt;}
.xd{left:317.346667pt;}
.x11{left:321.666667pt;}
.x17{left:359.266667pt;}
.x7{left:360.226667pt;}
.x6{left:396.706667pt;}
.xe{left:470.651667pt;}
.xf{left:476.093333pt;}
.xc{left:482.333333pt;}
.x3{left:630.853333pt;}
}




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