
    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_4614942cd69b625317a1179f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_22ac158e24b06b1b0cb2f0d9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_8017003b3bed5d57b6763828.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_40d903b86351a642fecb7d64.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_2e2cf0cce6fef32da9aca927.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010080px;}
.ls3{letter-spacing:0.011520px;}
.ls0{letter-spacing:0.014400px;}
.ls5{letter-spacing:33.984000px;}
.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;}
}
.ws2{word-spacing:-20.030400px;}
.ws1{word-spacing:-20.001600px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-2.016000px;}
._0{margin-left:-1.012608px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(54,96,145);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:6.660000px;}
.y3e{bottom:6.780000px;}
.y50{bottom:6.960000px;}
.y4a{bottom:7.020000px;}
.y3c{bottom:7.200000px;}
.y3a{bottom:7.260000px;}
.y48{bottom:7.440000px;}
.y38{bottom:7.680000px;}
.y66{bottom:7.740000px;}
.y42{bottom:7.800000px;}
.y5f{bottom:7.860000px;}
.y5b{bottom:7.920000px;}
.y54{bottom:7.980000px;}
.y36{bottom:8.100000px;}
.y40{bottom:8.220000px;}
.y52{bottom:8.400000px;}
.y33{bottom:30.420000px;}
.y4d{bottom:30.540000px;}
.y4f{bottom:30.720000px;}
.y47{bottom:30.840000px;}
.y61{bottom:30.960000px;}
.y65{bottom:31.140000px;}
.y5e{bottom:31.620000px;}
.y5a{bottom:31.680000px;}
.y63{bottom:31.800000px;}
.y5d{bottom:55.020000px;}
.y59{bottom:55.080000px;}
.y28{bottom:116.280000px;}
.y6d{bottom:117.000000px;}
.y96{bottom:132.840000px;}
.y6c{bottom:137.520000px;}
.y27{bottom:140.040000px;}
.y95{bottom:156.240000px;}
.yc0{bottom:158.040000px;}
.y6b{bottom:158.400000px;}
.y26{bottom:163.440000px;}
.y41{bottom:165.000000px;}
.y6a{bottom:178.920000px;}
.y94{bottom:179.640000px;}
.y25{bottom:187.200000px;}
.y3f{bottom:190.500000px;}
.ybf{bottom:199.440000px;}
.y24{bottom:210.600000px;}
.y3d{bottom:217.500000px;}
.ybe{bottom:220.320000px;}
.y69{bottom:223.560000px;}
.y93{bottom:224.280000px;}
.y23{bottom:234.000000px;}
.ybd{bottom:240.840000px;}
.y3b{bottom:243.000000px;}
.y22{bottom:257.760000px;}
.ybc{bottom:261.720000px;}
.y68{bottom:268.200000px;}
.y39{bottom:268.500000px;}
.y92{bottom:268.920000px;}
.y21{bottom:281.160000px;}
.ybb{bottom:282.240000px;}
.y67{bottom:291.600000px;}
.y37{bottom:294.000000px;}
.yba{bottom:303.120000px;}
.y20{bottom:304.920000px;}
.y91{bottom:310.680000px;}
.y35{bottom:319.500000px;}
.yb9{bottom:323.640000px;}
.y1f{bottom:328.320000px;}
.y64{bottom:328.500000px;}
.y90{bottom:331.200000px;}
.yb8{bottom:344.520000px;}
.y32{bottom:346.500000px;}
.y1e{bottom:351.720000px;}
.y8f{bottom:352.080000px;}
.yb7{bottom:365.040000px;}
.y8e{bottom:372.600000px;}
.y62{bottom:375.000000px;}
.y1d{bottom:375.480000px;}
.yb6{bottom:385.920000px;}
.y8d{bottom:393.480000px;}
.y1c{bottom:398.880000px;}
.yb5{bottom:406.440000px;}
.y8c{bottom:414.000000px;}
.y1b{bottom:422.640000px;}
.y60{bottom:423.000000px;}
.yb4{bottom:427.320000px;}
.y8b{bottom:434.880000px;}
.y1a{bottom:446.040000px;}
.yb3{bottom:447.840000px;}
.y31{bottom:466.920000px;}
.yb2{bottom:468.720000px;}
.y19{bottom:469.440000px;}
.y5c{bottom:469.500000px;}
.y8a{bottom:476.280000px;}
.yb1{bottom:489.240000px;}
.y30{bottom:490.680000px;}
.y18{bottom:493.200000px;}
.y89{bottom:497.160000px;}
.yb0{bottom:510.120000px;}
.y2f{bottom:514.080000px;}
.y88{bottom:517.680000px;}
.yaf{bottom:530.640000px;}
.y17{bottom:537.840000px;}
.y87{bottom:538.560000px;}
.y58{bottom:540.000000px;}
.yae{bottom:551.520000px;}
.y86{bottom:559.080000px;}
.y2e{bottom:561.240000px;}
.yad{bottom:572.040000px;}
.y85{bottom:579.960000px;}
.y16{bottom:582.120000px;}
.y2d{bottom:584.640000px;}
.yac{bottom:592.920000px;}
.y84{bottom:600.480000px;}
.y15{bottom:605.880000px;}
.y2c{bottom:608.400000px;}
.yab{bottom:613.440000px;}
.y2b{bottom:631.800000px;}
.yaa{bottom:634.320000px;}
.y57{bottom:639.720000px;}
.y83{bottom:642.240000px;}
.y14{bottom:650.520000px;}
.ya9{bottom:654.840000px;}
.y2a{bottom:655.560000px;}
.y82{bottom:663.120000px;}
.y13{bottom:673.920000px;}
.ya8{bottom:675.720000px;}
.y81{bottom:683.640000px;}
.y56{bottom:684.360000px;}
.ya7{bottom:696.240000px;}
.y12{bottom:697.320000px;}
.y29{bottom:699.840000px;}
.y80{bottom:704.520000px;}
.y55{bottom:707.760000px;}
.ya6{bottom:716.760000px;}
.y11{bottom:721.080000px;}
.y7f{bottom:725.040000px;}
.ya5{bottom:737.640000px;}
.y10{bottom:744.480000px;}
.y53{bottom:745.500000px;}
.y7e{bottom:745.920000px;}
.ya4{bottom:758.160000px;}
.y7d{bottom:766.440000px;}
.yf{bottom:768.240000px;}
.y51{bottom:771.000000px;}
.ya3{bottom:779.040000px;}
.y7c{bottom:787.320000px;}
.ye{bottom:791.640000px;}
.y4e{bottom:798.000000px;}
.ya2{bottom:799.560000px;}
.yd{bottom:815.040000px;}
.ycc{bottom:817.560000px;}
.ya1{bottom:820.440000px;}
.y7b{bottom:829.080000px;}
.yc{bottom:838.800000px;}
.ya0{bottom:840.960000px;}
.y4c{bottom:847.500000px;}
.y7a{bottom:849.600000px;}
.y9f{bottom:861.840000px;}
.yb{bottom:862.200000px;}
.ycb{bottom:862.560000px;}
.y79{bottom:870.480000px;}
.y9e{bottom:882.360000px;}
.ya{bottom:885.960000px;}
.y78{bottom:891.000000px;}
.y4b{bottom:895.500000px;}
.y9d{bottom:903.240000px;}
.yca{bottom:907.560000px;}
.y9{bottom:909.360000px;}
.y77{bottom:911.880000px;}
.y49{bottom:922.500000px;}
.y9c{bottom:923.760000px;}
.y76{bottom:932.400000px;}
.y8{bottom:932.760000px;}
.y9b{bottom:944.640000px;}
.y46{bottom:948.000000px;}
.yc9{bottom:952.560000px;}
.y75{bottom:952.920000px;}
.y7{bottom:956.520000px;}
.y9a{bottom:965.160000px;}
.y74{bottom:973.800000px;}
.y6{bottom:979.920000px;}
.y99{bottom:986.040000px;}
.y73{bottom:994.320000px;}
.yc8{bottom:994.680000px;}
.y5{bottom:1003.680000px;}
.y98{bottom:1006.560000px;}
.y72{bottom:1015.200000px;}
.yc7{bottom:1015.920000px;}
.y45{bottom:1024.560000px;}
.y4{bottom:1027.080000px;}
.y97{bottom:1027.440000px;}
.yc6{bottom:1036.440000px;}
.y71{bottom:1056.960000px;}
.yc5{bottom:1057.320000px;}
.y44{bottom:1069.200000px;}
.y3{bottom:1071.720000px;}
.y70{bottom:1077.480000px;}
.yc4{bottom:1077.840000px;}
.y43{bottom:1092.600000px;}
.y6f{bottom:1098.360000px;}
.yc3{bottom:1098.720000px;}
.y2{bottom:1116.000000px;}
.y6e{bottom:1118.880000px;}
.yc2{bottom:1119.240000px;}
.y1{bottom:1139.760000px;}
.yc1{bottom:1140.120000px;}
.h5{height:24.000000px;}
.h4{height:25.500000px;}
.h9{height:47.988281px;}
.h3{height:48.000000px;}
.h7{height:49.500000px;}
.h8{height:49.992188px;}
.h2{height:52.453125px;}
.h6{height:72.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:109.500000px;}
.w2{width:130.500000px;}
.w3{width:132.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:1.200072px;}
.x7{left:2.280000px;}
.xa{left:8.700072px;}
.x9{left:97.500000px;}
.x2{left:105.000000px;}
.x1{left:106.200072px;}
.x10{left:133.200072px;}
.xb{left:205.500000px;}
.x4{left:234.000000px;}
.xc{left:334.500000px;}
.x5{left:363.000000px;}
.xd{left:442.500000px;}
.x6{left:492.000000px;}
.xe{left:550.500000px;}
.x8{left:622.500000px;}
.xf{left:658.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.008960pt;}
.ls3{letter-spacing:0.010240pt;}
.ls0{letter-spacing:0.012800pt;}
.ls5{letter-spacing:30.208000pt;}
.ws2{word-spacing:-17.804800pt;}
.ws1{word-spacing:-17.779200pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.792000pt;}
._0{margin-left:-0.900096pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:5.920000pt;}
.y3e{bottom:6.026667pt;}
.y50{bottom:6.186667pt;}
.y4a{bottom:6.240000pt;}
.y3c{bottom:6.400000pt;}
.y3a{bottom:6.453333pt;}
.y48{bottom:6.613333pt;}
.y38{bottom:6.826667pt;}
.y66{bottom:6.880000pt;}
.y42{bottom:6.933333pt;}
.y5f{bottom:6.986667pt;}
.y5b{bottom:7.040000pt;}
.y54{bottom:7.093333pt;}
.y36{bottom:7.200000pt;}
.y40{bottom:7.306667pt;}
.y52{bottom:7.466667pt;}
.y33{bottom:27.040000pt;}
.y4d{bottom:27.146667pt;}
.y4f{bottom:27.306667pt;}
.y47{bottom:27.413333pt;}
.y61{bottom:27.520000pt;}
.y65{bottom:27.680000pt;}
.y5e{bottom:28.106667pt;}
.y5a{bottom:28.160000pt;}
.y63{bottom:28.266667pt;}
.y5d{bottom:48.906667pt;}
.y59{bottom:48.960000pt;}
.y28{bottom:103.360000pt;}
.y6d{bottom:104.000000pt;}
.y96{bottom:118.080000pt;}
.y6c{bottom:122.240000pt;}
.y27{bottom:124.480000pt;}
.y95{bottom:138.880000pt;}
.yc0{bottom:140.480000pt;}
.y6b{bottom:140.800000pt;}
.y26{bottom:145.280000pt;}
.y41{bottom:146.666667pt;}
.y6a{bottom:159.040000pt;}
.y94{bottom:159.680000pt;}
.y25{bottom:166.400000pt;}
.y3f{bottom:169.333333pt;}
.ybf{bottom:177.280000pt;}
.y24{bottom:187.200000pt;}
.y3d{bottom:193.333333pt;}
.ybe{bottom:195.840000pt;}
.y69{bottom:198.720000pt;}
.y93{bottom:199.360000pt;}
.y23{bottom:208.000000pt;}
.ybd{bottom:214.080000pt;}
.y3b{bottom:216.000000pt;}
.y22{bottom:229.120000pt;}
.ybc{bottom:232.640000pt;}
.y68{bottom:238.400000pt;}
.y39{bottom:238.666667pt;}
.y92{bottom:239.040000pt;}
.y21{bottom:249.920000pt;}
.ybb{bottom:250.880000pt;}
.y67{bottom:259.200000pt;}
.y37{bottom:261.333333pt;}
.yba{bottom:269.440000pt;}
.y20{bottom:271.040000pt;}
.y91{bottom:276.160000pt;}
.y35{bottom:284.000000pt;}
.yb9{bottom:287.680000pt;}
.y1f{bottom:291.840000pt;}
.y64{bottom:292.000000pt;}
.y90{bottom:294.400000pt;}
.yb8{bottom:306.240000pt;}
.y32{bottom:308.000000pt;}
.y1e{bottom:312.640000pt;}
.y8f{bottom:312.960000pt;}
.yb7{bottom:324.480000pt;}
.y8e{bottom:331.200000pt;}
.y62{bottom:333.333333pt;}
.y1d{bottom:333.760000pt;}
.yb6{bottom:343.040000pt;}
.y8d{bottom:349.760000pt;}
.y1c{bottom:354.560000pt;}
.yb5{bottom:361.280000pt;}
.y8c{bottom:368.000000pt;}
.y1b{bottom:375.680000pt;}
.y60{bottom:376.000000pt;}
.yb4{bottom:379.840000pt;}
.y8b{bottom:386.560000pt;}
.y1a{bottom:396.480000pt;}
.yb3{bottom:398.080000pt;}
.y31{bottom:415.040000pt;}
.yb2{bottom:416.640000pt;}
.y19{bottom:417.280000pt;}
.y5c{bottom:417.333333pt;}
.y8a{bottom:423.360000pt;}
.yb1{bottom:434.880000pt;}
.y30{bottom:436.160000pt;}
.y18{bottom:438.400000pt;}
.y89{bottom:441.920000pt;}
.yb0{bottom:453.440000pt;}
.y2f{bottom:456.960000pt;}
.y88{bottom:460.160000pt;}
.yaf{bottom:471.680000pt;}
.y17{bottom:478.080000pt;}
.y87{bottom:478.720000pt;}
.y58{bottom:480.000000pt;}
.yae{bottom:490.240000pt;}
.y86{bottom:496.960000pt;}
.y2e{bottom:498.880000pt;}
.yad{bottom:508.480000pt;}
.y85{bottom:515.520000pt;}
.y16{bottom:517.440000pt;}
.y2d{bottom:519.680000pt;}
.yac{bottom:527.040000pt;}
.y84{bottom:533.760000pt;}
.y15{bottom:538.560000pt;}
.y2c{bottom:540.800000pt;}
.yab{bottom:545.280000pt;}
.y2b{bottom:561.600000pt;}
.yaa{bottom:563.840000pt;}
.y57{bottom:568.640000pt;}
.y83{bottom:570.880000pt;}
.y14{bottom:578.240000pt;}
.ya9{bottom:582.080000pt;}
.y2a{bottom:582.720000pt;}
.y82{bottom:589.440000pt;}
.y13{bottom:599.040000pt;}
.ya8{bottom:600.640000pt;}
.y81{bottom:607.680000pt;}
.y56{bottom:608.320000pt;}
.ya7{bottom:618.880000pt;}
.y12{bottom:619.840000pt;}
.y29{bottom:622.080000pt;}
.y80{bottom:626.240000pt;}
.y55{bottom:629.120000pt;}
.ya6{bottom:637.120000pt;}
.y11{bottom:640.960000pt;}
.y7f{bottom:644.480000pt;}
.ya5{bottom:655.680000pt;}
.y10{bottom:661.760000pt;}
.y53{bottom:662.666667pt;}
.y7e{bottom:663.040000pt;}
.ya4{bottom:673.920000pt;}
.y7d{bottom:681.280000pt;}
.yf{bottom:682.880000pt;}
.y51{bottom:685.333333pt;}
.ya3{bottom:692.480000pt;}
.y7c{bottom:699.840000pt;}
.ye{bottom:703.680000pt;}
.y4e{bottom:709.333333pt;}
.ya2{bottom:710.720000pt;}
.yd{bottom:724.480000pt;}
.ycc{bottom:726.720000pt;}
.ya1{bottom:729.280000pt;}
.y7b{bottom:736.960000pt;}
.yc{bottom:745.600000pt;}
.ya0{bottom:747.520000pt;}
.y4c{bottom:753.333333pt;}
.y7a{bottom:755.200000pt;}
.y9f{bottom:766.080000pt;}
.yb{bottom:766.400000pt;}
.ycb{bottom:766.720000pt;}
.y79{bottom:773.760000pt;}
.y9e{bottom:784.320000pt;}
.ya{bottom:787.520000pt;}
.y78{bottom:792.000000pt;}
.y4b{bottom:796.000000pt;}
.y9d{bottom:802.880000pt;}
.yca{bottom:806.720000pt;}
.y9{bottom:808.320000pt;}
.y77{bottom:810.560000pt;}
.y49{bottom:820.000000pt;}
.y9c{bottom:821.120000pt;}
.y76{bottom:828.800000pt;}
.y8{bottom:829.120000pt;}
.y9b{bottom:839.680000pt;}
.y46{bottom:842.666667pt;}
.yc9{bottom:846.720000pt;}
.y75{bottom:847.040000pt;}
.y7{bottom:850.240000pt;}
.y9a{bottom:857.920000pt;}
.y74{bottom:865.600000pt;}
.y6{bottom:871.040000pt;}
.y99{bottom:876.480000pt;}
.y73{bottom:883.840000pt;}
.yc8{bottom:884.160000pt;}
.y5{bottom:892.160000pt;}
.y98{bottom:894.720000pt;}
.y72{bottom:902.400000pt;}
.yc7{bottom:903.040000pt;}
.y45{bottom:910.720000pt;}
.y4{bottom:912.960000pt;}
.y97{bottom:913.280000pt;}
.yc6{bottom:921.280000pt;}
.y71{bottom:939.520000pt;}
.yc5{bottom:939.840000pt;}
.y44{bottom:950.400000pt;}
.y3{bottom:952.640000pt;}
.y70{bottom:957.760000pt;}
.yc4{bottom:958.080000pt;}
.y43{bottom:971.200000pt;}
.y6f{bottom:976.320000pt;}
.yc3{bottom:976.640000pt;}
.y2{bottom:992.000000pt;}
.y6e{bottom:994.560000pt;}
.yc2{bottom:994.880000pt;}
.y1{bottom:1013.120000pt;}
.yc1{bottom:1013.440000pt;}
.h5{height:21.333333pt;}
.h4{height:22.666667pt;}
.h9{height:42.656250pt;}
.h3{height:42.666667pt;}
.h7{height:44.000000pt;}
.h8{height:44.437500pt;}
.h2{height:46.625000pt;}
.h6{height:64.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:97.333333pt;}
.w2{width:116.000000pt;}
.w3{width:117.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:1.066731pt;}
.x7{left:2.026667pt;}
.xa{left:7.733397pt;}
.x9{left:86.666667pt;}
.x2{left:93.333333pt;}
.x1{left:94.400064pt;}
.x10{left:118.400064pt;}
.xb{left:182.666667pt;}
.x4{left:208.000000pt;}
.xc{left:297.333333pt;}
.x5{left:322.666667pt;}
.xd{left:393.333333pt;}
.x6{left:437.333333pt;}
.xe{left:489.333333pt;}
.x8{left:553.333333pt;}
.xf{left:585.333333pt;}
}




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