
    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_0125e860e81c4a2a83a79c51.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9afab09d29b90b252423fe83.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c47b8dafcab7b39e4354d803.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_19cbac4d5d2e77f04312e053.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_62bb99c61587b9e09f49fc45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b747126456d67b35d877e4eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090820;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_f0e0c1b5c9d699a9a5d4aa80.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.056152;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_d8a7f77158153b18b4c7c1fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_94289a3d52060b05dcdb74f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls53{letter-spacing:-1.182000px;}
.ls42{letter-spacing:-0.774000px;}
.ls25{letter-spacing:-0.612000px;}
.ls43{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.460200px;}
.ls23{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.206400px;}
.ls41{letter-spacing:-0.106800px;}
.ls20{letter-spacing:-0.053280px;}
.ls1d{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.053280px;}
.ls5a{letter-spacing:0.073440px;}
.ls5{letter-spacing:0.082560px;}
.ls3{letter-spacing:0.106560px;}
.ls40{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.153360px;}
.ls2{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.206640px;}
.ls21{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls2d{letter-spacing:0.282720px;}
.ls1b{letter-spacing:0.286560px;}
.ls4b{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.306600px;}
.ls16{letter-spacing:0.306720px;}
.ls28{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.826560px;}
.ls3e{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.620000px;}
.ls5c{letter-spacing:2.106720px;}
.ls48{letter-spacing:2.340000px;}
.ls45{letter-spacing:2.520000px;}
.ls31{letter-spacing:3.060000px;}
.ls57{letter-spacing:3.780000px;}
.ls35{letter-spacing:4.500000px;}
.lsf{letter-spacing:5.220000px;}
.ls10{letter-spacing:5.940000px;}
.ls26{letter-spacing:6.120000px;}
.ls1c{letter-spacing:6.660000px;}
.ls3f{letter-spacing:7.380000px;}
.ls9{letter-spacing:8.100000px;}
.ls3b{letter-spacing:8.820000px;}
.ls17{letter-spacing:9.540000px;}
.ls19{letter-spacing:10.260000px;}
.lsa{letter-spacing:10.980000px;}
.ls2b{letter-spacing:11.700000px;}
.ls3a{letter-spacing:12.420000px;}
.ls4f{letter-spacing:12.600000px;}
.ls37{letter-spacing:13.140000px;}
.ls11{letter-spacing:13.860000px;}
.ls1a{letter-spacing:14.580000px;}
.ls39{letter-spacing:16.020000px;}
.ls38{letter-spacing:17.460000px;}
.ls56{letter-spacing:17.640000px;}
.ls36{letter-spacing:18.180000px;}
.lsb{letter-spacing:18.900000px;}
.ls15{letter-spacing:19.620000px;}
.ls55{letter-spacing:19.800000px;}
.lse{letter-spacing:20.340000px;}
.ls29{letter-spacing:21.780000px;}
.ls47{letter-spacing:22.500000px;}
.ls44{letter-spacing:24.660000px;}
.ls2f{letter-spacing:25.380000px;}
.ls30{letter-spacing:25.560000px;}
.ls2a{letter-spacing:26.820000px;}
.ls2c{letter-spacing:28.980000px;}
.ls51{letter-spacing:30.420000px;}
.ls5b{letter-spacing:31.626720px;}
.ls50{letter-spacing:31.860000px;}
.ls4a{letter-spacing:32.556000px;}
.ls7{letter-spacing:32.580000px;}
.ls6{letter-spacing:33.300000px;}
.ls33{letter-spacing:34.740000px;}
.ls58{letter-spacing:36.900000px;}
.ls52{letter-spacing:40.500000px;}
.ls4c{letter-spacing:44.820000px;}
.ls18{letter-spacing:46.980000px;}
.ls2e{letter-spacing:49.140000px;}
.ls3d{letter-spacing:53.460000px;}
.ls49{letter-spacing:53.640000px;}
.ls13{letter-spacing:54.900000px;}
.ls3c{letter-spacing:58.680000px;}
.ls32{letter-spacing:60.660000px;}
.ls4d{letter-spacing:64.980000px;}
.ls54{letter-spacing:65.700000px;}
.ls4e{letter-spacing:65.880000px;}
.ls27{letter-spacing:66.420000px;}
.ls46{letter-spacing:93.780000px;}
.ls59{letter-spacing:442.260000px;}
.ls0{letter-spacing:926.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:-15.300000px;}
.ws3{word-spacing:-15.246600px;}
.wse{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.479800px;}
.ws8{word-spacing:-14.328000px;}
.wsd{word-spacing:-14.166000px;}
.ws9{word-spacing:0.000000px;}
._36{margin-left:-3.603120px;}
._11{margin-left:-2.569680px;}
._5{margin-left:-1.075680px;}
._0{width:1.015920px;}
._1{width:2.762880px;}
._3{width:3.884400px;}
._6{width:5.497920px;}
._4{width:6.752880px;}
._a{width:8.605440px;}
._c{width:10.577520px;}
._b{width:11.712960px;}
._f{width:13.404240px;}
._22{width:16.739280px;}
._d{width:18.754560px;}
._e{width:19.824240px;}
._8{width:21.004320px;}
._9{width:22.087440px;}
._1c{width:23.763840px;}
._1f{width:24.821040px;}
._13{width:26.174880px;}
._12{width:27.609120px;}
._1e{width:29.162880px;}
._2b{width:31.254480px;}
._21{width:32.270400px;}
._7{width:33.520320px;}
._19{width:34.825680px;}
._18{width:35.915760px;}
._24{width:37.409760px;}
._2e{width:38.426160px;}
._16{width:39.501360px;}
._1b{width:41.054400px;}
._31{width:42.310080px;}
._32{width:44.401680px;}
._15{width:46.410240px;}
._14{width:47.449440px;}
._20{width:48.936720px;}
._26{width:52.480320px;}
._23{width:53.593680px;}
._10{width:55.337760px;}
._27{width:59.719680px;}
._17{width:60.955200px;}
._39{width:62.098800px;}
._34{width:64.879920px;}
._1d{width:66.333600px;}
._2c{width:68.604480px;}
._33{width:70.203840px;}
._2f{width:71.735040px;}
._30{width:72.840960px;}
._29{width:75.596400px;}
._28{width:76.612320px;}
._2a{width:77.731920px;}
._38{width:80.562240px;}
._37{width:82.289520px;}
._2d{width:94.055520px;}
._1a{width:106.994160px;}
._35{width:108.643680px;}
._25{width:123.583680px;}
._2{width:768.843360px;}
._3a{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:55.800000px;}
.y3e{bottom:91.440000px;}
.y7e{bottom:104.760000px;}
.y3d{bottom:108.720000px;}
.y7d{bottom:122.040000px;}
.y3c{bottom:126.000000px;}
.y7c{bottom:139.356000px;}
.y3b{bottom:143.136000px;}
.y7b{bottom:156.630000px;}
.y3a{bottom:160.410000px;}
.y7a{bottom:173.910000px;}
.y39{bottom:177.690000px;}
.y79{bottom:191.010000px;}
.y38{bottom:194.970000px;}
.y78{bottom:208.290000px;}
.y37{bottom:212.250000px;}
.y77{bottom:225.570000px;}
.y36{bottom:229.530000px;}
.y76{bottom:242.850000px;}
.y35{bottom:246.630000px;}
.y75{bottom:260.130000px;}
.y34{bottom:263.910000px;}
.y74{bottom:277.410000px;}
.y33{bottom:281.190000px;}
.y73{bottom:294.510000px;}
.y32{bottom:298.470000px;}
.y72{bottom:311.790000px;}
.y31{bottom:315.750000px;}
.y71{bottom:329.070000px;}
.y30{bottom:332.850000px;}
.y70{bottom:346.350000px;}
.y2f{bottom:350.130000px;}
.y6f{bottom:363.630000px;}
.y2e{bottom:367.410000px;}
.y6e{bottom:380.730000px;}
.y2d{bottom:384.690000px;}
.y6d{bottom:398.055000px;}
.y2c{bottom:402.015000px;}
.y6c{bottom:415.335000px;}
.y2b{bottom:419.295000px;}
.y6b{bottom:432.615000px;}
.y2a{bottom:436.395000px;}
.y6a{bottom:449.895000px;}
.y29{bottom:453.675000px;}
.y69{bottom:467.175000px;}
.y28{bottom:470.955000px;}
.y68{bottom:484.275000px;}
.y27{bottom:488.235000px;}
.y67{bottom:501.555000px;}
.y26{bottom:505.515000px;}
.y66{bottom:518.835000px;}
.y25{bottom:522.795000px;}
.y65{bottom:536.115000px;}
.y24{bottom:539.895000px;}
.y64{bottom:553.395000px;}
.y23{bottom:557.175000px;}
.y63{bottom:570.675000px;}
.y22{bottom:574.455000px;}
.y62{bottom:587.775000px;}
.y21{bottom:591.735000px;}
.y61{bottom:605.055000px;}
.y20{bottom:609.015000px;}
.y60{bottom:622.335000px;}
.y1f{bottom:626.295000px;}
.y5f{bottom:639.615000px;}
.y1e{bottom:643.425000px;}
.y5e{bottom:656.925000px;}
.y1d{bottom:660.705000px;}
.y5d{bottom:674.025000px;}
.y1c{bottom:677.985000px;}
.y5c{bottom:691.305000px;}
.y1b{bottom:695.265000px;}
.y5b{bottom:708.585000px;}
.y1a{bottom:712.545000px;}
.y5a{bottom:725.865000px;}
.y19{bottom:729.645000px;}
.y59{bottom:743.145000px;}
.y18{bottom:746.925000px;}
.y58{bottom:760.425000px;}
.y17{bottom:764.205000px;}
.y57{bottom:777.525000px;}
.y16{bottom:781.485000px;}
.y56{bottom:794.805000px;}
.y15{bottom:798.765000px;}
.y55{bottom:812.085000px;}
.y14{bottom:816.045000px;}
.y54{bottom:829.365000px;}
.y13{bottom:833.145000px;}
.y53{bottom:846.645000px;}
.y12{bottom:850.425000px;}
.y52{bottom:863.925000px;}
.y11{bottom:867.705000px;}
.y51{bottom:881.025000px;}
.y10{bottom:884.985000px;}
.y50{bottom:898.350000px;}
.yf{bottom:902.310000px;}
.y4f{bottom:915.630000px;}
.ye{bottom:919.590000px;}
.y4e{bottom:932.910000px;}
.y4d{bottom:950.190000px;}
.yd{bottom:953.970000px;}
.y4c{bottom:967.470000px;}
.yc{bottom:971.250000px;}
.y4b{bottom:984.570000px;}
.yb{bottom:988.530000px;}
.y4a{bottom:1001.850000px;}
.ya{bottom:1005.810000px;}
.y49{bottom:1019.130000px;}
.y9{bottom:1023.090000px;}
.y48{bottom:1036.410000px;}
.y8{bottom:1040.190000px;}
.y47{bottom:1053.690000px;}
.y7{bottom:1057.470000px;}
.y46{bottom:1070.790000px;}
.y45{bottom:1088.070000px;}
.y6{bottom:1092.030000px;}
.y44{bottom:1105.350000px;}
.y5{bottom:1109.310000px;}
.y43{bottom:1122.630000px;}
.y4{bottom:1126.410000px;}
.y42{bottom:1139.910000px;}
.y3{bottom:1143.690000px;}
.y41{bottom:1157.220000px;}
.y2{bottom:1163.880000px;}
.y40{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.h6{height:52.290000px;}
.h9{height:52.998047px;}
.h8{height:53.573906px;}
.h5{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.ha{height:61.423863px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x4{left:117.935987px;}
.x10{left:136.115987px;}
.x9{left:141.515987px;}
.x2{left:275.294987px;}
.x7{left:314.534987px;}
.xc{left:369.974987px;}
.xa{left:398.954987px;}
.x5{left:411.554987px;}
.x11{left:457.304987px;}
.x3{left:461.444987px;}
.x12{left:487.004987px;}
.xe{left:537.944987px;}
.x6{left:545.144987px;}
.xb{left:555.944987px;}
.x8{left:651.749987px;}
.xd{left:655.169987px;}
.xf{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls53{letter-spacing:-1.050667pt;}
.ls42{letter-spacing:-0.688000pt;}
.ls25{letter-spacing:-0.544000pt;}
.ls43{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.409067pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.183467pt;}
.ls41{letter-spacing:-0.094933pt;}
.ls20{letter-spacing:-0.047360pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.047360pt;}
.ls5a{letter-spacing:0.065280pt;}
.ls5{letter-spacing:0.073387pt;}
.ls3{letter-spacing:0.094720pt;}
.ls40{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.136320pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.183680pt;}
.ls21{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls2d{letter-spacing:0.251307pt;}
.ls1b{letter-spacing:0.254720pt;}
.ls4b{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.272533pt;}
.ls16{letter-spacing:0.272640pt;}
.ls28{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.734720pt;}
.ls3e{letter-spacing:0.800000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls5c{letter-spacing:1.872640pt;}
.ls48{letter-spacing:2.080000pt;}
.ls45{letter-spacing:2.240000pt;}
.ls31{letter-spacing:2.720000pt;}
.ls57{letter-spacing:3.360000pt;}
.ls35{letter-spacing:4.000000pt;}
.lsf{letter-spacing:4.640000pt;}
.ls10{letter-spacing:5.280000pt;}
.ls26{letter-spacing:5.440000pt;}
.ls1c{letter-spacing:5.920000pt;}
.ls3f{letter-spacing:6.560000pt;}
.ls9{letter-spacing:7.200000pt;}
.ls3b{letter-spacing:7.840000pt;}
.ls17{letter-spacing:8.480000pt;}
.ls19{letter-spacing:9.120000pt;}
.lsa{letter-spacing:9.760000pt;}
.ls2b{letter-spacing:10.400000pt;}
.ls3a{letter-spacing:11.040000pt;}
.ls4f{letter-spacing:11.200000pt;}
.ls37{letter-spacing:11.680000pt;}
.ls11{letter-spacing:12.320000pt;}
.ls1a{letter-spacing:12.960000pt;}
.ls39{letter-spacing:14.240000pt;}
.ls38{letter-spacing:15.520000pt;}
.ls56{letter-spacing:15.680000pt;}
.ls36{letter-spacing:16.160000pt;}
.lsb{letter-spacing:16.800000pt;}
.ls15{letter-spacing:17.440000pt;}
.ls55{letter-spacing:17.600000pt;}
.lse{letter-spacing:18.080000pt;}
.ls29{letter-spacing:19.360000pt;}
.ls47{letter-spacing:20.000000pt;}
.ls44{letter-spacing:21.920000pt;}
.ls2f{letter-spacing:22.560000pt;}
.ls30{letter-spacing:22.720000pt;}
.ls2a{letter-spacing:23.840000pt;}
.ls2c{letter-spacing:25.760000pt;}
.ls51{letter-spacing:27.040000pt;}
.ls5b{letter-spacing:28.112640pt;}
.ls50{letter-spacing:28.320000pt;}
.ls4a{letter-spacing:28.938667pt;}
.ls7{letter-spacing:28.960000pt;}
.ls6{letter-spacing:29.600000pt;}
.ls33{letter-spacing:30.880000pt;}
.ls58{letter-spacing:32.800000pt;}
.ls52{letter-spacing:36.000000pt;}
.ls4c{letter-spacing:39.840000pt;}
.ls18{letter-spacing:41.760000pt;}
.ls2e{letter-spacing:43.680000pt;}
.ls3d{letter-spacing:47.520000pt;}
.ls49{letter-spacing:47.680000pt;}
.ls13{letter-spacing:48.800000pt;}
.ls3c{letter-spacing:52.160000pt;}
.ls32{letter-spacing:53.920000pt;}
.ls4d{letter-spacing:57.760000pt;}
.ls54{letter-spacing:58.400000pt;}
.ls4e{letter-spacing:58.560000pt;}
.ls27{letter-spacing:59.040000pt;}
.ls46{letter-spacing:83.360000pt;}
.ls59{letter-spacing:393.120000pt;}
.ls0{letter-spacing:823.360000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.870933pt;}
.ws8{word-spacing:-12.736000pt;}
.wsd{word-spacing:-12.592000pt;}
.ws9{word-spacing:0.000000pt;}
._36{margin-left:-3.202773pt;}
._11{margin-left:-2.284160pt;}
._5{margin-left:-0.956160pt;}
._0{width:0.903040pt;}
._1{width:2.455893pt;}
._3{width:3.452800pt;}
._6{width:4.887040pt;}
._4{width:6.002560pt;}
._a{width:7.649280pt;}
._c{width:9.402240pt;}
._b{width:10.411520pt;}
._f{width:11.914880pt;}
._22{width:14.879360pt;}
._d{width:16.670720pt;}
._e{width:17.621547pt;}
._8{width:18.670507pt;}
._9{width:19.633280pt;}
._1c{width:21.123413pt;}
._1f{width:22.063147pt;}
._13{width:23.266560pt;}
._12{width:24.541440pt;}
._1e{width:25.922560pt;}
._2b{width:27.781760pt;}
._21{width:28.684800pt;}
._7{width:29.795840pt;}
._19{width:30.956160pt;}
._18{width:31.925120pt;}
._24{width:33.253120pt;}
._2e{width:34.156587pt;}
._16{width:35.112320pt;}
._1b{width:36.492800pt;}
._31{width:37.608960pt;}
._32{width:39.468160pt;}
._15{width:41.253547pt;}
._14{width:42.177280pt;}
._20{width:43.499307pt;}
._26{width:46.649173pt;}
._23{width:47.638827pt;}
._10{width:49.189120pt;}
._27{width:53.084160pt;}
._17{width:54.182400pt;}
._39{width:55.198933pt;}
._34{width:57.671040pt;}
._1d{width:58.963200pt;}
._2c{width:60.981760pt;}
._33{width:62.403413pt;}
._2f{width:63.764480pt;}
._30{width:64.747520pt;}
._29{width:67.196800pt;}
._28{width:68.099840pt;}
._2a{width:69.095040pt;}
._38{width:71.610880pt;}
._37{width:73.146240pt;}
._2d{width:83.604907pt;}
._1a{width:95.105920pt;}
._35{width:96.572160pt;}
._25{width:109.852160pt;}
._2{width:683.416320pt;}
._3a{width:754.858667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:49.600000pt;}
.y3e{bottom:81.280000pt;}
.y7e{bottom:93.120000pt;}
.y3d{bottom:96.640000pt;}
.y7d{bottom:108.480000pt;}
.y3c{bottom:112.000000pt;}
.y7c{bottom:123.872000pt;}
.y3b{bottom:127.232000pt;}
.y7b{bottom:139.226667pt;}
.y3a{bottom:142.586667pt;}
.y7a{bottom:154.586667pt;}
.y39{bottom:157.946667pt;}
.y79{bottom:169.786667pt;}
.y38{bottom:173.306667pt;}
.y78{bottom:185.146667pt;}
.y37{bottom:188.666667pt;}
.y77{bottom:200.506667pt;}
.y36{bottom:204.026667pt;}
.y76{bottom:215.866667pt;}
.y35{bottom:219.226667pt;}
.y75{bottom:231.226667pt;}
.y34{bottom:234.586667pt;}
.y74{bottom:246.586667pt;}
.y33{bottom:249.946667pt;}
.y73{bottom:261.786667pt;}
.y32{bottom:265.306667pt;}
.y72{bottom:277.146667pt;}
.y31{bottom:280.666667pt;}
.y71{bottom:292.506667pt;}
.y30{bottom:295.866667pt;}
.y70{bottom:307.866667pt;}
.y2f{bottom:311.226667pt;}
.y6f{bottom:323.226667pt;}
.y2e{bottom:326.586667pt;}
.y6e{bottom:338.426667pt;}
.y2d{bottom:341.946667pt;}
.y6d{bottom:353.826667pt;}
.y2c{bottom:357.346667pt;}
.y6c{bottom:369.186667pt;}
.y2b{bottom:372.706667pt;}
.y6b{bottom:384.546667pt;}
.y2a{bottom:387.906667pt;}
.y6a{bottom:399.906667pt;}
.y29{bottom:403.266667pt;}
.y69{bottom:415.266667pt;}
.y28{bottom:418.626667pt;}
.y68{bottom:430.466667pt;}
.y27{bottom:433.986667pt;}
.y67{bottom:445.826667pt;}
.y26{bottom:449.346667pt;}
.y66{bottom:461.186667pt;}
.y25{bottom:464.706667pt;}
.y65{bottom:476.546667pt;}
.y24{bottom:479.906667pt;}
.y64{bottom:491.906667pt;}
.y23{bottom:495.266667pt;}
.y63{bottom:507.266667pt;}
.y22{bottom:510.626667pt;}
.y62{bottom:522.466667pt;}
.y21{bottom:525.986667pt;}
.y61{bottom:537.826667pt;}
.y20{bottom:541.346667pt;}
.y60{bottom:553.186667pt;}
.y1f{bottom:556.706667pt;}
.y5f{bottom:568.546667pt;}
.y1e{bottom:571.933333pt;}
.y5e{bottom:583.933333pt;}
.y1d{bottom:587.293333pt;}
.y5d{bottom:599.133333pt;}
.y1c{bottom:602.653333pt;}
.y5c{bottom:614.493333pt;}
.y1b{bottom:618.013333pt;}
.y5b{bottom:629.853333pt;}
.y1a{bottom:633.373333pt;}
.y5a{bottom:645.213333pt;}
.y19{bottom:648.573333pt;}
.y59{bottom:660.573333pt;}
.y18{bottom:663.933333pt;}
.y58{bottom:675.933333pt;}
.y17{bottom:679.293333pt;}
.y57{bottom:691.133333pt;}
.y16{bottom:694.653333pt;}
.y56{bottom:706.493333pt;}
.y15{bottom:710.013333pt;}
.y55{bottom:721.853333pt;}
.y14{bottom:725.373333pt;}
.y54{bottom:737.213333pt;}
.y13{bottom:740.573333pt;}
.y53{bottom:752.573333pt;}
.y12{bottom:755.933333pt;}
.y52{bottom:767.933333pt;}
.y11{bottom:771.293333pt;}
.y51{bottom:783.133333pt;}
.y10{bottom:786.653333pt;}
.y50{bottom:798.533333pt;}
.yf{bottom:802.053333pt;}
.y4f{bottom:813.893333pt;}
.ye{bottom:817.413333pt;}
.y4e{bottom:829.253333pt;}
.y4d{bottom:844.613333pt;}
.yd{bottom:847.973333pt;}
.y4c{bottom:859.973333pt;}
.yc{bottom:863.333333pt;}
.y4b{bottom:875.173333pt;}
.yb{bottom:878.693333pt;}
.y4a{bottom:890.533333pt;}
.ya{bottom:894.053333pt;}
.y49{bottom:905.893333pt;}
.y9{bottom:909.413333pt;}
.y48{bottom:921.253333pt;}
.y8{bottom:924.613333pt;}
.y47{bottom:936.613333pt;}
.y7{bottom:939.973333pt;}
.y46{bottom:951.813333pt;}
.y45{bottom:967.173333pt;}
.y6{bottom:970.693333pt;}
.y44{bottom:982.533333pt;}
.y5{bottom:986.053333pt;}
.y43{bottom:997.893333pt;}
.y4{bottom:1001.253333pt;}
.y42{bottom:1013.253333pt;}
.y3{bottom:1016.613333pt;}
.y41{bottom:1028.640000pt;}
.y2{bottom:1034.560000pt;}
.y40{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.h6{height:46.480000pt;}
.h9{height:47.109375pt;}
.h8{height:47.621250pt;}
.h5{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.ha{height:54.598989pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x4{left:104.831988pt;}
.x10{left:120.991988pt;}
.x9{left:125.791988pt;}
.x2{left:244.706655pt;}
.x7{left:279.586655pt;}
.xc{left:328.866655pt;}
.xa{left:354.626655pt;}
.x5{left:365.826655pt;}
.x11{left:406.493322pt;}
.x3{left:410.173322pt;}
.x12{left:432.893322pt;}
.xe{left:478.173322pt;}
.x6{left:484.573322pt;}
.xb{left:494.173322pt;}
.x8{left:579.333322pt;}
.xd{left:582.373322pt;}
.xf{left:699.333322pt;}
}




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