
    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_129c225ad8e182c0ca3906d6.woff2')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_3cee04bfb2059de8dc9f2717.woff2')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_fae28802d9f76497c754c59f.woff2')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_292ddd8ac34d9296a6092490.woff2')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_8101204e23b63d244dcc80c7.woff2')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_b238afdbeefa1143f06458ef.woff2')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_290baebf5a710156986124b1.woff2')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_e54d4eb6e164470bb1e2644e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ab07939e86e0c8e9d65868b4.woff2')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_7a4e9e363c4cd08c32f3f45e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_71fc47d6b2b7901e13ce4c5f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4f1a34b88bb16bbda78ace0b.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_95564d663964f1307d178867.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_441dfbd77694698d23c80115.woff2')format("woff");}.fff{font-family:fff;line-height:0.884766;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_46020ea5b7eddf0eeded1fa9.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ebd3a4466a7fe8be578120ca.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.435059;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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;}
.lsc{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.190200px;}
.ls7{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.114000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.078000px;}
.lse{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.720000px;}
.ls13{letter-spacing:17.424000px;}
.ls8{letter-spacing:33.960000px;}
.ls9{letter-spacing:33.984000px;}
.ls11{letter-spacing:53.400000px;}
.ls12{letter-spacing:53.424000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-72.000000px;}
.wsb{word-spacing:-24.062880px;}
.ws8{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.wsd{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.342600px;}
.ws9{word-spacing:-18.000000px;}
.wse{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.912000px;}
.ws7{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-2.269440px;}
._0{margin-left:-1.197360px;}
._2{width:1.210320px;}
._7{width:3.168000px;}
._a{width:4.968000px;}
._4c{width:6.048000px;}
._3{width:7.056000px;}
._4{width:8.064000px;}
._10{width:9.233040px;}
._8{width:10.440000px;}
._9{width:11.749680px;}
._c{width:13.680000px;}
._5{width:14.808000px;}
._6{width:15.885360px;}
._17{width:16.992000px;}
._61{width:19.008000px;}
._b{width:20.088000px;}
._4e{width:21.096000px;}
._16{width:22.227120px;}
._1f{width:23.544000px;}
._20{width:24.624000px;}
._d{width:25.680000px;}
._25{width:26.749680px;}
._26{width:28.008000px;}
._3b{width:29.637360px;}
._f{width:30.744000px;}
._35{width:32.328000px;}
._64{width:33.336000px;}
._e{width:34.344000px;}
._2c{width:35.408880px;}
._12{width:36.674640px;}
._11{width:37.701360px;}
._1d{width:38.808000px;}
._1e{width:40.032000px;}
._3a{width:41.328000px;}
._1a{width:42.408000px;}
._1b{width:43.560000px;}
._15{width:45.288000px;}
._45{width:46.584000px;}
._3d{width:47.808000px;}
._13{width:49.752000px;}
._14{width:51.264000px;}
._21{width:52.821360px;}
._46{width:53.856000px;}
._36{width:55.440000px;}
._37{width:56.952000px;}
._32{width:58.536000px;}
._5e{width:59.989680px;}
._29{width:61.056000px;}
._18{width:62.352000px;}
._19{width:63.360000px;}
._28{width:64.368000px;}
._41{width:65.664000px;}
._60{width:66.672000px;}
._4f{width:68.122800px;}
._44{width:69.192000px;}
._2d{width:70.272000px;}
._2e{width:71.339040px;}
._5d{width:72.792000px;}
._47{width:74.880000px;}
._38{width:76.992480px;}
._2b{width:78.218640px;}
._2a{width:79.245360px;}
._67{width:80.315040px;}
._48{width:81.432000px;}
._39{width:82.584000px;}
._52{width:84.096000px;}
._2f{width:85.680000px;}
._5f{width:87.012000px;}
._30{width:88.416000px;}
._31{width:89.907120px;}
._56{width:92.736000px;}
._1c{width:93.744000px;}
._55{width:95.184000px;}
._58{width:96.768000px;}
._63{width:98.051040px;}
._4a{width:99.144000px;}
._49{width:100.152000px;}
._65{width:102.600000px;}
._3f{width:103.608000px;}
._40{width:105.048000px;}
._54{width:106.344000px;}
._51{width:108.000000px;}
._33{width:109.656000px;}
._34{width:110.787120px;}
._50{width:112.032000px;}
._69{width:113.472000px;}
._27{width:114.552000px;}
._3c{width:115.659360px;}
._42{width:116.928000px;}
._53{width:120.357360px;}
._4d{width:122.112000px;}
._43{width:123.192000px;}
._62{width:127.944000px;}
._3e{width:130.608000px;}
._68{width:131.701680px;}
._59{width:142.344000px;}
._5a{width:143.987040px;}
._57{width:149.472000px;}
._5b{width:151.416000px;}
._5c{width:152.760000px;}
._4b{width:163.008000px;}
._66{width:180.792000px;}
._22{width:189.617520px;}
._24{width:191.848080px;}
._23{width:197.647200px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:113.840857px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y12{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y9{bottom:6.480000px;}
.yb{bottom:6.660000px;}
.yc{bottom:7.380000px;}
.y8{bottom:8.460000px;}
.y6{bottom:8.640000px;}
.y10{bottom:12.600000px;}
.y5{bottom:33.120000px;}
.y16{bottom:54.000000px;}
.y1{bottom:58.680000px;}
.y15{bottom:77.940000px;}
.y3f{bottom:82.440000px;}
.y39{bottom:91.440000px;}
.y14{bottom:104.400000px;}
.y38{bottom:118.260000px;}
.y66{bottom:120.600000px;}
.y37{bottom:145.260000px;}
.y79{bottom:147.060000px;}
.y65{bottom:147.420000px;}
.y36{bottom:172.080000px;}
.y6f{bottom:174.060000px;}
.y64{bottom:174.420000px;}
.y35{bottom:199.080000px;}
.y82{bottom:200.880000px;}
.y63{bottom:201.240000px;}
.y34{bottom:225.930000px;}
.y81{bottom:227.910000px;}
.y62{bottom:228.270000px;}
.y33{bottom:252.930000px;}
.y80{bottom:254.730000px;}
.y61{bottom:255.090000px;}
.y32{bottom:279.750000px;}
.y60{bottom:282.090000px;}
.y31{bottom:306.750000px;}
.y5f{bottom:308.910000px;}
.y30{bottom:333.570000px;}
.y83{bottom:335.550000px;}
.y5e{bottom:335.910000px;}
.y2f{bottom:360.570000px;}
.y72{bottom:362.370000px;}
.y5d{bottom:362.730000px;}
.y2e{bottom:387.390000px;}
.y6e{bottom:389.370000px;}
.y5c{bottom:389.730000px;}
.y2d{bottom:414.390000px;}
.y6d{bottom:416.190000px;}
.y5b{bottom:416.550000px;}
.y2c{bottom:440.895000px;}
.y3a{bottom:441.255000px;}
.y5a{bottom:443.595000px;}
.y2b{bottom:468.255000px;}
.y7f{bottom:470.055000px;}
.y59{bottom:470.415000px;}
.y2a{bottom:493.815000px;}
.y7e{bottom:497.055000px;}
.y58{bottom:497.415000px;}
.y29{bottom:517.755000px;}
.y57{bottom:524.235000px;}
.y28{bottom:541.515000px;}
.y56{bottom:550.875000px;}
.y6c{bottom:551.235000px;}
.y27{bottom:570.135000px;}
.y55{bottom:577.695000px;}
.y6b{bottom:578.055000px;}
.y26{bottom:593.895000px;}
.y54{bottom:605.055000px;}
.y25{bottom:617.835000px;}
.y53{bottom:631.875000px;}
.y24{bottom:641.595000px;}
.y6a{bottom:658.515000px;}
.y52{bottom:658.875000px;}
.y23{bottom:665.355000px;}
.y7c{bottom:685.365000px;}
.y51{bottom:685.725000px;}
.y22{bottom:689.145000px;}
.y50{bottom:712.725000px;}
.y21{bottom:712.905000px;}
.y20{bottom:736.845000px;}
.y4f{bottom:739.545000px;}
.y1f{bottom:760.605000px;}
.y4e{bottom:766.545000px;}
.y1e{bottom:784.365000px;}
.y71{bottom:793.005000px;}
.y4d{bottom:793.365000px;}
.y1d{bottom:808.125000px;}
.y76{bottom:820.005000px;}
.y4c{bottom:820.365000px;}
.y1c{bottom:832.065000px;}
.y75{bottom:846.825000px;}
.y4b{bottom:847.185000px;}
.y1b{bottom:855.825000px;}
.y69{bottom:873.825000px;}
.y4a{bottom:874.185000px;}
.y1a{bottom:879.225000px;}
.y68{bottom:900.645000px;}
.y49{bottom:901.005000px;}
.y19{bottom:903.165000px;}
.y17{bottom:911.490000px;}
.y13{bottom:918.690000px;}
.y3c{bottom:922.979927px;}
.y67{bottom:927.690000px;}
.y48{bottom:928.050000px;}
.y3b{bottom:951.599927px;}
.y74{bottom:954.510000px;}
.y47{bottom:954.870000px;}
.y73{bottom:981.510000px;}
.y46{bottom:981.870000px;}
.y70{bottom:1008.330000px;}
.y45{bottom:1008.690000px;}
.y7d{bottom:1035.150000px;}
.y44{bottom:1035.510000px;}
.y11{bottom:1048.830000px;}
.yf{bottom:1055.310000px;}
.y78{bottom:1062.150000px;}
.y43{bottom:1062.510000px;}
.y77{bottom:1088.970000px;}
.y42{bottom:1089.330000px;}
.yd{bottom:1096.350000px;}
.ya{bottom:1101.750000px;}
.y7b{bottom:1115.970000px;}
.y41{bottom:1116.330000px;}
.y2{bottom:1126.050000px;}
.y7a{bottom:1142.790000px;}
.y40{bottom:1143.150000px;}
.y7{bottom:1148.220000px;}
.y3e{bottom:1164.420000px;}
.y4{bottom:1176.480000px;}
.y3d{bottom:1189.080000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h15{height:7.185000px;}
.hd{height:13.324219px;}
.h16{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.170000px;}
.ha{height:24.285000px;}
.h7{height:28.260000px;}
.h17{height:36.281250px;}
.he{height:41.025000px;}
.h1c{height:50.273438px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1d{height:59.343750px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h19{height:65.884219px;}
.h14{height:70.628906px;}
.h18{height:70.664062px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h1b{height:74.953125px;}
.h4{height:76.317188px;}
.h1a{height:77.820899px;}
.hf{height:84.898125px;}
.h3{height:103.350000px;}
.h12{height:130.125000px;}
.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;}
.x17{left:8.089500px;}
.x5{left:10.965000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x10{left:59.385000px;}
.x2{left:60.841500px;}
.x13{left:72.523500px;}
.xc{left:81.525000px;}
.xf{left:91.065000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x21{left:118.656000px;}
.x1d{left:123.516000px;}
.x15{left:149.743500px;}
.x18{left:162.030000px;}
.x4{left:168.885000px;}
.x16{left:176.068500px;}
.x6{left:209.010000px;}
.x14{left:247.528500px;}
.x1c{left:253.470000px;}
.x1a{left:299.235013px;}
.x1b{left:327.357013px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x19{left:473.505000px;}
.x22{left:484.125000px;}
.x1f{left:488.985000px;}
.x1e{left:515.985000px;}
.x20{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.169067pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.069333pt;}
.lse{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls13{letter-spacing:15.488000pt;}
.ls8{letter-spacing:30.186667pt;}
.ls9{letter-spacing:30.208000pt;}
.ls11{letter-spacing:47.466667pt;}
.ls12{letter-spacing:47.488000pt;}
.ws5{word-spacing:-64.000000pt;}
.wsb{word-spacing:-21.389227pt;}
.ws8{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.wsd{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.304533pt;}
.ws9{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.144000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-2.017280pt;}
._0{margin-left:-1.064320pt;}
._2{width:1.075840pt;}
._7{width:2.816000pt;}
._a{width:4.416000pt;}
._4c{width:5.376000pt;}
._3{width:6.272000pt;}
._4{width:7.168000pt;}
._10{width:8.207147pt;}
._8{width:9.280000pt;}
._9{width:10.444160pt;}
._c{width:12.160000pt;}
._5{width:13.162667pt;}
._6{width:14.120320pt;}
._17{width:15.104000pt;}
._61{width:16.896000pt;}
._b{width:17.856000pt;}
._4e{width:18.752000pt;}
._16{width:19.757440pt;}
._1f{width:20.928000pt;}
._20{width:21.888000pt;}
._d{width:22.826667pt;}
._25{width:23.777493pt;}
._26{width:24.896000pt;}
._3b{width:26.344320pt;}
._f{width:27.328000pt;}
._35{width:28.736000pt;}
._64{width:29.632000pt;}
._e{width:30.528000pt;}
._2c{width:31.474560pt;}
._12{width:32.599680pt;}
._11{width:33.512320pt;}
._1d{width:34.496000pt;}
._1e{width:35.584000pt;}
._3a{width:36.736000pt;}
._1a{width:37.696000pt;}
._1b{width:38.720000pt;}
._15{width:40.256000pt;}
._45{width:41.408000pt;}
._3d{width:42.496000pt;}
._13{width:44.224000pt;}
._14{width:45.568000pt;}
._21{width:46.952320pt;}
._46{width:47.872000pt;}
._36{width:49.280000pt;}
._37{width:50.624000pt;}
._32{width:52.032000pt;}
._5e{width:53.324160pt;}
._29{width:54.272000pt;}
._18{width:55.424000pt;}
._19{width:56.320000pt;}
._28{width:57.216000pt;}
._41{width:58.368000pt;}
._60{width:59.264000pt;}
._4f{width:60.553600pt;}
._44{width:61.504000pt;}
._2d{width:62.464000pt;}
._2e{width:63.412480pt;}
._5d{width:64.704000pt;}
._47{width:66.560000pt;}
._38{width:68.437760pt;}
._2b{width:69.527680pt;}
._2a{width:70.440320pt;}
._67{width:71.391147pt;}
._48{width:72.384000pt;}
._39{width:73.408000pt;}
._52{width:74.752000pt;}
._2f{width:76.160000pt;}
._5f{width:77.344000pt;}
._30{width:78.592000pt;}
._31{width:79.917440pt;}
._56{width:82.432000pt;}
._1c{width:83.328000pt;}
._55{width:84.608000pt;}
._58{width:86.016000pt;}
._63{width:87.156480pt;}
._4a{width:88.128000pt;}
._49{width:89.024000pt;}
._65{width:91.200000pt;}
._3f{width:92.096000pt;}
._40{width:93.376000pt;}
._54{width:94.528000pt;}
._51{width:96.000000pt;}
._33{width:97.472000pt;}
._34{width:98.477440pt;}
._50{width:99.584000pt;}
._69{width:100.864000pt;}
._27{width:101.824000pt;}
._3c{width:102.808320pt;}
._42{width:103.936000pt;}
._53{width:106.984320pt;}
._4d{width:108.544000pt;}
._43{width:109.504000pt;}
._62{width:113.728000pt;}
._3e{width:116.096000pt;}
._68{width:117.068160pt;}
._59{width:126.528000pt;}
._5a{width:127.988480pt;}
._57{width:132.864000pt;}
._5b{width:134.592000pt;}
._5c{width:135.786667pt;}
._4b{width:144.896000pt;}
._66{width:160.704000pt;}
._22{width:168.548907pt;}
._24{width:170.531627pt;}
._23{width:175.686400pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:101.191873pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y12{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y9{bottom:5.760000pt;}
.yb{bottom:5.920000pt;}
.yc{bottom:6.560000pt;}
.y8{bottom:7.520000pt;}
.y6{bottom:7.680000pt;}
.y10{bottom:11.200000pt;}
.y5{bottom:29.440000pt;}
.y16{bottom:48.000000pt;}
.y1{bottom:52.160000pt;}
.y15{bottom:69.280000pt;}
.y3f{bottom:73.280000pt;}
.y39{bottom:81.280000pt;}
.y14{bottom:92.800000pt;}
.y38{bottom:105.120000pt;}
.y66{bottom:107.200000pt;}
.y37{bottom:129.120000pt;}
.y79{bottom:130.720000pt;}
.y65{bottom:131.040000pt;}
.y36{bottom:152.960000pt;}
.y6f{bottom:154.720000pt;}
.y64{bottom:155.040000pt;}
.y35{bottom:176.960000pt;}
.y82{bottom:178.560000pt;}
.y63{bottom:178.880000pt;}
.y34{bottom:200.826667pt;}
.y81{bottom:202.586667pt;}
.y62{bottom:202.906667pt;}
.y33{bottom:224.826667pt;}
.y80{bottom:226.426667pt;}
.y61{bottom:226.746667pt;}
.y32{bottom:248.666667pt;}
.y60{bottom:250.746667pt;}
.y31{bottom:272.666667pt;}
.y5f{bottom:274.586667pt;}
.y30{bottom:296.506667pt;}
.y83{bottom:298.266667pt;}
.y5e{bottom:298.586667pt;}
.y2f{bottom:320.506667pt;}
.y72{bottom:322.106667pt;}
.y5d{bottom:322.426667pt;}
.y2e{bottom:344.346667pt;}
.y6e{bottom:346.106667pt;}
.y5c{bottom:346.426667pt;}
.y2d{bottom:368.346667pt;}
.y6d{bottom:369.946667pt;}
.y5b{bottom:370.266667pt;}
.y2c{bottom:391.906667pt;}
.y3a{bottom:392.226667pt;}
.y5a{bottom:394.306667pt;}
.y2b{bottom:416.226667pt;}
.y7f{bottom:417.826667pt;}
.y59{bottom:418.146667pt;}
.y2a{bottom:438.946667pt;}
.y7e{bottom:441.826667pt;}
.y58{bottom:442.146667pt;}
.y29{bottom:460.226667pt;}
.y57{bottom:465.986667pt;}
.y28{bottom:481.346667pt;}
.y56{bottom:489.666667pt;}
.y6c{bottom:489.986667pt;}
.y27{bottom:506.786667pt;}
.y55{bottom:513.506667pt;}
.y6b{bottom:513.826667pt;}
.y26{bottom:527.906667pt;}
.y54{bottom:537.826667pt;}
.y25{bottom:549.186667pt;}
.y53{bottom:561.666667pt;}
.y24{bottom:570.306667pt;}
.y6a{bottom:585.346667pt;}
.y52{bottom:585.666667pt;}
.y23{bottom:591.426667pt;}
.y7c{bottom:609.213333pt;}
.y51{bottom:609.533333pt;}
.y22{bottom:612.573333pt;}
.y50{bottom:633.533333pt;}
.y21{bottom:633.693333pt;}
.y20{bottom:654.973333pt;}
.y4f{bottom:657.373333pt;}
.y1f{bottom:676.093333pt;}
.y4e{bottom:681.373333pt;}
.y1e{bottom:697.213333pt;}
.y71{bottom:704.893333pt;}
.y4d{bottom:705.213333pt;}
.y1d{bottom:718.333333pt;}
.y76{bottom:728.893333pt;}
.y4c{bottom:729.213333pt;}
.y1c{bottom:739.613333pt;}
.y75{bottom:752.733333pt;}
.y4b{bottom:753.053333pt;}
.y1b{bottom:760.733333pt;}
.y69{bottom:776.733333pt;}
.y4a{bottom:777.053333pt;}
.y1a{bottom:781.533333pt;}
.y68{bottom:800.573333pt;}
.y49{bottom:800.893333pt;}
.y19{bottom:802.813333pt;}
.y17{bottom:810.213333pt;}
.y13{bottom:816.613333pt;}
.y3c{bottom:820.426602pt;}
.y67{bottom:824.613333pt;}
.y48{bottom:824.933333pt;}
.y3b{bottom:845.866602pt;}
.y74{bottom:848.453333pt;}
.y47{bottom:848.773333pt;}
.y73{bottom:872.453333pt;}
.y46{bottom:872.773333pt;}
.y70{bottom:896.293333pt;}
.y45{bottom:896.613333pt;}
.y7d{bottom:920.133333pt;}
.y44{bottom:920.453333pt;}
.y11{bottom:932.293333pt;}
.yf{bottom:938.053333pt;}
.y78{bottom:944.133333pt;}
.y43{bottom:944.453333pt;}
.y77{bottom:967.973333pt;}
.y42{bottom:968.293333pt;}
.yd{bottom:974.533333pt;}
.ya{bottom:979.333333pt;}
.y7b{bottom:991.973333pt;}
.y41{bottom:992.293333pt;}
.y2{bottom:1000.933333pt;}
.y7a{bottom:1015.813333pt;}
.y40{bottom:1016.133333pt;}
.y7{bottom:1020.640000pt;}
.y3e{bottom:1035.040000pt;}
.y4{bottom:1045.760000pt;}
.y3d{bottom:1056.960000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h15{height:6.386667pt;}
.hd{height:11.843750pt;}
.h16{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.706667pt;}
.ha{height:21.586667pt;}
.h7{height:25.120000pt;}
.h17{height:32.250000pt;}
.he{height:36.466667pt;}
.h1c{height:44.687500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1d{height:52.750000pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h19{height:58.563750pt;}
.h14{height:62.781250pt;}
.h18{height:62.812500pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h1b{height:66.625000pt;}
.h4{height:67.837500pt;}
.h1a{height:69.174132pt;}
.hf{height:75.465000pt;}
.h3{height:91.866667pt;}
.h12{height:115.666667pt;}
.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;}
.x17{left:7.190667pt;}
.x5{left:9.746667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x10{left:52.786667pt;}
.x2{left:54.081333pt;}
.x13{left:64.465333pt;}
.xc{left:72.466667pt;}
.xf{left:80.946667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x21{left:105.472000pt;}
.x1d{left:109.792000pt;}
.x15{left:133.105333pt;}
.x18{left:144.026667pt;}
.x4{left:150.120000pt;}
.x16{left:156.505333pt;}
.x6{left:185.786667pt;}
.x14{left:220.025333pt;}
.x1c{left:225.306667pt;}
.x1a{left:265.986678pt;}
.x1b{left:290.984012pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x19{left:420.893333pt;}
.x22{left:430.333333pt;}
.x1f{left:434.653333pt;}
.x1e{left:458.653333pt;}
.x20{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; }
  