
    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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.739746;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_8bcb9696d5343ba340e3b19a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_0b1c8bf0c1cbe7ce04f1812c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_1bd98c03f50cfd704ec32295.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_6803145a26c9e3c1785798d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_df2ec902ac06adcc9d03cdb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.lsc{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.022320px;}
.ls7{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.210000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.360000px;}
.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:-21.641760px;}
.ws9{word-spacing:-19.038240px;}
.ws4{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.488000px;}
.ws3{word-spacing:-16.272000px;}
.ws7{word-spacing:-15.768000px;}
.ws5{word-spacing:-15.552000px;}
.ws2{word-spacing:-14.970240px;}
.ws8{word-spacing:-10.902240px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-3.888000px;}
._7{margin-left:-2.244000px;}
._0{margin-left:-1.188000px;}
._1{width:1.344000px;}
._2{width:2.679360px;}
._9{width:4.392000px;}
._e{width:5.424000px;}
._d{width:6.528000px;}
._b{width:8.064000px;}
._f{width:10.008000px;}
._5{width:11.376000px;}
._4{width:12.456000px;}
._a{width:13.464000px;}
._8{width:15.192000px;}
._c{width:17.568000px;}
._6{width:18.792000px;}
._12{width:20.208000px;}
._13{width:21.528000px;}
._14{width:22.812000px;}
._16{width:27.432000px;}
._15{width:28.584000px;}
._11{width:30.600000px;}
._10{width:31.752000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:87.120000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:2.880000px;}
.y2a{bottom:4.500000px;}
.y25{bottom:4.860000px;}
.y2b{bottom:21.816000px;}
.y29{bottom:24.660000px;}
.y24{bottom:26.820000px;}
.y27{bottom:39.636000px;}
.yd5{bottom:44.136000px;}
.y28{bottom:44.820000px;}
.y2{bottom:56.556000px;}
.yd4{bottom:64.296000px;}
.yd3{bottom:84.456000px;}
.ybf{bottom:106.596000px;}
.y5b{bottom:107.856000px;}
.ya4{bottom:115.236000px;}
.yaf{bottom:116.496000px;}
.yfd{bottom:126.216000px;}
.yfb{bottom:126.246000px;}
.y22{bottom:126.576000px;}
.ybe{bottom:128.556000px;}
.yd0{bottom:129.096000px;}
.y5a{bottom:129.816000px;}
.y7c{bottom:130.896000px;}
.ya3{bottom:137.196000px;}
.yae{bottom:138.456000px;}
.y7b{bottom:148.176000px;}
.yf9{bottom:148.206000px;}
.ybd{bottom:150.510000px;}
.ycf{bottom:151.050000px;}
.y59{bottom:151.770000px;}
.y21{bottom:155.910000px;}
.ya2{bottom:159.150000px;}
.yad{bottom:160.410000px;}
.ybc{bottom:167.610000px;}
.yfc{bottom:170.130000px;}
.yf7{bottom:170.166000px;}
.yce{bottom:173.010000px;}
.y58{bottom:173.730000px;}
.ya1{bottom:181.110000px;}
.yac{bottom:182.370000px;}
.y20{bottom:185.070000px;}
.yfa{bottom:192.090000px;}
.yf5{bottom:192.126000px;}
.ycd{bottom:194.970000px;}
.y57{bottom:195.690000px;}
.ya0{bottom:203.070000px;}
.yab{bottom:204.510000px;}
.yf8{bottom:214.050000px;}
.yf3{bottom:214.086000px;}
.y1f{bottom:214.410000px;}
.ycc{bottom:216.930000px;}
.y56{bottom:217.650000px;}
.yaa{bottom:221.610000px;}
.y9f{bottom:225.030000px;}
.yf6{bottom:236.010000px;}
.yf1{bottom:236.046000px;}
.ycb{bottom:238.890000px;}
.y55{bottom:239.790000px;}
.y1e{bottom:243.750000px;}
.y9e{bottom:246.990000px;}
.yf4{bottom:257.970000px;}
.yef{bottom:258.051000px;}
.yca{bottom:260.850000px;}
.y54{bottom:261.750000px;}
.y9d{bottom:268.950000px;}
.y1d{bottom:273.810000px;}
.yf2{bottom:279.930000px;}
.yed{bottom:280.011000px;}
.yc9{bottom:282.855000px;}
.y53{bottom:283.755000px;}
.y9c{bottom:290.955000px;}
.yf0{bottom:301.935000px;}
.yeb{bottom:302.151000px;}
.yc8{bottom:304.815000px;}
.y52{bottom:305.715000px;}
.y1c{bottom:306.795000px;}
.y9b{bottom:312.915000px;}
.yee{bottom:323.895000px;}
.ye9{bottom:324.111000px;}
.yc7{bottom:326.775000px;}
.y51{bottom:327.675000px;}
.y9a{bottom:335.055000px;}
.y1b{bottom:339.735000px;}
.yec{bottom:346.035000px;}
.ye7{bottom:346.791000px;}
.yc6{bottom:348.735000px;}
.y50{bottom:349.635000px;}
.y99{bottom:357.015000px;}
.yea{bottom:367.995000px;}
.yc5{bottom:370.875000px;}
.y4f{bottom:371.595000px;}
.y1a{bottom:372.675000px;}
.y98{bottom:378.975000px;}
.y7a{bottom:382.575000px;}
.ye8{bottom:390.675000px;}
.yc4{bottom:392.835000px;}
.y4e{bottom:393.555000px;}
.ye6{bottom:393.573000px;}
.y97{bottom:400.935000px;}
.y79{bottom:404.535000px;}
.y19{bottom:405.615000px;}
.yc3{bottom:414.795000px;}
.y4d{bottom:415.515000px;}
.y96{bottom:422.895000px;}
.y78{bottom:426.495000px;}
.yc2{bottom:436.755000px;}
.y4c{bottom:437.475000px;}
.y18{bottom:438.555000px;}
.y95{bottom:444.855000px;}
.y77{bottom:448.455000px;}
.ybb{bottom:458.715000px;}
.y4b{bottom:459.435000px;}
.y94{bottom:466.815000px;}
.y76{bottom:470.415000px;}
.y17{bottom:471.495000px;}
.yba{bottom:480.675000px;}
.y4a{bottom:481.395000px;}
.y93{bottom:488.775000px;}
.y75{bottom:492.375000px;}
.yc0{bottom:497.775000px;}
.yb9{bottom:502.635000px;}
.y49{bottom:503.355000px;}
.y16{bottom:504.615000px;}
.y92{bottom:510.735000px;}
.y74{bottom:514.335000px;}
.ya9{bottom:516.675000px;}
.yb8{bottom:524.595000px;}
.y48{bottom:525.315000px;}
.ye5{bottom:526.215000px;}
.y91{bottom:532.695000px;}
.y73{bottom:536.295000px;}
.y15{bottom:537.555000px;}
.ya8{bottom:538.635000px;}
.yb7{bottom:546.555000px;}
.y47{bottom:547.455000px;}
.ye4{bottom:551.055000px;}
.y90{bottom:554.655000px;}
.y72{bottom:558.255000px;}
.ya7{bottom:560.595000px;}
.yb6{bottom:568.725000px;}
.y46{bottom:569.445000px;}
.y14{bottom:570.525000px;}
.ye3{bottom:573.045000px;}
.y8f{bottom:576.645000px;}
.y71{bottom:580.245000px;}
.ya6{bottom:582.585000px;}
.yb5{bottom:590.685000px;}
.y45{bottom:591.405000px;}
.ye2{bottom:595.005000px;}
.y8e{bottom:598.605000px;}
.ya5{bottom:599.685000px;}
.y70{bottom:602.205000px;}
.y13{bottom:603.465000px;}
.yb4{bottom:612.645000px;}
.y44{bottom:613.365000px;}
.ye1{bottom:616.965000px;}
.y8d{bottom:620.565000px;}
.y6f{bottom:624.165000px;}
.yb3{bottom:634.605000px;}
.y43{bottom:635.325000px;}
.y12{bottom:636.405000px;}
.ye0{bottom:638.925000px;}
.y8c{bottom:642.705000px;}
.y6e{bottom:646.125000px;}
.yb2{bottom:656.565000px;}
.y42{bottom:657.285000px;}
.ydf{bottom:660.885000px;}
.y8b{bottom:664.665000px;}
.y6d{bottom:668.085000px;}
.y11{bottom:669.345000px;}
.yb1{bottom:678.525000px;}
.y41{bottom:679.245000px;}
.yde{bottom:682.845000px;}
.y8a{bottom:686.625000px;}
.y6c{bottom:690.225000px;}
.yb0{bottom:695.625000px;}
.y40{bottom:701.205000px;}
.y10{bottom:702.285000px;}
.ydd{bottom:704.805000px;}
.y89{bottom:708.585000px;}
.y6b{bottom:712.185000px;}
.y112{bottom:722.985000px;}
.y3f{bottom:723.165000px;}
.ydc{bottom:726.765000px;}
.y88{bottom:730.545000px;}
.y6a{bottom:734.145000px;}
.yf{bottom:735.225000px;}
.y111{bottom:743.145000px;}
.y3e{bottom:745.125000px;}
.ydb{bottom:748.905000px;}
.y87{bottom:752.505000px;}
.y69{bottom:756.105000px;}
.y110{bottom:763.305000px;}
.y3d{bottom:767.085000px;}
.ye{bottom:768.165000px;}
.yda{bottom:770.865000px;}
.y86{bottom:774.465000px;}
.y68{bottom:778.065000px;}
.y10f{bottom:783.465000px;}
.y3c{bottom:789.045000px;}
.yd9{bottom:792.825000px;}
.y85{bottom:796.425000px;}
.y67{bottom:800.025000px;}
.yd{bottom:801.285000px;}
.y10e{bottom:803.625000px;}
.y3b{bottom:811.005000px;}
.yd8{bottom:814.785000px;}
.y84{bottom:818.385000px;}
.y66{bottom:821.985000px;}
.y10d{bottom:823.605000px;}
.y3a{bottom:833.865000px;}
.yc{bottom:834.225000px;}
.yd7{bottom:836.745000px;}
.y83{bottom:840.345000px;}
.y10c{bottom:843.045000px;}
.y65{bottom:843.945000px;}
.y39{bottom:858.750000px;}
.yd6{bottom:859.470000px;}
.y64{bottom:861.090000px;}
.y82{bottom:862.350000px;}
.y10b{bottom:863.790000px;}
.y109{bottom:866.346000px;}
.yb{bottom:867.210000px;}
.y38{bottom:880.710000px;}
.y81{bottom:884.310000px;}
.y10a{bottom:884.490000px;}
.y108{bottom:888.306000px;}
.ya{bottom:900.150000px;}
.y37{bottom:902.670000px;}
.y80{bottom:906.270000px;}
.y107{bottom:910.266000px;}
.y36{bottom:924.630000px;}
.y7f{bottom:928.230000px;}
.y106{bottom:932.406000px;}
.y9{bottom:933.090000px;}
.y35{bottom:946.590000px;}
.y7e{bottom:950.190000px;}
.y105{bottom:954.366000px;}
.y8{bottom:966.030000px;}
.y34{bottom:968.550000px;}
.y7d{bottom:972.330000px;}
.y104{bottom:976.326000px;}
.y33{bottom:990.510000px;}
.y63{bottom:994.290000px;}
.y103{bottom:998.286000px;}
.y7{bottom:998.970000px;}
.y32{bottom:1012.470000px;}
.y62{bottom:1016.250000px;}
.y102{bottom:1020.246000px;}
.y6{bottom:1031.910000px;}
.y31{bottom:1034.430000px;}
.y61{bottom:1038.210000px;}
.y101{bottom:1042.206000px;}
.y30{bottom:1056.390000px;}
.y60{bottom:1060.170000px;}
.y100{bottom:1064.166000px;}
.y5{bottom:1064.850000px;}
.y2f{bottom:1078.530000px;}
.y5f{bottom:1082.130000px;}
.yff{bottom:1086.126000px;}
.y4{bottom:1097.790000px;}
.y2e{bottom:1100.490000px;}
.y5e{bottom:1104.090000px;}
.yfe{bottom:1108.116000px;}
.y2d{bottom:1122.450000px;}
.y5d{bottom:1126.050000px;}
.y113{bottom:1130.058000px;}
.y3{bottom:1130.940000px;}
.y2c{bottom:1145.160000px;}
.y5c{bottom:1148.040000px;}
.y26{bottom:1168.740000px;}
.y23{bottom:1184.940000px;}
.yd2{bottom:1189.800000px;}
.y1{bottom:1194.300000px;}
.yd1{bottom:1211.760000px;}
.h7{height:43.920000px;}
.h2{height:48.224531px;}
.hf{height:51.679688px;}
.h11{height:52.417969px;}
.hd{height:54.597656px;}
.h9{height:60.480000px;}
.h12{height:65.884219px;}
.ha{height:67.824844px;}
.hb{height:71.613281px;}
.h5{height:72.614883px;}
.h8{height:73.722656px;}
.h4{height:81.896484px;}
.hc{height:86.255508px;}
.h10{height:89.204414px;}
.h6{height:98.051133px;}
.h3{height:110.583984px;}
.he{height:227.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:339.915000px;}
.w4{width:721.365000px;}
.w6{width:721.410000px;}
.w3{width:722.805000px;}
.w5{width:722.850000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:63.900000px;}
.x37{left:84.060000px;}
.x1d{left:85.320000px;}
.x3b{left:93.276000px;}
.x38{left:95.976000px;}
.x1{left:106.235987px;}
.xc{left:117.035987px;}
.x3c{left:121.896000px;}
.x8{left:126.714000px;}
.x11{left:131.615987px;}
.x29{left:138.276000px;}
.x20{left:144.215987px;}
.x7{left:149.934000px;}
.x3{left:156.629987px;}
.x5{left:159.329987px;}
.x17{left:161.849987px;}
.x6{left:165.054000px;}
.x1a{left:171.209987px;}
.x12{left:186.509987px;}
.x34{left:191.370000px;}
.x28{left:203.070000px;}
.x33{left:213.870000px;}
.x1b{left:220.349987px;}
.x9{left:223.419000px;}
.xe{left:226.109987px;}
.x32{left:228.990000px;}
.x24{left:233.850000px;}
.x23{left:256.350000px;}
.x22{left:271.470000px;}
.x2c{left:274.530000px;}
.x18{left:282.494987px;}
.x4{left:283.754987px;}
.x35{left:288.075000px;}
.x1e{left:305.715000px;}
.x25{left:330.555000px;}
.x39{left:332.895000px;}
.x30{left:347.655000px;}
.xa{left:356.439000px;}
.x3a{left:359.355000px;}
.x31{left:364.215000px;}
.x21{left:378.434987px;}
.x14{left:388.154987px;}
.x36{left:421.095000px;}
.x1f{left:425.235000px;}
.x2{left:446.474987px;}
.x15{left:451.874987px;}
.x26{left:463.575000px;}
.x3f{left:477.285000px;}
.x1c{left:494.384987px;}
.x2b{left:516.705000px;}
.x3d{left:564.945000px;}
.xf{left:622.904987px;}
.x2e{left:647.025000px;}
.x27{left:650.445000px;}
.x2f{left:652.965000px;}
.xd{left:672.989987px;}
.x19{left:677.669987px;}
.x2a{left:715.650000px;}
.x10{left:717.629987px;}
.x13{left:735.449987px;}
.x3e{left:755.610000px;}
.x16{left:756.869987px;}
.x2d{left:793.410000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.lsc{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.019840pt;}
.ls7{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.186667pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.320000pt;}
.ws0{word-spacing:-19.237120pt;}
.ws9{word-spacing:-16.922880pt;}
.ws4{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws5{word-spacing:-13.824000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws8{word-spacing:-9.690880pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-3.456000pt;}
._7{margin-left:-1.994667pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.194667pt;}
._2{width:2.381653pt;}
._9{width:3.904000pt;}
._e{width:4.821333pt;}
._d{width:5.802667pt;}
._b{width:7.168000pt;}
._f{width:8.896000pt;}
._5{width:10.112000pt;}
._4{width:11.072000pt;}
._a{width:11.968000pt;}
._8{width:13.504000pt;}
._c{width:15.616000pt;}
._6{width:16.704000pt;}
._12{width:17.962667pt;}
._13{width:19.136000pt;}
._14{width:20.277333pt;}
._16{width:24.384000pt;}
._15{width:25.408000pt;}
._11{width:27.200000pt;}
._10{width:28.224000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:77.440000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:2.560000pt;}
.y2a{bottom:4.000000pt;}
.y25{bottom:4.320000pt;}
.y2b{bottom:19.392000pt;}
.y29{bottom:21.920000pt;}
.y24{bottom:23.840000pt;}
.y27{bottom:35.232000pt;}
.yd5{bottom:39.232000pt;}
.y28{bottom:39.840000pt;}
.y2{bottom:50.272000pt;}
.yd4{bottom:57.152000pt;}
.yd3{bottom:75.072000pt;}
.ybf{bottom:94.752000pt;}
.y5b{bottom:95.872000pt;}
.ya4{bottom:102.432000pt;}
.yaf{bottom:103.552000pt;}
.yfd{bottom:112.192000pt;}
.yfb{bottom:112.218667pt;}
.y22{bottom:112.512000pt;}
.ybe{bottom:114.272000pt;}
.yd0{bottom:114.752000pt;}
.y5a{bottom:115.392000pt;}
.y7c{bottom:116.352000pt;}
.ya3{bottom:121.952000pt;}
.yae{bottom:123.072000pt;}
.y7b{bottom:131.712000pt;}
.yf9{bottom:131.738667pt;}
.ybd{bottom:133.786667pt;}
.ycf{bottom:134.266667pt;}
.y59{bottom:134.906667pt;}
.y21{bottom:138.586667pt;}
.ya2{bottom:141.466667pt;}
.yad{bottom:142.586667pt;}
.ybc{bottom:148.986667pt;}
.yfc{bottom:151.226667pt;}
.yf7{bottom:151.258667pt;}
.yce{bottom:153.786667pt;}
.y58{bottom:154.426667pt;}
.ya1{bottom:160.986667pt;}
.yac{bottom:162.106667pt;}
.y20{bottom:164.506667pt;}
.yfa{bottom:170.746667pt;}
.yf5{bottom:170.778667pt;}
.ycd{bottom:173.306667pt;}
.y57{bottom:173.946667pt;}
.ya0{bottom:180.506667pt;}
.yab{bottom:181.786667pt;}
.yf8{bottom:190.266667pt;}
.yf3{bottom:190.298667pt;}
.y1f{bottom:190.586667pt;}
.ycc{bottom:192.826667pt;}
.y56{bottom:193.466667pt;}
.yaa{bottom:196.986667pt;}
.y9f{bottom:200.026667pt;}
.yf6{bottom:209.786667pt;}
.yf1{bottom:209.818667pt;}
.ycb{bottom:212.346667pt;}
.y55{bottom:213.146667pt;}
.y1e{bottom:216.666667pt;}
.y9e{bottom:219.546667pt;}
.yf4{bottom:229.306667pt;}
.yef{bottom:229.378667pt;}
.yca{bottom:231.866667pt;}
.y54{bottom:232.666667pt;}
.y9d{bottom:239.066667pt;}
.y1d{bottom:243.386667pt;}
.yf2{bottom:248.826667pt;}
.yed{bottom:248.898667pt;}
.yc9{bottom:251.426667pt;}
.y53{bottom:252.226667pt;}
.y9c{bottom:258.626667pt;}
.yf0{bottom:268.386667pt;}
.yeb{bottom:268.578667pt;}
.yc8{bottom:270.946667pt;}
.y52{bottom:271.746667pt;}
.y1c{bottom:272.706667pt;}
.y9b{bottom:278.146667pt;}
.yee{bottom:287.906667pt;}
.ye9{bottom:288.098667pt;}
.yc7{bottom:290.466667pt;}
.y51{bottom:291.266667pt;}
.y9a{bottom:297.826667pt;}
.y1b{bottom:301.986667pt;}
.yec{bottom:307.586667pt;}
.ye7{bottom:308.258667pt;}
.yc6{bottom:309.986667pt;}
.y50{bottom:310.786667pt;}
.y99{bottom:317.346667pt;}
.yea{bottom:327.106667pt;}
.yc5{bottom:329.666667pt;}
.y4f{bottom:330.306667pt;}
.y1a{bottom:331.266667pt;}
.y98{bottom:336.866667pt;}
.y7a{bottom:340.066667pt;}
.ye8{bottom:347.266667pt;}
.yc4{bottom:349.186667pt;}
.y4e{bottom:349.826667pt;}
.ye6{bottom:349.842667pt;}
.y97{bottom:356.386667pt;}
.y79{bottom:359.586667pt;}
.y19{bottom:360.546667pt;}
.yc3{bottom:368.706667pt;}
.y4d{bottom:369.346667pt;}
.y96{bottom:375.906667pt;}
.y78{bottom:379.106667pt;}
.yc2{bottom:388.226667pt;}
.y4c{bottom:388.866667pt;}
.y18{bottom:389.826667pt;}
.y95{bottom:395.426667pt;}
.y77{bottom:398.626667pt;}
.ybb{bottom:407.746667pt;}
.y4b{bottom:408.386667pt;}
.y94{bottom:414.946667pt;}
.y76{bottom:418.146667pt;}
.y17{bottom:419.106667pt;}
.yba{bottom:427.266667pt;}
.y4a{bottom:427.906667pt;}
.y93{bottom:434.466667pt;}
.y75{bottom:437.666667pt;}
.yc0{bottom:442.466667pt;}
.yb9{bottom:446.786667pt;}
.y49{bottom:447.426667pt;}
.y16{bottom:448.546667pt;}
.y92{bottom:453.986667pt;}
.y74{bottom:457.186667pt;}
.ya9{bottom:459.266667pt;}
.yb8{bottom:466.306667pt;}
.y48{bottom:466.946667pt;}
.ye5{bottom:467.746667pt;}
.y91{bottom:473.506667pt;}
.y73{bottom:476.706667pt;}
.y15{bottom:477.826667pt;}
.ya8{bottom:478.786667pt;}
.yb7{bottom:485.826667pt;}
.y47{bottom:486.626667pt;}
.ye4{bottom:489.826667pt;}
.y90{bottom:493.026667pt;}
.y72{bottom:496.226667pt;}
.ya7{bottom:498.306667pt;}
.yb6{bottom:505.533333pt;}
.y46{bottom:506.173333pt;}
.y14{bottom:507.133333pt;}
.ye3{bottom:509.373333pt;}
.y8f{bottom:512.573333pt;}
.y71{bottom:515.773333pt;}
.ya6{bottom:517.853333pt;}
.yb5{bottom:525.053333pt;}
.y45{bottom:525.693333pt;}
.ye2{bottom:528.893333pt;}
.y8e{bottom:532.093333pt;}
.ya5{bottom:533.053333pt;}
.y70{bottom:535.293333pt;}
.y13{bottom:536.413333pt;}
.yb4{bottom:544.573333pt;}
.y44{bottom:545.213333pt;}
.ye1{bottom:548.413333pt;}
.y8d{bottom:551.613333pt;}
.y6f{bottom:554.813333pt;}
.yb3{bottom:564.093333pt;}
.y43{bottom:564.733333pt;}
.y12{bottom:565.693333pt;}
.ye0{bottom:567.933333pt;}
.y8c{bottom:571.293333pt;}
.y6e{bottom:574.333333pt;}
.yb2{bottom:583.613333pt;}
.y42{bottom:584.253333pt;}
.ydf{bottom:587.453333pt;}
.y8b{bottom:590.813333pt;}
.y6d{bottom:593.853333pt;}
.y11{bottom:594.973333pt;}
.yb1{bottom:603.133333pt;}
.y41{bottom:603.773333pt;}
.yde{bottom:606.973333pt;}
.y8a{bottom:610.333333pt;}
.y6c{bottom:613.533333pt;}
.yb0{bottom:618.333333pt;}
.y40{bottom:623.293333pt;}
.y10{bottom:624.253333pt;}
.ydd{bottom:626.493333pt;}
.y89{bottom:629.853333pt;}
.y6b{bottom:633.053333pt;}
.y112{bottom:642.653333pt;}
.y3f{bottom:642.813333pt;}
.ydc{bottom:646.013333pt;}
.y88{bottom:649.373333pt;}
.y6a{bottom:652.573333pt;}
.yf{bottom:653.533333pt;}
.y111{bottom:660.573333pt;}
.y3e{bottom:662.333333pt;}
.ydb{bottom:665.693333pt;}
.y87{bottom:668.893333pt;}
.y69{bottom:672.093333pt;}
.y110{bottom:678.493333pt;}
.y3d{bottom:681.853333pt;}
.ye{bottom:682.813333pt;}
.yda{bottom:685.213333pt;}
.y86{bottom:688.413333pt;}
.y68{bottom:691.613333pt;}
.y10f{bottom:696.413333pt;}
.y3c{bottom:701.373333pt;}
.yd9{bottom:704.733333pt;}
.y85{bottom:707.933333pt;}
.y67{bottom:711.133333pt;}
.yd{bottom:712.253333pt;}
.y10e{bottom:714.333333pt;}
.y3b{bottom:720.893333pt;}
.yd8{bottom:724.253333pt;}
.y84{bottom:727.453333pt;}
.y66{bottom:730.653333pt;}
.y10d{bottom:732.093333pt;}
.y3a{bottom:741.213333pt;}
.yc{bottom:741.533333pt;}
.yd7{bottom:743.773333pt;}
.y83{bottom:746.973333pt;}
.y10c{bottom:749.373333pt;}
.y65{bottom:750.173333pt;}
.y39{bottom:763.333333pt;}
.yd6{bottom:763.973333pt;}
.y64{bottom:765.413333pt;}
.y82{bottom:766.533333pt;}
.y10b{bottom:767.813333pt;}
.y109{bottom:770.085333pt;}
.yb{bottom:770.853333pt;}
.y38{bottom:782.853333pt;}
.y81{bottom:786.053333pt;}
.y10a{bottom:786.213333pt;}
.y108{bottom:789.605333pt;}
.ya{bottom:800.133333pt;}
.y37{bottom:802.373333pt;}
.y80{bottom:805.573333pt;}
.y107{bottom:809.125333pt;}
.y36{bottom:821.893333pt;}
.y7f{bottom:825.093333pt;}
.y106{bottom:828.805333pt;}
.y9{bottom:829.413333pt;}
.y35{bottom:841.413333pt;}
.y7e{bottom:844.613333pt;}
.y105{bottom:848.325333pt;}
.y8{bottom:858.693333pt;}
.y34{bottom:860.933333pt;}
.y7d{bottom:864.293333pt;}
.y104{bottom:867.845333pt;}
.y33{bottom:880.453333pt;}
.y63{bottom:883.813333pt;}
.y103{bottom:887.365333pt;}
.y7{bottom:887.973333pt;}
.y32{bottom:899.973333pt;}
.y62{bottom:903.333333pt;}
.y102{bottom:906.885333pt;}
.y6{bottom:917.253333pt;}
.y31{bottom:919.493333pt;}
.y61{bottom:922.853333pt;}
.y101{bottom:926.405333pt;}
.y30{bottom:939.013333pt;}
.y60{bottom:942.373333pt;}
.y100{bottom:945.925333pt;}
.y5{bottom:946.533333pt;}
.y2f{bottom:958.693333pt;}
.y5f{bottom:961.893333pt;}
.yff{bottom:965.445333pt;}
.y4{bottom:975.813333pt;}
.y2e{bottom:978.213333pt;}
.y5e{bottom:981.413333pt;}
.yfe{bottom:984.992000pt;}
.y2d{bottom:997.733333pt;}
.y5d{bottom:1000.933333pt;}
.y113{bottom:1004.496000pt;}
.y3{bottom:1005.280000pt;}
.y2c{bottom:1017.920000pt;}
.y5c{bottom:1020.480000pt;}
.y26{bottom:1038.880000pt;}
.y23{bottom:1053.280000pt;}
.yd2{bottom:1057.600000pt;}
.y1{bottom:1061.600000pt;}
.yd1{bottom:1077.120000pt;}
.h7{height:39.040000pt;}
.h2{height:42.866250pt;}
.hf{height:45.937500pt;}
.h11{height:46.593750pt;}
.hd{height:48.531250pt;}
.h9{height:53.760000pt;}
.h12{height:58.563750pt;}
.ha{height:60.288750pt;}
.hb{height:63.656250pt;}
.h5{height:64.546562pt;}
.h8{height:65.531250pt;}
.h4{height:72.796875pt;}
.hc{height:76.671562pt;}
.h10{height:79.292812pt;}
.h6{height:87.156562pt;}
.h3{height:98.296875pt;}
.he{height:202.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:302.146667pt;}
.w4{width:641.213333pt;}
.w6{width:641.253333pt;}
.w3{width:642.493333pt;}
.w5{width:642.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:56.800000pt;}
.x37{left:74.720000pt;}
.x1d{left:75.840000pt;}
.x3b{left:82.912000pt;}
.x38{left:85.312000pt;}
.x1{left:94.431988pt;}
.xc{left:104.031988pt;}
.x3c{left:108.352000pt;}
.x8{left:112.634667pt;}
.x11{left:116.991988pt;}
.x29{left:122.912000pt;}
.x20{left:128.191988pt;}
.x7{left:133.274667pt;}
.x3{left:139.226655pt;}
.x5{left:141.626655pt;}
.x17{left:143.866655pt;}
.x6{left:146.714667pt;}
.x1a{left:152.186655pt;}
.x12{left:165.786655pt;}
.x34{left:170.106667pt;}
.x28{left:180.506667pt;}
.x33{left:190.106667pt;}
.x1b{left:195.866655pt;}
.x9{left:198.594667pt;}
.xe{left:200.986655pt;}
.x32{left:203.546667pt;}
.x24{left:207.866667pt;}
.x23{left:227.866667pt;}
.x22{left:241.306667pt;}
.x2c{left:244.026667pt;}
.x18{left:251.106655pt;}
.x4{left:252.226655pt;}
.x35{left:256.066667pt;}
.x1e{left:271.746667pt;}
.x25{left:293.826667pt;}
.x39{left:295.906667pt;}
.x30{left:309.026667pt;}
.xa{left:316.834667pt;}
.x3a{left:319.426667pt;}
.x31{left:323.746667pt;}
.x21{left:336.386655pt;}
.x14{left:345.026655pt;}
.x36{left:374.306667pt;}
.x1f{left:377.986667pt;}
.x2{left:396.866655pt;}
.x15{left:401.666655pt;}
.x26{left:412.066667pt;}
.x3f{left:424.253333pt;}
.x1c{left:439.453322pt;}
.x2b{left:459.293333pt;}
.x3d{left:502.173333pt;}
.xf{left:553.693322pt;}
.x2e{left:575.133333pt;}
.x27{left:578.173333pt;}
.x2f{left:580.413333pt;}
.xd{left:598.213322pt;}
.x19{left:602.373322pt;}
.x2a{left:636.133333pt;}
.x10{left:637.893322pt;}
.x13{left:653.733322pt;}
.x3e{left:671.653333pt;}
.x16{left:672.773322pt;}
.x2d{left:705.253333pt;}
}




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