
    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_b101ff946c5b2bbdfa98d26b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2c2c4f01611477134059157b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_4f23720ae2686853a73fe727.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bd2fa819524831f336474aaa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls2{letter-spacing:-0.720000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.360000px;}
.ls3{letter-spacing:64.026720px;}
.ls4{letter-spacing:849.240000px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-4.464000px;}
._b{margin-left:-2.880000px;}
._0{margin-left:-1.010880px;}
._1{width:1.314720px;}
._4{width:2.592000px;}
._5{width:3.941280px;}
._9{width:5.114880px;}
._2{width:6.480000px;}
._3{width:7.541280px;}
._10{width:9.216000px;}
._17{width:10.728000px;}
._6{width:12.672000px;}
._19{width:13.934880px;}
._16{width:15.264000px;}
._7{width:16.922880px;}
._18{width:19.008000px;}
._1a{width:21.098880px;}
._1d{width:22.533120px;}
._c{width:24.480000px;}
._a{width:25.992000px;}
._f{width:27.792000px;}
._12{width:29.736000px;}
._13{width:31.320000px;}
._d{width:36.864000px;}
._e{width:38.160000px;}
._29{width:40.464000px;}
._8{width:41.688000px;}
._1b{width:43.488000px;}
._1c{width:44.496000px;}
._1f{width:46.886400px;}
._14{width:51.048000px;}
._15{width:52.056000px;}
._21{width:54.806400px;}
._27{width:58.766400px;}
._24{width:68.702400px;}
._23{width:88.646400px;}
._1e{width:102.758400px;}
._28{width:121.406400px;}
._22{width:140.486400px;}
._25{width:157.190400px;}
._26{width:167.270400px;}
._20{width:187.560000px;}
._2a{width:846.180000px;}
.fc1{color:rgb(68,114,196);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y55{bottom:7.020000px;}
.y6a{bottom:7.194000px;}
.y76{bottom:28.080000px;}
.y63{bottom:30.780000px;}
.y69{bottom:30.954000px;}
.y54{bottom:30.960000px;}
.y75{bottom:51.840000px;}
.y62{bottom:54.540000px;}
.y68{bottom:54.714000px;}
.y71{bottom:54.720000px;}
.y4{bottom:57.816000px;}
.y74{bottom:75.600000px;}
.y61{bottom:78.300000px;}
.y67{bottom:78.474000px;}
.y3{bottom:78.516000px;}
.y70{bottom:78.525000px;}
.y73{bottom:99.360000px;}
.y6d{bottom:100.620000px;}
.y60{bottom:102.240000px;}
.y6f{bottom:102.285000px;}
.y66{bottom:102.459000px;}
.y93{bottom:118.116000px;}
.y6c{bottom:124.380000px;}
.y26{bottom:124.776000px;}
.y5f{bottom:126.000000px;}
.y65{bottom:126.219000px;}
.y92{bottom:141.876000px;}
.y64{bottom:148.356000px;}
.y25{bottom:148.536000px;}
.y5e{bottom:149.760000px;}
.y44{bottom:149.976000px;}
.y91{bottom:165.810000px;}
.y24{bottom:172.470000px;}
.y5d{bottom:173.550000px;}
.y43{bottom:173.730000px;}
.y90{bottom:189.570000px;}
.y85{bottom:191.730000px;}
.y23{bottom:196.230000px;}
.y42{bottom:197.490000px;}
.y82{bottom:206.490000px;}
.y8f{bottom:213.330000px;}
.y22{bottom:219.990000px;}
.y41{bottom:221.250000px;}
.y84{bottom:223.950000px;}
.y81{bottom:230.250000px;}
.y8e{bottom:237.090000px;}
.y83{bottom:241.275000px;}
.y21{bottom:243.795000px;}
.y5c{bottom:245.010000px;}
.y40{bottom:245.055000px;}
.y80{bottom:254.235000px;}
.y8d{bottom:261.075000px;}
.y20{bottom:267.735000px;}
.y5b{bottom:268.770000px;}
.y3f{bottom:268.995000px;}
.y7f{bottom:277.995000px;}
.y8c{bottom:284.835000px;}
.y1f{bottom:291.495000px;}
.y5a{bottom:292.710000px;}
.y3e{bottom:292.755000px;}
.y7e{bottom:301.755000px;}
.y56{bottom:307.875000px;}
.y8b{bottom:308.595000px;}
.y1e{bottom:315.255000px;}
.y59{bottom:316.470000px;}
.y3d{bottom:316.515000px;}
.y7d{bottom:325.515000px;}
.y8a{bottom:332.355000px;}
.y1d{bottom:339.015000px;}
.y58{bottom:340.230000px;}
.y3c{bottom:340.275000px;}
.y7c{bottom:349.275000px;}
.y89{bottom:356.295000px;}
.y1c{bottom:362.955000px;}
.y57{bottom:363.990000px;}
.y3b{bottom:364.215000px;}
.y7b{bottom:373.215000px;}
.y88{bottom:380.055000px;}
.y1b{bottom:386.715000px;}
.y3a{bottom:387.975000px;}
.y7a{bottom:396.975000px;}
.y87{bottom:404.895000px;}
.y1a{bottom:410.475000px;}
.y39{bottom:411.735000px;}
.y79{bottom:420.735000px;}
.y86{bottom:432.615000px;}
.y19{bottom:434.235000px;}
.y38{bottom:435.495000px;}
.y78{bottom:444.495000px;}
.y18{bottom:458.175000px;}
.y37{bottom:459.435000px;}
.y77{bottom:468.465000px;}
.y17{bottom:481.965000px;}
.y36{bottom:483.225000px;}
.y72{bottom:494.205000px;}
.y16{bottom:505.725000px;}
.y35{bottom:506.985000px;}
.y15{bottom:529.485000px;}
.y34{bottom:530.745000px;}
.y14{bottom:553.245000px;}
.y33{bottom:554.685000px;}
.y13{bottom:577.185000px;}
.y32{bottom:578.445000px;}
.y12{bottom:600.945000px;}
.y31{bottom:602.205000px;}
.y11{bottom:624.705000px;}
.y30{bottom:625.965000px;}
.y6e{bottom:626.865000px;}
.y50{bottom:627.045000px;}
.y10{bottom:648.465000px;}
.y2f{bottom:649.905000px;}
.y4f{bottom:654.945000px;}
.yf{bottom:672.405000px;}
.y2e{bottom:673.665000px;}
.y4e{bottom:681.585000px;}
.ye{bottom:695.850000px;}
.y2d{bottom:697.470000px;}
.y4d{bottom:705.390000px;}
.y2c{bottom:721.230000px;}
.yd{bottom:725.010000px;}
.y53{bottom:728.970000px;}
.y4c{bottom:729.150000px;}
.y2b{bottom:744.990000px;}
.yc{bottom:748.590000px;}
.y4b{bottom:753.090000px;}
.y6b{bottom:762.450000px;}
.yb{bottom:768.570000px;}
.y2a{bottom:768.930000px;}
.y4a{bottom:776.850000px;}
.y29{bottom:792.690000px;}
.ya{bottom:793.590000px;}
.y52{bottom:793.770000px;}
.y49{bottom:800.610000px;}
.y9{bottom:816.450000px;}
.y51{bottom:821.490000px;}
.y48{bottom:824.370000px;}
.y8{bottom:831.030000px;}
.y28{bottom:840.210000px;}
.y47{bottom:848.310000px;}
.y7{bottom:851.010000px;}
.y27{bottom:865.230000px;}
.y6{bottom:870.810000px;}
.y46{bottom:872.070000px;}
.y5{bottom:892.950000px;}
.y45{bottom:895.830000px;}
.y2{bottom:929.160000px;}
.y1{bottom:949.860000px;}
.h6{height:38.139609px;}
.ha{height:47.700000px;}
.h8{height:54.421875px;}
.h7{height:58.621992px;}
.h5{height:58.651172px;}
.h4{height:59.038594px;}
.h10{height:60.226875px;}
.h2{height:70.664062px;}
.h9{height:72.562500px;}
.h3{height:84.898125px;}
.hf{height:116.100000px;}
.he{height:119.016000px;}
.hd{height:141.120000px;}
.hc{height:142.956000px;}
.hb{height:404.715000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:147.816000px;}
.w5{width:164.190000px;}
.w4{width:219.990000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x9{left:6.840000px;}
.xc{left:33.840000px;}
.xd{left:60.840000px;}
.x1{left:162.029988px;}
.x5{left:163.289988px;}
.x7{left:221.789988px;}
.x4{left:264.674988px;}
.x3{left:265.934988px;}
.xa{left:312.735000px;}
.x6{left:326.774988px;}
.xf{left:344.054988px;}
.x8{left:378.794988px;}
.x2{left:422.024988px;}
.xb{left:534.345000px;}
.xe{left:785.339988px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3{letter-spacing:56.912640pt;}
.ls4{letter-spacing:754.880000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-3.968000pt;}
._b{margin-left:-2.560000pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.168640pt;}
._4{width:2.304000pt;}
._5{width:3.503360pt;}
._9{width:4.546560pt;}
._2{width:5.760000pt;}
._3{width:6.703360pt;}
._10{width:8.192000pt;}
._17{width:9.536000pt;}
._6{width:11.264000pt;}
._19{width:12.386560pt;}
._16{width:13.568000pt;}
._7{width:15.042560pt;}
._18{width:16.896000pt;}
._1a{width:18.754560pt;}
._1d{width:20.029440pt;}
._c{width:21.760000pt;}
._a{width:23.104000pt;}
._f{width:24.704000pt;}
._12{width:26.432000pt;}
._13{width:27.840000pt;}
._d{width:32.768000pt;}
._e{width:33.920000pt;}
._29{width:35.968000pt;}
._8{width:37.056000pt;}
._1b{width:38.656000pt;}
._1c{width:39.552000pt;}
._1f{width:41.676800pt;}
._14{width:45.376000pt;}
._15{width:46.272000pt;}
._21{width:48.716800pt;}
._27{width:52.236800pt;}
._24{width:61.068800pt;}
._23{width:78.796800pt;}
._1e{width:91.340800pt;}
._28{width:107.916800pt;}
._22{width:124.876800pt;}
._25{width:139.724800pt;}
._26{width:148.684800pt;}
._20{width:166.720000pt;}
._2a{width:752.160000pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:6.240000pt;}
.y6a{bottom:6.394667pt;}
.y76{bottom:24.960000pt;}
.y63{bottom:27.360000pt;}
.y69{bottom:27.514667pt;}
.y54{bottom:27.520000pt;}
.y75{bottom:46.080000pt;}
.y62{bottom:48.480000pt;}
.y68{bottom:48.634667pt;}
.y71{bottom:48.640000pt;}
.y4{bottom:51.392000pt;}
.y74{bottom:67.200000pt;}
.y61{bottom:69.600000pt;}
.y67{bottom:69.754667pt;}
.y3{bottom:69.792000pt;}
.y70{bottom:69.800000pt;}
.y73{bottom:88.320000pt;}
.y6d{bottom:89.440000pt;}
.y60{bottom:90.880000pt;}
.y6f{bottom:90.920000pt;}
.y66{bottom:91.074667pt;}
.y93{bottom:104.992000pt;}
.y6c{bottom:110.560000pt;}
.y26{bottom:110.912000pt;}
.y5f{bottom:112.000000pt;}
.y65{bottom:112.194667pt;}
.y92{bottom:126.112000pt;}
.y64{bottom:131.872000pt;}
.y25{bottom:132.032000pt;}
.y5e{bottom:133.120000pt;}
.y44{bottom:133.312000pt;}
.y91{bottom:147.386667pt;}
.y24{bottom:153.306667pt;}
.y5d{bottom:154.266667pt;}
.y43{bottom:154.426667pt;}
.y90{bottom:168.506667pt;}
.y85{bottom:170.426667pt;}
.y23{bottom:174.426667pt;}
.y42{bottom:175.546667pt;}
.y82{bottom:183.546667pt;}
.y8f{bottom:189.626667pt;}
.y22{bottom:195.546667pt;}
.y41{bottom:196.666667pt;}
.y84{bottom:199.066667pt;}
.y81{bottom:204.666667pt;}
.y8e{bottom:210.746667pt;}
.y83{bottom:214.466667pt;}
.y21{bottom:216.706667pt;}
.y5c{bottom:217.786667pt;}
.y40{bottom:217.826667pt;}
.y80{bottom:225.986667pt;}
.y8d{bottom:232.066667pt;}
.y20{bottom:237.986667pt;}
.y5b{bottom:238.906667pt;}
.y3f{bottom:239.106667pt;}
.y7f{bottom:247.106667pt;}
.y8c{bottom:253.186667pt;}
.y1f{bottom:259.106667pt;}
.y5a{bottom:260.186667pt;}
.y3e{bottom:260.226667pt;}
.y7e{bottom:268.226667pt;}
.y56{bottom:273.666667pt;}
.y8b{bottom:274.306667pt;}
.y1e{bottom:280.226667pt;}
.y59{bottom:281.306667pt;}
.y3d{bottom:281.346667pt;}
.y7d{bottom:289.346667pt;}
.y8a{bottom:295.426667pt;}
.y1d{bottom:301.346667pt;}
.y58{bottom:302.426667pt;}
.y3c{bottom:302.466667pt;}
.y7c{bottom:310.466667pt;}
.y89{bottom:316.706667pt;}
.y1c{bottom:322.626667pt;}
.y57{bottom:323.546667pt;}
.y3b{bottom:323.746667pt;}
.y7b{bottom:331.746667pt;}
.y88{bottom:337.826667pt;}
.y1b{bottom:343.746667pt;}
.y3a{bottom:344.866667pt;}
.y7a{bottom:352.866667pt;}
.y87{bottom:359.906667pt;}
.y1a{bottom:364.866667pt;}
.y39{bottom:365.986667pt;}
.y79{bottom:373.986667pt;}
.y86{bottom:384.546667pt;}
.y19{bottom:385.986667pt;}
.y38{bottom:387.106667pt;}
.y78{bottom:395.106667pt;}
.y18{bottom:407.266667pt;}
.y37{bottom:408.386667pt;}
.y77{bottom:416.413333pt;}
.y17{bottom:428.413333pt;}
.y36{bottom:429.533333pt;}
.y72{bottom:439.293333pt;}
.y16{bottom:449.533333pt;}
.y35{bottom:450.653333pt;}
.y15{bottom:470.653333pt;}
.y34{bottom:471.773333pt;}
.y14{bottom:491.773333pt;}
.y33{bottom:493.053333pt;}
.y13{bottom:513.053333pt;}
.y32{bottom:514.173333pt;}
.y12{bottom:534.173333pt;}
.y31{bottom:535.293333pt;}
.y11{bottom:555.293333pt;}
.y30{bottom:556.413333pt;}
.y6e{bottom:557.213333pt;}
.y50{bottom:557.373333pt;}
.y10{bottom:576.413333pt;}
.y2f{bottom:577.693333pt;}
.y4f{bottom:582.173333pt;}
.yf{bottom:597.693333pt;}
.y2e{bottom:598.813333pt;}
.y4e{bottom:605.853333pt;}
.ye{bottom:618.533333pt;}
.y2d{bottom:619.973333pt;}
.y4d{bottom:627.013333pt;}
.y2c{bottom:641.093333pt;}
.yd{bottom:644.453333pt;}
.y53{bottom:647.973333pt;}
.y4c{bottom:648.133333pt;}
.y2b{bottom:662.213333pt;}
.yc{bottom:665.413333pt;}
.y4b{bottom:669.413333pt;}
.y6b{bottom:677.733333pt;}
.yb{bottom:683.173333pt;}
.y2a{bottom:683.493333pt;}
.y4a{bottom:690.533333pt;}
.y29{bottom:704.613333pt;}
.ya{bottom:705.413333pt;}
.y52{bottom:705.573333pt;}
.y49{bottom:711.653333pt;}
.y9{bottom:725.733333pt;}
.y51{bottom:730.213333pt;}
.y48{bottom:732.773333pt;}
.y8{bottom:738.693333pt;}
.y28{bottom:746.853333pt;}
.y47{bottom:754.053333pt;}
.y7{bottom:756.453333pt;}
.y27{bottom:769.093333pt;}
.y6{bottom:774.053333pt;}
.y46{bottom:775.173333pt;}
.y5{bottom:793.733333pt;}
.y45{bottom:796.293333pt;}
.y2{bottom:825.920000pt;}
.y1{bottom:844.320000pt;}
.h6{height:33.901875pt;}
.ha{height:42.400000pt;}
.h8{height:48.375000pt;}
.h7{height:52.108438pt;}
.h5{height:52.134375pt;}
.h4{height:52.478750pt;}
.h10{height:53.535000pt;}
.h2{height:62.812500pt;}
.h9{height:64.500000pt;}
.h3{height:75.465000pt;}
.hf{height:103.200000pt;}
.he{height:105.792000pt;}
.hd{height:125.440000pt;}
.hc{height:127.072000pt;}
.hb{height:359.746667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:131.392000pt;}
.w5{width:145.946667pt;}
.w4{width:195.546667pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x9{left:6.080000pt;}
.xc{left:30.080000pt;}
.xd{left:54.080000pt;}
.x1{left:144.026656pt;}
.x5{left:145.146656pt;}
.x7{left:197.146656pt;}
.x4{left:235.266656pt;}
.x3{left:236.386656pt;}
.xa{left:277.986667pt;}
.x6{left:290.466656pt;}
.xf{left:305.826656pt;}
.x8{left:336.706656pt;}
.x2{left:375.133323pt;}
.xb{left:474.973333pt;}
.xe{left:698.079989pt;}
}




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