
    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_778ee86051e2161664e3bb93.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_7f9ca797f673eed07f070aac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_904abcabc1a815335875e8b1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_898537e1e852aae744b6ec41.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010254;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_eafb138a44a824ab651cbe1e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_c5ba7da12f6de97b6cb7e05d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b01cd1e4188d8d4aadcf1fd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_61de0a072d3f4a7c3f4ba59a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eb12b93372611d2687f8dfac.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_97a68b68762488e9752272c5.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.413400px;}
.ls2{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078600px;}
.ls16{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.139800px;}
.ls3{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.711120px;}
.ls14{letter-spacing:3.231120px;}
.ls15{letter-spacing:3.330000px;}
.lsa{letter-spacing:5.751120px;}
.lsb{letter-spacing:6.471120px;}
.lsd{letter-spacing:12.960000px;}
.ls5{letter-spacing:15.120000px;}
.ls4{letter-spacing:16.200000px;}
.lse{letter-spacing:17.280000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.640000px;}
.wse{word-spacing:-17.496000px;}
.ws9{word-spacing:-15.169800px;}
.ws5{word-spacing:-15.030000px;}
.ws7{word-spacing:-14.967480px;}
.ws8{word-spacing:-14.616600px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._18{margin-left:-5.496000px;}
._3{margin-left:-4.284000px;}
._a{margin-left:-3.024000px;}
._1{margin-left:-1.996800px;}
._4{width:1.664760px;}
._11{width:2.711640px;}
._5{width:3.744000px;}
._0{width:5.587200px;}
._15{width:6.652800px;}
._c{width:7.704000px;}
._d{width:8.727240px;}
._12{width:10.252800px;}
._7{width:11.664000px;}
._13{width:12.840000px;}
._e{width:14.688000px;}
._f{width:15.864000px;}
._10{width:16.868040px;}
._9{width:19.080000px;}
._8{width:20.232000px;}
._1d{width:21.312000px;}
._1f{width:22.350480px;}
._14{width:23.808000px;}
._b{width:24.912000px;}
._17{width:26.103240px;}
._1e{width:27.360000px;}
._16{width:28.368000px;}
._19{width:29.736000px;}
._6{width:32.472000px;}
._1c{width:36.000000px;}
._1a{width:46.296000px;}
._1b{width:47.472000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs8{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y19{bottom:57.420000px;}
.y18{bottom:77.580000px;}
.y13{bottom:99.795000px;}
.y51{bottom:112.050000px;}
.y7d{bottom:112.500000px;}
.y77{bottom:119.610000px;}
.y33{bottom:122.670000px;}
.y69{bottom:130.680000px;}
.y7c{bottom:131.130000px;}
.y16{bottom:135.750000px;}
.y50{bottom:142.830000px;}
.y8a{bottom:143.010000px;}
.y4b{bottom:144.450000px;}
.y7b{bottom:151.110000px;}
.y76{bottom:154.170000px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y7a{bottom:157.140000px;}
.y15{bottom:157.830000px;}
.y7f{bottom:161.460000px;}
.y4f{bottom:162.810000px;}
.y32{bottom:164.070000px;}
.y4e{bottom:168.840000px;}
.y79{bottom:171.270000px;}
.y68{bottom:172.080000px;}
.y7e{bottom:179.910000px;}
.y5a{bottom:182.700000px;}
.y4d{bottom:182.970000px;}
.y89{bottom:184.410000px;}
.y4a{bottom:185.850000px;}
.y75{bottom:188.640000px;}
.y31{bottom:205.470000px;}
.y59{bottom:213.480000px;}
.y74{bottom:223.110000px;}
.y88{bottom:225.840000px;}
.y49{bottom:227.280000px;}
.y58{bottom:232.140000px;}
.y78{bottom:234.030000px;}
.y30{bottom:246.900000px;}
.y57{bottom:250.770000px;}
.y67{bottom:254.820000px;}
.y73{bottom:261.750000px;}
.y87{bottom:267.240000px;}
.y48{bottom:268.680000px;}
.y56{bottom:270.750000px;}
.y55{bottom:276.780000px;}
.y2f{bottom:288.300000px;}
.y54{bottom:290.910000px;}
.y66{bottom:296.220000px;}
.y72{bottom:303.150000px;}
.y86{bottom:308.640000px;}
.y47{bottom:310.080000px;}
.y2e{bottom:329.700000px;}
.y65{bottom:337.620000px;}
.y71{bottom:344.550000px;}
.ya{bottom:344.680500px;}
.y85{bottom:350.040000px;}
.y46{bottom:351.480000px;}
.y2d{bottom:371.100000px;}
.y64{bottom:379.020000px;}
.y70{bottom:385.950000px;}
.yd{bottom:386.490000px;}
.y84{bottom:391.440000px;}
.y45{bottom:392.880000px;}
.y9{bottom:395.689500px;}
.y2c{bottom:412.500000px;}
.y63{bottom:420.420000px;}
.y6f{bottom:427.350000px;}
.y83{bottom:432.840000px;}
.y44{bottom:434.280000px;}
.yb{bottom:434.850000px;}
.y8{bottom:446.698500px;}
.y2b{bottom:453.900000px;}
.y62{bottom:461.820000px;}
.y6e{bottom:464.610000px;}
.y82{bottom:474.240000px;}
.y43{bottom:475.680000px;}
.y53{bottom:482.430000px;}
.y10{bottom:488.055000px;}
.y2a{bottom:495.300000px;}
.y7{bottom:497.707500px;}
.y6d{bottom:499.170000px;}
.y61{bottom:503.220000px;}
.y81{bottom:515.640000px;}
.y42{bottom:517.080000px;}
.y6c{bottom:533.640000px;}
.y29{bottom:536.700000px;}
.y11{bottom:538.230000px;}
.y60{bottom:544.620000px;}
.y6{bottom:548.716500px;}
.y91{bottom:556.950000px;}
.y80{bottom:557.760000px;}
.y41{bottom:558.480000px;}
.y6b{bottom:568.110000px;}
.y28{bottom:578.100000px;}
.y5f{bottom:586.020000px;}
.y17{bottom:589.605000px;}
.y90{bottom:598.350000px;}
.y5{bottom:599.725500px;}
.y40{bottom:599.880000px;}
.y6a{bottom:602.670000px;}
.y27{bottom:619.500000px;}
.y5e{bottom:623.280000px;}
.ye{bottom:631.920000px;}
.y8f{bottom:639.750000px;}
.y3f{bottom:641.190000px;}
.y5d{bottom:657.870000px;}
.y26{bottom:660.930000px;}
.y8e{bottom:681.180000px;}
.y3e{bottom:682.620000px;}
.y5c{bottom:692.340000px;}
.y25{bottom:702.330000px;}
.y8d{bottom:722.580000px;}
.y3d{bottom:724.020000px;}
.y5b{bottom:726.810000px;}
.y4c{bottom:730.770000px;}
.y24{bottom:743.730000px;}
.y8c{bottom:763.980000px;}
.y3c{bottom:765.420000px;}
.y4{bottom:778.225500px;}
.y23{bottom:785.130000px;}
.y8b{bottom:806.100000px;}
.y3b{bottom:806.820000px;}
.y12{bottom:815.670000px;}
.y22{bottom:826.530000px;}
.y3a{bottom:848.220000px;}
.y21{bottom:867.840000px;}
.y39{bottom:889.620000px;}
.y3{bottom:905.716500px;}
.y20{bottom:913.290000px;}
.y38{bottom:931.020000px;}
.y1f{bottom:957.570000px;}
.y2{bottom:964.228500px;}
.y37{bottom:972.420000px;}
.y1{bottom:989.716500px;}
.y1e{bottom:998.970000px;}
.y36{bottom:1013.820000px;}
.y52{bottom:1020.570000px;}
.y1d{bottom:1040.370000px;}
.y35{bottom:1055.220000px;}
.y1c{bottom:1075.500000px;}
.y34{bottom:1096.650000px;}
.y1b{bottom:1097.640000px;}
.y1a{bottom:1138.050000px;}
.h4{height:33.000000px;}
.h10{height:41.893770px;}
.hf{height:46.991602px;}
.hc{height:47.962441px;}
.h13{height:52.066406px;}
.h3{height:58.406250px;}
.h12{height:59.004492px;}
.h11{height:59.797090px;}
.ha{height:65.526152px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h14{height:70.628906px;}
.he{height:70.664062px;}
.hb{height:72.562500px;}
.hd{height:84.535312px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.wb{width:892.979973px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xb{left:107.999987px;}
.x10{left:113.309987px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x16{left:150.599987px;}
.xc{left:171.839987px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xf{left:324.029987px;}
.x11{left:438.179987px;}
.xa{left:442.319987px;}
.x14{left:507.119973px;}
.x15{left:513.149987px;}
.x12{left:765.449973px;}
.x13{left:771.479987px;}
.xd{left:774.539973px;}
.xe{left:780.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.367467pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069867pt;}
.ls16{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.124267pt;}
.ls3{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.632107pt;}
.ls14{letter-spacing:2.872107pt;}
.ls15{letter-spacing:2.960000pt;}
.lsa{letter-spacing:5.112107pt;}
.lsb{letter-spacing:5.752107pt;}
.lsd{letter-spacing:11.520000pt;}
.ls5{letter-spacing:13.440000pt;}
.ls4{letter-spacing:14.400000pt;}
.lse{letter-spacing:15.360000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.680000pt;}
.wse{word-spacing:-15.552000pt;}
.ws9{word-spacing:-13.484267pt;}
.ws5{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.304427pt;}
.ws8{word-spacing:-12.992533pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._18{margin-left:-4.885333pt;}
._3{margin-left:-3.808000pt;}
._a{margin-left:-2.688000pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.479787pt;}
._11{width:2.410347pt;}
._5{width:3.328000pt;}
._0{width:4.966400pt;}
._15{width:5.913600pt;}
._c{width:6.848000pt;}
._d{width:7.757547pt;}
._12{width:9.113600pt;}
._7{width:10.368000pt;}
._13{width:11.413333pt;}
._e{width:13.056000pt;}
._f{width:14.101333pt;}
._10{width:14.993813pt;}
._9{width:16.960000pt;}
._8{width:17.984000pt;}
._1d{width:18.944000pt;}
._1f{width:19.867093pt;}
._14{width:21.162667pt;}
._b{width:22.144000pt;}
._17{width:23.202880pt;}
._1e{width:24.320000pt;}
._16{width:25.216000pt;}
._19{width:26.432000pt;}
._6{width:28.864000pt;}
._1c{width:32.000000pt;}
._1a{width:41.152000pt;}
._1b{width:42.197333pt;}
.fs7{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs8{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y19{bottom:51.040000pt;}
.y18{bottom:68.960000pt;}
.y13{bottom:88.706667pt;}
.y51{bottom:99.600000pt;}
.y7d{bottom:100.000000pt;}
.y77{bottom:106.320000pt;}
.y33{bottom:109.040000pt;}
.y69{bottom:116.160000pt;}
.y7c{bottom:116.560000pt;}
.y16{bottom:120.666667pt;}
.y50{bottom:126.960000pt;}
.y8a{bottom:127.120000pt;}
.y4b{bottom:128.400000pt;}
.y7b{bottom:134.320000pt;}
.y76{bottom:137.040000pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y7a{bottom:139.680000pt;}
.y15{bottom:140.293333pt;}
.y7f{bottom:143.520000pt;}
.y4f{bottom:144.720000pt;}
.y32{bottom:145.840000pt;}
.y4e{bottom:150.080000pt;}
.y79{bottom:152.240000pt;}
.y68{bottom:152.960000pt;}
.y7e{bottom:159.920000pt;}
.y5a{bottom:162.400000pt;}
.y4d{bottom:162.640000pt;}
.y89{bottom:163.920000pt;}
.y4a{bottom:165.200000pt;}
.y75{bottom:167.680000pt;}
.y31{bottom:182.640000pt;}
.y59{bottom:189.760000pt;}
.y74{bottom:198.320000pt;}
.y88{bottom:200.746667pt;}
.y49{bottom:202.026667pt;}
.y58{bottom:206.346667pt;}
.y78{bottom:208.026667pt;}
.y30{bottom:219.466667pt;}
.y57{bottom:222.906667pt;}
.y67{bottom:226.506667pt;}
.y73{bottom:232.666667pt;}
.y87{bottom:237.546667pt;}
.y48{bottom:238.826667pt;}
.y56{bottom:240.666667pt;}
.y55{bottom:246.026667pt;}
.y2f{bottom:256.266667pt;}
.y54{bottom:258.586667pt;}
.y66{bottom:263.306667pt;}
.y72{bottom:269.466667pt;}
.y86{bottom:274.346667pt;}
.y47{bottom:275.626667pt;}
.y2e{bottom:293.066667pt;}
.y65{bottom:300.106667pt;}
.y71{bottom:306.266667pt;}
.ya{bottom:306.382667pt;}
.y85{bottom:311.146667pt;}
.y46{bottom:312.426667pt;}
.y2d{bottom:329.866667pt;}
.y64{bottom:336.906667pt;}
.y70{bottom:343.066667pt;}
.yd{bottom:343.546667pt;}
.y84{bottom:347.946667pt;}
.y45{bottom:349.226667pt;}
.y9{bottom:351.724000pt;}
.y2c{bottom:366.666667pt;}
.y63{bottom:373.706667pt;}
.y6f{bottom:379.866667pt;}
.y83{bottom:384.746667pt;}
.y44{bottom:386.026667pt;}
.yb{bottom:386.533333pt;}
.y8{bottom:397.065333pt;}
.y2b{bottom:403.466667pt;}
.y62{bottom:410.506667pt;}
.y6e{bottom:412.986667pt;}
.y82{bottom:421.546667pt;}
.y43{bottom:422.826667pt;}
.y53{bottom:428.826667pt;}
.y10{bottom:433.826667pt;}
.y2a{bottom:440.266667pt;}
.y7{bottom:442.406667pt;}
.y6d{bottom:443.706667pt;}
.y61{bottom:447.306667pt;}
.y81{bottom:458.346667pt;}
.y42{bottom:459.626667pt;}
.y6c{bottom:474.346667pt;}
.y29{bottom:477.066667pt;}
.y11{bottom:478.426667pt;}
.y60{bottom:484.106667pt;}
.y6{bottom:487.748000pt;}
.y91{bottom:495.066667pt;}
.y80{bottom:495.786667pt;}
.y41{bottom:496.426667pt;}
.y6b{bottom:504.986667pt;}
.y28{bottom:513.866667pt;}
.y5f{bottom:520.906667pt;}
.y17{bottom:524.093333pt;}
.y90{bottom:531.866667pt;}
.y5{bottom:533.089333pt;}
.y40{bottom:533.226667pt;}
.y6a{bottom:535.706667pt;}
.y27{bottom:550.666667pt;}
.y5e{bottom:554.026667pt;}
.ye{bottom:561.706667pt;}
.y8f{bottom:568.666667pt;}
.y3f{bottom:569.946667pt;}
.y5d{bottom:584.773333pt;}
.y26{bottom:587.493333pt;}
.y8e{bottom:605.493333pt;}
.y3e{bottom:606.773333pt;}
.y5c{bottom:615.413333pt;}
.y25{bottom:624.293333pt;}
.y8d{bottom:642.293333pt;}
.y3d{bottom:643.573333pt;}
.y5b{bottom:646.053333pt;}
.y4c{bottom:649.573333pt;}
.y24{bottom:661.093333pt;}
.y8c{bottom:679.093333pt;}
.y3c{bottom:680.373333pt;}
.y4{bottom:691.756000pt;}
.y23{bottom:697.893333pt;}
.y8b{bottom:716.533333pt;}
.y3b{bottom:717.173333pt;}
.y12{bottom:725.040000pt;}
.y22{bottom:734.693333pt;}
.y3a{bottom:753.973333pt;}
.y21{bottom:771.413333pt;}
.y39{bottom:790.773333pt;}
.y3{bottom:805.081333pt;}
.y20{bottom:811.813333pt;}
.y38{bottom:827.573333pt;}
.y1f{bottom:851.173333pt;}
.y2{bottom:857.092000pt;}
.y37{bottom:864.373333pt;}
.y1{bottom:879.748000pt;}
.y1e{bottom:887.973333pt;}
.y36{bottom:901.173333pt;}
.y52{bottom:907.173333pt;}
.y1d{bottom:924.773333pt;}
.y35{bottom:937.973333pt;}
.y1c{bottom:956.000000pt;}
.y34{bottom:974.800000pt;}
.y1b{bottom:975.680000pt;}
.y1a{bottom:1011.600000pt;}
.h4{height:29.333333pt;}
.h10{height:37.238906pt;}
.hf{height:41.770312pt;}
.hc{height:42.633281pt;}
.h13{height:46.281250pt;}
.h3{height:51.916667pt;}
.h12{height:52.448437pt;}
.h11{height:53.152969pt;}
.ha{height:58.245469pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h14{height:62.781250pt;}
.he{height:62.812500pt;}
.hb{height:64.500000pt;}
.hd{height:75.142500pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.wb{width:793.759976pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xb{left:95.999988pt;}
.x10{left:100.719988pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x16{left:133.866655pt;}
.xc{left:152.746655pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xf{left:288.026655pt;}
.x11{left:389.493322pt;}
.xa{left:393.173322pt;}
.x14{left:450.773310pt;}
.x15{left:456.133322pt;}
.x12{left:680.399976pt;}
.x13{left:685.759988pt;}
.xd{left:688.479976pt;}
.xe{left:693.839988pt;}
}




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