
    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_861f96c49bec689578496653.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d7e2df740eddb95c87a4d68d.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_defb2340d3909baf69977a8b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4fbef954fa0d1e1a1bc2a08b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e1addcb8259ce852f528a885.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_9d08d7f53e617cfbcb792797.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_8f861237a8a98f7e8249865b.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.200000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.030000px;}
.ls3{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.384000px;}
.ls6{letter-spacing:0.492000px;}
.ls1{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.600000px;}
.lsb{letter-spacing:105.984000px;}
.ls8{letter-spacing:141.984000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.000000px;}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-6.780000px;}
._4{margin-left:-5.580000px;}
._3{margin-left:-3.720000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._f{width:3.090000px;}
._8{width:5.070000px;}
._10{width:6.264000px;}
._a{width:7.308000px;}
._9{width:8.616000px;}
._13{width:9.840000px;}
._d{width:10.944000px;}
._e{width:12.708000px;}
._c{width:13.788000px;}
._11{width:15.216000px;}
._b{width:16.416000px;}
._12{width:19.368000px;}
._5{width:20.376000px;}
._6{width:22.110000px;}
._17{width:23.454000px;}
._18{width:24.696000px;}
._19{width:27.132000px;}
._1a{width:28.332000px;}
._15{width:29.616000px;}
._16{width:32.070000px;}
._14{width:34.620000px;}
._1f{width:40.428000px;}
._23{width:41.538000px;}
._1e{width:42.552000px;}
._20{width:56.556000px;}
._21{width:66.672000px;}
._22{width:67.998000px;}
._1d{width:101.376000px;}
._1c{width:104.976000px;}
._1b{width:135.000000px;}
.fc5{color:rgb(31,55,99);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:6.900000px;}
.ya7{bottom:6.915000px;}
.y9d{bottom:7.200000px;}
.ya0{bottom:7.215000px;}
.ya1{bottom:18.900000px;}
.ya8{bottom:18.915000px;}
.y9c{bottom:30.900000px;}
.ya6{bottom:30.915000px;}
.y9f{bottom:30.945000px;}
.y6{bottom:69.337500px;}
.y58{bottom:93.937500px;}
.yb2{bottom:102.337500px;}
.y57{bottom:117.937500px;}
.yc6{bottom:121.237500px;}
.yb1{bottom:126.037500px;}
.y2f{bottom:129.037500px;}
.y98{bottom:134.137500px;}
.y71{bottom:138.637500px;}
.y56{bottom:141.637500px;}
.yc5{bottom:145.237500px;}
.yb0{bottom:151.530000px;}
.y2e{bottom:153.045000px;}
.y97{bottom:158.130000px;}
.y70{bottom:162.345000px;}
.y55{bottom:165.330000px;}
.yc4{bottom:168.975000px;}
.y2d{bottom:176.775000px;}
.yaf{bottom:178.875000px;}
.y96{bottom:181.875000px;}
.y6f{bottom:186.375000px;}
.y54{bottom:189.375000px;}
.yc3{bottom:192.675000px;}
.y2c{bottom:200.475000px;}
.yae{bottom:204.675000px;}
.y95{bottom:207.375000px;}
.y6e{bottom:210.075000px;}
.y53{bottom:213.075000px;}
.yc2{bottom:216.675000px;}
.y2b{bottom:224.475000px;}
.yad{bottom:228.375000px;}
.y94{bottom:233.175000px;}
.y6d{bottom:233.775000px;}
.y52{bottom:236.775000px;}
.yc1{bottom:240.375000px;}
.y2a{bottom:248.175000px;}
.yac{bottom:252.075000px;}
.y93{bottom:256.875000px;}
.y6c{bottom:257.775000px;}
.y51{bottom:260.775000px;}
.yc0{bottom:264.375000px;}
.y29{bottom:271.875000px;}
.yab{bottom:276.075000px;}
.y92{bottom:280.575000px;}
.y6b{bottom:281.475000px;}
.y50{bottom:284.475000px;}
.ybf{bottom:288.075000px;}
.y28{bottom:295.875000px;}
.yaa{bottom:299.775000px;}
.y91{bottom:304.575000px;}
.y6a{bottom:305.475000px;}
.y4f{bottom:308.175000px;}
.ybe{bottom:311.775000px;}
.y27{bottom:319.575000px;}
.ya9{bottom:323.475000px;}
.y90{bottom:328.275000px;}
.y69{bottom:330.375000px;}
.y4e{bottom:332.175000px;}
.ybd{bottom:335.775000px;}
.ya5{bottom:341.205000px;}
.y26{bottom:343.320000px;}
.y8f{bottom:352.005000px;}
.y68{bottom:354.405000px;}
.y4d{bottom:355.920000px;}
.ybc{bottom:359.505000px;}
.y25{bottom:367.320000px;}
.y8e{bottom:376.005000px;}
.y67{bottom:378.105000px;}
.y4c{bottom:379.620000px;}
.ybb{bottom:383.205000px;}
.ya4{bottom:389.505000px;}
.y24{bottom:391.005000px;}
.y8d{bottom:400.905000px;}
.y66{bottom:402.120000px;}
.y4b{bottom:403.605000px;}
.yba{bottom:407.205000px;}
.y23{bottom:415.005000px;}
.y8c{bottom:424.905000px;}
.y65{bottom:425.820000px;}
.y4a{bottom:427.320000px;}
.yb9{bottom:430.920000px;}
.ya2{bottom:438.105000px;}
.y22{bottom:440.505000px;}
.y8b{bottom:448.905000px;}
.y64{bottom:449.505000px;}
.y49{bottom:451.005000px;}
.yb8{bottom:454.620000px;}
.y21{bottom:466.005000px;}
.y8a{bottom:472.605000px;}
.y63{bottom:473.505000px;}
.y48{bottom:475.005000px;}
.yb7{bottom:478.620000px;}
.y9e{bottom:486.405000px;}
.y20{bottom:489.705000px;}
.y89{bottom:496.320000px;}
.y62{bottom:497.205000px;}
.y47{bottom:498.705000px;}
.yb6{bottom:502.305000px;}
.y1f{bottom:513.750000px;}
.y88{bottom:520.350000px;}
.y61{bottom:522.150000px;}
.y46{bottom:522.450000px;}
.yb4{bottom:524.250000px;}
.yb5{bottom:526.050000px;}
.y9b{bottom:534.750000px;}
.y1e{bottom:537.450000px;}
.y87{bottom:545.250000px;}
.y45{bottom:546.450000px;}
.y60{bottom:548.250000px;}
.yb3{bottom:550.050000px;}
.y1d{bottom:561.150000px;}
.y86{bottom:569.250000px;}
.y44{bottom:570.150000px;}
.y5f{bottom:573.750000px;}
.y1c{bottom:585.150000px;}
.y9a{bottom:591.450000px;}
.y85{bottom:593.250000px;}
.y43{bottom:593.850000px;}
.y5e{bottom:597.450000px;}
.y1b{bottom:608.850000px;}
.y99{bottom:616.650000px;}
.y84{bottom:616.950000px;}
.y42{bottom:617.850000px;}
.y5d{bottom:621.450000px;}
.y1a{bottom:632.850000px;}
.y83{bottom:640.650000px;}
.y41{bottom:641.550000px;}
.y5c{bottom:645.150000px;}
.y19{bottom:656.550000px;}
.y82{bottom:664.650000px;}
.y40{bottom:665.250000px;}
.y5b{bottom:668.850000px;}
.y18{bottom:680.280000px;}
.y81{bottom:688.380000px;}
.y3f{bottom:689.280000px;}
.y5a{bottom:692.880000px;}
.y17{bottom:704.280000px;}
.y80{bottom:713.280000px;}
.y3e{bottom:714.780000px;}
.y59{bottom:716.580000px;}
.y16{bottom:727.980000px;}
.y7f{bottom:737.595000px;}
.y3d{bottom:740.280000px;}
.y15{bottom:751.680000px;}
.y7e{bottom:761.280000px;}
.y3c{bottom:764.280000px;}
.y14{bottom:775.695000px;}
.y7d{bottom:784.980000px;}
.y3b{bottom:787.995000px;}
.y13{bottom:799.380000px;}
.y7c{bottom:808.980000px;}
.y3a{bottom:811.695000px;}
.y12{bottom:823.080000px;}
.y7b{bottom:832.695000px;}
.y39{bottom:835.695000px;}
.y11{bottom:847.125000px;}
.y7a{bottom:856.425000px;}
.y38{bottom:859.425000px;}
.y10{bottom:870.825000px;}
.y79{bottom:881.625000px;}
.y37{bottom:883.125000px;}
.yf{bottom:894.525000px;}
.y78{bottom:905.625000px;}
.y36{bottom:907.125000px;}
.ye{bottom:918.525000px;}
.y77{bottom:929.325000px;}
.y35{bottom:930.825000px;}
.yd{bottom:942.225000px;}
.y76{bottom:953.325000px;}
.y34{bottom:954.525000px;}
.yc{bottom:965.925000px;}
.y75{bottom:977.025000px;}
.y33{bottom:978.525000px;}
.yb{bottom:989.925000px;}
.y74{bottom:1000.725000px;}
.y32{bottom:1002.225000px;}
.ya{bottom:1013.625000px;}
.y73{bottom:1024.755000px;}
.y31{bottom:1025.955000px;}
.y9{bottom:1037.355000px;}
.y72{bottom:1049.670000px;}
.y30{bottom:1049.955000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h2{height:42.333984px;}
.hc{height:47.700000px;}
.hd{height:47.737500px;}
.h6{height:50.800781px;}
.h3{height:60.468750px;}
.h9{height:64.546875px;}
.hb{height:68.554688px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.he{height:74.004654px;}
.ha{height:74.267578px;}
.h5{height:82.441406px;}
.h4{height:84.656250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:116.437500px;}
.w6{width:116.737500px;}
.w3{width:147.937500px;}
.w5{width:148.537500px;}
.w7{width:159.375000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.500000px;}
.x3{left:84.937487px;}
.x7{left:94.837487px;}
.x6{left:122.437487px;}
.x9{left:201.674987px;}
.xe{left:234.075000px;}
.xa{left:307.019987px;}
.x8{left:327.404987px;}
.x4{left:350.819987px;}
.x11{left:385.904987px;}
.xb{left:412.904987px;}
.x5{left:430.649987px;}
.x2{left:457.049987px;}
.xf{left:499.650000px;}
.x1{left:510.449987px;}
.x10{left:616.695000px;}
.xc{left:752.024987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.026667pt;}
.ls3{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.341333pt;}
.ls6{letter-spacing:0.437333pt;}
.ls1{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.533333pt;}
.lsb{letter-spacing:94.208000pt;}
.ls8{letter-spacing:126.208000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-6.026667pt;}
._4{margin-left:-4.960000pt;}
._3{margin-left:-3.306667pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._f{width:2.746667pt;}
._8{width:4.506667pt;}
._10{width:5.568000pt;}
._a{width:6.496000pt;}
._9{width:7.658667pt;}
._13{width:8.746667pt;}
._d{width:9.728000pt;}
._e{width:11.296000pt;}
._c{width:12.256000pt;}
._11{width:13.525333pt;}
._b{width:14.592000pt;}
._12{width:17.216000pt;}
._5{width:18.112000pt;}
._6{width:19.653333pt;}
._17{width:20.848000pt;}
._18{width:21.952000pt;}
._19{width:24.117333pt;}
._1a{width:25.184000pt;}
._15{width:26.325333pt;}
._16{width:28.506667pt;}
._14{width:30.773333pt;}
._1f{width:35.936000pt;}
._23{width:36.922667pt;}
._1e{width:37.824000pt;}
._20{width:50.272000pt;}
._21{width:59.264000pt;}
._22{width:60.442667pt;}
._1d{width:90.112000pt;}
._1c{width:93.312000pt;}
._1b{width:120.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:6.133333pt;}
.ya7{bottom:6.146667pt;}
.y9d{bottom:6.400000pt;}
.ya0{bottom:6.413333pt;}
.ya1{bottom:16.800000pt;}
.ya8{bottom:16.813333pt;}
.y9c{bottom:27.466667pt;}
.ya6{bottom:27.480000pt;}
.y9f{bottom:27.506667pt;}
.y6{bottom:61.633333pt;}
.y58{bottom:83.500000pt;}
.yb2{bottom:90.966667pt;}
.y57{bottom:104.833333pt;}
.yc6{bottom:107.766667pt;}
.yb1{bottom:112.033333pt;}
.y2f{bottom:114.700000pt;}
.y98{bottom:119.233333pt;}
.y71{bottom:123.233333pt;}
.y56{bottom:125.900000pt;}
.yc5{bottom:129.100000pt;}
.yb0{bottom:134.693333pt;}
.y2e{bottom:136.040000pt;}
.y97{bottom:140.560000pt;}
.y70{bottom:144.306667pt;}
.y55{bottom:146.960000pt;}
.yc4{bottom:150.200000pt;}
.y2d{bottom:157.133333pt;}
.yaf{bottom:159.000000pt;}
.y96{bottom:161.666667pt;}
.y6f{bottom:165.666667pt;}
.y54{bottom:168.333333pt;}
.yc3{bottom:171.266667pt;}
.y2c{bottom:178.200000pt;}
.yae{bottom:181.933333pt;}
.y95{bottom:184.333333pt;}
.y6e{bottom:186.733333pt;}
.y53{bottom:189.400000pt;}
.yc2{bottom:192.600000pt;}
.y2b{bottom:199.533333pt;}
.yad{bottom:203.000000pt;}
.y94{bottom:207.266667pt;}
.y6d{bottom:207.800000pt;}
.y52{bottom:210.466667pt;}
.yc1{bottom:213.666667pt;}
.y2a{bottom:220.600000pt;}
.yac{bottom:224.066667pt;}
.y93{bottom:228.333333pt;}
.y6c{bottom:229.133333pt;}
.y51{bottom:231.800000pt;}
.yc0{bottom:235.000000pt;}
.y29{bottom:241.666667pt;}
.yab{bottom:245.400000pt;}
.y92{bottom:249.400000pt;}
.y6b{bottom:250.200000pt;}
.y50{bottom:252.866667pt;}
.ybf{bottom:256.066667pt;}
.y28{bottom:263.000000pt;}
.yaa{bottom:266.466667pt;}
.y91{bottom:270.733333pt;}
.y6a{bottom:271.533333pt;}
.y4f{bottom:273.933333pt;}
.ybe{bottom:277.133333pt;}
.y27{bottom:284.066667pt;}
.ya9{bottom:287.533333pt;}
.y90{bottom:291.800000pt;}
.y69{bottom:293.666667pt;}
.y4e{bottom:295.266667pt;}
.ybd{bottom:298.466667pt;}
.ya5{bottom:303.293333pt;}
.y26{bottom:305.173333pt;}
.y8f{bottom:312.893333pt;}
.y68{bottom:315.026667pt;}
.y4d{bottom:316.373333pt;}
.ybc{bottom:319.560000pt;}
.y25{bottom:326.506667pt;}
.y8e{bottom:334.226667pt;}
.y67{bottom:336.093333pt;}
.y4c{bottom:337.440000pt;}
.ybb{bottom:340.626667pt;}
.ya4{bottom:346.226667pt;}
.y24{bottom:347.560000pt;}
.y8d{bottom:356.360000pt;}
.y66{bottom:357.440000pt;}
.y4b{bottom:358.760000pt;}
.yba{bottom:361.960000pt;}
.y23{bottom:368.893333pt;}
.y8c{bottom:377.693333pt;}
.y65{bottom:378.506667pt;}
.y4a{bottom:379.840000pt;}
.yb9{bottom:383.040000pt;}
.ya2{bottom:389.426667pt;}
.y22{bottom:391.560000pt;}
.y8b{bottom:399.026667pt;}
.y64{bottom:399.560000pt;}
.y49{bottom:400.893333pt;}
.yb8{bottom:404.106667pt;}
.y21{bottom:414.226667pt;}
.y8a{bottom:420.093333pt;}
.y63{bottom:420.893333pt;}
.y48{bottom:422.226667pt;}
.yb7{bottom:425.440000pt;}
.y9e{bottom:432.360000pt;}
.y20{bottom:435.293333pt;}
.y89{bottom:441.173333pt;}
.y62{bottom:441.960000pt;}
.y47{bottom:443.293333pt;}
.yb6{bottom:446.493333pt;}
.y1f{bottom:456.666667pt;}
.y88{bottom:462.533333pt;}
.y61{bottom:464.133333pt;}
.y46{bottom:464.400000pt;}
.yb4{bottom:466.000000pt;}
.yb5{bottom:467.600000pt;}
.y9b{bottom:475.333333pt;}
.y1e{bottom:477.733333pt;}
.y87{bottom:484.666667pt;}
.y45{bottom:485.733333pt;}
.y60{bottom:487.333333pt;}
.yb3{bottom:488.933333pt;}
.y1d{bottom:498.800000pt;}
.y86{bottom:506.000000pt;}
.y44{bottom:506.800000pt;}
.y5f{bottom:510.000000pt;}
.y1c{bottom:520.133333pt;}
.y9a{bottom:525.733333pt;}
.y85{bottom:527.333333pt;}
.y43{bottom:527.866667pt;}
.y5e{bottom:531.066667pt;}
.y1b{bottom:541.200000pt;}
.y99{bottom:548.133333pt;}
.y84{bottom:548.400000pt;}
.y42{bottom:549.200000pt;}
.y5d{bottom:552.400000pt;}
.y1a{bottom:562.533333pt;}
.y83{bottom:569.466667pt;}
.y41{bottom:570.266667pt;}
.y5c{bottom:573.466667pt;}
.y19{bottom:583.600000pt;}
.y82{bottom:590.800000pt;}
.y40{bottom:591.333333pt;}
.y5b{bottom:594.533333pt;}
.y18{bottom:604.693333pt;}
.y81{bottom:611.893333pt;}
.y3f{bottom:612.693333pt;}
.y5a{bottom:615.893333pt;}
.y17{bottom:626.026667pt;}
.y80{bottom:634.026667pt;}
.y3e{bottom:635.360000pt;}
.y59{bottom:636.960000pt;}
.y16{bottom:647.093333pt;}
.y7f{bottom:655.640000pt;}
.y3d{bottom:658.026667pt;}
.y15{bottom:668.160000pt;}
.y7e{bottom:676.693333pt;}
.y3c{bottom:679.360000pt;}
.y14{bottom:689.506667pt;}
.y7d{bottom:697.760000pt;}
.y3b{bottom:700.440000pt;}
.y13{bottom:710.560000pt;}
.y7c{bottom:719.093333pt;}
.y3a{bottom:721.506667pt;}
.y12{bottom:731.626667pt;}
.y7b{bottom:740.173333pt;}
.y39{bottom:742.840000pt;}
.y11{bottom:753.000000pt;}
.y7a{bottom:761.266667pt;}
.y38{bottom:763.933333pt;}
.y10{bottom:774.066667pt;}
.y79{bottom:783.666667pt;}
.y37{bottom:785.000000pt;}
.yf{bottom:795.133333pt;}
.y78{bottom:805.000000pt;}
.y36{bottom:806.333333pt;}
.ye{bottom:816.466667pt;}
.y77{bottom:826.066667pt;}
.y35{bottom:827.400000pt;}
.yd{bottom:837.533333pt;}
.y76{bottom:847.400000pt;}
.y34{bottom:848.466667pt;}
.yc{bottom:858.600000pt;}
.y75{bottom:868.466667pt;}
.y33{bottom:869.800000pt;}
.yb{bottom:879.933333pt;}
.y74{bottom:889.533333pt;}
.y32{bottom:890.866667pt;}
.ya{bottom:901.000000pt;}
.y73{bottom:910.893333pt;}
.y31{bottom:911.960000pt;}
.y9{bottom:922.093333pt;}
.y72{bottom:933.040000pt;}
.y30{bottom:933.293333pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h2{height:37.630208pt;}
.hc{height:42.400000pt;}
.hd{height:42.433333pt;}
.h6{height:45.156250pt;}
.h3{height:53.750000pt;}
.h9{height:57.375000pt;}
.hb{height:60.937500pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.he{height:65.781915pt;}
.ha{height:66.015625pt;}
.h5{height:73.281250pt;}
.h4{height:75.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:103.500000pt;}
.w6{width:103.766667pt;}
.w3{width:131.500000pt;}
.w5{width:132.033333pt;}
.w7{width:141.666667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.666667pt;}
.x3{left:75.499988pt;}
.x7{left:84.299988pt;}
.x6{left:108.833322pt;}
.x9{left:179.266655pt;}
.xe{left:208.066667pt;}
.xa{left:272.906655pt;}
.x8{left:291.026655pt;}
.x4{left:311.839988pt;}
.x11{left:343.026655pt;}
.xb{left:367.026655pt;}
.x5{left:382.799988pt;}
.x2{left:406.266655pt;}
.xf{left:444.133333pt;}
.x1{left:453.733322pt;}
.x10{left:548.173333pt;}
.xc{left:668.466655pt;}
}




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