
    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_de0aaa2eaa266838a806522d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_daf2ab1ba14a4fbb201b922f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c3bdf581044b751e50abb244.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_48a51a422c8ec8b9e9a8efb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.788574;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_239629f10fca78e68cc2e2db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_76e067a566550e2bd3d442d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_867cbbcb3f253202277979cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_918054a6b6d16b085029e307.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a0298c6424f4214639f19e5e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097656;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_6ec167d3657e017b63f5246f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6ef78b33065ec9560ede6bbb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172363;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_33ea9a5ff3ee2b48a24b3400.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040527;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;}
.m2{transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249998,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);}
.m1{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-12.240000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v7{vertical-align:14.400000px;}
.v1{vertical-align:27.360000px;}
.ls18{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.269400px;}
.ls17{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.190746px;}
.ls13{letter-spacing:-0.100800px;}
.lsc{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106560px;}
.lsd{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.184320px;}
.lsf{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.339600px;}
.lse{letter-spacing:0.360000px;}
.ls4{letter-spacing:1.594800px;}
.ls6{letter-spacing:2.718720px;}
.ls0{letter-spacing:3.060000px;}
.ls1{letter-spacing:4.644000px;}
.ls3{letter-spacing:10.340640px;}
.ls5{letter-spacing:13.359600px;}
.ls8{letter-spacing:14.079600px;}
.ls16{letter-spacing:119.004937px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.wsd{word-spacing:-59.659200px;}
.wsb{word-spacing:-46.440720px;}
.wsa{word-spacing:-43.200720px;}
.wsc{word-spacing:-42.099600px;}
.ws9{word-spacing:-41.760000px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws12{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wse{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.580000px;}
.ws13{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.790600px;}
.ws1{word-spacing:-10.440000px;}
.ws15{word-spacing:-9.349540px;}
.wsf{word-spacing:0.000000px;}
.ws17{word-spacing:78.318507px;}
.ws16{word-spacing:89.237551px;}
._5{margin-left:-5.238000px;}
._d{margin-left:-4.115280px;}
._3{margin-left:-3.066000px;}
._0{margin-left:-1.080000px;}
._1{width:1.128000px;}
._4{width:2.322000px;}
._2{width:3.348000px;}
._6{width:4.752000px;}
._8{width:6.672000px;}
._7{width:7.722000px;}
._9{width:9.522000px;}
._b{width:10.566000px;}
._a{width:11.766000px;}
._c{width:12.985200px;}
._f{width:16.378560px;}
._e{width:17.629200px;}
._10{width:19.182960px;}
._11{width:20.548800px;}
._18{width:21.708960px;}
._14{width:28.027440px;}
._15{width:29.170320px;}
._19{width:31.656000px;}
._12{width:33.951120px;}
._1a{width:36.612000px;}
._17{width:41.657040px;}
._16{width:42.668640px;}
._13{width:63.108000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.369648px;}
.fs9{font-size:41.369911px;}
.fs8{font-size:41.419192px;}
.fsa{font-size:41.419456px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.474854px;}
.ya4{bottom:17.285535px;}
.y9c{bottom:30.699705px;}
.y9d{bottom:59.114501px;}
.ya6{bottom:68.636333px;}
.y9e{bottom:87.525169px;}
.ya5{bottom:88.206406px;}
.y5d{bottom:111.816000px;}
.y9f{bottom:115.940998px;}
.y33{bottom:117.036000px;}
.y7c{bottom:126.756000px;}
.y5c{bottom:129.816000px;}
.y32{bottom:135.036000px;}
.ya0{bottom:144.356826px;}
.y7b{bottom:144.756000px;}
.y5b{bottom:147.816000px;}
.y31{bottom:153.030000px;}
.y9a{bottom:157.170000px;}
.y7a{bottom:162.750000px;}
.y5a{bottom:165.810000px;}
.y30{bottom:171.030000px;}
.y99{bottom:172.110000px;}
.ya1{bottom:172.767494px;}
.yab{bottom:176.509135px;}
.y79{bottom:180.750000px;}
.y59{bottom:183.810000px;}
.y98{bottom:187.050000px;}
.y2f{bottom:189.030000px;}
.yaa{bottom:189.328771px;}
.y78{bottom:198.750000px;}
.ya2{bottom:201.183322px;}
.y58{bottom:201.810000px;}
.ya9{bottom:202.148408px;}
.y97{bottom:202.170000px;}
.y2e{bottom:207.030000px;}
.ya8{bottom:214.957722px;}
.y77{bottom:216.750000px;}
.y96{bottom:217.110000px;}
.y57{bottom:219.810000px;}
.y2d{bottom:225.030000px;}
.ya3{bottom:229.593990px;}
.y95{bottom:232.050000px;}
.y76{bottom:234.750000px;}
.y56{bottom:237.810000px;}
.y2c{bottom:243.030000px;}
.y94{bottom:247.170000px;}
.y75{bottom:252.750000px;}
.y55{bottom:255.810000px;}
.y2b{bottom:261.030000px;}
.y93{bottom:262.110000px;}
.y74{bottom:270.750000px;}
.y54{bottom:273.810000px;}
.y92{bottom:277.050000px;}
.y2a{bottom:279.030000px;}
.y73{bottom:288.750000px;}
.y53{bottom:291.810000px;}
.y91{bottom:292.170000px;}
.y29{bottom:297.030000px;}
.y72{bottom:306.750000px;}
.y90{bottom:307.110000px;}
.y52{bottom:309.855000px;}
.y28{bottom:315.075000px;}
.y71{bottom:324.795000px;}
.y51{bottom:327.855000px;}
.y8f{bottom:331.815000px;}
.y27{bottom:333.075000px;}
.y70{bottom:342.795000px;}
.y50{bottom:345.855000px;}
.y26{bottom:351.075000px;}
.y6f{bottom:360.795000px;}
.y4f{bottom:363.855000px;}
.y25{bottom:369.075000px;}
.y8e{bottom:376.815000px;}
.y6e{bottom:378.795000px;}
.y4e{bottom:381.855000px;}
.y24{bottom:387.075000px;}
.y8d{bottom:394.815000px;}
.y6d{bottom:396.795000px;}
.y4d{bottom:399.855000px;}
.y23{bottom:405.075000px;}
.y8c{bottom:412.815000px;}
.y6c{bottom:414.795000px;}
.y4c{bottom:417.855000px;}
.y22{bottom:423.075000px;}
.y8b{bottom:430.815000px;}
.y6b{bottom:432.795000px;}
.y4b{bottom:435.855000px;}
.y21{bottom:441.075000px;}
.y8a{bottom:448.815000px;}
.y4a{bottom:453.855000px;}
.y20{bottom:459.075000px;}
.y6a{bottom:459.795000px;}
.y89{bottom:466.815000px;}
.y49{bottom:471.855000px;}
.y1f{bottom:477.075000px;}
.y88{bottom:484.815000px;}
.y48{bottom:489.855000px;}
.y1e{bottom:495.075000px;}
.y87{bottom:502.815000px;}
.y69{bottom:504.075000px;}
.y47{bottom:507.855000px;}
.y1d{bottom:513.075000px;}
.y68{bottom:519.195000px;}
.y86{bottom:520.815000px;}
.y46{bottom:525.855000px;}
.y1c{bottom:531.075000px;}
.y67{bottom:534.495000px;}
.y85{bottom:538.815000px;}
.y45{bottom:543.855000px;}
.y66{bottom:548.535000px;}
.y1b{bottom:549.075000px;}
.y84{bottom:556.815000px;}
.y44{bottom:561.885000px;}
.y1a{bottom:567.105000px;}
.y43{bottom:579.885000px;}
.y83{bottom:583.845000px;}
.y19{bottom:585.105000px;}
.y42{bottom:597.885000px;}
.y18{bottom:603.105000px;}
.y17{bottom:621.105000px;}
.y41{bottom:626.505000px;}
.y82{bottom:628.845000px;}
.y16{bottom:639.105000px;}
.y81{bottom:646.845000px;}
.y40{bottom:653.685000px;}
.y15{bottom:657.105000px;}
.y80{bottom:664.845000px;}
.y3f{bottom:671.685000px;}
.y14{bottom:675.105000px;}
.y9b{bottom:679.379232px;}
.y13{bottom:693.105000px;}
.y3e{bottom:698.865000px;}
.y12{bottom:711.105000px;}
.y3d{bottom:726.045000px;}
.y11{bottom:729.105000px;}
.y3c{bottom:744.045000px;}
.y10{bottom:747.105000px;}
.y3b{bottom:762.045000px;}
.yf{bottom:774.105000px;}
.y3a{bottom:789.045000px;}
.ye{bottom:818.430000px;}
.y39{bottom:834.090000px;}
.yd{bottom:836.430000px;}
.yc{bottom:851.550000px;}
.y38{bottom:852.090000px;}
.yb{bottom:866.490000px;}
.y37{bottom:870.090000px;}
.ya{bottom:881.430000px;}
.y36{bottom:888.090000px;}
.y9{bottom:896.550000px;}
.y35{bottom:906.090000px;}
.y8{bottom:911.490000px;}
.y34{bottom:924.090000px;}
.y7{bottom:926.430000px;}
.y7f{bottom:930.570000px;}
.y6{bottom:942.450000px;}
.y7e{bottom:948.570000px;}
.y5{bottom:962.970000px;}
.y65{bottom:964.230000px;}
.y7d{bottom:966.570000px;}
.y64{bottom:984.570000px;}
.y4{bottom:987.810000px;}
.y63{bottom:1002.570000px;}
.y3{bottom:1010.130000px;}
.y62{bottom:1020.570000px;}
.y61{bottom:1038.570000px;}
.y2{bottom:1041.810000px;}
.y60{bottom:1056.570000px;}
.y1{bottom:1072.800000px;}
.y5f{bottom:1074.600000px;}
.y5e{bottom:1092.600000px;}
.h3{height:29.158594px;}
.hb{height:37.705078px;}
.h7{height:38.100586px;}
.h6{height:39.128906px;}
.hd{height:41.147448px;}
.he{height:41.196726px;}
.h9{height:41.726953px;}
.h8{height:42.164648px;}
.h11{height:42.359449px;}
.hf{height:42.359719px;}
.h10{height:42.410449px;}
.h4{height:46.251562px;}
.h5{height:50.273438px;}
.ha{height:54.566719px;}
.h2{height:61.043203px;}
.h1{height:75.410156px;}
.hc{height:243.077647px;}
.h0{height:1188.000000px;}
.w2{width:377.345614px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:10.608236px;}
.x16{left:23.180230px;}
.x12{left:27.007566px;}
.x13{left:30.178433px;}
.x14{left:55.410157px;}
.x1{left:68.039986px;}
.x6{left:82.079986px;}
.xe{left:171.029986px;}
.x17{left:186.518095px;}
.x7{left:204.689986px;}
.x4{left:217.829986px;}
.x18{left:223.083192px;}
.x3{left:291.854986px;}
.x2{left:367.994986px;}
.x5{left:388.154986px;}
.xd{left:459.614986px;}
.x8{left:472.574986px;}
.xa{left:486.644986px;}
.x11{left:499.604986px;}
.xc{left:532.004986px;}
.xb{left:543.344986px;}
.x9{left:583.124986px;}
.xf{left:610.124986px;}
.x10{left:622.544986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-10.880000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v7{vertical-align:12.800000pt;}
.v1{vertical-align:24.320000pt;}
.ls18{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.239467pt;}
.ls17{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.169552pt;}
.ls13{letter-spacing:-0.089600pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094720pt;}
.lsd{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.163840pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.301867pt;}
.lse{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1.417600pt;}
.ls6{letter-spacing:2.416640pt;}
.ls0{letter-spacing:2.720000pt;}
.ls1{letter-spacing:4.128000pt;}
.ls3{letter-spacing:9.191680pt;}
.ls5{letter-spacing:11.875200pt;}
.ls8{letter-spacing:12.515200pt;}
.ls16{letter-spacing:105.782166pt;}
.ws8{word-spacing:-53.120000pt;}
.wsd{word-spacing:-53.030400pt;}
.wsb{word-spacing:-41.280640pt;}
.wsa{word-spacing:-38.400640pt;}
.wsc{word-spacing:-37.421867pt;}
.ws9{word-spacing:-37.120000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws12{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.096533pt;}
.ws10{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.480533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws15{word-spacing:-8.310703pt;}
.wsf{word-spacing:0.000000pt;}
.ws17{word-spacing:69.616451pt;}
.ws16{word-spacing:79.322267pt;}
._5{margin-left:-4.656000pt;}
._d{margin-left:-3.658027pt;}
._3{margin-left:-2.725333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.002667pt;}
._4{width:2.064000pt;}
._2{width:2.976000pt;}
._6{width:4.224000pt;}
._8{width:5.930667pt;}
._7{width:6.864000pt;}
._9{width:8.464000pt;}
._b{width:9.392000pt;}
._a{width:10.458667pt;}
._c{width:11.542400pt;}
._f{width:14.558720pt;}
._e{width:15.670400pt;}
._10{width:17.051520pt;}
._11{width:18.265600pt;}
._18{width:19.296853pt;}
._14{width:24.913280pt;}
._15{width:25.929173pt;}
._19{width:28.138667pt;}
._12{width:30.178773pt;}
._1a{width:32.544000pt;}
._17{width:37.028480pt;}
._16{width:37.927680pt;}
._13{width:56.096000pt;}
.fs7{font-size:36.773020pt;}
.fs9{font-size:36.773255pt;}
.fs8{font-size:36.817060pt;}
.fsa{font-size:36.817294pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:3.088759pt;}
.ya4{bottom:15.364920pt;}
.y9c{bottom:27.288627pt;}
.y9d{bottom:52.546223pt;}
.ya6{bottom:61.010074pt;}
.y9e{bottom:77.800150pt;}
.ya5{bottom:78.405694pt;}
.y5d{bottom:99.392000pt;}
.y9f{bottom:103.058664pt;}
.y33{bottom:104.032000pt;}
.y7c{bottom:112.672000pt;}
.y5c{bottom:115.392000pt;}
.y32{bottom:120.032000pt;}
.ya0{bottom:128.317179pt;}
.y7b{bottom:128.672000pt;}
.y5b{bottom:131.392000pt;}
.y31{bottom:136.026667pt;}
.y9a{bottom:139.706667pt;}
.y7a{bottom:144.666667pt;}
.y5a{bottom:147.386667pt;}
.y30{bottom:152.026667pt;}
.y99{bottom:152.986667pt;}
.ya1{bottom:153.571106pt;}
.yab{bottom:156.897009pt;}
.y79{bottom:160.666667pt;}
.y59{bottom:163.386667pt;}
.y98{bottom:166.266667pt;}
.y2f{bottom:168.026667pt;}
.yaa{bottom:168.292241pt;}
.y78{bottom:176.666667pt;}
.ya2{bottom:178.829620pt;}
.y58{bottom:179.386667pt;}
.ya9{bottom:179.687473pt;}
.y97{bottom:179.706667pt;}
.y2e{bottom:184.026667pt;}
.ya8{bottom:191.073531pt;}
.y77{bottom:192.666667pt;}
.y96{bottom:192.986667pt;}
.y57{bottom:195.386667pt;}
.y2d{bottom:200.026667pt;}
.ya3{bottom:204.083547pt;}
.y95{bottom:206.266667pt;}
.y76{bottom:208.666667pt;}
.y56{bottom:211.386667pt;}
.y2c{bottom:216.026667pt;}
.y94{bottom:219.706667pt;}
.y75{bottom:224.666667pt;}
.y55{bottom:227.386667pt;}
.y2b{bottom:232.026667pt;}
.y93{bottom:232.986667pt;}
.y74{bottom:240.666667pt;}
.y54{bottom:243.386667pt;}
.y92{bottom:246.266667pt;}
.y2a{bottom:248.026667pt;}
.y73{bottom:256.666667pt;}
.y53{bottom:259.386667pt;}
.y91{bottom:259.706667pt;}
.y29{bottom:264.026667pt;}
.y72{bottom:272.666667pt;}
.y90{bottom:272.986667pt;}
.y52{bottom:275.426667pt;}
.y28{bottom:280.066667pt;}
.y71{bottom:288.706667pt;}
.y51{bottom:291.426667pt;}
.y8f{bottom:294.946667pt;}
.y27{bottom:296.066667pt;}
.y70{bottom:304.706667pt;}
.y50{bottom:307.426667pt;}
.y26{bottom:312.066667pt;}
.y6f{bottom:320.706667pt;}
.y4f{bottom:323.426667pt;}
.y25{bottom:328.066667pt;}
.y8e{bottom:334.946667pt;}
.y6e{bottom:336.706667pt;}
.y4e{bottom:339.426667pt;}
.y24{bottom:344.066667pt;}
.y8d{bottom:350.946667pt;}
.y6d{bottom:352.706667pt;}
.y4d{bottom:355.426667pt;}
.y23{bottom:360.066667pt;}
.y8c{bottom:366.946667pt;}
.y6c{bottom:368.706667pt;}
.y4c{bottom:371.426667pt;}
.y22{bottom:376.066667pt;}
.y8b{bottom:382.946667pt;}
.y6b{bottom:384.706667pt;}
.y4b{bottom:387.426667pt;}
.y21{bottom:392.066667pt;}
.y8a{bottom:398.946667pt;}
.y4a{bottom:403.426667pt;}
.y20{bottom:408.066667pt;}
.y6a{bottom:408.706667pt;}
.y89{bottom:414.946667pt;}
.y49{bottom:419.426667pt;}
.y1f{bottom:424.066667pt;}
.y88{bottom:430.946667pt;}
.y48{bottom:435.426667pt;}
.y1e{bottom:440.066667pt;}
.y87{bottom:446.946667pt;}
.y69{bottom:448.066667pt;}
.y47{bottom:451.426667pt;}
.y1d{bottom:456.066667pt;}
.y68{bottom:461.506667pt;}
.y86{bottom:462.946667pt;}
.y46{bottom:467.426667pt;}
.y1c{bottom:472.066667pt;}
.y67{bottom:475.106667pt;}
.y85{bottom:478.946667pt;}
.y45{bottom:483.426667pt;}
.y66{bottom:487.586667pt;}
.y1b{bottom:488.066667pt;}
.y84{bottom:494.946667pt;}
.y44{bottom:499.453333pt;}
.y1a{bottom:504.093333pt;}
.y43{bottom:515.453333pt;}
.y83{bottom:518.973333pt;}
.y19{bottom:520.093333pt;}
.y42{bottom:531.453333pt;}
.y18{bottom:536.093333pt;}
.y17{bottom:552.093333pt;}
.y41{bottom:556.893333pt;}
.y82{bottom:558.973333pt;}
.y16{bottom:568.093333pt;}
.y81{bottom:574.973333pt;}
.y40{bottom:581.053333pt;}
.y15{bottom:584.093333pt;}
.y80{bottom:590.973333pt;}
.y3f{bottom:597.053333pt;}
.y14{bottom:600.093333pt;}
.y9b{bottom:603.892650pt;}
.y13{bottom:616.093333pt;}
.y3e{bottom:621.213333pt;}
.y12{bottom:632.093333pt;}
.y3d{bottom:645.373333pt;}
.y11{bottom:648.093333pt;}
.y3c{bottom:661.373333pt;}
.y10{bottom:664.093333pt;}
.y3b{bottom:677.373333pt;}
.yf{bottom:688.093333pt;}
.y3a{bottom:701.373333pt;}
.ye{bottom:727.493333pt;}
.y39{bottom:741.413333pt;}
.yd{bottom:743.493333pt;}
.yc{bottom:756.933333pt;}
.y38{bottom:757.413333pt;}
.yb{bottom:770.213333pt;}
.y37{bottom:773.413333pt;}
.ya{bottom:783.493333pt;}
.y36{bottom:789.413333pt;}
.y9{bottom:796.933333pt;}
.y35{bottom:805.413333pt;}
.y8{bottom:810.213333pt;}
.y34{bottom:821.413333pt;}
.y7{bottom:823.493333pt;}
.y7f{bottom:827.173333pt;}
.y6{bottom:837.733333pt;}
.y7e{bottom:843.173333pt;}
.y5{bottom:855.973333pt;}
.y65{bottom:857.093333pt;}
.y7d{bottom:859.173333pt;}
.y64{bottom:875.173333pt;}
.y4{bottom:878.053333pt;}
.y63{bottom:891.173333pt;}
.y3{bottom:897.893333pt;}
.y62{bottom:907.173333pt;}
.y61{bottom:923.173333pt;}
.y2{bottom:926.053333pt;}
.y60{bottom:939.173333pt;}
.y1{bottom:953.600000pt;}
.y5f{bottom:955.200000pt;}
.y5e{bottom:971.200000pt;}
.h3{height:25.918750pt;}
.hb{height:33.515625pt;}
.h7{height:33.867188pt;}
.h6{height:34.781250pt;}
.hd{height:36.575509pt;}
.he{height:36.619312pt;}
.h9{height:37.090625pt;}
.h8{height:37.479688pt;}
.h11{height:37.652844pt;}
.hf{height:37.653083pt;}
.h10{height:37.698177pt;}
.h4{height:41.112500pt;}
.h5{height:44.687500pt;}
.ha{height:48.503750pt;}
.h2{height:54.260625pt;}
.h1{height:67.031250pt;}
.hc{height:216.069019pt;}
.h0{height:1056.000000pt;}
.w2{width:335.418323pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.429543pt;}
.x16{left:20.604649pt;}
.x12{left:24.006725pt;}
.x13{left:26.825274pt;}
.x14{left:49.253473pt;}
.x1{left:60.479988pt;}
.x6{left:72.959988pt;}
.xe{left:152.026655pt;}
.x17{left:165.793862pt;}
.x7{left:181.946655pt;}
.x4{left:193.626655pt;}
.x18{left:198.296171pt;}
.x3{left:259.426655pt;}
.x2{left:327.106655pt;}
.x5{left:345.026655pt;}
.xd{left:408.546655pt;}
.x8{left:420.066655pt;}
.xa{left:432.573321pt;}
.x11{left:444.093321pt;}
.xc{left:472.893321pt;}
.xb{left:482.973321pt;}
.x9{left:518.333321pt;}
.xf{left:542.333321pt;}
.x10{left:553.373321pt;}
}




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