
    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_b08d6eeed05e7a284a82a7be.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_76190bf6ae1826831f155e5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_a9102321ec7557365f45769a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721680;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_eae6c43b95e8f1bc645c9533.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_b7ace3db0659af4fa7cffc0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_417157cc48425e4fed195146.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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:-27.359942px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759995px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.062159px;}
.ls1{letter-spacing:0.359109px;}
.ls3{letter-spacing:11.015273px;}
.ls4{letter-spacing:102.455269px;}
.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:-18.000676px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-4.953280px;}
._e{margin-left:-3.827113px;}
._d{margin-left:-2.758604px;}
._1{margin-left:-1.109292px;}
._0{width:1.479712px;}
._5{width:3.372033px;}
._9{width:5.372639px;}
._f{width:6.394741px;}
._7{width:7.420216px;}
._a{width:8.420942px;}
._8{width:9.565390px;}
._14{width:10.993911px;}
._11{width:12.507939px;}
._10{width:13.527227px;}
._19{width:14.655082px;}
._6{width:16.068697px;}
._18{width:19.089435px;}
._13{width:20.881347px;}
._12{width:21.968419px;}
._b{width:23.882960px;}
._c{width:25.260855px;}
._15{width:28.922024px;}
._1f{width:30.087281px;}
._16{width:33.001427px;}
._17{width:34.143064px;}
._2{width:36.121405px;}
._1b{width:55.006129px;}
._1c{width:56.015010px;}
._1e{width:145.878604px;}
._4{width:194.777160px;}
._3{width:196.217214px;}
._1d{width:387.784066px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.761620px;}
.fs4{font-size:48.241800px;}
.fs5{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs1{font-size:84.243145px;}
.fs2{font-size:131.764946px;}
.y0{bottom:0.000000px;}
.y77{bottom:3.959988px;}
.y4{bottom:3.960000px;}
.y79{bottom:3.960021px;}
.y75{bottom:3.960023px;}
.yb{bottom:7.200002px;}
.y8{bottom:15.120072px;}
.ye{bottom:18.360077px;}
.yd{bottom:40.680039px;}
.yc{bottom:55.620072px;}
.y40{bottom:97.920043px;}
.y74{bottom:102.060104px;}
.y8e{bottom:105.480011px;}
.y73{bottom:106.920043px;}
.y3f{bottom:118.620072px;}
.y8d{bottom:126.180039px;}
.y72{bottom:127.620072px;}
.y3e{bottom:139.320099px;}
.y8c{bottom:146.880066px;}
.y71{bottom:148.140060px;}
.y3d{bottom:160.020058px;}
.y8b{bottom:167.580093px;}
.y70{bottom:168.840088px;}
.y3c{bottom:180.720085px;}
.y8a{bottom:188.280052px;}
.y6f{bottom:189.540047px;}
.y3b{bottom:201.420043px;}
.y89{bottom:208.980079px;}
.y6e{bottom:210.240074px;}
.y3a{bottom:222.120072px;}
.y88{bottom:229.680039px;}
.y6d{bottom:230.940033px;}
.y39{bottom:242.820099px;}
.y87{bottom:250.380066px;}
.y6c{bottom:251.640060px;}
.y38{bottom:263.520058px;}
.y86{bottom:271.080093px;}
.y6b{bottom:272.340088px;}
.y37{bottom:284.220085px;}
.y85{bottom:291.780052px;}
.y6a{bottom:293.040047px;}
.y36{bottom:304.920043px;}
.y84{bottom:312.480079px;}
.y69{bottom:313.740074px;}
.y35{bottom:325.620072px;}
.y83{bottom:333.180039px;}
.y68{bottom:334.440033px;}
.y34{bottom:346.320099px;}
.y82{bottom:353.880066px;}
.y67{bottom:355.140060px;}
.y33{bottom:367.020058px;}
.y81{bottom:374.580093px;}
.y66{bottom:375.840088px;}
.y32{bottom:387.720085px;}
.y80{bottom:395.280052px;}
.y65{bottom:396.540047px;}
.y31{bottom:408.420043px;}
.y7f{bottom:415.980079px;}
.y64{bottom:417.240074px;}
.y30{bottom:429.120072px;}
.y7e{bottom:436.680039px;}
.y63{bottom:437.940033px;}
.y2f{bottom:449.820099px;}
.y7d{bottom:457.380066px;}
.y62{bottom:458.640060px;}
.y2e{bottom:470.520058px;}
.y7c{bottom:478.620072px;}
.y61{bottom:479.340088px;}
.y2d{bottom:491.220085px;}
.y60{bottom:500.040047px;}
.y7b{bottom:502.200096px;}
.y2c{bottom:511.920043px;}
.y5f{bottom:520.740074px;}
.y7a{bottom:522.900055px;}
.y2b{bottom:533.160049px;}
.y78{bottom:540.360077px;}
.y5e{bottom:541.440033px;}
.y2a{bottom:557.280052px;}
.y5d{bottom:562.140060px;}
.y29{bottom:581.580093px;}
.y5c{bottom:582.840088px;}
.y5b{bottom:603.540047px;}
.y28{bottom:605.160049px;}
.y5a{bottom:624.240074px;}
.y27{bottom:625.860077px;}
.y59{bottom:644.940033px;}
.y26{bottom:646.560036px;}
.y58{bottom:665.640060px;}
.y25{bottom:667.260064px;}
.y57{bottom:686.340088px;}
.y24{bottom:687.960056px;}
.y56{bottom:707.040081px;}
.y23{bottom:708.660049px;}
.y55{bottom:727.740074px;}
.y22{bottom:729.360077px;}
.y54{bottom:748.440067px;}
.y21{bottom:750.060070px;}
.y53{bottom:769.140060px;}
.y20{bottom:770.760064px;}
.y52{bottom:789.840054px;}
.y1f{bottom:791.460056px;}
.y51{bottom:810.540081px;}
.y1e{bottom:812.160049px;}
.y50{bottom:831.240074px;}
.y1d{bottom:832.860077px;}
.y76{bottom:834.120072px;}
.y4f{bottom:851.940067px;}
.y1c{bottom:853.200061px;}
.y1b{bottom:872.100083px;}
.y4e{bottom:872.640060px;}
.y1a{bottom:891.180073px;}
.y4d{bottom:893.340054px;}
.y19{bottom:910.440067px;}
.y4c{bottom:914.040081px;}
.y4b{bottom:934.740074px;}
.y18{bottom:937.980079px;}
.y17{bottom:951.840054px;}
.y4a{bottom:955.440067px;}
.y49{bottom:976.140060px;}
.y16{bottom:979.380066px;}
.y15{bottom:993.240074px;}
.y48{bottom:996.840070px;}
.y47{bottom:1017.540064px;}
.y14{bottom:1028.340070px;}
.y46{bottom:1038.240074px;}
.y45{bottom:1058.940067px;}
.y13{bottom:1066.500068px;}
.y44{bottom:1079.640060px;}
.y12{bottom:1090.620072px;}
.y43{bottom:1100.340070px;}
.y11{bottom:1114.740074px;}
.y42{bottom:1121.040064px;}
.y10{bottom:1138.860068px;}
.y41{bottom:1141.740066px;}
.y7{bottom:1162.260064px;}
.yf{bottom:1176.660067px;}
.y6{bottom:1184.040064px;}
.y5{bottom:1204.740066px;}
.ya{bottom:1217.880066px;}
.y3{bottom:1221.480067px;}
.y9{bottom:1225.080068px;}
.y2{bottom:1225.440067px;}
.y1{bottom:1246.140066px;}
.h11{height:20.159981px;}
.h4{height:20.520000px;}
.h9{height:29.465596px;}
.he{height:33.684460px;}
.h8{height:37.260000px;}
.hf{height:46.738624px;}
.h2{height:50.275326px;}
.h3{height:50.802689px;}
.h5{height:51.365211px;}
.h12{height:52.419938px;}
.h10{height:52.630883px;}
.ha{height:54.248131px;}
.hb{height:58.822118px;}
.hc{height:59.439133px;}
.hd{height:60.106234px;}
.h6{height:61.578120px;}
.h7{height:92.968919px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w5{width:9.000000px;}
.w3{width:12.779983px;}
.w2{width:101.700027px;}
.w4{width:293.939998px;}
.w6{width:450.899987px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x7{left:115.739997px;}
.x1c{left:127.439999px;}
.xd{left:133.379998px;}
.xf{left:138.060001px;}
.xb{left:142.379998px;}
.x14{left:148.860008px;}
.x8{left:152.819996px;}
.x19{left:168.120002px;}
.x17{left:220.860008px;}
.x1a{left:249.840002px;}
.x9{left:287.280001px;}
.x15{left:299.339985px;}
.xa{left:326.519989px;}
.xe{left:332.279983px;}
.xc{left:334.620002px;}
.x12{left:371.519989px;}
.x11{left:374.040012px;}
.x1d{left:379.980011px;}
.x1e{left:385.560001px;}
.x1b{left:391.139992px;}
.x13{left:405.000000px;}
.x10{left:446.040012px;}
.x6{left:471.240006px;}
.x16{left:593.279983px;}
.x18{left:671.759994px;}
.x3{left:736.379998px;}
.x2{left:790.740006px;}
.x4{left:794.340019px;}
.x5{left:827.820030px;}
@media print{
.v2{vertical-align:-24.319948pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.055252pt;}
.ls1{letter-spacing:0.319208pt;}
.ls3{letter-spacing:9.791354pt;}
.ls4{letter-spacing:91.071350pt;}
.ws0{word-spacing:-16.000601pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-4.402915pt;}
._e{margin-left:-3.401878pt;}
._d{margin-left:-2.452092pt;}
._1{margin-left:-0.986037pt;}
._0{width:1.315299pt;}
._5{width:2.997363pt;}
._9{width:4.775679pt;}
._f{width:5.684214pt;}
._7{width:6.595748pt;}
._a{width:7.485281pt;}
._8{width:8.502569pt;}
._14{width:9.772366pt;}
._11{width:11.118168pt;}
._10{width:12.024202pt;}
._19{width:13.026739pt;}
._6{width:14.283286pt;}
._18{width:16.968387pt;}
._13{width:18.561197pt;}
._12{width:19.527483pt;}
._b{width:21.229297pt;}
._c{width:22.454093pt;}
._15{width:25.708466pt;}
._1f{width:26.744250pt;}
._16{width:29.334602pt;}
._17{width:30.349390pt;}
._2{width:32.107915pt;}
._1b{width:48.894336pt;}
._1c{width:49.791120pt;}
._1e{width:129.669870pt;}
._4{width:173.135253pt;}
._3{width:174.415301pt;}
._1d{width:344.696947pt;}
.fs3{font-size:37.121440pt;}
.fs4{font-size:42.881600pt;}
.fs5{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs1{font-size:74.882796pt;}
.fs2{font-size:117.124396pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:3.519989pt;}
.y4{bottom:3.520000pt;}
.y79{bottom:3.520019pt;}
.y75{bottom:3.520020pt;}
.yb{bottom:6.400002pt;}
.y8{bottom:13.440064pt;}
.ye{bottom:16.320069pt;}
.yd{bottom:36.160035pt;}
.yc{bottom:49.440064pt;}
.y40{bottom:87.040039pt;}
.y74{bottom:90.720093pt;}
.y8e{bottom:93.760010pt;}
.y73{bottom:95.040039pt;}
.y3f{bottom:105.440064pt;}
.y8d{bottom:112.160035pt;}
.y72{bottom:113.440064pt;}
.y3e{bottom:123.840088pt;}
.y8c{bottom:130.560059pt;}
.y71{bottom:131.680054pt;}
.y3d{bottom:142.240052pt;}
.y8b{bottom:148.960083pt;}
.y70{bottom:150.080079pt;}
.y3c{bottom:160.640076pt;}
.y8a{bottom:167.360047pt;}
.y6f{bottom:168.480042pt;}
.y3b{bottom:179.040039pt;}
.y89{bottom:185.760071pt;}
.y6e{bottom:186.880066pt;}
.y3a{bottom:197.440064pt;}
.y88{bottom:204.160035pt;}
.y6d{bottom:205.280030pt;}
.y39{bottom:215.840088pt;}
.y87{bottom:222.560059pt;}
.y6c{bottom:223.680054pt;}
.y38{bottom:234.240052pt;}
.y86{bottom:240.960083pt;}
.y6b{bottom:242.080079pt;}
.y37{bottom:252.640076pt;}
.y85{bottom:259.360047pt;}
.y6a{bottom:260.480042pt;}
.y36{bottom:271.040039pt;}
.y84{bottom:277.760071pt;}
.y69{bottom:278.880066pt;}
.y35{bottom:289.440064pt;}
.y83{bottom:296.160035pt;}
.y68{bottom:297.280030pt;}
.y34{bottom:307.840088pt;}
.y82{bottom:314.560059pt;}
.y67{bottom:315.680054pt;}
.y33{bottom:326.240052pt;}
.y81{bottom:332.960083pt;}
.y66{bottom:334.080079pt;}
.y32{bottom:344.640076pt;}
.y80{bottom:351.360047pt;}
.y65{bottom:352.480042pt;}
.y31{bottom:363.040039pt;}
.y7f{bottom:369.760071pt;}
.y64{bottom:370.880066pt;}
.y30{bottom:381.440064pt;}
.y7e{bottom:388.160035pt;}
.y63{bottom:389.280030pt;}
.y2f{bottom:399.840088pt;}
.y7d{bottom:406.560059pt;}
.y62{bottom:407.680054pt;}
.y2e{bottom:418.240052pt;}
.y7c{bottom:425.440064pt;}
.y61{bottom:426.080079pt;}
.y2d{bottom:436.640076pt;}
.y60{bottom:444.480042pt;}
.y7b{bottom:446.400086pt;}
.y2c{bottom:455.040039pt;}
.y5f{bottom:462.880066pt;}
.y7a{bottom:464.800049pt;}
.y2b{bottom:473.920044pt;}
.y78{bottom:480.320069pt;}
.y5e{bottom:481.280030pt;}
.y2a{bottom:495.360047pt;}
.y5d{bottom:499.680054pt;}
.y29{bottom:516.960083pt;}
.y5c{bottom:518.080079pt;}
.y5b{bottom:536.480042pt;}
.y28{bottom:537.920044pt;}
.y5a{bottom:554.880066pt;}
.y27{bottom:556.320069pt;}
.y59{bottom:573.280030pt;}
.y26{bottom:574.720032pt;}
.y58{bottom:591.680054pt;}
.y25{bottom:593.120057pt;}
.y57{bottom:610.080079pt;}
.y24{bottom:611.520050pt;}
.y56{bottom:628.480072pt;}
.y23{bottom:629.920044pt;}
.y55{bottom:646.880066pt;}
.y22{bottom:648.320069pt;}
.y54{bottom:665.280060pt;}
.y21{bottom:666.720063pt;}
.y53{bottom:683.680054pt;}
.y20{bottom:685.120057pt;}
.y52{bottom:702.080048pt;}
.y1f{bottom:703.520050pt;}
.y51{bottom:720.480072pt;}
.y1e{bottom:721.920044pt;}
.y50{bottom:738.880066pt;}
.y1d{bottom:740.320069pt;}
.y76{bottom:741.440064pt;}
.y4f{bottom:757.280060pt;}
.y1c{bottom:758.400055pt;}
.y1b{bottom:775.200074pt;}
.y4e{bottom:775.680054pt;}
.y1a{bottom:792.160065pt;}
.y4d{bottom:794.080048pt;}
.y19{bottom:809.280060pt;}
.y4c{bottom:812.480072pt;}
.y4b{bottom:830.880066pt;}
.y18{bottom:833.760071pt;}
.y17{bottom:846.080048pt;}
.y4a{bottom:849.280060pt;}
.y49{bottom:867.680054pt;}
.y16{bottom:870.560059pt;}
.y15{bottom:882.880066pt;}
.y48{bottom:886.080063pt;}
.y47{bottom:904.480057pt;}
.y14{bottom:914.080063pt;}
.y46{bottom:922.880066pt;}
.y45{bottom:941.280060pt;}
.y13{bottom:948.000061pt;}
.y44{bottom:959.680054pt;}
.y12{bottom:969.440064pt;}
.y43{bottom:978.080063pt;}
.y11{bottom:990.880066pt;}
.y42{bottom:996.480057pt;}
.y10{bottom:1012.320061pt;}
.y41{bottom:1014.880059pt;}
.y7{bottom:1033.120057pt;}
.yf{bottom:1045.920060pt;}
.y6{bottom:1052.480057pt;}
.y5{bottom:1070.880059pt;}
.ya{bottom:1082.560059pt;}
.y3{bottom:1085.760060pt;}
.y9{bottom:1088.960061pt;}
.y2{bottom:1089.280060pt;}
.y1{bottom:1107.680059pt;}
.h11{height:17.919983pt;}
.h4{height:18.240000pt;}
.h9{height:26.191641pt;}
.he{height:29.941742pt;}
.h8{height:33.120000pt;}
.hf{height:41.545443pt;}
.h2{height:44.689179pt;}
.h3{height:45.157946pt;}
.h5{height:45.657965pt;}
.h12{height:46.595500pt;}
.h10{height:46.783007pt;}
.ha{height:48.220561pt;}
.hb{height:52.286327pt;}
.hc{height:52.834785pt;}
.hd{height:53.427764pt;}
.h6{height:54.736106pt;}
.h7{height:82.639039pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w5{width:8.000000pt;}
.w3{width:11.359985pt;}
.w2{width:90.400024pt;}
.w4{width:261.279998pt;}
.w6{width:400.799988pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x7{left:102.879997pt;}
.x1c{left:113.279999pt;}
.xd{left:118.559998pt;}
.xf{left:122.720001pt;}
.xb{left:126.559998pt;}
.x14{left:132.320007pt;}
.x8{left:135.839996pt;}
.x19{left:149.440002pt;}
.x17{left:196.320007pt;}
.x1a{left:222.080002pt;}
.x9{left:255.360001pt;}
.x15{left:266.079987pt;}
.xa{left:290.239990pt;}
.xe{left:295.359985pt;}
.xc{left:297.440002pt;}
.x12{left:330.239990pt;}
.x11{left:332.480011pt;}
.x1d{left:337.760010pt;}
.x1e{left:342.720001pt;}
.x1b{left:347.679993pt;}
.x13{left:360.000000pt;}
.x10{left:396.480011pt;}
.x6{left:418.880005pt;}
.x16{left:527.359985pt;}
.x18{left:597.119995pt;}
.x3{left:654.559998pt;}
.x2{left:702.880005pt;}
.x4{left:706.080017pt;}
.x5{left:735.840027pt;}
}




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