
    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_f02efb023b33e2bffa14c570.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a20b33a00126c86c7956d898.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0bd336ac41a8255a665f4b9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c3c33513d9066a86011a3c75.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_be43d5c4fc1ee02e8aa63d49.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_199d1a6f768e651788ce142a.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.955078;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);}
.v9{vertical-align:-28.800000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-12.960000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:23.040000px;}
.v8{vertical-align:49.680000px;}
.v7{vertical-align:69.840000px;}
.v6{vertical-align:80.640000px;}
.ls1d{letter-spacing:-7.560000px;}
.lsc{letter-spacing:-1.056000px;}
.lsb{letter-spacing:-0.774000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.385800px;}
.lsa{letter-spacing:-0.334200px;}
.ls8{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.270000px;}
.ls1b{letter-spacing:-0.219000px;}
.ls21{letter-spacing:-0.208200px;}
.ls5{letter-spacing:-0.178800px;}
.ls6{letter-spacing:-0.051840px;}
.ls20{letter-spacing:-0.037440px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012000px;}
.ls1f{letter-spacing:0.051840px;}
.lse{letter-spacing:0.097920px;}
.ls7{letter-spacing:0.132480px;}
.ls9{letter-spacing:0.166800px;}
.ls18{letter-spacing:0.167040px;}
.ls0{letter-spacing:0.178560px;}
.ls4{letter-spacing:0.178800px;}
.ls1c{letter-spacing:0.219000px;}
.ls19{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.104000px;}
.ls13{letter-spacing:1.323360px;}
.ls1{letter-spacing:1.440000px;}
.ls17{letter-spacing:1.529280px;}
.lsd{letter-spacing:2.536560px;}
.ls15{letter-spacing:2.763360px;}
.ls16{letter-spacing:4.320000px;}
.ls12{letter-spacing:13.440000px;}
.ls14{letter-spacing:33.937920px;}
.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:-63.360000px;}
.wsc{word-spacing:-45.360000px;}
.wsb{word-spacing:-45.090000px;}
.wsd{word-spacing:-36.000000px;}
.ws14{word-spacing:-24.300000px;}
.ws13{word-spacing:-23.902560px;}
.ws15{word-spacing:-23.731800px;}
.wsf{word-spacing:-16.059000px;}
.ws5{word-spacing:-16.006800px;}
.ws12{word-spacing:-15.891840px;}
.ws0{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.788160px;}
.wse{word-spacing:-15.621000px;}
.ws6{word-spacing:-15.505800px;}
.ws11{word-spacing:-15.454200px;}
.ws7{word-spacing:-15.066000px;}
.ws8{word-spacing:-14.784000px;}
.ws9{word-spacing:-11.160000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.261200px;}
.ws10{word-spacing:-8.280000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-8.173440px;}
._12{margin-left:-6.613440px;}
._2{margin-left:-5.448960px;}
._5{margin-left:-4.055040px;}
._1{margin-left:-2.217600px;}
._0{margin-left:-1.013760px;}
._4{width:1.203840px;}
._6{width:2.344320px;}
._9{width:3.997440px;}
._8{width:5.195520px;}
._7{width:7.096320px;}
._a{width:8.363520px;}
._b{width:9.377280px;}
._d{width:10.517760px;}
._c{width:11.658240px;}
._e{width:13.178880px;}
._f{width:14.572800px;}
._10{width:17.700480px;}
._15{width:24.773760px;}
._14{width:26.104320px;}
._13{width:91.146240px;}
._11{width:122.826240px;}
._16{width:848.460000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:45.360000px;}
.fs0{font-size:63.360000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye7{bottom:6.120000px;}
.yeb{bottom:6.150000px;}
.yf6{bottom:24.300000px;}
.yfc{bottom:32.940000px;}
.ydd{bottom:33.120000px;}
.ye2{bottom:33.165000px;}
.yed{bottom:33.300000px;}
.yff{bottom:36.354000px;}
.yf3{bottom:36.360000px;}
.ydf{bottom:36.540000px;}
.ydc{bottom:38.700000px;}
.ye3{bottom:40.545000px;}
.yfe{bottom:72.714000px;}
.yde{bottom:72.720000px;}
.yf9{bottom:72.765000px;}
.y31{bottom:90.396000px;}
.y52{bottom:92.556000px;}
.yb8{bottom:92.736000px;}
.ycc{bottom:95.796000px;}
.y76{bottom:101.016000px;}
.y91{bottom:101.196000px;}
.y5e{bottom:103.896000px;}
.y44{bottom:107.496000px;}
.yf2{bottom:108.945000px;}
.y100{bottom:116.316000px;}
.y19{bottom:119.916000px;}
.ya0{bottom:120.276000px;}
.y87{bottom:122.436000px;}
.y30{bottom:126.576000px;}
.y51{bottom:128.736000px;}
.yfd{bottom:131.076000px;}
.y75{bottom:137.376000px;}
.y90{bottom:137.556000px;}
.y5d{bottom:140.076000px;}
.y43{bottom:143.676000px;}
.yb7{bottom:143.856000px;}
.ycb{bottom:146.916000px;}
.y18{bottom:156.090000px;}
.y9f{bottom:156.630000px;}
.y50{bottom:164.910000px;}
.yf4{bottom:169.590000px;}
.yda{bottom:171.210000px;}
.y74{bottom:173.550000px;}
.y86{bottom:173.730000px;}
.y5c{bottom:176.430000px;}
.y2f{bottom:177.870000px;}
.y42{bottom:179.850000px;}
.yb6{bottom:180.210000px;}
.yf1{bottom:184.350000px;}
.y17{bottom:192.450000px;}
.ye5{bottom:198.030000px;}
.yca{bottom:198.210000px;}
.y4f{bottom:201.090000px;}
.yd9{bottom:207.390000px;}
.y73{bottom:209.730000px;}
.y85{bottom:209.910000px;}
.ye4{bottom:212.790000px;}
.y92{bottom:216.210000px;}
.yb5{bottom:216.390000px;}
.yfb{bottom:218.550000px;}
.y5b{bottom:227.550000px;}
.y16{bottom:228.630000px;}
.y2e{bottom:228.990000px;}
.y41{bottom:231.150000px;}
.yc9{bottom:234.390000px;}
.y4e{bottom:237.450000px;}
.y9e{bottom:243.570000px;}
.y84{bottom:246.090000px;}
.yd8{bottom:258.690000px;}
.y72{bottom:261.030000px;}
.y8f{bottom:261.210000px;}
.y5a{bottom:263.730000px;}
.ye1{bottom:264.090000px;}
.y15{bottom:264.810000px;}
.y40{bottom:267.330000px;}
.yb4{bottom:267.690000px;}
.yc8{bottom:270.570000px;}
.y9d{bottom:279.795000px;}
.y2d{bottom:280.335000px;}
.y83{bottom:282.495000px;}
.y4d{bottom:288.615000px;}
.yd7{bottom:294.915000px;}
.y8e{bottom:297.435000px;}
.y59{bottom:300.135000px;}
.y14{bottom:301.035000px;}
.y3f{bottom:303.735000px;}
.yb3{bottom:303.915000px;}
.yf0{bottom:308.055000px;}
.y71{bottom:312.195000px;}
.y2c{bottom:316.515000px;}
.yc7{bottom:317.415000px;}
.y82{bottom:318.675000px;}
.y9c{bottom:331.095000px;}
.y8d{bottom:333.615000px;}
.y58{bottom:336.315000px;}
.y13{bottom:337.395000px;}
.y3e{bottom:339.915000px;}
.yb2{bottom:340.095000px;}
.y70{bottom:348.555000px;}
.y2b{bottom:352.695000px;}
.y81{bottom:354.855000px;}
.yc6{bottom:364.035000px;}
.y9b{bottom:367.275000px;}
.y8c{bottom:369.795000px;}
.y57{bottom:372.495000px;}
.y3d{bottom:376.095000px;}
.yd6{bottom:382.395000px;}
.y12{bottom:388.515000px;}
.y2a{bottom:389.415000px;}
.y80{bottom:391.035000px;}
.yb1{bottom:391.395000px;}
.y6f{bottom:399.675000px;}
.yc5{bottom:400.395000px;}
.y9a{bottom:403.455000px;}
.y8b{bottom:406.155000px;}
.y3c{bottom:412.275000px;}
.yd2{bottom:418.575000px;}
.y56{bottom:423.795000px;}
.y29{bottom:425.955000px;}
.y7f{bottom:427.395000px;}
.yb0{bottom:427.575000px;}
.y6e{bottom:435.855000px;}
.yc4{bottom:436.575000px;}
.y11{bottom:439.815000px;}
.y8a{bottom:442.335000px;}
.y3b{bottom:448.455000px;}
.y99{bottom:454.755000px;}
.y7e{bottom:463.575000px;}
.yaf{bottom:463.755000px;}
.yd5{bottom:469.695000px;}
.y6d{bottom:472.215000px;}
.y55{bottom:476.895000px;}
.y28{bottom:477.075000px;}
.y89{bottom:478.515000px;}
.yc3{bottom:483.195000px;}
.y10{bottom:490.935000px;}
.y3a{bottom:499.755000px;}
.yd1{bottom:506.055000px;}
.y6c{bottom:508.395000px;}
.y27{bottom:513.255000px;}
.y88{bottom:514.695000px;}
.yae{bottom:515.055000px;}
.yc2{bottom:519.555000px;}
.yf{bottom:527.115000px;}
.y54{bottom:529.815000px;}
.y7d{bottom:535.935000px;}
.yea{bottom:536.295000px;}
.y98{bottom:542.265000px;}
.yf5{bottom:543.525000px;}
.y6b{bottom:544.605000px;}
.ye9{bottom:544.785000px;}
.y26{bottom:550.185000px;}
.y39{bottom:551.085000px;}
.yad{bottom:551.265000px;}
.yc1{bottom:555.765000px;}
.yd4{bottom:557.205000px;}
.ye{bottom:563.505000px;}
.y53{bottom:566.025000px;}
.y7c{bottom:572.145000px;}
.y97{bottom:578.445000px;}
.y25{bottom:587.085000px;}
.y38{bottom:587.265000px;}
.yac{bottom:587.445000px;}
.yd3{bottom:593.385000px;}
.y6a{bottom:595.905000px;}
.yd{bottom:599.685000px;}
.y4c{bottom:602.205000px;}
.yc0{bottom:602.385000px;}
.y7b{bottom:608.505000px;}
.ye0{bottom:617.325000px;}
.y24{bottom:623.445000px;}
.yab{bottom:623.625000px;}
.y96{bottom:629.745000px;}
.y69{bottom:632.085000px;}
.yc{bottom:635.865000px;}
.y4b{bottom:638.385000px;}
.ybf{bottom:638.745000px;}
.y7a{bottom:644.685000px;}
.y23{bottom:659.625000px;}
.y95{bottom:665.925000px;}
.y68{bottom:668.265000px;}
.yb{bottom:672.045000px;}
.y4a{bottom:674.745000px;}
.yaa{bottom:674.925000px;}
.y79{bottom:680.865000px;}
.y104{bottom:683.925000px;}
.ybe{bottom:685.365000px;}
.y22{bottom:695.985000px;}
.yd0{bottom:702.105000px;}
.y67{bottom:704.445000px;}
.yef{bottom:705.885000px;}
.ya{bottom:708.405000px;}
.y49{bottom:710.925000px;}
.ya9{bottom:711.105000px;}
.y94{bottom:717.045000px;}
.ydb{bottom:719.565000px;}
.yee{bottom:720.645000px;}
.ybd{bottom:721.545000px;}
.y21{bottom:732.165000px;}
.y103{bottom:735.045000px;}
.y66{bottom:740.805000px;}
.yfa{bottom:743.685000px;}
.y93{bottom:753.405000px;}
.ybc{bottom:757.905000px;}
.yf8{bottom:758.445000px;}
.y9{bottom:759.525000px;}
.y48{bottom:762.045000px;}
.ya8{bottom:762.405000px;}
.y20{bottom:768.345000px;}
.y102{bottom:771.225000px;}
.y65{bottom:776.985000px;}
.y78{bottom:783.285000px;}
.ycf{bottom:789.585000px;}
.y47{bottom:798.405000px;}
.ya7{bottom:798.630000px;}
.y1f{bottom:804.570000px;}
.yec{bottom:808.170000px;}
.ybb{bottom:809.070000px;}
.y8{bottom:810.870000px;}
.y64{bottom:813.210000px;}
.y7{bottom:816.090000px;}
.y101{bottom:819.330000px;}
.y77{bottom:819.690000px;}
.y46{bottom:834.630000px;}
.ya6{bottom:834.810000px;}
.y1e{bottom:840.750000px;}
.yba{bottom:845.250000px;}
.yf7{bottom:845.970000px;}
.y37{bottom:855.870000px;}
.y6{bottom:861.990000px;}
.y63{bottom:864.510000px;}
.y45{bottom:870.810000px;}
.yce{bottom:877.110000px;}
.yb9{bottom:881.610000px;}
.ya5{bottom:886.110000px;}
.y1d{bottom:892.050000px;}
.y5{bottom:898.350000px;}
.y36{bottom:906.990000px;}
.ycd{bottom:913.290000px;}
.y62{bottom:915.630000px;}
.ya4{bottom:922.290000px;}
.y1c{bottom:928.230000px;}
.y35{bottom:943.350000px;}
.y4{bottom:949.470000px;}
.y61{bottom:951.810000px;}
.ya3{bottom:958.470000px;}
.y1b{bottom:964.410000px;}
.y34{bottom:979.530000px;}
.y3{bottom:985.650000px;}
.y1a{bottom:1000.770000px;}
.ya2{bottom:1005.270000px;}
.ye6{bottom:1007.070000px;}
.ye8{bottom:1007.610000px;}
.y33{bottom:1015.710000px;}
.y5f{bottom:1018.770000px;}
.y60{bottom:1025.970000px;}
.y2{bottom:1036.950000px;}
.ya1{bottom:1041.450000px;}
.y32{bottom:1051.890000px;}
.y1{bottom:1088.280000px;}
.hd{height:28.620000px;}
.hf{height:28.656000px;}
.h4{height:42.975000px;}
.h14{height:46.800000px;}
.hc{height:51.300000px;}
.h3{height:62.153438px;}
.h2{height:62.184375px;}
.h1{height:63.855000px;}
.ha{height:87.480000px;}
.h11{height:87.516000px;}
.he{height:93.983203px;}
.h8{height:103.738008px;}
.h5{height:111.715312px;}
.h7{height:113.154609px;}
.h13{height:123.696000px;}
.h6{height:144.114609px;}
.h15{height:257.070000px;}
.h10{height:294.870000px;}
.hb{height:316.875000px;}
.h9{height:332.130000px;}
.h12{height:361.470000px;}
.h16{height:488.595000px;}
.h0{height:1188.000000px;}
.w8{width:48.960000px;}
.w7{width:48.996000px;}
.wa{width:49.176000px;}
.w3{width:374.115000px;}
.w5{width:377.175000px;}
.w9{width:745.350000px;}
.w4{width:748.230000px;}
.w6{width:751.290000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:8.136000px;}
.x16{left:10.845000px;}
.xa{left:34.199973px;}
.x9{left:42.119973px;}
.x2{left:50.039973px;}
.x3{left:57.959986px;}
.x1{left:84.959986px;}
.x1a{left:87.300000px;}
.x4{left:93.599986px;}
.x6{left:131.255986px;}
.x19{left:159.330000px;}
.x1c{left:284.430000px;}
.x15{left:292.170000px;}
.x7{left:298.874986px;}
.xc{left:324.434986px;}
.xb{left:346.394986px;}
.x10{left:351.075000px;}
.x8{left:355.934986px;}
.x12{left:359.175000px;}
.x5{left:373.394986px;}
.x11{left:459.075000px;}
.x13{left:470.235000px;}
.xd{left:495.974986px;}
.xe{left:512.384986px;}
.xf{left:526.784986px;}
.x1b{left:548.205000px;}
.x1e{left:549.465000px;}
.x1f{left:634.424986px;}
.x1d{left:658.905000px;}
.x17{left:680.145000px;}
.x18{left:777.390000px;}
@media print{
.v9{vertical-align:-25.600000pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-11.520000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:20.480000pt;}
.v8{vertical-align:44.160000pt;}
.v7{vertical-align:62.080000pt;}
.v6{vertical-align:71.680000pt;}
.ls1d{letter-spacing:-6.720000pt;}
.lsc{letter-spacing:-0.938667pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.342933pt;}
.lsa{letter-spacing:-0.297067pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls1b{letter-spacing:-0.194667pt;}
.ls21{letter-spacing:-0.185067pt;}
.ls5{letter-spacing:-0.158933pt;}
.ls6{letter-spacing:-0.046080pt;}
.ls20{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.010667pt;}
.ls1f{letter-spacing:0.046080pt;}
.lse{letter-spacing:0.087040pt;}
.ls7{letter-spacing:0.117760pt;}
.ls9{letter-spacing:0.148267pt;}
.ls18{letter-spacing:0.148480pt;}
.ls0{letter-spacing:0.158720pt;}
.ls4{letter-spacing:0.158933pt;}
.ls1c{letter-spacing:0.194667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.981333pt;}
.ls13{letter-spacing:1.176320pt;}
.ls1{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.359360pt;}
.lsd{letter-spacing:2.254720pt;}
.ls15{letter-spacing:2.456320pt;}
.ls16{letter-spacing:3.840000pt;}
.ls12{letter-spacing:11.946667pt;}
.ls14{letter-spacing:30.167040pt;}
.wsa{word-spacing:-56.320000pt;}
.wsc{word-spacing:-40.320000pt;}
.wsb{word-spacing:-40.080000pt;}
.wsd{word-spacing:-32.000000pt;}
.ws14{word-spacing:-21.600000pt;}
.ws13{word-spacing:-21.246720pt;}
.ws15{word-spacing:-21.094933pt;}
.wsf{word-spacing:-14.274667pt;}
.ws5{word-spacing:-14.228267pt;}
.ws12{word-spacing:-14.126080pt;}
.ws0{word-spacing:-14.080000pt;}
.ws3{word-spacing:-14.033920pt;}
.wse{word-spacing:-13.885333pt;}
.ws6{word-spacing:-13.782933pt;}
.ws11{word-spacing:-13.737067pt;}
.ws7{word-spacing:-13.392000pt;}
.ws8{word-spacing:-13.141333pt;}
.ws9{word-spacing:-9.920000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.121067pt;}
.ws10{word-spacing:-7.360000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-7.265280pt;}
._12{margin-left:-5.878613pt;}
._2{margin-left:-4.843520pt;}
._5{margin-left:-3.604480pt;}
._1{margin-left:-1.971200pt;}
._0{margin-left:-0.901120pt;}
._4{width:1.070080pt;}
._6{width:2.083840pt;}
._9{width:3.553280pt;}
._8{width:4.618240pt;}
._7{width:6.307840pt;}
._a{width:7.434240pt;}
._b{width:8.335360pt;}
._d{width:9.349120pt;}
._c{width:10.362880pt;}
._e{width:11.714560pt;}
._f{width:12.953600pt;}
._10{width:15.733760pt;}
._15{width:22.021120pt;}
._14{width:23.203840pt;}
._13{width:81.018880pt;}
._11{width:109.178880pt;}
._16{width:754.186667pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:40.320000pt;}
.fs0{font-size:56.320000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye7{bottom:5.440000pt;}
.yeb{bottom:5.466667pt;}
.yf6{bottom:21.600000pt;}
.yfc{bottom:29.280000pt;}
.ydd{bottom:29.440000pt;}
.ye2{bottom:29.480000pt;}
.yed{bottom:29.600000pt;}
.yff{bottom:32.314667pt;}
.yf3{bottom:32.320000pt;}
.ydf{bottom:32.480000pt;}
.ydc{bottom:34.400000pt;}
.ye3{bottom:36.040000pt;}
.yfe{bottom:64.634667pt;}
.yde{bottom:64.640000pt;}
.yf9{bottom:64.680000pt;}
.y31{bottom:80.352000pt;}
.y52{bottom:82.272000pt;}
.yb8{bottom:82.432000pt;}
.ycc{bottom:85.152000pt;}
.y76{bottom:89.792000pt;}
.y91{bottom:89.952000pt;}
.y5e{bottom:92.352000pt;}
.y44{bottom:95.552000pt;}
.yf2{bottom:96.840000pt;}
.y100{bottom:103.392000pt;}
.y19{bottom:106.592000pt;}
.ya0{bottom:106.912000pt;}
.y87{bottom:108.832000pt;}
.y30{bottom:112.512000pt;}
.y51{bottom:114.432000pt;}
.yfd{bottom:116.512000pt;}
.y75{bottom:122.112000pt;}
.y90{bottom:122.272000pt;}
.y5d{bottom:124.512000pt;}
.y43{bottom:127.712000pt;}
.yb7{bottom:127.872000pt;}
.ycb{bottom:130.592000pt;}
.y18{bottom:138.746667pt;}
.y9f{bottom:139.226667pt;}
.y50{bottom:146.586667pt;}
.yf4{bottom:150.746667pt;}
.yda{bottom:152.186667pt;}
.y74{bottom:154.266667pt;}
.y86{bottom:154.426667pt;}
.y5c{bottom:156.826667pt;}
.y2f{bottom:158.106667pt;}
.y42{bottom:159.866667pt;}
.yb6{bottom:160.186667pt;}
.yf1{bottom:163.866667pt;}
.y17{bottom:171.066667pt;}
.ye5{bottom:176.026667pt;}
.yca{bottom:176.186667pt;}
.y4f{bottom:178.746667pt;}
.yd9{bottom:184.346667pt;}
.y73{bottom:186.426667pt;}
.y85{bottom:186.586667pt;}
.ye4{bottom:189.146667pt;}
.y92{bottom:192.186667pt;}
.yb5{bottom:192.346667pt;}
.yfb{bottom:194.266667pt;}
.y5b{bottom:202.266667pt;}
.y16{bottom:203.226667pt;}
.y2e{bottom:203.546667pt;}
.y41{bottom:205.466667pt;}
.yc9{bottom:208.346667pt;}
.y4e{bottom:211.066667pt;}
.y9e{bottom:216.506667pt;}
.y84{bottom:218.746667pt;}
.yd8{bottom:229.946667pt;}
.y72{bottom:232.026667pt;}
.y8f{bottom:232.186667pt;}
.y5a{bottom:234.426667pt;}
.ye1{bottom:234.746667pt;}
.y15{bottom:235.386667pt;}
.y40{bottom:237.626667pt;}
.yb4{bottom:237.946667pt;}
.yc8{bottom:240.506667pt;}
.y9d{bottom:248.706667pt;}
.y2d{bottom:249.186667pt;}
.y83{bottom:251.106667pt;}
.y4d{bottom:256.546667pt;}
.yd7{bottom:262.146667pt;}
.y8e{bottom:264.386667pt;}
.y59{bottom:266.786667pt;}
.y14{bottom:267.586667pt;}
.y3f{bottom:269.986667pt;}
.yb3{bottom:270.146667pt;}
.yf0{bottom:273.826667pt;}
.y71{bottom:277.506667pt;}
.y2c{bottom:281.346667pt;}
.yc7{bottom:282.146667pt;}
.y82{bottom:283.266667pt;}
.y9c{bottom:294.306667pt;}
.y8d{bottom:296.546667pt;}
.y58{bottom:298.946667pt;}
.y13{bottom:299.906667pt;}
.y3e{bottom:302.146667pt;}
.yb2{bottom:302.306667pt;}
.y70{bottom:309.826667pt;}
.y2b{bottom:313.506667pt;}
.y81{bottom:315.426667pt;}
.yc6{bottom:323.586667pt;}
.y9b{bottom:326.466667pt;}
.y8c{bottom:328.706667pt;}
.y57{bottom:331.106667pt;}
.y3d{bottom:334.306667pt;}
.yd6{bottom:339.906667pt;}
.y12{bottom:345.346667pt;}
.y2a{bottom:346.146667pt;}
.y80{bottom:347.586667pt;}
.yb1{bottom:347.906667pt;}
.y6f{bottom:355.266667pt;}
.yc5{bottom:355.906667pt;}
.y9a{bottom:358.626667pt;}
.y8b{bottom:361.026667pt;}
.y3c{bottom:366.466667pt;}
.yd2{bottom:372.066667pt;}
.y56{bottom:376.706667pt;}
.y29{bottom:378.626667pt;}
.y7f{bottom:379.906667pt;}
.yb0{bottom:380.066667pt;}
.y6e{bottom:387.426667pt;}
.yc4{bottom:388.066667pt;}
.y11{bottom:390.946667pt;}
.y8a{bottom:393.186667pt;}
.y3b{bottom:398.626667pt;}
.y99{bottom:404.226667pt;}
.y7e{bottom:412.066667pt;}
.yaf{bottom:412.226667pt;}
.yd5{bottom:417.506667pt;}
.y6d{bottom:419.746667pt;}
.y55{bottom:423.906667pt;}
.y28{bottom:424.066667pt;}
.y89{bottom:425.346667pt;}
.yc3{bottom:429.506667pt;}
.y10{bottom:436.386667pt;}
.y3a{bottom:444.226667pt;}
.yd1{bottom:449.826667pt;}
.y6c{bottom:451.906667pt;}
.y27{bottom:456.226667pt;}
.y88{bottom:457.506667pt;}
.yae{bottom:457.826667pt;}
.yc2{bottom:461.826667pt;}
.yf{bottom:468.546667pt;}
.y54{bottom:470.946667pt;}
.y7d{bottom:476.386667pt;}
.yea{bottom:476.706667pt;}
.y98{bottom:482.013333pt;}
.yf5{bottom:483.133333pt;}
.y6b{bottom:484.093333pt;}
.ye9{bottom:484.253333pt;}
.y26{bottom:489.053333pt;}
.y39{bottom:489.853333pt;}
.yad{bottom:490.013333pt;}
.yc1{bottom:494.013333pt;}
.yd4{bottom:495.293333pt;}
.ye{bottom:500.893333pt;}
.y53{bottom:503.133333pt;}
.y7c{bottom:508.573333pt;}
.y97{bottom:514.173333pt;}
.y25{bottom:521.853333pt;}
.y38{bottom:522.013333pt;}
.yac{bottom:522.173333pt;}
.yd3{bottom:527.453333pt;}
.y6a{bottom:529.693333pt;}
.yd{bottom:533.053333pt;}
.y4c{bottom:535.293333pt;}
.yc0{bottom:535.453333pt;}
.y7b{bottom:540.893333pt;}
.ye0{bottom:548.733333pt;}
.y24{bottom:554.173333pt;}
.yab{bottom:554.333333pt;}
.y96{bottom:559.773333pt;}
.y69{bottom:561.853333pt;}
.yc{bottom:565.213333pt;}
.y4b{bottom:567.453333pt;}
.ybf{bottom:567.773333pt;}
.y7a{bottom:573.053333pt;}
.y23{bottom:586.333333pt;}
.y95{bottom:591.933333pt;}
.y68{bottom:594.013333pt;}
.yb{bottom:597.373333pt;}
.y4a{bottom:599.773333pt;}
.yaa{bottom:599.933333pt;}
.y79{bottom:605.213333pt;}
.y104{bottom:607.933333pt;}
.ybe{bottom:609.213333pt;}
.y22{bottom:618.653333pt;}
.yd0{bottom:624.093333pt;}
.y67{bottom:626.173333pt;}
.yef{bottom:627.453333pt;}
.ya{bottom:629.693333pt;}
.y49{bottom:631.933333pt;}
.ya9{bottom:632.093333pt;}
.y94{bottom:637.373333pt;}
.ydb{bottom:639.613333pt;}
.yee{bottom:640.573333pt;}
.ybd{bottom:641.373333pt;}
.y21{bottom:650.813333pt;}
.y103{bottom:653.373333pt;}
.y66{bottom:658.493333pt;}
.yfa{bottom:661.053333pt;}
.y93{bottom:669.693333pt;}
.ybc{bottom:673.693333pt;}
.yf8{bottom:674.173333pt;}
.y9{bottom:675.133333pt;}
.y48{bottom:677.373333pt;}
.ya8{bottom:677.693333pt;}
.y20{bottom:682.973333pt;}
.y102{bottom:685.533333pt;}
.y65{bottom:690.653333pt;}
.y78{bottom:696.253333pt;}
.ycf{bottom:701.853333pt;}
.y47{bottom:709.693333pt;}
.ya7{bottom:709.893333pt;}
.y1f{bottom:715.173333pt;}
.yec{bottom:718.373333pt;}
.ybb{bottom:719.173333pt;}
.y8{bottom:720.773333pt;}
.y64{bottom:722.853333pt;}
.y7{bottom:725.413333pt;}
.y101{bottom:728.293333pt;}
.y77{bottom:728.613333pt;}
.y46{bottom:741.893333pt;}
.ya6{bottom:742.053333pt;}
.y1e{bottom:747.333333pt;}
.yba{bottom:751.333333pt;}
.yf7{bottom:751.973333pt;}
.y37{bottom:760.773333pt;}
.y6{bottom:766.213333pt;}
.y63{bottom:768.453333pt;}
.y45{bottom:774.053333pt;}
.yce{bottom:779.653333pt;}
.yb9{bottom:783.653333pt;}
.ya5{bottom:787.653333pt;}
.y1d{bottom:792.933333pt;}
.y5{bottom:798.533333pt;}
.y36{bottom:806.213333pt;}
.ycd{bottom:811.813333pt;}
.y62{bottom:813.893333pt;}
.ya4{bottom:819.813333pt;}
.y1c{bottom:825.093333pt;}
.y35{bottom:838.533333pt;}
.y4{bottom:843.973333pt;}
.y61{bottom:846.053333pt;}
.ya3{bottom:851.973333pt;}
.y1b{bottom:857.253333pt;}
.y34{bottom:870.693333pt;}
.y3{bottom:876.133333pt;}
.y1a{bottom:889.573333pt;}
.ya2{bottom:893.573333pt;}
.ye6{bottom:895.173333pt;}
.ye8{bottom:895.653333pt;}
.y33{bottom:902.853333pt;}
.y5f{bottom:905.573333pt;}
.y60{bottom:911.973333pt;}
.y2{bottom:921.733333pt;}
.ya1{bottom:925.733333pt;}
.y32{bottom:935.013333pt;}
.y1{bottom:967.360000pt;}
.hd{height:25.440000pt;}
.hf{height:25.472000pt;}
.h4{height:38.200000pt;}
.h14{height:41.600000pt;}
.hc{height:45.600000pt;}
.h3{height:55.247500pt;}
.h2{height:55.275000pt;}
.h1{height:56.760000pt;}
.ha{height:77.760000pt;}
.h11{height:77.792000pt;}
.he{height:83.540625pt;}
.h8{height:92.211562pt;}
.h5{height:99.302500pt;}
.h7{height:100.581875pt;}
.h13{height:109.952000pt;}
.h6{height:128.101875pt;}
.h15{height:228.506667pt;}
.h10{height:262.106667pt;}
.hb{height:281.666667pt;}
.h9{height:295.226667pt;}
.h12{height:321.306667pt;}
.h16{height:434.306667pt;}
.h0{height:1056.000000pt;}
.w8{width:43.520000pt;}
.w7{width:43.552000pt;}
.wa{width:43.712000pt;}
.w3{width:332.546667pt;}
.w5{width:335.266667pt;}
.w9{width:662.533333pt;}
.w4{width:665.093333pt;}
.w6{width:667.813333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.232000pt;}
.x16{left:9.640000pt;}
.xa{left:30.399976pt;}
.x9{left:37.439976pt;}
.x2{left:44.479976pt;}
.x3{left:51.519988pt;}
.x1{left:75.519988pt;}
.x1a{left:77.600000pt;}
.x4{left:83.199988pt;}
.x6{left:116.671988pt;}
.x19{left:141.626667pt;}
.x1c{left:252.826667pt;}
.x15{left:259.706667pt;}
.x7{left:265.666655pt;}
.xc{left:288.386655pt;}
.xb{left:307.906655pt;}
.x10{left:312.066667pt;}
.x8{left:316.386655pt;}
.x12{left:319.266667pt;}
.x5{left:331.906655pt;}
.x11{left:408.066667pt;}
.x13{left:417.986667pt;}
.xd{left:440.866655pt;}
.xe{left:455.453321pt;}
.xf{left:468.253321pt;}
.x1b{left:487.293333pt;}
.x1e{left:488.413333pt;}
.x1f{left:563.933321pt;}
.x1d{left:585.693333pt;}
.x17{left:604.573333pt;}
.x18{left:691.013333pt;}
}




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