
    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_721e27f25f12ef7bff135833.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b3ee15615b73314d3652c721.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_90398d663364ab71d1cb0398.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694336;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_e2ba157d0fcae691e3ff4864.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_0e73da95dafaf1b521c72730.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bfee548ad028e201e70c974a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_76871a661176e8bd624c50e3.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_84879ffe692b593a37ec5e3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_d40d76dff27e7d1086c12316.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747070;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;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:10.236000px;}
.ls2{letter-spacing:21.744000px;}
.ls9{letter-spacing:21.864000px;}
.ls6{letter-spacing:21.924000px;}
.ls1{letter-spacing:33.276000px;}
.ls8{letter-spacing:44.784000px;}
.ls5{letter-spacing:53.436000px;}
.ls0{letter-spacing:127.258560px;}
.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:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.096480px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-3.432000px;}
._4{margin-left:-2.148000px;}
._0{margin-left:-1.080000px;}
._1{width:1.428000px;}
._c{width:2.556000px;}
._9{width:3.672000px;}
._a{width:4.692000px;}
._2{width:6.048000px;}
._3{width:7.344000px;}
._5{width:8.640000px;}
._8{width:9.744000px;}
._1b{width:11.316000px;}
._1a{width:12.456000px;}
._1d{width:13.740000px;}
._1e{width:15.420000px;}
._10{width:19.356000px;}
._11{width:20.484000px;}
._17{width:23.088000px;}
._6{width:24.120000px;}
._7{width:25.404000px;}
._19{width:27.192000px;}
._18{width:28.572000px;}
._e{width:32.184000px;}
._f{width:33.732000px;}
._12{width:36.216000px;}
._13{width:37.440000px;}
._14{width:38.808000px;}
._1f{width:43.044000px;}
._15{width:44.364000px;}
._16{width:46.248000px;}
._b{width:114.513120px;}
._1c{width:846.312000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y74{bottom:4.305000px;}
.y52{bottom:4.320000px;}
.y60{bottom:4.665000px;}
.y47{bottom:4.680000px;}
.y98{bottom:5.025000px;}
.y5b{bottom:5.040000px;}
.y4f{bottom:5.385000px;}
.y4b{bottom:5.400000px;}
.y1a{bottom:5.760000px;}
.y1e{bottom:6.120000px;}
.y18{bottom:7.200000px;}
.y32{bottom:7.545000px;}
.y17{bottom:7.560000px;}
.y29{bottom:7.590000px;}
.y5d{bottom:7.605000px;}
.y1d{bottom:7.920000px;}
.y81{bottom:13.665000px;}
.y6f{bottom:13.680000px;}
.y48{bottom:14.040000px;}
.y6c{bottom:14.400000px;}
.y23{bottom:16.560000px;}
.y33{bottom:16.905000px;}
.y26{bottom:16.920000px;}
.y2a{bottom:16.950000px;}
.ybf{bottom:16.965000px;}
.yb9{bottom:19.080000px;}
.yf{bottom:22.665000px;}
.y9b{bottom:22.680000px;}
.y9a{bottom:23.040000px;}
.y75{bottom:24.105000px;}
.y93{bottom:24.135000px;}
.y8e{bottom:24.165000px;}
.y73{bottom:25.185000px;}
.y46{bottom:25.200000px;}
.y92{bottom:25.215000px;}
.y84{bottom:25.230000px;}
.y8d{bottom:25.245000px;}
.y43{bottom:25.605000px;}
.y42{bottom:28.485000px;}
.yba{bottom:30.960000px;}
.y31{bottom:31.305000px;}
.y2c{bottom:31.320000px;}
.y28{bottom:31.350000px;}
.y22{bottom:31.365000px;}
.y25{bottom:31.680000px;}
.y2f{bottom:31.725000px;}
.yd{bottom:37.785000px;}
.y72{bottom:45.705000px;}
.y8c{bottom:45.765000px;}
.y78{bottom:46.065000px;}
.y91{bottom:46.095000px;}
.y41{bottom:49.005000px;}
.yc{bottom:61.230000px;}
.ye{bottom:61.590000px;}
.yb7{bottom:111.636000px;}
.y15{bottom:143.676000px;}
.yb6{bottom:148.356000px;}
.y30{bottom:159.525000px;}
.y6a{bottom:162.390000px;}
.y5f{bottom:177.885000px;}
.yb5{bottom:187.230000px;}
.y69{bottom:201.270000px;}
.y5e{bottom:201.630000px;}
.yc0{bottom:203.445000px;}
.y2e{bottom:207.030000px;}
.y83{bottom:217.125000px;}
.y5c{bottom:225.390000px;}
.ybe{bottom:227.190000px;}
.y5a{bottom:249.195000px;}
.y2d{bottom:254.955000px;}
.y82{bottom:258.555000px;}
.y59{bottom:272.955000px;}
.ybd{bottom:275.115000px;}
.ybc{bottom:298.875000px;}
.y3e{bottom:301.395000px;}
.y2b{bottom:302.475000px;}
.y68{bottom:305.355000px;}
.y80{bottom:321.210000px;}
.y3d{bottom:321.915000px;}
.ybb{bottom:346.395000px;}
.y27{bottom:349.995000px;}
.y3c{bottom:361.185000px;}
.y7f{bottom:362.625000px;}
.yb8{bottom:370.185000px;}
.y58{bottom:377.025000px;}
.y24{bottom:397.545000px;}
.y67{bottom:409.425000px;}
.y57{bottom:418.425000px;}
.y7e{bottom:425.265000px;}
.y21{bottom:445.425000px;}
.yb4{bottom:464.145000px;}
.y3b{bottom:465.225000px;}
.y7d{bottom:466.665000px;}
.y56{bottom:481.110000px;}
.yb3{bottom:484.710000px;}
.y20{bottom:492.990000px;}
.yb2{bottom:507.030000px;}
.y66{bottom:513.510000px;}
.y14{bottom:521.430000px;}
.y55{bottom:528.990000px;}
.y7c{bottom:529.350000px;}
.yb1{bottom:550.950000px;}
.y54{bottom:552.750000px;}
.y13{bottom:560.310000px;}
.y7b{bottom:570.750000px;}
.yb0{bottom:572.910000px;}
.y1f{bottom:576.150000px;}
.y53{bottom:576.510000px;}
.yaf{bottom:594.870000px;}
.y1c{bottom:599.940000px;}
.y3a{bottom:604.980000px;}
.y65{bottom:617.580000px;}
.y1b{bottom:624.060000px;}
.y39{bottom:625.500000px;}
.y7a{bottom:633.420000px;}
.y8a{bottom:634.860000px;}
.yae{bottom:635.220000px;}
.y19{bottom:647.820000px;}
.y9c{bottom:651.060000px;}
.yad{bottom:658.620000px;}
.y38{bottom:664.740000px;}
.y16{bottom:671.580000px;}
.y79{bottom:674.820000px;}
.y51{bottom:680.580000px;}
.yac{bottom:688.500000px;}
.y99{bottom:692.460000px;}
.y12{bottom:700.020000px;}
.yab{bottom:719.490000px;}
.y11{bottom:720.570000px;}
.y64{bottom:721.650000px;}
.y50{bottom:722.010000px;}
.y77{bottom:737.505000px;}
.yaa{bottom:741.450000px;}
.y10{bottom:741.465000px;}
.y89{bottom:754.050000px;}
.y37{bottom:768.810000px;}
.y97{bottom:770.265000px;}
.ya9{bottom:781.770000px;}
.y4e{bottom:784.665000px;}
.yb{bottom:788.265000px;}
.y96{bottom:794.010000px;}
.y76{bottom:799.770000px;}
.ya8{bottom:802.290000px;}
.y4d{bottom:808.410000px;}
.y95{bottom:817.770000px;}
.ya7{bottom:824.250000px;}
.y4c{bottom:832.170000px;}
.y94{bottom:841.575000px;}
.ya6{bottom:846.255000px;}
.y63{bottom:846.615000px;}
.y4a{bottom:855.975000px;}
.y71{bottom:862.470000px;}
.ya5{bottom:868.215000px;}
.y88{bottom:870.015000px;}
.ya{bottom:874.695000px;}
.y49{bottom:879.735000px;}
.y87{bottom:890.895000px;}
.y36{bottom:908.175000px;}
.ya4{bottom:908.535000px;}
.y9{bottom:920.055000px;}
.y70{bottom:924.375000px;}
.ya3{bottom:929.055000px;}
.y86{bottom:929.775000px;}
.y8{bottom:943.455000px;}
.y90{bottom:945.630000px;}
.y35{bottom:947.415000px;}
.ya2{bottom:951.015000px;}
.y45{bottom:963.285000px;}
.y7{bottom:967.245000px;}
.y62{bottom:971.205000px;}
.y6e{bottom:987.045000px;}
.y6{bottom:991.005000px;}
.ya1{bottom:991.365000px;}
.y44{bottom:1004.685000px;}
.y8f{bottom:1007.925000px;}
.y5{bottom:1014.765000px;}
.y6d{bottom:1028.445000px;}
.ya0{bottom:1030.245000px;}
.y4{bottom:1038.525000px;}
.y34{bottom:1051.485000px;}
.y85{bottom:1054.725000px;}
.y40{bottom:1067.325000px;}
.y9f{bottom:1068.765000px;}
.y8b{bottom:1070.565000px;}
.y61{bottom:1075.245000px;}
.y3{bottom:1077.765000px;}
.y6b{bottom:1091.130000px;}
.y9e{bottom:1092.570000px;}
.y9d{bottom:1116.330000px;}
.y2{bottom:1116.690000px;}
.y3f{bottom:1132.530000px;}
.y1{bottom:1140.090000px;}
.hb{height:23.745000px;}
.h8{height:23.760000px;}
.h15{height:23.790000px;}
.ha{height:23.796000px;}
.h16{height:24.105000px;}
.h9{height:24.120000px;}
.h5{height:38.505000px;}
.h1c{height:38.916000px;}
.h13{height:41.400000px;}
.h19{height:41.421000px;}
.h14{height:41.436000px;}
.h10{height:47.505000px;}
.he{height:47.520000px;}
.hc{height:47.556000px;}
.hd{height:47.880000px;}
.hf{height:47.916000px;}
.h1d{height:48.839062px;}
.h17{height:61.905000px;}
.h1a{height:61.956000px;}
.h18{height:62.265000px;}
.h1b{height:62.301000px;}
.h12{height:65.196000px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h7{height:74.004654px;}
.h11{height:74.953125px;}
.h4{height:77.781000px;}
.h3{height:100.437187px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:54.000000px;}
.wd{width:65.916000px;}
.w8{width:67.356000px;}
.wa{width:67.716000px;}
.we{width:74.916000px;}
.wc{width:78.516000px;}
.w7{width:81.036000px;}
.wf{width:92.196000px;}
.w5{width:127.080000px;}
.w3{width:127.470000px;}
.w2{width:127.485000px;}
.w4{width:127.512000px;}
.wb{width:358.350000px;}
.w6{width:378.180000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xa{left:7.200000px;}
.x6{left:8.265000px;}
.x9{left:10.440000px;}
.xc{left:12.600000px;}
.x24{left:14.430000px;}
.x19{left:16.560000px;}
.x7{left:18.345000px;}
.x18{left:22.680000px;}
.x14{left:24.840000px;}
.x29{left:26.640000px;}
.x28{left:28.470000px;}
.x17{left:29.520000px;}
.xe{left:30.585000px;}
.x12{left:31.680000px;}
.x1f{left:34.959000px;}
.x1b{left:39.999000px;}
.xf{left:52.935000px;}
.x22{left:104.076000px;}
.x10{left:125.676000px;}
.x3{left:127.512000px;}
.x1{left:130.752000px;}
.x1c{left:154.515000px;}
.x1a{left:159.555000px;}
.x20{left:180.435000px;}
.x5{left:191.610000px;}
.x1e{left:207.435000px;}
.x1d{left:208.515000px;}
.x4{left:214.665000px;}
.x21{left:304.350000px;}
.x8{left:319.110000px;}
.x2{left:388.980000px;}
.xb{left:446.580000px;}
.x23{left:462.420000px;}
.x11{left:503.850000px;}
.x25{left:540.930000px;}
.xd{left:574.470000px;}
.x13{left:584.895000px;}
.x26{left:606.855000px;}
.x15{left:652.245000px;}
.x27{left:681.765000px;}
.x16{left:706.245000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:9.098667pt;}
.ls2{letter-spacing:19.328000pt;}
.ls9{letter-spacing:19.434667pt;}
.ls6{letter-spacing:19.488000pt;}
.ls1{letter-spacing:29.578667pt;}
.ls8{letter-spacing:39.808000pt;}
.ls5{letter-spacing:47.498667pt;}
.ls0{letter-spacing:113.118720pt;}
.ws2{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.085760pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-3.050667pt;}
._4{margin-left:-1.909333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.269333pt;}
._c{width:2.272000pt;}
._9{width:3.264000pt;}
._a{width:4.170667pt;}
._2{width:5.376000pt;}
._3{width:6.528000pt;}
._5{width:7.680000pt;}
._8{width:8.661333pt;}
._1b{width:10.058667pt;}
._1a{width:11.072000pt;}
._1d{width:12.213333pt;}
._1e{width:13.706667pt;}
._10{width:17.205333pt;}
._11{width:18.208000pt;}
._17{width:20.522667pt;}
._6{width:21.440000pt;}
._7{width:22.581333pt;}
._19{width:24.170667pt;}
._18{width:25.397333pt;}
._e{width:28.608000pt;}
._f{width:29.984000pt;}
._12{width:32.192000pt;}
._13{width:33.280000pt;}
._14{width:34.496000pt;}
._1f{width:38.261333pt;}
._15{width:39.434667pt;}
._16{width:41.109333pt;}
._b{width:101.789440pt;}
._1c{width:752.277333pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:3.826667pt;}
.y52{bottom:3.840000pt;}
.y60{bottom:4.146667pt;}
.y47{bottom:4.160000pt;}
.y98{bottom:4.466667pt;}
.y5b{bottom:4.480000pt;}
.y4f{bottom:4.786667pt;}
.y4b{bottom:4.800000pt;}
.y1a{bottom:5.120000pt;}
.y1e{bottom:5.440000pt;}
.y18{bottom:6.400000pt;}
.y32{bottom:6.706667pt;}
.y17{bottom:6.720000pt;}
.y29{bottom:6.746667pt;}
.y5d{bottom:6.760000pt;}
.y1d{bottom:7.040000pt;}
.y81{bottom:12.146667pt;}
.y6f{bottom:12.160000pt;}
.y48{bottom:12.480000pt;}
.y6c{bottom:12.800000pt;}
.y23{bottom:14.720000pt;}
.y33{bottom:15.026667pt;}
.y26{bottom:15.040000pt;}
.y2a{bottom:15.066667pt;}
.ybf{bottom:15.080000pt;}
.yb9{bottom:16.960000pt;}
.yf{bottom:20.146667pt;}
.y9b{bottom:20.160000pt;}
.y9a{bottom:20.480000pt;}
.y75{bottom:21.426667pt;}
.y93{bottom:21.453333pt;}
.y8e{bottom:21.480000pt;}
.y73{bottom:22.386667pt;}
.y46{bottom:22.400000pt;}
.y92{bottom:22.413333pt;}
.y84{bottom:22.426667pt;}
.y8d{bottom:22.440000pt;}
.y43{bottom:22.760000pt;}
.y42{bottom:25.320000pt;}
.yba{bottom:27.520000pt;}
.y31{bottom:27.826667pt;}
.y2c{bottom:27.840000pt;}
.y28{bottom:27.866667pt;}
.y22{bottom:27.880000pt;}
.y25{bottom:28.160000pt;}
.y2f{bottom:28.200000pt;}
.yd{bottom:33.586667pt;}
.y72{bottom:40.626667pt;}
.y8c{bottom:40.680000pt;}
.y78{bottom:40.946667pt;}
.y91{bottom:40.973333pt;}
.y41{bottom:43.560000pt;}
.yc{bottom:54.426667pt;}
.ye{bottom:54.746667pt;}
.yb7{bottom:99.232000pt;}
.y15{bottom:127.712000pt;}
.yb6{bottom:131.872000pt;}
.y30{bottom:141.800000pt;}
.y6a{bottom:144.346667pt;}
.y5f{bottom:158.120000pt;}
.yb5{bottom:166.426667pt;}
.y69{bottom:178.906667pt;}
.y5e{bottom:179.226667pt;}
.yc0{bottom:180.840000pt;}
.y2e{bottom:184.026667pt;}
.y83{bottom:193.000000pt;}
.y5c{bottom:200.346667pt;}
.ybe{bottom:201.946667pt;}
.y5a{bottom:221.506667pt;}
.y2d{bottom:226.626667pt;}
.y82{bottom:229.826667pt;}
.y59{bottom:242.626667pt;}
.ybd{bottom:244.546667pt;}
.ybc{bottom:265.666667pt;}
.y3e{bottom:267.906667pt;}
.y2b{bottom:268.866667pt;}
.y68{bottom:271.426667pt;}
.y80{bottom:285.520000pt;}
.y3d{bottom:286.146667pt;}
.ybb{bottom:307.906667pt;}
.y27{bottom:311.106667pt;}
.y3c{bottom:321.053333pt;}
.y7f{bottom:322.333333pt;}
.yb8{bottom:329.053333pt;}
.y58{bottom:335.133333pt;}
.y24{bottom:353.373333pt;}
.y67{bottom:363.933333pt;}
.y57{bottom:371.933333pt;}
.y7e{bottom:378.013333pt;}
.y21{bottom:395.933333pt;}
.yb4{bottom:412.573333pt;}
.y3b{bottom:413.533333pt;}
.y7d{bottom:414.813333pt;}
.y56{bottom:427.653333pt;}
.yb3{bottom:430.853333pt;}
.y20{bottom:438.213333pt;}
.yb2{bottom:450.693333pt;}
.y66{bottom:456.453333pt;}
.y14{bottom:463.493333pt;}
.y55{bottom:470.213333pt;}
.y7c{bottom:470.533333pt;}
.yb1{bottom:489.733333pt;}
.y54{bottom:491.333333pt;}
.y13{bottom:498.053333pt;}
.y7b{bottom:507.333333pt;}
.yb0{bottom:509.253333pt;}
.y1f{bottom:512.133333pt;}
.y53{bottom:512.453333pt;}
.yaf{bottom:528.773333pt;}
.y1c{bottom:533.280000pt;}
.y3a{bottom:537.760000pt;}
.y65{bottom:548.960000pt;}
.y1b{bottom:554.720000pt;}
.y39{bottom:556.000000pt;}
.y7a{bottom:563.040000pt;}
.y8a{bottom:564.320000pt;}
.yae{bottom:564.640000pt;}
.y19{bottom:575.840000pt;}
.y9c{bottom:578.720000pt;}
.yad{bottom:585.440000pt;}
.y38{bottom:590.880000pt;}
.y16{bottom:596.960000pt;}
.y79{bottom:599.840000pt;}
.y51{bottom:604.960000pt;}
.yac{bottom:612.000000pt;}
.y99{bottom:615.520000pt;}
.y12{bottom:622.240000pt;}
.yab{bottom:639.546667pt;}
.y11{bottom:640.506667pt;}
.y64{bottom:641.466667pt;}
.y50{bottom:641.786667pt;}
.y77{bottom:655.560000pt;}
.yaa{bottom:659.066667pt;}
.y10{bottom:659.080000pt;}
.y89{bottom:670.266667pt;}
.y37{bottom:683.386667pt;}
.y97{bottom:684.680000pt;}
.ya9{bottom:694.906667pt;}
.y4e{bottom:697.480000pt;}
.yb{bottom:700.680000pt;}
.y96{bottom:705.786667pt;}
.y76{bottom:710.906667pt;}
.ya8{bottom:713.146667pt;}
.y4d{bottom:718.586667pt;}
.y95{bottom:726.906667pt;}
.ya7{bottom:732.666667pt;}
.y4c{bottom:739.706667pt;}
.y94{bottom:748.066667pt;}
.ya6{bottom:752.226667pt;}
.y63{bottom:752.546667pt;}
.y4a{bottom:760.866667pt;}
.y71{bottom:766.640000pt;}
.ya5{bottom:771.746667pt;}
.y88{bottom:773.346667pt;}
.ya{bottom:777.506667pt;}
.y49{bottom:781.986667pt;}
.y87{bottom:791.906667pt;}
.y36{bottom:807.266667pt;}
.ya4{bottom:807.586667pt;}
.y9{bottom:817.826667pt;}
.y70{bottom:821.666667pt;}
.ya3{bottom:825.826667pt;}
.y86{bottom:826.466667pt;}
.y8{bottom:838.626667pt;}
.y90{bottom:840.560000pt;}
.y35{bottom:842.146667pt;}
.ya2{bottom:845.346667pt;}
.y45{bottom:856.253333pt;}
.y7{bottom:859.773333pt;}
.y62{bottom:863.293333pt;}
.y6e{bottom:877.373333pt;}
.y6{bottom:880.893333pt;}
.ya1{bottom:881.213333pt;}
.y44{bottom:893.053333pt;}
.y8f{bottom:895.933333pt;}
.y5{bottom:902.013333pt;}
.y6d{bottom:914.173333pt;}
.ya0{bottom:915.773333pt;}
.y4{bottom:923.133333pt;}
.y34{bottom:934.653333pt;}
.y85{bottom:937.533333pt;}
.y40{bottom:948.733333pt;}
.y9f{bottom:950.013333pt;}
.y8b{bottom:951.613333pt;}
.y61{bottom:955.773333pt;}
.y3{bottom:958.013333pt;}
.y6b{bottom:969.893333pt;}
.y9e{bottom:971.173333pt;}
.y9d{bottom:992.293333pt;}
.y2{bottom:992.613333pt;}
.y3f{bottom:1006.693333pt;}
.y1{bottom:1013.413333pt;}
.hb{height:21.106667pt;}
.h8{height:21.120000pt;}
.h15{height:21.146667pt;}
.ha{height:21.152000pt;}
.h16{height:21.426667pt;}
.h9{height:21.440000pt;}
.h5{height:34.226667pt;}
.h1c{height:34.592000pt;}
.h13{height:36.800000pt;}
.h19{height:36.818667pt;}
.h14{height:36.832000pt;}
.h10{height:42.226667pt;}
.he{height:42.240000pt;}
.hc{height:42.272000pt;}
.hd{height:42.560000pt;}
.hf{height:42.592000pt;}
.h1d{height:43.412500pt;}
.h17{height:55.026667pt;}
.h1a{height:55.072000pt;}
.h18{height:55.346667pt;}
.h1b{height:55.378667pt;}
.h12{height:57.952000pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h7{height:65.781915pt;}
.h11{height:66.625000pt;}
.h4{height:69.138667pt;}
.h3{height:89.277500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:48.000000pt;}
.wd{width:58.592000pt;}
.w8{width:59.872000pt;}
.wa{width:60.192000pt;}
.we{width:66.592000pt;}
.wc{width:69.792000pt;}
.w7{width:72.032000pt;}
.wf{width:81.952000pt;}
.w5{width:112.960000pt;}
.w3{width:113.306667pt;}
.w2{width:113.320000pt;}
.w4{width:113.344000pt;}
.wb{width:318.533333pt;}
.w6{width:336.160000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xa{left:6.400000pt;}
.x6{left:7.346667pt;}
.x9{left:9.280000pt;}
.xc{left:11.200000pt;}
.x24{left:12.826667pt;}
.x19{left:14.720000pt;}
.x7{left:16.306667pt;}
.x18{left:20.160000pt;}
.x14{left:22.080000pt;}
.x29{left:23.680000pt;}
.x28{left:25.306667pt;}
.x17{left:26.240000pt;}
.xe{left:27.186667pt;}
.x12{left:28.160000pt;}
.x1f{left:31.074667pt;}
.x1b{left:35.554667pt;}
.xf{left:47.053333pt;}
.x22{left:92.512000pt;}
.x10{left:111.712000pt;}
.x3{left:113.344000pt;}
.x1{left:116.224000pt;}
.x1c{left:137.346667pt;}
.x1a{left:141.826667pt;}
.x20{left:160.386667pt;}
.x5{left:170.320000pt;}
.x1e{left:184.386667pt;}
.x1d{left:185.346667pt;}
.x4{left:190.813333pt;}
.x21{left:270.533333pt;}
.x8{left:283.653333pt;}
.x2{left:345.760000pt;}
.xb{left:396.960000pt;}
.x23{left:411.040000pt;}
.x11{left:447.866667pt;}
.x25{left:480.826667pt;}
.xd{left:510.640000pt;}
.x13{left:519.906667pt;}
.x26{left:539.426667pt;}
.x15{left:579.773333pt;}
.x27{left:606.013333pt;}
.x16{left:627.773333pt;}
}




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