
    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_5dafce05e012739cbfd8f5b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_f31c280c2cc79a4b3000f268.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_70281b5e98067ffa2c2f8673.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_439bee2a522719d489204f65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_c73e3d7e8934c424b2a14b2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_a80e59a2415fcf03917e7cf3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_4e411ef190bb6d72187711f3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v5{vertical-align:-19.800000px;}
.v2{vertical-align:-15.681600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.681600px;}
.v4{vertical-align:19.800000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.287600px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.275616px;}
.ls2{letter-spacing:0.475200px;}
.ls0{letter-spacing:1.800000px;}
.lsf{letter-spacing:2.520000px;}
.ls7{letter-spacing:2.640000px;}
.ls4{letter-spacing:5.935800px;}
.lsa{letter-spacing:6.066000px;}
.ls9{letter-spacing:7.711200px;}
.ls8{letter-spacing:13.182000px;}
.ls3{letter-spacing:17.100000px;}
.lse{letter-spacing:17.640000px;}
.lsc{letter-spacing:17.648400px;}
.ls6{letter-spacing:20.400000px;}
.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;}
}
.ws9{word-spacing:-20.400000px;}
.wsf{word-spacing:-17.640000px;}
.ws8{word-spacing:-17.100000px;}
.wsb{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.000000px;}
.wse{word-spacing:-7.412400px;}
.wsc{word-spacing:-2.640000px;}
.ws10{word-spacing:-2.520000px;}
.ws6{word-spacing:-1.800000px;}
.ws7{word-spacing:-0.475200px;}
.wsd{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:-0.041760px;}
.ws2{word-spacing:-0.027562px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:5.952000px;}
._1d{margin-left:-17.056200px;}
._15{margin-left:-15.960600px;}
._9{margin-left:-14.322000px;}
._0{margin-left:-8.020800px;}
._16{margin-left:-6.742800px;}
._5{margin-left:-5.690400px;}
._2{margin-left:-3.972600px;}
._6{margin-left:-2.854800px;}
._4{margin-left:-1.638000px;}
._3{width:1.800000px;}
._7{width:3.348000px;}
._8{width:5.254200px;}
._b{width:6.468000px;}
._c{width:8.274000px;}
._a{width:9.762000px;}
._12{width:11.412000px;}
._13{width:12.918000px;}
._1a{width:13.956000px;}
._d{width:16.032000px;}
._e{width:17.100000px;}
._f{width:18.162000px;}
._19{width:19.704000px;}
._14{width:20.916000px;}
._11{width:22.788000px;}
._10{width:24.024000px;}
._1b{width:28.620000px;}
._17{width:29.628000px;}
._18{width:31.586400px;}
._1c{width:33.666000px;}
._1{width:50.861400px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.561600px;}
.fs8{font-size:34.800000px;}
.fs1{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.802900px;}
.yc8{bottom:103.269300px;}
.ya0{bottom:105.466950px;}
.y17{bottom:106.213350px;}
.y46{bottom:108.744450px;}
.y74{bottom:109.788600px;}
.yc7{bottom:119.769300px;}
.y9f{bottom:123.466950px;}
.y16{bottom:124.213350px;}
.y45{bottom:127.044450px;}
.y73{bottom:127.788600px;}
.y44{bottom:145.344450px;}
.y9e{bottom:145.568850px;}
.y72{bottom:145.788600px;}
.yc6{bottom:150.016800px;}
.y9d{bottom:163.418850px;}
.y43{bottom:163.644450px;}
.y71{bottom:163.788600px;}
.yc5{bottom:164.416800px;}
.yc4{bottom:178.816800px;}
.y70{bottom:181.788600px;}
.y42{bottom:181.944450px;}
.y9c{bottom:185.520750px;}
.yc3{bottom:193.216800px;}
.y6f{bottom:199.788600px;}
.y9b{bottom:203.370900px;}
.y41{bottom:204.496500px;}
.yc2{bottom:207.616800px;}
.y6e{bottom:217.788600px;}
.yc1{bottom:222.016800px;}
.y40{bottom:222.796500px;}
.y9a{bottom:225.472800px;}
.y6d{bottom:235.788600px;}
.yc0{bottom:236.416800px;}
.y3f{bottom:241.096500px;}
.y99{bottom:243.322800px;}
.ybf{bottom:250.816800px;}
.y6c{bottom:253.788600px;}
.y3e{bottom:259.396500px;}
.y98{bottom:261.172800px;}
.ybe{bottom:265.216800px;}
.y6b{bottom:271.788600px;}
.y3d{bottom:277.696500px;}
.y97{bottom:283.274850px;}
.ybd{bottom:292.372800px;}
.y6a{bottom:294.040500px;}
.y3c{bottom:295.996500px;}
.y96{bottom:301.124700px;}
.y69{bottom:312.040500px;}
.ybc{bottom:314.624700px;}
.y3b{bottom:318.548400px;}
.y95{bottom:323.226750px;}
.y68{bottom:330.040500px;}
.y3a{bottom:336.848400px;}
.y94{bottom:341.076750px;}
.ybb{bottom:344.780550px;}
.y67{bottom:348.040500px;}
.y39{bottom:355.148400px;}
.y93{bottom:358.926750px;}
.yba{bottom:362.780550px;}
.y66{bottom:366.040500px;}
.y38{bottom:373.448400px;}
.yb9{bottom:380.780550px;}
.y92{bottom:381.028800px;}
.y65{bottom:384.040500px;}
.y37{bottom:391.748400px;}
.y91{bottom:398.878800px;}
.y64{bottom:402.040500px;}
.yb8{bottom:403.032600px;}
.y36{bottom:410.048400px;}
.y90{bottom:420.980700px;}
.yb7{bottom:421.032600px;}
.y63{bottom:424.292550px;}
.y35{bottom:428.348400px;}
.y12{bottom:437.893200px;}
.y8f{bottom:438.830700px;}
.yb6{bottom:439.032600px;}
.y62{bottom:442.292550px;}
.y34{bottom:450.900450px;}
.y11{bottom:455.893200px;}
.y61{bottom:460.292550px;}
.y8e{bottom:460.932750px;}
.yb5{bottom:461.284500px;}
.y33{bottom:469.200450px;}
.y10{bottom:473.893200px;}
.y60{bottom:478.292550px;}
.y8d{bottom:478.782600px;}
.yb4{bottom:479.284500px;}
.y32{bottom:487.500300px;}
.yf{bottom:491.893200px;}
.y5f{bottom:496.292550px;}
.yb3{bottom:497.284500px;}
.y31{bottom:505.800450px;}
.y8c{bottom:509.388600px;}
.ye{bottom:509.893200px;}
.yb2{bottom:515.284500px;}
.y5e{bottom:518.544450px;}
.y30{bottom:524.100450px;}
.y5d{bottom:536.544450px;}
.yb1{bottom:537.536550px;}
.y8b{bottom:539.994450px;}
.y2f{bottom:542.400450px;}
.yd{bottom:549.153000px;}
.y5c{bottom:554.544450px;}
.yb0{bottom:555.536550px;}
.y8a{bottom:557.844450px;}
.y2e{bottom:560.700450px;}
.y5b{bottom:572.544450px;}
.yaf{bottom:573.536550px;}
.y89{bottom:575.694450px;}
.y2d{bottom:579.000300px;}
.yc{bottom:582.153000px;}
.y5a{bottom:590.544450px;}
.yae{bottom:591.536550px;}
.y88{bottom:593.544450px;}
.y2c{bottom:597.300450px;}
.yb{bottom:600.903000px;}
.y59{bottom:612.796350px;}
.yad{bottom:613.788450px;}
.y2b{bottom:615.600450px;}
.y87{bottom:615.646500px;}
.ya{bottom:619.653000px;}
.y58{bottom:630.796350px;}
.yac{bottom:631.788450px;}
.y86{bottom:633.496500px;}
.y2a{bottom:633.900450px;}
.y9{bottom:638.403000px;}
.y57{bottom:648.796350px;}
.yab{bottom:649.788450px;}
.y85{bottom:651.346500px;}
.y29{bottom:652.200450px;}
.y8{bottom:657.153000px;}
.y56{bottom:666.796350px;}
.yaa{bottom:667.788450px;}
.y28{bottom:670.500300px;}
.y84{bottom:673.448400px;}
.y55{bottom:684.796350px;}
.y27{bottom:688.800450px;}
.ya9{bottom:690.040500px;}
.y83{bottom:691.298400px;}
.y54{bottom:702.796350px;}
.y26{bottom:707.100450px;}
.ya8{bottom:708.040500px;}
.y82{bottom:709.148400px;}
.y53{bottom:725.048400px;}
.y25{bottom:725.400450px;}
.y81{bottom:726.998400px;}
.y7{bottom:727.266750px;}
.ya7{bottom:730.292400px;}
.y6{bottom:742.266750px;}
.y52{bottom:743.048400px;}
.y24{bottom:743.700450px;}
.y80{bottom:744.848400px;}
.ya6{bottom:748.292400px;}
.y51{bottom:761.048400px;}
.y23{bottom:762.000300px;}
.y7f{bottom:766.950450px;}
.y5{bottom:767.462100px;}
.ya5{bottom:770.544450px;}
.y50{bottom:779.048400px;}
.y22{bottom:780.300450px;}
.y7e{bottom:784.800450px;}
.ya4{bottom:788.544450px;}
.y4{bottom:794.560500px;}
.y4f{bottom:797.048400px;}
.y21{bottom:798.600450px;}
.y7d{bottom:802.650450px;}
.ya3{bottom:806.544450px;}
.y3{bottom:813.212550px;}
.y4e{bottom:815.048400px;}
.y20{bottom:816.900450px;}
.y7c{bottom:820.500300px;}
.ya2{bottom:828.796350px;}
.y4d{bottom:833.048400px;}
.y1f{bottom:835.200300px;}
.y7b{bottom:838.350450px;}
.ya1{bottom:846.796350px;}
.y4c{bottom:851.048400px;}
.y1e{bottom:853.500300px;}
.y7a{bottom:856.200300px;}
.y2{bottom:864.212550px;}
.y4b{bottom:869.048400px;}
.y1d{bottom:871.800450px;}
.y79{bottom:874.050450px;}
.y4a{bottom:887.048400px;}
.y1c{bottom:890.100450px;}
.y78{bottom:891.900450px;}
.y49{bottom:905.048400px;}
.y1b{bottom:908.400450px;}
.y77{bottom:909.750300px;}
.y15{bottom:920.042100px;}
.y1a{bottom:926.700300px;}
.y48{bottom:927.300450px;}
.y76{bottom:927.600450px;}
.y14{bottom:942.542100px;}
.y19{bottom:945.000300px;}
.y47{bottom:945.300450px;}
.y75{bottom:945.450300px;}
.y18{bottom:963.300450px;}
.y13{bottom:963.542100px;}
.h6{height:26.014416px;}
.h5{height:33.328125px;}
.h10{height:35.411133px;}
.he{height:41.660156px;}
.h7{height:41.696016px;}
.hd{height:42.117188px;}
.hc{height:42.632812px;}
.h9{height:47.381836px;}
.h8{height:47.961914px;}
.h2{height:49.992188px;}
.ha{height:52.646484px;}
.hb{height:53.291016px;}
.h3{height:63.175781px;}
.hf{height:63.949219px;}
.h4{height:79.936523px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:68.031450px;}
.xc{left:93.543300px;}
.x2{left:102.047250px;}
.x3{left:108.749100px;}
.x9{left:127.559100px;}
.xd{left:132.113250px;}
.x7{left:141.355200px;}
.x8{left:153.070800px;}
.x5{left:158.828550px;}
.x6{left:165.108750px;}
.x4{left:279.038550px;}
.xe{left:297.618600px;}
.xf{left:304.058850px;}
.xa{left:318.076350px;}
.x1{left:645.803100px;}
@media print{
.v5{vertical-align:-17.600000pt;}
.v2{vertical-align:-13.939200pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.939200pt;}
.v4{vertical-align:17.600000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.144533pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.244992pt;}
.ls2{letter-spacing:0.422400pt;}
.ls0{letter-spacing:1.600000pt;}
.lsf{letter-spacing:2.240000pt;}
.ls7{letter-spacing:2.346667pt;}
.ls4{letter-spacing:5.276267pt;}
.lsa{letter-spacing:5.392000pt;}
.ls9{letter-spacing:6.854400pt;}
.ls8{letter-spacing:11.717333pt;}
.ls3{letter-spacing:15.200000pt;}
.lse{letter-spacing:15.680000pt;}
.lsc{letter-spacing:15.687467pt;}
.ls6{letter-spacing:18.133333pt;}
.ws9{word-spacing:-18.133333pt;}
.wsf{word-spacing:-15.680000pt;}
.ws8{word-spacing:-15.200000pt;}
.wsb{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws4{word-spacing:-10.666667pt;}
.wse{word-spacing:-6.588800pt;}
.wsc{word-spacing:-2.346667pt;}
.ws10{word-spacing:-2.240000pt;}
.ws6{word-spacing:-1.600000pt;}
.ws7{word-spacing:-0.422400pt;}
.wsd{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:-0.037120pt;}
.ws2{word-spacing:-0.024499pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:5.290667pt;}
._1d{margin-left:-15.161067pt;}
._15{margin-left:-14.187200pt;}
._9{margin-left:-12.730667pt;}
._0{margin-left:-7.129600pt;}
._16{margin-left:-5.993600pt;}
._5{margin-left:-5.058133pt;}
._2{margin-left:-3.531200pt;}
._6{margin-left:-2.537600pt;}
._4{margin-left:-1.456000pt;}
._3{width:1.600000pt;}
._7{width:2.976000pt;}
._8{width:4.670400pt;}
._b{width:5.749333pt;}
._c{width:7.354667pt;}
._a{width:8.677333pt;}
._12{width:10.144000pt;}
._13{width:11.482667pt;}
._1a{width:12.405333pt;}
._d{width:14.250667pt;}
._e{width:15.200000pt;}
._f{width:16.144000pt;}
._19{width:17.514667pt;}
._14{width:18.592000pt;}
._11{width:20.256000pt;}
._10{width:21.354667pt;}
._1b{width:25.440000pt;}
._17{width:26.336000pt;}
._18{width:28.076800pt;}
._1c{width:29.925333pt;}
._1{width:45.210133pt;}
.fs4{font-size:24.499200pt;}
.fs8{font-size:30.933333pt;}
.fs1{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.158133pt;}
.yc8{bottom:91.794933pt;}
.ya0{bottom:93.748400pt;}
.y17{bottom:94.411867pt;}
.y46{bottom:96.661733pt;}
.y74{bottom:97.589867pt;}
.yc7{bottom:106.461600pt;}
.y9f{bottom:109.748400pt;}
.y16{bottom:110.411867pt;}
.y45{bottom:112.928400pt;}
.y73{bottom:113.589867pt;}
.y44{bottom:129.195067pt;}
.y9e{bottom:129.394533pt;}
.y72{bottom:129.589867pt;}
.yc6{bottom:133.348267pt;}
.y9d{bottom:145.261200pt;}
.y43{bottom:145.461733pt;}
.y71{bottom:145.589867pt;}
.yc5{bottom:146.148267pt;}
.yc4{bottom:158.948267pt;}
.y70{bottom:161.589867pt;}
.y42{bottom:161.728400pt;}
.y9c{bottom:164.907333pt;}
.yc3{bottom:171.748267pt;}
.y6f{bottom:177.589867pt;}
.y9b{bottom:180.774133pt;}
.y41{bottom:181.774667pt;}
.yc2{bottom:184.548267pt;}
.y6e{bottom:193.589867pt;}
.yc1{bottom:197.348267pt;}
.y40{bottom:198.041333pt;}
.y9a{bottom:200.420267pt;}
.y6d{bottom:209.589867pt;}
.yc0{bottom:210.148267pt;}
.y3f{bottom:214.308000pt;}
.y99{bottom:216.286933pt;}
.ybf{bottom:222.948267pt;}
.y6c{bottom:225.589867pt;}
.y3e{bottom:230.574667pt;}
.y98{bottom:232.153600pt;}
.ybe{bottom:235.748267pt;}
.y6b{bottom:241.589867pt;}
.y3d{bottom:246.841333pt;}
.y97{bottom:251.799867pt;}
.ybd{bottom:259.886933pt;}
.y6a{bottom:261.369333pt;}
.y3c{bottom:263.108000pt;}
.y96{bottom:267.666400pt;}
.y69{bottom:277.369333pt;}
.ybc{bottom:279.666400pt;}
.y3b{bottom:283.154133pt;}
.y95{bottom:287.312667pt;}
.y68{bottom:293.369333pt;}
.y3a{bottom:299.420800pt;}
.y94{bottom:303.179333pt;}
.ybb{bottom:306.471600pt;}
.y67{bottom:309.369333pt;}
.y39{bottom:315.687467pt;}
.y93{bottom:319.046000pt;}
.yba{bottom:322.471600pt;}
.y66{bottom:325.369333pt;}
.y38{bottom:331.954133pt;}
.yb9{bottom:338.471600pt;}
.y92{bottom:338.692267pt;}
.y65{bottom:341.369333pt;}
.y37{bottom:348.220800pt;}
.y91{bottom:354.558933pt;}
.y64{bottom:357.369333pt;}
.yb8{bottom:358.251200pt;}
.y36{bottom:364.487467pt;}
.y90{bottom:374.205067pt;}
.yb7{bottom:374.251200pt;}
.y63{bottom:377.148933pt;}
.y35{bottom:380.754133pt;}
.y12{bottom:389.238400pt;}
.y8f{bottom:390.071733pt;}
.yb6{bottom:390.251200pt;}
.y62{bottom:393.148933pt;}
.y34{bottom:400.800400pt;}
.y11{bottom:405.238400pt;}
.y61{bottom:409.148933pt;}
.y8e{bottom:409.718000pt;}
.yb5{bottom:410.030667pt;}
.y33{bottom:417.067067pt;}
.y10{bottom:421.238400pt;}
.y60{bottom:425.148933pt;}
.y8d{bottom:425.584533pt;}
.yb4{bottom:426.030667pt;}
.y32{bottom:433.333600pt;}
.yf{bottom:437.238400pt;}
.y5f{bottom:441.148933pt;}
.yb3{bottom:442.030667pt;}
.y31{bottom:449.600400pt;}
.y8c{bottom:452.789867pt;}
.ye{bottom:453.238400pt;}
.yb2{bottom:458.030667pt;}
.y5e{bottom:460.928400pt;}
.y30{bottom:465.867067pt;}
.y5d{bottom:476.928400pt;}
.yb1{bottom:477.810267pt;}
.y8b{bottom:479.995067pt;}
.y2f{bottom:482.133733pt;}
.yd{bottom:488.136000pt;}
.y5c{bottom:492.928400pt;}
.yb0{bottom:493.810267pt;}
.y8a{bottom:495.861733pt;}
.y2e{bottom:498.400400pt;}
.y5b{bottom:508.928400pt;}
.yaf{bottom:509.810267pt;}
.y89{bottom:511.728400pt;}
.y2d{bottom:514.666933pt;}
.yc{bottom:517.469333pt;}
.y5a{bottom:524.928400pt;}
.yae{bottom:525.810267pt;}
.y88{bottom:527.595067pt;}
.y2c{bottom:530.933733pt;}
.yb{bottom:534.136000pt;}
.y59{bottom:544.707867pt;}
.yad{bottom:545.589733pt;}
.y2b{bottom:547.200400pt;}
.y87{bottom:547.241333pt;}
.ya{bottom:550.802667pt;}
.y58{bottom:560.707867pt;}
.yac{bottom:561.589733pt;}
.y86{bottom:563.108000pt;}
.y2a{bottom:563.467067pt;}
.y9{bottom:567.469333pt;}
.y57{bottom:576.707867pt;}
.yab{bottom:577.589733pt;}
.y85{bottom:578.974667pt;}
.y29{bottom:579.733733pt;}
.y8{bottom:584.136000pt;}
.y56{bottom:592.707867pt;}
.yaa{bottom:593.589733pt;}
.y28{bottom:596.000267pt;}
.y84{bottom:598.620800pt;}
.y55{bottom:608.707867pt;}
.y27{bottom:612.267067pt;}
.ya9{bottom:613.369333pt;}
.y83{bottom:614.487467pt;}
.y54{bottom:624.707867pt;}
.y26{bottom:628.533733pt;}
.ya8{bottom:629.369333pt;}
.y82{bottom:630.354133pt;}
.y53{bottom:644.487467pt;}
.y25{bottom:644.800400pt;}
.y81{bottom:646.220800pt;}
.y7{bottom:646.459333pt;}
.ya7{bottom:649.148800pt;}
.y6{bottom:659.792667pt;}
.y52{bottom:660.487467pt;}
.y24{bottom:661.067067pt;}
.y80{bottom:662.087467pt;}
.ya6{bottom:665.148800pt;}
.y51{bottom:676.487467pt;}
.y23{bottom:677.333600pt;}
.y7f{bottom:681.733733pt;}
.y5{bottom:682.188533pt;}
.ya5{bottom:684.928400pt;}
.y50{bottom:692.487467pt;}
.y22{bottom:693.600400pt;}
.y7e{bottom:697.600400pt;}
.ya4{bottom:700.928400pt;}
.y4{bottom:706.276000pt;}
.y4f{bottom:708.487467pt;}
.y21{bottom:709.867067pt;}
.y7d{bottom:713.467067pt;}
.ya3{bottom:716.928400pt;}
.y3{bottom:722.855600pt;}
.y4e{bottom:724.487467pt;}
.y20{bottom:726.133733pt;}
.y7c{bottom:729.333600pt;}
.ya2{bottom:736.707867pt;}
.y4d{bottom:740.487467pt;}
.y1f{bottom:742.400267pt;}
.y7b{bottom:745.200400pt;}
.ya1{bottom:752.707867pt;}
.y4c{bottom:756.487467pt;}
.y1e{bottom:758.666933pt;}
.y7a{bottom:761.066933pt;}
.y2{bottom:768.188933pt;}
.y4b{bottom:772.487467pt;}
.y1d{bottom:774.933733pt;}
.y79{bottom:776.933733pt;}
.y4a{bottom:788.487467pt;}
.y1c{bottom:791.200400pt;}
.y78{bottom:792.800400pt;}
.y49{bottom:804.487467pt;}
.y1b{bottom:807.467067pt;}
.y77{bottom:808.666933pt;}
.y15{bottom:817.815200pt;}
.y1a{bottom:823.733600pt;}
.y48{bottom:824.267067pt;}
.y76{bottom:824.533733pt;}
.y14{bottom:837.815200pt;}
.y19{bottom:840.000267pt;}
.y47{bottom:840.267067pt;}
.y75{bottom:840.400267pt;}
.y18{bottom:856.267067pt;}
.y13{bottom:856.481867pt;}
.h6{height:23.123925pt;}
.h5{height:29.625000pt;}
.h10{height:31.476562pt;}
.he{height:37.031250pt;}
.h7{height:37.063125pt;}
.hd{height:37.437500pt;}
.hc{height:37.895833pt;}
.h9{height:42.117188pt;}
.h8{height:42.632812pt;}
.h2{height:44.437500pt;}
.ha{height:46.796875pt;}
.hb{height:47.369792pt;}
.h3{height:56.156250pt;}
.hf{height:56.843750pt;}
.h4{height:71.054688pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:60.472400pt;}
.xc{left:83.149600pt;}
.x2{left:90.708667pt;}
.x3{left:96.665867pt;}
.x9{left:113.385867pt;}
.xd{left:117.434000pt;}
.x7{left:125.649067pt;}
.x8{left:136.062933pt;}
.x5{left:141.180933pt;}
.x6{left:146.763333pt;}
.x4{left:248.034267pt;}
.xe{left:264.549867pt;}
.xf{left:270.274533pt;}
.xa{left:282.734533pt;}
.x1{left:574.047200pt;}
}




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