
    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_c5ccdcb724efa0201c87599d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_77cf8efea7e4ef5bc618ecca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_c76f596afb24e430461b2421.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.853027;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.116000px;}
.lse{letter-spacing:-0.744000px;}
.lsa{letter-spacing:-0.300000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.096000px;}
.ls6{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.246000px;}
.ls0{letter-spacing:0.276000px;}
.lsb{letter-spacing:0.384000px;}
.ls8{letter-spacing:0.744000px;}
.ls1{letter-spacing:1.596000px;}
.lsc{letter-spacing:1.776000px;}
.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:-14.616000px;}
.ws2{word-spacing:-14.316000px;}
.ws3{word-spacing:-13.872000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-6.930000px;}
._4{margin-left:-5.112000px;}
._7{margin-left:-3.834000px;}
._1{margin-left:-2.736000px;}
._0{margin-left:-1.224000px;}
._2{width:1.368000px;}
._3{width:2.442000px;}
._5{width:3.642000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:113.287500px;}
.y3d{bottom:125.662500px;}
.y55{bottom:139.912500px;}
.y71{bottom:152.295000px;}
.y1e{bottom:153.420000px;}
.y3c{bottom:163.170000px;}
.y82{bottom:164.280000px;}
.y54{bottom:165.420000px;}
.y70{bottom:189.825000px;}
.y1d{bottom:190.575000px;}
.y3b{bottom:200.325000px;}
.y81{bottom:201.825000px;}
.y6f{bottom:215.325000px;}
.y1c{bottom:216.075000px;}
.y3a{bottom:225.825000px;}
.y80{bottom:227.325000px;}
.y99{bottom:234.450000px;}
.y6e{bottom:241.200000px;}
.y39{bottom:251.325000px;}
.y7f{bottom:252.825000px;}
.y1b{bottom:253.575000px;}
.y98{bottom:270.450000px;}
.y38{bottom:276.825000px;}
.y6d{bottom:278.325000px;}
.y53{bottom:279.450000px;}
.y7e{bottom:289.950000px;}
.y1a{bottom:291.075000px;}
.y37{bottom:302.325000px;}
.y97{bottom:307.995000px;}
.y6c{bottom:315.870000px;}
.y19{bottom:316.605000px;}
.y36{bottom:327.495000px;}
.y96{bottom:333.495000px;}
.y6b{bottom:341.370000px;}
.y18{bottom:342.120000px;}
.y35{bottom:353.370000px;}
.y7d{bottom:364.995000px;}
.y6a{bottom:366.870000px;}
.y17{bottom:367.245000px;}
.y52{bottom:367.620000px;}
.y95{bottom:370.995000px;}
.y34{bottom:390.870000px;}
.y69{bottom:391.995000px;}
.y16{bottom:393.120000px;}
.y7c{bottom:405.120000px;}
.y51{bottom:405.495000px;}
.y94{bottom:408.495000px;}
.y68{bottom:417.870000px;}
.y33{bottom:428.400000px;}
.y15{bottom:430.650000px;}
.y93{bottom:434.025000px;}
.y50{bottom:442.650000px;}
.y67{bottom:443.775000px;}
.y92{bottom:459.150000px;}
.y32{bottom:465.900000px;}
.y14{bottom:468.150000px;}
.y4f{bottom:480.150000px;}
.y66{bottom:481.275000px;}
.y31{bottom:491.400000px;}
.y13{bottom:493.650000px;}
.y91{bottom:496.650000px;}
.y4e{bottom:505.650000px;}
.y30{bottom:516.900000px;}
.y65{bottom:518.400000px;}
.y12{bottom:519.150000px;}
.y4d{bottom:531.150000px;}
.y90{bottom:534.150000px;}
.y2f{bottom:542.070000px;}
.y11{bottom:544.320000px;}
.y64{bottom:555.945000px;}
.y4c{bottom:557.070000px;}
.y8f{bottom:559.695000px;}
.y2e{bottom:567.570000px;}
.y7b{bottom:568.320000px;}
.y10{bottom:569.820000px;}
.y4b{bottom:582.195000px;}
.y8e{bottom:585.195000px;}
.y2d{bottom:593.445000px;}
.y7a{bottom:593.820000px;}
.y63{bottom:596.070000px;}
.yf{bottom:607.695000px;}
.y8d{bottom:610.695000px;}
.y2c{bottom:618.945000px;}
.y79{bottom:619.320000px;}
.y4a{bottom:619.695000px;}
.y62{bottom:633.570000px;}
.y78{bottom:644.820000px;}
.ye{bottom:645.195000px;}
.y8c{bottom:648.195000px;}
.y2b{bottom:656.445000px;}
.y49{bottom:657.195000px;}
.y61{bottom:659.100000px;}
.yd{bottom:670.350000px;}
.y60{bottom:684.225000px;}
.y8b{bottom:685.725000px;}
.y2a{bottom:694.350000px;}
.y48{bottom:694.725000px;}
.y77{bottom:695.850000px;}
.yc{bottom:696.225000px;}
.y5f{bottom:710.100000px;}
.y8a{bottom:710.850000px;}
.yb{bottom:721.725000px;}
.y29{bottom:731.850000px;}
.y76{bottom:733.350000px;}
.y47{bottom:734.850000px;}
.y5e{bottom:735.975000px;}
.y89{bottom:736.350000px;}
.ya{bottom:746.850000px;}
.y28{bottom:769.350000px;}
.y75{bottom:770.850000px;}
.y46{bottom:772.350000px;}
.y9{bottom:772.725000px;}
.y5d{bottom:773.475000px;}
.y88{bottom:773.850000px;}
.y45{bottom:797.880000px;}
.y74{bottom:808.005000px;}
.y27{bottom:809.505000px;}
.y8{bottom:810.255000px;}
.y5c{bottom:810.630000px;}
.y87{bottom:811.380000px;}
.y44{bottom:823.005000px;}
.y86{bottom:836.880000px;}
.y26{bottom:846.630000px;}
.y7{bottom:847.755000px;}
.y5b{bottom:848.130000px;}
.y43{bottom:848.880000px;}
.y25{bottom:872.130000px;}
.y5a{bottom:874.005000px;}
.y85{bottom:874.380000px;}
.y73{bottom:885.630000px;}
.y42{bottom:886.380000px;}
.y6{bottom:887.880000px;}
.y24{bottom:897.675000px;}
.y59{bottom:899.175000px;}
.y72{bottom:911.175000px;}
.y84{bottom:911.925000px;}
.y23{bottom:923.550000px;}
.y41{bottom:923.925000px;}
.y5{bottom:925.425000px;}
.y58{bottom:937.050000px;}
.y83{bottom:937.425000px;}
.y22{bottom:948.675000px;}
.y40{bottom:961.425000px;}
.y4{bottom:962.550000px;}
.y21{bottom:974.175000px;}
.y57{bottom:974.550000px;}
.y3f{bottom:986.550000px;}
.y3{bottom:1000.050000px;}
.y56{bottom:1011.675000px;}
.y3e{bottom:1012.050000px;}
.y20{bottom:1025.205000px;}
.y2{bottom:1037.580000px;}
.y1{bottom:1063.080000px;}
.h2{height:49.992188px;}
.h1{height:62.402344px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.037486px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.992000pt;}
.lse{letter-spacing:-0.661333pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.085333pt;}
.ls6{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.218667pt;}
.ls0{letter-spacing:0.245333pt;}
.lsb{letter-spacing:0.341333pt;}
.ls8{letter-spacing:0.661333pt;}
.ls1{letter-spacing:1.418667pt;}
.lsc{letter-spacing:1.578667pt;}
.ws0{word-spacing:-12.992000pt;}
.ws2{word-spacing:-12.725333pt;}
.ws3{word-spacing:-12.330667pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-6.160000pt;}
._4{margin-left:-4.544000pt;}
._7{margin-left:-3.408000pt;}
._1{margin-left:-2.432000pt;}
._0{margin-left:-1.088000pt;}
._2{width:1.216000pt;}
._3{width:2.170667pt;}
._5{width:3.237333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:100.700000pt;}
.y3d{bottom:111.700000pt;}
.y55{bottom:124.366667pt;}
.y71{bottom:135.373333pt;}
.y1e{bottom:136.373333pt;}
.y3c{bottom:145.040000pt;}
.y82{bottom:146.026667pt;}
.y54{bottom:147.040000pt;}
.y70{bottom:168.733333pt;}
.y1d{bottom:169.400000pt;}
.y3b{bottom:178.066667pt;}
.y81{bottom:179.400000pt;}
.y6f{bottom:191.400000pt;}
.y1c{bottom:192.066667pt;}
.y3a{bottom:200.733333pt;}
.y80{bottom:202.066667pt;}
.y99{bottom:208.400000pt;}
.y6e{bottom:214.400000pt;}
.y39{bottom:223.400000pt;}
.y7f{bottom:224.733333pt;}
.y1b{bottom:225.400000pt;}
.y98{bottom:240.400000pt;}
.y38{bottom:246.066667pt;}
.y6d{bottom:247.400000pt;}
.y53{bottom:248.400000pt;}
.y7e{bottom:257.733333pt;}
.y1a{bottom:258.733333pt;}
.y37{bottom:268.733333pt;}
.y97{bottom:273.773333pt;}
.y6c{bottom:280.773333pt;}
.y19{bottom:281.426667pt;}
.y36{bottom:291.106667pt;}
.y96{bottom:296.440000pt;}
.y6b{bottom:303.440000pt;}
.y18{bottom:304.106667pt;}
.y35{bottom:314.106667pt;}
.y7d{bottom:324.440000pt;}
.y6a{bottom:326.106667pt;}
.y17{bottom:326.440000pt;}
.y52{bottom:326.773333pt;}
.y95{bottom:329.773333pt;}
.y34{bottom:347.440000pt;}
.y69{bottom:348.440000pt;}
.y16{bottom:349.440000pt;}
.y7c{bottom:360.106667pt;}
.y51{bottom:360.440000pt;}
.y94{bottom:363.106667pt;}
.y68{bottom:371.440000pt;}
.y33{bottom:380.800000pt;}
.y15{bottom:382.800000pt;}
.y93{bottom:385.800000pt;}
.y50{bottom:393.466667pt;}
.y67{bottom:394.466667pt;}
.y92{bottom:408.133333pt;}
.y32{bottom:414.133333pt;}
.y14{bottom:416.133333pt;}
.y4f{bottom:426.800000pt;}
.y66{bottom:427.800000pt;}
.y31{bottom:436.800000pt;}
.y13{bottom:438.800000pt;}
.y91{bottom:441.466667pt;}
.y4e{bottom:449.466667pt;}
.y30{bottom:459.466667pt;}
.y65{bottom:460.800000pt;}
.y12{bottom:461.466667pt;}
.y4d{bottom:472.133333pt;}
.y90{bottom:474.800000pt;}
.y2f{bottom:481.840000pt;}
.y11{bottom:483.840000pt;}
.y64{bottom:494.173333pt;}
.y4c{bottom:495.173333pt;}
.y8f{bottom:497.506667pt;}
.y2e{bottom:504.506667pt;}
.y7b{bottom:505.173333pt;}
.y10{bottom:506.506667pt;}
.y4b{bottom:517.506667pt;}
.y8e{bottom:520.173333pt;}
.y2d{bottom:527.506667pt;}
.y7a{bottom:527.840000pt;}
.y63{bottom:529.840000pt;}
.yf{bottom:540.173333pt;}
.y8d{bottom:542.840000pt;}
.y2c{bottom:550.173333pt;}
.y79{bottom:550.506667pt;}
.y4a{bottom:550.840000pt;}
.y62{bottom:563.173333pt;}
.y78{bottom:573.173333pt;}
.ye{bottom:573.506667pt;}
.y8c{bottom:576.173333pt;}
.y2b{bottom:583.506667pt;}
.y49{bottom:584.173333pt;}
.y61{bottom:585.866667pt;}
.yd{bottom:595.866667pt;}
.y60{bottom:608.200000pt;}
.y8b{bottom:609.533333pt;}
.y2a{bottom:617.200000pt;}
.y48{bottom:617.533333pt;}
.y77{bottom:618.533333pt;}
.yc{bottom:618.866667pt;}
.y5f{bottom:631.200000pt;}
.y8a{bottom:631.866667pt;}
.yb{bottom:641.533333pt;}
.y29{bottom:650.533333pt;}
.y76{bottom:651.866667pt;}
.y47{bottom:653.200000pt;}
.y5e{bottom:654.200000pt;}
.y89{bottom:654.533333pt;}
.ya{bottom:663.866667pt;}
.y28{bottom:683.866667pt;}
.y75{bottom:685.200000pt;}
.y46{bottom:686.533333pt;}
.y9{bottom:686.866667pt;}
.y5d{bottom:687.533333pt;}
.y88{bottom:687.866667pt;}
.y45{bottom:709.226667pt;}
.y74{bottom:718.226667pt;}
.y27{bottom:719.560000pt;}
.y8{bottom:720.226667pt;}
.y5c{bottom:720.560000pt;}
.y87{bottom:721.226667pt;}
.y44{bottom:731.560000pt;}
.y86{bottom:743.893333pt;}
.y26{bottom:752.560000pt;}
.y7{bottom:753.560000pt;}
.y5b{bottom:753.893333pt;}
.y43{bottom:754.560000pt;}
.y25{bottom:775.226667pt;}
.y5a{bottom:776.893333pt;}
.y85{bottom:777.226667pt;}
.y73{bottom:787.226667pt;}
.y42{bottom:787.893333pt;}
.y6{bottom:789.226667pt;}
.y24{bottom:797.933333pt;}
.y59{bottom:799.266667pt;}
.y72{bottom:809.933333pt;}
.y84{bottom:810.600000pt;}
.y23{bottom:820.933333pt;}
.y41{bottom:821.266667pt;}
.y5{bottom:822.600000pt;}
.y58{bottom:832.933333pt;}
.y83{bottom:833.266667pt;}
.y22{bottom:843.266667pt;}
.y40{bottom:854.600000pt;}
.y4{bottom:855.600000pt;}
.y21{bottom:865.933333pt;}
.y57{bottom:866.266667pt;}
.y3f{bottom:876.933333pt;}
.y3{bottom:888.933333pt;}
.y56{bottom:899.266667pt;}
.y3e{bottom:899.600000pt;}
.y20{bottom:911.293333pt;}
.y2{bottom:922.293333pt;}
.y1{bottom:944.960000pt;}
.h2{height:44.437500pt;}
.h1{height:55.468750pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.033321pt;}
}




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