
    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_01b6a208fe8d320b7c1d1852.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027832;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_ea16cdc28c4e0fcff573c93b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_b43d4423b8d199449fa1010f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.988281;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_b3ca0fde02cff3ebcdc542b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736328;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_29b2bd51911567044c6afbd5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5995bd5fcee1aa84c78fc1b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_763a55d62424d44c2203bad1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.763672;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_0dc64cbe98fca5e61d49863f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.ls14{letter-spacing:-0.420000px;}
.ls1{letter-spacing:-0.021600px;}
.ls8{letter-spacing:-0.019200px;}
.ls16{letter-spacing:-0.018000px;}
.ls15{letter-spacing:-0.016800px;}
.ls5{letter-spacing:-0.014400px;}
.lse{letter-spacing:-0.012000px;}
.ls11{letter-spacing:-0.009600px;}
.ls12{letter-spacing:-0.008400px;}
.ls2{letter-spacing:-0.007200px;}
.lsd{letter-spacing:-0.006000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.006000px;}
.lsf{letter-spacing:0.008400px;}
.ls6{letter-spacing:0.009600px;}
.lsb{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.019200px;}
.lsc{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.028800px;}
.ls13{letter-spacing:0.882000px;}
.ls7{letter-spacing:2.100000px;}
.ls10{letter-spacing:3.817200px;}
.ls17{letter-spacing:17.640000px;}
.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;}
}
.wsc{word-spacing:-23.520000px;}
.ws0{word-spacing:-19.944000px;}
.ws8{word-spacing:-18.282000px;}
.ws5{word-spacing:-16.812000px;}
.ws10{word-spacing:-16.806000px;}
.ws7{word-spacing:-16.800000px;}
.ws6{word-spacing:-16.794000px;}
.wsb{word-spacing:-16.788000px;}
.ws12{word-spacing:-16.632000px;}
.wse{word-spacing:-16.626000px;}
.ws2{word-spacing:-16.620000px;}
.wsf{word-spacing:-16.614000px;}
.ws13{word-spacing:-14.958000px;}
.ws4{word-spacing:-0.086400px;}
.wsd{word-spacing:-0.066000px;}
.wsa{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:5.396580px;}
.ws3{word-spacing:11.506380px;}
.ws11{word-spacing:49.067400px;}
._17{margin-left:-16.077600px;}
._10{margin-left:-7.443600px;}
._9{margin-left:-6.036000px;}
._6{margin-left:-4.800000px;}
._d{margin-left:-3.662400px;}
._3{margin-left:-2.198400px;}
._5{margin-left:-1.150800px;}
._15{width:1.000800px;}
._0{width:2.001600px;}
._7{width:3.121200px;}
._2{width:4.236000px;}
._13{width:5.256780px;}
._4{width:6.276000px;}
._a{width:7.378800px;}
._8{width:8.386800px;}
._b{width:9.410400px;}
._11{width:10.447200px;}
._c{width:11.524800px;}
._e{width:12.530400px;}
._14{width:13.687200px;}
._12{width:15.693600px;}
._16{width:18.639600px;}
._1{width:38.395980px;}
._f{width:65.687400px;}
.fc3{color:rgb(0,21,129);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,31,103);}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:10.500000px;}
.y5{bottom:12.000000px;}
.yb2{bottom:12.391500px;}
.y49{bottom:18.570300px;}
.y4b{bottom:19.350000px;}
.y4{bottom:34.500000px;}
.y2d{bottom:55.350000px;}
.yd6{bottom:109.350000px;}
.yd5{bottom:125.850000px;}
.yd4{bottom:142.350000px;}
.yd3{bottom:158.850000px;}
.y71{bottom:164.850000px;}
.y99{bottom:175.350000px;}
.y47{bottom:176.850000px;}
.yc0{bottom:181.350000px;}
.y70{bottom:182.850000px;}
.y98{bottom:193.350000px;}
.y46{bottom:194.850000px;}
.ybf{bottom:199.350000px;}
.y5a{bottom:200.850000px;}
.y7{bottom:208.350000px;}
.yd2{bottom:209.850000px;}
.y97{bottom:211.350000px;}
.y45{bottom:212.850000px;}
.ybe{bottom:217.350000px;}
.y59{bottom:218.850000px;}
.y2c{bottom:224.850000px;}
.y96{bottom:229.350000px;}
.y44{bottom:230.850000px;}
.ybd{bottom:235.350000px;}
.y58{bottom:236.850000px;}
.yd1{bottom:239.850000px;}
.y2b{bottom:242.850000px;}
.y43{bottom:248.850000px;}
.y6f{bottom:254.850000px;}
.y95{bottom:257.850000px;}
.y2a{bottom:260.850000px;}
.y57{bottom:263.850000px;}
.y42{bottom:266.850000px;}
.y6{bottom:269.850000px;}
.y6e{bottom:272.850000px;}
.y29{bottom:278.850000px;}
.y56{bottom:281.850000px;}
.y41{bottom:284.850000px;}
.ybc{bottom:289.350000px;}
.y6d{bottom:290.850000px;}
.y28{bottom:296.850000px;}
.y55{bottom:299.850000px;}
.yd0{bottom:301.350000px;}
.y40{bottom:302.850000px;}
.y3{bottom:308.850000px;}
.y27{bottom:314.850000px;}
.y54{bottom:317.850000px;}
.y94{bottom:319.350000px;}
.y3f{bottom:320.850000px;}
.ycf{bottom:328.350000px;}
.y53{bottom:335.850000px;}
.y93{bottom:340.350000px;}
.y26{bottom:341.850000px;}
.y3e{bottom:347.850000px;}
.y6c{bottom:353.850000px;}
.yce{bottom:355.350000px;}
.ybb{bottom:358.350000px;}
.y25{bottom:359.850000px;}
.y92{bottom:361.350000px;}
.y52{bottom:362.850000px;}
.y6b{bottom:371.850000px;}
.y24{bottom:377.850000px;}
.y4a{bottom:378.000000px;}
.y51{bottom:380.850000px;}
.ycd{bottom:382.350000px;}
.yba{bottom:385.350000px;}
.y6a{bottom:389.850000px;}
.y23{bottom:395.850000px;}
.y91{bottom:400.350000px;}
.yb9{bottom:403.350000px;}
.y50{bottom:407.850000px;}
.ycc{bottom:409.350000px;}
.y90{bottom:418.350000px;}
.y22{bottom:422.850000px;}
.y4f{bottom:425.850000px;}
.yb8{bottom:430.675500px;}
.y8f{bottom:436.350000px;}
.ycb{bottom:437.850000px;}
.y21{bottom:440.850000px;}
.y4e{bottom:443.850000px;}
.y4c{bottom:444.000000px;}
.y8e{bottom:454.350000px;}
.y20{bottom:458.850000px;}
.yca{bottom:463.350000px;}
.yb7{bottom:465.175500px;}
.y4d{bottom:470.850000px;}
.y8d{bottom:472.350000px;}
.y1f{bottom:488.850000px;}
.y8c{bottom:490.350000px;}
.yb6{bottom:499.675500px;}
.y69{bottom:506.850000px;}
.y48{bottom:511.500000px;}
.y8b{bottom:517.350000px;}
.y68{bottom:524.850000px;}
.y8a{bottom:535.350000px;}
.yb5{bottom:536.067000px;}
.yc9{bottom:545.850000px;}
.y1e{bottom:551.850000px;}
.y89{bottom:553.350000px;}
.y67{bottom:569.850000px;}
.y88{bottom:571.350000px;}
.yb3{bottom:572.458500px;}
.yc8{bottom:572.850000px;}
.y1d{bottom:578.850000px;}
.y3d{bottom:580.350000px;}
.y66{bottom:587.850000px;}
.y87{bottom:589.350000px;}
.y3c{bottom:598.350000px;}
.yc7{bottom:599.850000px;}
.y1c{bottom:605.850000px;}
.yb1{bottom:606.958500px;}
.y86{bottom:607.350000px;}
.y65{bottom:614.850000px;}
.y3b{bottom:616.350000px;}
.yc6{bottom:617.850000px;}
.y85{bottom:625.350000px;}
.y1b{bottom:632.850000px;}
.y3a{bottom:634.350000px;}
.yc5{bottom:635.850000px;}
.y64{bottom:650.850000px;}
.y39{bottom:652.350000px;}
.y84{bottom:653.850000px;}
.yb0{bottom:656.850000px;}
.y1a{bottom:659.850000px;}
.y38{bottom:670.350000px;}
.yc4{bottom:671.850000px;}
.yaf{bottom:674.850000px;}
.y63{bottom:679.350000px;}
.y2{bottom:680.850000px;}
.y37{bottom:688.350000px;}
.y19{bottom:689.850000px;}
.yae{bottom:692.850000px;}
.yc3{bottom:698.850000px;}
.y83{bottom:704.850000px;}
.y36{bottom:706.350000px;}
.yad{bottom:710.850000px;}
.yc2{bottom:716.850000px;}
.y82{bottom:722.850000px;}
.y1{bottom:724.350000px;}
.yac{bottom:728.850000px;}
.y62{bottom:730.350000px;}
.yc1{bottom:734.850000px;}
.y81{bottom:740.850000px;}
.y35{bottom:743.850000px;}
.yab{bottom:746.850000px;}
.y61{bottom:748.350000px;}
.y18{bottom:752.850000px;}
.y80{bottom:758.850000px;}
.y34{bottom:764.850000px;}
.y60{bottom:766.350000px;}
.y17{bottom:770.850000px;}
.y7f{bottom:776.850000px;}
.yaa{bottom:782.850000px;}
.y5f{bottom:784.350000px;}
.y33{bottom:785.850000px;}
.y16{bottom:788.850000px;}
.ya9{bottom:800.850000px;}
.y7e{bottom:803.850000px;}
.y15{bottom:806.850000px;}
.y5e{bottom:814.350000px;}
.y7d{bottom:821.850000px;}
.y32{bottom:824.850000px;}
.ya8{bottom:827.850000px;}
.y14{bottom:833.850000px;}
.y7c{bottom:839.850000px;}
.y31{bottom:842.850000px;}
.ya7{bottom:845.850000px;}
.y13{bottom:851.850000px;}
.y7b{bottom:857.850000px;}
.y30{bottom:860.850000px;}
.ya6{bottom:863.850000px;}
.y12{bottom:869.850000px;}
.y5d{bottom:877.350000px;}
.y2f{bottom:878.850000px;}
.ya5{bottom:881.850000px;}
.y7a{bottom:886.350000px;}
.y5c{bottom:895.350000px;}
.y11{bottom:896.850000px;}
.ya4{bottom:899.850000px;}
.y5b{bottom:913.350000px;}
.y10{bottom:914.850000px;}
.ya3{bottom:917.850000px;}
.yf{bottom:932.850000px;}
.ya2{bottom:935.850000px;}
.y79{bottom:937.350000px;}
.ye{bottom:950.850000px;}
.ya1{bottom:953.850000px;}
.y78{bottom:955.350000px;}
.yd{bottom:968.850000px;}
.y77{bottom:973.350000px;}
.ya0{bottom:980.850000px;}
.yc{bottom:986.850000px;}
.y76{bottom:991.350000px;}
.y2e{bottom:995.850000px;}
.y9f{bottom:998.850000px;}
.yb{bottom:1013.850000px;}
.y9e{bottom:1016.850000px;}
.y75{bottom:1018.350000px;}
.ya{bottom:1031.850000px;}
.y9d{bottom:1034.850000px;}
.y74{bottom:1036.350000px;}
.y9{bottom:1049.850000px;}
.y9c{bottom:1052.850000px;}
.y73{bottom:1054.350000px;}
.y9b{bottom:1070.850000px;}
.y8{bottom:1079.850000px;}
.y72{bottom:1082.850000px;}
.y9a{bottom:1088.850000px;}
.h10{height:33.000000px;}
.h11{height:34.891485px;}
.hf{height:34.891530px;}
.h6{height:37.500000px;}
.h13{height:42.134766px;}
.h9{height:43.037109px;}
.h8{height:46.816406px;}
.ha{height:49.189453px;}
.hc{height:49.500000px;}
.hd{height:51.498047px;}
.h12{height:52.816406px;}
.hb{height:54.000000px;}
.h5{height:56.179688px;}
.h4{height:59.027344px;}
.h3{height:60.000000px;}
.he{height:68.865234px;}
.h7{height:78.703125px;}
.h2{height:118.054688px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:112.500000px;}
.w4{width:114.000000px;}
.w2{width:210.300000px;}
.w6{width:210.460650px;}
.w3{width:418.950450px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:7.500000px;}
.x11{left:20.290455px;}
.x9{left:22.580205px;}
.x1d{left:29.461275px;}
.x22{left:33.192960px;}
.x10{left:39.367245px;}
.x8{left:45.097785px;}
.x1b{left:49.731060px;}
.x1e{left:55.374360px;}
.x21{left:56.634120px;}
.x19{left:62.332365px;}
.x1f{left:79.485690px;}
.x20{left:83.993745px;}
.x6{left:100.846800px;}
.x7{left:108.326295px;}
.x26{left:126.000006px;}
.xb{left:127.559055px;}
.x1c{left:129.150015px;}
.x3{left:130.650015px;}
.xc{left:148.818900px;}
.xa{left:168.412650px;}
.x24{left:170.078700px;}
.x25{left:181.559100px;}
.xe{left:188.915550px;}
.x13{left:212.076450px;}
.x16{left:219.440850px;}
.x23{left:220.737300px;}
.x15{left:223.066350px;}
.x1{left:297.943350px;}
.xf{left:300.732450px;}
.x2{left:305.835900px;}
.x17{left:321.064500px;}
.x18{left:341.110650px;}
.x5{left:342.450000px;}
.x14{left:375.780000px;}
.xd{left:442.078800px;}
.x12{left:481.500000px;}
.x1a{left:553.071300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.ls14{letter-spacing:-0.373333pt;}
.ls1{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:-0.017067pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls15{letter-spacing:-0.014933pt;}
.ls5{letter-spacing:-0.012800pt;}
.lse{letter-spacing:-0.010667pt;}
.ls11{letter-spacing:-0.008533pt;}
.ls12{letter-spacing:-0.007467pt;}
.ls2{letter-spacing:-0.006400pt;}
.lsd{letter-spacing:-0.005333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.005333pt;}
.lsf{letter-spacing:0.007467pt;}
.ls6{letter-spacing:0.008533pt;}
.lsb{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.017067pt;}
.lsc{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.025600pt;}
.ls13{letter-spacing:0.784000pt;}
.ls7{letter-spacing:1.866667pt;}
.ls10{letter-spacing:3.393067pt;}
.ls17{letter-spacing:15.680000pt;}
.wsc{word-spacing:-20.906667pt;}
.ws0{word-spacing:-17.728000pt;}
.ws8{word-spacing:-16.250667pt;}
.ws5{word-spacing:-14.944000pt;}
.ws10{word-spacing:-14.938667pt;}
.ws7{word-spacing:-14.933333pt;}
.ws6{word-spacing:-14.928000pt;}
.wsb{word-spacing:-14.922667pt;}
.ws12{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.778667pt;}
.ws2{word-spacing:-14.773333pt;}
.wsf{word-spacing:-14.768000pt;}
.ws13{word-spacing:-13.296000pt;}
.ws4{word-spacing:-0.076800pt;}
.wsd{word-spacing:-0.058667pt;}
.wsa{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:4.796960pt;}
.ws3{word-spacing:10.227893pt;}
.ws11{word-spacing:43.615467pt;}
._17{margin-left:-14.291200pt;}
._10{margin-left:-6.616533pt;}
._9{margin-left:-5.365333pt;}
._6{margin-left:-4.266667pt;}
._d{margin-left:-3.255467pt;}
._3{margin-left:-1.954133pt;}
._5{margin-left:-1.022933pt;}
._15{width:0.889600pt;}
._0{width:1.779200pt;}
._7{width:2.774400pt;}
._2{width:3.765333pt;}
._13{width:4.672693pt;}
._4{width:5.578667pt;}
._a{width:6.558933pt;}
._8{width:7.454933pt;}
._b{width:8.364800pt;}
._11{width:9.286400pt;}
._c{width:10.244267pt;}
._e{width:11.138133pt;}
._14{width:12.166400pt;}
._12{width:13.949867pt;}
._16{width:16.568533pt;}
._1{width:34.129760pt;}
._f{width:58.388800pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:9.333333pt;}
.y5{bottom:10.666667pt;}
.yb2{bottom:11.014667pt;}
.y49{bottom:16.506933pt;}
.y4b{bottom:17.200000pt;}
.y4{bottom:30.666667pt;}
.y2d{bottom:49.200000pt;}
.yd6{bottom:97.200000pt;}
.yd5{bottom:111.866667pt;}
.yd4{bottom:126.533333pt;}
.yd3{bottom:141.200000pt;}
.y71{bottom:146.533333pt;}
.y99{bottom:155.866667pt;}
.y47{bottom:157.200000pt;}
.yc0{bottom:161.200000pt;}
.y70{bottom:162.533333pt;}
.y98{bottom:171.866667pt;}
.y46{bottom:173.200000pt;}
.ybf{bottom:177.200000pt;}
.y5a{bottom:178.533333pt;}
.y7{bottom:185.200000pt;}
.yd2{bottom:186.533333pt;}
.y97{bottom:187.866667pt;}
.y45{bottom:189.200000pt;}
.ybe{bottom:193.200000pt;}
.y59{bottom:194.533333pt;}
.y2c{bottom:199.866667pt;}
.y96{bottom:203.866667pt;}
.y44{bottom:205.200000pt;}
.ybd{bottom:209.200000pt;}
.y58{bottom:210.533333pt;}
.yd1{bottom:213.200000pt;}
.y2b{bottom:215.866667pt;}
.y43{bottom:221.200000pt;}
.y6f{bottom:226.533333pt;}
.y95{bottom:229.200000pt;}
.y2a{bottom:231.866667pt;}
.y57{bottom:234.533333pt;}
.y42{bottom:237.200000pt;}
.y6{bottom:239.866667pt;}
.y6e{bottom:242.533333pt;}
.y29{bottom:247.866667pt;}
.y56{bottom:250.533333pt;}
.y41{bottom:253.200000pt;}
.ybc{bottom:257.200000pt;}
.y6d{bottom:258.533333pt;}
.y28{bottom:263.866667pt;}
.y55{bottom:266.533333pt;}
.yd0{bottom:267.866667pt;}
.y40{bottom:269.200000pt;}
.y3{bottom:274.533333pt;}
.y27{bottom:279.866667pt;}
.y54{bottom:282.533333pt;}
.y94{bottom:283.866667pt;}
.y3f{bottom:285.200000pt;}
.ycf{bottom:291.866667pt;}
.y53{bottom:298.533333pt;}
.y93{bottom:302.533333pt;}
.y26{bottom:303.866667pt;}
.y3e{bottom:309.200000pt;}
.y6c{bottom:314.533333pt;}
.yce{bottom:315.866667pt;}
.ybb{bottom:318.533333pt;}
.y25{bottom:319.866667pt;}
.y92{bottom:321.200000pt;}
.y52{bottom:322.533333pt;}
.y6b{bottom:330.533333pt;}
.y24{bottom:335.866667pt;}
.y4a{bottom:336.000000pt;}
.y51{bottom:338.533333pt;}
.ycd{bottom:339.866667pt;}
.yba{bottom:342.533333pt;}
.y6a{bottom:346.533333pt;}
.y23{bottom:351.866667pt;}
.y91{bottom:355.866667pt;}
.yb9{bottom:358.533333pt;}
.y50{bottom:362.533333pt;}
.ycc{bottom:363.866667pt;}
.y90{bottom:371.866667pt;}
.y22{bottom:375.866667pt;}
.y4f{bottom:378.533333pt;}
.yb8{bottom:382.822667pt;}
.y8f{bottom:387.866667pt;}
.ycb{bottom:389.200000pt;}
.y21{bottom:391.866667pt;}
.y4e{bottom:394.533333pt;}
.y4c{bottom:394.666667pt;}
.y8e{bottom:403.866667pt;}
.y20{bottom:407.866667pt;}
.yca{bottom:411.866667pt;}
.yb7{bottom:413.489333pt;}
.y4d{bottom:418.533333pt;}
.y8d{bottom:419.866667pt;}
.y1f{bottom:434.533333pt;}
.y8c{bottom:435.866667pt;}
.yb6{bottom:444.156000pt;}
.y69{bottom:450.533333pt;}
.y48{bottom:454.666667pt;}
.y8b{bottom:459.866667pt;}
.y68{bottom:466.533333pt;}
.y8a{bottom:475.866667pt;}
.yb5{bottom:476.504000pt;}
.yc9{bottom:485.200000pt;}
.y1e{bottom:490.533333pt;}
.y89{bottom:491.866667pt;}
.y67{bottom:506.533333pt;}
.y88{bottom:507.866667pt;}
.yb3{bottom:508.852000pt;}
.yc8{bottom:509.200000pt;}
.y1d{bottom:514.533333pt;}
.y3d{bottom:515.866667pt;}
.y66{bottom:522.533333pt;}
.y87{bottom:523.866667pt;}
.y3c{bottom:531.866667pt;}
.yc7{bottom:533.200000pt;}
.y1c{bottom:538.533333pt;}
.yb1{bottom:539.518667pt;}
.y86{bottom:539.866667pt;}
.y65{bottom:546.533333pt;}
.y3b{bottom:547.866667pt;}
.yc6{bottom:549.200000pt;}
.y85{bottom:555.866667pt;}
.y1b{bottom:562.533333pt;}
.y3a{bottom:563.866667pt;}
.yc5{bottom:565.200000pt;}
.y64{bottom:578.533333pt;}
.y39{bottom:579.866667pt;}
.y84{bottom:581.200000pt;}
.yb0{bottom:583.866667pt;}
.y1a{bottom:586.533333pt;}
.y38{bottom:595.866667pt;}
.yc4{bottom:597.200000pt;}
.yaf{bottom:599.866667pt;}
.y63{bottom:603.866667pt;}
.y2{bottom:605.200000pt;}
.y37{bottom:611.866667pt;}
.y19{bottom:613.200000pt;}
.yae{bottom:615.866667pt;}
.yc3{bottom:621.200000pt;}
.y83{bottom:626.533333pt;}
.y36{bottom:627.866667pt;}
.yad{bottom:631.866667pt;}
.yc2{bottom:637.200000pt;}
.y82{bottom:642.533333pt;}
.y1{bottom:643.866667pt;}
.yac{bottom:647.866667pt;}
.y62{bottom:649.200000pt;}
.yc1{bottom:653.200000pt;}
.y81{bottom:658.533333pt;}
.y35{bottom:661.200000pt;}
.yab{bottom:663.866667pt;}
.y61{bottom:665.200000pt;}
.y18{bottom:669.200000pt;}
.y80{bottom:674.533333pt;}
.y34{bottom:679.866667pt;}
.y60{bottom:681.200000pt;}
.y17{bottom:685.200000pt;}
.y7f{bottom:690.533333pt;}
.yaa{bottom:695.866667pt;}
.y5f{bottom:697.200000pt;}
.y33{bottom:698.533333pt;}
.y16{bottom:701.200000pt;}
.ya9{bottom:711.866667pt;}
.y7e{bottom:714.533333pt;}
.y15{bottom:717.200000pt;}
.y5e{bottom:723.866667pt;}
.y7d{bottom:730.533333pt;}
.y32{bottom:733.200000pt;}
.ya8{bottom:735.866667pt;}
.y14{bottom:741.200000pt;}
.y7c{bottom:746.533333pt;}
.y31{bottom:749.200000pt;}
.ya7{bottom:751.866667pt;}
.y13{bottom:757.200000pt;}
.y7b{bottom:762.533333pt;}
.y30{bottom:765.200000pt;}
.ya6{bottom:767.866667pt;}
.y12{bottom:773.200000pt;}
.y5d{bottom:779.866667pt;}
.y2f{bottom:781.200000pt;}
.ya5{bottom:783.866667pt;}
.y7a{bottom:787.866667pt;}
.y5c{bottom:795.866667pt;}
.y11{bottom:797.200000pt;}
.ya4{bottom:799.866667pt;}
.y5b{bottom:811.866667pt;}
.y10{bottom:813.200000pt;}
.ya3{bottom:815.866667pt;}
.yf{bottom:829.200000pt;}
.ya2{bottom:831.866667pt;}
.y79{bottom:833.200000pt;}
.ye{bottom:845.200000pt;}
.ya1{bottom:847.866667pt;}
.y78{bottom:849.200000pt;}
.yd{bottom:861.200000pt;}
.y77{bottom:865.200000pt;}
.ya0{bottom:871.866667pt;}
.yc{bottom:877.200000pt;}
.y76{bottom:881.200000pt;}
.y2e{bottom:885.200000pt;}
.y9f{bottom:887.866667pt;}
.yb{bottom:901.200000pt;}
.y9e{bottom:903.866667pt;}
.y75{bottom:905.200000pt;}
.ya{bottom:917.200000pt;}
.y9d{bottom:919.866667pt;}
.y74{bottom:921.200000pt;}
.y9{bottom:933.200000pt;}
.y9c{bottom:935.866667pt;}
.y73{bottom:937.200000pt;}
.y9b{bottom:951.866667pt;}
.y8{bottom:959.866667pt;}
.y72{bottom:962.533333pt;}
.y9a{bottom:967.866667pt;}
.h10{height:29.333333pt;}
.h11{height:31.014653pt;}
.hf{height:31.014693pt;}
.h6{height:33.333333pt;}
.h13{height:37.453125pt;}
.h9{height:38.255208pt;}
.h8{height:41.614583pt;}
.ha{height:43.723958pt;}
.hc{height:44.000000pt;}
.hd{height:45.776042pt;}
.h12{height:46.947917pt;}
.hb{height:48.000000pt;}
.h5{height:49.937500pt;}
.h4{height:52.468750pt;}
.h3{height:53.333333pt;}
.he{height:61.213542pt;}
.h7{height:69.958333pt;}
.h2{height:104.937500pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:100.000000pt;}
.w4{width:101.333333pt;}
.w2{width:186.933333pt;}
.w6{width:187.076133pt;}
.w3{width:372.400400pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:6.666667pt;}
.x11{left:18.035960pt;}
.x9{left:20.071293pt;}
.x1d{left:26.187800pt;}
.x22{left:29.504853pt;}
.x10{left:34.993107pt;}
.x8{left:40.086920pt;}
.x1b{left:44.205387pt;}
.x1e{left:49.221653pt;}
.x21{left:50.341440pt;}
.x19{left:55.406547pt;}
.x1f{left:70.653947pt;}
.x20{left:74.661107pt;}
.x6{left:89.641600pt;}
.x7{left:96.290040pt;}
.x26{left:112.000005pt;}
.xb{left:113.385827pt;}
.x1c{left:114.800013pt;}
.x3{left:116.133347pt;}
.xc{left:132.283467pt;}
.xa{left:149.700133pt;}
.x24{left:151.181067pt;}
.x25{left:161.385867pt;}
.xe{left:167.924933pt;}
.x13{left:188.512400pt;}
.x16{left:195.058533pt;}
.x23{left:196.210933pt;}
.x15{left:198.281200pt;}
.x1{left:264.838533pt;}
.xf{left:267.317733pt;}
.x2{left:271.854133pt;}
.x17{left:285.390667pt;}
.x18{left:303.209467pt;}
.x5{left:304.400000pt;}
.x14{left:334.026667pt;}
.xd{left:392.958933pt;}
.x12{left:428.000000pt;}
.x1a{left:491.618933pt;}
}




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