
    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_6e03de1682e68bb885add6d5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_6cdb8138c51d88a99797216f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.053223;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_9e3b7ec170fd9b827effcacc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ade005336d869d0a2ce09eaa.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_65f5f9cccae6fdd1213c1d66.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8ff03a5fbc97384d6d03a1f9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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:ff9;src:url('chunks/assets/font_11dcbe58c57afe2290bc915d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d188d1935657a5abdb4b004f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.932617;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:ffb;src:url('chunks/assets/font_fcd963494339d84642845b19.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4d01f588dab7f75b6d764eef.woff')format("woff");}.ffc{font-family:ffc;line-height:0.920410;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:ffd;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;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;}
.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:-18.120000px;}
.v3{vertical-align:-13.680000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.120000px;}
.ls7{letter-spacing:-2.724000px;}
.lsb{letter-spacing:-0.816000px;}
.ls8{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.378000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.690000px;}
.ls3{letter-spacing:1.416000px;}
.ls0{letter-spacing:1.476000px;}
.ls4{letter-spacing:1.536000px;}
.ls10{letter-spacing:1.740000px;}
.lsa{letter-spacing:1.944000px;}
.ls13{letter-spacing:2.164500px;}
.ls2{letter-spacing:2.190000px;}
.ls1{letter-spacing:2.250000px;}
.lsc{letter-spacing:2.370000px;}
.lsd{letter-spacing:2.430000px;}
.ls15{letter-spacing:15.237000px;}
.ls14{letter-spacing:46.887000px;}
.ls12{letter-spacing:64.887000px;}
.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;}
}
.ws4{word-spacing:-25.926000px;}
.ws5{word-spacing:-23.166000px;}
.ws8{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.wsa{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws7{word-spacing:-14.625000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws6{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-10.656450px;}
._8{margin-left:-9.503100px;}
._1a{margin-left:-7.057500px;}
._9{margin-left:-5.973000px;}
._6{margin-left:-4.425000px;}
._b{margin-left:-3.030000px;}
._1{margin-left:-1.998000px;}
._0{width:1.404000px;}
._3{width:2.532000px;}
._5{width:4.032000px;}
._2{width:5.358000px;}
._d{width:6.372000px;}
._a{width:7.732500px;}
._c{width:8.782500px;}
._1e{width:9.832500px;}
._4{width:10.908000px;}
._12{width:12.246000px;}
._19{width:13.278000px;}
._e{width:16.755000px;}
._1f{width:17.785500px;}
._1b{width:18.822000px;}
._14{width:20.700000px;}
._13{width:21.724500px;}
._11{width:25.459500px;}
._10{width:26.698500px;}
._f{width:30.216000px;}
._15{width:31.254000px;}
._17{width:34.251000px;}
._18{width:35.443500px;}
._1d{width:39.024000px;}
._16{width:40.068000px;}
._1c{width:43.750500px;}
.fc6{color:rgb(227,108,10);}
.fc5{color:rgb(31,78,121);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.375000px;}
.y1c{bottom:4.485000px;}
.yb5{bottom:4.500000px;}
.yb7{bottom:4.545000px;}
.y4b{bottom:7.875000px;}
.yf{bottom:11.250000px;}
.yd{bottom:13.530000px;}
.y3{bottom:19.125000px;}
.y48{bottom:21.375000px;}
.y6{bottom:22.500000px;}
.y4a{bottom:24.780000px;}
.y1b{bottom:30.360000px;}
.yc{bottom:30.405000px;}
.y5{bottom:33.787500px;}
.y2{bottom:36.037500px;}
.y47{bottom:38.280000px;}
.y1{bottom:46.162500px;}
.yb{bottom:46.185000px;}
.y1a{bottom:47.280000px;}
.y46{bottom:55.155000px;}
.y19{bottom:64.155000px;}
.ya{bottom:73.185000px;}
.y45{bottom:73.200000px;}
.y18{bottom:79.950000px;}
.y44{bottom:90.075000px;}
.y9{bottom:93.480000px;}
.y17{bottom:95.700000px;}
.y43{bottom:106.980000px;}
.y8{bottom:110.355000px;}
.y89{bottom:111.450000px;}
.y16{bottom:118.200000px;}
.y51{bottom:119.362500px;}
.ye2{bottom:121.612500px;}
.yb3{bottom:122.737500px;}
.y42{bottom:124.995000px;}
.y88{bottom:129.487500px;}
.y15{bottom:136.230000px;}
.y50{bottom:137.362500px;}
.ye1{bottom:138.487500px;}
.yb2{bottom:139.612500px;}
.y41{bottom:141.870000px;}
.y87{bottom:146.362500px;}
.y4f{bottom:154.245000px;}
.ye0{bottom:156.480000px;}
.yb1{bottom:157.620000px;}
.y40{bottom:158.775000px;}
.y14{bottom:159.855000px;}
.y86{bottom:163.275000px;}
.y4e{bottom:171.150000px;}
.ydf{bottom:173.400000px;}
.yb0{bottom:174.525000px;}
.y3f{bottom:176.775000px;}
.y85{bottom:181.275000px;}
.y13{bottom:185.775000px;}
.y4d{bottom:189.150000px;}
.yde{bottom:190.275000px;}
.yaf{bottom:191.400000px;}
.y3e{bottom:193.680000px;}
.y84{bottom:198.150000px;}
.y4c{bottom:206.070000px;}
.ydd{bottom:208.320000px;}
.yae{bottom:209.445000px;}
.y3d{bottom:210.555000px;}
.y12{bottom:211.680000px;}
.y2e{bottom:215.070000px;}
.y49{bottom:222.945000px;}
.ydc{bottom:225.195000px;}
.yad{bottom:226.320000px;}
.y3c{bottom:228.570000px;}
.y83{bottom:233.070000px;}
.y2d{bottom:233.100000px;}
.y11{bottom:237.555000px;}
.ydb{bottom:242.070000px;}
.yac{bottom:243.225000px;}
.y3b{bottom:245.475000px;}
.y2c{bottom:249.975000px;}
.yda{bottom:260.100000px;}
.y1e{bottom:261.225000px;}
.y3a{bottom:262.350000px;}
.y2b{bottom:266.850000px;}
.yd9{bottom:276.975000px;}
.yab{bottom:278.100000px;}
.y39{bottom:280.380000px;}
.y2a{bottom:284.895000px;}
.yd8{bottom:293.880000px;}
.yaa{bottom:295.020000px;}
.y38{bottom:297.255000px;}
.y29{bottom:301.770000px;}
.yd7{bottom:311.895000px;}
.ya9{bottom:313.005000px;}
.y37{bottom:314.130000px;}
.y82{bottom:318.645000px;}
.y28{bottom:318.675000px;}
.yd6{bottom:328.800000px;}
.ya8{bottom:329.925000px;}
.y36{bottom:332.175000px;}
.y27{bottom:336.675000px;}
.yd5{bottom:345.675000px;}
.ya7{bottom:346.800000px;}
.y35{bottom:349.050000px;}
.y26{bottom:353.550000px;}
.yd4{bottom:363.675000px;}
.ya6{bottom:364.800000px;}
.y34{bottom:365.970000px;}
.y81{bottom:370.455000px;}
.y25{bottom:370.470000px;}
.yd3{bottom:380.580000px;}
.ya5{bottom:381.705000px;}
.y33{bottom:383.970000px;}
.y80{bottom:388.455000px;}
.y24{bottom:389.595000px;}
.yd2{bottom:397.455000px;}
.ya4{bottom:398.580000px;}
.y32{bottom:400.875000px;}
.y7f{bottom:405.330000px;}
.y23{bottom:407.625000px;}
.yd1{bottom:415.500000px;}
.ya3{bottom:416.625000px;}
.y31{bottom:417.750000px;}
.y7e{bottom:422.250000px;}
.y22{bottom:425.625000px;}
.yd0{bottom:432.375000px;}
.ya2{bottom:433.500000px;}
.y30{bottom:435.750000px;}
.y7d{bottom:440.250000px;}
.y21{bottom:443.655000px;}
.ycf{bottom:449.250000px;}
.ya1{bottom:450.375000px;}
.y2f{bottom:452.655000px;}
.y7c{bottom:457.170000px;}
.yce{bottom:467.295000px;}
.ya0{bottom:468.405000px;}
.y20{bottom:469.530000px;}
.y7b{bottom:474.045000px;}
.ycd{bottom:484.170000px;}
.y9f{bottom:485.280000px;}
.y1f{bottom:487.575000px;}
.y7a{bottom:492.030000px;}
.ycc{bottom:501.075000px;}
.y9e{bottom:502.200000px;}
.y79{bottom:508.950000px;}
.ycb{bottom:519.075000px;}
.y9d{bottom:520.200000px;}
.y78{bottom:525.825000px;}
.yca{bottom:535.995000px;}
.y9c{bottom:537.120000px;}
.y77{bottom:543.870000px;}
.yc9{bottom:552.870000px;}
.y9b{bottom:553.995000px;}
.y76{bottom:560.745000px;}
.yc8{bottom:570.870000px;}
.y9a{bottom:571.980000px;}
.y75{bottom:577.650000px;}
.yc7{bottom:587.775000px;}
.y99{bottom:588.900000px;}
.y74{bottom:595.650000px;}
.yc6{bottom:604.650000px;}
.y98{bottom:605.775000px;}
.y73{bottom:612.525000px;}
.yc5{bottom:622.695000px;}
.y97{bottom:623.820000px;}
.y72{bottom:629.445000px;}
.yc4{bottom:639.570000px;}
.y96{bottom:640.695000px;}
.y71{bottom:647.445000px;}
.yc3{bottom:656.445000px;}
.y95{bottom:657.570000px;}
.y70{bottom:664.350000px;}
.yc2{bottom:674.475000px;}
.y94{bottom:675.600000px;}
.y6f{bottom:681.225000px;}
.yc1{bottom:691.350000px;}
.y93{bottom:692.475000px;}
.y6e{bottom:699.225000px;}
.yc0{bottom:708.255000px;}
.y92{bottom:709.395000px;}
.y6d{bottom:716.145000px;}
.ybf{bottom:726.270000px;}
.y91{bottom:727.380000px;}
.y6c{bottom:733.020000px;}
.ybe{bottom:739.755000px;}
.y90{bottom:744.300000px;}
.y6b{bottom:751.050000px;}
.ybd{bottom:757.800000px;}
.y8f{bottom:761.175000px;}
.y1d{bottom:762.300000px;}
.y6a{bottom:767.925000px;}
.ybc{bottom:775.800000px;}
.y8e{bottom:780.300000px;}
.y69{bottom:784.800000px;}
.y10{bottom:791.595000px;}
.ybb{bottom:793.830000px;}
.y8d{bottom:798.330000px;}
.y68{bottom:802.830000px;}
.yba{bottom:811.830000px;}
.y8c{bottom:816.330000px;}
.y67{bottom:819.705000px;}
.yb9{bottom:829.875000px;}
.y8b{bottom:834.375000px;}
.y66{bottom:836.625000px;}
.yb8{bottom:847.875000px;}
.y8a{bottom:853.500000px;}
.y65{bottom:854.625000px;}
.yb6{bottom:865.875000px;}
.y64{bottom:871.545000px;}
.yb4{bottom:883.920000px;}
.y63{bottom:888.420000px;}
.y62{bottom:906.420000px;}
.y61{bottom:923.325000px;}
.y60{bottom:940.200000px;}
.y5f{bottom:958.245000px;}
.y5e{bottom:975.120000px;}
.y5d{bottom:991.995000px;}
.y5c{bottom:1010.025000px;}
.y5b{bottom:1026.900000px;}
.y5a{bottom:1043.820000px;}
.ye{bottom:1048.320000px;}
.y59{bottom:1061.820000px;}
.y7{bottom:1074.195000px;}
.y58{bottom:1078.725000px;}
.y57{bottom:1095.600000px;}
.y56{bottom:1113.600000px;}
.y55{bottom:1130.505000px;}
.y54{bottom:1147.380000px;}
.y53{bottom:1165.425000px;}
.y52{bottom:1182.300000px;}
.h1f{height:17.985000px;}
.h21{height:18.000000px;}
.h20{height:18.037500px;}
.hc{height:25.875000px;}
.h15{height:29.287500px;}
.h14{height:33.723633px;}
.h9{height:37.125000px;}
.h1c{height:38.287500px;}
.h19{height:41.275635px;}
.h1b{height:41.932617px;}
.h18{height:42.303955px;}
.h1e{height:42.589600px;}
.hb{height:43.875000px;}
.h10{height:46.695439px;}
.h5{height:47.223633px;}
.h2{height:49.537500px;}
.h1d{height:52.066406px;}
.h12{height:53.457451px;}
.h13{height:53.637451px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h1a{height:58.185791px;}
.h11{height:60.431763px;}
.he{height:61.937329px;}
.hf{height:64.237500px;}
.h6{height:69.114990px;}
.h7{height:71.613281px;}
.h16{height:73.722656px;}
.h8{height:121.612500px;}
.hd{height:256.710000px;}
.h17{height:501.075000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.wb{width:123.900000px;}
.w4{width:152.055000px;}
.w9{width:185.850000px;}
.wa{width:186.975000px;}
.wc{width:250.095000px;}
.w7{width:251.175000px;}
.w8{width:496.755000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x16{left:12.360000px;}
.xe{left:13.500000px;}
.x1c{left:54.074987px;}
.x11{left:60.825000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x10{left:77.692500px;}
.x4{left:81.112487px;}
.x12{left:86.692500px;}
.x6{left:97.987500px;}
.x17{left:108.149987px;}
.x13{left:114.862500px;}
.xf{left:158.812500px;}
.x18{left:207.269987px;}
.x7{left:225.300000px;}
.x14{left:228.637500px;}
.x19{left:260.220000px;}
.xb{left:290.625000px;}
.x15{left:324.420000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x1a{left:447.195000px;}
.xc{left:453.945000px;}
.x1b{left:571.095000px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-16.106667pt;}
.v3{vertical-align:-12.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.106667pt;}
.ls7{letter-spacing:-2.421333pt;}
.lsb{letter-spacing:-0.725333pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.336000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.613333pt;}
.ls3{letter-spacing:1.258667pt;}
.ls0{letter-spacing:1.312000pt;}
.ls4{letter-spacing:1.365333pt;}
.ls10{letter-spacing:1.546667pt;}
.lsa{letter-spacing:1.728000pt;}
.ls13{letter-spacing:1.924000pt;}
.ls2{letter-spacing:1.946667pt;}
.ls1{letter-spacing:2.000000pt;}
.lsc{letter-spacing:2.106667pt;}
.lsd{letter-spacing:2.160000pt;}
.ls15{letter-spacing:13.544000pt;}
.ls14{letter-spacing:41.677333pt;}
.ls12{letter-spacing:57.677333pt;}
.ws4{word-spacing:-23.045333pt;}
.ws5{word-spacing:-20.592000pt;}
.ws8{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.wsa{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws7{word-spacing:-13.000000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws6{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-9.472400pt;}
._8{margin-left:-8.447200pt;}
._1a{margin-left:-6.273333pt;}
._9{margin-left:-5.309333pt;}
._6{margin-left:-3.933333pt;}
._b{margin-left:-2.693333pt;}
._1{margin-left:-1.776000pt;}
._0{width:1.248000pt;}
._3{width:2.250667pt;}
._5{width:3.584000pt;}
._2{width:4.762667pt;}
._d{width:5.664000pt;}
._a{width:6.873333pt;}
._c{width:7.806667pt;}
._1e{width:8.740000pt;}
._4{width:9.696000pt;}
._12{width:10.885333pt;}
._19{width:11.802667pt;}
._e{width:14.893333pt;}
._1f{width:15.809333pt;}
._1b{width:16.730667pt;}
._14{width:18.400000pt;}
._13{width:19.310667pt;}
._11{width:22.630667pt;}
._10{width:23.732000pt;}
._f{width:26.858667pt;}
._15{width:27.781333pt;}
._17{width:30.445333pt;}
._18{width:31.505333pt;}
._1d{width:34.688000pt;}
._16{width:35.616000pt;}
._1c{width:38.889333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.000000pt;}
.y1c{bottom:3.986667pt;}
.yb5{bottom:4.000000pt;}
.yb7{bottom:4.040000pt;}
.y4b{bottom:7.000000pt;}
.yf{bottom:10.000000pt;}
.yd{bottom:12.026667pt;}
.y3{bottom:17.000000pt;}
.y48{bottom:19.000000pt;}
.y6{bottom:20.000000pt;}
.y4a{bottom:22.026667pt;}
.y1b{bottom:26.986667pt;}
.yc{bottom:27.026667pt;}
.y5{bottom:30.033333pt;}
.y2{bottom:32.033333pt;}
.y47{bottom:34.026667pt;}
.y1{bottom:41.033333pt;}
.yb{bottom:41.053333pt;}
.y1a{bottom:42.026667pt;}
.y46{bottom:49.026667pt;}
.y19{bottom:57.026667pt;}
.ya{bottom:65.053333pt;}
.y45{bottom:65.066667pt;}
.y18{bottom:71.066667pt;}
.y44{bottom:80.066667pt;}
.y9{bottom:83.093333pt;}
.y17{bottom:85.066667pt;}
.y43{bottom:95.093333pt;}
.y8{bottom:98.093333pt;}
.y89{bottom:99.066667pt;}
.y16{bottom:105.066667pt;}
.y51{bottom:106.100000pt;}
.ye2{bottom:108.100000pt;}
.yb3{bottom:109.100000pt;}
.y42{bottom:111.106667pt;}
.y88{bottom:115.100000pt;}
.y15{bottom:121.093333pt;}
.y50{bottom:122.100000pt;}
.ye1{bottom:123.100000pt;}
.yb2{bottom:124.100000pt;}
.y41{bottom:126.106667pt;}
.y87{bottom:130.100000pt;}
.y4f{bottom:137.106667pt;}
.ye0{bottom:139.093333pt;}
.yb1{bottom:140.106667pt;}
.y40{bottom:141.133333pt;}
.y14{bottom:142.093333pt;}
.y86{bottom:145.133333pt;}
.y4e{bottom:152.133333pt;}
.ydf{bottom:154.133333pt;}
.yb0{bottom:155.133333pt;}
.y3f{bottom:157.133333pt;}
.y85{bottom:161.133333pt;}
.y13{bottom:165.133333pt;}
.y4d{bottom:168.133333pt;}
.yde{bottom:169.133333pt;}
.yaf{bottom:170.133333pt;}
.y3e{bottom:172.160000pt;}
.y84{bottom:176.133333pt;}
.y4c{bottom:183.173333pt;}
.ydd{bottom:185.173333pt;}
.yae{bottom:186.173333pt;}
.y3d{bottom:187.160000pt;}
.y12{bottom:188.160000pt;}
.y2e{bottom:191.173333pt;}
.y49{bottom:198.173333pt;}
.ydc{bottom:200.173333pt;}
.yad{bottom:201.173333pt;}
.y3c{bottom:203.173333pt;}
.y83{bottom:207.173333pt;}
.y2d{bottom:207.200000pt;}
.y11{bottom:211.160000pt;}
.ydb{bottom:215.173333pt;}
.yac{bottom:216.200000pt;}
.y3b{bottom:218.200000pt;}
.y2c{bottom:222.200000pt;}
.yda{bottom:231.200000pt;}
.y1e{bottom:232.200000pt;}
.y3a{bottom:233.200000pt;}
.y2b{bottom:237.200000pt;}
.yd9{bottom:246.200000pt;}
.yab{bottom:247.200000pt;}
.y39{bottom:249.226667pt;}
.y2a{bottom:253.240000pt;}
.yd8{bottom:261.226667pt;}
.yaa{bottom:262.240000pt;}
.y38{bottom:264.226667pt;}
.y29{bottom:268.240000pt;}
.yd7{bottom:277.240000pt;}
.ya9{bottom:278.226667pt;}
.y37{bottom:279.226667pt;}
.y82{bottom:283.240000pt;}
.y28{bottom:283.266667pt;}
.yd6{bottom:292.266667pt;}
.ya8{bottom:293.266667pt;}
.y36{bottom:295.266667pt;}
.y27{bottom:299.266667pt;}
.yd5{bottom:307.266667pt;}
.ya7{bottom:308.266667pt;}
.y35{bottom:310.266667pt;}
.y26{bottom:314.266667pt;}
.yd4{bottom:323.266667pt;}
.ya6{bottom:324.266667pt;}
.y34{bottom:325.306667pt;}
.y81{bottom:329.293333pt;}
.y25{bottom:329.306667pt;}
.yd3{bottom:338.293333pt;}
.ya5{bottom:339.293333pt;}
.y33{bottom:341.306667pt;}
.y80{bottom:345.293333pt;}
.y24{bottom:346.306667pt;}
.yd2{bottom:353.293333pt;}
.ya4{bottom:354.293333pt;}
.y32{bottom:356.333333pt;}
.y7f{bottom:360.293333pt;}
.y23{bottom:362.333333pt;}
.yd1{bottom:369.333333pt;}
.ya3{bottom:370.333333pt;}
.y31{bottom:371.333333pt;}
.y7e{bottom:375.333333pt;}
.y22{bottom:378.333333pt;}
.yd0{bottom:384.333333pt;}
.ya2{bottom:385.333333pt;}
.y30{bottom:387.333333pt;}
.y7d{bottom:391.333333pt;}
.y21{bottom:394.360000pt;}
.ycf{bottom:399.333333pt;}
.ya1{bottom:400.333333pt;}
.y2f{bottom:402.360000pt;}
.y7c{bottom:406.373333pt;}
.yce{bottom:415.373333pt;}
.ya0{bottom:416.360000pt;}
.y20{bottom:417.360000pt;}
.y7b{bottom:421.373333pt;}
.ycd{bottom:430.373333pt;}
.y9f{bottom:431.360000pt;}
.y1f{bottom:433.400000pt;}
.y7a{bottom:437.360000pt;}
.ycc{bottom:445.400000pt;}
.y9e{bottom:446.400000pt;}
.y79{bottom:452.400000pt;}
.ycb{bottom:461.400000pt;}
.y9d{bottom:462.400000pt;}
.y78{bottom:467.400000pt;}
.yca{bottom:476.440000pt;}
.y9c{bottom:477.440000pt;}
.y77{bottom:483.440000pt;}
.yc9{bottom:491.440000pt;}
.y9b{bottom:492.440000pt;}
.y76{bottom:498.440000pt;}
.yc8{bottom:507.440000pt;}
.y9a{bottom:508.426667pt;}
.y75{bottom:513.466667pt;}
.yc7{bottom:522.466667pt;}
.y99{bottom:523.466667pt;}
.y74{bottom:529.466667pt;}
.yc6{bottom:537.466667pt;}
.y98{bottom:538.466667pt;}
.y73{bottom:544.466667pt;}
.yc5{bottom:553.506667pt;}
.y97{bottom:554.506667pt;}
.y72{bottom:559.506667pt;}
.yc4{bottom:568.506667pt;}
.y96{bottom:569.506667pt;}
.y71{bottom:575.506667pt;}
.yc3{bottom:583.506667pt;}
.y95{bottom:584.506667pt;}
.y70{bottom:590.533333pt;}
.yc2{bottom:599.533333pt;}
.y94{bottom:600.533333pt;}
.y6f{bottom:605.533333pt;}
.yc1{bottom:614.533333pt;}
.y93{bottom:615.533333pt;}
.y6e{bottom:621.533333pt;}
.yc0{bottom:629.560000pt;}
.y92{bottom:630.573333pt;}
.y6d{bottom:636.573333pt;}
.ybf{bottom:645.573333pt;}
.y91{bottom:646.560000pt;}
.y6c{bottom:651.573333pt;}
.ybe{bottom:657.560000pt;}
.y90{bottom:661.600000pt;}
.y6b{bottom:667.600000pt;}
.ybd{bottom:673.600000pt;}
.y8f{bottom:676.600000pt;}
.y1d{bottom:677.600000pt;}
.y6a{bottom:682.600000pt;}
.ybc{bottom:689.600000pt;}
.y8e{bottom:693.600000pt;}
.y69{bottom:697.600000pt;}
.y10{bottom:703.640000pt;}
.ybb{bottom:705.626667pt;}
.y8d{bottom:709.626667pt;}
.y68{bottom:713.626667pt;}
.yba{bottom:721.626667pt;}
.y8c{bottom:725.626667pt;}
.y67{bottom:728.626667pt;}
.yb9{bottom:737.666667pt;}
.y8b{bottom:741.666667pt;}
.y66{bottom:743.666667pt;}
.yb8{bottom:753.666667pt;}
.y8a{bottom:758.666667pt;}
.y65{bottom:759.666667pt;}
.yb6{bottom:769.666667pt;}
.y64{bottom:774.706667pt;}
.yb4{bottom:785.706667pt;}
.y63{bottom:789.706667pt;}
.y62{bottom:805.706667pt;}
.y61{bottom:820.733333pt;}
.y60{bottom:835.733333pt;}
.y5f{bottom:851.773333pt;}
.y5e{bottom:866.773333pt;}
.y5d{bottom:881.773333pt;}
.y5c{bottom:897.800000pt;}
.y5b{bottom:912.800000pt;}
.y5a{bottom:927.840000pt;}
.ye{bottom:931.840000pt;}
.y59{bottom:943.840000pt;}
.y7{bottom:954.840000pt;}
.y58{bottom:958.866667pt;}
.y57{bottom:973.866667pt;}
.y56{bottom:989.866667pt;}
.y55{bottom:1004.893333pt;}
.y54{bottom:1019.893333pt;}
.y53{bottom:1035.933333pt;}
.y52{bottom:1050.933333pt;}
.h1f{height:15.986667pt;}
.h21{height:16.000000pt;}
.h20{height:16.033333pt;}
.hc{height:23.000000pt;}
.h15{height:26.033333pt;}
.h14{height:29.976562pt;}
.h9{height:33.000000pt;}
.h1c{height:34.033333pt;}
.h19{height:36.689453pt;}
.h1b{height:37.273438pt;}
.h18{height:37.603516pt;}
.h1e{height:37.857422pt;}
.hb{height:39.000000pt;}
.h10{height:41.507057pt;}
.h5{height:41.976562pt;}
.h2{height:44.033333pt;}
.h1d{height:46.281250pt;}
.h12{height:47.517734pt;}
.h13{height:47.677734pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h1a{height:51.720703pt;}
.h11{height:53.717122pt;}
.he{height:55.055404pt;}
.hf{height:57.100000pt;}
.h6{height:61.435547pt;}
.h7{height:63.656250pt;}
.h16{height:65.531250pt;}
.h8{height:108.100000pt;}
.hd{height:228.186667pt;}
.h17{height:445.400000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.wb{width:110.133333pt;}
.w4{width:135.160000pt;}
.w9{width:165.200000pt;}
.wa{width:166.200000pt;}
.wc{width:222.306667pt;}
.w7{width:223.266667pt;}
.w8{width:441.560000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x16{left:10.986667pt;}
.xe{left:12.000000pt;}
.x1c{left:48.066655pt;}
.x11{left:54.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x10{left:69.060000pt;}
.x4{left:72.099988pt;}
.x12{left:77.060000pt;}
.x6{left:87.100000pt;}
.x17{left:96.133322pt;}
.x13{left:102.100000pt;}
.xf{left:141.166667pt;}
.x18{left:184.239988pt;}
.x7{left:200.266667pt;}
.x14{left:203.233333pt;}
.x19{left:231.306667pt;}
.xb{left:258.333333pt;}
.x15{left:288.373333pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x1a{left:397.506667pt;}
.xc{left:403.506667pt;}
.x1b{left:507.640000pt;}
.x3{left:663.840000pt;}
}




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