
    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_7b20b716e2909d7eb9fca7a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.145508;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_41bc42a4e809b40991454756.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_a3ef21bcfb887cb8fb12a412.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.144043;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_2895b36f62d726dc170397f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.145508;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_1ddbe7b953a701d418f4289b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dff54c9e11d41ae7a71275d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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);}
.v4{vertical-align:-56.736000px;}
.v2{vertical-align:-33.984000px;}
.v1{vertical-align:-4.464000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:41.040000px;}
.ls6{letter-spacing:-0.081000px;}
.ls1{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.005754px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.432000px;}
.ls3{letter-spacing:32.436000px;}
.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:-63.325584px;}
.wsc{word-spacing:-63.282240px;}
.wsb{word-spacing:-63.276486px;}
.ws8{word-spacing:-63.244584px;}
.wse{word-spacing:-54.223344px;}
.ws6{word-spacing:-32.551344px;}
.ws2{word-spacing:-32.508000px;}
.ws0{word-spacing:-27.090000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:432.732000px;}
.wsd{word-spacing:448.728000px;}
.ws4{word-spacing:501.312000px;}
.ws3{word-spacing:518.273472px;}
.wsa{word-spacing:747.594552px;}
.ws7{word-spacing:2183.064000px;}
._5{margin-left:-12.918336px;}
._a{margin-left:-7.824960px;}
._9{margin-left:-6.808752px;}
._4{margin-left:-5.760000px;}
._2{margin-left:-4.032000px;}
._3{margin-left:-2.790000px;}
._0{margin-left:-1.049328px;}
._1{width:1.048320px;}
._7{width:4.322928px;}
._6{width:31.300080px;}
._8{width:41.160000px;}
.fc5{color:rgb(101,40,27);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(135,54,36);}
.fc2{color:rgb(204,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs7{font-size:120.384000px;}
.fs1{font-size:149.760000px;}
.fs0{font-size:149.904000px;}
.fs8{font-size:180.000000px;}
.fs9{font-size:180.144000px;}
.fs6{font-size:210.240000px;}
.fs5{font-size:210.384000px;}
.y0{bottom:0.000000px;}
.y40{bottom:27.072000px;}
.y9{bottom:32.256000px;}
.y2c{bottom:42.552000px;}
.y8{bottom:59.256000px;}
.y1d{bottom:75.852000px;}
.y1c{bottom:108.288000px;}
.y7{bottom:113.256000px;}
.y50{bottom:120.132000px;}
.y3a{bottom:129.744000px;}
.y36{bottom:131.004000px;}
.y6{bottom:140.292000px;}
.y1b{bottom:140.688000px;}
.y39{bottom:162.150000px;}
.y5{bottom:168.195000px;}
.y1a{bottom:173.085000px;}
.y4f{bottom:174.135000px;}
.y38{bottom:194.580000px;}
.y4e{bottom:228.135000px;}
.y19{bottom:237.885000px;}
.y18{bottom:270.330000px;}
.y17{bottom:302.730000px;}
.y16{bottom:335.130000px;}
.y25{bottom:350.535000px;}
.y15{bottom:367.530000px;}
.y24{bottom:382.935000px;}
.y14{bottom:399.960000px;}
.y3f{bottom:408.345000px;}
.y23{bottom:415.335000px;}
.ye{bottom:430.740000px;}
.y13{bottom:432.360000px;}
.y22{bottom:447.735000px;}
.yd{bottom:463.140000px;}
.y12{bottom:464.760000px;}
.y21{bottom:480.165000px;}
.yc{bottom:495.540000px;}
.y11{bottom:497.160000px;}
.y2b{bottom:505.470000px;}
.y4b{bottom:507.315000px;}
.y20{bottom:512.565000px;}
.y2f{bottom:521.070000px;}
.yb{bottom:527.940000px;}
.y2a{bottom:537.870000px;}
.y4a{bottom:539.715000px;}
.y46{bottom:541.335000px;}
.y35{bottom:541.470000px;}
.y1f{bottom:544.965000px;}
.y2e{bottom:553.470000px;}
.ya{bottom:560.370000px;}
.y10{bottom:561.990000px;}
.y34{bottom:563.610000px;}
.y29{bottom:570.270000px;}
.y49{bottom:572.115000px;}
.y45{bottom:573.735000px;}
.y1e{bottom:577.365000px;}
.y4{bottom:585.390000px;}
.y2d{bottom:585.900000px;}
.yf{bottom:594.390000px;}
.y33{bottom:596.010000px;}
.y28{bottom:602.715000px;}
.y48{bottom:604.515000px;}
.y44{bottom:606.135000px;}
.y32{bottom:628.410000px;}
.y3{bottom:630.390000px;}
.y47{bottom:636.915000px;}
.y43{bottom:638.535000px;}
.y3c{bottom:651.315000px;}
.y3e{bottom:658.470000px;}
.y42{bottom:670.965000px;}
.y2{bottom:675.390000px;}
.y4d{bottom:681.090000px;}
.y31{bottom:689.580000px;}
.y3d{bottom:690.870000px;}
.y27{bottom:701.100000px;}
.y4c{bottom:713.490000px;}
.y3b{bottom:714.345000px;}
.y1{bottom:720.435000px;}
.y30{bottom:721.980000px;}
.y26{bottom:746.130000px;}
.y37{bottom:753.150000px;}
.y41{bottom:773.025000px;}
.h5{height:82.529297px;}
.h4{height:84.287109px;}
.h3{height:99.035156px;}
.h6{height:101.144531px;}
.h7{height:101.279391px;}
.hc{height:110.391188px;}
.h2{height:140.253750px;}
.h1{height:140.388609px;}
.ha{height:142.184531px;}
.h9{height:146.981250px;}
.h8{height:147.122578px;}
.he{height:165.058594px;}
.hf{height:168.574219px;}
.h10{height:168.709078px;}
.hd{height:196.894688px;}
.hb{height:197.029547px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1d{left:23.507984px;}
.x11{left:35.783984px;}
.x19{left:55.511984px;}
.x18{left:65.195984px;}
.xb{left:74.555984px;}
.xa{left:83.051984px;}
.xf{left:95.723984px;}
.x1a{left:108.575984px;}
.x13{left:134.099984px;}
.xd{left:175.649984px;}
.x14{left:213.584984px;}
.x15{left:272.189984px;}
.x1e{left:278.789984px;}
.x16{left:298.649984px;}
.x10{left:329.729984px;}
.xc{left:345.209984px;}
.x2{left:366.944984px;}
.x3{left:389.624984px;}
.x1{left:459.869984px;}
.x8{left:464.939984px;}
.x1c{left:491.369984px;}
.x9{left:541.079984px;}
.x5{left:560.909984px;}
.x6{left:582.689984px;}
.x17{left:584.924984px;}
.x7{left:589.349984px;}
.x4{left:594.149984px;}
.x1b{left:627.449984px;}
.xe{left:678.494984px;}
.x12{left:746.564984px;}
@media print{
.v4{vertical-align:-50.432000pt;}
.v2{vertical-align:-30.208000pt;}
.v1{vertical-align:-3.968000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:36.480000pt;}
.ls6{letter-spacing:-0.072000pt;}
.ls1{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.005115pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls3{letter-spacing:28.832000pt;}
.ws9{word-spacing:-56.289408pt;}
.wsc{word-spacing:-56.250880pt;}
.wsb{word-spacing:-56.245765pt;}
.ws8{word-spacing:-56.217408pt;}
.wse{word-spacing:-48.198528pt;}
.ws6{word-spacing:-28.934528pt;}
.ws2{word-spacing:-28.896000pt;}
.ws0{word-spacing:-24.080000pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:384.650667pt;}
.wsd{word-spacing:398.869333pt;}
.ws4{word-spacing:445.610667pt;}
.ws3{word-spacing:460.687531pt;}
.wsa{word-spacing:664.528491pt;}
.ws7{word-spacing:1940.501333pt;}
._5{margin-left:-11.482965pt;}
._a{margin-left:-6.955520pt;}
._9{margin-left:-6.052224pt;}
._4{margin-left:-5.120000pt;}
._2{margin-left:-3.584000pt;}
._3{margin-left:-2.480000pt;}
._0{margin-left:-0.932736pt;}
._1{width:0.931840pt;}
._7{width:3.842603pt;}
._6{width:27.822293pt;}
._8{width:36.586667pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs7{font-size:107.008000pt;}
.fs1{font-size:133.120000pt;}
.fs0{font-size:133.248000pt;}
.fs8{font-size:160.000000pt;}
.fs9{font-size:160.128000pt;}
.fs6{font-size:186.880000pt;}
.fs5{font-size:187.008000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:24.064000pt;}
.y9{bottom:28.672000pt;}
.y2c{bottom:37.824000pt;}
.y8{bottom:52.672000pt;}
.y1d{bottom:67.424000pt;}
.y1c{bottom:96.256000pt;}
.y7{bottom:100.672000pt;}
.y50{bottom:106.784000pt;}
.y3a{bottom:115.328000pt;}
.y36{bottom:116.448000pt;}
.y6{bottom:124.704000pt;}
.y1b{bottom:125.056000pt;}
.y39{bottom:144.133333pt;}
.y5{bottom:149.506667pt;}
.y1a{bottom:153.853333pt;}
.y4f{bottom:154.786667pt;}
.y38{bottom:172.960000pt;}
.y4e{bottom:202.786667pt;}
.y19{bottom:211.453333pt;}
.y18{bottom:240.293333pt;}
.y17{bottom:269.093333pt;}
.y16{bottom:297.893333pt;}
.y25{bottom:311.586667pt;}
.y15{bottom:326.693333pt;}
.y24{bottom:340.386667pt;}
.y14{bottom:355.520000pt;}
.y3f{bottom:362.973333pt;}
.y23{bottom:369.186667pt;}
.ye{bottom:382.880000pt;}
.y13{bottom:384.320000pt;}
.y22{bottom:397.986667pt;}
.yd{bottom:411.680000pt;}
.y12{bottom:413.120000pt;}
.y21{bottom:426.813333pt;}
.yc{bottom:440.480000pt;}
.y11{bottom:441.920000pt;}
.y2b{bottom:449.306667pt;}
.y4b{bottom:450.946667pt;}
.y20{bottom:455.613333pt;}
.y2f{bottom:463.173333pt;}
.yb{bottom:469.280000pt;}
.y2a{bottom:478.106667pt;}
.y4a{bottom:479.746667pt;}
.y46{bottom:481.186667pt;}
.y35{bottom:481.306667pt;}
.y1f{bottom:484.413333pt;}
.y2e{bottom:491.973333pt;}
.ya{bottom:498.106667pt;}
.y10{bottom:499.546667pt;}
.y34{bottom:500.986667pt;}
.y29{bottom:506.906667pt;}
.y49{bottom:508.546667pt;}
.y45{bottom:509.986667pt;}
.y1e{bottom:513.213333pt;}
.y4{bottom:520.346667pt;}
.y2d{bottom:520.800000pt;}
.yf{bottom:528.346667pt;}
.y33{bottom:529.786667pt;}
.y28{bottom:535.746667pt;}
.y48{bottom:537.346667pt;}
.y44{bottom:538.786667pt;}
.y32{bottom:558.586667pt;}
.y3{bottom:560.346667pt;}
.y47{bottom:566.146667pt;}
.y43{bottom:567.586667pt;}
.y3c{bottom:578.946667pt;}
.y3e{bottom:585.306667pt;}
.y42{bottom:596.413333pt;}
.y2{bottom:600.346667pt;}
.y4d{bottom:605.413333pt;}
.y31{bottom:612.960000pt;}
.y3d{bottom:614.106667pt;}
.y27{bottom:623.200000pt;}
.y4c{bottom:634.213333pt;}
.y3b{bottom:634.973333pt;}
.y1{bottom:640.386667pt;}
.y30{bottom:641.760000pt;}
.y26{bottom:663.226667pt;}
.y37{bottom:669.466667pt;}
.y41{bottom:687.133333pt;}
.h5{height:73.359375pt;}
.h4{height:74.921875pt;}
.h3{height:88.031250pt;}
.h6{height:89.906250pt;}
.h7{height:90.026125pt;}
.hc{height:98.125500pt;}
.h2{height:124.670000pt;}
.h1{height:124.789875pt;}
.ha{height:126.386250pt;}
.h9{height:130.650000pt;}
.h8{height:130.775625pt;}
.he{height:146.718750pt;}
.hf{height:149.843750pt;}
.h10{height:149.963625pt;}
.hd{height:175.017500pt;}
.hb{height:175.137375pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:20.895986pt;}
.x11{left:31.807986pt;}
.x19{left:49.343986pt;}
.x18{left:57.951986pt;}
.xb{left:66.271986pt;}
.xa{left:73.823986pt;}
.xf{left:85.087986pt;}
.x1a{left:96.511986pt;}
.x13{left:119.199986pt;}
.xd{left:156.133319pt;}
.x14{left:189.853319pt;}
.x15{left:241.946652pt;}
.x1e{left:247.813319pt;}
.x16{left:265.466652pt;}
.x10{left:293.093319pt;}
.xc{left:306.853319pt;}
.x2{left:326.173319pt;}
.x3{left:346.333319pt;}
.x1{left:408.773319pt;}
.x8{left:413.279986pt;}
.x1c{left:436.773319pt;}
.x9{left:480.959986pt;}
.x5{left:498.586652pt;}
.x6{left:517.946652pt;}
.x17{left:519.933319pt;}
.x7{left:523.866652pt;}
.x4{left:528.133319pt;}
.x1b{left:557.733319pt;}
.xe{left:603.106652pt;}
.x12{left:663.613319pt;}
}




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