
    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_2e08ffbdbef47e4373323b40.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.882812;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_028a14b904571b4dacfb5f9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942871;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_03e0039b5d89eba4c6c171b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.669434;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_99fa08bebfedb0f90667059d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_1521aadb0948f99adad62aa6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943359;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_ad040ffe807283914acbbf94.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_148a0e08db26009535ac446b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_5976699dcbfc04e007c3f328.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_c0752b664850a85c3c65af64.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.718750;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_3ea30c735d6897d0fc48c87a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718750;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_f4bc1b499e5e075556fb42e3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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_e863a4b68d1134b77fbcd244.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.917480;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_1317290060933128574ca338.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.677734;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_351ef47d042e74fbeb30607e.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls26{letter-spacing:-3.247200px;}
.ls1a{letter-spacing:-1.712160px;}
.ls1f{letter-spacing:-1.634400px;}
.ls21{letter-spacing:-0.806400px;}
.ls1d{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.308736px;}
.lsf{letter-spacing:-0.260064px;}
.ls9{letter-spacing:-0.254016px;}
.ls10{letter-spacing:-0.158976px;}
.lsc{letter-spacing:-0.145152px;}
.ls11{letter-spacing:-0.125856px;}
.ls12{letter-spacing:-0.079488px;}
.ls1e{letter-spacing:-0.036000px;}
.ls1c{letter-spacing:-0.028800px;}
.lsb{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.005760px;}
.ls22{letter-spacing:0.010080px;}
.ls24{letter-spacing:0.010944px;}
.ls25{letter-spacing:0.011088px;}
.ls23{letter-spacing:0.011520px;}
.ls0{letter-spacing:0.014400px;}
.ls1b{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.090288px;}
.ls13{letter-spacing:0.160416px;}
.ls15{letter-spacing:0.161280px;}
.ls4{letter-spacing:0.228096px;}
.ls2{letter-spacing:0.274176px;}
.ls19{letter-spacing:0.283968px;}
.lsd{letter-spacing:0.317376px;}
.ls14{letter-spacing:0.325728px;}
.ls6{letter-spacing:0.327888px;}
.ls8{letter-spacing:0.346896px;}
.lse{letter-spacing:0.359136px;}
.ls1{letter-spacing:0.400896px;}
.ls20{letter-spacing:1.548000px;}
.ls17{letter-spacing:5.983344px;}
.ls18{letter-spacing:7.335360px;}
.ls3{letter-spacing:19.402848px;}
.ls27{letter-spacing:99.194544px;}
.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;}
}
.wsa{word-spacing:-23.577696px;}
.ws8{word-spacing:-23.535936px;}
.ws9{word-spacing:-23.502528px;}
.wsd{word-spacing:-21.564000px;}
.ws1{word-spacing:-20.030400px;}
.wsb{word-spacing:-20.016000px;}
.wsf{word-spacing:-20.001600px;}
.ws10{word-spacing:-19.987200px;}
.wsc{word-spacing:-19.980000px;}
.wse{word-spacing:-19.209600px;}
.ws5{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.335232px;}
.ws4{word-spacing:-18.288864px;}
.ws0{word-spacing:-13.414464px;}
.ws3{word-spacing:-0.060480px;}
.ws7{word-spacing:0.000000px;}
.ws2{word-spacing:0.199584px;}
._42{margin-left:-9.338400px;}
._5{margin-left:-7.992000px;}
._4{margin-left:-6.180480px;}
._7{margin-left:-5.127696px;}
._3{margin-left:-3.974400px;}
._2{margin-left:-2.656800px;}
._0{margin-left:-1.045440px;}
._1{width:1.112832px;}
._a{width:2.253600px;}
._28{width:3.300480px;}
._1a{width:4.481280px;}
._3a{width:6.228000px;}
._26{width:7.336800px;}
._31{width:8.373600px;}
._14{width:9.842400px;}
._e{width:11.736000px;}
._13{width:12.960000px;}
._12{width:14.853600px;}
._d{width:16.545600px;}
._18{width:18.615312px;}
._10{width:21.456000px;}
._22{width:22.805280px;}
._15{width:24.393600px;}
._11{width:25.516800px;}
._3c{width:26.900640px;}
._29{width:28.411200px;}
._21{width:29.779200px;}
._c{width:31.766400px;}
._2a{width:33.554880px;}
._2b{width:34.740000px;}
._6{width:36.115200px;}
._1b{width:37.255680px;}
._25{width:38.370528px;}
._3e{width:39.557952px;}
._b{width:40.622400px;}
._16{width:42.638544px;}
._39{width:43.654320px;}
._17{width:44.668800px;}
._24{width:46.169280px;}
._34{width:47.304000px;}
._8{width:51.408000px;}
._9{width:53.352000px;}
._1c{width:55.821600px;}
._1d{width:57.240288px;}
._40{width:58.920768px;}
._30{width:60.235200px;}
._2f{width:62.124480px;}
._2e{width:63.262080px;}
._3f{width:64.555200px;}
._35{width:66.388320px;}
._36{width:67.558176px;}
._f{width:68.558400px;}
._37{width:70.092000px;}
._23{width:72.875808px;}
._3d{width:75.526848px;}
._3b{width:78.530400px;}
._20{width:82.514880px;}
._38{width:84.736800px;}
._1e{width:93.117600px;}
._1f{width:94.845600px;}
._2c{width:98.946576px;}
._2d{width:100.316880px;}
._27{width:122.532480px;}
._41{width:139.207536px;}
._33{width:176.106240px;}
._32{width:177.317568px;}
._19{width:843.984000px;}
.fc2{color:rgb(2,133,78);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,42,53);}
.fs0{font-size:47.520000px;}
.fs2{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y8{bottom:5.400000px;}
.y1d{bottom:7.020000px;}
.y37{bottom:7.140000px;}
.y1b{bottom:7.500000px;}
.y40{bottom:7.800000px;}
.y55{bottom:8.160000px;}
.y3b{bottom:8.280000px;}
.y10{bottom:10.980000px;}
.ye{bottom:11.940000px;}
.y1{bottom:15.000000px;}
.y4{bottom:18.120000px;}
.y36{bottom:27.660000px;}
.y58{bottom:31.560000px;}
.y54{bottom:31.920000px;}
.y3{bottom:32.160000px;}
.y3a{bottom:32.400000px;}
.yd{bottom:32.820000px;}
.y2{bottom:46.200000px;}
.y35{bottom:48.540000px;}
.yf{bottom:49.500000px;}
.yc{bottom:53.340000px;}
.y7{bottom:54.000000px;}
.y57{bottom:55.320000px;}
.y53{bottom:55.680000px;}
.y39{bottom:56.160000px;}
.y6{bottom:56.880000px;}
.y34{bottom:69.060000px;}
.yb{bottom:74.220000px;}
.y52{bottom:79.440000px;}
.y33{bottom:89.940000px;}
.ya{bottom:96.180000px;}
.y8b{bottom:96.480000px;}
.y51{bottom:103.200000px;}
.y32{bottom:110.460000px;}
.y8a{bottom:117.360000px;}
.y50{bottom:126.960000px;}
.y60{bottom:129.600000px;}
.y31{bottom:131.340000px;}
.y89{bottom:137.880000px;}
.y3d{bottom:141.480000px;}
.y5f{bottom:150.120000px;}
.y4f{bottom:150.720000px;}
.y30{bottom:151.860000px;}
.y88{bottom:158.760000px;}
.y3c{bottom:162.360000px;}
.y5e{bottom:171.000000px;}
.y2f{bottom:172.740000px;}
.y4e{bottom:174.480000px;}
.y87{bottom:179.280000px;}
.y38{bottom:180.000000px;}
.y5d{bottom:191.520000px;}
.y2e{bottom:193.260000px;}
.y4d{bottom:198.600000px;}
.y86{bottom:200.160000px;}
.y5c{bottom:212.400000px;}
.y2d{bottom:214.140000px;}
.y85{bottom:220.680000px;}
.y4c{bottom:222.360000px;}
.y5b{bottom:232.920000px;}
.y2c{bottom:234.660000px;}
.y84{bottom:241.560000px;}
.y4b{bottom:246.120000px;}
.y1e{bottom:253.500000px;}
.y5a{bottom:253.800000px;}
.y2b{bottom:255.540000px;}
.y83{bottom:262.080000px;}
.y4a{bottom:269.880000px;}
.y59{bottom:274.320000px;}
.y2a{bottom:276.060000px;}
.y82{bottom:282.960000px;}
.y56{bottom:291.000000px;}
.y49{bottom:293.640000px;}
.y29{bottom:296.940000px;}
.y81{bottom:303.480000px;}
.y48{bottom:317.400000px;}
.y28{bottom:317.460000px;}
.y80{bottom:324.360000px;}
.y27{bottom:338.340000px;}
.y47{bottom:341.160000px;}
.y7f{bottom:344.880000px;}
.y26{bottom:358.860000px;}
.y41{bottom:363.000000px;}
.y46{bottom:364.920000px;}
.y7e{bottom:365.760000px;}
.y25{bottom:379.740000px;}
.y7d{bottom:386.280000px;}
.y45{bottom:389.040000px;}
.y24{bottom:400.260000px;}
.y7c{bottom:407.160000px;}
.y44{bottom:412.800000px;}
.y23{bottom:421.140000px;}
.y7b{bottom:427.680000px;}
.y43{bottom:436.560000px;}
.y22{bottom:441.660000px;}
.y20{bottom:442.020000px;}
.y7a{bottom:448.560000px;}
.y42{bottom:460.320000px;}
.y21{bottom:462.540000px;}
.y1f{bottom:463.980000px;}
.y79{bottom:469.080000px;}
.y78{bottom:489.960000px;}
.y77{bottom:510.480000px;}
.y76{bottom:531.360000px;}
.y75{bottom:551.880000px;}
.y74{bottom:572.760000px;}
.y73{bottom:593.280000px;}
.y72{bottom:614.160000px;}
.y71{bottom:634.680000px;}
.y70{bottom:655.560000px;}
.y6f{bottom:676.080000px;}
.y6e{bottom:696.960000px;}
.y6d{bottom:717.480000px;}
.y1c{bottom:733.500000px;}
.y6c{bottom:738.360000px;}
.y1a{bottom:757.500000px;}
.y6b{bottom:758.880000px;}
.y6a{bottom:779.760000px;}
.y19{bottom:786.960000px;}
.y69{bottom:800.280000px;}
.y18{bottom:808.920000px;}
.y68{bottom:821.160000px;}
.y17{bottom:835.560000px;}
.y3f{bottom:840.000000px;}
.y67{bottom:841.680000px;}
.y16{bottom:856.440000px;}
.y66{bottom:862.560000px;}
.y3e{bottom:869.400000px;}
.y15{bottom:870.840000px;}
.y65{bottom:883.080000px;}
.y14{bottom:892.080000px;}
.y64{bottom:903.960000px;}
.y13{bottom:914.760000px;}
.y63{bottom:924.480000px;}
.y12{bottom:938.880000px;}
.y62{bottom:945.360000px;}
.y11{bottom:963.000000px;}
.y61{bottom:965.880000px;}
.y9{bottom:1024.500000px;}
.y5{bottom:1117.440000px;}
.h5{height:21.000000px;}
.h10{height:24.000000px;}
.ha{height:25.500000px;}
.h2{height:31.997109px;}
.hf{height:34.155000px;}
.h6{height:40.310156px;}
.hb{height:44.031094px;}
.h12{height:47.610000px;}
.h3{height:47.988281px;}
.hd{height:51.827344px;}
.h4{height:52.734375px;}
.h9{height:52.769531px;}
.h1{height:58.500000px;}
.he{height:58.635000px;}
.h8{height:70.240078px;}
.h13{height:73.500000px;}
.hc{height:74.670469px;}
.h7{height:118.500000px;}
.h14{height:478.500000px;}
.h11{height:480.000000px;}
.h0{height:1188.000000px;}
.w2{width:16.500000px;}
.w4{width:88.500000px;}
.w6{width:225.000000px;}
.w7{width:525.000000px;}
.w1{width:612.000000px;}
.w3{width:664.500000px;}
.w5{width:748.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:4.943496px;}
.x13{left:9.239856px;}
.x9{left:11.280036px;}
.x14{left:51.070704px;}
.x4{left:58.029420px;}
.x12{left:84.000000px;}
.x18{left:108.897948px;}
.xb{left:117.260028px;}
.x10{left:127.055412px;}
.x1{left:132.000000px;}
.x1b{left:138.134772px;}
.x17{left:149.436756px;}
.xc{left:172.877184px;}
.x3{left:179.796000px;}
.x5{left:200.460204px;}
.x8{left:213.000000px;}
.x16{left:226.094880px;}
.x19{left:266.961924px;}
.x1a{left:270.296232px;}
.x15{left:307.500000px;}
.xd{left:310.930668px;}
.xf{left:363.050640px;}
.x11{left:370.865520px;}
.x1c{left:381.495960px;}
.xe{left:458.910000px;}
.x7{left:783.000000px;}
.xa{left:789.000000px;}
.x6{left:805.860000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls26{letter-spacing:-2.886400pt;}
.ls1a{letter-spacing:-1.521920pt;}
.ls1f{letter-spacing:-1.452800pt;}
.ls21{letter-spacing:-0.716800pt;}
.ls1d{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.274432pt;}
.lsf{letter-spacing:-0.231168pt;}
.ls9{letter-spacing:-0.225792pt;}
.ls10{letter-spacing:-0.141312pt;}
.lsc{letter-spacing:-0.129024pt;}
.ls11{letter-spacing:-0.111872pt;}
.ls12{letter-spacing:-0.070656pt;}
.ls1e{letter-spacing:-0.032000pt;}
.ls1c{letter-spacing:-0.025600pt;}
.lsb{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.005120pt;}
.ls22{letter-spacing:0.008960pt;}
.ls24{letter-spacing:0.009728pt;}
.ls25{letter-spacing:0.009856pt;}
.ls23{letter-spacing:0.010240pt;}
.ls0{letter-spacing:0.012800pt;}
.ls1b{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.080256pt;}
.ls13{letter-spacing:0.142592pt;}
.ls15{letter-spacing:0.143360pt;}
.ls4{letter-spacing:0.202752pt;}
.ls2{letter-spacing:0.243712pt;}
.ls19{letter-spacing:0.252416pt;}
.lsd{letter-spacing:0.282112pt;}
.ls14{letter-spacing:0.289536pt;}
.ls6{letter-spacing:0.291456pt;}
.ls8{letter-spacing:0.308352pt;}
.lse{letter-spacing:0.319232pt;}
.ls1{letter-spacing:0.356352pt;}
.ls20{letter-spacing:1.376000pt;}
.ls17{letter-spacing:5.318528pt;}
.ls18{letter-spacing:6.520320pt;}
.ls3{letter-spacing:17.246976pt;}
.ls27{letter-spacing:88.172928pt;}
.wsa{word-spacing:-20.957952pt;}
.ws8{word-spacing:-20.920832pt;}
.ws9{word-spacing:-20.891136pt;}
.wsd{word-spacing:-19.168000pt;}
.ws1{word-spacing:-17.804800pt;}
.wsb{word-spacing:-17.792000pt;}
.wsf{word-spacing:-17.779200pt;}
.ws10{word-spacing:-17.766400pt;}
.wsc{word-spacing:-17.760000pt;}
.wse{word-spacing:-17.075200pt;}
.ws5{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.297984pt;}
.ws4{word-spacing:-16.256768pt;}
.ws0{word-spacing:-11.923968pt;}
.ws3{word-spacing:-0.053760pt;}
.ws7{word-spacing:0.000000pt;}
.ws2{word-spacing:0.177408pt;}
._42{margin-left:-8.300800pt;}
._5{margin-left:-7.104000pt;}
._4{margin-left:-5.493760pt;}
._7{margin-left:-4.557952pt;}
._3{margin-left:-3.532800pt;}
._2{margin-left:-2.361600pt;}
._0{margin-left:-0.929280pt;}
._1{width:0.989184pt;}
._a{width:2.003200pt;}
._28{width:2.933760pt;}
._1a{width:3.983360pt;}
._3a{width:5.536000pt;}
._26{width:6.521600pt;}
._31{width:7.443200pt;}
._14{width:8.748800pt;}
._e{width:10.432000pt;}
._13{width:11.520000pt;}
._12{width:13.203200pt;}
._d{width:14.707200pt;}
._18{width:16.546944pt;}
._10{width:19.072000pt;}
._22{width:20.271360pt;}
._15{width:21.683200pt;}
._11{width:22.681600pt;}
._3c{width:23.911680pt;}
._29{width:25.254400pt;}
._21{width:26.470400pt;}
._c{width:28.236800pt;}
._2a{width:29.826560pt;}
._2b{width:30.880000pt;}
._6{width:32.102400pt;}
._1b{width:33.116160pt;}
._25{width:34.107136pt;}
._3e{width:35.162624pt;}
._b{width:36.108800pt;}
._16{width:37.900928pt;}
._39{width:38.803840pt;}
._17{width:39.705600pt;}
._24{width:41.039360pt;}
._34{width:42.048000pt;}
._8{width:45.696000pt;}
._9{width:47.424000pt;}
._1c{width:49.619200pt;}
._1d{width:50.880256pt;}
._40{width:52.374016pt;}
._30{width:53.542400pt;}
._2f{width:55.221760pt;}
._2e{width:56.232960pt;}
._3f{width:57.382400pt;}
._35{width:59.011840pt;}
._36{width:60.051712pt;}
._f{width:60.940800pt;}
._37{width:62.304000pt;}
._23{width:64.778496pt;}
._3d{width:67.134976pt;}
._3b{width:69.804800pt;}
._20{width:73.346560pt;}
._38{width:75.321600pt;}
._1e{width:82.771200pt;}
._1f{width:84.307200pt;}
._2c{width:87.952512pt;}
._2d{width:89.170560pt;}
._27{width:108.917760pt;}
._41{width:123.740032pt;}
._33{width:156.538880pt;}
._32{width:157.615616pt;}
._19{width:750.208000pt;}
.fs0{font-size:42.240000pt;}
.fs2{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.800000pt;}
.y1d{bottom:6.240000pt;}
.y37{bottom:6.346667pt;}
.y1b{bottom:6.666667pt;}
.y40{bottom:6.933333pt;}
.y55{bottom:7.253333pt;}
.y3b{bottom:7.360000pt;}
.y10{bottom:9.760000pt;}
.ye{bottom:10.613333pt;}
.y1{bottom:13.333333pt;}
.y4{bottom:16.106667pt;}
.y36{bottom:24.586667pt;}
.y58{bottom:28.053333pt;}
.y54{bottom:28.373333pt;}
.y3{bottom:28.586667pt;}
.y3a{bottom:28.800000pt;}
.yd{bottom:29.173333pt;}
.y2{bottom:41.066667pt;}
.y35{bottom:43.146667pt;}
.yf{bottom:44.000000pt;}
.yc{bottom:47.413333pt;}
.y7{bottom:48.000000pt;}
.y57{bottom:49.173333pt;}
.y53{bottom:49.493333pt;}
.y39{bottom:49.920000pt;}
.y6{bottom:50.560000pt;}
.y34{bottom:61.386667pt;}
.yb{bottom:65.973333pt;}
.y52{bottom:70.613333pt;}
.y33{bottom:79.946667pt;}
.ya{bottom:85.493333pt;}
.y8b{bottom:85.760000pt;}
.y51{bottom:91.733333pt;}
.y32{bottom:98.186667pt;}
.y8a{bottom:104.320000pt;}
.y50{bottom:112.853333pt;}
.y60{bottom:115.200000pt;}
.y31{bottom:116.746667pt;}
.y89{bottom:122.560000pt;}
.y3d{bottom:125.760000pt;}
.y5f{bottom:133.440000pt;}
.y4f{bottom:133.973333pt;}
.y30{bottom:134.986667pt;}
.y88{bottom:141.120000pt;}
.y3c{bottom:144.320000pt;}
.y5e{bottom:152.000000pt;}
.y2f{bottom:153.546667pt;}
.y4e{bottom:155.093333pt;}
.y87{bottom:159.360000pt;}
.y38{bottom:160.000000pt;}
.y5d{bottom:170.240000pt;}
.y2e{bottom:171.786667pt;}
.y4d{bottom:176.533333pt;}
.y86{bottom:177.920000pt;}
.y5c{bottom:188.800000pt;}
.y2d{bottom:190.346667pt;}
.y85{bottom:196.160000pt;}
.y4c{bottom:197.653333pt;}
.y5b{bottom:207.040000pt;}
.y2c{bottom:208.586667pt;}
.y84{bottom:214.720000pt;}
.y4b{bottom:218.773333pt;}
.y1e{bottom:225.333333pt;}
.y5a{bottom:225.600000pt;}
.y2b{bottom:227.146667pt;}
.y83{bottom:232.960000pt;}
.y4a{bottom:239.893333pt;}
.y59{bottom:243.840000pt;}
.y2a{bottom:245.386667pt;}
.y82{bottom:251.520000pt;}
.y56{bottom:258.666667pt;}
.y49{bottom:261.013333pt;}
.y29{bottom:263.946667pt;}
.y81{bottom:269.760000pt;}
.y48{bottom:282.133333pt;}
.y28{bottom:282.186667pt;}
.y80{bottom:288.320000pt;}
.y27{bottom:300.746667pt;}
.y47{bottom:303.253333pt;}
.y7f{bottom:306.560000pt;}
.y26{bottom:318.986667pt;}
.y41{bottom:322.666667pt;}
.y46{bottom:324.373333pt;}
.y7e{bottom:325.120000pt;}
.y25{bottom:337.546667pt;}
.y7d{bottom:343.360000pt;}
.y45{bottom:345.813333pt;}
.y24{bottom:355.786667pt;}
.y7c{bottom:361.920000pt;}
.y44{bottom:366.933333pt;}
.y23{bottom:374.346667pt;}
.y7b{bottom:380.160000pt;}
.y43{bottom:388.053333pt;}
.y22{bottom:392.586667pt;}
.y20{bottom:392.906667pt;}
.y7a{bottom:398.720000pt;}
.y42{bottom:409.173333pt;}
.y21{bottom:411.146667pt;}
.y1f{bottom:412.426667pt;}
.y79{bottom:416.960000pt;}
.y78{bottom:435.520000pt;}
.y77{bottom:453.760000pt;}
.y76{bottom:472.320000pt;}
.y75{bottom:490.560000pt;}
.y74{bottom:509.120000pt;}
.y73{bottom:527.360000pt;}
.y72{bottom:545.920000pt;}
.y71{bottom:564.160000pt;}
.y70{bottom:582.720000pt;}
.y6f{bottom:600.960000pt;}
.y6e{bottom:619.520000pt;}
.y6d{bottom:637.760000pt;}
.y1c{bottom:652.000000pt;}
.y6c{bottom:656.320000pt;}
.y1a{bottom:673.333333pt;}
.y6b{bottom:674.560000pt;}
.y6a{bottom:693.120000pt;}
.y19{bottom:699.520000pt;}
.y69{bottom:711.360000pt;}
.y18{bottom:719.040000pt;}
.y68{bottom:729.920000pt;}
.y17{bottom:742.720000pt;}
.y3f{bottom:746.666667pt;}
.y67{bottom:748.160000pt;}
.y16{bottom:761.280000pt;}
.y66{bottom:766.720000pt;}
.y3e{bottom:772.800000pt;}
.y15{bottom:774.080000pt;}
.y65{bottom:784.960000pt;}
.y14{bottom:792.960000pt;}
.y64{bottom:803.520000pt;}
.y13{bottom:813.120000pt;}
.y63{bottom:821.760000pt;}
.y12{bottom:834.560000pt;}
.y62{bottom:840.320000pt;}
.y11{bottom:856.000000pt;}
.y61{bottom:858.560000pt;}
.y9{bottom:910.666667pt;}
.y5{bottom:993.280000pt;}
.h5{height:18.666667pt;}
.h10{height:21.333333pt;}
.ha{height:22.666667pt;}
.h2{height:28.441875pt;}
.hf{height:30.360000pt;}
.h6{height:35.831250pt;}
.hb{height:39.138750pt;}
.h12{height:42.320000pt;}
.h3{height:42.656250pt;}
.hd{height:46.068750pt;}
.h4{height:46.875000pt;}
.h9{height:46.906250pt;}
.h1{height:52.000000pt;}
.he{height:52.120000pt;}
.h8{height:62.435625pt;}
.h13{height:65.333333pt;}
.hc{height:66.373750pt;}
.h7{height:105.333333pt;}
.h14{height:425.333333pt;}
.h11{height:426.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:14.666667pt;}
.w4{width:78.666667pt;}
.w6{width:200.000000pt;}
.w7{width:466.666667pt;}
.w1{width:544.000000pt;}
.w3{width:590.666667pt;}
.w5{width:665.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.394219pt;}
.x13{left:8.213205pt;}
.x9{left:10.026699pt;}
.x14{left:45.396181pt;}
.x4{left:51.581707pt;}
.x12{left:74.666667pt;}
.x18{left:96.798176pt;}
.xb{left:104.231136pt;}
.x10{left:112.938144pt;}
.x1{left:117.333333pt;}
.x1b{left:122.786464pt;}
.x17{left:132.832672pt;}
.xc{left:153.668608pt;}
.x3{left:159.818667pt;}
.x5{left:178.186848pt;}
.x8{left:189.333333pt;}
.x16{left:200.973227pt;}
.x19{left:237.299488pt;}
.x1a{left:240.263317pt;}
.x15{left:273.333333pt;}
.xd{left:276.382816pt;}
.xf{left:322.711680pt;}
.x11{left:329.658240pt;}
.x1c{left:339.107520pt;}
.xe{left:407.920000pt;}
.x7{left:696.000000pt;}
.xa{left:701.333333pt;}
.x6{left:716.320000pt;}
}




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