
    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_fccfaa00286e07d9dfd75a35.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_f1f762b249ed83077310af99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708000;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_e787189a0f142c10266d3ba4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_dc2ab89a776758ae604a8bc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041000;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_960a0e23deee10d856b9d4b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041000;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_9da8a536ad179514dacc44ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_8a5fe467a164cdcdc6a382be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_d536eaf94ec516315680e39e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.077000;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_4969e13391eae91313fa3e35.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944000;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_024332ff3b5daae136eae0fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946000;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_a24b436daa41df6776c26ee8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.080000;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_bd577e20ae11bdaa2948228a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.989000;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_f4f724d2665c2070f0243e1a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946000;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_10bae810cde43b78b07128e0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.041000;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_2c9bea92de8c41bf1d3478a2.woff2')format("woff");}.fff{font-family:fff;line-height:0.944000;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_47f034c63ccae05b6300c754.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.989000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls6{letter-spacing:-2.016000px;}
.ls23{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.140000px;}
.lsf{letter-spacing:-0.840000px;}
.ls21{letter-spacing:-0.780000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.480000px;}
.lsc{letter-spacing:-0.420000px;}
.ls25{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.192000px;}
.ls17{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.060000px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.420000px;}
.ls22{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.780000px;}
.ls5{letter-spacing:0.840000px;}
.ls1{letter-spacing:0.900000px;}
.ls1d{letter-spacing:1.020000px;}
.ls19{letter-spacing:1.050000px;}
.ls1e{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.140000px;}
.ls13{letter-spacing:1.200000px;}
.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;}
}
.ws3{word-spacing:-16.980000px;}
.ws5{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.720000px;}
.ws3a{word-spacing:-14.580000px;}
.ws32{word-spacing:-13.584000px;}
.ws25{word-spacing:-13.392000px;}
.ws39{word-spacing:-13.344000px;}
.ws2{word-spacing:-12.096000px;}
.ws0{word-spacing:-11.568000px;}
.ws4{word-spacing:-9.164760px;}
.ws3c{word-spacing:-3.180000px;}
.ws8{word-spacing:-3.120000px;}
.ws2a{word-spacing:-3.060000px;}
.ws2c{word-spacing:-2.700000px;}
.ws22{word-spacing:-2.580000px;}
.ws11{word-spacing:-2.520000px;}
.ws10{word-spacing:-2.340000px;}
.ws23{word-spacing:-2.280000px;}
.ws20{word-spacing:-2.160000px;}
.ws21{word-spacing:-1.800000px;}
.ws3b{word-spacing:-1.620000px;}
.ws17{word-spacing:-1.560000px;}
.ws29{word-spacing:-1.500000px;}
.ws28{word-spacing:-1.320000px;}
.ws1f{word-spacing:-1.200000px;}
.ws2b{word-spacing:-1.140000px;}
.ws30{word-spacing:-1.080000px;}
.ws2d{word-spacing:-1.020000px;}
.wsa{word-spacing:-0.900000px;}
.ws14{word-spacing:-0.840000px;}
.wsf{word-spacing:-0.780000px;}
.ws1e{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.540000px;}
.ws35{word-spacing:-0.480000px;}
.ws36{word-spacing:-0.420000px;}
.ws27{word-spacing:-0.360000px;}
.ws1a{word-spacing:-0.300000px;}
.ws13{word-spacing:-0.240000px;}
.ws24{word-spacing:-0.180000px;}
.ws9{word-spacing:-0.120000px;}
.ws26{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws1b{word-spacing:0.060000px;}
.ws33{word-spacing:0.096000px;}
.wsd{word-spacing:0.120000px;}
.ws1c{word-spacing:0.180000px;}
.wsc{word-spacing:0.240000px;}
.ws12{word-spacing:0.300000px;}
.ws3d{word-spacing:0.360000px;}
.wse{word-spacing:0.420000px;}
.ws2e{word-spacing:0.480000px;}
.ws15{word-spacing:0.540000px;}
.ws19{word-spacing:0.660000px;}
.ws2f{word-spacing:0.720000px;}
.ws34{word-spacing:0.780000px;}
.ws16{word-spacing:0.840000px;}
.ws38{word-spacing:1.440000px;}
.ws18{word-spacing:75.954000px;}
.ws37{word-spacing:76.434600px;}
._9{margin-left:-1002.571800px;}
._1{margin-left:-998.299800px;}
._b{margin-left:-995.755800px;}
._a{margin-left:-986.875800px;}
._5{margin-left:-5.534400px;}
._3{margin-left:-3.648000px;}
._2{margin-left:-2.401800px;}
._4{margin-left:-1.060800px;}
._8{width:1.014000px;}
._0{width:2.016000px;}
._7{width:3.172800px;}
._6{width:4.785600px;}
._d{width:39.540000px;}
._c{width:52.320000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs3{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:40.979550px;}
.y2b{bottom:41.879550px;}
.y1{bottom:55.379550px;}
.y52{bottom:128.913300px;}
.y66{bottom:129.018300px;}
.y75{bottom:133.976550px;}
.y77{bottom:139.171950px;}
.y2a{bottom:145.414350px;}
.y51{bottom:146.913300px;}
.y65{bottom:147.018300px;}
.y74{bottom:151.976550px;}
.y29{bottom:163.414350px;}
.y50{bottom:164.913300px;}
.y64{bottom:165.018300px;}
.y73{bottom:169.976700px;}
.y28{bottom:181.414350px;}
.y4f{bottom:182.913300px;}
.y63{bottom:183.018300px;}
.y72{bottom:187.976700px;}
.y4e{bottom:200.913300px;}
.y62{bottom:201.018300px;}
.y71{bottom:205.976700px;}
.y4d{bottom:218.913300px;}
.y61{bottom:219.018300px;}
.y70{bottom:223.976700px;}
.y27{bottom:229.105350px;}
.y4c{bottom:236.913300px;}
.y60{bottom:237.018300px;}
.y6f{bottom:241.976700px;}
.y4b{bottom:254.913300px;}
.y5f{bottom:255.018300px;}
.y6e{bottom:259.976700px;}
.y26{bottom:265.105350px;}
.y4a{bottom:272.913300px;}
.y5e{bottom:273.018300px;}
.y6d{bottom:277.976700px;}
.y25{bottom:283.105350px;}
.y49{bottom:290.913300px;}
.y5d{bottom:291.018300px;}
.y6c{bottom:295.976700px;}
.y24{bottom:301.105350px;}
.y57{bottom:308.913300px;}
.y5c{bottom:309.018300px;}
.y6b{bottom:313.976700px;}
.y23{bottom:319.105350px;}
.y48{bottom:326.913300px;}
.y5b{bottom:327.018300px;}
.y6a{bottom:331.976700px;}
.y22{bottom:337.105350px;}
.y47{bottom:344.913300px;}
.y5a{bottom:345.018300px;}
.y69{bottom:349.976700px;}
.y21{bottom:355.105350px;}
.y46{bottom:362.913300px;}
.y20{bottom:373.105350px;}
.y45{bottom:380.913300px;}
.y59{bottom:381.018300px;}
.y68{bottom:385.976700px;}
.y1f{bottom:391.105350px;}
.y44{bottom:398.913300px;}
.y67{bottom:400.376700px;}
.y1e{bottom:409.105350px;}
.y43{bottom:416.913300px;}
.y1d{bottom:427.105350px;}
.y42{bottom:434.913300px;}
.y58{bottom:435.018300px;}
.y1c{bottom:445.105350px;}
.y78{bottom:452.913300px;}
.y1b{bottom:463.105350px;}
.y41{bottom:470.913300px;}
.y40{bottom:488.913300px;}
.y1a{bottom:503.357400px;}
.y3f{bottom:506.913300px;}
.y3e{bottom:524.913300px;}
.y19{bottom:524.957400px;}
.y3d{bottom:542.913300px;}
.y76{bottom:556.212150px;}
.y3c{bottom:560.913300px;}
.y18{bottom:564.557400px;}
.y3b{bottom:578.913300px;}
.y3a{bottom:596.913300px;}
.y17{bottom:600.557400px;}
.y56{bottom:614.913300px;}
.y16{bottom:618.557400px;}
.y39{bottom:632.913300px;}
.y15{bottom:636.557400px;}
.y55{bottom:650.913300px;}
.y14{bottom:654.557400px;}
.y54{bottom:668.913300px;}
.y13{bottom:672.557400px;}
.y38{bottom:686.913300px;}
.y12{bottom:690.557400px;}
.y37{bottom:704.913300px;}
.y11{bottom:708.557400px;}
.y36{bottom:722.913300px;}
.y10{bottom:726.557400px;}
.y35{bottom:740.913300px;}
.yf{bottom:744.557400px;}
.y34{bottom:758.913300px;}
.ye{bottom:762.557400px;}
.y33{bottom:776.913300px;}
.yd{bottom:780.557400px;}
.y32{bottom:794.913300px;}
.yc{bottom:798.557400px;}
.y31{bottom:812.913300px;}
.yb{bottom:816.557400px;}
.y30{bottom:830.913300px;}
.y2f{bottom:848.913300px;}
.ya{bottom:852.557400px;}
.y2e{bottom:866.913300px;}
.y9{bottom:870.557400px;}
.y2d{bottom:884.913300px;}
.y8{bottom:896.409300px;}
.y53{bottom:902.913300px;}
.y7{bottom:918.009300px;}
.y2c{bottom:920.913300px;}
.y6{bottom:966.552750px;}
.y4{bottom:967.002750px;}
.y3{bottom:980.502750px;}
.y5{bottom:980.952900px;}
.h2{height:37.776000px;}
.h3{height:40.416000px;}
.ha{height:42.288000px;}
.h6{height:44.760000px;}
.h7{height:47.220000px;}
.h8{height:50.520000px;}
.h9{height:52.860000px;}
.h5{height:56.664000px;}
.h4{height:66.024000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:52.272750px;}
.xb{left:53.292750px;}
.xf{left:54.420600px;}
.x5{left:85.039350px;}
.x6{left:86.314950px;}
.xd{left:88.220400px;}
.x8{left:95.669250px;}
.xa{left:106.299150px;}
.x11{left:110.551200px;}
.x10{left:111.782100px;}
.xc{left:114.854100px;}
.x9{left:127.559100px;}
.xe{left:296.199600px;}
.x2{left:414.708600px;}
.x4{left:531.729600px;}
.x3{left:543.129150px;}
.x1{left:649.175100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls6{letter-spacing:-1.792000pt;}
.ls23{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.013333pt;}
.lsf{letter-spacing:-0.746667pt;}
.ls21{letter-spacing:-0.693333pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.426667pt;}
.lsc{letter-spacing:-0.373333pt;}
.ls25{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.170667pt;}
.ls17{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.373333pt;}
.ls22{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.693333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.906667pt;}
.ls19{letter-spacing:0.933333pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls13{letter-spacing:1.066667pt;}
.ws3{word-spacing:-15.093333pt;}
.ws5{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.973333pt;}
.ws3a{word-spacing:-12.960000pt;}
.ws32{word-spacing:-12.074667pt;}
.ws25{word-spacing:-11.904000pt;}
.ws39{word-spacing:-11.861333pt;}
.ws2{word-spacing:-10.752000pt;}
.ws0{word-spacing:-10.282667pt;}
.ws4{word-spacing:-8.146453pt;}
.ws3c{word-spacing:-2.826667pt;}
.ws8{word-spacing:-2.773333pt;}
.ws2a{word-spacing:-2.720000pt;}
.ws2c{word-spacing:-2.400000pt;}
.ws22{word-spacing:-2.293333pt;}
.ws11{word-spacing:-2.240000pt;}
.ws10{word-spacing:-2.080000pt;}
.ws23{word-spacing:-2.026667pt;}
.ws20{word-spacing:-1.920000pt;}
.ws21{word-spacing:-1.600000pt;}
.ws3b{word-spacing:-1.440000pt;}
.ws17{word-spacing:-1.386667pt;}
.ws29{word-spacing:-1.333333pt;}
.ws28{word-spacing:-1.173333pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws2b{word-spacing:-1.013333pt;}
.ws30{word-spacing:-0.960000pt;}
.ws2d{word-spacing:-0.906667pt;}
.wsa{word-spacing:-0.800000pt;}
.ws14{word-spacing:-0.746667pt;}
.wsf{word-spacing:-0.693333pt;}
.ws1e{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.480000pt;}
.ws35{word-spacing:-0.426667pt;}
.ws36{word-spacing:-0.373333pt;}
.ws27{word-spacing:-0.320000pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws13{word-spacing:-0.213333pt;}
.ws24{word-spacing:-0.160000pt;}
.ws9{word-spacing:-0.106667pt;}
.ws26{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.053333pt;}
.ws33{word-spacing:0.085333pt;}
.wsd{word-spacing:0.106667pt;}
.ws1c{word-spacing:0.160000pt;}
.wsc{word-spacing:0.213333pt;}
.ws12{word-spacing:0.266667pt;}
.ws3d{word-spacing:0.320000pt;}
.wse{word-spacing:0.373333pt;}
.ws2e{word-spacing:0.426667pt;}
.ws15{word-spacing:0.480000pt;}
.ws19{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.640000pt;}
.ws34{word-spacing:0.693333pt;}
.ws16{word-spacing:0.746667pt;}
.ws38{word-spacing:1.280000pt;}
.ws18{word-spacing:67.514667pt;}
.ws37{word-spacing:67.941867pt;}
._9{margin-left:-891.174933pt;}
._1{margin-left:-887.377600pt;}
._b{margin-left:-885.116267pt;}
._a{margin-left:-877.222933pt;}
._5{margin-left:-4.919467pt;}
._3{margin-left:-3.242667pt;}
._2{margin-left:-2.134933pt;}
._4{margin-left:-0.942933pt;}
._8{width:0.901333pt;}
._0{width:1.792000pt;}
._7{width:2.820267pt;}
._6{width:4.253867pt;}
._d{width:35.146667pt;}
._c{width:46.506667pt;}
.fs3{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.426267pt;}
.y2b{bottom:37.226267pt;}
.y1{bottom:49.226267pt;}
.y52{bottom:114.589600pt;}
.y66{bottom:114.682933pt;}
.y75{bottom:119.090267pt;}
.y77{bottom:123.708400pt;}
.y2a{bottom:129.257200pt;}
.y51{bottom:130.589600pt;}
.y65{bottom:130.682933pt;}
.y74{bottom:135.090267pt;}
.y29{bottom:145.257200pt;}
.y50{bottom:146.589600pt;}
.y64{bottom:146.682933pt;}
.y73{bottom:151.090400pt;}
.y28{bottom:161.257200pt;}
.y4f{bottom:162.589600pt;}
.y63{bottom:162.682933pt;}
.y72{bottom:167.090400pt;}
.y4e{bottom:178.589600pt;}
.y62{bottom:178.682933pt;}
.y71{bottom:183.090400pt;}
.y4d{bottom:194.589600pt;}
.y61{bottom:194.682933pt;}
.y70{bottom:199.090400pt;}
.y27{bottom:203.649200pt;}
.y4c{bottom:210.589600pt;}
.y60{bottom:210.682933pt;}
.y6f{bottom:215.090400pt;}
.y4b{bottom:226.589600pt;}
.y5f{bottom:226.682933pt;}
.y6e{bottom:231.090400pt;}
.y26{bottom:235.649200pt;}
.y4a{bottom:242.589600pt;}
.y5e{bottom:242.682933pt;}
.y6d{bottom:247.090400pt;}
.y25{bottom:251.649200pt;}
.y49{bottom:258.589600pt;}
.y5d{bottom:258.682933pt;}
.y6c{bottom:263.090400pt;}
.y24{bottom:267.649200pt;}
.y57{bottom:274.589600pt;}
.y5c{bottom:274.682933pt;}
.y6b{bottom:279.090400pt;}
.y23{bottom:283.649200pt;}
.y48{bottom:290.589600pt;}
.y5b{bottom:290.682933pt;}
.y6a{bottom:295.090400pt;}
.y22{bottom:299.649200pt;}
.y47{bottom:306.589600pt;}
.y5a{bottom:306.682933pt;}
.y69{bottom:311.090400pt;}
.y21{bottom:315.649200pt;}
.y46{bottom:322.589600pt;}
.y20{bottom:331.649200pt;}
.y45{bottom:338.589600pt;}
.y59{bottom:338.682933pt;}
.y68{bottom:343.090400pt;}
.y1f{bottom:347.649200pt;}
.y44{bottom:354.589600pt;}
.y67{bottom:355.890400pt;}
.y1e{bottom:363.649200pt;}
.y43{bottom:370.589600pt;}
.y1d{bottom:379.649200pt;}
.y42{bottom:386.589600pt;}
.y58{bottom:386.682933pt;}
.y1c{bottom:395.649200pt;}
.y78{bottom:402.589600pt;}
.y1b{bottom:411.649200pt;}
.y41{bottom:418.589600pt;}
.y40{bottom:434.589600pt;}
.y1a{bottom:447.428800pt;}
.y3f{bottom:450.589600pt;}
.y3e{bottom:466.589600pt;}
.y19{bottom:466.628800pt;}
.y3d{bottom:482.589600pt;}
.y76{bottom:494.410800pt;}
.y3c{bottom:498.589600pt;}
.y18{bottom:501.828800pt;}
.y3b{bottom:514.589600pt;}
.y3a{bottom:530.589600pt;}
.y17{bottom:533.828800pt;}
.y56{bottom:546.589600pt;}
.y16{bottom:549.828800pt;}
.y39{bottom:562.589600pt;}
.y15{bottom:565.828800pt;}
.y55{bottom:578.589600pt;}
.y14{bottom:581.828800pt;}
.y54{bottom:594.589600pt;}
.y13{bottom:597.828800pt;}
.y38{bottom:610.589600pt;}
.y12{bottom:613.828800pt;}
.y37{bottom:626.589600pt;}
.y11{bottom:629.828800pt;}
.y36{bottom:642.589600pt;}
.y10{bottom:645.828800pt;}
.y35{bottom:658.589600pt;}
.yf{bottom:661.828800pt;}
.y34{bottom:674.589600pt;}
.ye{bottom:677.828800pt;}
.y33{bottom:690.589600pt;}
.yd{bottom:693.828800pt;}
.y32{bottom:706.589600pt;}
.yc{bottom:709.828800pt;}
.y31{bottom:722.589600pt;}
.yb{bottom:725.828800pt;}
.y30{bottom:738.589600pt;}
.y2f{bottom:754.589600pt;}
.ya{bottom:757.828800pt;}
.y2e{bottom:770.589600pt;}
.y9{bottom:773.828800pt;}
.y2d{bottom:786.589600pt;}
.y8{bottom:796.808267pt;}
.y53{bottom:802.589600pt;}
.y7{bottom:816.008267pt;}
.y2c{bottom:818.589600pt;}
.y6{bottom:859.158000pt;}
.y4{bottom:859.558000pt;}
.y3{bottom:871.558000pt;}
.y5{bottom:871.958133pt;}
.h2{height:33.578667pt;}
.h3{height:35.925333pt;}
.ha{height:37.589333pt;}
.h6{height:39.786667pt;}
.h7{height:41.973333pt;}
.h8{height:44.906667pt;}
.h9{height:46.986667pt;}
.h5{height:50.368000pt;}
.h4{height:58.688000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:46.464667pt;}
.xb{left:47.371333pt;}
.xf{left:48.373867pt;}
.x5{left:75.590533pt;}
.x6{left:76.724400pt;}
.xd{left:78.418133pt;}
.x8{left:85.039333pt;}
.xa{left:94.488133pt;}
.x11{left:98.267733pt;}
.x10{left:99.361867pt;}
.xc{left:102.092533pt;}
.x9{left:113.385867pt;}
.xe{left:263.288533pt;}
.x2{left:368.629867pt;}
.x4{left:472.648533pt;}
.x3{left:482.781467pt;}
.x1{left:577.044533pt;}
}




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