
    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_b3337cc450bf7a252ad5b507.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_684d3c222657be0eb0164063.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_9245f041af3c97222bfbd423.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_6a8f346c1433df6707ca9d2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5939d2433dfcc900b3811251.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894531;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_02a6a9c76932cb3188cb06bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.697266;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_8dfe1b694e13f803fdd7506a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.831543;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_3fb5f072a37c4a1394f499a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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_7bb44e80aae5d589eed5ac6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.123047;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_05d6fe9f4628cbe01b9f7884.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_47ea2d0f0fc87a7590a845a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.074219;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_c4e2041b647352a5e798c9b3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_a74b05465d959ae01ab2fa24.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8b8684b530cd29391166dcd4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a2bbede509ea426d10544ac8.woff2')format("woff");}.fff{font-family:fff;line-height:1.104004;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_80de54883283cc742c26f7ae.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.118164;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_9ce3806446eef829e6fef2c2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.118164;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_966ac612b7cbfc8e853cb1b1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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:ff14;src:url('chunks/assets/font_c75045fb87b8b67130329dc0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.172852;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:ff15;src:url('chunks/assets/font_26c908cc39ab70df3e5713c6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.894531;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:ff16;src:url('chunks/assets/font_29274d2e28dc1918554fff3d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.824219;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.430000px;}
