
    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_4e5680a3ea48d154f230b1c6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_55764e4cfec6e6f1d79fe4ad.woff')format("woff");}.ff2{font-family:ff2;line-height:1.401855;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_e57450d608332637955c58a5.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6d6c893a39b9cd9e5d937e5a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7ede14b9499ddd9321ca853a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5576e839fbaa2413aeb37c64.woff')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_70a5b49ae22a6f86ef01eeba.woff')format("woff");}.ff7{font-family:ff7;line-height:1.116049;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_b5fbc75d5d5160e8cf86ed86.woff')format("woff");}.ff8{font-family:ff8;line-height:1.116049;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_d00d8948223a01dee604f245.woff')format("woff");}.ff9{font-family:ff9;line-height:0.849667;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_d742b066e4c356b7cd658b5b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.034000;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_aea22a9bdc9de049a5d0c3e5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.034000;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_b20b03b26d9fd2227a8b1d75.woff')format("woff");}.ffc{font-family:ffc;line-height:0.876465;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_c0c1fc760cf70644f01411cc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.751953;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_d771c1cebc5683644db8a2bb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.721191;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_fa3439b9d58407d2608e521c.woff')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a42e984f58102e0c7d2adbfa.woff')format("woff");}.ff10{font-family:ff10;line-height:1.056641;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_c4deb29ef658b5616865e1e7.woff')format("woff");}.ff11{font-family:ff11;line-height:1.056641;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_ca238bc8dc23f1c2a0d4c1f2.woff')format("woff");}.ff12{font-family:ff12;line-height:0.937500;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_f70b5dc153c8a258eef0d4a9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.850586;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_8d0fbc59dd65057fc766edab.woff')format("woff");}.ff14{font-family:ff14;line-height:0.850586;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);}
.v2{vertical-align:-38.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls3{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.213600px;}
.ls2{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.037440px;}
.ls4{letter-spacing:-0.028080px;}
.ls5{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.215400px;}
.ls9{letter-spacing:0.247800px;}
.ls16{letter-spacing:0.350400px;}
.ls10{letter-spacing:0.360000px;}
.lse{letter-spacing:0.378720px;}
.ls0{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.594000px;}
.ls13{letter-spacing:3.420000px;}
.ls11{letter-spacing:5.700000px;}
.ls12{letter-spacing:6.960000px;}
.ls6{letter-spacing:8.393040px;}
.lsa{letter-spacing:14.940000px;}
.ls14{letter-spacing:33.840000px;}
.ls8{letter-spacing:197.443200px;}
.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;}
}
.wsd{word-spacing:-84.240000px;}
.ws1{word-spacing:-37.800000px;}
.wsf{word-spacing:-32.277360px;}
.ws5{word-spacing:-31.926960px;}
.wse{word-spacing:-31.713360px;}
.ws9{word-spacing:-23.081760px;}
.wsc{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.050640px;}
.wsa{word-spacing:-21.022560px;}
.ws4{word-spacing:-20.700000px;}
.wsb{word-spacing:-20.466000px;}
.ws8{word-spacing:-18.532800px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-0.108000px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-19.116000px;}
._6{margin-left:-9.350640px;}
._2{margin-left:-7.992000px;}
._0{margin-left:-4.968000px;}
._11{margin-left:-3.923280px;}
._1{margin-left:-2.736000px;}
._4{margin-left:-1.608000px;}
._3{width:1.680000px;}
._5{width:3.168000px;}
._c{width:5.054400px;}
._d{width:6.318000px;}
._8{width:7.336320px;}
._7{width:8.508240px;}
._15{width:10.200480px;}
._9{width:12.130560px;}
._a{width:13.233120px;}
._12{width:14.910480px;}
._13{width:16.595280px;}
._16{width:18.815520px;}
._b{width:20.049120px;}
._14{width:21.233280px;}
._e{width:47.258640px;}
._f{width:48.568080px;}
._18{width:105.265200px;}
._17{width:137.127360px;}
._10{width:184.049040px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(148,54,52);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs4{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.660000px;}
.y56{bottom:121.860000px;}
.y20{bottom:124.200000px;}
.ya3{bottom:141.876000px;}
.y3b{bottom:142.056000px;}
.y89{bottom:147.816000px;}
.y1f{bottom:157.350000px;}
.y71{bottom:172.650000px;}
.y55{bottom:172.830000px;}
.y3a{bottom:174.990000px;}
.y1e{bottom:191.550000px;}
.y88{bottom:198.750000px;}
.y70{bottom:205.590000px;}
.y54{bottom:205.950000px;}
.y39{bottom:208.110000px;}
.y1d{bottom:228.450000px;}
.y53{bottom:239.070000px;}
.y6f{bottom:239.790000px;}
.ya2{bottom:241.050000px;}
.y38{bottom:244.290000px;}
.y87{bottom:249.870000px;}
.y1c{bottom:265.350000px;}
.y52{bottom:272.010000px;}
.y6e{bottom:276.690000px;}
.y37{bottom:282.990000px;}
.ya1{bottom:292.170000px;}
.yb4{bottom:298.830000px;}
.y1b{bottom:300.990000px;}
.y51{bottom:305.130000px;}
.y6d{bottom:312.510000px;}
.y86{bottom:315.930000px;}
.y36{bottom:316.110000px;}
.ya0{bottom:325.110000px;}
.y1a{bottom:335.190000px;}
.y50{bottom:338.070000px;}
.yb3{bottom:341.670000px;}
.y6c{bottom:345.450000px;}
.y85{bottom:349.050000px;}
.y35{bottom:352.290000px;}
.y9f{bottom:358.230000px;}
.y19{bottom:372.090000px;}
.y6b{bottom:378.570000px;}
.yb2{bottom:381.630000px;}
.y84{bottom:381.990000px;}
.y9e{bottom:391.215000px;}
.y4f{bottom:391.575000px;}
.y18{bottom:407.955000px;}
.y34{bottom:411.375000px;}
.y6a{bottom:412.815000px;}
.y83{bottom:415.155000px;}
.yb1{bottom:421.815000px;}
.y9d{bottom:424.335000px;}
.y17{bottom:442.155000px;}
.y4e{bottom:445.035000px;}
.y82{bottom:448.275000px;}
.y69{bottom:448.455000px;}
.y9c{bottom:458.535000px;}
.yb0{bottom:461.775000px;}
.y33{bottom:464.835000px;}
.y4d{bottom:477.975000px;}
.y81{bottom:481.215000px;}
.y68{bottom:481.575000px;}
.yaf{bottom:483.915000px;}
.y9b{bottom:494.355000px;}
.y16{bottom:495.795000px;}
.y32{bottom:497.775000px;}
.y4c{bottom:511.095000px;}
.y67{bottom:514.695000px;}
.y80{bottom:515.415000px;}
.yae{bottom:526.575000px;}
.y9a{bottom:527.295000px;}
.y15{bottom:529.995000px;}
.y31{bottom:530.895000px;}
.y4b{bottom:544.035000px;}
.y30{bottom:564.015000px;}
.y66{bottom:565.635000px;}
.y14{bottom:565.815000px;}
.yad{bottom:566.715000px;}
.y7f{bottom:570.315000px;}
.y4a{bottom:577.155000px;}
.y99{bottom:578.415000px;}
.y2f{bottom:596.955000px;}
.y13{bottom:600.015000px;}
.y7e{bottom:606.135000px;}
.yac{bottom:609.375000px;}
.y49{bottom:610.275000px;}
.y98{bottom:612.615000px;}
.y65{bottom:616.755000px;}
.y2e{bottom:630.075000px;}
.y12{bottom:636.915000px;}
.y7d{bottom:639.075000px;}
.y48{bottom:643.245000px;}
.y97{bottom:649.545000px;}
.y64{bottom:649.725000px;}
.y2d{bottom:663.045000px;}
.y7c{bottom:673.305000px;}
.y11{bottom:673.665000px;}
.yab{bottom:674.385000px;}
.y47{bottom:676.365000px;}
.y63{bottom:682.845000px;}
.y96{bottom:688.785000px;}
.y46{bottom:709.305000px;}
.y10{bottom:709.485000px;}
.y7b{bottom:710.205000px;}
.y62{bottom:715.785000px;}
.y2c{bottom:716.505000px;}
.yaa{bottom:717.225000px;}
.y95{bottom:729.645000px;}
.yf{bottom:742.605000px;}
.y45{bottom:743.505000px;}
.y61{bottom:749.985000px;}
.ya9{bottom:760.065000px;}
.y7a{bottom:764.025000px;}
.y94{bottom:766.905000px;}
.y2b{bottom:770.685000px;}
.ye{bottom:775.545000px;}
.y44{bottom:780.405000px;}
.y60{bottom:785.805000px;}
.y79{bottom:798.045000px;}
.ya8{bottom:802.725000px;}
.y2a{bottom:806.865000px;}
.yd{bottom:808.665000px;}
.y93{bottom:818.025000px;}
.y5f{bottom:818.745000px;}
.y78{bottom:834.945000px;}
.y43{bottom:835.305000px;}
.yc{bottom:841.605000px;}
.ya7{bottom:842.865000px;}
.y29{bottom:843.225000px;}
.y92{bottom:850.965000px;}
.y5e{bottom:851.865000px;}
.y77{bottom:870.765000px;}
.y42{bottom:871.125000px;}
.yb{bottom:874.725000px;}
.y28{bottom:879.405000px;}
.ya6{bottom:882.825000px;}
.y91{bottom:884.085000px;}
.y5d{bottom:884.985000px;}
.y76{bottom:903.930000px;}
.y41{bottom:904.110000px;}
.y27{bottom:915.270000px;}
.y90{bottom:917.070000px;}
.y5c{bottom:917.970000px;}
.ya{bottom:925.710000px;}
.ya5{bottom:926.070000px;}
.y75{bottom:936.870000px;}
.y40{bottom:937.230000px;}
.y8f{bottom:950.190000px;}
.y5b{bottom:951.090000px;}
.y9{bottom:966.030000px;}
.y26{bottom:969.090000px;}
.y3f{bottom:970.170000px;}
.y8e{bottom:983.130000px;}
.y5a{bottom:984.030000px;}
.y74{bottom:987.990000px;}
.y25{bottom:1002.030000px;}
.y3e{bottom:1003.290000px;}
.y8{bottom:1015.170000px;}
.y8d{bottom:1016.250000px;}
.y59{bottom:1017.150000px;}
.ya4{bottom:1017.690000px;}
.y73{bottom:1020.930000px;}
.y24{bottom:1036.230000px;}
.y7{bottom:1042.890000px;}
.y8c{bottom:1049.370000px;}
.y58{bottom:1050.090000px;}
.y72{bottom:1054.050000px;}
.y23{bottom:1072.050000px;}
.y8b{bottom:1082.310000px;}
.y57{bottom:1084.290000px;}
.y6{bottom:1089.870000px;}
.y3d{bottom:1090.590000px;}
.y22{bottom:1104.990000px;}
.y5{bottom:1128.210000px;}
.y3c{bottom:1132.530000px;}
.y8a{bottom:1135.770000px;}
.y21{bottom:1138.110000px;}
.y2{bottom:1171.980000px;}
.y1{bottom:1192.320000px;}
.ha{height:67.476240px;}
.he{height:68.115938px;}
.h7{height:69.432187px;}
.h4{height:70.664062px;}
.hf{height:70.995234px;}
.h3{height:71.824219px;}
.h2{height:72.562500px;}
.h9{height:72.846211px;}
.h6{height:76.703760px;}
.hd{height:82.134000px;}
.hc{height:82.676953px;}
.h8{height:84.034336px;}
.hb{height:87.695156px;}
.h5{height:93.312000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.036000px;}
.x2{left:110.376000px;}
.x5{left:112.536000px;}
.x3{left:131.796000px;}
.x7{left:171.750000px;}
.x4{left:266.970000px;}
.x6{left:314.355000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.189867pt;}
.ls2{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:-0.024960pt;}
.ls5{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.191467pt;}
.ls9{letter-spacing:0.220267pt;}
.ls16{letter-spacing:0.311467pt;}
.ls10{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.336640pt;}
.ls0{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.528000pt;}
.ls13{letter-spacing:3.040000pt;}
.ls11{letter-spacing:5.066667pt;}
.ls12{letter-spacing:6.186667pt;}
.ls6{letter-spacing:7.460480pt;}
.lsa{letter-spacing:13.280000pt;}
.ls14{letter-spacing:30.080000pt;}
.ls8{letter-spacing:175.505067pt;}
.wsd{word-spacing:-74.880000pt;}
.ws1{word-spacing:-33.600000pt;}
.wsf{word-spacing:-28.690987pt;}
.ws5{word-spacing:-28.379520pt;}
.wse{word-spacing:-28.189653pt;}
.ws9{word-spacing:-20.517120pt;}
.wsc{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.711680pt;}
.wsa{word-spacing:-18.686720pt;}
.ws4{word-spacing:-18.400000pt;}
.wsb{word-spacing:-18.192000pt;}
.ws8{word-spacing:-16.473600pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-0.096000pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-16.992000pt;}
._6{margin-left:-8.311680pt;}
._2{margin-left:-7.104000pt;}
._0{margin-left:-4.416000pt;}
._11{margin-left:-3.487360pt;}
._1{margin-left:-2.432000pt;}
._4{margin-left:-1.429333pt;}
._3{width:1.493333pt;}
._5{width:2.816000pt;}
._c{width:4.492800pt;}
._d{width:5.616000pt;}
._8{width:6.521173pt;}
._7{width:7.562880pt;}
._15{width:9.067093pt;}
._9{width:10.782720pt;}
._a{width:11.762773pt;}
._12{width:13.253760pt;}
._13{width:14.751360pt;}
._16{width:16.724907pt;}
._b{width:17.821440pt;}
._14{width:18.874027pt;}
._e{width:42.007680pt;}
._f{width:43.171627pt;}
._18{width:93.569067pt;}
._17{width:121.890987pt;}
._10{width:163.599147pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.920000pt;}
.y56{bottom:108.320000pt;}
.y20{bottom:110.400000pt;}
.ya3{bottom:126.112000pt;}
.y3b{bottom:126.272000pt;}
.y89{bottom:131.392000pt;}
.y1f{bottom:139.866667pt;}
.y71{bottom:153.466667pt;}
.y55{bottom:153.626667pt;}
.y3a{bottom:155.546667pt;}
.y1e{bottom:170.266667pt;}
.y88{bottom:176.666667pt;}
.y70{bottom:182.746667pt;}
.y54{bottom:183.066667pt;}
.y39{bottom:184.986667pt;}
.y1d{bottom:203.066667pt;}
.y53{bottom:212.506667pt;}
.y6f{bottom:213.146667pt;}
.ya2{bottom:214.266667pt;}
.y38{bottom:217.146667pt;}
.y87{bottom:222.106667pt;}
.y1c{bottom:235.866667pt;}
.y52{bottom:241.786667pt;}
.y6e{bottom:245.946667pt;}
.y37{bottom:251.546667pt;}
.ya1{bottom:259.706667pt;}
.yb4{bottom:265.626667pt;}
.y1b{bottom:267.546667pt;}
.y51{bottom:271.226667pt;}
.y6d{bottom:277.786667pt;}
.y86{bottom:280.826667pt;}
.y36{bottom:280.986667pt;}
.ya0{bottom:288.986667pt;}
.y1a{bottom:297.946667pt;}
.y50{bottom:300.506667pt;}
.yb3{bottom:303.706667pt;}
.y6c{bottom:307.066667pt;}
.y85{bottom:310.266667pt;}
.y35{bottom:313.146667pt;}
.y9f{bottom:318.426667pt;}
.y19{bottom:330.746667pt;}
.y6b{bottom:336.506667pt;}
.yb2{bottom:339.226667pt;}
.y84{bottom:339.546667pt;}
.y9e{bottom:347.746667pt;}
.y4f{bottom:348.066667pt;}
.y18{bottom:362.626667pt;}
.y34{bottom:365.666667pt;}
.y6a{bottom:366.946667pt;}
.y83{bottom:369.026667pt;}
.yb1{bottom:374.946667pt;}
.y9d{bottom:377.186667pt;}
.y17{bottom:393.026667pt;}
.y4e{bottom:395.586667pt;}
.y82{bottom:398.466667pt;}
.y69{bottom:398.626667pt;}
.y9c{bottom:407.586667pt;}
.yb0{bottom:410.466667pt;}
.y33{bottom:413.186667pt;}
.y4d{bottom:424.866667pt;}
.y81{bottom:427.746667pt;}
.y68{bottom:428.066667pt;}
.yaf{bottom:430.146667pt;}
.y9b{bottom:439.426667pt;}
.y16{bottom:440.706667pt;}
.y32{bottom:442.466667pt;}
.y4c{bottom:454.306667pt;}
.y67{bottom:457.506667pt;}
.y80{bottom:458.146667pt;}
.yae{bottom:468.066667pt;}
.y9a{bottom:468.706667pt;}
.y15{bottom:471.106667pt;}
.y31{bottom:471.906667pt;}
.y4b{bottom:483.586667pt;}
.y30{bottom:501.346667pt;}
.y66{bottom:502.786667pt;}
.y14{bottom:502.946667pt;}
.yad{bottom:503.746667pt;}
.y7f{bottom:506.946667pt;}
.y4a{bottom:513.026667pt;}
.y99{bottom:514.146667pt;}
.y2f{bottom:530.626667pt;}
.y13{bottom:533.346667pt;}
.y7e{bottom:538.786667pt;}
.yac{bottom:541.666667pt;}
.y49{bottom:542.466667pt;}
.y98{bottom:544.546667pt;}
.y65{bottom:548.226667pt;}
.y2e{bottom:560.066667pt;}
.y12{bottom:566.146667pt;}
.y7d{bottom:568.066667pt;}
.y48{bottom:571.773333pt;}
.y97{bottom:577.373333pt;}
.y64{bottom:577.533333pt;}
.y2d{bottom:589.373333pt;}
.y7c{bottom:598.493333pt;}
.y11{bottom:598.813333pt;}
.yab{bottom:599.453333pt;}
.y47{bottom:601.213333pt;}
.y63{bottom:606.973333pt;}
.y96{bottom:612.253333pt;}
.y46{bottom:630.493333pt;}
.y10{bottom:630.653333pt;}
.y7b{bottom:631.293333pt;}
.y62{bottom:636.253333pt;}
.y2c{bottom:636.893333pt;}
.yaa{bottom:637.533333pt;}
.y95{bottom:648.573333pt;}
.yf{bottom:660.093333pt;}
.y45{bottom:660.893333pt;}
.y61{bottom:666.653333pt;}
.ya9{bottom:675.613333pt;}
.y7a{bottom:679.133333pt;}
.y94{bottom:681.693333pt;}
.y2b{bottom:685.053333pt;}
.ye{bottom:689.373333pt;}
.y44{bottom:693.693333pt;}
.y60{bottom:698.493333pt;}
.y79{bottom:709.373333pt;}
.ya8{bottom:713.533333pt;}
.y2a{bottom:717.213333pt;}
.yd{bottom:718.813333pt;}
.y93{bottom:727.133333pt;}
.y5f{bottom:727.773333pt;}
.y78{bottom:742.173333pt;}
.y43{bottom:742.493333pt;}
.yc{bottom:748.093333pt;}
.ya7{bottom:749.213333pt;}
.y29{bottom:749.533333pt;}
.y92{bottom:756.413333pt;}
.y5e{bottom:757.213333pt;}
.y77{bottom:774.013333pt;}
.y42{bottom:774.333333pt;}
.yb{bottom:777.533333pt;}
.y28{bottom:781.693333pt;}
.ya6{bottom:784.733333pt;}
.y91{bottom:785.853333pt;}
.y5d{bottom:786.653333pt;}
.y76{bottom:803.493333pt;}
.y41{bottom:803.653333pt;}
.y27{bottom:813.573333pt;}
.y90{bottom:815.173333pt;}
.y5c{bottom:815.973333pt;}
.ya{bottom:822.853333pt;}
.ya5{bottom:823.173333pt;}
.y75{bottom:832.773333pt;}
.y40{bottom:833.093333pt;}
.y8f{bottom:844.613333pt;}
.y5b{bottom:845.413333pt;}
.y9{bottom:858.693333pt;}
.y26{bottom:861.413333pt;}
.y3f{bottom:862.373333pt;}
.y8e{bottom:873.893333pt;}
.y5a{bottom:874.693333pt;}
.y74{bottom:878.213333pt;}
.y25{bottom:890.693333pt;}
.y3e{bottom:891.813333pt;}
.y8{bottom:902.373333pt;}
.y8d{bottom:903.333333pt;}
.y59{bottom:904.133333pt;}
.ya4{bottom:904.613333pt;}
.y73{bottom:907.493333pt;}
.y24{bottom:921.093333pt;}
.y7{bottom:927.013333pt;}
.y8c{bottom:932.773333pt;}
.y58{bottom:933.413333pt;}
.y72{bottom:936.933333pt;}
.y23{bottom:952.933333pt;}
.y8b{bottom:962.053333pt;}
.y57{bottom:963.813333pt;}
.y6{bottom:968.773333pt;}
.y3d{bottom:969.413333pt;}
.y22{bottom:982.213333pt;}
.y5{bottom:1002.853333pt;}
.y3c{bottom:1006.693333pt;}
.y8a{bottom:1009.573333pt;}
.y21{bottom:1011.653333pt;}
.y2{bottom:1041.760000pt;}
.y1{bottom:1059.840000pt;}
.ha{height:59.978880pt;}
.he{height:60.547500pt;}
.h7{height:61.717500pt;}
.h4{height:62.812500pt;}
.hf{height:63.106875pt;}
.h3{height:63.843750pt;}
.h2{height:64.500000pt;}
.h9{height:64.752187pt;}
.h6{height:68.181120pt;}
.hd{height:73.008000pt;}
.hc{height:73.490625pt;}
.h8{height:74.697187pt;}
.hb{height:77.951250pt;}
.h5{height:82.944000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.032000pt;}
.x2{left:98.112000pt;}
.x5{left:100.032000pt;}
.x3{left:117.152000pt;}
.x7{left:152.666667pt;}
.x4{left:237.306667pt;}
.x6{left:279.426667pt;}
}




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