
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f11cdc6cb84b09478a89febf.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_5ab0e891c66d41434263a1af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_12f6194e425f61a4699b837e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923340;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_9ba626c4982a8515d3c547cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_a90088db454d8224f2348534.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f77447eafaca7b5b3ed8f899.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_67c775b79b832330bf8c43ad.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4e4358703afc8d27498a063d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-90.000000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.378600px;}
.ls7{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.208080px;}
.lsa{letter-spacing:0.216000px;}
.ls1{letter-spacing:6.300000px;}
.ls9{letter-spacing:33.984000px;}
.ls4{letter-spacing:191.484000px;}
.ls8{letter-spacing:617.376000px;}
.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;}
}
.ws0{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-2.071920px;}
._0{margin-left:-1.054080px;}
._2{width:1.924800px;}
._1{width:2.991600px;}
._9{width:4.283040px;}
._3{width:5.836080px;}
._b{width:7.601280px;}
._15{width:9.305280px;}
._13{width:10.320480px;}
._1c{width:11.709360px;}
._22{width:13.373280px;}
._24{width:14.616000px;}
._17{width:15.752880px;}
._16{width:17.437680px;}
._19{width:19.040400px;}
._1a{width:20.059680px;}
._14{width:22.155120px;}
._8{width:23.220480px;}
._18{width:25.272000px;}
._23{width:28.298640px;}
._1d{width:29.573280px;}
._a{width:30.747600px;}
._f{width:31.842720px;}
._10{width:33.106320px;}
._c{width:34.540560px;}
._1e{width:35.762160px;}
._4{width:36.897120px;}
._5{width:38.331360px;}
._6{width:50.122800px;}
._7{width:51.608400px;}
._1f{width:53.071200px;}
._20{width:54.293760px;}
._e{width:56.946240px;}
._d{width:58.294080px;}
._12{width:112.546800px;}
._11{width:113.598720px;}
._1b{width:740.100000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:3.960000px;}
.y34{bottom:5.220000px;}
.y54{bottom:6.480000px;}
.y5c{bottom:10.260000px;}
.y4d{bottom:14.400000px;}
.y37{bottom:14.760000px;}
.y42{bottom:14.940000px;}
.y5b{bottom:18.000000px;}
.y4e{bottom:24.660000px;}
.y36{bottom:25.020000px;}
.y40{bottom:25.200000px;}
.y3f{bottom:25.380000px;}
.y56{bottom:25.560000px;}
.y33{bottom:25.920000px;}
.y53{bottom:27.180000px;}
.y2e{bottom:27.540000px;}
.y3d{bottom:27.900000px;}
.y71{bottom:33.660000px;}
.y41{bottom:35.460000px;}
.y3{bottom:35.856000px;}
.y2c{bottom:37.800000px;}
.y59{bottom:45.360000px;}
.y32{bottom:46.620000px;}
.y52{bottom:47.880000px;}
.y2d{bottom:48.240000px;}
.y3c{bottom:48.600000px;}
.y70{bottom:54.360000px;}
.y2{bottom:55.476000px;}
.y58{bottom:66.060000px;}
.y31{bottom:67.320000px;}
.y51{bottom:68.580000px;}
.y3b{bottom:69.345000px;}
.y6f{bottom:75.060000px;}
.y69{bottom:86.760000px;}
.y30{bottom:88.020000px;}
.y3a{bottom:90.045000px;}
.y80{bottom:92.376000px;}
.y6e{bottom:95.760000px;}
.y2a{bottom:96.156000px;}
.y64{bottom:105.876000px;}
.y68{bottom:107.460000px;}
.y39{bottom:110.745000px;}
.y6d{bottom:116.460000px;}
.y7f{bottom:120.096000px;}
.y29{bottom:123.876000px;}
.y67{bottom:128.160000px;}
.y63{bottom:133.596000px;}
.y6c{bottom:137.205000px;}
.y7e{bottom:147.816000px;}
.y74{bottom:148.890000px;}
.y28{bottom:151.770000px;}
.y6b{bottom:157.905000px;}
.y62{bottom:161.310000px;}
.y7d{bottom:175.710000px;}
.y27{bottom:179.490000px;}
.y61{bottom:189.210000px;}
.y7c{bottom:203.430000px;}
.y26{bottom:207.210000px;}
.y60{bottom:216.930000px;}
.y7b{bottom:231.150000px;}
.y25{bottom:234.930000px;}
.y5f{bottom:244.650000px;}
.y7a{bottom:259.050000px;}
.y24{bottom:262.830000px;}
.y5e{bottom:272.550000px;}
.y79{bottom:286.815000px;}
.y23{bottom:290.595000px;}
.y5d{bottom:308.775000px;}
.y78{bottom:314.535000px;}
.y22{bottom:318.315000px;}
.y57{bottom:329.115000px;}
.y77{bottom:342.255000px;}
.y21{bottom:346.215000px;}
.y5a{bottom:363.135000px;}
.y76{bottom:370.155000px;}
.y20{bottom:373.935000px;}
.y75{bottom:397.875000px;}
.y1f{bottom:401.655000px;}
.y50{bottom:412.635000px;}
.y73{bottom:418.215000px;}
.y1e{bottom:429.375000px;}
.y55{bottom:434.055000px;}
.y1d{bottom:457.275000px;}
.y1c{bottom:484.995000px;}
.y4c{bottom:498.675000px;}
.y1b{bottom:512.715000px;}
.y1a{bottom:540.615000px;}
.y4b{bottom:549.075000px;}
.y19{bottom:568.365000px;}
.y4a{bottom:576.825000px;}
.y72{bottom:584.565000px;}
.y18{bottom:596.085000px;}
.y49{bottom:604.545000px;}
.y17{bottom:623.805000px;}
.y48{bottom:632.445000px;}
.y16{bottom:651.705000px;}
.y47{bottom:660.165000px;}
.y15{bottom:679.425000px;}
.y46{bottom:687.885000px;}
.y14{bottom:707.145000px;}
.y45{bottom:715.605000px;}
.y6a{bottom:730.185000px;}
.y13{bottom:735.045000px;}
.y44{bottom:743.505000px;}
.y8f{bottom:745.485000px;}
.y12{bottom:762.765000px;}
.y8e{bottom:766.005000px;}
.y43{bottom:774.825000px;}
.y8d{bottom:787.065000px;}
.y38{bottom:789.765000px;}
.y11{bottom:790.485000px;}
.y8c{bottom:807.765000px;}
.y10{bottom:818.205000px;}
.y8b{bottom:828.465000px;}
.yf{bottom:846.105000px;}
.y8a{bottom:849.210000px;}
.y3e{bottom:853.710000px;}
.y89{bottom:869.910000px;}
.ye{bottom:873.870000px;}
.y88{bottom:890.610000px;}
.yd{bottom:901.590000px;}
.y66{bottom:905.550000px;}
.y87{bottom:911.310000px;}
.y2f{bottom:918.150000px;}
.yc{bottom:925.170000px;}
.y86{bottom:932.010000px;}
.yb{bottom:946.770000px;}
.y85{bottom:952.710000px;}
.y35{bottom:961.350000px;}
.ya{bottom:967.830000px;}
.y84{bottom:973.410000px;}
.y9{bottom:988.530000px;}
.y8{bottom:1009.230000px;}
.y83{bottom:1016.610000px;}
.y2b{bottom:1024.890000px;}
.y7{bottom:1028.850000px;}
.y82{bottom:1038.750000px;}
.y6{bottom:1046.130000px;}
.y65{bottom:1051.170000px;}
.y81{bottom:1066.650000px;}
.y5{bottom:1070.250000px;}
.y4{bottom:1094.370000px;}
.y1{bottom:1194.120000px;}
.h19{height:20.700000px;}
.h1c{height:33.300000px;}
.h16{height:41.400000px;}
.h10{height:42.300000px;}
.h1b{height:48.780000px;}
.he{height:50.273438px;}
.hb{height:50.800781px;}
.h6{height:54.421875px;}
.h14{height:58.651172px;}
.h9{height:58.819922px;}
.h5{height:59.436914px;}
.h1d{height:62.100000px;}
.hf{height:62.820000px;}
.h13{height:63.216000px;}
.h12{height:63.540000px;}
.h18{height:63.900000px;}
.h2{height:65.884219px;}
.hd{height:70.664062px;}
.h22{height:71.613281px;}
.h7{height:71.824219px;}
.h3{height:72.562500px;}
.h21{height:74.004654px;}
.h8{height:82.676953px;}
.h1a{height:82.800000px;}
.h15{height:84.034336px;}
.h4{height:84.898125px;}
.h17{height:85.320000px;}
.ha{height:88.380000px;}
.hc{height:106.020000px;}
.h11{height:127.476000px;}
.h1e{height:144.900000px;}
.h20{height:165.630000px;}
.h1f{height:174.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:39.276000px;}
.wf{width:57.420000px;}
.w8{width:57.456000px;}
.w4{width:61.776000px;}
.wb{width:63.000000px;}
.w9{width:78.300000px;}
.wc{width:93.600000px;}
.w7{width:99.360000px;}
.we{width:99.396000px;}
.w13{width:100.476000px;}
.w6{width:115.236000px;}
.wd{width:115.416000px;}
.w5{width:115.560000px;}
.w11{width:135.360000px;}
.w14{width:145.296000px;}
.w12{width:160.770000px;}
.w15{width:168.840000px;}
.w3{width:168.870000px;}
.wa{width:189.750000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:6.660000px;}
.x18{left:8.460000px;}
.x1d{left:9.900000px;}
.x2b{left:11.700000px;}
.x13{left:12.960000px;}
.x3a{left:14.400000px;}
.x2c{left:16.380000px;}
.x21{left:17.820000px;}
.x23{left:18.900000px;}
.x1e{left:21.096000px;}
.x32{left:22.140000px;}
.x35{left:23.220000px;}
.x40{left:24.300000px;}
.x1a{left:25.785000px;}
.x3e{left:27.000000px;}
.x24{left:28.116000px;}
.x3b{left:29.205000px;}
.x22{left:30.240000px;}
.x37{left:31.500000px;}
.x1c{left:34.020000px;}
.x16{left:36.000000px;}
.x14{left:37.620000px;}
.x25{left:39.060000px;}
.x3f{left:40.140000px;}
.x1{left:42.479987px;}
.x20{left:43.596000px;}
.x33{left:47.874000px;}
.x3d{left:53.100000px;}
.x1f{left:55.296000px;}
.xf{left:56.916000px;}
.x3c{left:62.325000px;}
.x39{left:64.440000px;}
.x27{left:69.834000px;}
.xe{left:77.400000px;}
.xb{left:84.959987px;}
.x2f{left:89.315987px;}
.x26{left:95.796000px;}
.xc{left:96.875987px;}
.x31{left:117.576000px;}
.x4{left:119.375987px;}
.x5{left:125.135987px;}
.xa{left:127.475987px;}
.x41{left:138.095987px;}
.x10{left:246.990000px;}
.x30{left:249.509987px;}
.xd{left:254.009987px;}
.x28{left:286.275000px;}
.x12{left:309.495000px;}
.x8{left:314.534987px;}
.x6{left:329.114987px;}
.x29{left:349.995000px;}
.x2{left:369.254987px;}
.x7{left:391.934987px;}
.x34{left:415.155000px;}
.x15{left:425.775000px;}
.x9{left:443.774987px;}
.x3{left:446.474987px;}
.x36{left:516.345000px;}
.x17{left:541.905000px;}
.x2a{left:560.445000px;}
.x19{left:641.985000px;}
.x2d{left:660.750000px;}
.x38{left:662.370000px;}
.x1b{left:700.350000px;}
.x2e{left:718.890000px;}
@media print{
.v1{vertical-align:-80.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.336533pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.184960pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1{letter-spacing:5.600000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls4{letter-spacing:170.208000pt;}
.ls8{letter-spacing:548.778667pt;}
.ws0{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-1.841707pt;}
._0{margin-left:-0.936960pt;}
._2{width:1.710933pt;}
._1{width:2.659200pt;}
._9{width:3.807147pt;}
._3{width:5.187627pt;}
._b{width:6.756693pt;}
._15{width:8.271360pt;}
._13{width:9.173760pt;}
._1c{width:10.408320pt;}
._22{width:11.887360pt;}
._24{width:12.992000pt;}
._17{width:14.002560pt;}
._16{width:15.500160pt;}
._19{width:16.924800pt;}
._1a{width:17.830827pt;}
._14{width:19.693440pt;}
._8{width:20.640427pt;}
._18{width:22.464000pt;}
._23{width:25.154347pt;}
._1d{width:26.287360pt;}
._a{width:27.331200pt;}
._f{width:28.304640pt;}
._10{width:29.427840pt;}
._c{width:30.702720pt;}
._1e{width:31.788587pt;}
._4{width:32.797440pt;}
._5{width:34.072320pt;}
._6{width:44.553600pt;}
._7{width:45.874133pt;}
._1f{width:47.174400pt;}
._20{width:48.261120pt;}
._e{width:50.618880pt;}
._d{width:51.816960pt;}
._12{width:100.041600pt;}
._11{width:100.976640pt;}
._1b{width:657.866667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:3.520000pt;}
.y34{bottom:4.640000pt;}
.y54{bottom:5.760000pt;}
.y5c{bottom:9.120000pt;}
.y4d{bottom:12.800000pt;}
.y37{bottom:13.120000pt;}
.y42{bottom:13.280000pt;}
.y5b{bottom:16.000000pt;}
.y4e{bottom:21.920000pt;}
.y36{bottom:22.240000pt;}
.y40{bottom:22.400000pt;}
.y3f{bottom:22.560000pt;}
.y56{bottom:22.720000pt;}
.y33{bottom:23.040000pt;}
.y53{bottom:24.160000pt;}
.y2e{bottom:24.480000pt;}
.y3d{bottom:24.800000pt;}
.y71{bottom:29.920000pt;}
.y41{bottom:31.520000pt;}
.y3{bottom:31.872000pt;}
.y2c{bottom:33.600000pt;}
.y59{bottom:40.320000pt;}
.y32{bottom:41.440000pt;}
.y52{bottom:42.560000pt;}
.y2d{bottom:42.880000pt;}
.y3c{bottom:43.200000pt;}
.y70{bottom:48.320000pt;}
.y2{bottom:49.312000pt;}
.y58{bottom:58.720000pt;}
.y31{bottom:59.840000pt;}
.y51{bottom:60.960000pt;}
.y3b{bottom:61.640000pt;}
.y6f{bottom:66.720000pt;}
.y69{bottom:77.120000pt;}
.y30{bottom:78.240000pt;}
.y3a{bottom:80.040000pt;}
.y80{bottom:82.112000pt;}
.y6e{bottom:85.120000pt;}
.y2a{bottom:85.472000pt;}
.y64{bottom:94.112000pt;}
.y68{bottom:95.520000pt;}
.y39{bottom:98.440000pt;}
.y6d{bottom:103.520000pt;}
.y7f{bottom:106.752000pt;}
.y29{bottom:110.112000pt;}
.y67{bottom:113.920000pt;}
.y63{bottom:118.752000pt;}
.y6c{bottom:121.960000pt;}
.y7e{bottom:131.392000pt;}
.y74{bottom:132.346667pt;}
.y28{bottom:134.906667pt;}
.y6b{bottom:140.360000pt;}
.y62{bottom:143.386667pt;}
.y7d{bottom:156.186667pt;}
.y27{bottom:159.546667pt;}
.y61{bottom:168.186667pt;}
.y7c{bottom:180.826667pt;}
.y26{bottom:184.186667pt;}
.y60{bottom:192.826667pt;}
.y7b{bottom:205.466667pt;}
.y25{bottom:208.826667pt;}
.y5f{bottom:217.466667pt;}
.y7a{bottom:230.266667pt;}
.y24{bottom:233.626667pt;}
.y5e{bottom:242.266667pt;}
.y79{bottom:254.946667pt;}
.y23{bottom:258.306667pt;}
.y5d{bottom:274.466667pt;}
.y78{bottom:279.586667pt;}
.y22{bottom:282.946667pt;}
.y57{bottom:292.546667pt;}
.y77{bottom:304.226667pt;}
.y21{bottom:307.746667pt;}
.y5a{bottom:322.786667pt;}
.y76{bottom:329.026667pt;}
.y20{bottom:332.386667pt;}
.y75{bottom:353.666667pt;}
.y1f{bottom:357.026667pt;}
.y50{bottom:366.786667pt;}
.y73{bottom:371.746667pt;}
.y1e{bottom:381.666667pt;}
.y55{bottom:385.826667pt;}
.y1d{bottom:406.466667pt;}
.y1c{bottom:431.106667pt;}
.y4c{bottom:443.266667pt;}
.y1b{bottom:455.746667pt;}
.y1a{bottom:480.546667pt;}
.y4b{bottom:488.066667pt;}
.y19{bottom:505.213333pt;}
.y4a{bottom:512.733333pt;}
.y72{bottom:519.613333pt;}
.y18{bottom:529.853333pt;}
.y49{bottom:537.373333pt;}
.y17{bottom:554.493333pt;}
.y48{bottom:562.173333pt;}
.y16{bottom:579.293333pt;}
.y47{bottom:586.813333pt;}
.y15{bottom:603.933333pt;}
.y46{bottom:611.453333pt;}
.y14{bottom:628.573333pt;}
.y45{bottom:636.093333pt;}
.y6a{bottom:649.053333pt;}
.y13{bottom:653.373333pt;}
.y44{bottom:660.893333pt;}
.y8f{bottom:662.653333pt;}
.y12{bottom:678.013333pt;}
.y8e{bottom:680.893333pt;}
.y43{bottom:688.733333pt;}
.y8d{bottom:699.613333pt;}
.y38{bottom:702.013333pt;}
.y11{bottom:702.653333pt;}
.y8c{bottom:718.013333pt;}
.y10{bottom:727.293333pt;}
.y8b{bottom:736.413333pt;}
.yf{bottom:752.093333pt;}
.y8a{bottom:754.853333pt;}
.y3e{bottom:758.853333pt;}
.y89{bottom:773.253333pt;}
.ye{bottom:776.773333pt;}
.y88{bottom:791.653333pt;}
.yd{bottom:801.413333pt;}
.y66{bottom:804.933333pt;}
.y87{bottom:810.053333pt;}
.y2f{bottom:816.133333pt;}
.yc{bottom:822.373333pt;}
.y86{bottom:828.453333pt;}
.yb{bottom:841.573333pt;}
.y85{bottom:846.853333pt;}
.y35{bottom:854.533333pt;}
.ya{bottom:860.293333pt;}
.y84{bottom:865.253333pt;}
.y9{bottom:878.693333pt;}
.y8{bottom:897.093333pt;}
.y83{bottom:903.653333pt;}
.y2b{bottom:911.013333pt;}
.y7{bottom:914.533333pt;}
.y82{bottom:923.333333pt;}
.y6{bottom:929.893333pt;}
.y65{bottom:934.373333pt;}
.y81{bottom:948.133333pt;}
.y5{bottom:951.333333pt;}
.y4{bottom:972.773333pt;}
.y1{bottom:1061.440000pt;}
.h19{height:18.400000pt;}
.h1c{height:29.600000pt;}
.h16{height:36.800000pt;}
.h10{height:37.600000pt;}
.h1b{height:43.360000pt;}
.he{height:44.687500pt;}
.hb{height:45.156250pt;}
.h6{height:48.375000pt;}
.h14{height:52.134375pt;}
.h9{height:52.284375pt;}
.h5{height:52.832812pt;}
.h1d{height:55.200000pt;}
.hf{height:55.840000pt;}
.h13{height:56.192000pt;}
.h12{height:56.480000pt;}
.h18{height:56.800000pt;}
.h2{height:58.563750pt;}
.hd{height:62.812500pt;}
.h22{height:63.656250pt;}
.h7{height:63.843750pt;}
.h3{height:64.500000pt;}
.h21{height:65.781915pt;}
.h8{height:73.490625pt;}
.h1a{height:73.600000pt;}
.h15{height:74.697187pt;}
.h4{height:75.465000pt;}
.h17{height:75.840000pt;}
.ha{height:78.560000pt;}
.hc{height:94.240000pt;}
.h11{height:113.312000pt;}
.h1e{height:128.800000pt;}
.h20{height:147.226667pt;}
.h1f{height:155.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:34.912000pt;}
.wf{width:51.040000pt;}
.w8{width:51.072000pt;}
.w4{width:54.912000pt;}
.wb{width:56.000000pt;}
.w9{width:69.600000pt;}
.wc{width:83.200000pt;}
.w7{width:88.320000pt;}
.we{width:88.352000pt;}
.w13{width:89.312000pt;}
.w6{width:102.432000pt;}
.wd{width:102.592000pt;}
.w5{width:102.720000pt;}
.w11{width:120.320000pt;}
.w14{width:129.152000pt;}
.w12{width:142.906667pt;}
.w15{width:150.080000pt;}
.w3{width:150.106667pt;}
.wa{width:168.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.920000pt;}
.x18{left:7.520000pt;}
.x1d{left:8.800000pt;}
.x2b{left:10.400000pt;}
.x13{left:11.520000pt;}
.x3a{left:12.800000pt;}
.x2c{left:14.560000pt;}
.x21{left:15.840000pt;}
.x23{left:16.800000pt;}
.x1e{left:18.752000pt;}
.x32{left:19.680000pt;}
.x35{left:20.640000pt;}
.x40{left:21.600000pt;}
.x1a{left:22.920000pt;}
.x3e{left:24.000000pt;}
.x24{left:24.992000pt;}
.x3b{left:25.960000pt;}
.x22{left:26.880000pt;}
.x37{left:28.000000pt;}
.x1c{left:30.240000pt;}
.x16{left:32.000000pt;}
.x14{left:33.440000pt;}
.x25{left:34.720000pt;}
.x3f{left:35.680000pt;}
.x1{left:37.759988pt;}
.x20{left:38.752000pt;}
.x33{left:42.554667pt;}
.x3d{left:47.200000pt;}
.x1f{left:49.152000pt;}
.xf{left:50.592000pt;}
.x3c{left:55.400000pt;}
.x39{left:57.280000pt;}
.x27{left:62.074667pt;}
.xe{left:68.800000pt;}
.xb{left:75.519988pt;}
.x2f{left:79.391988pt;}
.x26{left:85.152000pt;}
.xc{left:86.111988pt;}
.x31{left:104.512000pt;}
.x4{left:106.111988pt;}
.x5{left:111.231988pt;}
.xa{left:113.311988pt;}
.x41{left:122.751988pt;}
.x10{left:219.546667pt;}
.x30{left:221.786655pt;}
.xd{left:225.786655pt;}
.x28{left:254.466667pt;}
.x12{left:275.106667pt;}
.x8{left:279.586655pt;}
.x6{left:292.546655pt;}
.x29{left:311.106667pt;}
.x2{left:328.226655pt;}
.x7{left:348.386655pt;}
.x34{left:369.026667pt;}
.x15{left:378.466667pt;}
.x9{left:394.466655pt;}
.x3{left:396.866655pt;}
.x36{left:458.973333pt;}
.x17{left:481.693333pt;}
.x2a{left:498.173333pt;}
.x19{left:570.653333pt;}
.x2d{left:587.333333pt;}
.x38{left:588.773333pt;}
.x1b{left:622.533333pt;}
.x2e{left:639.013333pt;}
}




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