.ls5{letter-spacing:-2.160000px;}
.lsa{letter-spacing:-1.800000px;}
.ls6{letter-spacing:-1.584000px;}
.lsb{letter-spacing:-1.494000px;}
.ls7{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.828000px;}
.ls8{letter-spacing:-0.057600px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.620000px;}
.ls3{letter-spacing:8.100000px;}
.ls4{letter-spacing:13.860000px;}
.ls1{letter-spacing:14.346720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.760000px;}
.ws5{word-spacing:-37.756800px;}
.ws6{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.416000px;}
.ws8{word-spacing:-15.732000px;}
.ws0{word-spacing:-14.958000px;}
.wsa{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-244.476000px;}
._4{margin-left:-217.368000px;}
._0{margin-left:-172.440000px;}
._1{margin-left:-115.632000px;}
._2{margin-left:-112.554000px;}
._17{margin-left:-5.112000px;}
._8{margin-left:-3.262560px;}
._6{margin-left:-2.232000px;}
._5{margin-left:-1.152000px;}
._7{width:1.188000px;}
._c{width:2.245440px;}
._b{width:3.717120px;}
._d{width:4.752000px;}
._e{width:6.646560px;}
._12{width:7.920000px;}
._9{width:9.477120px;}
._a{width:10.966560px;}
._15{width:12.087360px;}
._13{width:13.104000px;}
._14{width:14.251680px;}
._1b{width:15.295200px;}
._16{width:16.644960px;}
._f{width:19.030560px;}
._18{width:20.736000px;}
._10{width:30.816000px;}
._11{width:32.551680px;}
._1a{width:40.852320px;}
._19{width:42.546240px;}
.fc6{color:rgb(128,0,0);}
.fc5{color:transparent;}
.fc1{color:rgb(91,155,213);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(191,191,191);}
.fc2{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:54.000040px;}
.fsc{font-size:59.760000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:60.000045px;}
.fs7{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fsa{font-size:84.240000px;}
.fs8{font-size:113.760000px;}
.fse{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.600000px;}
.y54{bottom:4.140000px;}
.y18{bottom:15.000000px;}
.y1b{bottom:88.956000px;}
.y52{bottom:130.716000px;}
.y51{bottom:147.996000px;}
.y50{bottom:165.270000px;}
.y4f{bottom:182.370000px;}
.y82{bottom:187.050000px;}
.y4e{bottom:199.650000px;}
.y4d{bottom:204.870000px;}
.y81{bottom:207.750000px;}
.y4c{bottom:216.930000px;}
.y80{bottom:228.450000px;}
.y4b{bottom:234.210000px;}
.y7f{bottom:249.150000px;}
.y4a{bottom:251.490000px;}
.y49{bottom:268.770000px;}
.y7e{bottom:269.850000px;}
.y48{bottom:273.990000px;}
.y47{bottom:287.535000px;}
.y7d{bottom:290.595000px;}
.y7c{bottom:311.295000px;}
.y46{bottom:313.635000px;}
.y7b{bottom:331.995000px;}
.y45{bottom:334.335000px;}
.y7a{bottom:352.695000px;}
.y44{bottom:355.035000px;}
.y79{bottom:373.395000px;}
.y43{bottom:375.735000px;}
.y78{bottom:394.095000px;}
.y42{bottom:396.435000px;}
.y77{bottom:414.795000px;}
.y41{bottom:417.135000px;}
.y76{bottom:435.495000px;}
.y40{bottom:437.835000px;}
.y75{bottom:456.195000px;}
.y3f{bottom:458.535000px;}
.y74{bottom:476.895000px;}
.y3e{bottom:479.235000px;}
.y73{bottom:497.595000px;}
.y3d{bottom:499.935000px;}
.y72{bottom:518.295000px;}
.y3c{bottom:520.635000px;}
.y71{bottom:538.995000px;}
.y3b{bottom:541.335000px;}
.y70{bottom:559.695000px;}
.y3a{bottom:562.035000px;}
.y12{bottom:573.282658px;}
.y6f{bottom:580.425000px;}
.y39{bottom:582.765000px;}
.y11{bottom:590.546158px;}
.y6e{bottom:601.125000px;}
.y38{bottom:603.465000px;}
.y10{bottom:607.794658px;}
.y6d{bottom:621.645000px;}
.y37{bottom:624.165000px;}
.yf{bottom:625.043158px;}
.yd{bottom:628.125658px;}
.ye{bottom:642.291659px;}
.y6c{bottom:642.345000px;}
.yc{bottom:643.649158px;}
.y36{bottom:644.865000px;}
.y6b{bottom:663.045000px;}
.y35{bottom:665.565000px;}
.yb{bottom:670.860658px;}
.y6a{bottom:683.745000px;}
.y34{bottom:686.265000px;}
.ya{bottom:686.751658px;}
.y9{bottom:704.000158px;}
.y69{bottom:704.445000px;}
.y33{bottom:706.965000px;}
.y8{bottom:721.248658px;}
.y68{bottom:725.145000px;}
.y32{bottom:727.665000px;}
.y7{bottom:738.498658px;}
.y67{bottom:745.845000px;}
.y31{bottom:748.365000px;}
.y6{bottom:755.747158px;}
.y66{bottom:766.545000px;}
.y30{bottom:769.065000px;}
.y5{bottom:774.353158px;}
.y65{bottom:787.245000px;}
.y2f{bottom:789.765000px;}
.y4{bottom:802.415158px;}
.y53{bottom:806.505000px;}
.y64{bottom:807.945000px;}
.y2e{bottom:810.465000px;}
.y63{bottom:828.645000px;}
.y2d{bottom:831.165000px;}
.y3{bottom:832.986658px;}
.y62{bottom:849.390000px;}
.y2c{bottom:851.910000px;}
.y61{bottom:870.090000px;}
.y2{bottom:871.086658px;}
.y2b{bottom:872.610000px;}
.y60{bottom:890.790000px;}
.y2a{bottom:892.950000px;}
.y5f{bottom:911.490000px;}
.y29{bottom:911.850000px;}
.y1{bottom:912.923158px;}
.y5e{bottom:932.190000px;}
.y27{bottom:932.910000px;}
.y28{bottom:939.750000px;}
.y5d{bottom:952.890000px;}
.y26{bottom:954.870000px;}
.y5c{bottom:973.590000px;}
.y24{bottom:977.370000px;}
.y25{bottom:983.310000px;}
.y15{bottom:985.350518px;}
.y5b{bottom:994.290000px;}
.y23{bottom:996.450000px;}
.y14{bottom:1002.599031px;}
.y5a{bottom:1014.990000px;}
.y22{bottom:1015.350000px;}
.y21{bottom:1034.430000px;}
.y59{bottom:1035.690000px;}
.y20{bottom:1053.330000px;}
.y58{bottom:1056.390000px;}
.y13{bottom:1061.610658px;}
.y1f{bottom:1076.190000px;}
.y57{bottom:1077.090000px;}
.y56{bottom:1097.790000px;}
.y1e{bottom:1108.230000px;}
.y55{bottom:1118.490000px;}
.y1a{bottom:1139.040000px;}
.y16{bottom:1152.077142px;}
.y1c{bottom:1159.020000px;}
.y19{bottom:1160.460000px;}
.y17{bottom:1232.880000px;}
.hb{height:18.720000px;}
.h17{height:34.855313px;}
.h10{height:37.090547px;}
.h4{height:39.313477px;}
.h7{height:39.313506px;}
.h13{height:42.109102px;}
.h3{height:43.681641px;}
.h6{height:43.681673px;}
.h2{height:49.111641px;}
.h9{height:50.062500px;}
.hc{height:50.068125px;}
.h18{height:53.573906px;}
.he{height:53.755312px;}
.h5{height:56.786133px;}
.h1b{height:56.882812px;}
.hf{height:58.833281px;}
.h14{height:59.706562px;}
.h19{height:62.136000px;}
.h11{height:63.949219px;}
.ha{height:64.546875px;}
.h15{height:64.898438px;}
.h12{height:69.391055px;}
.h16{height:71.613281px;}
.hd{height:93.707578px;}
.h1a{height:301.433906px;}
.h0{height:1262.835000px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:27.900000px;}
.w7{width:29.880000px;}
.w6{width:60.300000px;}
.w0{width:892.914000px;}
.w5{width:892.979973px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:15.000000px;}
.x1{left:92.310841px;}
.x8{left:106.415987px;}
.x15{left:111.275987px;}
.xd{left:148.895987px;}
.x9{left:153.389987px;}
.x4{left:155.388891px;}
.x13{left:166.709987px;}
.x2{left:185.640842px;}
.x3{left:265.535342px;}
.x5{left:282.969986px;}
.x11{left:304.274987px;}
.xb{left:312.554973px;}
.xc{left:317.774987px;}
.x14{left:322.454987px;}
.x6{left:327.125519px;}
.x16{left:412.994987px;}
.x12{left:550.184987px;}
.xe{left:600.224987px;}
.xa{left:758.850000px;}
.xf{left:780.809973px;}
.x10{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.826667pt;}
.ls5{letter-spacing:-1.920000pt;}
.lsa{letter-spacing:-1.600000pt;}
.ls6{letter-spacing:-1.408000pt;}
.lsb{letter-spacing:-1.328000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.736000pt;}
.ls8{letter-spacing:-0.051200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.440000pt;}
.ls3{letter-spacing:7.200000pt;}
.ls4{letter-spacing:12.320000pt;}
.ls1{letter-spacing:12.752640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws5{word-spacing:-33.561600pt;}
.ws6{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.592000pt;}
.ws8{word-spacing:-13.984000pt;}
.ws0{word-spacing:-13.296000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-217.312000pt;}
._4{margin-left:-193.216000pt;}
._0{margin-left:-153.280000pt;}
._1{margin-left:-102.784000pt;}
._2{margin-left:-100.048000pt;}
._17{margin-left:-4.544000pt;}
._8{margin-left:-2.900053pt;}
._6{margin-left:-1.984000pt;}
._5{margin-left:-1.024000pt;}
._7{width:1.056000pt;}
._c{width:1.995947pt;}
._b{width:3.304107pt;}
._d{width:4.224000pt;}
._e{width:5.908053pt;}
._12{width:7.040000pt;}
._9{width:8.424107pt;}
._a{width:9.748053pt;}
._15{width:10.744320pt;}
._13{width:11.648000pt;}
._14{width:12.668160pt;}
._1b{width:13.595733pt;}
._16{width:14.795520pt;}
._f{width:16.916053pt;}
._18{width:18.432000pt;}
._10{width:27.392000pt;}
._11{width:28.934827pt;}
._1a{width:36.313173pt;}
._19{width:37.818880pt;}
.fsd{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:48.000036pt;}
.fsc{font-size:53.120000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:53.333373pt;}
.fs7{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fsa{font-size:74.880000pt;}
.fs8{font-size:101.120000pt;}
.fse{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.200000pt;}
.y54{bottom:3.680000pt;}
.y18{bottom:13.333333pt;}
.y1b{bottom:79.072000pt;}
.y52{bottom:116.192000pt;}
.y51{bottom:131.552000pt;}
.y50{bottom:146.906667pt;}
.y4f{bottom:162.106667pt;}
.y82{bottom:166.266667pt;}
.y4e{bottom:177.466667pt;}
.y4d{bottom:182.106667pt;}
.y81{bottom:184.666667pt;}
.y4c{bottom:192.826667pt;}
.y80{bottom:203.066667pt;}
.y4b{bottom:208.186667pt;}
.y7f{bottom:221.466667pt;}
.y4a{bottom:223.546667pt;}
.y49{bottom:238.906667pt;}
.y7e{bottom:239.866667pt;}
.y48{bottom:243.546667pt;}
.y47{bottom:255.586667pt;}
.y7d{bottom:258.306667pt;}
.y7c{bottom:276.706667pt;}
.y46{bottom:278.786667pt;}
.y7b{bottom:295.106667pt;}
.y45{bottom:297.186667pt;}
.y7a{bottom:313.506667pt;}
.y44{bottom:315.586667pt;}
.y79{bottom:331.906667pt;}
.y43{bottom:333.986667pt;}
.y78{bottom:350.306667pt;}
.y42{bottom:352.386667pt;}
.y77{bottom:368.706667pt;}
.y41{bottom:370.786667pt;}
.y76{bottom:387.106667pt;}
.y40{bottom:389.186667pt;}
.y75{bottom:405.506667pt;}
.y3f{bottom:407.586667pt;}
.y74{bottom:423.906667pt;}
.y3e{bottom:425.986667pt;}
.y73{bottom:442.306667pt;}
.y3d{bottom:444.386667pt;}
.y72{bottom:460.706667pt;}
.y3c{bottom:462.786667pt;}
.y71{bottom:479.106667pt;}
.y3b{bottom:481.186667pt;}
.y70{bottom:497.506667pt;}
.y3a{bottom:499.586667pt;}
.y12{bottom:509.584585pt;}
.y6f{bottom:515.933333pt;}
.y39{bottom:518.013333pt;}
.y11{bottom:524.929919pt;}
.y6e{bottom:534.333333pt;}
.y38{bottom:536.413333pt;}
.y10{bottom:540.261919pt;}
.y6d{bottom:552.573333pt;}
.y37{bottom:554.813333pt;}
.yf{bottom:555.593919pt;}
.yd{bottom:558.333919pt;}
.ye{bottom:570.925919pt;}
.y6c{bottom:570.973333pt;}
.yc{bottom:572.132585pt;}
.y36{bottom:573.213333pt;}
.y6b{bottom:589.373333pt;}
.y35{bottom:591.613333pt;}
.yb{bottom:596.320585pt;}
.y6a{bottom:607.773333pt;}
.y34{bottom:610.013333pt;}
.ya{bottom:610.445919pt;}
.y9{bottom:625.777919pt;}
.y69{bottom:626.173333pt;}
.y33{bottom:628.413333pt;}
.y8{bottom:641.109919pt;}
.y68{bottom:644.573333pt;}
.y32{bottom:646.813333pt;}
.y7{bottom:656.443252pt;}
.y67{bottom:662.973333pt;}
.y31{bottom:665.213333pt;}
.y6{bottom:671.775252pt;}
.y66{bottom:681.373333pt;}
.y30{bottom:683.613333pt;}
.y5{bottom:688.313919pt;}
.y65{bottom:699.773333pt;}
.y2f{bottom:702.013333pt;}
.y4{bottom:713.257919pt;}
.y53{bottom:716.893333pt;}
.y64{bottom:718.173333pt;}
.y2e{bottom:720.413333pt;}
.y63{bottom:736.573333pt;}
.y2d{bottom:738.813333pt;}
.y3{bottom:740.432585pt;}
.y62{bottom:755.013333pt;}
.y2c{bottom:757.253333pt;}
.y61{bottom:773.413333pt;}
.y2{bottom:774.299252pt;}
.y2b{bottom:775.653333pt;}
.y60{bottom:791.813333pt;}
.y2a{bottom:793.733333pt;}
.y5f{bottom:810.213333pt;}
.y29{bottom:810.533333pt;}
.y1{bottom:811.487252pt;}
.y5e{bottom:828.613333pt;}
.y27{bottom:829.253333pt;}
.y28{bottom:835.333333pt;}
.y5d{bottom:847.013333pt;}
.y26{bottom:848.773333pt;}
.y5c{bottom:865.413333pt;}
.y24{bottom:868.773333pt;}
.y25{bottom:874.053333pt;}
.y15{bottom:875.867127pt;}
.y5b{bottom:883.813333pt;}
.y23{bottom:885.733333pt;}
.y14{bottom:891.199139pt;}
.y5a{bottom:902.213333pt;}
.y22{bottom:902.533333pt;}
.y21{bottom:919.493333pt;}
.y59{bottom:920.613333pt;}
.y20{bottom:936.293333pt;}
.y58{bottom:939.013333pt;}
.y13{bottom:943.653919pt;}
.y1f{bottom:956.613333pt;}
.y57{bottom:957.413333pt;}
.y56{bottom:975.813333pt;}
.y1e{bottom:985.093333pt;}
.y55{bottom:994.213333pt;}
.y1a{bottom:1012.480000pt;}
.y16{bottom:1024.068571pt;}
.y1c{bottom:1030.240000pt;}
.y19{bottom:1031.520000pt;}
.y17{bottom:1095.893333pt;}
.hb{height:16.640000pt;}
.h17{height:30.982500pt;}
.h10{height:32.969375pt;}
.h4{height:34.945312pt;}
.h7{height:34.945339pt;}
.h13{height:37.430312pt;}
.h3{height:38.828125pt;}
.h6{height:38.828154pt;}
.h2{height:43.654792pt;}
.h9{height:44.500000pt;}
.hc{height:44.505000pt;}
.h18{height:47.621250pt;}
.he{height:47.782500pt;}
.h5{height:50.476562pt;}
.h1b{height:50.562500pt;}
.hf{height:52.296250pt;}
.h14{height:53.072500pt;}
.h19{height:55.232000pt;}
.h11{height:56.843750pt;}
.ha{height:57.375000pt;}
.h15{height:57.687500pt;}
.h12{height:61.680937pt;}
.h16{height:63.656250pt;}
.hd{height:83.295625pt;}
.h1a{height:267.941250pt;}
.h0{height:1122.520000pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:24.800000pt;}
.w7{width:26.560000pt;}
.w6{width:53.600000pt;}
.w0{width:793.701333pt;}
.w5{width:793.759976pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:13.333333pt;}
.x1{left:82.054081pt;}
.x8{left:94.591988pt;}
.x15{left:98.911988pt;}
.xd{left:132.351988pt;}
.x9{left:136.346655pt;}
.x4{left:138.123459pt;}
.x13{left:148.186655pt;}
.x2{left:165.014081pt;}
.x3{left:236.031415pt;}
.x5{left:251.528877pt;}
.x11{left:270.466655pt;}
.xb{left:277.826643pt;}
.xc{left:282.466655pt;}
.x14{left:286.626655pt;}
.x6{left:290.778239pt;}
.x16{left:367.106655pt;}
.x12{left:489.053322pt;}
.xe{left:533.533322pt;}
.xa{left:674.533333pt;}
.xf{left:694.053310pt;}
.x10{left:699.333322pt;}
}




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