
    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_d81d2604404f95cfed928ba3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_11cec0e03ed0afd050d0a31c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_ea70af28c6500640f97e83ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_6461065bc816b06c10af78bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_0713aacaf687eaf644cd5e28.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_49f12c45e6ff693bb3e03cc8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cb0add5d9da2b5518689827a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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);}
.v2{vertical-align:-27.000000px;}
.v4{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.000000px;}
.v1{vertical-align:24.000000px;}
.v5{vertical-align:27.000000px;}
.ls11{letter-spacing:-3.000000px;}
.ls2{letter-spacing:-0.516000px;}
.ls4{letter-spacing:-0.468000px;}
.lsd{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.024000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.024000px;}
.lsf{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.084000px;}
.lse{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.204000px;}
.lsa{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.492000px;}
.ls5{letter-spacing:0.516000px;}
.ls6{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.984000px;}
.ls12{letter-spacing:1.008000px;}
.ls17{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.500000px;}
.ls15{letter-spacing:1.524000px;}
.ls18{letter-spacing:1.680000px;}
.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;}
}
.wsa{word-spacing:-19.524000px;}
.ws9{word-spacing:-19.500000px;}
.wsb{word-spacing:-18.984000px;}
.ws4{word-spacing:-18.516000px;}
.wsc{word-spacing:-18.492000px;}
.ws2{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.976000px;}
.ws3{word-spacing:-17.532000px;}
.ws5{word-spacing:-17.484000px;}
.ws6{word-spacing:-15.168000px;}
.ws8{word-spacing:-15.000000px;}
.ws7{word-spacing:-12.000000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-10.860000px;}
._b{margin-left:-9.504000px;}
._a{margin-left:-7.992000px;}
._8{margin-left:-6.966000px;}
._7{margin-left:-5.586000px;}
._5{margin-left:-4.524000px;}
._9{margin-left:-3.498000px;}
._0{margin-left:-2.304000px;}
._3{margin-left:-1.170000px;}
._1{width:1.296000px;}
._2{width:2.664000px;}
._4{width:3.804000px;}
._6{width:846.450000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:3.750000px;}
.y61{bottom:4.125000px;}
.y3{bottom:5.250000px;}
.y83{bottom:24.750000px;}
.ye8{bottom:118.912500px;}
.y27{bottom:120.412500px;}
.yb5{bottom:130.537500px;}
.y5f{bottom:132.412500px;}
.ya1{bottom:136.162500px;}
.yd0{bottom:137.662500px;}
.y79{bottom:147.412500px;}
.ya8{bottom:148.162500px;}
.ydc{bottom:149.662500px;}
.y49{bottom:154.905000px;}
.ye7{bottom:160.545000px;}
.y26{bottom:161.655000px;}
.yb4{bottom:171.780000px;}
.y5e{bottom:173.670000px;}
.y50{bottom:176.325000px;}
.yc6{bottom:177.450000px;}
.ya0{bottom:177.825000px;}
.ycf{bottom:178.950000px;}
.yee{bottom:184.575000px;}
.yb9{bottom:185.700000px;}
.y78{bottom:188.700000px;}
.ya7{bottom:189.450000px;}
.ydb{bottom:190.950000px;}
.y48{bottom:196.575000px;}
.ye6{bottom:201.825000px;}
.y25{bottom:202.950000px;}
.yb3{bottom:213.075000px;}
.y5d{bottom:214.950000px;}
.y4f{bottom:217.575000px;}
.y9f{bottom:219.075000px;}
.yce{bottom:220.575000px;}
.yed{bottom:225.825000px;}
.yb8{bottom:226.950000px;}
.y77{bottom:229.950000px;}
.yda{bottom:232.575000px;}
.y47{bottom:237.825000px;}
.ya6{bottom:243.075000px;}
.y24{bottom:244.575000px;}
.yb2{bottom:254.700000px;}
.ye5{bottom:255.450000px;}
.y5c{bottom:256.575000px;}
.y4e{bottom:259.200000px;}
.y9e{bottom:260.325000px;}
.ycd{bottom:261.825000px;}
.yec{bottom:267.450000px;}
.yb7{bottom:268.575000px;}
.y76{bottom:271.575000px;}
.yd9{bottom:273.825000px;}
.y46{bottom:279.450000px;}
.y93{bottom:280.200000px;}
.ya5{bottom:284.325000px;}
.y23{bottom:285.825000px;}
.yb1{bottom:295.950000px;}
.ye4{bottom:296.700000px;}
.y5b{bottom:297.825000px;}
.y4d{bottom:300.450000px;}
.y9d{bottom:301.950000px;}
.yeb{bottom:308.745000px;}
.yb6{bottom:309.870000px;}
.y75{bottom:312.870000px;}
.ycc{bottom:315.495000px;}
.y45{bottom:320.730000px;}
.ya4{bottom:325.995000px;}
.y22{bottom:327.480000px;}
.yf4{bottom:332.745000px;}
.y92{bottom:333.870000px;}
.yb0{bottom:337.245000px;}
.y5a{bottom:339.495000px;}
.y4c{bottom:342.120000px;}
.yc5{bottom:343.245000px;}
.ye3{bottom:349.995000px;}
.y7d{bottom:351.480000px;}
.y74{bottom:354.120000px;}
.y9c{bottom:355.230000px;}
.y1f{bottom:356.745000px;}
.y44{bottom:361.980000px;}
.ya3{bottom:367.245000px;}
.y21{bottom:368.730000px;}
.yf2{bottom:373.995000px;}
.y91{bottom:375.105000px;}
.y59{bottom:380.745000px;}
.y4b{bottom:383.370000px;}
.yc4{bottom:384.495000px;}
.yaf{bottom:390.870000px;}
.ye2{bottom:391.605000px;}
.y7c{bottom:392.745000px;}
.y73{bottom:395.730000px;}
.ycb{bottom:397.995000px;}
.y43{bottom:403.620000px;}
.ya2{bottom:408.495000px;}
.y9b{bottom:408.870000px;}
.y1e{bottom:409.995000px;}
.yf1{bottom:415.620000px;}
.y90{bottom:416.745000px;}
.y58{bottom:421.995000px;}
.yae{bottom:432.150000px;}
.y4a{bottom:432.900000px;}
.y7b{bottom:434.025000px;}
.yc3{bottom:438.150000px;}
.yca{bottom:439.650000px;}
.y42{bottom:444.900000px;}
.y72{bottom:449.025000px;}
.y1d{bottom:451.650000px;}
.yf0{bottom:456.900000px;}
.y8f{bottom:458.025000px;}
.y9a{bottom:462.150000px;}
.y2b{bottom:463.650000px;}
.yf3{bottom:468.900000px;}
.yad{bottom:473.775000px;}
.y7a{bottom:475.650000px;}
.yc2{bottom:479.400000px;}
.yc9{bottom:480.900000px;}
.ye1{bottom:486.525000px;}
.y20{bottom:492.900000px;}
.y41{bottom:498.525000px;}
.y8e{bottom:499.275000px;}
.y71{bottom:502.650000px;}
.y99{bottom:503.400000px;}
.y1c{bottom:504.900000px;}
.yef{bottom:510.525000px;}
.yac{bottom:515.025000px;}
.y57{bottom:516.900000px;}
.yc1{bottom:520.650000px;}
.yc8{bottom:522.525000px;}
.ye0{bottom:527.775000px;}
.y30{bottom:534.525000px;}
.yea{bottom:539.775000px;}
.y8d{bottom:540.900000px;}
.y70{bottom:543.900000px;}
.y98{bottom:545.025000px;}
.y1b{bottom:546.525000px;}
.y40{bottom:551.775000px;}
.yab{bottom:556.275000px;}
.y56{bottom:558.525000px;}
.yc0{bottom:562.320000px;}
.yc7{bottom:563.820000px;}
.y2f{bottom:575.820000px;}
.ydf{bottom:581.070000px;}
.y8c{bottom:582.195000px;}
.y6f{bottom:585.195000px;}
.y97{bottom:586.320000px;}
.y1a{bottom:587.820000px;}
.y3f{bottom:593.070000px;}
.yaa{bottom:597.945000px;}
.y55{bottom:599.820000px;}
.ybf{bottom:603.570000px;}
.yd8{bottom:605.070000px;}
.ye{bottom:615.945000px;}
.y2e{bottom:617.070000px;}
.yde{bottom:622.695000px;}
.y6c{bottom:623.820000px;}
.y6e{bottom:626.820000px;}
.y96{bottom:627.945000px;}
.y19{bottom:629.070000px;}
.y3e{bottom:634.695000px;}
.y54{bottom:641.070000px;}
.ybe{bottom:645.195000px;}
.yd7{bottom:646.695000px;}
.ya9{bottom:647.445000px;}
.y2d{bottom:658.695000px;}
.y8b{bottom:665.070000px;}
.yd{bottom:669.195000px;}
.y18{bottom:670.695000px;}
.y3d{bottom:675.945000px;}
.y6d{bottom:676.320000px;}
.y6b{bottom:677.070000px;}
.y53{bottom:682.695000px;}
.yd6{bottom:687.945000px;}
.y6a{bottom:694.725000px;}
.ybd{bottom:698.475000px;}
.y2c{bottom:699.975000px;}
.y8a{bottom:706.350000px;}
.y95{bottom:710.475000px;}
.yc{bottom:710.850000px;}
.y17{bottom:711.975000px;}
.y69{bottom:715.350000px;}
.y3c{bottom:717.225000px;}
.y52{bottom:723.975000px;}
.yd5{bottom:729.225000px;}
.y68{bottom:735.975000px;}
.y89{bottom:747.975000px;}
.ybc{bottom:751.725000px;}
.y16{bottom:753.225000px;}
.y67{bottom:756.600000px;}
.y3b{bottom:758.850000px;}
.y94{bottom:759.975000px;}
.yb{bottom:764.100000px;}
.y51{bottom:765.225000px;}
.yd4{bottom:770.850000px;}
.y66{bottom:777.600000px;}
.yf5{bottom:782.850000px;}
.y88{bottom:789.225000px;}
.ybb{bottom:793.350000px;}
.y15{bottom:794.850000px;}
.y65{bottom:798.225000px;}
.y3a{bottom:800.100000px;}
.y35{bottom:806.850000px;}
.yd3{bottom:812.100000px;}
.ya{bottom:817.755000px;}
.y64{bottom:818.880000px;}
.ye9{bottom:824.130000px;}
.y87{bottom:830.520000px;}
.yba{bottom:834.630000px;}
.y14{bottom:836.145000px;}
.y62{bottom:839.505000px;}
.y39{bottom:841.755000px;}
.y34{bottom:848.130000px;}
.yd2{bottom:853.755000px;}
.y60{bottom:860.880000px;}
.ydd{bottom:865.770000px;}
.y9{bottom:871.005000px;}
.y13{bottom:877.755000px;}
.y86{bottom:884.130000px;}
.y33{bottom:889.755000px;}
.y38{bottom:895.005000px;}
.yd1{bottom:907.005000px;}
.y12{bottom:919.005000px;}
.y8{bottom:924.255000px;}
.y32{bottom:931.005000px;}
.y85{bottom:937.380000px;}
.y37{bottom:948.300000px;}
.y84{bottom:955.050000px;}
.y11{bottom:960.300000px;}
.y31{bottom:972.300000px;}
.y82{bottom:975.675000px;}
.y7{bottom:977.925000px;}
.y36{bottom:989.925000px;}
.y10{bottom:1001.925000px;}
.y2a{bottom:1013.925000px;}
.y81{bottom:1017.300000px;}
.y6{bottom:1031.175000px;}
.y80{bottom:1037.925000px;}
.yf{bottom:1043.175000px;}
.y29{bottom:1055.175000px;}
.y7f{bottom:1058.550000px;}
.y7e{bottom:1079.955000px;}
.y5{bottom:1084.830000px;}
.y28{bottom:1096.830000px;}
.y4{bottom:1138.080000px;}
.y2{bottom:1186.830000px;}
.y1{bottom:1192.080000px;}
.h7{height:20.625000px;}
.h8{height:20.662500px;}
.h6{height:21.000000px;}
.h2{height:22.162500px;}
.h9{height:41.625000px;}
.h3{height:50.800781px;}
.h4{height:52.066406px;}
.h5{height:59.343750px;}
.h1{height:62.402344px;}
.ha{height:63.562500px;}
.h0{height:1263.000000px;}
.w2{width:9.750000px;}
.w3{width:19.125000px;}
.w6{width:114.450000px;}
.w5{width:225.075000px;}
.w4{width:225.495000px;}
.w7{width:336.120000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:8.250000px;}
.x1{left:108.037487px;}
.xa{left:109.162487px;}
.x3{left:189.449987px;}
.x5{left:204.074987px;}
.x15{left:222.495000px;}
.x7{left:309.494987px;}
.x12{left:333.525000px;}
.xb{left:368.399987px;}
.x4{left:387.899987px;}
.x9{left:390.149987px;}
.xd{left:397.274987px;}
.x1a{left:398.399987px;}
.x8{left:401.069987px;}
.x18{left:403.319987px;}
.x19{left:404.444987px;}
.x17{left:405.944987px;}
.x6{left:407.444987px;}
.xc{left:412.694987px;}
.xe{left:416.444987px;}
.x16{left:418.319987px;}
.x14{left:446.444987px;}
.x13{left:558.600000px;}
.x10{left:765.720000px;}
.x2{left:775.095000px;}
.xf{left:784.844987px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v4{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.666667pt;}
.v1{vertical-align:21.333333pt;}
.v5{vertical-align:24.000000pt;}
.ls11{letter-spacing:-2.666667pt;}
.ls2{letter-spacing:-0.458667pt;}
.ls4{letter-spacing:-0.416000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.021333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.021333pt;}
.lsf{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.074667pt;}
.lse{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.181333pt;}
.lsa{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.437333pt;}
.ls5{letter-spacing:0.458667pt;}
.ls6{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.874667pt;}
.ls12{letter-spacing:0.896000pt;}
.ls17{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.333333pt;}
.ls15{letter-spacing:1.354667pt;}
.ls18{letter-spacing:1.493333pt;}
.wsa{word-spacing:-17.354667pt;}
.ws9{word-spacing:-17.333333pt;}
.wsb{word-spacing:-16.874667pt;}
.ws4{word-spacing:-16.458667pt;}
.wsc{word-spacing:-16.437333pt;}
.ws2{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.978667pt;}
.ws3{word-spacing:-15.584000pt;}
.ws5{word-spacing:-15.541333pt;}
.ws6{word-spacing:-13.482667pt;}
.ws8{word-spacing:-13.333333pt;}
.ws7{word-spacing:-10.666667pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-9.653333pt;}
._b{margin-left:-8.448000pt;}
._a{margin-left:-7.104000pt;}
._8{margin-left:-6.192000pt;}
._7{margin-left:-4.965333pt;}
._5{margin-left:-4.021333pt;}
._9{margin-left:-3.109333pt;}
._0{margin-left:-2.048000pt;}
._3{margin-left:-1.040000pt;}
._1{width:1.152000pt;}
._2{width:2.368000pt;}
._4{width:3.381333pt;}
._6{width:752.400000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:3.333333pt;}
.y61{bottom:3.666667pt;}
.y3{bottom:4.666667pt;}
.y83{bottom:22.000000pt;}
.ye8{bottom:105.700000pt;}
.y27{bottom:107.033333pt;}
.yb5{bottom:116.033333pt;}
.y5f{bottom:117.700000pt;}
.ya1{bottom:121.033333pt;}
.yd0{bottom:122.366667pt;}
.y79{bottom:131.033333pt;}
.ya8{bottom:131.700000pt;}
.ydc{bottom:133.033333pt;}
.y49{bottom:137.693333pt;}
.ye7{bottom:142.706667pt;}
.y26{bottom:143.693333pt;}
.yb4{bottom:152.693333pt;}
.y5e{bottom:154.373333pt;}
.y50{bottom:156.733333pt;}
.yc6{bottom:157.733333pt;}
.ya0{bottom:158.066667pt;}
.ycf{bottom:159.066667pt;}
.yee{bottom:164.066667pt;}
.yb9{bottom:165.066667pt;}
.y78{bottom:167.733333pt;}
.ya7{bottom:168.400000pt;}
.ydb{bottom:169.733333pt;}
.y48{bottom:174.733333pt;}
.ye6{bottom:179.400000pt;}
.y25{bottom:180.400000pt;}
.yb3{bottom:189.400000pt;}
.y5d{bottom:191.066667pt;}
.y4f{bottom:193.400000pt;}
.y9f{bottom:194.733333pt;}
.yce{bottom:196.066667pt;}
.yed{bottom:200.733333pt;}
.yb8{bottom:201.733333pt;}
.y77{bottom:204.400000pt;}
.yda{bottom:206.733333pt;}
.y47{bottom:211.400000pt;}
.ya6{bottom:216.066667pt;}
.y24{bottom:217.400000pt;}
.yb2{bottom:226.400000pt;}
.ye5{bottom:227.066667pt;}
.y5c{bottom:228.066667pt;}
.y4e{bottom:230.400000pt;}
.y9e{bottom:231.400000pt;}
.ycd{bottom:232.733333pt;}
.yec{bottom:237.733333pt;}
.yb7{bottom:238.733333pt;}
.y76{bottom:241.400000pt;}
.yd9{bottom:243.400000pt;}
.y46{bottom:248.400000pt;}
.y93{bottom:249.066667pt;}
.ya5{bottom:252.733333pt;}
.y23{bottom:254.066667pt;}
.yb1{bottom:263.066667pt;}
.ye4{bottom:263.733333pt;}
.y5b{bottom:264.733333pt;}
.y4d{bottom:267.066667pt;}
.y9d{bottom:268.400000pt;}
.yeb{bottom:274.440000pt;}
.yb6{bottom:275.440000pt;}
.y75{bottom:278.106667pt;}
.ycc{bottom:280.440000pt;}
.y45{bottom:285.093333pt;}
.ya4{bottom:289.773333pt;}
.y22{bottom:291.093333pt;}
.yf4{bottom:295.773333pt;}
.y92{bottom:296.773333pt;}
.yb0{bottom:299.773333pt;}
.y5a{bottom:301.773333pt;}
.y4c{bottom:304.106667pt;}
.yc5{bottom:305.106667pt;}
.ye3{bottom:311.106667pt;}
.y7d{bottom:312.426667pt;}
.y74{bottom:314.773333pt;}
.y9c{bottom:315.760000pt;}
.y1f{bottom:317.106667pt;}
.y44{bottom:321.760000pt;}
.ya3{bottom:326.440000pt;}
.y21{bottom:327.760000pt;}
.yf2{bottom:332.440000pt;}
.y91{bottom:333.426667pt;}
.y59{bottom:338.440000pt;}
.y4b{bottom:340.773333pt;}
.yc4{bottom:341.773333pt;}
.yaf{bottom:347.440000pt;}
.ye2{bottom:348.093333pt;}
.y7c{bottom:349.106667pt;}
.y73{bottom:351.760000pt;}
.ycb{bottom:353.773333pt;}
.y43{bottom:358.773333pt;}
.ya2{bottom:363.106667pt;}
.y9b{bottom:363.440000pt;}
.y1e{bottom:364.440000pt;}
.yf1{bottom:369.440000pt;}
.y90{bottom:370.440000pt;}
.y58{bottom:375.106667pt;}
.yae{bottom:384.133333pt;}
.y4a{bottom:384.800000pt;}
.y7b{bottom:385.800000pt;}
.yc3{bottom:389.466667pt;}
.yca{bottom:390.800000pt;}
.y42{bottom:395.466667pt;}
.y72{bottom:399.133333pt;}
.y1d{bottom:401.466667pt;}
.yf0{bottom:406.133333pt;}
.y8f{bottom:407.133333pt;}
.y9a{bottom:410.800000pt;}
.y2b{bottom:412.133333pt;}
.yf3{bottom:416.800000pt;}
.yad{bottom:421.133333pt;}
.y7a{bottom:422.800000pt;}
.yc2{bottom:426.133333pt;}
.yc9{bottom:427.466667pt;}
.ye1{bottom:432.466667pt;}
.y20{bottom:438.133333pt;}
.y41{bottom:443.133333pt;}
.y8e{bottom:443.800000pt;}
.y71{bottom:446.800000pt;}
.y99{bottom:447.466667pt;}
.y1c{bottom:448.800000pt;}
.yef{bottom:453.800000pt;}
.yac{bottom:457.800000pt;}
.y57{bottom:459.466667pt;}
.yc1{bottom:462.800000pt;}
.yc8{bottom:464.466667pt;}
.ye0{bottom:469.133333pt;}
.y30{bottom:475.133333pt;}
.yea{bottom:479.800000pt;}
.y8d{bottom:480.800000pt;}
.y70{bottom:483.466667pt;}
.y98{bottom:484.466667pt;}
.y1b{bottom:485.800000pt;}
.y40{bottom:490.466667pt;}
.yab{bottom:494.466667pt;}
.y56{bottom:496.466667pt;}
.yc0{bottom:499.840000pt;}
.yc7{bottom:501.173333pt;}
.y2f{bottom:511.840000pt;}
.ydf{bottom:516.506667pt;}
.y8c{bottom:517.506667pt;}
.y6f{bottom:520.173333pt;}
.y97{bottom:521.173333pt;}
.y1a{bottom:522.506667pt;}
.y3f{bottom:527.173333pt;}
.yaa{bottom:531.506667pt;}
.y55{bottom:533.173333pt;}
.ybf{bottom:536.506667pt;}
.yd8{bottom:537.840000pt;}
.ye{bottom:547.506667pt;}
.y2e{bottom:548.506667pt;}
.yde{bottom:553.506667pt;}
.y6c{bottom:554.506667pt;}
.y6e{bottom:557.173333pt;}
.y96{bottom:558.173333pt;}
.y19{bottom:559.173333pt;}
.y3e{bottom:564.173333pt;}
.y54{bottom:569.840000pt;}
.ybe{bottom:573.506667pt;}
.yd7{bottom:574.840000pt;}
.ya9{bottom:575.506667pt;}
.y2d{bottom:585.506667pt;}
.y8b{bottom:591.173333pt;}
.yd{bottom:594.840000pt;}
.y18{bottom:596.173333pt;}
.y3d{bottom:600.840000pt;}
.y6d{bottom:601.173333pt;}
.y6b{bottom:601.840000pt;}
.y53{bottom:606.840000pt;}
.yd6{bottom:611.506667pt;}
.y6a{bottom:617.533333pt;}
.ybd{bottom:620.866667pt;}
.y2c{bottom:622.200000pt;}
.y8a{bottom:627.866667pt;}
.y95{bottom:631.533333pt;}
.yc{bottom:631.866667pt;}
.y17{bottom:632.866667pt;}
.y69{bottom:635.866667pt;}
.y3c{bottom:637.533333pt;}
.y52{bottom:643.533333pt;}
.yd5{bottom:648.200000pt;}
.y68{bottom:654.200000pt;}
.y89{bottom:664.866667pt;}
.ybc{bottom:668.200000pt;}
.y16{bottom:669.533333pt;}
.y67{bottom:672.533333pt;}
.y3b{bottom:674.533333pt;}
.y94{bottom:675.533333pt;}
.yb{bottom:679.200000pt;}
.y51{bottom:680.200000pt;}
.yd4{bottom:685.200000pt;}
.y66{bottom:691.200000pt;}
.yf5{bottom:695.866667pt;}
.y88{bottom:701.533333pt;}
.ybb{bottom:705.200000pt;}
.y15{bottom:706.533333pt;}
.y65{bottom:709.533333pt;}
.y3a{bottom:711.200000pt;}
.y35{bottom:717.200000pt;}
.yd3{bottom:721.866667pt;}
.ya{bottom:726.893333pt;}
.y64{bottom:727.893333pt;}
.ye9{bottom:732.560000pt;}
.y87{bottom:738.240000pt;}
.yba{bottom:741.893333pt;}
.y14{bottom:743.240000pt;}
.y62{bottom:746.226667pt;}
.y39{bottom:748.226667pt;}
.y34{bottom:753.893333pt;}
.yd2{bottom:758.893333pt;}
.y60{bottom:765.226667pt;}
.ydd{bottom:769.573333pt;}
.y9{bottom:774.226667pt;}
.y13{bottom:780.226667pt;}
.y86{bottom:785.893333pt;}
.y33{bottom:790.893333pt;}
.y38{bottom:795.560000pt;}
.yd1{bottom:806.226667pt;}
.y12{bottom:816.893333pt;}
.y8{bottom:821.560000pt;}
.y32{bottom:827.560000pt;}
.y85{bottom:833.226667pt;}
.y37{bottom:842.933333pt;}
.y84{bottom:848.933333pt;}
.y11{bottom:853.600000pt;}
.y31{bottom:864.266667pt;}
.y82{bottom:867.266667pt;}
.y7{bottom:869.266667pt;}
.y36{bottom:879.933333pt;}
.y10{bottom:890.600000pt;}
.y2a{bottom:901.266667pt;}
.y81{bottom:904.266667pt;}
.y6{bottom:916.600000pt;}
.y80{bottom:922.600000pt;}
.yf{bottom:927.266667pt;}
.y29{bottom:937.933333pt;}
.y7f{bottom:940.933333pt;}
.y7e{bottom:959.960000pt;}
.y5{bottom:964.293333pt;}
.y28{bottom:974.960000pt;}
.y4{bottom:1011.626667pt;}
.y2{bottom:1054.960000pt;}
.y1{bottom:1059.626667pt;}
.h7{height:18.333333pt;}
.h8{height:18.366667pt;}
.h6{height:18.666667pt;}
.h2{height:19.700000pt;}
.h9{height:37.000000pt;}
.h3{height:45.156250pt;}
.h4{height:46.281250pt;}
.h5{height:52.750000pt;}
.h1{height:55.468750pt;}
.ha{height:56.500000pt;}
.h0{height:1122.666667pt;}
.w2{width:8.666667pt;}
.w3{width:17.000000pt;}
.w6{width:101.733333pt;}
.w5{width:200.066667pt;}
.w4{width:200.440000pt;}
.w7{width:298.773333pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:7.333333pt;}
.x1{left:96.033322pt;}
.xa{left:97.033322pt;}
.x3{left:168.399988pt;}
.x5{left:181.399988pt;}
.x15{left:197.773333pt;}
.x7{left:275.106655pt;}
.x12{left:296.466667pt;}
.xb{left:327.466655pt;}
.x4{left:344.799988pt;}
.x9{left:346.799988pt;}
.xd{left:353.133322pt;}
.x1a{left:354.133322pt;}
.x8{left:356.506655pt;}
.x18{left:358.506655pt;}
.x19{left:359.506655pt;}
.x17{left:360.839988pt;}
.x6{left:362.173322pt;}
.xc{left:366.839988pt;}
.xe{left:370.173322pt;}
.x16{left:371.839988pt;}
.x14{left:396.839988pt;}
.x13{left:496.533333pt;}
.x10{left:680.640000pt;}
.x2{left:688.973333pt;}
.xf{left:697.639988pt;}
}




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