
    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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_5687ceef72ae7b79bc63f863.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_9ceeb00df43499e63c4ec84c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_5e42df0f3572ed2ce4dc4630.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_33cecbe755970f07370914ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_1a8c797759f8bb4ce0fe2fd8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730957;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_306297dd5667e5f96ac2340d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_9ceeb00df43499e63c4ec84c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706543;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:ff9;src:url('chunks/assets/font_cfe7560ee0a890acecda9321.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.426600px;}
.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;}
}
.ws2{word-spacing:-19.855872px;}
.ws3{word-spacing:-17.453952px;}
.ws1{word-spacing:-16.853472px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-4.925376px;}
._2{margin-left:-2.897280px;}
._0{margin-left:-1.448640px;}
._1{width:1.158912px;}
._4{width:2.752416px;}
._6{width:3.879360px;}
._5{width:5.928192px;}
.fc3{color:transparent;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.720000px;}
.fs4{font-size:47.520000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.624000px;}
.fs7{font-size:62.784000px;}
.fs6{font-size:71.424000px;}
.fs2{font-size:84.384000px;}
.fs1{font-size:144.864000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:64.584000px;}
.y4d{bottom:98.640000px;}
.y6d{bottom:106.200000px;}
.y4c{bottom:133.236000px;}
.y27{bottom:153.255000px;}
.y6c{bottom:154.875000px;}
.y4b{bottom:166.215000px;}
.y26{bottom:171.075000px;}
.y6b{bottom:179.715000px;}
.y25{bottom:188.385000px;}
.y5a{bottom:189.465000px;}
.y4a{bottom:204.045000px;}
.y6a{bottom:204.585000px;}
.y24{bottom:205.665000px;}
.y23{bottom:223.485000px;}
.y69{bottom:229.470000px;}
.y59{bottom:235.410000px;}
.y22{bottom:240.270000px;}
.y49{bottom:245.130000px;}
.y68{bottom:254.850000px;}
.y21{bottom:257.550000px;}
.y48{bottom:270.000000px;}
.y67{bottom:279.720000px;}
.y58{bottom:281.340000px;}
.y47{bottom:292.680000px;}
.y20{bottom:296.460000px;}
.y66{bottom:304.560000px;}
.y57{bottom:312.150000px;}
.y1f{bottom:314.310000px;}
.y46{bottom:315.930000px;}
.y4{bottom:324.030000px;}
.y65{bottom:329.430000px;}
.y1e{bottom:331.590000px;}
.y45{bottom:339.150000px;}
.y56{bottom:342.930000px;}
.y39{bottom:344.010000px;}
.y1d{bottom:348.870000px;}
.y64{bottom:354.315000px;}
.y1c{bottom:366.195000px;}
.y3{bottom:367.275000px;}
.y38{bottom:369.975000px;}
.y55{bottom:373.755000px;}
.y44{bottom:378.075000px;}
.y63{bottom:379.155000px;}
.y1b{bottom:383.475000px;}
.y37{bottom:395.925000px;}
.y1a{bottom:400.785000px;}
.y43{bottom:401.325000px;}
.y62{bottom:404.025000px;}
.y54{bottom:404.565000px;}
.y2{bottom:408.885000px;}
.y19{bottom:418.065000px;}
.y36{bottom:421.845000px;}
.y42{bottom:424.545000px;}
.y18{bottom:435.390000px;}
.y61{bottom:440.790000px;}
.y35{bottom:447.810000px;}
.y17{bottom:452.670000px;}
.y41{bottom:462.930000px;}
.y60{bottom:465.630000px;}
.y16{bottom:469.950000px;}
.y34{bottom:473.760000px;}
.y40{bottom:486.180000px;}
.y15{bottom:487.260000px;}
.y5f{bottom:490.500000px;}
.y33{bottom:499.140000px;}
.y14{bottom:504.540000px;}
.y3f{bottom:509.940000px;}
.y5e{bottom:515.370000px;}
.y32{bottom:525.090000px;}
.y3e{bottom:533.190000px;}
.y5d{bottom:540.210000px;}
.y13{bottom:543.450000px;}
.y31{bottom:551.055000px;}
.y12{bottom:561.315000px;}
.y5c{bottom:565.095000px;}
.y3d{bottom:571.575000px;}
.y30{bottom:576.975000px;}
.y11{bottom:578.595000px;}
.y3c{bottom:594.825000px;}
.y10{bottom:595.905000px;}
.y2f{bottom:602.925000px;}
.y5b{bottom:607.785000px;}
.yf{bottom:613.185000px;}
.y2e{bottom:628.845000px;}
.ye{bottom:630.465000px;}
.y3b{bottom:632.670000px;}
.yd{bottom:647.790000px;}
.y2d{bottom:654.810000px;}
.yc{bottom:665.070000px;}
.y3a{bottom:672.120000px;}
.y2c{bottom:680.760000px;}
.yb{bottom:682.380000px;}
.y53{bottom:696.960000px;}
.ya{bottom:699.660000px;}
.y2b{bottom:706.680000px;}
.y9{bottom:716.970000px;}
.y52{bottom:727.770000px;}
.y8{bottom:734.250000px;}
.y2a{bottom:737.490000px;}
.y7{bottom:751.530000px;}
.y51{bottom:758.595000px;}
.y6{bottom:768.855000px;}
.y29{bottom:773.715000px;}
.y50{bottom:789.375000px;}
.y5{bottom:807.765000px;}
.y28{bottom:809.925000px;}
.y4f{bottom:820.185000px;}
.y1{bottom:832.605000px;}
.ha{height:26.751094px;}
.h9{height:34.619062px;}
.h8{height:39.313477px;}
.h7{height:39.339844px;}
.h2{height:41.353383px;}
.hd{height:43.869094px;}
.h4{height:44.135930px;}
.h5{height:44.165531px;}
.he{height:45.739125px;}
.hf{height:45.861750px;}
.hc{height:51.998625px;}
.hb{height:52.033500px;}
.h6{height:61.433859px;}
.h3{height:105.464953px;}
.h0{height:893.160000px;}
.h1{height:893.250000px;}
.w2{width:1215.750000px;}
.w1{width:1263.000000px;}
.w0{width:1263.060000px;}
.x0{left:0.000000px;}
.x1{left:23.760000px;}
.x6{left:102.132000px;}
.x4{left:105.372000px;}
.x9{left:482.010000px;}
.x5{left:484.710000px;}
.xa{left:486.870000px;}
.x7{left:852.660000px;}
.x2{left:855.360000px;}
.x3{left:888.870000px;}
.x8{left:1126.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.379200pt;}
.ws2{word-spacing:-17.649664pt;}
.ws3{word-spacing:-15.514624pt;}
.ws1{word-spacing:-14.980864pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-4.378112pt;}
._2{margin-left:-2.575360pt;}
._0{margin-left:-1.287680pt;}
._1{width:1.030144pt;}
._4{width:2.446592pt;}
._6{width:3.448320pt;}
._5{width:5.269504pt;}
.fs5{font-size:32.640000pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.888000pt;}
.fs7{font-size:55.808000pt;}
.fs6{font-size:63.488000pt;}
.fs2{font-size:75.008000pt;}
.fs1{font-size:128.768000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:57.408000pt;}
.y4d{bottom:87.680000pt;}
.y6d{bottom:94.400000pt;}
.y4c{bottom:118.432000pt;}
.y27{bottom:136.226667pt;}
.y6c{bottom:137.666667pt;}
.y4b{bottom:147.746667pt;}
.y26{bottom:152.066667pt;}
.y6b{bottom:159.746667pt;}
.y25{bottom:167.453333pt;}
.y5a{bottom:168.413333pt;}
.y4a{bottom:181.373333pt;}
.y6a{bottom:181.853333pt;}
.y24{bottom:182.813333pt;}
.y23{bottom:198.653333pt;}
.y69{bottom:203.973333pt;}
.y59{bottom:209.253333pt;}
.y22{bottom:213.573333pt;}
.y49{bottom:217.893333pt;}
.y68{bottom:226.533333pt;}
.y21{bottom:228.933333pt;}
.y48{bottom:240.000000pt;}
.y67{bottom:248.640000pt;}
.y58{bottom:250.080000pt;}
.y47{bottom:260.160000pt;}
.y20{bottom:263.520000pt;}
.y66{bottom:270.720000pt;}
.y57{bottom:277.466667pt;}
.y1f{bottom:279.386667pt;}
.y46{bottom:280.826667pt;}
.y4{bottom:288.026667pt;}
.y65{bottom:292.826667pt;}
.y1e{bottom:294.746667pt;}
.y45{bottom:301.466667pt;}
.y56{bottom:304.826667pt;}
.y39{bottom:305.786667pt;}
.y1d{bottom:310.106667pt;}
.y64{bottom:314.946667pt;}
.y1c{bottom:325.506667pt;}
.y3{bottom:326.466667pt;}
.y38{bottom:328.866667pt;}
.y55{bottom:332.226667pt;}
.y44{bottom:336.066667pt;}
.y63{bottom:337.026667pt;}
.y1b{bottom:340.866667pt;}
.y37{bottom:351.933333pt;}
.y1a{bottom:356.253333pt;}
.y43{bottom:356.733333pt;}
.y62{bottom:359.133333pt;}
.y54{bottom:359.613333pt;}
.y2{bottom:363.453333pt;}
.y19{bottom:371.613333pt;}
.y36{bottom:374.973333pt;}
.y42{bottom:377.373333pt;}
.y18{bottom:387.013333pt;}
.y61{bottom:391.813333pt;}
.y35{bottom:398.053333pt;}
.y17{bottom:402.373333pt;}
.y41{bottom:411.493333pt;}
.y60{bottom:413.893333pt;}
.y16{bottom:417.733333pt;}
.y34{bottom:421.120000pt;}
.y40{bottom:432.160000pt;}
.y15{bottom:433.120000pt;}
.y5f{bottom:436.000000pt;}
.y33{bottom:443.680000pt;}
.y14{bottom:448.480000pt;}
.y3f{bottom:453.280000pt;}
.y5e{bottom:458.106667pt;}
.y32{bottom:466.746667pt;}
.y3e{bottom:473.946667pt;}
.y5d{bottom:480.186667pt;}
.y13{bottom:483.066667pt;}
.y31{bottom:489.826667pt;}
.y12{bottom:498.946667pt;}
.y5c{bottom:502.306667pt;}
.y3d{bottom:508.066667pt;}
.y30{bottom:512.866667pt;}
.y11{bottom:514.306667pt;}
.y3c{bottom:528.733333pt;}
.y10{bottom:529.693333pt;}
.y2f{bottom:535.933333pt;}
.y5b{bottom:540.253333pt;}
.yf{bottom:545.053333pt;}
.y2e{bottom:558.973333pt;}
.ye{bottom:560.413333pt;}
.y3b{bottom:562.373333pt;}
.yd{bottom:575.813333pt;}
.y2d{bottom:582.053333pt;}
.yc{bottom:591.173333pt;}
.y3a{bottom:597.440000pt;}
.y2c{bottom:605.120000pt;}
.yb{bottom:606.560000pt;}
.y53{bottom:619.520000pt;}
.ya{bottom:621.920000pt;}
.y2b{bottom:628.160000pt;}
.y9{bottom:637.306667pt;}
.y52{bottom:646.906667pt;}
.y8{bottom:652.666667pt;}
.y2a{bottom:655.546667pt;}
.y7{bottom:668.026667pt;}
.y51{bottom:674.306667pt;}
.y6{bottom:683.426667pt;}
.y29{bottom:687.746667pt;}
.y50{bottom:701.666667pt;}
.y5{bottom:718.013333pt;}
.y28{bottom:719.933333pt;}
.y4f{bottom:729.053333pt;}
.y1{bottom:740.093333pt;}
.ha{height:23.778750pt;}
.h9{height:30.772500pt;}
.h8{height:34.945312pt;}
.h7{height:34.968750pt;}
.h2{height:36.758562pt;}
.hd{height:38.994750pt;}
.h4{height:39.231937pt;}
.h5{height:39.258250pt;}
.he{height:40.657000pt;}
.hf{height:40.766000pt;}
.hc{height:46.221000pt;}
.hb{height:46.252000pt;}
.h6{height:54.607875pt;}
.h3{height:93.746625pt;}
.h0{height:793.920000pt;}
.h1{height:794.000000pt;}
.w2{width:1080.666667pt;}
.w1{width:1122.666667pt;}
.w0{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x1{left:21.120000pt;}
.x6{left:90.784000pt;}
.x4{left:93.664000pt;}
.x9{left:428.453333pt;}
.x5{left:430.853333pt;}
.xa{left:432.773333pt;}
.x7{left:757.920000pt;}
.x2{left:760.320000pt;}
.x3{left:790.106667pt;}
.x8{left:1000.960000pt;}
}




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