
    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_a702018d941d48036b4f24e1.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_857f57b475cfe1083158df7a.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_87b90b9c31873e0c4452cc20.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_46f980e6d7c3868764946817.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_62018bc25cce2ed53c629fa1.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_b16b8572062cc199a610c4b2.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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.062159px;}
.ls1{letter-spacing:17.999324px;}
.ls4{letter-spacing:102.455269px;}
.ls3{letter-spacing:138.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;}
._1b{margin-left:-5.514675px;}
._1a{margin-left:-4.113436px;}
._9{margin-left:-2.886577px;}
._1{margin-left:-1.109292px;}
._0{width:1.479712px;}
._f{width:2.946673px;}
._6{width:3.948742px;}
._5{width:4.958843px;}
._d{width:6.169107px;}
._8{width:7.980206px;}
._7{width:9.503232px;}
._c{width:10.511270px;}
._11{width:11.905761px;}
._19{width:13.763486px;}
._12{width:14.871090px;}
._13{width:15.913160px;}
._1c{width:16.924011px;}
._e{width:19.586240px;}
._10{width:20.939372px;}
._14{width:23.053522px;}
._15{width:25.000408px;}
._b{width:26.703159px;}
._a{width:28.079930px;}
._18{width:29.384979px;}
._17{width:30.495114px;}
._16{width:31.644907px;}
._1d{width:33.291066px;}
._2{width:36.121405px;}
._4{width:194.777160px;}
._3{width:196.217214px;}
._1e{width:843.273886px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.762250px;}
.fs0{font-size:72.002705px;}
.fs1{font-size:84.243145px;}
.fs2{font-size:131.764946px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.960000px;}
.yb{bottom:7.200002px;}
.y8{bottom:15.120072px;}
.ye{bottom:18.360077px;}
.yd{bottom:40.680039px;}
.yc{bottom:51.300110px;}
.ya2{bottom:91.440033px;}
.y6d{bottom:91.980011px;}
.y87{bottom:94.500000px;}
.y3d{bottom:95.580093px;}
.ya1{bottom:112.140060px;}
.y6c{bottom:114.300041px;}
.y86{bottom:116.820099px;}
.y3c{bottom:117.900055px;}
.ya0{bottom:132.840088px;}
.y6b{bottom:136.620072px;}
.y85{bottom:139.140060px;}
.y3b{bottom:140.220085px;}
.y9f{bottom:153.540047px;}
.y6a{bottom:158.940033px;}
.y84{bottom:161.460091px;}
.y3a{bottom:162.720085px;}
.y9e{bottom:174.240074px;}
.y69{bottom:181.260064px;}
.y83{bottom:183.780052px;}
.y39{bottom:185.040047px;}
.y9d{bottom:194.940033px;}
.y68{bottom:203.580093px;}
.y82{bottom:206.100083px;}
.y38{bottom:207.360077px;}
.y9c{bottom:215.640060px;}
.y67{bottom:225.900055px;}
.y81{bottom:228.420043px;}
.y37{bottom:229.680039px;}
.y9b{bottom:236.340088px;}
.y66{bottom:248.220085px;}
.y80{bottom:250.740074px;}
.y36{bottom:252.000068px;}
.y9a{bottom:257.040047px;}
.y65{bottom:270.540047px;}
.y7f{bottom:273.240074px;}
.y35{bottom:274.320099px;}
.y99{bottom:277.740074px;}
.y64{bottom:292.860077px;}
.y7e{bottom:295.560036px;}
.y34{bottom:296.640060px;}
.y98{bottom:298.440033px;}
.y63{bottom:315.360077px;}
.y7d{bottom:317.880066px;}
.y33{bottom:318.960091px;}
.y97{bottom:319.140060px;}
.y62{bottom:337.680039px;}
.y96{bottom:339.840088px;}
.y7c{bottom:340.200096px;}
.y32{bottom:341.280052px;}
.y61{bottom:360.000068px;}
.y95{bottom:360.540047px;}
.y7b{bottom:362.520058px;}
.y31{bottom:363.600083px;}
.y94{bottom:381.240074px;}
.y60{bottom:382.320099px;}
.y7a{bottom:384.840088px;}
.y30{bottom:386.100083px;}
.y93{bottom:401.940033px;}
.y5f{bottom:404.640060px;}
.y79{bottom:407.160049px;}
.y2f{bottom:408.420043px;}
.y92{bottom:422.640060px;}
.y5e{bottom:426.960091px;}
.y78{bottom:429.480079px;}
.y2e{bottom:430.740074px;}
.y91{bottom:443.340088px;}
.y5d{bottom:449.280052px;}
.y77{bottom:451.800041px;}
.y2d{bottom:453.060036px;}
.y90{bottom:464.040047px;}
.y5c{bottom:471.600083px;}
.y76{bottom:474.120072px;}
.y2c{bottom:476.280052px;}
.y8f{bottom:484.740074px;}
.y5b{bottom:493.920043px;}
.y75{bottom:496.440033px;}
.y2b{bottom:502.200096px;}
.y8e{bottom:505.440033px;}
.y5a{bottom:516.240074px;}
.y74{bottom:518.940033px;}
.y8d{bottom:526.140060px;}
.y2a{bottom:528.300041px;}
.y59{bottom:538.560036px;}
.y73{bottom:541.260064px;}
.y8c{bottom:546.840088px;}
.y29{bottom:553.500068px;}
.y58{bottom:561.060036px;}
.y72{bottom:563.580093px;}
.y8b{bottom:567.540047px;}
.y28{bottom:575.820099px;}
.y57{bottom:583.380066px;}
.y71{bottom:585.900055px;}
.y8a{bottom:588.240074px;}
.y27{bottom:598.140060px;}
.y56{bottom:605.700096px;}
.y70{bottom:608.220085px;}
.y89{bottom:608.940033px;}
.y26{bottom:620.460091px;}
.y55{bottom:628.020058px;}
.y88{bottom:629.640060px;}
.y6f{bottom:630.540047px;}
.y25{bottom:642.960091px;}
.y6e{bottom:649.080093px;}
.y54{bottom:650.340088px;}
.y24{bottom:665.280052px;}
.y53{bottom:672.660049px;}
.y23{bottom:687.600083px;}
.y52{bottom:694.980079px;}
.y22{bottom:709.920078px;}
.y51{bottom:717.300076px;}
.y21{bottom:732.240074px;}
.y50{bottom:739.620072px;}
.y20{bottom:754.560070px;}
.y4f{bottom:761.940067px;}
.y1f{bottom:776.880066px;}
.y4e{bottom:784.440067px;}
.y1e{bottom:799.200061px;}
.y4d{bottom:806.760064px;}
.y1d{bottom:821.520058px;}
.y4c{bottom:829.080059px;}
.y1c{bottom:843.840054px;}
.y4b{bottom:851.400055px;}
.y1b{bottom:866.340054px;}
.y4a{bottom:873.720051px;}
.y1a{bottom:888.660049px;}
.y49{bottom:896.040081px;}
.y19{bottom:911.700061px;}
.y48{bottom:918.360077px;}
.y18{bottom:937.800076px;}
.y47{bottom:940.680073px;}
.y46{bottom:963.000068px;}
.y17{bottom:963.900055px;}
.y45{bottom:985.320065px;}
.y16{bottom:989.100065px;}
.y44{bottom:1007.640060px;}
.y15{bottom:1011.420061px;}
.y43{bottom:1030.140060px;}
.y14{bottom:1034.640060px;}
.y42{bottom:1052.460074px;}
.y13{bottom:1060.740074px;}
.y41{bottom:1074.780069px;}
.ya5{bottom:1076.760064px;}
.y12{bottom:1086.660067px;}
.y40{bottom:1097.100065px;}
.ya4{bottom:1100.340070px;}
.y11{bottom:1112.760064px;}
.y3f{bottom:1119.420069px;}
.ya3{bottom:1121.040064px;}
.y10{bottom:1138.860068px;}
.y3e{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;}
.h4{height:20.520000px;}
.h8{height:37.260000px;}
.h9{height:42.166236px;}
.h2{height:50.275326px;}
.h3{height:50.802689px;}
.h5{height:51.365211px;}
.he{height:52.419938px;}
.hd{height:52.630883px;}
.ha{height:54.248131px;}
.hb{height:58.822118px;}
.hc{height:59.439133px;}
.h6{height:61.578120px;}
.h7{height:92.968919px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:12.779983px;}
.w2{width:101.700027px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x12{left:103.500000px;}
.x7{left:106.739997px;}
.xc{left:138.060001px;}
.xb{left:203.400003px;}
.x8{left:279.719999px;}
.xa{left:307.800007px;}
.x10{left:335.519989px;}
.xe{left:346.860008px;}
.xf{left:371.519989px;}
.xd{left:374.040012px;}
.x13{left:385.019989px;}
.x9{left:446.040012px;}
.x6{left:471.240006px;}
.x11{left:668.879998px;}
.x3{left:736.379998px;}
.x2{left:790.740006px;}
.x4{left:794.340019px;}
.x5{left:823.320030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.055252pt;}
.ls1{letter-spacing:15.999399pt;}
.ls4{letter-spacing:91.071350pt;}
.ls3{letter-spacing:123.071350pt;}
.ws0{word-spacing:-16.000601pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-4.901933pt;}
._1a{margin-left:-3.656387pt;}
._9{margin-left:-2.565846pt;}
._1{margin-left:-0.986037pt;}
._0{width:1.315299pt;}
._f{width:2.619265pt;}
._6{width:3.509993pt;}
._5{width:4.407860pt;}
._d{width:5.483650pt;}
._8{width:7.093516pt;}
._7{width:8.447317pt;}
._c{width:9.343351pt;}
._11{width:10.582898pt;}
._19{width:12.234210pt;}
._12{width:13.218746pt;}
._13{width:14.145031pt;}
._1c{width:15.043565pt;}
._e{width:17.409991pt;}
._10{width:18.612775pt;}
._14{width:20.492020pt;}
._15{width:22.222585pt;}
._b{width:23.736141pt;}
._a{width:24.959937pt;}
._18{width:26.119981pt;}
._17{width:27.106768pt;}
._16{width:28.128807pt;}
._1d{width:29.592059pt;}
._2{width:32.107915pt;}
._4{width:173.135253pt;}
._3{width:174.415301pt;}
._1e{width:749.576788pt;}
.fs3{font-size:53.122000pt;}
.fs0{font-size:64.002404pt;}
.fs1{font-size:74.882796pt;}
.fs2{font-size:117.124396pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.520000pt;}
.yb{bottom:6.400002pt;}
.y8{bottom:13.440064pt;}
.ye{bottom:16.320069pt;}
.yd{bottom:36.160035pt;}
.yc{bottom:45.600098pt;}
.ya2{bottom:81.280030pt;}
.y6d{bottom:81.760010pt;}
.y87{bottom:84.000000pt;}
.y3d{bottom:84.960083pt;}
.ya1{bottom:99.680054pt;}
.y6c{bottom:101.600037pt;}
.y86{bottom:103.840088pt;}
.y3c{bottom:104.800049pt;}
.ya0{bottom:118.080079pt;}
.y6b{bottom:121.440064pt;}
.y85{bottom:123.680054pt;}
.y3b{bottom:124.640076pt;}
.y9f{bottom:136.480042pt;}
.y6a{bottom:141.280030pt;}
.y84{bottom:143.520081pt;}
.y3a{bottom:144.640076pt;}
.y9e{bottom:154.880066pt;}
.y69{bottom:161.120057pt;}
.y83{bottom:163.360047pt;}
.y39{bottom:164.480042pt;}
.y9d{bottom:173.280030pt;}
.y68{bottom:180.960083pt;}
.y82{bottom:183.200074pt;}
.y38{bottom:184.320069pt;}
.y9c{bottom:191.680054pt;}
.y67{bottom:200.800049pt;}
.y81{bottom:203.040039pt;}
.y37{bottom:204.160035pt;}
.y9b{bottom:210.080079pt;}
.y66{bottom:220.640076pt;}
.y80{bottom:222.880066pt;}
.y36{bottom:224.000061pt;}
.y9a{bottom:228.480042pt;}
.y65{bottom:240.480042pt;}
.y7f{bottom:242.880066pt;}
.y35{bottom:243.840088pt;}
.y99{bottom:246.880066pt;}
.y64{bottom:260.320069pt;}
.y7e{bottom:262.720032pt;}
.y34{bottom:263.680054pt;}
.y98{bottom:265.280030pt;}
.y63{bottom:280.320069pt;}
.y7d{bottom:282.560059pt;}
.y33{bottom:283.520081pt;}
.y97{bottom:283.680054pt;}
.y62{bottom:300.160035pt;}
.y96{bottom:302.080079pt;}
.y7c{bottom:302.400086pt;}
.y32{bottom:303.360047pt;}
.y61{bottom:320.000061pt;}
.y95{bottom:320.480042pt;}
.y7b{bottom:322.240052pt;}
.y31{bottom:323.200074pt;}
.y94{bottom:338.880066pt;}
.y60{bottom:339.840088pt;}
.y7a{bottom:342.080079pt;}
.y30{bottom:343.200074pt;}
.y93{bottom:357.280030pt;}
.y5f{bottom:359.680054pt;}
.y79{bottom:361.920044pt;}
.y2f{bottom:363.040039pt;}
.y92{bottom:375.680054pt;}
.y5e{bottom:379.520081pt;}
.y78{bottom:381.760071pt;}
.y2e{bottom:382.880066pt;}
.y91{bottom:394.080079pt;}
.y5d{bottom:399.360047pt;}
.y77{bottom:401.600037pt;}
.y2d{bottom:402.720032pt;}
.y90{bottom:412.480042pt;}
.y5c{bottom:419.200074pt;}
.y76{bottom:421.440064pt;}
.y2c{bottom:423.360047pt;}
.y8f{bottom:430.880066pt;}
.y5b{bottom:439.040039pt;}
.y75{bottom:441.280030pt;}
.y2b{bottom:446.400086pt;}
.y8e{bottom:449.280030pt;}
.y5a{bottom:458.880066pt;}
.y74{bottom:461.280030pt;}
.y8d{bottom:467.680054pt;}
.y2a{bottom:469.600037pt;}
.y59{bottom:478.720032pt;}
.y73{bottom:481.120057pt;}
.y8c{bottom:486.080079pt;}
.y29{bottom:492.000061pt;}
.y58{bottom:498.720032pt;}
.y72{bottom:500.960083pt;}
.y8b{bottom:504.480042pt;}
.y28{bottom:511.840088pt;}
.y57{bottom:518.560059pt;}
.y71{bottom:520.800049pt;}
.y8a{bottom:522.880066pt;}
.y27{bottom:531.680054pt;}
.y56{bottom:538.400086pt;}
.y70{bottom:540.640076pt;}
.y89{bottom:541.280030pt;}
.y26{bottom:551.520081pt;}
.y55{bottom:558.240052pt;}
.y88{bottom:559.680054pt;}
.y6f{bottom:560.480042pt;}
.y25{bottom:571.520081pt;}
.y6e{bottom:576.960083pt;}
.y54{bottom:578.080079pt;}
.y24{bottom:591.360047pt;}
.y53{bottom:597.920044pt;}
.y23{bottom:611.200074pt;}
.y52{bottom:617.760071pt;}
.y22{bottom:631.040070pt;}
.y51{bottom:637.600068pt;}
.y21{bottom:650.880066pt;}
.y50{bottom:657.440064pt;}
.y20{bottom:670.720063pt;}
.y4f{bottom:677.280060pt;}
.y1f{bottom:690.560059pt;}
.y4e{bottom:697.280060pt;}
.y1e{bottom:710.400055pt;}
.y4d{bottom:717.120057pt;}
.y1d{bottom:730.240052pt;}
.y4c{bottom:736.960053pt;}
.y1c{bottom:750.080048pt;}
.y4b{bottom:756.800049pt;}
.y1b{bottom:770.080048pt;}
.y4a{bottom:776.640046pt;}
.y1a{bottom:789.920044pt;}
.y49{bottom:796.480072pt;}
.y19{bottom:810.400055pt;}
.y48{bottom:816.320069pt;}
.y18{bottom:833.600068pt;}
.y47{bottom:836.160065pt;}
.y46{bottom:856.000061pt;}
.y17{bottom:856.800049pt;}
.y45{bottom:875.840058pt;}
.y16{bottom:879.200058pt;}
.y44{bottom:895.680054pt;}
.y15{bottom:899.040055pt;}
.y43{bottom:915.680054pt;}
.y14{bottom:919.680054pt;}
.y42{bottom:935.520066pt;}
.y13{bottom:942.880066pt;}
.y41{bottom:955.360062pt;}
.ya5{bottom:957.120057pt;}
.y12{bottom:965.920060pt;}
.y40{bottom:975.200058pt;}
.ya4{bottom:978.080063pt;}
.y11{bottom:989.120057pt;}
.y3f{bottom:995.040062pt;}
.ya3{bottom:996.480057pt;}
.y10{bottom:1012.320061pt;}
.y3e{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;}
.h4{height:18.240000pt;}
.h8{height:33.120000pt;}
.h9{height:37.481099pt;}
.h2{height:44.689179pt;}
.h3{height:45.157946pt;}
.h5{height:45.657965pt;}
.he{height:46.595500pt;}
.hd{height:46.783007pt;}
.ha{height:48.220561pt;}
.hb{height:52.286327pt;}
.hc{height:52.834785pt;}
.h6{height:54.736106pt;}
.h7{height:82.639039pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:11.359985pt;}
.w2{width:90.400024pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x12{left:92.000000pt;}
.x7{left:94.879997pt;}
.xc{left:122.720001pt;}
.xb{left:180.800003pt;}
.x8{left:248.639999pt;}
.xa{left:273.600006pt;}
.x10{left:298.239990pt;}
.xe{left:308.320007pt;}
.xf{left:330.239990pt;}
.xd{left:332.480011pt;}
.x13{left:342.239990pt;}
.x9{left:396.480011pt;}
.x6{left:418.880005pt;}
.x11{left:594.559998pt;}
.x3{left:654.559998pt;}
.x2{left:702.880005pt;}
.x4{left:706.080017pt;}
.x5{left:731.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; }
  