
    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_1c896aa66ce87b12ab11329c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3adec1d44b640136d149a8c9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e3eae3741516ebe22bd802ea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c59f0d7594812bfda3eac95b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28030273152ccf7a25f715fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2f12b0eb0f6752a88c1d337f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c05b204dc30842e0fae3464.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_95b4d93ae5fb43bdd73435ab.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d1b7ad6989d51bd1628abd2c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9076447f47bf5e7d95445ff5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d9d41f3173fb7d9476d6ea92.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3c1f2dfc6776ec5de5da47be.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_bfcecb97b6e1976e4b78573a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8150d05d0c20b14cba7f2920.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m7{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-38.880000px;}
.v1{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.ls4b{letter-spacing:-22.080000px;}
.ls46{letter-spacing:-4.320000px;}
.ls40{letter-spacing:-3.900000px;}
.ls3a{letter-spacing:-3.480000px;}
.ls37{letter-spacing:-2.880000px;}
.ls41{letter-spacing:-2.760000px;}
.ls39{letter-spacing:-2.580000px;}
.ls36{letter-spacing:-2.520000px;}
.ls3c{letter-spacing:-2.160000px;}
.ls3f{letter-spacing:-1.980000px;}
.ls38{letter-spacing:-1.800000px;}
.ls3d{letter-spacing:-1.440000px;}
.ls3b{letter-spacing:-1.260000px;}
.ls3e{letter-spacing:-0.960000px;}
.ls4a{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.600000px;}
.ls43{letter-spacing:-0.480000px;}
.ls44{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.240000px;}
.ls34{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.960000px;}
.ls32{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.140000px;}
.ls33{letter-spacing:1.200000px;}
.ls15{letter-spacing:1.260000px;}
.ls26{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.620000px;}
.ls30{letter-spacing:1.680000px;}
.lsc{letter-spacing:1.740000px;}
.ls14{letter-spacing:1.800000px;}
.ls2c{letter-spacing:1.860000px;}
.lsa{letter-spacing:1.920000px;}
.ls2f{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.040000px;}
.ls8{letter-spacing:2.100000px;}
.lsd{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.220000px;}
.lsb{letter-spacing:2.280000px;}
.ls11{letter-spacing:2.340000px;}
.ls7{letter-spacing:2.400000px;}
.ls21{letter-spacing:2.460000px;}
.ls18{letter-spacing:2.520000px;}
.ls0{letter-spacing:2.580000px;}
.ls9{letter-spacing:2.640000px;}
.ls25{letter-spacing:2.700000px;}
.ls6{letter-spacing:2.760000px;}
.lse{letter-spacing:2.880000px;}
.ls23{letter-spacing:3.000000px;}
.ls28{letter-spacing:3.060000px;}
.ls24{letter-spacing:3.120000px;}
.ls19{letter-spacing:3.180000px;}
.ls22{letter-spacing:3.240000px;}
.ls1d{letter-spacing:3.300000px;}
.lsf{letter-spacing:3.360000px;}
.ls1e{letter-spacing:3.420000px;}
.ls27{letter-spacing:3.480000px;}
.ls2a{letter-spacing:3.540000px;}
.ls4{letter-spacing:3.600000px;}
.ls1{letter-spacing:3.720000px;}
.ls17{letter-spacing:3.780000px;}
.ls1a{letter-spacing:3.840000px;}
.ls2b{letter-spacing:3.900000px;}
.ls1b{letter-spacing:3.960000px;}
.ls4c{letter-spacing:4.020000px;}
.ls31{letter-spacing:4.140000px;}
.ls42{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.320000px;}
.ls4d{letter-spacing:4.500000px;}
.ls47{letter-spacing:4.680000px;}
.ls2e{letter-spacing:5.040000px;}
.ls48{letter-spacing:5.160000px;}
.ls49{letter-spacing:5.220000px;}
.ls2{letter-spacing:5.280000px;}
.ls1c{letter-spacing:5.400000px;}
.ls2d{letter-spacing:5.760000px;}
.ls20{letter-spacing:6.120000px;}
.ls45{letter-spacing:6.360000px;}
.ls1f{letter-spacing:6.480000px;}
.ls16{letter-spacing:6.660000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-31.680000px;}
.ws0{word-spacing:0.000000px;}
._2e{margin-left:-127.775520px;}
._29{margin-left:-17.844194px;}
._f{margin-left:-12.901164px;}
._2b{margin-left:-11.231513px;}
._7{margin-left:-9.907200px;}
._6{margin-left:-7.943040px;}
._1{margin-left:-5.640000px;}
._42{margin-left:-4.057128px;}
._40{margin-left:-2.144922px;}
._4{width:1.909440px;}
._2{width:3.600000px;}
._5{width:5.040000px;}
._43{width:6.299689px;}
._3{width:7.450560px;}
._2a{width:8.929751px;}
._a{width:10.028364px;}
._9{width:12.076279px;}
._0{width:13.977391px;}
._27{width:15.391496px;}
._12{width:16.602050px;}
._8{width:17.676950px;}
._10{width:19.023544px;}
._d{width:20.244776px;}
._c{width:21.700034px;}
._21{width:22.896153px;}
._e{width:24.332660px;}
._14{width:26.295840px;}
._2c{width:27.363094px;}
._11{width:28.380000px;}
._1f{width:30.222240px;}
._1c{width:32.055840px;}
._1e{width:33.229440px;}
._1d{width:34.466400px;}
._15{width:35.655840px;}
._24{width:36.883680px;}
._17{width:37.900320px;}
._18{width:40.242240px;}
._23{width:41.469120px;}
._16{width:44.796960px;}
._26{width:47.952000px;}
._b{width:50.309433px;}
._28{width:54.019486px;}
._1b{width:55.842240px;}
._25{width:57.881546px;}
._20{width:61.166400px;}
._19{width:64.002240px;}
._1a{width:65.895840px;}
._33{width:94.379456px;}
._3a{width:96.449639px;}
._13{width:114.511680px;}
._41{width:123.840000px;}
._3f{width:125.297280px;}
._22{width:136.257667px;}
._3e{width:138.834735px;}
._31{width:207.223785px;}
._39{width:209.977417px;}
._37{width:273.711754px;}
._2d{width:315.502240px;}
._2f{width:336.508160px;}
._30{width:453.027748px;}
._3c{width:545.443096px;}
._34{width:656.294111px;}
._36{width:702.700308px;}
._3b{width:721.570849px;}
._3d{width:749.760000px;}
._32{width:836.511001px;}
._38{width:870.882836px;}
._35{width:937.280000px;}
.fc0{color:transparent;}
.fs7{font-size:28.800000px;}
.fs5{font-size:34.560000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:47.520000px;}
.fs3{font-size:51.840000px;}
.fs2{font-size:59.040000px;}
.fs8{font-size:69.120000px;}
.fs6{font-size:228.960000px;}
.fs4{font-size:243.360000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:46.800000px;}
.y4d{bottom:107.280000px;}
.y29{bottom:116.640000px;}
.y28{bottom:133.560000px;}
.y27{bottom:150.120000px;}
.y26{bottom:166.680000px;}
.y4c{bottom:172.440000px;}
.y25{bottom:184.320000px;}
.y4b{bottom:190.440000px;}
.y24{bottom:199.800000px;}
.y4a{bottom:207.000000px;}
.y23{bottom:217.800000px;}
.y49{bottom:223.200000px;}
.y22{bottom:233.640000px;}
.y48{bottom:240.120000px;}
.y21{bottom:251.640000px;}
.y47{bottom:255.600000px;}
.y20{bottom:267.120000px;}
.y1f{bottom:284.040000px;}
.y46{bottom:289.080000px;}
.y1e{bottom:300.240000px;}
.y45{bottom:306.000000px;}
.y1d{bottom:318.600000px;}
.y1c{bottom:334.440000px;}
.y1b{bottom:351.360000px;}
.y1a{bottom:367.920000px;}
.y19{bottom:384.840000px;}
.y44{bottom:396.720000px;}
.y18{bottom:401.760000px;}
.y17{bottom:418.320000px;}
.y16{bottom:435.240000px;}
.y43{bottom:451.800000px;}
.y15{bottom:452.160000px;}
.y14{bottom:468.720000px;}
.y42{bottom:482.400000px;}
.y13{bottom:486.000000px;}
.y41{bottom:491.760000px;}
.y12{bottom:502.920000px;}
.y40{bottom:527.760000px;}
.y11{bottom:570.240000px;}
.y3f{bottom:576.360000px;}
.y10{bottom:583.560000px;}
.y3e{bottom:586.800000px;}
.y3d{bottom:595.080000px;}
.yf{bottom:598.320000px;}
.y3c{bottom:609.120000px;}
.ye{bottom:611.640000px;}
.y3b{bottom:633.960000px;}
.y3a{bottom:647.640000px;}
.y39{bottom:651.600000px;}
.y36{bottom:695.520000px;}
.y38{bottom:713.160000px;}
.yd{bottom:720.720000px;}
.y37{bottom:722.520000px;}
.yc{bottom:734.040000px;}
.yb{bottom:749.520000px;}
.y35{bottom:755.280000px;}
.ya{bottom:763.200000px;}
.y34{bottom:801.720000px;}
.y33{bottom:811.800000px;}
.y9{bottom:814.320000px;}
.y8{bottom:833.040000px;}
.y32{bottom:858.240000px;}
.y2c{bottom:879.120000px;}
.y31{bottom:884.880000px;}
.y7{bottom:886.680000px;}
.y30{bottom:898.560000px;}
.y2f{bottom:910.800000px;}
.y2e{bottom:921.960000px;}
.y2d{bottom:926.640000px;}
.y2{bottom:957.240000px;}
.y6{bottom:977.040000px;}
.y5{bottom:988.920000px;}
.y1{bottom:996.840000px;}
.y4{bottom:1001.160000px;}
.y2b{bottom:1010.880000px;}
.y3{bottom:1013.040000px;}
.ha{height:29.025000px;}
.h8{height:34.830000px;}
.h7{height:36.045000px;}
.h2{height:40.964766px;}
.h6{height:40.985156px;}
.h1{height:46.638281px;}
.hc{height:47.891250px;}
.h4{height:50.878125px;}
.h3{height:59.501250px;}
.hb{height:69.660000px;}
.h9{height:230.748750px;}
.h5{height:238.844531px;}
.h0{height:1080.000000px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x15{left:97.560000px;}
.x10{left:110.880000px;}
.x12{left:112.320000px;}
.x30{left:114.840000px;}
.x1{left:131.400000px;}
.xf{left:151.200000px;}
.x13{left:152.280000px;}
.x31{left:155.160000px;}
.x11{left:159.480000px;}
.xe{left:181.080000px;}
.x8{left:191.160000px;}
.xb{left:195.480000px;}
.xd{left:201.240000px;}
.x9{left:225.720000px;}
.xa{left:231.480000px;}
.x27{left:240.480000px;}
.x1a{left:241.560000px;}
.x16{left:260.280000px;}
.x26{left:279.000000px;}
.x1b{left:284.760000px;}
.x24{left:289.440000px;}
.x1f{left:299.520000px;}
.x25{left:326.160000px;}
.x1c{left:334.080000px;}
.x2{left:335.520000px;}
.x19{left:336.600000px;}
.x2e{left:344.160000px;}
.x28{left:347.400000px;}
.xc{left:349.200000px;}
.x29{left:361.800000px;}
.x1d{left:380.880000px;}
.x14{left:400.320000px;}
.x2a{left:412.560000px;}
.x23{left:416.520000px;}
.x18{left:447.840000px;}
.x2b{left:450.000000px;}
.x1e{left:452.520000px;}
.x17{left:462.240000px;}
.x2c{left:482.400000px;}
.x3{left:488.160000px;}
.x20{left:516.600000px;}
.x21{left:522.720000px;}
.x2d{left:536.760000px;}
.x2f{left:551.160000px;}
.x22{left:570.240000px;}
.x4{left:575.640000px;}
.x7{left:612.000000px;}
.x6{left:620.640000px;}
.x5{left:632.880000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v1{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls4b{letter-spacing:-19.626667pt;}
.ls46{letter-spacing:-3.840000pt;}
.ls40{letter-spacing:-3.466667pt;}
.ls3a{letter-spacing:-3.093333pt;}
.ls37{letter-spacing:-2.560000pt;}
.ls41{letter-spacing:-2.453333pt;}
.ls39{letter-spacing:-2.293333pt;}
.ls36{letter-spacing:-2.240000pt;}
.ls3c{letter-spacing:-1.920000pt;}
.ls3f{letter-spacing:-1.760000pt;}
.ls38{letter-spacing:-1.600000pt;}
.ls3d{letter-spacing:-1.280000pt;}
.ls3b{letter-spacing:-1.120000pt;}
.ls3e{letter-spacing:-0.853333pt;}
.ls4a{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.533333pt;}
.ls43{letter-spacing:-0.426667pt;}
.ls44{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.213333pt;}
.ls34{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.853333pt;}
.ls32{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.013333pt;}
.ls33{letter-spacing:1.066667pt;}
.ls15{letter-spacing:1.120000pt;}
.ls26{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.440000pt;}
.ls30{letter-spacing:1.493333pt;}
.lsc{letter-spacing:1.546667pt;}
.ls14{letter-spacing:1.600000pt;}
.ls2c{letter-spacing:1.653333pt;}
.lsa{letter-spacing:1.706667pt;}
.ls2f{letter-spacing:1.760000pt;}
.ls12{letter-spacing:1.813333pt;}
.ls8{letter-spacing:1.866667pt;}
.lsd{letter-spacing:1.920000pt;}
.ls10{letter-spacing:1.973333pt;}
.lsb{letter-spacing:2.026667pt;}
.ls11{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.133333pt;}
.ls21{letter-spacing:2.186667pt;}
.ls18{letter-spacing:2.240000pt;}
.ls0{letter-spacing:2.293333pt;}
.ls9{letter-spacing:2.346667pt;}
.ls25{letter-spacing:2.400000pt;}
.ls6{letter-spacing:2.453333pt;}
.lse{letter-spacing:2.560000pt;}
.ls23{letter-spacing:2.666667pt;}
.ls28{letter-spacing:2.720000pt;}
.ls24{letter-spacing:2.773333pt;}
.ls19{letter-spacing:2.826667pt;}
.ls22{letter-spacing:2.880000pt;}
.ls1d{letter-spacing:2.933333pt;}
.lsf{letter-spacing:2.986667pt;}
.ls1e{letter-spacing:3.040000pt;}
.ls27{letter-spacing:3.093333pt;}
.ls2a{letter-spacing:3.146667pt;}
.ls4{letter-spacing:3.200000pt;}
.ls1{letter-spacing:3.306667pt;}
.ls17{letter-spacing:3.360000pt;}
.ls1a{letter-spacing:3.413333pt;}
.ls2b{letter-spacing:3.466667pt;}
.ls1b{letter-spacing:3.520000pt;}
.ls4c{letter-spacing:3.573333pt;}
.ls31{letter-spacing:3.680000pt;}
.ls42{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.840000pt;}
.ls4d{letter-spacing:4.000000pt;}
.ls47{letter-spacing:4.160000pt;}
.ls2e{letter-spacing:4.480000pt;}
.ls48{letter-spacing:4.586667pt;}
.ls49{letter-spacing:4.640000pt;}
.ls2{letter-spacing:4.693333pt;}
.ls1c{letter-spacing:4.800000pt;}
.ls2d{letter-spacing:5.120000pt;}
.ls20{letter-spacing:5.440000pt;}
.ls45{letter-spacing:5.653333pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls16{letter-spacing:5.920000pt;}
.ws1{word-spacing:-28.160000pt;}
.ws0{word-spacing:0.000000pt;}
._2e{margin-left:-113.578240pt;}
._29{margin-left:-15.861506pt;}
._f{margin-left:-11.467702pt;}
._2b{margin-left:-9.983567pt;}
._7{margin-left:-8.806400pt;}
._6{margin-left:-7.060480pt;}
._1{margin-left:-5.013333pt;}
._42{margin-left:-3.606336pt;}
._40{margin-left:-1.906597pt;}
._4{width:1.697280pt;}
._2{width:3.200000pt;}
._5{width:4.480000pt;}
._43{width:5.599724pt;}
._3{width:6.622720pt;}
._2a{width:7.937556pt;}
._a{width:8.914102pt;}
._9{width:10.734470pt;}
._0{width:12.424348pt;}
._27{width:13.681330pt;}
._12{width:14.757378pt;}
._8{width:15.712844pt;}
._10{width:16.909817pt;}
._d{width:17.995357pt;}
._c{width:19.288919pt;}
._21{width:20.352136pt;}
._e{width:21.629031pt;}
._14{width:23.374080pt;}
._2c{width:24.322751pt;}
._11{width:25.226667pt;}
._1f{width:26.864213pt;}
._1c{width:28.494080pt;}
._1e{width:29.537280pt;}
._1d{width:30.636800pt;}
._15{width:31.694080pt;}
._24{width:32.785493pt;}
._17{width:33.689173pt;}
._18{width:35.770880pt;}
._23{width:36.861440pt;}
._16{width:39.819520pt;}
._26{width:42.624000pt;}
._b{width:44.719496pt;}
._28{width:48.017321pt;}
._1b{width:49.637547pt;}
._25{width:51.450263pt;}
._20{width:54.370133pt;}
._19{width:56.890880pt;}
._1a{width:58.574080pt;}
._33{width:83.892850pt;}
._3a{width:85.733012pt;}
._13{width:101.788160pt;}
._41{width:110.080000pt;}
._3f{width:111.375360pt;}
._22{width:121.117926pt;}
._3e{width:123.408654pt;}
._31{width:184.198920pt;}
._39{width:186.646593pt;}
._37{width:243.299337pt;}
._2d{width:280.446436pt;}
._2f{width:299.118364pt;}
._30{width:402.691332pt;}
._3c{width:484.838307pt;}
._34{width:583.372543pt;}
._36{width:624.622496pt;}
._3b{width:641.396310pt;}
._3d{width:666.453333pt;}
._32{width:743.565335pt;}
._38{width:774.118076pt;}
._35{width:833.137778pt;}
.fs7{font-size:25.600000pt;}
.fs5{font-size:30.720000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.240000pt;}
.fs3{font-size:46.080000pt;}
.fs2{font-size:52.480000pt;}
.fs8{font-size:61.440000pt;}
.fs6{font-size:203.520000pt;}
.fs4{font-size:216.320000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:41.600000pt;}
.y4d{bottom:95.360000pt;}
.y29{bottom:103.680000pt;}
.y28{bottom:118.720000pt;}
.y27{bottom:133.440000pt;}
.y26{bottom:148.160000pt;}
.y4c{bottom:153.280000pt;}
.y25{bottom:163.840000pt;}
.y4b{bottom:169.280000pt;}
.y24{bottom:177.600000pt;}
.y4a{bottom:184.000000pt;}
.y23{bottom:193.600000pt;}
.y49{bottom:198.400000pt;}
.y22{bottom:207.680000pt;}
.y48{bottom:213.440000pt;}
.y21{bottom:223.680000pt;}
.y47{bottom:227.200000pt;}
.y20{bottom:237.440000pt;}
.y1f{bottom:252.480000pt;}
.y46{bottom:256.960000pt;}
.y1e{bottom:266.880000pt;}
.y45{bottom:272.000000pt;}
.y1d{bottom:283.200000pt;}
.y1c{bottom:297.280000pt;}
.y1b{bottom:312.320000pt;}
.y1a{bottom:327.040000pt;}
.y19{bottom:342.080000pt;}
.y44{bottom:352.640000pt;}
.y18{bottom:357.120000pt;}
.y17{bottom:371.840000pt;}
.y16{bottom:386.880000pt;}
.y43{bottom:401.600000pt;}
.y15{bottom:401.920000pt;}
.y14{bottom:416.640000pt;}
.y42{bottom:428.800000pt;}
.y13{bottom:432.000000pt;}
.y41{bottom:437.120000pt;}
.y12{bottom:447.040000pt;}
.y40{bottom:469.120000pt;}
.y11{bottom:506.880000pt;}
.y3f{bottom:512.320000pt;}
.y10{bottom:518.720000pt;}
.y3e{bottom:521.600000pt;}
.y3d{bottom:528.960000pt;}
.yf{bottom:531.840000pt;}
.y3c{bottom:541.440000pt;}
.ye{bottom:543.680000pt;}
.y3b{bottom:563.520000pt;}
.y3a{bottom:575.680000pt;}
.y39{bottom:579.200000pt;}
.y36{bottom:618.240000pt;}
.y38{bottom:633.920000pt;}
.yd{bottom:640.640000pt;}
.y37{bottom:642.240000pt;}
.yc{bottom:652.480000pt;}
.yb{bottom:666.240000pt;}
.y35{bottom:671.360000pt;}
.ya{bottom:678.400000pt;}
.y34{bottom:712.640000pt;}
.y33{bottom:721.600000pt;}
.y9{bottom:723.840000pt;}
.y8{bottom:740.480000pt;}
.y32{bottom:762.880000pt;}
.y2c{bottom:781.440000pt;}
.y31{bottom:786.560000pt;}
.y7{bottom:788.160000pt;}
.y30{bottom:798.720000pt;}
.y2f{bottom:809.600000pt;}
.y2e{bottom:819.520000pt;}
.y2d{bottom:823.680000pt;}
.y2{bottom:850.880000pt;}
.y6{bottom:868.480000pt;}
.y5{bottom:879.040000pt;}
.y1{bottom:886.080000pt;}
.y4{bottom:889.920000pt;}
.y2b{bottom:898.560000pt;}
.y3{bottom:900.480000pt;}
.ha{height:25.800000pt;}
.h8{height:30.960000pt;}
.h7{height:32.040000pt;}
.h2{height:36.413125pt;}
.h6{height:36.431250pt;}
.h1{height:41.456250pt;}
.hc{height:42.570000pt;}
.h4{height:45.225000pt;}
.h3{height:52.890000pt;}
.hb{height:61.920000pt;}
.h9{height:205.110000pt;}
.h5{height:212.306250pt;}
.h0{height:960.000000pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x15{left:86.720000pt;}
.x10{left:98.560000pt;}
.x12{left:99.840000pt;}
.x30{left:102.080000pt;}
.x1{left:116.800000pt;}
.xf{left:134.400000pt;}
.x13{left:135.360000pt;}
.x31{left:137.920000pt;}
.x11{left:141.760000pt;}
.xe{left:160.960000pt;}
.x8{left:169.920000pt;}
.xb{left:173.760000pt;}
.xd{left:178.880000pt;}
.x9{left:200.640000pt;}
.xa{left:205.760000pt;}
.x27{left:213.760000pt;}
.x1a{left:214.720000pt;}
.x16{left:231.360000pt;}
.x26{left:248.000000pt;}
.x1b{left:253.120000pt;}
.x24{left:257.280000pt;}
.x1f{left:266.240000pt;}
.x25{left:289.920000pt;}
.x1c{left:296.960000pt;}
.x2{left:298.240000pt;}
.x19{left:299.200000pt;}
.x2e{left:305.920000pt;}
.x28{left:308.800000pt;}
.xc{left:310.400000pt;}
.x29{left:321.600000pt;}
.x1d{left:338.560000pt;}
.x14{left:355.840000pt;}
.x2a{left:366.720000pt;}
.x23{left:370.240000pt;}
.x18{left:398.080000pt;}
.x2b{left:400.000000pt;}
.x1e{left:402.240000pt;}
.x17{left:410.880000pt;}
.x2c{left:428.800000pt;}
.x3{left:433.920000pt;}
.x20{left:459.200000pt;}
.x21{left:464.640000pt;}
.x2d{left:477.120000pt;}
.x2f{left:489.920000pt;}
.x22{left:506.880000pt;}
.x4{left:511.680000pt;}
.x7{left:544.000000pt;}
.x6{left:551.680000pt;}
.x5{left:562.560000pt;}
}




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