
    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_805bedd612c18130e2d8c54d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_d10087c03227abaf9f54a1d7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_62abb8905d6a5cceeeba7e29.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9232e2a93604b8c91b7a1118.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8472ac8822a3f392527be7bb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_bbe557878384517439df8b73.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_379d38b0f21aadc319eff54e.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a641227d5efd4bccfc17aa03.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.684000px;}
.ls5{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.900000px;}
.ls8{letter-spacing:15.984000px;}
.lsa{letter-spacing:33.960000px;}
.ls7{letter-spacing:70.482720px;}
.lse{letter-spacing:123.120000px;}
.ls0{letter-spacing:675.540000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._26{margin-left:-7.992000px;}
._3{margin-left:-6.492000px;}
._2{margin-left:-5.136000px;}
._4{margin-left:-3.264000px;}
._1{margin-left:-1.656000px;}
._0{width:1.080000px;}
._a{width:2.304000px;}
._11{width:3.336000px;}
._9{width:4.536000px;}
._f{width:6.048000px;}
._d{width:7.704000px;}
._b{width:8.784000px;}
._c{width:10.308000px;}
._15{width:11.664000px;}
._10{width:12.672000px;}
._16{width:13.680000px;}
._7{width:14.688000px;}
._8{width:15.768000px;}
._17{width:16.776000px;}
._1b{width:19.152000px;}
._e{width:20.736000px;}
._12{width:22.104000px;}
._13{width:23.616000px;}
._14{width:24.648000px;}
._5{width:25.776000px;}
._6{width:27.228000px;}
._25{width:28.272000px;}
._1e{width:29.472000px;}
._20{width:30.912000px;}
._1a{width:32.220000px;}
._19{width:33.420000px;}
._18{width:35.064000px;}
._1f{width:36.072000px;}
._23{width:39.312000px;}
._22{width:41.220000px;}
._21{width:42.228000px;}
._24{width:43.644000px;}
._1c{width:44.928000px;}
._1d{width:46.008000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:41.400000px;}
.y4{bottom:62.316000px;}
.y27{bottom:122.796000px;}
.y64{bottom:140.976000px;}
.y5b{bottom:141.336000px;}
.y26{bottom:153.750000px;}
.y47{bottom:172.110000px;}
.y5a{bottom:172.470000px;}
.y25{bottom:184.530000px;}
.y46{bottom:203.070000px;}
.y56{bottom:203.430000px;}
.y24{bottom:215.490000px;}
.y61{bottom:234.210000px;}
.y45{bottom:234.570000px;}
.y23{bottom:246.990000px;}
.y44{bottom:265.530000px;}
.y22{bottom:277.950000px;}
.y55{bottom:296.310000px;}
.y43{bottom:296.670000px;}
.y21{bottom:309.090000px;}
.y54{bottom:327.270000px;}
.y42{bottom:327.675000px;}
.y20{bottom:339.735000px;}
.y41{bottom:358.455000px;}
.y59{bottom:358.815000px;}
.y1f{bottom:371.235000px;}
.y40{bottom:389.415000px;}
.y53{bottom:389.775000px;}
.y1e{bottom:402.195000px;}
.y3f{bottom:420.915000px;}
.y1d{bottom:433.335000px;}
.y52{bottom:451.515000px;}
.y3e{bottom:451.875000px;}
.y1c{bottom:464.295000px;}
.y63{bottom:482.655000px;}
.y3d{bottom:483.015000px;}
.y1b{bottom:495.435000px;}
.y3c{bottom:513.615000px;}
.y51{bottom:513.975000px;}
.y1a{bottom:526.395000px;}
.y3b{bottom:544.575000px;}
.y50{bottom:544.935000px;}
.y19{bottom:557.535000px;}
.y4f{bottom:575.715000px;}
.y3a{bottom:576.075000px;}
.y18{bottom:588.495000px;}
.y60{bottom:606.705000px;}
.y39{bottom:607.065000px;}
.y17{bottom:619.665000px;}
.y38{bottom:637.845000px;}
.y4e{bottom:638.205000px;}
.y16{bottom:650.625000px;}
.y37{bottom:668.805000px;}
.y4d{bottom:669.165000px;}
.y15{bottom:681.765000px;}
.y4c{bottom:699.945000px;}
.y36{bottom:700.305000px;}
.y14{bottom:712.725000px;}
.y5f{bottom:730.905000px;}
.y35{bottom:731.265000px;}
.y13{bottom:743.865000px;}
.y58{bottom:762.045000px;}
.y34{bottom:762.405000px;}
.y12{bottom:774.825000px;}
.y33{bottom:793.365000px;}
.y11{bottom:805.785000px;}
.y32{bottom:824.145000px;}
.y4b{bottom:824.505000px;}
.y10{bottom:836.925000px;}
.y31{bottom:855.105000px;}
.y5e{bottom:855.465000px;}
.yf{bottom:867.570000px;}
.y30{bottom:886.650000px;}
.ye{bottom:908.610000px;}
.y5d{bottom:917.250000px;}
.y2f{bottom:917.610000px;}
.yd{bottom:932.370000px;}
.y57{bottom:948.390000px;}
.y2e{bottom:948.750000px;}
.yc{bottom:963.870000px;}
.yb{bottom:978.810000px;}
.y62{bottom:979.350000px;}
.y2d{bottom:979.710000px;}
.ya{bottom:1010.130000px;}
.y4a{bottom:1010.490000px;}
.y2c{bottom:1010.850000px;}
.y2b{bottom:1041.450000px;}
.y49{bottom:1041.810000px;}
.y9{bottom:1052.070000px;}
.y2a{bottom:1072.590000px;}
.y48{bottom:1072.950000px;}
.y8{bottom:1079.610000px;}
.y5c{bottom:1103.550000px;}
.y29{bottom:1103.910000px;}
.y7{bottom:1105.710000px;}
.y6{bottom:1134.720000px;}
.y28{bottom:1135.080000px;}
.y3{bottom:1169.280000px;}
.y2{bottom:1190.340000px;}
.y1{bottom:1210.680000px;}
.h6{height:33.683203px;}
.h7{height:50.273438px;}
.hb{height:50.800781px;}
.h8{height:61.423863px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:74.004654px;}
.h9{height:74.953125px;}
.h5{height:81.736875px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x5{left:-24.840000px;}
.x0{left:0.000000px;}
.xe{left:108.036000px;}
.xf{left:109.836000px;}
.x10{left:110.916000px;}
.xa{left:116.316000px;}
.x15{left:131.616000px;}
.x11{left:135.036000px;}
.x13{left:136.116000px;}
.xc{left:143.496000px;}
.x12{left:162.030000px;}
.x14{left:163.110000px;}
.x7{left:171.030000px;}
.x2{left:224.310000px;}
.x3{left:232.770000px;}
.x9{left:299.415000px;}
.xd{left:335.055000px;}
.x1{left:350.175000px;}
.xb{left:376.995000px;}
.x8{left:397.695000px;}
.x4{left:437.505000px;}
.x6{left:452.085000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.608000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls8{letter-spacing:14.208000pt;}
.lsa{letter-spacing:30.186667pt;}
.ls7{letter-spacing:62.651307pt;}
.lse{letter-spacing:109.440000pt;}
.ls0{letter-spacing:600.480000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._26{margin-left:-7.104000pt;}
._3{margin-left:-5.770667pt;}
._2{margin-left:-4.565333pt;}
._4{margin-left:-2.901333pt;}
._1{margin-left:-1.472000pt;}
._0{width:0.960000pt;}
._a{width:2.048000pt;}
._11{width:2.965333pt;}
._9{width:4.032000pt;}
._f{width:5.376000pt;}
._d{width:6.848000pt;}
._b{width:7.808000pt;}
._c{width:9.162667pt;}
._15{width:10.368000pt;}
._10{width:11.264000pt;}
._16{width:12.160000pt;}
._7{width:13.056000pt;}
._8{width:14.016000pt;}
._17{width:14.912000pt;}
._1b{width:17.024000pt;}
._e{width:18.432000pt;}
._12{width:19.648000pt;}
._13{width:20.992000pt;}
._14{width:21.909333pt;}
._5{width:22.912000pt;}
._6{width:24.202667pt;}
._25{width:25.130667pt;}
._1e{width:26.197333pt;}
._20{width:27.477333pt;}
._1a{width:28.640000pt;}
._19{width:29.706667pt;}
._18{width:31.168000pt;}
._1f{width:32.064000pt;}
._23{width:34.944000pt;}
._22{width:36.640000pt;}
._21{width:37.536000pt;}
._24{width:38.794667pt;}
._1c{width:39.936000pt;}
._1d{width:40.896000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:36.800000pt;}
.y4{bottom:55.392000pt;}
.y27{bottom:109.152000pt;}
.y64{bottom:125.312000pt;}
.y5b{bottom:125.632000pt;}
.y26{bottom:136.666667pt;}
.y47{bottom:152.986667pt;}
.y5a{bottom:153.306667pt;}
.y25{bottom:164.026667pt;}
.y46{bottom:180.506667pt;}
.y56{bottom:180.826667pt;}
.y24{bottom:191.546667pt;}
.y61{bottom:208.186667pt;}
.y45{bottom:208.506667pt;}
.y23{bottom:219.546667pt;}
.y44{bottom:236.026667pt;}
.y22{bottom:247.066667pt;}
.y55{bottom:263.386667pt;}
.y43{bottom:263.706667pt;}
.y21{bottom:274.746667pt;}
.y54{bottom:290.906667pt;}
.y42{bottom:291.266667pt;}
.y20{bottom:301.986667pt;}
.y41{bottom:318.626667pt;}
.y59{bottom:318.946667pt;}
.y1f{bottom:329.986667pt;}
.y40{bottom:346.146667pt;}
.y53{bottom:346.466667pt;}
.y1e{bottom:357.506667pt;}
.y3f{bottom:374.146667pt;}
.y1d{bottom:385.186667pt;}
.y52{bottom:401.346667pt;}
.y3e{bottom:401.666667pt;}
.y1c{bottom:412.706667pt;}
.y63{bottom:429.026667pt;}
.y3d{bottom:429.346667pt;}
.y1b{bottom:440.386667pt;}
.y3c{bottom:456.546667pt;}
.y51{bottom:456.866667pt;}
.y1a{bottom:467.906667pt;}
.y3b{bottom:484.066667pt;}
.y50{bottom:484.386667pt;}
.y19{bottom:495.586667pt;}
.y4f{bottom:511.746667pt;}
.y3a{bottom:512.066667pt;}
.y18{bottom:523.106667pt;}
.y60{bottom:539.293333pt;}
.y39{bottom:539.613333pt;}
.y17{bottom:550.813333pt;}
.y38{bottom:566.973333pt;}
.y4e{bottom:567.293333pt;}
.y16{bottom:578.333333pt;}
.y37{bottom:594.493333pt;}
.y4d{bottom:594.813333pt;}
.y15{bottom:606.013333pt;}
.y4c{bottom:622.173333pt;}
.y36{bottom:622.493333pt;}
.y14{bottom:633.533333pt;}
.y5f{bottom:649.693333pt;}
.y35{bottom:650.013333pt;}
.y13{bottom:661.213333pt;}
.y58{bottom:677.373333pt;}
.y34{bottom:677.693333pt;}
.y12{bottom:688.733333pt;}
.y33{bottom:705.213333pt;}
.y11{bottom:716.253333pt;}
.y32{bottom:732.573333pt;}
.y4b{bottom:732.893333pt;}
.y10{bottom:743.933333pt;}
.y31{bottom:760.093333pt;}
.y5e{bottom:760.413333pt;}
.yf{bottom:771.173333pt;}
.y30{bottom:788.133333pt;}
.ye{bottom:807.653333pt;}
.y5d{bottom:815.333333pt;}
.y2f{bottom:815.653333pt;}
.yd{bottom:828.773333pt;}
.y57{bottom:843.013333pt;}
.y2e{bottom:843.333333pt;}
.yc{bottom:856.773333pt;}
.yb{bottom:870.053333pt;}
.y62{bottom:870.533333pt;}
.y2d{bottom:870.853333pt;}
.ya{bottom:897.893333pt;}
.y4a{bottom:898.213333pt;}
.y2c{bottom:898.533333pt;}
.y2b{bottom:925.733333pt;}
.y49{bottom:926.053333pt;}
.y9{bottom:935.173333pt;}
.y2a{bottom:953.413333pt;}
.y48{bottom:953.733333pt;}
.y8{bottom:959.653333pt;}
.y5c{bottom:980.933333pt;}
.y29{bottom:981.253333pt;}
.y7{bottom:982.853333pt;}
.y6{bottom:1008.640000pt;}
.y28{bottom:1008.960000pt;}
.y3{bottom:1039.360000pt;}
.y2{bottom:1058.080000pt;}
.y1{bottom:1076.160000pt;}
.h6{height:29.940625pt;}
.h7{height:44.687500pt;}
.hb{height:45.156250pt;}
.h8{height:54.598989pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.781915pt;}
.h9{height:66.625000pt;}
.h5{height:72.655000pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x5{left:-22.080000pt;}
.x0{left:0.000000pt;}
.xe{left:96.032000pt;}
.xf{left:97.632000pt;}
.x10{left:98.592000pt;}
.xa{left:103.392000pt;}
.x15{left:116.992000pt;}
.x11{left:120.032000pt;}
.x13{left:120.992000pt;}
.xc{left:127.552000pt;}
.x12{left:144.026667pt;}
.x14{left:144.986667pt;}
.x7{left:152.026667pt;}
.x2{left:199.386667pt;}
.x3{left:206.906667pt;}
.x9{left:266.146667pt;}
.xd{left:297.826667pt;}
.x1{left:311.266667pt;}
.xb{left:335.106667pt;}
.x8{left:353.506667pt;}
.x4{left:388.893333pt;}
.x6{left:401.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; }
  