
    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_bce3a341b49ef717a91aa78e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_ba304bf99feb129f0fe67d1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_61227d3269adc2713aa202b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_db80923e0c4b5c6d6e98d56a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_a45467b15561dc96da7ca9d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_3545147da6d074988d69303e.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);}
.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;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017988px;}
.ls3{letter-spacing:0.017994px;}
.ls1{letter-spacing:0.018006px;}
.ls7{letter-spacing:0.336010px;}
.ls5{letter-spacing:1.476000px;}
.ls2{letter-spacing:1.512000px;}
.ls6{letter-spacing:857.068986px;}
.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;}
}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-14.958000px;}
.ws8{word-spacing:-14.210587px;}
.ws6{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws7{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:271.512000px;}
.ws4{word-spacing:285.012000px;}
._3{margin-left:-11.199814px;}
._5{margin-left:-9.093590px;}
._8{margin-left:-8.033234px;}
._d{margin-left:-6.686553px;}
._6{margin-left:-5.333427px;}
._7{margin-left:-3.704410px;}
._4{margin-left:-2.386846px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._9{width:3.855674px;}
._f{width:5.094290px;}
._e{width:6.156119px;}
._11{width:7.204935px;}
._10{width:8.802079px;}
._13{width:10.132311px;}
._21{width:11.152743px;}
._17{width:12.160416px;}
._1e{width:13.176000px;}
._a{width:16.395537px;}
._b{width:17.498193px;}
._c{width:19.548260px;}
._12{width:22.358430px;}
._15{width:23.490000px;}
._16{width:25.948020px;}
._14{width:27.143059px;}
._22{width:31.485340px;}
._1f{width:36.406337px;}
._20{width:115.830040px;}
._23{width:182.187340px;}
._18{width:303.984000px;}
._1a{width:344.484000px;}
._1c{width:362.484000px;}
._19{width:407.484000px;}
._1d{width:434.484000px;}
._1b{width:452.484000px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y26{bottom:46.734370px;}
.y25{bottom:59.015622px;}
.y24{bottom:71.302734px;}
.y57{bottom:96.574208px;}
.y56{bottom:115.470698px;}
.y3c{bottom:133.623014px;}
.y55{bottom:134.373047px;}
.y21{bottom:134.607417px;}
.y67{bottom:138.673828px;}
.y3b{bottom:152.525363px;}
.y54{bottom:153.275369px;}
.y20{bottom:153.503901px;}
.y66{bottom:169.330078px;}
.y3a{bottom:171.427712px;}
.y53{bottom:172.171859px;}
.y1f{bottom:172.406244px;}
.y39{bottom:190.324202px;}
.y52{bottom:191.074208px;}
.y1e{bottom:191.302730px;}
.y38{bottom:209.226551px;}
.y51{bottom:209.970698px;}
.y1d{bottom:210.205062px;}
.y65{bottom:224.941407px;}
.y37{bottom:228.123041px;}
.y50{bottom:228.873047px;}
.y1c{bottom:229.107411px;}
.y64{bottom:243.837891px;}
.y4f{bottom:247.775391px;}
.y1b{bottom:261.503901px;}
.y63{bottom:262.740234px;}
.y4e{bottom:266.671865px;}
.y3f{bottom:272.367188px;}
.y1a{bottom:280.406244px;}
.y4d{bottom:285.574214px;}
.y3e{bottom:289.171878px;}
.y62{bottom:293.396484px;}
.y19{bottom:299.302729px;}
.y3d{bottom:310.470704px;}
.y4c{bottom:317.970660px;}
.y18{bottom:318.205073px;}
.y4b{bottom:336.873009px;}
.y17{bottom:337.107417px;}
.y61{bottom:349.001954px;}
.y4a{bottom:355.775358px;}
.y16{bottom:356.003901px;}
.y49{bottom:374.671848px;}
.y15{bottom:374.906239px;}
.y60{bottom:379.658204px;}
.y48{bottom:393.574197px;}
.y14{bottom:393.802729px;}
.y47{bottom:412.470687px;}
.y13{bottom:412.705068px;}
.y46{bottom:431.373036px;}
.y12{bottom:431.607417px;}
.y5f{bottom:435.269532px;}
.y45{bottom:450.275385px;}
.y11{bottom:450.503907px;}
.y5e{bottom:465.925782px;}
.y44{bottom:469.171869px;}
.y10{bottom:481.160157px;}
.y43{bottom:488.074211px;}
.y5d{bottom:521.537109px;}
.y5a{bottom:530.068358px;}
.y59{bottom:546.867190px;}
.yf{bottom:550.259766px;}
.y5c{bottom:552.187500px;}
.ye{bottom:567.058592px;}
.y58{bottom:568.166016px;}
.y7b{bottom:575.707032px;}
.yd{bottom:583.857419px;}
.y7a{bottom:593.660155px;}
.yc{bottom:600.662104px;}
.y36{bottom:610.330073px;}
.y79{bottom:611.613282px;}
.y6a{bottom:619.646483px;}
.yb{bottom:621.960937px;}
.y35{bottom:629.232405px;}
.y78{bottom:629.572262px;}
.y69{bottom:636.445315px;}
.y77{bottom:647.525389px;}
.ya{bottom:647.759766px;}
.y34{bottom:648.128895px;}
.y68{bottom:657.744141px;}
.y76{bottom:665.478516px;}
.y33{bottom:667.031244px;}
.y75{bottom:683.437496px;}
.y9{bottom:698.015630px;}
.y32{bottom:699.427703px;}
.y74{bottom:701.390623px;}
.y8{bottom:711.246095px;}
.y31{bottom:718.330052px;}
.y73{bottom:719.343750px;}
.y7{bottom:732.199218px;}
.y23{bottom:736.699215px;}
.y30{bottom:737.232401px;}
.y72{bottom:737.302732px;}
.y6{bottom:751.400391px;}
.y71{bottom:755.255859px;}
.y22{bottom:755.900391px;}
.y2f{bottom:756.128891px;}
.y70{bottom:773.208982px;}
.y2e{bottom:775.031240px;}
.y6f{bottom:791.162109px;}
.y5{bottom:793.710931px;}
.y2d{bottom:793.927730px;}
.y2c{bottom:812.830062px;}
.y6e{bottom:828.673829px;}
.y4{bottom:831.269532px;}
.y2b{bottom:831.732411px;}
.y42{bottom:845.232411px;}
.y2a{bottom:864.128901px;}
.y6d{bottom:882.375000px;}
.y41{bottom:883.031239px;}
.y29{bottom:883.031250px;}
.y3{bottom:899.378907px;}
.y28{bottom:901.927730px;}
.y6c{bottom:911.121093px;}
.y27{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y40{bottom:974.730453px;}
.y6b{bottom:974.730462px;}
.y5b{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.h1{height:30.617097px;}
.hb{height:34.946378px;}
.h4{height:34.993255px;}
.hf{height:35.617086px;}
.hc{height:35.617153px;}
.h10{height:37.399182px;}
.h2{height:39.366211px;}
.h7{height:39.366277px;}
.he{height:39.366301px;}
.ha{height:39.366337px;}
.hd{height:39.366385px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h0{height:1020.000000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x8{left:83.162109px;}
.xa{left:86.537109px;}
.xc{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:123.662109px;}
.xb{left:130.851562px;}
.x7{left:151.787109px;}
.x6{left:179.912109px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015989pt;}
.ls3{letter-spacing:0.015995pt;}
.ls1{letter-spacing:0.016005pt;}
.ls7{letter-spacing:0.298676pt;}
.ls5{letter-spacing:1.312000pt;}
.ls2{letter-spacing:1.344000pt;}
.ls6{letter-spacing:761.839098pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-13.296000pt;}
.ws8{word-spacing:-12.631633pt;}
.ws6{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws7{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:241.344000pt;}
.ws4{word-spacing:253.344000pt;}
._3{margin-left:-9.955391pt;}
._5{margin-left:-8.083191pt;}
._8{margin-left:-7.140652pt;}
._d{margin-left:-5.943603pt;}
._6{margin-left:-4.740824pt;}
._7{margin-left:-3.292809pt;}
._4{margin-left:-2.121641pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._9{width:3.427266pt;}
._f{width:4.528258pt;}
._e{width:5.472105pt;}
._11{width:6.404387pt;}
._10{width:7.824070pt;}
._13{width:9.006499pt;}
._21{width:9.913549pt;}
._17{width:10.809259pt;}
._1e{width:11.712000pt;}
._a{width:14.573811pt;}
._b{width:15.553950pt;}
._c{width:17.376231pt;}
._12{width:19.874160pt;}
._15{width:20.880000pt;}
._16{width:23.064907pt;}
._14{width:24.127164pt;}
._22{width:27.986969pt;}
._1f{width:32.361188pt;}
._20{width:102.960035pt;}
._23{width:161.944302pt;}
._18{width:270.208000pt;}
._1a{width:306.208000pt;}
._1c{width:322.208000pt;}
._19{width:362.208000pt;}
._1d{width:386.208000pt;}
._1b{width:402.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:41.541662pt;}
.y25{bottom:52.458331pt;}
.y24{bottom:63.380208pt;}
.y57{bottom:85.843740pt;}
.y56{bottom:102.640620pt;}
.y3c{bottom:118.776012pt;}
.y55{bottom:119.442708pt;}
.y21{bottom:119.651037pt;}
.y67{bottom:123.265625pt;}
.y3b{bottom:135.578100pt;}
.y54{bottom:136.244772pt;}
.y20{bottom:136.447912pt;}
.y66{bottom:150.515625pt;}
.y3a{bottom:152.380188pt;}
.y53{bottom:153.041652pt;}
.y1f{bottom:153.249995pt;}
.y39{bottom:169.177068pt;}
.y52{bottom:169.843740pt;}
.y1e{bottom:170.046871pt;}
.y38{bottom:185.979156pt;}
.y51{bottom:186.640620pt;}
.y1d{bottom:186.848944pt;}
.y65{bottom:199.947917pt;}
.y37{bottom:202.776036pt;}
.y50{bottom:203.442708pt;}
.y1c{bottom:203.651032pt;}
.y64{bottom:216.744792pt;}
.y4f{bottom:220.244792pt;}
.y1b{bottom:232.447912pt;}
.y63{bottom:233.546875pt;}
.y4e{bottom:237.041657pt;}
.y3f{bottom:242.104167pt;}
.y1a{bottom:249.249995pt;}
.y4d{bottom:253.843745pt;}
.y3e{bottom:257.041669pt;}
.y62{bottom:260.796875pt;}
.y19{bottom:266.046871pt;}
.y3d{bottom:275.973959pt;}
.y4c{bottom:282.640587pt;}
.y18{bottom:282.848953pt;}
.y4b{bottom:299.442675pt;}
.y17{bottom:299.651037pt;}
.y61{bottom:310.223959pt;}
.y4a{bottom:316.244763pt;}
.y16{bottom:316.447912pt;}
.y49{bottom:333.041643pt;}
.y15{bottom:333.249991pt;}
.y60{bottom:337.473959pt;}
.y48{bottom:349.843731pt;}
.y14{bottom:350.046871pt;}
.y47{bottom:366.640611pt;}
.y13{bottom:366.848949pt;}
.y46{bottom:383.442699pt;}
.y12{bottom:383.651037pt;}
.y5f{bottom:386.906251pt;}
.y45{bottom:400.244787pt;}
.y11{bottom:400.447917pt;}
.y5e{bottom:414.156251pt;}
.y44{bottom:417.041661pt;}
.y10{bottom:427.697917pt;}
.y43{bottom:433.843743pt;}
.y5d{bottom:463.588541pt;}
.y5a{bottom:471.171874pt;}
.y59{bottom:486.104169pt;}
.yf{bottom:489.119792pt;}
.y5c{bottom:490.833333pt;}
.ye{bottom:504.052082pt;}
.y58{bottom:505.036459pt;}
.y7b{bottom:511.739584pt;}
.yd{bottom:518.984372pt;}
.y7a{bottom:527.697915pt;}
.yc{bottom:533.921870pt;}
.y36{bottom:542.515620pt;}
.y79{bottom:543.656251pt;}
.y6a{bottom:550.796874pt;}
.yb{bottom:552.854166pt;}
.y35{bottom:559.317693pt;}
.y78{bottom:559.619788pt;}
.y69{bottom:565.729169pt;}
.y77{bottom:575.578123pt;}
.ya{bottom:575.786459pt;}
.y34{bottom:576.114573pt;}
.y68{bottom:584.661459pt;}
.y76{bottom:591.536459pt;}
.y33{bottom:592.916661pt;}
.y75{bottom:607.499996pt;}
.y9{bottom:620.458338pt;}
.y32{bottom:621.713513pt;}
.y74{bottom:623.458331pt;}
.y8{bottom:632.218751pt;}
.y31{bottom:638.515601pt;}
.y73{bottom:639.416667pt;}
.y7{bottom:650.843749pt;}
.y23{bottom:654.843747pt;}
.y30{bottom:655.317689pt;}
.y72{bottom:655.380206pt;}
.y6{bottom:667.911459pt;}
.y71{bottom:671.338541pt;}
.y22{bottom:671.911459pt;}
.y2f{bottom:672.114569pt;}
.y70{bottom:687.296873pt;}
.y2e{bottom:688.916657pt;}
.y6f{bottom:703.255208pt;}
.y5{bottom:705.520828pt;}
.y2d{bottom:705.713537pt;}
.y2c{bottom:722.515611pt;}
.y6e{bottom:736.598959pt;}
.y4{bottom:738.906251pt;}
.y2b{bottom:739.317699pt;}
.y42{bottom:751.317699pt;}
.y2a{bottom:768.114579pt;}
.y6d{bottom:784.333333pt;}
.y41{bottom:784.916657pt;}
.y29{bottom:784.916667pt;}
.y3{bottom:799.447917pt;}
.y28{bottom:801.713537pt;}
.y6c{bottom:809.885416pt;}
.y27{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y40{bottom:866.427069pt;}
.y6b{bottom:866.427077pt;}
.y5b{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.h1{height:27.215197pt;}
.hb{height:31.063447pt;}
.h4{height:31.105115pt;}
.hf{height:31.659632pt;}
.hc{height:31.659691pt;}
.h10{height:33.243717pt;}
.h2{height:34.992188pt;}
.h7{height:34.992246pt;}
.he{height:34.992267pt;}
.ha{height:34.992300pt;}
.hd{height:34.992342pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h0{height:906.666667pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x8{left:73.921875pt;}
.xa{left:76.921875pt;}
.xc{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:109.921875pt;}
.xb{left:116.312500pt;}
.x7{left:134.921875pt;}
.x6{left:159.921875pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
}




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