
    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_f1ac788187085906fb32232e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995117;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_9e9ce357437e7e493693c761.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853027;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_bcb308a615ed3e867e9dc83e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_fb3bbdca397017a657a109a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_2327dcb88d2f200382a1c407.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_cd0394702d626cdd971c645b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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:ff7;src:url('chunks/assets/font_4b5910d1b80a01ff1fa883e4.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f37aaa91199b2a34009a0c35.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ls0{letter-spacing:0.000000px;}
.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:-20.506168px;}
.ws1{word-spacing:-20.499188px;}
.ws2{word-spacing:-17.520638px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-2.453793px;}
._0{margin-left:-1.323018px;}
._1{width:1.160568px;}
._5{width:3.050507px;}
._a{width:4.527836px;}
._12{width:5.530394px;}
._b{width:6.711847px;}
._c{width:8.716517px;}
._4{width:9.929274px;}
._11{width:10.941111px;}
._10{width:11.991244px;}
._6{width:13.385767px;}
._3{width:14.393063px;}
._2{width:15.497732px;}
._7{width:19.003431px;}
._8{width:20.782487px;}
._9{width:21.891489px;}
._13{width:22.978590px;}
._f{width:24.798546px;}
._e{width:25.930543px;}
._18{width:26.950743px;}
._17{width:27.971872px;}
._1a{width:29.892671px;}
._15{width:31.013992px;}
._16{width:32.484879px;}
._14{width:33.933916px;}
._19{width:35.802054px;}
._1c{width:36.978923px;}
._1f{width:38.346379px;}
._1d{width:39.574740px;}
._1e{width:40.849576px;}
._1b{width:189.222885px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs2{font-size:64.476000px;}
.fs1{font-size:70.082550px;}
.fs4{font-size:81.996750px;}
.fs0{font-size:93.209855px;}
.fs3{font-size:105.124055px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.960021px;}
.y29{bottom:5.220016px;}
.y2{bottom:5.220017px;}
.y5{bottom:109.260132px;}
.y28{bottom:126.180039px;}
.y2b{bottom:130.680039px;}
.y27{bottom:131.400055px;}
.y4{bottom:132.300041px;}
.y2a{bottom:134.640060px;}
.y1{bottom:147.420043px;}
.y3{bottom:158.040047px;}
.y4d{bottom:163.080093px;}
.y6e{bottom:183.240074px;}
.y9a{bottom:186.480079px;}
.y7c{bottom:193.140060px;}
.y4c{bottom:193.500068px;}
.y26{bottom:196.740074px;}
.y5e{bottom:203.400055px;}
.y99{bottom:207.000068px;}
.y6d{bottom:213.660049px;}
.y4b{bottom:223.560036px;}
.y25{bottom:226.800041px;}
.y98{bottom:227.340088px;}
.y5d{bottom:233.460091px;}
.y6c{bottom:243.720085px;}
.y97{bottom:247.860077px;}
.y4a{bottom:253.620072px;}
.y24{bottom:257.220085px;}
.y5c{bottom:263.880066px;}
.y96{bottom:268.560036px;}
.y87{bottom:273.420043px;}
.y6b{bottom:273.780052px;}
.y49{bottom:284.040047px;}
.y23{bottom:287.280052px;}
.y95{bottom:289.080093px;}
.y5b{bottom:293.940033px;}
.y86{bottom:303.840088px;}
.y6a{bottom:304.200096px;}
.y94{bottom:309.600083px;}
.y48{bottom:314.100083px;}
.y22{bottom:317.700096px;}
.y5a{bottom:324.360077px;}
.y93{bottom:330.120072px;}
.y69{bottom:334.260064px;}
.y47{bottom:344.520058px;}
.y21{bottom:347.760064px;}
.y92{bottom:350.640060px;}
.y59{bottom:354.420043px;}
.y68{bottom:364.680039px;}
.y91{bottom:371.340088px;}
.y46{bottom:374.580093px;}
.y20{bottom:378.000068px;}
.y58{bottom:384.660049px;}
.y90{bottom:391.680039px;}
.y67{bottom:394.740074px;}
.y45{bottom:404.820099px;}
.y1f{bottom:408.240074px;}
.y8f{bottom:412.200096px;}
.y57{bottom:414.900055px;}
.y83{bottom:424.620072px;}
.y66{bottom:424.980079px;}
.y8e{bottom:432.720085px;}
.y44{bottom:435.060036px;}
.y1e{bottom:438.480079px;}
.y56{bottom:445.140060px;}
.y8d{bottom:453.420043px;}
.y82{bottom:454.860077px;}
.y65{bottom:455.220085px;}
.y43{bottom:465.300041px;}
.y1d{bottom:468.720085px;}
.y8c{bottom:473.940033px;}
.y55{bottom:475.380066px;}
.y64{bottom:485.460091px;}
.y8b{bottom:494.460091px;}
.y42{bottom:495.540047px;}
.y1c{bottom:498.960091px;}
.y54{bottom:505.620072px;}
.y8a{bottom:514.980079px;}
.y63{bottom:515.700096px;}
.y41{bottom:525.780052px;}
.y1b{bottom:529.020058px;}
.y53{bottom:535.680039px;}
.y62{bottom:545.940033px;}
.y40{bottom:555.840088px;}
.y1a{bottom:559.440033px;}
.y52{bottom:566.100083px;}
.y61{bottom:576.000068px;}
.y3f{bottom:586.260064px;}
.y19{bottom:589.500068px;}
.y51{bottom:596.160049px;}
.y3e{bottom:606.240074px;}
.y60{bottom:606.420043px;}
.y7b{bottom:616.320099px;}
.y18{bottom:619.740074px;}
.y3d{bottom:626.400055px;}
.y50{bottom:626.580093px;}
.y81{bottom:636.120072px;}
.y5f{bottom:636.480079px;}
.y7a{bottom:646.740074px;}
.y3c{bottom:646.920043px;}
.y17{bottom:649.980079px;}
.y4f{bottom:656.640060px;}
.y80{bottom:666.540047px;}
.y3b{bottom:666.900055px;}
.y4e{bottom:676.620072px;}
.y79{bottom:676.800041px;}
.y16{bottom:680.220085px;}
.y84{bottom:696.600083px;}
.y3a{bottom:696.960056px;}
.y78{bottom:707.040081px;}
.y15{bottom:710.460056px;}
.y89{bottom:726.840054px;}
.y39{bottom:727.200061px;}
.y77{bottom:737.280052px;}
.y14{bottom:740.520058px;}
.y88{bottom:757.080059px;}
.y38{bottom:757.440067px;}
.y13{bottom:760.500068px;}
.y76{bottom:767.520058px;}
.y12{bottom:780.660049px;}
.y37{bottom:787.680073px;}
.y75{bottom:797.760064px;}
.y11{bottom:802.080059px;}
.y36{bottom:817.920078px;}
.y10{bottom:825.480079px;}
.y74{bottom:828.000068px;}
.y35{bottom:848.160049px;}
.yf{bottom:849.060070px;}
.y73{bottom:858.060070px;}
.ye{bottom:871.380066px;}
.y34{bottom:878.220051px;}
.y72{bottom:888.480079px;}
.yd{bottom:891.540081px;}
.y33{bottom:908.640060px;}
.yc{bottom:911.700061px;}
.y71{bottom:918.540081px;}
.yb{bottom:933.480079px;}
.y85{bottom:938.340054px;}
.y32{bottom:938.700061px;}
.y70{bottom:948.600083px;}
.ya{bottom:961.200061px;}
.y6f{bottom:968.940067px;}
.y31{bottom:969.120072px;}
.y9{bottom:991.260064px;}
.y30{bottom:999.180073px;}
.y8{bottom:1021.140060px;}
.y7f{bottom:1029.060070px;}
.y2f{bottom:1029.420061px;}
.y7{bottom:1051.200061px;}
.y7e{bottom:1059.300058px;}
.y2e{bottom:1059.660067px;}
.y6{bottom:1081.440067px;}
.y7d{bottom:1089.540064px;}
.y2d{bottom:1089.900072px;}
.he{height:20.520057px;}
.h2{height:27.180039px;}
.hc{height:27.360008px;}
.h5{height:47.129186px;}
.hf{height:51.022013px;}
.h9{height:51.227333px;}
.h11{height:57.763352px;}
.h4{height:59.063712px;}
.hd{height:59.936101px;}
.h10{height:62.246171px;}
.hb{height:62.827911px;}
.ha{height:73.508805px;}
.h8{height:76.825310px;}
.h3{height:78.554789px;}
.h6{height:93.369461px;}
.h7{height:94.242072px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:6.300007px;}
.w4{width:7.919975px;}
.w2{width:27.720000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:124.200002px;}
.x4{left:128.340002px;}
.x1{left:149.219999px;}
.xd{left:150.479994px;}
.x9{left:170.639992px;}
.xa{left:175.860008px;}
.x2{left:176.939999px;}
.x3{left:192.780001px;}
.x7{left:238.319996px;}
.x8{left:310.680005px;}
.x6{left:446.759994px;}
.xb{left:549.899987px;}
.xc{left:769.320030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-18.227705pt;}
.ws1{word-spacing:-18.221500pt;}
.ws2{word-spacing:-15.573900pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-2.181149pt;}
._0{margin-left:-1.176016pt;}
._1{width:1.031616pt;}
._5{width:2.711562pt;}
._a{width:4.024743pt;}
._12{width:4.915906pt;}
._b{width:5.966086pt;}
._c{width:7.748015pt;}
._4{width:8.826021pt;}
._11{width:9.725432pt;}
._10{width:10.658884pt;}
._6{width:11.898460pt;}
._3{width:12.793833pt;}
._2{width:13.775762pt;}
._7{width:16.891939pt;}
._8{width:18.473322pt;}
._9{width:19.459101pt;}
._13{width:20.425413pt;}
._f{width:22.043152pt;}
._e{width:23.049372pt;}
._18{width:23.956216pt;}
._17{width:24.863886pt;}
._1a{width:26.571263pt;}
._15{width:27.567993pt;}
._16{width:28.875448pt;}
._14{width:30.163481pt;}
._19{width:31.824048pt;}
._1c{width:32.870154pt;}
._1f{width:34.085670pt;}
._1d{width:35.177547pt;}
._1e{width:36.310734pt;}
._1b{width:168.198120pt;}
.fs2{font-size:57.312000pt;}
.fs1{font-size:62.295600pt;}
.fs4{font-size:72.886000pt;}
.fs0{font-size:82.853204pt;}
.fs3{font-size:93.443604pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:3.520019pt;}
.y29{bottom:4.640014pt;}
.y2{bottom:4.640015pt;}
.y5{bottom:97.120118pt;}
.y28{bottom:112.160035pt;}
.y2b{bottom:116.160035pt;}
.y27{bottom:116.800049pt;}
.y4{bottom:117.600037pt;}
.y2a{bottom:119.680054pt;}
.y1{bottom:131.040039pt;}
.y3{bottom:140.480042pt;}
.y4d{bottom:144.960083pt;}
.y6e{bottom:162.880066pt;}
.y9a{bottom:165.760071pt;}
.y7c{bottom:171.680054pt;}
.y4c{bottom:172.000061pt;}
.y26{bottom:174.880066pt;}
.y5e{bottom:180.800049pt;}
.y99{bottom:184.000061pt;}
.y6d{bottom:189.920044pt;}
.y4b{bottom:198.720032pt;}
.y25{bottom:201.600037pt;}
.y98{bottom:202.080079pt;}
.y5d{bottom:207.520081pt;}
.y6c{bottom:216.640076pt;}
.y97{bottom:220.320069pt;}
.y4a{bottom:225.440064pt;}
.y24{bottom:228.640076pt;}
.y5c{bottom:234.560059pt;}
.y96{bottom:238.720032pt;}
.y87{bottom:243.040039pt;}
.y6b{bottom:243.360047pt;}
.y49{bottom:252.480042pt;}
.y23{bottom:255.360047pt;}
.y95{bottom:256.960083pt;}
.y5b{bottom:261.280030pt;}
.y86{bottom:270.080079pt;}
.y6a{bottom:270.400086pt;}
.y94{bottom:275.200074pt;}
.y48{bottom:279.200074pt;}
.y22{bottom:282.400086pt;}
.y5a{bottom:288.320069pt;}
.y93{bottom:293.440064pt;}
.y69{bottom:297.120057pt;}
.y47{bottom:306.240052pt;}
.y21{bottom:309.120057pt;}
.y92{bottom:311.680054pt;}
.y59{bottom:315.040039pt;}
.y68{bottom:324.160035pt;}
.y91{bottom:330.080079pt;}
.y46{bottom:332.960083pt;}
.y20{bottom:336.000061pt;}
.y58{bottom:341.920044pt;}
.y90{bottom:348.160035pt;}
.y67{bottom:350.880066pt;}
.y45{bottom:359.840088pt;}
.y1f{bottom:362.880066pt;}
.y8f{bottom:366.400086pt;}
.y57{bottom:368.800049pt;}
.y83{bottom:377.440064pt;}
.y66{bottom:377.760071pt;}
.y8e{bottom:384.640076pt;}
.y44{bottom:386.720032pt;}
.y1e{bottom:389.760071pt;}
.y56{bottom:395.680054pt;}
.y8d{bottom:403.040039pt;}
.y82{bottom:404.320069pt;}
.y65{bottom:404.640076pt;}
.y43{bottom:413.600037pt;}
.y1d{bottom:416.640076pt;}
.y8c{bottom:421.280030pt;}
.y55{bottom:422.560059pt;}
.y64{bottom:431.520081pt;}
.y8b{bottom:439.520081pt;}
.y42{bottom:440.480042pt;}
.y1c{bottom:443.520081pt;}
.y54{bottom:449.440064pt;}
.y8a{bottom:457.760071pt;}
.y63{bottom:458.400086pt;}
.y41{bottom:467.360047pt;}
.y1b{bottom:470.240052pt;}
.y53{bottom:476.160035pt;}
.y62{bottom:485.280030pt;}
.y40{bottom:494.080079pt;}
.y1a{bottom:497.280030pt;}
.y52{bottom:503.200074pt;}
.y61{bottom:512.000061pt;}
.y3f{bottom:521.120057pt;}
.y19{bottom:524.000061pt;}
.y51{bottom:529.920044pt;}
.y3e{bottom:538.880066pt;}
.y60{bottom:539.040039pt;}
.y7b{bottom:547.840088pt;}
.y18{bottom:550.880066pt;}
.y3d{bottom:556.800049pt;}
.y50{bottom:556.960083pt;}
.y81{bottom:565.440064pt;}
.y5f{bottom:565.760071pt;}
.y7a{bottom:574.880066pt;}
.y3c{bottom:575.040039pt;}
.y17{bottom:577.760071pt;}
.y4f{bottom:583.680054pt;}
.y80{bottom:592.480042pt;}
.y3b{bottom:592.800049pt;}
.y4e{bottom:601.440064pt;}
.y79{bottom:601.600037pt;}
.y16{bottom:604.640076pt;}
.y84{bottom:619.200074pt;}
.y3a{bottom:619.520050pt;}
.y78{bottom:628.480072pt;}
.y15{bottom:631.520050pt;}
.y89{bottom:646.080048pt;}
.y39{bottom:646.400055pt;}
.y77{bottom:655.360047pt;}
.y14{bottom:658.240052pt;}
.y88{bottom:672.960053pt;}
.y38{bottom:673.280060pt;}
.y13{bottom:676.000061pt;}
.y76{bottom:682.240052pt;}
.y12{bottom:693.920044pt;}
.y37{bottom:700.160065pt;}
.y75{bottom:709.120057pt;}
.y11{bottom:712.960053pt;}
.y36{bottom:727.040070pt;}
.y10{bottom:733.760071pt;}
.y74{bottom:736.000061pt;}
.y35{bottom:753.920044pt;}
.yf{bottom:754.720063pt;}
.y73{bottom:762.720063pt;}
.ye{bottom:774.560059pt;}
.y34{bottom:780.640046pt;}
.y72{bottom:789.760071pt;}
.yd{bottom:792.480072pt;}
.y33{bottom:807.680054pt;}
.yc{bottom:810.400055pt;}
.y71{bottom:816.480072pt;}
.yb{bottom:829.760071pt;}
.y85{bottom:834.080048pt;}
.y32{bottom:834.400055pt;}
.y70{bottom:843.200074pt;}
.ya{bottom:854.400055pt;}
.y6f{bottom:861.280060pt;}
.y31{bottom:861.440064pt;}
.y9{bottom:881.120057pt;}
.y30{bottom:888.160065pt;}
.y8{bottom:907.680054pt;}
.y7f{bottom:914.720063pt;}
.y2f{bottom:915.040055pt;}
.y7{bottom:934.400055pt;}
.y7e{bottom:941.600052pt;}
.y2e{bottom:941.920060pt;}
.y6{bottom:961.280060pt;}
.y7d{bottom:968.480057pt;}
.y2d{bottom:968.800064pt;}
.he{height:18.240051pt;}
.h2{height:24.160035pt;}
.hc{height:24.320007pt;}
.h5{height:41.892609pt;}
.hf{height:45.352900pt;}
.h9{height:45.535407pt;}
.h11{height:51.345202pt;}
.h4{height:52.501077pt;}
.hd{height:53.276534pt;}
.h10{height:55.329930pt;}
.hb{height:55.847032pt;}
.ha{height:65.341160pt;}
.h8{height:68.289164pt;}
.h3{height:69.826480pt;}
.h6{height:82.995076pt;}
.h7{height:83.770731pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:5.600006pt;}
.w4{width:7.039978pt;}
.w2{width:24.640000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:110.400002pt;}
.x4{left:114.080002pt;}
.x1{left:132.639999pt;}
.xd{left:133.759995pt;}
.x9{left:151.679993pt;}
.xa{left:156.320007pt;}
.x2{left:157.279999pt;}
.x3{left:171.360001pt;}
.x7{left:211.839996pt;}
.x8{left:276.160004pt;}
.x6{left:397.119995pt;}
.xb{left:488.799988pt;}
.xc{left:683.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; }
  