
    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_fd12aa83197781e2043f083e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_1e8aba9f60178bac52701c27.woff')format("woff");}.ff2{font-family:ff2;line-height:1.024447;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_866984d24fea429f0275cdbd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.692871;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_e2feae6fe97f4b3eb803eedb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986361;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);}
.v1{vertical-align:-2.250000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:46.287000px;}
.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;}
}
.ws0{word-spacing:-39.744000px;}
.ws4{word-spacing:-29.808000px;}
.ws3{word-spacing:-23.427000px;}
.ws5{word-spacing:-19.728000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-14.940000px;}
._5{margin-left:-10.332000px;}
._b{margin-left:-9.166500px;}
._7{margin-left:-7.272000px;}
._e{margin-left:-5.568188px;}
._8{margin-left:-4.032000px;}
._6{margin-left:-2.952000px;}
._2{margin-left:-1.620000px;}
._0{width:1.116000px;}
._1{width:2.160000px;}
._3{width:3.168000px;}
._9{width:4.788000px;}
._13{width:5.865750px;}
._1a{width:6.948000px;}
._45{width:7.960500px;}
._d{width:8.968500px;}
._c{width:10.566000px;}
._15{width:11.809688px;}
._16{width:13.335188px;}
._14{width:14.949000px;}
._25{width:16.743375px;}
._17{width:17.761500px;}
._19{width:18.795938px;}
._1f{width:20.754562px;}
._a{width:22.122562px;}
._20{width:25.296750px;}
._22{width:26.600063px;}
._21{width:27.675562px;}
._2f{width:28.696500px;}
._23{width:29.806875px;}
._1d{width:30.936375px;}
._1e{width:32.002875px;}
._2b{width:33.212250px;}
._2e{width:34.285500px;}
._2a{width:35.500500px;}
._28{width:37.267875px;}
._26{width:38.911500px;}
._27{width:40.086000px;}
._40{width:41.118188px;}
._2c{width:42.559312px;}
._2d{width:43.646625px;}
._32{width:44.676562px;}
._1b{width:46.575000px;}
._33{width:47.875500px;}
._34{width:49.293000px;}
._31{width:50.760000px;}
._30{width:51.786000px;}
._29{width:53.149500px;}
._43{width:54.513000px;}
._49{width:55.593563px;}
._47{width:56.672438px;}
._f{width:58.088250px;}
._10{width:59.272875px;}
._35{width:60.736500px;}
._41{width:62.613000px;}
._1c{width:63.684000px;}
._18{width:65.605500px;}
._3d{width:67.212000px;}
._39{width:68.305500px;}
._38{width:69.340500px;}
._36{width:70.357500px;}
._37{width:72.004500px;}
._46{width:75.821625px;}
._11{width:77.514750px;}
._12{width:78.543000px;}
._4d{width:83.705063px;}
._42{width:94.208625px;}
._3c{width:95.637375px;}
._3b{width:97.149375px;}
._3f{width:98.395875px;}
._3e{width:99.600750px;}
._4b{width:110.718000px;}
._4a{width:111.874500px;}
._24{width:385.829437px;}
._44{width:917.321625px;}
._4c{width:967.595062px;}
._3a{width:1114.899750px;}
._48{width:1186.759125px;}
._4e{width:1506.048188px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,38,29);}
.fs2{font-size:72.000000px;}
.fs1{font-size:85.500000px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:60.451177px;}
.y37{bottom:115.154303px;}
.y72{bottom:117.000000px;}
.yb1{bottom:120.375000px;}
.ycf{bottom:121.904325px;}
.y92{bottom:123.750000px;}
.ya6{bottom:129.779325px;}
.y7e{bottom:135.000000px;}
.y114{bottom:136.125000px;}
.y36{bottom:144.404303px;}
.y71{bottom:146.250000px;}
.yf4{bottom:147.779325px;}
.y58{bottom:149.625000px;}
.yce{bottom:151.154325px;}
.y91{bottom:153.000000px;}
.ya5{bottom:159.029325px;}
.y80{bottom:164.250000px;}
.y35{bottom:173.654303px;}
.y70{bottom:175.500000px;}
.yf3{bottom:177.029325px;}
.y57{bottom:178.875000px;}
.y113{bottom:180.000000px;}
.ycd{bottom:180.404325px;}
.y90{bottom:182.250000px;}
.ya4{bottom:188.279325px;}
.yad{bottom:193.500000px;}
.y34{bottom:202.904303px;}
.y6f{bottom:204.750000px;}
.yf2{bottom:206.279325px;}
.y56{bottom:208.125000px;}
.y112{bottom:209.250000px;}
.ycc{bottom:209.654325px;}
.y8f{bottom:211.500000px;}
.ya3{bottom:217.529325px;}
.yac{bottom:222.750000px;}
.yd8{bottom:224.279325px;}
.y33{bottom:232.154303px;}
.y6e{bottom:234.000000px;}
.yf1{bottom:235.529325px;}
.y55{bottom:237.375000px;}
.y111{bottom:238.500000px;}
.ycb{bottom:238.904325px;}
.ya2{bottom:246.779325px;}
.yab{bottom:252.000000px;}
.y8e{bottom:255.375000px;}
.y32{bottom:261.404303px;}
.y6d{bottom:263.250000px;}
.yf0{bottom:264.779325px;}
.y54{bottom:266.625000px;}
.y110{bottom:267.750000px;}
.yca{bottom:268.154325px;}
.ya1{bottom:276.029325px;}
.yaa{bottom:281.250000px;}
.y8d{bottom:284.625000px;}
.y31{bottom:290.654303px;}
.y6c{bottom:292.500000px;}
.yef{bottom:294.029325px;}
.y53{bottom:295.875000px;}
.y10f{bottom:297.000000px;}
.yc9{bottom:297.404325px;}
.ya0{bottom:305.279325px;}
.yd2{bottom:310.500000px;}
.yf9{bottom:311.062500px;}
.y8c{bottom:313.875000px;}
.y30{bottom:319.904303px;}
.y6b{bottom:321.750000px;}
.yee{bottom:323.279325px;}
.y52{bottom:325.125000px;}
.yc8{bottom:326.654325px;}
.yc{bottom:331.875000px;}
.y9f{bottom:334.529325px;}
.yd1{bottom:339.750000px;}
.y10e{bottom:340.875000px;}
.y8b{bottom:343.125000px;}
.yed{bottom:352.529325px;}
.y51{bottom:354.375000px;}
.yd7{bottom:355.904325px;}
.yb{bottom:361.125000px;}
.y2f{bottom:363.779303px;}
.y6a{bottom:365.625000px;}
.yb0{bottom:369.000000px;}
.y10d{bottom:370.125000px;}
.yc7{bottom:370.529325px;}
.y8a{bottom:372.375000px;}
.y9e{bottom:378.404325px;}
.yec{bottom:381.779325px;}
.y50{bottom:383.625000px;}
.yd6{bottom:385.154325px;}
.ya{bottom:390.375000px;}
.y2e{bottom:393.029303px;}
.y69{bottom:394.875000px;}
.yaf{bottom:398.250000px;}
.y10c{bottom:399.375000px;}
.yc6{bottom:399.779325px;}
.y89{bottom:401.625000px;}
.y9d{bottom:407.654325px;}
.y4f{bottom:412.875000px;}
.yd5{bottom:414.404325px;}
.y9{bottom:419.625000px;}
.y2d{bottom:422.279303px;}
.y68{bottom:424.125000px;}
.yeb{bottom:425.654325px;}
.yae{bottom:427.500000px;}
.yc5{bottom:429.029325px;}
.y88{bottom:430.875000px;}
.y9c{bottom:436.904325px;}
.ya9{bottom:442.125000px;}
.yf8{bottom:442.687500px;}
.y10b{bottom:443.250000px;}
.yd4{bottom:443.654325px;}
.y8{bottom:448.875000px;}
.y2c{bottom:451.529303px;}
.y67{bottom:453.375000px;}
.y4e{bottom:456.750000px;}
.yc4{bottom:458.279325px;}
.y87{bottom:460.125000px;}
.y9b{bottom:466.154325px;}
.yea{bottom:469.529325px;}
.ya8{bottom:471.375000px;}
.y10a{bottom:472.500000px;}
.y2b{bottom:480.779303px;}
.y66{bottom:482.625000px;}
.y4d{bottom:486.000000px;}
.yc3{bottom:487.529325px;}
.y9a{bottom:495.404325px;}
.ye9{bottom:498.779325px;}
.y96{bottom:500.625000px;}
.y86{bottom:505.125000px;}
.y2a{bottom:510.029303px;}
.y65{bottom:511.875000px;}
.y4c{bottom:515.250000px;}
.y109{bottom:516.375000px;}
.yc2{bottom:516.779325px;}
.y99{bottom:524.654325px;}
.ye8{bottom:528.029325px;}
.y95{bottom:529.875000px;}
.y29{bottom:539.279303px;}
.y64{bottom:541.125000px;}
.y4b{bottom:544.500000px;}
.y108{bottom:545.625000px;}
.yc1{bottom:546.029325px;}
.y98{bottom:553.904325px;}
.ye7{bottom:557.279325px;}
.y85{bottom:559.125000px;}
.y28{bottom:568.529303px;}
.y4a{bottom:573.750000px;}
.yc0{bottom:575.279325px;}
.y7{bottom:583.875000px;}
.y63{bottom:585.000000px;}
.ye6{bottom:586.529325px;}
.y84{bottom:588.375000px;}
.y107{bottom:589.500000px;}
.y97{bottom:597.779325px;}
.y1b{bottom:601.154302px;}
.y49{bottom:603.000000px;}
.ybf{bottom:604.529325px;}
.y27{bottom:612.404303px;}
.ye5{bottom:615.779325px;}
.y83{bottom:617.625000px;}
.y106{bottom:618.750000px;}
.y62{bottom:628.875000px;}
.y1a{bottom:630.404302px;}
.y48{bottom:632.250000px;}
.yf7{bottom:632.812500px;}
.yd3{bottom:633.779325px;}
.y26{bottom:641.654303px;}
.ye4{bottom:645.029325px;}
.y94{bottom:646.875000px;}
.ybe{bottom:648.404325px;}
.y61{bottom:658.125000px;}
.y19{bottom:659.654302px;}
.y7d{bottom:661.500000px;}
.y105{bottom:662.625000px;}
.y25{bottom:670.904303px;}
.ye3{bottom:674.279325px;}
.y47{bottom:676.125000px;}
.ybd{bottom:677.654325px;}
.y6{bottom:678.375000px;}
.y60{bottom:687.375000px;}
.y18{bottom:688.904302px;}
.y82{bottom:690.750000px;}
.y104{bottom:691.875000px;}
.y24{bottom:700.154303px;}
.ye2{bottom:703.529325px;}
.y46{bottom:705.375000px;}
.ybc{bottom:706.904325px;}
.y5f{bottom:716.625000px;}
.y17{bottom:718.154302px;}
.y81{bottom:720.000000px;}
.y103{bottom:721.125000px;}
.y5{bottom:726.750000px;}
.y23{bottom:729.404303px;}
.ye1{bottom:732.779325px;}
.y45{bottom:734.625000px;}
.ybb{bottom:736.154325px;}
.y5e{bottom:745.875000px;}
.y16{bottom:747.404302px;}
.y7c{bottom:749.250000px;}
.y116{bottom:750.375000px;}
.y22{bottom:758.654303px;}
.y44{bottom:763.875000px;}
.y102{bottom:765.000000px;}
.yba{bottom:765.404325px;}
.y5d{bottom:775.125000px;}
.y4{bottom:776.250000px;}
.y15{bottom:776.654302px;}
.ye0{bottom:776.654325px;}
.y7b{bottom:778.500000px;}
.y21{bottom:787.904303px;}
.y43{bottom:793.125000px;}
.yf6{bottom:793.687500px;}
.y101{bottom:794.250000px;}
.yb9{bottom:794.654325px;}
.y14{bottom:805.904302px;}
.ydf{bottom:805.904325px;}
.y7a{bottom:807.750000px;}
.y20{bottom:817.154303px;}
.y5c{bottom:820.125000px;}
.y42{bottom:822.375000px;}
.yb8{bottom:823.904325px;}
.y3{bottom:825.750000px;}
.y13{bottom:835.154302px;}
.yde{bottom:835.154325px;}
.y79{bottom:837.000000px;}
.y100{bottom:838.125000px;}
.y1f{bottom:846.404303px;}
.y41{bottom:851.625000px;}
.yb7{bottom:853.154325px;}
.y5b{bottom:856.125000px;}
.y12{bottom:864.404302px;}
.ydd{bottom:864.404325px;}
.y78{bottom:866.250000px;}
.yff{bottom:867.375000px;}
.y2{bottom:874.125000px;}
.y40{bottom:880.875000px;}
.yb6{bottom:882.404325px;}
.y1e{bottom:890.279303px;}
.y11{bottom:893.654302px;}
.ydc{bottom:893.654325px;}
.y77{bottom:895.500000px;}
.yfe{bottom:896.625000px;}
.y3f{bottom:910.125000px;}
.y10{bottom:922.904302px;}
.ydb{bottom:922.904325px;}
.y1{bottom:923.625000px;}
.y76{bottom:924.750000px;}
.yfd{bottom:925.875000px;}
.yb5{bottom:926.279325px;}
.y1d{bottom:935.279303px;}
.y5a{bottom:939.375000px;}
.yf{bottom:952.154302px;}
.yda{bottom:952.154325px;}
.y3e{bottom:954.000000px;}
.yf5{bottom:954.562500px;}
.y59{bottom:968.625000px;}
.yfc{bottom:969.750000px;}
.y1c{bottom:971.279303px;}
.yb4{bottom:971.279325px;}
.ye{bottom:981.404302px;}
.yd9{bottom:981.404325px;}
.y75{bottom:983.250000px;}
.y3d{bottom:997.875000px;}
.yfb{bottom:999.000000px;}
.y74{bottom:1012.500000px;}
.yd{bottom:1023.029302px;}
.yb3{bottom:1023.029325px;}
.y3c{bottom:1027.125000px;}
.yfa{bottom:1042.875000px;}
.y3b{bottom:1056.375000px;}
.y38{bottom:1114.576172px;}
.y3a{bottom:1303.154303px;}
.y73{bottom:1305.000000px;}
.yb2{bottom:1308.375000px;}
.yd0{bottom:1309.904325px;}
.y93{bottom:1311.750000px;}
.ya7{bottom:1317.779325px;}
.y7f{bottom:1323.000000px;}
.y115{bottom:1324.125000px;}
.h3{height:48.796875px;}
.h6{height:54.070313px;}
.h5{height:64.291992px;}
.h7{height:65.214844px;}
.h2{height:67.464844px;}
.h4{height:81.210938px;}
.h1{height:108.281250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.xb{left:128.250000px;}
.x2{left:138.937500px;}
.xc{left:148.500000px;}
.x5{left:156.375000px;}
.x6{left:342.000000px;}
.x3{left:346.500000px;}
.x1{left:361.687500px;}
.xd{left:439.875000px;}
.x4{left:441.000000px;}
.xa{left:449.296875px;}
.x9{left:454.148438px;}
.x7{left:659.250000px;}
@media print{
.v1{vertical-align:-2.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:41.144000pt;}
.ws0{word-spacing:-35.328000pt;}
.ws4{word-spacing:-26.496000pt;}
.ws3{word-spacing:-20.824000pt;}
.ws5{word-spacing:-17.536000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-13.280000pt;}
._5{margin-left:-9.184000pt;}
._b{margin-left:-8.148000pt;}
._7{margin-left:-6.464000pt;}
._e{margin-left:-4.949500pt;}
._8{margin-left:-3.584000pt;}
._6{margin-left:-2.624000pt;}
._2{margin-left:-1.440000pt;}
._0{width:0.992000pt;}
._1{width:1.920000pt;}
._3{width:2.816000pt;}
._9{width:4.256000pt;}
._13{width:5.214000pt;}
._1a{width:6.176000pt;}
._45{width:7.076000pt;}
._d{width:7.972000pt;}
._c{width:9.392000pt;}
._15{width:10.497500pt;}
._16{width:11.853500pt;}
._14{width:13.288000pt;}
._25{width:14.883000pt;}
._17{width:15.788000pt;}
._19{width:16.707500pt;}
._1f{width:18.448500pt;}
._a{width:19.664500pt;}
._20{width:22.486000pt;}
._22{width:23.644500pt;}
._21{width:24.600500pt;}
._2f{width:25.508000pt;}
._23{width:26.495000pt;}
._1d{width:27.499000pt;}
._1e{width:28.447000pt;}
._2b{width:29.522000pt;}
._2e{width:30.476000pt;}
._2a{width:31.556000pt;}
._28{width:33.127000pt;}
._26{width:34.588000pt;}
._27{width:35.632000pt;}
._40{width:36.549500pt;}
._2c{width:37.830500pt;}
._2d{width:38.797000pt;}
._32{width:39.712500pt;}
._1b{width:41.400000pt;}
._33{width:42.556000pt;}
._34{width:43.816000pt;}
._31{width:45.120000pt;}
._30{width:46.032000pt;}
._29{width:47.244000pt;}
._43{width:48.456000pt;}
._49{width:49.416500pt;}
._47{width:50.375500pt;}
._f{width:51.634000pt;}
._10{width:52.687000pt;}
._35{width:53.988000pt;}
._41{width:55.656000pt;}
._1c{width:56.608000pt;}
._18{width:58.316000pt;}
._3d{width:59.744000pt;}
._39{width:60.716000pt;}
._38{width:61.636000pt;}
._36{width:62.540000pt;}
._37{width:64.004000pt;}
._46{width:67.397000pt;}
._11{width:68.902000pt;}
._12{width:69.816000pt;}
._4d{width:74.404500pt;}
._42{width:83.741000pt;}
._3c{width:85.011000pt;}
._3b{width:86.355000pt;}
._3f{width:87.463000pt;}
._3e{width:88.534000pt;}
._4b{width:98.416000pt;}
._4a{width:99.444000pt;}
._24{width:342.959500pt;}
._44{width:815.397000pt;}
._4c{width:860.084500pt;}
._3a{width:991.022000pt;}
._48{width:1054.897000pt;}
._4e{width:1338.709500pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:76.000000pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:53.734380pt;}
.y37{bottom:102.359380pt;}
.y72{bottom:104.000000pt;}
.yb1{bottom:107.000000pt;}
.ycf{bottom:108.359400pt;}
.y92{bottom:110.000000pt;}
.ya6{bottom:115.359400pt;}
.y7e{bottom:120.000000pt;}
.y114{bottom:121.000000pt;}
.y36{bottom:128.359380pt;}
.y71{bottom:130.000000pt;}
.yf4{bottom:131.359400pt;}
.y58{bottom:133.000000pt;}
.yce{bottom:134.359400pt;}
.y91{bottom:136.000000pt;}
.ya5{bottom:141.359400pt;}
.y80{bottom:146.000000pt;}
.y35{bottom:154.359380pt;}
.y70{bottom:156.000000pt;}
.yf3{bottom:157.359400pt;}
.y57{bottom:159.000000pt;}
.y113{bottom:160.000000pt;}
.ycd{bottom:160.359400pt;}
.y90{bottom:162.000000pt;}
.ya4{bottom:167.359400pt;}
.yad{bottom:172.000000pt;}
.y34{bottom:180.359380pt;}
.y6f{bottom:182.000000pt;}
.yf2{bottom:183.359400pt;}
.y56{bottom:185.000000pt;}
.y112{bottom:186.000000pt;}
.ycc{bottom:186.359400pt;}
.y8f{bottom:188.000000pt;}
.ya3{bottom:193.359400pt;}
.yac{bottom:198.000000pt;}
.yd8{bottom:199.359400pt;}
.y33{bottom:206.359380pt;}
.y6e{bottom:208.000000pt;}
.yf1{bottom:209.359400pt;}
.y55{bottom:211.000000pt;}
.y111{bottom:212.000000pt;}
.ycb{bottom:212.359400pt;}
.ya2{bottom:219.359400pt;}
.yab{bottom:224.000000pt;}
.y8e{bottom:227.000000pt;}
.y32{bottom:232.359380pt;}
.y6d{bottom:234.000000pt;}
.yf0{bottom:235.359400pt;}
.y54{bottom:237.000000pt;}
.y110{bottom:238.000000pt;}
.yca{bottom:238.359400pt;}
.ya1{bottom:245.359400pt;}
.yaa{bottom:250.000000pt;}
.y8d{bottom:253.000000pt;}
.y31{bottom:258.359380pt;}
.y6c{bottom:260.000000pt;}
.yef{bottom:261.359400pt;}
.y53{bottom:263.000000pt;}
.y10f{bottom:264.000000pt;}
.yc9{bottom:264.359400pt;}
.ya0{bottom:271.359400pt;}
.yd2{bottom:276.000000pt;}
.yf9{bottom:276.500000pt;}
.y8c{bottom:279.000000pt;}
.y30{bottom:284.359380pt;}
.y6b{bottom:286.000000pt;}
.yee{bottom:287.359400pt;}
.y52{bottom:289.000000pt;}
.yc8{bottom:290.359400pt;}
.yc{bottom:295.000000pt;}
.y9f{bottom:297.359400pt;}
.yd1{bottom:302.000000pt;}
.y10e{bottom:303.000000pt;}
.y8b{bottom:305.000000pt;}
.yed{bottom:313.359400pt;}
.y51{bottom:315.000000pt;}
.yd7{bottom:316.359400pt;}
.yb{bottom:321.000000pt;}
.y2f{bottom:323.359380pt;}
.y6a{bottom:325.000000pt;}
.yb0{bottom:328.000000pt;}
.y10d{bottom:329.000000pt;}
.yc7{bottom:329.359400pt;}
.y8a{bottom:331.000000pt;}
.y9e{bottom:336.359400pt;}
.yec{bottom:339.359400pt;}
.y50{bottom:341.000000pt;}
.yd6{bottom:342.359400pt;}
.ya{bottom:347.000000pt;}
.y2e{bottom:349.359380pt;}
.y69{bottom:351.000000pt;}
.yaf{bottom:354.000000pt;}
.y10c{bottom:355.000000pt;}
.yc6{bottom:355.359400pt;}
.y89{bottom:357.000000pt;}
.y9d{bottom:362.359400pt;}
.y4f{bottom:367.000000pt;}
.yd5{bottom:368.359400pt;}
.y9{bottom:373.000000pt;}
.y2d{bottom:375.359380pt;}
.y68{bottom:377.000000pt;}
.yeb{bottom:378.359400pt;}
.yae{bottom:380.000000pt;}
.yc5{bottom:381.359400pt;}
.y88{bottom:383.000000pt;}
.y9c{bottom:388.359400pt;}
.ya9{bottom:393.000000pt;}
.yf8{bottom:393.500000pt;}
.y10b{bottom:394.000000pt;}
.yd4{bottom:394.359400pt;}
.y8{bottom:399.000000pt;}
.y2c{bottom:401.359380pt;}
.y67{bottom:403.000000pt;}
.y4e{bottom:406.000000pt;}
.yc4{bottom:407.359400pt;}
.y87{bottom:409.000000pt;}
.y9b{bottom:414.359400pt;}
.yea{bottom:417.359400pt;}
.ya8{bottom:419.000000pt;}
.y10a{bottom:420.000000pt;}
.y2b{bottom:427.359380pt;}
.y66{bottom:429.000000pt;}
.y4d{bottom:432.000000pt;}
.yc3{bottom:433.359400pt;}
.y9a{bottom:440.359400pt;}
.ye9{bottom:443.359400pt;}
.y96{bottom:445.000000pt;}
.y86{bottom:449.000000pt;}
.y2a{bottom:453.359380pt;}
.y65{bottom:455.000000pt;}
.y4c{bottom:458.000000pt;}
.y109{bottom:459.000000pt;}
.yc2{bottom:459.359400pt;}
.y99{bottom:466.359400pt;}
.ye8{bottom:469.359400pt;}
.y95{bottom:471.000000pt;}
.y29{bottom:479.359380pt;}
.y64{bottom:481.000000pt;}
.y4b{bottom:484.000000pt;}
.y108{bottom:485.000000pt;}
.yc1{bottom:485.359400pt;}
.y98{bottom:492.359400pt;}
.ye7{bottom:495.359400pt;}
.y85{bottom:497.000000pt;}
.y28{bottom:505.359380pt;}
.y4a{bottom:510.000000pt;}
.yc0{bottom:511.359400pt;}
.y7{bottom:519.000000pt;}
.y63{bottom:520.000000pt;}
.ye6{bottom:521.359400pt;}
.y84{bottom:523.000000pt;}
.y107{bottom:524.000000pt;}
.y97{bottom:531.359400pt;}
.y1b{bottom:534.359380pt;}
.y49{bottom:536.000000pt;}
.ybf{bottom:537.359400pt;}
.y27{bottom:544.359380pt;}
.ye5{bottom:547.359400pt;}
.y83{bottom:549.000000pt;}
.y106{bottom:550.000000pt;}
.y62{bottom:559.000000pt;}
.y1a{bottom:560.359380pt;}
.y48{bottom:562.000000pt;}
.yf7{bottom:562.500000pt;}
.yd3{bottom:563.359400pt;}
.y26{bottom:570.359380pt;}
.ye4{bottom:573.359400pt;}
.y94{bottom:575.000000pt;}
.ybe{bottom:576.359400pt;}
.y61{bottom:585.000000pt;}
.y19{bottom:586.359380pt;}
.y7d{bottom:588.000000pt;}
.y105{bottom:589.000000pt;}
.y25{bottom:596.359380pt;}
.ye3{bottom:599.359400pt;}
.y47{bottom:601.000000pt;}
.ybd{bottom:602.359400pt;}
.y6{bottom:603.000000pt;}
.y60{bottom:611.000000pt;}
.y18{bottom:612.359380pt;}
.y82{bottom:614.000000pt;}
.y104{bottom:615.000000pt;}
.y24{bottom:622.359380pt;}
.ye2{bottom:625.359400pt;}
.y46{bottom:627.000000pt;}
.ybc{bottom:628.359400pt;}
.y5f{bottom:637.000000pt;}
.y17{bottom:638.359380pt;}
.y81{bottom:640.000000pt;}
.y103{bottom:641.000000pt;}
.y5{bottom:646.000000pt;}
.y23{bottom:648.359380pt;}
.ye1{bottom:651.359400pt;}
.y45{bottom:653.000000pt;}
.ybb{bottom:654.359400pt;}
.y5e{bottom:663.000000pt;}
.y16{bottom:664.359380pt;}
.y7c{bottom:666.000000pt;}
.y116{bottom:667.000000pt;}
.y22{bottom:674.359380pt;}
.y44{bottom:679.000000pt;}
.y102{bottom:680.000000pt;}
.yba{bottom:680.359400pt;}
.y5d{bottom:689.000000pt;}
.y4{bottom:690.000000pt;}
.y15{bottom:690.359380pt;}
.ye0{bottom:690.359400pt;}
.y7b{bottom:692.000000pt;}
.y21{bottom:700.359380pt;}
.y43{bottom:705.000000pt;}
.yf6{bottom:705.500000pt;}
.y101{bottom:706.000000pt;}
.yb9{bottom:706.359400pt;}
.y14{bottom:716.359380pt;}
.ydf{bottom:716.359400pt;}
.y7a{bottom:718.000000pt;}
.y20{bottom:726.359380pt;}
.y5c{bottom:729.000000pt;}
.y42{bottom:731.000000pt;}
.yb8{bottom:732.359400pt;}
.y3{bottom:734.000000pt;}
.y13{bottom:742.359380pt;}
.yde{bottom:742.359400pt;}
.y79{bottom:744.000000pt;}
.y100{bottom:745.000000pt;}
.y1f{bottom:752.359380pt;}
.y41{bottom:757.000000pt;}
.yb7{bottom:758.359400pt;}
.y5b{bottom:761.000000pt;}
.y12{bottom:768.359380pt;}
.ydd{bottom:768.359400pt;}
.y78{bottom:770.000000pt;}
.yff{bottom:771.000000pt;}
.y2{bottom:777.000000pt;}
.y40{bottom:783.000000pt;}
.yb6{bottom:784.359400pt;}
.y1e{bottom:791.359380pt;}
.y11{bottom:794.359380pt;}
.ydc{bottom:794.359400pt;}
.y77{bottom:796.000000pt;}
.yfe{bottom:797.000000pt;}
.y3f{bottom:809.000000pt;}
.y10{bottom:820.359380pt;}
.ydb{bottom:820.359400pt;}
.y1{bottom:821.000000pt;}
.y76{bottom:822.000000pt;}
.yfd{bottom:823.000000pt;}
.yb5{bottom:823.359400pt;}
.y1d{bottom:831.359380pt;}
.y5a{bottom:835.000000pt;}
.yf{bottom:846.359380pt;}
.yda{bottom:846.359400pt;}
.y3e{bottom:848.000000pt;}
.yf5{bottom:848.500000pt;}
.y59{bottom:861.000000pt;}
.yfc{bottom:862.000000pt;}
.y1c{bottom:863.359380pt;}
.yb4{bottom:863.359400pt;}
.ye{bottom:872.359380pt;}
.yd9{bottom:872.359400pt;}
.y75{bottom:874.000000pt;}
.y3d{bottom:887.000000pt;}
.yfb{bottom:888.000000pt;}
.y74{bottom:900.000000pt;}
.yd{bottom:909.359380pt;}
.yb3{bottom:909.359400pt;}
.y3c{bottom:913.000000pt;}
.yfa{bottom:927.000000pt;}
.y3b{bottom:939.000000pt;}
.y38{bottom:990.734375pt;}
.y3a{bottom:1158.359380pt;}
.y73{bottom:1160.000000pt;}
.yb2{bottom:1163.000000pt;}
.yd0{bottom:1164.359400pt;}
.y93{bottom:1166.000000pt;}
.ya7{bottom:1171.359400pt;}
.y7f{bottom:1176.000000pt;}
.y115{bottom:1177.000000pt;}
.h3{height:43.375000pt;}
.h6{height:48.062500pt;}
.h5{height:57.148438pt;}
.h7{height:57.968750pt;}
.h2{height:59.968750pt;}
.h4{height:72.187500pt;}
.h1{height:96.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.xb{left:114.000000pt;}
.x2{left:123.500000pt;}
.xc{left:132.000000pt;}
.x5{left:139.000000pt;}
.x6{left:304.000000pt;}
.x3{left:308.000000pt;}
.x1{left:321.500000pt;}
.xd{left:391.000000pt;}
.x4{left:392.000000pt;}
.xa{left:399.375000pt;}
.x9{left:403.687500pt;}
.x7{left:586.000000pt;}
}




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