
    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_8ca5a4e01490be977dc670bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e135010027ea5429ee83bfe8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_0783858601e0d7f2fe672039.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1d3cb2f54b1df4fe2483ae6b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_451fc05ec0a41be218958a08.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_d0340735334494cea81d0d85.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_68f5ee5d8f12f58cdecdd158.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_e135010027ea5429ee83bfe8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_0783858601e0d7f2fe672039.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_03c45feaa1fab57d1b2f1b60.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_f5bb373111a93aba55796685.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_6a246d9a591b8dadc7f6bdbd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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;}
.m3{transform:matrix(0.209823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209823,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,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;}
.ls5{letter-spacing:-3.384000px;}
.ls6{letter-spacing:-2.880000px;}
.ls7{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.690000px;}
.ls12{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.175800px;}
.lsf{letter-spacing:-0.172200px;}
.ls10{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.031680px;}
.ls0{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.085200px;}
.lse{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.472800px;}
.lsd{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.900000px;}
.ls9{letter-spacing:768.569760px;}
.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;}
}
.ws1{word-spacing:-40.680000px;}
.ws3{word-spacing:-16.744800px;}
.ws8{word-spacing:-16.357200px;}
.ws2{word-spacing:-16.272000px;}
.ws7{word-spacing:-15.582000px;}
.ws6{word-spacing:-15.336000px;}
.ws0{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.165760px;}
.wsb{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.447440px;}
.ws5{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.333560px;}
.ws4{word-spacing:-12.888000px;}
.wse{word-spacing:-12.204000px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-5.406150px;}
._2{margin-left:-3.960531px;}
._3{margin-left:-2.258266px;}
._0{margin-left:-1.186560px;}
._1{width:1.116000px;}
._7{width:2.295120px;}
._8{width:295.344826px;}
._6{width:413.127840px;}
._5{width:458.038800px;}
.fc5{color:rgb(192,80,77);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(228,0,43);}
.fc6{color:rgb(102,102,102);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs9{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:180.000000px;}
.y68{bottom:-1.260000px;}
.y80{bottom:-1.080000px;}
.y2a{bottom:-0.900000px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.540000px;}
.y1d{bottom:0.900000px;}
.y75{bottom:1.080000px;}
.y17{bottom:1.980000px;}
.y22{bottom:2.340000px;}
.y6e{bottom:2.520000px;}
.yd{bottom:2.880000px;}
.y6b{bottom:3.060000px;}
.y3c{bottom:3.600000px;}
.y2{bottom:4.500000px;}
.y14{bottom:4.860000px;}
.yf{bottom:5.040000px;}
.y73{bottom:5.220000px;}
.y1b{bottom:5.400000px;}
.y12{bottom:5.580000px;}
.y33{bottom:5.940000px;}
.y11{bottom:6.300000px;}
.y31{bottom:6.480000px;}
.yb{bottom:7.200000px;}
.y36{bottom:7.380000px;}
.y58{bottom:8.460000px;}
.y7{bottom:12.060000px;}
.y15{bottom:15.840000px;}
.y5a{bottom:17.280000px;}
.y3d{bottom:17.325000px;}
.y4d{bottom:19.980000px;}
.y3b{bottom:20.205000px;}
.y57{bottom:25.020000px;}
.y5{bottom:26.820000px;}
.y60{bottom:28.434000px;}
.y64{bottom:28.980000px;}
.y1a{bottom:29.160000px;}
.y65{bottom:31.860000px;}
.y4c{bottom:39.060000px;}
.y2f{bottom:41.040000px;}
.y56{bottom:41.400000px;}
.y28{bottom:42.300000px;}
.y5f{bottom:44.814000px;}
.y81{bottom:50.076000px;}
.y72{bottom:52.740000px;}
.y19{bottom:52.920000px;}
.y5e{bottom:61.374000px;}
.y4b{bottom:64.440000px;}
.y7f{bottom:65.736000px;}
.y55{bottom:66.960000px;}
.y2b{bottom:67.176000px;}
.y2e{bottom:74.556000px;}
.y5d{bottom:77.934000px;}
.y27{bottom:80.685000px;}
.y7e{bottom:80.865000px;}
.y4a{bottom:81.000000px;}
.y29{bottom:82.836000px;}
.y54{bottom:83.520000px;}
.y61{bottom:91.659000px;}
.y5c{bottom:94.359000px;}
.y49{bottom:97.380000px;}
.y53{bottom:99.900000px;}
.y48{bottom:113.940000px;}
.y52{bottom:116.460000px;}
.y47{bottom:130.350000px;}
.y51{bottom:132.870000px;}
.y2d{bottom:142.236000px;}
.y5b{bottom:145.836000px;}
.y46{bottom:146.910000px;}
.y50{bottom:149.430000px;}
.y7d{bottom:159.150000px;}
.y4f{bottom:165.810000px;}
.y45{bottom:165.990000px;}
.y26{bottom:176.430000px;}
.y44{bottom:191.370000px;}
.y43{bottom:207.750000px;}
.y42{bottom:224.310000px;}
.y41{bottom:240.870000px;}
.y7c{bottom:257.115000px;}
.y40{bottom:257.250000px;}
.y59{bottom:261.615000px;}
.y25{bottom:274.215000px;}
.y7b{bottom:279.075000px;}
.y4e{bottom:279.210000px;}
.y3f{bottom:282.090000px;}
.y24{bottom:296.175000px;}
.y7a{bottom:301.035000px;}
.y3e{bottom:303.015000px;}
.y23{bottom:318.315000px;}
.y79{bottom:322.995000px;}
.y21{bottom:340.275000px;}
.y78{bottom:342.615000px;}
.y20{bottom:359.715000px;}
.y77{bottom:364.575000px;}
.y1f{bottom:381.675000px;}
.y76{bottom:386.535000px;}
.y1e{bottom:403.635000px;}
.y74{bottom:408.495000px;}
.y1c{bottom:425.805000px;}
.y71{bottom:428.145000px;}
.y18{bottom:445.245000px;}
.y70{bottom:499.425000px;}
.y16{bottom:516.705000px;}
.y6f{bottom:519.045000px;}
.y13{bottom:535.785000px;}
.y6d{bottom:562.965000px;}
.y10{bottom:579.705000px;}
.y6c{bottom:582.585000px;}
.ye{bottom:603.105000px;}
.y6a{bottom:604.545000px;}
.y3a{bottom:606.345000px;}
.y69{bottom:622.050000px;}
.yc{bottom:625.290000px;}
.ya{bottom:642.570000px;}
.y39{bottom:647.790000px;}
.y67{bottom:654.990000px;}
.y66{bottom:668.130000px;}
.y8{bottom:675.510000px;}
.y38{bottom:676.410000px;}
.y6{bottom:690.450000px;}
.y37{bottom:705.030000px;}
.y63{bottom:723.030000px;}
.y35{bottom:733.650000px;}
.y4{bottom:745.350000px;}
.y34{bottom:750.750000px;}
.y62{bottom:767.670000px;}
.y32{bottom:770.730000px;}
.y3{bottom:787.830000px;}
.y30{bottom:790.890000px;}
.y1{bottom:808.020000px;}
.y2c{bottom:824.760000px;}
.h1a{height:5.729063px;}
.h24{height:13.140000px;}
.h8{height:14.940000px;}
.hc{height:17.280000px;}
.h25{height:17.496000px;}
.h11{height:19.080000px;}
.h14{height:19.440000px;}
.h26{height:19.620000px;}
.h28{height:19.656000px;}
.h1d{height:19.980000px;}
.h1c{height:20.160000px;}
.h4{height:20.196000px;}
.h15{height:21.960000px;}
.h1b{height:21.996000px;}
.h16{height:22.140000px;}
.hd{height:22.176000px;}
.hf{height:23.400000px;}
.ha{height:32.940000px;}
.h1f{height:32.976000px;}
.h2{height:38.160000px;}
.h5{height:42.480000px;}
.h10{height:43.920000px;}
.h23{height:44.640000px;}
.h1e{height:53.709961px;}
.h6{height:54.900000px;}
.h20{height:55.291992px;}
.h9{height:59.439023px;}
.h3{height:65.884219px;}
.h27{height:71.280000px;}
.h12{height:71.460000px;}
.he{height:71.613281px;}
.h13{height:77.342344px;}
.h19{height:89.516602px;}
.h2a{height:93.420000px;}
.h18{height:93.600000px;}
.h17{height:97.776000px;}
.h29{height:97.956000px;}
.h22{height:107.316000px;}
.hb{height:107.419922px;}
.h7{height:179.033203px;}
.h21{height:294.870000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w8{width:31.860000px;}
.w3{width:38.340000px;}
.wb{width:40.320000px;}
.wa{width:542.415000px;}
.wc{width:548.355000px;}
.w9{width:563.115000px;}
.w7{width:563.475000px;}
.w4{width:565.095000px;}
.w2{width:565.995000px;}
.w5{width:1169.430000px;}
.w6{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:3.060000px;}
.x1f{left:8.100000px;}
.x1d{left:15.840000px;}
.xb{left:24.120000px;}
.x26{left:29.340000px;}
.x27{left:39.960000px;}
.x1{left:46.800000px;}
.x22{left:63.720000px;}
.x17{left:78.330000px;}
.x24{left:114.330000px;}
.x25{left:123.150000px;}
.x14{left:148.350000px;}
.x28{left:209.730000px;}
.x29{left:214.050000px;}
.xf{left:294.150000px;}
.x20{left:307.470000px;}
.x6{left:353.910000px;}
.x9{left:358.770000px;}
.x5{left:363.450000px;}
.x1b{left:369.975000px;}
.xc{left:387.975000px;}
.xe{left:411.015000px;}
.x13{left:417.675000px;}
.x10{left:422.535000px;}
.xd{left:439.995000px;}
.x2{left:446.115000px;}
.x11{left:448.275000px;}
.x12{left:454.215000px;}
.x8{left:490.395000px;}
.x15{left:516.495000px;}
.x19{left:552.854981px;}
.x21{left:555.375000px;}
.xa{left:565.995000px;}
.x7{left:584.715000px;}
.x23{left:608.295000px;}
.x1c{left:610.275000px;}
.x3{left:612.795000px;}
.x1a{left:631.514981px;}
.x1e{left:642.135000px;}
.x4{left:651.135000px;}
.x18{left:732.705000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-3.008000pt;}
.ls6{letter-spacing:-2.560000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.613333pt;}
.ls12{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.156267pt;}
.lsf{letter-spacing:-0.153067pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.028160pt;}
.ls0{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.075733pt;}
.lse{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.420267pt;}
.lsd{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls9{letter-spacing:683.173120pt;}
.ws1{word-spacing:-36.160000pt;}
.ws3{word-spacing:-14.884267pt;}
.ws8{word-spacing:-14.539733pt;}
.ws2{word-spacing:-14.464000pt;}
.ws7{word-spacing:-13.850667pt;}
.ws6{word-spacing:-13.632000pt;}
.ws0{word-spacing:-13.306880pt;}
.wsd{word-spacing:-12.591787pt;}
.wsb{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.852053pt;}
.ws4{word-spacing:-11.456000pt;}
.wse{word-spacing:-10.848000pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-4.805466pt;}
._2{margin-left:-3.520472pt;}
._3{margin-left:-2.007348pt;}
._0{margin-left:-1.054720pt;}
._1{width:0.992000pt;}
._7{width:2.040107pt;}
._8{width:262.528735pt;}
._6{width:367.224747pt;}
._5{width:407.145600pt;}
.fs8{font-size:5.120000pt;}
.fs9{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:160.000000pt;}
.y68{bottom:-1.120000pt;}
.y80{bottom:-0.960000pt;}
.y2a{bottom:-0.800000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.480000pt;}
.y1d{bottom:0.800000pt;}
.y75{bottom:0.960000pt;}
.y17{bottom:1.760000pt;}
.y22{bottom:2.080000pt;}
.y6e{bottom:2.240000pt;}
.yd{bottom:2.560000pt;}
.y6b{bottom:2.720000pt;}
.y3c{bottom:3.200000pt;}
.y2{bottom:4.000000pt;}
.y14{bottom:4.320000pt;}
.yf{bottom:4.480000pt;}
.y73{bottom:4.640000pt;}
.y1b{bottom:4.800000pt;}
.y12{bottom:4.960000pt;}
.y33{bottom:5.280000pt;}
.y11{bottom:5.600000pt;}
.y31{bottom:5.760000pt;}
.yb{bottom:6.400000pt;}
.y36{bottom:6.560000pt;}
.y58{bottom:7.520000pt;}
.y7{bottom:10.720000pt;}
.y15{bottom:14.080000pt;}
.y5a{bottom:15.360000pt;}
.y3d{bottom:15.400000pt;}
.y4d{bottom:17.760000pt;}
.y3b{bottom:17.960000pt;}
.y57{bottom:22.240000pt;}
.y5{bottom:23.840000pt;}
.y60{bottom:25.274667pt;}
.y64{bottom:25.760000pt;}
.y1a{bottom:25.920000pt;}
.y65{bottom:28.320000pt;}
.y4c{bottom:34.720000pt;}
.y2f{bottom:36.480000pt;}
.y56{bottom:36.800000pt;}
.y28{bottom:37.600000pt;}
.y5f{bottom:39.834667pt;}
.y81{bottom:44.512000pt;}
.y72{bottom:46.880000pt;}
.y19{bottom:47.040000pt;}
.y5e{bottom:54.554667pt;}
.y4b{bottom:57.280000pt;}
.y7f{bottom:58.432000pt;}
.y55{bottom:59.520000pt;}
.y2b{bottom:59.712000pt;}
.y2e{bottom:66.272000pt;}
.y5d{bottom:69.274667pt;}
.y27{bottom:71.720000pt;}
.y7e{bottom:71.880000pt;}
.y4a{bottom:72.000000pt;}
.y29{bottom:73.632000pt;}
.y54{bottom:74.240000pt;}
.y61{bottom:81.474667pt;}
.y5c{bottom:83.874667pt;}
.y49{bottom:86.560000pt;}
.y53{bottom:88.800000pt;}
.y48{bottom:101.280000pt;}
.y52{bottom:103.520000pt;}
.y47{bottom:115.866667pt;}
.y51{bottom:118.106667pt;}
.y2d{bottom:126.432000pt;}
.y5b{bottom:129.632000pt;}
.y46{bottom:130.586667pt;}
.y50{bottom:132.826667pt;}
.y7d{bottom:141.466667pt;}
.y4f{bottom:147.386667pt;}
.y45{bottom:147.546667pt;}
.y26{bottom:156.826667pt;}
.y44{bottom:170.106667pt;}
.y43{bottom:184.666667pt;}
.y42{bottom:199.386667pt;}
.y41{bottom:214.106667pt;}
.y7c{bottom:228.546667pt;}
.y40{bottom:228.666667pt;}
.y59{bottom:232.546667pt;}
.y25{bottom:243.746667pt;}
.y7b{bottom:248.066667pt;}
.y4e{bottom:248.186667pt;}
.y3f{bottom:250.746667pt;}
.y24{bottom:263.266667pt;}
.y7a{bottom:267.586667pt;}
.y3e{bottom:269.346667pt;}
.y23{bottom:282.946667pt;}
.y79{bottom:287.106667pt;}
.y21{bottom:302.466667pt;}
.y78{bottom:304.546667pt;}
.y20{bottom:319.746667pt;}
.y77{bottom:324.066667pt;}
.y1f{bottom:339.266667pt;}
.y76{bottom:343.586667pt;}
.y1e{bottom:358.786667pt;}
.y74{bottom:363.106667pt;}
.y1c{bottom:378.493333pt;}
.y71{bottom:380.573333pt;}
.y18{bottom:395.773333pt;}
.y70{bottom:443.933333pt;}
.y16{bottom:459.293333pt;}
.y6f{bottom:461.373333pt;}
.y13{bottom:476.253333pt;}
.y6d{bottom:500.413333pt;}
.y10{bottom:515.293333pt;}
.y6c{bottom:517.853333pt;}
.ye{bottom:536.093333pt;}
.y6a{bottom:537.373333pt;}
.y3a{bottom:538.973333pt;}
.y69{bottom:552.933333pt;}
.yc{bottom:555.813333pt;}
.ya{bottom:571.173333pt;}
.y39{bottom:575.813333pt;}
.y67{bottom:582.213333pt;}
.y66{bottom:593.893333pt;}
.y8{bottom:600.453333pt;}
.y38{bottom:601.253333pt;}
.y6{bottom:613.733333pt;}
.y37{bottom:626.693333pt;}
.y63{bottom:642.693333pt;}
.y35{bottom:652.133333pt;}
.y4{bottom:662.533333pt;}
.y34{bottom:667.333333pt;}
.y62{bottom:682.373333pt;}
.y32{bottom:685.093333pt;}
.y3{bottom:700.293333pt;}
.y30{bottom:703.013333pt;}
.y1{bottom:718.240000pt;}
.y2c{bottom:733.120000pt;}
.h1a{height:5.092500pt;}
.h24{height:11.680000pt;}
.h8{height:13.280000pt;}
.hc{height:15.360000pt;}
.h25{height:15.552000pt;}
.h11{height:16.960000pt;}
.h14{height:17.280000pt;}
.h26{height:17.440000pt;}
.h28{height:17.472000pt;}
.h1d{height:17.760000pt;}
.h1c{height:17.920000pt;}
.h4{height:17.952000pt;}
.h15{height:19.520000pt;}
.h1b{height:19.552000pt;}
.h16{height:19.680000pt;}
.hd{height:19.712000pt;}
.hf{height:20.800000pt;}
.ha{height:29.280000pt;}
.h1f{height:29.312000pt;}
.h2{height:33.920000pt;}
.h5{height:37.760000pt;}
.h10{height:39.040000pt;}
.h23{height:39.680000pt;}
.h1e{height:47.742188pt;}
.h6{height:48.800000pt;}
.h20{height:49.148438pt;}
.h9{height:52.834688pt;}
.h3{height:58.563750pt;}
.h27{height:63.360000pt;}
.h12{height:63.520000pt;}
.he{height:63.656250pt;}
.h13{height:68.748750pt;}
.h19{height:79.570312pt;}
.h2a{height:83.040000pt;}
.h18{height:83.200000pt;}
.h17{height:86.912000pt;}
.h29{height:87.072000pt;}
.h22{height:95.392000pt;}
.hb{height:95.484375pt;}
.h7{height:159.140625pt;}
.h21{height:262.106667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w8{width:28.320000pt;}
.w3{width:34.080000pt;}
.wb{width:35.840000pt;}
.wa{width:482.146667pt;}
.wc{width:487.426667pt;}
.w9{width:500.546667pt;}
.w7{width:500.866667pt;}
.w4{width:502.306667pt;}
.w2{width:503.106667pt;}
.w5{width:1039.493333pt;}
.w6{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:2.720000pt;}
.x1f{left:7.200000pt;}
.x1d{left:14.080000pt;}
.xb{left:21.440000pt;}
.x26{left:26.080000pt;}
.x27{left:35.520000pt;}
.x1{left:41.600000pt;}
.x22{left:56.640000pt;}
.x17{left:69.626667pt;}
.x24{left:101.626667pt;}
.x25{left:109.466667pt;}
.x14{left:131.866667pt;}
.x28{left:186.426667pt;}
.x29{left:190.266667pt;}
.xf{left:261.466667pt;}
.x20{left:273.306667pt;}
.x6{left:314.586667pt;}
.x9{left:318.906667pt;}
.x5{left:323.066667pt;}
.x1b{left:328.866667pt;}
.xc{left:344.866667pt;}
.xe{left:365.346667pt;}
.x13{left:371.266667pt;}
.x10{left:375.586667pt;}
.xd{left:391.106667pt;}
.x2{left:396.546667pt;}
.x11{left:398.466667pt;}
.x12{left:403.746667pt;}
.x8{left:435.906667pt;}
.x15{left:459.106667pt;}
.x19{left:491.426650pt;}
.x21{left:493.666667pt;}
.xa{left:503.106667pt;}
.x7{left:519.746667pt;}
.x23{left:540.706667pt;}
.x1c{left:542.466667pt;}
.x3{left:544.706667pt;}
.x1a{left:561.346650pt;}
.x1e{left:570.786667pt;}
.x4{left:578.786667pt;}
.x18{left:651.293333pt;}
}




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