
    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_6989278f51ae0f9000b2fe42.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3bdc70e1098143cf6f53ea35.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_b8ac921c8bf9f8b7d6ffa37c.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.500000px;}
.ls0{letter-spacing:1.512000px;}
.ls3{letter-spacing:3.024000px;}
.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;}
}
.ws1{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.012000px;}
.ws0{word-spacing:-15.000000px;}
.ws7{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.000000px;}
.ws4{word-spacing:-1.980000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:7.020000px;}
._6{margin-left:-11.988000px;}
._5{margin-left:-10.476000px;}
._4{margin-left:-9.072000px;}
._14{margin-left:-7.788000px;}
._e{margin-left:-6.096000px;}
._d{margin-left:-4.404000px;}
._3{margin-left:-3.132000px;}
._1{margin-left:-1.728000px;}
._0{width:1.512000px;}
._2{width:2.808000px;}
._9{width:3.816000px;}
._c{width:5.304000px;}
._8{width:6.504000px;}
._7{width:8.148000px;}
._13{width:9.156000px;}
._f{width:10.200000px;}
._b{width:11.712000px;}
._a{width:13.692000px;}
._1b{width:14.850000px;}
._12{width:16.608000px;}
._16{width:18.636000px;}
._19{width:20.844000px;}
._18{width:21.852000px;}
._10{width:1677.252000px;}
._1a{width:1820.796000px;}
._17{width:1831.500000px;}
._15{width:1844.796000px;}
._11{width:1853.988000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:88.875000px;}
.y10f{bottom:127.875000px;}
.y15b{bottom:128.250000px;}
.ydc{bottom:129.000000px;}
.y6f{bottom:130.125000px;}
.y21{bottom:130.500000px;}
.y32{bottom:130.875000px;}
.ya4{bottom:132.000000px;}
.y9e{bottom:132.375000px;}
.y13d{bottom:137.625000px;}
.y10e{bottom:141.375000px;}
.y15a{bottom:141.750000px;}
.ydb{bottom:142.500000px;}
.y6e{bottom:145.125000px;}
.y20{bottom:145.500000px;}
.y31{bottom:145.875000px;}
.y9d{bottom:147.375000px;}
.y13c{bottom:151.125000px;}
.y10d{bottom:154.875000px;}
.y159{bottom:155.250000px;}
.yda{bottom:156.000000px;}
.ya3{bottom:159.000000px;}
.y6d{bottom:160.125000px;}
.y1f{bottom:160.500000px;}
.y30{bottom:160.875000px;}
.y9c{bottom:162.375000px;}
.y13b{bottom:164.625000px;}
.y158{bottom:168.750000px;}
.yd9{bottom:169.500000px;}
.ya2{bottom:172.500000px;}
.y6c{bottom:175.125000px;}
.y1e{bottom:175.500000px;}
.y2f{bottom:175.875000px;}
.y9b{bottom:177.375000px;}
.y157{bottom:182.250000px;}
.ya1{bottom:186.000000px;}
.y13a{bottom:187.125000px;}
.y10c{bottom:189.000000px;}
.y6b{bottom:190.125000px;}
.y1d{bottom:190.500000px;}
.y2e{bottom:190.875000px;}
.yd8{bottom:191.625000px;}
.y9a{bottom:192.375000px;}
.y139{bottom:200.625000px;}
.y10b{bottom:202.500000px;}
.y156{bottom:203.250000px;}
.y6a{bottom:205.125000px;}
.y1c{bottom:205.500000px;}
.y2d{bottom:205.875000px;}
.y99{bottom:207.375000px;}
.ya0{bottom:208.125000px;}
.y138{bottom:214.125000px;}
.y10a{bottom:216.000000px;}
.y155{bottom:216.750000px;}
.yd7{bottom:218.625000px;}
.y69{bottom:220.125000px;}
.y1b{bottom:220.500000px;}
.y2c{bottom:220.875000px;}
.y98{bottom:222.375000px;}
.y154{bottom:230.250000px;}
.y68{bottom:235.125000px;}
.y1a{bottom:235.500000px;}
.y109{bottom:236.625000px;}
.y97{bottom:237.375000px;}
.yd6{bottom:240.750000px;}
.y153{bottom:243.750000px;}
.y2b{bottom:248.625000px;}
.y67{bottom:250.125000px;}
.y8f{bottom:252.375000px;}
.yd5{bottom:254.250000px;}
.y152{bottom:257.250000px;}
.y2a{bottom:263.625000px;}
.y66{bottom:265.125000px;}
.y8e{bottom:267.375000px;}
.y19{bottom:267.750000px;}
.y137{bottom:272.625000px;}
.y108{bottom:277.125000px;}
.y151{bottom:278.625000px;}
.y65{bottom:280.125000px;}
.y8d{bottom:282.375000px;}
.y18{bottom:282.750000px;}
.y136{bottom:286.125000px;}
.yd4{bottom:289.500000px;}
.y150{bottom:292.125000px;}
.y91{bottom:295.125000px;}
.y8c{bottom:297.375000px;}
.y17{bottom:297.750000px;}
.yd3{bottom:303.000000px;}
.y14f{bottom:305.625000px;}
.y135{bottom:308.250000px;}
.y64{bottom:310.125000px;}
.y107{bottom:311.250000px;}
.y8b{bottom:312.375000px;}
.y16{bottom:312.750000px;}
.yd2{bottom:316.500000px;}
.y134{bottom:321.750000px;}
.y29{bottom:323.625000px;}
.y106{bottom:324.750000px;}
.y63{bottom:325.125000px;}
.y14e{bottom:326.625000px;}
.y8a{bottom:327.375000px;}
.y15{bottom:327.750000px;}
.yd1{bottom:330.000000px;}
.y133{bottom:335.250000px;}
.y28{bottom:338.625000px;}
.y62{bottom:340.125000px;}
.y89{bottom:342.375000px;}
.y14{bottom:342.750000px;}
.y105{bottom:345.375000px;}
.y132{bottom:348.750000px;}
.yd0{bottom:352.125000px;}
.y27{bottom:353.625000px;}
.y61{bottom:355.125000px;}
.y88{bottom:357.375000px;}
.y13{bottom:357.750000px;}
.y104{bottom:358.875000px;}
.y131{bottom:362.250000px;}
.ycf{bottom:365.625000px;}
.y14d{bottom:367.125000px;}
.y26{bottom:368.625000px;}
.y60{bottom:370.125000px;}
.y87{bottom:372.375000px;}
.y12{bottom:372.750000px;}
.yce{bottom:379.125000px;}
.y25{bottom:383.625000px;}
.y130{bottom:384.750000px;}
.y5f{bottom:385.125000px;}
.y103{bottom:385.875000px;}
.y86{bottom:387.375000px;}
.y11{bottom:387.750000px;}
.y14c{bottom:388.500000px;}
.ycd{bottom:392.625000px;}
.y12f{bottom:398.250000px;}
.y24{bottom:398.625000px;}
.y5e{bottom:400.125000px;}
.y14b{bottom:402.000000px;}
.y85{bottom:402.375000px;}
.y10{bottom:402.750000px;}
.ycc{bottom:406.125000px;}
.y102{bottom:406.875000px;}
.y12e{bottom:411.750000px;}
.y23{bottom:413.625000px;}
.y5d{bottom:415.125000px;}
.y14a{bottom:415.500000px;}
.y84{bottom:417.375000px;}
.yf{bottom:417.750000px;}
.y101{bottom:420.375000px;}
.y12d{bottom:425.250000px;}
.ycb{bottom:427.875000px;}
.y22{bottom:428.625000px;}
.y149{bottom:429.000000px;}
.y5c{bottom:430.125000px;}
.y83{bottom:432.375000px;}
.ye{bottom:432.750000px;}
.y100{bottom:433.875000px;}
.yca{bottom:441.375000px;}
.y5b{bottom:445.125000px;}
.y82{bottom:447.375000px;}
.y12c{bottom:447.750000px;}
.y148{bottom:450.000000px;}
.yc9{bottom:454.875000px;}
.y5a{bottom:460.125000px;}
.yd{bottom:460.500000px;}
.y12b{bottom:461.250000px;}
.y81{bottom:462.375000px;}
.y147{bottom:463.500000px;}
.yc8{bottom:468.375000px;}
.yff{bottom:469.125000px;}
.y12a{bottom:474.750000px;}
.y59{bottom:475.125000px;}
.y146{bottom:477.000000px;}
.y80{bottom:477.375000px;}
.yc7{bottom:481.875000px;}
.yfe{bottom:482.625000px;}
.y129{bottom:488.250000px;}
.y58{bottom:490.125000px;}
.y145{bottom:490.500000px;}
.y7f{bottom:492.375000px;}
.yfd{bottom:496.125000px;}
.yc6{bottom:504.000000px;}
.y57{bottom:505.125000px;}
.y7e{bottom:507.375000px;}
.yfc{bottom:509.625000px;}
.y128{bottom:510.750000px;}
.yc5{bottom:517.500000px;}
.y56{bottom:520.125000px;}
.y7d{bottom:522.375000px;}
.yfb{bottom:523.125000px;}
.y127{bottom:524.250000px;}
.y144{bottom:526.125000px;}
.yc4{bottom:531.000000px;}
.y92{bottom:535.125000px;}
.y7c{bottom:537.375000px;}
.y126{bottom:537.750000px;}
.y143{bottom:539.625000px;}
.yfa{bottom:545.250000px;}
.y55{bottom:550.125000px;}
.y7b{bottom:552.375000px;}
.yc3{bottom:553.125000px;}
.yf9{bottom:558.750000px;}
.y125{bottom:560.250000px;}
.y54{bottom:565.125000px;}
.yc2{bottom:566.625000px;}
.y7a{bottom:567.375000px;}
.yf8{bottom:572.250000px;}
.y124{bottom:573.750000px;}
.y142{bottom:574.875000px;}
.y172{bottom:576.375000px;}
.y53{bottom:580.125000px;}
.y79{bottom:582.375000px;}
.y123{bottom:587.250000px;}
.y141{bottom:588.375000px;}
.yf7{bottom:594.000000px;}
.y52{bottom:595.125000px;}
.y78{bottom:597.375000px;}
.y122{bottom:600.750000px;}
.yc1{bottom:601.875000px;}
.yf6{bottom:607.500000px;}
.y51{bottom:610.125000px;}
.y77{bottom:612.375000px;}
.yc0{bottom:615.375000px;}
.yf5{bottom:621.000000px;}
.y121{bottom:622.875000px;}
.y50{bottom:625.125000px;}
.y76{bottom:627.375000px;}
.ybf{bottom:628.875000px;}
.yc{bottom:633.750000px;}
.y120{bottom:636.375000px;}
.y140{bottom:637.500000px;}
.y4f{bottom:640.125000px;}
.y75{bottom:642.375000px;}
.yf4{bottom:643.125000px;}
.yb{bottom:648.750000px;}
.y11f{bottom:649.875000px;}
.y13f{bottom:651.000000px;}
.y4e{bottom:655.125000px;}
.yf3{bottom:656.625000px;}
.y74{bottom:657.375000px;}
.y171{bottom:662.625000px;}
.y11e{bottom:663.375000px;}
.ya{bottom:663.750000px;}
.ybe{bottom:664.500000px;}
.y4d{bottom:670.125000px;}
.y73{bottom:672.375000px;}
.y170{bottom:676.125000px;}
.ybd{bottom:678.000000px;}
.y9{bottom:678.750000px;}
.y4c{bottom:685.125000px;}
.y11d{bottom:685.875000px;}
.y72{bottom:687.375000px;}
.y16f{bottom:689.625000px;}
.ybc{bottom:691.500000px;}
.yf2{bottom:692.250000px;}
.y8{bottom:693.750000px;}
.y11c{bottom:699.375000px;}
.y13e{bottom:699.750000px;}
.y4b{bottom:700.125000px;}
.y71{bottom:702.375000px;}
.y16e{bottom:703.125000px;}
.y15f{bottom:705.000000px;}
.yf1{bottom:705.750000px;}
.y7{bottom:708.750000px;}
.y11b{bottom:712.875000px;}
.ybb{bottom:713.250000px;}
.y90{bottom:715.125000px;}
.y96{bottom:717.375000px;}
.yba{bottom:726.750000px;}
.yf0{bottom:727.500000px;}
.y4a{bottom:730.125000px;}
.y95{bottom:732.375000px;}
.y11a{bottom:735.375000px;}
.y6{bottom:736.875000px;}
.yb9{bottom:740.250000px;}
.yef{bottom:741.000000px;}
.y49{bottom:745.125000px;}
.y94{bottom:747.375000px;}
.y119{bottom:748.875000px;}
.yb8{bottom:753.750000px;}
.yee{bottom:754.500000px;}
.y48{bottom:760.125000px;}
.y93{bottom:762.375000px;}
.y47{bottom:775.125000px;}
.yb7{bottom:775.875000px;}
.yed{bottom:776.625000px;}
.y9f{bottom:777.375000px;}
.yb6{bottom:789.375000px;}
.y46{bottom:790.125000px;}
.y16d{bottom:790.875000px;}
.y118{bottom:798.000000px;}
.yb5{bottom:802.875000px;}
.yec{bottom:803.625000px;}
.y16c{bottom:804.375000px;}
.y45{bottom:805.125000px;}
.y117{bottom:811.500000px;}
.y15e{bottom:816.375000px;}
.yeb{bottom:817.125000px;}
.y16b{bottom:817.875000px;}
.y44{bottom:820.125000px;}
.yb4{bottom:825.000000px;}
.y43{bottom:835.125000px;}
.yb3{bottom:838.500000px;}
.yea{bottom:838.875000px;}
.y16a{bottom:841.500000px;}
.y42{bottom:850.125000px;}
.yb2{bottom:852.000000px;}
.ye9{bottom:852.375000px;}
.y169{bottom:855.000000px;}
.y116{bottom:860.250000px;}
.y41{bottom:865.125000px;}
.yb1{bottom:865.500000px;}
.ye8{bottom:865.875000px;}
.y168{bottom:868.500000px;}
.y5{bottom:870.375000px;}
.y115{bottom:873.750000px;}
.y15d{bottom:879.000000px;}
.y40{bottom:880.125000px;}
.y4{bottom:885.375000px;}
.yb0{bottom:887.250000px;}
.ye7{bottom:888.000000px;}
.y167{bottom:892.500000px;}
.y3f{bottom:895.125000px;}
.yaf{bottom:900.750000px;}
.ye6{bottom:901.500000px;}
.y166{bottom:906.000000px;}
.y3e{bottom:910.125000px;}
.yae{bottom:914.250000px;}
.ye5{bottom:915.000000px;}
.y165{bottom:919.500000px;}
.y114{bottom:922.875000px;}
.y3d{bottom:925.125000px;}
.y15c{bottom:927.750000px;}
.y164{bottom:933.000000px;}
.y3{bottom:934.500000px;}
.yad{bottom:936.375000px;}
.ye4{bottom:937.125000px;}
.y3c{bottom:940.125000px;}
.yac{bottom:949.875000px;}
.ye3{bottom:950.625000px;}
.y3b{bottom:955.125000px;}
.y163{bottom:956.625000px;}
.y2{bottom:961.500000px;}
.yab{bottom:963.375000px;}
.ye2{bottom:964.125000px;}
.y3a{bottom:970.125000px;}
.y113{bottom:971.625000px;}
.yaa{bottom:976.875000px;}
.ye1{bottom:977.625000px;}
.y162{bottom:983.625000px;}
.y39{bottom:985.125000px;}
.y1{bottom:988.500000px;}
.ya9{bottom:990.375000px;}
.y161{bottom:997.125000px;}
.y112{bottom:998.625000px;}
.ye0{bottom:999.375000px;}
.y38{bottom:1000.125000px;}
.ya8{bottom:1012.125000px;}
.ydf{bottom:1012.875000px;}
.y37{bottom:1015.125000px;}
.y160{bottom:1020.750000px;}
.ya7{bottom:1025.625000px;}
.yde{bottom:1026.375000px;}
.y70{bottom:1030.125000px;}
.y111{bottom:1034.250000px;}
.ya6{bottom:1039.125000px;}
.ydd{bottom:1039.875000px;}
.y36{bottom:1045.125000px;}
.y110{bottom:1047.750000px;}
.y35{bottom:1060.125000px;}
.ya5{bottom:1061.250000px;}
.y33{bottom:1107.375000px;}
.h6{height:47.109375px;}
.h9{height:52.971680px;}
.h8{height:52.998047px;}
.h7{height:54.421875px;}
.h3{height:58.886719px;}
.h2{height:60.468750px;}
.h5{height:64.775391px;}
.h4{height:66.515625px;}
.h1{height:108.843750px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:97.687500px;}
.x3{left:114.562500px;}
.x2{left:476.062500px;}
.x4{left:492.937500px;}
@media print{
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.333333pt;}
.ls0{letter-spacing:1.344000pt;}
.ls3{letter-spacing:2.688000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.344000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws4{word-spacing:-1.760000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:6.240000pt;}
._6{margin-left:-10.656000pt;}
._5{margin-left:-9.312000pt;}
._4{margin-left:-8.064000pt;}
._14{margin-left:-6.922667pt;}
._e{margin-left:-5.418667pt;}
._d{margin-left:-3.914667pt;}
._3{margin-left:-2.784000pt;}
._1{margin-left:-1.536000pt;}
._0{width:1.344000pt;}
._2{width:2.496000pt;}
._9{width:3.392000pt;}
._c{width:4.714667pt;}
._8{width:5.781333pt;}
._7{width:7.242667pt;}
._13{width:8.138667pt;}
._f{width:9.066667pt;}
._b{width:10.410667pt;}
._a{width:12.170667pt;}
._1b{width:13.200000pt;}
._12{width:14.762667pt;}
._16{width:16.565333pt;}
._19{width:18.528000pt;}
._18{width:19.424000pt;}
._10{width:1490.890667pt;}
._1a{width:1618.485333pt;}
._17{width:1628.000000pt;}
._15{width:1639.818667pt;}
._11{width:1647.989333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:79.000000pt;}
.y10f{bottom:113.666667pt;}
.y15b{bottom:114.000000pt;}
.ydc{bottom:114.666667pt;}
.y6f{bottom:115.666667pt;}
.y21{bottom:116.000000pt;}
.y32{bottom:116.333333pt;}
.ya4{bottom:117.333333pt;}
.y9e{bottom:117.666667pt;}
.y13d{bottom:122.333333pt;}
.y10e{bottom:125.666667pt;}
.y15a{bottom:126.000000pt;}
.ydb{bottom:126.666667pt;}
.y6e{bottom:129.000000pt;}
.y20{bottom:129.333333pt;}
.y31{bottom:129.666667pt;}
.y9d{bottom:131.000000pt;}
.y13c{bottom:134.333333pt;}
.y10d{bottom:137.666667pt;}
.y159{bottom:138.000000pt;}
.yda{bottom:138.666667pt;}
.ya3{bottom:141.333333pt;}
.y6d{bottom:142.333333pt;}
.y1f{bottom:142.666667pt;}
.y30{bottom:143.000000pt;}
.y9c{bottom:144.333333pt;}
.y13b{bottom:146.333333pt;}
.y158{bottom:150.000000pt;}
.yd9{bottom:150.666667pt;}
.ya2{bottom:153.333333pt;}
.y6c{bottom:155.666667pt;}
.y1e{bottom:156.000000pt;}
.y2f{bottom:156.333333pt;}
.y9b{bottom:157.666667pt;}
.y157{bottom:162.000000pt;}
.ya1{bottom:165.333333pt;}
.y13a{bottom:166.333333pt;}
.y10c{bottom:168.000000pt;}
.y6b{bottom:169.000000pt;}
.y1d{bottom:169.333333pt;}
.y2e{bottom:169.666667pt;}
.yd8{bottom:170.333333pt;}
.y9a{bottom:171.000000pt;}
.y139{bottom:178.333333pt;}
.y10b{bottom:180.000000pt;}
.y156{bottom:180.666667pt;}
.y6a{bottom:182.333333pt;}
.y1c{bottom:182.666667pt;}
.y2d{bottom:183.000000pt;}
.y99{bottom:184.333333pt;}
.ya0{bottom:185.000000pt;}
.y138{bottom:190.333333pt;}
.y10a{bottom:192.000000pt;}
.y155{bottom:192.666667pt;}
.yd7{bottom:194.333333pt;}
.y69{bottom:195.666667pt;}
.y1b{bottom:196.000000pt;}
.y2c{bottom:196.333333pt;}
.y98{bottom:197.666667pt;}
.y154{bottom:204.666667pt;}
.y68{bottom:209.000000pt;}
.y1a{bottom:209.333333pt;}
.y109{bottom:210.333333pt;}
.y97{bottom:211.000000pt;}
.yd6{bottom:214.000000pt;}
.y153{bottom:216.666667pt;}
.y2b{bottom:221.000000pt;}
.y67{bottom:222.333333pt;}
.y8f{bottom:224.333333pt;}
.yd5{bottom:226.000000pt;}
.y152{bottom:228.666667pt;}
.y2a{bottom:234.333333pt;}
.y66{bottom:235.666667pt;}
.y8e{bottom:237.666667pt;}
.y19{bottom:238.000000pt;}
.y137{bottom:242.333333pt;}
.y108{bottom:246.333333pt;}
.y151{bottom:247.666667pt;}
.y65{bottom:249.000000pt;}
.y8d{bottom:251.000000pt;}
.y18{bottom:251.333333pt;}
.y136{bottom:254.333333pt;}
.yd4{bottom:257.333333pt;}
.y150{bottom:259.666667pt;}
.y91{bottom:262.333333pt;}
.y8c{bottom:264.333333pt;}
.y17{bottom:264.666667pt;}
.yd3{bottom:269.333333pt;}
.y14f{bottom:271.666667pt;}
.y135{bottom:274.000000pt;}
.y64{bottom:275.666667pt;}
.y107{bottom:276.666667pt;}
.y8b{bottom:277.666667pt;}
.y16{bottom:278.000000pt;}
.yd2{bottom:281.333333pt;}
.y134{bottom:286.000000pt;}
.y29{bottom:287.666667pt;}
.y106{bottom:288.666667pt;}
.y63{bottom:289.000000pt;}
.y14e{bottom:290.333333pt;}
.y8a{bottom:291.000000pt;}
.y15{bottom:291.333333pt;}
.yd1{bottom:293.333333pt;}
.y133{bottom:298.000000pt;}
.y28{bottom:301.000000pt;}
.y62{bottom:302.333333pt;}
.y89{bottom:304.333333pt;}
.y14{bottom:304.666667pt;}
.y105{bottom:307.000000pt;}
.y132{bottom:310.000000pt;}
.yd0{bottom:313.000000pt;}
.y27{bottom:314.333333pt;}
.y61{bottom:315.666667pt;}
.y88{bottom:317.666667pt;}
.y13{bottom:318.000000pt;}
.y104{bottom:319.000000pt;}
.y131{bottom:322.000000pt;}
.ycf{bottom:325.000000pt;}
.y14d{bottom:326.333333pt;}
.y26{bottom:327.666667pt;}
.y60{bottom:329.000000pt;}
.y87{bottom:331.000000pt;}
.y12{bottom:331.333333pt;}
.yce{bottom:337.000000pt;}
.y25{bottom:341.000000pt;}
.y130{bottom:342.000000pt;}
.y5f{bottom:342.333333pt;}
.y103{bottom:343.000000pt;}
.y86{bottom:344.333333pt;}
.y11{bottom:344.666667pt;}
.y14c{bottom:345.333333pt;}
.ycd{bottom:349.000000pt;}
.y12f{bottom:354.000000pt;}
.y24{bottom:354.333333pt;}
.y5e{bottom:355.666667pt;}
.y14b{bottom:357.333333pt;}
.y85{bottom:357.666667pt;}
.y10{bottom:358.000000pt;}
.ycc{bottom:361.000000pt;}
.y102{bottom:361.666667pt;}
.y12e{bottom:366.000000pt;}
.y23{bottom:367.666667pt;}
.y5d{bottom:369.000000pt;}
.y14a{bottom:369.333333pt;}
.y84{bottom:371.000000pt;}
.yf{bottom:371.333333pt;}
.y101{bottom:373.666667pt;}
.y12d{bottom:378.000000pt;}
.ycb{bottom:380.333333pt;}
.y22{bottom:381.000000pt;}
.y149{bottom:381.333333pt;}
.y5c{bottom:382.333333pt;}
.y83{bottom:384.333333pt;}
.ye{bottom:384.666667pt;}
.y100{bottom:385.666667pt;}
.yca{bottom:392.333333pt;}
.y5b{bottom:395.666667pt;}
.y82{bottom:397.666667pt;}
.y12c{bottom:398.000000pt;}
.y148{bottom:400.000000pt;}
.yc9{bottom:404.333333pt;}
.y5a{bottom:409.000000pt;}
.yd{bottom:409.333333pt;}
.y12b{bottom:410.000000pt;}
.y81{bottom:411.000000pt;}
.y147{bottom:412.000000pt;}
.yc8{bottom:416.333333pt;}
.yff{bottom:417.000000pt;}
.y12a{bottom:422.000000pt;}
.y59{bottom:422.333333pt;}
.y146{bottom:424.000000pt;}
.y80{bottom:424.333333pt;}
.yc7{bottom:428.333333pt;}
.yfe{bottom:429.000000pt;}
.y129{bottom:434.000000pt;}
.y58{bottom:435.666667pt;}
.y145{bottom:436.000000pt;}
.y7f{bottom:437.666667pt;}
.yfd{bottom:441.000000pt;}
.yc6{bottom:448.000000pt;}
.y57{bottom:449.000000pt;}
.y7e{bottom:451.000000pt;}
.yfc{bottom:453.000000pt;}
.y128{bottom:454.000000pt;}
.yc5{bottom:460.000000pt;}
.y56{bottom:462.333333pt;}
.y7d{bottom:464.333333pt;}
.yfb{bottom:465.000000pt;}
.y127{bottom:466.000000pt;}
.y144{bottom:467.666667pt;}
.yc4{bottom:472.000000pt;}
.y92{bottom:475.666667pt;}
.y7c{bottom:477.666667pt;}
.y126{bottom:478.000000pt;}
.y143{bottom:479.666667pt;}
.yfa{bottom:484.666667pt;}
.y55{bottom:489.000000pt;}
.y7b{bottom:491.000000pt;}
.yc3{bottom:491.666667pt;}
.yf9{bottom:496.666667pt;}
.y125{bottom:498.000000pt;}
.y54{bottom:502.333333pt;}
.yc2{bottom:503.666667pt;}
.y7a{bottom:504.333333pt;}
.yf8{bottom:508.666667pt;}
.y124{bottom:510.000000pt;}
.y142{bottom:511.000000pt;}
.y172{bottom:512.333333pt;}
.y53{bottom:515.666667pt;}
.y79{bottom:517.666667pt;}
.y123{bottom:522.000000pt;}
.y141{bottom:523.000000pt;}
.yf7{bottom:528.000000pt;}
.y52{bottom:529.000000pt;}
.y78{bottom:531.000000pt;}
.y122{bottom:534.000000pt;}
.yc1{bottom:535.000000pt;}
.yf6{bottom:540.000000pt;}
.y51{bottom:542.333333pt;}
.y77{bottom:544.333333pt;}
.yc0{bottom:547.000000pt;}
.yf5{bottom:552.000000pt;}
.y121{bottom:553.666667pt;}
.y50{bottom:555.666667pt;}
.y76{bottom:557.666667pt;}
.ybf{bottom:559.000000pt;}
.yc{bottom:563.333333pt;}
.y120{bottom:565.666667pt;}
.y140{bottom:566.666667pt;}
.y4f{bottom:569.000000pt;}
.y75{bottom:571.000000pt;}
.yf4{bottom:571.666667pt;}
.yb{bottom:576.666667pt;}
.y11f{bottom:577.666667pt;}
.y13f{bottom:578.666667pt;}
.y4e{bottom:582.333333pt;}
.yf3{bottom:583.666667pt;}
.y74{bottom:584.333333pt;}
.y171{bottom:589.000000pt;}
.y11e{bottom:589.666667pt;}
.ya{bottom:590.000000pt;}
.ybe{bottom:590.666667pt;}
.y4d{bottom:595.666667pt;}
.y73{bottom:597.666667pt;}
.y170{bottom:601.000000pt;}
.ybd{bottom:602.666667pt;}
.y9{bottom:603.333333pt;}
.y4c{bottom:609.000000pt;}
.y11d{bottom:609.666667pt;}
.y72{bottom:611.000000pt;}
.y16f{bottom:613.000000pt;}
.ybc{bottom:614.666667pt;}
.yf2{bottom:615.333333pt;}
.y8{bottom:616.666667pt;}
.y11c{bottom:621.666667pt;}
.y13e{bottom:622.000000pt;}
.y4b{bottom:622.333333pt;}
.y71{bottom:624.333333pt;}
.y16e{bottom:625.000000pt;}
.y15f{bottom:626.666667pt;}
.yf1{bottom:627.333333pt;}
.y7{bottom:630.000000pt;}
.y11b{bottom:633.666667pt;}
.ybb{bottom:634.000000pt;}
.y90{bottom:635.666667pt;}
.y96{bottom:637.666667pt;}
.yba{bottom:646.000000pt;}
.yf0{bottom:646.666667pt;}
.y4a{bottom:649.000000pt;}
.y95{bottom:651.000000pt;}
.y11a{bottom:653.666667pt;}
.y6{bottom:655.000000pt;}
.yb9{bottom:658.000000pt;}
.yef{bottom:658.666667pt;}
.y49{bottom:662.333333pt;}
.y94{bottom:664.333333pt;}
.y119{bottom:665.666667pt;}
.yb8{bottom:670.000000pt;}
.yee{bottom:670.666667pt;}
.y48{bottom:675.666667pt;}
.y93{bottom:677.666667pt;}
.y47{bottom:689.000000pt;}
.yb7{bottom:689.666667pt;}
.yed{bottom:690.333333pt;}
.y9f{bottom:691.000000pt;}
.yb6{bottom:701.666667pt;}
.y46{bottom:702.333333pt;}
.y16d{bottom:703.000000pt;}
.y118{bottom:709.333333pt;}
.yb5{bottom:713.666667pt;}
.yec{bottom:714.333333pt;}
.y16c{bottom:715.000000pt;}
.y45{bottom:715.666667pt;}
.y117{bottom:721.333333pt;}
.y15e{bottom:725.666667pt;}
.yeb{bottom:726.333333pt;}
.y16b{bottom:727.000000pt;}
.y44{bottom:729.000000pt;}
.yb4{bottom:733.333333pt;}
.y43{bottom:742.333333pt;}
.yb3{bottom:745.333333pt;}
.yea{bottom:745.666667pt;}
.y16a{bottom:748.000000pt;}
.y42{bottom:755.666667pt;}
.yb2{bottom:757.333333pt;}
.ye9{bottom:757.666667pt;}
.y169{bottom:760.000000pt;}
.y116{bottom:764.666667pt;}
.y41{bottom:769.000000pt;}
.yb1{bottom:769.333333pt;}
.ye8{bottom:769.666667pt;}
.y168{bottom:772.000000pt;}
.y5{bottom:773.666667pt;}
.y115{bottom:776.666667pt;}
.y15d{bottom:781.333333pt;}
.y40{bottom:782.333333pt;}
.y4{bottom:787.000000pt;}
.yb0{bottom:788.666667pt;}
.ye7{bottom:789.333333pt;}
.y167{bottom:793.333333pt;}
.y3f{bottom:795.666667pt;}
.yaf{bottom:800.666667pt;}
.ye6{bottom:801.333333pt;}
.y166{bottom:805.333333pt;}
.y3e{bottom:809.000000pt;}
.yae{bottom:812.666667pt;}
.ye5{bottom:813.333333pt;}
.y165{bottom:817.333333pt;}
.y114{bottom:820.333333pt;}
.y3d{bottom:822.333333pt;}
.y15c{bottom:824.666667pt;}
.y164{bottom:829.333333pt;}
.y3{bottom:830.666667pt;}
.yad{bottom:832.333333pt;}
.ye4{bottom:833.000000pt;}
.y3c{bottom:835.666667pt;}
.yac{bottom:844.333333pt;}
.ye3{bottom:845.000000pt;}
.y3b{bottom:849.000000pt;}
.y163{bottom:850.333333pt;}
.y2{bottom:854.666667pt;}
.yab{bottom:856.333333pt;}
.ye2{bottom:857.000000pt;}
.y3a{bottom:862.333333pt;}
.y113{bottom:863.666667pt;}
.yaa{bottom:868.333333pt;}
.ye1{bottom:869.000000pt;}
.y162{bottom:874.333333pt;}
.y39{bottom:875.666667pt;}
.y1{bottom:878.666667pt;}
.ya9{bottom:880.333333pt;}
.y161{bottom:886.333333pt;}
.y112{bottom:887.666667pt;}
.ye0{bottom:888.333333pt;}
.y38{bottom:889.000000pt;}
.ya8{bottom:899.666667pt;}
.ydf{bottom:900.333333pt;}
.y37{bottom:902.333333pt;}
.y160{bottom:907.333333pt;}
.ya7{bottom:911.666667pt;}
.yde{bottom:912.333333pt;}
.y70{bottom:915.666667pt;}
.y111{bottom:919.333333pt;}
.ya6{bottom:923.666667pt;}
.ydd{bottom:924.333333pt;}
.y36{bottom:929.000000pt;}
.y110{bottom:931.333333pt;}
.y35{bottom:942.333333pt;}
.ya5{bottom:943.333333pt;}
.y33{bottom:984.333333pt;}
.h6{height:41.875000pt;}
.h9{height:47.085938pt;}
.h8{height:47.109375pt;}
.h7{height:48.375000pt;}
.h3{height:52.343750pt;}
.h2{height:53.750000pt;}
.h5{height:57.578125pt;}
.h4{height:59.125000pt;}
.h1{height:96.750000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:86.833333pt;}
.x3{left:101.833333pt;}
.x2{left:423.166667pt;}
.x4{left:438.166667pt;}
}




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