
    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_0ce5a9b2b47b63e2ec58971a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_d2bf0f231b394da5b153f642.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_8e4c1b7ef747c4be7493b857.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls4{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.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:-21.060000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-4.968000px;}
._6{margin-left:-3.960000px;}
._4{margin-left:-2.304000px;}
._0{margin-left:-1.291680px;}
._1{width:1.135440px;}
._14{width:3.096000px;}
._d{width:4.248000px;}
._18{width:5.400000px;}
._9{width:6.768000px;}
._a{width:7.771680px;}
._2{width:8.784000px;}
._7{width:10.740240px;}
._8{width:12.287520px;}
._12{width:13.317120px;}
._5{width:14.328000px;}
._1c{width:15.619680px;}
._3{width:16.632000px;}
._16{width:19.528560px;}
._b{width:21.528000px;}
._c{width:22.552560px;}
._f{width:23.671440px;}
._10{width:24.712560px;}
._11{width:26.239440px;}
._13{width:27.288480px;}
._1a{width:28.594800px;}
._19{width:31.464000px;}
._1b{width:33.552000px;}
._17{width:34.920000px;}
._e{width:846.564240px;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.960000px;}
.y43{bottom:24.660000px;}
.y48{bottom:24.705000px;}
.y45{bottom:45.360000px;}
.y47{bottom:45.405000px;}
.y2{bottom:57.780000px;}
.y1{bottom:78.480000px;}
.y56{bottom:110.880000px;}
.y55{bottom:135.540000px;}
.y21{bottom:189.030000px;}
.y20{bottom:209.730000px;}
.y1f{bottom:230.430000px;}
.y1e{bottom:251.130000px;}
.y3f{bottom:259.230000px;}
.y1d{bottom:271.830000px;}
.y3e{bottom:279.930000px;}
.y70{bottom:287.310000px;}
.y1c{bottom:292.530000px;}
.y3d{bottom:300.630000px;}
.y1b{bottom:313.230000px;}
.y6f{bottom:320.070000px;}
.y3c{bottom:321.330000px;}
.y1a{bottom:333.930000px;}
.y6e{bottom:340.770000px;}
.y3b{bottom:342.030000px;}
.y19{bottom:354.630000px;}
.y3a{bottom:362.730000px;}
.y6d{bottom:373.530000px;}
.y18{bottom:375.375000px;}
.y39{bottom:383.475000px;}
.y6c{bottom:394.275000px;}
.y17{bottom:396.075000px;}
.y54{bottom:399.135000px;}
.y38{bottom:404.175000px;}
.y16{bottom:416.775000px;}
.y53{bottom:419.835000px;}
.y37{bottom:424.875000px;}
.y6b{bottom:426.855000px;}
.y15{bottom:437.475000px;}
.y52{bottom:440.535000px;}
.y36{bottom:445.575000px;}
.y6a{bottom:447.555000px;}
.y14{bottom:458.175000px;}
.y35{bottom:466.275000px;}
.y51{bottom:473.295000px;}
.y13{bottom:478.875000px;}
.y69{bottom:480.855000px;}
.y34{bottom:486.975000px;}
.y50{bottom:493.995000px;}
.y68{bottom:504.435000px;}
.y33{bottom:507.675000px;}
.y4f{bottom:514.695000px;}
.y12{bottom:517.575000px;}
.y32{bottom:528.375000px;}
.y4e{bottom:535.395000px;}
.y67{bottom:537.195000px;}
.y31{bottom:549.075000px;}
.y11{bottom:556.275000px;}
.y66{bottom:557.895000px;}
.y4d{bottom:568.545000px;}
.y30{bottom:569.805000px;}
.y10{bottom:577.005000px;}
.y65{bottom:578.625000px;}
.y2f{bottom:590.505000px;}
.yf{bottom:597.705000px;}
.y64{bottom:599.325000px;}
.y4c{bottom:604.185000px;}
.y2e{bottom:611.205000px;}
.ye{bottom:618.405000px;}
.y63{bottom:620.025000px;}
.y4b{bottom:624.885000px;}
.y2d{bottom:631.905000px;}
.yd{bottom:639.105000px;}
.y62{bottom:640.725000px;}
.y4a{bottom:645.585000px;}
.y2c{bottom:652.605000px;}
.y2b{bottom:673.305000px;}
.y61{bottom:673.845000px;}
.yc{bottom:677.805000px;}
.y49{bottom:681.045000px;}
.y2a{bottom:694.005000px;}
.y60{bottom:709.485000px;}
.yb{bottom:711.105000px;}
.y29{bottom:714.705000px;}
.y46{bottom:723.165000px;}
.y5f{bottom:730.185000px;}
.y28{bottom:735.405000px;}
.y5e{bottom:750.930000px;}
.y27{bottom:756.150000px;}
.ya{bottom:757.230000px;}
.y5d{bottom:771.630000px;}
.y9{bottom:774.510000px;}
.y26{bottom:776.850000px;}
.y44{bottom:786.210000px;}
.y8{bottom:786.570000px;}
.y5c{bottom:792.330000px;}
.y25{bottom:797.550000px;}
.y7{bottom:803.850000px;}
.y5b{bottom:813.030000px;}
.y24{bottom:818.250000px;}
.y6{bottom:820.950000px;}
.y5a{bottom:833.730000px;}
.y5{bottom:838.230000px;}
.y23{bottom:838.950000px;}
.y42{bottom:849.030000px;}
.y59{bottom:854.430000px;}
.y22{bottom:859.650000px;}
.y4{bottom:868.830000px;}
.y58{bottom:875.130000px;}
.y40{bottom:891.150000px;}
.y3{bottom:892.950000px;}
.y57{bottom:895.830000px;}
.h9{height:20.700000px;}
.h6{height:38.139609px;}
.h7{height:38.158594px;}
.ha{height:41.400000px;}
.hd{height:52.971680px;}
.h5{height:58.621992px;}
.h4{height:59.038594px;}
.hb{height:62.100000px;}
.hc{height:62.136000px;}
.h2{height:70.664062px;}
.h8{height:72.562500px;}
.h3{height:84.898125px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:260.175000px;}
.w4{width:275.790000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.xa{left:92.025000px;}
.xc{left:111.240000px;}
.x2{left:162.029988px;}
.x7{left:164.549988px;}
.x4{left:194.429988px;}
.x5{left:209.369988px;}
.x3{left:239.834988px;}
.x9{left:271.334988px;}
.xf{left:311.834988px;}
.x8{left:325.874988px;}
.x6{left:366.734988px;}
.xb{left:423.645000px;}
.xe{left:648.149988px;}
.x1{left:682.169988px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-4.416000pt;}
._6{margin-left:-3.520000pt;}
._4{margin-left:-2.048000pt;}
._0{margin-left:-1.148160pt;}
._1{width:1.009280pt;}
._14{width:2.752000pt;}
._d{width:3.776000pt;}
._18{width:4.800000pt;}
._9{width:6.016000pt;}
._a{width:6.908160pt;}
._2{width:7.808000pt;}
._7{width:9.546880pt;}
._8{width:10.922240pt;}
._12{width:11.837440pt;}
._5{width:12.736000pt;}
._1c{width:13.884160pt;}
._3{width:14.784000pt;}
._16{width:17.358720pt;}
._b{width:19.136000pt;}
._c{width:20.046720pt;}
._f{width:21.041280pt;}
._10{width:21.966720pt;}
._11{width:23.323947pt;}
._13{width:24.256427pt;}
._1a{width:25.417600pt;}
._19{width:27.968000pt;}
._1b{width:29.824000pt;}
._17{width:31.040000pt;}
._e{width:752.501547pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:3.520000pt;}
.y43{bottom:21.920000pt;}
.y48{bottom:21.960000pt;}
.y45{bottom:40.320000pt;}
.y47{bottom:40.360000pt;}
.y2{bottom:51.360000pt;}
.y1{bottom:69.760000pt;}
.y56{bottom:98.560000pt;}
.y55{bottom:120.480000pt;}
.y21{bottom:168.026667pt;}
.y20{bottom:186.426667pt;}
.y1f{bottom:204.826667pt;}
.y1e{bottom:223.226667pt;}
.y3f{bottom:230.426667pt;}
.y1d{bottom:241.626667pt;}
.y3e{bottom:248.826667pt;}
.y70{bottom:255.386667pt;}
.y1c{bottom:260.026667pt;}
.y3d{bottom:267.226667pt;}
.y1b{bottom:278.426667pt;}
.y6f{bottom:284.506667pt;}
.y3c{bottom:285.626667pt;}
.y1a{bottom:296.826667pt;}
.y6e{bottom:302.906667pt;}
.y3b{bottom:304.026667pt;}
.y19{bottom:315.226667pt;}
.y3a{bottom:322.426667pt;}
.y6d{bottom:332.026667pt;}
.y18{bottom:333.666667pt;}
.y39{bottom:340.866667pt;}
.y6c{bottom:350.466667pt;}
.y17{bottom:352.066667pt;}
.y54{bottom:354.786667pt;}
.y38{bottom:359.266667pt;}
.y16{bottom:370.466667pt;}
.y53{bottom:373.186667pt;}
.y37{bottom:377.666667pt;}
.y6b{bottom:379.426667pt;}
.y15{bottom:388.866667pt;}
.y52{bottom:391.586667pt;}
.y36{bottom:396.066667pt;}
.y6a{bottom:397.826667pt;}
.y14{bottom:407.266667pt;}
.y35{bottom:414.466667pt;}
.y51{bottom:420.706667pt;}
.y13{bottom:425.666667pt;}
.y69{bottom:427.426667pt;}
.y34{bottom:432.866667pt;}
.y50{bottom:439.106667pt;}
.y68{bottom:448.386667pt;}
.y33{bottom:451.266667pt;}
.y4f{bottom:457.506667pt;}
.y12{bottom:460.066667pt;}
.y32{bottom:469.666667pt;}
.y4e{bottom:475.906667pt;}
.y67{bottom:477.506667pt;}
.y31{bottom:488.066667pt;}
.y11{bottom:494.466667pt;}
.y66{bottom:495.906667pt;}
.y4d{bottom:505.373333pt;}
.y30{bottom:506.493333pt;}
.y10{bottom:512.893333pt;}
.y65{bottom:514.333333pt;}
.y2f{bottom:524.893333pt;}
.yf{bottom:531.293333pt;}
.y64{bottom:532.733333pt;}
.y4c{bottom:537.053333pt;}
.y2e{bottom:543.293333pt;}
.ye{bottom:549.693333pt;}
.y63{bottom:551.133333pt;}
.y4b{bottom:555.453333pt;}
.y2d{bottom:561.693333pt;}
.yd{bottom:568.093333pt;}
.y62{bottom:569.533333pt;}
.y4a{bottom:573.853333pt;}
.y2c{bottom:580.093333pt;}
.y2b{bottom:598.493333pt;}
.y61{bottom:598.973333pt;}
.yc{bottom:602.493333pt;}
.y49{bottom:605.373333pt;}
.y2a{bottom:616.893333pt;}
.y60{bottom:630.653333pt;}
.yb{bottom:632.093333pt;}
.y29{bottom:635.293333pt;}
.y46{bottom:642.813333pt;}
.y5f{bottom:649.053333pt;}
.y28{bottom:653.693333pt;}
.y5e{bottom:667.493333pt;}
.y27{bottom:672.133333pt;}
.ya{bottom:673.093333pt;}
.y5d{bottom:685.893333pt;}
.y9{bottom:688.453333pt;}
.y26{bottom:690.533333pt;}
.y44{bottom:698.853333pt;}
.y8{bottom:699.173333pt;}
.y5c{bottom:704.293333pt;}
.y25{bottom:708.933333pt;}
.y7{bottom:714.533333pt;}
.y5b{bottom:722.693333pt;}
.y24{bottom:727.333333pt;}
.y6{bottom:729.733333pt;}
.y5a{bottom:741.093333pt;}
.y5{bottom:745.093333pt;}
.y23{bottom:745.733333pt;}
.y42{bottom:754.693333pt;}
.y59{bottom:759.493333pt;}
.y22{bottom:764.133333pt;}
.y4{bottom:772.293333pt;}
.y58{bottom:777.893333pt;}
.y40{bottom:792.133333pt;}
.y3{bottom:793.733333pt;}
.y57{bottom:796.293333pt;}
.h9{height:18.400000pt;}
.h6{height:33.901875pt;}
.h7{height:33.918750pt;}
.ha{height:36.800000pt;}
.hd{height:47.085938pt;}
.h5{height:52.108438pt;}
.h4{height:52.478750pt;}
.hb{height:55.200000pt;}
.hc{height:55.232000pt;}
.h2{height:62.812500pt;}
.h8{height:64.500000pt;}
.h3{height:75.465000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:231.266667pt;}
.w4{width:245.146667pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.xa{left:81.800000pt;}
.xc{left:98.880000pt;}
.x2{left:144.026656pt;}
.x7{left:146.266656pt;}
.x4{left:172.826656pt;}
.x5{left:186.106656pt;}
.x3{left:213.186656pt;}
.x9{left:241.186656pt;}
.xf{left:277.186656pt;}
.x8{left:289.666656pt;}
.x6{left:325.986656pt;}
.xb{left:376.573333pt;}
.xe{left:576.133323pt;}
.x1{left:606.373323pt;}
}




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