
    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_28b3bfaab09e90abcbb31543.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2832dc68112faf3b4ee1b181.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_492fc65bfe16792f00a25f0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_9547d9babea4069c50de7316.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_17983ad857993739ff1de1c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_5f93c755bf2171364b7b92b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_864774aa8f1c979a92b1b17f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.857910;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_7d876a74bcc02a6a1e025c74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.952148;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_2b638b1f9e75913c4884cc15.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_c34ba587c1f6a3d6668874af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.693359;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_a5dc7381085fba314264ae3f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.717285;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_8948a0734cf2032dcb388f98.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-49.530180px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.229600px;}
.v3{vertical-align:4.535400px;}
.v1{vertical-align:20.986254px;}
.ls3{letter-spacing:-0.019200px;}
.lse{letter-spacing:-0.016800px;}
.ls12{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.008160px;}
.ls11{letter-spacing:0.008202px;}
.lsf{letter-spacing:0.008351px;}
.ls7{letter-spacing:0.008400px;}
.ls5{letter-spacing:0.008880px;}
.ls8{letter-spacing:0.009000px;}
.ls6{letter-spacing:0.009360px;}
.lsd{letter-spacing:0.009420px;}
.lsb{letter-spacing:0.009600px;}
.lsa{letter-spacing:0.010500px;}
.ls9{letter-spacing:0.010800px;}
.ls1{letter-spacing:0.019200px;}
.ls0{letter-spacing:0.028800px;}
.lsc{letter-spacing:0.033600px;}
.ls13{letter-spacing:0.054000px;}
.ls4{letter-spacing:18.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;}
}
.ws6{word-spacing:-64.810800px;}
.ws4{word-spacing:-50.408400px;}
.ws3{word-spacing:-42.000000px;}
.ws0{word-spacing:-30.024000px;}
.ws5{word-spacing:-27.000000px;}
.wsb{word-spacing:-25.500000px;}
.ws9{word-spacing:-24.408000px;}
.ws7{word-spacing:-24.000000px;}
.wsa{word-spacing:-21.000000px;}
.ws1{word-spacing:-17.792006px;}
.ws8{word-spacing:-0.105600px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-10.967640px;}
._4{margin-left:-9.914400px;}
._2{margin-left:-8.078400px;}
._5{margin-left:-6.972240px;}
._1{margin-left:-5.918400px;}
._0{margin-left:-4.028400px;}
._3{margin-left:-2.160000px;}
._6{margin-left:-1.007040px;}
._8{width:1.004400px;}
._7{width:2871.018960px;}
.fc8{color:rgb(0,249,0);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(124,150,71);}
.fc4{color:transparent;}
.fc2{color:rgb(0,32,96);}
.fc7{color:rgb(67,67,67);}
.fc3{color:rgb(136,136,136);}
.fc1{color:rgb(16,16,16);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:60.000000px;}
.fs4{font-size:64.000020px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:83.514000px;}
.fs8{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.fsb{font-size:102.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.fs6{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:8.136016px;}
.ybf{bottom:9.336090px;}
.y9f{bottom:15.488220px;}
.y8{bottom:17.447475px;}
.y17{bottom:17.736060px;}
.ya{bottom:22.497150px;}
.y6e{bottom:30.118605px;}
.yca{bottom:44.555430px;}
.ybe{bottom:49.206405px;}
.y6d{bottom:54.118605px;}
.ya9{bottom:57.628275px;}
.y5f{bottom:65.707905px;}
.y7f{bottom:72.188835px;}
.y37{bottom:84.473595px;}
.y16{bottom:84.841965px;}
.ya8{bottom:85.743030px;}
.y5e{bottom:93.360495px;}
.y30{bottom:96.800310px;}
.y23{bottom:97.246950px;}
.y7e{bottom:99.188835px;}
.y46{bottom:100.923390px;}
.yc9{bottom:104.555430px;}
.y96{bottom:106.903575px;}
.ybd{bottom:109.206405px;}
.y6c{bottom:110.299755px;}
.ya7{bottom:112.743030px;}
.y36{bottom:115.973595px;}
.y15{bottom:116.341965px;}
.y5d{bottom:120.241845px;}
.y2f{bottom:123.800310px;}
.y22{bottom:124.246950px;}
.y7d{bottom:127.533555px;}
.y7{bottom:128.009700px;}
.y45{bottom:128.480760px;}
.y95{bottom:135.018315px;}
.ya6{bottom:139.743030px;}
.y5c{bottom:147.241845px;}
.y14{bottom:148.618335px;}
.y2e{bottom:151.582950px;}
.y21{bottom:151.804350px;}
.y7c{bottom:154.860900px;}
.y44{bottom:156.038100px;}
.y80{bottom:161.630850px;}
.y94{bottom:163.133100px;}
.yc8{bottom:164.555400px;}
.ya5{bottom:166.743000px;}
.ybc{bottom:169.206450px;}
.y5b{bottom:174.241800px;}
.y20{bottom:180.138000px;}
.y2d{bottom:180.141900px;}
.y7b{bottom:182.418300px;}
.y6b{bottom:182.933850px;}
.y43{bottom:183.595500px;}
.y13{bottom:186.941550px;}
.y93{bottom:191.247750px;}
.y5a{bottom:201.241800px;}
.y6a{bottom:206.933850px;}
.y7a{bottom:209.975700px;}
.y42{bottom:211.710300px;}
.ya4{bottom:212.289900px;}
.y92{bottom:219.362550px;}
.yc7{bottom:224.555400px;}
.y6{bottom:225.617700px;}
.y59{bottom:228.799200px;}
.ybb{bottom:229.206450px;}
.y79{bottom:238.090500px;}
.y41{bottom:239.267700px;}
.ya3{bottom:239.289900px;}
.y91{bottom:247.477350px;}
.y69{bottom:254.933850px;}
.y58{bottom:256.914000px;}
.ya2{bottom:266.289900px;}
.y40{bottom:267.043950px;}
.y90{bottom:275.592000px;}
.y5{bottom:279.925950px;}
.y57{bottom:284.471400px;}
.yc6{bottom:284.555400px;}
.yba{bottom:289.206450px;}
.ya1{bottom:293.289900px;}
.y12{bottom:295.262850px;}
.y78{bottom:297.924150px;}
.y1f{bottom:299.475450px;}
.y2c{bottom:299.696850px;}
.y8f{bottom:303.149400px;}
.y56{bottom:312.247650px;}
.y68{bottom:312.481800px;}
.y35{bottom:319.590150px;}
.ya0{bottom:320.289900px;}
.y1e{bottom:326.475450px;}
.y2b{bottom:326.696850px;}
.y11{bottom:326.762850px;}
.y8e{bottom:330.149400px;}
.y4{bottom:342.042750px;}
.yc5{bottom:344.555400px;}
.yb9{bottom:349.206450px;}
.y34{bottom:352.456950px;}
.y1d{bottom:353.475450px;}
.y2a{bottom:353.696850px;}
.y8d{bottom:357.149400px;}
.y10{bottom:359.039100px;}
.y1c{bottom:381.251850px;}
.y29{bottom:381.473250px;}
.y8c{bottom:384.149400px;}
.y67{bottom:388.079400px;}
.yf{bottom:402.709050px;}
.y3{bottom:404.159400px;}
.yc4{bottom:404.555400px;}
.y77{bottom:404.888850px;}
.yb8{bottom:409.206450px;}
.y8b{bottom:411.149400px;}
.y66{bottom:412.079400px;}
.y55{bottom:416.353500px;}
.y3f{bottom:421.400850px;}
.y76{bottom:432.446250px;}
.yb3{bottom:437.546250px;}
.y8a{bottom:438.149400px;}
.y54{bottom:443.353500px;}
.y3e{bottom:448.958250px;}
.y75{bottom:460.003500px;}
.y65{bottom:460.079400px;}
.yb2{bottom:464.546250px;}
.yc3{bottom:464.555400px;}
.y89{bottom:465.149400px;}
.y9e{bottom:465.895050px;}
.yab{bottom:466.030050px;}
.yb7{bottom:469.206450px;}
.y53{bottom:470.910900px;}
.y3d{bottom:477.073050px;}
.y74{bottom:487.560900px;}
.yb1{bottom:491.546250px;}
.y88{bottom:492.149400px;}
.y9d{bottom:492.895050px;}
.y52{bottom:498.468300px;}
.y2{bottom:499.977750px;}
.y1b{bottom:501.368100px;}
.y28{bottom:501.810900px;}
.y3c{bottom:504.630300px;}
.y83{bottom:507.094350px;}
.y64{bottom:508.079400px;}
.ye{bottom:513.703650px;}
.y73{bottom:515.118300px;}
.yb0{bottom:519.103500px;}
.y87{bottom:519.149400px;}
.y9c{bottom:519.895050px;}
.yc2{bottom:524.555400px;}
.y51{bottom:525.468300px;}
.y1a{bottom:528.368100px;}
.y27{bottom:528.810900px;}
.yb6{bottom:529.206450px;}
.y3b{bottom:531.630300px;}
.y63{bottom:532.079400px;}
.y4c{bottom:534.118050px;}
.y82{bottom:535.894350px;}
.y1{bottom:541.977750px;}
.y72{bottom:542.675700px;}
.yd{bottom:545.203650px;}
.y86{bottom:546.706800px;}
.y9b{bottom:546.895050px;}
.yaf{bottom:547.218300px;}
.y50{bottom:552.468300px;}
.y19{bottom:555.368100px;}
.y26{bottom:555.810900px;}
.y3a{bottom:558.630300px;}
.y4b{bottom:561.675300px;}
.y33{bottom:567.989850px;}
.y71{bottom:570.233100px;}
.y85{bottom:574.264200px;}
.y9a{bottom:574.452300px;}
.yae{bottom:574.775700px;}
.yc{bottom:577.480050px;}
.y4f{bottom:579.468300px;}
.y62{bottom:580.079400px;}
.y18{bottom:583.144500px;}
.y25{bottom:583.587300px;}
.yc1{bottom:584.555400px;}
.y39{bottom:585.630300px;}
.yb5{bottom:589.206450px;}
.y4a{bottom:589.232700px;}
.y70{bottom:597.790350px;}
.y32{bottom:600.623550px;}
.yad{bottom:601.775700px;}
.y84{bottom:601.821600px;}
.y99{bottom:602.009700px;}
.y4e{bottom:606.468300px;}
.y38{bottom:613.406700px;}
.yb{bottom:615.803250px;}
.y49{bottom:616.790100px;}
.y61{bottom:628.079400px;}
.y98{bottom:629.009700px;}
.y31{bottom:633.257400px;}
.y4d{bottom:634.244700px;}
.y48{bottom:644.347500px;}
.yc0{bottom:644.555400px;}
.yb4{bottom:649.206450px;}
.y97{bottom:656.567100px;}
.y6f{bottom:657.066750px;}
.yac{bottom:661.052100px;}
.yaa{bottom:664.430850px;}
.y24{bottom:669.475800px;}
.y47{bottom:671.347500px;}
.y60{bottom:676.797000px;}
.y81{bottom:681.471750px;}
.y9{bottom:728.567850px;}
.h4{height:39.990234px;}
.ha{height:48.972656px;}
.h15{height:56.641087px;}
.h16{height:56.970703px;}
.h19{height:58.365234px;}
.h14{height:60.251953px;}
.h17{height:65.783205px;}
.hc{height:66.703125px;}
.h12{height:68.932125px;}
.h13{height:68.932605px;}
.hd{height:68.932725px;}
.he{height:69.833325px;}
.h3{height:69.890625px;}
.h1a{height:70.872070px;}
.h5{height:71.255865px;}
.hb{height:73.195312px;}
.h18{height:73.458984px;}
.h9{height:75.041016px;}
.h10{height:77.774016px;}
.h11{height:77.774616px;}
.hf{height:79.576416px;}
.h8{height:83.378906px;}
.h2{height:87.363281px;}
.h1{height:104.835938px;}
.h6{height:113.859375px;}
.h7{height:120.000000px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x33{left:23.909760px;}
.x14{left:26.074200px;}
.x29{left:36.524760px;}
.x38{left:38.778795px;}
.x19{left:42.322275px;}
.x18{left:44.358975px;}
.xf{left:49.093140px;}
.x11{left:56.400000px;}
.x3b{left:58.709760px;}
.x37{left:63.509760px;}
.x1e{left:64.709760px;}
.x21{left:65.909760px;}
.x23{left:73.709760px;}
.x34{left:77.909760px;}
.x15{left:80.074200px;}
.x22{left:84.798330px;}
.x3d{left:90.360330px;}
.x3c{left:93.698715px;}
.x2f{left:99.124515px;}
.x25{left:100.709760px;}
.x17{left:106.023915px;}
.x16{left:110.855715px;}
.x1d{left:116.000970px;}
.xc{left:117.275145px;}
.x1f{left:118.709760px;}
.x24{left:127.709760px;}
.xa{left:128.744025px;}
.x1b{left:130.709760px;}
.x35{left:131.909760px;}
.x32{left:133.842765px;}
.xb{left:151.062450px;}
.x30{left:153.124500px;}
.x31{left:182.712900px;}
.x1c{left:184.709700px;}
.x3a{left:202.195350px;}
.x13{left:204.986550px;}
.x10{left:210.501450px;}
.x2b{left:214.315350px;}
.x1a{left:228.496500px;}
.x2{left:231.802800px;}
.x27{left:234.925800px;}
.x20{left:238.914600px;}
.x1{left:263.812650px;}
.x2e{left:316.536600px;}
.x12{left:324.698700px;}
.xe{left:335.557650px;}
.x6{left:368.602350px;}
.x5{left:401.146050px;}
.x7{left:407.114100px;}
.x4{left:417.144450px;}
.x36{left:436.615050px;}
.x9{left:440.844750px;}
.x3{left:487.920450px;}
.x39{left:906.372150px;}
.x28{left:989.749950px;}
.x2d{left:991.572150px;}
.x2a{left:999.927600px;}
.x2c{left:1001.749950px;}
.x26{left:1039.185450px;}
.xd{left:1048.308600px;}
.x8{left:1050.400350px;}
.x3e{left:1054.785450px;}
@media print{
.v4{vertical-align:-44.026827pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.981867pt;}
.v3{vertical-align:4.031467pt;}
.v1{vertical-align:18.654448pt;}
.ls3{letter-spacing:-0.017067pt;}
.lse{letter-spacing:-0.014933pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.007253pt;}
.ls11{letter-spacing:0.007291pt;}
.lsf{letter-spacing:0.007423pt;}
.ls7{letter-spacing:0.007467pt;}
.ls5{letter-spacing:0.007893pt;}
.ls8{letter-spacing:0.008000pt;}
.ls6{letter-spacing:0.008320pt;}
.lsd{letter-spacing:0.008373pt;}
.lsb{letter-spacing:0.008533pt;}
.lsa{letter-spacing:0.009333pt;}
.ls9{letter-spacing:0.009600pt;}
.ls1{letter-spacing:0.017067pt;}
.ls0{letter-spacing:0.025600pt;}
.lsc{letter-spacing:0.029867pt;}
.ls13{letter-spacing:0.048000pt;}
.ls4{letter-spacing:16.000000pt;}
.ws6{word-spacing:-57.609600pt;}
.ws4{word-spacing:-44.807467pt;}
.ws3{word-spacing:-37.333333pt;}
.ws0{word-spacing:-26.688000pt;}
.ws5{word-spacing:-24.000000pt;}
.wsb{word-spacing:-22.666667pt;}
.ws9{word-spacing:-21.696000pt;}
.ws7{word-spacing:-21.333333pt;}
.wsa{word-spacing:-18.666667pt;}
.ws1{word-spacing:-15.815116pt;}
.ws8{word-spacing:-0.093867pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-9.749013pt;}
._4{margin-left:-8.812800pt;}
._2{margin-left:-7.180800pt;}
._5{margin-left:-6.197547pt;}
._1{margin-left:-5.260800pt;}
._0{margin-left:-3.580800pt;}
._3{margin-left:-1.920000pt;}
._6{margin-left:-0.895147pt;}
._8{width:0.892800pt;}
._7{width:2552.016853pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:56.888907pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:74.234667pt;}
.fs8{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.fsb{font-size:90.666667pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.fs6{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:7.232015pt;}
.ybf{bottom:8.298747pt;}
.y9f{bottom:13.767307pt;}
.y8{bottom:15.508867pt;}
.y17{bottom:15.765387pt;}
.ya{bottom:19.997467pt;}
.y6e{bottom:26.772093pt;}
.yca{bottom:39.604827pt;}
.ybe{bottom:43.739027pt;}
.y6d{bottom:48.105427pt;}
.ya9{bottom:51.225133pt;}
.y5f{bottom:58.407027pt;}
.y7f{bottom:64.167853pt;}
.y37{bottom:75.087640pt;}
.y16{bottom:75.415080pt;}
.ya8{bottom:76.216027pt;}
.y5e{bottom:82.987107pt;}
.y30{bottom:86.044720pt;}
.y23{bottom:86.441733pt;}
.y7e{bottom:88.167853pt;}
.y46{bottom:89.709680pt;}
.yc9{bottom:92.938160pt;}
.y96{bottom:95.025400pt;}
.ybd{bottom:97.072360pt;}
.y6c{bottom:98.044227pt;}
.ya7{bottom:100.216027pt;}
.y36{bottom:103.087640pt;}
.y15{bottom:103.415080pt;}
.y5d{bottom:106.881640pt;}
.y2f{bottom:110.044720pt;}
.y22{bottom:110.441733pt;}
.y7d{bottom:113.363160pt;}
.y7{bottom:113.786400pt;}
.y45{bottom:114.205120pt;}
.y95{bottom:120.016280pt;}
.ya6{bottom:124.216027pt;}
.y5c{bottom:130.881640pt;}
.y14{bottom:132.105187pt;}
.y2e{bottom:134.740400pt;}
.y21{bottom:134.937200pt;}
.y7c{bottom:137.654133pt;}
.y44{bottom:138.700533pt;}
.y80{bottom:143.671867pt;}
.y94{bottom:145.007200pt;}
.yc8{bottom:146.271467pt;}
.ya5{bottom:148.216000pt;}
.ybc{bottom:150.405733pt;}
.y5b{bottom:154.881600pt;}
.y20{bottom:160.122667pt;}
.y2d{bottom:160.126133pt;}
.y7b{bottom:162.149600pt;}
.y6b{bottom:162.607867pt;}
.y43{bottom:163.196000pt;}
.y13{bottom:166.170267pt;}
.y93{bottom:169.998000pt;}
.y5a{bottom:178.881600pt;}
.y6a{bottom:183.941200pt;}
.y7a{bottom:186.645067pt;}
.y42{bottom:188.186933pt;}
.ya4{bottom:188.702133pt;}
.y92{bottom:194.988933pt;}
.yc7{bottom:199.604800pt;}
.y6{bottom:200.549067pt;}
.y59{bottom:203.377067pt;}
.ybb{bottom:203.739067pt;}
.y79{bottom:211.636000pt;}
.y41{bottom:212.682400pt;}
.ya3{bottom:212.702133pt;}
.y91{bottom:219.979867pt;}
.y69{bottom:226.607867pt;}
.y58{bottom:228.368000pt;}
.ya2{bottom:236.702133pt;}
.y40{bottom:237.372400pt;}
.y90{bottom:244.970667pt;}
.y5{bottom:248.823067pt;}
.y57{bottom:252.863467pt;}
.yc6{bottom:252.938133pt;}
.yba{bottom:257.072400pt;}
.ya1{bottom:260.702133pt;}
.y12{bottom:262.455867pt;}
.y78{bottom:264.821467pt;}
.y1f{bottom:266.200400pt;}
.y2c{bottom:266.397200pt;}
.y8f{bottom:269.466133pt;}
.y56{bottom:277.553467pt;}
.y68{bottom:277.761600pt;}
.y35{bottom:284.080133pt;}
.ya0{bottom:284.702133pt;}
.y1e{bottom:290.200400pt;}
.y2b{bottom:290.397200pt;}
.y11{bottom:290.455867pt;}
.y8e{bottom:293.466133pt;}
.y4{bottom:304.038000pt;}
.yc5{bottom:306.271467pt;}
.yb9{bottom:310.405733pt;}
.y34{bottom:313.295067pt;}
.y1d{bottom:314.200400pt;}
.y2a{bottom:314.397200pt;}
.y8d{bottom:317.466133pt;}
.y10{bottom:319.145867pt;}
.y1c{bottom:338.890533pt;}
.y29{bottom:339.087333pt;}
.y8c{bottom:341.466133pt;}
.y67{bottom:344.959467pt;}
.yf{bottom:357.963600pt;}
.y3{bottom:359.252800pt;}
.yc4{bottom:359.604800pt;}
.y77{bottom:359.901200pt;}
.yb8{bottom:363.739067pt;}
.y8b{bottom:365.466133pt;}
.y66{bottom:366.292800pt;}
.y55{bottom:370.092000pt;}
.y3f{bottom:374.578533pt;}
.y76{bottom:384.396667pt;}
.yb3{bottom:388.930000pt;}
.y8a{bottom:389.466133pt;}
.y54{bottom:394.092000pt;}
.y3e{bottom:399.074000pt;}
.y75{bottom:408.892000pt;}
.y65{bottom:408.959467pt;}
.yb2{bottom:412.930000pt;}
.yc3{bottom:412.938133pt;}
.y89{bottom:413.466133pt;}
.y9e{bottom:414.128933pt;}
.yab{bottom:414.248933pt;}
.yb7{bottom:417.072400pt;}
.y53{bottom:418.587467pt;}
.y3d{bottom:424.064933pt;}
.y74{bottom:433.387467pt;}
.yb1{bottom:436.930000pt;}
.y88{bottom:437.466133pt;}
.y9d{bottom:438.128933pt;}
.y52{bottom:443.082933pt;}
.y2{bottom:444.424667pt;}
.y1b{bottom:445.660533pt;}
.y28{bottom:446.054133pt;}
.y3c{bottom:448.560267pt;}
.y83{bottom:450.750533pt;}
.y64{bottom:451.626133pt;}
.ye{bottom:456.625467pt;}
.y73{bottom:457.882933pt;}
.yb0{bottom:461.425333pt;}
.y87{bottom:461.466133pt;}
.y9c{bottom:462.128933pt;}
.yc2{bottom:466.271467pt;}
.y51{bottom:467.082933pt;}
.y1a{bottom:469.660533pt;}
.y27{bottom:470.054133pt;}
.yb6{bottom:470.405733pt;}
.y3b{bottom:472.560267pt;}
.y63{bottom:472.959467pt;}
.y4c{bottom:474.771600pt;}
.y82{bottom:476.350533pt;}
.y1{bottom:481.758000pt;}
.y72{bottom:482.378400pt;}
.yd{bottom:484.625467pt;}
.y86{bottom:485.961600pt;}
.y9b{bottom:486.128933pt;}
.yaf{bottom:486.416267pt;}
.y50{bottom:491.082933pt;}
.y19{bottom:493.660533pt;}
.y26{bottom:494.054133pt;}
.y3a{bottom:496.560267pt;}
.y4b{bottom:499.266933pt;}
.y33{bottom:504.879867pt;}
.y71{bottom:506.873867pt;}
.y85{bottom:510.457067pt;}
.y9a{bottom:510.624267pt;}
.yae{bottom:510.911733pt;}
.yc{bottom:513.315600pt;}
.y4f{bottom:515.082933pt;}
.y62{bottom:515.626133pt;}
.y18{bottom:518.350667pt;}
.y25{bottom:518.744267pt;}
.yc1{bottom:519.604800pt;}
.y39{bottom:520.560267pt;}
.yb5{bottom:523.739067pt;}
.y4a{bottom:523.762400pt;}
.y70{bottom:531.369200pt;}
.y32{bottom:533.887600pt;}
.yad{bottom:534.911733pt;}
.y84{bottom:534.952533pt;}
.y99{bottom:535.119733pt;}
.y4e{bottom:539.082933pt;}
.y38{bottom:545.250400pt;}
.yb{bottom:547.380667pt;}
.y49{bottom:548.257867pt;}
.y61{bottom:558.292800pt;}
.y98{bottom:559.119733pt;}
.y31{bottom:562.895467pt;}
.y4d{bottom:563.773067pt;}
.y48{bottom:572.753333pt;}
.yc0{bottom:572.938133pt;}
.yb4{bottom:577.072400pt;}
.y97{bottom:583.615200pt;}
.y6f{bottom:584.059333pt;}
.yac{bottom:587.601867pt;}
.yaa{bottom:590.605200pt;}
.y24{bottom:595.089600pt;}
.y47{bottom:596.753333pt;}
.y60{bottom:601.597333pt;}
.y81{bottom:605.752667pt;}
.y9{bottom:647.615867pt;}
.h4{height:35.546875pt;}
.ha{height:43.531250pt;}
.h15{height:50.347633pt;}
.h16{height:50.640625pt;}
.h19{height:51.880208pt;}
.h14{height:53.557292pt;}
.h17{height:58.473960pt;}
.hc{height:59.291667pt;}
.h12{height:61.273000pt;}
.h13{height:61.273427pt;}
.hd{height:61.273533pt;}
.he{height:62.074067pt;}
.h3{height:62.125000pt;}
.h1a{height:62.997396pt;}
.h5{height:63.338547pt;}
.hb{height:65.062500pt;}
.h18{height:65.296875pt;}
.h9{height:66.703125pt;}
.h10{height:69.132458pt;}
.h11{height:69.132992pt;}
.hf{height:70.734592pt;}
.h8{height:74.114583pt;}
.h2{height:77.656250pt;}
.h1{height:93.187500pt;}
.h6{height:101.208333pt;}
.h7{height:106.666667pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x33{left:21.253120pt;}
.x14{left:23.177067pt;}
.x29{left:32.466453pt;}
.x38{left:34.470040pt;}
.x19{left:37.619800pt;}
.x18{left:39.430200pt;}
.xf{left:43.638347pt;}
.x11{left:50.133333pt;}
.x3b{left:52.186453pt;}
.x37{left:56.453120pt;}
.x1e{left:57.519787pt;}
.x21{left:58.586453pt;}
.x23{left:65.519787pt;}
.x34{left:69.253120pt;}
.x15{left:71.177067pt;}
.x22{left:75.376293pt;}
.x3d{left:80.320293pt;}
.x3c{left:83.287747pt;}
.x2f{left:88.110680pt;}
.x25{left:89.519787pt;}
.x17{left:94.243480pt;}
.x16{left:98.538413pt;}
.x1d{left:103.111973pt;}
.xc{left:104.244573pt;}
.x1f{left:105.519787pt;}
.x24{left:113.519787pt;}
.xa{left:114.439133pt;}
.x1b{left:116.186453pt;}
.x35{left:117.253120pt;}
.x32{left:118.971347pt;}
.xb{left:134.277733pt;}
.x30{left:136.110667pt;}
.x31{left:162.411467pt;}
.x1c{left:164.186400pt;}
.x3a{left:179.729200pt;}
.x13{left:182.210267pt;}
.x10{left:187.112400pt;}
.x2b{left:190.502533pt;}
.x1a{left:203.108000pt;}
.x2{left:206.046933pt;}
.x27{left:208.822933pt;}
.x20{left:212.368533pt;}
.x1{left:234.500133pt;}
.x2e{left:281.365867pt;}
.x12{left:288.621067pt;}
.xe{left:298.273467pt;}
.x6{left:327.646533pt;}
.x5{left:356.574267pt;}
.x7{left:361.879200pt;}
.x4{left:370.795067pt;}
.x36{left:388.102267pt;}
.x9{left:391.862000pt;}
.x3{left:433.707067pt;}
.x39{left:805.664133pt;}
.x28{left:879.777733pt;}
.x2d{left:881.397467pt;}
.x2a{left:888.824533pt;}
.x2c{left:890.444400pt;}
.x26{left:923.720400pt;}
.xd{left:931.829867pt;}
.x8{left:933.689200pt;}
.x3e{left:937.587067pt;}
}




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