
    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_7063a32c3ea202a38432f686.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_203651eb72d8884e861a3c1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_70375335980d827938b17c92.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_20cacfdada0b6a69ef58930b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.828000px;}
.ls5{letter-spacing:-0.414600px;}
.ls2{letter-spacing:-0.178800px;}
.ls9{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.ls8{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.305280px;}
.ls3{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.341400px;}
.ls7{letter-spacing:59.321280px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.wsb{word-spacing:-23.418720px;}
.ws6{word-spacing:-20.304000px;}
.ws9{word-spacing:-18.720120px;}
.ws8{word-spacing:-18.676920px;}
.ws4{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.wsa{word-spacing:-17.586720px;}
.ws1{word-spacing:-11.609280px;}
.ws0{word-spacing:-11.430480px;}
.ws2{word-spacing:-10.808640px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-4.438080px;}
._6{margin-left:-3.248160px;}
._3{margin-left:-2.112000px;}
._0{margin-left:-1.080000px;}
._1{width:1.188000px;}
._9{width:2.875200px;}
._8{width:4.629120px;}
._2{width:6.359040px;}
._4{width:8.272320px;}
._7{width:9.709440px;}
._a{width:20.004480px;}
._b{width:59.090880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.420000px;}
.y36{bottom:3.600000px;}
.y38{bottom:5.760000px;}
.y35{bottom:22.500000px;}
.y30{bottom:25.560000px;}
.y34{bottom:41.580000px;}
.y33{bottom:60.480000px;}
.y32{bottom:79.380000px;}
.y59{bottom:114.156000px;}
.y58{bottom:133.056000px;}
.y57{bottom:151.950000px;}
.y56{bottom:172.110000px;}
.y27{bottom:176.790000px;}
.y55{bottom:191.010000px;}
.y26{bottom:195.690000px;}
.y54{bottom:210.090000px;}
.y25{bottom:214.770000px;}
.y53{bottom:228.990000px;}
.y24{bottom:233.670000px;}
.y23{bottom:252.570000px;}
.y52{bottom:267.150000px;}
.y22{bottom:271.650000px;}
.y51{bottom:286.095000px;}
.y50{bottom:305.175000px;}
.y21{bottom:309.675000px;}
.y4f{bottom:324.075000px;}
.y20{bottom:350.715000px;}
.y4e{bottom:360.975000px;}
.y1f{bottom:369.795000px;}
.y4d{bottom:379.875000px;}
.y1e{bottom:388.695000px;}
.y4c{bottom:400.035000px;}
.y1d{bottom:407.775000px;}
.y4b{bottom:419.115000px;}
.y1c{bottom:426.675000px;}
.y4a{bottom:438.015000px;}
.y49{bottom:458.175000px;}
.y1b{bottom:463.575000px;}
.y48{bottom:477.075000px;}
.y1a{bottom:482.655000px;}
.y47{bottom:497.235000px;}
.y19{bottom:501.555000px;}
.y46{bottom:516.135000px;}
.y18{bottom:520.635000px;}
.y45{bottom:535.215000px;}
.y17{bottom:539.535000px;}
.y44{bottom:554.115000px;}
.y16{bottom:558.615000px;}
.y15{bottom:577.545000px;}
.y43{bottom:592.305000px;}
.y14{bottom:596.445000px;}
.y42{bottom:611.205000px;}
.y13{bottom:615.525000px;}
.y41{bottom:630.105000px;}
.y12{bottom:634.425000px;}
.y11{bottom:653.505000px;}
.y40{bottom:667.365000px;}
.y10{bottom:690.405000px;}
.y3f{bottom:705.885000px;}
.yf{bottom:709.305000px;}
.y3e{bottom:724.785000px;}
.ye{bottom:728.385000px;}
.y3d{bottom:743.865000px;}
.y69{bottom:744.945000px;}
.yd{bottom:747.285000px;}
.y3c{bottom:762.765000px;}
.y68{bottom:763.845000px;}
.yc{bottom:766.365000px;}
.y67{bottom:782.745000px;}
.yb{bottom:785.265000px;}
.y3b{bottom:787.965000px;}
.y66{bottom:801.825000px;}
.ya{bottom:804.165000px;}
.y39{bottom:807.765000px;}
.y37{bottom:827.385000px;}
.y65{bottom:839.805000px;}
.y9{bottom:842.325000px;}
.y31{bottom:849.390000px;}
.y64{bottom:889.890000px;}
.y8{bottom:896.550000px;}
.y63{bottom:908.970000px;}
.y7{bottom:922.830000px;}
.y62{bottom:927.870000px;}
.y2f{bottom:945.150000px;}
.y6{bottom:953.970000px;}
.y61{bottom:964.950000px;}
.y5{bottom:972.870000px;}
.y60{bottom:983.850000px;}
.y4{bottom:991.770000px;}
.y5f{bottom:1002.750000px;}
.y2e{bottom:1008.510000px;}
.y3{bottom:1029.930000px;}
.y5e{bottom:1040.910000px;}
.y2d{bottom:1045.410000px;}
.y2c{bottom:1064.490000px;}
.y2{bottom:1073.130000px;}
.y5d{bottom:1081.950000px;}
.y2b{bottom:1083.390000px;}
.y5c{bottom:1100.850000px;}
.y2a{bottom:1102.470000px;}
.y1{bottom:1104.450000px;}
.y5b{bottom:1121.010000px;}
.y29{bottom:1139.760000px;}
.y5a{bottom:1139.940000px;}
.y28{bottom:1197.180000px;}
.hd{height:18.900000px;}
.he{height:19.080000px;}
.hc{height:21.276000px;}
.h5{height:35.603086px;}
.h8{height:39.840820px;}
.ha{height:41.040000px;}
.h9{height:54.140625px;}
.h7{height:59.415469px;}
.h4{height:61.217578px;}
.h6{height:63.344531px;}
.h3{height:75.560977px;}
.h2{height:81.210938px;}
.hb{height:94.860000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:611.205000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x9{left:106.235987px;}
.x1{left:108.755987px;}
.x4{left:118.295987px;}
.x5{left:123.875987px;}
.xe{left:133.235987px;}
.xc{left:140.976000px;}
.xf{left:160.229987px;}
.x7{left:174.449987px;}
.x3{left:190.649987px;}
.x2{left:212.249987px;}
.xa{left:226.649987px;}
.x8{left:246.089987px;}
.x6{left:287.354987px;}
.xb{left:301.034987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.736000pt;}
.ls5{letter-spacing:-0.368533pt;}
.ls2{letter-spacing:-0.158933pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls8{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.271360pt;}
.ls3{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.303467pt;}
.ls7{letter-spacing:52.730027pt;}
.ws7{word-spacing:-58.880000pt;}
.wsb{word-spacing:-20.816640pt;}
.ws6{word-spacing:-18.048000pt;}
.ws9{word-spacing:-16.640107pt;}
.ws8{word-spacing:-16.601707pt;}
.ws4{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.wsa{word-spacing:-15.632640pt;}
.ws1{word-spacing:-10.319360pt;}
.ws0{word-spacing:-10.160427pt;}
.ws2{word-spacing:-9.607680pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-3.944960pt;}
._6{margin-left:-2.887253pt;}
._3{margin-left:-1.877333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.056000pt;}
._9{width:2.555733pt;}
._8{width:4.114773pt;}
._2{width:5.652480pt;}
._4{width:7.353173pt;}
._7{width:8.630613pt;}
._a{width:17.781760pt;}
._b{width:52.525227pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:3.040000pt;}
.y36{bottom:3.200000pt;}
.y38{bottom:5.120000pt;}
.y35{bottom:20.000000pt;}
.y30{bottom:22.720000pt;}
.y34{bottom:36.960000pt;}
.y33{bottom:53.760000pt;}
.y32{bottom:70.560000pt;}
.y59{bottom:101.472000pt;}
.y58{bottom:118.272000pt;}
.y57{bottom:135.066667pt;}
.y56{bottom:152.986667pt;}
.y27{bottom:157.146667pt;}
.y55{bottom:169.786667pt;}
.y26{bottom:173.946667pt;}
.y54{bottom:186.746667pt;}
.y25{bottom:190.906667pt;}
.y53{bottom:203.546667pt;}
.y24{bottom:207.706667pt;}
.y23{bottom:224.506667pt;}
.y52{bottom:237.466667pt;}
.y22{bottom:241.466667pt;}
.y51{bottom:254.306667pt;}
.y50{bottom:271.266667pt;}
.y21{bottom:275.266667pt;}
.y4f{bottom:288.066667pt;}
.y20{bottom:311.746667pt;}
.y4e{bottom:320.866667pt;}
.y1f{bottom:328.706667pt;}
.y4d{bottom:337.666667pt;}
.y1e{bottom:345.506667pt;}
.y4c{bottom:355.586667pt;}
.y1d{bottom:362.466667pt;}
.y4b{bottom:372.546667pt;}
.y1c{bottom:379.266667pt;}
.y4a{bottom:389.346667pt;}
.y49{bottom:407.266667pt;}
.y1b{bottom:412.066667pt;}
.y48{bottom:424.066667pt;}
.y1a{bottom:429.026667pt;}
.y47{bottom:441.986667pt;}
.y19{bottom:445.826667pt;}
.y46{bottom:458.786667pt;}
.y18{bottom:462.786667pt;}
.y45{bottom:475.746667pt;}
.y17{bottom:479.586667pt;}
.y44{bottom:492.546667pt;}
.y16{bottom:496.546667pt;}
.y15{bottom:513.373333pt;}
.y43{bottom:526.493333pt;}
.y14{bottom:530.173333pt;}
.y42{bottom:543.293333pt;}
.y13{bottom:547.133333pt;}
.y41{bottom:560.093333pt;}
.y12{bottom:563.933333pt;}
.y11{bottom:580.893333pt;}
.y40{bottom:593.213333pt;}
.y10{bottom:613.693333pt;}
.y3f{bottom:627.453333pt;}
.yf{bottom:630.493333pt;}
.y3e{bottom:644.253333pt;}
.ye{bottom:647.453333pt;}
.y3d{bottom:661.213333pt;}
.y69{bottom:662.173333pt;}
.yd{bottom:664.253333pt;}
.y3c{bottom:678.013333pt;}
.y68{bottom:678.973333pt;}
.yc{bottom:681.213333pt;}
.y67{bottom:695.773333pt;}
.yb{bottom:698.013333pt;}
.y3b{bottom:700.413333pt;}
.y66{bottom:712.733333pt;}
.ya{bottom:714.813333pt;}
.y39{bottom:718.013333pt;}
.y37{bottom:735.453333pt;}
.y65{bottom:746.493333pt;}
.y9{bottom:748.733333pt;}
.y31{bottom:755.013333pt;}
.y64{bottom:791.013333pt;}
.y8{bottom:796.933333pt;}
.y63{bottom:807.973333pt;}
.y7{bottom:820.293333pt;}
.y62{bottom:824.773333pt;}
.y2f{bottom:840.133333pt;}
.y6{bottom:847.973333pt;}
.y61{bottom:857.733333pt;}
.y5{bottom:864.773333pt;}
.y60{bottom:874.533333pt;}
.y4{bottom:881.573333pt;}
.y5f{bottom:891.333333pt;}
.y2e{bottom:896.453333pt;}
.y3{bottom:915.493333pt;}
.y5e{bottom:925.253333pt;}
.y2d{bottom:929.253333pt;}
.y2c{bottom:946.213333pt;}
.y2{bottom:953.893333pt;}
.y5d{bottom:961.733333pt;}
.y2b{bottom:963.013333pt;}
.y5c{bottom:978.533333pt;}
.y2a{bottom:979.973333pt;}
.y1{bottom:981.733333pt;}
.y5b{bottom:996.453333pt;}
.y29{bottom:1013.120000pt;}
.y5a{bottom:1013.280000pt;}
.y28{bottom:1064.160000pt;}
.hd{height:16.800000pt;}
.he{height:16.960000pt;}
.hc{height:18.912000pt;}
.h5{height:31.647188pt;}
.h8{height:35.414062pt;}
.ha{height:36.480000pt;}
.h9{height:48.125000pt;}
.h7{height:52.813750pt;}
.h4{height:54.415625pt;}
.h6{height:56.306250pt;}
.h3{height:67.165312pt;}
.h2{height:72.187500pt;}
.hb{height:84.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:543.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x9{left:94.431988pt;}
.x1{left:96.671988pt;}
.x4{left:105.151988pt;}
.x5{left:110.111988pt;}
.xe{left:118.431988pt;}
.xc{left:125.312000pt;}
.xf{left:142.426655pt;}
.x7{left:155.066655pt;}
.x3{left:169.466655pt;}
.x2{left:188.666655pt;}
.xa{left:201.466655pt;}
.x8{left:218.746655pt;}
.x6{left:255.426655pt;}
.xb{left:267.586655pt;}
}




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