
    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_bc9898ba3652e7ca0bdd7f2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1a06e628c196243da8249643.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_715a8941f3aca9e39f78f60a.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6282c286cd3a480731417d2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a66a1d051cd10f30cdd22afc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_5ea9d66068b439b94745d6b3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a6a3f5126d72b9ac5ce7acf.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.880000px;}
.ls6{letter-spacing:-1.872000px;}
.ls1f{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.066720px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078600px;}
.lse{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.306000px;}
.ls11{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.450000px;}
.lsc{letter-spacing:0.930000px;}
.ls15{letter-spacing:2.700000px;}
.ls10{letter-spacing:10.170000px;}
.ls1c{letter-spacing:10.890000px;}
.ls1d{letter-spacing:11.250000px;}
.lsb{letter-spacing:12.810000px;}
.ls3{letter-spacing:14.610000px;}
.ls17{letter-spacing:16.290000px;}
.ls1b{letter-spacing:18.090000px;}
.ls1a{letter-spacing:18.540000px;}
.ls12{letter-spacing:18.900000px;}
.ls1e{letter-spacing:67.440000px;}
.lsa{letter-spacing:109.560000px;}
.ls7{letter-spacing:574.911120px;}
.ls20{letter-spacing:826.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws4{word-spacing:-15.210000px;}
.wsa{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.976720px;}
.ws8{word-spacing:-14.967480px;}
.ws3{word-spacing:-14.850000px;}
.ws1{word-spacing:-14.220000px;}
.ws5{word-spacing:-12.204000px;}
.ws6{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._a{margin-left:-2.345880px;}
._4{margin-left:-1.056120px;}
._3{width:1.016880px;}
._6{width:2.063520px;}
._5{width:3.126240px;}
._9{width:4.553280px;}
._12{width:5.753400px;}
._11{width:6.822720px;}
._14{width:8.081280px;}
._2{width:9.227520px;}
._8{width:10.854240px;}
._16{width:12.264480px;}
._7{width:14.027160px;}
._d{width:15.912000px;}
._e{width:16.920000px;}
._1c{width:18.098880px;}
._f{width:19.224000px;}
._10{width:20.664000px;}
._1a{width:22.392000px;}
._13{width:23.873640px;}
._c{width:25.671240px;}
._1b{width:27.432000px;}
._15{width:29.376000px;}
._1f{width:30.663120px;}
._1d{width:31.896000px;}
._21{width:33.072240px;}
._1e{width:34.344000px;}
._17{width:36.072000px;}
._18{width:37.695240px;}
._22{width:39.672000px;}
._28{width:40.752000px;}
._2b{width:41.904000px;}
._20{width:43.056000px;}
._29{width:45.000000px;}
._25{width:46.800000px;}
._26{width:47.832000px;}
._2c{width:49.248000px;}
._27{width:51.912000px;}
._23{width:54.360000px;}
._24{width:55.440000px;}
._2e{width:74.909520px;}
._2a{width:76.824000px;}
._b{width:243.156000px;}
._2d{width:281.962800px;}
._0{width:805.620000px;}
._19{width:1423.551840px;}
._1{width:1748.700000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y2e{bottom:96.689908px;}
.y9b{bottom:98.039908px;}
.y2d{bottom:113.969908px;}
.y9a{bottom:118.739908px;}
.y5d{bottom:119.189908px;}
.y2c{bottom:131.159908px;}
.y88{bottom:136.379908px;}
.y99{bottom:139.439908px;}
.y5c{bottom:148.439908px;}
.y9c{bottom:148.799908px;}
.y2b{bottom:153.659908px;}
.y98{bottom:160.139908px;}
.y5b{bottom:165.719908px;}
.y2a{bottom:166.079908px;}
.y7d{bottom:170.939908px;}
.y97{bottom:180.839908px;}
.y5a{bottom:182.909908px;}
.y90{bottom:188.129908px;}
.y29{bottom:198.749908px;}
.y59{bottom:200.189908px;}
.y94{bottom:200.549908px;}
.y86{bottom:201.539908px;}
.ya3{bottom:205.409908px;}
.y87{bottom:208.289908px;}
.y58{bottom:217.469908px;}
.y93{bottom:222.239908px;}
.y8c{bottom:222.689908px;}
.y28{bottom:225.209908px;}
.ya7{bottom:228.989908px;}
.y57{bottom:234.659908px;}
.y56{bottom:239.879908px;}
.y27{bottom:241.679908px;}
.y85{bottom:242.939908px;}
.y55{bottom:251.939908px;}
.y8f{bottom:252.299908px;}
.y7c{bottom:257.159908px;}
.y26{bottom:258.149908px;}
.y84{bottom:263.639908px;}
.y54{bottom:269.219908px;}
.y96{bottom:270.389908px;}
.y8b{bottom:274.439908px;}
.y25{bottom:274.619908px;}
.y83{bottom:284.339908px;}
.y53{bottom:286.409908px;}
.y8a{bottom:286.769908px;}
.y24{bottom:291.089908px;}
.y6f{bottom:291.629908px;}
.y52{bottom:303.689908px;}
.y7b{bottom:304.049908px;}
.y82{bottom:305.039908px;}
.y23{bottom:307.559908px;}
.y6e{bottom:308.909908px;}
.y51{bottom:320.969908px;}
.y8d{bottom:321.329908px;}
.y22{bottom:324.029908px;}
.y7a{bottom:325.739908px;}
.y50{bottom:338.159908px;}
.y21{bottom:340.499908px;}
.y80{bottom:343.379908px;}
.y79{bottom:346.439908px;}
.yba{bottom:348.149908px;}
.y4f{bottom:355.439908px;}
.y20{bottom:357.059908px;}
.ya6{bottom:360.659908px;}
.y78{bottom:367.139908px;}
.yb9{bottom:368.849908px;}
.y4e{bottom:372.719908px;}
.y1f{bottom:373.529908px;}
.ya2{bottom:373.889908px;}
.y6d{bottom:377.939908px;}
.y77{bottom:387.839908px;}
.yb8{bottom:389.549908px;}
.y4d{bottom:389.909908px;}
.y1e{bottom:389.999908px;}
.y9e{bottom:390.269908px;}
.ya0{bottom:395.129908px;}
.y1d{bottom:406.469908px;}
.y4c{bottom:407.189908px;}
.y9f{bottom:407.549908px;}
.y76{bottom:408.539908px;}
.yb7{bottom:410.249908px;}
.y1c{bottom:422.939908px;}
.y4b{bottom:424.469908px;}
.y81{bottom:429.239908px;}
.y6c{bottom:429.689908px;}
.yb6{bottom:430.949908px;}
.y9d{bottom:435.989908px;}
.y1b{bottom:439.409908px;}
.y4a{bottom:441.659908px;}
.ya5{bottom:442.019908px;}
.y92{bottom:446.879908px;}
.y75{bottom:449.969908px;}
.yb5{bottom:451.679908px;}
.y1a{bottom:455.909908px;}
.y49{bottom:458.969908px;}
.y91{bottom:459.329908px;}
.y74{bottom:470.669908px;}
.y19{bottom:472.379908px;}
.y48{bottom:476.159908px;}
.y6b{bottom:481.379908px;}
.y18{bottom:488.849908px;}
.y73{bottom:491.369908px;}
.yb4{bottom:493.079908px;}
.y47{bottom:493.439908px;}
.y8e{bottom:498.119908px;}
.y46{bottom:498.659908px;}
.y17{bottom:504.959908px;}
.y45{bottom:510.719908px;}
.y7f{bottom:511.079908px;}
.y72{bottom:512.069908px;}
.yb3{bottom:513.779908px;}
.y6a{bottom:515.939908px;}
.y89{bottom:518.819908px;}
.y16{bottom:522.239908px;}
.y44{bottom:527.909908px;}
.y69{bottom:528.359908px;}
.y71{bottom:532.769908px;}
.yb2{bottom:534.479908px;}
.y15{bottom:539.519908px;}
.y43{bottom:545.189908px;}
.y70{bottom:553.469908px;}
.yb1{bottom:555.179908px;}
.y14{bottom:556.709908px;}
.y42{bottom:562.469908px;}
.y13{bottom:573.989908px;}
.y68{bottom:574.169908px;}
.yaf{bottom:575.879908px;}
.y41{bottom:579.659908px;}
.y7e{bottom:580.919908px;}
.yb0{bottom:582.629908px;}
.y40{bottom:584.879908px;}
.y12{bottom:591.269908px;}
.y66{bottom:594.869908px;}
.yae{bottom:596.579908px;}
.y3f{bottom:597.299908px;}
.y67{bottom:601.619908px;}
.y11{bottom:608.459908px;}
.y65{bottom:615.569908px;}
.yac{bottom:617.279908px;}
.yad{bottom:624.029908px;}
.y10{bottom:625.739908px;}
.y3e{bottom:636.269908px;}
.yab{bottom:637.979908px;}
.yf{bottom:643.019908px;}
.y3d{bottom:656.969908px;}
.yaa{bottom:658.679908px;}
.ye{bottom:660.209908px;}
.ya4{bottom:663.719908px;}
.yd{bottom:677.489908px;}
.y3b{bottom:677.669908px;}
.ya9{bottom:679.379908px;}
.y3c{bottom:684.419908px;}
.yc{bottom:695.399908px;}
.y39{bottom:698.369908px;}
.ya8{bottom:699.809908px;}
.y3a{bottom:705.119908px;}
.y38{bottom:719.069908px;}
.y64{bottom:725.819908px;}
.yb{bottom:732.119908px;}
.y37{bottom:739.769908px;}
.y36{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.y63{bottom:767.219908px;}
.y35{bottom:781.169908px;}
.ya1{bottom:787.919908px;}
.y9{bottom:790.799908px;}
.y34{bottom:801.869908px;}
.y95{bottom:808.619908px;}
.y8{bottom:820.049908px;}
.y32{bottom:822.569908px;}
.y33{bottom:829.319908px;}
.y61{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.y62{bottom:850.049908px;}
.y31{bottom:863.999908px;}
.y60{bottom:870.749908px;}
.y6{bottom:878.669908px;}
.y30{bottom:884.699908px;}
.y5f{bottom:891.449908px;}
.y5e{bottom:916.739908px;}
.y2f{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.ha{height:38.158594px;}
.he{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.hf{height:53.896641px;}
.h8{height:55.291992px;}
.h11{height:57.324375px;}
.h10{height:58.975137px;}
.h7{height:59.004492px;}
.hd{height:64.546875px;}
.hb{height:64.657617px;}
.h3{height:65.526152px;}
.h12{height:70.628906px;}
.h6{height:70.664062px;}
.hc{height:72.562500px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.669989px;}
.xa{left:100.529989px;}
.x19{left:105.419989px;}
.x3f{left:117.029989px;}
.x16{left:127.559989px;}
.x1a{left:149.699978px;}
.xd{left:154.739978px;}
.x39{left:158.699978px;}
.xe{left:160.769989px;}
.x49{left:165.629978px;}
.x3a{left:170.759989px;}
.x13{left:177.689978px;}
.xb{left:183.629978px;}
.xc{left:189.659989px;}
.x3b{left:199.739978px;}
.x45{left:203.789978px;}
.x1f{left:206.759978px;}
.x2d{left:210.179978px;}
.x3c{left:211.799989px;}
.x46{left:215.849989px;}
.x20{left:218.819989px;}
.x2e{left:222.239989px;}
.x1b{left:233.309978px;}
.x37{left:237.719978px;}
.x1c{left:245.369989px;}
.x6{left:247.439978px;}
.x38{left:249.779989px;}
.x33{left:251.849978px;}
.x7{left:253.469989px;}
.x4f{left:256.529989px;}
.x34{left:263.909989px;}
.x2{left:312.599978px;}
.x3{left:318.659989px;}
.x2f{left:324.689989px;}
.x21{left:336.929978px;}
.x1d{left:339.179978px;}
.x22{left:348.989989px;}
.x1e{left:351.239989px;}
.x25{left:401.819978px;}
.x27{left:408.749978px;}
.x3d{left:410.189978px;}
.x26{left:413.879989px;}
.x28{left:420.809989px;}
.x3e{left:422.249989px;}
.x41{left:423.329978px;}
.x42{left:435.389989px;}
.x4{left:439.259978px;}
.x40{left:441.869978px;}
.x5{left:445.289989px;}
.x14{left:448.709978px;}
.x31{left:454.739978px;}
.x15{left:460.769989px;}
.x32{left:466.799989px;}
.x11{left:470.039978px;}
.x35{left:471.389978px;}
.x12{left:476.069989px;}
.x4a{left:482.099989px;}
.x36{left:483.449989px;}
.x52{left:486.959978px;}
.x53{left:499.019989px;}
.x4b{left:504.779978px;}
.x43{left:508.109978px;}
.x4c{left:516.839989px;}
.x44{left:520.169989px;}
.xf{left:527.279978px;}
.x10{left:533.339989px;}
.x30{left:539.369989px;}
.x47{left:553.769978px;}
.x2b{left:557.099978px;}
.x23{left:562.589978px;}
.x48{left:565.829989px;}
.x50{left:566.999978px;}
.x2c{left:569.159989px;}
.x24{left:574.649989px;}
.x51{left:579.059989px;}
.x8{left:582.029978px;}
.x4d{left:585.989978px;}
.x9{left:588.059989px;}
.x54{left:595.619978px;}
.x4e{left:598.049989px;}
.x55{left:607.679989px;}
.x17{left:610.649978px;}
.x29{left:615.239978px;}
.x18{left:622.709989px;}
.x2a{left:627.299989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls6{letter-spacing:-1.664000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.059307pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069867pt;}
.lse{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.272000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.400000pt;}
.lsc{letter-spacing:0.826667pt;}
.ls15{letter-spacing:2.400000pt;}
.ls10{letter-spacing:9.040000pt;}
.ls1c{letter-spacing:9.680000pt;}
.ls1d{letter-spacing:10.000000pt;}
.lsb{letter-spacing:11.386667pt;}
.ls3{letter-spacing:12.986667pt;}
.ls17{letter-spacing:14.480000pt;}
.ls1b{letter-spacing:16.080000pt;}
.ls1a{letter-spacing:16.480000pt;}
.ls12{letter-spacing:16.800000pt;}
.ls1e{letter-spacing:59.946667pt;}
.lsa{letter-spacing:97.386667pt;}
.ls7{letter-spacing:511.032107pt;}
.ls20{letter-spacing:734.506667pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws4{word-spacing:-13.520000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.312640pt;}
.ws8{word-spacing:-13.304427pt;}
.ws3{word-spacing:-13.200000pt;}
.ws1{word-spacing:-12.640000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._a{margin-left:-2.085227pt;}
._4{margin-left:-0.938773pt;}
._3{width:0.903893pt;}
._6{width:1.834240pt;}
._5{width:2.778880pt;}
._9{width:4.047360pt;}
._12{width:5.114133pt;}
._11{width:6.064640pt;}
._14{width:7.183360pt;}
._2{width:8.202240pt;}
._8{width:9.648213pt;}
._16{width:10.901760pt;}
._7{width:12.468587pt;}
._d{width:14.144000pt;}
._e{width:15.040000pt;}
._1c{width:16.087893pt;}
._f{width:17.088000pt;}
._10{width:18.368000pt;}
._1a{width:19.904000pt;}
._13{width:21.221013pt;}
._c{width:22.818880pt;}
._1b{width:24.384000pt;}
._15{width:26.112000pt;}
._1f{width:27.256107pt;}
._1d{width:28.352000pt;}
._21{width:29.397547pt;}
._1e{width:30.528000pt;}
._17{width:32.064000pt;}
._18{width:33.506880pt;}
._22{width:35.264000pt;}
._28{width:36.224000pt;}
._2b{width:37.248000pt;}
._20{width:38.272000pt;}
._29{width:40.000000pt;}
._25{width:41.600000pt;}
._26{width:42.517333pt;}
._2c{width:43.776000pt;}
._27{width:46.144000pt;}
._23{width:48.320000pt;}
._24{width:49.280000pt;}
._2e{width:66.586240pt;}
._2a{width:68.288000pt;}
._b{width:216.138667pt;}
._2d{width:250.633600pt;}
._0{width:716.106667pt;}
._19{width:1265.379413pt;}
._1{width:1554.400000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y2e{bottom:85.946585pt;}
.y9b{bottom:87.146585pt;}
.y2d{bottom:101.306585pt;}
.y9a{bottom:105.546585pt;}
.y5d{bottom:105.946585pt;}
.y2c{bottom:116.586585pt;}
.y88{bottom:121.226585pt;}
.y99{bottom:123.946585pt;}
.y5c{bottom:131.946585pt;}
.y9c{bottom:132.266585pt;}
.y2b{bottom:136.586585pt;}
.y98{bottom:142.346585pt;}
.y5b{bottom:147.306585pt;}
.y2a{bottom:147.626585pt;}
.y7d{bottom:151.946585pt;}
.y97{bottom:160.746585pt;}
.y5a{bottom:162.586585pt;}
.y90{bottom:167.226585pt;}
.y29{bottom:176.666585pt;}
.y59{bottom:177.946585pt;}
.y94{bottom:178.266585pt;}
.y86{bottom:179.146585pt;}
.ya3{bottom:182.586585pt;}
.y87{bottom:185.146585pt;}
.y58{bottom:193.306585pt;}
.y93{bottom:197.546585pt;}
.y8c{bottom:197.946585pt;}
.y28{bottom:200.186585pt;}
.ya7{bottom:203.546585pt;}
.y57{bottom:208.586585pt;}
.y56{bottom:213.226585pt;}
.y27{bottom:214.826585pt;}
.y85{bottom:215.946585pt;}
.y55{bottom:223.946585pt;}
.y8f{bottom:224.266585pt;}
.y7c{bottom:228.586585pt;}
.y26{bottom:229.466585pt;}
.y84{bottom:234.346585pt;}
.y54{bottom:239.306585pt;}
.y96{bottom:240.346585pt;}
.y8b{bottom:243.946585pt;}
.y25{bottom:244.106585pt;}
.y83{bottom:252.746585pt;}
.y53{bottom:254.586585pt;}
.y8a{bottom:254.906585pt;}
.y24{bottom:258.746585pt;}
.y6f{bottom:259.226585pt;}
.y52{bottom:269.946585pt;}
.y7b{bottom:270.266585pt;}
.y82{bottom:271.146585pt;}
.y23{bottom:273.386585pt;}
.y6e{bottom:274.586585pt;}
.y51{bottom:285.306585pt;}
.y8d{bottom:285.626585pt;}
.y22{bottom:288.026585pt;}
.y7a{bottom:289.546585pt;}
.y50{bottom:300.586585pt;}
.y21{bottom:302.666585pt;}
.y80{bottom:305.226585pt;}
.y79{bottom:307.946585pt;}
.yba{bottom:309.466585pt;}
.y4f{bottom:315.946585pt;}
.y20{bottom:317.386585pt;}
.ya6{bottom:320.586585pt;}
.y78{bottom:326.346585pt;}
.yb9{bottom:327.866585pt;}
.y4e{bottom:331.306585pt;}
.y1f{bottom:332.026585pt;}
.ya2{bottom:332.346585pt;}
.y6d{bottom:335.946585pt;}
.y77{bottom:344.746585pt;}
.yb8{bottom:346.266585pt;}
.y4d{bottom:346.586585pt;}
.y1e{bottom:346.666585pt;}
.y9e{bottom:346.906585pt;}
.ya0{bottom:351.226585pt;}
.y1d{bottom:361.306585pt;}
.y4c{bottom:361.946585pt;}
.y9f{bottom:362.266585pt;}
.y76{bottom:363.146585pt;}
.yb7{bottom:364.666585pt;}
.y1c{bottom:375.946585pt;}
.y4b{bottom:377.306585pt;}
.y81{bottom:381.546585pt;}
.y6c{bottom:381.946585pt;}
.yb6{bottom:383.066585pt;}
.y9d{bottom:387.546585pt;}
.y1b{bottom:390.586585pt;}
.y4a{bottom:392.586585pt;}
.ya5{bottom:392.906585pt;}
.y92{bottom:397.226585pt;}
.y75{bottom:399.973252pt;}
.yb5{bottom:401.493252pt;}
.y1a{bottom:405.253252pt;}
.y49{bottom:407.973252pt;}
.y91{bottom:408.293252pt;}
.y74{bottom:418.373252pt;}
.y19{bottom:419.893252pt;}
.y48{bottom:423.253252pt;}
.y6b{bottom:427.893252pt;}
.y18{bottom:434.533252pt;}
.y73{bottom:436.773252pt;}
.yb4{bottom:438.293252pt;}
.y47{bottom:438.613252pt;}
.y8e{bottom:442.773252pt;}
.y46{bottom:443.253252pt;}
.y17{bottom:448.853252pt;}
.y45{bottom:453.973252pt;}
.y7f{bottom:454.293252pt;}
.y72{bottom:455.173252pt;}
.yb3{bottom:456.693252pt;}
.y6a{bottom:458.613252pt;}
.y89{bottom:461.173252pt;}
.y16{bottom:464.213252pt;}
.y44{bottom:469.253252pt;}
.y69{bottom:469.653252pt;}
.y71{bottom:473.573252pt;}
.yb2{bottom:475.093252pt;}
.y15{bottom:479.573252pt;}
.y43{bottom:484.613252pt;}
.y70{bottom:491.973252pt;}
.yb1{bottom:493.493252pt;}
.y14{bottom:494.853252pt;}
.y42{bottom:499.973252pt;}
.y13{bottom:510.213252pt;}
.y68{bottom:510.373252pt;}
.yaf{bottom:511.893252pt;}
.y41{bottom:515.253252pt;}
.y7e{bottom:516.373252pt;}
.yb0{bottom:517.893252pt;}
.y40{bottom:519.893252pt;}
.y12{bottom:525.573252pt;}
.y66{bottom:528.773252pt;}
.yae{bottom:530.293252pt;}
.y3f{bottom:530.933252pt;}
.y67{bottom:534.773252pt;}
.y11{bottom:540.853252pt;}
.y65{bottom:547.173252pt;}
.yac{bottom:548.693252pt;}
.yad{bottom:554.693252pt;}
.y10{bottom:556.213252pt;}
.y3e{bottom:565.573252pt;}
.yab{bottom:567.093252pt;}
.yf{bottom:571.573252pt;}
.y3d{bottom:583.973252pt;}
.yaa{bottom:585.493252pt;}
.ye{bottom:586.853252pt;}
.ya4{bottom:589.973252pt;}
.yd{bottom:602.213252pt;}
.y3b{bottom:602.373252pt;}
.ya9{bottom:603.893252pt;}
.y3c{bottom:608.373252pt;}
.yc{bottom:618.133252pt;}
.y39{bottom:620.773252pt;}
.ya8{bottom:622.053252pt;}
.y3a{bottom:626.773252pt;}
.y38{bottom:639.173252pt;}
.y64{bottom:645.173252pt;}
.yb{bottom:650.773252pt;}
.y37{bottom:657.573252pt;}
.y36{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.y63{bottom:681.973252pt;}
.y35{bottom:694.373252pt;}
.ya1{bottom:700.373252pt;}
.y9{bottom:702.933252pt;}
.y34{bottom:712.773252pt;}
.y95{bottom:718.773252pt;}
.y8{bottom:728.933252pt;}
.y32{bottom:731.173252pt;}
.y33{bottom:737.173252pt;}
.y61{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.y62{bottom:755.599919pt;}
.y31{bottom:767.999919pt;}
.y60{bottom:773.999919pt;}
.y6{bottom:781.039919pt;}
.y30{bottom:786.399919pt;}
.y5f{bottom:792.399919pt;}
.y5e{bottom:814.879919pt;}
.y2f{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.ha{height:33.918750pt;}
.he{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.hf{height:47.908125pt;}
.h8{height:49.148438pt;}
.h11{height:50.955000pt;}
.h10{height:52.422344pt;}
.h7{height:52.448437pt;}
.hd{height:57.375000pt;}
.hb{height:57.473437pt;}
.h3{height:58.245469pt;}
.h12{height:62.781250pt;}
.h6{height:62.812500pt;}
.hc{height:64.500000pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.039990pt;}
.xa{left:89.359990pt;}
.x19{left:93.706657pt;}
.x3f{left:104.026657pt;}
.x16{left:113.386657pt;}
.x1a{left:133.066648pt;}
.xd{left:137.546648pt;}
.x39{left:141.066648pt;}
.xe{left:142.906657pt;}
.x49{left:147.226648pt;}
.x3a{left:151.786657pt;}
.x13{left:157.946648pt;}
.xb{left:163.226648pt;}
.xc{left:168.586657pt;}
.x3b{left:177.546648pt;}
.x45{left:181.146648pt;}
.x1f{left:183.786648pt;}
.x2d{left:186.826648pt;}
.x3c{left:188.266657pt;}
.x46{left:191.866657pt;}
.x20{left:194.506657pt;}
.x2e{left:197.546657pt;}
.x1b{left:207.386648pt;}
.x37{left:211.306648pt;}
.x1c{left:218.106657pt;}
.x6{left:219.946648pt;}
.x38{left:222.026657pt;}
.x33{left:223.866648pt;}
.x7{left:225.306657pt;}
.x4f{left:228.026657pt;}
.x34{left:234.586657pt;}
.x2{left:277.866648pt;}
.x3{left:283.253324pt;}
.x2f{left:288.613324pt;}
.x21{left:299.493314pt;}
.x1d{left:301.493314pt;}
.x22{left:310.213324pt;}
.x1e{left:312.213324pt;}
.x25{left:357.173314pt;}
.x27{left:363.333314pt;}
.x3d{left:364.613314pt;}
.x26{left:367.893324pt;}
.x28{left:374.053324pt;}
.x3e{left:375.333324pt;}
.x41{left:376.293314pt;}
.x42{left:387.013324pt;}
.x4{left:390.453314pt;}
.x40{left:392.773314pt;}
.x5{left:395.813324pt;}
.x14{left:398.853314pt;}
.x31{left:404.213314pt;}
.x15{left:409.573324pt;}
.x32{left:414.933324pt;}
.x11{left:417.813314pt;}
.x35{left:419.013314pt;}
.x12{left:423.173324pt;}
.x4a{left:428.533324pt;}
.x36{left:429.733324pt;}
.x52{left:432.853314pt;}
.x53{left:443.573324pt;}
.x4b{left:448.693314pt;}
.x43{left:451.653314pt;}
.x4c{left:459.413324pt;}
.x44{left:462.373324pt;}
.xf{left:468.693314pt;}
.x10{left:474.079990pt;}
.x30{left:479.439990pt;}
.x47{left:492.239981pt;}
.x2b{left:495.199981pt;}
.x23{left:500.079981pt;}
.x48{left:502.959990pt;}
.x50{left:503.999981pt;}
.x2c{left:505.919990pt;}
.x24{left:510.799990pt;}
.x51{left:514.719990pt;}
.x8{left:517.359981pt;}
.x4d{left:520.879981pt;}
.x9{left:522.719990pt;}
.x54{left:529.439981pt;}
.x4e{left:531.599990pt;}
.x55{left:540.159990pt;}
.x17{left:542.799981pt;}
.x29{left:546.879981pt;}
.x18{left:553.519990pt;}
.x2a{left:557.599990pt;}
}




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