
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_171474f77ded48dd7866ec69.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_977a6ae183bd5df852045c64.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_86bdd1ba87e73343df5158a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_16f6bcce94bf38fb56b08089.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_9f8f2d198b2277f3ee503ae3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;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_3a10e70efd67c5c00deb246c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_576ac10425ccd34fbb7bec4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ab8a45a44db37e5cd394cebc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.053223;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls26{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.463800px;}
.ls2f{letter-spacing:-0.301200px;}
.ls1f{letter-spacing:-0.268800px;}
.ls27{letter-spacing:-0.226800px;}
.ls17{letter-spacing:-0.214800px;}
.lsc{letter-spacing:-0.115800px;}
.ls35{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.064800px;}
.ls16{letter-spacing:-0.058320px;}
.ls37{letter-spacing:-0.049680px;}
.ls1e{letter-spacing:-0.038160px;}
.lsb{letter-spacing:-0.020160px;}
.ls8{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.067200px;}
.ls20{letter-spacing:0.093000px;}
.ls32{letter-spacing:0.174000px;}
.ls14{letter-spacing:0.174240px;}
.ls23{letter-spacing:0.179280px;}
.ls25{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.218400px;}
.ls38{letter-spacing:0.243600px;}
.ls39{letter-spacing:0.283800px;}
.ls1d{letter-spacing:0.314400px;}
.ls1c{letter-spacing:0.433440px;}
.ls18{letter-spacing:0.451200px;}
.ls34{letter-spacing:0.479520px;}
.ls21{letter-spacing:0.511200px;}
.ls7{letter-spacing:0.617760px;}
.ls4{letter-spacing:0.659520px;}
.ls22{letter-spacing:0.894240px;}
.ls3a{letter-spacing:0.906000px;}
.lsa{letter-spacing:0.930000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls11{letter-spacing:2.106720px;}
.ls2b{letter-spacing:3.054240px;}
.ls3{letter-spacing:3.774240px;}
.ls10{letter-spacing:5.706720px;}
.ls24{letter-spacing:12.186720px;}
.ls13{letter-spacing:15.066720px;}
.ls12{letter-spacing:17.226720px;}
.ls1b{letter-spacing:17.946720px;}
.ls19{letter-spacing:20.106720px;}
.lse{letter-spacing:21.546720px;}
.ls5{letter-spacing:23.934240px;}
.ls36{letter-spacing:31.626720px;}
.ls6{letter-spacing:38.106720px;}
.ls1a{letter-spacing:42.426720px;}
.lsf{letter-spacing:46.026720px;}
.ls28{letter-spacing:48.906720px;}
.ls29{letter-spacing:49.626720px;}
.ls2c{letter-spacing:59.130720px;}
.ls33{letter-spacing:62.010720px;}
.ls15{letter-spacing:64.026720px;}
.ls2d{letter-spacing:81.450720px;}
.ls2e{letter-spacing:83.610720px;}
.ls31{letter-spacing:100.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws19{word-spacing:-14.411760px;}
.ws10{word-spacing:-14.016960px;}
.wsb{word-spacing:-13.956960px;}
.wsc{word-spacing:-13.820160px;}
.ws18{word-spacing:-13.749360px;}
.ws14{word-spacing:-13.724160px;}
.ws11{word-spacing:-13.685040px;}
.wsf{word-spacing:-13.598760px;}
.ws15{word-spacing:-13.572960px;}
.ws5{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.467600px;}
.ws17{word-spacing:-13.456080px;}
.ws8{word-spacing:-13.447440px;}
.ws16{word-spacing:-13.396560px;}
.ws6{word-spacing:-13.389960px;}
.ws9{word-spacing:-13.290960px;}
.ws12{word-spacing:-13.278960px;}
.wse{word-spacing:-13.236960px;}
.ws13{word-spacing:-13.204560px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1507.274160px;}
._1{margin-left:-1449.432000px;}
._2{margin-left:-1100.376000px;}
._5{margin-left:-607.371480px;}
._19{margin-left:-13.399200px;}
._12{margin-left:-4.313280px;}
._6{margin-left:-3.312000px;}
._b{margin-left:-2.309280px;}
._3{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:3.082320px;}
._9{width:4.175280px;}
._11{width:5.196720px;}
._c{width:6.215040px;}
._10{width:7.888320px;}
._f{width:9.023760px;}
._14{width:10.543920px;}
._13{width:11.686800px;}
._8{width:12.696720px;}
._7{width:14.268240px;}
._18{width:15.496560px;}
._1a{width:17.368560px;}
._15{width:19.661040px;}
._e{width:23.749440px;}
._d{width:25.218720px;}
._17{width:26.548800px;}
._16{width:27.728640px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y75{bottom:3.960000px;}
.y76{bottom:22.320000px;}
.y6{bottom:61.416000px;}
.y73{bottom:90.036000px;}
.y8c{bottom:91.296000px;}
.y64{bottom:107.496000px;}
.y7d{bottom:108.900000px;}
.y72{bottom:111.096000px;}
.y8b{bottom:112.356000px;}
.y30{bottom:115.956000px;}
.y7c{bottom:127.260000px;}
.y63{bottom:128.556000px;}
.y71{bottom:132.156000px;}
.y8a{bottom:133.416000px;}
.y2f{bottom:137.016000px;}
.y7b{bottom:145.650000px;}
.y62{bottom:149.616000px;}
.y70{bottom:153.210000px;}
.y89{bottom:154.470000px;}
.y2e{bottom:158.070000px;}
.y7a{bottom:163.830000px;}
.y61{bottom:170.850000px;}
.y6f{bottom:174.270000px;}
.y88{bottom:175.530000px;}
.y2d{bottom:179.130000px;}
.y79{bottom:182.190000px;}
.y60{bottom:192.630000px;}
.y6e{bottom:195.330000px;}
.y87{bottom:196.590000px;}
.y2c{bottom:200.190000px;}
.y5f{bottom:213.690000px;}
.y86{bottom:217.650000px;}
.y2b{bottom:221.250000px;}
.y6d{bottom:225.390000px;}
.y5e{bottom:235.470000px;}
.y85{bottom:238.710000px;}
.y2a{bottom:242.310000px;}
.y6c{bottom:246.450000px;}
.y5d{bottom:257.430000px;}
.y84{bottom:259.770000px;}
.y29{bottom:263.370000px;}
.y6b{bottom:267.510000px;}
.y5c{bottom:279.210000px;}
.y83{bottom:280.830000px;}
.y28{bottom:284.475000px;}
.y6a{bottom:288.615000px;}
.y5b{bottom:301.215000px;}
.y82{bottom:301.935000px;}
.y27{bottom:305.535000px;}
.y69{bottom:309.675000px;}
.y5a{bottom:322.995000px;}
.y26{bottom:326.595000px;}
.y68{bottom:330.735000px;}
.y59{bottom:344.055000px;}
.y25{bottom:347.655000px;}
.y67{bottom:351.795000px;}
.y58{bottom:365.115000px;}
.y24{bottom:368.715000px;}
.y66{bottom:372.855000px;}
.y57{bottom:386.175000px;}
.y23{bottom:389.775000px;}
.y65{bottom:393.915000px;}
.y56{bottom:407.235000px;}
.y22{bottom:410.835000px;}
.y78{bottom:423.255000px;}
.y55{bottom:428.295000px;}
.y21{bottom:431.895000px;}
.y54{bottom:449.355000px;}
.y20{bottom:452.955000px;}
.y81{bottom:456.375000px;}
.y53{bottom:470.415000px;}
.y1f{bottom:474.015000px;}
.y80{bottom:489.315000px;}
.y52{bottom:491.475000px;}
.y1e{bottom:495.075000px;}
.y51{bottom:512.535000px;}
.y1d{bottom:516.135000px;}
.y7f{bottom:522.255000px;}
.y50{bottom:533.595000px;}
.y1c{bottom:537.195000px;}
.y4f{bottom:554.655000px;}
.y7e{bottom:555.375000px;}
.y1b{bottom:558.255000px;}
.y4e{bottom:575.745000px;}
.y1a{bottom:579.345000px;}
.y77{bottom:588.345000px;}
.y4d{bottom:596.805000px;}
.y19{bottom:602.745000px;}
.y4c{bottom:617.865000px;}
.y74{bottom:621.285000px;}
.y18{bottom:623.625000px;}
.y4b{bottom:638.925000px;}
.y17{bottom:653.685000px;}
.y4a{bottom:659.805000px;}
.y16{bottom:674.745000px;}
.y49{bottom:680.865000px;}
.y15{bottom:695.805000px;}
.y48{bottom:701.925000px;}
.y14{bottom:716.865000px;}
.y47{bottom:722.985000px;}
.y13{bottom:737.925000px;}
.y46{bottom:744.045000px;}
.y12{bottom:758.985000px;}
.y45{bottom:765.105000px;}
.y11{bottom:780.045000px;}
.y44{bottom:786.165000px;}
.y10{bottom:801.105000px;}
.y43{bottom:807.225000px;}
.yf{bottom:822.165000px;}
.y42{bottom:828.285000px;}
.ye{bottom:843.225000px;}
.y41{bottom:849.390000px;}
.yd{bottom:866.490000px;}
.y40{bottom:870.450000px;}
.y3f{bottom:891.510000px;}
.yc{bottom:892.770000px;}
.y3e{bottom:912.570000px;}
.yb{bottom:913.830000px;}
.ya{bottom:930.570000px;}
.y3d{bottom:933.630000px;}
.y9{bottom:952.890000px;}
.y3c{bottom:954.690000px;}
.y3b{bottom:975.750000px;}
.y8{bottom:978.090000px;}
.y3a{bottom:996.810000px;}
.y7{bottom:1011.750000px;}
.y39{bottom:1017.870000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1052.430000px;}
.y37{bottom:1059.990000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1086.810000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1121.190000px;}
.y34{bottom:1123.170000px;}
.y33{bottom:1144.260000px;}
.y2{bottom:1155.420000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.he{height:31.500000px;}
.h10{height:31.536000px;}
.hd{height:36.720000px;}
.h8{height:38.671172px;}
.h9{height:52.260820px;}
.h2{height:56.146289px;}
.ha{height:59.439023px;}
.h6{height:61.189805px;}
.hc{height:61.423863px;}
.hb{height:62.211094px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h5{height:98.051133px;}
.hf{height:196.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:178.590000px;}
.w4{width:228.090000px;}
.w5{width:364.395000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.380000px;}
.x1{left:53.999987px;}
.x10{left:56.339987px;}
.xa{left:59.580000px;}
.x5{left:60.839987px;}
.xe{left:63.719987px;}
.x2{left:70.199987px;}
.x4{left:75.599987px;}
.x8{left:80.999987px;}
.xf{left:87.839987px;}
.x13{left:94.535987px;}
.x6{left:97.235987px;}
.x11{left:101.375987px;}
.x3{left:102.635987px;}
.x9{left:108.035987px;}
.x12{left:117.935987px;}
.x14{left:121.535987px;}
.x7{left:124.235987px;}
.xc{left:239.610000px;}
.xd{left:469.155000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls2f{letter-spacing:-0.267733pt;}
.ls1f{letter-spacing:-0.238933pt;}
.ls27{letter-spacing:-0.201600pt;}
.ls17{letter-spacing:-0.190933pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls35{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.057600pt;}
.ls16{letter-spacing:-0.051840pt;}
.ls37{letter-spacing:-0.044160pt;}
.ls1e{letter-spacing:-0.033920pt;}
.lsb{letter-spacing:-0.017920pt;}
.ls8{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.059733pt;}
.ls20{letter-spacing:0.082667pt;}
.ls32{letter-spacing:0.154667pt;}
.ls14{letter-spacing:0.154880pt;}
.ls23{letter-spacing:0.159360pt;}
.ls25{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.194133pt;}
.ls38{letter-spacing:0.216533pt;}
.ls39{letter-spacing:0.252267pt;}
.ls1d{letter-spacing:0.279467pt;}
.ls1c{letter-spacing:0.385280pt;}
.ls18{letter-spacing:0.401067pt;}
.ls34{letter-spacing:0.426240pt;}
.ls21{letter-spacing:0.454400pt;}
.ls7{letter-spacing:0.549120pt;}
.ls4{letter-spacing:0.586240pt;}
.ls22{letter-spacing:0.794880pt;}
.ls3a{letter-spacing:0.805333pt;}
.lsa{letter-spacing:0.826667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls11{letter-spacing:1.872640pt;}
.ls2b{letter-spacing:2.714880pt;}
.ls3{letter-spacing:3.354880pt;}
.ls10{letter-spacing:5.072640pt;}
.ls24{letter-spacing:10.832640pt;}
.ls13{letter-spacing:13.392640pt;}
.ls12{letter-spacing:15.312640pt;}
.ls1b{letter-spacing:15.952640pt;}
.ls19{letter-spacing:17.872640pt;}
.lse{letter-spacing:19.152640pt;}
.ls5{letter-spacing:21.274880pt;}
.ls36{letter-spacing:28.112640pt;}
.ls6{letter-spacing:33.872640pt;}
.ls1a{letter-spacing:37.712640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls28{letter-spacing:43.472640pt;}
.ls29{letter-spacing:44.112640pt;}
.ls2c{letter-spacing:52.560640pt;}
.ls33{letter-spacing:55.120640pt;}
.ls15{letter-spacing:56.912640pt;}
.ls2d{letter-spacing:72.400640pt;}
.ls2e{letter-spacing:74.320640pt;}
.ls31{letter-spacing:89.040640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws19{word-spacing:-12.810453pt;}
.ws10{word-spacing:-12.459520pt;}
.wsb{word-spacing:-12.406187pt;}
.wsc{word-spacing:-12.284587pt;}
.ws18{word-spacing:-12.221653pt;}
.ws14{word-spacing:-12.199253pt;}
.ws11{word-spacing:-12.164480pt;}
.wsf{word-spacing:-12.087787pt;}
.ws15{word-spacing:-12.064853pt;}
.ws5{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.971200pt;}
.ws17{word-spacing:-11.960960pt;}
.ws8{word-spacing:-11.953280pt;}
.ws16{word-spacing:-11.908053pt;}
.ws6{word-spacing:-11.902187pt;}
.ws9{word-spacing:-11.814187pt;}
.ws12{word-spacing:-11.803520pt;}
.wse{word-spacing:-11.766187pt;}
.ws13{word-spacing:-11.737387pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1339.799253pt;}
._1{margin-left:-1288.384000pt;}
._2{margin-left:-978.112000pt;}
._5{margin-left:-539.885760pt;}
._19{margin-left:-11.910400pt;}
._12{margin-left:-3.834027pt;}
._6{margin-left:-2.944000pt;}
._b{margin-left:-2.052693pt;}
._3{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.739840pt;}
._9{width:3.711360pt;}
._11{width:4.619307pt;}
._c{width:5.524480pt;}
._10{width:7.011840pt;}
._f{width:8.021120pt;}
._14{width:9.372373pt;}
._13{width:10.388267pt;}
._8{width:11.285973pt;}
._7{width:12.682880pt;}
._18{width:13.774720pt;}
._1a{width:15.438720pt;}
._15{width:17.476480pt;}
._e{width:21.110613pt;}
._d{width:22.416640pt;}
._17{width:23.598933pt;}
._16{width:24.647680pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:3.520000pt;}
.y76{bottom:19.840000pt;}
.y6{bottom:54.592000pt;}
.y73{bottom:80.032000pt;}
.y8c{bottom:81.152000pt;}
.y64{bottom:95.552000pt;}
.y7d{bottom:96.800000pt;}
.y72{bottom:98.752000pt;}
.y8b{bottom:99.872000pt;}
.y30{bottom:103.072000pt;}
.y7c{bottom:113.120000pt;}
.y63{bottom:114.272000pt;}
.y71{bottom:117.472000pt;}
.y8a{bottom:118.592000pt;}
.y2f{bottom:121.792000pt;}
.y7b{bottom:129.466667pt;}
.y62{bottom:132.992000pt;}
.y70{bottom:136.186667pt;}
.y89{bottom:137.306667pt;}
.y2e{bottom:140.506667pt;}
.y7a{bottom:145.626667pt;}
.y61{bottom:151.866667pt;}
.y6f{bottom:154.906667pt;}
.y88{bottom:156.026667pt;}
.y2d{bottom:159.226667pt;}
.y79{bottom:161.946667pt;}
.y60{bottom:171.226667pt;}
.y6e{bottom:173.626667pt;}
.y87{bottom:174.746667pt;}
.y2c{bottom:177.946667pt;}
.y5f{bottom:189.946667pt;}
.y86{bottom:193.466667pt;}
.y2b{bottom:196.666667pt;}
.y6d{bottom:200.346667pt;}
.y5e{bottom:209.306667pt;}
.y85{bottom:212.186667pt;}
.y2a{bottom:215.386667pt;}
.y6c{bottom:219.066667pt;}
.y5d{bottom:228.826667pt;}
.y84{bottom:230.906667pt;}
.y29{bottom:234.106667pt;}
.y6b{bottom:237.786667pt;}
.y5c{bottom:248.186667pt;}
.y83{bottom:249.626667pt;}
.y28{bottom:252.866667pt;}
.y6a{bottom:256.546667pt;}
.y5b{bottom:267.746667pt;}
.y82{bottom:268.386667pt;}
.y27{bottom:271.586667pt;}
.y69{bottom:275.266667pt;}
.y5a{bottom:287.106667pt;}
.y26{bottom:290.306667pt;}
.y68{bottom:293.986667pt;}
.y59{bottom:305.826667pt;}
.y25{bottom:309.026667pt;}
.y67{bottom:312.706667pt;}
.y58{bottom:324.546667pt;}
.y24{bottom:327.746667pt;}
.y66{bottom:331.426667pt;}
.y57{bottom:343.266667pt;}
.y23{bottom:346.466667pt;}
.y65{bottom:350.146667pt;}
.y56{bottom:361.986667pt;}
.y22{bottom:365.186667pt;}
.y78{bottom:376.226667pt;}
.y55{bottom:380.706667pt;}
.y21{bottom:383.906667pt;}
.y54{bottom:399.426667pt;}
.y20{bottom:402.626667pt;}
.y81{bottom:405.666667pt;}
.y53{bottom:418.146667pt;}
.y1f{bottom:421.346667pt;}
.y80{bottom:434.946667pt;}
.y52{bottom:436.866667pt;}
.y1e{bottom:440.066667pt;}
.y51{bottom:455.586667pt;}
.y1d{bottom:458.786667pt;}
.y7f{bottom:464.226667pt;}
.y50{bottom:474.306667pt;}
.y1c{bottom:477.506667pt;}
.y4f{bottom:493.026667pt;}
.y7e{bottom:493.666667pt;}
.y1b{bottom:496.226667pt;}
.y4e{bottom:511.773333pt;}
.y1a{bottom:514.973333pt;}
.y77{bottom:522.973333pt;}
.y4d{bottom:530.493333pt;}
.y19{bottom:535.773333pt;}
.y4c{bottom:549.213333pt;}
.y74{bottom:552.253333pt;}
.y18{bottom:554.333333pt;}
.y4b{bottom:567.933333pt;}
.y17{bottom:581.053333pt;}
.y4a{bottom:586.493333pt;}
.y16{bottom:599.773333pt;}
.y49{bottom:605.213333pt;}
.y15{bottom:618.493333pt;}
.y48{bottom:623.933333pt;}
.y14{bottom:637.213333pt;}
.y47{bottom:642.653333pt;}
.y13{bottom:655.933333pt;}
.y46{bottom:661.373333pt;}
.y12{bottom:674.653333pt;}
.y45{bottom:680.093333pt;}
.y11{bottom:693.373333pt;}
.y44{bottom:698.813333pt;}
.y10{bottom:712.093333pt;}
.y43{bottom:717.533333pt;}
.yf{bottom:730.813333pt;}
.y42{bottom:736.253333pt;}
.ye{bottom:749.533333pt;}
.y41{bottom:755.013333pt;}
.yd{bottom:770.213333pt;}
.y40{bottom:773.733333pt;}
.y3f{bottom:792.453333pt;}
.yc{bottom:793.573333pt;}
.y3e{bottom:811.173333pt;}
.yb{bottom:812.293333pt;}
.ya{bottom:827.173333pt;}
.y3d{bottom:829.893333pt;}
.y9{bottom:847.013333pt;}
.y3c{bottom:848.613333pt;}
.y3b{bottom:867.333333pt;}
.y8{bottom:869.413333pt;}
.y3a{bottom:886.053333pt;}
.y7{bottom:899.333333pt;}
.y39{bottom:904.773333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:935.493333pt;}
.y37{bottom:942.213333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:966.053333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:996.613333pt;}
.y34{bottom:998.373333pt;}
.y33{bottom:1017.120000pt;}
.y2{bottom:1027.040000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.he{height:28.000000pt;}
.h10{height:28.032000pt;}
.hd{height:32.640000pt;}
.h8{height:34.374375pt;}
.h9{height:46.454062pt;}
.h2{height:49.907812pt;}
.ha{height:52.834688pt;}
.h6{height:54.390938pt;}
.hc{height:54.598989pt;}
.hb{height:55.298750pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h5{height:87.156562pt;}
.hf{height:174.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:158.746667pt;}
.w4{width:202.746667pt;}
.w5{width:323.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.560000pt;}
.x1{left:47.999988pt;}
.x10{left:50.079988pt;}
.xa{left:52.960000pt;}
.x5{left:54.079988pt;}
.xe{left:56.639988pt;}
.x2{left:62.399988pt;}
.x4{left:67.199988pt;}
.x8{left:71.999988pt;}
.xf{left:78.079988pt;}
.x13{left:84.031988pt;}
.x6{left:86.431988pt;}
.x11{left:90.111988pt;}
.x3{left:91.231988pt;}
.x9{left:96.031988pt;}
.x12{left:104.831988pt;}
.x14{left:108.031988pt;}
.x7{left:110.431988pt;}
.xc{left:212.986667pt;}
.xd{left:417.026667pt;}
}




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