
    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_d52a441c0668e731274c4f21.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_3f6e385453036d491ce985d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_7382ca65c79d56d878a61863.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_d94ea26814f8a82ae5d47e9c.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_88d5b00950d117e15d129511.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_5fd4ae40cc76462ca4473cd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2750459d16699a31a32c1982.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_3d80e334306d43a2555952ef.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9bf0cf018cc8e5683d178fa5.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012000px;}
.lsb{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.152000px;}
.ls9{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.584000px;}
.lsf{letter-spacing:2.160000px;}
.ls10{letter-spacing:17.424000px;}
.ls11{letter-spacing:43.920000px;}
.lse{letter-spacing:53.424000px;}
.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:-19.584000px;}
.ws8{word-spacing:-19.440000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.352000px;}
.ws7{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-3.849120px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.390400px;}
._5{width:3.981600px;}
._4{width:5.230560px;}
._6{width:6.369120px;}
._13{width:7.375200px;}
._a{width:8.436000px;}
._8{width:9.936000px;}
._9{width:10.944000px;}
._e{width:11.969280px;}
._f{width:13.118400px;}
._10{width:14.506560px;}
._22{width:15.522720px;}
._b{width:16.582560px;}
._c{width:19.359360px;}
._2b{width:20.367840px;}
._12{width:21.382080px;}
._11{width:22.965120px;}
._16{width:24.216960px;}
._15{width:25.373760px;}
._14{width:26.904960px;}
._2d{width:27.956640px;}
._2a{width:29.050560px;}
._29{width:30.326400px;}
._2e{width:31.704480px;}
._17{width:33.264000px;}
._7{width:35.026560px;}
._28{width:36.774720px;}
._24{width:42.984000px;}
._33{width:43.985760px;}
._26{width:45.000000px;}
._34{width:52.488000px;}
._31{width:56.776320px;}
._2f{width:58.109760px;}
._2c{width:59.256000px;}
._30{width:60.462720px;}
._36{width:68.031360px;}
._37{width:69.284160px;}
._35{width:70.488000px;}
._32{width:76.590720px;}
._21{width:80.478720px;}
._20{width:82.601280px;}
._27{width:85.464000px;}
._1a{width:103.858560px;}
._1b{width:105.750720px;}
._1d{width:107.902560px;}
._25{width:114.840000px;}
._23{width:131.088000px;}
._19{width:135.296640px;}
._1c{width:140.290560px;}
._1e{width:190.690560px;}
._1f{width:204.117120px;}
._18{width:225.682560px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y64{bottom:7.200000px;}
.y7c{bottom:7.230000px;}
.y68{bottom:7.560000px;}
.y8a{bottom:7.605000px;}
.y6b{bottom:7.920000px;}
.yc3{bottom:8.280000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y63{bottom:30.960000px;}
.y7b{bottom:30.990000px;}
.y6d{bottom:31.320000px;}
.yb6{bottom:31.350000px;}
.y67{bottom:31.365000px;}
.y6a{bottom:31.680000px;}
.y80{bottom:31.710000px;}
.yc2{bottom:32.400000px;}
.y62{bottom:55.080000px;}
.y7a{bottom:55.110000px;}
.y66{bottom:55.125000px;}
.y86{bottom:55.440000px;}
.y7f{bottom:55.470000px;}
.y8f{bottom:55.485000px;}
.yc1{bottom:56.154000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y8c{bottom:78.840000px;}
.y79{bottom:78.870000px;}
.ybb{bottom:78.885000px;}
.ybe{bottom:79.230000px;}
.y89{bottom:79.245000px;}
.y78{bottom:102.630000px;}
.yb0{bottom:102.645000px;}
.ybd{bottom:102.990000px;}
.yee{bottom:106.236000px;}
.yc0{bottom:113.076000px;}
.y34{bottom:115.596000px;}
.y77{bottom:126.390000px;}
.yaf{bottom:126.405000px;}
.y75{bottom:127.116000px;}
.yab{bottom:127.836000px;}
.yed{bottom:129.996000px;}
.y60{bottom:131.796000px;}
.y33{bottom:139.716000px;}
.y74{bottom:150.870000px;}
.yaa{bottom:151.590000px;}
.yec{bottom:153.750000px;}
.y5f{bottom:155.550000px;}
.y32{bottom:163.470000px;}
.y87{bottom:164.910000px;}
.y73{bottom:174.630000px;}
.ya9{bottom:175.350000px;}
.yeb{bottom:177.870000px;}
.y5e{bottom:179.310000px;}
.ybf{bottom:186.150000px;}
.y31{bottom:187.230000px;}
.y72{bottom:198.435000px;}
.ya8{bottom:199.155000px;}
.yea{bottom:201.675000px;}
.y5d{bottom:203.115000px;}
.y30{bottom:211.035000px;}
.y85{bottom:213.195000px;}
.y71{bottom:222.555000px;}
.ya7{bottom:223.275000px;}
.ye9{bottom:225.435000px;}
.y5c{bottom:226.875000px;}
.y2f{bottom:234.795000px;}
.y70{bottom:246.315000px;}
.ya6{bottom:247.035000px;}
.ye8{bottom:249.195000px;}
.y5b{bottom:250.635000px;}
.y2e{bottom:258.555000px;}
.y6f{bottom:270.075000px;}
.ya5{bottom:270.795000px;}
.ye7{bottom:272.955000px;}
.y5a{bottom:274.395000px;}
.ybc{bottom:281.955000px;}
.y2d{bottom:282.315000px;}
.y84{bottom:285.555000px;}
.y6e{bottom:286.995000px;}
.ya4{bottom:294.555000px;}
.ye6{bottom:296.715000px;}
.y59{bottom:298.155000px;}
.y2c{bottom:306.075000px;}
.ya3{bottom:318.315000px;}
.ye5{bottom:320.505000px;}
.y58{bottom:321.945000px;}
.y2b{bottom:330.225000px;}
.y6c{bottom:335.265000px;}
.ya2{bottom:342.105000px;}
.ye4{bottom:344.265000px;}
.y57{bottom:346.065000px;}
.y2a{bottom:353.985000px;}
.y83{bottom:357.585000px;}
.ya1{bottom:365.865000px;}
.ye3{bottom:368.385000px;}
.y56{bottom:369.825000px;}
.y29{bottom:377.745000px;}
.y69{bottom:383.505000px;}
.ya0{bottom:389.625000px;}
.ye2{bottom:392.145000px;}
.y55{bottom:393.585000px;}
.y28{bottom:401.505000px;}
.yba{bottom:401.865000px;}
.y9f{bottom:413.745000px;}
.ye1{bottom:415.905000px;}
.y54{bottom:417.345000px;}
.y27{bottom:425.265000px;}
.y82{bottom:429.945000px;}
.y65{bottom:432.105000px;}
.y9e{bottom:437.505000px;}
.ye0{bottom:439.665000px;}
.y53{bottom:441.105000px;}
.y26{bottom:449.070000px;}
.y9d{bottom:461.310000px;}
.ydf{bottom:463.470000px;}
.y52{bottom:464.910000px;}
.y25{bottom:472.830000px;}
.y81{bottom:478.230000px;}
.y9c{bottom:485.070000px;}
.yde{bottom:487.230000px;}
.y51{bottom:488.670000px;}
.y24{bottom:496.590000px;}
.yb9{bottom:498.030000px;}
.y61{bottom:504.150000px;}
.y9b{bottom:508.830000px;}
.ydd{bottom:510.990000px;}
.y50{bottom:512.430000px;}
.y23{bottom:520.350000px;}
.y9a{bottom:532.590000px;}
.ydc{bottom:534.750000px;}
.y4f{bottom:536.550000px;}
.y22{bottom:544.470000px;}
.yb8{bottom:546.270000px;}
.y7e{bottom:550.230000px;}
.y99{bottom:556.350000px;}
.ydb{bottom:558.870000px;}
.y4e{bottom:560.310000px;}
.y21{bottom:568.230000px;}
.y98{bottom:580.140000px;}
.yda{bottom:582.660000px;}
.y4d{bottom:584.100000px;}
.y20{bottom:592.020000px;}
.y97{bottom:604.260000px;}
.yd9{bottom:606.420000px;}
.y4c{bottom:607.860000px;}
.y1f{bottom:615.780000px;}
.yb7{bottom:618.300000px;}
.y7d{bottom:622.620000px;}
.y96{bottom:628.020000px;}
.yd8{bottom:630.180000px;}
.yf1{bottom:631.260000px;}
.y4b{bottom:631.620000px;}
.y1e{bottom:639.540000px;}
.y95{bottom:651.780000px;}
.yd7{bottom:653.940000px;}
.yf0{bottom:655.020000px;}
.y4a{bottom:655.380000px;}
.y1d{bottom:662.940000px;}
.y94{bottom:675.540000px;}
.yd6{bottom:677.700000px;}
.y49{bottom:679.140000px;}
.y1c{bottom:687.060000px;}
.yb5{bottom:690.660000px;}
.y76{bottom:694.620000px;}
.y93{bottom:699.330000px;}
.yd5{bottom:701.490000px;}
.y48{bottom:702.930000px;}
.y1b{bottom:710.850000px;}
.y92{bottom:723.090000px;}
.yd4{bottom:725.250000px;}
.y47{bottom:727.050000px;}
.y1a{bottom:734.970000px;}
.y91{bottom:746.850000px;}
.yd3{bottom:749.010000px;}
.yf2{bottom:750.450000px;}
.y46{bottom:750.810000px;}
.y19{bottom:758.730000px;}
.yb4{bottom:762.690000px;}
.y90{bottom:770.610000px;}
.yd2{bottom:773.130000px;}
.y45{bottom:774.570000px;}
.y18{bottom:782.490000px;}
.y8e{bottom:787.530000px;}
.yd1{bottom:796.890000px;}
.y44{bottom:798.330000px;}
.y17{bottom:806.250000px;}
.yb3{bottom:811.290000px;}
.yd0{bottom:820.650000px;}
.y43{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.ycf{bottom:844.455000px;}
.y42{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.yb2{bottom:859.575000px;}
.yce{bottom:868.215000px;}
.y41{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.y8d{bottom:883.695000px;}
.ycd{bottom:891.975000px;}
.y40{bottom:893.415000px;}
.y13{bottom:901.335000px;}
.ycc{bottom:915.735000px;}
.y3f{bottom:917.175000px;}
.y12{bottom:925.455000px;}
.yb1{bottom:931.575000px;}
.ycb{bottom:939.495000px;}
.y3e{bottom:941.295000px;}
.y11{bottom:949.215000px;}
.yca{bottom:963.645000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:973.005000px;}
.y8b{bottom:979.845000px;}
.yae{bottom:980.205000px;}
.yc9{bottom:987.405000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.yc8{bottom:1011.165000px;}
.y3b{bottom:1012.605000px;}
.ye{bottom:1020.165000px;}
.yc7{bottom:1034.925000px;}
.y3a{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.yc6{bottom:1058.685000px;}
.y39{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y88{bottom:1075.605000px;}
.yc5{bottom:1082.490000px;}
.yef{bottom:1083.570000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1091.850000px;}
.yc4{bottom:1099.410000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.yad{bottom:1131.450000px;}
.y36{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.yac{bottom:1155.210000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.he{height:47.520000px;}
.hf{height:47.556000px;}
.hd{height:47.880000px;}
.h18{height:47.916000px;}
.h7{height:50.229844px;}
.ha{height:50.484375px;}
.h11{height:50.800781px;}
.h4{height:55.147500px;}
.h1c{height:59.343750px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h12{height:71.280000px;}
.hc{height:71.316000px;}
.h13{height:71.640000px;}
.hb{height:71.676000px;}
.h1a{height:72.360000px;}
.h2{height:72.562500px;}
.h1b{height:74.004654px;}
.h15{height:95.040000px;}
.h16{height:95.076000px;}
.h14{height:95.436000px;}
.h8{height:97.233750px;}
.h19{height:119.196000px;}
.h17{height:142.956000px;}
.h10{height:142.992000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:58.680000px;}
.wb{width:60.156000px;}
.w13{width:69.516000px;}
.w16{width:69.840000px;}
.wd{width:71.280000px;}
.w12{width:79.596000px;}
.w14{width:79.956000px;}
.wc{width:89.676000px;}
.wa{width:90.036000px;}
.we{width:97.992000px;}
.w11{width:99.756000px;}
.w9{width:101.916000px;}
.w10{width:103.356000px;}
.w4{width:104.076000px;}
.w15{width:110.196000px;}
.w7{width:134.676000px;}
.w5{width:141.192000px;}
.w6{width:190.155000px;}
.w8{width:200.595000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x23{left:2.160000px;}
.x15{left:7.560000px;}
.x12{left:9.360000px;}
.x8{left:43.590000px;}
.x5{left:95.796000px;}
.x20{left:104.796000px;}
.x11{left:112.356000px;}
.x29{left:127.835987px;}
.x10{left:135.035987px;}
.x1f{left:144.431987px;}
.xb{left:149.111987px;}
.x17{left:160.634987px;}
.xd{left:188.354987px;}
.x3{left:190.874987px;}
.x18{left:199.515000px;}
.x21{left:205.275000px;}
.x13{left:254.265000px;}
.x22{left:285.945000px;}
.x6{left:290.634000px;}
.xe{left:296.024987px;}
.xa{left:321.224987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x19{left:351.150000px;}
.x24{left:356.190000px;}
.x7{left:394.710000px;}
.xc{left:396.869987px;}
.x25{left:436.860000px;}
.x1a{left:441.540000px;}
.x14{left:445.140000px;}
.xf{left:446.579987px;}
.x9{left:498.780000px;}
.x1b{left:513.540000px;}
.x26{left:547.770000px;}
.x16{left:580.530000px;}
.x1c{left:612.255000px;}
.x27{left:628.095000px;}
.x1d{left:671.655000px;}
.x28{left:698.655000px;}
.x1e{left:742.244987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.010667pt;}
.lsb{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.024000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.408000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls10{letter-spacing:15.488000pt;}
.ls11{letter-spacing:39.040000pt;}
.lse{letter-spacing:47.488000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.424000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-3.421440pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.124800pt;}
._5{width:3.539200pt;}
._4{width:4.649387pt;}
._6{width:5.661440pt;}
._13{width:6.555733pt;}
._a{width:7.498667pt;}
._8{width:8.832000pt;}
._9{width:9.728000pt;}
._e{width:10.639360pt;}
._f{width:11.660800pt;}
._10{width:12.894720pt;}
._22{width:13.797973pt;}
._b{width:14.740053pt;}
._c{width:17.208320pt;}
._2b{width:18.104747pt;}
._12{width:19.006293pt;}
._11{width:20.413440pt;}
._16{width:21.526187pt;}
._15{width:22.554453pt;}
._14{width:23.915520pt;}
._2d{width:24.850347pt;}
._2a{width:25.822720pt;}
._29{width:26.956800pt;}
._2e{width:28.181760pt;}
._17{width:29.568000pt;}
._7{width:31.134720pt;}
._28{width:32.688640pt;}
._24{width:38.208000pt;}
._33{width:39.098453pt;}
._26{width:40.000000pt;}
._34{width:46.656000pt;}
._31{width:50.467840pt;}
._2f{width:51.653120pt;}
._2c{width:52.672000pt;}
._30{width:53.744640pt;}
._36{width:60.472320pt;}
._37{width:61.585920pt;}
._35{width:62.656000pt;}
._32{width:68.080640pt;}
._21{width:71.536640pt;}
._20{width:73.423360pt;}
._27{width:75.968000pt;}
._1a{width:92.318720pt;}
._1b{width:94.000640pt;}
._1d{width:95.913387pt;}
._25{width:102.080000pt;}
._23{width:116.522667pt;}
._19{width:120.263680pt;}
._1c{width:124.702720pt;}
._1e{width:169.502720pt;}
._1f{width:181.437440pt;}
._18{width:200.606720pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:6.400000pt;}
.y7c{bottom:6.426667pt;}
.y68{bottom:6.720000pt;}
.y8a{bottom:6.760000pt;}
.y6b{bottom:7.040000pt;}
.yc3{bottom:7.360000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y63{bottom:27.520000pt;}
.y7b{bottom:27.546667pt;}
.y6d{bottom:27.840000pt;}
.yb6{bottom:27.866667pt;}
.y67{bottom:27.880000pt;}
.y6a{bottom:28.160000pt;}
.y80{bottom:28.186667pt;}
.yc2{bottom:28.800000pt;}
.y62{bottom:48.960000pt;}
.y7a{bottom:48.986667pt;}
.y66{bottom:49.000000pt;}
.y86{bottom:49.280000pt;}
.y7f{bottom:49.306667pt;}
.y8f{bottom:49.320000pt;}
.yc1{bottom:49.914667pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y8c{bottom:70.080000pt;}
.y79{bottom:70.106667pt;}
.ybb{bottom:70.120000pt;}
.ybe{bottom:70.426667pt;}
.y89{bottom:70.440000pt;}
.y78{bottom:91.226667pt;}
.yb0{bottom:91.240000pt;}
.ybd{bottom:91.546667pt;}
.yee{bottom:94.432000pt;}
.yc0{bottom:100.512000pt;}
.y34{bottom:102.752000pt;}
.y77{bottom:112.346667pt;}
.yaf{bottom:112.360000pt;}
.y75{bottom:112.992000pt;}
.yab{bottom:113.632000pt;}
.yed{bottom:115.552000pt;}
.y60{bottom:117.152000pt;}
.y33{bottom:124.192000pt;}
.y74{bottom:134.106667pt;}
.yaa{bottom:134.746667pt;}
.yec{bottom:136.666667pt;}
.y5f{bottom:138.266667pt;}
.y32{bottom:145.306667pt;}
.y87{bottom:146.586667pt;}
.y73{bottom:155.226667pt;}
.ya9{bottom:155.866667pt;}
.yeb{bottom:158.106667pt;}
.y5e{bottom:159.386667pt;}
.ybf{bottom:165.466667pt;}
.y31{bottom:166.426667pt;}
.y72{bottom:176.386667pt;}
.ya8{bottom:177.026667pt;}
.yea{bottom:179.266667pt;}
.y5d{bottom:180.546667pt;}
.y30{bottom:187.586667pt;}
.y85{bottom:189.506667pt;}
.y71{bottom:197.826667pt;}
.ya7{bottom:198.466667pt;}
.ye9{bottom:200.386667pt;}
.y5c{bottom:201.666667pt;}
.y2f{bottom:208.706667pt;}
.y70{bottom:218.946667pt;}
.ya6{bottom:219.586667pt;}
.ye8{bottom:221.506667pt;}
.y5b{bottom:222.786667pt;}
.y2e{bottom:229.826667pt;}
.y6f{bottom:240.066667pt;}
.ya5{bottom:240.706667pt;}
.ye7{bottom:242.626667pt;}
.y5a{bottom:243.906667pt;}
.ybc{bottom:250.626667pt;}
.y2d{bottom:250.946667pt;}
.y84{bottom:253.826667pt;}
.y6e{bottom:255.106667pt;}
.ya4{bottom:261.826667pt;}
.ye6{bottom:263.746667pt;}
.y59{bottom:265.026667pt;}
.y2c{bottom:272.066667pt;}
.ya3{bottom:282.946667pt;}
.ye5{bottom:284.893333pt;}
.y58{bottom:286.173333pt;}
.y2b{bottom:293.533333pt;}
.y6c{bottom:298.013333pt;}
.ya2{bottom:304.093333pt;}
.ye4{bottom:306.013333pt;}
.y57{bottom:307.613333pt;}
.y2a{bottom:314.653333pt;}
.y83{bottom:317.853333pt;}
.ya1{bottom:325.213333pt;}
.ye3{bottom:327.453333pt;}
.y56{bottom:328.733333pt;}
.y29{bottom:335.773333pt;}
.y69{bottom:340.893333pt;}
.ya0{bottom:346.333333pt;}
.ye2{bottom:348.573333pt;}
.y55{bottom:349.853333pt;}
.y28{bottom:356.893333pt;}
.yba{bottom:357.213333pt;}
.y9f{bottom:367.773333pt;}
.ye1{bottom:369.693333pt;}
.y54{bottom:370.973333pt;}
.y27{bottom:378.013333pt;}
.y82{bottom:382.173333pt;}
.y65{bottom:384.093333pt;}
.y9e{bottom:388.893333pt;}
.ye0{bottom:390.813333pt;}
.y53{bottom:392.093333pt;}
.y26{bottom:399.173333pt;}
.y9d{bottom:410.053333pt;}
.ydf{bottom:411.973333pt;}
.y52{bottom:413.253333pt;}
.y25{bottom:420.293333pt;}
.y81{bottom:425.093333pt;}
.y9c{bottom:431.173333pt;}
.yde{bottom:433.093333pt;}
.y51{bottom:434.373333pt;}
.y24{bottom:441.413333pt;}
.yb9{bottom:442.693333pt;}
.y61{bottom:448.133333pt;}
.y9b{bottom:452.293333pt;}
.ydd{bottom:454.213333pt;}
.y50{bottom:455.493333pt;}
.y23{bottom:462.533333pt;}
.y9a{bottom:473.413333pt;}
.ydc{bottom:475.333333pt;}
.y4f{bottom:476.933333pt;}
.y22{bottom:483.973333pt;}
.yb8{bottom:485.573333pt;}
.y7e{bottom:489.093333pt;}
.y99{bottom:494.533333pt;}
.ydb{bottom:496.773333pt;}
.y4e{bottom:498.053333pt;}
.y21{bottom:505.093333pt;}
.y98{bottom:515.680000pt;}
.yda{bottom:517.920000pt;}
.y4d{bottom:519.200000pt;}
.y20{bottom:526.240000pt;}
.y97{bottom:537.120000pt;}
.yd9{bottom:539.040000pt;}
.y4c{bottom:540.320000pt;}
.y1f{bottom:547.360000pt;}
.yb7{bottom:549.600000pt;}
.y7d{bottom:553.440000pt;}
.y96{bottom:558.240000pt;}
.yd8{bottom:560.160000pt;}
.yf1{bottom:561.120000pt;}
.y4b{bottom:561.440000pt;}
.y1e{bottom:568.480000pt;}
.y95{bottom:579.360000pt;}
.yd7{bottom:581.280000pt;}
.yf0{bottom:582.240000pt;}
.y4a{bottom:582.560000pt;}
.y1d{bottom:589.280000pt;}
.y94{bottom:600.480000pt;}
.yd6{bottom:602.400000pt;}
.y49{bottom:603.680000pt;}
.y1c{bottom:610.720000pt;}
.yb5{bottom:613.920000pt;}
.y76{bottom:617.440000pt;}
.y93{bottom:621.626667pt;}
.yd5{bottom:623.546667pt;}
.y48{bottom:624.826667pt;}
.y1b{bottom:631.866667pt;}
.y92{bottom:642.746667pt;}
.yd4{bottom:644.666667pt;}
.y47{bottom:646.266667pt;}
.y1a{bottom:653.306667pt;}
.y91{bottom:663.866667pt;}
.yd3{bottom:665.786667pt;}
.yf2{bottom:667.066667pt;}
.y46{bottom:667.386667pt;}
.y19{bottom:674.426667pt;}
.yb4{bottom:677.946667pt;}
.y90{bottom:684.986667pt;}
.yd2{bottom:687.226667pt;}
.y45{bottom:688.506667pt;}
.y18{bottom:695.546667pt;}
.y8e{bottom:700.026667pt;}
.yd1{bottom:708.346667pt;}
.y44{bottom:709.626667pt;}
.y17{bottom:716.666667pt;}
.yb3{bottom:721.146667pt;}
.yd0{bottom:729.466667pt;}
.y43{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.ycf{bottom:750.626667pt;}
.y42{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.yb2{bottom:764.066667pt;}
.yce{bottom:771.746667pt;}
.y41{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.y8d{bottom:785.506667pt;}
.ycd{bottom:792.866667pt;}
.y40{bottom:794.146667pt;}
.y13{bottom:801.186667pt;}
.ycc{bottom:813.986667pt;}
.y3f{bottom:815.266667pt;}
.y12{bottom:822.626667pt;}
.yb1{bottom:828.066667pt;}
.ycb{bottom:835.106667pt;}
.y3e{bottom:836.706667pt;}
.y11{bottom:843.746667pt;}
.yca{bottom:856.573333pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.893333pt;}
.y8b{bottom:870.973333pt;}
.yae{bottom:871.293333pt;}
.yc9{bottom:877.693333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.yc8{bottom:898.813333pt;}
.y3b{bottom:900.093333pt;}
.ye{bottom:906.813333pt;}
.yc7{bottom:919.933333pt;}
.y3a{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.yc6{bottom:941.053333pt;}
.y39{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y88{bottom:956.093333pt;}
.yc5{bottom:962.213333pt;}
.yef{bottom:963.173333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:970.533333pt;}
.yc4{bottom:977.253333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.yad{bottom:1005.733333pt;}
.y36{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.yac{bottom:1026.853333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.he{height:42.240000pt;}
.hf{height:42.272000pt;}
.hd{height:42.560000pt;}
.h18{height:42.592000pt;}
.h7{height:44.648750pt;}
.ha{height:44.875000pt;}
.h11{height:45.156250pt;}
.h4{height:49.020000pt;}
.h1c{height:52.750000pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h12{height:63.360000pt;}
.hc{height:63.392000pt;}
.h13{height:63.680000pt;}
.hb{height:63.712000pt;}
.h1a{height:64.320000pt;}
.h2{height:64.500000pt;}
.h1b{height:65.781915pt;}
.h15{height:84.480000pt;}
.h16{height:84.512000pt;}
.h14{height:84.832000pt;}
.h8{height:86.430000pt;}
.h19{height:105.952000pt;}
.h17{height:127.072000pt;}
.h10{height:127.104000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:52.160000pt;}
.wb{width:53.472000pt;}
.w13{width:61.792000pt;}
.w16{width:62.080000pt;}
.wd{width:63.360000pt;}
.w12{width:70.752000pt;}
.w14{width:71.072000pt;}
.wc{width:79.712000pt;}
.wa{width:80.032000pt;}
.we{width:87.104000pt;}
.w11{width:88.672000pt;}
.w9{width:90.592000pt;}
.w10{width:91.872000pt;}
.w4{width:92.512000pt;}
.w15{width:97.952000pt;}
.w7{width:119.712000pt;}
.w5{width:125.504000pt;}
.w6{width:169.026667pt;}
.w8{width:178.306667pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x23{left:1.920000pt;}
.x15{left:6.720000pt;}
.x12{left:8.320000pt;}
.x8{left:38.746667pt;}
.x5{left:85.152000pt;}
.x20{left:93.152000pt;}
.x11{left:99.872000pt;}
.x29{left:113.631988pt;}
.x10{left:120.031988pt;}
.x1f{left:128.383988pt;}
.xb{left:132.543988pt;}
.x17{left:142.786655pt;}
.xd{left:167.426655pt;}
.x3{left:169.666655pt;}
.x18{left:177.346667pt;}
.x21{left:182.466667pt;}
.x13{left:226.013333pt;}
.x22{left:254.173333pt;}
.x6{left:258.341333pt;}
.xe{left:263.133322pt;}
.xa{left:285.533322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x19{left:312.133333pt;}
.x24{left:316.613333pt;}
.x7{left:350.853333pt;}
.xc{left:352.773322pt;}
.x25{left:388.320000pt;}
.x1a{left:392.480000pt;}
.x14{left:395.680000pt;}
.xf{left:396.959988pt;}
.x9{left:443.360000pt;}
.x1b{left:456.480000pt;}
.x26{left:486.906667pt;}
.x16{left:516.026667pt;}
.x1c{left:544.226667pt;}
.x27{left:558.306667pt;}
.x1d{left:597.026667pt;}
.x28{left:621.026667pt;}
.x1e{left:659.773322pt;}
.x1{left:709.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; }
  