
    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_fe82038a6ea6ff14186a3847.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_18f685816294c8234c2c634e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.694824;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_caf8a1de7dca8027601ce104.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-35.991680px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:61.689740px;}
.ls9{letter-spacing:-0.102816px;}
.lsf{letter-spacing:-0.095978px;}
.ls6{letter-spacing:-0.082253px;}
.lsc{letter-spacing:-0.059986px;}
.ls11{letter-spacing:-0.057587px;}
.ls13{letter-spacing:-0.047989px;}
.ls10{letter-spacing:-0.028793px;}
.ls8{letter-spacing:-0.027418px;}
.lsb{letter-spacing:-0.015996px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008998px;}
.ls7{letter-spacing:0.013709px;}
.ls0{letter-spacing:0.023994px;}
.lsd{letter-spacing:0.035992px;}
.ls5{letter-spacing:0.061690px;}
.ls12{letter-spacing:0.071983px;}
.lsa{letter-spacing:0.082253px;}
.lse{letter-spacing:0.095978px;}
.ls3{letter-spacing:13.124966px;}
.ls2{letter-spacing:62.534585px;}
.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:-0.389910px;}
.wsf{word-spacing:-0.335922px;}
.ws24{word-spacing:-0.311928px;}
.ws7{word-spacing:-0.287885px;}
.ws1{word-spacing:-0.267322px;}
.ws10{word-spacing:-0.239945px;}
.ws28{word-spacing:-0.215950px;}
.ws3{word-spacing:-0.205632px;}
.ws25{word-spacing:-0.191956px;}
.ws21{word-spacing:-0.167961px;}
.wsd{word-spacing:-0.155964px;}
.ws4{word-spacing:-0.150797px;}
.wsa{word-spacing:-0.143967px;}
.ws8{word-spacing:-0.137088px;}
.ws2{word-spacing:-0.123379px;}
.wsc{word-spacing:-0.119972px;}
.ws5{word-spacing:-0.109671px;}
.ws6{word-spacing:-0.102816px;}
.wse{word-spacing:-0.079981px;}
.ws9{word-spacing:-0.063985px;}
.wsb{word-spacing:-0.059986px;}
.ws29{word-spacing:0.000000px;}
.ws17{word-spacing:36.927464px;}
.ws12{word-spacing:40.334677px;}
.ws1f{word-spacing:41.222471px;}
.ws16{word-spacing:45.685440px;}
.ws14{word-spacing:46.261307px;}
.ws13{word-spacing:47.557007px;}
.ws19{word-spacing:49.524552px;}
.ws1b{word-spacing:57.010822px;}
.ws11{word-spacing:62.289602px;}
.ws1d{word-spacing:64.569075px;}
.ws26{word-spacing:71.407494px;}
.ws27{word-spacing:71.671433px;}
.ws1a{word-spacing:78.197924px;}
.ws20{word-spacing:80.501392px;}
.ws15{word-spacing:91.034957px;}
.ws1c{word-spacing:93.842308px;}
.ws23{word-spacing:94.490158px;}
.ws18{word-spacing:96.193764px;}
.ws1e{word-spacing:100.128855px;}
.ws22{word-spacing:268.103834px;}
._7{margin-left:-12.477116px;}
._6{margin-left:-6.478502px;}
._1{margin-left:-1.052757px;}
._0{width:1.091748px;}
._c{width:2.663384px;}
._5{width:4.007074px;}
._e{width:5.998613px;}
._2{width:9.909709px;}
._3{width:13.292927px;}
._9{width:16.917290px;}
._d{width:18.787657px;}
._8{width:22.770736px;}
._b{width:28.070511px;}
._a{width:29.225244px;}
._4{width:30.304995px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:79.981492px;}
.fs5{font-size:119.972268px;}
.fs3{font-size:137.088292px;}
.fs8{font-size:143.966736px;}
.fs9{font-size:167.961192px;}
.fs7{font-size:191.955629px;}
.fs2{font-size:205.632467px;}
.fsa{font-size:215.950082px;}
.fs6{font-size:239.944536px;}
.fs1{font-size:389.909871px;}
.fs0{font-size:395.908484px;}
.y41{bottom:-29.191804px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.217999px;}
.y40{bottom:35.293069px;}
.y32{bottom:87.888816px;}
.y3f{bottom:92.280214px;}
.y3e{bottom:167.262694px;}
.y30{bottom:201.117816px;}
.y2f{bottom:243.107316px;}
.y11{bottom:276.256067px;}
.y10{bottom:348.239417px;}
.yf{bottom:420.222917px;}
.ye{bottom:492.206267px;}
.yd{bottom:564.189617px;}
.y2e{bottom:572.042316px;}
.y2d{bottom:614.031816px;}
.yc{bottom:636.172967px;}
.y31{bottom:721.938702px;}
.yb{bottom:726.152117px;}
.y3d{bottom:1585.679867px;}
.y3c{bottom:1657.663367px;}
.y3b{bottom:1729.646867px;}
.y2c{bottom:1766.509500px;}
.y3a{bottom:1801.630367px;}
.y39{bottom:1873.613867px;}
.y38{bottom:1945.595867px;}
.y37{bottom:2017.579367px;}
.y36{bottom:2089.562867px;}
.y35{bottom:2161.546367px;}
.y34{bottom:2233.529867px;}
.y33{bottom:2323.508867px;}
.y1f{bottom:2450.008594px;}
.y1e{bottom:2527.990367px;}
.y1d{bottom:2599.973867px;}
.y2b{bottom:2606.767367px;}
.y1c{bottom:2671.957367px;}
.y2a{bottom:2678.750867px;}
.y1b{bottom:2743.940867px;}
.y29{bottom:2750.734367px;}
.y1a{bottom:2815.924367px;}
.y28{bottom:2822.717867px;}
.y19{bottom:2887.906367px;}
.y27{bottom:2894.701367px;}
.y18{bottom:2959.889867px;}
.y26{bottom:2966.684867px;}
.y17{bottom:3031.873367px;}
.y25{bottom:3038.668367px;}
.y16{bottom:3103.856867px;}
.y24{bottom:3110.651867px;}
.y15{bottom:3175.840367px;}
.y23{bottom:3182.635367px;}
.y14{bottom:3247.823867px;}
.y22{bottom:3254.618867px;}
.y13{bottom:3319.807367px;}
.y21{bottom:3326.600867px;}
.y12{bottom:3409.786367px;}
.y20{bottom:3416.581367px;}
.ya{bottom:3524.239355px;}
.y9{bottom:3563.229321px;}
.y8{bottom:3620.216288px;}
.y7{bottom:3691.359768px;}
.y6{bottom:3813.671534px;}
.y5{bottom:3930.644534px;}
.y4{bottom:4047.617534px;}
.y42{bottom:4134.556481px;}
.y3{bottom:4164.590880px;}
.y2{bottom:4283.063880px;}
.h5{height:55.416864px;}
.ha{height:99.750390px;}
.hb{height:116.375455px;}
.h8{height:131.219668px;}
.hc{height:133.000506px;}
.he{height:149.625570px;}
.hd{height:156.057677px;}
.h4{height:156.674255px;}
.h6{height:164.024585px;}
.h7{height:166.250633px;}
.h3{height:270.157279px;}
.h2{height:274.313545px;}
.h9{height:773.672550px;}
.h1{height:4250.781000px;}
.h0{height:4251.000000px;}
.w2{width:928.308600px;}
.w1{width:2975.890500px;}
.w0{width:2976.000000px;}
.x0{left:0.000000px;}
.x11{left:44.326425px;}
.x10{left:61.652220px;}
.x9{left:70.155705px;}
.xd{left:109.063110px;}
.x2{left:143.515329px;}
.x5{left:161.997407px;}
.xe{left:194.588688px;}
.x12{left:214.714800px;}
.xf{left:324.693000px;}
.x3{left:417.569785px;}
.x4{left:611.418775px;}
.xb{left:681.936274px;}
.xc{left:712.235968px;}
.x7{left:851.697999px;}
.x6{left:1035.251639px;}
.x1{left:1465.872832px;}
.x8{left:1787.859000px;}
.xa{left:1894.417500px;}
@media print{
.v2{vertical-align:-31.992605pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:54.835325pt;}
.ls9{letter-spacing:-0.091392pt;}
.lsf{letter-spacing:-0.085314pt;}
.ls6{letter-spacing:-0.073114pt;}
.lsc{letter-spacing:-0.053321pt;}
.ls11{letter-spacing:-0.051188pt;}
.ls13{letter-spacing:-0.042657pt;}
.ls10{letter-spacing:-0.025594pt;}
.ls8{letter-spacing:-0.024371pt;}
.lsb{letter-spacing:-0.014219pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007998pt;}
.ls7{letter-spacing:0.012186pt;}
.ls0{letter-spacing:0.021328pt;}
.lsd{letter-spacing:0.031993pt;}
.ls5{letter-spacing:0.054835pt;}
.ls12{letter-spacing:0.063985pt;}
.lsa{letter-spacing:0.073114pt;}
.lse{letter-spacing:0.085314pt;}
.ls3{letter-spacing:11.666637pt;}
.ls2{letter-spacing:55.586298pt;}
.ws0{word-spacing:-0.346587pt;}
.wsf{word-spacing:-0.298598pt;}
.ws24{word-spacing:-0.277269pt;}
.ws7{word-spacing:-0.255898pt;}
.ws1{word-spacing:-0.237620pt;}
.ws10{word-spacing:-0.213284pt;}
.ws28{word-spacing:-0.191956pt;}
.ws3{word-spacing:-0.182784pt;}
.ws25{word-spacing:-0.170627pt;}
.ws21{word-spacing:-0.149299pt;}
.wsd{word-spacing:-0.138635pt;}
.ws4{word-spacing:-0.134042pt;}
.wsa{word-spacing:-0.127970pt;}
.ws8{word-spacing:-0.121856pt;}
.ws2{word-spacing:-0.109671pt;}
.wsc{word-spacing:-0.106642pt;}
.ws5{word-spacing:-0.097485pt;}
.ws6{word-spacing:-0.091392pt;}
.wse{word-spacing:-0.071095pt;}
.ws9{word-spacing:-0.056876pt;}
.wsb{word-spacing:-0.053321pt;}
.ws29{word-spacing:0.000000pt;}
.ws17{word-spacing:32.824413pt;}
.ws12{word-spacing:35.853046pt;}
.ws1f{word-spacing:36.642197pt;}
.ws16{word-spacing:40.609280pt;}
.ws14{word-spacing:41.121161pt;}
.ws13{word-spacing:42.272895pt;}
.ws19{word-spacing:44.021824pt;}
.ws1b{word-spacing:50.676286pt;}
.ws11{word-spacing:55.368535pt;}
.ws1d{word-spacing:57.394733pt;}
.ws26{word-spacing:63.473328pt;}
.ws27{word-spacing:63.707940pt;}
.ws1a{word-spacing:69.509266pt;}
.ws20{word-spacing:71.556793pt;}
.ws15{word-spacing:80.919962pt;}
.ws1c{word-spacing:83.415385pt;}
.ws23{word-spacing:83.991252pt;}
.ws18{word-spacing:85.505568pt;}
.ws1e{word-spacing:89.003427pt;}
.ws22{word-spacing:238.314519pt;}
._7{margin-left:-11.090770pt;}
._6{margin-left:-5.758669pt;}
._1{margin-left:-0.935784pt;}
._0{width:0.970442pt;}
._c{width:2.367453pt;}
._5{width:3.561843pt;}
._e{width:5.332101pt;}
._2{width:8.808631pt;}
._3{width:11.815935pt;}
._9{width:15.037591pt;}
._d{width:16.700140pt;}
._8{width:20.240655pt;}
._b{width:24.951566pt;}
._a{width:25.977995pt;}
._4{width:26.937773pt;}
.fs4{font-size:71.094660pt;}
.fs5{font-size:106.642016pt;}
.fs3{font-size:121.856259pt;}
.fs8{font-size:127.970432pt;}
.fs9{font-size:149.298837pt;}
.fs7{font-size:170.627226pt;}
.fs2{font-size:182.784415pt;}
.fsa{font-size:191.955629pt;}
.fs6{font-size:213.284032pt;}
.fs1{font-size:346.586552pt;}
.fs0{font-size:351.918653pt;}
.y41{bottom:-25.948270pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.193777pt;}
.y40{bottom:31.371617pt;}
.y32{bottom:78.123392pt;}
.y3f{bottom:82.026857pt;}
.y3e{bottom:148.677950pt;}
.y30{bottom:178.771392pt;}
.y2f{bottom:216.095392pt;}
.y11{bottom:245.560949pt;}
.y10{bottom:309.546149pt;}
.yf{bottom:373.531482pt;}
.ye{bottom:437.516682pt;}
.yd{bottom:501.501882pt;}
.y2e{bottom:508.482059pt;}
.y2d{bottom:545.806059pt;}
.yc{bottom:565.487082pt;}
.y31{bottom:641.723291pt;}
.yb{bottom:645.468549pt;}
.y3d{bottom:1409.493215pt;}
.y3c{bottom:1473.478549pt;}
.y3b{bottom:1537.463882pt;}
.y2c{bottom:1570.230667pt;}
.y3a{bottom:1601.449215pt;}
.y39{bottom:1665.434549pt;}
.y38{bottom:1729.418549pt;}
.y37{bottom:1793.403882pt;}
.y36{bottom:1857.389215pt;}
.y35{bottom:1921.374549pt;}
.y34{bottom:1985.359882pt;}
.y33{bottom:2065.341215pt;}
.y1f{bottom:2177.785417pt;}
.y1e{bottom:2247.102549pt;}
.y1d{bottom:2311.087882pt;}
.y2b{bottom:2317.126549pt;}
.y1c{bottom:2375.073215pt;}
.y2a{bottom:2381.111882pt;}
.y1b{bottom:2439.058549pt;}
.y29{bottom:2445.097215pt;}
.y1a{bottom:2503.043882pt;}
.y28{bottom:2509.082549pt;}
.y19{bottom:2567.027882pt;}
.y27{bottom:2573.067882pt;}
.y18{bottom:2631.013215pt;}
.y26{bottom:2637.053215pt;}
.y17{bottom:2694.998549pt;}
.y25{bottom:2701.038549pt;}
.y16{bottom:2758.983882pt;}
.y24{bottom:2765.023882pt;}
.y15{bottom:2822.969215pt;}
.y23{bottom:2829.009215pt;}
.y14{bottom:2886.954549pt;}
.y22{bottom:2892.994549pt;}
.y13{bottom:2950.939882pt;}
.y21{bottom:2956.978549pt;}
.y12{bottom:3030.921215pt;}
.y20{bottom:3036.961215pt;}
.ya{bottom:3132.657204pt;}
.y9{bottom:3167.314952pt;}
.y8{bottom:3217.970033pt;}
.y7{bottom:3281.208682pt;}
.y6{bottom:3389.930252pt;}
.y5{bottom:3493.906252pt;}
.y4{bottom:3597.882252pt;}
.y42{bottom:3675.161316pt;}
.y3{bottom:3701.858560pt;}
.y2{bottom:3807.167894pt;}
.h5{height:49.259435pt;}
.ha{height:88.667013pt;}
.hb{height:103.444849pt;}
.h8{height:116.639705pt;}
.hc{height:118.222672pt;}
.he{height:133.000506pt;}
.hd{height:138.717935pt;}
.h4{height:139.266004pt;}
.h6{height:145.799631pt;}
.h7{height:147.778341pt;}
.h3{height:240.139803pt;}
.h2{height:243.834262pt;}
.h9{height:687.708933pt;}
.h1{height:3778.472000pt;}
.h0{height:3778.666667pt;}
.w2{width:825.163200pt;}
.w1{width:2645.236000pt;}
.w0{width:2645.333333pt;}
.x0{left:0.000000pt;}
.x11{left:39.401267pt;}
.x10{left:54.801973pt;}
.x9{left:62.360627pt;}
.xd{left:96.944987pt;}
.x2{left:127.569181pt;}
.x5{left:143.997695pt;}
.xe{left:172.967723pt;}
.x12{left:190.857600pt;}
.xf{left:288.616000pt;}
.x3{left:371.173142pt;}
.x4{left:543.483356pt;}
.xb{left:606.165577pt;}
.xc{left:633.098639pt;}
.x7{left:757.064888pt;}
.x6{left:920.223679pt;}
.x1{left:1302.998073pt;}
.x8{left:1589.208000pt;}
.xa{left:1683.926667pt;}
}




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