
    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_89c618067d1acf9b092e2f62.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_3d624ad30464adac4cb7aa42.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5dfe6d977810fec8863f63e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_9f469bfab33a23ad58f3a090.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_e037bfef6253f46e8a8bea53.woff2')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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e007f5607a091e5d943498f4.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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.000540px;}
.ls3{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.410256px;}
.ls5{letter-spacing:4.030800px;}
.ls7{letter-spacing:33.983760px;}
.ls0{letter-spacing:68.331420px;}
.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;}
}
.ws4{word-spacing:-18.014400px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.985600px;}
.ws5{word-spacing:-15.222096px;}
.ws0{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._21{margin-left:-2.016240px;}
._1a{margin-left:-1.011000px;}
._1{width:1.157700px;}
._5{width:3.045600px;}
._c{width:4.269600px;}
._d{width:5.637600px;}
._8{width:7.154400px;}
._6{width:8.308800px;}
._a{width:9.727200px;}
._4{width:10.743780px;}
._3{width:12.297600px;}
._0{width:13.960800px;}
._7{width:15.047700px;}
._9{width:16.214700px;}
._12{width:19.631100px;}
._e{width:20.736000px;}
._10{width:22.248000px;}
._14{width:24.071100px;}
._1d{width:25.205700px;}
._13{width:26.337600px;}
._15{width:27.381600px;}
._2{width:29.138700px;}
._f{width:30.768000px;}
._16{width:32.071200px;}
._17{width:33.301500px;}
._11{width:34.322400px;}
._19{width:35.622000px;}
._1b{width:36.752400px;}
._1e{width:37.814700px;}
._1c{width:39.009600px;}
._b{width:41.335200px;}
._20{width:43.034400px;}
._1f{width:51.602400px;}
._18{width:64.007760px;}
._22{width:466.499700px;}
.fc1{color:rgb(0,51,102);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:53.280000px;}
.fs1{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.y3{bottom:-3.419970px;}
.y0{bottom:0.000000px;}
.y56{bottom:14.400000px;}
.y2{bottom:14.940030px;}
.y54{bottom:53.820030px;}
.y49{bottom:54.180030px;}
.y28{bottom:54.540030px;}
.y1{bottom:61.500000px;}
.y68{bottom:73.980015px;}
.y79{bottom:76.860015px;}
.y53{bottom:84.780030px;}
.y48{bottom:85.140030px;}
.y27{bottom:85.500030px;}
.y93{bottom:86.220030px;}
.y67{bottom:104.940000px;}
.y78{bottom:107.820000px;}
.y52{bottom:115.740000px;}
.y47{bottom:116.100000px;}
.y26{bottom:116.460000px;}
.y92{bottom:117.180000px;}
.y66{bottom:135.900000px;}
.y77{bottom:139.140000px;}
.y51{bottom:146.700000px;}
.y46{bottom:147.060000px;}
.y25{bottom:147.420000px;}
.y91{bottom:148.140000px;}
.y65{bottom:166.860000px;}
.y76{bottom:170.100000px;}
.y50{bottom:178.020000px;}
.y45{bottom:178.380000px;}
.y24{bottom:178.740000px;}
.y90{bottom:179.100000px;}
.y64{bottom:198.180000px;}
.y23{bottom:199.260000px;}
.y75{bottom:201.060000px;}
.y4f{bottom:208.980000px;}
.y44{bottom:209.340000px;}
.y8f{bottom:210.420000px;}
.y63{bottom:229.140000px;}
.y22{bottom:230.220000px;}
.y74{bottom:232.020000px;}
.y4e{bottom:239.940000px;}
.y43{bottom:240.300000px;}
.y8e{bottom:241.380000px;}
.y62{bottom:260.100000px;}
.y21{bottom:261.540000px;}
.y73{bottom:263.340000px;}
.y4d{bottom:270.900000px;}
.y42{bottom:271.260000px;}
.y8d{bottom:272.340000px;}
.y61{bottom:291.060000px;}
.y20{bottom:292.500000px;}
.y72{bottom:294.300000px;}
.y4c{bottom:302.220000px;}
.y41{bottom:302.580000px;}
.y8c{bottom:303.300000px;}
.y60{bottom:322.380000px;}
.y1f{bottom:323.460000px;}
.y71{bottom:325.260000px;}
.y4b{bottom:333.180000px;}
.y40{bottom:333.540000px;}
.y94{bottom:333.900000px;}
.y8b{bottom:334.620000px;}
.y5f{bottom:353.340000px;}
.y1e{bottom:354.420000px;}
.y70{bottom:356.220000px;}
.y4a{bottom:364.140000px;}
.y3f{bottom:364.500000px;}
.y8a{bottom:365.580000px;}
.y5e{bottom:384.300000px;}
.y1d{bottom:385.740000px;}
.y6f{bottom:387.540000px;}
.y3e{bottom:395.460000px;}
.y89{bottom:396.540000px;}
.y5d{bottom:415.260000px;}
.y1c{bottom:416.700000px;}
.y6e{bottom:418.500000px;}
.y3d{bottom:426.420000px;}
.y88{bottom:427.500000px;}
.y6d{bottom:445.500000px;}
.y5c{bottom:446.220000px;}
.y1b{bottom:447.660000px;}
.y6c{bottom:457.380000px;}
.y3c{bottom:457.740000px;}
.y87{bottom:458.820000px;}
.y5b{bottom:477.540000px;}
.y1a{bottom:478.620000px;}
.y6b{bottom:488.340000px;}
.y3b{bottom:488.700000px;}
.y86{bottom:489.780000px;}
.y5a{bottom:508.500000px;}
.y19{bottom:509.940000px;}
.y3a{bottom:519.660000px;}
.y85{bottom:520.740000px;}
.y59{bottom:539.460000px;}
.y18{bottom:540.900000px;}
.y39{bottom:550.620000px;}
.y84{bottom:551.700000px;}
.y58{bottom:570.420000px;}
.y17{bottom:571.860000px;}
.y6a{bottom:581.580000px;}
.y38{bottom:581.940000px;}
.y83{bottom:583.020000px;}
.y16{bottom:602.820000px;}
.y37{bottom:612.900000px;}
.y82{bottom:613.980000px;}
.y15{bottom:634.140000px;}
.y36{bottom:643.860000px;}
.y81{bottom:644.940000px;}
.y57{bottom:652.080000px;}
.y14{bottom:665.100000px;}
.y35{bottom:674.820000px;}
.y80{bottom:675.900000px;}
.y55{bottom:687.720000px;}
.y13{bottom:696.060000px;}
.y69{bottom:705.780000px;}
.y34{bottom:706.140000px;}
.y7f{bottom:707.220000px;}
.y12{bottom:727.020000px;}
.y33{bottom:737.100000px;}
.y7e{bottom:738.180000px;}
.y11{bottom:758.340000px;}
.y32{bottom:768.060000px;}
.y7d{bottom:769.140000px;}
.y10{bottom:778.860000px;}
.y31{bottom:799.020000px;}
.yf{bottom:799.740000px;}
.y7c{bottom:800.100000px;}
.y30{bottom:830.340000px;}
.ye{bottom:835.380000px;}
.y7b{bottom:846.540000px;}
.yd{bottom:855.900000px;}
.y2f{bottom:861.300000px;}
.yc{bottom:876.780000px;}
.y2e{bottom:892.260000px;}
.y7a{bottom:892.620000px;}
.yb{bottom:900.540000px;}
.y2d{bottom:923.220000px;}
.ya{bottom:924.300000px;}
.y9{bottom:945.180000px;}
.y2c{bottom:954.540000px;}
.y8{bottom:965.700000px;}
.y2b{bottom:985.500000px;}
.y7{bottom:1001.340000px;}
.y2a{bottom:1016.460000px;}
.y6{bottom:1037.340000px;}
.y29{bottom:1047.420000px;}
.y5{bottom:1057.860000px;}
.y4{bottom:1078.740000px;}
.h7{height:30.959970px;}
.h2{height:38.295000px;}
.h3{height:43.189453px;}
.h4{height:49.289063px;}
.h6{height:49.992188px;}
.h5{height:63.175781px;}
.h1{height:1174.500000px;}
.h0{height:1263.000000px;}
.w2{width:2.879997px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:1.080075px;}
.x1{left:27.000000px;}
.x3{left:79.200075px;}
.x8{left:105.120000px;}
.x6{left:106.200060px;}
.x7{left:133.200000px;}
.xc{left:145.655700px;}
.x5{left:243.807450px;}
.x4{left:254.820150px;}
.xa{left:411.817050px;}
.x2{left:415.571100px;}
.xb{left:805.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000480pt;}
.ls3{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.364672pt;}
.ls5{letter-spacing:3.582933pt;}
.ls7{letter-spacing:30.207787pt;}
.ls0{letter-spacing:60.739040pt;}
.ws4{word-spacing:-16.012800pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.987200pt;}
.ws5{word-spacing:-13.530752pt;}
.ws0{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._21{margin-left:-1.792213pt;}
._1a{margin-left:-0.898667pt;}
._1{width:1.029067pt;}
._5{width:2.707200pt;}
._c{width:3.795200pt;}
._d{width:5.011200pt;}
._8{width:6.359467pt;}
._6{width:7.385600pt;}
._a{width:8.646400pt;}
._4{width:9.550027pt;}
._3{width:10.931200pt;}
._0{width:12.409600pt;}
._7{width:13.375733pt;}
._9{width:14.413067pt;}
._12{width:17.449867pt;}
._e{width:18.432000pt;}
._10{width:19.776000pt;}
._14{width:21.396533pt;}
._1d{width:22.405067pt;}
._13{width:23.411200pt;}
._15{width:24.339200pt;}
._2{width:25.901067pt;}
._f{width:27.349333pt;}
._16{width:28.507733pt;}
._17{width:29.601333pt;}
._11{width:30.508800pt;}
._19{width:31.664000pt;}
._1b{width:32.668800pt;}
._1e{width:33.613067pt;}
._1c{width:34.675200pt;}
._b{width:36.742400pt;}
._20{width:38.252800pt;}
._1f{width:45.868800pt;}
._18{width:56.895787pt;}
._22{width:414.666400pt;}
.fs0{font-size:47.360000pt;}
.fs1{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.y3{bottom:-3.039973pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:12.800000pt;}
.y2{bottom:13.280027pt;}
.y54{bottom:47.840027pt;}
.y49{bottom:48.160027pt;}
.y28{bottom:48.480027pt;}
.y1{bottom:54.666667pt;}
.y68{bottom:65.760013pt;}
.y79{bottom:68.320013pt;}
.y53{bottom:75.360027pt;}
.y48{bottom:75.680027pt;}
.y27{bottom:76.000027pt;}
.y93{bottom:76.640027pt;}
.y67{bottom:93.280000pt;}
.y78{bottom:95.840000pt;}
.y52{bottom:102.880000pt;}
.y47{bottom:103.200000pt;}
.y26{bottom:103.520000pt;}
.y92{bottom:104.160000pt;}
.y66{bottom:120.800000pt;}
.y77{bottom:123.680000pt;}
.y51{bottom:130.400000pt;}
.y46{bottom:130.720000pt;}
.y25{bottom:131.040000pt;}
.y91{bottom:131.680000pt;}
.y65{bottom:148.320000pt;}
.y76{bottom:151.200000pt;}
.y50{bottom:158.240000pt;}
.y45{bottom:158.560000pt;}
.y24{bottom:158.880000pt;}
.y90{bottom:159.200000pt;}
.y64{bottom:176.160000pt;}
.y23{bottom:177.120000pt;}
.y75{bottom:178.720000pt;}
.y4f{bottom:185.760000pt;}
.y44{bottom:186.080000pt;}
.y8f{bottom:187.040000pt;}
.y63{bottom:203.680000pt;}
.y22{bottom:204.640000pt;}
.y74{bottom:206.240000pt;}
.y4e{bottom:213.280000pt;}
.y43{bottom:213.600000pt;}
.y8e{bottom:214.560000pt;}
.y62{bottom:231.200000pt;}
.y21{bottom:232.480000pt;}
.y73{bottom:234.080000pt;}
.y4d{bottom:240.800000pt;}
.y42{bottom:241.120000pt;}
.y8d{bottom:242.080000pt;}
.y61{bottom:258.720000pt;}
.y20{bottom:260.000000pt;}
.y72{bottom:261.600000pt;}
.y4c{bottom:268.640000pt;}
.y41{bottom:268.960000pt;}
.y8c{bottom:269.600000pt;}
.y60{bottom:286.560000pt;}
.y1f{bottom:287.520000pt;}
.y71{bottom:289.120000pt;}
.y4b{bottom:296.160000pt;}
.y40{bottom:296.480000pt;}
.y94{bottom:296.800000pt;}
.y8b{bottom:297.440000pt;}
.y5f{bottom:314.080000pt;}
.y1e{bottom:315.040000pt;}
.y70{bottom:316.640000pt;}
.y4a{bottom:323.680000pt;}
.y3f{bottom:324.000000pt;}
.y8a{bottom:324.960000pt;}
.y5e{bottom:341.600000pt;}
.y1d{bottom:342.880000pt;}
.y6f{bottom:344.480000pt;}
.y3e{bottom:351.520000pt;}
.y89{bottom:352.480000pt;}
.y5d{bottom:369.120000pt;}
.y1c{bottom:370.400000pt;}
.y6e{bottom:372.000000pt;}
.y3d{bottom:379.040000pt;}
.y88{bottom:380.000000pt;}
.y6d{bottom:396.000000pt;}
.y5c{bottom:396.640000pt;}
.y1b{bottom:397.920000pt;}
.y6c{bottom:406.560000pt;}
.y3c{bottom:406.880000pt;}
.y87{bottom:407.840000pt;}
.y5b{bottom:424.480000pt;}
.y1a{bottom:425.440000pt;}
.y6b{bottom:434.080000pt;}
.y3b{bottom:434.400000pt;}
.y86{bottom:435.360000pt;}
.y5a{bottom:452.000000pt;}
.y19{bottom:453.280000pt;}
.y3a{bottom:461.920000pt;}
.y85{bottom:462.880000pt;}
.y59{bottom:479.520000pt;}
.y18{bottom:480.800000pt;}
.y39{bottom:489.440000pt;}
.y84{bottom:490.400000pt;}
.y58{bottom:507.040000pt;}
.y17{bottom:508.320000pt;}
.y6a{bottom:516.960000pt;}
.y38{bottom:517.280000pt;}
.y83{bottom:518.240000pt;}
.y16{bottom:535.840000pt;}
.y37{bottom:544.800000pt;}
.y82{bottom:545.760000pt;}
.y15{bottom:563.680000pt;}
.y36{bottom:572.320000pt;}
.y81{bottom:573.280000pt;}
.y57{bottom:579.626667pt;}
.y14{bottom:591.200000pt;}
.y35{bottom:599.840000pt;}
.y80{bottom:600.800000pt;}
.y55{bottom:611.306667pt;}
.y13{bottom:618.720000pt;}
.y69{bottom:627.360000pt;}
.y34{bottom:627.680000pt;}
.y7f{bottom:628.640000pt;}
.y12{bottom:646.240000pt;}
.y33{bottom:655.200000pt;}
.y7e{bottom:656.160000pt;}
.y11{bottom:674.080000pt;}
.y32{bottom:682.720000pt;}
.y7d{bottom:683.680000pt;}
.y10{bottom:692.320000pt;}
.y31{bottom:710.240000pt;}
.yf{bottom:710.880000pt;}
.y7c{bottom:711.200000pt;}
.y30{bottom:738.080000pt;}
.ye{bottom:742.560000pt;}
.y7b{bottom:752.480000pt;}
.yd{bottom:760.800000pt;}
.y2f{bottom:765.600000pt;}
.yc{bottom:779.360000pt;}
.y2e{bottom:793.120000pt;}
.y7a{bottom:793.440000pt;}
.yb{bottom:800.480000pt;}
.y2d{bottom:820.640000pt;}
.ya{bottom:821.600000pt;}
.y9{bottom:840.160000pt;}
.y2c{bottom:848.480000pt;}
.y8{bottom:858.400000pt;}
.y2b{bottom:876.000000pt;}
.y7{bottom:890.080000pt;}
.y2a{bottom:903.520000pt;}
.y6{bottom:922.080000pt;}
.y29{bottom:931.040000pt;}
.y5{bottom:940.320000pt;}
.y4{bottom:958.880000pt;}
.h7{height:27.519973pt;}
.h2{height:34.040000pt;}
.h3{height:38.390625pt;}
.h4{height:43.812500pt;}
.h6{height:44.437500pt;}
.h5{height:56.156250pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:2.559997pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:0.960067pt;}
.x1{left:24.000000pt;}
.x3{left:70.400067pt;}
.x8{left:93.440000pt;}
.x6{left:94.400053pt;}
.x7{left:118.400000pt;}
.xc{left:129.471733pt;}
.x5{left:216.717733pt;}
.x4{left:226.506800pt;}
.xa{left:366.059600pt;}
.x2{left:369.396533pt;}
.xb{left:716.400000pt;}
}




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