
    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_3af447fe96a9353bec428f83.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_0f988f65a34730ff7a349657.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_5e48d73b9c454f86e377c878.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_376c65850dbcfbc33f3a7e6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dcb46d437ac86cac80c0bcd7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4b3fe3b773aae66d6ce53546.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7f24d2d06fc5761adc500399.woff2')format("woff");}.ff7{font-family:ff7;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);}
.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;}
.ls15{letter-spacing:-1.224000px;}
.ls14{letter-spacing:-1.152000px;}
.ls13{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.505440px;}
.lsf{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.298800px;}
.lsc{letter-spacing:-0.252720px;}
.ls6{letter-spacing:-0.240480px;}
.ls9{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.168480px;}
.ls8{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023904px;}
.ls1{letter-spacing:0.059760px;}
.ls2{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.136800px;}
.lsa{letter-spacing:0.144000px;}
.lse{letter-spacing:0.252720px;}
.ls7{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.298800px;}
.ls12{letter-spacing:49.104000px;}
.ls16{letter-spacing:49.824000px;}
.lsb{letter-spacing:843.984000px;}
.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;}
}
.ws23{word-spacing:-72.000000px;}
.ws22{word-spacing:-19.459440px;}
.ws21{word-spacing:-19.206720px;}
.ws24{word-spacing:-18.701280px;}
.wsc{word-spacing:-16.704000px;}
.ws1b{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.416000px;}
.ws19{word-spacing:-16.344000px;}
.ws11{word-spacing:-16.272000px;}
.wsb{word-spacing:-16.200000px;}
.ws25{word-spacing:-15.984000px;}
.ws1d{word-spacing:-15.192000px;}
.ws1{word-spacing:-13.924080px;}
.ws0{word-spacing:-13.744800px;}
.ws2{word-spacing:-13.685040px;}
.ws3{word-spacing:-13.625280px;}
.ws4{word-spacing:-13.326480px;}
.ws6{word-spacing:-0.956160px;}
.ws10{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.758160px;}
.ws15{word-spacing:-0.576000px;}
.wsf{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.336960px;}
.ws14{word-spacing:-0.288000px;}
.wse{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.119520px;}
.ws7{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.ws1a{word-spacing:0.144000px;}
.ws26{word-spacing:0.216000px;}
.ws9{word-spacing:0.240480px;}
.ws12{word-spacing:0.252720px;}
.wsd{word-spacing:0.288000px;}
.ws13{word-spacing:0.421200px;}
.ws18{word-spacing:0.432000px;}
.ws1c{word-spacing:0.505440px;}
.ws1f{word-spacing:0.576000px;}
.ws1e{word-spacing:0.720000px;}
.ws20{word-spacing:1.152000px;}
._4{margin-left:-16.592832px;}
._3{margin-left:-14.537664px;}
._a{margin-left:-12.934728px;}
._8{margin-left:-11.715768px;}
._9{margin-left:-10.644624px;}
._5{margin-left:-7.997040px;}
._2{margin-left:-6.324624px;}
._6{margin-left:-4.197456px;}
._7{margin-left:-2.666520px;}
._0{margin-left:-1.021896px;}
._1{width:1.015920px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:60.652800px;}
.ye{bottom:67.492800px;}
.y4{bottom:82.076760px;}
.yd{bottom:89.096040px;}
.y3{bottom:103.680000px;}
.yc{bottom:110.520000px;}
.y2{bottom:125.100000px;}
.yb{bottom:132.120000px;}
.yc5{bottom:166.860000px;}
.y4b{bottom:170.640000px;}
.yd8{bottom:174.960000px;}
.y113{bottom:178.740000px;}
.y101{bottom:184.860000px;}
.y92{bottom:186.300000px;}
.yb5{bottom:187.380000px;}
.y24{bottom:194.940000px;}
.yc4{bottom:198.000000px;}
.yab{bottom:199.260000px;}
.y4a{bottom:201.600000px;}
.yd7{bottom:207.180000px;}
.y62{bottom:209.340000px;}
.y112{bottom:210.960000px;}
.yec{bottom:212.040000px;}
.y100{bottom:215.820000px;}
.y91{bottom:217.080000px;}
.yb4{bottom:218.340000px;}
.yc3{bottom:228.960000px;}
.yaa{bottom:230.400000px;}
.y78{bottom:231.480000px;}
.y49{bottom:232.560000px;}
.y23{bottom:233.280000px;}
.yd6{bottom:238.140000px;}
.y61{bottom:240.480000px;}
.yeb{bottom:243.000000px;}
.y111{bottom:243.180000px;}
.yff{bottom:246.780000px;}
.y90{bottom:249.480000px;}
.yc2{bottom:259.920000px;}
.ya9{bottom:261.360000px;}
.y77{bottom:262.440000px;}
.y48{bottom:263.520000px;}
.yd5{bottom:270.360000px;}
.y60{bottom:271.440000px;}
.y22{bottom:271.800000px;}
.yea{bottom:273.960000px;}
.y110{bottom:275.400000px;}
.yfe{bottom:277.740000px;}
.yb3{bottom:280.440000px;}
.y8f{bottom:282.780000px;}
.yc1{bottom:290.880000px;}
.ya8{bottom:292.320000px;}
.y76{bottom:293.400000px;}
.y47{bottom:294.480000px;}
.yd4{bottom:301.320000px;}
.y5f{bottom:302.400000px;}
.ye9{bottom:305.100000px;}
.y10f{bottom:307.620000px;}
.yfd{bottom:308.700000px;}
.y21{bottom:310.320000px;}
.yb2{bottom:311.400000px;}
.yc0{bottom:321.840000px;}
.ya7{bottom:323.280000px;}
.y75{bottom:324.360000px;}
.y46{bottom:325.620000px;}
.y5e{bottom:333.360000px;}
.yd3{bottom:333.540000px;}
.y8e{bottom:334.620000px;}
.ye8{bottom:336.060000px;}
.yfc{bottom:339.660000px;}
.y10e{bottom:339.840000px;}
.yb1{bottom:344.880000px;}
.y20{bottom:348.840000px;}
.ya6{bottom:354.240000px;}
.y74{bottom:355.320000px;}
.y45{bottom:356.580000px;}
.y5d{bottom:364.320000px;}
.yd2{bottom:364.500000px;}
.y8d{bottom:365.580000px;}
.ye7{bottom:367.020000px;}
.yfb{bottom:370.620000px;}
.y10d{bottom:372.060000px;}
.ya5{bottom:385.200000px;}
.y73{bottom:386.280000px;}
.y1f{bottom:387.180000px;}
.y44{bottom:387.540000px;}
.y5c{bottom:395.280000px;}
.yd1{bottom:395.460000px;}
.y8c{bottom:396.540000px;}
.ye6{bottom:397.980000px;}
.yfa{bottom:401.580000px;}
.y121{bottom:401.940000px;}
.y10c{bottom:404.280000px;}
.ybf{bottom:406.980000px;}
.ya4{bottom:416.160000px;}
.y72{bottom:417.240000px;}
.y43{bottom:418.500000px;}
.y1e{bottom:425.700000px;}
.y5b{bottom:426.240000px;}
.yd0{bottom:426.420000px;}
.y8b{bottom:427.500000px;}
.ye5{bottom:428.940000px;}
.yf9{bottom:432.720000px;}
.y120{bottom:432.900000px;}
.y10b{bottom:435.240000px;}
.ybe{bottom:437.940000px;}
.y71{bottom:448.200000px;}
.ya3{bottom:448.380000px;}
.y42{bottom:449.460000px;}
.ycf{bottom:457.380000px;}
.y8a{bottom:458.460000px;}
.y5a{bottom:459.720000px;}
.ye4{bottom:459.900000px;}
.yf8{bottom:463.680000px;}
.y1d{bottom:464.220000px;}
.y10a{bottom:466.200000px;}
.y11f{bottom:466.380000px;}
.y70{bottom:479.340000px;}
.y41{bottom:480.420000px;}
.ya2{bottom:480.600000px;}
.y89{bottom:489.420000px;}
.yce{bottom:489.600000px;}
.ye3{bottom:490.860000px;}
.yf7{bottom:494.640000px;}
.y109{bottom:497.340000px;}
.y1c{bottom:502.740000px;}
.y40{bottom:511.380000px;}
.ya1{bottom:511.560000px;}
.y6f{bottom:512.640000px;}
.y11e{bottom:518.040000px;}
.y88{bottom:520.380000px;}
.ycd{bottom:520.560000px;}
.ye2{bottom:521.820000px;}
.ybd{bottom:523.080000px;}
.yf6{bottom:525.600000px;}
.y108{bottom:528.300000px;}
.y1b{bottom:541.260000px;}
.y59{bottom:542.340000px;}
.ya0{bottom:543.780000px;}
.y11d{bottom:549.000000px;}
.y87{bottom:551.340000px;}
.ycc{bottom:552.780000px;}
.ye1{bottom:552.960000px;}
.y3f{bottom:553.860000px;}
.ybc{bottom:554.040000px;}
.yf5{bottom:556.560000px;}
.y107{bottom:559.260000px;}
.y6e{bottom:564.300000px;}
.y58{bottom:573.300000px;}
.y9f{bottom:574.740000px;}
.y1a{bottom:579.600000px;}
.y86{bottom:582.300000px;}
.y11c{bottom:582.480000px;}
.ye0{bottom:583.920000px;}
.ybb{bottom:585.000000px;}
.yf4{bottom:587.520000px;}
.y106{bottom:590.220000px;}
.y6d{bottom:595.440000px;}
.y3e{bottom:596.520000px;}
.y30{bottom:597.600000px;}
.y57{bottom:604.440000px;}
.y9e{bottom:605.700000px;}
.y85{bottom:613.440000px;}
.ydf{bottom:614.880000px;}
.yba{bottom:615.960000px;}
.ycb{bottom:616.140000px;}
.y19{bottom:618.120000px;}
.yf3{bottom:621.000000px;}
.y105{bottom:621.180000px;}
.y6c{bottom:626.400000px;}
.y3d{bottom:627.480000px;}
.y11b{bottom:634.140000px;}
.y56{bottom:635.400000px;}
.y2f{bottom:636.120000px;}
.y9d{bottom:636.840000px;}
.y84{bottom:644.400000px;}
.yde{bottom:645.840000px;}
.yca{bottom:647.100000px;}
.yb9{bottom:649.438920px;}
.y104{bottom:654.658920px;}
.y18{bottom:656.640000px;}
.y6b{bottom:657.360000px;}
.y3c{bottom:658.440000px;}
.y11a{bottom:665.100000px;}
.y55{bottom:666.360000px;}
.y9c{bottom:667.800000px;}
.yf2{bottom:672.660000px;}
.y2e{bottom:674.640000px;}
.yb0{bottom:675.360000px;}
.y83{bottom:677.880000px;}
.y115{bottom:677.888460px;}
.yc9{bottom:679.320000px;}
.yb8{bottom:685.620000px;}
.y6a{bottom:688.320000px;}
.y3b{bottom:689.580000px;}
.y103{bottom:690.840000px;}
.y17{bottom:695.160000px;}
.y54{bottom:697.320000px;}
.y119{bottom:698.580000px;}
.y9b{bottom:700.020000px;}
.yf1{bottom:703.620000px;}
.yaf{bottom:706.320000px;}
.yc8{bottom:710.280000px;}
.y2d{bottom:713.160000px;}
.y114{bottom:713.880000px;}
.y3a{bottom:720.540000px;}
.y8{bottom:721.413720px;}
.y69{bottom:721.800000px;}
.y53{bottom:728.280000px;}
.y82{bottom:729.540000px;}
.y9a{bottom:730.980000px;}
.y16{bottom:733.680000px;}
.yf0{bottom:734.580000px;}
.yae{bottom:737.280000px;}
.yc7{bottom:742.500000px;}
.y118{bottom:750.240000px;}
.y39{bottom:751.500000px;}
.y2c{bottom:751.680000px;}
.y81{bottom:760.500000px;}
.y52{bottom:761.752620px;}
.y99{bottom:761.940000px;}
.yef{bottom:765.540000px;}
.yad{bottom:768.240000px;}
.y15{bottom:772.020000px;}
.y7{bottom:773.086860px;}
.y68{bottom:773.460000px;}
.y117{bottom:781.200000px;}
.y38{bottom:782.460000px;}
.y2b{bottom:790.020000px;}
.y80{bottom:791.460000px;}
.ydd{bottom:792.900000px;}
.y98{bottom:794.160000px;}
.yee{bottom:796.680000px;}
.yb7{bottom:799.200000px;}
.yac{bottom:801.720000px;}
.y67{bottom:804.420000px;}
.y14{bottom:810.540000px;}
.y37{bottom:813.420000px;}
.y116{bottom:814.680000px;}
.y51{bottom:815.940000px;}
.y7f{bottom:822.420000px;}
.ydc{bottom:823.860000px;}
.y6{bottom:824.760000px;}
.y97{bottom:825.120000px;}
.yed{bottom:827.640000px;}
.y2a{bottom:828.540000px;}
.yb6{bottom:832.680000px;}
.y66{bottom:835.380000px;}
.y102{bottom:837.900000px;}
.y36{bottom:844.380000px;}
.y13{bottom:849.060000px;}
.y7e{bottom:853.380000px;}
.ydb{bottom:854.820000px;}
.y96{bottom:856.080000px;}
.y50{bottom:858.600000px;}
.y65{bottom:866.340000px;}
.y29{bottom:867.060000px;}
.yc6{bottom:868.860000px;}
.y35{bottom:875.340000px;}
.y7d{bottom:884.340000px;}
.y95{bottom:887.040000px;}
.y12{bottom:887.580000px;}
.y4f{bottom:889.560000px;}
.y64{bottom:897.300000px;}
.y28{bottom:898.020000px;}
.y34{bottom:906.300000px;}
.y7c{bottom:915.300000px;}
.yda{bottom:918.000000px;}
.y94{bottom:919.260000px;}
.y4e{bottom:920.520000px;}
.y11{bottom:925.920000px;}
.y63{bottom:930.780000px;}
.y27{bottom:936.540000px;}
.y33{bottom:937.260000px;}
.y7b{bottom:946.260000px;}
.y93{bottom:950.220000px;}
.y4d{bottom:951.480000px;}
.y10{bottom:964.440000px;}
.y32{bottom:968.400000px;}
.y26{bottom:975.060000px;}
.y7a{bottom:977.400000px;}
.yd9{bottom:981.180000px;}
.y4c{bottom:982.440000px;}
.yf{bottom:1004.400000px;}
.y79{bottom:1010.700000px;}
.y31{bottom:1010.880000px;}
.y25{bottom:1013.400000px;}
.ya{bottom:1071.540000px;}
.y9{bottom:1102.500000px;}
.y1{bottom:1143.900000px;}
.h4{height:43.506914px;}
.h3{height:43.740352px;}
.h6{height:52.417969px;}
.h2{height:52.453125px;}
.h7{height:61.658086px;}
.h5{height:87.596719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.x3{left:102.780000px;}
.x4{left:110.520000px;}
.x1{left:297.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.088000pt;}
.ls14{letter-spacing:-1.024000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.449280pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.265600pt;}
.lsc{letter-spacing:-0.224640pt;}
.ls6{letter-spacing:-0.213760pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.149760pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021248pt;}
.ls1{letter-spacing:0.053120pt;}
.ls2{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.121600pt;}
.lsa{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.224640pt;}
.ls7{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.265600pt;}
.ls12{letter-spacing:43.648000pt;}
.ls16{letter-spacing:44.288000pt;}
.lsb{letter-spacing:750.208000pt;}
.ws23{word-spacing:-64.000000pt;}
.ws22{word-spacing:-17.297280pt;}
.ws21{word-spacing:-17.072640pt;}
.ws24{word-spacing:-16.623360pt;}
.wsc{word-spacing:-14.848000pt;}
.ws1b{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.592000pt;}
.ws19{word-spacing:-14.528000pt;}
.ws11{word-spacing:-14.464000pt;}
.wsb{word-spacing:-14.400000pt;}
.ws25{word-spacing:-14.208000pt;}
.ws1d{word-spacing:-13.504000pt;}
.ws1{word-spacing:-12.376960pt;}
.ws0{word-spacing:-12.217600pt;}
.ws2{word-spacing:-12.164480pt;}
.ws3{word-spacing:-12.111360pt;}
.ws4{word-spacing:-11.845760pt;}
.ws6{word-spacing:-0.849920pt;}
.ws10{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.673920pt;}
.ws15{word-spacing:-0.512000pt;}
.wsf{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.299520pt;}
.ws14{word-spacing:-0.256000pt;}
.wse{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.106240pt;}
.ws7{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.128000pt;}
.ws26{word-spacing:0.192000pt;}
.ws9{word-spacing:0.213760pt;}
.ws12{word-spacing:0.224640pt;}
.wsd{word-spacing:0.256000pt;}
.ws13{word-spacing:0.374400pt;}
.ws18{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.449280pt;}
.ws1f{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws20{word-spacing:1.024000pt;}
._4{margin-left:-14.749184pt;}
._3{margin-left:-12.922368pt;}
._a{margin-left:-11.497536pt;}
._8{margin-left:-10.414016pt;}
._9{margin-left:-9.461888pt;}
._5{margin-left:-7.108480pt;}
._2{margin-left:-5.621888pt;}
._6{margin-left:-3.731072pt;}
._7{margin-left:-2.370240pt;}
._0{margin-left:-0.908352pt;}
._1{width:0.903040pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:53.913600pt;}
.ye{bottom:59.993600pt;}
.y4{bottom:72.957120pt;}
.yd{bottom:79.196480pt;}
.y3{bottom:92.160000pt;}
.yc{bottom:98.240000pt;}
.y2{bottom:111.200000pt;}
.yb{bottom:117.440000pt;}
.yc5{bottom:148.320000pt;}
.y4b{bottom:151.680000pt;}
.yd8{bottom:155.520000pt;}
.y113{bottom:158.880000pt;}
.y101{bottom:164.320000pt;}
.y92{bottom:165.600000pt;}
.yb5{bottom:166.560000pt;}
.y24{bottom:173.280000pt;}
.yc4{bottom:176.000000pt;}
.yab{bottom:177.120000pt;}
.y4a{bottom:179.200000pt;}
.yd7{bottom:184.160000pt;}
.y62{bottom:186.080000pt;}
.y112{bottom:187.520000pt;}
.yec{bottom:188.480000pt;}
.y100{bottom:191.840000pt;}
.y91{bottom:192.960000pt;}
.yb4{bottom:194.080000pt;}
.yc3{bottom:203.520000pt;}
.yaa{bottom:204.800000pt;}
.y78{bottom:205.760000pt;}
.y49{bottom:206.720000pt;}
.y23{bottom:207.360000pt;}
.yd6{bottom:211.680000pt;}
.y61{bottom:213.760000pt;}
.yeb{bottom:216.000000pt;}
.y111{bottom:216.160000pt;}
.yff{bottom:219.360000pt;}
.y90{bottom:221.760000pt;}
.yc2{bottom:231.040000pt;}
.ya9{bottom:232.320000pt;}
.y77{bottom:233.280000pt;}
.y48{bottom:234.240000pt;}
.yd5{bottom:240.320000pt;}
.y60{bottom:241.280000pt;}
.y22{bottom:241.600000pt;}
.yea{bottom:243.520000pt;}
.y110{bottom:244.800000pt;}
.yfe{bottom:246.880000pt;}
.yb3{bottom:249.280000pt;}
.y8f{bottom:251.360000pt;}
.yc1{bottom:258.560000pt;}
.ya8{bottom:259.840000pt;}
.y76{bottom:260.800000pt;}
.y47{bottom:261.760000pt;}
.yd4{bottom:267.840000pt;}
.y5f{bottom:268.800000pt;}
.ye9{bottom:271.200000pt;}
.y10f{bottom:273.440000pt;}
.yfd{bottom:274.400000pt;}
.y21{bottom:275.840000pt;}
.yb2{bottom:276.800000pt;}
.yc0{bottom:286.080000pt;}
.ya7{bottom:287.360000pt;}
.y75{bottom:288.320000pt;}
.y46{bottom:289.440000pt;}
.y5e{bottom:296.320000pt;}
.yd3{bottom:296.480000pt;}
.y8e{bottom:297.440000pt;}
.ye8{bottom:298.720000pt;}
.yfc{bottom:301.920000pt;}
.y10e{bottom:302.080000pt;}
.yb1{bottom:306.560000pt;}
.y20{bottom:310.080000pt;}
.ya6{bottom:314.880000pt;}
.y74{bottom:315.840000pt;}
.y45{bottom:316.960000pt;}
.y5d{bottom:323.840000pt;}
.yd2{bottom:324.000000pt;}
.y8d{bottom:324.960000pt;}
.ye7{bottom:326.240000pt;}
.yfb{bottom:329.440000pt;}
.y10d{bottom:330.720000pt;}
.ya5{bottom:342.400000pt;}
.y73{bottom:343.360000pt;}
.y1f{bottom:344.160000pt;}
.y44{bottom:344.480000pt;}
.y5c{bottom:351.360000pt;}
.yd1{bottom:351.520000pt;}
.y8c{bottom:352.480000pt;}
.ye6{bottom:353.760000pt;}
.yfa{bottom:356.960000pt;}
.y121{bottom:357.280000pt;}
.y10c{bottom:359.360000pt;}
.ybf{bottom:361.760000pt;}
.ya4{bottom:369.920000pt;}
.y72{bottom:370.880000pt;}
.y43{bottom:372.000000pt;}
.y1e{bottom:378.400000pt;}
.y5b{bottom:378.880000pt;}
.yd0{bottom:379.040000pt;}
.y8b{bottom:380.000000pt;}
.ye5{bottom:381.280000pt;}
.yf9{bottom:384.640000pt;}
.y120{bottom:384.800000pt;}
.y10b{bottom:386.880000pt;}
.ybe{bottom:389.280000pt;}
.y71{bottom:398.400000pt;}
.ya3{bottom:398.560000pt;}
.y42{bottom:399.520000pt;}
.ycf{bottom:406.560000pt;}
.y8a{bottom:407.520000pt;}
.y5a{bottom:408.640000pt;}
.ye4{bottom:408.800000pt;}
.yf8{bottom:412.160000pt;}
.y1d{bottom:412.640000pt;}
.y10a{bottom:414.400000pt;}
.y11f{bottom:414.560000pt;}
.y70{bottom:426.080000pt;}
.y41{bottom:427.040000pt;}
.ya2{bottom:427.200000pt;}
.y89{bottom:435.040000pt;}
.yce{bottom:435.200000pt;}
.ye3{bottom:436.320000pt;}
.yf7{bottom:439.680000pt;}
.y109{bottom:442.080000pt;}
.y1c{bottom:446.880000pt;}
.y40{bottom:454.560000pt;}
.ya1{bottom:454.720000pt;}
.y6f{bottom:455.680000pt;}
.y11e{bottom:460.480000pt;}
.y88{bottom:462.560000pt;}
.ycd{bottom:462.720000pt;}
.ye2{bottom:463.840000pt;}
.ybd{bottom:464.960000pt;}
.yf6{bottom:467.200000pt;}
.y108{bottom:469.600000pt;}
.y1b{bottom:481.120000pt;}
.y59{bottom:482.080000pt;}
.ya0{bottom:483.360000pt;}
.y11d{bottom:488.000000pt;}
.y87{bottom:490.080000pt;}
.ycc{bottom:491.360000pt;}
.ye1{bottom:491.520000pt;}
.y3f{bottom:492.320000pt;}
.ybc{bottom:492.480000pt;}
.yf5{bottom:494.720000pt;}
.y107{bottom:497.120000pt;}
.y6e{bottom:501.600000pt;}
.y58{bottom:509.600000pt;}
.y9f{bottom:510.880000pt;}
.y1a{bottom:515.200000pt;}
.y86{bottom:517.600000pt;}
.y11c{bottom:517.760000pt;}
.ye0{bottom:519.040000pt;}
.ybb{bottom:520.000000pt;}
.yf4{bottom:522.240000pt;}
.y106{bottom:524.640000pt;}
.y6d{bottom:529.280000pt;}
.y3e{bottom:530.240000pt;}
.y30{bottom:531.200000pt;}
.y57{bottom:537.280000pt;}
.y9e{bottom:538.400000pt;}
.y85{bottom:545.280000pt;}
.ydf{bottom:546.560000pt;}
.yba{bottom:547.520000pt;}
.ycb{bottom:547.680000pt;}
.y19{bottom:549.440000pt;}
.yf3{bottom:552.000000pt;}
.y105{bottom:552.160000pt;}
.y6c{bottom:556.800000pt;}
.y3d{bottom:557.760000pt;}
.y11b{bottom:563.680000pt;}
.y56{bottom:564.800000pt;}
.y2f{bottom:565.440000pt;}
.y9d{bottom:566.080000pt;}
.y84{bottom:572.800000pt;}
.yde{bottom:574.080000pt;}
.yca{bottom:575.200000pt;}
.yb9{bottom:577.279040pt;}
.y104{bottom:581.919040pt;}
.y18{bottom:583.680000pt;}
.y6b{bottom:584.320000pt;}
.y3c{bottom:585.280000pt;}
.y11a{bottom:591.200000pt;}
.y55{bottom:592.320000pt;}
.y9c{bottom:593.600000pt;}
.yf2{bottom:597.920000pt;}
.y2e{bottom:599.680000pt;}
.yb0{bottom:600.320000pt;}
.y83{bottom:602.560000pt;}
.y115{bottom:602.567520pt;}
.yc9{bottom:603.840000pt;}
.yb8{bottom:609.440000pt;}
.y6a{bottom:611.840000pt;}
.y3b{bottom:612.960000pt;}
.y103{bottom:614.080000pt;}
.y17{bottom:617.920000pt;}
.y54{bottom:619.840000pt;}
.y119{bottom:620.960000pt;}
.y9b{bottom:622.240000pt;}
.yf1{bottom:625.440000pt;}
.yaf{bottom:627.840000pt;}
.yc8{bottom:631.360000pt;}
.y2d{bottom:633.920000pt;}
.y114{bottom:634.560000pt;}
.y3a{bottom:640.480000pt;}
.y8{bottom:641.256640pt;}
.y69{bottom:641.600000pt;}
.y53{bottom:647.360000pt;}
.y82{bottom:648.480000pt;}
.y9a{bottom:649.760000pt;}
.y16{bottom:652.160000pt;}
.yf0{bottom:652.960000pt;}
.yae{bottom:655.360000pt;}
.yc7{bottom:660.000000pt;}
.y118{bottom:666.880000pt;}
.y39{bottom:668.000000pt;}
.y2c{bottom:668.160000pt;}
.y81{bottom:676.000000pt;}
.y52{bottom:677.113440pt;}
.y99{bottom:677.280000pt;}
.yef{bottom:680.480000pt;}
.yad{bottom:682.880000pt;}
.y15{bottom:686.240000pt;}
.y7{bottom:687.188320pt;}
.y68{bottom:687.520000pt;}
.y117{bottom:694.400000pt;}
.y38{bottom:695.520000pt;}
.y2b{bottom:702.240000pt;}
.y80{bottom:703.520000pt;}
.ydd{bottom:704.800000pt;}
.y98{bottom:705.920000pt;}
.yee{bottom:708.160000pt;}
.yb7{bottom:710.400000pt;}
.yac{bottom:712.640000pt;}
.y67{bottom:715.040000pt;}
.y14{bottom:720.480000pt;}
.y37{bottom:723.040000pt;}
.y116{bottom:724.160000pt;}
.y51{bottom:725.280000pt;}
.y7f{bottom:731.040000pt;}
.ydc{bottom:732.320000pt;}
.y6{bottom:733.120000pt;}
.y97{bottom:733.440000pt;}
.yed{bottom:735.680000pt;}
.y2a{bottom:736.480000pt;}
.yb6{bottom:740.160000pt;}
.y66{bottom:742.560000pt;}
.y102{bottom:744.800000pt;}
.y36{bottom:750.560000pt;}
.y13{bottom:754.720000pt;}
.y7e{bottom:758.560000pt;}
.ydb{bottom:759.840000pt;}
.y96{bottom:760.960000pt;}
.y50{bottom:763.200000pt;}
.y65{bottom:770.080000pt;}
.y29{bottom:770.720000pt;}
.yc6{bottom:772.320000pt;}
.y35{bottom:778.080000pt;}
.y7d{bottom:786.080000pt;}
.y95{bottom:788.480000pt;}
.y12{bottom:788.960000pt;}
.y4f{bottom:790.720000pt;}
.y64{bottom:797.600000pt;}
.y28{bottom:798.240000pt;}
.y34{bottom:805.600000pt;}
.y7c{bottom:813.600000pt;}
.yda{bottom:816.000000pt;}
.y94{bottom:817.120000pt;}
.y4e{bottom:818.240000pt;}
.y11{bottom:823.040000pt;}
.y63{bottom:827.360000pt;}
.y27{bottom:832.480000pt;}
.y33{bottom:833.120000pt;}
.y7b{bottom:841.120000pt;}
.y93{bottom:844.640000pt;}
.y4d{bottom:845.760000pt;}
.y10{bottom:857.280000pt;}
.y32{bottom:860.800000pt;}
.y26{bottom:866.720000pt;}
.y7a{bottom:868.800000pt;}
.yd9{bottom:872.160000pt;}
.y4c{bottom:873.280000pt;}
.yf{bottom:892.800000pt;}
.y79{bottom:898.400000pt;}
.y31{bottom:898.560000pt;}
.y25{bottom:900.800000pt;}
.ya{bottom:952.480000pt;}
.y9{bottom:980.000000pt;}
.y1{bottom:1016.800000pt;}
.h4{height:38.672812pt;}
.h3{height:38.880313pt;}
.h6{height:46.593750pt;}
.h2{height:46.625000pt;}
.h7{height:54.807187pt;}
.h5{height:77.863750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.x3{left:91.360000pt;}
.x4{left:98.240000pt;}
.x1{left:264.320000pt;}
}




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