
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e05968d4013a7b3ce61b08bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_9ba160a5f2fd68f763a7f8e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_92abf2a6349056375e3e8b55.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_444a639a4253472296e1f297.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_baf8cac5d563d68903506c29.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_057bdd3dfb7b2936c3fc6ebe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1d{letter-spacing:-1.704000px;}
.ls15{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.538800px;}
.ls1b{letter-spacing:-0.444600px;}
.ls1e{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.285600px;}
.ls22{letter-spacing:-0.244200px;}
.ls12{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.121200px;}
.ls16{letter-spacing:-0.096600px;}
.lsa{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.038880px;}
.ls13{letter-spacing:-0.031680px;}
.lsb{letter-spacing:-0.008400px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005400px;}
.ls19{letter-spacing:0.045360px;}
.ls1a{letter-spacing:0.048960px;}
.ls1f{letter-spacing:0.060480px;}
.ls23{letter-spacing:0.060600px;}
.ls20{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls7{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls2a{letter-spacing:0.116400px;}
.ls17{letter-spacing:0.124200px;}
.ls11{letter-spacing:0.173400px;}
.ls6{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.425520px;}
.ls24{letter-spacing:0.453600px;}
.ls3{letter-spacing:1.173600px;}
.ls29{letter-spacing:1.356000px;}
.ls8{letter-spacing:1.512000px;}
.ls28{letter-spacing:1.893600px;}
.ls25{letter-spacing:2.613600px;}
.ls18{letter-spacing:5.853600px;}
.ls10{letter-spacing:6.213600px;}
.ls27{letter-spacing:47.726640px;}
.ls21{letter-spacing:63.566640px;}
.ls26{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.129800px;}
.ws9{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982200px;}
.ws13{word-spacing:-12.940800px;}
.ws6{word-spacing:-10.065600px;}
.ws0{word-spacing:-9.810000px;}
.ws5{word-spacing:-8.625600px;}
.ws11{word-spacing:-8.614200px;}
.wsa{word-spacing:-8.553600px;}
.wsd{word-spacing:-8.265600px;}
.wsb{word-spacing:-7.905600px;}
.ws2{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._12{margin-left:-6.303720px;}
._b{margin-left:-3.107400px;}
._8{margin-left:-2.039760px;}
._0{margin-left:-1.020000px;}
._2{width:1.190137px;}
._4{width:2.228733px;}
._5{width:3.337944px;}
._6{width:5.134560px;}
._3{width:6.211560px;}
._1{width:7.213764px;}
._10{width:8.376749px;}
._9{width:9.520510px;}
._a{width:10.900517px;}
._11{width:12.148963px;}
._7{width:14.827680px;}
._f{width:16.533000px;}
._d{width:18.637200px;}
._c{width:19.719360px;}
._e{width:20.737080px;}
._15{width:21.740521px;}
._13{width:24.348600px;}
._17{width:34.079783px;}
._16{width:35.676720px;}
._18{width:40.936800px;}
._19{width:42.399360px;}
._14{width:148.466160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd4{bottom:112.440000px;}
.yd3{bottom:129.990000px;}
.y83{bottom:130.170000px;}
.y5c{bottom:135.390000px;}
.y26{bottom:138.630000px;}
.yf9{bottom:140.070000px;}
.ya9{bottom:141.510000px;}
.yb8{bottom:143.310000px;}
.yd2{bottom:147.630000px;}
.y82{bottom:147.720000px;}
.y5b{bottom:152.940000px;}
.y25{bottom:156.180000px;}
.yf8{bottom:157.710000px;}
.ya8{bottom:159.060000px;}
.yd1{bottom:165.180000px;}
.y81{bottom:165.270000px;}
.yb0{bottom:169.860000px;}
.y5a{bottom:170.580000px;}
.y24{bottom:173.820000px;}
.yb7{bottom:178.860000px;}
.yd0{bottom:182.730000px;}
.y80{bottom:182.910000px;}
.yf7{bottom:184.260000px;}
.y59{bottom:188.130000px;}
.y23{bottom:191.370000px;}
.ya7{bottom:194.700000px;}
.ycf{bottom:200.370000px;}
.y7f{bottom:200.460000px;}
.yaf{bottom:205.500000px;}
.y58{bottom:205.680000px;}
.y22{bottom:209.010000px;}
.yf6{bottom:210.900000px;}
.ya6{bottom:212.250000px;}
.yb6{bottom:214.500000px;}
.yce{bottom:217.920000px;}
.y7e{bottom:218.100000px;}
.yae{bottom:223.050000px;}
.y57{bottom:223.320000px;}
.y21{bottom:226.560000px;}
.yf5{bottom:228.450000px;}
.ya5{bottom:229.890000px;}
.yb5{bottom:232.050000px;}
.y7d{bottom:235.650000px;}
.y20{bottom:253.470000px;}
.ycd{bottom:253.560000px;}
.yf4{bottom:255.000000px;}
.yad{bottom:255.270000px;}
.y56{bottom:258.870000px;}
.y7c{bottom:262.200000px;}
.yb4{bottom:264.270000px;}
.ya4{bottom:265.440000px;}
.ycc{bottom:271.110000px;}
.yf3{bottom:272.640000px;}
.y55{bottom:276.510000px;}
.ya3{bottom:282.990000px;}
.ycb{bottom:288.660000px;}
.y54{bottom:294.060000px;}
.y7b{bottom:298.110000px;}
.yf2{bottom:299.190000px;}
.ya2{bottom:300.630000px;}
.y1f{bottom:302.070000px;}
.yca{bottom:306.300000px;}
.y53{bottom:311.610000px;}
.yc9{bottom:323.850000px;}
.yf1{bottom:325.830000px;}
.y52{bottom:329.250000px;}
.ya1{bottom:336.180000px;}
.y1e{bottom:339.060000px;}
.yc8{bottom:341.490000px;}
.y7a{bottom:346.440000px;}
.y51{bottom:346.800000px;}
.yf0{bottom:352.380000px;}
.ya0{bottom:353.730000px;}
.y1d{bottom:356.700000px;}
.yc7{bottom:359.040000px;}
.y79{bottom:363.990000px;}
.y50{bottom:364.440000px;}
.y9f{bottom:371.370000px;}
.yef{bottom:378.930000px;}
.y78{bottom:381.540000px;}
.y1c{bottom:392.250000px;}
.yc6{bottom:394.590000px;}
.y4f{bottom:399.990000px;}
.yee{bottom:405.570000px;}
.y9e{bottom:406.920000px;}
.y1b{bottom:409.800000px;}
.yc5{bottom:412.230000px;}
.y77{bottom:417.180000px;}
.y4e{bottom:417.540000px;}
.yed{bottom:423.120000px;}
.y9d{bottom:424.560000px;}
.y1a{bottom:427.440000px;}
.yc4{bottom:429.780000px;}
.y76{bottom:434.730000px;}
.y4d{bottom:435.180000px;}
.y9c{bottom:442.110000px;}
.y19{bottom:444.990000px;}
.yc3{bottom:447.420000px;}
.yec{bottom:449.760000px;}
.y75{bottom:452.370000px;}
.y4c{bottom:452.730000px;}
.y18{bottom:462.630000px;}
.yc2{bottom:464.970000px;}
.yeb{bottom:467.310000px;}
.y74{bottom:469.950000px;}
.y4b{bottom:470.400000px;}
.y9b{bottom:477.690000px;}
.y73{bottom:487.500000px;}
.yea{bottom:493.890000px;}
.y17{bottom:498.210000px;}
.yc1{bottom:500.550000px;}
.y9a{bottom:504.330000px;}
.y72{bottom:505.140000px;}
.y4a{bottom:505.950000px;}
.y16{bottom:515.760000px;}
.yc0{bottom:518.190000px;}
.ye9{bottom:520.530000px;}
.y71{bottom:522.690000px;}
.y49{bottom:523.500000px;}
.y15{bottom:533.400000px;}
.ybf{bottom:535.740000px;}
.ye8{bottom:538.080000px;}
.y99{bottom:540.240000px;}
.y70{bottom:540.330000px;}
.y48{bottom:541.140000px;}
.y14{bottom:550.950000px;}
.ybe{bottom:553.290000px;}
.y6f{bottom:557.880000px;}
.y47{bottom:558.690000px;}
.ye7{bottom:564.630000px;}
.y13{bottom:568.590000px;}
.ybd{bottom:570.930000px;}
.y6e{bottom:575.430000px;}
.y46{bottom:576.330000px;}
.ye6{bottom:582.270000px;}
.y12{bottom:586.140000px;}
.y98{bottom:588.480000px;}
.y6d{bottom:593.070000px;}
.y45{bottom:593.880000px;}
.y11{bottom:603.690000px;}
.y97{bottom:606.120000px;}
.ye5{bottom:608.820000px;}
.y6c{bottom:610.620000px;}
.y44{bottom:611.430000px;}
.ybc{bottom:615.390000px;}
.y109{bottom:618.810000px;}
.y96{bottom:623.670000px;}
.ye4{bottom:626.460000px;}
.y43{bottom:629.070000px;}
.y10{bottom:639.330000px;}
.y108{bottom:645.360000px;}
.y6b{bottom:646.260000px;}
.y42{bottom:646.620000px;}
.y95{bottom:650.220000px;}
.ye3{bottom:653.370000px;}
.yf{bottom:656.880000px;}
.ybb{bottom:663.720000px;}
.y6a{bottom:663.810000px;}
.y41{bottom:664.260000px;}
.y107{bottom:672.000000px;}
.yba{bottom:681.270000px;}
.y69{bottom:681.360000px;}
.y40{bottom:681.810000px;}
.ye{bottom:683.790000px;}
.y94{bottom:685.770000px;}
.y106{bottom:698.550000px;}
.y68{bottom:699.000000px;}
.yb3{bottom:699.720000px;}
.ye2{bottom:701.610000px;}
.y93{bottom:704.220000px;}
.yac{bottom:706.470000px;}
.yb9{bottom:713.490000px;}
.y67{bottom:716.550000px;}
.yb2{bottom:717.270000px;}
.y3f{bottom:717.360000px;}
.ye1{bottom:719.160000px;}
.y92{bottom:722.670000px;}
.yab{bottom:724.020000px;}
.y105{bottom:725.190000px;}
.yd{bottom:732.030000px;}
.y3e{bottom:735.000000px;}
.y91{bottom:741.030000px;}
.y104{bottom:742.740000px;}
.ye0{bottom:746.070000px;}
.yb1{bottom:749.490000px;}
.y66{bottom:752.190000px;}
.y3d{bottom:752.550000px;}
.yaa{bottom:756.240000px;}
.y90{bottom:759.480000px;}
.y103{bottom:760.290000px;}
.yc{bottom:767.850000px;}
.y65{bottom:769.740000px;}
.y3c{bottom:770.190000px;}
.ydf{bottom:783.150000px;}
.y102{bottom:786.930000px;}
.y64{bottom:787.290000px;}
.y3b{bottom:787.740000px;}
.y8f{bottom:795.930000px;}
.yb{bottom:803.850000px;}
.y101{bottom:804.480000px;}
.y63{bottom:804.930000px;}
.y3a{bottom:805.290000px;}
.yde{bottom:810.060000px;}
.y8e{bottom:813.480000px;}
.y62{bottom:822.480000px;}
.y39{bottom:822.930000px;}
.y100{bottom:831.030000px;}
.y61{bottom:840.030000px;}
.y38{bottom:840.480000px;}
.ya{bottom:843.630000px;}
.ydd{bottom:847.050000px;}
.yff{bottom:848.670000px;}
.y60{bottom:857.670000px;}
.y9{bottom:857.850000px;}
.y37{bottom:858.030000px;}
.ydc{bottom:864.600000px;}
.yfe{bottom:866.220000px;}
.y5f{bottom:875.220000px;}
.y36{bottom:875.670000px;}
.y8{bottom:879.630000px;}
.ydb{bottom:891.510000px;}
.yfd{bottom:892.860000px;}
.y35{bottom:893.220000px;}
.y7{bottom:897.630000px;}
.yfc{bottom:910.410000px;}
.y34{bottom:910.860000px;}
.y33{bottom:928.410000px;}
.yda{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.yfb{bottom:936.960000px;}
.y8d{bottom:937.410000px;}
.y32{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y5e{bottom:963.600000px;}
.y8c{bottom:972.960000px;}
.yd9{bottom:977.190000px;}
.y5d{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y8b{bottom:990.600000px;}
.yd8{bottom:994.740000px;}
.y30{bottom:999.150000px;}
.yfa{bottom:1007.790000px;}
.y8a{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.y89{bottom:1025.820000px;}
.y2e{bottom:1034.370000px;}
.yd7{bottom:1039.230000px;}
.y88{bottom:1043.370000px;}
.y2d{bottom:1051.920000px;}
.y87{bottom:1060.920000px;}
.y2c{bottom:1069.560000px;}
.y86{bottom:1078.560000px;}
.y2b{bottom:1087.110000px;}
.yd6{bottom:1087.560000px;}
.y85{bottom:1096.110000px;}
.yd5{bottom:1105.110000px;}
.y84{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x10{left:74.699987px;}
.x6{left:78.749987px;}
.x9{left:80.639987px;}
.x13{left:87.029987px;}
.xd{left:93.779987px;}
.x4{left:95.039987px;}
.x15{left:111.239987px;}
.x2{left:202.799987px;}
.x7{left:251.939987px;}
.xe{left:309.629987px;}
.xa{left:314.939987px;}
.x11{left:380.909987px;}
.x14{left:427.169987px;}
.xb{left:446.609987px;}
.x5{left:763.889987px;}
.xc{left:767.309987px;}
.x8{left:776.309987px;}
.xf{left:780.809987px;}
.x3{left:792.059987px;}
.x12{left:796.559987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-1.514667pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.478933pt;}
.ls1b{letter-spacing:-0.395200pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.253867pt;}
.ls22{letter-spacing:-0.217067pt;}
.ls12{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls16{letter-spacing:-0.085867pt;}
.lsa{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.034560pt;}
.ls13{letter-spacing:-0.028160pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004800pt;}
.ls19{letter-spacing:0.040320pt;}
.ls1a{letter-spacing:0.043520pt;}
.ls1f{letter-spacing:0.053760pt;}
.ls23{letter-spacing:0.053867pt;}
.ls20{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls7{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls2a{letter-spacing:0.103467pt;}
.ls17{letter-spacing:0.110400pt;}
.ls11{letter-spacing:0.154133pt;}
.ls6{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.378240pt;}
.ls24{letter-spacing:0.403200pt;}
.ls3{letter-spacing:1.043200pt;}
.ls29{letter-spacing:1.205333pt;}
.ls8{letter-spacing:1.344000pt;}
.ls28{letter-spacing:1.683200pt;}
.ls25{letter-spacing:2.323200pt;}
.ls18{letter-spacing:5.203200pt;}
.ls10{letter-spacing:5.523200pt;}
.ls27{letter-spacing:42.423680pt;}
.ls21{letter-spacing:56.503680pt;}
.ls26{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.670933pt;}
.ws9{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.539733pt;}
.ws13{word-spacing:-11.502933pt;}
.ws6{word-spacing:-8.947200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws5{word-spacing:-7.667200pt;}
.ws11{word-spacing:-7.657067pt;}
.wsa{word-spacing:-7.603200pt;}
.wsd{word-spacing:-7.347200pt;}
.wsb{word-spacing:-7.027200pt;}
.ws2{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._12{margin-left:-5.603307pt;}
._b{margin-left:-2.762133pt;}
._8{margin-left:-1.813120pt;}
._0{margin-left:-0.906667pt;}
._2{width:1.057899pt;}
._4{width:1.981096pt;}
._5{width:2.967062pt;}
._6{width:4.564053pt;}
._3{width:5.521387pt;}
._1{width:6.412235pt;}
._10{width:7.445999pt;}
._9{width:8.462676pt;}
._a{width:9.689348pt;}
._11{width:10.799079pt;}
._7{width:13.180160pt;}
._f{width:14.696000pt;}
._d{width:16.566400pt;}
._c{width:17.528320pt;}
._e{width:18.432960pt;}
._15{width:19.324908pt;}
._13{width:21.643200pt;}
._17{width:30.293141pt;}
._16{width:31.712640pt;}
._18{width:36.388267pt;}
._19{width:37.688320pt;}
._14{width:131.969920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd4{bottom:99.946667pt;}
.yd3{bottom:115.546667pt;}
.y83{bottom:115.706667pt;}
.y5c{bottom:120.346667pt;}
.y26{bottom:123.226667pt;}
.yf9{bottom:124.506667pt;}
.ya9{bottom:125.786667pt;}
.yb8{bottom:127.386667pt;}
.yd2{bottom:131.226667pt;}
.y82{bottom:131.306667pt;}
.y5b{bottom:135.946667pt;}
.y25{bottom:138.826667pt;}
.yf8{bottom:140.186667pt;}
.ya8{bottom:141.386667pt;}
.yd1{bottom:146.826667pt;}
.y81{bottom:146.906667pt;}
.yb0{bottom:150.986667pt;}
.y5a{bottom:151.626667pt;}
.y24{bottom:154.506667pt;}
.yb7{bottom:158.986667pt;}
.yd0{bottom:162.426667pt;}
.y80{bottom:162.586667pt;}
.yf7{bottom:163.786667pt;}
.y59{bottom:167.226667pt;}
.y23{bottom:170.106667pt;}
.ya7{bottom:173.066667pt;}
.ycf{bottom:178.106667pt;}
.y7f{bottom:178.186667pt;}
.yaf{bottom:182.666667pt;}
.y58{bottom:182.826667pt;}
.y22{bottom:185.786667pt;}
.yf6{bottom:187.466667pt;}
.ya6{bottom:188.666667pt;}
.yb6{bottom:190.666667pt;}
.yce{bottom:193.706667pt;}
.y7e{bottom:193.866667pt;}
.yae{bottom:198.266667pt;}
.y57{bottom:198.506667pt;}
.y21{bottom:201.386667pt;}
.yf5{bottom:203.066667pt;}
.ya5{bottom:204.346667pt;}
.yb5{bottom:206.266667pt;}
.y7d{bottom:209.466667pt;}
.y20{bottom:225.306667pt;}
.ycd{bottom:225.386667pt;}
.yf4{bottom:226.666667pt;}
.yad{bottom:226.906667pt;}
.y56{bottom:230.106667pt;}
.y7c{bottom:233.066667pt;}
.yb4{bottom:234.906667pt;}
.ya4{bottom:235.946667pt;}
.ycc{bottom:240.986667pt;}
.yf3{bottom:242.346667pt;}
.y55{bottom:245.786667pt;}
.ya3{bottom:251.546667pt;}
.ycb{bottom:256.586667pt;}
.y54{bottom:261.386667pt;}
.y7b{bottom:264.986667pt;}
.yf2{bottom:265.946667pt;}
.ya2{bottom:267.226667pt;}
.y1f{bottom:268.506667pt;}
.yca{bottom:272.266667pt;}
.y53{bottom:276.986667pt;}
.yc9{bottom:287.866667pt;}
.yf1{bottom:289.626667pt;}
.y52{bottom:292.666667pt;}
.ya1{bottom:298.826667pt;}
.y1e{bottom:301.386667pt;}
.yc8{bottom:303.546667pt;}
.y7a{bottom:307.946667pt;}
.y51{bottom:308.266667pt;}
.yf0{bottom:313.226667pt;}
.ya0{bottom:314.426667pt;}
.y1d{bottom:317.066667pt;}
.yc7{bottom:319.146667pt;}
.y79{bottom:323.546667pt;}
.y50{bottom:323.946667pt;}
.y9f{bottom:330.106667pt;}
.yef{bottom:336.826667pt;}
.y78{bottom:339.146667pt;}
.y1c{bottom:348.666667pt;}
.yc6{bottom:350.746667pt;}
.y4f{bottom:355.546667pt;}
.yee{bottom:360.506667pt;}
.y9e{bottom:361.706667pt;}
.y1b{bottom:364.266667pt;}
.yc5{bottom:366.426667pt;}
.y77{bottom:370.826667pt;}
.y4e{bottom:371.146667pt;}
.yed{bottom:376.106667pt;}
.y9d{bottom:377.386667pt;}
.y1a{bottom:379.946667pt;}
.yc4{bottom:382.026667pt;}
.y76{bottom:386.426667pt;}
.y4d{bottom:386.826667pt;}
.y9c{bottom:392.986667pt;}
.y19{bottom:395.546667pt;}
.yc3{bottom:397.706667pt;}
.yec{bottom:399.786667pt;}
.y75{bottom:402.106667pt;}
.y4c{bottom:402.426667pt;}
.y18{bottom:411.226667pt;}
.yc2{bottom:413.306667pt;}
.yeb{bottom:415.386667pt;}
.y74{bottom:417.733333pt;}
.y4b{bottom:418.133333pt;}
.y9b{bottom:424.613333pt;}
.y73{bottom:433.333333pt;}
.yea{bottom:439.013333pt;}
.y17{bottom:442.853333pt;}
.yc1{bottom:444.933333pt;}
.y9a{bottom:448.293333pt;}
.y72{bottom:449.013333pt;}
.y4a{bottom:449.733333pt;}
.y16{bottom:458.453333pt;}
.yc0{bottom:460.613333pt;}
.ye9{bottom:462.693333pt;}
.y71{bottom:464.613333pt;}
.y49{bottom:465.333333pt;}
.y15{bottom:474.133333pt;}
.ybf{bottom:476.213333pt;}
.ye8{bottom:478.293333pt;}
.y99{bottom:480.213333pt;}
.y70{bottom:480.293333pt;}
.y48{bottom:481.013333pt;}
.y14{bottom:489.733333pt;}
.ybe{bottom:491.813333pt;}
.y6f{bottom:495.893333pt;}
.y47{bottom:496.613333pt;}
.ye7{bottom:501.893333pt;}
.y13{bottom:505.413333pt;}
.ybd{bottom:507.493333pt;}
.y6e{bottom:511.493333pt;}
.y46{bottom:512.293333pt;}
.ye6{bottom:517.573333pt;}
.y12{bottom:521.013333pt;}
.y98{bottom:523.093333pt;}
.y6d{bottom:527.173333pt;}
.y45{bottom:527.893333pt;}
.y11{bottom:536.613333pt;}
.y97{bottom:538.773333pt;}
.ye5{bottom:541.173333pt;}
.y6c{bottom:542.773333pt;}
.y44{bottom:543.493333pt;}
.ybc{bottom:547.013333pt;}
.y109{bottom:550.053333pt;}
.y96{bottom:554.373333pt;}
.ye4{bottom:556.853333pt;}
.y43{bottom:559.173333pt;}
.y10{bottom:568.293333pt;}
.y108{bottom:573.653333pt;}
.y6b{bottom:574.453333pt;}
.y42{bottom:574.773333pt;}
.y95{bottom:577.973333pt;}
.ye3{bottom:580.773333pt;}
.yf{bottom:583.893333pt;}
.ybb{bottom:589.973333pt;}
.y6a{bottom:590.053333pt;}
.y41{bottom:590.453333pt;}
.y107{bottom:597.333333pt;}
.yba{bottom:605.573333pt;}
.y69{bottom:605.653333pt;}
.y40{bottom:606.053333pt;}
.ye{bottom:607.813333pt;}
.y94{bottom:609.573333pt;}
.y106{bottom:620.933333pt;}
.y68{bottom:621.333333pt;}
.yb3{bottom:621.973333pt;}
.ye2{bottom:623.653333pt;}
.y93{bottom:625.973333pt;}
.yac{bottom:627.973333pt;}
.yb9{bottom:634.213333pt;}
.y67{bottom:636.933333pt;}
.yb2{bottom:637.573333pt;}
.y3f{bottom:637.653333pt;}
.ye1{bottom:639.253333pt;}
.y92{bottom:642.373333pt;}
.yab{bottom:643.573333pt;}
.y105{bottom:644.613333pt;}
.yd{bottom:650.693333pt;}
.y3e{bottom:653.333333pt;}
.y91{bottom:658.693333pt;}
.y104{bottom:660.213333pt;}
.ye0{bottom:663.173333pt;}
.yb1{bottom:666.213333pt;}
.y66{bottom:668.613333pt;}
.y3d{bottom:668.933333pt;}
.yaa{bottom:672.213333pt;}
.y90{bottom:675.093333pt;}
.y103{bottom:675.813333pt;}
.yc{bottom:682.533333pt;}
.y65{bottom:684.213333pt;}
.y3c{bottom:684.613333pt;}
.ydf{bottom:696.133333pt;}
.y102{bottom:699.493333pt;}
.y64{bottom:699.813333pt;}
.y3b{bottom:700.213333pt;}
.y8f{bottom:707.493333pt;}
.yb{bottom:714.533333pt;}
.y101{bottom:715.093333pt;}
.y63{bottom:715.493333pt;}
.y3a{bottom:715.813333pt;}
.yde{bottom:720.053333pt;}
.y8e{bottom:723.093333pt;}
.y62{bottom:731.093333pt;}
.y39{bottom:731.493333pt;}
.y100{bottom:738.693333pt;}
.y61{bottom:746.693333pt;}
.y38{bottom:747.093333pt;}
.ya{bottom:749.893333pt;}
.ydd{bottom:752.933333pt;}
.yff{bottom:754.373333pt;}
.y60{bottom:762.373333pt;}
.y9{bottom:762.533333pt;}
.y37{bottom:762.693333pt;}
.ydc{bottom:768.533333pt;}
.yfe{bottom:769.973333pt;}
.y5f{bottom:777.973333pt;}
.y36{bottom:778.373333pt;}
.y8{bottom:781.893333pt;}
.ydb{bottom:792.453333pt;}
.yfd{bottom:793.653333pt;}
.y35{bottom:793.973333pt;}
.y7{bottom:797.893333pt;}
.yfc{bottom:809.253333pt;}
.y34{bottom:809.653333pt;}
.y33{bottom:825.253333pt;}
.yda{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.yfb{bottom:832.853333pt;}
.y8d{bottom:833.253333pt;}
.y32{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y5e{bottom:856.533333pt;}
.y8c{bottom:864.853333pt;}
.yd9{bottom:868.613333pt;}
.y5d{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y8b{bottom:880.533333pt;}
.yd8{bottom:884.213333pt;}
.y30{bottom:888.133333pt;}
.yfa{bottom:895.813333pt;}
.y8a{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.y89{bottom:911.840000pt;}
.y2e{bottom:919.440000pt;}
.yd7{bottom:923.760000pt;}
.y88{bottom:927.440000pt;}
.y2d{bottom:935.040000pt;}
.y87{bottom:943.040000pt;}
.y2c{bottom:950.720000pt;}
.y86{bottom:958.720000pt;}
.y2b{bottom:966.320000pt;}
.yd6{bottom:966.720000pt;}
.y85{bottom:974.320000pt;}
.yd5{bottom:982.320000pt;}
.y84{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x10{left:66.399988pt;}
.x6{left:69.999988pt;}
.x9{left:71.679988pt;}
.x13{left:77.359988pt;}
.xd{left:83.359988pt;}
.x4{left:84.479988pt;}
.x15{left:98.879988pt;}
.x2{left:180.266655pt;}
.x7{left:223.946655pt;}
.xe{left:275.226655pt;}
.xa{left:279.946655pt;}
.x11{left:338.586655pt;}
.x14{left:379.706655pt;}
.xb{left:396.986655pt;}
.x5{left:679.013322pt;}
.xc{left:682.053322pt;}
.x8{left:690.053322pt;}
.xf{left:694.053322pt;}
.x3{left:704.053322pt;}
.x12{left:708.053322pt;}
}




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