
    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_1721f2c3d8de6b823cbe2822.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_234b25c328442b8f0ab5e95e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_1b62bc4057152e3ca1d192c7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_448e2a48041b6f8e71b1849f.woff2')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_8f6aefc791b0e7b8e3c9dd66.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_f84dea115deae7656acdf60b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5313a75782a28f88cf2c5729.woff2')format("woff");}.ff8{font-family:ff8;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.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.250560px;}
.ls1{letter-spacing:2.146184px;}
.ls2{letter-spacing:21.394672px;}
.ls5{letter-spacing:33.232051px;}
.ls0{letter-spacing:259.731761px;}
.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;}
}
.ws0{word-spacing:-60.120000px;}
.ws1{word-spacing:-20.880000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-6.835216px;}
._f{margin-left:-5.777637px;}
._a{margin-left:-4.423029px;}
._9{margin-left:-3.315224px;}
._7{margin-left:-2.262315px;}
._3{margin-left:-1.166037px;}
._4{width:1.521732px;}
._6{width:2.581779px;}
._8{width:3.642508px;}
._1a{width:4.820200px;}
._16{width:5.908588px;}
._10{width:7.364584px;}
._11{width:8.655072px;}
._d{width:10.368000px;}
._e{width:11.684584px;}
._17{width:12.854334px;}
._18{width:13.988584px;}
._19{width:15.058296px;}
._1c{width:16.631826px;}
._15{width:19.935855px;}
._14{width:21.126315px;}
._13{width:23.054323px;}
._20{width:24.077234px;}
._1f{width:25.282281px;}
._21{width:27.541018px;}
._1d{width:28.765125px;}
._1e{width:29.852579px;}
._1b{width:31.074969px;}
._b{width:32.328000px;}
._c{width:33.861011px;}
._5{width:84.413787px;}
._2{width:107.870478px;}
._0{width:137.260955px;}
._1{width:161.870478px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:50.400000px;}
.fs2{font-size:66.239400px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.y2{bottom:35.640000px;}
.y1e{bottom:87.480000px;}
.y6d{bottom:87.840000px;}
.y7d{bottom:96.840000px;}
.y94{bottom:102.960000px;}
.y54{bottom:105.479850px;}
.y1d{bottom:111.240000px;}
.y6c{bottom:111.600000px;}
.y8b{bottom:111.960000px;}
.y7c{bottom:120.600000px;}
.y93{bottom:126.720000px;}
.y53{bottom:129.240000px;}
.y6b{bottom:135.720000px;}
.y3c{bottom:140.040000px;}
.y7b{bottom:144.360000px;}
.y1c{bottom:147.960000px;}
.y92{bottom:150.479850px;}
.y52{bottom:153.000000px;}
.y6a{bottom:159.480000px;}
.y3b{bottom:163.440000px;}
.y7a{bottom:168.120000px;}
.y91{bottom:174.240000px;}
.y51{bottom:177.120000px;}
.y69{bottom:183.240000px;}
.y1b{bottom:186.840000px;}
.y3a{bottom:187.200000px;}
.y79{bottom:191.880000px;}
.y90{bottom:198.000000px;}
.y50{bottom:200.879850px;}
.y8a{bottom:207.000000px;}
.y39{bottom:210.959850px;}
.y1a{bottom:211.320000px;}
.y78{bottom:215.640000px;}
.y8f{bottom:222.120000px;}
.y68{bottom:222.480000px;}
.y4f{bottom:224.640000px;}
.y89{bottom:230.760000px;}
.y38{bottom:234.720000px;}
.y67{bottom:245.879850px;}
.y4e{bottom:248.400000px;}
.y19{bottom:250.560000px;}
.y88{bottom:254.520000px;}
.y77{bottom:255.600000px;}
.y37{bottom:258.480000px;}
.y66{bottom:269.640000px;}
.y4d{bottom:272.160000px;}
.y18{bottom:274.320000px;}
.y36{bottom:282.240000px;}
.y65{bottom:293.400000px;}
.y87{bottom:294.480000px;}
.y76{bottom:297.720000px;}
.y17{bottom:298.080000px;}
.y4c{bottom:311.040000px;}
.y64{bottom:317.160000px;}
.y75{bottom:321.120000px;}
.y35{bottom:321.480000px;}
.y16{bottom:321.840000px;}
.y86{bottom:336.600000px;}
.y63{bottom:340.920000px;}
.y34{bottom:344.880000px;}
.y15{bottom:345.600000px;}
.y4b{bottom:350.280000px;}
.y85{bottom:360.000000px;}
.y62{bottom:364.680000px;}
.y33{bottom:368.640000px;}
.y14{bottom:369.360000px;}
.y4a{bottom:373.680000px;}
.y84{bottom:383.760000px;}
.y61{bottom:388.440000px;}
.y32{bottom:392.400000px;}
.y13{bottom:393.480000px;}
.y49{bottom:397.440000px;}
.y83{bottom:407.520000px;}
.y60{bottom:412.200000px;}
.y31{bottom:416.520000px;}
.y48{bottom:421.200000px;}
.y12{bottom:429.120000px;}
.y82{bottom:431.280000px;}
.y5f{bottom:436.320000px;}
.y30{bottom:440.280000px;}
.y47{bottom:444.960000px;}
.y11{bottom:452.880000px;}
.y81{bottom:455.040000px;}
.y5e{bottom:460.080000px;}
.y2f{bottom:464.040000px;}
.y46{bottom:468.720000px;}
.y10{bottom:476.640000px;}
.y80{bottom:478.800000px;}
.y5d{bottom:483.840000px;}
.y2e{bottom:487.800000px;}
.y45{bottom:492.480000px;}
.yf{bottom:500.400000px;}
.y7f{bottom:502.919850px;}
.y5c{bottom:507.600000px;}
.y74{bottom:511.560000px;}
.y44{bottom:516.240000px;}
.ye{bottom:524.160000px;}
.y7e{bottom:526.680000px;}
.y2d{bottom:527.040000px;}
.y5b{bottom:531.360000px;}
.y73{bottom:535.320000px;}
.y43{bottom:540.360000px;}
.yd{bottom:548.280000px;}
.y2c{bottom:550.440000px;}
.y5a{bottom:555.120000px;}
.y72{bottom:559.080000px;}
.y42{bottom:564.120000px;}
.yc{bottom:572.040000px;}
.y2b{bottom:574.200000px;}
.y59{bottom:578.880000px;}
.y41{bottom:587.880000px;}
.yb{bottom:595.800000px;}
.y2a{bottom:597.960000px;}
.y71{bottom:598.320000px;}
.y8e{bottom:602.640000px;}
.y40{bottom:611.640000px;}
.y58{bottom:618.840000px;}
.ya{bottom:619.560000px;}
.y29{bottom:621.720000px;}
.y8d{bottom:642.600000px;}
.y9{bottom:643.320000px;}
.y28{bottom:645.480000px;}
.y3f{bottom:650.520000px;}
.y57{bottom:660.960000px;}
.y8{bottom:667.080000px;}
.y27{bottom:669.240000px;}
.y56{bottom:684.360000px;}
.y8c{bottom:684.720000px;}
.y3e{bottom:690.120000px;}
.y70{bottom:693.000000px;}
.y7{bottom:702.720000px;}
.y55{bottom:708.120000px;}
.y26{bottom:708.480000px;}
.y6f{bottom:717.120000px;}
.y25{bottom:731.880000px;}
.y3d{bottom:732.240000px;}
.y6{bottom:738.360000px;}
.y24{bottom:755.640000px;}
.y6e{bottom:756.000000px;}
.y5{bottom:761.400000px;}
.y96{bottom:765.000000px;}
.y23{bottom:779.760000px;}
.y22{bottom:803.519850px;}
.y95{bottom:803.880000px;}
.y4{bottom:805.680000px;}
.y21{bottom:827.280000px;}
.y3{bottom:837.000000px;}
.y20{bottom:851.040000px;}
.y1f{bottom:874.800000px;}
.y1{bottom:877.680000px;}
.h2{height:34.157813px;}
.h5{height:45.992396px;}
.h6{height:48.796875px;}
.h7{height:49.992188px;}
.h9{height:50.027344px;}
.h4{height:56.604375px;}
.h8{height:57.990937px;}
.h3{height:65.387406px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x9{left:83.160000px;}
.x1{left:90.360000px;}
.x6{left:93.240000px;}
.x3{left:95.400000px;}
.xa{left:108.000000px;}
.x8{left:113.400000px;}
.x4{left:193.320000px;}
.x5{left:287.640000px;}
.x7{left:344.520000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.222720pt;}
.ls1{letter-spacing:1.907719pt;}
.ls2{letter-spacing:19.017486pt;}
.ls5{letter-spacing:29.539601pt;}
.ls0{letter-spacing:230.872676pt;}
.ws0{word-spacing:-53.440000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-6.075748pt;}
._f{margin-left:-5.135677pt;}
._a{margin-left:-3.931581pt;}
._9{margin-left:-2.946866pt;}
._7{margin-left:-2.010947pt;}
._3{margin-left:-1.036478pt;}
._4{width:1.352650pt;}
._6{width:2.294915pt;}
._8{width:3.237785pt;}
._1a{width:4.284622pt;}
._16{width:5.252079pt;}
._10{width:6.546297pt;}
._11{width:7.693397pt;}
._d{width:9.216000pt;}
._e{width:10.386297pt;}
._17{width:11.426075pt;}
._18{width:12.434297pt;}
._19{width:13.385152pt;}
._1c{width:14.783845pt;}
._15{width:17.720760pt;}
._14{width:18.778947pt;}
._13{width:20.492732pt;}
._20{width:21.401986pt;}
._1f{width:22.473138pt;}
._21{width:24.480905pt;}
._1d{width:25.569000pt;}
._1e{width:26.535626pt;}
._1b{width:27.622195pt;}
._b{width:28.736000pt;}
._c{width:30.098676pt;}
._5{width:75.034477pt;}
._2{width:95.884869pt;}
._0{width:122.009738pt;}
._1{width:143.884869pt;}
.fs3{font-size:44.800000pt;}
.fs2{font-size:58.879467pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:31.680000pt;}
.y1e{bottom:77.760000pt;}
.y6d{bottom:78.080000pt;}
.y7d{bottom:86.080000pt;}
.y94{bottom:91.520000pt;}
.y54{bottom:93.759867pt;}
.y1d{bottom:98.880000pt;}
.y6c{bottom:99.200000pt;}
.y8b{bottom:99.520000pt;}
.y7c{bottom:107.200000pt;}
.y93{bottom:112.640000pt;}
.y53{bottom:114.880000pt;}
.y6b{bottom:120.640000pt;}
.y3c{bottom:124.480000pt;}
.y7b{bottom:128.320000pt;}
.y1c{bottom:131.520000pt;}
.y92{bottom:133.759867pt;}
.y52{bottom:136.000000pt;}
.y6a{bottom:141.760000pt;}
.y3b{bottom:145.280000pt;}
.y7a{bottom:149.440000pt;}
.y91{bottom:154.880000pt;}
.y51{bottom:157.440000pt;}
.y69{bottom:162.880000pt;}
.y1b{bottom:166.080000pt;}
.y3a{bottom:166.400000pt;}
.y79{bottom:170.560000pt;}
.y90{bottom:176.000000pt;}
.y50{bottom:178.559867pt;}
.y8a{bottom:184.000000pt;}
.y39{bottom:187.519867pt;}
.y1a{bottom:187.840000pt;}
.y78{bottom:191.680000pt;}
.y8f{bottom:197.440000pt;}
.y68{bottom:197.760000pt;}
.y4f{bottom:199.680000pt;}
.y89{bottom:205.120000pt;}
.y38{bottom:208.640000pt;}
.y67{bottom:218.559867pt;}
.y4e{bottom:220.800000pt;}
.y19{bottom:222.720000pt;}
.y88{bottom:226.240000pt;}
.y77{bottom:227.200000pt;}
.y37{bottom:229.760000pt;}
.y66{bottom:239.680000pt;}
.y4d{bottom:241.920000pt;}
.y18{bottom:243.840000pt;}
.y36{bottom:250.880000pt;}
.y65{bottom:260.800000pt;}
.y87{bottom:261.760000pt;}
.y76{bottom:264.640000pt;}
.y17{bottom:264.960000pt;}
.y4c{bottom:276.480000pt;}
.y64{bottom:281.920000pt;}
.y75{bottom:285.440000pt;}
.y35{bottom:285.760000pt;}
.y16{bottom:286.080000pt;}
.y86{bottom:299.200000pt;}
.y63{bottom:303.040000pt;}
.y34{bottom:306.560000pt;}
.y15{bottom:307.200000pt;}
.y4b{bottom:311.360000pt;}
.y85{bottom:320.000000pt;}
.y62{bottom:324.160000pt;}
.y33{bottom:327.680000pt;}
.y14{bottom:328.320000pt;}
.y4a{bottom:332.160000pt;}
.y84{bottom:341.120000pt;}
.y61{bottom:345.280000pt;}
.y32{bottom:348.800000pt;}
.y13{bottom:349.760000pt;}
.y49{bottom:353.280000pt;}
.y83{bottom:362.240000pt;}
.y60{bottom:366.400000pt;}
.y31{bottom:370.240000pt;}
.y48{bottom:374.400000pt;}
.y12{bottom:381.440000pt;}
.y82{bottom:383.360000pt;}
.y5f{bottom:387.840000pt;}
.y30{bottom:391.360000pt;}
.y47{bottom:395.520000pt;}
.y11{bottom:402.560000pt;}
.y81{bottom:404.480000pt;}
.y5e{bottom:408.960000pt;}
.y2f{bottom:412.480000pt;}
.y46{bottom:416.640000pt;}
.y10{bottom:423.680000pt;}
.y80{bottom:425.600000pt;}
.y5d{bottom:430.080000pt;}
.y2e{bottom:433.600000pt;}
.y45{bottom:437.760000pt;}
.yf{bottom:444.800000pt;}
.y7f{bottom:447.039867pt;}
.y5c{bottom:451.200000pt;}
.y74{bottom:454.720000pt;}
.y44{bottom:458.880000pt;}
.ye{bottom:465.920000pt;}
.y7e{bottom:468.160000pt;}
.y2d{bottom:468.480000pt;}
.y5b{bottom:472.320000pt;}
.y73{bottom:475.840000pt;}
.y43{bottom:480.320000pt;}
.yd{bottom:487.360000pt;}
.y2c{bottom:489.280000pt;}
.y5a{bottom:493.440000pt;}
.y72{bottom:496.960000pt;}
.y42{bottom:501.440000pt;}
.yc{bottom:508.480000pt;}
.y2b{bottom:510.400000pt;}
.y59{bottom:514.560000pt;}
.y41{bottom:522.560000pt;}
.yb{bottom:529.600000pt;}
.y2a{bottom:531.520000pt;}
.y71{bottom:531.840000pt;}
.y8e{bottom:535.680000pt;}
.y40{bottom:543.680000pt;}
.y58{bottom:550.080000pt;}
.ya{bottom:550.720000pt;}
.y29{bottom:552.640000pt;}
.y8d{bottom:571.200000pt;}
.y9{bottom:571.840000pt;}
.y28{bottom:573.760000pt;}
.y3f{bottom:578.240000pt;}
.y57{bottom:587.520000pt;}
.y8{bottom:592.960000pt;}
.y27{bottom:594.880000pt;}
.y56{bottom:608.320000pt;}
.y8c{bottom:608.640000pt;}
.y3e{bottom:613.440000pt;}
.y70{bottom:616.000000pt;}
.y7{bottom:624.640000pt;}
.y55{bottom:629.440000pt;}
.y26{bottom:629.760000pt;}
.y6f{bottom:637.440000pt;}
.y25{bottom:650.560000pt;}
.y3d{bottom:650.880000pt;}
.y6{bottom:656.320000pt;}
.y24{bottom:671.680000pt;}
.y6e{bottom:672.000000pt;}
.y5{bottom:676.800000pt;}
.y96{bottom:680.000000pt;}
.y23{bottom:693.120000pt;}
.y22{bottom:714.239867pt;}
.y95{bottom:714.560000pt;}
.y4{bottom:716.160000pt;}
.y21{bottom:735.360000pt;}
.y3{bottom:744.000000pt;}
.y20{bottom:756.480000pt;}
.y1f{bottom:777.600000pt;}
.y1{bottom:780.160000pt;}
.h2{height:30.362500pt;}
.h5{height:40.882130pt;}
.h6{height:43.375000pt;}
.h7{height:44.437500pt;}
.h9{height:44.468750pt;}
.h4{height:50.315000pt;}
.h8{height:51.547500pt;}
.h3{height:58.122139pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x9{left:73.920000pt;}
.x1{left:80.320000pt;}
.x6{left:82.880000pt;}
.x3{left:84.800000pt;}
.xa{left:96.000000pt;}
.x8{left:100.800000pt;}
.x4{left:171.840000pt;}
.x5{left:255.680000pt;}
.x7{left:306.240000pt;}
}




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