
    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_d4d6e9a7749989fc71572860.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_d98337b4f7d3b7f8b02c63a0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1b55a451a276447db6568a84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_c4b9ab906c1cc731e158fbbc.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_2ad933096011e04c3f8a6674.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d5e0aef5ba2be8dd374b0836.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3e762342b85bc3c14e2fc359.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d41858b40701df74ecf89ee7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.241699;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_1a754f484c6eb18a1ab7539c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.747559;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_097502098326acc184ea61e2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_898aa6f343609908b27c06ab.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v9{vertical-align:-18.720000px;}
.v2{vertical-align:-17.280000px;}
.v5{vertical-align:-12.240000px;}
.v8{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.280000px;}
.va{vertical-align:30.960000px;}
.v6{vertical-align:42.480000px;}
.v4{vertical-align:54.720000px;}
.v7{vertical-align:57.600000px;}
.v3{vertical-align:64.080000px;}
.ls5{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.041040px;}
.ls17{letter-spacing:-0.038880px;}
.lsc{letter-spacing:-0.009360px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.096000px;}
.ls16{letter-spacing:0.097200px;}
.ls10{letter-spacing:0.130800px;}
.ls18{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.187200px;}
.ls11{letter-spacing:0.238320px;}
.ls6{letter-spacing:0.252720px;}
.ls4{letter-spacing:0.360000px;}
.ls12{letter-spacing:2.838960px;}
.ls7{letter-spacing:4.478400px;}
.lsf{letter-spacing:19.072080px;}
.lse{letter-spacing:23.472720px;}
.lsd{letter-spacing:27.518400px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.wsa{word-spacing:-42.120000px;}
.ws7{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.312720px;}
.ws5{word-spacing:-21.068640px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.050640px;}
.ws4{word-spacing:-20.700000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:47.431560px;}
._0{margin-left:-196.973760px;}
._20{margin-left:-10.915680px;}
._22{margin-left:-3.839760px;}
._3{margin-left:-2.249520px;}
._1{margin-left:-1.126080px;}
._4{width:1.847520px;}
._f{width:2.887440px;}
._d{width:4.158720px;}
._9{width:5.559840px;}
._18{width:7.726320px;}
._12{width:9.025440px;}
._1b{width:10.075920px;}
._13{width:11.203920px;}
._14{width:12.921360px;}
._15{width:17.229600px;}
._1d{width:18.540000px;}
._a{width:19.543680px;}
._e{width:22.607280px;}
._7{width:24.008400px;}
._8{width:25.920960px;}
._1c{width:27.577440px;}
._1e{width:28.798560px;}
._c{width:31.109760px;}
._b{width:32.348160px;}
._16{width:33.557520px;}
._17{width:35.266560px;}
._6{width:36.755280px;}
._5{width:37.776000px;}
._19{width:39.230880px;}
._1a{width:40.999920px;}
._11{width:46.112400px;}
._10{width:47.289600px;}
._1f{width:50.242800px;}
._2{width:638.842080px;}
._21{width:1015.085520px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y32{bottom:4.680000px;}
.y38{bottom:5.040000px;}
.y3d{bottom:5.220000px;}
.y5{bottom:5.940000px;}
.y3{bottom:6.120000px;}
.y3f{bottom:13.680000px;}
.y31{bottom:16.740000px;}
.y3a{bottom:17.100000px;}
.y40{bottom:17.280000px;}
.y3e{bottom:18.000000px;}
.y36{bottom:25.560000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.800000px;}
.y34{bottom:29.160000px;}
.y3c{bottom:29.340000px;}
.y35{bottom:29.880000px;}
.y37{bottom:53.280000px;}
.y73{bottom:82.440000px;}
.y1e{bottom:90.000000px;}
.y4c{bottom:109.260000px;}
.y2f{bottom:118.620000px;}
.y1d{bottom:126.180000px;}
.y4b{bottom:145.476000px;}
.y70{bottom:148.176000px;}
.y2e{bottom:155.010000px;}
.y1c{bottom:162.390000px;}
.y4a{bottom:181.650000px;}
.y6f{bottom:184.530000px;}
.y2d{bottom:191.190000px;}
.y1b{bottom:198.750000px;}
.y49{bottom:217.830000px;}
.y6e{bottom:220.350000px;}
.y2c{bottom:227.370000px;}
.y1a{bottom:234.930000px;}
.y48{bottom:254.010000px;}
.y6d{bottom:256.890000px;}
.y2b{bottom:263.550000px;}
.y19{bottom:266.070000px;}
.y47{bottom:290.370000px;}
.y6c{bottom:291.450000px;}
.y6b{bottom:295.770000px;}
.y2a{bottom:299.910000px;}
.y46{bottom:326.550000px;}
.y6a{bottom:328.530000px;}
.y69{bottom:332.850000px;}
.y29{bottom:336.090000px;}
.y45{bottom:362.730000px;}
.y68{bottom:369.570000px;}
.y28{bottom:372.270000px;}
.y44{bottom:398.955000px;}
.y67{bottom:405.435000px;}
.y72{bottom:408.135000px;}
.y27{bottom:408.495000px;}
.y43{bottom:423.075000px;}
.y66{bottom:441.975000px;}
.y26{bottom:444.855000px;}
.y42{bottom:477.255000px;}
.y65{bottom:478.515000px;}
.y25{bottom:481.035000px;}
.y64{bottom:513.795000px;}
.y18{bottom:517.215000px;}
.y63{bottom:518.115000px;}
.y41{bottom:531.615000px;}
.y17{bottom:553.395000px;}
.y62{bottom:555.015000px;}
.y3b{bottom:585.795000px;}
.y16{bottom:589.755000px;}
.y61{bottom:590.835000px;}
.y15{bottom:625.935000px;}
.y60{bottom:627.375000px;}
.y39{bottom:640.185000px;}
.y14{bottom:662.145000px;}
.y5e{bottom:663.765000px;}
.y5f{bottom:669.885000px;}
.y5d{bottom:674.385000px;}
.y33{bottom:694.545000px;}
.y13{bottom:698.325000px;}
.y5c{bottom:722.085000px;}
.y12{bottom:734.505000px;}
.y5b{bottom:756.825000px;}
.y5a{bottom:767.445000px;}
.y11{bottom:770.865000px;}
.y30{bottom:773.025000px;}
.y71{bottom:806.685000px;}
.y10{bottom:807.045000px;}
.y59{bottom:810.285000px;}
.y58{bottom:842.325000px;}
.yf{bottom:843.225000px;}
.y57{bottom:846.645000px;}
.ye{bottom:879.405000px;}
.y56{bottom:883.365000px;}
.yd{bottom:915.810000px;}
.y55{bottom:922.650000px;}
.y54{bottom:932.370000px;}
.y53{bottom:936.690000px;}
.yc{bottom:951.630000px;}
.y24{bottom:951.990000px;}
.y52{bottom:986.370000px;}
.yb{bottom:987.810000px;}
.y23{bottom:988.170000px;}
.y51{bottom:1022.910000px;}
.ya{bottom:1023.990000px;}
.y22{bottom:1024.350000px;}
.y50{bottom:1059.270000px;}
.y9{bottom:1060.350000px;}
.y21{bottom:1060.710000px;}
.y4f{bottom:1095.450000px;}
.y8{bottom:1096.530000px;}
.y20{bottom:1096.890000px;}
.y4e{bottom:1131.810000px;}
.y7{bottom:1133.070000px;}
.y4d{bottom:1168.740000px;}
.y6{bottom:1168.920000px;}
.y1f{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.600000px;}
.h8{height:48.240000px;}
.hd{height:48.456000px;}
.h14{height:57.571523px;}
.h6{height:58.819922px;}
.h9{height:59.436914px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.hf{height:70.995234px;}
.ha{height:72.360000px;}
.hb{height:81.155039px;}
.h7{height:82.676953px;}
.h5{height:84.898125px;}
.h16{height:88.531523px;}
.h10{height:98.435039px;}
.hc{height:99.956953px;}
.h15{height:100.676953px;}
.h11{height:112.291523px;}
.h13{height:115.171523px;}
.h12{height:125.156953px;}
.he{height:162.515039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w5{width:89.100000px;}
.w8{width:91.980000px;}
.w3{width:101.700000px;}
.w6{width:231.555000px;}
.w7{width:297.075000px;}
.w4{width:300.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:1.080000px;}
.x26{left:6.480000px;}
.x22{left:10.980000px;}
.x16{left:14.760000px;}
.x4{left:20.550000px;}
.x1e{left:23.760000px;}
.x18{left:25.740000px;}
.x25{left:32.985000px;}
.x20{left:36.585000px;}
.x1b{left:44.325000px;}
.x24{left:48.600000px;}
.x17{left:54.765000px;}
.x1f{left:58.860000px;}
.x23{left:61.785000px;}
.x1c{left:74.385000px;}
.x19{left:91.845000px;}
.x1{left:95.796000px;}
.x30{left:104.796000px;}
.x2{left:111.636000px;}
.x6{left:130.536000px;}
.x13{left:139.545000px;}
.x1a{left:140.985000px;}
.x21{left:142.785000px;}
.x14{left:146.925000px;}
.xc{left:149.796000px;}
.x9{left:150.870000px;}
.x32{left:157.890000px;}
.x7{left:168.870000px;}
.x1d{left:177.525000px;}
.x10{left:201.270000px;}
.x33{left:217.470000px;}
.xe{left:237.270000px;}
.x5{left:322.095000px;}
.x8{left:362.235000px;}
.x2a{left:378.255000px;}
.xa{left:381.675000px;}
.x2b{left:387.255000px;}
.x27{left:389.595000px;}
.x34{left:408.315000px;}
.x2c{left:434.055000px;}
.x3{left:438.915000px;}
.x28{left:444.495000px;}
.x2e{left:457.305000px;}
.x2d{left:461.085000px;}
.x2f{left:469.185000px;}
.xb{left:489.525000px;}
.x15{left:502.125000px;}
.x11{left:505.005000px;}
.x29{left:542.985000px;}
.x12{left:597.705000px;}
.xd{left:623.085000px;}
.x31{left:675.690000px;}
@media print{
.v9{vertical-align:-16.640000pt;}
.v2{vertical-align:-15.360000pt;}
.v5{vertical-align:-10.880000pt;}
.v8{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.360000pt;}
.va{vertical-align:27.520000pt;}
.v6{vertical-align:37.760000pt;}
.v4{vertical-align:48.640000pt;}
.v7{vertical-align:51.200000pt;}
.v3{vertical-align:56.960000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.036480pt;}
.ls17{letter-spacing:-0.034560pt;}
.lsc{letter-spacing:-0.008320pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.085333pt;}
.ls16{letter-spacing:0.086400pt;}
.ls10{letter-spacing:0.116267pt;}
.ls18{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.166400pt;}
.ls11{letter-spacing:0.211840pt;}
.ls6{letter-spacing:0.224640pt;}
.ls4{letter-spacing:0.320000pt;}
.ls12{letter-spacing:2.523520pt;}
.ls7{letter-spacing:3.980800pt;}
.lsf{letter-spacing:16.952960pt;}
.lse{letter-spacing:20.864640pt;}
.lsd{letter-spacing:24.460800pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.wsa{word-spacing:-37.440000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws9{word-spacing:-18.944640pt;}
.ws5{word-spacing:-18.727680pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.711680pt;}
.ws4{word-spacing:-18.400000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:42.161387pt;}
._0{margin-left:-175.087787pt;}
._20{margin-left:-9.702827pt;}
._22{margin-left:-3.413120pt;}
._3{margin-left:-1.999573pt;}
._1{margin-left:-1.000960pt;}
._4{width:1.642240pt;}
._f{width:2.566613pt;}
._d{width:3.696640pt;}
._9{width:4.942080pt;}
._18{width:6.867840pt;}
._12{width:8.022613pt;}
._1b{width:8.956373pt;}
._13{width:9.959040pt;}
._14{width:11.485653pt;}
._15{width:15.315200pt;}
._1d{width:16.480000pt;}
._a{width:17.372160pt;}
._e{width:20.095360pt;}
._7{width:21.340800pt;}
._8{width:23.040853pt;}
._1c{width:24.513280pt;}
._1e{width:25.598720pt;}
._c{width:27.653120pt;}
._b{width:28.753920pt;}
._16{width:29.828907pt;}
._17{width:31.348053pt;}
._6{width:32.671360pt;}
._5{width:33.578667pt;}
._19{width:34.871893pt;}
._1a{width:36.444373pt;}
._11{width:40.988800pt;}
._10{width:42.035200pt;}
._1f{width:44.660267pt;}
._2{width:567.859627pt;}
._21{width:902.298240pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:4.160000pt;}
.y38{bottom:4.480000pt;}
.y3d{bottom:4.640000pt;}
.y5{bottom:5.280000pt;}
.y3{bottom:5.440000pt;}
.y3f{bottom:12.160000pt;}
.y31{bottom:14.880000pt;}
.y3a{bottom:15.200000pt;}
.y40{bottom:15.360000pt;}
.y3e{bottom:16.000000pt;}
.y36{bottom:22.720000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.600000pt;}
.y34{bottom:25.920000pt;}
.y3c{bottom:26.080000pt;}
.y35{bottom:26.560000pt;}
.y37{bottom:47.360000pt;}
.y73{bottom:73.280000pt;}
.y1e{bottom:80.000000pt;}
.y4c{bottom:97.120000pt;}
.y2f{bottom:105.440000pt;}
.y1d{bottom:112.160000pt;}
.y4b{bottom:129.312000pt;}
.y70{bottom:131.712000pt;}
.y2e{bottom:137.786667pt;}
.y1c{bottom:144.346667pt;}
.y4a{bottom:161.466667pt;}
.y6f{bottom:164.026667pt;}
.y2d{bottom:169.946667pt;}
.y1b{bottom:176.666667pt;}
.y49{bottom:193.626667pt;}
.y6e{bottom:195.866667pt;}
.y2c{bottom:202.106667pt;}
.y1a{bottom:208.826667pt;}
.y48{bottom:225.786667pt;}
.y6d{bottom:228.346667pt;}
.y2b{bottom:234.266667pt;}
.y19{bottom:236.506667pt;}
.y47{bottom:258.106667pt;}
.y6c{bottom:259.066667pt;}
.y6b{bottom:262.906667pt;}
.y2a{bottom:266.586667pt;}
.y46{bottom:290.266667pt;}
.y6a{bottom:292.026667pt;}
.y69{bottom:295.866667pt;}
.y29{bottom:298.746667pt;}
.y45{bottom:322.426667pt;}
.y68{bottom:328.506667pt;}
.y28{bottom:330.906667pt;}
.y44{bottom:354.626667pt;}
.y67{bottom:360.386667pt;}
.y72{bottom:362.786667pt;}
.y27{bottom:363.106667pt;}
.y43{bottom:376.066667pt;}
.y66{bottom:392.866667pt;}
.y26{bottom:395.426667pt;}
.y42{bottom:424.226667pt;}
.y65{bottom:425.346667pt;}
.y25{bottom:427.586667pt;}
.y64{bottom:456.706667pt;}
.y18{bottom:459.746667pt;}
.y63{bottom:460.546667pt;}
.y41{bottom:472.546667pt;}
.y17{bottom:491.906667pt;}
.y62{bottom:493.346667pt;}
.y3b{bottom:520.706667pt;}
.y16{bottom:524.226667pt;}
.y61{bottom:525.186667pt;}
.y15{bottom:556.386667pt;}
.y60{bottom:557.666667pt;}
.y39{bottom:569.053333pt;}
.y14{bottom:588.573333pt;}
.y5e{bottom:590.013333pt;}
.y5f{bottom:595.453333pt;}
.y5d{bottom:599.453333pt;}
.y33{bottom:617.373333pt;}
.y13{bottom:620.733333pt;}
.y5c{bottom:641.853333pt;}
.y12{bottom:652.893333pt;}
.y5b{bottom:672.733333pt;}
.y5a{bottom:682.173333pt;}
.y11{bottom:685.213333pt;}
.y30{bottom:687.133333pt;}
.y71{bottom:717.053333pt;}
.y10{bottom:717.373333pt;}
.y59{bottom:720.253333pt;}
.y58{bottom:748.733333pt;}
.yf{bottom:749.533333pt;}
.y57{bottom:752.573333pt;}
.ye{bottom:781.693333pt;}
.y56{bottom:785.213333pt;}
.yd{bottom:814.053333pt;}
.y55{bottom:820.133333pt;}
.y54{bottom:828.773333pt;}
.y53{bottom:832.613333pt;}
.yc{bottom:845.893333pt;}
.y24{bottom:846.213333pt;}
.y52{bottom:876.773333pt;}
.yb{bottom:878.053333pt;}
.y23{bottom:878.373333pt;}
.y51{bottom:909.253333pt;}
.ya{bottom:910.213333pt;}
.y22{bottom:910.533333pt;}
.y50{bottom:941.573333pt;}
.y9{bottom:942.533333pt;}
.y21{bottom:942.853333pt;}
.y4f{bottom:973.733333pt;}
.y8{bottom:974.693333pt;}
.y20{bottom:975.013333pt;}
.y4e{bottom:1006.053333pt;}
.y7{bottom:1007.173333pt;}
.y4d{bottom:1038.880000pt;}
.y6{bottom:1039.040000pt;}
.y1f{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.200000pt;}
.h8{height:42.880000pt;}
.hd{height:43.072000pt;}
.h14{height:51.174688pt;}
.h6{height:52.284375pt;}
.h9{height:52.832812pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.hf{height:63.106875pt;}
.ha{height:64.320000pt;}
.hb{height:72.137812pt;}
.h7{height:73.490625pt;}
.h5{height:75.465000pt;}
.h16{height:78.694688pt;}
.h10{height:87.497813pt;}
.hc{height:88.850625pt;}
.h15{height:89.490625pt;}
.h11{height:99.814688pt;}
.h13{height:102.374687pt;}
.h12{height:111.250625pt;}
.he{height:144.457812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w5{width:79.200000pt;}
.w8{width:81.760000pt;}
.w3{width:90.400000pt;}
.w6{width:205.826667pt;}
.w7{width:264.066667pt;}
.w4{width:266.786667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:0.960000pt;}
.x26{left:5.760000pt;}
.x22{left:9.760000pt;}
.x16{left:13.120000pt;}
.x4{left:18.266667pt;}
.x1e{left:21.120000pt;}
.x18{left:22.880000pt;}
.x25{left:29.320000pt;}
.x20{left:32.520000pt;}
.x1b{left:39.400000pt;}
.x24{left:43.200000pt;}
.x17{left:48.680000pt;}
.x1f{left:52.320000pt;}
.x23{left:54.920000pt;}
.x1c{left:66.120000pt;}
.x19{left:81.640000pt;}
.x1{left:85.152000pt;}
.x30{left:93.152000pt;}
.x2{left:99.232000pt;}
.x6{left:116.032000pt;}
.x13{left:124.040000pt;}
.x1a{left:125.320000pt;}
.x21{left:126.920000pt;}
.x14{left:130.600000pt;}
.xc{left:133.152000pt;}
.x9{left:134.106667pt;}
.x32{left:140.346667pt;}
.x7{left:150.106667pt;}
.x1d{left:157.800000pt;}
.x10{left:178.906667pt;}
.x33{left:193.306667pt;}
.xe{left:210.906667pt;}
.x5{left:286.306667pt;}
.x8{left:321.986667pt;}
.x2a{left:336.226667pt;}
.xa{left:339.266667pt;}
.x2b{left:344.226667pt;}
.x27{left:346.306667pt;}
.x34{left:362.946667pt;}
.x2c{left:385.826667pt;}
.x3{left:390.146667pt;}
.x28{left:395.106667pt;}
.x2e{left:406.493333pt;}
.x2d{left:409.853333pt;}
.x2f{left:417.053333pt;}
.xb{left:435.133333pt;}
.x15{left:446.333333pt;}
.x11{left:448.893333pt;}
.x29{left:482.653333pt;}
.x12{left:531.293333pt;}
.xd{left:553.853333pt;}
.x31{left:600.613333pt;}
}




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