
    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_e6775e245bc74440afae997b.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a4cd77f2ca08f1b05ce9d612.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_6be7b47981f5577b064be325.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_982d83a28877496b82418ea3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_2a604227b3c43f2d2c44dc27.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_4f8409a67486af6c364c6797.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897461;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_d3653b76f3453ad561c80e5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_8a1ac3f33d201a2dae11bc23.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:ffb;src:url('chunks/assets/font_c38afdba26b7e45959be0ef7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.080640px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.ls6{letter-spacing:27.089280px;}
.ls7{letter-spacing:36.449280px;}
.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;}
}
.ws6{word-spacing:-66.240000px;}
.ws0{word-spacing:-18.305520px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.450800px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.045440px;}
._1{width:1.932720px;}
._6{width:2.980800px;}
._8{width:4.901760px;}
._e{width:6.249600px;}
._d{width:7.551360px;}
._2{width:9.538560px;}
._a{width:11.393280px;}
._b{width:12.813600px;}
._f{width:14.094720px;}
._3{width:15.301440px;}
._12{width:17.570640px;}
._11{width:18.613440px;}
._4{width:19.673280px;}
._5{width:21.726720px;}
._7{width:22.915920px;}
._c{width:24.566880px;}
._10{width:26.959680px;}
._9{width:28.462080px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.600000px;}
.y5c{bottom:3.780000px;}
.y6{bottom:6.660000px;}
.y4{bottom:42.660000px;}
.y8c{bottom:61.920000px;}
.y38{bottom:65.160000px;}
.y58{bottom:70.416000px;}
.y75{bottom:80.856000px;}
.y6b{bottom:84.636000px;}
.y57{bottom:89.676000px;}
.y8b{bottom:89.856000px;}
.y37{bottom:93.096000px;}
.y56{bottom:104.976000px;}
.y74{bottom:108.756000px;}
.y36{bottom:112.356000px;}
.y6a{bottom:112.536000px;}
.y8a{bottom:117.936000px;}
.y35{bottom:131.256000px;}
.y73{bottom:136.656000px;}
.y89{bottom:137.016000px;}
.y69{bottom:140.616000px;}
.y72{bottom:152.130000px;}
.y34{bottom:159.150000px;}
.y88{bottom:164.730000px;}
.y68{bottom:168.510000px;}
.y33{bottom:178.230000px;}
.y67{bottom:183.990000px;}
.y32{bottom:197.130000px;}
.y87{bottom:202.890000px;}
.y31{bottom:216.210000px;}
.y86{bottom:221.970000px;}
.y30{bottom:243.930000px;}
.y85{bottom:249.690000px;}
.y2f{bottom:263.190000px;}
.y84{bottom:268.770000px;}
.y2e{bottom:282.090000px;}
.y83{bottom:287.850000px;}
.y2d{bottom:300.990000px;}
.y82{bottom:306.750000px;}
.y2c{bottom:328.890000px;}
.y81{bottom:334.650000px;}
.y2b{bottom:348.015000px;}
.y80{bottom:353.775000px;}
.y2a{bottom:367.095000px;}
.yab{bottom:369.255000px;}
.y7f{bottom:372.675000px;}
.y29{bottom:385.995000px;}
.y7e{bottom:391.755000px;}
.yaa{bottom:397.335000px;}
.y28{bottom:404.895000px;}
.y7d{bottom:419.475000px;}
.ya9{bottom:425.235000px;}
.y27{bottom:432.795000px;}
.y7c{bottom:447.555000px;}
.ya8{bottom:453.135000px;}
.y71{bottom:456.375000px;}
.y26{bottom:460.695000px;}
.y7b{bottom:466.635000px;}
.y55{bottom:470.775000px;}
.y25{bottom:479.955000px;}
.ya7{bottom:481.215000px;}
.y7a{bottom:481.935000px;}
.y70{bottom:484.275000px;}
.y54{bottom:498.675000px;}
.y6f{bottom:499.755000px;}
.y24{bottom:507.675000px;}
.ya6{bottom:509.115000px;}
.y53{bottom:517.755000px;}
.y66{bottom:520.635000px;}
.ya5{bottom:528.195000px;}
.y23{bottom:535.575000px;}
.y52{bottom:536.835000px;}
.y65{bottom:548.535000px;}
.y22{bottom:554.835000px;}
.ya4{bottom:557.355000px;}
.y51{bottom:564.555000px;}
.y64{bottom:567.615000px;}
.y21{bottom:573.735000px;}
.ya3{bottom:576.435000px;}
.y63{bottom:582.915000px;}
.y50{bottom:583.815000px;}
.y20{bottom:592.815000px;}
.y4f{bottom:602.715000px;}
.ya2{bottom:605.445000px;}
.y1f{bottom:611.745000px;}
.ya1{bottom:624.525000px;}
.y4e{bottom:630.645000px;}
.y1e{bottom:639.645000px;}
.y4d{bottom:649.725000px;}
.ya0{bottom:653.505000px;}
.y1d{bottom:658.725000px;}
.y4c{bottom:668.625000px;}
.y9f{bottom:672.585000px;}
.y1c{bottom:677.625000px;}
.y4b{bottom:696.525000px;}
.y1b{bottom:696.705000px;}
.y9e{bottom:701.745000px;}
.y1a{bottom:715.605000px;}
.y9d{bottom:720.825000px;}
.y4a{bottom:724.425000px;}
.y19{bottom:734.685000px;}
.y49{bottom:743.685000px;}
.y9c{bottom:749.805000px;}
.y48{bottom:762.585000px;}
.y9b{bottom:768.885000px;}
.y18{bottom:771.405000px;}
.y79{bottom:787.245000px;}
.y47{bottom:790.305000px;}
.y17{bottom:790.485000px;}
.y9a{bottom:798.045000px;}
.y6e{bottom:805.065000px;}
.y46{bottom:809.565000px;}
.y78{bottom:815.325000px;}
.y99{bottom:817.125000px;}
.y16{bottom:818.385000px;}
.y45{bottom:828.465000px;}
.y6d{bottom:833.145000px;}
.y77{bottom:834.405000px;}
.y15{bottom:837.465000px;}
.y98{bottom:846.105000px;}
.y6c{bottom:848.625000px;}
.y76{bottom:849.705000px;}
.y44{bottom:856.365000px;}
.y14{bottom:856.545000px;}
.y97{bottom:865.185000px;}
.y13{bottom:875.490000px;}
.y96{bottom:885.390000px;}
.y12{bottom:894.390000px;}
.y95{bottom:913.290000px;}
.y11{bottom:913.470000px;}
.y43{bottom:922.290000px;}
.y10{bottom:932.370000px;}
.y42{bottom:941.370000px;}
.yf{bottom:951.450000px;}
.y62{bottom:955.770000px;}
.y94{bottom:960.270000px;}
.y41{bottom:960.450000px;}
.ye{bottom:970.350000px;}
.y93{bottom:979.350000px;}
.y61{bottom:983.670000px;}
.y40{bottom:988.170000px;}
.yd{bottom:989.250000px;}
.y60{bottom:1002.750000px;}
.y92{bottom:1007.070000px;}
.y3f{bottom:1007.250000px;}
.yc{bottom:1008.330000px;}
.y3e{bottom:1026.330000px;}
.y5f{bottom:1027.950000px;}
.y91{bottom:1035.150000px;}
.y5e{bottom:1047.570000px;}
.yb{bottom:1051.170000px;}
.y3d{bottom:1054.050000px;}
.y90{bottom:1054.230000px;}
.y5d{bottom:1067.370000px;}
.ya{bottom:1070.250000px;}
.y8f{bottom:1073.310000px;}
.y3c{bottom:1082.130000px;}
.y9{bottom:1083.210000px;}
.y5b{bottom:1086.990000px;}
.y8e{bottom:1092.210000px;}
.y3b{bottom:1101.210000px;}
.y8{bottom:1102.290000px;}
.y59{bottom:1106.790000px;}
.y8d{bottom:1120.110000px;}
.y3a{bottom:1120.290000px;}
.y7{bottom:1139.040000px;}
.y39{bottom:1139.220000px;}
.y3{bottom:1159.020000px;}
.y2{bottom:1178.640000px;}
.y5{bottom:1181.700000px;}
.y1{bottom:1200.060000px;}
.hc{height:18.900000px;}
.hd{height:19.080000px;}
.h5{height:23.580000px;}
.h9{height:30.198516px;}
.hb{height:46.736719px;}
.h7{height:47.901094px;}
.h4{height:48.224531px;}
.h6{height:52.417969px;}
.h8{height:53.224453px;}
.ha{height:54.596250px;}
.h2{height:61.468945px;}
.h3{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.560000px;}
.w5{width:61.920000px;}
.w7{width:61.956000px;}
.w8{width:74.160000px;}
.w4{width:106.236000px;}
.w9{width:119.376000px;}
.w3{width:151.020000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:11.880000px;}
.x1a{left:14.220000px;}
.x4{left:16.920000px;}
.xd{left:19.620000px;}
.x19{left:20.880000px;}
.x17{left:23.760000px;}
.xf{left:25.200000px;}
.x12{left:28.080000px;}
.x16{left:29.700000px;}
.x14{left:32.400000px;}
.x1b{left:41.220000px;}
.x1{left:75.599987px;}
.x20{left:78.479987px;}
.x1d{left:82.979987px;}
.x26{left:84.239987px;}
.x6{left:89.315987px;}
.x24{left:96.335987px;}
.x22{left:97.955987px;}
.x23{left:105.515987px;}
.x5{left:124.235987px;}
.xc{left:207.030000px;}
.x8{left:226.829987px;}
.x9{left:234.029987px;}
.xb{left:298.154987px;}
.xe{left:314.175000px;}
.x1e{left:327.674987px;}
.x10{left:376.815000px;}
.x27{left:386.354987px;}
.x7{left:418.394987px;}
.x25{left:420.734987px;}
.x11{left:430.095000px;}
.x13{left:492.945000px;}
.x15{left:568.005000px;}
.xa{left:662.009987px;}
.x3{left:673.530000px;}
.x21{left:680.009987px;}
.x1f{left:690.269987px;}
.x1c{left:716.369987px;}
.x2{left:791.249987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.071680pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls6{letter-spacing:24.079360pt;}
.ls7{letter-spacing:32.399360pt;}
.ws6{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.622933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-0.929280pt;}
._1{width:1.717973pt;}
._6{width:2.649600pt;}
._8{width:4.357120pt;}
._e{width:5.555200pt;}
._d{width:6.712320pt;}
._2{width:8.478720pt;}
._a{width:10.127360pt;}
._b{width:11.389867pt;}
._f{width:12.528640pt;}
._3{width:13.601280pt;}
._12{width:15.618347pt;}
._11{width:16.545280pt;}
._4{width:17.487360pt;}
._5{width:19.312640pt;}
._7{width:20.369707pt;}
._c{width:21.837227pt;}
._10{width:23.964160pt;}
._9{width:25.299627pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:3.200000pt;}
.y5c{bottom:3.360000pt;}
.y6{bottom:5.920000pt;}
.y4{bottom:37.920000pt;}
.y8c{bottom:55.040000pt;}
.y38{bottom:57.920000pt;}
.y58{bottom:62.592000pt;}
.y75{bottom:71.872000pt;}
.y6b{bottom:75.232000pt;}
.y57{bottom:79.712000pt;}
.y8b{bottom:79.872000pt;}
.y37{bottom:82.752000pt;}
.y56{bottom:93.312000pt;}
.y74{bottom:96.672000pt;}
.y36{bottom:99.872000pt;}
.y6a{bottom:100.032000pt;}
.y8a{bottom:104.832000pt;}
.y35{bottom:116.672000pt;}
.y73{bottom:121.472000pt;}
.y89{bottom:121.792000pt;}
.y69{bottom:124.992000pt;}
.y72{bottom:135.226667pt;}
.y34{bottom:141.466667pt;}
.y88{bottom:146.426667pt;}
.y68{bottom:149.786667pt;}
.y33{bottom:158.426667pt;}
.y67{bottom:163.546667pt;}
.y32{bottom:175.226667pt;}
.y87{bottom:180.346667pt;}
.y31{bottom:192.186667pt;}
.y86{bottom:197.306667pt;}
.y30{bottom:216.826667pt;}
.y85{bottom:221.946667pt;}
.y2f{bottom:233.946667pt;}
.y84{bottom:238.906667pt;}
.y2e{bottom:250.746667pt;}
.y83{bottom:255.866667pt;}
.y2d{bottom:267.546667pt;}
.y82{bottom:272.666667pt;}
.y2c{bottom:292.346667pt;}
.y81{bottom:297.466667pt;}
.y2b{bottom:309.346667pt;}
.y80{bottom:314.466667pt;}
.y2a{bottom:326.306667pt;}
.yab{bottom:328.226667pt;}
.y7f{bottom:331.266667pt;}
.y29{bottom:343.106667pt;}
.y7e{bottom:348.226667pt;}
.yaa{bottom:353.186667pt;}
.y28{bottom:359.906667pt;}
.y7d{bottom:372.866667pt;}
.ya9{bottom:377.986667pt;}
.y27{bottom:384.706667pt;}
.y7c{bottom:397.826667pt;}
.ya8{bottom:402.786667pt;}
.y71{bottom:405.666667pt;}
.y26{bottom:409.506667pt;}
.y7b{bottom:414.786667pt;}
.y55{bottom:418.466667pt;}
.y25{bottom:426.626667pt;}
.ya7{bottom:427.746667pt;}
.y7a{bottom:428.386667pt;}
.y70{bottom:430.466667pt;}
.y54{bottom:443.266667pt;}
.y6f{bottom:444.226667pt;}
.y24{bottom:451.266667pt;}
.ya6{bottom:452.546667pt;}
.y53{bottom:460.226667pt;}
.y66{bottom:462.786667pt;}
.ya5{bottom:469.506667pt;}
.y23{bottom:476.066667pt;}
.y52{bottom:477.186667pt;}
.y65{bottom:487.586667pt;}
.y22{bottom:493.186667pt;}
.ya4{bottom:495.426667pt;}
.y51{bottom:501.826667pt;}
.y64{bottom:504.546667pt;}
.y21{bottom:509.986667pt;}
.ya3{bottom:512.386667pt;}
.y63{bottom:518.146667pt;}
.y50{bottom:518.946667pt;}
.y20{bottom:526.946667pt;}
.y4f{bottom:535.746667pt;}
.ya2{bottom:538.173333pt;}
.y1f{bottom:543.773333pt;}
.ya1{bottom:555.133333pt;}
.y4e{bottom:560.573333pt;}
.y1e{bottom:568.573333pt;}
.y4d{bottom:577.533333pt;}
.ya0{bottom:580.893333pt;}
.y1d{bottom:585.533333pt;}
.y4c{bottom:594.333333pt;}
.y9f{bottom:597.853333pt;}
.y1c{bottom:602.333333pt;}
.y4b{bottom:619.133333pt;}
.y1b{bottom:619.293333pt;}
.y9e{bottom:623.773333pt;}
.y1a{bottom:636.093333pt;}
.y9d{bottom:640.733333pt;}
.y4a{bottom:643.933333pt;}
.y19{bottom:653.053333pt;}
.y49{bottom:661.053333pt;}
.y9c{bottom:666.493333pt;}
.y48{bottom:677.853333pt;}
.y9b{bottom:683.453333pt;}
.y18{bottom:685.693333pt;}
.y79{bottom:699.773333pt;}
.y47{bottom:702.493333pt;}
.y17{bottom:702.653333pt;}
.y9a{bottom:709.373333pt;}
.y6e{bottom:715.613333pt;}
.y46{bottom:719.613333pt;}
.y78{bottom:724.733333pt;}
.y99{bottom:726.333333pt;}
.y16{bottom:727.453333pt;}
.y45{bottom:736.413333pt;}
.y6d{bottom:740.573333pt;}
.y77{bottom:741.693333pt;}
.y15{bottom:744.413333pt;}
.y98{bottom:752.093333pt;}
.y6c{bottom:754.333333pt;}
.y76{bottom:755.293333pt;}
.y44{bottom:761.213333pt;}
.y14{bottom:761.373333pt;}
.y97{bottom:769.053333pt;}
.y13{bottom:778.213333pt;}
.y96{bottom:787.013333pt;}
.y12{bottom:795.013333pt;}
.y95{bottom:811.813333pt;}
.y11{bottom:811.973333pt;}
.y43{bottom:819.813333pt;}
.y10{bottom:828.773333pt;}
.y42{bottom:836.773333pt;}
.yf{bottom:845.733333pt;}
.y62{bottom:849.573333pt;}
.y94{bottom:853.573333pt;}
.y41{bottom:853.733333pt;}
.ye{bottom:862.533333pt;}
.y93{bottom:870.533333pt;}
.y61{bottom:874.373333pt;}
.y40{bottom:878.373333pt;}
.yd{bottom:879.333333pt;}
.y60{bottom:891.333333pt;}
.y92{bottom:895.173333pt;}
.y3f{bottom:895.333333pt;}
.yc{bottom:896.293333pt;}
.y3e{bottom:912.293333pt;}
.y5f{bottom:913.733333pt;}
.y91{bottom:920.133333pt;}
.y5e{bottom:931.173333pt;}
.yb{bottom:934.373333pt;}
.y3d{bottom:936.933333pt;}
.y90{bottom:937.093333pt;}
.y5d{bottom:948.773333pt;}
.ya{bottom:951.333333pt;}
.y8f{bottom:954.053333pt;}
.y3c{bottom:961.893333pt;}
.y9{bottom:962.853333pt;}
.y5b{bottom:966.213333pt;}
.y8e{bottom:970.853333pt;}
.y3b{bottom:978.853333pt;}
.y8{bottom:979.813333pt;}
.y59{bottom:983.813333pt;}
.y8d{bottom:995.653333pt;}
.y3a{bottom:995.813333pt;}
.y7{bottom:1012.480000pt;}
.y39{bottom:1012.640000pt;}
.y3{bottom:1030.240000pt;}
.y2{bottom:1047.680000pt;}
.y5{bottom:1050.400000pt;}
.y1{bottom:1066.720000pt;}
.hc{height:16.800000pt;}
.hd{height:16.960000pt;}
.h5{height:20.960000pt;}
.h9{height:26.843125pt;}
.hb{height:41.543750pt;}
.h7{height:42.578750pt;}
.h4{height:42.866250pt;}
.h6{height:46.593750pt;}
.h8{height:47.310625pt;}
.ha{height:48.530000pt;}
.h2{height:54.639063pt;}
.h3{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.720000pt;}
.w5{width:55.040000pt;}
.w7{width:55.072000pt;}
.w8{width:65.920000pt;}
.w4{width:94.432000pt;}
.w9{width:106.112000pt;}
.w3{width:134.240000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:10.560000pt;}
.x1a{left:12.640000pt;}
.x4{left:15.040000pt;}
.xd{left:17.440000pt;}
.x19{left:18.560000pt;}
.x17{left:21.120000pt;}
.xf{left:22.400000pt;}
.x12{left:24.960000pt;}
.x16{left:26.400000pt;}
.x14{left:28.800000pt;}
.x1b{left:36.640000pt;}
.x1{left:67.199988pt;}
.x20{left:69.759988pt;}
.x1d{left:73.759988pt;}
.x26{left:74.879988pt;}
.x6{left:79.391988pt;}
.x24{left:85.631988pt;}
.x22{left:87.071988pt;}
.x23{left:93.791988pt;}
.x5{left:110.431988pt;}
.xc{left:184.026667pt;}
.x8{left:201.626655pt;}
.x9{left:208.026655pt;}
.xb{left:265.026655pt;}
.xe{left:279.266667pt;}
.x1e{left:291.266655pt;}
.x10{left:334.946667pt;}
.x27{left:343.426655pt;}
.x7{left:371.906655pt;}
.x25{left:373.986655pt;}
.x11{left:382.306667pt;}
.x13{left:438.173333pt;}
.x15{left:504.893333pt;}
.xa{left:588.453322pt;}
.x3{left:598.693333pt;}
.x21{left:604.453322pt;}
.x1f{left:613.573322pt;}
.x1c{left:636.773322pt;}
.x2{left:703.333322pt;}
}




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