
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_34f3a920502432b649ba25a1.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_788da7f7899b3d7520458c59.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_869beabf51518d9759695223.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_a3a7bc66d0c5dc10ce7d9016.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_edd33d68a0f202609108905a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_8fbfe21a14c4e004cbb5908e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_60182772e49381d131bdb02b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_476f70f6a3d2d062644c5f26.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_77dd76157448c84bdcd637d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.060059;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:ffd;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.226200px;}
.lse{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.493800px;}
.lsf{letter-spacing:0.900000px;}
.ls2{letter-spacing:5.214240px;}
.ls6{letter-spacing:8.069760px;}
.ls11{letter-spacing:10.260000px;}
.ls3{letter-spacing:10.974240px;}
.ls10{letter-spacing:13.140000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.wsb{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._6{width:2.430000px;}
._8{width:3.726000px;}
._4{width:5.346000px;}
._5{width:7.236000px;}
._a{width:8.964000px;}
._9{width:10.422000px;}
._7{width:11.610000px;}
._d{width:13.543680px;}
._3{width:15.984000px;}
._2{width:17.118000px;}
._e{width:18.963840px;}
._f{width:20.298480px;}
._10{width:22.350240px;}
._13{width:23.463840px;}
._11{width:24.521520px;}
._12{width:25.597200px;}
._b{width:32.940000px;}
._c{width:34.155360px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y58{bottom:1.620000px;}
.y4e{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y64{bottom:4.320000px;}
.y66{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y57{bottom:10.260000px;}
.y63{bottom:19.980000px;}
.y4d{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y62{bottom:35.460000px;}
.y4c{bottom:37.800000px;}
.y3{bottom:47.910000px;}
.y56{bottom:49.854000px;}
.y28{bottom:52.965000px;}
.y61{bottom:53.274000px;}
.y4b{bottom:54.945000px;}
.y7{bottom:57.060000px;}
.y55{bottom:58.854000px;}
.y60{bottom:68.754000px;}
.y54{bottom:69.474000px;}
.y4a{bottom:72.225000px;}
.y27{bottom:77.985000px;}
.y53{bottom:81.534000px;}
.y5f{bottom:84.234000px;}
.y49{bottom:89.505000px;}
.y52{bottom:93.594000px;}
.yd4{bottom:95.436000px;}
.y5e{bottom:102.054000px;}
.y26{bottom:103.005000px;}
.y4f{bottom:104.616000px;}
.y48{bottom:106.785000px;}
.yd3{bottom:112.716000px;}
.y9e{bottom:113.616000px;}
.y5d{bottom:117.534000px;}
.y47{bottom:124.065000px;}
.y25{bottom:128.025000px;}
.yd2{bottom:129.996000px;}
.y9d{bottom:130.896000px;}
.y5c{bottom:133.014000px;}
.y46{bottom:141.345000px;}
.yd1{bottom:147.096000px;}
.y9c{bottom:148.176000px;}
.y5b{bottom:148.674000px;}
.y24{bottom:153.045000px;}
.y51{bottom:154.614000px;}
.y45{bottom:158.445000px;}
.y5a{bottom:164.154000px;}
.y50{bottom:164.334000px;}
.yd0{bottom:164.370000px;}
.y9b{bottom:165.450000px;}
.y44{bottom:175.725000px;}
.y23{bottom:178.245000px;}
.y59{bottom:179.634000px;}
.ycf{bottom:181.650000px;}
.y9a{bottom:182.550000px;}
.y43{bottom:193.005000px;}
.yce{bottom:198.930000px;}
.y99{bottom:199.830000px;}
.y22{bottom:203.265000px;}
.y42{bottom:210.285000px;}
.ycd{bottom:216.210000px;}
.y98{bottom:217.110000px;}
.y41{bottom:227.565000px;}
.y21{bottom:228.285000px;}
.ycc{bottom:233.490000px;}
.y97{bottom:234.390000px;}
.y40{bottom:244.845000px;}
.ycb{bottom:250.590000px;}
.y96{bottom:251.670000px;}
.y20{bottom:253.305000px;}
.y3f{bottom:261.945000px;}
.yca{bottom:267.870000px;}
.y95{bottom:268.950000px;}
.y1f{bottom:278.325000px;}
.y3e{bottom:279.225000px;}
.yc9{bottom:285.150000px;}
.y94{bottom:286.050000px;}
.y3d{bottom:296.505000px;}
.yf{bottom:299.010000px;}
.yc8{bottom:302.430000px;}
.y93{bottom:303.330000px;}
.y1e{bottom:303.345000px;}
.y3c{bottom:313.815000px;}
.y1d{bottom:316.335000px;}
.yc7{bottom:319.710000px;}
.y92{bottom:320.610000px;}
.y3b{bottom:331.095000px;}
.yc6{bottom:336.810000px;}
.y91{bottom:337.890000px;}
.y1c{bottom:340.455000px;}
.y3a{bottom:348.375000px;}
.yc5{bottom:354.135000px;}
.y90{bottom:355.215000px;}
.y1b{bottom:364.755000px;}
.y39{bottom:365.475000px;}
.yc4{bottom:371.415000px;}
.y8f{bottom:381.495000px;}
.y38{bottom:384.195000px;}
.yc3{bottom:388.695000px;}
.y1a{bottom:388.875000px;}
.y8e{bottom:398.595000px;}
.yc2{bottom:405.975000px;}
.y37{bottom:410.115000px;}
.y19{bottom:412.995000px;}
.y8d{bottom:415.875000px;}
.yc1{bottom:423.255000px;}
.y36{bottom:425.595000px;}
.y8c{bottom:433.155000px;}
.y18{bottom:437.115000px;}
.y35{bottom:441.075000px;}
.yc0{bottom:441.975000px;}
.y8b{bottom:450.435000px;}
.y34{bottom:456.735000px;}
.y17{bottom:461.235000px;}
.y8a{bottom:467.715000px;}
.ybf{bottom:468.435000px;}
.y33{bottom:472.215000px;}
.y89{bottom:484.995000px;}
.y16{bottom:485.355000px;}
.ybe{bottom:485.715000px;}
.y32{bottom:487.695000px;}
.y88{bottom:502.095000px;}
.ybd{bottom:502.995000px;}
.y31{bottom:503.175000px;}
.y15{bottom:509.475000px;}
.y30{bottom:518.835000px;}
.y87{bottom:519.375000px;}
.ybc{bottom:520.095000px;}
.y14{bottom:533.775000px;}
.y2f{bottom:534.315000px;}
.y86{bottom:536.655000px;}
.ybb{bottom:537.375000px;}
.y2e{bottom:549.795000px;}
.y85{bottom:553.935000px;}
.yba{bottom:554.655000px;}
.y13{bottom:557.895000px;}
.y2d{bottom:565.275000px;}
.y84{bottom:571.215000px;}
.yb9{bottom:571.935000px;}
.y2c{bottom:580.800000px;}
.y12{bottom:582.060000px;}
.y83{bottom:588.315000px;}
.yb8{bottom:589.215000px;}
.y2b{bottom:596.460000px;}
.y82{bottom:605.625000px;}
.y11{bottom:606.180000px;}
.yb7{bottom:606.345000px;}
.y2a{bottom:611.940000px;}
.y81{bottom:622.905000px;}
.yb6{bottom:623.625000px;}
.y29{bottom:627.420000px;}
.y10{bottom:630.300000px;}
.y80{bottom:640.185000px;}
.yb5{bottom:640.905000px;}
.y7f{bottom:657.465000px;}
.yb4{bottom:658.185000px;}
.y7e{bottom:674.745000px;}
.yb3{bottom:675.465000px;}
.y7d{bottom:691.845000px;}
.yb2{bottom:692.745000px;}
.y7c{bottom:709.125000px;}
.yb1{bottom:709.845000px;}
.y7b{bottom:726.405000px;}
.yb0{bottom:727.125000px;}
.y7a{bottom:743.685000px;}
.yaf{bottom:744.405000px;}
.y79{bottom:760.965000px;}
.yae{bottom:761.685000px;}
.y78{bottom:778.245000px;}
.yad{bottom:778.965000px;}
.y77{bottom:795.345000px;}
.yac{bottom:796.245000px;}
.y76{bottom:812.625000px;}
.yab{bottom:813.345000px;}
.ydc{bottom:829.905000px;}
.yaa{bottom:830.625000px;}
.y75{bottom:838.905000px;}
.ydb{bottom:847.185000px;}
.ya9{bottom:847.905000px;}
.y74{bottom:856.185000px;}
.yda{bottom:864.465000px;}
.ya8{bottom:865.185000px;}
.y73{bottom:873.510000px;}
.yd9{bottom:881.610000px;}
.ya7{bottom:882.510000px;}
.y72{bottom:890.610000px;}
.yd8{bottom:898.890000px;}
.ya6{bottom:899.610000px;}
.y71{bottom:907.890000px;}
.ya5{bottom:916.890000px;}
.y70{bottom:925.170000px;}
.ya4{bottom:934.170000px;}
.y6f{bottom:942.450000px;}
.ye{bottom:944.610000px;}
.ya3{bottom:951.450000px;}
.y6e{bottom:959.730000px;}
.yd{bottom:961.890000px;}
.ya2{bottom:968.730000px;}
.y6d{bottom:977.010000px;}
.yc{bottom:978.990000px;}
.ya1{bottom:986.010000px;}
.y6c{bottom:994.110000px;}
.yb{bottom:996.270000px;}
.ya0{bottom:1003.110000px;}
.y6b{bottom:1011.390000px;}
.ya{bottom:1016.790000px;}
.y9f{bottom:1020.390000px;}
.yd7{bottom:1028.670000px;}
.y6a{bottom:1037.670000px;}
.y9{bottom:1043.070000px;}
.yd6{bottom:1045.950000px;}
.y69{bottom:1054.950000px;}
.yd5{bottom:1063.230000px;}
.y8{bottom:1071.870000px;}
.y68{bottom:1072.230000px;}
.y65{bottom:1075.140000px;}
.y67{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h12{height:21.114844px;}
.h11{height:25.136719px;}
.h13{height:27.720000px;}
.hc{height:29.158594px;}
.hb{height:29.464453px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.hd{height:43.822266px;}
.he{height:44.507812px;}
.h5{height:46.251562px;}
.h16{height:48.027656px;}
.h15{height:49.255313px;}
.h17{height:50.597578px;}
.hf{height:59.439023px;}
.h14{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h10{height:193.680000px;}
.ha{height:640.005000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:131.940000px;}
.w8{width:162.900000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.056000px;}
.x17{left:8.100000px;}
.x4{left:12.780000px;}
.x15{left:18.180000px;}
.x6{left:19.260000px;}
.xf{left:25.560000px;}
.x10{left:28.980000px;}
.xe{left:31.140000px;}
.x14{left:37.260000px;}
.x13{left:40.320000px;}
.x12{left:42.480000px;}
.x1a{left:47.340000px;}
.x1b{left:56.700000px;}
.x18{left:62.145000px;}
.x11{left:65.874000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x19{left:106.374000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x16{left:218.370000px;}
.xb{left:483.584987px;}
.xc{left:567.284987px;}
.xd{left:587.624987px;}
.xa{left:630.149987px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.201067pt;}
.lse{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.438933pt;}
.lsf{letter-spacing:0.800000pt;}
.ls2{letter-spacing:4.634880pt;}
.ls6{letter-spacing:7.173120pt;}
.ls11{letter-spacing:9.120000pt;}
.ls3{letter-spacing:9.754880pt;}
.ls10{letter-spacing:11.680000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.wsb{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._6{width:2.160000pt;}
._8{width:3.312000pt;}
._4{width:4.752000pt;}
._5{width:6.432000pt;}
._a{width:7.968000pt;}
._9{width:9.264000pt;}
._7{width:10.320000pt;}
._d{width:12.038827pt;}
._3{width:14.208000pt;}
._2{width:15.216000pt;}
._e{width:16.856747pt;}
._f{width:18.043093pt;}
._10{width:19.866880pt;}
._13{width:20.856747pt;}
._11{width:21.796907pt;}
._12{width:22.753067pt;}
._b{width:29.280000pt;}
._c{width:30.360320pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:1.440000pt;}
.y4e{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y64{bottom:3.840000pt;}
.y66{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y57{bottom:9.120000pt;}
.y63{bottom:17.760000pt;}
.y4d{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y62{bottom:31.520000pt;}
.y4c{bottom:33.600000pt;}
.y3{bottom:42.586667pt;}
.y56{bottom:44.314667pt;}
.y28{bottom:47.080000pt;}
.y61{bottom:47.354667pt;}
.y4b{bottom:48.840000pt;}
.y7{bottom:50.720000pt;}
.y55{bottom:52.314667pt;}
.y60{bottom:61.114667pt;}
.y54{bottom:61.754667pt;}
.y4a{bottom:64.200000pt;}
.y27{bottom:69.320000pt;}
.y53{bottom:72.474667pt;}
.y5f{bottom:74.874667pt;}
.y49{bottom:79.560000pt;}
.y52{bottom:83.194667pt;}
.yd4{bottom:84.832000pt;}
.y5e{bottom:90.714667pt;}
.y26{bottom:91.560000pt;}
.y4f{bottom:92.992000pt;}
.y48{bottom:94.920000pt;}
.yd3{bottom:100.192000pt;}
.y9e{bottom:100.992000pt;}
.y5d{bottom:104.474667pt;}
.y47{bottom:110.280000pt;}
.y25{bottom:113.800000pt;}
.yd2{bottom:115.552000pt;}
.y9d{bottom:116.352000pt;}
.y5c{bottom:118.234667pt;}
.y46{bottom:125.640000pt;}
.yd1{bottom:130.752000pt;}
.y9c{bottom:131.712000pt;}
.y5b{bottom:132.154667pt;}
.y24{bottom:136.040000pt;}
.y51{bottom:137.434667pt;}
.y45{bottom:140.840000pt;}
.y5a{bottom:145.914667pt;}
.y50{bottom:146.074667pt;}
.yd0{bottom:146.106667pt;}
.y9b{bottom:147.066667pt;}
.y44{bottom:156.200000pt;}
.y23{bottom:158.440000pt;}
.y59{bottom:159.674667pt;}
.ycf{bottom:161.466667pt;}
.y9a{bottom:162.266667pt;}
.y43{bottom:171.560000pt;}
.yce{bottom:176.826667pt;}
.y99{bottom:177.626667pt;}
.y22{bottom:180.680000pt;}
.y42{bottom:186.920000pt;}
.ycd{bottom:192.186667pt;}
.y98{bottom:192.986667pt;}
.y41{bottom:202.280000pt;}
.y21{bottom:202.920000pt;}
.ycc{bottom:207.546667pt;}
.y97{bottom:208.346667pt;}
.y40{bottom:217.640000pt;}
.ycb{bottom:222.746667pt;}
.y96{bottom:223.706667pt;}
.y20{bottom:225.160000pt;}
.y3f{bottom:232.840000pt;}
.yca{bottom:238.106667pt;}
.y95{bottom:239.066667pt;}
.y1f{bottom:247.400000pt;}
.y3e{bottom:248.200000pt;}
.yc9{bottom:253.466667pt;}
.y94{bottom:254.266667pt;}
.y3d{bottom:263.560000pt;}
.yf{bottom:265.786667pt;}
.yc8{bottom:268.826667pt;}
.y93{bottom:269.626667pt;}
.y1e{bottom:269.640000pt;}
.y3c{bottom:278.946667pt;}
.y1d{bottom:281.186667pt;}
.yc7{bottom:284.186667pt;}
.y92{bottom:284.986667pt;}
.y3b{bottom:294.306667pt;}
.yc6{bottom:299.386667pt;}
.y91{bottom:300.346667pt;}
.y1c{bottom:302.626667pt;}
.y3a{bottom:309.666667pt;}
.yc5{bottom:314.786667pt;}
.y90{bottom:315.746667pt;}
.y1b{bottom:324.226667pt;}
.y39{bottom:324.866667pt;}
.yc4{bottom:330.146667pt;}
.y8f{bottom:339.106667pt;}
.y38{bottom:341.506667pt;}
.yc3{bottom:345.506667pt;}
.y1a{bottom:345.666667pt;}
.y8e{bottom:354.306667pt;}
.yc2{bottom:360.866667pt;}
.y37{bottom:364.546667pt;}
.y19{bottom:367.106667pt;}
.y8d{bottom:369.666667pt;}
.yc1{bottom:376.226667pt;}
.y36{bottom:378.306667pt;}
.y8c{bottom:385.026667pt;}
.y18{bottom:388.546667pt;}
.y35{bottom:392.066667pt;}
.yc0{bottom:392.866667pt;}
.y8b{bottom:400.386667pt;}
.y34{bottom:405.986667pt;}
.y17{bottom:409.986667pt;}
.y8a{bottom:415.746667pt;}
.ybf{bottom:416.386667pt;}
.y33{bottom:419.746667pt;}
.y89{bottom:431.106667pt;}
.y16{bottom:431.426667pt;}
.ybe{bottom:431.746667pt;}
.y32{bottom:433.506667pt;}
.y88{bottom:446.306667pt;}
.ybd{bottom:447.106667pt;}
.y31{bottom:447.266667pt;}
.y15{bottom:452.866667pt;}
.y30{bottom:461.186667pt;}
.y87{bottom:461.666667pt;}
.ybc{bottom:462.306667pt;}
.y14{bottom:474.466667pt;}
.y2f{bottom:474.946667pt;}
.y86{bottom:477.026667pt;}
.ybb{bottom:477.666667pt;}
.y2e{bottom:488.706667pt;}
.y85{bottom:492.386667pt;}
.yba{bottom:493.026667pt;}
.y13{bottom:495.906667pt;}
.y2d{bottom:502.466667pt;}
.y84{bottom:507.746667pt;}
.yb9{bottom:508.386667pt;}
.y2c{bottom:516.266667pt;}
.y12{bottom:517.386667pt;}
.y83{bottom:522.946667pt;}
.yb8{bottom:523.746667pt;}
.y2b{bottom:530.186667pt;}
.y82{bottom:538.333333pt;}
.y11{bottom:538.826667pt;}
.yb7{bottom:538.973333pt;}
.y2a{bottom:543.946667pt;}
.y81{bottom:553.693333pt;}
.yb6{bottom:554.333333pt;}
.y29{bottom:557.706667pt;}
.y10{bottom:560.266667pt;}
.y80{bottom:569.053333pt;}
.yb5{bottom:569.693333pt;}
.y7f{bottom:584.413333pt;}
.yb4{bottom:585.053333pt;}
.y7e{bottom:599.773333pt;}
.yb3{bottom:600.413333pt;}
.y7d{bottom:614.973333pt;}
.yb2{bottom:615.773333pt;}
.y7c{bottom:630.333333pt;}
.yb1{bottom:630.973333pt;}
.y7b{bottom:645.693333pt;}
.yb0{bottom:646.333333pt;}
.y7a{bottom:661.053333pt;}
.yaf{bottom:661.693333pt;}
.y79{bottom:676.413333pt;}
.yae{bottom:677.053333pt;}
.y78{bottom:691.773333pt;}
.yad{bottom:692.413333pt;}
.y77{bottom:706.973333pt;}
.yac{bottom:707.773333pt;}
.y76{bottom:722.333333pt;}
.yab{bottom:722.973333pt;}
.ydc{bottom:737.693333pt;}
.yaa{bottom:738.333333pt;}
.y75{bottom:745.693333pt;}
.ydb{bottom:753.053333pt;}
.ya9{bottom:753.693333pt;}
.y74{bottom:761.053333pt;}
.yda{bottom:768.413333pt;}
.ya8{bottom:769.053333pt;}
.y73{bottom:776.453333pt;}
.yd9{bottom:783.653333pt;}
.ya7{bottom:784.453333pt;}
.y72{bottom:791.653333pt;}
.yd8{bottom:799.013333pt;}
.ya6{bottom:799.653333pt;}
.y71{bottom:807.013333pt;}
.ya5{bottom:815.013333pt;}
.y70{bottom:822.373333pt;}
.ya4{bottom:830.373333pt;}
.y6f{bottom:837.733333pt;}
.ye{bottom:839.653333pt;}
.ya3{bottom:845.733333pt;}
.y6e{bottom:853.093333pt;}
.yd{bottom:855.013333pt;}
.ya2{bottom:861.093333pt;}
.y6d{bottom:868.453333pt;}
.yc{bottom:870.213333pt;}
.ya1{bottom:876.453333pt;}
.y6c{bottom:883.653333pt;}
.yb{bottom:885.573333pt;}
.ya0{bottom:891.653333pt;}
.y6b{bottom:899.013333pt;}
.ya{bottom:903.813333pt;}
.y9f{bottom:907.013333pt;}
.yd7{bottom:914.373333pt;}
.y6a{bottom:922.373333pt;}
.y9{bottom:927.173333pt;}
.yd6{bottom:929.733333pt;}
.y69{bottom:937.733333pt;}
.yd5{bottom:945.093333pt;}
.y8{bottom:952.773333pt;}
.y68{bottom:953.093333pt;}
.y65{bottom:955.680000pt;}
.y67{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h12{height:18.768750pt;}
.h11{height:22.343750pt;}
.h13{height:24.640000pt;}
.hc{height:25.918750pt;}
.hb{height:26.190625pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.hd{height:38.953125pt;}
.he{height:39.562500pt;}
.h5{height:41.112500pt;}
.h16{height:42.691250pt;}
.h15{height:43.782500pt;}
.h17{height:44.975625pt;}
.hf{height:52.834688pt;}
.h14{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h10{height:172.160000pt;}
.ha{height:568.893333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.280000pt;}
.w8{width:144.800000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.272000pt;}
.x17{left:7.200000pt;}
.x4{left:11.360000pt;}
.x15{left:16.160000pt;}
.x6{left:17.120000pt;}
.xf{left:22.720000pt;}
.x10{left:25.760000pt;}
.xe{left:27.680000pt;}
.x14{left:33.120000pt;}
.x13{left:35.840000pt;}
.x12{left:37.760000pt;}
.x1a{left:42.080000pt;}
.x1b{left:50.400000pt;}
.x18{left:55.240000pt;}
.x11{left:58.554667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x19{left:94.554667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x16{left:194.106667pt;}
.xb{left:429.853322pt;}
.xc{left:504.253322pt;}
.xd{left:522.333322pt;}
.xa{left:560.133322pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
}




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