
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_e8c74ae20dbebfbb657c4066.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e2235039aae9d5ab3697ef26.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_f81c888267b644f3140fe6d8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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_79df4f5457cb70964a0b0d16.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_be175a3d878609d71e16bcb7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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:fff;src:url('chunks/assets/font_14ee440b38f6f5fdc38bb7d2.woff2')format("woff");}.fff{font-family:fff;line-height:0.923340;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);}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.ls22{letter-spacing:-1.260000px;}
.ls13{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.702000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.008640px;}
.lsf{letter-spacing:-0.004320px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.042240px;}
.ls11{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.lse{letter-spacing:0.109920px;}
.ls0{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.169920px;}
.ls15{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.900000px;}
.lsc{letter-spacing:3.960000px;}
.ls18{letter-spacing:7.122240px;}
.ls1b{letter-spacing:11.880000px;}
.ls20{letter-spacing:16.506720px;}
.ls1a{letter-spacing:21.546720px;}
.ls5{letter-spacing:37.386720px;}
.ls19{letter-spacing:38.106720px;}
.ls2{letter-spacing:41.868000px;}
.lsd{letter-spacing:46.026720px;}
.ls17{letter-spacing:54.666720px;}
.lsb{letter-spacing:64.026720px;}
.ls21{letter-spacing:64.170720px;}
.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:-59.760000px;}
.ws5{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.093600px;}
.wse{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.166000px;}
.ws8{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.798000px;}
.ws1{word-spacing:-12.060000px;}
.wsb{word-spacing:-9.732960px;}
.ws12{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.715680px;}
.wsd{word-spacing:-9.711360px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1.074240px;}
._1{width:1.135440px;}
._9{width:2.880960px;}
._a{width:4.230480px;}
._6{width:6.215040px;}
._8{width:7.946640px;}
._7{width:9.501840px;}
._f{width:10.995840px;}
._20{width:12.065520px;}
._17{width:13.066320px;}
._e{width:16.374240px;}
._d{width:18.346320px;}
._11{width:19.756800px;}
._13{width:21.573360px;}
._12{width:22.947840px;}
._1b{width:24.441840px;}
._c{width:25.517520px;}
._b{width:26.593200px;}
._16{width:28.027200px;}
._1d{width:29.340720px;}
._1c{width:30.597120px;}
._1e{width:31.720080px;}
._21{width:33.506640px;}
._22{width:34.802400px;}
._23{width:36.010320px;}
._15{width:37.230480px;}
._14{width:38.485440px;}
._1a{width:40.396320px;}
._19{width:41.413680px;}
._27{width:43.505280px;}
._10{width:45.252000px;}
._18{width:48.584880px;}
._25{width:51.990480px;}
._28{width:55.313280px;}
._1f{width:67.866480px;}
._26{width:73.684080px;}
._29{width:99.440640px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._5{width:813.271200px;}
._24{width:1209.841200px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y48{bottom:2.556000px;}
.y3a{bottom:3.060000px;}
.y16{bottom:3.240000px;}
.y33{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y46{bottom:8.496000px;}
.yc{bottom:14.040000px;}
.y8{bottom:16.236000px;}
.y8d{bottom:16.380000px;}
.y47{bottom:16.416000px;}
.y31{bottom:19.440000px;}
.y88{bottom:20.340000px;}
.y38{bottom:25.020000px;}
.y8c{bottom:30.060000px;}
.y92{bottom:30.240000px;}
.ya{bottom:35.460000px;}
.y30{bottom:35.820000px;}
.y87{bottom:37.620000px;}
.y37{bottom:40.500000px;}
.y49{bottom:41.400000px;}
.y8b{bottom:43.920000px;}
.y2f{bottom:51.480000px;}
.y86{bottom:54.900000px;}
.y36{bottom:56.160000px;}
.y91{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y8a{bottom:58.500000px;}
.y45{bottom:64.080000px;}
.y2e{bottom:66.990000px;}
.y35{bottom:71.640000px;}
.y85{bottom:72.225000px;}
.y28{bottom:76.365000px;}
.y2d{bottom:82.470000px;}
.y84{bottom:89.505000px;}
.y27{bottom:93.645000px;}
.y2c{bottom:97.950000px;}
.y39{bottom:106.245000px;}
.y83{bottom:106.785000px;}
.y26{bottom:110.745000px;}
.y7f{bottom:112.536000px;}
.y2b{bottom:113.430000px;}
.y44{bottom:120.276000px;}
.y25{bottom:128.025000px;}
.y2a{bottom:129.090000px;}
.y7e{bottom:129.816000px;}
.y43{bottom:137.376000px;}
.y8e{bottom:141.336000px;}
.y24{bottom:145.305000px;}
.y7d{bottom:147.096000px;}
.y42{bottom:154.650000px;}
.y23{bottom:162.585000px;}
.y7c{bottom:164.190000px;}
.y41{bottom:171.930000px;}
.y89{bottom:172.650000px;}
.y22{bottom:179.865000px;}
.y7b{bottom:181.470000px;}
.y40{bottom:189.210000px;}
.y21{bottom:197.145000px;}
.y7a{bottom:198.750000px;}
.y3f{bottom:206.490000px;}
.y20{bottom:214.245000px;}
.y79{bottom:216.030000px;}
.y3e{bottom:223.770000px;}
.y1f{bottom:231.525000px;}
.y78{bottom:233.310000px;}
.y3d{bottom:240.870000px;}
.y82{bottom:245.910000px;}
.y1e{bottom:248.805000px;}
.y77{bottom:250.590000px;}
.y3c{bottom:258.690000px;}
.y1d{bottom:266.085000px;}
.y76{bottom:267.690000px;}
.y3b{bottom:277.770000px;}
.y1c{bottom:283.395000px;}
.y75{bottom:284.970000px;}
.y17{bottom:291.090000px;}
.y1b{bottom:300.495000px;}
.y74{bottom:302.250000px;}
.y1a{bottom:317.775000px;}
.y73{bottom:319.575000px;}
.y19{bottom:335.055000px;}
.y72{bottom:336.855000px;}
.y18{bottom:352.515000px;}
.y71{bottom:354.135000px;}
.y81{bottom:369.795000px;}
.y70{bottom:371.235000px;}
.y90{bottom:384.555000px;}
.y6f{bottom:388.515000px;}
.y6e{bottom:405.795000px;}
.y34{bottom:410.835000px;}
.y6d{bottom:423.075000px;}
.y6c{bottom:440.355000px;}
.y8f{bottom:454.395000px;}
.y6b{bottom:457.455000px;}
.y6a{bottom:474.735000px;}
.y69{bottom:492.015000px;}
.y32{bottom:495.795000px;}
.y68{bottom:509.295000px;}
.y29{bottom:516.495000px;}
.y67{bottom:526.575000px;}
.y66{bottom:543.855000px;}
.y65{bottom:560.955000px;}
.y64{bottom:578.265000px;}
.y63{bottom:595.545000px;}
.y62{bottom:612.825000px;}
.y61{bottom:630.105000px;}
.y60{bottom:647.385000px;}
.y15{bottom:658.905000px;}
.y5f{bottom:664.485000px;}
.y5e{bottom:681.765000px;}
.y14{bottom:693.465000px;}
.y5d{bottom:699.045000px;}
.y13{bottom:713.265000px;}
.y5c{bottom:716.325000px;}
.y5b{bottom:733.605000px;}
.y12{bottom:741.705000px;}
.y5a{bottom:750.885000px;}
.y11{bottom:759.525000px;}
.y59{bottom:767.985000px;}
.y10{bottom:780.585000px;}
.y58{bottom:785.265000px;}
.y57{bottom:802.545000px;}
.yf{bottom:811.725000px;}
.y56{bottom:819.870000px;}
.y80{bottom:825.090000px;}
.y55{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.y54{bottom:854.250000px;}
.y53{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.yb{bottom:887.010000px;}
.y52{bottom:888.810000px;}
.y51{bottom:906.090000px;}
.y50{bottom:923.370000px;}
.y4f{bottom:940.650000px;}
.y4e{bottom:957.750000px;}
.y4d{bottom:975.030000px;}
.y4c{bottom:992.310000px;}
.y4b{bottom:1009.590000px;}
.y4a{bottom:1026.870000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h24{height:13.860000px;}
.hf{height:17.280000px;}
.h15{height:19.980000px;}
.h1f{height:27.147656px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h23{height:34.036523px;}
.h17{height:37.705078px;}
.h18{height:38.100586px;}
.h7{height:39.336328px;}
.h11{height:39.972656px;}
.h13{height:39.999023px;}
.h5{height:41.726953px;}
.he{height:42.164648px;}
.h20{height:42.281367px;}
.h1c{height:43.506914px;}
.h1a{height:44.236406px;}
.h14{height:44.265586px;}
.h9{height:46.251562px;}
.hc{height:46.736719px;}
.h1e{height:48.003656px;}
.h1b{height:48.027656px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h1d{height:65.295703px;}
.h25{height:69.120000px;}
.h22{height:72.360000px;}
.hd{height:75.410156px;}
.hb{height:76.201172px;}
.h16{height:84.240000px;}
.h19{height:118.836000px;}
.h21{height:120.636000px;}
.h12{height:141.696000px;}
.h8{height:153.900000px;}
.h10{height:367.095000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:201.270000px;}
.w8{width:329.250000px;}
.w5{width:607.425000px;}
.w3{width:783.510000px;}
.w7{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.660000px;}
.x5{left:8.640000px;}
.x1d{left:12.420000px;}
.x15{left:18.045000px;}
.x11{left:20.205000px;}
.x13{left:24.705000px;}
.x14{left:26.505000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x1b{left:58.680000px;}
.x3{left:60.659986px;}
.x16{left:65.519986px;}
.x1f{left:80.100000px;}
.x18{left:86.759986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.xb{left:119.555986px;}
.x1{left:150.509986px;}
.xe{left:219.629986px;}
.x2{left:220.709986px;}
.x1c{left:295.635000px;}
.xd{left:374.294986px;}
.xa{left:459.074986px;}
.xc{left:464.294986px;}
.xf{left:465.374986px;}
.x17{left:478.334986px;}
.x1e{left:501.045000px;}
.x19{left:505.364986px;}
.x1a{left:526.604986px;}
.x10{left:661.245000px;}
.x9{left:812.490000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.ls22{letter-spacing:-1.120000pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.007680pt;}
.lsf{letter-spacing:-0.003840pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.037547pt;}
.ls11{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.097707pt;}
.ls0{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.151040pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.800000pt;}
.lsc{letter-spacing:3.520000pt;}
.ls18{letter-spacing:6.330880pt;}
.ls1b{letter-spacing:10.560000pt;}
.ls20{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:19.152640pt;}
.ls5{letter-spacing:33.232640pt;}
.ls19{letter-spacing:33.872640pt;}
.ls2{letter-spacing:37.216000pt;}
.lsd{letter-spacing:40.912640pt;}
.ls17{letter-spacing:48.592640pt;}
.lsb{letter-spacing:56.912640pt;}
.ls21{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws13{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.592000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.376000pt;}
.ws1{word-spacing:-10.720000pt;}
.wsb{word-spacing:-8.651520pt;}
.ws12{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.636160pt;}
.wsd{word-spacing:-8.632320pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-0.954880pt;}
._1{width:1.009280pt;}
._9{width:2.560853pt;}
._a{width:3.760427pt;}
._6{width:5.524480pt;}
._8{width:7.063680pt;}
._7{width:8.446080pt;}
._f{width:9.774080pt;}
._20{width:10.724907pt;}
._17{width:11.614507pt;}
._e{width:14.554880pt;}
._d{width:16.307840pt;}
._11{width:17.561600pt;}
._13{width:19.176320pt;}
._12{width:20.398080pt;}
._1b{width:21.726080pt;}
._c{width:22.682240pt;}
._b{width:23.638400pt;}
._16{width:24.913067pt;}
._1d{width:26.080640pt;}
._1c{width:27.197440pt;}
._1e{width:28.195627pt;}
._21{width:29.783680pt;}
._22{width:30.935467pt;}
._23{width:32.009173pt;}
._15{width:33.093760pt;}
._14{width:34.209280pt;}
._1a{width:35.907840pt;}
._19{width:36.812160pt;}
._27{width:38.671360pt;}
._10{width:40.224000pt;}
._18{width:43.186560pt;}
._25{width:46.213760pt;}
._28{width:49.167360pt;}
._1f{width:60.325760pt;}
._26{width:65.496960pt;}
._29{width:88.391680pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._5{width:722.907733pt;}
._24{width:1075.414400pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y48{bottom:2.272000pt;}
.y3a{bottom:2.720000pt;}
.y16{bottom:2.880000pt;}
.y33{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y46{bottom:7.552000pt;}
.yc{bottom:12.480000pt;}
.y8{bottom:14.432000pt;}
.y8d{bottom:14.560000pt;}
.y47{bottom:14.592000pt;}
.y31{bottom:17.280000pt;}
.y88{bottom:18.080000pt;}
.y38{bottom:22.240000pt;}
.y8c{bottom:26.720000pt;}
.y92{bottom:26.880000pt;}
.ya{bottom:31.520000pt;}
.y30{bottom:31.840000pt;}
.y87{bottom:33.440000pt;}
.y37{bottom:36.000000pt;}
.y49{bottom:36.800000pt;}
.y8b{bottom:39.040000pt;}
.y2f{bottom:45.760000pt;}
.y86{bottom:48.800000pt;}
.y36{bottom:49.920000pt;}
.y91{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y8a{bottom:52.000000pt;}
.y45{bottom:56.960000pt;}
.y2e{bottom:59.546667pt;}
.y35{bottom:63.680000pt;}
.y85{bottom:64.200000pt;}
.y28{bottom:67.880000pt;}
.y2d{bottom:73.306667pt;}
.y84{bottom:79.560000pt;}
.y27{bottom:83.240000pt;}
.y2c{bottom:87.066667pt;}
.y39{bottom:94.440000pt;}
.y83{bottom:94.920000pt;}
.y26{bottom:98.440000pt;}
.y7f{bottom:100.032000pt;}
.y2b{bottom:100.826667pt;}
.y44{bottom:106.912000pt;}
.y25{bottom:113.800000pt;}
.y2a{bottom:114.746667pt;}
.y7e{bottom:115.392000pt;}
.y43{bottom:122.112000pt;}
.y8e{bottom:125.632000pt;}
.y24{bottom:129.160000pt;}
.y7d{bottom:130.752000pt;}
.y42{bottom:137.466667pt;}
.y23{bottom:144.520000pt;}
.y7c{bottom:145.946667pt;}
.y41{bottom:152.826667pt;}
.y89{bottom:153.466667pt;}
.y22{bottom:159.880000pt;}
.y7b{bottom:161.306667pt;}
.y40{bottom:168.186667pt;}
.y21{bottom:175.240000pt;}
.y7a{bottom:176.666667pt;}
.y3f{bottom:183.546667pt;}
.y20{bottom:190.440000pt;}
.y79{bottom:192.026667pt;}
.y3e{bottom:198.906667pt;}
.y1f{bottom:205.800000pt;}
.y78{bottom:207.386667pt;}
.y3d{bottom:214.106667pt;}
.y82{bottom:218.586667pt;}
.y1e{bottom:221.160000pt;}
.y77{bottom:222.746667pt;}
.y3c{bottom:229.946667pt;}
.y1d{bottom:236.520000pt;}
.y76{bottom:237.946667pt;}
.y3b{bottom:246.906667pt;}
.y1c{bottom:251.906667pt;}
.y75{bottom:253.306667pt;}
.y17{bottom:258.746667pt;}
.y1b{bottom:267.106667pt;}
.y74{bottom:268.666667pt;}
.y1a{bottom:282.466667pt;}
.y73{bottom:284.066667pt;}
.y19{bottom:297.826667pt;}
.y72{bottom:299.426667pt;}
.y18{bottom:313.346667pt;}
.y71{bottom:314.786667pt;}
.y81{bottom:328.706667pt;}
.y70{bottom:329.986667pt;}
.y90{bottom:341.826667pt;}
.y6f{bottom:345.346667pt;}
.y6e{bottom:360.706667pt;}
.y34{bottom:365.186667pt;}
.y6d{bottom:376.066667pt;}
.y6c{bottom:391.426667pt;}
.y8f{bottom:403.906667pt;}
.y6b{bottom:406.626667pt;}
.y6a{bottom:421.986667pt;}
.y69{bottom:437.346667pt;}
.y32{bottom:440.706667pt;}
.y68{bottom:452.706667pt;}
.y29{bottom:459.106667pt;}
.y67{bottom:468.066667pt;}
.y66{bottom:483.426667pt;}
.y65{bottom:498.626667pt;}
.y64{bottom:514.013333pt;}
.y63{bottom:529.373333pt;}
.y62{bottom:544.733333pt;}
.y61{bottom:560.093333pt;}
.y60{bottom:575.453333pt;}
.y15{bottom:585.693333pt;}
.y5f{bottom:590.653333pt;}
.y5e{bottom:606.013333pt;}
.y14{bottom:616.413333pt;}
.y5d{bottom:621.373333pt;}
.y13{bottom:634.013333pt;}
.y5c{bottom:636.733333pt;}
.y5b{bottom:652.093333pt;}
.y12{bottom:659.293333pt;}
.y5a{bottom:667.453333pt;}
.y11{bottom:675.133333pt;}
.y59{bottom:682.653333pt;}
.y10{bottom:693.853333pt;}
.y58{bottom:698.013333pt;}
.y57{bottom:713.373333pt;}
.yf{bottom:721.533333pt;}
.y56{bottom:728.773333pt;}
.y80{bottom:733.413333pt;}
.y55{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.y54{bottom:759.333333pt;}
.y53{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.yb{bottom:788.453333pt;}
.y52{bottom:790.053333pt;}
.y51{bottom:805.413333pt;}
.y50{bottom:820.773333pt;}
.y4f{bottom:836.133333pt;}
.y4e{bottom:851.333333pt;}
.y4d{bottom:866.693333pt;}
.y4c{bottom:882.053333pt;}
.y4b{bottom:897.413333pt;}
.y4a{bottom:912.773333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h24{height:12.320000pt;}
.hf{height:15.360000pt;}
.h15{height:17.760000pt;}
.h1f{height:24.131250pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h23{height:30.254687pt;}
.h17{height:33.515625pt;}
.h18{height:33.867188pt;}
.h7{height:34.965625pt;}
.h11{height:35.531250pt;}
.h13{height:35.554688pt;}
.h5{height:37.090625pt;}
.he{height:37.479688pt;}
.h20{height:37.583438pt;}
.h1c{height:38.672812pt;}
.h1a{height:39.321250pt;}
.h14{height:39.347188pt;}
.h9{height:41.112500pt;}
.hc{height:41.543750pt;}
.h1e{height:42.669917pt;}
.h1b{height:42.691250pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h1d{height:58.040625pt;}
.h25{height:61.440000pt;}
.h22{height:64.320000pt;}
.hd{height:67.031250pt;}
.hb{height:67.734375pt;}
.h16{height:74.880000pt;}
.h19{height:105.632000pt;}
.h21{height:107.232000pt;}
.h12{height:125.952000pt;}
.h8{height:136.800000pt;}
.h10{height:326.306667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:178.906667pt;}
.w8{width:292.666667pt;}
.w5{width:539.933333pt;}
.w3{width:696.453333pt;}
.w7{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.920000pt;}
.x5{left:7.680000pt;}
.x1d{left:11.040000pt;}
.x15{left:16.040000pt;}
.x11{left:17.960000pt;}
.x13{left:21.960000pt;}
.x14{left:23.560000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x1b{left:52.160000pt;}
.x3{left:53.919988pt;}
.x16{left:58.239988pt;}
.x1f{left:71.200000pt;}
.x18{left:77.119988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.xb{left:106.271988pt;}
.x1{left:133.786655pt;}
.xe{left:195.226655pt;}
.x2{left:196.186655pt;}
.x1c{left:262.786667pt;}
.xd{left:332.706655pt;}
.xa{left:408.066655pt;}
.xc{left:412.706655pt;}
.xf{left:413.666655pt;}
.x17{left:425.186655pt;}
.x1e{left:445.373333pt;}
.x19{left:449.213321pt;}
.x1a{left:468.093321pt;}
.x10{left:587.773333pt;}
.x9{left:722.213333pt;}
}




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