
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_3e7cb9d56feed912d9fd545c.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_90208fc304e539b7dfe7cccb.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_6caf3c3156b42794be8a9684.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f9410b08eb2f6aedc9148f7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_327f5417dfcc1ebd53bb71af.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d7f960c3d37e48b99d4a9453.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_8a98308829f08c81d3451f2d.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_481383c9a637873943c114d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls13{letter-spacing:-0.579600px;}
.ls1c{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.240600px;}
.lse{letter-spacing:-0.214800px;}
.ls8{letter-spacing:-0.115800px;}
.lsb{letter-spacing:-0.107400px;}
.ls1d{letter-spacing:-0.069600px;}
.ls16{letter-spacing:-0.067200px;}
.ls9{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.169200px;}
.ls7{letter-spacing:0.190200px;}
.lsc{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.314400px;}
.ls1a{letter-spacing:0.479520px;}
.lsf{letter-spacing:0.654000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1b{letter-spacing:12.186720px;}
.lsd{letter-spacing:15.786720px;}
.ls15{letter-spacing:18.666720px;}
.lsa{letter-spacing:25.146720px;}
.ls3{letter-spacing:25.866720px;}
.ls18{letter-spacing:42.570720px;}
.ls11{letter-spacing:65.466720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.820160px;}
.wsd{word-spacing:-13.811760px;}
.wsf{word-spacing:-13.674960px;}
.ws5{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.wse{word-spacing:-13.440960px;}
.wsb{word-spacing:-13.438560px;}
.ws10{word-spacing:-13.436160px;}
.ws8{word-spacing:-13.398360px;}
.ws6{word-spacing:-13.389960px;}
.ws9{word-spacing:-13.290960px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1359.798240px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-581.774400px;}
._18{margin-left:-11.573760px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._10{margin-left:-2.263680px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:2.793360px;}
._f{width:3.979440px;}
._11{width:5.830320px;}
._12{width:6.872400px;}
._13{width:8.030400px;}
._b{width:9.203040px;}
._a{width:11.023200px;}
._c{width:12.084000px;}
._19{width:14.621280px;}
._e{width:15.852960px;}
._d{width:17.210880px;}
._14{width:18.266640px;}
._17{width:19.273680px;}
._16{width:21.155040px;}
._15{width:22.230720px;}
._1b{width:25.198800px;}
._1a{width:26.593200px;}
._8{width:31.122000px;}
._1e{width:56.371920px;}
._1c{width:67.469040px;}
._1d{width:233.004240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs9{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:6.840000px;}
.y8b{bottom:27.900000px;}
.y88{bottom:40.860000px;}
.y8a{bottom:48.960000px;}
.y6{bottom:61.416000px;}
.y89{bottom:70.014000px;}
.y87{bottom:89.496000px;}
.y31{bottom:92.916000px;}
.y85{bottom:98.316000px;}
.y65{bottom:107.316000px;}
.y30{bottom:113.976000px;}
.y84{bottom:119.376000px;}
.y64{bottom:128.376000px;}
.y2f{bottom:135.036000px;}
.y83{bottom:140.436000px;}
.y63{bottom:149.436000px;}
.y2e{bottom:156.090000px;}
.y82{bottom:161.490000px;}
.y62{bottom:170.490000px;}
.y2d{bottom:177.150000px;}
.y81{bottom:182.550000px;}
.y61{bottom:191.550000px;}
.y2c{bottom:198.210000px;}
.y80{bottom:203.610000px;}
.y60{bottom:212.610000px;}
.y2b{bottom:219.270000px;}
.y7f{bottom:224.670000px;}
.y5f{bottom:233.670000px;}
.y2a{bottom:240.330000px;}
.y7e{bottom:245.730000px;}
.y5e{bottom:254.730000px;}
.y29{bottom:261.390000px;}
.y7d{bottom:266.790000px;}
.y5d{bottom:275.790000px;}
.y28{bottom:282.450000px;}
.y7c{bottom:287.850000px;}
.y5c{bottom:296.850000px;}
.y27{bottom:303.510000px;}
.y7b{bottom:308.910000px;}
.y5b{bottom:317.910000px;}
.y26{bottom:324.570000px;}
.y7a{bottom:330.015000px;}
.y5a{bottom:339.015000px;}
.y25{bottom:345.675000px;}
.y79{bottom:351.075000px;}
.y59{bottom:360.075000px;}
.y24{bottom:366.735000px;}
.y78{bottom:372.135000px;}
.y58{bottom:381.135000px;}
.y23{bottom:387.795000px;}
.y77{bottom:393.195000px;}
.y57{bottom:402.195000px;}
.y22{bottom:408.855000px;}
.y76{bottom:414.255000px;}
.y56{bottom:423.255000px;}
.y21{bottom:429.915000px;}
.y75{bottom:435.315000px;}
.y55{bottom:444.315000px;}
.y20{bottom:450.975000px;}
.y74{bottom:456.375000px;}
.y54{bottom:465.375000px;}
.y1f{bottom:472.035000px;}
.y73{bottom:477.435000px;}
.y53{bottom:486.435000px;}
.y1e{bottom:493.095000px;}
.y72{bottom:498.495000px;}
.y52{bottom:507.495000px;}
.y1d{bottom:516.135000px;}
.y71{bottom:519.555000px;}
.y51{bottom:528.555000px;}
.y70{bottom:540.615000px;}
.y1c{bottom:546.375000px;}
.y86{bottom:548.355000px;}
.y50{bottom:549.615000px;}
.y6f{bottom:561.675000px;}
.y1b{bottom:567.435000px;}
.y4f{bottom:570.675000px;}
.y6e{bottom:582.735000px;}
.y1a{bottom:588.495000px;}
.y4e{bottom:591.735000px;}
.y6d{bottom:603.825000px;}
.y19{bottom:609.585000px;}
.y4d{bottom:612.825000px;}
.y6c{bottom:624.885000px;}
.y18{bottom:630.645000px;}
.y4c{bottom:633.885000px;}
.y6b{bottom:645.945000px;}
.y17{bottom:651.705000px;}
.y4b{bottom:654.945000px;}
.y6a{bottom:667.005000px;}
.y16{bottom:672.765000px;}
.y4a{bottom:676.005000px;}
.y69{bottom:688.065000px;}
.y15{bottom:693.825000px;}
.y49{bottom:697.065000px;}
.y68{bottom:709.125000px;}
.y14{bottom:714.885000px;}
.y48{bottom:718.125000px;}
.y67{bottom:730.185000px;}
.y13{bottom:735.945000px;}
.y47{bottom:739.185000px;}
.y66{bottom:751.245000px;}
.y12{bottom:757.005000px;}
.y46{bottom:760.245000px;}
.y11{bottom:778.065000px;}
.y45{bottom:781.305000px;}
.y10{bottom:799.125000px;}
.y44{bottom:802.365000px;}
.yf{bottom:820.185000px;}
.y43{bottom:823.425000px;}
.ye{bottom:841.245000px;}
.y42{bottom:844.485000px;}
.yd{bottom:862.350000px;}
.y41{bottom:865.590000px;}
.y40{bottom:886.650000px;}
.yc{bottom:890.250000px;}
.y3f{bottom:907.710000px;}
.yb{bottom:910.770000px;}
.ya{bottom:927.510000px;}
.y3e{bottom:928.770000px;}
.y3d{bottom:949.830000px;}
.y9{bottom:950.370000px;}
.y3c{bottom:970.890000px;}
.y8{bottom:977.550000px;}
.y3b{bottom:991.950000px;}
.y7{bottom:1011.210000px;}
.y3a{bottom:1013.010000px;}
.y39{bottom:1034.070000px;}
.y5{bottom:1051.530000px;}
.y38{bottom:1055.130000px;}
.y37{bottom:1076.190000px;}
.y4{bottom:1083.750000px;}
.y36{bottom:1097.250000px;}
.y3{bottom:1115.790000px;}
.y35{bottom:1118.310000px;}
.y34{bottom:1139.400000px;}
.y2{bottom:1148.040000px;}
.y33{bottom:1170.180000px;}
.y1{bottom:1182.600000px;}
.y32{bottom:1193.400000px;}
.hf{height:2.864531px;}
.h7{height:40.543863px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.hc{height:60.226875px;}
.h8{height:61.189805px;}
.hd{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.884219px;}
.hb{height:67.824844px;}
.h5{height:74.004654px;}
.h6{height:76.943118px;}
.he{height:84.240000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:182.370000px;}
.w4{width:585.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x4{left:52.739987px;}
.x1{left:53.999987px;}
.x3{left:56.879987px;}
.x5{left:58.319987px;}
.x6{left:64.799987px;}
.x2{left:75.599987px;}
.x9{left:80.999987px;}
.x7{left:86.399987px;}
.x8{left:107.675987px;}
.xa{left:168.870000px;}
.xb{left:236.370000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls13{letter-spacing:-0.515200pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.213867pt;}
.lse{letter-spacing:-0.190933pt;}
.ls8{letter-spacing:-0.102933pt;}
.lsb{letter-spacing:-0.095467pt;}
.ls1d{letter-spacing:-0.061867pt;}
.ls16{letter-spacing:-0.059733pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.150400pt;}
.ls7{letter-spacing:0.169067pt;}
.lsc{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.279467pt;}
.ls1a{letter-spacing:0.426240pt;}
.lsf{letter-spacing:0.581333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1b{letter-spacing:10.832640pt;}
.lsd{letter-spacing:14.032640pt;}
.ls15{letter-spacing:16.592640pt;}
.lsa{letter-spacing:22.352640pt;}
.ls3{letter-spacing:22.992640pt;}
.ls18{letter-spacing:37.840640pt;}
.ls11{letter-spacing:58.192640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.284587pt;}
.wsd{word-spacing:-12.277120pt;}
.wsf{word-spacing:-12.155520pt;}
.ws5{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.wse{word-spacing:-11.947520pt;}
.wsb{word-spacing:-11.945387pt;}
.ws10{word-spacing:-11.943253pt;}
.ws8{word-spacing:-11.909653pt;}
.ws6{word-spacing:-11.902187pt;}
.ws9{word-spacing:-11.814187pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1208.709547pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-517.132800pt;}
._18{margin-left:-10.287787pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._10{margin-left:-2.012160pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.482987pt;}
._f{width:3.537280pt;}
._11{width:5.182507pt;}
._12{width:6.108800pt;}
._13{width:7.138133pt;}
._b{width:8.180480pt;}
._a{width:9.798400pt;}
._c{width:10.741333pt;}
._19{width:12.996693pt;}
._e{width:14.091520pt;}
._d{width:15.298560pt;}
._14{width:16.237013pt;}
._17{width:17.132160pt;}
._16{width:18.804480pt;}
._15{width:19.760640pt;}
._1b{width:22.398933pt;}
._1a{width:23.638400pt;}
._8{width:27.664000pt;}
._1e{width:50.108373pt;}
._1c{width:59.972480pt;}
._1d{width:207.114880pt;}
.fs9{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:6.080000pt;}
.y8b{bottom:24.800000pt;}
.y88{bottom:36.320000pt;}
.y8a{bottom:43.520000pt;}
.y6{bottom:54.592000pt;}
.y89{bottom:62.234667pt;}
.y87{bottom:79.552000pt;}
.y31{bottom:82.592000pt;}
.y85{bottom:87.392000pt;}
.y65{bottom:95.392000pt;}
.y30{bottom:101.312000pt;}
.y84{bottom:106.112000pt;}
.y64{bottom:114.112000pt;}
.y2f{bottom:120.032000pt;}
.y83{bottom:124.832000pt;}
.y63{bottom:132.832000pt;}
.y2e{bottom:138.746667pt;}
.y82{bottom:143.546667pt;}
.y62{bottom:151.546667pt;}
.y2d{bottom:157.466667pt;}
.y81{bottom:162.266667pt;}
.y61{bottom:170.266667pt;}
.y2c{bottom:176.186667pt;}
.y80{bottom:180.986667pt;}
.y60{bottom:188.986667pt;}
.y2b{bottom:194.906667pt;}
.y7f{bottom:199.706667pt;}
.y5f{bottom:207.706667pt;}
.y2a{bottom:213.626667pt;}
.y7e{bottom:218.426667pt;}
.y5e{bottom:226.426667pt;}
.y29{bottom:232.346667pt;}
.y7d{bottom:237.146667pt;}
.y5d{bottom:245.146667pt;}
.y28{bottom:251.066667pt;}
.y7c{bottom:255.866667pt;}
.y5c{bottom:263.866667pt;}
.y27{bottom:269.786667pt;}
.y7b{bottom:274.586667pt;}
.y5b{bottom:282.586667pt;}
.y26{bottom:288.506667pt;}
.y7a{bottom:293.346667pt;}
.y5a{bottom:301.346667pt;}
.y25{bottom:307.266667pt;}
.y79{bottom:312.066667pt;}
.y59{bottom:320.066667pt;}
.y24{bottom:325.986667pt;}
.y78{bottom:330.786667pt;}
.y58{bottom:338.786667pt;}
.y23{bottom:344.706667pt;}
.y77{bottom:349.506667pt;}
.y57{bottom:357.506667pt;}
.y22{bottom:363.426667pt;}
.y76{bottom:368.226667pt;}
.y56{bottom:376.226667pt;}
.y21{bottom:382.146667pt;}
.y75{bottom:386.946667pt;}
.y55{bottom:394.946667pt;}
.y20{bottom:400.866667pt;}
.y74{bottom:405.666667pt;}
.y54{bottom:413.666667pt;}
.y1f{bottom:419.586667pt;}
.y73{bottom:424.386667pt;}
.y53{bottom:432.386667pt;}
.y1e{bottom:438.306667pt;}
.y72{bottom:443.106667pt;}
.y52{bottom:451.106667pt;}
.y1d{bottom:458.786667pt;}
.y71{bottom:461.826667pt;}
.y51{bottom:469.826667pt;}
.y70{bottom:480.546667pt;}
.y1c{bottom:485.666667pt;}
.y86{bottom:487.426667pt;}
.y50{bottom:488.546667pt;}
.y6f{bottom:499.266667pt;}
.y1b{bottom:504.386667pt;}
.y4f{bottom:507.266667pt;}
.y6e{bottom:517.986667pt;}
.y1a{bottom:523.106667pt;}
.y4e{bottom:525.986667pt;}
.y6d{bottom:536.733333pt;}
.y19{bottom:541.853333pt;}
.y4d{bottom:544.733333pt;}
.y6c{bottom:555.453333pt;}
.y18{bottom:560.573333pt;}
.y4c{bottom:563.453333pt;}
.y6b{bottom:574.173333pt;}
.y17{bottom:579.293333pt;}
.y4b{bottom:582.173333pt;}
.y6a{bottom:592.893333pt;}
.y16{bottom:598.013333pt;}
.y4a{bottom:600.893333pt;}
.y69{bottom:611.613333pt;}
.y15{bottom:616.733333pt;}
.y49{bottom:619.613333pt;}
.y68{bottom:630.333333pt;}
.y14{bottom:635.453333pt;}
.y48{bottom:638.333333pt;}
.y67{bottom:649.053333pt;}
.y13{bottom:654.173333pt;}
.y47{bottom:657.053333pt;}
.y66{bottom:667.773333pt;}
.y12{bottom:672.893333pt;}
.y46{bottom:675.773333pt;}
.y11{bottom:691.613333pt;}
.y45{bottom:694.493333pt;}
.y10{bottom:710.333333pt;}
.y44{bottom:713.213333pt;}
.yf{bottom:729.053333pt;}
.y43{bottom:731.933333pt;}
.ye{bottom:747.773333pt;}
.y42{bottom:750.653333pt;}
.yd{bottom:766.533333pt;}
.y41{bottom:769.413333pt;}
.y40{bottom:788.133333pt;}
.yc{bottom:791.333333pt;}
.y3f{bottom:806.853333pt;}
.yb{bottom:809.573333pt;}
.ya{bottom:824.453333pt;}
.y3e{bottom:825.573333pt;}
.y3d{bottom:844.293333pt;}
.y9{bottom:844.773333pt;}
.y3c{bottom:863.013333pt;}
.y8{bottom:868.933333pt;}
.y3b{bottom:881.733333pt;}
.y7{bottom:898.853333pt;}
.y3a{bottom:900.453333pt;}
.y39{bottom:919.173333pt;}
.y5{bottom:934.693333pt;}
.y38{bottom:937.893333pt;}
.y37{bottom:956.613333pt;}
.y4{bottom:963.333333pt;}
.y36{bottom:975.333333pt;}
.y3{bottom:991.813333pt;}
.y35{bottom:994.053333pt;}
.y34{bottom:1012.800000pt;}
.y2{bottom:1020.480000pt;}
.y33{bottom:1040.160000pt;}
.y1{bottom:1051.200000pt;}
.y32{bottom:1060.800000pt;}
.hf{height:2.546250pt;}
.h7{height:36.038989pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.hc{height:53.535000pt;}
.h8{height:54.390938pt;}
.hd{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:58.563750pt;}
.hb{height:60.288750pt;}
.h5{height:65.781915pt;}
.h6{height:68.393883pt;}
.he{height:74.880000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:162.106667pt;}
.w4{width:520.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x4{left:46.879988pt;}
.x1{left:47.999988pt;}
.x3{left:50.559988pt;}
.x5{left:51.839988pt;}
.x6{left:57.599988pt;}
.x2{left:67.199988pt;}
.x9{left:71.999988pt;}
.x7{left:76.799988pt;}
.x8{left:95.711988pt;}
.xa{left:150.106667pt;}
.xb{left:210.106667pt;}
}




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