
    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_467ef27a749959d80a358845.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_6977eeacba01b7a44319208a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d1d8c2ad9513f945cfea527d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_12f961d2e84681ec1c69189b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ddbc41114ad499c37d952a81.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.936000px;}
.ls0{letter-spacing:-0.331200px;}
.ls2{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.331200px;}
.lsb{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.ls5{letter-spacing:17.712000px;}
.ls9{letter-spacing:197.280000px;}
.lsd{letter-spacing:846.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-35.712000px;}
.ws12{word-spacing:-18.745920px;}
.ws13{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws14{word-spacing:-18.083520px;}
.wsb{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.712000px;}
.ws11{word-spacing:-0.864000px;}
.ws16{word-spacing:-0.720000px;}
.ws6{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.072000px;}
.ws9{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:0.144000px;}
.wsc{word-spacing:0.216000px;}
.ws5{word-spacing:0.288000px;}
.ws3{word-spacing:0.662400px;}
.ws10{word-spacing:0.720000px;}
.ws15{word-spacing:0.936000px;}
.wsf{word-spacing:1.008000px;}
._6{margin-left:-2.415168px;}
._1{margin-left:-1.093824px;}
._0{width:1.410912px;}
._5{width:277.488000px;}
._4{width:429.610176px;}
._3{width:605.592000px;}
._2{width:845.553600px;}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:7.020000px;}
.y97{bottom:7.200000px;}
.y9a{bottom:30.780000px;}
.y9f{bottom:30.960000px;}
.yfb{bottom:114.660000px;}
.y41{bottom:116.460000px;}
.y6a{bottom:121.860000px;}
.y8b{bottom:132.300000px;}
.yd7{bottom:134.460000px;}
.y52{bottom:139.860000px;}
.yb9{bottom:145.260000px;}
.y7a{bottom:150.300000px;}
.yfc{bottom:156.060000px;}
.y40{bottom:157.860000px;}
.y69{bottom:163.260000px;}
.ycf{bottom:168.660000px;}
.ye8{bottom:170.820000px;}
.y8a{bottom:173.700000px;}
.yfa{bottom:174.060000px;}
.y92{bottom:175.860000px;}
.y51{bottom:181.260000px;}
.yb8{bottom:186.660000px;}
.yf4{bottom:187.020000px;}
.y2a{bottom:188.820000px;}
.y79{bottom:191.700000px;}
.y10b{bottom:197.460000px;}
.y3f{bottom:199.260000px;}
.y68{bottom:204.660000px;}
.yce{bottom:210.060000px;}
.ye7{bottom:212.220000px;}
.y89{bottom:215.100000px;}
.yf9{bottom:215.460000px;}
.y91{bottom:217.260000px;}
.y50{bottom:222.660000px;}
.yb7{bottom:228.060000px;}
.yf3{bottom:228.420000px;}
.y29{bottom:230.220000px;}
.y78{bottom:233.100000px;}
.y10a{bottom:238.860000px;}
.y55{bottom:240.660000px;}
.y67{bottom:246.060000px;}
.ycd{bottom:251.460000px;}
.ye6{bottom:253.620000px;}
.y88{bottom:256.500000px;}
.y101{bottom:256.860000px;}
.y3e{bottom:258.660000px;}
.y4f{bottom:264.060000px;}
.yb6{bottom:269.460000px;}
.y28{bottom:271.620000px;}
.ybc{bottom:274.500000px;}
.yf8{bottom:274.860000px;}
.y54{bottom:282.060000px;}
.yd1{bottom:287.460000px;}
.yaa{bottom:287.820000px;}
.y77{bottom:292.500000px;}
.ycc{bottom:292.860000px;}
.ye5{bottom:295.020000px;}
.y87{bottom:297.900000px;}
.y109{bottom:298.260000px;}
.y3d{bottom:300.060000px;}
.y4e{bottom:305.460000px;}
.yb5{bottom:310.860000px;}
.ya9{bottom:311.580000px;}
.y27{bottom:313.020000px;}
.ybb{bottom:315.900000px;}
.y100{bottom:316.260000px;}
.y53{bottom:323.460000px;}
.yd0{bottom:328.860000px;}
.yf2{bottom:329.220000px;}
.y76{bottom:333.900000px;}
.ycb{bottom:334.260000px;}
.ya8{bottom:335.340000px;}
.ye4{bottom:336.420000px;}
.y86{bottom:339.300000px;}
.y108{bottom:339.660000px;}
.y3c{bottom:341.460000px;}
.y13{bottom:345.240000px;}
.y66{bottom:346.860000px;}
.yb4{bottom:352.260000px;}
.y26{bottom:354.420000px;}
.yba{bottom:357.300000px;}
.yff{bottom:357.660000px;}
.ya7{bottom:359.280000px;}
.y4d{bottom:364.860000px;}
.yd6{bottom:370.260000px;}
.yf1{bottom:370.620000px;}
.y75{bottom:375.300000px;}
.yca{bottom:375.660000px;}
.ye3{bottom:377.820000px;}
.ya6{bottom:379.260000px;}
.y3b{bottom:382.860000px;}
.y12{bottom:385.380000px;}
.ya5{bottom:386.460000px;}
.y65{bottom:388.260000px;}
.yb3{bottom:393.660000px;}
.y25{bottom:395.820000px;}
.y85{bottom:398.700000px;}
.yfe{bottom:399.060000px;}
.y4c{bottom:406.260000px;}
.yd5{bottom:411.660000px;}
.y74{bottom:416.700000px;}
.yc9{bottom:417.060000px;}
.ye2{bottom:419.220000px;}
.y3a{bottom:424.260000px;}
.y11{bottom:426.780000px;}
.y56{bottom:429.660000px;}
.yf0{bottom:430.020000px;}
.ya4{bottom:432.540000px;}
.yb2{bottom:435.060000px;}
.y24{bottom:437.220000px;}
.y84{bottom:440.100000px;}
.y107{bottom:440.460000px;}
.y4b{bottom:447.660000px;}
.yd4{bottom:453.060000px;}
.y73{bottom:458.100000px;}
.yfd{bottom:458.460000px;}
.ye1{bottom:460.620000px;}
.ya3{bottom:462.060000px;}
.y39{bottom:465.660000px;}
.y10{bottom:468.180000px;}
.y64{bottom:471.060000px;}
.yef{bottom:471.420000px;}
.yb1{bottom:476.460000px;}
.y23{bottom:478.620000px;}
.y83{bottom:481.500000px;}
.y106{bottom:481.860000px;}
.yda{bottom:483.660000px;}
.y4a{bottom:489.060000px;}
.ya2{bottom:491.400000px;}
.ya1{bottom:498.420000px;}
.y72{bottom:499.500000px;}
.ye0{bottom:502.020000px;}
.y38{bottom:507.060000px;}
.yf{bottom:509.580000px;}
.y63{bottom:512.460000px;}
.yee{bottom:512.820000px;}
.yc8{bottom:517.860000px;}
.y22{bottom:520.020000px;}
.y82{bottom:522.900000px;}
.yd9{bottom:525.060000px;}
.y90{bottom:530.460000px;}
.yb0{bottom:535.860000px;}
.y71{bottom:540.900000px;}
.y105{bottom:541.260000px;}
.ydf{bottom:543.420000px;}
.ya0{bottom:544.680000px;}
.y37{bottom:548.460000px;}
.ye{bottom:550.980000px;}
.y62{bottom:553.860000px;}
.yc7{bottom:559.260000px;}
.y21{bottom:561.420000px;}
.y81{bottom:564.300000px;}
.yd8{bottom:566.460000px;}
.y8f{bottom:571.860000px;}
.yed{bottom:572.220000px;}
.y9e{bottom:574.020000px;}
.yaf{bottom:577.260000px;}
.y9d{bottom:581.220000px;}
.y70{bottom:582.300000px;}
.yde{bottom:584.820000px;}
.y49{bottom:589.860000px;}
.yd{bottom:592.380000px;}
.y61{bottom:595.260000px;}
.yc6{bottom:600.660000px;}
.y20{bottom:602.820000px;}
.y80{bottom:605.700000px;}
.y36{bottom:607.860000px;}
.y8e{bottom:613.260000px;}
.yec{bottom:613.620000px;}
.yae{bottom:618.660000px;}
.y6f{bottom:623.700000px;}
.ydd{bottom:626.220000px;}
.y9c{bottom:627.300000px;}
.y48{bottom:631.260000px;}
.yc{bottom:633.780000px;}
.y60{bottom:636.660000px;}
.yc5{bottom:642.060000px;}
.y1f{bottom:644.220000px;}
.y7f{bottom:647.100000px;}
.y35{bottom:649.260000px;}
.y8d{bottom:654.660000px;}
.yeb{bottom:655.020000px;}
.y99{bottom:656.820000px;}
.yad{bottom:660.060000px;}
.y98{bottom:663.840000px;}
.y6e{bottom:665.100000px;}
.ydc{bottom:667.620000px;}
.y47{bottom:672.660000px;}
.yb{bottom:675.180000px;}
.yd3{bottom:678.060000px;}
.yc4{bottom:683.460000px;}
.y1e{bottom:685.620000px;}
.y34{bottom:690.660000px;}
.y5f{bottom:696.060000px;}
.yac{bottom:701.460000px;}
.y6d{bottom:706.500000px;}
.ydb{bottom:709.020000px;}
.y96{bottom:709.920000px;}
.y46{bottom:714.060000px;}
.yea{bottom:714.420000px;}
.ya{bottom:716.580000px;}
.yd2{bottom:719.460000px;}
.yc3{bottom:724.860000px;}
.y1d{bottom:727.020000px;}
.y33{bottom:732.060000px;}
.y5e{bottom:737.460000px;}
.yab{bottom:742.860000px;}
.y95{bottom:744.300000px;}
.y6c{bottom:747.900000px;}
.y45{bottom:755.460000px;}
.y9{bottom:757.980000px;}
.yf7{bottom:760.860000px;}
.y94{bottom:768.060000px;}
.y1c{bottom:768.420000px;}
.y32{bottom:773.460000px;}
.yc2{bottom:773.820000px;}
.y5d{bottom:778.860000px;}
.y6b{bottom:789.300000px;}
.y93{bottom:791.820000px;}
.y44{bottom:796.860000px;}
.y8{bottom:799.380000px;}
.y104{bottom:802.260000px;}
.y1b{bottom:809.820000px;}
.y31{bottom:814.860000px;}
.ye9{bottom:815.220000px;}
.y5c{bottom:820.080000px;}
.yf6{bottom:820.260000px;}
.y7e{bottom:830.700000px;}
.yc1{bottom:833.220000px;}
.y43{bottom:838.260000px;}
.y7{bottom:840.780000px;}
.y1a{bottom:851.220000px;}
.y30{bottom:856.260000px;}
.y5b{bottom:861.480000px;}
.yf5{bottom:861.660000px;}
.y7d{bottom:872.100000px;}
.yc0{bottom:874.620000px;}
.y42{bottom:879.660000px;}
.y6{bottom:882.180000px;}
.y19{bottom:892.620000px;}
.y2f{bottom:897.660000px;}
.y5a{bottom:902.880000px;}
.y103{bottom:903.060000px;}
.y7c{bottom:913.500000px;}
.ybf{bottom:916.020000px;}
.y8c{bottom:921.060000px;}
.y5{bottom:923.580000px;}
.y18{bottom:934.020000px;}
.y2e{bottom:939.060000px;}
.y59{bottom:944.280000px;}
.ybe{bottom:957.420000px;}
.y7b{bottom:962.460000px;}
.y4{bottom:964.980000px;}
.y17{bottom:975.420000px;}
.y2d{bottom:980.460000px;}
.y58{bottom:985.680000px;}
.y102{bottom:1003.860000px;}
.ybd{bottom:1005.120000px;}
.y3{bottom:1006.380000px;}
.y16{bottom:1016.820000px;}
.y2c{bottom:1021.860000px;}
.y57{bottom:1034.820000px;}
.y2{bottom:1036.086480px;}
.y2b{bottom:1063.260000px;}
.y1{bottom:1064.520000px;}
.y15{bottom:1094.400000px;}
.y14{bottom:1117.260000px;}
.h6{height:23.760000px;}
.h4{height:23.940000px;}
.h5{height:47.520000px;}
.h7{height:47.700000px;}
.h8{height:47.701500px;}
.h1{height:48.224531px;}
.h3{height:49.289062px;}
.h2{height:63.175781px;}
.h0{height:1188.000000px;}
.w1{width:109.800000px;}
.w3{width:166.500000px;}
.w2{width:199.981500px;}
.w4{width:220.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:2.880000px;}
.x4{left:108.000000px;}
.xc{left:109.080000px;}
.x10{left:111.960000px;}
.x3{left:118.260000px;}
.x1{left:129.420000px;}
.x1e{left:135.000000px;}
.x18{left:162.000000px;}
.xa{left:166.680000px;}
.x17{left:198.540000px;}
.x6{left:209.520000px;}
.x19{left:213.660000px;}
.xe{left:219.960000px;}
.x11{left:222.840000px;}
.x8{left:234.180000px;}
.x2{left:282.964320px;}
.xb{left:332.640000px;}
.x7{left:337.500000px;}
.x1a{left:399.780000px;}
.x1d{left:402.480000px;}
.x1c{left:403.560000px;}
.x1b{left:407.700000px;}
.x9{left:421.740000px;}
.x14{left:423.720000px;}
.x5{left:459.000000px;}
.xf{left:588.420000px;}
.x15{left:672.300000px;}
.x13{left:729.900000px;}
.x12{left:768.960000px;}
.x16{left:772.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls0{letter-spacing:-0.294400pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.294400pt;}
.lsb{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls5{letter-spacing:15.744000pt;}
.ls9{letter-spacing:175.360000pt;}
.lsd{letter-spacing:752.000000pt;}
.ws7{word-spacing:-31.744000pt;}
.ws12{word-spacing:-16.663040pt;}
.ws13{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws14{word-spacing:-16.074240pt;}
.wsb{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.744000pt;}
.ws11{word-spacing:-0.768000pt;}
.ws16{word-spacing:-0.640000pt;}
.ws6{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws9{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:0.128000pt;}
.wsc{word-spacing:0.192000pt;}
.ws5{word-spacing:0.256000pt;}
.ws3{word-spacing:0.588800pt;}
.ws10{word-spacing:0.640000pt;}
.ws15{word-spacing:0.832000pt;}
.wsf{word-spacing:0.896000pt;}
._6{margin-left:-2.146816pt;}
._1{margin-left:-0.972288pt;}
._0{width:1.254144pt;}
._5{width:246.656000pt;}
._4{width:381.875712pt;}
._3{width:538.304000pt;}
._2{width:751.603200pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:6.240000pt;}
.y97{bottom:6.400000pt;}
.y9a{bottom:27.360000pt;}
.y9f{bottom:27.520000pt;}
.yfb{bottom:101.920000pt;}
.y41{bottom:103.520000pt;}
.y6a{bottom:108.320000pt;}
.y8b{bottom:117.600000pt;}
.yd7{bottom:119.520000pt;}
.y52{bottom:124.320000pt;}
.yb9{bottom:129.120000pt;}
.y7a{bottom:133.600000pt;}
.yfc{bottom:138.720000pt;}
.y40{bottom:140.320000pt;}
.y69{bottom:145.120000pt;}
.ycf{bottom:149.920000pt;}
.ye8{bottom:151.840000pt;}
.y8a{bottom:154.400000pt;}
.yfa{bottom:154.720000pt;}
.y92{bottom:156.320000pt;}
.y51{bottom:161.120000pt;}
.yb8{bottom:165.920000pt;}
.yf4{bottom:166.240000pt;}
.y2a{bottom:167.840000pt;}
.y79{bottom:170.400000pt;}
.y10b{bottom:175.520000pt;}
.y3f{bottom:177.120000pt;}
.y68{bottom:181.920000pt;}
.yce{bottom:186.720000pt;}
.ye7{bottom:188.640000pt;}
.y89{bottom:191.200000pt;}
.yf9{bottom:191.520000pt;}
.y91{bottom:193.120000pt;}
.y50{bottom:197.920000pt;}
.yb7{bottom:202.720000pt;}
.yf3{bottom:203.040000pt;}
.y29{bottom:204.640000pt;}
.y78{bottom:207.200000pt;}
.y10a{bottom:212.320000pt;}
.y55{bottom:213.920000pt;}
.y67{bottom:218.720000pt;}
.ycd{bottom:223.520000pt;}
.ye6{bottom:225.440000pt;}
.y88{bottom:228.000000pt;}
.y101{bottom:228.320000pt;}
.y3e{bottom:229.920000pt;}
.y4f{bottom:234.720000pt;}
.yb6{bottom:239.520000pt;}
.y28{bottom:241.440000pt;}
.ybc{bottom:244.000000pt;}
.yf8{bottom:244.320000pt;}
.y54{bottom:250.720000pt;}
.yd1{bottom:255.520000pt;}
.yaa{bottom:255.840000pt;}
.y77{bottom:260.000000pt;}
.ycc{bottom:260.320000pt;}
.ye5{bottom:262.240000pt;}
.y87{bottom:264.800000pt;}
.y109{bottom:265.120000pt;}
.y3d{bottom:266.720000pt;}
.y4e{bottom:271.520000pt;}
.yb5{bottom:276.320000pt;}
.ya9{bottom:276.960000pt;}
.y27{bottom:278.240000pt;}
.ybb{bottom:280.800000pt;}
.y100{bottom:281.120000pt;}
.y53{bottom:287.520000pt;}
.yd0{bottom:292.320000pt;}
.yf2{bottom:292.640000pt;}
.y76{bottom:296.800000pt;}
.ycb{bottom:297.120000pt;}
.ya8{bottom:298.080000pt;}
.ye4{bottom:299.040000pt;}
.y86{bottom:301.600000pt;}
.y108{bottom:301.920000pt;}
.y3c{bottom:303.520000pt;}
.y13{bottom:306.880000pt;}
.y66{bottom:308.320000pt;}
.yb4{bottom:313.120000pt;}
.y26{bottom:315.040000pt;}
.yba{bottom:317.600000pt;}
.yff{bottom:317.920000pt;}
.ya7{bottom:319.360000pt;}
.y4d{bottom:324.320000pt;}
.yd6{bottom:329.120000pt;}
.yf1{bottom:329.440000pt;}
.y75{bottom:333.600000pt;}
.yca{bottom:333.920000pt;}
.ye3{bottom:335.840000pt;}
.ya6{bottom:337.120000pt;}
.y3b{bottom:340.320000pt;}
.y12{bottom:342.560000pt;}
.ya5{bottom:343.520000pt;}
.y65{bottom:345.120000pt;}
.yb3{bottom:349.920000pt;}
.y25{bottom:351.840000pt;}
.y85{bottom:354.400000pt;}
.yfe{bottom:354.720000pt;}
.y4c{bottom:361.120000pt;}
.yd5{bottom:365.920000pt;}
.y74{bottom:370.400000pt;}
.yc9{bottom:370.720000pt;}
.ye2{bottom:372.640000pt;}
.y3a{bottom:377.120000pt;}
.y11{bottom:379.360000pt;}
.y56{bottom:381.920000pt;}
.yf0{bottom:382.240000pt;}
.ya4{bottom:384.480000pt;}
.yb2{bottom:386.720000pt;}
.y24{bottom:388.640000pt;}
.y84{bottom:391.200000pt;}
.y107{bottom:391.520000pt;}
.y4b{bottom:397.920000pt;}
.yd4{bottom:402.720000pt;}
.y73{bottom:407.200000pt;}
.yfd{bottom:407.520000pt;}
.ye1{bottom:409.440000pt;}
.ya3{bottom:410.720000pt;}
.y39{bottom:413.920000pt;}
.y10{bottom:416.160000pt;}
.y64{bottom:418.720000pt;}
.yef{bottom:419.040000pt;}
.yb1{bottom:423.520000pt;}
.y23{bottom:425.440000pt;}
.y83{bottom:428.000000pt;}
.y106{bottom:428.320000pt;}
.yda{bottom:429.920000pt;}
.y4a{bottom:434.720000pt;}
.ya2{bottom:436.800000pt;}
.ya1{bottom:443.040000pt;}
.y72{bottom:444.000000pt;}
.ye0{bottom:446.240000pt;}
.y38{bottom:450.720000pt;}
.yf{bottom:452.960000pt;}
.y63{bottom:455.520000pt;}
.yee{bottom:455.840000pt;}
.yc8{bottom:460.320000pt;}
.y22{bottom:462.240000pt;}
.y82{bottom:464.800000pt;}
.yd9{bottom:466.720000pt;}
.y90{bottom:471.520000pt;}
.yb0{bottom:476.320000pt;}
.y71{bottom:480.800000pt;}
.y105{bottom:481.120000pt;}
.ydf{bottom:483.040000pt;}
.ya0{bottom:484.160000pt;}
.y37{bottom:487.520000pt;}
.ye{bottom:489.760000pt;}
.y62{bottom:492.320000pt;}
.yc7{bottom:497.120000pt;}
.y21{bottom:499.040000pt;}
.y81{bottom:501.600000pt;}
.yd8{bottom:503.520000pt;}
.y8f{bottom:508.320000pt;}
.yed{bottom:508.640000pt;}
.y9e{bottom:510.240000pt;}
.yaf{bottom:513.120000pt;}
.y9d{bottom:516.640000pt;}
.y70{bottom:517.600000pt;}
.yde{bottom:519.840000pt;}
.y49{bottom:524.320000pt;}
.yd{bottom:526.560000pt;}
.y61{bottom:529.120000pt;}
.yc6{bottom:533.920000pt;}
.y20{bottom:535.840000pt;}
.y80{bottom:538.400000pt;}
.y36{bottom:540.320000pt;}
.y8e{bottom:545.120000pt;}
.yec{bottom:545.440000pt;}
.yae{bottom:549.920000pt;}
.y6f{bottom:554.400000pt;}
.ydd{bottom:556.640000pt;}
.y9c{bottom:557.600000pt;}
.y48{bottom:561.120000pt;}
.yc{bottom:563.360000pt;}
.y60{bottom:565.920000pt;}
.yc5{bottom:570.720000pt;}
.y1f{bottom:572.640000pt;}
.y7f{bottom:575.200000pt;}
.y35{bottom:577.120000pt;}
.y8d{bottom:581.920000pt;}
.yeb{bottom:582.240000pt;}
.y99{bottom:583.840000pt;}
.yad{bottom:586.720000pt;}
.y98{bottom:590.080000pt;}
.y6e{bottom:591.200000pt;}
.ydc{bottom:593.440000pt;}
.y47{bottom:597.920000pt;}
.yb{bottom:600.160000pt;}
.yd3{bottom:602.720000pt;}
.yc4{bottom:607.520000pt;}
.y1e{bottom:609.440000pt;}
.y34{bottom:613.920000pt;}
.y5f{bottom:618.720000pt;}
.yac{bottom:623.520000pt;}
.y6d{bottom:628.000000pt;}
.ydb{bottom:630.240000pt;}
.y96{bottom:631.040000pt;}
.y46{bottom:634.720000pt;}
.yea{bottom:635.040000pt;}
.ya{bottom:636.960000pt;}
.yd2{bottom:639.520000pt;}
.yc3{bottom:644.320000pt;}
.y1d{bottom:646.240000pt;}
.y33{bottom:650.720000pt;}
.y5e{bottom:655.520000pt;}
.yab{bottom:660.320000pt;}
.y95{bottom:661.600000pt;}
.y6c{bottom:664.800000pt;}
.y45{bottom:671.520000pt;}
.y9{bottom:673.760000pt;}
.yf7{bottom:676.320000pt;}
.y94{bottom:682.720000pt;}
.y1c{bottom:683.040000pt;}
.y32{bottom:687.520000pt;}
.yc2{bottom:687.840000pt;}
.y5d{bottom:692.320000pt;}
.y6b{bottom:701.600000pt;}
.y93{bottom:703.840000pt;}
.y44{bottom:708.320000pt;}
.y8{bottom:710.560000pt;}
.y104{bottom:713.120000pt;}
.y1b{bottom:719.840000pt;}
.y31{bottom:724.320000pt;}
.ye9{bottom:724.640000pt;}
.y5c{bottom:728.960000pt;}
.yf6{bottom:729.120000pt;}
.y7e{bottom:738.400000pt;}
.yc1{bottom:740.640000pt;}
.y43{bottom:745.120000pt;}
.y7{bottom:747.360000pt;}
.y1a{bottom:756.640000pt;}
.y30{bottom:761.120000pt;}
.y5b{bottom:765.760000pt;}
.yf5{bottom:765.920000pt;}
.y7d{bottom:775.200000pt;}
.yc0{bottom:777.440000pt;}
.y42{bottom:781.920000pt;}
.y6{bottom:784.160000pt;}
.y19{bottom:793.440000pt;}
.y2f{bottom:797.920000pt;}
.y5a{bottom:802.560000pt;}
.y103{bottom:802.720000pt;}
.y7c{bottom:812.000000pt;}
.ybf{bottom:814.240000pt;}
.y8c{bottom:818.720000pt;}
.y5{bottom:820.960000pt;}
.y18{bottom:830.240000pt;}
.y2e{bottom:834.720000pt;}
.y59{bottom:839.360000pt;}
.ybe{bottom:851.040000pt;}
.y7b{bottom:855.520000pt;}
.y4{bottom:857.760000pt;}
.y17{bottom:867.040000pt;}
.y2d{bottom:871.520000pt;}
.y58{bottom:876.160000pt;}
.y102{bottom:892.320000pt;}
.ybd{bottom:893.440000pt;}
.y3{bottom:894.560000pt;}
.y16{bottom:903.840000pt;}
.y2c{bottom:908.320000pt;}
.y57{bottom:919.840000pt;}
.y2{bottom:920.965760pt;}
.y2b{bottom:945.120000pt;}
.y1{bottom:946.240000pt;}
.y15{bottom:972.800000pt;}
.y14{bottom:993.120000pt;}
.h6{height:21.120000pt;}
.h4{height:21.280000pt;}
.h5{height:42.240000pt;}
.h7{height:42.400000pt;}
.h8{height:42.401333pt;}
.h1{height:42.866250pt;}
.h3{height:43.812500pt;}
.h2{height:56.156250pt;}
.h0{height:1056.000000pt;}
.w1{width:97.600000pt;}
.w3{width:148.000000pt;}
.w2{width:177.761333pt;}
.w4{width:196.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:2.560000pt;}
.x4{left:96.000000pt;}
.xc{left:96.960000pt;}
.x10{left:99.520000pt;}
.x3{left:105.120000pt;}
.x1{left:115.040000pt;}
.x1e{left:120.000000pt;}
.x18{left:144.000000pt;}
.xa{left:148.160000pt;}
.x17{left:176.480000pt;}
.x6{left:186.240000pt;}
.x19{left:189.920000pt;}
.xe{left:195.520000pt;}
.x11{left:198.080000pt;}
.x8{left:208.160000pt;}
.x2{left:251.523840pt;}
.xb{left:295.680000pt;}
.x7{left:300.000000pt;}
.x1a{left:355.360000pt;}
.x1d{left:357.760000pt;}
.x1c{left:358.720000pt;}
.x1b{left:362.400000pt;}
.x9{left:374.880000pt;}
.x14{left:376.640000pt;}
.x5{left:408.000000pt;}
.xf{left:523.040000pt;}
.x15{left:597.600000pt;}
.x13{left:648.800000pt;}
.x12{left:683.520000pt;}
.x16{left:687.040000pt;}
}




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