
    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_373be9c88a35282cbbfab14c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_e6942c4d3a7162ba623070ba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_610ea31c5d2caa979358cfa2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_6d4189e5380c7c855b1e5b8e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000488;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_34c98e6e9da10fa99bba1bf2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_dac35dfeffb444b0c5bc8816.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d11083220cfc811cbe353e3c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.713867;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_b6d638fdce677254e58012c3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_732072527834757781b7cc8c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.952148;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_460ba4c331f41dec5e811902.woff')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_6198127444f6c6d77088e90a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.924000;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_00ef098adc9acdccd39b663b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.951000;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_baaec0ccc0c327b9d933a061.woff')format("woff");}.ffd{font-family:ffd;line-height:0.958008;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:ffe;src:url('chunks/assets/font_0258793b0271f1e873fd2557.woff')format("woff");}.ffe{font-family:ffe;line-height:0.930000;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:fff;src:url('chunks/assets/font_2d2455ba995e1d8e73aabbbe.woff')format("woff");}.fff{font-family:fff;line-height:0.700000;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:ff10;src:url('chunks/assets/font_d99054b215fe53ebcc2ca4da.woff')format("woff");}.ff10{font-family:ff10;line-height:0.958008;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:ff11;src:url('chunks/assets/font_b40bc744cab4199980e760b5.woff')format("woff");}.ff11{font-family:ff11;line-height:0.913086;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:ff12;src:url('chunks/assets/font_3699ab04582836d7f7c36cc8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.724121;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:ff13;src:url('chunks/assets/font_4c692fff036895a11d7c275e.woff')format("woff");}.ff13{font-family:ff13;line-height:0.759277;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);}
.v2{vertical-align:-28.920000px;}
.v3{vertical-align:-11.499786px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.499786px;}
.v1{vertical-align:43.200000px;}
.ls14{letter-spacing:-3.600000px;}
.ls16{letter-spacing:-3.420000px;}
.lsc{letter-spacing:-2.736000px;}
.lsb{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.152000px;}
.ls11{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.660000px;}
.ls10{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.075000px;}
.ls15{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.060600px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000189px;}
.ls18{letter-spacing:0.000390px;}
.ls1a{letter-spacing:0.026400px;}
.ls1c{letter-spacing:0.029100px;}
.ls19{letter-spacing:0.030000px;}
.ls1{letter-spacing:0.068346px;}
.lsf{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.358800px;}
.ls8{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:30.331632px;}
.ls7{letter-spacing:31.392000px;}
.ls1b{letter-spacing:73.800000px;}
.ls3{letter-spacing:107.972165px;}
.ls2{letter-spacing:108.000426px;}
.ls13{letter-spacing:568.437120px;}
.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;}
}
.ws20{word-spacing:-91.800000px;}
.ws1d{word-spacing:-41.700000px;}
.ws21{word-spacing:-36.722400px;}
.ws1c{word-spacing:-33.360000px;}
.ws4{word-spacing:-32.935344px;}
.ws16{word-spacing:-32.688000px;}
.ws19{word-spacing:-32.544000px;}
.ws18{word-spacing:-32.515944px;}
.ws17{word-spacing:-32.112000px;}
.ws1f{word-spacing:-30.024000px;}
.ws1{word-spacing:-27.972001px;}
.ws1e{word-spacing:-27.800006px;}
.ws1b{word-spacing:-27.011520px;}
.ws3{word-spacing:-24.440544px;}
.wsc{word-spacing:-3.564000px;}
.ws12{word-spacing:-3.405552px;}
.wsa{word-spacing:-2.172000px;}
.wsb{word-spacing:-2.016000px;}
.ws9{word-spacing:-1.440000px;}
.wsd{word-spacing:-1.008000px;}
.ws2{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.720000px;}
.ws15{word-spacing:2.340000px;}
.ws8{word-spacing:39.888000px;}
.ws6{word-spacing:40.752000px;}
.ws5{word-spacing:42.192000px;}
.ws14{word-spacing:44.532144px;}
.ws7{word-spacing:44.676000px;}
.ws13{word-spacing:45.271656px;}
.ws10{word-spacing:51.264000px;}
.wsf{word-spacing:51.876000px;}
.ws11{word-spacing:53.976000px;}
.ws1a{word-spacing:660.530592px;}
._1a{margin-left:-14.846511px;}
._1{margin-left:-13.664399px;}
._20{margin-left:-11.563026px;}
._28{margin-left:-8.192190px;}
._29{margin-left:-5.738402px;}
._0{margin-left:-4.632000px;}
._1f{margin-left:-3.612285px;}
._2{margin-left:-2.547600px;}
._17{margin-left:-1.189584px;}
._3{width:1.012095px;}
._10{width:2.108520px;}
._1e{width:3.270104px;}
._14{width:4.536000px;}
._12{width:9.720000px;}
._b{width:16.200001px;}
._9{width:24.840001px;}
._21{width:27.073584px;}
._2a{width:28.185296px;}
._19{width:32.557089px;}
._c{width:35.208001px;}
._d{width:37.064836px;}
._f{width:41.148001px;}
._13{width:48.360000px;}
._11{width:55.080002px;}
._e{width:57.024002px;}
._16{width:74.628002px;}
._18{width:75.827505px;}
._1d{width:78.826272px;}
._5{width:81.432003px;}
._1b{width:86.400000px;}
._1c{width:87.892689px;}
._4{width:94.284003px;}
._a{width:101.304003px;}
._6{width:132.840004px;}
._7{width:134.163004px;}
._15{width:173.448006px;}
._8{width:177.935901px;}
._25{width:250.239625px;}
._26{width:508.016905px;}
._24{width:518.574258px;}
._23{width:711.170352px;}
._27{width:756.785280px;}
._22{width:817.888545px;}
.fc6{color:transparent;}
.fc5{color:rgb(83,88,95);}
.fc3{color:rgb(5,11,255);}
.fc4{color:rgb(137,137,137);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(105,93,70);}
.fc0{color:rgb(239,108,0);}
.fs6{font-size:48.000003px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000004px;}
.fsd{font-size:72.000000px;}
.fsc{font-size:72.144000px;}
.fs10{font-size:80.640000px;}
.fs1{font-size:82.800012px;}
.fse{font-size:83.664000px;}
.fs16{font-size:90.000000px;}
.fsa{font-size:96.624000px;}
.fs15{font-size:100.000020px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:108.000003px;}
.fs7{font-size:108.144000px;}
.fs11{font-size:119.520000px;}
.fsf{font-size:119.664000px;}
.fs5{font-size:120.000001px;}
.fs17{font-size:132.000000px;}
.fsb{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fs19{font-size:145.500000px;}
.fs13{font-size:150.000000px;}
.fs18{font-size:192.000000px;}
.fs0{font-size:231.599991px;}
.fs14{font-size:342.000000px;}
.fs12{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:13.500000px;}
.y6{bottom:16.448359px;}
.y70{bottom:17.999250px;}
.y7a{bottom:23.039100px;}
.y62{bottom:32.510565px;}
.y6f{bottom:62.999250px;}
.y51{bottom:97.272000px;}
.y5c{bottom:115.815000px;}
.y59{bottom:116.025000px;}
.y32{bottom:138.055395px;}
.y50{bottom:140.508000px;}
.y9{bottom:159.351511px;}
.y52{bottom:164.370000px;}
.ya{bottom:181.861749px;}
.y25{bottom:183.687410px;}
.y8{bottom:196.611512px;}
.y5{bottom:198.534609px;}
.y33{bottom:199.080000px;}
.y19{bottom:201.682902px;}
.y6d{bottom:201.831450px;}
.y6e{bottom:203.647050px;}
.y20{bottom:205.443313px;}
.y28{bottom:209.821285px;}
.y54{bottom:218.985000px;}
.y3e{bottom:222.120000px;}
.y4{bottom:227.100610px;}
.y47{bottom:236.700000px;}
.y41{bottom:236.730000px;}
.y24{bottom:237.687412px;}
.y18{bottom:238.942903px;}
.y7{bottom:250.544869px;}
.y3{bottom:255.666610px;}
.y67{bottom:260.856750px;}
.y1f{bottom:261.333304px;}
.y5f{bottom:265.320000px;}
.y3d{bottom:265.350000px;}
.y2b{bottom:268.718862px;}
.y4f{bottom:270.180000px;}
.y17{bottom:276.202938px;}
.y46{bottom:279.930000px;}
.y31{bottom:291.326508px;}
.y23{bottom:291.687414px;}
.y2e{bottom:292.765968px;}
.yf{bottom:297.093579px;}
.y1e{bottom:298.593294px;}
.y5b{bottom:307.800000px;}
.y5e{bottom:308.550000px;}
.y4e{bottom:313.380000px;}
.y16{bottom:313.462928px;}
.y2a{bottom:322.718852px;}
.y2{bottom:327.772285px;}
.ye{bottom:334.353569px;}
.y1d{bottom:335.853284px;}
.y30{bottom:339.926504px;}
.y2d{bottom:341.365964px;}
.y22{bottom:345.687404px;}
.y15{bottom:350.722929px;}
.y3c{bottom:351.795000px;}
.y27{bottom:351.941223px;}
.y4d{bottom:356.610000px;}
.y45{bottom:366.375000px;}
.yd{bottom:371.613559px;}
.y1c{bottom:373.113296px;}
.y29{bottom:376.718843px;}
.y35{bottom:382.215000px;}
.y2f{bottom:388.526505px;}
.y2c{bottom:389.965966px;}
.y3b{bottom:394.995000px;}
.y1{bottom:397.252277px;}
.y4c{bottom:399.810000px;}
.y65{bottom:400.914750px;}
.y78{bottom:401.190600px;}
.yc{bottom:408.873571px;}
.y1b{bottom:410.373297px;}
.y58{bottom:420.840000px;}
.y5d{bottom:423.615000px;}
.y14{bottom:425.242909px;}
.y21{bottom:428.487396px;}
.y71{bottom:429.514050px;}
.y4b{bottom:443.055000px;}
.yb{bottom:446.133572px;}
.y44{bottom:452.805000px;}
.y13{bottom:462.502899px;}
.y26{bottom:463.927434px;}
.y77{bottom:465.690600px;}
.y5a{bottom:481.140000px;}
.y3a{bottom:481.425000px;}
.y80{bottom:484.884150px;}
.y4a{bottom:486.255000px;}
.y12{bottom:499.762911px;}
.y76{bottom:530.190600px;}
.y57{bottom:536.865000px;}
.y11{bottom:537.022912px;}
.y43{bottom:539.250000px;}
.y10{bottom:557.776180px;}
.y34{bottom:565.350000px;}
.y7f{bottom:566.259150px;}
.y39{bottom:567.870000px;}
.y68{bottom:579.268500px;}
.y42{bottom:582.480000px;}
.y1a{bottom:582.974999px;}
.y75{bottom:594.690600px;}
.y56{bottom:597.780000px;}
.y38{bottom:611.100000px;}
.y7e{bottom:611.259150px;}
.y49{bottom:615.930000px;}
.y36{bottom:638.385000px;}
.y37{bottom:654.330000px;}
.y55{bottom:658.650000px;}
.y48{bottom:659.160000px;}
.y74{bottom:659.190600px;}
.y66{bottom:673.768500px;}
.y7d{bottom:692.634150px;}
.y6c{bottom:718.642154px;}
.y73{bottom:723.690600px;}
.y40{bottom:756.615000px;}
.y53{bottom:757.080000px;}
.y72{bottom:762.690600px;}
.y64{bottom:768.268500px;}
.y7c{bottom:774.009150px;}
.y6b{bottom:774.017100px;}
.y79{bottom:811.773600px;}
.y7b{bottom:819.009150px;}
.y61{bottom:862.124850px;}
.y63{bottom:862.768500px;}
.y6a{bottom:868.517100px;}
.y60{bottom:1000.200000px;}
.y69{bottom:1003.665000px;}
.h4{height:45.908203px;}
.h3{height:50.499026px;}
.h11{height:60.960938px;}
.hf{height:61.082859px;}
.h2{height:63.353329px;}
.h22{height:66.510000px;}
.h12{height:70.836609px;}
.h1f{height:79.812000px;}
.h24{height:81.000000px;}
.h6{height:82.054690px;}
.h5{height:82.634768px;}
.ha{height:83.689453px;}
.hb{height:83.801039px;}
.h1b{height:88.417969px;}
.h1c{height:88.680000px;}
.h13{height:91.441406px;}
.h9{height:91.563328px;}
.h7{height:91.816407px;}
.h14{height:92.727914px;}
.h23{height:97.259766px;}
.h16{height:101.195156px;}
.h15{height:101.317078px;}
.h26{height:107.206787px;}
.h20{height:108.750000px;}
.h21{height:110.522461px;}
.h1a{height:110.850000px;}
.h10{height:111.585938px;}
.hd{height:121.921875px;}
.he{height:122.043797px;}
.h1e{height:122.349786px;}
.hc{height:125.009578px;}
.h25{height:142.218750px;}
.h1{height:164.435994px;}
.h17{height:252.360000px;}
.h1d{height:265.392000px;}
.h19{height:279.360000px;}
.h0{height:607.500000px;}
.h8{height:810.000000px;}
.h18{height:1152.000000px;}
.w4{width:288.720000px;}
.w3{width:318.960000px;}
.w7{width:557.627400px;}
.w0{width:1080.000000px;}
.w6{width:1345.001250px;}
.w2{width:1439.999979px;}
.w1{width:1440.000000px;}
.w5{width:1536.000000px;}
.x0{left:0.000000px;}
.x2d{left:11.955000px;}
.x3e{left:13.812030px;}
.x39{left:33.627375px;}
.x14{left:35.870066px;}
.x1f{left:42.191979px;}
.x24{left:53.639979px;}
.x26{left:61.559979px;}
.xf{left:67.018702px;}
.x34{left:69.000000px;}
.x33{left:70.500000px;}
.x3c{left:73.911945px;}
.x10{left:77.710597px;}
.xa{left:79.334647px;}
.x11{left:81.983271px;}
.x12{left:90.870231px;}
.x25{left:93.959979px;}
.x38{left:101.499360px;}
.x3d{left:103.911945px;}
.x22{left:118.367979px;}
.xd{left:152.831699px;}
.x2{left:194.660117px;}
.x8{left:211.706326px;}
.x1{left:240.620666px;}
.x4{left:284.739251px;}
.x9{left:298.540067px;}
.x3{left:306.009521px;}
.x1a{left:325.373163px;}
.x16{left:335.725064px;}
.x3a{left:354.647940px;}
.x5{left:368.052699px;}
.x20{left:391.889979px;}
.x29{left:475.994979px;}
.x2f{left:513.720000px;}
.x2b{left:540.929979px;}
.x28{left:567.644979px;}
.x23{left:588.209979px;}
.xb{left:593.220473px;}
.x2a{left:605.774979px;}
.x18{left:612.076407px;}
.x21{left:638.744979px;}
.x15{left:640.269279px;}
.x13{left:651.302650px;}
.x17{left:662.335255px;}
.x19{left:698.163941px;}
.x32{left:715.469979px;}
.x1e{left:723.704979px;}
.x6{left:748.957749px;}
.x35{left:762.372600px;}
.x31{left:790.019979px;}
.x30{left:837.254979px;}
.xe{left:887.855316px;}
.x7{left:941.182118px;}
.x3b{left:942.954150px;}
.x1b{left:969.554979px;}
.xc{left:1000.573795px;}
.x2c{left:1014.120000px;}
.x36{left:1021.903800px;}
.x1d{left:1071.929979px;}
.x2e{left:1087.664979px;}
.x1c{left:1100.804979px;}
.x37{left:1197.843000px;}
.x27{left:1264.649979px;}
@media print{
.v2{vertical-align:-25.706667pt;}
.v3{vertical-align:-10.222032pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.222032pt;}
.v1{vertical-align:38.400000pt;}
.ls14{letter-spacing:-3.200000pt;}
.ls16{letter-spacing:-3.040000pt;}
.lsc{letter-spacing:-2.432000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.024000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls10{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.066667pt;}
.ls15{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.053867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000168pt;}
.ls18{letter-spacing:0.000347pt;}
.ls1a{letter-spacing:0.023467pt;}
.ls1c{letter-spacing:0.025867pt;}
.ls19{letter-spacing:0.026667pt;}
.ls1{letter-spacing:0.060752pt;}
.lsf{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.318933pt;}
.ls8{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:26.961451pt;}
.ls7{letter-spacing:27.904000pt;}
.ls1b{letter-spacing:65.600000pt;}
.ls3{letter-spacing:95.975258pt;}
.ls2{letter-spacing:96.000379pt;}
.ls13{letter-spacing:505.277440pt;}
.ws20{word-spacing:-81.600000pt;}
.ws1d{word-spacing:-37.066667pt;}
.ws21{word-spacing:-32.642133pt;}
.ws1c{word-spacing:-29.653333pt;}
.ws4{word-spacing:-29.275861pt;}
.ws16{word-spacing:-29.056000pt;}
.ws19{word-spacing:-28.928000pt;}
.ws18{word-spacing:-28.903061pt;}
.ws17{word-spacing:-28.544000pt;}
.ws1f{word-spacing:-26.688000pt;}
.ws1{word-spacing:-24.864001pt;}
.ws1e{word-spacing:-24.711116pt;}
.ws1b{word-spacing:-24.010240pt;}
.ws3{word-spacing:-21.724928pt;}
.wsc{word-spacing:-3.168000pt;}
.ws12{word-spacing:-3.027157pt;}
.wsa{word-spacing:-1.930667pt;}
.wsb{word-spacing:-1.792000pt;}
.ws9{word-spacing:-1.280000pt;}
.wsd{word-spacing:-0.896000pt;}
.ws2{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.640000pt;}
.ws15{word-spacing:2.080000pt;}
.ws8{word-spacing:35.456000pt;}
.ws6{word-spacing:36.224000pt;}
.ws5{word-spacing:37.504000pt;}
.ws14{word-spacing:39.584128pt;}
.ws7{word-spacing:39.712000pt;}
.ws13{word-spacing:40.241472pt;}
.ws10{word-spacing:45.568000pt;}
.wsf{word-spacing:46.112000pt;}
.ws11{word-spacing:47.978667pt;}
.ws1a{word-spacing:587.138304pt;}
._1a{margin-left:-13.196899pt;}
._1{margin-left:-12.146133pt;}
._20{margin-left:-10.278245pt;}
._28{margin-left:-7.281947pt;}
._29{margin-left:-5.100802pt;}
._0{margin-left:-4.117333pt;}
._1f{margin-left:-3.210920pt;}
._2{margin-left:-2.264533pt;}
._17{margin-left:-1.057408pt;}
._3{width:0.899640pt;}
._10{width:1.874240pt;}
._1e{width:2.906759pt;}
._14{width:4.032000pt;}
._12{width:8.640000pt;}
._b{width:14.400000pt;}
._9{width:22.080001pt;}
._21{width:24.065408pt;}
._2a{width:25.053596pt;}
._19{width:28.939635pt;}
._c{width:31.296001pt;}
._d{width:32.946521pt;}
._f{width:36.576001pt;}
._13{width:42.986667pt;}
._11{width:48.960002pt;}
._e{width:50.688002pt;}
._16{width:66.336002pt;}
._18{width:67.402227pt;}
._1d{width:70.067797pt;}
._5{width:72.384002pt;}
._1b{width:76.800000pt;}
._1c{width:78.126834pt;}
._4{width:83.808003pt;}
._a{width:90.048003pt;}
._6{width:118.080004pt;}
._7{width:119.256004pt;}
._15{width:154.176005pt;}
._8{width:158.165245pt;}
._25{width:222.435222pt;}
._26{width:451.570582pt;}
._24{width:460.954896pt;}
._23{width:632.151424pt;}
._27{width:672.698027pt;}
._22{width:727.012040pt;}
.fs6{font-size:42.666669pt;}
.fs3{font-size:53.333334pt;}
.fs2{font-size:58.666670pt;}
.fsd{font-size:64.000000pt;}
.fsc{font-size:64.128000pt;}
.fs10{font-size:71.680000pt;}
.fs1{font-size:73.600010pt;}
.fse{font-size:74.368000pt;}
.fs16{font-size:80.000000pt;}
.fsa{font-size:85.888000pt;}
.fs15{font-size:88.888907pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:96.000003pt;}
.fs7{font-size:96.128000pt;}
.fs11{font-size:106.240000pt;}
.fsf{font-size:106.368000pt;}
.fs5{font-size:106.666667pt;}
.fs17{font-size:117.333333pt;}
.fsb{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fs19{font-size:129.333333pt;}
.fs13{font-size:133.333333pt;}
.fs18{font-size:170.666667pt;}
.fs0{font-size:205.866659pt;}
.fs14{font-size:304.000000pt;}
.fs12{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:12.000000pt;}
.y6{bottom:14.620763pt;}
.y70{bottom:15.999333pt;}
.y7a{bottom:20.479200pt;}
.y62{bottom:28.898280pt;}
.y6f{bottom:55.999333pt;}
.y51{bottom:86.464000pt;}
.y5c{bottom:102.946667pt;}
.y59{bottom:103.133333pt;}
.y32{bottom:122.715907pt;}
.y50{bottom:124.896000pt;}
.y9{bottom:141.645787pt;}
.y52{bottom:146.106667pt;}
.ya{bottom:161.654888pt;}
.y25{bottom:163.277698pt;}
.y8{bottom:174.765788pt;}
.y5{bottom:176.475208pt;}
.y33{bottom:176.960000pt;}
.y19{bottom:179.273690pt;}
.y6d{bottom:179.405733pt;}
.y6e{bottom:181.019600pt;}
.y20{bottom:182.616279pt;}
.y28{bottom:186.507809pt;}
.y54{bottom:194.653333pt;}
.y3e{bottom:197.440000pt;}
.y4{bottom:201.867209pt;}
.y47{bottom:210.400000pt;}
.y41{bottom:210.426667pt;}
.y24{bottom:211.277699pt;}
.y18{bottom:212.393692pt;}
.y7{bottom:222.706550pt;}
.y3{bottom:227.259209pt;}
.y67{bottom:231.872667pt;}
.y1f{bottom:232.296270pt;}
.y5f{bottom:235.840000pt;}
.y3d{bottom:235.866667pt;}
.y2b{bottom:238.861210pt;}
.y4f{bottom:240.160000pt;}
.y17{bottom:245.513723pt;}
.y46{bottom:248.826667pt;}
.y31{bottom:258.956896pt;}
.y23{bottom:259.277701pt;}
.y2e{bottom:260.236416pt;}
.yf{bottom:264.083181pt;}
.y1e{bottom:265.416261pt;}
.y5b{bottom:273.600000pt;}
.y5e{bottom:274.266667pt;}
.y4e{bottom:278.560000pt;}
.y16{bottom:278.633714pt;}
.y2a{bottom:286.861202pt;}
.y2{bottom:291.353142pt;}
.ye{bottom:297.203172pt;}
.y1d{bottom:298.536252pt;}
.y30{bottom:302.156892pt;}
.y2d{bottom:303.436412pt;}
.y22{bottom:307.277693pt;}
.y15{bottom:311.753715pt;}
.y3c{bottom:312.706667pt;}
.y27{bottom:312.836643pt;}
.y4d{bottom:316.986667pt;}
.y45{bottom:325.666667pt;}
.yd{bottom:330.323163pt;}
.y1c{bottom:331.656263pt;}
.y29{bottom:334.861193pt;}
.y35{bottom:339.746667pt;}
.y2f{bottom:345.356894pt;}
.y2c{bottom:346.636414pt;}
.y3b{bottom:351.106667pt;}
.y1{bottom:353.113135pt;}
.y4c{bottom:355.386667pt;}
.y65{bottom:356.368667pt;}
.y78{bottom:356.613867pt;}
.yc{bottom:363.443174pt;}
.y1b{bottom:364.776264pt;}
.y58{bottom:374.080000pt;}
.y5d{bottom:376.546667pt;}
.y14{bottom:377.993697pt;}
.y21{bottom:380.877685pt;}
.y71{bottom:381.790267pt;}
.y4b{bottom:393.826667pt;}
.yb{bottom:396.563175pt;}
.y44{bottom:402.493333pt;}
.y13{bottom:411.113688pt;}
.y26{bottom:412.379941pt;}
.y77{bottom:413.947200pt;}
.y5a{bottom:427.680000pt;}
.y3a{bottom:427.933333pt;}
.y80{bottom:431.008133pt;}
.y4a{bottom:432.226667pt;}
.y12{bottom:444.233699pt;}
.y76{bottom:471.280533pt;}
.y57{bottom:477.213333pt;}
.y11{bottom:477.353700pt;}
.y43{bottom:479.333333pt;}
.y10{bottom:495.801049pt;}
.y34{bottom:502.533333pt;}
.y7f{bottom:503.341467pt;}
.y39{bottom:504.773333pt;}
.y68{bottom:514.905333pt;}
.y42{bottom:517.760000pt;}
.y1a{bottom:518.199999pt;}
.y75{bottom:528.613867pt;}
.y56{bottom:531.360000pt;}
.y38{bottom:543.200000pt;}
.y7e{bottom:543.341467pt;}
.y49{bottom:547.493333pt;}
.y36{bottom:567.453333pt;}
.y37{bottom:581.626667pt;}
.y55{bottom:585.466667pt;}
.y48{bottom:585.920000pt;}
.y74{bottom:585.947200pt;}
.y66{bottom:598.905333pt;}
.y7d{bottom:615.674800pt;}
.y6c{bottom:638.793025pt;}
.y73{bottom:643.280533pt;}
.y40{bottom:672.546667pt;}
.y53{bottom:672.960000pt;}
.y72{bottom:677.947200pt;}
.y64{bottom:682.905333pt;}
.y7c{bottom:688.008133pt;}
.y6b{bottom:688.015200pt;}
.y79{bottom:721.576533pt;}
.y7b{bottom:728.008133pt;}
.y61{bottom:766.333200pt;}
.y63{bottom:766.905333pt;}
.y6a{bottom:772.015200pt;}
.y60{bottom:889.066667pt;}
.y69{bottom:892.146667pt;}
.h4{height:40.807292pt;}
.h3{height:44.888023pt;}
.h11{height:54.187500pt;}
.hf{height:54.295875pt;}
.h2{height:56.314070pt;}
.h22{height:59.120000pt;}
.h12{height:62.965875pt;}
.h1f{height:70.944000pt;}
.h24{height:72.000000pt;}
.h6{height:72.937502pt;}
.h5{height:73.453127pt;}
.ha{height:74.390625pt;}
.hb{height:74.489812pt;}
.h1b{height:78.593750pt;}
.h1c{height:78.826667pt;}
.h13{height:81.281250pt;}
.h9{height:81.389625pt;}
.h7{height:81.614584pt;}
.h14{height:82.424812pt;}
.h23{height:86.453125pt;}
.h16{height:89.951250pt;}
.h15{height:90.059625pt;}
.h26{height:95.294922pt;}
.h20{height:96.666667pt;}
.h21{height:98.242188pt;}
.h1a{height:98.533333pt;}
.h10{height:99.187500pt;}
.hd{height:108.375000pt;}
.he{height:108.483375pt;}
.h1e{height:108.755365pt;}
.hc{height:111.119625pt;}
.h25{height:126.416667pt;}
.h1{height:146.165328pt;}
.h17{height:224.320000pt;}
.h1d{height:235.904000pt;}
.h19{height:248.320000pt;}
.h0{height:540.000000pt;}
.h8{height:720.000000pt;}
.h18{height:1024.000000pt;}
.w4{width:256.640000pt;}
.w3{width:283.520000pt;}
.w7{width:495.668800pt;}
.w0{width:960.000000pt;}
.w6{width:1195.556667pt;}
.w2{width:1279.999981pt;}
.w1{width:1280.000000pt;}
.w5{width:1365.333333pt;}
.x0{left:0.000000pt;}
.x2d{left:10.626667pt;}
.x3e{left:12.277360pt;}
.x39{left:29.891000pt;}
.x14{left:31.884503pt;}
.x1f{left:37.503981pt;}
.x24{left:47.679981pt;}
.x26{left:54.719981pt;}
.xf{left:59.572180pt;}
.x34{left:61.333333pt;}
.x33{left:62.666667pt;}
.x3c{left:65.699507pt;}
.x10{left:69.076086pt;}
.xa{left:70.519686pt;}
.x11{left:72.874018pt;}
.x12{left:80.773539pt;}
.x25{left:83.519981pt;}
.x38{left:90.221653pt;}
.x3d{left:92.366173pt;}
.x22{left:105.215981pt;}
.xd{left:135.850399pt;}
.x2{left:173.031216pt;}
.x8{left:188.183401pt;}
.x1{left:213.885037pt;}
.x4{left:253.101556pt;}
.x9{left:265.368948pt;}
.x3{left:272.008463pt;}
.x1a{left:289.220589pt;}
.x16{left:298.422280pt;}
.x3a{left:315.242613pt;}
.x5{left:327.157954pt;}
.x20{left:348.346648pt;}
.x29{left:423.106648pt;}
.x2f{left:456.640000pt;}
.x2b{left:480.826648pt;}
.x28{left:504.573314pt;}
.x23{left:522.853314pt;}
.xb{left:527.307087pt;}
.x2a{left:538.466648pt;}
.x18{left:544.067917pt;}
.x21{left:567.773314pt;}
.x15{left:569.128248pt;}
.x13{left:578.935689pt;}
.x17{left:588.742449pt;}
.x19{left:620.590170pt;}
.x32{left:635.973314pt;}
.x1e{left:643.293314pt;}
.x6{left:665.740221pt;}
.x35{left:677.664533pt;}
.x31{left:702.239981pt;}
.x30{left:744.226648pt;}
.xe{left:789.204725pt;}
.x7{left:836.606327pt;}
.x3b{left:838.181467pt;}
.x1b{left:861.826648pt;}
.xc{left:889.398928pt;}
.x2c{left:901.440000pt;}
.x36{left:908.358933pt;}
.x1d{left:952.826648pt;}
.x2e{left:966.813314pt;}
.x1c{left:978.493314pt;}
.x37{left:1064.749333pt;}
.x27{left:1124.133314pt;}
}




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