
    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_96da7b2f8e61f4bab6d45051.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_550cf1aa03e47f032efcf5f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_e674ad17f9b7b2e3b172d8b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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:23.220000px;}
.lsa{letter-spacing:-0.870492px;}
.ls8{letter-spacing:-0.556248px;}
.ls4{letter-spacing:-0.268320px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.268320px;}
.lsc{letter-spacing:0.278124px;}
.ls1{letter-spacing:0.538188px;}
.ls5{letter-spacing:0.577920px;}
.ls3{letter-spacing:0.843144px;}
.ls6{letter-spacing:0.846240px;}
.ls2{letter-spacing:0.870492px;}
.lsb{letter-spacing:1.152228px;}
.ls7{letter-spacing:1.155840px;}
.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;}
}
.ws3{word-spacing:-11.193588px;}
.ws5{word-spacing:-10.911852px;}
.ws4{word-spacing:-10.041360px;}
.ws2{word-spacing:-9.485112px;}
.ws6{word-spacing:0.000000px;}
.ws1{word-spacing:267.696672px;}
.ws0{word-spacing:446.917920px;}
._3{margin-left:-2.930880px;}
._0{margin-left:-1.666680px;}
._1{width:1.029420px;}
._5{width:2.293620px;}
._2f{width:24.081720px;}
._2e{width:32.100360px;}
._7{width:46.311000px;}
._2b{width:52.820340px;}
._2c{width:63.253860px;}
._2d{width:68.893740px;}
._2a{width:70.916460px;}
._1d{width:85.883040px;}
._25{width:97.300572px;}
._22{width:101.179860px;}
._f{width:106.146360px;}
._20{width:112.178400px;}
._d{width:140.279760px;}
._30{width:145.264320px;}
._17{width:171.149460px;}
._19{width:181.510740px;}
._6{width:192.968004px;}
._13{width:201.593460px;}
._18{width:225.613260px;}
._1c{width:250.414800px;}
._32{width:267.371592px;}
._1b{width:282.172020px;}
._1a{width:289.762380px;}
._2{width:321.653760px;}
._8{width:330.144540px;}
._9{width:338.867520px;}
._e{width:344.068800px;}
._12{width:359.040540px;}
._11{width:360.907944px;}
._a{width:369.316680px;}
._24{width:372.789360px;}
._10{width:382.175400px;}
._15{width:391.162572px;}
._28{width:395.214720px;}
._23{width:398.158500px;}
._21{width:409.157040px;}
._27{width:433.429680px;}
._29{width:467.563080px;}
._14{width:506.095896px;}
._31{width:544.914060px;}
._c{width:572.793540px;}
._b{width:573.936480px;}
._26{width:591.996480px;}
._4{width:644.840040px;}
._1e{width:660.051720px;}
._16{width:712.136760px;}
._1f{width:769.761060px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc3{color:transparent;}
.fc0{color:rgb(0,79,201);}
.fs2{font-size:36.120000px;}
.fs1{font-size:41.280000px;}
.fs0{font-size:49.020000px;}
.y0{bottom:0.000000px;}
.y15{bottom:1.935000px;}
.y36{bottom:2.580000px;}
.y5{bottom:5.805000px;}
.y1a{bottom:12.900000px;}
.y35{bottom:13.545000px;}
.y4{bottom:18.060000px;}
.y19{bottom:23.865000px;}
.y6a{bottom:36.120000px;}
.y68{bottom:47.085000px;}
.y66{bottom:58.050000px;}
.y64{bottom:69.015000px;}
.y62{bottom:91.590000px;}
.y60{bottom:114.165000px;}
.y1{bottom:134.895000px;}
.y5e{bottom:136.740000px;}
.y6b{bottom:146.505000px;}
.y5c{bottom:159.315000px;}
.y5a{bottom:170.280000px;}
.y69{bottom:180.045000px;}
.y58{bottom:181.245000px;}
.y67{bottom:191.010000px;}
.y65{bottom:201.975000px;}
.y56{bottom:203.820000px;}
.y63{bottom:224.550000px;}
.y54{bottom:226.395000px;}
.y52{bottom:237.360000px;}
.y61{bottom:247.125000px;}
.y50{bottom:248.325000px;}
.y4e{bottom:259.290000px;}
.y5f{bottom:269.700000px;}
.y4c{bottom:270.255000px;}
.y5d{bottom:292.275000px;}
.y4a{bottom:292.830000px;}
.y5b{bottom:303.240000px;}
.y59{bottom:314.205000px;}
.y48{bottom:327.015000px;}
.y57{bottom:336.780000px;}
.y46{bottom:349.590000px;}
.y55{bottom:359.355000px;}
.y53{bottom:370.320000px;}
.y44{bottom:372.165000px;}
.y51{bottom:381.285000px;}
.y4f{bottom:392.250000px;}
.y42{bottom:394.740000px;}
.y4d{bottom:403.215000px;}
.y40{bottom:417.315000px;}
.y4b{bottom:425.790000px;}
.y3e{bottom:451.500000px;}
.y49{bottom:459.975000px;}
.y3c{bottom:474.075000px;}
.y47{bottom:482.550000px;}
.y3a{bottom:485.040000px;}
.y38{bottom:496.005000px;}
.y45{bottom:505.125000px;}
.y37{bottom:506.970000px;}
.y33{bottom:517.935000px;}
.y43{bottom:527.700000px;}
.y31{bottom:540.510000px;}
.y41{bottom:550.275000px;}
.y30{bottom:551.475000px;}
.y2e{bottom:562.440000px;}
.y2c{bottom:573.405000px;}
.y2a{bottom:584.370000px;}
.y3f{bottom:584.460000px;}
.y28{bottom:595.335000px;}
.y26{bottom:606.300000px;}
.y3d{bottom:607.035000px;}
.y3b{bottom:618.000000px;}
.y25{bottom:628.875000px;}
.y39{bottom:628.965000px;}
.y23{bottom:639.840000px;}
.y21{bottom:650.805000px;}
.y34{bottom:650.895000px;}
.y1f{bottom:661.770000px;}
.y1d{bottom:672.735000px;}
.y32{bottom:673.470000px;}
.y1b{bottom:695.310000px;}
.y2f{bottom:695.400000px;}
.y17{bottom:706.275000px;}
.y2d{bottom:706.365000px;}
.y2b{bottom:717.330000px;}
.y29{bottom:728.295000px;}
.y27{bottom:739.260000px;}
.y16{bottom:740.460000px;}
.y13{bottom:751.425000px;}
.y12{bottom:762.390000px;}
.y24{bottom:772.800000px;}
.y11{bottom:773.355000px;}
.y22{bottom:783.765000px;}
.y10{bottom:784.320000px;}
.y20{bottom:794.730000px;}
.yf{bottom:795.285000px;}
.y1e{bottom:805.695000px;}
.ye{bottom:806.250000px;}
.yd{bottom:817.215000px;}
.yc{bottom:828.180000px;}
.y1c{bottom:828.270000px;}
.yb{bottom:839.145000px;}
.y18{bottom:839.235000px;}
.ya{bottom:850.110000px;}
.y9{bottom:861.075000px;}
.y8{bottom:872.040000px;}
.y7{bottom:883.005000px;}
.y14{bottom:884.385000px;}
.y6{bottom:903.645000px;}
.y2{bottom:940.410000px;}
.y3{bottom:1026.930000px;}
.h6{height:10.320000px;}
.h8{height:21.930000px;}
.h5{height:26.313984px;}
.h4{height:30.052969px;}
.h3{height:30.960000px;}
.h7{height:33.540000px;}
.h2{height:35.687900px;}
.h9{height:49.533984px;}
.h1{height:1046.835000px;}
.h0{height:1263.000000px;}
.w2{width:87.720000px;}
.w3{width:227.685000px;}
.w1{width:728.205000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:1.935000px;}
.x1{left:75.465000px;}
.x2{left:90.300000px;}
.x7{left:248.970000px;}
.x6{left:396.030000px;}
.x4{left:470.205000px;}
.x5{left:624.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.640000pt;}
.lsa{letter-spacing:-0.773771pt;}
.ls8{letter-spacing:-0.494443pt;}
.ls4{letter-spacing:-0.238507pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.238507pt;}
.lsc{letter-spacing:0.247221pt;}
.ls1{letter-spacing:0.478389pt;}
.ls5{letter-spacing:0.513707pt;}
.ls3{letter-spacing:0.749461pt;}
.ls6{letter-spacing:0.752213pt;}
.ls2{letter-spacing:0.773771pt;}
.lsb{letter-spacing:1.024203pt;}
.ls7{letter-spacing:1.027413pt;}
.ws3{word-spacing:-9.949856pt;}
.ws5{word-spacing:-9.699424pt;}
.ws4{word-spacing:-8.925653pt;}
.ws2{word-spacing:-8.431211pt;}
.ws6{word-spacing:0.000000pt;}
.ws1{word-spacing:237.952597pt;}
.ws0{word-spacing:397.260373pt;}
._3{margin-left:-2.605227pt;}
._0{margin-left:-1.481493pt;}
._1{width:0.915040pt;}
._5{width:2.038773pt;}
._2f{width:21.405973pt;}
._2e{width:28.533653pt;}
._7{width:41.165333pt;}
._2b{width:46.951413pt;}
._2c{width:56.225653pt;}
._2d{width:61.238880pt;}
._2a{width:63.036853pt;}
._1d{width:76.340480pt;}
._25{width:86.489397pt;}
._22{width:89.937653pt;}
._f{width:94.352320pt;}
._20{width:99.714133pt;}
._d{width:124.693120pt;}
._30{width:129.123840pt;}
._17{width:152.132853pt;}
._19{width:161.342880pt;}
._6{width:171.527115pt;}
._13{width:179.194187pt;}
._18{width:200.545120pt;}
._1c{width:222.590933pt;}
._32{width:237.663637pt;}
._1b{width:250.819573pt;}
._1a{width:257.566560pt;}
._2{width:285.914453pt;}
._8{width:293.461813pt;}
._9{width:301.215573pt;}
._e{width:305.838933pt;}
._12{width:319.147147pt;}
._11{width:320.807061pt;}
._a{width:328.281493pt;}
._24{width:331.368320pt;}
._10{width:339.711467pt;}
._15{width:347.700064pt;}
._28{width:351.301973pt;}
._23{width:353.918667pt;}
._21{width:363.695147pt;}
._27{width:385.270827pt;}
._29{width:415.611627pt;}
._14{width:449.863019pt;}
._31{width:484.368053pt;}
._c{width:509.149813pt;}
._b{width:510.165760pt;}
._26{width:526.219093pt;}
._4{width:573.191147pt;}
._1e{width:586.712640pt;}
._16{width:633.010453pt;}
._1f{width:684.232053pt;}
.fs2{font-size:32.106667pt;}
.fs1{font-size:36.693333pt;}
.fs0{font-size:43.573333pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:1.720000pt;}
.y36{bottom:2.293333pt;}
.y5{bottom:5.160000pt;}
.y1a{bottom:11.466667pt;}
.y35{bottom:12.040000pt;}
.y4{bottom:16.053333pt;}
.y19{bottom:21.213333pt;}
.y6a{bottom:32.106667pt;}
.y68{bottom:41.853333pt;}
.y66{bottom:51.600000pt;}
.y64{bottom:61.346667pt;}
.y62{bottom:81.413333pt;}
.y60{bottom:101.480000pt;}
.y1{bottom:119.906667pt;}
.y5e{bottom:121.546667pt;}
.y6b{bottom:130.226667pt;}
.y5c{bottom:141.613333pt;}
.y5a{bottom:151.360000pt;}
.y69{bottom:160.040000pt;}
.y58{bottom:161.106667pt;}
.y67{bottom:169.786667pt;}
.y65{bottom:179.533333pt;}
.y56{bottom:181.173333pt;}
.y63{bottom:199.600000pt;}
.y54{bottom:201.240000pt;}
.y52{bottom:210.986667pt;}
.y61{bottom:219.666667pt;}
.y50{bottom:220.733333pt;}
.y4e{bottom:230.480000pt;}
.y5f{bottom:239.733333pt;}
.y4c{bottom:240.226667pt;}
.y5d{bottom:259.800000pt;}
.y4a{bottom:260.293333pt;}
.y5b{bottom:269.546667pt;}
.y59{bottom:279.293333pt;}
.y48{bottom:290.680000pt;}
.y57{bottom:299.360000pt;}
.y46{bottom:310.746667pt;}
.y55{bottom:319.426667pt;}
.y53{bottom:329.173333pt;}
.y44{bottom:330.813333pt;}
.y51{bottom:338.920000pt;}
.y4f{bottom:348.666667pt;}
.y42{bottom:350.880000pt;}
.y4d{bottom:358.413333pt;}
.y40{bottom:370.946667pt;}
.y4b{bottom:378.480000pt;}
.y3e{bottom:401.333333pt;}
.y49{bottom:408.866667pt;}
.y3c{bottom:421.400000pt;}
.y47{bottom:428.933333pt;}
.y3a{bottom:431.146667pt;}
.y38{bottom:440.893333pt;}
.y45{bottom:449.000000pt;}
.y37{bottom:450.640000pt;}
.y33{bottom:460.386667pt;}
.y43{bottom:469.066667pt;}
.y31{bottom:480.453333pt;}
.y41{bottom:489.133333pt;}
.y30{bottom:490.200000pt;}
.y2e{bottom:499.946667pt;}
.y2c{bottom:509.693333pt;}
.y2a{bottom:519.440000pt;}
.y3f{bottom:519.520000pt;}
.y28{bottom:529.186667pt;}
.y26{bottom:538.933333pt;}
.y3d{bottom:539.586667pt;}
.y3b{bottom:549.333333pt;}
.y25{bottom:559.000000pt;}
.y39{bottom:559.080000pt;}
.y23{bottom:568.746667pt;}
.y21{bottom:578.493333pt;}
.y34{bottom:578.573333pt;}
.y1f{bottom:588.240000pt;}
.y1d{bottom:597.986667pt;}
.y32{bottom:598.640000pt;}
.y1b{bottom:618.053333pt;}
.y2f{bottom:618.133333pt;}
.y17{bottom:627.800000pt;}
.y2d{bottom:627.880000pt;}
.y2b{bottom:637.626667pt;}
.y29{bottom:647.373333pt;}
.y27{bottom:657.120000pt;}
.y16{bottom:658.186667pt;}
.y13{bottom:667.933333pt;}
.y12{bottom:677.680000pt;}
.y24{bottom:686.933333pt;}
.y11{bottom:687.426667pt;}
.y22{bottom:696.680000pt;}
.y10{bottom:697.173333pt;}
.y20{bottom:706.426667pt;}
.yf{bottom:706.920000pt;}
.y1e{bottom:716.173333pt;}
.ye{bottom:716.666667pt;}
.yd{bottom:726.413333pt;}
.yc{bottom:736.160000pt;}
.y1c{bottom:736.240000pt;}
.yb{bottom:745.906667pt;}
.y18{bottom:745.986667pt;}
.ya{bottom:755.653333pt;}
.y9{bottom:765.400000pt;}
.y8{bottom:775.146667pt;}
.y7{bottom:784.893333pt;}
.y14{bottom:786.120000pt;}
.y6{bottom:803.240000pt;}
.y2{bottom:835.920000pt;}
.y3{bottom:912.826667pt;}
.h6{height:9.173333pt;}
.h8{height:19.493333pt;}
.h5{height:23.390208pt;}
.h4{height:26.713750pt;}
.h3{height:27.520000pt;}
.h7{height:29.813333pt;}
.h2{height:31.722578pt;}
.h9{height:44.030208pt;}
.h1{height:930.520000pt;}
.h0{height:1122.666667pt;}
.w2{width:77.973333pt;}
.w3{width:202.386667pt;}
.w1{width:647.293333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:1.720000pt;}
.x1{left:67.080000pt;}
.x2{left:80.266667pt;}
.x7{left:221.306667pt;}
.x6{left:352.026667pt;}
.x4{left:417.960000pt;}
.x5{left:554.986667pt;}
}




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