
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_6111193007d336016cba59f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9a8d5d6e3323c61f4d68614f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_29b8c1e0108dc9e8299764c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_fd40f377688bb1a93a297ee7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_527ad80421a694cf8e1c98d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_e3da5aebf08d9c46c3b0401d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3569c7ddda1d52fdca6c935d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_17764c193aede4633660f5e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_c2737d70f17e7accdb09b41b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_231c90a7201e715525669408.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-90.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lse{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.252720px;}
.ls0{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.lsd{letter-spacing:15.660000px;}
.ls11{letter-spacing:18.720000px;}
.lsb{letter-spacing:21.420000px;}
.ls5{letter-spacing:30.581280px;}
.ls10{letter-spacing:33.984000px;}
.ls7{letter-spacing:35.820000px;}
.ls6{letter-spacing:35.940000px;}
.ls3{letter-spacing:37.061280px;}
.lsf{letter-spacing:647.616000px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.312720px;}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:0.000000px;}
._22{margin-left:-5.112000px;}
._0{margin-left:-1.054080px;}
._1{width:1.822080px;}
._3{width:3.312000px;}
._f{width:4.464720px;}
._d{width:6.318000px;}
._2e{width:8.184240px;}
._5{width:9.936000px;}
._8{width:11.016000px;}
._9{width:12.096000px;}
._16{width:13.631760px;}
._c{width:14.688000px;}
._4{width:15.696000px;}
._a{width:16.848000px;}
._32{width:18.195840px;}
._b{width:19.296000px;}
._7{width:20.856000px;}
._6{width:21.936000px;}
._15{width:23.194800px;}
._2{width:24.480000px;}
._10{width:25.736400px;}
._2f{width:26.737440px;}
._29{width:27.840240px;}
._2a{width:29.481840px;}
._24{width:30.672000px;}
._25{width:32.352000px;}
._1b{width:33.782400px;}
._11{width:35.128080px;}
._12{width:36.266400px;}
._1e{width:38.497680px;}
._1f{width:39.804480px;}
._26{width:42.192000px;}
._1c{width:43.467840px;}
._1d{width:44.504400px;}
._33{width:45.562560px;}
._17{width:46.921680px;}
._18{width:48.101040px;}
._2b{width:53.408160px;}
._2c{width:54.630720px;}
._2d{width:56.272320px;}
._23{width:57.312000px;}
._20{width:58.715280px;}
._21{width:60.053280px;}
._19{width:62.506080px;}
._1a{width:63.771840px;}
._28{width:66.456000px;}
._13{width:77.079600px;}
._14{width:78.208080px;}
._30{width:80.449200px;}
._31{width:81.902880px;}
._27{width:92.520000px;}
._e{width:230.271120px;}
.fca{color:rgb(153,0,153);}
.fc9{color:rgb(12,14,13);}
.fc7{color:transparent;}
.fc5{color:rgb(31,56,100);}
.fc8{color:rgb(46,116,181);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(5,99,193);}
.fc6{color:rgb(31,31,31);}
.fc2{color:rgb(36,32,33);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y55{bottom:3.960000px;}
.y58{bottom:24.660000px;}
.y3{bottom:35.856000px;}
.y57{bottom:45.360000px;}
.y2{bottom:55.476000px;}
.y5a{bottom:66.060000px;}
.y2f{bottom:90.036000px;}
.y6d{bottom:92.376000px;}
.y53{bottom:94.536000px;}
.y9d{bottom:98.136000px;}
.y80{bottom:99.396000px;}
.y2e{bottom:117.756000px;}
.y9c{bottom:118.836000px;}
.y6c{bottom:120.096000px;}
.y52{bottom:122.256000px;}
.y7f{bottom:127.116000px;}
.y9b{bottom:139.536000px;}
.y2d{bottom:145.476000px;}
.y6b{bottom:147.816000px;}
.y51{bottom:149.976000px;}
.y7e{bottom:154.830000px;}
.y9a{bottom:160.230000px;}
.y2c{bottom:173.190000px;}
.y6a{bottom:175.710000px;}
.y50{bottom:177.870000px;}
.y99{bottom:180.930000px;}
.y7d{bottom:182.730000px;}
.y2b{bottom:201.090000px;}
.y98{bottom:201.630000px;}
.y69{bottom:203.430000px;}
.y4f{bottom:205.590000px;}
.y7c{bottom:210.450000px;}
.y97{bottom:222.330000px;}
.y2a{bottom:228.810000px;}
.y68{bottom:231.150000px;}
.y4e{bottom:233.310000px;}
.y7b{bottom:238.170000px;}
.y29{bottom:256.530000px;}
.y67{bottom:258.870000px;}
.y4d{bottom:261.210000px;}
.y96{bottom:265.530000px;}
.y7a{bottom:265.890000px;}
.y28{bottom:284.475000px;}
.y66{bottom:286.815000px;}
.y95{bottom:287.715000px;}
.y4c{bottom:288.975000px;}
.y79{bottom:293.835000px;}
.y27{bottom:312.195000px;}
.y65{bottom:314.535000px;}
.y94{bottom:315.435000px;}
.y4b{bottom:316.695000px;}
.y78{bottom:321.555000px;}
.y26{bottom:339.915000px;}
.y64{bottom:342.255000px;}
.y93{bottom:343.335000px;}
.y4a{bottom:344.415000px;}
.y77{bottom:349.275000px;}
.y25{bottom:367.635000px;}
.y63{bottom:369.975000px;}
.y92{bottom:371.055000px;}
.y49{bottom:372.315000px;}
.y76{bottom:377.175000px;}
.y24{bottom:395.535000px;}
.y62{bottom:397.875000px;}
.y91{bottom:398.775000px;}
.y48{bottom:400.035000px;}
.y75{bottom:404.895000px;}
.y23{bottom:423.255000px;}
.y61{bottom:425.595000px;}
.y90{bottom:426.675000px;}
.y47{bottom:427.755000px;}
.y74{bottom:432.615000px;}
.y22{bottom:450.975000px;}
.y60{bottom:453.315000px;}
.y8f{bottom:454.395000px;}
.y46{bottom:455.655000px;}
.y73{bottom:460.335000px;}
.y21{bottom:478.875000px;}
.y5f{bottom:481.215000px;}
.y8e{bottom:482.115000px;}
.y45{bottom:483.375000px;}
.y72{bottom:496.695000px;}
.y20{bottom:506.595000px;}
.y5e{bottom:508.935000px;}
.y8d{bottom:509.835000px;}
.y44{bottom:511.095000px;}
.y1f{bottom:530.175000px;}
.y71{bottom:532.875000px;}
.y5d{bottom:536.655000px;}
.y8c{bottom:537.735000px;}
.y43{bottom:538.815000px;}
.y1e{bottom:550.875000px;}
.y5c{bottom:564.375000px;}
.y8b{bottom:565.485000px;}
.y42{bottom:566.745000px;}
.y70{bottom:569.085000px;}
.y1d{bottom:571.605000px;}
.y1c{bottom:592.305000px;}
.y8a{bottom:593.205000px;}
.y41{bottom:594.465000px;}
.y6f{bottom:605.265000px;}
.y5b{bottom:612.645000px;}
.y1b{bottom:613.005000px;}
.y40{bottom:622.185000px;}
.y89{bottom:629.385000px;}
.y1a{bottom:633.705000px;}
.y6e{bottom:641.625000px;}
.y3f{bottom:649.905000px;}
.y19{bottom:654.405000px;}
.y88{bottom:665.745000px;}
.y18{bottom:675.105000px;}
.y3e{bottom:677.805000px;}
.y17{bottom:695.805000px;}
.y59{bottom:696.165000px;}
.y87{bottom:701.925000px;}
.y3d{bottom:705.525000px;}
.y16{bottom:716.505000px;}
.y3c{bottom:733.245000px;}
.y15{bottom:737.205000px;}
.y86{bottom:738.105000px;}
.y14{bottom:757.905000px;}
.y3b{bottom:761.145000px;}
.y85{bottom:774.285000px;}
.y13{bottom:778.605000px;}
.y56{bottom:779.685000px;}
.y3a{bottom:788.865000px;}
.y12{bottom:799.305000px;}
.y84{bottom:810.645000px;}
.y39{bottom:816.585000px;}
.y11{bottom:820.005000px;}
.y10{bottom:840.705000px;}
.y54{bottom:842.505000px;}
.y38{bottom:844.305000px;}
.y83{bottom:846.825000px;}
.yf{bottom:861.450000px;}
.y37{bottom:872.250000px;}
.ye{bottom:882.150000px;}
.y82{bottom:883.050000px;}
.y36{bottom:899.970000px;}
.yd{bottom:902.850000px;}
.y81{bottom:919.230000px;}
.yc{bottom:924.450000px;}
.y35{bottom:927.690000px;}
.yb{bottom:945.510000px;}
.ya5{bottom:952.170000px;}
.y34{bottom:955.590000px;}
.ya{bottom:966.210000px;}
.ya4{bottom:972.690000px;}
.y33{bottom:983.310000px;}
.y9{bottom:986.910000px;}
.ya3{bottom:993.750000px;}
.y8{bottom:1007.610000px;}
.y32{bottom:1011.030000px;}
.ya2{bottom:1014.450000px;}
.y7{bottom:1028.310000px;}
.ya1{bottom:1035.150000px;}
.y31{bottom:1038.750000px;}
.y6{bottom:1049.010000px;}
.ya0{bottom:1055.850000px;}
.y30{bottom:1066.650000px;}
.y5{bottom:1070.250000px;}
.y9f{bottom:1076.550000px;}
.y4{bottom:1094.370000px;}
.y9e{bottom:1097.250000px;}
.y1{bottom:1194.120000px;}
.ha{height:20.736000px;}
.hd{height:50.273438px;}
.h10{height:58.651172px;}
.h8{height:58.819922px;}
.h6{height:59.343750px;}
.hc{height:62.100000px;}
.h2{height:65.884219px;}
.h5{height:70.628906px;}
.hb{height:70.664062px;}
.h12{height:71.613281px;}
.h3{height:72.562500px;}
.h11{height:74.004654px;}
.hf{height:82.635820px;}
.h7{height:82.676953px;}
.he{height:82.800000px;}
.h4{height:84.898125px;}
.h9{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:349.635000px;}
.w4{width:349.815000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.560000px;}
.x1{left:42.479987px;}
.xf{left:55.619987px;}
.xe{left:57.959987px;}
.x10{left:77.400000px;}
.xc{left:84.959987px;}
.xd{left:127.475987px;}
.xb{left:138.095987px;}
.x4{left:164.009987px;}
.x7{left:183.269987px;}
.x6{left:226.649987px;}
.x8{left:256.349987px;}
.x5{left:314.354987px;}
.x9{left:325.874987px;}
.x2{left:369.254987px;}
.x12{left:427.935000px;}
.xa{left:443.774987px;}
.x3{left:446.474987px;}
@media print{
.v2{vertical-align:-80.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.224640pt;}
.ls0{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsd{letter-spacing:13.920000pt;}
.ls11{letter-spacing:16.640000pt;}
.lsb{letter-spacing:19.040000pt;}
.ls5{letter-spacing:27.183360pt;}
.ls10{letter-spacing:30.208000pt;}
.ls7{letter-spacing:31.840000pt;}
.ls6{letter-spacing:31.946667pt;}
.ls3{letter-spacing:32.943360pt;}
.lsf{letter-spacing:575.658667pt;}
.ws4{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.944640pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:0.000000pt;}
._22{margin-left:-4.544000pt;}
._0{margin-left:-0.936960pt;}
._1{width:1.619627pt;}
._3{width:2.944000pt;}
._f{width:3.968640pt;}
._d{width:5.616000pt;}
._2e{width:7.274880pt;}
._5{width:8.832000pt;}
._8{width:9.792000pt;}
._9{width:10.752000pt;}
._16{width:12.117120pt;}
._c{width:13.056000pt;}
._4{width:13.952000pt;}
._a{width:14.976000pt;}
._32{width:16.174080pt;}
._b{width:17.152000pt;}
._7{width:18.538667pt;}
._6{width:19.498667pt;}
._15{width:20.617600pt;}
._2{width:21.760000pt;}
._10{width:22.876800pt;}
._2f{width:23.766613pt;}
._29{width:24.746880pt;}
._2a{width:26.206080pt;}
._24{width:27.264000pt;}
._25{width:28.757333pt;}
._1b{width:30.028800pt;}
._11{width:31.224960pt;}
._12{width:32.236800pt;}
._1e{width:34.220160pt;}
._1f{width:35.381760pt;}
._26{width:37.504000pt;}
._1c{width:38.638080pt;}
._1d{width:39.559467pt;}
._33{width:40.500053pt;}
._17{width:41.708160pt;}
._18{width:42.756480pt;}
._2b{width:47.473920pt;}
._2c{width:48.560640pt;}
._2d{width:50.019840pt;}
._23{width:50.944000pt;}
._20{width:52.191360pt;}
._21{width:53.380693pt;}
._19{width:55.560960pt;}
._1a{width:56.686080pt;}
._28{width:59.072000pt;}
._13{width:68.515200pt;}
._14{width:69.518293pt;}
._30{width:71.510400pt;}
._31{width:72.802560pt;}
._27{width:82.240000pt;}
._e{width:204.685440pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:3.520000pt;}
.y58{bottom:21.920000pt;}
.y3{bottom:31.872000pt;}
.y57{bottom:40.320000pt;}
.y2{bottom:49.312000pt;}
.y5a{bottom:58.720000pt;}
.y2f{bottom:80.032000pt;}
.y6d{bottom:82.112000pt;}
.y53{bottom:84.032000pt;}
.y9d{bottom:87.232000pt;}
.y80{bottom:88.352000pt;}
.y2e{bottom:104.672000pt;}
.y9c{bottom:105.632000pt;}
.y6c{bottom:106.752000pt;}
.y52{bottom:108.672000pt;}
.y7f{bottom:112.992000pt;}
.y9b{bottom:124.032000pt;}
.y2d{bottom:129.312000pt;}
.y6b{bottom:131.392000pt;}
.y51{bottom:133.312000pt;}
.y7e{bottom:137.626667pt;}
.y9a{bottom:142.426667pt;}
.y2c{bottom:153.946667pt;}
.y6a{bottom:156.186667pt;}
.y50{bottom:158.106667pt;}
.y99{bottom:160.826667pt;}
.y7d{bottom:162.426667pt;}
.y2b{bottom:178.746667pt;}
.y98{bottom:179.226667pt;}
.y69{bottom:180.826667pt;}
.y4f{bottom:182.746667pt;}
.y7c{bottom:187.066667pt;}
.y97{bottom:197.626667pt;}
.y2a{bottom:203.386667pt;}
.y68{bottom:205.466667pt;}
.y4e{bottom:207.386667pt;}
.y7b{bottom:211.706667pt;}
.y29{bottom:228.026667pt;}
.y67{bottom:230.106667pt;}
.y4d{bottom:232.186667pt;}
.y96{bottom:236.026667pt;}
.y7a{bottom:236.346667pt;}
.y28{bottom:252.866667pt;}
.y66{bottom:254.946667pt;}
.y95{bottom:255.746667pt;}
.y4c{bottom:256.866667pt;}
.y79{bottom:261.186667pt;}
.y27{bottom:277.506667pt;}
.y65{bottom:279.586667pt;}
.y94{bottom:280.386667pt;}
.y4b{bottom:281.506667pt;}
.y78{bottom:285.826667pt;}
.y26{bottom:302.146667pt;}
.y64{bottom:304.226667pt;}
.y93{bottom:305.186667pt;}
.y4a{bottom:306.146667pt;}
.y77{bottom:310.466667pt;}
.y25{bottom:326.786667pt;}
.y63{bottom:328.866667pt;}
.y92{bottom:329.826667pt;}
.y49{bottom:330.946667pt;}
.y76{bottom:335.266667pt;}
.y24{bottom:351.586667pt;}
.y62{bottom:353.666667pt;}
.y91{bottom:354.466667pt;}
.y48{bottom:355.586667pt;}
.y75{bottom:359.906667pt;}
.y23{bottom:376.226667pt;}
.y61{bottom:378.306667pt;}
.y90{bottom:379.266667pt;}
.y47{bottom:380.226667pt;}
.y74{bottom:384.546667pt;}
.y22{bottom:400.866667pt;}
.y60{bottom:402.946667pt;}
.y8f{bottom:403.906667pt;}
.y46{bottom:405.026667pt;}
.y73{bottom:409.186667pt;}
.y21{bottom:425.666667pt;}
.y5f{bottom:427.746667pt;}
.y8e{bottom:428.546667pt;}
.y45{bottom:429.666667pt;}
.y72{bottom:441.506667pt;}
.y20{bottom:450.306667pt;}
.y5e{bottom:452.386667pt;}
.y8d{bottom:453.186667pt;}
.y44{bottom:454.306667pt;}
.y1f{bottom:471.266667pt;}
.y71{bottom:473.666667pt;}
.y5d{bottom:477.026667pt;}
.y8c{bottom:477.986667pt;}
.y43{bottom:478.946667pt;}
.y1e{bottom:489.666667pt;}
.y5c{bottom:501.666667pt;}
.y8b{bottom:502.653333pt;}
.y42{bottom:503.773333pt;}
.y70{bottom:505.853333pt;}
.y1d{bottom:508.093333pt;}
.y1c{bottom:526.493333pt;}
.y8a{bottom:527.293333pt;}
.y41{bottom:528.413333pt;}
.y6f{bottom:538.013333pt;}
.y5b{bottom:544.573333pt;}
.y1b{bottom:544.893333pt;}
.y40{bottom:553.053333pt;}
.y89{bottom:559.453333pt;}
.y1a{bottom:563.293333pt;}
.y6e{bottom:570.333333pt;}
.y3f{bottom:577.693333pt;}
.y19{bottom:581.693333pt;}
.y88{bottom:591.773333pt;}
.y18{bottom:600.093333pt;}
.y3e{bottom:602.493333pt;}
.y17{bottom:618.493333pt;}
.y59{bottom:618.813333pt;}
.y87{bottom:623.933333pt;}
.y3d{bottom:627.133333pt;}
.y16{bottom:636.893333pt;}
.y3c{bottom:651.773333pt;}
.y15{bottom:655.293333pt;}
.y86{bottom:656.093333pt;}
.y14{bottom:673.693333pt;}
.y3b{bottom:676.573333pt;}
.y85{bottom:688.253333pt;}
.y13{bottom:692.093333pt;}
.y56{bottom:693.053333pt;}
.y3a{bottom:701.213333pt;}
.y12{bottom:710.493333pt;}
.y84{bottom:720.573333pt;}
.y39{bottom:725.853333pt;}
.y11{bottom:728.893333pt;}
.y10{bottom:747.293333pt;}
.y54{bottom:748.893333pt;}
.y38{bottom:750.493333pt;}
.y83{bottom:752.733333pt;}
.yf{bottom:765.733333pt;}
.y37{bottom:775.333333pt;}
.ye{bottom:784.133333pt;}
.y82{bottom:784.933333pt;}
.y36{bottom:799.973333pt;}
.yd{bottom:802.533333pt;}
.y81{bottom:817.093333pt;}
.yc{bottom:821.733333pt;}
.y35{bottom:824.613333pt;}
.yb{bottom:840.453333pt;}
.ya5{bottom:846.373333pt;}
.y34{bottom:849.413333pt;}
.ya{bottom:858.853333pt;}
.ya4{bottom:864.613333pt;}
.y33{bottom:874.053333pt;}
.y9{bottom:877.253333pt;}
.ya3{bottom:883.333333pt;}
.y8{bottom:895.653333pt;}
.y32{bottom:898.693333pt;}
.ya2{bottom:901.733333pt;}
.y7{bottom:914.053333pt;}
.ya1{bottom:920.133333pt;}
.y31{bottom:923.333333pt;}
.y6{bottom:932.453333pt;}
.ya0{bottom:938.533333pt;}
.y30{bottom:948.133333pt;}
.y5{bottom:951.333333pt;}
.y9f{bottom:956.933333pt;}
.y4{bottom:972.773333pt;}
.y9e{bottom:975.333333pt;}
.y1{bottom:1061.440000pt;}
.ha{height:18.432000pt;}
.hd{height:44.687500pt;}
.h10{height:52.134375pt;}
.h8{height:52.284375pt;}
.h6{height:52.750000pt;}
.hc{height:55.200000pt;}
.h2{height:58.563750pt;}
.h5{height:62.781250pt;}
.hb{height:62.812500pt;}
.h12{height:63.656250pt;}
.h3{height:64.500000pt;}
.h11{height:65.781915pt;}
.hf{height:73.454062pt;}
.h7{height:73.490625pt;}
.he{height:73.600000pt;}
.h4{height:75.465000pt;}
.h9{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:310.786667pt;}
.w4{width:310.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.720000pt;}
.x1{left:37.759988pt;}
.xf{left:49.439988pt;}
.xe{left:51.519988pt;}
.x10{left:68.800000pt;}
.xc{left:75.519988pt;}
.xd{left:113.311988pt;}
.xb{left:122.751988pt;}
.x4{left:145.786655pt;}
.x7{left:162.906655pt;}
.x6{left:201.466655pt;}
.x8{left:227.866655pt;}
.x5{left:279.426655pt;}
.x9{left:289.666655pt;}
.x2{left:328.226655pt;}
.x12{left:380.386667pt;}
.xa{left:394.466655pt;}
.x3{left:396.866655pt;}
}




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