
    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_0862641a9b04db6215b23b18.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.193359;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_9c83b086958dd86b7d3c5008.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.963379;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_721cd803697db0d7898d4c81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964860;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_6f550c27cdb2e20cd2ad41c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_b16704362a306355caef89b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963867;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_c796ff0f5181caf807e3d466.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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;}
.v1{vertical-align:27.543000px;}
.ls9{letter-spacing:-2.430535px;}
.lsb{letter-spacing:-1.630558px;}
.lsa{letter-spacing:-0.073449px;}
.ls7{letter-spacing:-0.036724px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.014690px;}
.ls3{letter-spacing:0.026931px;}
.ls5{letter-spacing:0.562800px;}
.ls4{letter-spacing:0.893318px;}
.lsc{letter-spacing:0.951159px;}
.ls0{letter-spacing:1.369200px;}
.ls2{letter-spacing:1.386000px;}
.ls6{letter-spacing:1.390200px;}
.ls1{letter-spacing:1.395000px;}
.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;}
}
.ws6{word-spacing:-18.229929px;}
.ws7{word-spacing:-18.215239px;}
.ws3{word-spacing:-16.724237px;}
.ws2{word-spacing:-16.697306px;}
.ws0{word-spacing:-13.192200px;}
.ws1{word-spacing:-13.188000px;}
.ws8{word-spacing:-0.101451px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:94.840144px;}
._2{margin-left:-3355.276800px;}
._8{margin-left:-3354.121200px;}
._7{margin-left:-8.518590px;}
._5{margin-left:-7.195076px;}
._3{margin-left:-3.990000px;}
._0{margin-left:-2.058000px;}
._1{margin-left:-1.008000px;}
._4{width:1.638000px;}
._6{width:2.716621px;}
.fc4{color:rgb(109,111,114);}
.fc3{color:transparent;}
.fc2{color:rgb(217,48,37);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs5{font-size:55.086408px;}
.fs4{font-size:64.267476px;}
.fs2{font-size:67.327847px;}
.fs1{font-size:73.448544px;}
.fs6{font-size:101.450801px;}
.fs3{font-size:146.897088px;}
.y0{bottom:0.000000px;}
.y6e{bottom:3.442800px;}
.y4{bottom:4.500000px;}
.y70{bottom:6.885750px;}
.y2{bottom:27.165000px;}
.y3{bottom:61.500000px;}
.y5{bottom:97.500000px;}
.ya{bottom:108.870900px;}
.y65{bottom:123.790050px;}
.y2e{bottom:136.414050px;}
.y9{bottom:144.447450px;}
.y3d{bottom:151.333350px;}
.y66{bottom:166.826400px;}
.y2f{bottom:179.450400px;}
.y8{bottom:191.500500px;}
.y3e{bottom:194.369550px;}
.y64{bottom:219.617550px;}
.y2d{bottom:232.241400px;}
.y7{bottom:235.110600px;}
.y3c{bottom:247.160700px;}
.y63{bottom:263.227500px;}
.y2c{bottom:275.851500px;}
.y4b{bottom:279.294450px;}
.y3b{bottom:290.770800px;}
.y5b{bottom:295.935150px;}
.y4a{bottom:303.394800px;}
.y49{bottom:327.495000px;}
.y5c{bottom:338.971350px;}
.y48{bottom:351.595350px;}
.y6{bottom:364.793100px;}
.y61{bottom:375.121800px;}
.y47{bottom:375.695700px;}
.y2a{bottom:387.745800px;}
.y5a{bottom:391.762500px;}
.y46{bottom:399.795900px;}
.y39{bottom:402.665100px;}
.y62{bottom:418.158150px;}
.y45{bottom:423.896250px;}
.y2b{bottom:430.782000px;}
.y1b{bottom:431.355900px;}
.y5e{bottom:435.372600px;}
.y3a{bottom:445.701300px;}
.y59{bottom:462.915750px;}
.y1a{bottom:469.227750px;}
.y60{bottom:470.949300px;}
.y44{bottom:472.096800px;}
.y29{bottom:483.573150px;}
.y19{bottom:493.328100px;}
.y38{bottom:498.492450px;}
.y5f{bottom:514.559250px;}
.y43{bottom:523.740300px;}
.y28{bottom:527.183250px;}
.y18{bottom:534.069000px;}
.y37{bottom:542.102550px;}
.y6f{bottom:546.644250px;}
.y17{bottom:574.810050px;}
.y6d{bottom:608.616450px;}
.y27{bottom:608.665200px;}
.y16{bottom:616.124850px;}
.y58{bottom:617.846250px;}
.y41{bottom:626.453550px;}
.y26{bottom:632.765550px;}
.y35{bottom:653.996700px;}
.y15{bottom:656.865900px;}
.y42{bottom:669.489750px;}
.y57{bottom:670.637400px;}
.y25{bottom:680.966100px;}
.y6b{bottom:681.540000px;}
.y36{bottom:697.033050px;}
.y14{bottom:697.606800px;}
.y24{bottom:705.066450px;}
.y5d{bottom:714.247500px;}
.y40{bottom:722.280900px;}
.y6c{bottom:724.576200px;}
.y23{bottom:729.166800px;}
.y13{bottom:738.921600px;}
.y56{bottom:741.790800px;}
.y34{bottom:749.824200px;}
.y22{bottom:753.267000px;}
.y12{bottom:763.021950px;}
.y4c{bottom:765.891000px;}
.y6a{bottom:777.367350px;}
.y11{bottom:787.122300px;}
.y33{bottom:793.434300px;}
.y21{bottom:801.467700px;}
.y10{bottom:811.222500px;}
.y69{bottom:820.977450px;}
.y55{bottom:823.272750px;}
.y54{bottom:847.372950px;}
.yf{bottom:851.963550px;}
.y20{bottom:853.111200px;}
.y53{bottom:871.473300px;}
.ye{bottom:879.506700px;}
.y52{bottom:895.573650px;}
.y31{bottom:905.328450px;}
.y51{bottom:919.673850px;}
.yd{bottom:925.412100px;}
.y67{bottom:932.871750px;}
.y50{bottom:943.774200px;}
.y1f{bottom:946.069500px;}
.y32{bottom:948.364800px;}
.y4f{bottom:967.874550px;}
.yc{bottom:971.317350px;}
.y68{bottom:975.907950px;}
.y1e{bottom:981.646050px;}
.y30{bottom:1001.155950px;}
.y4e{bottom:1016.075100px;}
.yb{bottom:1017.222750px;}
.y1d{bottom:1028.699100px;}
.y3f{bottom:1044.765900px;}
.y4d{bottom:1067.718600px;}
.y1c{bottom:1072.309200px;}
.y1{bottom:1199.835000px;}
.h2{height:36.000000px;}
.hd{height:37.871850px;}
.h3{height:39.990234px;}
.hc{height:41.314806px;}
.h8{height:48.200607px;}
.h6{height:54.013502px;}
.h5{height:55.086408px;}
.ha{height:55.122272px;}
.h9{height:58.923808px;}
.hb{height:61.972200px;}
.he{height:100.181774px;}
.h7{height:110.244543px;}
.h4{height:1101.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:158.247150px;}
.w4{width:801.775800px;}
.w3{width:838.500000px;}
.w2{width:838.920000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:27.000000px;}
.x4{left:61.972200px;}
.x9{left:64.267470px;}
.xb{left:78.039075px;}
.x7{left:83.777250px;}
.x14{left:84.921600px;}
.x5{left:100.077225px;}
.x8{left:105.582287px;}
.xe{left:110.388000px;}
.xf{left:116.126160px;}
.x6{left:147.721950px;}
.xc{left:155.128500px;}
.x10{left:165.439200px;}
.x12{left:250.670475px;}
.xd{left:326.161050px;}
.x11{left:336.471750px;}
.x13{left:404.123850px;}
.x2{left:756.278700px;}
.x15{left:767.968200px;}
.xa{left:773.459100px;}
.x3{left:774.925350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.482667pt;}
.ls9{letter-spacing:-2.160476pt;}
.lsb{letter-spacing:-1.449385pt;}
.lsa{letter-spacing:-0.065288pt;}
.ls7{letter-spacing:-0.032644pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.013058pt;}
.ls3{letter-spacing:0.023939pt;}
.ls5{letter-spacing:0.500267pt;}
.ls4{letter-spacing:0.794060pt;}
.lsc{letter-spacing:0.845474pt;}
.ls0{letter-spacing:1.217067pt;}
.ls2{letter-spacing:1.232000pt;}
.ls6{letter-spacing:1.235733pt;}
.ls1{letter-spacing:1.240000pt;}
.ws6{word-spacing:-16.204381pt;}
.ws7{word-spacing:-16.191323pt;}
.ws3{word-spacing:-14.865989pt;}
.ws2{word-spacing:-14.842050pt;}
.ws0{word-spacing:-11.726400pt;}
.ws1{word-spacing:-11.722667pt;}
.ws8{word-spacing:-0.090178pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:84.302351pt;}
._2{margin-left:-2982.468267pt;}
._8{margin-left:-2981.441067pt;}
._7{margin-left:-7.572080pt;}
._5{margin-left:-6.395623pt;}
._3{margin-left:-3.546667pt;}
._0{margin-left:-1.829333pt;}
._1{margin-left:-0.896000pt;}
._4{width:1.456000pt;}
._6{width:2.414775pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:48.965696pt;}
.fs4{font-size:57.126645pt;}
.fs2{font-size:59.846975pt;}
.fs1{font-size:65.287595pt;}
.fs6{font-size:90.178490pt;}
.fs3{font-size:130.575189pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:3.060267pt;}
.y4{bottom:4.000000pt;}
.y70{bottom:6.120667pt;}
.y2{bottom:24.146667pt;}
.y3{bottom:54.666667pt;}
.y5{bottom:86.666667pt;}
.ya{bottom:96.774133pt;}
.y65{bottom:110.035600pt;}
.y2e{bottom:121.256933pt;}
.y9{bottom:128.397733pt;}
.y3d{bottom:134.518533pt;}
.y66{bottom:148.290133pt;}
.y2f{bottom:159.511467pt;}
.y8{bottom:170.222667pt;}
.y3e{bottom:172.772933pt;}
.y64{bottom:195.215600pt;}
.y2d{bottom:206.436800pt;}
.y7{bottom:208.987200pt;}
.y3c{bottom:219.698400pt;}
.y63{bottom:233.980000pt;}
.y2c{bottom:245.201333pt;}
.y4b{bottom:248.261733pt;}
.y3b{bottom:258.462933pt;}
.y5b{bottom:263.053467pt;}
.y4a{bottom:269.684267pt;}
.y49{bottom:291.106667pt;}
.y5c{bottom:301.307867pt;}
.y48{bottom:312.529200pt;}
.y6{bottom:324.260533pt;}
.y61{bottom:333.441600pt;}
.y47{bottom:333.951733pt;}
.y2a{bottom:344.662933pt;}
.y5a{bottom:348.233333pt;}
.y46{bottom:355.374133pt;}
.y39{bottom:357.924533pt;}
.y62{bottom:371.696133pt;}
.y45{bottom:376.796667pt;}
.y2b{bottom:382.917333pt;}
.y1b{bottom:383.427467pt;}
.y5e{bottom:386.997867pt;}
.y3a{bottom:396.178933pt;}
.y59{bottom:411.480667pt;}
.y1a{bottom:417.091333pt;}
.y60{bottom:418.621600pt;}
.y44{bottom:419.641600pt;}
.y29{bottom:429.842800pt;}
.y19{bottom:438.513867pt;}
.y38{bottom:443.104400pt;}
.y5f{bottom:457.386000pt;}
.y43{bottom:465.546933pt;}
.y28{bottom:468.607333pt;}
.y18{bottom:474.728000pt;}
.y37{bottom:481.868933pt;}
.y6f{bottom:485.906000pt;}
.y17{bottom:510.942267pt;}
.y6d{bottom:540.992400pt;}
.y27{bottom:541.035733pt;}
.y16{bottom:547.666533pt;}
.y58{bottom:549.196667pt;}
.y41{bottom:556.847600pt;}
.y26{bottom:562.458267pt;}
.y35{bottom:581.330400pt;}
.y15{bottom:583.880800pt;}
.y42{bottom:595.102000pt;}
.y57{bottom:596.122133pt;}
.y25{bottom:605.303200pt;}
.y6b{bottom:605.813333pt;}
.y36{bottom:619.584933pt;}
.y14{bottom:620.094933pt;}
.y24{bottom:626.725733pt;}
.y5d{bottom:634.886667pt;}
.y40{bottom:642.027467pt;}
.y6c{bottom:644.067733pt;}
.y23{bottom:648.148267pt;}
.y13{bottom:656.819200pt;}
.y56{bottom:659.369600pt;}
.y34{bottom:666.510400pt;}
.y22{bottom:669.570667pt;}
.y12{bottom:678.241733pt;}
.y4c{bottom:680.792000pt;}
.y6a{bottom:690.993200pt;}
.y11{bottom:699.664267pt;}
.y33{bottom:705.274933pt;}
.y21{bottom:712.415733pt;}
.y10{bottom:721.086667pt;}
.y69{bottom:729.757733pt;}
.y55{bottom:731.798000pt;}
.y54{bottom:753.220400pt;}
.yf{bottom:757.300933pt;}
.y20{bottom:758.321067pt;}
.y53{bottom:774.642933pt;}
.ye{bottom:781.783733pt;}
.y52{bottom:796.065467pt;}
.y31{bottom:804.736400pt;}
.y51{bottom:817.487867pt;}
.yd{bottom:822.588533pt;}
.y67{bottom:829.219333pt;}
.y50{bottom:838.910400pt;}
.y1f{bottom:840.950667pt;}
.y32{bottom:842.990933pt;}
.y4f{bottom:860.332933pt;}
.yc{bottom:863.393200pt;}
.y68{bottom:867.473733pt;}
.y1e{bottom:872.574267pt;}
.y30{bottom:889.916400pt;}
.y4e{bottom:903.177867pt;}
.yb{bottom:904.198000pt;}
.y1d{bottom:914.399200pt;}
.y3f{bottom:928.680800pt;}
.y4d{bottom:949.083200pt;}
.y1c{bottom:953.163733pt;}
.y1{bottom:1066.520000pt;}
.h2{height:32.000000pt;}
.hd{height:33.663867pt;}
.h3{height:35.546875pt;}
.hc{height:36.724272pt;}
.h8{height:42.844984pt;}
.h6{height:48.012002pt;}
.h5{height:48.965696pt;}
.ha{height:48.997575pt;}
.h9{height:52.376718pt;}
.hb{height:55.086400pt;}
.he{height:89.050466pt;}
.h7{height:97.995149pt;}
.h4{height:978.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:140.664133pt;}
.w4{width:712.689600pt;}
.w3{width:745.333333pt;}
.w2{width:745.706667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:24.000000pt;}
.x4{left:55.086400pt;}
.x9{left:57.126640pt;}
.xb{left:69.368067pt;}
.x7{left:74.468667pt;}
.x14{left:75.485867pt;}
.x5{left:88.957533pt;}
.x8{left:93.850921pt;}
.xe{left:98.122667pt;}
.xf{left:103.223253pt;}
.x6{left:131.308400pt;}
.xc{left:137.892000pt;}
.x10{left:147.057067pt;}
.x12{left:222.818200pt;}
.xd{left:289.920933pt;}
.x11{left:299.086000pt;}
.x13{left:359.221200pt;}
.x2{left:672.247733pt;}
.x15{left:682.638400pt;}
.xa{left:687.519200pt;}
.x3{left:688.822533pt;}
}




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