
    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_c4d30720c2820dff788ca756.woff')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_e68c3833a46c18cf6f94ccef.woff')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_2aa3bc9a0a682bdc23791931.woff')format("woff");}.ff3{font-family:ff3;line-height:0.883301;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_ba5f63cdcb796a0e07e2859d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f1b545db02035af094e6e3c5.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7ae7a27152d06bbf5c4154e8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_2fe4ca18012070610f364ac5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7a099f7122e187ab2068ea48.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6385b72da329e100e519daef.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2aab7fca2d1290e6777aee5a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.980957;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_8bec0c84ec576c70bb78a42e.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-1.944000px;}
.ls1c{letter-spacing:-1.296000px;}
.ls14{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012000px;}
.ls16{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.156000px;}
.ls10{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.665280px;}
.ls0{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.732000px;}
.ls2{letter-spacing:0.924000px;}
.ls17{letter-spacing:1.224000px;}
.ls19{letter-spacing:1.236000px;}
.ls5{letter-spacing:5.040000px;}
.lsa{letter-spacing:12.240000px;}
.ls7{letter-spacing:31.824000px;}
.ls8{letter-spacing:34.704000px;}
.ls1d{letter-spacing:53.424000px;}
.ls6{letter-spacing:134.220000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.wsa{word-spacing:-18.648000px;}
.ws4{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.496000px;}
.ws9{word-spacing:-17.208000px;}
.wsb{word-spacing:-16.704000px;}
.ws5{word-spacing:-14.328000px;}
.ws1{word-spacing:-11.880000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-4.573440px;}
._b{margin-left:-3.531360px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.914560px;}
._4{width:4.032000px;}
._5{width:5.760000px;}
._c{width:7.142400px;}
._d{width:8.619840px;}
._7{width:10.601280px;}
._6{width:12.024000px;}
._e{width:13.096320px;}
._12{width:14.554560px;}
._13{width:15.816960px;}
._11{width:16.920000px;}
._16{width:19.606560px;}
._1b{width:21.058560px;}
._a{width:22.213440px;}
._8{width:23.218560px;}
._9{width:25.024320px;}
._f{width:26.530560px;}
._19{width:28.854720px;}
._1a{width:30.346560px;}
._1c{width:33.768000px;}
._17{width:37.627680px;}
._18{width:39.031200px;}
._10{width:40.210560px;}
._15{width:60.436800px;}
._14{width:296.812800px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y62{bottom:-21.600000px;}
.y3e{bottom:-20.520000px;}
.y66{bottom:-19.485000px;}
.y5f{bottom:-19.440000px;}
.y68{bottom:-12.600000px;}
.y54{bottom:-1.800000px;}
.y0{bottom:0.000000px;}
.y52{bottom:0.720000px;}
.y4e{bottom:1.080000px;}
.y45{bottom:1.800000px;}
.y43{bottom:2.520000px;}
.y44{bottom:2.880000px;}
.y3d{bottom:3.240000px;}
.y47{bottom:3.600000px;}
.y40{bottom:3.960000px;}
.y41{bottom:4.320000px;}
.y61{bottom:4.680000px;}
.y5e{bottom:5.760000px;}
.y5d{bottom:6.840000px;}
.y5b{bottom:7.560000px;}
.y49{bottom:7.920000px;}
.y4a{bottom:8.280000px;}
.y38{bottom:9.405000px;}
.y56{bottom:9.720000px;}
.y57{bottom:10.080000px;}
.y64{bottom:10.440000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y67{bottom:12.600000px;}
.y50{bottom:15.480000px;}
.y4c{bottom:15.840000px;}
.y3a{bottom:16.920000px;}
.y3b{bottom:17.280000px;}
.y53{bottom:23.400000px;}
.y51{bottom:24.480000px;}
.y4d{bottom:24.840000px;}
.y3c{bottom:27.000000px;}
.y8{bottom:57.240000px;}
.y59{bottom:73.125000px;}
.y5{bottom:73.476000px;}
.y98{bottom:110.916000px;}
.y75{bottom:113.436000px;}
.y97{bottom:134.676000px;}
.y74{bottom:137.196000px;}
.yba{bottom:149.076000px;}
.y96{bottom:158.430000px;}
.y73{bottom:160.950000px;}
.yb9{bottom:172.830000px;}
.y95{bottom:181.830000px;}
.y72{bottom:184.710000px;}
.yb8{bottom:196.635000px;}
.y94{bottom:206.355000px;}
.y71{bottom:208.515000px;}
.y30{bottom:211.035000px;}
.yb7{bottom:220.755000px;}
.y93{bottom:230.115000px;}
.y70{bottom:232.275000px;}
.y2f{bottom:234.795000px;}
.yb6{bottom:244.155000px;}
.yce{bottom:250.635000px;}
.y92{bottom:253.875000px;}
.y6f{bottom:256.395000px;}
.y2e{bottom:258.555000px;}
.yb5{bottom:268.275000px;}
.ycd{bottom:274.395000px;}
.y91{bottom:277.275000px;}
.y6e{bottom:281.595000px;}
.y2d{bottom:282.315000px;}
.yb4{bottom:292.035000px;}
.ycc{bottom:298.155000px;}
.y90{bottom:301.395000px;}
.y6d{bottom:305.355000px;}
.y2c{bottom:306.075000px;}
.yb3{bottom:315.795000px;}
.ycb{bottom:321.585000px;}
.y8f{bottom:325.185000px;}
.y6c{bottom:329.145000px;}
.y2b{bottom:329.865000px;}
.yb2{bottom:339.585000px;}
.yca{bottom:345.705000px;}
.y8e{bottom:348.945000px;}
.y6b{bottom:352.905000px;}
.y2a{bottom:353.625000px;}
.yb1{bottom:363.345000px;}
.yc9{bottom:369.825000px;}
.y8d{bottom:372.705000px;}
.y6a{bottom:376.665000px;}
.y29{bottom:377.745000px;}
.yb0{bottom:387.105000px;}
.yc8{bottom:393.585000px;}
.y8c{bottom:396.465000px;}
.y69{bottom:400.065000px;}
.y28{bottom:401.505000px;}
.yaf{bottom:411.225000px;}
.y58{bottom:417.345000px;}
.y8b{bottom:420.585000px;}
.y27{bottom:425.265000px;}
.yae{bottom:434.625000px;}
.yc7{bottom:441.105000px;}
.y8a{bottom:444.345000px;}
.y65{bottom:447.990000px;}
.y26{bottom:449.070000px;}
.yad{bottom:454.470000px;}
.yc6{bottom:464.910000px;}
.y89{bottom:468.150000px;}
.y63{bottom:471.750000px;}
.y25{bottom:472.830000px;}
.yc5{bottom:488.670000px;}
.y88{bottom:491.910000px;}
.y24{bottom:496.590000px;}
.y60{bottom:503.070000px;}
.yc4{bottom:512.430000px;}
.y87{bottom:515.670000px;}
.y23{bottom:520.350000px;}
.y5c{bottom:524.670000px;}
.yc3{bottom:536.190000px;}
.y86{bottom:539.430000px;}
.y22{bottom:544.110000px;}
.y5a{bottom:548.430000px;}
.yc2{bottom:559.950000px;}
.y85{bottom:563.190000px;}
.y21{bottom:568.230000px;}
.y55{bottom:573.300000px;}
.yc1{bottom:584.100000px;}
.y84{bottom:586.980000px;}
.y20{bottom:592.020000px;}
.y4f{bottom:602.820000px;}
.yc0{bottom:607.860000px;}
.y83{bottom:611.100000px;}
.y1f{bottom:615.780000px;}
.ybf{bottom:631.620000px;}
.y82{bottom:634.860000px;}
.y1e{bottom:639.540000px;}
.y4b{bottom:644.220000px;}
.ybe{bottom:655.380000px;}
.y81{bottom:658.620000px;}
.y1d{bottom:663.300000px;}
.ybd{bottom:679.140000px;}
.y80{bottom:682.380000px;}
.y48{bottom:685.980000px;}
.y1c{bottom:687.060000px;}
.yac{bottom:702.930000px;}
.y7f{bottom:706.170000px;}
.y1b{bottom:710.850000px;}
.y46{bottom:712.290000px;}
.yab{bottom:726.690000px;}
.y7e{bottom:729.570000px;}
.y42{bottom:733.170000px;}
.y1a{bottom:734.610000px;}
.yaa{bottom:750.450000px;}
.y3f{bottom:753.330000px;}
.y19{bottom:758.010000px;}
.ya9{bottom:774.570000px;}
.y39{bottom:774.930000px;}
.y7d{bottom:777.450000px;}
.y18{bottom:782.490000px;}
.ya8{bottom:798.330000px;}
.y7c{bottom:801.210000px;}
.y17{bottom:806.250000px;}
.y37{bottom:819.210000px;}
.ya7{bottom:822.090000px;}
.y7b{bottom:825.375000px;}
.y16{bottom:830.055000px;}
.ya6{bottom:845.895000px;}
.y7a{bottom:849.135000px;}
.y15{bottom:853.815000px;}
.y36{bottom:855.255000px;}
.ya5{bottom:869.655000px;}
.y79{bottom:872.895000px;}
.y14{bottom:877.575000px;}
.y35{bottom:879.735000px;}
.ya4{bottom:893.415000px;}
.y78{bottom:896.655000px;}
.y13{bottom:901.335000px;}
.y34{bottom:903.495000px;}
.ya3{bottom:917.175000px;}
.y77{bottom:920.415000px;}
.y12{bottom:925.095000px;}
.y33{bottom:927.255000px;}
.y76{bottom:939.855000px;}
.ya2{bottom:940.935000px;}
.y11{bottom:948.855000px;}
.y32{bottom:951.015000px;}
.ya1{bottom:965.085000px;}
.y31{bottom:970.125000px;}
.y10{bottom:973.005000px;}
.ya0{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.y9f{bottom:1012.605000px;}
.ye{bottom:1020.165000px;}
.y9e{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y9d{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.ybc{bottom:1083.570000px;}
.y9c{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.ybb{bottom:1107.330000px;}
.y9b{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y9a{bottom:1131.450000px;}
.y9{bottom:1149.090000px;}
.y99{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h12{height:19.080000px;}
.h13{height:20.160000px;}
.hf{height:20.520000px;}
.h1b{height:20.880000px;}
.h1a{height:23.040000px;}
.h19{height:23.760000px;}
.h14{height:25.236000px;}
.h5{height:27.000000px;}
.hc{height:28.116000px;}
.h17{height:28.800000px;}
.h1d{height:29.916000px;}
.h1c{height:30.600000px;}
.h16{height:40.680000px;}
.h15{height:41.040000px;}
.hd{height:43.560000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.h11{height:57.867188px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h1e{height:73.975078px;}
.ha{height:73.998281px;}
.he{height:74.004654px;}
.h10{height:74.953125px;}
.h9{height:75.251250px;}
.h8{height:97.233750px;}
.h18{height:154.830000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:60.516000px;}
.w5{width:60.876000px;}
.w4{width:104.076000px;}
.wa{width:162.750000px;}
.w7{width:163.110000px;}
.w3{width:298.905000px;}
.w9{width:450.900000px;}
.w6{width:451.620000px;}
.wb{width:614.370000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x16{left:-1.080000px;}
.x0{left:0.000000px;}
.x15{left:1.080000px;}
.x18{left:7.920000px;}
.x12{left:9.720000px;}
.x17{left:34.596000px;}
.x8{left:43.230000px;}
.x5{left:95.796000px;}
.x11{left:108.756000px;}
.x1c{left:127.835987px;}
.xa{left:148.751987px;}
.x13{left:169.635000px;}
.x1b{left:193.034987px;}
.x3{left:196.274987px;}
.xc{left:232.274987px;}
.x6{left:290.634000px;}
.xd{left:303.584987px;}
.xe{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.xb{left:392.549987px;}
.x7{left:394.710000px;}
.x9{left:498.780000px;}
.x1a{left:558.209987px;}
.xf{left:563.969987px;}
.x19{left:593.489987px;}
.x14{left:621.255000px;}
.x10{left:737.564987px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-1.728000pt;}
.ls1c{letter-spacing:-1.152000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.010667pt;}
.ls16{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.138667pt;}
.ls10{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.591360pt;}
.ls0{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.650667pt;}
.ls2{letter-spacing:0.821333pt;}
.ls17{letter-spacing:1.088000pt;}
.ls19{letter-spacing:1.098667pt;}
.ls5{letter-spacing:4.480000pt;}
.lsa{letter-spacing:10.880000pt;}
.ls7{letter-spacing:28.288000pt;}
.ls8{letter-spacing:30.848000pt;}
.ls1d{letter-spacing:47.488000pt;}
.ls6{letter-spacing:119.306667pt;}
.ws6{word-spacing:-64.000000pt;}
.wsa{word-spacing:-16.576000pt;}
.ws4{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.552000pt;}
.ws9{word-spacing:-15.296000pt;}
.wsb{word-spacing:-14.848000pt;}
.ws5{word-spacing:-12.736000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-4.065280pt;}
._b{margin-left:-3.138987pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.590720pt;}
._4{width:3.584000pt;}
._5{width:5.120000pt;}
._c{width:6.348800pt;}
._d{width:7.662080pt;}
._7{width:9.423360pt;}
._6{width:10.688000pt;}
._e{width:11.641173pt;}
._12{width:12.937387pt;}
._13{width:14.059520pt;}
._11{width:15.040000pt;}
._16{width:17.428053pt;}
._1b{width:18.718720pt;}
._a{width:19.745280pt;}
._8{width:20.638720pt;}
._9{width:22.243840pt;}
._f{width:23.582720pt;}
._19{width:25.648640pt;}
._1a{width:26.974720pt;}
._1c{width:30.016000pt;}
._17{width:33.446827pt;}
._18{width:34.694400pt;}
._10{width:35.742720pt;}
._15{width:53.721600pt;}
._14{width:263.833600pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y62{bottom:-19.200000pt;}
.y3e{bottom:-18.240000pt;}
.y66{bottom:-17.320000pt;}
.y5f{bottom:-17.280000pt;}
.y68{bottom:-11.200000pt;}
.y54{bottom:-1.600000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:0.640000pt;}
.y4e{bottom:0.960000pt;}
.y45{bottom:1.600000pt;}
.y43{bottom:2.240000pt;}
.y44{bottom:2.560000pt;}
.y3d{bottom:2.880000pt;}
.y47{bottom:3.200000pt;}
.y40{bottom:3.520000pt;}
.y41{bottom:3.840000pt;}
.y61{bottom:4.160000pt;}
.y5e{bottom:5.120000pt;}
.y5d{bottom:6.080000pt;}
.y5b{bottom:6.720000pt;}
.y49{bottom:7.040000pt;}
.y4a{bottom:7.360000pt;}
.y38{bottom:8.360000pt;}
.y56{bottom:8.640000pt;}
.y57{bottom:8.960000pt;}
.y64{bottom:9.280000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y67{bottom:11.200000pt;}
.y50{bottom:13.760000pt;}
.y4c{bottom:14.080000pt;}
.y3a{bottom:15.040000pt;}
.y3b{bottom:15.360000pt;}
.y53{bottom:20.800000pt;}
.y51{bottom:21.760000pt;}
.y4d{bottom:22.080000pt;}
.y3c{bottom:24.000000pt;}
.y8{bottom:50.880000pt;}
.y59{bottom:65.000000pt;}
.y5{bottom:65.312000pt;}
.y98{bottom:98.592000pt;}
.y75{bottom:100.832000pt;}
.y97{bottom:119.712000pt;}
.y74{bottom:121.952000pt;}
.yba{bottom:132.512000pt;}
.y96{bottom:140.826667pt;}
.y73{bottom:143.066667pt;}
.yb9{bottom:153.626667pt;}
.y95{bottom:161.626667pt;}
.y72{bottom:164.186667pt;}
.yb8{bottom:174.786667pt;}
.y94{bottom:183.426667pt;}
.y71{bottom:185.346667pt;}
.y30{bottom:187.586667pt;}
.yb7{bottom:196.226667pt;}
.y93{bottom:204.546667pt;}
.y70{bottom:206.466667pt;}
.y2f{bottom:208.706667pt;}
.yb6{bottom:217.026667pt;}
.yce{bottom:222.786667pt;}
.y92{bottom:225.666667pt;}
.y6f{bottom:227.906667pt;}
.y2e{bottom:229.826667pt;}
.yb5{bottom:238.466667pt;}
.ycd{bottom:243.906667pt;}
.y91{bottom:246.466667pt;}
.y6e{bottom:250.306667pt;}
.y2d{bottom:250.946667pt;}
.yb4{bottom:259.586667pt;}
.ycc{bottom:265.026667pt;}
.y90{bottom:267.906667pt;}
.y6d{bottom:271.426667pt;}
.y2c{bottom:272.066667pt;}
.yb3{bottom:280.706667pt;}
.ycb{bottom:285.853333pt;}
.y8f{bottom:289.053333pt;}
.y6c{bottom:292.573333pt;}
.y2b{bottom:293.213333pt;}
.yb2{bottom:301.853333pt;}
.yca{bottom:307.293333pt;}
.y8e{bottom:310.173333pt;}
.y6b{bottom:313.693333pt;}
.y2a{bottom:314.333333pt;}
.yb1{bottom:322.973333pt;}
.yc9{bottom:328.733333pt;}
.y8d{bottom:331.293333pt;}
.y6a{bottom:334.813333pt;}
.y29{bottom:335.773333pt;}
.yb0{bottom:344.093333pt;}
.yc8{bottom:349.853333pt;}
.y8c{bottom:352.413333pt;}
.y69{bottom:355.613333pt;}
.y28{bottom:356.893333pt;}
.yaf{bottom:365.533333pt;}
.y58{bottom:370.973333pt;}
.y8b{bottom:373.853333pt;}
.y27{bottom:378.013333pt;}
.yae{bottom:386.333333pt;}
.yc7{bottom:392.093333pt;}
.y8a{bottom:394.973333pt;}
.y65{bottom:398.213333pt;}
.y26{bottom:399.173333pt;}
.yad{bottom:403.973333pt;}
.yc6{bottom:413.253333pt;}
.y89{bottom:416.133333pt;}
.y63{bottom:419.333333pt;}
.y25{bottom:420.293333pt;}
.yc5{bottom:434.373333pt;}
.y88{bottom:437.253333pt;}
.y24{bottom:441.413333pt;}
.y60{bottom:447.173333pt;}
.yc4{bottom:455.493333pt;}
.y87{bottom:458.373333pt;}
.y23{bottom:462.533333pt;}
.y5c{bottom:466.373333pt;}
.yc3{bottom:476.613333pt;}
.y86{bottom:479.493333pt;}
.y22{bottom:483.653333pt;}
.y5a{bottom:487.493333pt;}
.yc2{bottom:497.733333pt;}
.y85{bottom:500.613333pt;}
.y21{bottom:505.093333pt;}
.y55{bottom:509.600000pt;}
.yc1{bottom:519.200000pt;}
.y84{bottom:521.760000pt;}
.y20{bottom:526.240000pt;}
.y4f{bottom:535.840000pt;}
.yc0{bottom:540.320000pt;}
.y83{bottom:543.200000pt;}
.y1f{bottom:547.360000pt;}
.ybf{bottom:561.440000pt;}
.y82{bottom:564.320000pt;}
.y1e{bottom:568.480000pt;}
.y4b{bottom:572.640000pt;}
.ybe{bottom:582.560000pt;}
.y81{bottom:585.440000pt;}
.y1d{bottom:589.600000pt;}
.ybd{bottom:603.680000pt;}
.y80{bottom:606.560000pt;}
.y48{bottom:609.760000pt;}
.y1c{bottom:610.720000pt;}
.yac{bottom:624.826667pt;}
.y7f{bottom:627.706667pt;}
.y1b{bottom:631.866667pt;}
.y46{bottom:633.146667pt;}
.yab{bottom:645.946667pt;}
.y7e{bottom:648.506667pt;}
.y42{bottom:651.706667pt;}
.y1a{bottom:652.986667pt;}
.yaa{bottom:667.066667pt;}
.y3f{bottom:669.626667pt;}
.y19{bottom:673.786667pt;}
.ya9{bottom:688.506667pt;}
.y39{bottom:688.826667pt;}
.y7d{bottom:691.066667pt;}
.y18{bottom:695.546667pt;}
.ya8{bottom:709.626667pt;}
.y7c{bottom:712.186667pt;}
.y17{bottom:716.666667pt;}
.y37{bottom:728.186667pt;}
.ya7{bottom:730.746667pt;}
.y7b{bottom:733.666667pt;}
.y16{bottom:737.826667pt;}
.ya6{bottom:751.906667pt;}
.y7a{bottom:754.786667pt;}
.y15{bottom:758.946667pt;}
.y36{bottom:760.226667pt;}
.ya5{bottom:773.026667pt;}
.y79{bottom:775.906667pt;}
.y14{bottom:780.066667pt;}
.y35{bottom:781.986667pt;}
.ya4{bottom:794.146667pt;}
.y78{bottom:797.026667pt;}
.y13{bottom:801.186667pt;}
.y34{bottom:803.106667pt;}
.ya3{bottom:815.266667pt;}
.y77{bottom:818.146667pt;}
.y12{bottom:822.306667pt;}
.y33{bottom:824.226667pt;}
.y76{bottom:835.426667pt;}
.ya2{bottom:836.386667pt;}
.y11{bottom:843.426667pt;}
.y32{bottom:845.346667pt;}
.ya1{bottom:857.853333pt;}
.y31{bottom:862.333333pt;}
.y10{bottom:864.893333pt;}
.ya0{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.y9f{bottom:900.093333pt;}
.ye{bottom:906.813333pt;}
.y9e{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y9d{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.ybc{bottom:963.173333pt;}
.y9c{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.ybb{bottom:984.293333pt;}
.y9b{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y9a{bottom:1005.733333pt;}
.y9{bottom:1021.413333pt;}
.y99{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h12{height:16.960000pt;}
.h13{height:17.920000pt;}
.hf{height:18.240000pt;}
.h1b{height:18.560000pt;}
.h1a{height:20.480000pt;}
.h19{height:21.120000pt;}
.h14{height:22.432000pt;}
.h5{height:24.000000pt;}
.hc{height:24.992000pt;}
.h17{height:25.600000pt;}
.h1d{height:26.592000pt;}
.h1c{height:27.200000pt;}
.h16{height:36.160000pt;}
.h15{height:36.480000pt;}
.hd{height:38.720000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.h11{height:51.437500pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h1e{height:65.755625pt;}
.ha{height:65.776250pt;}
.he{height:65.781915pt;}
.h10{height:66.625000pt;}
.h9{height:66.890000pt;}
.h8{height:86.430000pt;}
.h18{height:137.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:53.792000pt;}
.w5{width:54.112000pt;}
.w4{width:92.512000pt;}
.wa{width:144.666667pt;}
.w7{width:144.986667pt;}
.w3{width:265.693333pt;}
.w9{width:400.800000pt;}
.w6{width:401.440000pt;}
.wb{width:546.106667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x16{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x15{left:0.960000pt;}
.x18{left:7.040000pt;}
.x12{left:8.640000pt;}
.x17{left:30.752000pt;}
.x8{left:38.426667pt;}
.x5{left:85.152000pt;}
.x11{left:96.672000pt;}
.x1c{left:113.631988pt;}
.xa{left:132.223988pt;}
.x13{left:150.786667pt;}
.x1b{left:171.586655pt;}
.x3{left:174.466655pt;}
.xc{left:206.466655pt;}
.x6{left:258.341333pt;}
.xd{left:269.853322pt;}
.xe{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.xb{left:348.933322pt;}
.x7{left:350.853333pt;}
.x9{left:443.360000pt;}
.x1a{left:496.186655pt;}
.xf{left:501.306655pt;}
.x19{left:527.546655pt;}
.x14{left:552.226667pt;}
.x10{left:655.613322pt;}
.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; }
  