
    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_be57c4617f43dc2d22854c1a.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_ca1336e560ad0d44ac868b7d.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_48ed3f1c75dcbd0fc0e1b7b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_7c3d523693f9efa00c3c78d8.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_548ce37043f79467714b1bcf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_97b0a9e2b0876c8b1e5dac37.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982422;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_01ce8cbd34e42b9a86a59126.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01670c3b39d519a4b59a5770.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_862008350672572588dbc0c3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_85414e13e0ffa8dab8c81b9e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;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);}
.v1{vertical-align:-6.000000px;}
.v2{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.816000px;}
.ls11{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.408000px;}
.ls14{letter-spacing:-0.384000px;}
.ls6{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.384000px;}
.ls3{letter-spacing:0.408000px;}
.ls10{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.624000px;}
.lsc{letter-spacing:0.924000px;}
.lse{letter-spacing:54.384000px;}
.ls16{letter-spacing:105.984000px;}
.ls13{letter-spacing:141.984000px;}
.lsf{letter-spacing:158.784000px;}
.ls12{letter-spacing:171.720000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(31,31,31),0 0.015em rgb(31,31,31),0.015em 0 rgb(31,31,31),0 -0.015em  rgb(31,31,31);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(31,31,31);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-72.000000px;}
.ws10{word-spacing:-60.000000px;}
.ws1{word-spacing:-21.000000px;}
.wsd{word-spacing:-18.432000px;}
.ws6{word-spacing:-18.408000px;}
.ws8{word-spacing:-18.384000px;}
.wsa{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.976000px;}
.ws11{word-spacing:-17.616000px;}
.wsb{word-spacing:-17.592000px;}
.wse{word-spacing:-17.568000px;}
.ws7{word-spacing:-17.184000px;}
.ws9{word-spacing:-16.800000px;}
.ws3{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.000000px;}
.ws5{word-spacing:-12.000000px;}
.wsc{word-spacing:0.000000px;}
._5{margin-left:-7.560000px;}
._4{margin-left:-5.640000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._3{width:2.442000px;}
._9{width:4.068000px;}
._8{width:5.844000px;}
._6{width:7.194000px;}
._7{width:8.886000px;}
.fc4{color:rgb(47,84,150);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(31,31,31);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:6.900000px;}
.y49{bottom:6.915000px;}
.y4f{bottom:7.185000px;}
.y46{bottom:8.715000px;}
.y4d{bottom:9.000000px;}
.y43{bottom:17.100000px;}
.y3c{bottom:18.900000px;}
.y47{bottom:20.715000px;}
.y4b{bottom:21.000000px;}
.y3f{bottom:30.000000px;}
.y41{bottom:30.600000px;}
.y3a{bottom:30.630000px;}
.y48{bottom:31.845000px;}
.y4e{bottom:32.085000px;}
.y4c{bottom:32.685000px;}
.y45{bottom:32.745000px;}
.y42{bottom:41.700000px;}
.y3e{bottom:42.600000px;}
.y40{bottom:54.600000px;}
.y6{bottom:69.337500px;}
.y31{bottom:96.037500px;}
.y5b{bottom:113.137500px;}
.y30{bottom:120.037500px;}
.y5a{bottom:136.837500px;}
.y2f{bottom:143.737500px;}
.y59{bottom:160.530000px;}
.y7d{bottom:163.245000px;}
.y2e{bottom:167.430000px;}
.y58{bottom:185.775000px;}
.y7c{bottom:187.275000px;}
.y2d{bottom:191.475000px;}
.y57{bottom:209.475000px;}
.y7b{bottom:210.975000px;}
.y2c{bottom:215.175000px;}
.y56{bottom:234.375000px;}
.y7a{bottom:234.675000px;}
.ya1{bottom:236.475000px;}
.y2b{bottom:239.175000px;}
.y79{bottom:258.675000px;}
.y55{bottom:259.875000px;}
.ya0{bottom:260.475000px;}
.y2a{bottom:262.875000px;}
.y78{bottom:282.375000px;}
.y54{bottom:283.575000px;}
.y9f{bottom:284.175000px;}
.y29{bottom:286.875000px;}
.y77{bottom:306.075000px;}
.y53{bottom:307.275000px;}
.y9e{bottom:307.875000px;}
.y28{bottom:310.875000px;}
.y76{bottom:329.775000px;}
.y52{bottom:331.275000px;}
.y9d{bottom:331.875000px;}
.y27{bottom:334.575000px;}
.y51{bottom:355.005000px;}
.y9c{bottom:355.620000px;}
.y26{bottom:358.620000px;}
.y50{bottom:378.720000px;}
.y9b{bottom:379.320000px;}
.y25{bottom:382.320000px;}
.y9a{bottom:403.320000px;}
.y75{bottom:403.920000px;}
.y24{bottom:406.005000px;}
.y4a{bottom:407.820000px;}
.y99{bottom:427.005000px;}
.y74{bottom:427.905000px;}
.y23{bottom:430.005000px;}
.y98{bottom:450.705000px;}
.y73{bottom:451.620000px;}
.y22{bottom:453.705000px;}
.y97{bottom:474.705000px;}
.y72{bottom:475.320000px;}
.y21{bottom:477.405000px;}
.y44{bottom:481.905000px;}
.y96{bottom:498.405000px;}
.y71{bottom:499.320000px;}
.y20{bottom:501.405000px;}
.y95{bottom:522.150000px;}
.y70{bottom:523.050000px;}
.y1f{bottom:525.150000px;}
.y94{bottom:546.150000px;}
.y6f{bottom:546.750000px;}
.y1e{bottom:549.150000px;}
.y3d{bottom:555.750000px;}
.y93{bottom:569.850000px;}
.y6e{bottom:570.750000px;}
.y1d{bottom:572.850000px;}
.y92{bottom:593.550000px;}
.y6d{bottom:594.450000px;}
.y1c{bottom:596.850000px;}
.y91{bottom:617.550000px;}
.y6c{bottom:618.150000px;}
.y1b{bottom:620.850000px;}
.y90{bottom:641.250000px;}
.y6b{bottom:642.150000px;}
.y1a{bottom:644.550000px;}
.y39{bottom:649.650000px;}
.y8f{bottom:664.950000px;}
.y6a{bottom:665.850000px;}
.y19{bottom:668.550000px;}
.y8e{bottom:688.980000px;}
.y69{bottom:689.880000px;}
.y18{bottom:692.280000px;}
.y8d{bottom:712.695000px;}
.y68{bottom:713.595000px;}
.y17{bottom:715.980000px;}
.y38{bottom:716.580000px;}
.y8c{bottom:736.380000px;}
.y67{bottom:737.280000px;}
.y16{bottom:739.980000px;}
.y37{bottom:740.280000px;}
.y8b{bottom:760.380000px;}
.y66{bottom:761.280000px;}
.y15{bottom:763.680000px;}
.y36{bottom:764.280000px;}
.y8a{bottom:784.080000px;}
.y65{bottom:784.980000px;}
.y14{bottom:787.695000px;}
.y35{bottom:787.995000px;}
.y89{bottom:807.780000px;}
.y64{bottom:808.695000px;}
.y13{bottom:811.380000px;}
.y34{bottom:811.695000px;}
.y88{bottom:831.795000px;}
.y63{bottom:832.695000px;}
.y12{bottom:835.080000px;}
.y33{bottom:835.695000px;}
.y87{bottom:855.525000px;}
.y62{bottom:856.425000px;}
.y11{bottom:859.125000px;}
.y32{bottom:859.425000px;}
.y86{bottom:879.525000px;}
.y61{bottom:880.125000px;}
.y10{bottom:883.125000px;}
.y85{bottom:903.225000px;}
.y60{bottom:904.125000px;}
.yf{bottom:907.125000px;}
.y84{bottom:926.925000px;}
.y5f{bottom:927.525000px;}
.ye{bottom:930.825000px;}
.y83{bottom:952.125000px;}
.y5e{bottom:952.725000px;}
.yd{bottom:954.525000px;}
.y82{bottom:975.825000px;}
.y5d{bottom:977.925000px;}
.yc{bottom:978.525000px;}
.y81{bottom:999.525000px;}
.y5c{bottom:1001.925000px;}
.yb{bottom:1002.225000px;}
.y80{bottom:1024.755000px;}
.ya{bottom:1025.955000px;}
.y7f{bottom:1048.755000px;}
.y9{bottom:1049.955000px;}
.y7e{bottom:1072.155000px;}
.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;}
.h9{height:47.437500px;}
.ha{height:50.800781px;}
.hd{height:51.337500px;}
.he{height:51.600000px;}
.h8{height:51.679688px;}
.h11{height:54.773438px;}
.h3{height:60.468750px;}
.hc{height:60.644531px;}
.h10{height:60.679688px;}
.h7{height:70.664062px;}
.hb{height:71.400000px;}
.h6{height:72.562500px;}
.hf{height:74.004654px;}
.h5{height:82.441406px;}
.h4{height:84.656250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:137.137500px;}
.w3{width:137.437500px;}
.w6{width:177.675000px;}
.w5{width:249.075000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:13.500000px;}
.x3{left:84.937487px;}
.xe{left:89.137500px;}
.x7{left:90.937487px;}
.x6{left:110.137487px;}
.xa{left:221.774987px;}
.x10{left:231.075000px;}
.xb{left:271.274987px;}
.x8{left:275.774987px;}
.xd{left:308.204987px;}
.x14{left:316.319987px;}
.x4{left:350.819987px;}
.x13{left:368.204987px;}
.x11{left:373.020000px;}
.xc{left:423.749987px;}
.x5{left:425.549987px;}
.x9{left:446.249987px;}
.x2{left:457.049987px;}
.x1{left:510.449987px;}
.x12{left:626.595000px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.725333pt;}
.ls11{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.362667pt;}
.ls14{letter-spacing:-0.341333pt;}
.ls6{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.341333pt;}
.ls3{letter-spacing:0.362667pt;}
.ls10{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.554667pt;}
.lsc{letter-spacing:0.821333pt;}
.lse{letter-spacing:48.341333pt;}
.ls16{letter-spacing:94.208000pt;}
.ls13{letter-spacing:126.208000pt;}
.lsf{letter-spacing:141.141333pt;}
.ls12{letter-spacing:152.640000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws10{word-spacing:-53.333333pt;}
.ws1{word-spacing:-18.666667pt;}
.wsd{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.362667pt;}
.ws8{word-spacing:-16.341333pt;}
.wsa{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.978667pt;}
.ws11{word-spacing:-15.658667pt;}
.wsb{word-spacing:-15.637333pt;}
.wse{word-spacing:-15.616000pt;}
.ws7{word-spacing:-15.274667pt;}
.ws9{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws5{word-spacing:-10.666667pt;}
.wsc{word-spacing:0.000000pt;}
._5{margin-left:-6.720000pt;}
._4{margin-left:-5.013333pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._3{width:2.170667pt;}
._9{width:3.616000pt;}
._8{width:5.194667pt;}
._6{width:6.394667pt;}
._7{width:7.898667pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:6.133333pt;}
.y49{bottom:6.146667pt;}
.y4f{bottom:6.386667pt;}
.y46{bottom:7.746667pt;}
.y4d{bottom:8.000000pt;}
.y43{bottom:15.200000pt;}
.y3c{bottom:16.800000pt;}
.y47{bottom:18.413333pt;}
.y4b{bottom:18.666667pt;}
.y3f{bottom:26.666667pt;}
.y41{bottom:27.200000pt;}
.y3a{bottom:27.226667pt;}
.y48{bottom:28.306667pt;}
.y4e{bottom:28.520000pt;}
.y4c{bottom:29.053333pt;}
.y45{bottom:29.106667pt;}
.y42{bottom:37.066667pt;}
.y3e{bottom:37.866667pt;}
.y40{bottom:48.533333pt;}
.y6{bottom:61.633333pt;}
.y31{bottom:85.366667pt;}
.y5b{bottom:100.566667pt;}
.y30{bottom:106.700000pt;}
.y5a{bottom:121.633333pt;}
.y2f{bottom:127.766667pt;}
.y59{bottom:142.693333pt;}
.y7d{bottom:145.106667pt;}
.y2e{bottom:148.826667pt;}
.y58{bottom:165.133333pt;}
.y7c{bottom:166.466667pt;}
.y2d{bottom:170.200000pt;}
.y57{bottom:186.200000pt;}
.y7b{bottom:187.533333pt;}
.y2c{bottom:191.266667pt;}
.y56{bottom:208.333333pt;}
.y7a{bottom:208.600000pt;}
.ya1{bottom:210.200000pt;}
.y2b{bottom:212.600000pt;}
.y79{bottom:229.933333pt;}
.y55{bottom:231.000000pt;}
.ya0{bottom:231.533333pt;}
.y2a{bottom:233.666667pt;}
.y78{bottom:251.000000pt;}
.y54{bottom:252.066667pt;}
.y9f{bottom:252.600000pt;}
.y29{bottom:255.000000pt;}
.y77{bottom:272.066667pt;}
.y53{bottom:273.133333pt;}
.y9e{bottom:273.666667pt;}
.y28{bottom:276.333333pt;}
.y76{bottom:293.133333pt;}
.y52{bottom:294.466667pt;}
.y9d{bottom:295.000000pt;}
.y27{bottom:297.400000pt;}
.y51{bottom:315.560000pt;}
.y9c{bottom:316.106667pt;}
.y26{bottom:318.773333pt;}
.y50{bottom:336.640000pt;}
.y9b{bottom:337.173333pt;}
.y25{bottom:339.840000pt;}
.y9a{bottom:358.506667pt;}
.y75{bottom:359.040000pt;}
.y24{bottom:360.893333pt;}
.y4a{bottom:362.506667pt;}
.y99{bottom:379.560000pt;}
.y74{bottom:380.360000pt;}
.y23{bottom:382.226667pt;}
.y98{bottom:400.626667pt;}
.y73{bottom:401.440000pt;}
.y22{bottom:403.293333pt;}
.y97{bottom:421.960000pt;}
.y72{bottom:422.506667pt;}
.y21{bottom:424.360000pt;}
.y44{bottom:428.360000pt;}
.y96{bottom:443.026667pt;}
.y71{bottom:443.840000pt;}
.y20{bottom:445.693333pt;}
.y95{bottom:464.133333pt;}
.y70{bottom:464.933333pt;}
.y1f{bottom:466.800000pt;}
.y94{bottom:485.466667pt;}
.y6f{bottom:486.000000pt;}
.y1e{bottom:488.133333pt;}
.y3d{bottom:494.000000pt;}
.y93{bottom:506.533333pt;}
.y6e{bottom:507.333333pt;}
.y1d{bottom:509.200000pt;}
.y92{bottom:527.600000pt;}
.y6d{bottom:528.400000pt;}
.y1c{bottom:530.533333pt;}
.y91{bottom:548.933333pt;}
.y6c{bottom:549.466667pt;}
.y1b{bottom:551.866667pt;}
.y90{bottom:570.000000pt;}
.y6b{bottom:570.800000pt;}
.y1a{bottom:572.933333pt;}
.y39{bottom:577.466667pt;}
.y8f{bottom:591.066667pt;}
.y6a{bottom:591.866667pt;}
.y19{bottom:594.266667pt;}
.y8e{bottom:612.426667pt;}
.y69{bottom:613.226667pt;}
.y18{bottom:615.360000pt;}
.y8d{bottom:633.506667pt;}
.y68{bottom:634.306667pt;}
.y17{bottom:636.426667pt;}
.y38{bottom:636.960000pt;}
.y8c{bottom:654.560000pt;}
.y67{bottom:655.360000pt;}
.y16{bottom:657.760000pt;}
.y37{bottom:658.026667pt;}
.y8b{bottom:675.893333pt;}
.y66{bottom:676.693333pt;}
.y15{bottom:678.826667pt;}
.y36{bottom:679.360000pt;}
.y8a{bottom:696.960000pt;}
.y65{bottom:697.760000pt;}
.y14{bottom:700.173333pt;}
.y35{bottom:700.440000pt;}
.y89{bottom:718.026667pt;}
.y64{bottom:718.840000pt;}
.y13{bottom:721.226667pt;}
.y34{bottom:721.506667pt;}
.y88{bottom:739.373333pt;}
.y63{bottom:740.173333pt;}
.y12{bottom:742.293333pt;}
.y33{bottom:742.840000pt;}
.y87{bottom:760.466667pt;}
.y62{bottom:761.266667pt;}
.y11{bottom:763.666667pt;}
.y32{bottom:763.933333pt;}
.y86{bottom:781.800000pt;}
.y61{bottom:782.333333pt;}
.y10{bottom:785.000000pt;}
.y85{bottom:802.866667pt;}
.y60{bottom:803.666667pt;}
.yf{bottom:806.333333pt;}
.y84{bottom:823.933333pt;}
.y5f{bottom:824.466667pt;}
.ye{bottom:827.400000pt;}
.y83{bottom:846.333333pt;}
.y5e{bottom:846.866667pt;}
.yd{bottom:848.466667pt;}
.y82{bottom:867.400000pt;}
.y5d{bottom:869.266667pt;}
.yc{bottom:869.800000pt;}
.y81{bottom:888.466667pt;}
.y5c{bottom:890.600000pt;}
.yb{bottom:890.866667pt;}
.y80{bottom:910.893333pt;}
.ya{bottom:911.960000pt;}
.y7f{bottom:932.226667pt;}
.y9{bottom:933.293333pt;}
.y7e{bottom:953.026667pt;}
.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;}
.h9{height:42.166667pt;}
.ha{height:45.156250pt;}
.hd{height:45.633333pt;}
.he{height:45.866667pt;}
.h8{height:45.937500pt;}
.h11{height:48.687500pt;}
.h3{height:53.750000pt;}
.hc{height:53.906250pt;}
.h10{height:53.937500pt;}
.h7{height:62.812500pt;}
.hb{height:63.466667pt;}
.h6{height:64.500000pt;}
.hf{height:65.781915pt;}
.h5{height:73.281250pt;}
.h4{height:75.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:121.900000pt;}
.w3{width:122.166667pt;}
.w6{width:157.933333pt;}
.w5{width:221.400000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:12.000000pt;}
.x3{left:75.499988pt;}
.xe{left:79.233333pt;}
.x7{left:80.833322pt;}
.x6{left:97.899988pt;}
.xa{left:197.133322pt;}
.x10{left:205.400000pt;}
.xb{left:241.133322pt;}
.x8{left:245.133322pt;}
.xd{left:273.959988pt;}
.x14{left:281.173322pt;}
.x4{left:311.839988pt;}
.x13{left:327.293322pt;}
.x11{left:331.573333pt;}
.xc{left:376.666655pt;}
.x5{left:378.266655pt;}
.x9{left:396.666655pt;}
.x2{left:406.266655pt;}
.x1{left:453.733322pt;}
.x12{left:556.973333pt;}
}




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