
    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_756d701b9f166f521e4a3069.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_72a72462898233f4bb07b252.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_b59926e673d6d4d7c1fee233.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_cd712df946bfb49d846bd0fd.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_a289d6471d8b4c8cd8db3c5f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_db19297af3cc73d858bf6574.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_55880616a78b50cd29ae5089.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_c4c5439367c26802c8f9d728.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964000;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_fce2708bcbf4ec754587c4b5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a73e2e8a2a3dc2bc70bd3310.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767000;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_f7aaa7ddc4689e9d875e8881.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_801ce70a167bd5680331e9c1.woff2')format("woff");}.ffc{font-family:ffc;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-2.705400px;}
.ls20{letter-spacing:-2.344680px;}
.ls22{letter-spacing:-0.901800px;}
.ls23{letter-spacing:-0.841680px;}
.lsf{letter-spacing:-0.480960px;}
.ls1a{letter-spacing:-0.420840px;}
.ls11{letter-spacing:-0.360720px;}
.ls1f{letter-spacing:-0.300600px;}
.ls28{letter-spacing:-0.234360px;}
.lsc{letter-spacing:-0.180360px;}
.ls26{letter-spacing:-0.131760px;}
.ls9{letter-spacing:-0.120240px;}
.ls25{letter-spacing:-0.065880px;}
.ls10{letter-spacing:-0.060120px;}
.lsa{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.060120px;}
.ls27{letter-spacing:0.065880px;}
.lse{letter-spacing:0.078120px;}
.ls8{letter-spacing:0.090720px;}
.ls0{letter-spacing:0.120240px;}
.ls3{letter-spacing:0.180360px;}
.lsd{letter-spacing:0.197640px;}
.ls15{letter-spacing:0.240480px;}
.ls12{letter-spacing:0.300600px;}
.ls17{letter-spacing:0.901800px;}
.ls1c{letter-spacing:2.116224px;}
.ls21{letter-spacing:2.284560px;}
.ls14{letter-spacing:2.645280px;}
.ls1b{letter-spacing:2.717424px;}
.ls1{letter-spacing:4.448880px;}
.ls4{letter-spacing:5.170320px;}
.ls1e{letter-spacing:5.531040px;}
.ls5{letter-spacing:9.498960px;}
.ls16{letter-spacing:10.220400px;}
.ls2{letter-spacing:11.302560px;}
.ls6{letter-spacing:14.188320px;}
.ls18{letter-spacing:16.713360px;}
.ls13{letter-spacing:28.256400px;}
.ls19{letter-spacing:62.103960px;}
.ls7{letter-spacing:65.350440px;}
.ls1d{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;}
}
.ws14{word-spacing:-16.352640px;}
.ws6{word-spacing:-16.292520px;}
.ws7{word-spacing:-16.232400px;}
.ws19{word-spacing:-16.172280px;}
.ws18{word-spacing:-16.112160px;}
.ws17{word-spacing:-15.942960px;}
.ws8{word-spacing:-14.669280px;}
.ws5{word-spacing:-14.609160px;}
.ws13{word-spacing:-14.549040px;}
.ws11{word-spacing:-14.488920px;}
.ws16{word-spacing:-13.767480px;}
.ws3{word-spacing:-12.264480px;}
.ws1a{word-spacing:-5.531040px;}
.ws1d{word-spacing:-2.284560px;}
.ws10{word-spacing:-0.300600px;}
.ws12{word-spacing:-0.240480px;}
.wsa{word-spacing:-0.197640px;}
.wsc{word-spacing:-0.180360px;}
.ws0{word-spacing:-0.120240px;}
.wsb{word-spacing:-0.078120px;}
.ws20{word-spacing:-0.065880px;}
.ws2{word-spacing:-0.060120px;}
.ws9{word-spacing:0.000000px;}
.ws4{word-spacing:0.060120px;}
.ws22{word-spacing:0.078120px;}
.ws1{word-spacing:0.120240px;}
.ws21{word-spacing:0.131760px;}
.wsd{word-spacing:0.180360px;}
.ws1b{word-spacing:0.300600px;}
.wsf{word-spacing:0.360720px;}
.ws15{word-spacing:0.420840px;}
.wse{word-spacing:0.480960px;}
.ws24{word-spacing:0.661320px;}
.ws1e{word-spacing:0.901800px;}
.ws23{word-spacing:1.743480px;}
.ws25{word-spacing:2.044080px;}
.ws1c{word-spacing:2.344680px;}
.ws1f{word-spacing:2.705400px;}
._2e{margin-left:-7.805484px;}
._2d{margin-left:-6.572376px;}
._2b{margin-left:-5.562684px;}
._15{margin-left:-4.352688px;}
._c{margin-left:-2.999988px;}
._3{margin-left:-1.393200px;}
._0{width:1.052100px;}
._6{width:2.332656px;}
._1c{width:3.704976px;}
._4{width:4.711824px;}
._5{width:5.867712px;}
._11{width:7.400772px;}
._9{width:8.681328px;}
._13{width:9.817596px;}
._7{width:11.404764px;}
._24{width:12.444840px;}
._10{width:13.453272px;}
._12{width:16.166268px;}
._20{width:17.921772px;}
._1d{width:19.250424px;}
._8{width:20.482884px;}
._16{width:21.847608px;}
._d{width:24.240384px;}
._27{width:25.406712px;}
._2a{width:26.681256px;}
._b{width:27.913716px;}
._a{width:28.983852px;}
._26{width:30.438756px;}
._21{width:31.520916px;}
._23{width:33.480828px;}
._22{width:34.653168px;}
._17{width:35.717292px;}
._30{width:37.350648px;}
._1f{width:38.765376px;}
._1e{width:39.985812px;}
._29{width:41.927688px;}
._28{width:43.112052px;}
._1a{width:45.985788px;}
._19{width:47.170152px;}
._f{width:50.007816px;}
._18{width:51.198192px;}
._32{width:60.948072px;}
._e{width:80.234568px;}
._31{width:82.677024px;}
._25{width:97.358328px;}
._2c{width:133.219908px;}
._14{width:168.384096px;}
._2f{width:238.207464px;}
._1{width:284.217300px;}
._1b{width:865.307160px;}
._2{width:867.471480px;}
.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:272.880000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:5.760000px;}
.y37{bottom:94.680000px;}
.y48{bottom:94.701240px;}
.y99{bottom:108.990000px;}
.y36{bottom:114.570000px;}
.y47{bottom:114.585930px;}
.y7d{bottom:128.880000px;}
.ya1{bottom:128.922660px;}
.y35{bottom:134.460000px;}
.y46{bottom:134.470620px;}
.y7c{bottom:148.770000px;}
.ya0{bottom:148.807350px;}
.y34{bottom:154.350000px;}
.y45{bottom:154.355310px;}
.y7b{bottom:168.660000px;}
.y9f{bottom:168.692040px;}
.y33{bottom:174.240000px;}
.y7a{bottom:188.460000px;}
.y9e{bottom:188.486550px;}
.y32{bottom:194.040000px;}
.y79{bottom:208.350000px;}
.y9d{bottom:208.371240px;}
.y31{bottom:213.930000px;}
.y78{bottom:228.240000px;}
.y9c{bottom:228.255930px;}
.y30{bottom:233.820000px;}
.y77{bottom:248.130000px;}
.y9b{bottom:248.140620px;}
.y2f{bottom:253.710000px;}
.y76{bottom:268.020000px;}
.y9a{bottom:268.025310px;}
.y2e{bottom:273.600000px;}
.y75{bottom:287.910000px;}
.y2d{bottom:293.490000px;}
.ycc{bottom:303.814080px;}
.y74{bottom:307.710000px;}
.y2c{bottom:313.290000px;}
.ycb{bottom:323.698770px;}
.y73{bottom:327.600000px;}
.y2b{bottom:333.180000px;}
.yca{bottom:343.583460px;}
.y72{bottom:347.490000px;}
.y2a{bottom:353.070000px;}
.yc9{bottom:363.468150px;}
.y71{bottom:367.380000px;}
.y29{bottom:372.960000px;}
.yc8{bottom:383.352840px;}
.y70{bottom:387.270000px;}
.y44{bottom:392.850000px;}
.y28{bottom:392.999580px;}
.yc7{bottom:403.147350px;}
.y6f{bottom:407.160000px;}
.y43{bottom:412.740000px;}
.y27{bottom:412.884270px;}
.yc6{bottom:423.032040px;}
.y6e{bottom:426.960000px;}
.y42{bottom:432.540000px;}
.y26{bottom:432.678780px;}
.yc5{bottom:442.916730px;}
.y6d{bottom:446.850000px;}
.y41{bottom:452.430000px;}
.y25{bottom:452.563470px;}
.yc4{bottom:462.801420px;}
.y6c{bottom:466.740000px;}
.y40{bottom:472.320000px;}
.y24{bottom:472.448160px;}
.yc3{bottom:482.686110px;}
.y6b{bottom:486.630000px;}
.y3f{bottom:492.210000px;}
.y23{bottom:492.332850px;}
.yc2{bottom:502.570800px;}
.y6a{bottom:506.520000px;}
.y3e{bottom:512.100000px;}
.y22{bottom:512.217540px;}
.yc1{bottom:522.365310px;}
.y69{bottom:526.410000px;}
.y3d{bottom:531.990000px;}
.y21{bottom:532.102230px;}
.yc0{bottom:542.250000px;}
.y68{bottom:546.210000px;}
.y3c{bottom:551.790000px;}
.y20{bottom:551.896740px;}
.ybf{bottom:563.391810px;}
.y67{bottom:566.100000px;}
.y3b{bottom:571.680000px;}
.y1f{bottom:571.781430px;}
.y66{bottom:585.990000px;}
.ybe{bottom:589.230000px;}
.y3a{bottom:591.570000px;}
.y1e{bottom:591.666120px;}
.y65{bottom:605.880000px;}
.y49{bottom:607.140000px;}
.y39{bottom:611.460000px;}
.y1d{bottom:611.550810px;}
.ybd{bottom:614.149200px;}
.y98{bottom:625.770000px;}
.y64{bottom:625.914270px;}
.y38{bottom:631.350000px;}
.y1c{bottom:631.435500px;}
.ybc{bottom:636.021360px;}
.y97{bottom:645.660000px;}
.y63{bottom:645.798960px;}
.y1b{bottom:651.320190px;}
.ybb{bottom:657.893520px;}
.y96{bottom:665.460000px;}
.y62{bottom:665.593470px;}
.y1a{bottom:671.114700px;}
.yba{bottom:679.765680px;}
.y95{bottom:685.350000px;}
.y61{bottom:685.478160px;}
.y19{bottom:690.999390px;}
.yb9{bottom:701.637840px;}
.y94{bottom:705.240000px;}
.y60{bottom:705.362850px;}
.y18{bottom:710.884080px;}
.yb8{bottom:723.510000px;}
.y93{bottom:725.130000px;}
.y5f{bottom:725.247540px;}
.y17{bottom:730.768770px;}
.y92{bottom:745.020000px;}
.y5e{bottom:745.132230px;}
.yb7{bottom:745.237440px;}
.y16{bottom:750.653460px;}
.y91{bottom:764.910000px;}
.y5d{bottom:765.016920px;}
.yb6{bottom:765.122130px;}
.y15{bottom:770.538150px;}
.y90{bottom:784.710000px;}
.y5c{bottom:784.811430px;}
.yb5{bottom:784.916640px;}
.y14{bottom:790.332660px;}
.y8f{bottom:804.600000px;}
.y5b{bottom:804.696120px;}
.yb4{bottom:804.801330px;}
.y13{bottom:810.217350px;}
.y8e{bottom:824.490000px;}
.y5a{bottom:824.580810px;}
.yb3{bottom:824.686020px;}
.y12{bottom:830.102040px;}
.y8d{bottom:844.380000px;}
.y59{bottom:844.465500px;}
.yb2{bottom:844.570710px;}
.y11{bottom:849.986730px;}
.y8c{bottom:864.270000px;}
.y58{bottom:864.350190px;}
.yb1{bottom:864.455400px;}
.y10{bottom:869.871420px;}
.y8b{bottom:884.160000px;}
.y57{bottom:884.234880px;}
.yb0{bottom:884.340090px;}
.yf{bottom:889.756110px;}
.y8a{bottom:903.960000px;}
.y56{bottom:904.029390px;}
.yaf{bottom:904.134600px;}
.ye{bottom:909.550620px;}
.y89{bottom:923.850000px;}
.y55{bottom:923.914080px;}
.yae{bottom:924.019290px;}
.yd{bottom:929.435310px;}
.y88{bottom:943.740000px;}
.y54{bottom:943.798770px;}
.yad{bottom:943.903980px;}
.yc{bottom:949.320000px;}
.y87{bottom:963.630000px;}
.y53{bottom:963.683460px;}
.yac{bottom:963.788670px;}
.yb{bottom:970.461810px;}
.y86{bottom:983.520000px;}
.y52{bottom:983.568150px;}
.yab{bottom:983.673360px;}
.ya{bottom:996.300000px;}
.y85{bottom:1003.410000px;}
.y51{bottom:1003.452840px;}
.yaa{bottom:1003.558050px;}
.y9{bottom:1021.225680px;}
.y84{bottom:1023.210000px;}
.y50{bottom:1023.247350px;}
.ya9{bottom:1023.352560px;}
.y8{bottom:1043.097840px;}
.y83{bottom:1043.100000px;}
.y4f{bottom:1043.132040px;}
.ya8{bottom:1043.237250px;}
.y82{bottom:1062.990000px;}
.y4e{bottom:1063.016730px;}
.ya7{bottom:1063.121940px;}
.y7{bottom:1064.970000px;}
.y81{bottom:1082.880000px;}
.y4d{bottom:1082.901420px;}
.ya6{bottom:1083.006630px;}
.y6{bottom:1086.480000px;}
.y80{bottom:1102.770000px;}
.y4c{bottom:1102.786110px;}
.ya5{bottom:1102.891320px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y7f{bottom:1122.660000px;}
.y4b{bottom:1122.670800px;}
.ya4{bottom:1122.776010px;}
.y7e{bottom:1142.460000px;}
.y3{bottom:1142.465310px;}
.ya3{bottom:1142.570520px;}
.y2{bottom:1162.350000px;}
.ya2{bottom:1162.455210px;}
.y1{bottom:1193.940000px;}
.h4{height:31.590000px;}
.hb{height:39.780000px;}
.h2{height:42.213164px;}
.ha{height:45.210240px;}
.h7{height:49.541760px;}
.h9{height:50.140080px;}
.h3{height:52.973736px;}
.hd{height:53.839464px;}
.h5{height:58.049064px;}
.he{height:58.746240px;}
.h6{height:58.997736px;}
.h8{height:69.959064px;}
.hc{height:225.323664px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:27.090000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:42.210000px;}
.x1{left:85.050000px;}
.xa{left:106.376130px;}
.xb{left:112.102560px;}
.x7{left:133.917660px;}
.x11{left:168.210000px;}
.x8{left:170.910000px;}
.x9{left:192.685950px;}
.x12{left:195.649650px;}
.x10{left:208.893780px;}
.x6{left:298.980000px;}
.xf{left:303.925680px;}
.x3{left:326.160000px;}
.x5{left:384.570000px;}
.x2{left:446.490000px;}
.xc{left:473.490000px;}
.xd{left:494.820000px;}
.xe{left:596.693340px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-2.404800pt;}
.ls20{letter-spacing:-2.084160pt;}
.ls22{letter-spacing:-0.801600pt;}
.ls23{letter-spacing:-0.748160pt;}
.lsf{letter-spacing:-0.427520pt;}
.ls1a{letter-spacing:-0.374080pt;}
.ls11{letter-spacing:-0.320640pt;}
.ls1f{letter-spacing:-0.267200pt;}
.ls28{letter-spacing:-0.208320pt;}
.lsc{letter-spacing:-0.160320pt;}
.ls26{letter-spacing:-0.117120pt;}
.ls9{letter-spacing:-0.106880pt;}
.ls25{letter-spacing:-0.058560pt;}
.ls10{letter-spacing:-0.053440pt;}
.lsa{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.053440pt;}
.ls27{letter-spacing:0.058560pt;}
.lse{letter-spacing:0.069440pt;}
.ls8{letter-spacing:0.080640pt;}
.ls0{letter-spacing:0.106880pt;}
.ls3{letter-spacing:0.160320pt;}
.lsd{letter-spacing:0.175680pt;}
.ls15{letter-spacing:0.213760pt;}
.ls12{letter-spacing:0.267200pt;}
.ls17{letter-spacing:0.801600pt;}
.ls1c{letter-spacing:1.881088pt;}
.ls21{letter-spacing:2.030720pt;}
.ls14{letter-spacing:2.351360pt;}
.ls1b{letter-spacing:2.415488pt;}
.ls1{letter-spacing:3.954560pt;}
.ls4{letter-spacing:4.595840pt;}
.ls1e{letter-spacing:4.916480pt;}
.ls5{letter-spacing:8.443520pt;}
.ls16{letter-spacing:9.084800pt;}
.ls2{letter-spacing:10.046720pt;}
.ls6{letter-spacing:12.611840pt;}
.ls18{letter-spacing:14.856320pt;}
.ls13{letter-spacing:25.116800pt;}
.ls19{letter-spacing:55.203520pt;}
.ls7{letter-spacing:58.089280pt;}
.ls1d{letter-spacing:754.626240pt;}
.ws14{word-spacing:-14.535680pt;}
.ws6{word-spacing:-14.482240pt;}
.ws7{word-spacing:-14.428800pt;}
.ws19{word-spacing:-14.375360pt;}
.ws18{word-spacing:-14.321920pt;}
.ws17{word-spacing:-14.171520pt;}
.ws8{word-spacing:-13.039360pt;}
.ws5{word-spacing:-12.985920pt;}
.ws13{word-spacing:-12.932480pt;}
.ws11{word-spacing:-12.879040pt;}
.ws16{word-spacing:-12.237760pt;}
.ws3{word-spacing:-10.901760pt;}
.ws1a{word-spacing:-4.916480pt;}
.ws1d{word-spacing:-2.030720pt;}
.ws10{word-spacing:-0.267200pt;}
.ws12{word-spacing:-0.213760pt;}
.wsa{word-spacing:-0.175680pt;}
.wsc{word-spacing:-0.160320pt;}
.ws0{word-spacing:-0.106880pt;}
.wsb{word-spacing:-0.069440pt;}
.ws20{word-spacing:-0.058560pt;}
.ws2{word-spacing:-0.053440pt;}
.ws9{word-spacing:0.000000pt;}
.ws4{word-spacing:0.053440pt;}
.ws22{word-spacing:0.069440pt;}
.ws1{word-spacing:0.106880pt;}
.ws21{word-spacing:0.117120pt;}
.wsd{word-spacing:0.160320pt;}
.ws1b{word-spacing:0.267200pt;}
.wsf{word-spacing:0.320640pt;}
.ws15{word-spacing:0.374080pt;}
.wse{word-spacing:0.427520pt;}
.ws24{word-spacing:0.587840pt;}
.ws1e{word-spacing:0.801600pt;}
.ws23{word-spacing:1.549760pt;}
.ws25{word-spacing:1.816960pt;}
.ws1c{word-spacing:2.084160pt;}
.ws1f{word-spacing:2.404800pt;}
._2e{margin-left:-6.938208pt;}
._2d{margin-left:-5.842112pt;}
._2b{margin-left:-4.944608pt;}
._15{margin-left:-3.869056pt;}
._c{margin-left:-2.666656pt;}
._3{margin-left:-1.238400pt;}
._0{width:0.935200pt;}
._6{width:2.073472pt;}
._1c{width:3.293312pt;}
._4{width:4.188288pt;}
._5{width:5.215744pt;}
._11{width:6.578464pt;}
._9{width:7.716736pt;}
._13{width:8.726752pt;}
._7{width:10.137568pt;}
._24{width:11.062080pt;}
._10{width:11.958464pt;}
._12{width:14.370016pt;}
._20{width:15.930464pt;}
._1d{width:17.111488pt;}
._8{width:18.207008pt;}
._16{width:19.420096pt;}
._d{width:21.547008pt;}
._27{width:22.583744pt;}
._2a{width:23.716672pt;}
._b{width:24.812192pt;}
._a{width:25.763424pt;}
._26{width:27.056672pt;}
._21{width:28.018592pt;}
._23{width:29.760736pt;}
._22{width:30.802816pt;}
._17{width:31.748704pt;}
._30{width:33.200576pt;}
._1f{width:34.458112pt;}
._1e{width:35.542944pt;}
._29{width:37.269056pt;}
._28{width:38.321824pt;}
._1a{width:40.876256pt;}
._19{width:41.929024pt;}
._f{width:44.451392pt;}
._18{width:45.509504pt;}
._32{width:54.176064pt;}
._e{width:71.319616pt;}
._31{width:73.490688pt;}
._25{width:86.540736pt;}
._2c{width:118.417696pt;}
._14{width:149.674752pt;}
._2f{width:211.739968pt;}
._1{width:252.637600pt;}
._1b{width:769.161920pt;}
._2{width:771.085760pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.fs3{font-size:149.440000pt;}
.fs4{font-size:242.560000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:5.120000pt;}
.y37{bottom:84.160000pt;}
.y48{bottom:84.178880pt;}
.y99{bottom:96.880000pt;}
.y36{bottom:101.840000pt;}
.y47{bottom:101.854160pt;}
.y7d{bottom:114.560000pt;}
.ya1{bottom:114.597920pt;}
.y35{bottom:119.520000pt;}
.y46{bottom:119.529440pt;}
.y7c{bottom:132.240000pt;}
.ya0{bottom:132.273200pt;}
.y34{bottom:137.200000pt;}
.y45{bottom:137.204720pt;}
.y7b{bottom:149.920000pt;}
.y9f{bottom:149.948480pt;}
.y33{bottom:154.880000pt;}
.y7a{bottom:167.520000pt;}
.y9e{bottom:167.543600pt;}
.y32{bottom:172.480000pt;}
.y79{bottom:185.200000pt;}
.y9d{bottom:185.218880pt;}
.y31{bottom:190.160000pt;}
.y78{bottom:202.880000pt;}
.y9c{bottom:202.894160pt;}
.y30{bottom:207.840000pt;}
.y77{bottom:220.560000pt;}
.y9b{bottom:220.569440pt;}
.y2f{bottom:225.520000pt;}
.y76{bottom:238.240000pt;}
.y9a{bottom:238.244720pt;}
.y2e{bottom:243.200000pt;}
.y75{bottom:255.920000pt;}
.y2d{bottom:260.880000pt;}
.ycc{bottom:270.056960pt;}
.y74{bottom:273.520000pt;}
.y2c{bottom:278.480000pt;}
.ycb{bottom:287.732240pt;}
.y73{bottom:291.200000pt;}
.y2b{bottom:296.160000pt;}
.yca{bottom:305.407520pt;}
.y72{bottom:308.880000pt;}
.y2a{bottom:313.840000pt;}
.yc9{bottom:323.082800pt;}
.y71{bottom:326.560000pt;}
.y29{bottom:331.520000pt;}
.yc8{bottom:340.758080pt;}
.y70{bottom:344.240000pt;}
.y44{bottom:349.200000pt;}
.y28{bottom:349.332960pt;}
.yc7{bottom:358.353200pt;}
.y6f{bottom:361.920000pt;}
.y43{bottom:366.880000pt;}
.y27{bottom:367.008240pt;}
.yc6{bottom:376.028480pt;}
.y6e{bottom:379.520000pt;}
.y42{bottom:384.480000pt;}
.y26{bottom:384.603360pt;}
.yc5{bottom:393.703760pt;}
.y6d{bottom:397.200000pt;}
.y41{bottom:402.160000pt;}
.y25{bottom:402.278640pt;}
.yc4{bottom:411.379040pt;}
.y6c{bottom:414.880000pt;}
.y40{bottom:419.840000pt;}
.y24{bottom:419.953920pt;}
.yc3{bottom:429.054320pt;}
.y6b{bottom:432.560000pt;}
.y3f{bottom:437.520000pt;}
.y23{bottom:437.629200pt;}
.yc2{bottom:446.729600pt;}
.y6a{bottom:450.240000pt;}
.y3e{bottom:455.200000pt;}
.y22{bottom:455.304480pt;}
.yc1{bottom:464.324720pt;}
.y69{bottom:467.920000pt;}
.y3d{bottom:472.880000pt;}
.y21{bottom:472.979760pt;}
.yc0{bottom:482.000000pt;}
.y68{bottom:485.520000pt;}
.y3c{bottom:490.480000pt;}
.y20{bottom:490.574880pt;}
.ybf{bottom:500.792720pt;}
.y67{bottom:503.200000pt;}
.y3b{bottom:508.160000pt;}
.y1f{bottom:508.250160pt;}
.y66{bottom:520.880000pt;}
.ybe{bottom:523.760000pt;}
.y3a{bottom:525.840000pt;}
.y1e{bottom:525.925440pt;}
.y65{bottom:538.560000pt;}
.y49{bottom:539.680000pt;}
.y39{bottom:543.520000pt;}
.y1d{bottom:543.600720pt;}
.ybd{bottom:545.910400pt;}
.y98{bottom:556.240000pt;}
.y64{bottom:556.368240pt;}
.y38{bottom:561.200000pt;}
.y1c{bottom:561.276000pt;}
.ybc{bottom:565.352320pt;}
.y97{bottom:573.920000pt;}
.y63{bottom:574.043520pt;}
.y1b{bottom:578.951280pt;}
.ybb{bottom:584.794240pt;}
.y96{bottom:591.520000pt;}
.y62{bottom:591.638640pt;}
.y1a{bottom:596.546400pt;}
.yba{bottom:604.236160pt;}
.y95{bottom:609.200000pt;}
.y61{bottom:609.313920pt;}
.y19{bottom:614.221680pt;}
.yb9{bottom:623.678080pt;}
.y94{bottom:626.880000pt;}
.y60{bottom:626.989200pt;}
.y18{bottom:631.896960pt;}
.yb8{bottom:643.120000pt;}
.y93{bottom:644.560000pt;}
.y5f{bottom:644.664480pt;}
.y17{bottom:649.572240pt;}
.y92{bottom:662.240000pt;}
.y5e{bottom:662.339760pt;}
.yb7{bottom:662.433280pt;}
.y16{bottom:667.247520pt;}
.y91{bottom:679.920000pt;}
.y5d{bottom:680.015040pt;}
.yb6{bottom:680.108560pt;}
.y15{bottom:684.922800pt;}
.y90{bottom:697.520000pt;}
.y5c{bottom:697.610160pt;}
.yb5{bottom:697.703680pt;}
.y14{bottom:702.517920pt;}
.y8f{bottom:715.200000pt;}
.y5b{bottom:715.285440pt;}
.yb4{bottom:715.378960pt;}
.y13{bottom:720.193200pt;}
.y8e{bottom:732.880000pt;}
.y5a{bottom:732.960720pt;}
.yb3{bottom:733.054240pt;}
.y12{bottom:737.868480pt;}
.y8d{bottom:750.560000pt;}
.y59{bottom:750.636000pt;}
.yb2{bottom:750.729520pt;}
.y11{bottom:755.543760pt;}
.y8c{bottom:768.240000pt;}
.y58{bottom:768.311280pt;}
.yb1{bottom:768.404800pt;}
.y10{bottom:773.219040pt;}
.y8b{bottom:785.920000pt;}
.y57{bottom:785.986560pt;}
.yb0{bottom:786.080080pt;}
.yf{bottom:790.894320pt;}
.y8a{bottom:803.520000pt;}
.y56{bottom:803.581680pt;}
.yaf{bottom:803.675200pt;}
.ye{bottom:808.489440pt;}
.y89{bottom:821.200000pt;}
.y55{bottom:821.256960pt;}
.yae{bottom:821.350480pt;}
.yd{bottom:826.164720pt;}
.y88{bottom:838.880000pt;}
.y54{bottom:838.932240pt;}
.yad{bottom:839.025760pt;}
.yc{bottom:843.840000pt;}
.y87{bottom:856.560000pt;}
.y53{bottom:856.607520pt;}
.yac{bottom:856.701040pt;}
.yb{bottom:862.632720pt;}
.y86{bottom:874.240000pt;}
.y52{bottom:874.282800pt;}
.yab{bottom:874.376320pt;}
.ya{bottom:885.600000pt;}
.y85{bottom:891.920000pt;}
.y51{bottom:891.958080pt;}
.yaa{bottom:892.051600pt;}
.y9{bottom:907.756160pt;}
.y84{bottom:909.520000pt;}
.y50{bottom:909.553200pt;}
.ya9{bottom:909.646720pt;}
.y8{bottom:927.198080pt;}
.y83{bottom:927.200000pt;}
.y4f{bottom:927.228480pt;}
.ya8{bottom:927.322000pt;}
.y82{bottom:944.880000pt;}
.y4e{bottom:944.903760pt;}
.ya7{bottom:944.997280pt;}
.y7{bottom:946.640000pt;}
.y81{bottom:962.560000pt;}
.y4d{bottom:962.579040pt;}
.ya6{bottom:962.672560pt;}
.y6{bottom:965.760000pt;}
.y80{bottom:980.240000pt;}
.y4c{bottom:980.254320pt;}
.ya5{bottom:980.347840pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y7f{bottom:997.920000pt;}
.y4b{bottom:997.929600pt;}
.ya4{bottom:998.023120pt;}
.y7e{bottom:1015.520000pt;}
.y3{bottom:1015.524720pt;}
.ya3{bottom:1015.618240pt;}
.y2{bottom:1033.200000pt;}
.ya2{bottom:1033.293520pt;}
.y1{bottom:1061.280000pt;}
.h4{height:28.080000pt;}
.hb{height:35.360000pt;}
.h2{height:37.522812pt;}
.ha{height:40.186880pt;}
.h7{height:44.037120pt;}
.h9{height:44.568960pt;}
.h3{height:47.087765pt;}
.hd{height:47.857301pt;}
.h5{height:51.599168pt;}
.he{height:52.218880pt;}
.h6{height:52.442432pt;}
.h8{height:62.185835pt;}
.hc{height:200.287701pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:24.080000pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:37.520000pt;}
.x1{left:75.600000pt;}
.xa{left:94.556560pt;}
.xb{left:99.646720pt;}
.x7{left:119.037920pt;}
.x11{left:149.520000pt;}
.x8{left:151.920000pt;}
.x9{left:171.276400pt;}
.x12{left:173.910800pt;}
.x10{left:185.683360pt;}
.x6{left:265.760000pt;}
.xf{left:270.156160pt;}
.x3{left:289.920000pt;}
.x5{left:341.840000pt;}
.x2{left:396.880000pt;}
.xc{left:420.880000pt;}
.xd{left:439.840000pt;}
.xe{left:530.394080pt;}
}




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