
    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_9235a916cbe88b00d4b0cca5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c0c06448ee64b1fcc4b23e22.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_ec3be930d127859dcc5a3ad7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.116699;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_f977b92ab2ca869d782d0c9d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_f0505fe0b4884b1f68461f9d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.121582;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_2a2f7e8bc2a1c7e3a858af36.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708000;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_ea080344e163fb33dd554b53.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5f9da60c9faaf1171aabb21c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bfc430aa63b73fd1aeb17314.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_7b2cc125ade8f4c4be6fb1b4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.029000;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);}
.v4{vertical-align:-60.000000px;}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.984000px;}
.v6{vertical-align:19.980000px;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:180.000000px;}
.ls1b{letter-spacing:-4.536000px;}
.ls27{letter-spacing:-4.464000px;}
.ls6{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.792000px;}
.ls28{letter-spacing:-0.648000px;}
.ls29{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.083952px;}
.ls10{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000600px;}
.ls1a{letter-spacing:0.012000px;}
.ls2b{letter-spacing:0.019200px;}
.lsc{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.253800px;}
.ls9{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.399600px;}
.ls18{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.579600px;}
.ls21{letter-spacing:0.648000px;}
.ls23{letter-spacing:0.720000px;}
.ls1d{letter-spacing:1.203000px;}
.ls20{letter-spacing:1.343400px;}
.ls2c{letter-spacing:2.770416px;}
.ls24{letter-spacing:4.636200px;}
.ls2a{letter-spacing:4.752000px;}
.ls1c{letter-spacing:4.968000px;}
.lse{letter-spacing:6.961200px;}
.ls2{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.593168px;}
.ls0{letter-spacing:10.740000px;}
.ls1f{letter-spacing:11.952000px;}
.ls19{letter-spacing:24.152496px;}
.ls16{letter-spacing:39.095952px;}
.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;}
}
.ws1a{word-spacing:-49.176000px;}
.ws18{word-spacing:-49.104000px;}
.ws1b{word-spacing:-49.032000px;}
.ws19{word-spacing:-48.960000px;}
.ws14{word-spacing:-48.888000px;}
.wse{word-spacing:-48.816000px;}
.wsa{word-spacing:-48.744000px;}
.ws1{word-spacing:-48.672000px;}
.ws6{word-spacing:-48.600000px;}
.ws0{word-spacing:-48.528000px;}
.ws9{word-spacing:-48.456000px;}
.wsd{word-spacing:-48.384000px;}
.ws10{word-spacing:-48.312000px;}
.ws3{word-spacing:-48.240000px;}
.ws2{word-spacing:-48.168000px;}
.wsb{word-spacing:-48.096000px;}
.ws21{word-spacing:-48.024000px;}
.ws1d{word-spacing:-47.952000px;}
.ws5{word-spacing:-47.736000px;}
.ws25{word-spacing:-40.440000px;}
.ws8{word-spacing:-32.352000px;}
.ws12{word-spacing:-28.291824px;}
.wsc{word-spacing:-26.976000px;}
.ws1f{word-spacing:-25.320000px;}
.ws15{word-spacing:-20.664000px;}
.ws20{word-spacing:-20.304000px;}
.wsf{word-spacing:-20.232000px;}
.ws1e{word-spacing:-20.160000px;}
.ws13{word-spacing:-20.088000px;}
.ws26{word-spacing:-16.860000px;}
.ws16{word-spacing:-13.488000px;}
.ws7{word-spacing:-11.795256px;}
.ws1c{word-spacing:-11.711304px;}
.ws24{word-spacing:-9.829380px;}
.ws11{word-spacing:-7.863504px;}
.ws23{word-spacing:-7.191888px;}
.ws17{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws22{word-spacing:15.792000px;}
._14{margin-left:-18.556200px;}
._16{margin-left:-17.392800px;}
._15{margin-left:-15.480000px;}
._3{margin-left:-14.243400px;}
._f{margin-left:-12.792000px;}
._1{margin-left:-11.400000px;}
._34{margin-left:-9.900000px;}
._5{margin-left:-8.880000px;}
._9{margin-left:-7.320000px;}
._8{margin-left:-5.520000px;}
._2{margin-left:-4.080000px;}
._0{margin-left:-3.000000px;}
._6{margin-left:-1.080000px;}
._a{width:1.056000px;}
._7{width:2.280000px;}
._4{width:3.600000px;}
._d{width:5.280000px;}
._18{width:6.288000px;}
._e{width:7.296000px;}
._19{width:8.317800px;}
._12{width:9.792000px;}
._b{width:11.352000px;}
._c{width:12.600000px;}
._13{width:14.664000px;}
._1b{width:20.424000px;}
._2f{width:21.912000px;}
._17{width:24.152496px;}
._1d{width:31.296000px;}
._11{width:38.144496px;}
._1f{width:46.512000px;}
._2e{width:69.648000px;}
._30{width:71.952000px;}
._1c{width:74.976000px;}
._2b{width:76.320000px;}
._20{width:77.760000px;}
._24{width:79.392000px;}
._31{width:88.224000px;}
._29{width:92.064000px;}
._33{width:93.888000px;}
._27{width:96.672000px;}
._2d{width:98.928000px;}
._2a{width:101.952000px;}
._22{width:103.200000px;}
._21{width:104.400000px;}
._32{width:110.208000px;}
._26{width:112.416000px;}
._25{width:115.008000px;}
._2c{width:116.304000px;}
._1a{width:139.056000px;}
._23{width:145.680000px;}
._10{width:164.136000px;}
._1e{width:172.512000px;}
._28{width:174.144000px;}
.fc1{color:rgb(0,100,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs8{font-size:34.980000px;}
.fs4{font-size:41.976000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1{bottom:31.500000px;}
.y2{bottom:72.000000px;}
.y52{bottom:116.999850px;}
.y21{bottom:117.000000px;}
.y5e{bottom:120.996000px;}
.y51{bottom:131.999850px;}
.y2c{bottom:132.000000px;}
.y56{bottom:135.545850px;}
.yb0{bottom:135.750000px;}
.y59{bottom:135.995850px;}
.y5f{bottom:135.996000px;}
.y20{bottom:139.500000px;}
.y2b{bottom:147.000000px;}
.y50{bottom:150.995850px;}
.y5a{bottom:150.996000px;}
.y55{bottom:153.599850px;}
.y58{bottom:154.499850px;}
.y61{bottom:154.500000px;}
.y1f{bottom:162.000000px;}
.y2a{bottom:165.996000px;}
.y54{bottom:168.149850px;}
.y5d{bottom:169.500000px;}
.y82{bottom:171.750000px;}
.yaf{bottom:173.250000px;}
.y57{bottom:173.495850px;}
.y60{bottom:173.496000px;}
.y95{bottom:177.000000px;}
.y4f{bottom:177.749850px;}
.y1e{bottom:184.500000px;}
.y53{bottom:186.695850px;}
.y94{bottom:192.000000px;}
.y81{bottom:194.625000px;}
.y4e{bottom:199.799850px;}
.y5c{bottom:203.496000px;}
.y1d{bottom:207.000000px;}
.yae{bottom:210.750000px;}
.y80{bottom:217.500000px;}
.y4d{bottom:221.849850px;}
.y93{bottom:222.000000px;}
.y5b{bottom:225.996000px;}
.y1c{bottom:229.500000px;}
.y92{bottom:237.000000px;}
.y7f{bottom:240.375000px;}
.y4c{bottom:243.899850px;}
.yad{bottom:248.250000px;}
.y1b{bottom:252.000000px;}
.y7e{bottom:263.250000px;}
.y4b{bottom:265.949850px;}
.y91{bottom:267.000000px;}
.y1a{bottom:274.500000px;}
.y90{bottom:282.000000px;}
.yac{bottom:285.750000px;}
.y7d{bottom:286.125000px;}
.y4a{bottom:287.999850px;}
.y19{bottom:297.000000px;}
.yab{bottom:304.500000px;}
.y7c{bottom:309.000000px;}
.y49{bottom:310.049850px;}
.y8f{bottom:312.000000px;}
.y18{bottom:319.500000px;}
.yaa{bottom:323.250000px;}
.y8e{bottom:327.000000px;}
.y7b{bottom:331.875000px;}
.y48{bottom:332.099850px;}
.y17{bottom:342.000000px;}
.y47{bottom:354.149850px;}
.y7a{bottom:354.750000px;}
.y8d{bottom:357.000000px;}
.ya9{bottom:360.750000px;}
.y16{bottom:364.500000px;}
.y8c{bottom:372.000000px;}
.y46{bottom:376.199850px;}
.y79{bottom:377.625000px;}
.ya8{bottom:379.500000px;}
.y15{bottom:387.000000px;}
.y45{bottom:398.249850px;}
.ya7{bottom:398.250000px;}
.y78{bottom:400.500000px;}
.y8b{bottom:402.000000px;}
.y14{bottom:409.500000px;}
.y8a{bottom:417.000000px;}
.y44{bottom:420.300000px;}
.y77{bottom:423.375000px;}
.y13{bottom:432.000000px;}
.ya6{bottom:435.750000px;}
.y43{bottom:442.349850px;}
.y76{bottom:446.250000px;}
.y89{bottom:447.000000px;}
.y12{bottom:454.500000px;}
.y88{bottom:462.000000px;}
.y42{bottom:464.399850px;}
.y75{bottom:469.125000px;}
.ya5{bottom:473.250000px;}
.y11{bottom:477.000000px;}
.ybf{bottom:480.750000px;}
.y41{bottom:486.449850px;}
.y74{bottom:492.000000px;}
.y10{bottom:499.500000px;}
.y87{bottom:507.000000px;}
.y40{bottom:508.499850px;}
.ya4{bottom:510.750000px;}
.y73{bottom:514.875000px;}
.ybe{bottom:518.250000px;}
.yf{bottom:522.000000px;}
.ya3{bottom:529.500000px;}
.y3f{bottom:530.550000px;}
.y86{bottom:537.000000px;}
.y72{bottom:537.750000px;}
.ye{bottom:544.500000px;}
.ya2{bottom:548.250000px;}
.y85{bottom:552.000000px;}
.y3e{bottom:552.599850px;}
.y71{bottom:560.625000px;}
.y29{bottom:567.000000px;}
.ybd{bottom:574.500000px;}
.y3d{bottom:574.649850px;}
.y84{bottom:582.000000px;}
.y70{bottom:583.500000px;}
.ya1{bottom:585.750000px;}
.yd{bottom:589.500000px;}
.y3c{bottom:596.699850px;}
.y83{bottom:597.000000px;}
.y6f{bottom:606.375000px;}
.yc{bottom:612.000000px;}
.y3b{bottom:618.749850px;}
.ybc{bottom:630.750000px;}
.yb{bottom:634.500000px;}
.y3a{bottom:640.800000px;}
.ybb{bottom:649.500000px;}
.y6e{bottom:652.125000px;}
.ya{bottom:657.000000px;}
.y39{bottom:662.849850px;}
.yba{bottom:668.250000px;}
.ya0{bottom:672.000000px;}
.y6d{bottom:675.000000px;}
.y8{bottom:679.500000px;}
.y38{bottom:684.899850px;}
.y9f{bottom:687.000000px;}
.y6c{bottom:697.875000px;}
.y9{bottom:702.000000px;}
.yb9{bottom:705.750000px;}
.y37{bottom:706.949850px;}
.y9e{bottom:717.000000px;}
.y6b{bottom:720.750000px;}
.y28{bottom:724.500000px;}
.y36{bottom:728.999850px;}
.y9d{bottom:732.000000px;}
.yb8{bottom:743.250000px;}
.y6a{bottom:743.625000px;}
.y27{bottom:747.000000px;}
.y35{bottom:751.050000px;}
.y9c{bottom:762.000000px;}
.y69{bottom:766.500000px;}
.y7{bottom:769.500000px;}
.y34{bottom:773.100000px;}
.y9b{bottom:777.000000px;}
.yb7{bottom:780.750000px;}
.y68{bottom:789.375000px;}
.y6{bottom:792.000000px;}
.y33{bottom:795.150000px;}
.yb6{bottom:799.500000px;}
.y9a{bottom:807.000000px;}
.y67{bottom:812.250000px;}
.y26{bottom:814.500000px;}
.y32{bottom:817.199850px;}
.yb5{bottom:818.250000px;}
.y99{bottom:822.000000px;}
.y66{bottom:835.125000px;}
.y25{bottom:837.000000px;}
.y31{bottom:839.249850px;}
.y98{bottom:852.000000px;}
.yb4{bottom:855.750000px;}
.y65{bottom:858.000000px;}
.y5{bottom:859.500000px;}
.y30{bottom:861.300000px;}
.y97{bottom:874.500000px;}
.y64{bottom:880.875000px;}
.y24{bottom:882.000000px;}
.y2f{bottom:883.350000px;}
.y4{bottom:889.500000px;}
.yb3{bottom:893.250000px;}
.y63{bottom:903.750000px;}
.y23{bottom:904.500000px;}
.y2e{bottom:905.400000px;}
.yb2{bottom:912.000000px;}
.y3{bottom:919.500000px;}
.y62{bottom:926.625000px;}
.y22{bottom:927.000000px;}
.y2d{bottom:927.450000px;}
.yb1{bottom:930.750000px;}
.y96{bottom:934.500000px;}
.hb{height:26.437875px;}
.he{height:39.888000px;}
.h2{height:39.990234px;}
.hc{height:42.421875px;}
.hd{height:49.675781px;}
.h6{height:50.580000px;}
.ha{height:53.027344px;}
.h7{height:63.386719px;}
.h9{height:63.632812px;}
.h4{height:82.792969px;}
.h5{height:106.054688px;}
.h8{height:296.679600px;}
.h3{height:1017.000000px;}
.h1{height:1017.001500px;}
.h0{height:1080.000000px;}
.w2{width:720.000000px;}
.w1{width:720.001500px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x1{left:31.500000px;}
.x2{left:67.500000px;}
.x4{left:82.500000px;}
.x3{left:106.597500px;}
.x7{left:112.500000px;}
.x8{left:127.500000px;}
.x5{left:135.000000px;}
.x6{left:422.153250px;}
@media print{
.v4{vertical-align:-53.333333pt;}
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.208000pt;}
.v6{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:160.000000pt;}
.ls1b{letter-spacing:-4.032000pt;}
.ls27{letter-spacing:-3.968000pt;}
.ls6{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls29{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.074624pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000533pt;}
.ls1a{letter-spacing:0.010667pt;}
.ls2b{letter-spacing:0.017067pt;}
.lsc{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.225600pt;}
.ls9{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.355200pt;}
.ls18{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.515200pt;}
.ls21{letter-spacing:0.576000pt;}
.ls23{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:1.069333pt;}
.ls20{letter-spacing:1.194133pt;}
.ls2c{letter-spacing:2.462592pt;}
.ls24{letter-spacing:4.121067pt;}
.ls2a{letter-spacing:4.224000pt;}
.ls1c{letter-spacing:4.416000pt;}
.lse{letter-spacing:6.187733pt;}
.ls2{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.416149pt;}
.ls0{letter-spacing:9.546667pt;}
.ls1f{letter-spacing:10.624000pt;}
.ls19{letter-spacing:21.468885pt;}
.ls16{letter-spacing:34.751957pt;}
.ws1a{word-spacing:-43.712000pt;}
.ws18{word-spacing:-43.648000pt;}
.ws1b{word-spacing:-43.584000pt;}
.ws19{word-spacing:-43.520000pt;}
.ws14{word-spacing:-43.456000pt;}
.wse{word-spacing:-43.392000pt;}
.wsa{word-spacing:-43.328000pt;}
.ws1{word-spacing:-43.264000pt;}
.ws6{word-spacing:-43.200000pt;}
.ws0{word-spacing:-43.136000pt;}
.ws9{word-spacing:-43.072000pt;}
.wsd{word-spacing:-43.008000pt;}
.ws10{word-spacing:-42.944000pt;}
.ws3{word-spacing:-42.880000pt;}
.ws2{word-spacing:-42.816000pt;}
.wsb{word-spacing:-42.752000pt;}
.ws21{word-spacing:-42.688000pt;}
.ws1d{word-spacing:-42.624000pt;}
.ws5{word-spacing:-42.432000pt;}
.ws25{word-spacing:-35.946667pt;}
.ws8{word-spacing:-28.757333pt;}
.ws12{word-spacing:-25.148288pt;}
.wsc{word-spacing:-23.978667pt;}
.ws1f{word-spacing:-22.506667pt;}
.ws15{word-spacing:-18.368000pt;}
.ws20{word-spacing:-18.048000pt;}
.wsf{word-spacing:-17.984000pt;}
.ws1e{word-spacing:-17.920000pt;}
.ws13{word-spacing:-17.856000pt;}
.ws26{word-spacing:-14.986667pt;}
.ws16{word-spacing:-11.989333pt;}
.ws7{word-spacing:-10.484672pt;}
.ws1c{word-spacing:-10.410048pt;}
.ws24{word-spacing:-8.737227pt;}
.ws11{word-spacing:-6.989781pt;}
.ws23{word-spacing:-6.392789pt;}
.ws17{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws22{word-spacing:14.037333pt;}
._14{margin-left:-16.494400pt;}
._16{margin-left:-15.460267pt;}
._15{margin-left:-13.760000pt;}
._3{margin-left:-12.660800pt;}
._f{margin-left:-11.370667pt;}
._1{margin-left:-10.133333pt;}
._34{margin-left:-8.800000pt;}
._5{margin-left:-7.893333pt;}
._9{margin-left:-6.506667pt;}
._8{margin-left:-4.906667pt;}
._2{margin-left:-3.626667pt;}
._0{margin-left:-2.666667pt;}
._6{margin-left:-0.960000pt;}
._a{width:0.938667pt;}
._7{width:2.026667pt;}
._4{width:3.200000pt;}
._d{width:4.693333pt;}
._18{width:5.589333pt;}
._e{width:6.485333pt;}
._19{width:7.393600pt;}
._12{width:8.704000pt;}
._b{width:10.090667pt;}
._c{width:11.200000pt;}
._13{width:13.034667pt;}
._1b{width:18.154667pt;}
._2f{width:19.477333pt;}
._17{width:21.468885pt;}
._1d{width:27.818667pt;}
._11{width:33.906219pt;}
._1f{width:41.344000pt;}
._2e{width:61.909333pt;}
._30{width:63.957333pt;}
._1c{width:66.645333pt;}
._2b{width:67.840000pt;}
._20{width:69.120000pt;}
._24{width:70.570667pt;}
._31{width:78.421333pt;}
._29{width:81.834667pt;}
._33{width:83.456000pt;}
._27{width:85.930667pt;}
._2d{width:87.936000pt;}
._2a{width:90.624000pt;}
._22{width:91.733333pt;}
._21{width:92.800000pt;}
._32{width:97.962667pt;}
._26{width:99.925333pt;}
._25{width:102.229333pt;}
._2c{width:103.381333pt;}
._1a{width:123.605333pt;}
._23{width:129.493333pt;}
._10{width:145.898667pt;}
._1e{width:153.344000pt;}
._28{width:154.794667pt;}
.fs5{font-size:24.874667pt;}
.fs8{font-size:31.093333pt;}
.fs4{font-size:37.312000pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:28.000000pt;}
.y2{bottom:64.000000pt;}
.y52{bottom:103.999867pt;}
.y21{bottom:104.000000pt;}
.y5e{bottom:107.552000pt;}
.y51{bottom:117.333200pt;}
.y2c{bottom:117.333333pt;}
.y56{bottom:120.485200pt;}
.yb0{bottom:120.666667pt;}
.y59{bottom:120.885200pt;}
.y5f{bottom:120.885333pt;}
.y20{bottom:124.000000pt;}
.y2b{bottom:130.666667pt;}
.y50{bottom:134.218533pt;}
.y5a{bottom:134.218667pt;}
.y55{bottom:136.533200pt;}
.y58{bottom:137.333200pt;}
.y61{bottom:137.333333pt;}
.y1f{bottom:144.000000pt;}
.y2a{bottom:147.552000pt;}
.y54{bottom:149.466533pt;}
.y5d{bottom:150.666667pt;}
.y82{bottom:152.666667pt;}
.yaf{bottom:154.000000pt;}
.y57{bottom:154.218533pt;}
.y60{bottom:154.218667pt;}
.y95{bottom:157.333333pt;}
.y4f{bottom:157.999867pt;}
.y1e{bottom:164.000000pt;}
.y53{bottom:165.951867pt;}
.y94{bottom:170.666667pt;}
.y81{bottom:173.000000pt;}
.y4e{bottom:177.599867pt;}
.y5c{bottom:180.885333pt;}
.y1d{bottom:184.000000pt;}
.yae{bottom:187.333333pt;}
.y80{bottom:193.333333pt;}
.y4d{bottom:197.199867pt;}
.y93{bottom:197.333333pt;}
.y5b{bottom:200.885333pt;}
.y1c{bottom:204.000000pt;}
.y92{bottom:210.666667pt;}
.y7f{bottom:213.666667pt;}
.y4c{bottom:216.799867pt;}
.yad{bottom:220.666667pt;}
.y1b{bottom:224.000000pt;}
.y7e{bottom:234.000000pt;}
.y4b{bottom:236.399867pt;}
.y91{bottom:237.333333pt;}
.y1a{bottom:244.000000pt;}
.y90{bottom:250.666667pt;}
.yac{bottom:254.000000pt;}
.y7d{bottom:254.333333pt;}
.y4a{bottom:255.999867pt;}
.y19{bottom:264.000000pt;}
.yab{bottom:270.666667pt;}
.y7c{bottom:274.666667pt;}
.y49{bottom:275.599867pt;}
.y8f{bottom:277.333333pt;}
.y18{bottom:284.000000pt;}
.yaa{bottom:287.333333pt;}
.y8e{bottom:290.666667pt;}
.y7b{bottom:295.000000pt;}
.y48{bottom:295.199867pt;}
.y17{bottom:304.000000pt;}
.y47{bottom:314.799867pt;}
.y7a{bottom:315.333333pt;}
.y8d{bottom:317.333333pt;}
.ya9{bottom:320.666667pt;}
.y16{bottom:324.000000pt;}
.y8c{bottom:330.666667pt;}
.y46{bottom:334.399867pt;}
.y79{bottom:335.666667pt;}
.ya8{bottom:337.333333pt;}
.y15{bottom:344.000000pt;}
.y45{bottom:353.999867pt;}
.ya7{bottom:354.000000pt;}
.y78{bottom:356.000000pt;}
.y8b{bottom:357.333333pt;}
.y14{bottom:364.000000pt;}
.y8a{bottom:370.666667pt;}
.y44{bottom:373.600000pt;}
.y77{bottom:376.333333pt;}
.y13{bottom:384.000000pt;}
.ya6{bottom:387.333333pt;}
.y43{bottom:393.199867pt;}
.y76{bottom:396.666667pt;}
.y89{bottom:397.333333pt;}
.y12{bottom:404.000000pt;}
.y88{bottom:410.666667pt;}
.y42{bottom:412.799867pt;}
.y75{bottom:417.000000pt;}
.ya5{bottom:420.666667pt;}
.y11{bottom:424.000000pt;}
.ybf{bottom:427.333333pt;}
.y41{bottom:432.399867pt;}
.y74{bottom:437.333333pt;}
.y10{bottom:444.000000pt;}
.y87{bottom:450.666667pt;}
.y40{bottom:451.999867pt;}
.ya4{bottom:454.000000pt;}
.y73{bottom:457.666667pt;}
.ybe{bottom:460.666667pt;}
.yf{bottom:464.000000pt;}
.ya3{bottom:470.666667pt;}
.y3f{bottom:471.600000pt;}
.y86{bottom:477.333333pt;}
.y72{bottom:478.000000pt;}
.ye{bottom:484.000000pt;}
.ya2{bottom:487.333333pt;}
.y85{bottom:490.666667pt;}
.y3e{bottom:491.199867pt;}
.y71{bottom:498.333333pt;}
.y29{bottom:504.000000pt;}
.ybd{bottom:510.666667pt;}
.y3d{bottom:510.799867pt;}
.y84{bottom:517.333333pt;}
.y70{bottom:518.666667pt;}
.ya1{bottom:520.666667pt;}
.yd{bottom:524.000000pt;}
.y3c{bottom:530.399867pt;}
.y83{bottom:530.666667pt;}
.y6f{bottom:539.000000pt;}
.yc{bottom:544.000000pt;}
.y3b{bottom:549.999867pt;}
.ybc{bottom:560.666667pt;}
.yb{bottom:564.000000pt;}
.y3a{bottom:569.600000pt;}
.ybb{bottom:577.333333pt;}
.y6e{bottom:579.666667pt;}
.ya{bottom:584.000000pt;}
.y39{bottom:589.199867pt;}
.yba{bottom:594.000000pt;}
.ya0{bottom:597.333333pt;}
.y6d{bottom:600.000000pt;}
.y8{bottom:604.000000pt;}
.y38{bottom:608.799867pt;}
.y9f{bottom:610.666667pt;}
.y6c{bottom:620.333333pt;}
.y9{bottom:624.000000pt;}
.yb9{bottom:627.333333pt;}
.y37{bottom:628.399867pt;}
.y9e{bottom:637.333333pt;}
.y6b{bottom:640.666667pt;}
.y28{bottom:644.000000pt;}
.y36{bottom:647.999867pt;}
.y9d{bottom:650.666667pt;}
.yb8{bottom:660.666667pt;}
.y6a{bottom:661.000000pt;}
.y27{bottom:664.000000pt;}
.y35{bottom:667.600000pt;}
.y9c{bottom:677.333333pt;}
.y69{bottom:681.333333pt;}
.y7{bottom:684.000000pt;}
.y34{bottom:687.200000pt;}
.y9b{bottom:690.666667pt;}
.yb7{bottom:694.000000pt;}
.y68{bottom:701.666667pt;}
.y6{bottom:704.000000pt;}
.y33{bottom:706.800000pt;}
.yb6{bottom:710.666667pt;}
.y9a{bottom:717.333333pt;}
.y67{bottom:722.000000pt;}
.y26{bottom:724.000000pt;}
.y32{bottom:726.399867pt;}
.yb5{bottom:727.333333pt;}
.y99{bottom:730.666667pt;}
.y66{bottom:742.333333pt;}
.y25{bottom:744.000000pt;}
.y31{bottom:745.999867pt;}
.y98{bottom:757.333333pt;}
.yb4{bottom:760.666667pt;}
.y65{bottom:762.666667pt;}
.y5{bottom:764.000000pt;}
.y30{bottom:765.600000pt;}
.y97{bottom:777.333333pt;}
.y64{bottom:783.000000pt;}
.y24{bottom:784.000000pt;}
.y2f{bottom:785.200000pt;}
.y4{bottom:790.666667pt;}
.yb3{bottom:794.000000pt;}
.y63{bottom:803.333333pt;}
.y23{bottom:804.000000pt;}
.y2e{bottom:804.800000pt;}
.yb2{bottom:810.666667pt;}
.y3{bottom:817.333333pt;}
.y62{bottom:823.666667pt;}
.y22{bottom:824.000000pt;}
.y2d{bottom:824.400000pt;}
.yb1{bottom:827.333333pt;}
.y96{bottom:830.666667pt;}
.hb{height:23.500333pt;}
.he{height:35.456000pt;}
.h2{height:35.546875pt;}
.hc{height:37.708333pt;}
.hd{height:44.156250pt;}
.h6{height:44.960000pt;}
.ha{height:47.135417pt;}
.h7{height:56.343750pt;}
.h9{height:56.562500pt;}
.h4{height:73.593750pt;}
.h5{height:94.270833pt;}
.h8{height:263.715200pt;}
.h3{height:904.000000pt;}
.h1{height:904.001333pt;}
.h0{height:960.000000pt;}
.w2{width:640.000000pt;}
.w1{width:640.001333pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x1{left:28.000000pt;}
.x2{left:60.000000pt;}
.x4{left:73.333333pt;}
.x3{left:94.753333pt;}
.x7{left:100.000000pt;}
.x8{left:113.333333pt;}
.x5{left:120.000000pt;}
.x6{left:375.247333pt;}
}




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