
    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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_8d9d0be5bf2d4eae25476f01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.034268;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_edb1132ecfe4434e25e1c82f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.034268;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_b3d678954e76c46ac9d563ca.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_c4b093d45d3f4bd23f7f9282.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d4819d1af811996f0d9c8851.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_85cd8b5ea7031c5d3ee0a682.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_9c006af5378b8880b0440d7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931152;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_10b307a11506d3d6d1b9357f.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;}
.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;}
.v3{vertical-align:31.140000px;}
.v2{vertical-align:34.260000px;}
.v4{vertical-align:62.460000px;}
.v1{vertical-align:68.400000px;}
.ls4{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.414600px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.504000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:244.460160px;}
.ws4{word-spacing:271.748160px;}
.ws5{word-spacing:274.332960px;}
.ws9{word-spacing:324.074160px;}
.ws8{word-spacing:371.939040px;}
._d{margin-left:-4.536000px;}
._b{margin-left:-3.384000px;}
._c{margin-left:-2.204160px;}
._0{margin-left:-1.010880px;}
._2{width:1.415040px;}
._8{width:2.425920px;}
._9{width:3.550080px;}
._6{width:4.800000px;}
._7{width:6.024960px;}
._a{width:7.197120px;}
._f{width:8.258880px;}
._e{width:10.084320px;}
._5{width:11.232480px;}
._1{width:12.611520px;}
._11{width:14.374080px;}
._10{width:15.984000px;}
._13{width:17.951040px;}
._14{width:19.335360px;}
._3{width:22.985280px;}
._4{width:24.712800px;}
._12{width:224.553600px;}
._15{width:295.755600px;}
._16{width:311.899680px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs3{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:68.475000px;}
.yb1{bottom:76.395000px;}
.y5a{bottom:83.550000px;}
.yb3{bottom:84.165000px;}
.yb0{bottom:91.875000px;}
.y5c{bottom:92.130000px;}
.yb2{bottom:99.645000px;}
.y59{bottom:100.650000px;}
.y5b{bottom:109.230000px;}
.y2b{bottom:112.500000px;}
.y58{bottom:117.750000px;}
.y2a{bottom:134.640000px;}
.y45{bottom:141.300000px;}
.y29{bottom:157.140000px;}
.y44{bottom:160.200000px;}
.yab{bottom:170.565000px;}
.y54{bottom:178.020000px;}
.yae{bottom:178.275000px;}
.y43{bottom:179.280000px;}
.y28{bottom:179.460000px;}
.yaa{bottom:186.045000px;}
.yaf{bottom:186.195000px;}
.y57{bottom:186.585000px;}
.yad{bottom:193.965000px;}
.y53{bottom:195.120000px;}
.y42{bottom:198.180000px;}
.y9d{bottom:200.340000px;}
.ya9{bottom:201.705000px;}
.y27{bottom:201.780000px;}
.y56{bottom:203.685000px;}
.yac{bottom:209.445000px;}
.y52{bottom:212.220000px;}
.ya8{bottom:217.185000px;}
.y55{bottom:220.785000px;}
.y41{bottom:229.170000px;}
.y51{bottom:229.320000px;}
.y9c{bottom:231.510000px;}
.y26{bottom:236.190000px;}
.y9b{bottom:250.410000px;}
.y25{bottom:258.510000px;}
.y40{bottom:260.130000px;}
.y84{bottom:269.490000px;}
.y4e{bottom:272.625000px;}
.y3f{bottom:279.210000px;}
.ya5{bottom:280.365000px;}
.y24{bottom:280.830000px;}
.y9a{bottom:281.370000px;}
.ya1{bottom:288.075000px;}
.y83{bottom:288.570000px;}
.y4d{bottom:289.545000px;}
.y49{bottom:289.590000px;}
.ya4{bottom:295.845000px;}
.ya7{bottom:295.995000px;}
.y50{bottom:298.155000px;}
.y99{bottom:300.270000px;}
.y23{bottom:303.150000px;}
.ya6{bottom:303.690000px;}
.ya0{bottom:303.735000px;}
.y4c{bottom:306.645000px;}
.y48{bottom:306.690000px;}
.y3e{bottom:310.170000px;}
.ya3{bottom:311.505000px;}
.y4f{bottom:315.255000px;}
.y9f{bottom:319.245000px;}
.y82{bottom:319.530000px;}
.y4b{bottom:323.745000px;}
.y47{bottom:323.790000px;}
.y22{bottom:325.470000px;}
.ya2{bottom:326.985000px;}
.y98{bottom:331.230000px;}
.y81{bottom:338.430000px;}
.y3d{bottom:340.770000px;}
.y4a{bottom:340.845000px;}
.y97{bottom:350.310000px;}
.y80{bottom:357.510000px;}
.y21{bottom:360.030000px;}
.y3c{bottom:374.250000px;}
.y96{bottom:381.270000px;}
.y20{bottom:382.170000px;}
.y7f{bottom:388.470000px;}
.y3b{bottom:396.390000px;}
.y95{bottom:400.170000px;}
.y1f{bottom:404.490000px;}
.y7e{bottom:407.370000px;}
.y3a{bottom:418.710000px;}
.y94{bottom:419.250000px;}
.y7d{bottom:426.450000px;}
.y1e{bottom:426.810000px;}
.y93{bottom:438.150000px;}
.y39{bottom:441.030000px;}
.y7c{bottom:445.350000px;}
.y1d{bottom:449.130000px;}
.y38{bottom:463.395000px;}
.y7b{bottom:464.295000px;}
.y92{bottom:469.155000px;}
.y1c{bottom:483.735000px;}
.y37{bottom:485.715000px;}
.y7a{bottom:495.255000px;}
.y91{bottom:500.115000px;}
.y1b{bottom:505.875000px;}
.y36{bottom:508.035000px;}
.y79{bottom:514.335000px;}
.y90{bottom:519.195000px;}
.y1a{bottom:528.195000px;}
.y35{bottom:530.355000px;}
.y78{bottom:533.235000px;}
.y8f{bottom:550.155000px;}
.y19{bottom:550.515000px;}
.y77{bottom:552.315000px;}
.y34{bottom:552.675000px;}
.y46{bottom:569.160000px;}
.y76{bottom:571.215000px;}
.y18{bottom:572.835000px;}
.y8e{bottom:580.755000px;}
.y33{bottom:591.555000px;}
.y75{bottom:602.175000px;}
.y17{bottom:607.395000px;}
.y8d{bottom:612.075000px;}
.y74{bottom:621.255000px;}
.y16{bottom:629.535000px;}
.y73{bottom:640.155000px;}
.y8c{bottom:643.035000px;}
.y15{bottom:651.855000px;}
.y72{bottom:659.055000px;}
.y8b{bottom:661.935000px;}
.y14{bottom:674.175000px;}
.y71{bottom:678.135000px;}
.y8a{bottom:681.015000px;}
.y13{bottom:696.525000px;}
.y89{bottom:699.945000px;}
.y70{bottom:709.125000px;}
.y12{bottom:718.845000px;}
.y88{bottom:719.025000px;}
.y6f{bottom:728.025000px;}
.y87{bottom:737.925000px;}
.y11{bottom:741.165000px;}
.y6e{bottom:747.105000px;}
.y86{bottom:756.825000px;}
.y6d{bottom:766.005000px;}
.y9e{bottom:771.840000px;}
.y10{bottom:775.725000px;}
.y85{bottom:784.005000px;}
.y6c{bottom:796.965000px;}
.yf{bottom:807.945000px;}
.y6b{bottom:816.045000px;}
.ye{bottom:827.025000px;}
.y6a{bottom:834.945000px;}
.y69{bottom:853.845000px;}
.yd{bottom:859.605000px;}
.y68{bottom:872.925000px;}
.yc{bottom:881.925000px;}
.y67{bottom:891.825000px;}
.y66{bottom:910.905000px;}
.yb{bottom:914.325000px;}
.ya{bottom:933.630000px;}
.y65{bottom:941.550000px;}
.y64{bottom:960.450000px;}
.y9{bottom:964.590000px;}
.y32{bottom:982.410000px;}
.y63{bottom:991.410000px;}
.y8{bottom:995.550000px;}
.y31{bottom:1016.610000px;}
.y62{bottom:1022.730000px;}
.y7{bottom:1026.510000px;}
.y30{bottom:1038.930000px;}
.y61{bottom:1041.810000px;}
.y6{bottom:1057.470000px;}
.y2f{bottom:1061.250000px;}
.y60{bottom:1072.770000px;}
.y5{bottom:1089.690000px;}
.y5f{bottom:1091.670000px;}
.y2e{bottom:1095.630000px;}
.y4{bottom:1113.630000px;}
.y2d{bottom:1117.770000px;}
.y5e{bottom:1122.630000px;}
.y3{bottom:1137.750000px;}
.y2c{bottom:1140.270000px;}
.y5d{bottom:1141.710000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.h2{height:50.229844px;}
.h9{height:54.597656px;}
.h12{height:58.651172px;}
.h11{height:58.792500px;}
.hf{height:59.383125px;}
.h8{height:64.546875px;}
.he{height:64.978594px;}
.h6{height:65.010937px;}
.h4{height:66.757500px;}
.h5{height:70.628906px;}
.h7{height:70.664062px;}
.h3{height:72.476016px;}
.h15{height:89.431172px;}
.h13{height:89.791172px;}
.hd{height:99.270938px;}
.hb{height:133.410937px;}
.h14{height:152.251172px;}
.hc{height:201.810937px;}
.h10{height:384.840000px;}
.ha{height:395.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x2{left:154.110000px;}
.x6{left:170.130000px;}
.x12{left:177.119987px;}
.x13{left:180.179987px;}
.x7{left:181.439987px;}
.x1b{left:183.419987px;}
.x27{left:186.299987px;}
.x1a{left:188.099987px;}
.x14{left:191.339987px;}
.x21{left:193.499987px;}
.x2d{left:201.059987px;}
.x8{left:202.139987px;}
.x28{left:205.379987px;}
.x9{left:207.179987px;}
.x22{left:210.779987px;}
.x15{left:214.199987px;}
.x23{left:219.779987px;}
.x29{left:223.919987px;}
.x3{left:225.570000px;}
.xb{left:366.014987px;}
.xd{left:368.894987px;}
.x1c{left:374.474987px;}
.xc{left:376.274987px;}
.x17{left:380.594987px;}
.x1d{left:383.294987px;}
.xa{left:384.914987px;}
.x16{left:390.854987px;}
.x2e{left:392.834987px;}
.x2f{left:394.274987px;}
.x2a{left:399.674987px;}
.x25{left:404.534987px;}
.x24{left:407.234987px;}
.x2b{left:408.674987px;}
.xe{left:413.174987px;}
.x4{left:446.505000px;}
.x1f{left:527.789987px;}
.x1e{left:537.689987px;}
.x10{left:545.789987px;}
.xf{left:557.669987px;}
.x30{left:566.669987px;}
.x11{left:707.069987px;}
.x19{left:709.229987px;}
.x18{left:721.289987px;}
.x2c{left:725.969987px;}
.x26{left:754.229987px;}
.x5{left:840.960000px;}
.x20{left:885.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:27.680000pt;}
.v2{vertical-align:30.453333pt;}
.v4{vertical-align:55.520000pt;}
.v1{vertical-align:60.800000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.368533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.448000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:217.297920pt;}
.ws4{word-spacing:241.553920pt;}
.ws5{word-spacing:243.851520pt;}
.ws9{word-spacing:288.065920pt;}
.ws8{word-spacing:330.612480pt;}
._d{margin-left:-4.032000pt;}
._b{margin-left:-3.008000pt;}
._c{margin-left:-1.959253pt;}
._0{margin-left:-0.898560pt;}
._2{width:1.257813pt;}
._8{width:2.156373pt;}
._9{width:3.155627pt;}
._6{width:4.266667pt;}
._7{width:5.355520pt;}
._a{width:6.397440pt;}
._f{width:7.341227pt;}
._e{width:8.963840pt;}
._5{width:9.984427pt;}
._1{width:11.210240pt;}
._11{width:12.776960pt;}
._10{width:14.208000pt;}
._13{width:15.956480pt;}
._14{width:17.186987pt;}
._3{width:20.431360pt;}
._4{width:21.966933pt;}
._12{width:199.603200pt;}
._15{width:262.893867pt;}
._16{width:277.244160pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:60.866667pt;}
.yb1{bottom:67.906667pt;}
.y5a{bottom:74.266667pt;}
.yb3{bottom:74.813333pt;}
.yb0{bottom:81.666667pt;}
.y5c{bottom:81.893333pt;}
.yb2{bottom:88.573333pt;}
.y59{bottom:89.466667pt;}
.y5b{bottom:97.093333pt;}
.y2b{bottom:100.000000pt;}
.y58{bottom:104.666667pt;}
.y2a{bottom:119.680000pt;}
.y45{bottom:125.600000pt;}
.y29{bottom:139.680000pt;}
.y44{bottom:142.400000pt;}
.yab{bottom:151.613333pt;}
.y54{bottom:158.240000pt;}
.yae{bottom:158.466667pt;}
.y43{bottom:159.360000pt;}
.y28{bottom:159.520000pt;}
.yaa{bottom:165.373333pt;}
.yaf{bottom:165.506667pt;}
.y57{bottom:165.853333pt;}
.yad{bottom:172.413333pt;}
.y53{bottom:173.440000pt;}
.y42{bottom:176.160000pt;}
.y9d{bottom:178.080000pt;}
.ya9{bottom:179.293333pt;}
.y27{bottom:179.360000pt;}
.y56{bottom:181.053333pt;}
.yac{bottom:186.173333pt;}
.y52{bottom:188.640000pt;}
.ya8{bottom:193.053333pt;}
.y55{bottom:196.253333pt;}
.y41{bottom:203.706667pt;}
.y51{bottom:203.840000pt;}
.y9c{bottom:205.786667pt;}
.y26{bottom:209.946667pt;}
.y9b{bottom:222.586667pt;}
.y25{bottom:229.786667pt;}
.y40{bottom:231.226667pt;}
.y84{bottom:239.546667pt;}
.y4e{bottom:242.333333pt;}
.y3f{bottom:248.186667pt;}
.ya5{bottom:249.213333pt;}
.y24{bottom:249.626667pt;}
.y9a{bottom:250.106667pt;}
.ya1{bottom:256.066667pt;}
.y83{bottom:256.506667pt;}
.y4d{bottom:257.373333pt;}
.y49{bottom:257.413333pt;}
.ya4{bottom:262.973333pt;}
.ya7{bottom:263.106667pt;}
.y50{bottom:265.026667pt;}
.y99{bottom:266.906667pt;}
.y23{bottom:269.466667pt;}
.ya6{bottom:269.946667pt;}
.ya0{bottom:269.986667pt;}
.y4c{bottom:272.573333pt;}
.y48{bottom:272.613333pt;}
.y3e{bottom:275.706667pt;}
.ya3{bottom:276.893333pt;}
.y4f{bottom:280.226667pt;}
.y9f{bottom:283.773333pt;}
.y82{bottom:284.026667pt;}
.y4b{bottom:287.773333pt;}
.y47{bottom:287.813333pt;}
.y22{bottom:289.306667pt;}
.ya2{bottom:290.653333pt;}
.y98{bottom:294.426667pt;}
.y81{bottom:300.826667pt;}
.y3d{bottom:302.906667pt;}
.y4a{bottom:302.973333pt;}
.y97{bottom:311.386667pt;}
.y80{bottom:317.786667pt;}
.y21{bottom:320.026667pt;}
.y3c{bottom:332.666667pt;}
.y96{bottom:338.906667pt;}
.y20{bottom:339.706667pt;}
.y7f{bottom:345.306667pt;}
.y3b{bottom:352.346667pt;}
.y95{bottom:355.706667pt;}
.y1f{bottom:359.546667pt;}
.y7e{bottom:362.106667pt;}
.y3a{bottom:372.186667pt;}
.y94{bottom:372.666667pt;}
.y7d{bottom:379.066667pt;}
.y1e{bottom:379.386667pt;}
.y93{bottom:389.466667pt;}
.y39{bottom:392.026667pt;}
.y7c{bottom:395.866667pt;}
.y1d{bottom:399.226667pt;}
.y38{bottom:411.906667pt;}
.y7b{bottom:412.706667pt;}
.y92{bottom:417.026667pt;}
.y1c{bottom:429.986667pt;}
.y37{bottom:431.746667pt;}
.y7a{bottom:440.226667pt;}
.y91{bottom:444.546667pt;}
.y1b{bottom:449.666667pt;}
.y36{bottom:451.586667pt;}
.y79{bottom:457.186667pt;}
.y90{bottom:461.506667pt;}
.y1a{bottom:469.506667pt;}
.y35{bottom:471.426667pt;}
.y78{bottom:473.986667pt;}
.y8f{bottom:489.026667pt;}
.y19{bottom:489.346667pt;}
.y77{bottom:490.946667pt;}
.y34{bottom:491.266667pt;}
.y46{bottom:505.920000pt;}
.y76{bottom:507.746667pt;}
.y18{bottom:509.186667pt;}
.y8e{bottom:516.226667pt;}
.y33{bottom:525.826667pt;}
.y75{bottom:535.266667pt;}
.y17{bottom:539.906667pt;}
.y8d{bottom:544.066667pt;}
.y74{bottom:552.226667pt;}
.y16{bottom:559.586667pt;}
.y73{bottom:569.026667pt;}
.y8c{bottom:571.586667pt;}
.y15{bottom:579.426667pt;}
.y72{bottom:585.826667pt;}
.y8b{bottom:588.386667pt;}
.y14{bottom:599.266667pt;}
.y71{bottom:602.786667pt;}
.y8a{bottom:605.346667pt;}
.y13{bottom:619.133333pt;}
.y89{bottom:622.173333pt;}
.y70{bottom:630.333333pt;}
.y12{bottom:638.973333pt;}
.y88{bottom:639.133333pt;}
.y6f{bottom:647.133333pt;}
.y87{bottom:655.933333pt;}
.y11{bottom:658.813333pt;}
.y6e{bottom:664.093333pt;}
.y86{bottom:672.733333pt;}
.y6d{bottom:680.893333pt;}
.y9e{bottom:686.080000pt;}
.y10{bottom:689.533333pt;}
.y85{bottom:696.893333pt;}
.y6c{bottom:708.413333pt;}
.yf{bottom:718.173333pt;}
.y6b{bottom:725.373333pt;}
.ye{bottom:735.133333pt;}
.y6a{bottom:742.173333pt;}
.y69{bottom:758.973333pt;}
.yd{bottom:764.093333pt;}
.y68{bottom:775.933333pt;}
.yc{bottom:783.933333pt;}
.y67{bottom:792.733333pt;}
.y66{bottom:809.693333pt;}
.yb{bottom:812.733333pt;}
.ya{bottom:829.893333pt;}
.y65{bottom:836.933333pt;}
.y64{bottom:853.733333pt;}
.y9{bottom:857.413333pt;}
.y32{bottom:873.253333pt;}
.y63{bottom:881.253333pt;}
.y8{bottom:884.933333pt;}
.y31{bottom:903.653333pt;}
.y62{bottom:909.093333pt;}
.y7{bottom:912.453333pt;}
.y30{bottom:923.493333pt;}
.y61{bottom:926.053333pt;}
.y6{bottom:939.973333pt;}
.y2f{bottom:943.333333pt;}
.y60{bottom:953.573333pt;}
.y5{bottom:968.613333pt;}
.y5f{bottom:970.373333pt;}
.y2e{bottom:973.893333pt;}
.y4{bottom:989.893333pt;}
.y2d{bottom:993.573333pt;}
.y5e{bottom:997.893333pt;}
.y3{bottom:1011.333333pt;}
.y2c{bottom:1013.573333pt;}
.y5d{bottom:1014.853333pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.h2{height:44.648750pt;}
.h9{height:48.531250pt;}
.h12{height:52.134375pt;}
.h11{height:52.260000pt;}
.hf{height:52.785000pt;}
.h8{height:57.375000pt;}
.he{height:57.758750pt;}
.h6{height:57.787500pt;}
.h4{height:59.340000pt;}
.h5{height:62.781250pt;}
.h7{height:62.812500pt;}
.h3{height:64.423125pt;}
.h15{height:79.494375pt;}
.h13{height:79.814375pt;}
.hd{height:88.240833pt;}
.hb{height:118.587500pt;}
.h14{height:135.334375pt;}
.hc{height:179.387500pt;}
.h10{height:342.080000pt;}
.ha{height:351.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x2{left:136.986667pt;}
.x6{left:151.226667pt;}
.x12{left:157.439988pt;}
.x13{left:160.159988pt;}
.x7{left:161.279988pt;}
.x1b{left:163.039988pt;}
.x27{left:165.599988pt;}
.x1a{left:167.199988pt;}
.x14{left:170.079988pt;}
.x21{left:171.999988pt;}
.x2d{left:178.719988pt;}
.x8{left:179.679988pt;}
.x28{left:182.559988pt;}
.x9{left:184.159988pt;}
.x22{left:187.359988pt;}
.x15{left:190.399988pt;}
.x23{left:195.359988pt;}
.x29{left:199.039988pt;}
.x3{left:200.506667pt;}
.xb{left:325.346655pt;}
.xd{left:327.906655pt;}
.x1c{left:332.866655pt;}
.xc{left:334.466655pt;}
.x17{left:338.306655pt;}
.x1d{left:340.706655pt;}
.xa{left:342.146655pt;}
.x16{left:347.426655pt;}
.x2e{left:349.186655pt;}
.x2f{left:350.466655pt;}
.x2a{left:355.266655pt;}
.x25{left:359.586655pt;}
.x24{left:361.986655pt;}
.x2b{left:363.266655pt;}
.xe{left:367.266655pt;}
.x4{left:396.893333pt;}
.x1f{left:469.146655pt;}
.x1e{left:477.946655pt;}
.x10{left:485.146655pt;}
.xf{left:495.706655pt;}
.x30{left:503.706655pt;}
.x11{left:628.506655pt;}
.x19{left:630.426655pt;}
.x18{left:641.146655pt;}
.x2c{left:645.306655pt;}
.x26{left:670.426655pt;}
.x5{left:747.520000pt;}
.x20{left:787.520000pt;}
}




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