
    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_e0bf2e3243ba820e0e1b80d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_3f32e8884f715fbd9f1ab325.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.851562;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_7b290fee71b01b41293d92a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752000;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_9457592f0bc0ac9ac73e3b24.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_1ee49cecca8e1aae47c0ff61.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_16021a9eb41580d133042385.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bedcdb9f373be87c58d232ce.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_475ce0bf8eb8b6c7e7cd623d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_70b9fda86fc8125f379a2010.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b2536636313a92b6d7edbf51.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4733eee9fc258cfcc6132c85.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3c5d562985d2bfb3c160da49.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b5e3bd835b84cff4e053a91d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942383;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:ff11;src:url('chunks/assets/font_3f40b25d6abbfce1a4772b97.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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;}
.ls1a{letter-spacing:-0.552000px;}
.ls3{letter-spacing:-0.456000px;}
.ls4{letter-spacing:-0.396000px;}
.lsf{letter-spacing:-0.372000px;}
.ls10{letter-spacing:-0.276000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.060000px;}
.lse{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.138000px;}
.ls14{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.322800px;}
.ls1c{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.600000px;}
.ls20{letter-spacing:0.660000px;}
.ls1d{letter-spacing:1.200000px;}
.ls12{letter-spacing:3.000000px;}
.lsb{letter-spacing:6.000000px;}
.lsc{letter-spacing:6.660000px;}
.ls11{letter-spacing:7.800000px;}
.ls22{letter-spacing:11.340000px;}
.ls13{letter-spacing:12.600000px;}
.ls16{letter-spacing:12.660000px;}
.ls18{letter-spacing:21.000000px;}
.ls1f{letter-spacing:21.048000px;}
.lsd{letter-spacing:22.200000px;}
.ls17{letter-spacing:26.940000px;}
.ls9{letter-spacing:27.000000px;}
.ls7{letter-spacing:29.400000px;}
.lsa{letter-spacing:46.200000px;}
.ls15{letter-spacing:57.000000px;}
.ls1{letter-spacing:66.600000px;}
.ls23{letter-spacing:87.048000px;}
.ls21{letter-spacing:129.048000px;}
.ls8{letter-spacing:161.448000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,51,0),0 0.015em rgb(255,51,0),0.015em 0 rgb(255,51,0),0 -0.015em  rgb(255,51,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(255,51,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.000000px;}
.ws7{word-spacing:-20.448000px;}
.ws1{word-spacing:-19.776000px;}
.ws9{word-spacing:-16.500000px;}
.ws0{word-spacing:-16.008000px;}
.ws3{word-spacing:-15.384000px;}
.ws8{word-spacing:-15.054000px;}
.ws2{word-spacing:-14.832000px;}
.ws6{word-spacing:-13.560000px;}
.ws5{word-spacing:0.000000px;}
._36{margin-left:-20.172000px;}
._29{margin-left:-4.884000px;}
._19{margin-left:-3.708000px;}
._3{margin-left:-2.574000px;}
._0{margin-left:-1.224000px;}
._1{width:1.152000px;}
._8{width:2.574000px;}
._2{width:4.152000px;}
._28{width:5.220000px;}
._16{width:7.140000px;}
._17{width:8.328000px;}
._1e{width:9.708000px;}
._1f{width:10.848000px;}
._2a{width:12.060000px;}
._2f{width:13.062000px;}
._6{width:14.202000px;}
._4{width:15.456000px;}
._5{width:16.962000px;}
._a{width:17.982000px;}
._c{width:19.146000px;}
._27{width:22.728000px;}
._26{width:24.072000px;}
._7{width:25.752000px;}
._20{width:26.976000px;}
._12{width:28.392000px;}
._13{width:30.156000px;}
._2d{width:31.500000px;}
._30{width:33.006000px;}
._d{width:34.908000px;}
._e{width:35.928000px;}
._b{width:37.512000px;}
._14{width:39.696000px;}
._2c{width:40.746000px;}
._31{width:42.756000px;}
._2e{width:43.854000px;}
._25{width:45.528000px;}
._24{width:47.094000px;}
._1d{width:48.798000px;}
._1c{width:50.028000px;}
._2b{width:51.072000px;}
._11{width:53.220000px;}
._34{width:55.296000px;}
._22{width:57.084000px;}
._23{width:58.200000px;}
._15{width:60.192000px;}
._21{width:61.308000px;}
._f{width:63.168000px;}
._10{width:64.500000px;}
._9{width:66.240000px;}
._1a{width:72.252000px;}
._1b{width:73.344000px;}
._33{width:95.388000px;}
._32{width:100.212000px;}
._18{width:118.296000px;}
._38{width:170.400000px;}
._35{width:179.028000px;}
._37{width:191.400000px;}
.fc6{color:rgb(46,116,181);}
.fc5{color:transparent;}
.fc4{color:rgb(255,51,0);}
.fc3{color:rgb(51,102,153);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(204,0,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs7{font-size:39.600000px;}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:10.237500px;}
.y6{bottom:30.937500px;}
.y33{bottom:88.537500px;}
.y32{bottom:93.937500px;}
.y53{bottom:98.737500px;}
.y52{bottom:105.637500px;}
.y43{bottom:106.837500px;}
.y31{bottom:109.237500px;}
.y42{bottom:112.237500px;}
.y2b{bottom:115.537500px;}
.y5e{bottom:116.137500px;}
.y72{bottom:117.337500px;}
.y51{bottom:120.337500px;}
.y5f{bottom:121.537500px;}
.y71{bottom:124.237500px;}
.y41{bottom:125.137500px;}
.y50{bottom:126.337500px;}
.y4c{bottom:127.837500px;}
.y40{bottom:130.537500px;}
.y30{bottom:131.737500px;}
.y9e{bottom:132.037500px;}
.y2f{bottom:138.637500px;}
.y4f{bottom:140.437500px;}
.y5d{bottom:143.137500px;}
.y2a{bottom:143.437500px;}
.y70{bottom:148.237500px;}
.y4b{bottom:148.537500px;}
.y3f{bottom:148.837500px;}
.y2e{bottom:153.045000px;}
.y6f{bottom:155.130000px;}
.y4a{bottom:155.430000px;}
.y9d{bottom:159.930000px;}
.y3e{bottom:161.730000px;}
.y3d{bottom:167.130000px;}
.y85{bottom:168.030000px;}
.y5c{bottom:168.975000px;}
.y29{bottom:171.075000px;}
.y5b{bottom:174.375000px;}
.y6e{bottom:179.475000px;}
.y3c{bottom:180.075000px;}
.y6d{bottom:186.375000px;}
.y5a{bottom:186.975000px;}
.y9c{bottom:187.575000px;}
.y49{bottom:190.275000px;}
.y59{bottom:192.375000px;}
.y84{bottom:195.975000px;}
.y3b{bottom:198.375000px;}
.y28{bottom:198.975000px;}
.y3a{bottom:203.775000px;}
.y6c{bottom:209.175000px;}
.y58{bottom:212.175000px;}
.y6b{bottom:214.575000px;}
.y9b{bottom:215.475000px;}
.y57{bottom:216.675000px;}
.y39{bottom:217.275000px;}
.y83{bottom:223.575000px;}
.y27{bottom:226.575000px;}
.y48{bottom:229.275000px;}
.y4e{bottom:234.075000px;}
.y47{bottom:234.675000px;}
.y9a{bottom:243.375000px;}
.y46{bottom:249.075000px;}
.y82{bottom:251.475000px;}
.y26{bottom:254.475000px;}
.y99{bottom:270.975000px;}
.y81{bottom:279.375000px;}
.y25{bottom:282.375000px;}
.y56{bottom:289.875000px;}
.y98{bottom:298.875000px;}
.y6a{bottom:306.975000px;}
.y24{bottom:309.975000px;}
.y4d{bottom:317.475000px;}
.y97{bottom:326.475000px;}
.y69{bottom:334.875000px;}
.y23{bottom:337.905000px;}
.y38{bottom:345.420000px;}
.y96{bottom:354.405000px;}
.y68{bottom:362.505000px;}
.y22{bottom:365.505000px;}
.y2d{bottom:373.005000px;}
.y95{bottom:382.005000px;}
.y67{bottom:390.405000px;}
.y21{bottom:393.405000px;}
.y94{bottom:409.905000px;}
.y66{bottom:418.005000px;}
.y20{bottom:421.005000px;}
.y37{bottom:428.505000px;}
.y93{bottom:437.505000px;}
.y65{bottom:445.905000px;}
.y1f{bottom:448.905000px;}
.y92{bottom:465.405000px;}
.y64{bottom:473.505000px;}
.y1e{bottom:476.505000px;}
.y91{bottom:493.320000px;}
.y80{bottom:501.405000px;}
.y1d{bottom:504.405000px;}
.y63{bottom:511.950000px;}
.y90{bottom:520.950000px;}
.y7f{bottom:529.350000px;}
.y1c{bottom:532.350000px;}
.y8f{bottom:548.850000px;}
.y7e{bottom:556.950000px;}
.y1b{bottom:559.950000px;}
.y45{bottom:567.450000px;}
.y8e{bottom:576.450000px;}
.y7d{bottom:584.850000px;}
.y1a{bottom:587.850000px;}
.y2c{bottom:595.350000px;}
.y8d{bottom:604.350000px;}
.y7c{bottom:612.450000px;}
.y19{bottom:615.450000px;}
.y62{bottom:622.950000px;}
.y8c{bottom:631.950000px;}
.y7b{bottom:640.350000px;}
.y18{bottom:643.350000px;}
.y8b{bottom:659.850000px;}
.y7a{bottom:667.950000px;}
.y17{bottom:670.950000px;}
.y8a{bottom:687.780000px;}
.y79{bottom:695.880000px;}
.y16{bottom:698.880000px;}
.y89{bottom:715.380000px;}
.y78{bottom:723.780000px;}
.y15{bottom:726.780000px;}
.y61{bottom:734.280000px;}
.y88{bottom:743.280000px;}
.y77{bottom:751.380000px;}
.y14{bottom:754.380000px;}
.y55{bottom:761.880000px;}
.y87{bottom:770.880000px;}
.y76{bottom:779.280000px;}
.y13{bottom:782.280000px;}
.y36{bottom:789.795000px;}
.y75{bottom:806.880000px;}
.y12{bottom:809.880000px;}
.y86{bottom:819.780000px;}
.y74{bottom:834.795000px;}
.y11{bottom:837.795000px;}
.y73{bottom:862.425000px;}
.y10{bottom:865.425000px;}
.y60{bottom:872.925000px;}
.yf{bottom:893.325000px;}
.ye{bottom:921.225000px;}
.y54{bottom:928.725000px;}
.yd{bottom:948.825000px;}
.y35{bottom:956.325000px;}
.yc{bottom:976.725000px;}
.yb{bottom:1004.325000px;}
.y44{bottom:1011.825000px;}
.ya{bottom:1032.255000px;}
.y9{bottom:1059.870000px;}
.y8{bottom:1087.755000px;}
.y34{bottom:1095.255000px;}
.y5{bottom:1112.070000px;}
.y4{bottom:1131.870000px;}
.y3{bottom:1155.570000px;}
.y2{bottom:1179.870000px;}
.y1{bottom:1207.800000px;}
.h16{height:35.332031px;}
.h17{height:38.865234px;}
.h11{height:39.387305px;}
.h14{height:41.220703px;}
.h15{height:41.774414px;}
.he{height:47.109375px;}
.h5{height:48.972000px;}
.h4{height:50.402344px;}
.h13{height:52.971680px;}
.hb{height:52.998047px;}
.h9{height:58.652344px;}
.h18{height:58.886719px;}
.h12{height:59.677734px;}
.h10{height:64.775391px;}
.hd{height:65.645508px;}
.h3{height:66.978516px;}
.h19{height:68.167969px;}
.h7{height:69.234375px;}
.hf{height:70.664062px;}
.h2{height:76.546875px;}
.h6{height:82.400391px;}
.h8{height:82.441406px;}
.hc{height:84.656250px;}
.ha{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:42.299987px;}
.x3b{left:74.137473px;}
.x5{left:84.937487px;}
.x14{left:90.937487px;}
.x30{left:93.937487px;}
.x26{left:95.737487px;}
.x27{left:96.937487px;}
.x32{left:126.337473px;}
.x31{left:127.537473px;}
.x33{left:136.537487px;}
.x7{left:138.337487px;}
.x15{left:160.829973px;}
.x1c{left:167.129973px;}
.xc{left:168.644987px;}
.x28{left:170.129973px;}
.x1d{left:174.029987px;}
.x29{left:183.974987px;}
.x11{left:199.274973px;}
.x2f{left:204.674973px;}
.x12{left:206.174987px;}
.x2c{left:219.074973px;}
.x2d{left:232.874987px;}
.xf{left:251.174973px;}
.x1a{left:255.974973px;}
.x10{left:258.074987px;}
.x1b{left:262.874987px;}
.x22{left:267.674973px;}
.x36{left:271.574973px;}
.xa{left:273.374987px;}
.x23{left:281.474987px;}
.x37{left:285.374987px;}
.x13{left:301.019987px;}
.xb{left:375.119987px;}
.x20{left:378.119973px;}
.xd{left:383.504987px;}
.x21{left:385.004987px;}
.x8{left:391.904987px;}
.xe{left:400.319987px;}
.x2a{left:402.719973px;}
.x2b{left:416.549987px;}
.x9{left:446.249987px;}
.x16{left:476.849973px;}
.x17{left:483.749987px;}
.x2{left:490.649987px;}
.x1{left:557.579987px;}
.x18{left:569.579973px;}
.x19{left:576.494987px;}
.x39{left:578.594973px;}
.x3a{left:592.379987px;}
.x3{left:641.879987px;}
.x24{left:651.494973px;}
.x2e{left:662.024973px;}
.x25{left:665.324987px;}
.x1e{left:668.024973px;}
.x1f{left:674.924987px;}
.x34{left:742.424973px;}
.x35{left:756.224987px;}
.x38{left:769.724987px;}
.x4{left:808.154987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.490667pt;}
.ls3{letter-spacing:-0.405333pt;}
.ls4{letter-spacing:-0.352000pt;}
.lsf{letter-spacing:-0.330667pt;}
.ls10{letter-spacing:-0.245333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.122667pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.286933pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls20{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:1.066667pt;}
.ls12{letter-spacing:2.666667pt;}
.lsb{letter-spacing:5.333333pt;}
.lsc{letter-spacing:5.920000pt;}
.ls11{letter-spacing:6.933333pt;}
.ls22{letter-spacing:10.080000pt;}
.ls13{letter-spacing:11.200000pt;}
.ls16{letter-spacing:11.253333pt;}
.ls18{letter-spacing:18.666667pt;}
.ls1f{letter-spacing:18.709333pt;}
.lsd{letter-spacing:19.733333pt;}
.ls17{letter-spacing:23.946667pt;}
.ls9{letter-spacing:24.000000pt;}
.ls7{letter-spacing:26.133333pt;}
.lsa{letter-spacing:41.066667pt;}
.ls15{letter-spacing:50.666667pt;}
.ls1{letter-spacing:59.200000pt;}
.ls23{letter-spacing:77.376000pt;}
.ls21{letter-spacing:114.709333pt;}
.ls8{letter-spacing:143.509333pt;}
.ws4{word-spacing:-18.666667pt;}
.ws7{word-spacing:-18.176000pt;}
.ws1{word-spacing:-17.578667pt;}
.ws9{word-spacing:-14.666667pt;}
.ws0{word-spacing:-14.229333pt;}
.ws3{word-spacing:-13.674667pt;}
.ws8{word-spacing:-13.381333pt;}
.ws2{word-spacing:-13.184000pt;}
.ws6{word-spacing:-12.053333pt;}
.ws5{word-spacing:0.000000pt;}
._36{margin-left:-17.930667pt;}
._29{margin-left:-4.341333pt;}
._19{margin-left:-3.296000pt;}
._3{margin-left:-2.288000pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.024000pt;}
._8{width:2.288000pt;}
._2{width:3.690667pt;}
._28{width:4.640000pt;}
._16{width:6.346667pt;}
._17{width:7.402667pt;}
._1e{width:8.629333pt;}
._1f{width:9.642667pt;}
._2a{width:10.720000pt;}
._2f{width:11.610667pt;}
._6{width:12.624000pt;}
._4{width:13.738667pt;}
._5{width:15.077333pt;}
._a{width:15.984000pt;}
._c{width:17.018667pt;}
._27{width:20.202667pt;}
._26{width:21.397333pt;}
._7{width:22.890667pt;}
._20{width:23.978667pt;}
._12{width:25.237333pt;}
._13{width:26.805333pt;}
._2d{width:28.000000pt;}
._30{width:29.338667pt;}
._d{width:31.029333pt;}
._e{width:31.936000pt;}
._b{width:33.344000pt;}
._14{width:35.285333pt;}
._2c{width:36.218667pt;}
._31{width:38.005333pt;}
._2e{width:38.981333pt;}
._25{width:40.469333pt;}
._24{width:41.861333pt;}
._1d{width:43.376000pt;}
._1c{width:44.469333pt;}
._2b{width:45.397333pt;}
._11{width:47.306667pt;}
._34{width:49.152000pt;}
._22{width:50.741333pt;}
._23{width:51.733333pt;}
._15{width:53.504000pt;}
._21{width:54.496000pt;}
._f{width:56.149333pt;}
._10{width:57.333333pt;}
._9{width:58.880000pt;}
._1a{width:64.224000pt;}
._1b{width:65.194667pt;}
._33{width:84.789333pt;}
._32{width:89.077333pt;}
._18{width:105.152000pt;}
._38{width:151.466667pt;}
._35{width:159.136000pt;}
._37{width:170.133333pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:35.200000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:9.100000pt;}
.y6{bottom:27.500000pt;}
.y33{bottom:78.700000pt;}
.y32{bottom:83.500000pt;}
.y53{bottom:87.766667pt;}
.y52{bottom:93.900000pt;}
.y43{bottom:94.966667pt;}
.y31{bottom:97.100000pt;}
.y42{bottom:99.766667pt;}
.y2b{bottom:102.700000pt;}
.y5e{bottom:103.233333pt;}
.y72{bottom:104.300000pt;}
.y51{bottom:106.966667pt;}
.y5f{bottom:108.033333pt;}
.y71{bottom:110.433333pt;}
.y41{bottom:111.233333pt;}
.y50{bottom:112.300000pt;}
.y4c{bottom:113.633333pt;}
.y40{bottom:116.033333pt;}
.y30{bottom:117.100000pt;}
.y9e{bottom:117.366667pt;}
.y2f{bottom:123.233333pt;}
.y4f{bottom:124.833333pt;}
.y5d{bottom:127.233333pt;}
.y2a{bottom:127.500000pt;}
.y70{bottom:131.766667pt;}
.y4b{bottom:132.033333pt;}
.y3f{bottom:132.300000pt;}
.y2e{bottom:136.040000pt;}
.y6f{bottom:137.893333pt;}
.y4a{bottom:138.160000pt;}
.y9d{bottom:142.160000pt;}
.y3e{bottom:143.760000pt;}
.y3d{bottom:148.560000pt;}
.y85{bottom:149.360000pt;}
.y5c{bottom:150.200000pt;}
.y29{bottom:152.066667pt;}
.y5b{bottom:155.000000pt;}
.y6e{bottom:159.533333pt;}
.y3c{bottom:160.066667pt;}
.y6d{bottom:165.666667pt;}
.y5a{bottom:166.200000pt;}
.y9c{bottom:166.733333pt;}
.y49{bottom:169.133333pt;}
.y59{bottom:171.000000pt;}
.y84{bottom:174.200000pt;}
.y3b{bottom:176.333333pt;}
.y28{bottom:176.866667pt;}
.y3a{bottom:181.133333pt;}
.y6c{bottom:185.933333pt;}
.y58{bottom:188.600000pt;}
.y6b{bottom:190.733333pt;}
.y9b{bottom:191.533333pt;}
.y57{bottom:192.600000pt;}
.y39{bottom:193.133333pt;}
.y83{bottom:198.733333pt;}
.y27{bottom:201.400000pt;}
.y48{bottom:203.800000pt;}
.y4e{bottom:208.066667pt;}
.y47{bottom:208.600000pt;}
.y9a{bottom:216.333333pt;}
.y46{bottom:221.400000pt;}
.y82{bottom:223.533333pt;}
.y26{bottom:226.200000pt;}
.y99{bottom:240.866667pt;}
.y81{bottom:248.333333pt;}
.y25{bottom:251.000000pt;}
.y56{bottom:257.666667pt;}
.y98{bottom:265.666667pt;}
.y6a{bottom:272.866667pt;}
.y24{bottom:275.533333pt;}
.y4d{bottom:282.200000pt;}
.y97{bottom:290.200000pt;}
.y69{bottom:297.666667pt;}
.y23{bottom:300.360000pt;}
.y38{bottom:307.040000pt;}
.y96{bottom:315.026667pt;}
.y68{bottom:322.226667pt;}
.y22{bottom:324.893333pt;}
.y2d{bottom:331.560000pt;}
.y95{bottom:339.560000pt;}
.y67{bottom:347.026667pt;}
.y21{bottom:349.693333pt;}
.y94{bottom:364.360000pt;}
.y66{bottom:371.560000pt;}
.y20{bottom:374.226667pt;}
.y37{bottom:380.893333pt;}
.y93{bottom:388.893333pt;}
.y65{bottom:396.360000pt;}
.y1f{bottom:399.026667pt;}
.y92{bottom:413.693333pt;}
.y64{bottom:420.893333pt;}
.y1e{bottom:423.560000pt;}
.y91{bottom:438.506667pt;}
.y80{bottom:445.693333pt;}
.y1d{bottom:448.360000pt;}
.y63{bottom:455.066667pt;}
.y90{bottom:463.066667pt;}
.y7f{bottom:470.533333pt;}
.y1c{bottom:473.200000pt;}
.y8f{bottom:487.866667pt;}
.y7e{bottom:495.066667pt;}
.y1b{bottom:497.733333pt;}
.y45{bottom:504.400000pt;}
.y8e{bottom:512.400000pt;}
.y7d{bottom:519.866667pt;}
.y1a{bottom:522.533333pt;}
.y2c{bottom:529.200000pt;}
.y8d{bottom:537.200000pt;}
.y7c{bottom:544.400000pt;}
.y19{bottom:547.066667pt;}
.y62{bottom:553.733333pt;}
.y8c{bottom:561.733333pt;}
.y7b{bottom:569.200000pt;}
.y18{bottom:571.866667pt;}
.y8b{bottom:586.533333pt;}
.y7a{bottom:593.733333pt;}
.y17{bottom:596.400000pt;}
.y8a{bottom:611.360000pt;}
.y79{bottom:618.560000pt;}
.y16{bottom:621.226667pt;}
.y89{bottom:635.893333pt;}
.y78{bottom:643.360000pt;}
.y15{bottom:646.026667pt;}
.y61{bottom:652.693333pt;}
.y88{bottom:660.693333pt;}
.y77{bottom:667.893333pt;}
.y14{bottom:670.560000pt;}
.y55{bottom:677.226667pt;}
.y87{bottom:685.226667pt;}
.y76{bottom:692.693333pt;}
.y13{bottom:695.360000pt;}
.y36{bottom:702.040000pt;}
.y75{bottom:717.226667pt;}
.y12{bottom:719.893333pt;}
.y86{bottom:728.693333pt;}
.y74{bottom:742.040000pt;}
.y11{bottom:744.706667pt;}
.y73{bottom:766.600000pt;}
.y10{bottom:769.266667pt;}
.y60{bottom:775.933333pt;}
.yf{bottom:794.066667pt;}
.ye{bottom:818.866667pt;}
.y54{bottom:825.533333pt;}
.yd{bottom:843.400000pt;}
.y35{bottom:850.066667pt;}
.yc{bottom:868.200000pt;}
.yb{bottom:892.733333pt;}
.y44{bottom:899.400000pt;}
.ya{bottom:917.560000pt;}
.y9{bottom:942.106667pt;}
.y8{bottom:966.893333pt;}
.y34{bottom:973.560000pt;}
.y5{bottom:988.506667pt;}
.y4{bottom:1006.106667pt;}
.y3{bottom:1027.173333pt;}
.y2{bottom:1048.773333pt;}
.y1{bottom:1073.600000pt;}
.h16{height:31.406250pt;}
.h17{height:34.546875pt;}
.h11{height:35.010937pt;}
.h14{height:36.640625pt;}
.h15{height:37.132812pt;}
.he{height:41.875000pt;}
.h5{height:43.530667pt;}
.h4{height:44.802083pt;}
.h13{height:47.085938pt;}
.hb{height:47.109375pt;}
.h9{height:52.135417pt;}
.h18{height:52.343750pt;}
.h12{height:53.046875pt;}
.h10{height:57.578125pt;}
.hd{height:58.351562pt;}
.h3{height:59.536458pt;}
.h19{height:60.593750pt;}
.h7{height:61.541667pt;}
.hf{height:62.812500pt;}
.h2{height:68.041667pt;}
.h6{height:73.244792pt;}
.h8{height:73.281250pt;}
.hc{height:75.250000pt;}
.ha{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:37.599988pt;}
.x3b{left:65.899976pt;}
.x5{left:75.499988pt;}
.x14{left:80.833322pt;}
.x30{left:83.499988pt;}
.x26{left:85.099988pt;}
.x27{left:86.166655pt;}
.x32{left:112.299976pt;}
.x31{left:113.366643pt;}
.x33{left:121.366655pt;}
.x7{left:122.966655pt;}
.x15{left:142.959976pt;}
.x1c{left:148.559976pt;}
.xc{left:149.906655pt;}
.x28{left:151.226643pt;}
.x1d{left:154.693322pt;}
.x29{left:163.533322pt;}
.x11{left:177.133310pt;}
.x2f{left:181.933310pt;}
.x12{left:183.266655pt;}
.x2c{left:194.733310pt;}
.x2d{left:206.999988pt;}
.xf{left:223.266643pt;}
.x1a{left:227.533310pt;}
.x10{left:229.399988pt;}
.x1b{left:233.666655pt;}
.x22{left:237.933310pt;}
.x36{left:241.399976pt;}
.xa{left:242.999988pt;}
.x23{left:250.199988pt;}
.x37{left:253.666655pt;}
.x13{left:267.573322pt;}
.xb{left:333.439988pt;}
.x20{left:336.106643pt;}
.xd{left:340.893322pt;}
.x21{left:342.226655pt;}
.x8{left:348.359988pt;}
.xe{left:355.839988pt;}
.x2a{left:357.973310pt;}
.x2b{left:370.266655pt;}
.x9{left:396.666655pt;}
.x16{left:423.866643pt;}
.x17{left:429.999988pt;}
.x2{left:436.133322pt;}
.x1{left:495.626655pt;}
.x18{left:506.293310pt;}
.x19{left:512.439988pt;}
.x39{left:514.306643pt;}
.x3a{left:526.559988pt;}
.x3{left:570.559988pt;}
.x24{left:579.106643pt;}
.x2e{left:588.466643pt;}
.x25{left:591.399988pt;}
.x1e{left:593.799976pt;}
.x1f{left:599.933322pt;}
.x34{left:659.933310pt;}
.x35{left:672.199988pt;}
.x38{left:684.199988pt;}
.x4{left:718.359988pt;}
}




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