
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_caa4d3f7cbb22ec8c8e1ce64.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.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_90f0c13077079df45e69fde7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_d0fa464a0217e231f9f6384d.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_4f89ae606bf5383c767a0fb6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e0d450c81c9734e217c044e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_792d218de2aa6838c6801ad3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_eb34cf67c8ff74a4e7896dcc.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.274800px;}
.lsa{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.109200px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.229440px;}
.ls5{letter-spacing:0.262080px;}
.lse{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.lsf{letter-spacing:39.905280px;}
.lsc{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws0{word-spacing:-59.760000px;}
.wsa{word-spacing:-28.987200px;}
.ws9{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.560000px;}
.wse{word-spacing:-16.450800px;}
.ws5{word-spacing:-16.297800px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._a{margin-left:-2.015520px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._2c{width:3.444480px;}
._6{width:4.536000px;}
._7{width:5.695200px;}
._5{width:6.955200px;}
._9{width:7.989600px;}
._8{width:9.216000px;}
._b{width:10.578240px;}
._15{width:11.923200px;}
._14{width:13.579200px;}
._3{width:14.904000px;}
._4{width:15.948000px;}
._29{width:17.818560px;}
._10{width:18.944640px;}
._11{width:20.165280px;}
._31{width:21.887520px;}
._16{width:23.382720px;}
._17{width:24.454560px;}
._19{width:25.966080px;}
._1c{width:27.754560px;}
._1b{width:28.842720px;}
._21{width:30.498720px;}
._30{width:31.728960px;}
._20{width:33.128160px;}
._1f{width:34.796160px;}
._1a{width:35.835840px;}
._36{width:37.032480px;}
._2a{width:38.072160px;}
._28{width:39.292320px;}
._1e{width:40.870080px;}
._1d{width:42.284160px;}
._32{width:44.274720px;}
._39{width:45.548640px;}
._f{width:46.823520px;}
._e{width:48.516000px;}
._38{width:50.731680px;}
._24{width:51.733440px;}
._18{width:52.859520px;}
._13{width:54.846720px;}
._12{width:56.332320px;}
._2b{width:58.262880px;}
._2d{width:59.275200px;}
._41{width:61.073280px;}
._33{width:62.381760px;}
._34{width:63.524160px;}
._22{width:64.848960px;}
._23{width:65.862720px;}
._27{width:67.875840px;}
._3c{width:69.684480px;}
._2e{width:71.009280px;}
._2f{width:73.111200px;}
._37{width:75.116160px;}
._3d{width:76.896480px;}
._3e{width:78.605280px;}
._26{width:80.850720px;}
._25{width:82.033440px;}
._c{width:84.144960px;}
._d{width:85.780800px;}
._3a{width:88.695360px;}
._3f{width:90.020160px;}
._35{width:93.729600px;}
._3b{width:108.190080px;}
._40{width:120.755520px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y37{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y36{bottom:37.080000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y35{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.y32{bottom:87.156000px;}
.y7a{bottom:87.696000px;}
.yf8{bottom:95.076000px;}
.yc3{bottom:96.156000px;}
.yd4{bottom:97.416000px;}
.y96{bottom:97.596000px;}
.y5d{bottom:99.756000px;}
.ya3{bottom:101.556000px;}
.y2f{bottom:115.596000px;}
.y79{bottom:116.136000px;}
.yf7{bottom:123.516000px;}
.yc2{bottom:124.776000px;}
.yd3{bottom:125.856000px;}
.y95{bottom:126.036000px;}
.y5c{bottom:128.196000px;}
.ya2{bottom:129.996000px;}
.y2e{bottom:144.036000px;}
.y78{bottom:144.576000px;}
.yf6{bottom:151.950000px;}
.yc1{bottom:153.210000px;}
.yd2{bottom:154.290000px;}
.y94{bottom:154.470000px;}
.y5b{bottom:156.630000px;}
.ya1{bottom:158.610000px;}
.y2d{bottom:172.650000px;}
.y77{bottom:173.010000px;}
.yf5{bottom:180.390000px;}
.yc0{bottom:181.650000px;}
.yd1{bottom:182.730000px;}
.y93{bottom:182.910000px;}
.y5a{bottom:185.250000px;}
.ya0{bottom:187.050000px;}
.y2c{bottom:201.090000px;}
.y76{bottom:201.450000px;}
.yf4{bottom:208.830000px;}
.ybf{bottom:210.090000px;}
.yd0{bottom:211.170000px;}
.y92{bottom:211.350000px;}
.y59{bottom:213.690000px;}
.y9f{bottom:215.490000px;}
.y2b{bottom:229.530000px;}
.y75{bottom:229.890000px;}
.yf3{bottom:237.270000px;}
.ybe{bottom:238.530000px;}
.ycf{bottom:239.790000px;}
.y91{bottom:239.970000px;}
.y58{bottom:242.130000px;}
.y9e{bottom:243.930000px;}
.y2a{bottom:257.970000px;}
.y74{bottom:258.330000px;}
.yf2{bottom:265.890000px;}
.ybd{bottom:266.970000px;}
.yd9{bottom:267.150000px;}
.y90{bottom:268.410000px;}
.yce{bottom:269.310000px;}
.y57{bottom:270.570000px;}
.y9d{bottom:272.550000px;}
.y29{bottom:286.410000px;}
.y73{bottom:286.770000px;}
.yf1{bottom:294.330000px;}
.ybc{bottom:295.230000px;}
.ye3{bottom:295.410000px;}
.yd8{bottom:296.670000px;}
.y8f{bottom:296.850000px;}
.ycd{bottom:297.750000px;}
.y9c{bottom:298.110000px;}
.y56{bottom:299.010000px;}
.y28{bottom:314.850000px;}
.y72{bottom:315.210000px;}
.ye2{bottom:323.895000px;}
.ybb{bottom:325.155000px;}
.y8e{bottom:325.335000px;}
.ycc{bottom:326.415000px;}
.y55{bottom:327.495000px;}
.y27{bottom:343.335000px;}
.y71{bottom:343.875000px;}
.ye1{bottom:352.335000px;}
.y9b{bottom:353.415000px;}
.yba{bottom:353.595000px;}
.y8d{bottom:353.775000px;}
.ycb{bottom:354.855000px;}
.y54{bottom:355.935000px;}
.y26{bottom:371.775000px;}
.y70{bottom:372.315000px;}
.ye0{bottom:380.955000px;}
.yb9{bottom:382.035000px;}
.y8c{bottom:382.215000px;}
.yca{bottom:383.295000px;}
.y53{bottom:384.375000px;}
.y25{bottom:400.215000px;}
.y6f{bottom:400.755000px;}
.ydf{bottom:409.395000px;}
.yb8{bottom:410.475000px;}
.y8b{bottom:410.655000px;}
.yc9{bottom:411.735000px;}
.y52{bottom:412.455000px;}
.y5e{bottom:412.815000px;}
.y24{bottom:428.835000px;}
.y6e{bottom:429.195000px;}
.yf0{bottom:437.835000px;}
.yb7{bottom:438.915000px;}
.y8a{bottom:439.095000px;}
.yc8{bottom:440.175000px;}
.y51{bottom:441.435000px;}
.y23{bottom:457.275000px;}
.y6d{bottom:457.635000px;}
.yef{bottom:466.275000px;}
.yb6{bottom:467.355000px;}
.y89{bottom:467.535000px;}
.yc7{bottom:468.615000px;}
.y50{bottom:469.875000px;}
.y22{bottom:485.715000px;}
.y6c{bottom:486.075000px;}
.yee{bottom:494.715000px;}
.yb5{bottom:495.975000px;}
.y88{bottom:496.155000px;}
.yc6{bottom:497.055000px;}
.y4f{bottom:498.315000px;}
.y21{bottom:514.155000px;}
.y6b{bottom:514.515000px;}
.yed{bottom:523.335000px;}
.yb4{bottom:524.415000px;}
.y87{bottom:524.595000px;}
.yc5{bottom:525.495000px;}
.y4e{bottom:526.755000px;}
.y31{bottom:542.235000px;}
.y20{bottom:542.595000px;}
.y6a{bottom:543.135000px;}
.yb3{bottom:552.855000px;}
.y86{bottom:554.115000px;}
.y4d{bottom:555.195000px;}
.y1f{bottom:571.065000px;}
.y69{bottom:572.685000px;}
.yb2{bottom:581.325000px;}
.y85{bottom:582.585000px;}
.y4c{bottom:583.665000px;}
.y1e{bottom:599.145000px;}
.y30{bottom:599.505000px;}
.y68{bottom:601.125000px;}
.yb1{bottom:609.765000px;}
.yd7{bottom:609.945000px;}
.ye6{bottom:611.025000px;}
.y84{bottom:611.205000px;}
.y4b{bottom:612.105000px;}
.y67{bottom:629.565000px;}
.y1d{bottom:631.725000px;}
.yb0{bottom:638.025000px;}
.yde{bottom:638.205000px;}
.yd6{bottom:639.465000px;}
.y83{bottom:639.645000px;}
.y4a{bottom:640.545000px;}
.y66{bottom:658.005000px;}
.y1c{bottom:660.165000px;}
.ydd{bottom:666.645000px;}
.yaf{bottom:667.905000px;}
.y82{bottom:668.085000px;}
.y49{bottom:668.985000px;}
.y65{bottom:686.445000px;}
.y1b{bottom:688.605000px;}
.ydc{bottom:695.085000px;}
.yae{bottom:696.345000px;}
.y81{bottom:696.525000px;}
.y48{bottom:697.605000px;}
.y64{bottom:715.065000px;}
.y1a{bottom:717.225000px;}
.y9a{bottom:720.825000px;}
.ydb{bottom:723.345000px;}
.yec{bottom:723.525000px;}
.yad{bottom:724.785000px;}
.y80{bottom:724.965000px;}
.y47{bottom:726.045000px;}
.y63{bottom:743.505000px;}
.y99{bottom:745.485000px;}
.y19{bottom:745.665000px;}
.yeb{bottom:752.145000px;}
.yac{bottom:753.225000px;}
.y7f{bottom:753.405000px;}
.yfb{bottom:754.125000px;}
.y46{bottom:754.485000px;}
.y62{bottom:771.945000px;}
.y18{bottom:774.105000px;}
.yea{bottom:780.585000px;}
.yab{bottom:781.665000px;}
.y7e{bottom:781.845000px;}
.y45{bottom:782.925000px;}
.y61{bottom:800.565000px;}
.y17{bottom:802.545000px;}
.yaa{bottom:810.105000px;}
.ye5{bottom:810.285000px;}
.y7d{bottom:810.465000px;}
.yc4{bottom:811.005000px;}
.y44{bottom:811.365000px;}
.y60{bottom:829.770000px;}
.y16{bottom:832.110000px;}
.y7c{bottom:836.070000px;}
.ya9{bottom:838.770000px;}
.y43{bottom:839.850000px;}
.y5f{bottom:854.610000px;}
.y15{bottom:863.250000px;}
.y7b{bottom:866.670000px;}
.ya8{bottom:867.210000px;}
.y42{bottom:868.290000px;}
.y14{bottom:893.130000px;}
.ya7{bottom:895.650000px;}
.y41{bottom:896.730000px;}
.y98{bottom:907.350000px;}
.ya6{bottom:924.090000px;}
.yf9{bottom:924.810000px;}
.y40{bottom:925.170000px;}
.y13{bottom:927.510000px;}
.y97{bottom:931.830000px;}
.ya5{bottom:952.530000px;}
.yd5{bottom:952.710000px;}
.y3f{bottom:953.790000px;}
.y12{bottom:958.110000px;}
.yda{bottom:980.790000px;}
.ye9{bottom:980.970000px;}
.ya4{bottom:981.150000px;}
.ye4{bottom:981.870000px;}
.y3e{bottom:982.230000px;}
.y11{bottom:989.070000px;}
.ye8{bottom:1009.410000px;}
.yfa{bottom:1010.310000px;}
.y3d{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y4{bottom:1032.810000px;}
.ye7{bottom:1038.030000px;}
.y3c{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y3b{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y3a{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y34{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y33{bottom:1131.660000px;}
.h6{height:33.480000px;}
.hc{height:42.997500px;}
.hb{height:47.344922px;}
.h15{height:47.901094px;}
.h1{height:48.045938px;}
.hf{height:52.971680px;}
.he{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.h13{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h14{height:68.084282px;}
.hd{height:70.664062px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h12{height:111.043849px;}
.h11{height:111.043854px;}
.h4{height:167.250000px;}
.h10{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xd{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.xc{left:432.074986px;}
.x8{left:486.104986px;}
.xf{left:513.104986px;}
.x5{left:521.025000px;}
.xe{left:864.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.244267pt;}
.lsa{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.203947pt;}
.ls5{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsf{letter-spacing:35.471360pt;}
.lsc{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsb{word-spacing:-58.880000pt;}
.ws0{word-spacing:-53.120000pt;}
.wsa{word-spacing:-25.766400pt;}
.ws9{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.622933pt;}
.ws5{word-spacing:-14.486933pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._a{margin-left:-1.791573pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._2c{width:3.061760pt;}
._6{width:4.032000pt;}
._7{width:5.062400pt;}
._5{width:6.182400pt;}
._9{width:7.101867pt;}
._8{width:8.192000pt;}
._b{width:9.402880pt;}
._15{width:10.598400pt;}
._14{width:12.070400pt;}
._3{width:13.248000pt;}
._4{width:14.176000pt;}
._29{width:15.838720pt;}
._10{width:16.839680pt;}
._11{width:17.924693pt;}
._31{width:19.455573pt;}
._16{width:20.784640pt;}
._17{width:21.737387pt;}
._19{width:23.080960pt;}
._1c{width:24.670720pt;}
._1b{width:25.637973pt;}
._21{width:27.109973pt;}
._30{width:28.203520pt;}
._20{width:29.447253pt;}
._1f{width:30.929920pt;}
._1a{width:31.854080pt;}
._36{width:32.917760pt;}
._2a{width:33.841920pt;}
._28{width:34.926507pt;}
._1e{width:36.328960pt;}
._1d{width:37.585920pt;}
._32{width:39.355307pt;}
._39{width:40.487680pt;}
._f{width:41.620907pt;}
._e{width:43.125333pt;}
._38{width:45.094827pt;}
._24{width:45.985280pt;}
._18{width:46.986240pt;}
._13{width:48.752640pt;}
._12{width:50.073173pt;}
._2b{width:51.789227pt;}
._2d{width:52.689067pt;}
._41{width:54.287360pt;}
._33{width:55.450453pt;}
._34{width:56.465920pt;}
._22{width:57.643520pt;}
._23{width:58.544640pt;}
._27{width:60.334080pt;}
._3c{width:61.941760pt;}
._2e{width:63.119360pt;}
._2f{width:64.987733pt;}
._37{width:66.769920pt;}
._3d{width:68.352427pt;}
._3e{width:69.871360pt;}
._26{width:71.867307pt;}
._25{width:72.918613pt;}
._c{width:74.795520pt;}
._d{width:76.249600pt;}
._3a{width:78.840320pt;}
._3f{width:80.017920pt;}
._35{width:83.315200pt;}
._3b{width:96.168960pt;}
._40{width:107.338240pt;}
._2{width:854.826667pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y37{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y36{bottom:32.960000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y35{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.y32{bottom:77.472000pt;}
.y7a{bottom:77.952000pt;}
.yf8{bottom:84.512000pt;}
.yc3{bottom:85.472000pt;}
.yd4{bottom:86.592000pt;}
.y96{bottom:86.752000pt;}
.y5d{bottom:88.672000pt;}
.ya3{bottom:90.272000pt;}
.y2f{bottom:102.752000pt;}
.y79{bottom:103.232000pt;}
.yf7{bottom:109.792000pt;}
.yc2{bottom:110.912000pt;}
.yd3{bottom:111.872000pt;}
.y95{bottom:112.032000pt;}
.y5c{bottom:113.952000pt;}
.ya2{bottom:115.552000pt;}
.y2e{bottom:128.032000pt;}
.y78{bottom:128.512000pt;}
.yf6{bottom:135.066667pt;}
.yc1{bottom:136.186667pt;}
.yd2{bottom:137.146667pt;}
.y94{bottom:137.306667pt;}
.y5b{bottom:139.226667pt;}
.ya1{bottom:140.986667pt;}
.y2d{bottom:153.466667pt;}
.y77{bottom:153.786667pt;}
.yf5{bottom:160.346667pt;}
.yc0{bottom:161.466667pt;}
.yd1{bottom:162.426667pt;}
.y93{bottom:162.586667pt;}
.y5a{bottom:164.666667pt;}
.ya0{bottom:166.266667pt;}
.y2c{bottom:178.746667pt;}
.y76{bottom:179.066667pt;}
.yf4{bottom:185.626667pt;}
.ybf{bottom:186.746667pt;}
.yd0{bottom:187.706667pt;}
.y92{bottom:187.866667pt;}
.y59{bottom:189.946667pt;}
.y9f{bottom:191.546667pt;}
.y2b{bottom:204.026667pt;}
.y75{bottom:204.346667pt;}
.yf3{bottom:210.906667pt;}
.ybe{bottom:212.026667pt;}
.ycf{bottom:213.146667pt;}
.y91{bottom:213.306667pt;}
.y58{bottom:215.226667pt;}
.y9e{bottom:216.826667pt;}
.y2a{bottom:229.306667pt;}
.y74{bottom:229.626667pt;}
.yf2{bottom:236.346667pt;}
.ybd{bottom:237.306667pt;}
.yd9{bottom:237.466667pt;}
.y90{bottom:238.586667pt;}
.yce{bottom:239.386667pt;}
.y57{bottom:240.506667pt;}
.y9d{bottom:242.266667pt;}
.y29{bottom:254.586667pt;}
.y73{bottom:254.906667pt;}
.yf1{bottom:261.626667pt;}
.ybc{bottom:262.426667pt;}
.ye3{bottom:262.586667pt;}
.yd8{bottom:263.706667pt;}
.y8f{bottom:263.866667pt;}
.ycd{bottom:264.666667pt;}
.y9c{bottom:264.986667pt;}
.y56{bottom:265.786667pt;}
.y28{bottom:279.866667pt;}
.y72{bottom:280.186667pt;}
.ye2{bottom:287.906667pt;}
.ybb{bottom:289.026667pt;}
.y8e{bottom:289.186667pt;}
.ycc{bottom:290.146667pt;}
.y55{bottom:291.106667pt;}
.y27{bottom:305.186667pt;}
.y71{bottom:305.666667pt;}
.ye1{bottom:313.186667pt;}
.y9b{bottom:314.146667pt;}
.yba{bottom:314.306667pt;}
.y8d{bottom:314.466667pt;}
.ycb{bottom:315.426667pt;}
.y54{bottom:316.386667pt;}
.y26{bottom:330.466667pt;}
.y70{bottom:330.946667pt;}
.ye0{bottom:338.626667pt;}
.yb9{bottom:339.586667pt;}
.y8c{bottom:339.746667pt;}
.yca{bottom:340.706667pt;}
.y53{bottom:341.666667pt;}
.y25{bottom:355.746667pt;}
.y6f{bottom:356.226667pt;}
.ydf{bottom:363.906667pt;}
.yb8{bottom:364.866667pt;}
.y8b{bottom:365.026667pt;}
.yc9{bottom:365.986667pt;}
.y52{bottom:366.626667pt;}
.y5e{bottom:366.946667pt;}
.y24{bottom:381.186667pt;}
.y6e{bottom:381.506667pt;}
.yf0{bottom:389.186667pt;}
.yb7{bottom:390.146667pt;}
.y8a{bottom:390.306667pt;}
.yc8{bottom:391.266667pt;}
.y51{bottom:392.386667pt;}
.y23{bottom:406.466667pt;}
.y6d{bottom:406.786667pt;}
.yef{bottom:414.466667pt;}
.yb6{bottom:415.426667pt;}
.y89{bottom:415.586667pt;}
.yc7{bottom:416.546667pt;}
.y50{bottom:417.666667pt;}
.y22{bottom:431.746667pt;}
.y6c{bottom:432.066667pt;}
.yee{bottom:439.746667pt;}
.yb5{bottom:440.866667pt;}
.y88{bottom:441.026667pt;}
.yc6{bottom:441.826667pt;}
.y4f{bottom:442.946667pt;}
.y21{bottom:457.026667pt;}
.y6b{bottom:457.346667pt;}
.yed{bottom:465.186667pt;}
.yb4{bottom:466.146667pt;}
.y87{bottom:466.306667pt;}
.yc5{bottom:467.106667pt;}
.y4e{bottom:468.226667pt;}
.y31{bottom:481.986667pt;}
.y20{bottom:482.306667pt;}
.y6a{bottom:482.786667pt;}
.yb3{bottom:491.426667pt;}
.y86{bottom:492.546667pt;}
.y4d{bottom:493.506667pt;}
.y1f{bottom:507.613333pt;}
.y69{bottom:509.053333pt;}
.yb2{bottom:516.733333pt;}
.y85{bottom:517.853333pt;}
.y4c{bottom:518.813333pt;}
.y1e{bottom:532.573333pt;}
.y30{bottom:532.893333pt;}
.y68{bottom:534.333333pt;}
.yb1{bottom:542.013333pt;}
.yd7{bottom:542.173333pt;}
.ye6{bottom:543.133333pt;}
.y84{bottom:543.293333pt;}
.y4b{bottom:544.093333pt;}
.y67{bottom:559.613333pt;}
.y1d{bottom:561.533333pt;}
.yb0{bottom:567.133333pt;}
.yde{bottom:567.293333pt;}
.yd6{bottom:568.413333pt;}
.y83{bottom:568.573333pt;}
.y4a{bottom:569.373333pt;}
.y66{bottom:584.893333pt;}
.y1c{bottom:586.813333pt;}
.ydd{bottom:592.573333pt;}
.yaf{bottom:593.693333pt;}
.y82{bottom:593.853333pt;}
.y49{bottom:594.653333pt;}
.y65{bottom:610.173333pt;}
.y1b{bottom:612.093333pt;}
.ydc{bottom:617.853333pt;}
.yae{bottom:618.973333pt;}
.y81{bottom:619.133333pt;}
.y48{bottom:620.093333pt;}
.y64{bottom:635.613333pt;}
.y1a{bottom:637.533333pt;}
.y9a{bottom:640.733333pt;}
.ydb{bottom:642.973333pt;}
.yec{bottom:643.133333pt;}
.yad{bottom:644.253333pt;}
.y80{bottom:644.413333pt;}
.y47{bottom:645.373333pt;}
.y63{bottom:660.893333pt;}
.y99{bottom:662.653333pt;}
.y19{bottom:662.813333pt;}
.yeb{bottom:668.573333pt;}
.yac{bottom:669.533333pt;}
.y7f{bottom:669.693333pt;}
.yfb{bottom:670.333333pt;}
.y46{bottom:670.653333pt;}
.y62{bottom:686.173333pt;}
.y18{bottom:688.093333pt;}
.yea{bottom:693.853333pt;}
.yab{bottom:694.813333pt;}
.y7e{bottom:694.973333pt;}
.y45{bottom:695.933333pt;}
.y61{bottom:711.613333pt;}
.y17{bottom:713.373333pt;}
.yaa{bottom:720.093333pt;}
.ye5{bottom:720.253333pt;}
.y7d{bottom:720.413333pt;}
.yc4{bottom:720.893333pt;}
.y44{bottom:721.213333pt;}
.y60{bottom:737.573333pt;}
.y16{bottom:739.653333pt;}
.y7c{bottom:743.173333pt;}
.ya9{bottom:745.573333pt;}
.y43{bottom:746.533333pt;}
.y5f{bottom:759.653333pt;}
.y15{bottom:767.333333pt;}
.y7b{bottom:770.373333pt;}
.ya8{bottom:770.853333pt;}
.y42{bottom:771.813333pt;}
.y14{bottom:793.893333pt;}
.ya7{bottom:796.133333pt;}
.y41{bottom:797.093333pt;}
.y98{bottom:806.533333pt;}
.ya6{bottom:821.413333pt;}
.yf9{bottom:822.053333pt;}
.y40{bottom:822.373333pt;}
.y13{bottom:824.453333pt;}
.y97{bottom:828.293333pt;}
.ya5{bottom:846.693333pt;}
.yd5{bottom:846.853333pt;}
.y3f{bottom:847.813333pt;}
.y12{bottom:851.653333pt;}
.yda{bottom:871.813333pt;}
.ye9{bottom:871.973333pt;}
.ya4{bottom:872.133333pt;}
.ye4{bottom:872.773333pt;}
.y3e{bottom:873.093333pt;}
.y11{bottom:879.173333pt;}
.ye8{bottom:897.253333pt;}
.yfa{bottom:898.053333pt;}
.y3d{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y4{bottom:918.053333pt;}
.ye7{bottom:922.693333pt;}
.y3c{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y3b{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y3a{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y34{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y33{bottom:1005.920000pt;}
.h6{height:29.760000pt;}
.hc{height:38.220000pt;}
.hb{height:42.084375pt;}
.h15{height:42.578750pt;}
.h1{height:42.707500pt;}
.hf{height:47.085938pt;}
.he{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.h13{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h14{height:60.519362pt;}
.hd{height:62.812500pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h12{height:98.705643pt;}
.h11{height:98.705648pt;}
.h4{height:148.666667pt;}
.h10{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xd{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.xc{left:384.066655pt;}
.x8{left:432.093321pt;}
.xf{left:456.093321pt;}
.x5{left:463.133333pt;}
.xe{left:768.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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