
    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_0c21b8474d5b6faf756e1c4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_70793cba242d1de8073cbea7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_e5e218e75dc6f62a7c7a0891.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_657205dbdbe09ac0a8fffda7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_458b09e81d84f6ba2c4f9247.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b57f3bef740b4e0eb695b568.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c28bf48423ab701bb4d239e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_8363d8cf881b987ce3042b97.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;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_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_32447b317bebfdf69dd340ad.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_04989934614f386956a21340.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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:ffd;src:url('chunks/assets/font_5be4ac65b0eb28658773e058.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.022949;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.lsc{letter-spacing:-0.381000px;}
.lsf{letter-spacing:-0.319800px;}
.lsa{letter-spacing:-0.303600px;}
.ls12{letter-spacing:-0.302400px;}
.ls9{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.256200px;}
.ls14{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.169200px;}
.ls10{letter-spacing:-0.167400px;}
.ls1a{letter-spacing:-0.148800px;}
.ls8{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.085800px;}
.ls15{letter-spacing:-0.050400px;}
.ls1b{letter-spacing:-0.011940px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.052704px;}
.ls5{letter-spacing:0.101400px;}
.ls1c{letter-spacing:0.157200px;}
.lse{letter-spacing:0.199200px;}
.lsb{letter-spacing:0.225600px;}
.ls7{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.301800px;}
.ls4{letter-spacing:52.930080px;}
.ls2{letter-spacing:69.330048px;}
.ls3{letter-spacing:69.396000px;}
.ls17{letter-spacing:71.008128px;}
.ls16{letter-spacing:71.074080px;}
.lsd{letter-spacing:76.644000px;}
.ls11{letter-spacing:119.916000px;}
.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;}
}
.ws17{word-spacing:-73.080000px;}
.ws3{word-spacing:-53.384520px;}
.wsa{word-spacing:-34.280880px;}
.ws10{word-spacing:-34.254480px;}
.ws11{word-spacing:-34.084512px;}
.wse{word-spacing:-34.055280px;}
.ws7{word-spacing:-32.576544px;}
.ws5{word-spacing:-32.544000px;}
.ws4{word-spacing:-32.400000px;}
.ws6{word-spacing:-32.256000px;}
.ws2{word-spacing:-29.261232px;}
.ws0{word-spacing:-29.232000px;}
.ws12{word-spacing:-24.408720px;}
.ws8{word-spacing:-21.953232px;}
.ws19{word-spacing:-21.924000px;}
.ws1a{word-spacing:-20.859852px;}
.ws16{word-spacing:-19.439280px;}
.ws13{word-spacing:-17.100720px;}
.ws1b{word-spacing:-16.286112px;}
.ws15{word-spacing:-14.616000px;}
.ws18{word-spacing:-9.792720px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:1.368000px;}
.wsc{word-spacing:1.776000px;}
.wsf{word-spacing:45.436320px;}
.wsd{word-spacing:51.260760px;}
.ws9{word-spacing:72.796320px;}
.wsb{word-spacing:72.881208px;}
._a{margin-left:-14.091840px;}
._7{margin-left:-9.360000px;}
._9{margin-left:-7.259232px;}
._0{margin-left:-6.048000px;}
._5{margin-left:-5.016000px;}
._3{margin-left:-3.965760px;}
._1{margin-left:-2.880000px;}
._2{margin-left:-1.176000px;}
._6{width:1.152000px;}
._4{width:2.300400px;}
._8{width:5.616000px;}
._b{width:35.071200px;}
.fc6{color:transparent;}
.fc4{color:rgb(212,0,93);}
.fc2{color:rgb(207,0,99);}
.fc1{color:rgb(59,56,56);}
.fc8{color:rgb(249,200,14);}
.fc7{color:rgb(191,191,191);}
.fc5{color:rgb(166,166,166);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs14{font-size:48.240000px;}
.fs10{font-size:66.384000px;}
.fs5{font-size:72.000000px;}
.fs11{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fse{font-size:95.760000px;}
.fsb{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fs9{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs4{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs12{font-size:156.240000px;}
.fs13{font-size:156.384000px;}
.fsd{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fsf{font-size:239.904000px;}
.fs2{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.fs0{font-size:288.000000px;}
.fs6{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:13.248000px;}
.yb{bottom:14.868000px;}
.y48{bottom:16.488000px;}
.y7{bottom:19.008000px;}
.y1a{bottom:30.456000px;}
.y53{bottom:35.244000px;}
.y59{bottom:50.688000px;}
.y76{bottom:50.724000px;}
.y5c{bottom:58.716000px;}
.y19{bottom:59.616000px;}
.y6{bottom:61.524000px;}
.y75{bottom:75.924000px;}
.y3b{bottom:76.140000px;}
.y2c{bottom:76.716000px;}
.y31{bottom:77.760000px;}
.y68{bottom:78.336000px;}
.y46{bottom:79.056000px;}
.y58{bottom:79.488000px;}
.y72{bottom:92.844000px;}
.y74{bottom:101.124000px;}
.y5{bottom:104.724000px;}
.y4f{bottom:106.740000px;}
.y57{bottom:108.288000px;}
.y3a{bottom:112.140000px;}
.y45{bottom:115.056000px;}
.y67{bottom:115.776000px;}
.y15{bottom:120.816000px;}
.y30{bottom:123.120000px;}
.y71{bottom:125.244000px;}
.y2b{bottom:127.116000px;}
.y69{bottom:127.728000px;}
.y56{bottom:137.124000px;}
.y73{bottom:145.476000px;}
.y4{bottom:147.960000px;}
.y66{bottom:153.210000px;}
.y70{bottom:157.650000px;}
.y14{bottom:159.690000px;}
.y39{bottom:166.530000px;}
.y2f{bottom:168.480000px;}
.y44{bottom:169.050000px;}
.y1e{bottom:169.380000px;}
.y5a{bottom:187.740000px;}
.y6f{bottom:190.080000px;}
.y13{bottom:213.735000px;}
.y6e{bottom:222.480000px;}
.y12{bottom:252.795000px;}
.y2a{bottom:257.835000px;}
.y4e{bottom:270.360000px;}
.y43{bottom:277.095000px;}
.y11{bottom:291.675000px;}
.y4d{bottom:295.560000px;}
.y1d{bottom:296.100000px;}
.y8{bottom:298.515000px;}
.y29{bottom:308.235000px;}
.y65{bottom:310.575000px;}
.y3{bottom:313.095000px;}
.y4c{bottom:320.790000px;}
.y34{bottom:327.990000px;}
.y10{bottom:330.555000px;}
.y4b{bottom:345.990000px;}
.y64{bottom:348.045000px;}
.y33{bottom:353.910000px;}
.y23{bottom:368.715000px;}
.y4a{bottom:371.190000px;}
.y28{bottom:373.755000px;}
.y38{bottom:374.325000px;}
.y42{bottom:376.200000px;}
.y50{bottom:376.665000px;}
.y32{bottom:379.830000px;}
.y52{bottom:382.110000px;}
.y2{bottom:384.405000px;}
.y63{bottom:385.485000px;}
.y49{bottom:396.390000px;}
.y41{bottom:412.200000px;}
.y37{bottom:417.525000px;}
.y1c{bottom:422.850000px;}
.y27{bottom:424.185000px;}
.y22{bottom:429.045000px;}
.y5d{bottom:430.455000px;}
.y51{bottom:441.075000px;}
.yf{bottom:443.775000px;}
.y40{bottom:448.230000px;}
.y36{bottom:460.725000px;}
.ye{bottom:482.655000px;}
.y3f{bottom:484.230000px;}
.y62{bottom:488.265000px;}
.y21{bottom:489.525000px;}
.y6d{bottom:497.550000px;}
.y18{bottom:500.145000px;}
.y1{bottom:502.665000px;}
.y35{bottom:503.970000px;}
.y61{bottom:517.110000px;}
.y3e{bottom:520.230000px;}
.yd{bottom:521.535000px;}
.y6c{bottom:529.950000px;}
.y26{bottom:539.925000px;}
.y17{bottom:548.205000px;}
.y55{bottom:549.540000px;}
.y1b{bottom:549.615000px;}
.y20{bottom:549.870000px;}
.y60{bottom:553.290000px;}
.y3d{bottom:556.230000px;}
.y6b{bottom:562.350000px;}
.y2e{bottom:565.125000px;}
.yc{bottom:575.565000px;}
.y54{bottom:578.340000px;}
.y16{bottom:580.605000px;}
.y5f{bottom:582.090000px;}
.y25{bottom:590.550000px;}
.y3c{bottom:592.275000px;}
.y1f{bottom:595.230000px;}
.y2d{bottom:610.485000px;}
.y5e{bottom:620.610000px;}
.y9{bottom:629.610000px;}
.y6a{bottom:636.510000px;}
.y77{bottom:666.150000px;}
.y5b{bottom:666.615000px;}
.ya{bottom:698.685000px;}
.y47{bottom:721.905000px;}
.h22{height:41.809570px;}
.h19{height:57.534961px;}
.h6{height:62.226562px;}
.h1d{height:62.402344px;}
.h9{height:65.389359px;}
.h25{height:72.805078px;}
.h26{height:72.929531px;}
.h1a{height:73.010742px;}
.h1b{height:73.135547px;}
.h15{height:82.761328px;}
.h1f{height:82.995117px;}
.h1e{height:83.135391px;}
.h1c{height:83.787539px;}
.h24{height:91.404914px;}
.hf{height:93.603516px;}
.h10{height:93.728320px;}
.h23{height:93.761719px;}
.hc{height:104.211914px;}
.hd{height:104.336719px;}
.he{height:107.419922px;}
.h17{height:119.594180px;}
.h5{height:124.804688px;}
.h16{height:124.929492px;}
.h4{height:125.140641px;}
.h20{height:135.413086px;}
.h21{height:135.537891px;}
.hb{height:143.226562px;}
.ha{height:143.369789px;}
.h11{height:145.397461px;}
.h8{height:145.522266px;}
.h14{height:145.643203px;}
.h12{height:166.858945px;}
.h13{height:167.002172px;}
.h18{height:208.276031px;}
.h3{height:229.403672px;}
.h2{height:229.528688px;}
.h1{height:243.421875px;}
.h27{height:304.277344px;}
.h7{height:312.539062px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x13{left:49.571979px;}
.x12{left:77.831979px;}
.x10{left:78.911979px;}
.x15{left:81.539979px;}
.x4{left:87.299979px;}
.x16{left:99.539979px;}
.x1{left:108.863979px;}
.xd{left:121.787979px;}
.xe{left:128.591979px;}
.x6{left:132.587979px;}
.x1d{left:133.883979px;}
.xf{left:136.691979px;}
.x27{left:139.895979px;}
.xb{left:141.335979px;}
.x11{left:142.991979px;}
.x2{left:155.414979px;}
.x7{left:166.424979px;}
.x32{left:189.794979px;}
.x18{left:193.754979px;}
.x30{left:199.874979px;}
.x14{left:212.654979px;}
.x25{left:231.404979px;}
.x29{left:362.339979px;}
.x19{left:425.804979px;}
.x24{left:516.269979px;}
.xc{left:588.989979px;}
.x8{left:637.814979px;}
.x1f{left:644.504979px;}
.x21{left:652.319979px;}
.x9{left:664.814979px;}
.x20{left:678.239979px;}
.xa{left:688.469979px;}
.x2f{left:704.849979px;}
.x1b{left:725.069979px;}
.x3{left:742.829979px;}
.x31{left:787.649979px;}
.x2a{left:910.829979px;}
.x1a{left:935.489979px;}
.x1e{left:951.194979px;}
.x22{left:954.179979px;}
.x23{left:965.804979px;}
.x2d{left:993.629979px;}
.x2c{left:1022.429979px;}
.x2b{left:1025.309979px;}
.x2e{left:1065.749979px;}
.x26{left:1160.354979px;}
.x5{left:1379.699979px;}
.x17{left:1395.254979px;}
.x1c{left:1418.789979px;}
.x28{left:1430.309979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.338667pt;}
.lsf{letter-spacing:-0.284267pt;}
.lsa{letter-spacing:-0.269867pt;}
.ls12{letter-spacing:-0.268800pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.227733pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.150400pt;}
.ls10{letter-spacing:-0.148800pt;}
.ls1a{letter-spacing:-0.132267pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.076267pt;}
.ls15{letter-spacing:-0.044800pt;}
.ls1b{letter-spacing:-0.010613pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.046848pt;}
.ls5{letter-spacing:0.090133pt;}
.ls1c{letter-spacing:0.139733pt;}
.lse{letter-spacing:0.177067pt;}
.lsb{letter-spacing:0.200533pt;}
.ls7{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.268267pt;}
.ls4{letter-spacing:47.048960pt;}
.ls2{letter-spacing:61.626709pt;}
.ls3{letter-spacing:61.685333pt;}
.ls17{letter-spacing:63.118336pt;}
.ls16{letter-spacing:63.176960pt;}
.lsd{letter-spacing:68.128000pt;}
.ls11{letter-spacing:106.592000pt;}
.ws17{word-spacing:-64.960000pt;}
.ws3{word-spacing:-47.452907pt;}
.wsa{word-spacing:-30.471893pt;}
.ws10{word-spacing:-30.448427pt;}
.ws11{word-spacing:-30.297344pt;}
.wse{word-spacing:-30.271360pt;}
.ws7{word-spacing:-28.956928pt;}
.ws5{word-spacing:-28.928000pt;}
.ws4{word-spacing:-28.800000pt;}
.ws6{word-spacing:-28.672000pt;}
.ws2{word-spacing:-26.009984pt;}
.ws0{word-spacing:-25.984000pt;}
.ws12{word-spacing:-21.696640pt;}
.ws8{word-spacing:-19.513984pt;}
.ws19{word-spacing:-19.488000pt;}
.ws1a{word-spacing:-18.542091pt;}
.ws16{word-spacing:-17.279360pt;}
.ws13{word-spacing:-15.200640pt;}
.ws1b{word-spacing:-14.476544pt;}
.ws15{word-spacing:-12.992000pt;}
.ws18{word-spacing:-8.704640pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:1.216000pt;}
.wsc{word-spacing:1.578667pt;}
.wsf{word-spacing:40.387840pt;}
.wsd{word-spacing:45.565120pt;}
.ws9{word-spacing:64.707840pt;}
.wsb{word-spacing:64.783296pt;}
._a{margin-left:-12.526080pt;}
._7{margin-left:-8.320000pt;}
._9{margin-left:-6.452651pt;}
._0{margin-left:-5.376000pt;}
._5{margin-left:-4.458667pt;}
._3{margin-left:-3.525120pt;}
._1{margin-left:-2.560000pt;}
._2{margin-left:-1.045333pt;}
._6{width:1.024000pt;}
._4{width:2.044800pt;}
._8{width:4.992000pt;}
._b{width:31.174400pt;}
.fs14{font-size:42.880000pt;}
.fs10{font-size:59.008000pt;}
.fs5{font-size:64.000000pt;}
.fs11{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fse{font-size:85.120000pt;}
.fsb{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fs9{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs4{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs12{font-size:138.880000pt;}
.fs13{font-size:139.008000pt;}
.fsd{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fsf{font-size:213.248000pt;}
.fs2{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.fs0{font-size:256.000000pt;}
.fs6{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:11.776000pt;}
.yb{bottom:13.216000pt;}
.y48{bottom:14.656000pt;}
.y7{bottom:16.896000pt;}
.y1a{bottom:27.072000pt;}
.y53{bottom:31.328000pt;}
.y59{bottom:45.056000pt;}
.y76{bottom:45.088000pt;}
.y5c{bottom:52.192000pt;}
.y19{bottom:52.992000pt;}
.y6{bottom:54.688000pt;}
.y75{bottom:67.488000pt;}
.y3b{bottom:67.680000pt;}
.y2c{bottom:68.192000pt;}
.y31{bottom:69.120000pt;}
.y68{bottom:69.632000pt;}
.y46{bottom:70.272000pt;}
.y58{bottom:70.656000pt;}
.y72{bottom:82.528000pt;}
.y74{bottom:89.888000pt;}
.y5{bottom:93.088000pt;}
.y4f{bottom:94.880000pt;}
.y57{bottom:96.256000pt;}
.y3a{bottom:99.680000pt;}
.y45{bottom:102.272000pt;}
.y67{bottom:102.912000pt;}
.y15{bottom:107.392000pt;}
.y30{bottom:109.440000pt;}
.y71{bottom:111.328000pt;}
.y2b{bottom:112.992000pt;}
.y69{bottom:113.536000pt;}
.y56{bottom:121.888000pt;}
.y73{bottom:129.312000pt;}
.y4{bottom:131.520000pt;}
.y66{bottom:136.186667pt;}
.y70{bottom:140.133333pt;}
.y14{bottom:141.946667pt;}
.y39{bottom:148.026667pt;}
.y2f{bottom:149.760000pt;}
.y44{bottom:150.266667pt;}
.y1e{bottom:150.560000pt;}
.y5a{bottom:166.880000pt;}
.y6f{bottom:168.960000pt;}
.y13{bottom:189.986667pt;}
.y6e{bottom:197.760000pt;}
.y12{bottom:224.706667pt;}
.y2a{bottom:229.186667pt;}
.y4e{bottom:240.320000pt;}
.y43{bottom:246.306667pt;}
.y11{bottom:259.266667pt;}
.y4d{bottom:262.720000pt;}
.y1d{bottom:263.200000pt;}
.y8{bottom:265.346667pt;}
.y29{bottom:273.986667pt;}
.y65{bottom:276.066667pt;}
.y3{bottom:278.306667pt;}
.y4c{bottom:285.146667pt;}
.y34{bottom:291.546667pt;}
.y10{bottom:293.826667pt;}
.y4b{bottom:307.546667pt;}
.y64{bottom:309.373333pt;}
.y33{bottom:314.586667pt;}
.y23{bottom:327.746667pt;}
.y4a{bottom:329.946667pt;}
.y28{bottom:332.226667pt;}
.y38{bottom:332.733333pt;}
.y42{bottom:334.400000pt;}
.y50{bottom:334.813333pt;}
.y32{bottom:337.626667pt;}
.y52{bottom:339.653333pt;}
.y2{bottom:341.693333pt;}
.y63{bottom:342.653333pt;}
.y49{bottom:352.346667pt;}
.y41{bottom:366.400000pt;}
.y37{bottom:371.133333pt;}
.y1c{bottom:375.866667pt;}
.y27{bottom:377.053333pt;}
.y22{bottom:381.373333pt;}
.y5d{bottom:382.626667pt;}
.y51{bottom:392.066667pt;}
.yf{bottom:394.466667pt;}
.y40{bottom:398.426667pt;}
.y36{bottom:409.533333pt;}
.ye{bottom:429.026667pt;}
.y3f{bottom:430.426667pt;}
.y62{bottom:434.013333pt;}
.y21{bottom:435.133333pt;}
.y6d{bottom:442.266667pt;}
.y18{bottom:444.573333pt;}
.y1{bottom:446.813333pt;}
.y35{bottom:447.973333pt;}
.y61{bottom:459.653333pt;}
.y3e{bottom:462.426667pt;}
.yd{bottom:463.586667pt;}
.y6c{bottom:471.066667pt;}
.y26{bottom:479.933333pt;}
.y17{bottom:487.293333pt;}
.y55{bottom:488.480000pt;}
.y1b{bottom:488.546667pt;}
.y20{bottom:488.773333pt;}
.y60{bottom:491.813333pt;}
.y3d{bottom:494.426667pt;}
.y6b{bottom:499.866667pt;}
.y2e{bottom:502.333333pt;}
.yc{bottom:511.613333pt;}
.y54{bottom:514.080000pt;}
.y16{bottom:516.093333pt;}
.y5f{bottom:517.413333pt;}
.y25{bottom:524.933333pt;}
.y3c{bottom:526.466667pt;}
.y1f{bottom:529.093333pt;}
.y2d{bottom:542.653333pt;}
.y5e{bottom:551.653333pt;}
.y9{bottom:559.653333pt;}
.y6a{bottom:565.786667pt;}
.y77{bottom:592.133333pt;}
.y5b{bottom:592.546667pt;}
.ya{bottom:621.053333pt;}
.y47{bottom:641.693333pt;}
.h22{height:37.164063pt;}
.h19{height:51.142187pt;}
.h6{height:55.312500pt;}
.h1d{height:55.468750pt;}
.h9{height:58.123875pt;}
.h25{height:64.715625pt;}
.h26{height:64.826250pt;}
.h1a{height:64.898438pt;}
.h1b{height:65.009375pt;}
.h15{height:73.565625pt;}
.h1f{height:73.773438pt;}
.h1e{height:73.898125pt;}
.h1c{height:74.477812pt;}
.h24{height:81.248812pt;}
.hf{height:83.203125pt;}
.h10{height:83.314062pt;}
.h23{height:83.343750pt;}
.hc{height:92.632812pt;}
.hd{height:92.743750pt;}
.he{height:95.484375pt;}
.h17{height:106.305937pt;}
.h5{height:110.937500pt;}
.h16{height:111.048437pt;}
.h4{height:111.236125pt;}
.h20{height:120.367188pt;}
.h21{height:120.478125pt;}
.hb{height:127.312500pt;}
.ha{height:127.439813pt;}
.h11{height:129.242188pt;}
.h8{height:129.353125pt;}
.h14{height:129.460625pt;}
.h12{height:148.319063pt;}
.h13{height:148.446375pt;}
.h18{height:185.134250pt;}
.h3{height:203.914375pt;}
.h2{height:204.025500pt;}
.h1{height:216.375000pt;}
.h27{height:270.468750pt;}
.h7{height:277.812500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x13{left:44.063981pt;}
.x12{left:69.183981pt;}
.x10{left:70.143981pt;}
.x15{left:72.479981pt;}
.x4{left:77.599981pt;}
.x16{left:88.479981pt;}
.x1{left:96.767981pt;}
.xd{left:108.255981pt;}
.xe{left:114.303981pt;}
.x6{left:117.855981pt;}
.x1d{left:119.007981pt;}
.xf{left:121.503981pt;}
.x27{left:124.351981pt;}
.xb{left:125.631981pt;}
.x11{left:127.103981pt;}
.x2{left:138.146648pt;}
.x7{left:147.933314pt;}
.x32{left:168.706648pt;}
.x18{left:172.226648pt;}
.x30{left:177.666648pt;}
.x14{left:189.026648pt;}
.x25{left:205.693314pt;}
.x29{left:322.079981pt;}
.x19{left:378.493314pt;}
.x24{left:458.906648pt;}
.xc{left:523.546648pt;}
.x8{left:566.946648pt;}
.x1f{left:572.893314pt;}
.x21{left:579.839981pt;}
.x9{left:590.946648pt;}
.x20{left:602.879981pt;}
.xa{left:611.973314pt;}
.x2f{left:626.533314pt;}
.x1b{left:644.506648pt;}
.x3{left:660.293314pt;}
.x31{left:700.133314pt;}
.x2a{left:809.626648pt;}
.x1a{left:831.546648pt;}
.x1e{left:845.506648pt;}
.x22{left:848.159981pt;}
.x23{left:858.493314pt;}
.x2d{left:883.226648pt;}
.x2c{left:908.826648pt;}
.x2b{left:911.386648pt;}
.x2e{left:947.333314pt;}
.x26{left:1031.426648pt;}
.x5{left:1226.399981pt;}
.x17{left:1240.226648pt;}
.x1c{left:1261.146648pt;}
.x28{left:1271.386648pt;}
}




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