
    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_4fcdcc390e7a762f5d803d79.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_2c983aaf4ff7691dc24e7bca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5020da4851e67fcf10933de6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_2f91f67ca77fff57340058ca.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_174313c20cf78fb4c11fda40.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_0f0958e2432f4f508d634805.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_94d32be04c79ed3b9439ba3b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_9c2319ef5dfb622614534d5c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_6315fad150a4e55e8b754e8b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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_f1e4cb341532c39c9cff8014.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_855b9df66993d9c881b63cb7.woff')format("woff");}.fff{font-family:fff;line-height:1.372070;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_dfdae3507064e7395be0e97c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.940430;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_1e98329af949b2b9daa2501b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b634cf810ebd9f00f4ab51fe.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_f29ac4c445f39bba7c1c6a09.woff')format("woff");}.ff14{font-family:ff14;line-height:1.402354;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;}
.ls17{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.190200px;}
.lsc{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.114000px;}
.lse{letter-spacing:-0.025920px;}
.lsd{letter-spacing:-0.017280px;}
.lsf{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.008640px;}
.ls12{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.025920px;}
.ls7{letter-spacing:0.034560px;}
.ls2{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.078000px;}
.ls1{letter-spacing:0.187200px;}
.ls1a{letter-spacing:0.230400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.702000px;}
.ls20{letter-spacing:0.714000px;}
.ls23{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.744000px;}
.ls4{letter-spacing:1.440000px;}
.ls26{letter-spacing:3.600000px;}
.ls14{letter-spacing:5.040000px;}
.ls6{letter-spacing:7.200000px;}
.ls1c{letter-spacing:8.640000px;}
.ls25{letter-spacing:10.080000px;}
.ls21{letter-spacing:12.960000px;}
.ls13{letter-spacing:15.120000px;}
.ls15{letter-spacing:22.320000px;}
.ls19{letter-spacing:27.360000px;}
.ls29{letter-spacing:28.038720px;}
.ls28{letter-spacing:28.062720px;}
.ls22{letter-spacing:29.496000px;}
.ls11{letter-spacing:30.960000px;}
.ls1d{letter-spacing:36.720000px;}
.ls1b{letter-spacing:50.358720px;}
.ls1e{letter-spacing:59.040000px;}
.ls1f{letter-spacing:59.760000px;}
.ls27{letter-spacing:79.200000px;}
.ls24{letter-spacing:168.480000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-24.062880px;}
.ws10{word-spacing:-20.142000px;}
.wsa{word-spacing:-19.474560px;}
.ws6{word-spacing:-19.465920px;}
.wsf{word-spacing:-19.457280px;}
.wsb{word-spacing:-19.448640px;}
.ws8{word-spacing:-19.440000px;}
.wsc{word-spacing:-19.431360px;}
.ws9{word-spacing:-19.422720px;}
.ws7{word-spacing:-19.414080px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wsd{word-spacing:0.000000px;}
._58{margin-left:-10.817280px;}
._28{margin-left:-2.406240px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.457120px;}
._30{width:3.472560px;}
._19{width:4.665600px;}
._3{width:5.676480px;}
._4{width:7.250880px;}
._6{width:8.553600px;}
._e{width:10.031040px;}
._24{width:11.508480px;}
._37{width:12.519360px;}
._7{width:13.608000px;}
._8{width:14.941440px;}
._9{width:16.556640px;}
._13{width:17.962560px;}
._5{width:20.884320px;}
._22{width:22.194720px;}
._1e{width:23.483520px;}
._36{width:24.805440px;}
._c{width:26.049600px;}
._d{width:27.182880px;}
._1d{width:28.382400px;}
._3b{width:29.782080px;}
._12{width:30.870720px;}
._10{width:32.503680px;}
._20{width:34.336800px;}
._2f{width:35.947440px;}
._39{width:37.458000px;}
._1f{width:38.724480px;}
._35{width:39.735360px;}
._11{width:40.901760px;}
._43{width:42.068160px;}
._23{width:43.079040px;}
._25{width:44.634240px;}
._4a{width:46.033920px;}
._3f{width:47.511360px;}
._f{width:48.911040px;}
._14{width:49.966560px;}
._2c{width:51.839280px;}
._3c{width:53.193600px;}
._34{width:55.520640px;}
._b{width:56.609280px;}
._31{width:58.553280px;}
._2d{width:59.641920px;}
._3d{width:61.585920px;}
._49{width:62.830080px;}
._33{width:63.996480px;}
._29{width:65.525040px;}
._2a{width:66.693840px;}
._38{width:67.806720px;}
._16{width:69.517440px;}
._17{width:70.728480px;}
._51{width:71.850240px;}
._40{width:74.027520px;}
._18{width:75.349440px;}
._26{width:76.774080px;}
._27{width:77.936640px;}
._4d{width:79.167360px;}
._42{width:80.481600px;}
._32{width:82.036800px;}
._3e{width:84.214080px;}
._15{width:87.324480px;}
._21{width:88.646400px;}
._2b{width:89.941680px;}
._50{width:91.368000px;}
._45{width:92.845440px;}
._2e{width:95.695920px;}
._48{width:97.044480px;}
._56{width:100.621440px;}
._59{width:102.254400px;}
._4c{width:104.042880px;}
._55{width:105.053760px;}
._41{width:110.885760px;}
._4f{width:112.674240px;}
._3a{width:114.540480px;}
._52{width:125.271360px;}
._47{width:139.660800px;}
._46{width:140.975040px;}
._54{width:146.111040px;}
._1c{width:152.893440px;}
._a{width:155.442240px;}
._57{width:158.163840px;}
._4e{width:161.040960px;}
._4b{width:168.585120px;}
._44{width:173.076480px;}
._1a{width:189.617520px;}
._1b{width:197.647200px;}
._53{width:229.314240px;}
._5a{width:847.596000px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y17{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y14{bottom:26.640000px;}
.y5{bottom:33.120000px;}
.y13{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y12{bottom:70.560000px;}
.y38{bottom:75.240000px;}
.y76{bottom:113.760000px;}
.y7b{bottom:117.360000px;}
.y5d{bottom:117.900000px;}
.y34{bottom:141.120000px;}
.y75{bottom:142.920000px;}
.y7a{bottom:146.520000px;}
.y5c{bottom:147.060000px;}
.y33{bottom:170.280000px;}
.y74{bottom:172.080000px;}
.y79{bottom:175.680000px;}
.y5b{bottom:176.220000px;}
.y32{bottom:199.440000px;}
.y73{bottom:201.240000px;}
.y5a{bottom:205.380000px;}
.y31{bottom:228.630000px;}
.y72{bottom:230.430000px;}
.y59{bottom:234.570000px;}
.y30{bottom:257.790000px;}
.y71{bottom:259.590000px;}
.y58{bottom:263.730000px;}
.y2f{bottom:286.950000px;}
.y70{bottom:288.750000px;}
.y57{bottom:292.890000px;}
.y2e{bottom:316.110000px;}
.y6f{bottom:317.910000px;}
.y56{bottom:322.050000px;}
.y2d{bottom:345.090000px;}
.y6e{bottom:347.070000px;}
.y55{bottom:351.210000px;}
.y2c{bottom:374.250000px;}
.y6d{bottom:376.230000px;}
.y54{bottom:380.370000px;}
.y2b{bottom:403.410000px;}
.y6c{bottom:405.210000px;}
.y53{bottom:409.530000px;}
.y2a{bottom:432.570000px;}
.y6b{bottom:434.370000px;}
.y52{bottom:438.690000px;}
.y29{bottom:461.235000px;}
.y35{bottom:461.775000px;}
.y6a{bottom:463.575000px;}
.y51{bottom:467.895000px;}
.y28{bottom:490.935000px;}
.y69{bottom:492.735000px;}
.y50{bottom:497.055000px;}
.y27{bottom:518.835000px;}
.y68{bottom:521.895000px;}
.y60{bottom:525.675000px;}
.y4f{bottom:526.215000px;}
.y26{bottom:547.095000px;}
.y67{bottom:551.055000px;}
.y5f{bottom:554.835000px;}
.y4e{bottom:555.375000px;}
.y25{bottom:572.835000px;}
.y66{bottom:580.215000px;}
.y4d{bottom:584.355000px;}
.y24{bottom:598.575000px;}
.y65{bottom:609.375000px;}
.y4c{bottom:613.515000px;}
.y23{bottom:624.315000px;}
.y64{bottom:638.535000px;}
.y4b{bottom:642.675000px;}
.y22{bottom:650.235000px;}
.y63{bottom:667.695000px;}
.y4a{bottom:671.835000px;}
.y21{bottom:676.005000px;}
.y62{bottom:698.145000px;}
.y78{bottom:700.485000px;}
.y49{bottom:701.025000px;}
.y20{bottom:701.745000px;}
.y1f{bottom:727.665000px;}
.y61{bottom:728.745000px;}
.y77{bottom:729.645000px;}
.y48{bottom:730.185000px;}
.y1e{bottom:753.405000px;}
.y47{bottom:759.345000px;}
.y1d{bottom:779.145000px;}
.y46{bottom:788.505000px;}
.y1c{bottom:804.885000px;}
.y45{bottom:817.665000px;}
.y7c{bottom:820.005000px;}
.y1b{bottom:830.805000px;}
.y44{bottom:846.825000px;}
.y1a{bottom:856.545000px;}
.y43{bottom:875.985000px;}
.y19{bottom:882.285000px;}
.y42{bottom:905.145000px;}
.y18{bottom:907.485000px;}
.y16{bottom:925.710000px;}
.y11{bottom:932.910000px;}
.y41{bottom:934.350000px;}
.y15{bottom:937.050043px;}
.y40{bottom:963.510000px;}
.y3f{bottom:992.670000px;}
.y3e{bottom:1021.830000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.y3d{bottom:1050.990000px;}
.yb{bottom:1076.550000px;}
.y3c{bottom:1080.150000px;}
.y9{bottom:1081.950000px;}
.y2{bottom:1106.250000px;}
.y3b{bottom:1109.130000px;}
.y7{bottom:1128.570000px;}
.y3a{bottom:1138.290000px;}
.y4{bottom:1156.860000px;}
.y5e{bottom:1166.940000px;}
.y39{bottom:1167.480000px;}
.y37{bottom:1187.280000px;}
.y36{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1a{height:30.480469px;}
.he{height:41.025000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1b{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h1d{height:64.978594px;}
.h14{height:67.803750px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h18{height:76.279219px;}
.h4{height:76.317188px;}
.h19{height:77.570156px;}
.hf{height:78.367500px;}
.h1c{height:79.925027px;}
.h12{height:96.285000px;}
.h3{height:103.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1b{left:123.516000px;}
.x13{left:131.743500px;}
.x1e{left:150.510000px;}
.x17{left:152.310000px;}
.x18{left:162.030000px;}
.x4{left:168.885000px;}
.x6{left:209.010000px;}
.x14{left:223.048500px;}
.x15{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x19{left:473.505000px;}
.x1c{left:488.985000px;}
.x1d{left:515.985000px;}
.x1a{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.169067pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.101333pt;}
.lse{letter-spacing:-0.023040pt;}
.lsd{letter-spacing:-0.015360pt;}
.lsf{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.007680pt;}
.ls12{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.023040pt;}
.ls7{letter-spacing:0.030720pt;}
.ls2{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.069333pt;}
.ls1{letter-spacing:0.166400pt;}
.ls1a{letter-spacing:0.204800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.624000pt;}
.ls20{letter-spacing:0.634667pt;}
.ls23{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.661333pt;}
.ls4{letter-spacing:1.280000pt;}
.ls26{letter-spacing:3.200000pt;}
.ls14{letter-spacing:4.480000pt;}
.ls6{letter-spacing:6.400000pt;}
.ls1c{letter-spacing:7.680000pt;}
.ls25{letter-spacing:8.960000pt;}
.ls21{letter-spacing:11.520000pt;}
.ls13{letter-spacing:13.440000pt;}
.ls15{letter-spacing:19.840000pt;}
.ls19{letter-spacing:24.320000pt;}
.ls29{letter-spacing:24.923307pt;}
.ls28{letter-spacing:24.944640pt;}
.ls22{letter-spacing:26.218667pt;}
.ls11{letter-spacing:27.520000pt;}
.ls1d{letter-spacing:32.640000pt;}
.ls1b{letter-spacing:44.763307pt;}
.ls1e{letter-spacing:52.480000pt;}
.ls1f{letter-spacing:53.120000pt;}
.ls27{letter-spacing:70.400000pt;}
.ls24{letter-spacing:149.760000pt;}
.wse{word-spacing:-21.389227pt;}
.ws10{word-spacing:-17.904000pt;}
.wsa{word-spacing:-17.310720pt;}
.ws6{word-spacing:-17.303040pt;}
.wsf{word-spacing:-17.295360pt;}
.wsb{word-spacing:-17.287680pt;}
.ws8{word-spacing:-17.280000pt;}
.wsc{word-spacing:-17.272320pt;}
.ws9{word-spacing:-17.264640pt;}
.ws7{word-spacing:-17.256960pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsd{word-spacing:0.000000pt;}
._58{margin-left:-9.615360pt;}
._28{margin-left:-2.138880pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.184107pt;}
._30{width:3.086720pt;}
._19{width:4.147200pt;}
._3{width:5.045760pt;}
._4{width:6.445227pt;}
._6{width:7.603200pt;}
._e{width:8.916480pt;}
._24{width:10.229760pt;}
._37{width:11.128320pt;}
._7{width:12.096000pt;}
._8{width:13.281280pt;}
._9{width:14.717013pt;}
._13{width:15.966720pt;}
._5{width:18.563840pt;}
._22{width:19.728640pt;}
._1e{width:20.874240pt;}
._36{width:22.049280pt;}
._c{width:23.155200pt;}
._d{width:24.162560pt;}
._1d{width:25.228800pt;}
._3b{width:26.472960pt;}
._12{width:27.440640pt;}
._10{width:28.892160pt;}
._20{width:30.521600pt;}
._2f{width:31.953280pt;}
._39{width:33.296000pt;}
._1f{width:34.421760pt;}
._35{width:35.320320pt;}
._11{width:36.357120pt;}
._43{width:37.393920pt;}
._23{width:38.292480pt;}
._25{width:39.674880pt;}
._4a{width:40.919040pt;}
._3f{width:42.232320pt;}
._f{width:43.476480pt;}
._14{width:44.414720pt;}
._2c{width:46.079360pt;}
._3c{width:47.283200pt;}
._34{width:49.351680pt;}
._b{width:50.319360pt;}
._31{width:52.047360pt;}
._2d{width:53.015040pt;}
._3d{width:54.743040pt;}
._49{width:55.848960pt;}
._33{width:56.885760pt;}
._29{width:58.244480pt;}
._2a{width:59.283413pt;}
._38{width:60.272640pt;}
._16{width:61.793280pt;}
._17{width:62.869760pt;}
._51{width:63.866880pt;}
._40{width:65.802240pt;}
._18{width:66.977280pt;}
._26{width:68.243627pt;}
._27{width:69.277013pt;}
._4d{width:70.370987pt;}
._42{width:71.539200pt;}
._32{width:72.921600pt;}
._3e{width:74.856960pt;}
._15{width:77.621760pt;}
._21{width:78.796800pt;}
._2b{width:79.948160pt;}
._50{width:81.216000pt;}
._45{width:82.529280pt;}
._2e{width:85.063040pt;}
._48{width:86.261760pt;}
._56{width:89.441280pt;}
._59{width:90.892800pt;}
._4c{width:92.482560pt;}
._55{width:93.381120pt;}
._41{width:98.565120pt;}
._4f{width:100.154880pt;}
._3a{width:101.813760pt;}
._52{width:111.352320pt;}
._47{width:124.142933pt;}
._46{width:125.311147pt;}
._54{width:129.876480pt;}
._1c{width:135.905280pt;}
._a{width:138.170880pt;}
._57{width:140.590080pt;}
._4e{width:143.147520pt;}
._4b{width:149.853440pt;}
._44{width:153.845760pt;}
._1a{width:168.548907pt;}
._1b{width:175.686400pt;}
._53{width:203.834880pt;}
._5a{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y17{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y14{bottom:23.680000pt;}
.y5{bottom:29.440000pt;}
.y13{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y12{bottom:62.720000pt;}
.y38{bottom:66.880000pt;}
.y76{bottom:101.120000pt;}
.y7b{bottom:104.320000pt;}
.y5d{bottom:104.800000pt;}
.y34{bottom:125.440000pt;}
.y75{bottom:127.040000pt;}
.y7a{bottom:130.240000pt;}
.y5c{bottom:130.720000pt;}
.y33{bottom:151.360000pt;}
.y74{bottom:152.960000pt;}
.y79{bottom:156.160000pt;}
.y5b{bottom:156.640000pt;}
.y32{bottom:177.280000pt;}
.y73{bottom:178.880000pt;}
.y5a{bottom:182.560000pt;}
.y31{bottom:203.226667pt;}
.y72{bottom:204.826667pt;}
.y59{bottom:208.506667pt;}
.y30{bottom:229.146667pt;}
.y71{bottom:230.746667pt;}
.y58{bottom:234.426667pt;}
.y2f{bottom:255.066667pt;}
.y70{bottom:256.666667pt;}
.y57{bottom:260.346667pt;}
.y2e{bottom:280.986667pt;}
.y6f{bottom:282.586667pt;}
.y56{bottom:286.266667pt;}
.y2d{bottom:306.746667pt;}
.y6e{bottom:308.506667pt;}
.y55{bottom:312.186667pt;}
.y2c{bottom:332.666667pt;}
.y6d{bottom:334.426667pt;}
.y54{bottom:338.106667pt;}
.y2b{bottom:358.586667pt;}
.y6c{bottom:360.186667pt;}
.y53{bottom:364.026667pt;}
.y2a{bottom:384.506667pt;}
.y6b{bottom:386.106667pt;}
.y52{bottom:389.946667pt;}
.y29{bottom:409.986667pt;}
.y35{bottom:410.466667pt;}
.y6a{bottom:412.066667pt;}
.y51{bottom:415.906667pt;}
.y28{bottom:436.386667pt;}
.y69{bottom:437.986667pt;}
.y50{bottom:441.826667pt;}
.y27{bottom:461.186667pt;}
.y68{bottom:463.906667pt;}
.y60{bottom:467.266667pt;}
.y4f{bottom:467.746667pt;}
.y26{bottom:486.306667pt;}
.y67{bottom:489.826667pt;}
.y5f{bottom:493.186667pt;}
.y4e{bottom:493.666667pt;}
.y25{bottom:509.186667pt;}
.y66{bottom:515.746667pt;}
.y4d{bottom:519.426667pt;}
.y24{bottom:532.066667pt;}
.y65{bottom:541.666667pt;}
.y4c{bottom:545.346667pt;}
.y23{bottom:554.946667pt;}
.y64{bottom:567.586667pt;}
.y4b{bottom:571.266667pt;}
.y22{bottom:577.986667pt;}
.y63{bottom:593.506667pt;}
.y4a{bottom:597.186667pt;}
.y21{bottom:600.893333pt;}
.y62{bottom:620.573333pt;}
.y78{bottom:622.653333pt;}
.y49{bottom:623.133333pt;}
.y20{bottom:623.773333pt;}
.y1f{bottom:646.813333pt;}
.y61{bottom:647.773333pt;}
.y77{bottom:648.573333pt;}
.y48{bottom:649.053333pt;}
.y1e{bottom:669.693333pt;}
.y47{bottom:674.973333pt;}
.y1d{bottom:692.573333pt;}
.y46{bottom:700.893333pt;}
.y1c{bottom:715.453333pt;}
.y45{bottom:726.813333pt;}
.y7c{bottom:728.893333pt;}
.y1b{bottom:738.493333pt;}
.y44{bottom:752.733333pt;}
.y1a{bottom:761.373333pt;}
.y43{bottom:778.653333pt;}
.y19{bottom:784.253333pt;}
.y42{bottom:804.573333pt;}
.y18{bottom:806.653333pt;}
.y16{bottom:822.853333pt;}
.y11{bottom:829.253333pt;}
.y41{bottom:830.533333pt;}
.y15{bottom:832.933372pt;}
.y40{bottom:856.453333pt;}
.y3f{bottom:882.373333pt;}
.y3e{bottom:908.293333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.y3d{bottom:934.213333pt;}
.yb{bottom:956.933333pt;}
.y3c{bottom:960.133333pt;}
.y9{bottom:961.733333pt;}
.y2{bottom:983.333333pt;}
.y3b{bottom:985.893333pt;}
.y7{bottom:1003.173333pt;}
.y3a{bottom:1011.813333pt;}
.y4{bottom:1028.320000pt;}
.y5e{bottom:1037.280000pt;}
.y39{bottom:1037.760000pt;}
.y37{bottom:1055.360000pt;}
.y36{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1a{height:27.093750pt;}
.he{height:36.466667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1b{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h1d{height:57.758750pt;}
.h14{height:60.270000pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h18{height:67.803750pt;}
.h4{height:67.837500pt;}
.h19{height:68.951250pt;}
.hf{height:69.660000pt;}
.h1c{height:71.044468pt;}
.h12{height:85.586667pt;}
.h3{height:92.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1b{left:109.792000pt;}
.x13{left:117.105333pt;}
.x1e{left:133.786667pt;}
.x17{left:135.386667pt;}
.x18{left:144.026667pt;}
.x4{left:150.120000pt;}
.x6{left:185.786667pt;}
.x14{left:198.265333pt;}
.x15{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x19{left:420.893333pt;}
.x1c{left:434.653333pt;}
.x1d{left:458.653333pt;}
.x1a{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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