
    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_8cb7e37172694ecf03b03bd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_992d086e9b92efe12f12c058.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_4716d7e065d16c3995dc90d9.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_0573b8d0e6502acbb06b9db0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_0b8f4a36f26520b878c09218.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_c85903a4bcb7eb1c4942568f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.110533;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_a2c91be2259a9e627572ea9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961000;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_879898c81ba0356ba82833e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064000;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_4c6aa373ba6e631fcb9ccf7e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_eac59c198819a3eeb01aa3a6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1fa3c584fd6443db74080b64.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-2.585160px;}
.ls1f{letter-spacing:-2.344680px;}
.ls16{letter-spacing:-1.563120px;}
.ls13{letter-spacing:-1.382760px;}
.ls17{letter-spacing:-1.022040px;}
.ls12{letter-spacing:-0.841680px;}
.lsd{letter-spacing:-0.480960px;}
.ls1d{letter-spacing:-0.420840px;}
.ls1e{letter-spacing:-0.360720px;}
.ls11{letter-spacing:-0.300600px;}
.ls10{letter-spacing:-0.180360px;}
.ls21{letter-spacing:-0.156240px;}
.lsb{letter-spacing:-0.131760px;}
.ls8{letter-spacing:-0.120240px;}
.ls20{letter-spacing:-0.065880px;}
.lsf{letter-spacing:-0.060120px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.060120px;}
.lsc{letter-spacing:0.078120px;}
.ls7{letter-spacing:0.083160px;}
.ls14{letter-spacing:0.120240px;}
.lse{letter-spacing:0.180360px;}
.ls1b{letter-spacing:1.202400px;}
.ls1{letter-spacing:1.563120px;}
.ls15{letter-spacing:1.923840px;}
.ls5{letter-spacing:2.284560px;}
.ls0{letter-spacing:3.366720px;}
.ls2{letter-spacing:4.448880px;}
.ls1a{letter-spacing:5.603184px;}
.ls6{letter-spacing:8.416800px;}
.ls4{letter-spacing:11.302560px;}
.ls3{letter-spacing:11.663280px;}
.ls19{letter-spacing:62.103960px;}
.ls1c{letter-spacing:848.954520px;}
.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;}
}
.ws15{word-spacing:-16.352640px;}
.ws4{word-spacing:-16.292520px;}
.ws19{word-spacing:-16.172280px;}
.ws18{word-spacing:-16.112160px;}
.ws17{word-spacing:-15.877080px;}
.ws6{word-spacing:-14.789520px;}
.ws3{word-spacing:-14.609160px;}
.ws7{word-spacing:-14.549040px;}
.ws9{word-spacing:-14.488920px;}
.ws5{word-spacing:-14.308560px;}
.ws8{word-spacing:-13.767480px;}
.ws13{word-spacing:-13.587120px;}
.ws12{word-spacing:-13.046040px;}
.wsf{word-spacing:-0.180360px;}
.ws0{word-spacing:-0.120240px;}
.wsd{word-spacing:-0.078120px;}
.ws1c{word-spacing:-0.065880px;}
.ws1{word-spacing:-0.060120px;}
.wsb{word-spacing:0.000000px;}
.ws2{word-spacing:0.060120px;}
.ws1d{word-spacing:0.078120px;}
.wsa{word-spacing:0.120240px;}
.wsc{word-spacing:0.131760px;}
.ws10{word-spacing:0.180360px;}
.ws16{word-spacing:0.300600px;}
.ws1e{word-spacing:0.312480px;}
.ws1a{word-spacing:0.420840px;}
.wse{word-spacing:0.480960px;}
.ws11{word-spacing:1.382760px;}
.ws1b{word-spacing:2.344680px;}
.ws14{word-spacing:2.585160px;}
._2d{margin-left:-7.591284px;}
._1f{margin-left:-6.498972px;}
._11{margin-left:-5.040324px;}
._4{margin-left:-3.765384px;}
._5{margin-left:-2.444148px;}
._3{margin-left:-1.016028px;}
._0{width:1.052100px;}
._8{width:2.507004px;}
._6{width:3.548952px;}
._a{width:4.557096px;}
._b{width:5.802984px;}
._d{width:7.064100px;}
._9{width:8.434836px;}
._c{width:10.292544px;}
._15{width:11.338632px;}
._7{width:12.883716px;}
._1d{width:15.935076px;}
._f{width:17.007948px;}
._10{width:18.787500px;}
._25{width:19.971864px;}
._14{width:20.995308px;}
._13{width:22.821552px;}
._12{width:24.067908px;}
._23{width:26.384796px;}
._18{width:27.424008px;}
._20{width:29.387196px;}
._1e{width:30.700008px;}
._e{width:32.290452px;}
._1c{width:33.745896px;}
._26{width:35.392644px;}
._27{width:37.866852px;}
._17{width:40.827492px;}
._16{width:41.936976px;}
._19{width:51.216228px;}
._1a{width:52.352496px;}
._2c{width:56.862036px;}
._2b{width:58.797360px;}
._2a{width:64.304352px;}
._29{width:71.909532px;}
._28{width:74.990952px;}
._22{width:81.745164px;}
._1{width:284.036940px;}
._21{width:289.531908px;}
._24{width:872.882280px;}
._2{width:873.964440px;}
._1b{width:875.707920px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:78.120000px;}
.fs3{font-size:168.120000px;}
.fs4{font-size:285.120000px;}
.y0{bottom:0.000000px;}
.y53{bottom:5.760000px;}
.y37{bottom:94.909590px;}
.y51{bottom:95.044860px;}
.y87{bottom:109.273050px;}
.y36{bottom:114.794280px;}
.y50{bottom:114.929550px;}
.y86{bottom:129.157740px;}
.ybc{bottom:129.443310px;}
.y35{bottom:134.678970px;}
.y4f{bottom:134.814240px;}
.y85{bottom:149.042430px;}
.ybb{bottom:149.328000px;}
.y34{bottom:154.563660px;}
.y4e{bottom:154.698930px;}
.y84{bottom:168.927120px;}
.yba{bottom:169.212690px;}
.y33{bottom:174.448350px;}
.y4d{bottom:174.583620px;}
.y83{bottom:188.721630px;}
.yb9{bottom:189.007200px;}
.y32{bottom:194.242860px;}
.y4c{bottom:194.378130px;}
.y82{bottom:208.606320px;}
.yb8{bottom:208.891890px;}
.y31{bottom:214.127550px;}
.y4b{bottom:214.262820px;}
.y81{bottom:228.491010px;}
.yb7{bottom:228.776580px;}
.y30{bottom:234.012240px;}
.y4a{bottom:234.147510px;}
.y80{bottom:248.375700px;}
.yb6{bottom:248.661270px;}
.y2f{bottom:253.896930px;}
.y49{bottom:254.032200px;}
.y7f{bottom:268.260390px;}
.yb5{bottom:268.545960px;}
.y2e{bottom:273.781620px;}
.y48{bottom:273.916890px;}
.y7e{bottom:288.145080px;}
.yb4{bottom:288.430650px;}
.y2d{bottom:293.666310px;}
.y47{bottom:293.801580px;}
.y7d{bottom:307.939590px;}
.yb3{bottom:308.225160px;}
.y2c{bottom:313.460820px;}
.y46{bottom:313.596090px;}
.ye5{bottom:323.714700px;}
.y7c{bottom:327.824280px;}
.yb2{bottom:328.109850px;}
.y2b{bottom:333.345510px;}
.y45{bottom:333.480780px;}
.ye4{bottom:343.599390px;}
.y7b{bottom:347.708970px;}
.yb1{bottom:347.994540px;}
.y2a{bottom:353.230200px;}
.y44{bottom:353.365470px;}
.ye3{bottom:363.484080px;}
.y7a{bottom:367.593660px;}
.yb0{bottom:367.879230px;}
.y29{bottom:373.114890px;}
.y43{bottom:373.250160px;}
.ye2{bottom:383.368770px;}
.y79{bottom:387.478350px;}
.yaf{bottom:387.763920px;}
.y28{bottom:392.999580px;}
.y42{bottom:393.134850px;}
.ye1{bottom:403.163280px;}
.y78{bottom:407.363040px;}
.yae{bottom:407.648610px;}
.y27{bottom:412.884270px;}
.y41{bottom:413.019540px;}
.ye0{bottom:423.047970px;}
.y77{bottom:427.157550px;}
.yad{bottom:427.443120px;}
.y26{bottom:432.678780px;}
.y40{bottom:432.814050px;}
.ydf{bottom:442.932660px;}
.y76{bottom:447.042240px;}
.yac{bottom:447.327810px;}
.y25{bottom:452.563470px;}
.y3f{bottom:452.698740px;}
.yde{bottom:462.817350px;}
.y75{bottom:466.926930px;}
.yab{bottom:467.212500px;}
.y24{bottom:472.448160px;}
.y3e{bottom:472.583430px;}
.ydd{bottom:482.702040px;}
.y74{bottom:486.811620px;}
.yaa{bottom:487.097190px;}
.y23{bottom:492.332850px;}
.y3d{bottom:492.468120px;}
.ydc{bottom:502.586730px;}
.y73{bottom:506.696310px;}
.ya9{bottom:506.981880px;}
.y22{bottom:512.217540px;}
.y3c{bottom:512.352810px;}
.ydb{bottom:522.381240px;}
.y72{bottom:526.581000px;}
.ya8{bottom:526.866570px;}
.y21{bottom:532.102230px;}
.y3b{bottom:532.237500px;}
.yda{bottom:542.265930px;}
.y71{bottom:546.375510px;}
.ya7{bottom:546.661080px;}
.y20{bottom:551.896740px;}
.y3a{bottom:552.032010px;}
.yd9{bottom:562.150620px;}
.y70{bottom:566.260200px;}
.ya6{bottom:566.545770px;}
.y52{bottom:567.360000px;}
.y1f{bottom:571.781430px;}
.y39{bottom:571.916700px;}
.yd8{bottom:582.035310px;}
.y6f{bottom:586.144890px;}
.ya5{bottom:586.430460px;}
.y1e{bottom:591.666120px;}
.y38{bottom:591.801390px;}
.yd7{bottom:601.920000px;}
.y6e{bottom:606.029580px;}
.ya4{bottom:606.315150px;}
.y1d{bottom:611.550810px;}
.yd6{bottom:623.061810px;}
.y6d{bottom:625.914270px;}
.ya3{bottom:626.199840px;}
.y1c{bottom:631.435500px;}
.y6c{bottom:645.798960px;}
.ya2{bottom:646.084530px;}
.yd5{bottom:648.900000px;}
.y1b{bottom:651.320190px;}
.y6b{bottom:665.593470px;}
.ya1{bottom:665.879040px;}
.y1a{bottom:671.114700px;}
.yd4{bottom:673.828020px;}
.y6a{bottom:685.478160px;}
.ya0{bottom:685.763730px;}
.y19{bottom:690.999390px;}
.yd3{bottom:695.700180px;}
.y69{bottom:705.362850px;}
.y9f{bottom:705.648420px;}
.y18{bottom:710.884080px;}
.yd2{bottom:717.572340px;}
.y68{bottom:725.247540px;}
.y9e{bottom:725.533110px;}
.y17{bottom:730.768770px;}
.yd1{bottom:739.345680px;}
.y67{bottom:745.132230px;}
.y9d{bottom:745.417800px;}
.y16{bottom:750.653460px;}
.yd0{bottom:761.217840px;}
.y66{bottom:765.016920px;}
.y9c{bottom:765.302490px;}
.y15{bottom:770.538150px;}
.ycf{bottom:783.090000px;}
.y65{bottom:784.811430px;}
.y9b{bottom:785.097000px;}
.y14{bottom:790.332660px;}
.y64{bottom:804.696120px;}
.y9a{bottom:804.981690px;}
.y13{bottom:810.217350px;}
.y63{bottom:824.580810px;}
.yce{bottom:824.670990px;}
.y99{bottom:824.866380px;}
.y12{bottom:830.102040px;}
.y62{bottom:844.465500px;}
.ycd{bottom:844.555680px;}
.y98{bottom:844.751070px;}
.y11{bottom:849.986730px;}
.y61{bottom:864.350190px;}
.ycc{bottom:864.440370px;}
.y97{bottom:864.635760px;}
.y10{bottom:869.871420px;}
.y60{bottom:884.234880px;}
.ycb{bottom:884.325060px;}
.y96{bottom:884.520450px;}
.yf{bottom:889.756110px;}
.y5f{bottom:904.029390px;}
.yca{bottom:904.119570px;}
.y95{bottom:904.314960px;}
.ye{bottom:909.550620px;}
.y5e{bottom:923.914080px;}
.yc9{bottom:924.004260px;}
.y94{bottom:924.199650px;}
.yd{bottom:929.435310px;}
.y5d{bottom:943.798770px;}
.yc8{bottom:943.888950px;}
.y93{bottom:944.084340px;}
.yc{bottom:949.320000px;}
.y5c{bottom:963.683460px;}
.yc7{bottom:963.773640px;}
.y92{bottom:963.969030px;}
.yb{bottom:970.461810px;}
.y5b{bottom:983.568150px;}
.yc6{bottom:983.658330px;}
.y91{bottom:983.853720px;}
.ya{bottom:996.300000px;}
.y5a{bottom:1003.452840px;}
.yc5{bottom:1003.543020px;}
.y90{bottom:1003.738410px;}
.y9{bottom:1021.225680px;}
.y59{bottom:1023.247350px;}
.yc4{bottom:1023.337530px;}
.y8f{bottom:1023.532920px;}
.y8{bottom:1043.097840px;}
.y58{bottom:1043.132040px;}
.yc3{bottom:1043.222220px;}
.y8e{bottom:1043.417610px;}
.y57{bottom:1063.016730px;}
.yc2{bottom:1063.106910px;}
.y8d{bottom:1063.302300px;}
.y7{bottom:1064.970000px;}
.y56{bottom:1082.901420px;}
.yc1{bottom:1082.991600px;}
.y8c{bottom:1083.186990px;}
.y6{bottom:1086.480000px;}
.y55{bottom:1102.786110px;}
.yc0{bottom:1102.876290px;}
.y8b{bottom:1103.071680px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y54{bottom:1122.670800px;}
.ybf{bottom:1122.760980px;}
.y8a{bottom:1122.956370px;}
.y3{bottom:1142.465310px;}
.ybe{bottom:1142.555490px;}
.y89{bottom:1142.750880px;}
.y2{bottom:1162.350000px;}
.ybd{bottom:1162.440180px;}
.y88{bottom:1162.635570px;}
.y1{bottom:1193.940000px;}
.h4{height:31.590000px;}
.ha{height:39.778500px;}
.h2{height:42.271875px;}
.h6{height:45.210240px;}
.he{height:49.541760px;}
.h9{height:50.140080px;}
.h3{height:52.973736px;}
.hc{height:53.839464px;}
.hd{height:54.943920px;}
.h5{height:58.049064px;}
.hf{height:58.746240px;}
.h7{height:58.997736px;}
.h8{height:69.959064px;}
.hb{height:233.228736px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:21.330000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:42.210000px;}
.x1{left:85.050000px;}
.x9{left:106.384950px;}
.x10{left:118.980000px;}
.x8{left:134.280000px;}
.x7{left:171.639810px;}
.xf{left:242.640810px;}
.x11{left:258.931980px;}
.x3{left:326.160000px;}
.x5{left:384.570000px;}
.x6{left:396.900000px;}
.xe{left:404.376210px;}
.xd{left:446.490000px;}
.x2{left:457.110000px;}
.xa{left:473.492700px;}
.xb{left:494.805240px;}
.xc{left:596.703690px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-2.297920pt;}
.ls1f{letter-spacing:-2.084160pt;}
.ls16{letter-spacing:-1.389440pt;}
.ls13{letter-spacing:-1.229120pt;}
.ls17{letter-spacing:-0.908480pt;}
.ls12{letter-spacing:-0.748160pt;}
.lsd{letter-spacing:-0.427520pt;}
.ls1d{letter-spacing:-0.374080pt;}
.ls1e{letter-spacing:-0.320640pt;}
.ls11{letter-spacing:-0.267200pt;}
.ls10{letter-spacing:-0.160320pt;}
.ls21{letter-spacing:-0.138880pt;}
.lsb{letter-spacing:-0.117120pt;}
.ls8{letter-spacing:-0.106880pt;}
.ls20{letter-spacing:-0.058560pt;}
.lsf{letter-spacing:-0.053440pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053440pt;}
.lsc{letter-spacing:0.069440pt;}
.ls7{letter-spacing:0.073920pt;}
.ls14{letter-spacing:0.106880pt;}
.lse{letter-spacing:0.160320pt;}
.ls1b{letter-spacing:1.068800pt;}
.ls1{letter-spacing:1.389440pt;}
.ls15{letter-spacing:1.710080pt;}
.ls5{letter-spacing:2.030720pt;}
.ls0{letter-spacing:2.992640pt;}
.ls2{letter-spacing:3.954560pt;}
.ls1a{letter-spacing:4.980608pt;}
.ls6{letter-spacing:7.481600pt;}
.ls4{letter-spacing:10.046720pt;}
.ls3{letter-spacing:10.367360pt;}
.ls19{letter-spacing:55.203520pt;}
.ls1c{letter-spacing:754.626240pt;}
.ws15{word-spacing:-14.535680pt;}
.ws4{word-spacing:-14.482240pt;}
.ws19{word-spacing:-14.375360pt;}
.ws18{word-spacing:-14.321920pt;}
.ws17{word-spacing:-14.112960pt;}
.ws6{word-spacing:-13.146240pt;}
.ws3{word-spacing:-12.985920pt;}
.ws7{word-spacing:-12.932480pt;}
.ws9{word-spacing:-12.879040pt;}
.ws5{word-spacing:-12.718720pt;}
.ws8{word-spacing:-12.237760pt;}
.ws13{word-spacing:-12.077440pt;}
.ws12{word-spacing:-11.596480pt;}
.wsf{word-spacing:-0.160320pt;}
.ws0{word-spacing:-0.106880pt;}
.wsd{word-spacing:-0.069440pt;}
.ws1c{word-spacing:-0.058560pt;}
.ws1{word-spacing:-0.053440pt;}
.wsb{word-spacing:0.000000pt;}
.ws2{word-spacing:0.053440pt;}
.ws1d{word-spacing:0.069440pt;}
.wsa{word-spacing:0.106880pt;}
.wsc{word-spacing:0.117120pt;}
.ws10{word-spacing:0.160320pt;}
.ws16{word-spacing:0.267200pt;}
.ws1e{word-spacing:0.277760pt;}
.ws1a{word-spacing:0.374080pt;}
.wse{word-spacing:0.427520pt;}
.ws11{word-spacing:1.229120pt;}
.ws1b{word-spacing:2.084160pt;}
.ws14{word-spacing:2.297920pt;}
._2d{margin-left:-6.747808pt;}
._1f{margin-left:-5.776864pt;}
._11{margin-left:-4.480288pt;}
._4{margin-left:-3.347008pt;}
._5{margin-left:-2.172576pt;}
._3{margin-left:-0.903136pt;}
._0{width:0.935200pt;}
._8{width:2.228448pt;}
._6{width:3.154624pt;}
._a{width:4.050752pt;}
._b{width:5.158208pt;}
._d{width:6.279200pt;}
._9{width:7.497632pt;}
._c{width:9.148928pt;}
._15{width:10.078784pt;}
._7{width:11.452192pt;}
._1d{width:14.164512pt;}
._f{width:15.118176pt;}
._10{width:16.700000pt;}
._25{width:17.752768pt;}
._14{width:18.662496pt;}
._13{width:20.285824pt;}
._12{width:21.393696pt;}
._23{width:23.453152pt;}
._18{width:24.376896pt;}
._20{width:26.121952pt;}
._1e{width:27.288896pt;}
._e{width:28.702624pt;}
._1c{width:29.996352pt;}
._26{width:31.460128pt;}
._27{width:33.659424pt;}
._17{width:36.291104pt;}
._16{width:37.277312pt;}
._19{width:45.525536pt;}
._1a{width:46.535552pt;}
._2c{width:50.544032pt;}
._2b{width:52.264320pt;}
._2a{width:57.159424pt;}
._29{width:63.919584pt;}
._28{width:66.658624pt;}
._22{width:72.662368pt;}
._1{width:252.477280pt;}
._21{width:257.361696pt;}
._24{width:775.895360pt;}
._2{width:776.857280pt;}
._1b{width:778.407040pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.fs3{font-size:149.440000pt;}
.fs4{font-size:253.440000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:5.120000pt;}
.y37{bottom:84.364080pt;}
.y51{bottom:84.484320pt;}
.y87{bottom:97.131600pt;}
.y36{bottom:102.039360pt;}
.y50{bottom:102.159600pt;}
.y86{bottom:114.806880pt;}
.ybc{bottom:115.060720pt;}
.y35{bottom:119.714640pt;}
.y4f{bottom:119.834880pt;}
.y85{bottom:132.482160pt;}
.ybb{bottom:132.736000pt;}
.y34{bottom:137.389920pt;}
.y4e{bottom:137.510160pt;}
.y84{bottom:150.157440pt;}
.yba{bottom:150.411280pt;}
.y33{bottom:155.065200pt;}
.y4d{bottom:155.185440pt;}
.y83{bottom:167.752560pt;}
.yb9{bottom:168.006400pt;}
.y32{bottom:172.660320pt;}
.y4c{bottom:172.780560pt;}
.y82{bottom:185.427840pt;}
.yb8{bottom:185.681680pt;}
.y31{bottom:190.335600pt;}
.y4b{bottom:190.455840pt;}
.y81{bottom:203.103120pt;}
.yb7{bottom:203.356960pt;}
.y30{bottom:208.010880pt;}
.y4a{bottom:208.131120pt;}
.y80{bottom:220.778400pt;}
.yb6{bottom:221.032240pt;}
.y2f{bottom:225.686160pt;}
.y49{bottom:225.806400pt;}
.y7f{bottom:238.453680pt;}
.yb5{bottom:238.707520pt;}
.y2e{bottom:243.361440pt;}
.y48{bottom:243.481680pt;}
.y7e{bottom:256.128960pt;}
.yb4{bottom:256.382800pt;}
.y2d{bottom:261.036720pt;}
.y47{bottom:261.156960pt;}
.y7d{bottom:273.724080pt;}
.yb3{bottom:273.977920pt;}
.y2c{bottom:278.631840pt;}
.y46{bottom:278.752080pt;}
.ye5{bottom:287.746400pt;}
.y7c{bottom:291.399360pt;}
.yb2{bottom:291.653200pt;}
.y2b{bottom:296.307120pt;}
.y45{bottom:296.427360pt;}
.ye4{bottom:305.421680pt;}
.y7b{bottom:309.074640pt;}
.yb1{bottom:309.328480pt;}
.y2a{bottom:313.982400pt;}
.y44{bottom:314.102640pt;}
.ye3{bottom:323.096960pt;}
.y7a{bottom:326.749920pt;}
.yb0{bottom:327.003760pt;}
.y29{bottom:331.657680pt;}
.y43{bottom:331.777920pt;}
.ye2{bottom:340.772240pt;}
.y79{bottom:344.425200pt;}
.yaf{bottom:344.679040pt;}
.y28{bottom:349.332960pt;}
.y42{bottom:349.453200pt;}
.ye1{bottom:358.367360pt;}
.y78{bottom:362.100480pt;}
.yae{bottom:362.354320pt;}
.y27{bottom:367.008240pt;}
.y41{bottom:367.128480pt;}
.ye0{bottom:376.042640pt;}
.y77{bottom:379.695600pt;}
.yad{bottom:379.949440pt;}
.y26{bottom:384.603360pt;}
.y40{bottom:384.723600pt;}
.ydf{bottom:393.717920pt;}
.y76{bottom:397.370880pt;}
.yac{bottom:397.624720pt;}
.y25{bottom:402.278640pt;}
.y3f{bottom:402.398880pt;}
.yde{bottom:411.393200pt;}
.y75{bottom:415.046160pt;}
.yab{bottom:415.300000pt;}
.y24{bottom:419.953920pt;}
.y3e{bottom:420.074160pt;}
.ydd{bottom:429.068480pt;}
.y74{bottom:432.721440pt;}
.yaa{bottom:432.975280pt;}
.y23{bottom:437.629200pt;}
.y3d{bottom:437.749440pt;}
.ydc{bottom:446.743760pt;}
.y73{bottom:450.396720pt;}
.ya9{bottom:450.650560pt;}
.y22{bottom:455.304480pt;}
.y3c{bottom:455.424720pt;}
.ydb{bottom:464.338880pt;}
.y72{bottom:468.072000pt;}
.ya8{bottom:468.325840pt;}
.y21{bottom:472.979760pt;}
.y3b{bottom:473.100000pt;}
.yda{bottom:482.014160pt;}
.y71{bottom:485.667120pt;}
.ya7{bottom:485.920960pt;}
.y20{bottom:490.574880pt;}
.y3a{bottom:490.695120pt;}
.yd9{bottom:499.689440pt;}
.y70{bottom:503.342400pt;}
.ya6{bottom:503.596240pt;}
.y52{bottom:504.320000pt;}
.y1f{bottom:508.250160pt;}
.y39{bottom:508.370400pt;}
.yd8{bottom:517.364720pt;}
.y6f{bottom:521.017680pt;}
.ya5{bottom:521.271520pt;}
.y1e{bottom:525.925440pt;}
.y38{bottom:526.045680pt;}
.yd7{bottom:535.040000pt;}
.y6e{bottom:538.692960pt;}
.ya4{bottom:538.946800pt;}
.y1d{bottom:543.600720pt;}
.yd6{bottom:553.832720pt;}
.y6d{bottom:556.368240pt;}
.ya3{bottom:556.622080pt;}
.y1c{bottom:561.276000pt;}
.y6c{bottom:574.043520pt;}
.ya2{bottom:574.297360pt;}
.yd5{bottom:576.800000pt;}
.y1b{bottom:578.951280pt;}
.y6b{bottom:591.638640pt;}
.ya1{bottom:591.892480pt;}
.y1a{bottom:596.546400pt;}
.yd4{bottom:598.958240pt;}
.y6a{bottom:609.313920pt;}
.ya0{bottom:609.567760pt;}
.y19{bottom:614.221680pt;}
.yd3{bottom:618.400160pt;}
.y69{bottom:626.989200pt;}
.y9f{bottom:627.243040pt;}
.y18{bottom:631.896960pt;}
.yd2{bottom:637.842080pt;}
.y68{bottom:644.664480pt;}
.y9e{bottom:644.918320pt;}
.y17{bottom:649.572240pt;}
.yd1{bottom:657.196160pt;}
.y67{bottom:662.339760pt;}
.y9d{bottom:662.593600pt;}
.y16{bottom:667.247520pt;}
.yd0{bottom:676.638080pt;}
.y66{bottom:680.015040pt;}
.y9c{bottom:680.268880pt;}
.y15{bottom:684.922800pt;}
.ycf{bottom:696.080000pt;}
.y65{bottom:697.610160pt;}
.y9b{bottom:697.864000pt;}
.y14{bottom:702.517920pt;}
.y64{bottom:715.285440pt;}
.y9a{bottom:715.539280pt;}
.y13{bottom:720.193200pt;}
.y63{bottom:732.960720pt;}
.yce{bottom:733.040880pt;}
.y99{bottom:733.214560pt;}
.y12{bottom:737.868480pt;}
.y62{bottom:750.636000pt;}
.ycd{bottom:750.716160pt;}
.y98{bottom:750.889840pt;}
.y11{bottom:755.543760pt;}
.y61{bottom:768.311280pt;}
.ycc{bottom:768.391440pt;}
.y97{bottom:768.565120pt;}
.y10{bottom:773.219040pt;}
.y60{bottom:785.986560pt;}
.ycb{bottom:786.066720pt;}
.y96{bottom:786.240400pt;}
.yf{bottom:790.894320pt;}
.y5f{bottom:803.581680pt;}
.yca{bottom:803.661840pt;}
.y95{bottom:803.835520pt;}
.ye{bottom:808.489440pt;}
.y5e{bottom:821.256960pt;}
.yc9{bottom:821.337120pt;}
.y94{bottom:821.510800pt;}
.yd{bottom:826.164720pt;}
.y5d{bottom:838.932240pt;}
.yc8{bottom:839.012400pt;}
.y93{bottom:839.186080pt;}
.yc{bottom:843.840000pt;}
.y5c{bottom:856.607520pt;}
.yc7{bottom:856.687680pt;}
.y92{bottom:856.861360pt;}
.yb{bottom:862.632720pt;}
.y5b{bottom:874.282800pt;}
.yc6{bottom:874.362960pt;}
.y91{bottom:874.536640pt;}
.ya{bottom:885.600000pt;}
.y5a{bottom:891.958080pt;}
.yc5{bottom:892.038240pt;}
.y90{bottom:892.211920pt;}
.y9{bottom:907.756160pt;}
.y59{bottom:909.553200pt;}
.yc4{bottom:909.633360pt;}
.y8f{bottom:909.807040pt;}
.y8{bottom:927.198080pt;}
.y58{bottom:927.228480pt;}
.yc3{bottom:927.308640pt;}
.y8e{bottom:927.482320pt;}
.y57{bottom:944.903760pt;}
.yc2{bottom:944.983920pt;}
.y8d{bottom:945.157600pt;}
.y7{bottom:946.640000pt;}
.y56{bottom:962.579040pt;}
.yc1{bottom:962.659200pt;}
.y8c{bottom:962.832880pt;}
.y6{bottom:965.760000pt;}
.y55{bottom:980.254320pt;}
.yc0{bottom:980.334480pt;}
.y8b{bottom:980.508160pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y54{bottom:997.929600pt;}
.ybf{bottom:998.009760pt;}
.y8a{bottom:998.183440pt;}
.y3{bottom:1015.524720pt;}
.ybe{bottom:1015.604880pt;}
.y89{bottom:1015.778560pt;}
.y2{bottom:1033.200000pt;}
.ybd{bottom:1033.280160pt;}
.y88{bottom:1033.453840pt;}
.y1{bottom:1061.280000pt;}
.h4{height:28.080000pt;}
.ha{height:35.358667pt;}
.h2{height:37.575000pt;}
.h6{height:40.186880pt;}
.he{height:44.037120pt;}
.h9{height:44.568960pt;}
.h3{height:47.087765pt;}
.hc{height:47.857301pt;}
.hd{height:48.839040pt;}
.h5{height:51.599168pt;}
.hf{height:52.218880pt;}
.h7{height:52.442432pt;}
.h8{height:62.185835pt;}
.hb{height:207.314432pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.960000pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:37.520000pt;}
.x1{left:75.600000pt;}
.x9{left:94.564400pt;}
.x10{left:105.760000pt;}
.x8{left:119.360000pt;}
.x7{left:152.568720pt;}
.xf{left:215.680720pt;}
.x11{left:230.161760pt;}
.x3{left:289.920000pt;}
.x5{left:341.840000pt;}
.x6{left:352.800000pt;}
.xe{left:359.445520pt;}
.xd{left:396.880000pt;}
.x2{left:406.320000pt;}
.xa{left:420.882400pt;}
.xb{left:439.826880pt;}
.xc{left:530.403280pt;}
}




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