
    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_979e7eb08a38b9def03cd593.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854004;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_247d87c03efede28564f2521.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_fd6a786b9434ae3b3741e9b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_ed34c0b1d1b666a46f76354e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_09c39f5743284410c42ae7ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_397b476a68179bbb1c58d55f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_c9f6f4cf3f07f98a837da20f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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;}
.ls6{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.217440px;}
.ls5{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.666720px;}
.ls0{letter-spacing:62.921280px;}
.ls4{letter-spacing:66.882720px;}
.ls2{letter-spacing:170.921280px;}
.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:-66.240000px;}
.ws3{word-spacing:-16.613280px;}
.ws2{word-spacing:-16.506480px;}
.ws4{word-spacing:-0.059760px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-5.256000px;}
._3{margin-left:-3.231600px;}
._0{margin-left:-1.152000px;}
._2{width:1.075680px;}
._4{width:2.600880px;}
._5{width:3.757920px;}
._6{width:66.882720px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:3.240000px;}
.y6d{bottom:8.460000px;}
.y68{bottom:8.640000px;}
.y6a{bottom:10.260000px;}
.y83{bottom:16.200000px;}
.y80{bottom:16.380000px;}
.y77{bottom:20.520000px;}
.y87{bottom:70.020000px;}
.y85{bottom:71.325000px;}
.y89{bottom:77.250000px;}
.y82{bottom:78.300000px;}
.y8c{bottom:84.060000px;}
.y2f{bottom:115.236000px;}
.y53{bottom:121.896000px;}
.y2e{bottom:133.596000px;}
.y8d{bottom:140.256000px;}
.y52{bottom:140.436000px;}
.y7e{bottom:147.456000px;}
.y2d{bottom:151.950000px;}
.y8b{bottom:158.610000px;}
.y51{bottom:158.790000px;}
.y2c{bottom:170.310000px;}
.y7d{bottom:177.870000px;}
.y2b{bottom:188.670000px;}
.y50{bottom:189.210000px;}
.y7c{bottom:208.290000px;}
.y2a{bottom:219.090000px;}
.y4f{bottom:219.450000px;}
.y7b{bottom:238.710000px;}
.y29{bottom:249.510000px;}
.y4e{bottom:252.030000px;}
.y7a{bottom:253.830000px;}
.y28{bottom:269.310000px;}
.y79{bottom:272.190000px;}
.y4d{bottom:284.655000px;}
.y27{bottom:292.935000px;}
.y76{bottom:295.815000px;}
.y26{bottom:316.515000px;}
.y4c{bottom:317.055000px;}
.y8a{bottom:330.735000px;}
.y75{bottom:331.455000px;}
.y25{bottom:340.095000px;}
.y4b{bottom:349.635000px;}
.y74{bottom:355.035000px;}
.y24{bottom:359.895000px;}
.y73{bottom:378.795000px;}
.y23{bottom:379.695000px;}
.y4a{bottom:382.035000px;}
.y72{bottom:402.375000px;}
.y22{bottom:403.275000px;}
.y49{bottom:414.615000px;}
.y71{bottom:425.955000px;}
.y21{bottom:426.855000px;}
.y48{bottom:447.195000px;}
.y70{bottom:449.535000px;}
.y20{bottom:450.435000px;}
.y47{bottom:465.555000px;}
.y1f{bottom:470.415000px;}
.y6f{bottom:473.295000px;}
.y88{bottom:489.315000px;}
.y1e{bottom:490.215000px;}
.y6e{bottom:496.875000px;}
.y46{bottom:498.135000px;}
.y1d{bottom:513.795000px;}
.y45{bottom:516.495000px;}
.y6c{bottom:520.455000px;}
.y1c{bottom:537.375000px;}
.y6b{bottom:544.035000px;}
.y44{bottom:549.075000px;}
.y1b{bottom:560.955000px;}
.y43{bottom:567.465000px;}
.y69{bottom:567.825000px;}
.y1a{bottom:580.785000px;}
.y67{bottom:593.205000px;}
.y42{bottom:599.865000px;}
.y19{bottom:600.585000px;}
.y18{bottom:622.545000px;}
.y66{bottom:630.285000px;}
.y41{bottom:632.445000px;}
.y17{bottom:644.505000px;}
.y86{bottom:645.585000px;}
.y65{bottom:660.705000px;}
.y40{bottom:665.025000px;}
.y16{bottom:666.465000px;}
.y64{bottom:679.065000px;}
.y15{bottom:686.265000px;}
.y3f{bottom:695.265000px;}
.y63{bottom:697.425000px;}
.y14{bottom:706.065000px;}
.y62{bottom:715.785000px;}
.y3e{bottom:727.845000px;}
.y13{bottom:729.645000px;}
.y61{bottom:734.325000px;}
.y12{bottom:753.225000px;}
.y3d{bottom:760.425000px;}
.y60{bottom:764.565000px;}
.y11{bottom:787.425000px;}
.y84{bottom:787.605000px;}
.y3c{bottom:792.825000px;}
.y5f{bottom:794.985000px;}
.y10{bottom:817.665000px;}
.y3b{bottom:825.405000px;}
.y5e{bottom:827.565000px;}
.yf{bottom:836.205000px;}
.ye{bottom:854.610000px;}
.y3a{bottom:858.030000px;}
.y5d{bottom:860.010000px;}
.yd{bottom:885.030000px;}
.y39{bottom:890.430000px;}
.y5c{bottom:892.590000px;}
.yc{bottom:903.390000px;}
.y38{bottom:923.010000px;}
.y5b{bottom:925.170000px;}
.y81{bottom:932.010000px;}
.yb{bottom:933.810000px;}
.y37{bottom:941.370000px;}
.ya{bottom:952.170000px;}
.y5a{bottom:957.570000px;}
.y9{bottom:970.530000px;}
.y36{bottom:973.950000px;}
.y8{bottom:989.070000px;}
.y59{bottom:990.150000px;}
.y35{bottom:992.310000px;}
.y7{bottom:1007.430000px;}
.y58{bottom:1008.510000px;}
.y34{bottom:1024.890000px;}
.y6{bottom:1025.790000px;}
.y57{bottom:1041.090000px;}
.y33{bottom:1043.250000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1062.510000px;}
.y8f{bottom:1067.190000px;}
.y56{bottom:1073.670000px;}
.y32{bottom:1075.650000px;}
.y8e{bottom:1085.550000px;}
.y7f{bottom:1092.750000px;}
.y3{bottom:1093.830000px;}
.y55{bottom:1104.090000px;}
.y31{bottom:1108.230000px;}
.y2{bottom:1115.790000px;}
.y54{bottom:1122.450000px;}
.y1{bottom:1137.960000px;}
.y30{bottom:1140.840000px;}
.h9{height:17.280000px;}
.h5{height:22.500000px;}
.h7{height:22.536000px;}
.h6{height:24.300000px;}
.ha{height:30.420000px;}
.h8{height:34.560000px;}
.h3{height:62.327813px;}
.h4{height:69.086250px;}
.h2{height:75.093750px;}
.hd{height:137.880000px;}
.hc{height:140.076000px;}
.he{height:152.130000px;}
.hb{height:154.260000px;}
.hf{height:165.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:178.920000px;}
.w6{width:185.250000px;}
.wa{width:185.790000px;}
.w8{width:186.510000px;}
.w7{width:487.335000px;}
.wb{width:487.875000px;}
.w9{width:488.415000px;}
.w4{width:494.745000px;}
.w5{width:674.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:1.080000px;}
.x1{left:108.035987px;}
.x4{left:109.656000px;}
.x2{left:135.035987px;}
.x3{left:162.029987px;}
.x5{left:289.650000px;}
.x6{left:297.795000px;}
.x8{left:373.530000px;}
.x9{left:377.310000px;}
.xa{left:381.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.193280pt;}
.ls5{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.592640pt;}
.ls0{letter-spacing:55.930027pt;}
.ls4{letter-spacing:59.451307pt;}
.ls2{letter-spacing:151.930027pt;}
.ws0{word-spacing:-58.880000pt;}
.ws3{word-spacing:-14.767360pt;}
.ws2{word-spacing:-14.672427pt;}
.ws4{word-spacing:-0.053120pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-4.672000pt;}
._3{margin-left:-2.872533pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.956160pt;}
._4{width:2.311893pt;}
._5{width:3.340373pt;}
._6{width:59.451307pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.880000pt;}
.y6d{bottom:7.520000pt;}
.y68{bottom:7.680000pt;}
.y6a{bottom:9.120000pt;}
.y83{bottom:14.400000pt;}
.y80{bottom:14.560000pt;}
.y77{bottom:18.240000pt;}
.y87{bottom:62.240000pt;}
.y85{bottom:63.400000pt;}
.y89{bottom:68.666667pt;}
.y82{bottom:69.600000pt;}
.y8c{bottom:74.720000pt;}
.y2f{bottom:102.432000pt;}
.y53{bottom:108.352000pt;}
.y2e{bottom:118.752000pt;}
.y8d{bottom:124.672000pt;}
.y52{bottom:124.832000pt;}
.y7e{bottom:131.072000pt;}
.y2d{bottom:135.066667pt;}
.y8b{bottom:140.986667pt;}
.y51{bottom:141.146667pt;}
.y2c{bottom:151.386667pt;}
.y7d{bottom:158.106667pt;}
.y2b{bottom:167.706667pt;}
.y50{bottom:168.186667pt;}
.y7c{bottom:185.146667pt;}
.y2a{bottom:194.746667pt;}
.y4f{bottom:195.066667pt;}
.y7b{bottom:212.186667pt;}
.y29{bottom:221.786667pt;}
.y4e{bottom:224.026667pt;}
.y7a{bottom:225.626667pt;}
.y28{bottom:239.386667pt;}
.y79{bottom:241.946667pt;}
.y4d{bottom:253.026667pt;}
.y27{bottom:260.386667pt;}
.y76{bottom:262.946667pt;}
.y26{bottom:281.346667pt;}
.y4c{bottom:281.826667pt;}
.y8a{bottom:293.986667pt;}
.y75{bottom:294.626667pt;}
.y25{bottom:302.306667pt;}
.y4b{bottom:310.786667pt;}
.y74{bottom:315.586667pt;}
.y24{bottom:319.906667pt;}
.y73{bottom:336.706667pt;}
.y23{bottom:337.506667pt;}
.y4a{bottom:339.586667pt;}
.y72{bottom:357.666667pt;}
.y22{bottom:358.466667pt;}
.y49{bottom:368.546667pt;}
.y71{bottom:378.626667pt;}
.y21{bottom:379.426667pt;}
.y48{bottom:397.506667pt;}
.y70{bottom:399.586667pt;}
.y20{bottom:400.386667pt;}
.y47{bottom:413.826667pt;}
.y1f{bottom:418.146667pt;}
.y6f{bottom:420.706667pt;}
.y88{bottom:434.946667pt;}
.y1e{bottom:435.746667pt;}
.y6e{bottom:441.666667pt;}
.y46{bottom:442.786667pt;}
.y1d{bottom:456.706667pt;}
.y45{bottom:459.106667pt;}
.y6c{bottom:462.626667pt;}
.y1c{bottom:477.666667pt;}
.y6b{bottom:483.586667pt;}
.y44{bottom:488.066667pt;}
.y1b{bottom:498.626667pt;}
.y43{bottom:504.413333pt;}
.y69{bottom:504.733333pt;}
.y1a{bottom:516.253333pt;}
.y67{bottom:527.293333pt;}
.y42{bottom:533.213333pt;}
.y19{bottom:533.853333pt;}
.y18{bottom:553.373333pt;}
.y66{bottom:560.253333pt;}
.y41{bottom:562.173333pt;}
.y17{bottom:572.893333pt;}
.y86{bottom:573.853333pt;}
.y65{bottom:587.293333pt;}
.y40{bottom:591.133333pt;}
.y16{bottom:592.413333pt;}
.y64{bottom:603.613333pt;}
.y15{bottom:610.013333pt;}
.y3f{bottom:618.013333pt;}
.y63{bottom:619.933333pt;}
.y14{bottom:627.613333pt;}
.y62{bottom:636.253333pt;}
.y3e{bottom:646.973333pt;}
.y13{bottom:648.573333pt;}
.y61{bottom:652.733333pt;}
.y12{bottom:669.533333pt;}
.y3d{bottom:675.933333pt;}
.y60{bottom:679.613333pt;}
.y11{bottom:699.933333pt;}
.y84{bottom:700.093333pt;}
.y3c{bottom:704.733333pt;}
.y5f{bottom:706.653333pt;}
.y10{bottom:726.813333pt;}
.y3b{bottom:733.693333pt;}
.y5e{bottom:735.613333pt;}
.yf{bottom:743.293333pt;}
.ye{bottom:759.653333pt;}
.y3a{bottom:762.693333pt;}
.y5d{bottom:764.453333pt;}
.yd{bottom:786.693333pt;}
.y39{bottom:791.493333pt;}
.y5c{bottom:793.413333pt;}
.yc{bottom:803.013333pt;}
.y38{bottom:820.453333pt;}
.y5b{bottom:822.373333pt;}
.y81{bottom:828.453333pt;}
.yb{bottom:830.053333pt;}
.y37{bottom:836.773333pt;}
.ya{bottom:846.373333pt;}
.y5a{bottom:851.173333pt;}
.y9{bottom:862.693333pt;}
.y36{bottom:865.733333pt;}
.y8{bottom:879.173333pt;}
.y59{bottom:880.133333pt;}
.y35{bottom:882.053333pt;}
.y7{bottom:895.493333pt;}
.y58{bottom:896.453333pt;}
.y34{bottom:911.013333pt;}
.y6{bottom:911.813333pt;}
.y57{bottom:925.413333pt;}
.y33{bottom:927.333333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:944.453333pt;}
.y8f{bottom:948.613333pt;}
.y56{bottom:954.373333pt;}
.y32{bottom:956.133333pt;}
.y8e{bottom:964.933333pt;}
.y7f{bottom:971.333333pt;}
.y3{bottom:972.293333pt;}
.y55{bottom:981.413333pt;}
.y31{bottom:985.093333pt;}
.y2{bottom:991.813333pt;}
.y54{bottom:997.733333pt;}
.y1{bottom:1011.520000pt;}
.y30{bottom:1014.080000pt;}
.h9{height:15.360000pt;}
.h5{height:20.000000pt;}
.h7{height:20.032000pt;}
.h6{height:21.600000pt;}
.ha{height:27.040000pt;}
.h8{height:30.720000pt;}
.h3{height:55.402500pt;}
.h4{height:61.410000pt;}
.h2{height:66.750000pt;}
.hd{height:122.560000pt;}
.hc{height:124.512000pt;}
.he{height:135.226667pt;}
.hb{height:137.120000pt;}
.hf{height:147.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:159.040000pt;}
.w6{width:164.666667pt;}
.wa{width:165.146667pt;}
.w8{width:165.786667pt;}
.w7{width:433.186667pt;}
.wb{width:433.666667pt;}
.w9{width:434.146667pt;}
.w4{width:439.773333pt;}
.w5{width:599.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:0.960000pt;}
.x1{left:96.031988pt;}
.x4{left:97.472000pt;}
.x2{left:120.031988pt;}
.x3{left:144.026655pt;}
.x5{left:257.466667pt;}
.x6{left:264.706667pt;}
.x8{left:332.026667pt;}
.x9{left:335.386667pt;}
.xa{left:339.386667pt;}
}




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