
    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_6438ba2383b2d1cf818bc587.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963667;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_f012aa01f11ca62d0a04e13b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_33fe04e166ffef4a2d8b7d17.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740000;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_a349000eacf403b920f8b242.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_322b62bf59b32fdf546a6485.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_bde972cd9b00557ee7459fa3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_560b195898502cc2c6078316.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5600e0355ca74bc93ebbc7bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ec93622d0d0188497b1738d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.746094;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:ffa;src:url('chunks/assets/font_b42bf2904ff520e2e5cdfc74.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977000;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:ffb;src:url('chunks/assets/font_7d5f98ec4dd0df20787767ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f20dbea6f6c3dd630c870c5f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_7c59b93cb12882cf9d95795c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.944000;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:ffe;src:url('chunks/assets/font_633997a36047c0ee6b62692a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.913574;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:fff;src:url('chunks/assets/font_021bca3cf5f5dcba57579ee8.woff2')format("woff");}.fff{font-family:fff;line-height:0.927000;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);}
.v1{vertical-align:-24.750001px;}
.v3{vertical-align:-6.484320px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.750001px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.026794px;}
.ls5{letter-spacing:0.026916px;}
.ls13{letter-spacing:0.041775px;}
.lsb{letter-spacing:0.041892px;}
.lsd{letter-spacing:0.041910px;}
.ls9{letter-spacing:0.043433px;}
.ls3{letter-spacing:0.043446px;}
.ls6{letter-spacing:0.044910px;}
.ls7{letter-spacing:0.044955px;}
.lsa{letter-spacing:0.499998px;}
.lsc{letter-spacing:0.749999px;}
.ls8{letter-spacing:0.999997px;}
.lse{letter-spacing:107.971938px;}
.ls2{letter-spacing:107.971947px;}
.ls11{letter-spacing:107.971967px;}
.ls10{letter-spacing:107.971985px;}
.ls1{letter-spacing:107.986116px;}
.ls12{letter-spacing:107.986152px;}
.ls4{letter-spacing:108.000215px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-21.606002px;}
.ws6{word-spacing:-18.282001px;}
.ws7{word-spacing:-16.848001px;}
.ws2{word-spacing:-16.620000px;}
.ws4{word-spacing:-14.958000px;}
.ws8{word-spacing:-12.188001px;}
.wsb{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.063000px;}
.ws3{word-spacing:-0.060000px;}
.ws5{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:1949.837198px;}
._18{margin-left:-19.683739px;}
._5{margin-left:-16.868949px;}
._12{margin-left:-10.206001px;}
._13{margin-left:-8.640001px;}
._19{margin-left:-7.332024px;}
._3{margin-left:-5.922000px;}
._1{margin-left:-4.536000px;}
._0{margin-left:-2.430000px;}
._2{margin-left:-1.134000px;}
._6{width:1.136970px;}
._16{width:2.235150px;}
._15{width:5.280000px;}
._d{width:16.128001px;}
._a{width:32.616001px;}
._f{width:40.032001px;}
._17{width:50.808004px;}
._9{width:52.416002px;}
._8{width:64.110001px;}
._7{width:76.032002px;}
._14{width:91.236007px;}
._e{width:93.168003px;}
._b{width:96.120003px;}
._4{width:107.986116px;}
._11{width:115.992004px;}
._c{width:203.976007px;}
._10{width:212.184007px;}
.fc1{color:rgb(120,144,156);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(98,103,105);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:42.000000px;}
.fsb{font-size:44.000005px;}
.fsa{font-size:48.000003px;}
.fs8{font-size:54.000002px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000002px;}
.fs7{font-size:66.000004px;}
.fs10{font-size:69.000001px;}
.fs6{font-size:72.000002px;}
.fsf{font-size:74.999999px;}
.fs3{font-size:78.000005px;}
.fsd{font-size:120.000001px;}
.fs5{font-size:126.000004px;}
.fs1{font-size:132.000007px;}
.fse{font-size:138.000001px;}
.fs12{font-size:156.000011px;}
.fs0{font-size:162.000005px;}
.fs11{font-size:167.999999px;}
.fsc{font-size:192.000012px;}
.y0{bottom:0.000000px;}
.y51{bottom:17.305395px;}
.y4c{bottom:22.357185px;}
.y48{bottom:34.784982px;}
.y50{bottom:40.075390px;}
.y72{bottom:57.124940px;}
.y47{bottom:60.344982px;}
.y63{bottom:61.320841px;}
.y4f{bottom:62.845385px;}
.y4b{bottom:63.127186px;}
.y19{bottom:71.572663px;}
.y62{bottom:79.950842px;}
.y46{bottom:85.499983px;}
.y4e{bottom:85.615386px;}
.y4a{bottom:85.897187px;}
.y18{bottom:87.772652px;}
.y20{bottom:95.945800px;}
.yf{bottom:98.045882px;}
.y61{bottom:98.580842px;}
.y45{bottom:111.374984px;}
.ye{bottom:116.855883px;}
.y60{bottom:117.210832px;}
.y1f{bottom:117.545789px;}
.y17{bottom:120.172642px;}
.y49{bottom:121.814984px;}
.y4d{bottom:126.385387px;}
.y6{bottom:127.140813px;}
.y16{bottom:136.372654px;}
.yd{bottom:137.105884px;}
.y71{bottom:138.456289px;}
.y1e{bottom:139.145783px;}
.y5f{bottom:154.470833px;}
.yc{bottom:157.355884px;}
.y1d{bottom:160.745779px;}
.y70{bottom:160.956289px;}
.y15{bottom:164.812655px;}
.y5e{bottom:173.100834px;}
.yb{bottom:178.415885px;}
.y14{bottom:179.572655px;}
.y1c{bottom:182.345778px;}
.y6f{bottom:184.206283px;}
.y5d{bottom:191.730823px;}
.y5{bottom:193.290815px;}
.y13{bottom:195.052656px;}
.y2a{bottom:198.590038px;}
.ya{bottom:200.105886px;}
.y1b{bottom:203.945781px;}
.y12{bottom:208.372645px;}
.y5c{bottom:210.360824px;}
.y29{bottom:219.290016px;}
.y9{bottom:220.730883px;}
.y11{bottom:224.572645px;}
.y6e{bottom:225.081247px;}
.y1a{bottom:225.545782px;}
.y4{bottom:235.860817px;}
.y42{bottom:245.088056px;}
.y5b{bottom:247.620813px;}
.y3{bottom:257.955818px;}
.y10{bottom:259.492646px;}
.y8{bottom:260.600878px;}
.y6d{bottom:265.581248px;}
.y5a{bottom:266.250814px;}
.y37{bottom:274.644456px;}
.y28{bottom:278.690007px;}
.y59{bottom:284.880815px;}
.y6c{bottom:288.081249px;}
.y36{bottom:297.414446px;}
.y27{bottom:299.389996px;}
.y6b{bottom:311.331253px;}
.y35{bottom:320.184435px;}
.y58{bottom:322.140827px;}
.y57{bottom:340.770828px;}
.y26{bottom:340.789986px;}
.y34{bottom:342.954447px;}
.y2{bottom:345.869992px;}
.y32{bottom:347.724447px;}
.y6a{bottom:352.206251px;}
.y56{bottom:359.400828px;}
.y33{bottom:365.724448px;}
.y31{bottom:370.494441px;}
.y55{bottom:378.030823px;}
.y25{bottom:382.189971px;}
.y30{bottom:388.494442px;}
.y69{bottom:392.706252px;}
.y1{bottom:401.744990px;}
.y24{bottom:402.889966px;}
.y3d{bottom:411.084927px;}
.y2f{bottom:411.264438px;}
.y68{bottom:415.206253px;}
.y54{bottom:415.290815px;}
.y23{bottom:423.589959px;}
.y3c{bottom:433.854923px;}
.y53{bottom:433.920819px;}
.y2e{bottom:434.034439px;}
.y67{bottom:438.456246px;}
.y52{bottom:452.550820px;}
.y41{bottom:455.534995px;}
.y3b{bottom:456.624920px;}
.y22{bottom:462.289957px;}
.y2c{bottom:475.271928px;}
.y2d{bottom:476.064440px;}
.y66{bottom:479.331255px;}
.y3a{bottom:479.394918px;}
.y2b{bottom:489.671929px;}
.y40{bottom:500.534997px;}
.y39{bottom:502.164919px;}
.y64{bottom:509.586257px;}
.y43{bottom:527.120547px;}
.y3e{bottom:530.086177px;}
.y3f{bottom:536.534998px;}
.y44{bottom:546.254998px;}
.y65{bottom:549.492995px;}
.y21{bottom:552.732990px;}
.y7{bottom:565.572992px;}
.y38{bottom:579.579920px;}
.he{height:30.577148px;}
.hf{height:34.968752px;}
.h15{height:36.468752px;}
.h1d{height:38.654298px;}
.hb{height:39.313478px;}
.hd{height:39.339845px;}
.h10{height:39.445314px;}
.h13{height:43.681641px;}
.h8{height:43.710938px;}
.h3{height:43.800000px;}
.h14{height:43.828125px;}
.h5{height:47.376002px;}
.hc{height:48.049807px;}
.ha{height:48.082034px;}
.h17{height:48.210940px;}
.h1c{height:49.236003px;}
.h1b{height:50.267579px;}
.h7{height:52.417970px;}
.h11{height:52.453127px;}
.h1a{height:54.638671px;}
.h16{height:56.786137px;}
.h4{height:56.940004px;}
.h9{height:58.620000px;}
.h18{height:90.240001px;}
.h6{height:94.752003px;}
.h2{height:96.360005px;}
.h19{height:103.776001px;}
.h1f{height:111.228008px;}
.h1{height:119.880004px;}
.h1e{height:126.336000px;}
.h12{height:144.384009px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1f{left:25.807006px;}
.x1e{left:31.632875px;}
.x5{left:37.939962px;}
.x7{left:46.939963px;}
.x26{left:57.868112px;}
.x20{left:60.307008px;}
.x21{left:64.089567px;}
.x1a{left:73.125002px;}
.x27{left:74.909126px;}
.x1{left:83.703429px;}
.x2{left:137.446932px;}
.x11{left:146.622053px;}
.x17{left:176.554142px;}
.x1b{left:246.676193px;}
.x19{left:274.880911px;}
.x6{left:300.594148px;}
.x18{left:407.754936px;}
.x3{left:410.588012px;}
.x4{left:443.629882px;}
.xe{left:446.108279px;}
.x22{left:462.425874px;}
.xf{left:464.051752px;}
.x10{left:500.108281px;}
.xd{left:502.157491px;}
.x12{left:543.366164px;}
.x13{left:560.407178px;}
.x14{left:597.366165px;}
.x8{left:600.135814px;}
.x15{left:614.407182px;}
.x9{left:618.079287px;}
.xb{left:636.980323px;}
.x16{left:651.366167px;}
.xa{left:654.135816px;}
.xc{left:672.134377px;}
.x1c{left:673.505954px;}
.x1d{left:729.389768px;}
.x28{left:807.897626px;}
.x23{left:891.069388px;}
.x24{left:926.223442px;}
.x25{left:956.081731px;}
@media print{
.v1{vertical-align:-22.000001pt;}
.v3{vertical-align:-5.763840pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:22.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.023817pt;}
.ls5{letter-spacing:0.023925pt;}
.ls13{letter-spacing:0.037133pt;}
.lsb{letter-spacing:0.037237pt;}
.lsd{letter-spacing:0.037253pt;}
.ls9{letter-spacing:0.038607pt;}
.ls3{letter-spacing:0.038619pt;}
.ls6{letter-spacing:0.039920pt;}
.ls7{letter-spacing:0.039960pt;}
.lsa{letter-spacing:0.444443pt;}
.lsc{letter-spacing:0.666666pt;}
.ls8{letter-spacing:0.888886pt;}
.lse{letter-spacing:95.975056pt;}
.ls2{letter-spacing:95.975064pt;}
.ls11{letter-spacing:95.975082pt;}
.ls10{letter-spacing:95.975098pt;}
.ls1{letter-spacing:95.987659pt;}
.ls12{letter-spacing:95.987691pt;}
.ls4{letter-spacing:96.000191pt;}
.wsa{word-spacing:-19.205335pt;}
.ws6{word-spacing:-16.250668pt;}
.ws7{word-spacing:-14.976001pt;}
.ws2{word-spacing:-14.773333pt;}
.ws4{word-spacing:-13.296000pt;}
.ws8{word-spacing:-10.833779pt;}
.wsb{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.056000pt;}
.ws3{word-spacing:-0.053333pt;}
.ws5{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:1733.188621pt;}
._18{margin-left:-17.496657pt;}
._5{margin-left:-14.994621pt;}
._12{margin-left:-9.072001pt;}
._13{margin-left:-7.680000pt;}
._19{margin-left:-6.517354pt;}
._3{margin-left:-5.264000pt;}
._1{margin-left:-4.032000pt;}
._0{margin-left:-2.160000pt;}
._2{margin-left:-1.008000pt;}
._6{width:1.010640pt;}
._16{width:1.986800pt;}
._15{width:4.693334pt;}
._d{width:14.336000pt;}
._a{width:28.992001pt;}
._f{width:35.584001pt;}
._17{width:45.162670pt;}
._9{width:46.592001pt;}
._8{width:56.986667pt;}
._7{width:67.584002pt;}
._14{width:81.098673pt;}
._e{width:82.816003pt;}
._b{width:85.440003pt;}
._4{width:95.987659pt;}
._11{width:103.104003pt;}
._c{width:181.312006pt;}
._10{width:188.608006pt;}
.fs9{font-size:37.333333pt;}
.fsb{font-size:39.111115pt;}
.fsa{font-size:42.666669pt;}
.fs8{font-size:48.000002pt;}
.fs2{font-size:53.333334pt;}
.fs4{font-size:56.000002pt;}
.fs7{font-size:58.666670pt;}
.fs10{font-size:61.333334pt;}
.fs6{font-size:64.000002pt;}
.fsf{font-size:66.666666pt;}
.fs3{font-size:69.333338pt;}
.fsd{font-size:106.666667pt;}
.fs5{font-size:112.000004pt;}
.fs1{font-size:117.333340pt;}
.fse{font-size:122.666668pt;}
.fs12{font-size:138.666676pt;}
.fs0{font-size:144.000005pt;}
.fs11{font-size:149.333333pt;}
.fsc{font-size:170.666677pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:15.382573pt;}
.y4c{bottom:19.873053pt;}
.y48{bottom:30.919984pt;}
.y50{bottom:35.622569pt;}
.y72{bottom:50.777724pt;}
.y47{bottom:53.639984pt;}
.y63{bottom:54.507414pt;}
.y4f{bottom:55.862565pt;}
.y4b{bottom:56.113055pt;}
.y19{bottom:63.620145pt;}
.y62{bottom:71.067415pt;}
.y46{bottom:75.999985pt;}
.y4e{bottom:76.102565pt;}
.y4a{bottom:76.353055pt;}
.y18{bottom:78.020135pt;}
.y20{bottom:85.285155pt;}
.yf{bottom:87.151896pt;}
.y61{bottom:87.627416pt;}
.y45{bottom:98.999986pt;}
.ye{bottom:103.871896pt;}
.y60{bottom:104.187406pt;}
.y1f{bottom:104.485146pt;}
.y17{bottom:106.820126pt;}
.y49{bottom:108.279986pt;}
.y4d{bottom:112.342566pt;}
.y6{bottom:113.014056pt;}
.y16{bottom:121.220137pt;}
.yd{bottom:121.871897pt;}
.y71{bottom:123.072257pt;}
.y1e{bottom:123.685141pt;}
.y5f{bottom:137.307407pt;}
.yc{bottom:139.871897pt;}
.y1d{bottom:142.885137pt;}
.y70{bottom:143.072257pt;}
.y15{bottom:146.500137pt;}
.y5e{bottom:153.867408pt;}
.yb{bottom:158.591898pt;}
.y14{bottom:159.620138pt;}
.y1c{bottom:162.085136pt;}
.y6f{bottom:163.738918pt;}
.y5d{bottom:170.427398pt;}
.y5{bottom:171.814058pt;}
.y13{bottom:173.380138pt;}
.y2a{bottom:176.524478pt;}
.ya{bottom:177.871898pt;}
.y1b{bottom:181.285139pt;}
.y12{bottom:185.220129pt;}
.y5c{bottom:186.987399pt;}
.y29{bottom:194.924459pt;}
.y9{bottom:196.205229pt;}
.y11{bottom:199.620129pt;}
.y6e{bottom:200.072219pt;}
.y1a{bottom:200.485139pt;}
.y4{bottom:209.654059pt;}
.y42{bottom:217.856050pt;}
.y5b{bottom:220.107390pt;}
.y3{bottom:229.294060pt;}
.y10{bottom:230.660130pt;}
.y8{bottom:231.645225pt;}
.y6d{bottom:236.072220pt;}
.y5a{bottom:236.667390pt;}
.y37{bottom:244.128406pt;}
.y28{bottom:247.724451pt;}
.y59{bottom:253.227391pt;}
.y6c{bottom:256.072221pt;}
.y36{bottom:264.368396pt;}
.y27{bottom:266.124441pt;}
.y6b{bottom:276.738892pt;}
.y35{bottom:284.608387pt;}
.y58{bottom:286.347402pt;}
.y57{bottom:302.907402pt;}
.y26{bottom:302.924432pt;}
.y34{bottom:304.848397pt;}
.y2{bottom:307.439993pt;}
.y32{bottom:309.088398pt;}
.y6a{bottom:313.072223pt;}
.y56{bottom:319.467403pt;}
.y33{bottom:325.088398pt;}
.y31{bottom:329.328392pt;}
.y55{bottom:336.027398pt;}
.y25{bottom:339.724419pt;}
.y30{bottom:345.328393pt;}
.y69{bottom:349.072224pt;}
.y1{bottom:357.106658pt;}
.y24{bottom:358.124414pt;}
.y3d{bottom:365.408824pt;}
.y2f{bottom:365.568389pt;}
.y68{bottom:369.072225pt;}
.y54{bottom:369.147392pt;}
.y23{bottom:376.524408pt;}
.y3c{bottom:385.648820pt;}
.y53{bottom:385.707395pt;}
.y2e{bottom:385.808390pt;}
.y67{bottom:389.738885pt;}
.y52{bottom:402.267396pt;}
.y41{bottom:404.919996pt;}
.y3b{bottom:405.888818pt;}
.y22{bottom:410.924406pt;}
.y2c{bottom:422.463936pt;}
.y2d{bottom:423.168391pt;}
.y66{bottom:426.072226pt;}
.y3a{bottom:426.128816pt;}
.y2b{bottom:435.263937pt;}
.y40{bottom:444.919997pt;}
.y39{bottom:446.368817pt;}
.y64{bottom:452.965562pt;}
.y43{bottom:468.551598pt;}
.y3e{bottom:471.187713pt;}
.y3f{bottom:476.919998pt;}
.y44{bottom:485.559998pt;}
.y65{bottom:488.438218pt;}
.y21{bottom:491.318214pt;}
.y7{bottom:502.731549pt;}
.y38{bottom:515.182151pt;}
.he{height:27.179687pt;}
.hf{height:31.083335pt;}
.h15{height:32.416669pt;}
.h1d{height:34.359376pt;}
.hb{height:34.945314pt;}
.hd{height:34.968751pt;}
.h10{height:35.062501pt;}
.h13{height:38.828125pt;}
.h8{height:38.854167pt;}
.h3{height:38.933334pt;}
.h14{height:38.958334pt;}
.h5{height:42.112001pt;}
.hc{height:42.710940pt;}
.ha{height:42.739586pt;}
.h17{height:42.854169pt;}
.h1c{height:43.765336pt;}
.h1b{height:44.682292pt;}
.h7{height:46.593751pt;}
.h11{height:46.625001pt;}
.h1a{height:48.567708pt;}
.h16{height:50.476566pt;}
.h4{height:50.613337pt;}
.h9{height:52.106667pt;}
.h18{height:80.213334pt;}
.h6{height:84.224003pt;}
.h2{height:85.653338pt;}
.h19{height:92.245334pt;}
.h1f{height:98.869340pt;}
.h1{height:106.560003pt;}
.h1e{height:112.298666pt;}
.h12{height:128.341341pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:22.939561pt;}
.x1e{left:28.118111pt;}
.x5{left:33.724411pt;}
.x7{left:41.724411pt;}
.x26{left:51.438322pt;}
.x20{left:53.606230pt;}
.x21{left:56.968504pt;}
.x1a{left:65.000002pt;}
.x27{left:66.585890pt;}
.x1{left:74.403048pt;}
.x2{left:122.175051pt;}
.x11{left:130.330714pt;}
.x17{left:156.937015pt;}
.x1b{left:219.267727pt;}
.x19{left:244.338588pt;}
.x6{left:267.194799pt;}
.x18{left:362.448832pt;}
.x3{left:364.967122pt;}
.x4{left:394.337673pt;}
.xe{left:396.540693pt;}
.x22{left:411.045221pt;}
.xf{left:412.490446pt;}
.x10{left:444.540694pt;}
.xd{left:446.362214pt;}
.x12{left:482.992145pt;}
.x13{left:498.139714pt;}
.x14{left:530.992147pt;}
.x8{left:533.454057pt;}
.x15{left:546.139717pt;}
.x9{left:549.403811pt;}
.xb{left:566.204731pt;}
.x16{left:578.992149pt;}
.xa{left:581.454059pt;}
.xc{left:597.452779pt;}
.x1c{left:598.671959pt;}
.x1d{left:648.346461pt;}
.x28{left:718.131223pt;}
.x23{left:792.061678pt;}
.x24{left:823.309726pt;}
.x25{left:849.850427pt;}
}




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