
    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_aff0122e6a36ce516d9e9bf0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_d2acae345da9292d23653423.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_4709c5afb2749afacf3995ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_22d84b0a772e53530ecd2d21.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_327a1d06d3e28bfa84c8def5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_5d80abc6aed138de041f765d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_18818a3abae15572df9504e5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d772c0760a0b1f00c20968cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_f9021e6aba0c4c75cc60e51f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_ce76381cae0becaf4a4e7c55.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_e0773a8ff2f8d699ca7d04f8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;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_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.332000px;}
.ls3{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.413400px;}
.ls7{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.311040px;}
.lsf{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.978000px;}
.ls14{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.026720px;}
.lsb{letter-spacing:86.580000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-1188.184320px;}
._e{margin-left:-859.232160px;}
._c{margin-left:-742.440000px;}
._6{margin-left:-681.448320px;}
._f{margin-left:-413.280000px;}
._7{margin-left:-262.517760px;}
._9{margin-left:-238.180320px;}
._16{margin-left:-232.839360px;}
._14{margin-left:-231.288000px;}
._a{margin-left:-164.160000px;}
._8{margin-left:-140.955840px;}
._13{margin-left:-115.176000px;}
._12{margin-left:-99.360000px;}
._11{margin-left:-82.800000px;}
._b{margin-left:-66.240000px;}
._10{margin-left:-33.120000px;}
._31{margin-left:-8.363520px;}
._1b{margin-left:-7.160400px;}
._23{margin-left:-5.491680px;}
._1a{margin-left:-4.380480px;}
._1{margin-left:-3.116880px;}
._0{margin-left:-1.347840px;}
._2{width:1.374720px;}
._19{width:2.979600px;}
._22{width:4.104960px;}
._27{width:5.121840px;}
._18{width:6.122640px;}
._28{width:7.146960px;}
._25{width:8.187120px;}
._24{width:9.262800px;}
._26{width:10.458000px;}
._17{width:12.130560px;}
._21{width:13.625280px;}
._20{width:16.732560px;}
._15{width:18.216000px;}
._30{width:19.263840px;}
._1f{width:20.437920px;}
._1e{width:21.692880px;}
._33{width:22.828080px;}
._32{width:23.865120px;}
._1d{width:25.026720px;}
._1c{width:26.573760px;}
._37{width:58.164240px;}
._36{width:62.649360px;}
._38{width:65.303760px;}
._29{width:68.690160px;}
._2b{width:78.670080px;}
._34{width:87.330240px;}
._35{width:88.660320px;}
._2e{width:105.690960px;}
._2c{width:118.957680px;}
._2d{width:162.017760px;}
._2f{width:185.614560px;}
._2a{width:201.060000px;}
._4{width:337.140000px;}
._39{width:458.909760px;}
._3{width:715.653600px;}
._5{width:1341.536640px;}
.fc5{color:rgb(15,36,62);}
.fc4{color:rgb(84,141,212);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:5.760000px;}
.y7e{bottom:5.940000px;}
.y6c{bottom:7.200000px;}
.y16{bottom:7.560000px;}
.y6f{bottom:7.740000px;}
.y71{bottom:8.460000px;}
.y6e{bottom:9.540000px;}
.y7c{bottom:10.440000px;}
.y6{bottom:11.700000px;}
.y74{bottom:12.270000px;}
.y80{bottom:14.940000px;}
.y82{bottom:15.120000px;}
.y7d{bottom:15.840000px;}
.y6a{bottom:17.460000px;}
.y75{bottom:18.930000px;}
.y29{bottom:25.740000px;}
.y7a{bottom:30.600000px;}
.y73{bottom:32.070000px;}
.y5{bottom:40.320000px;}
.y28{bottom:45.540000px;}
.ya{bottom:61.380000px;}
.y27{bottom:65.340000px;}
.y4{bottom:68.940000px;}
.y26{bottom:85.140000px;}
.y87{bottom:87.660000px;}
.y99{bottom:89.280000px;}
.y8{bottom:90.030000px;}
.y78{bottom:90.720000px;}
.y3{bottom:97.590000px;}
.y90{bottom:100.080000px;}
.y3a{bottom:102.960000px;}
.yaa{bottom:103.320000px;}
.y25{bottom:104.940000px;}
.y86{bottom:107.460000px;}
.y98{bottom:109.080000px;}
.y77{bottom:110.520000px;}
.y8f{bottom:120.060000px;}
.y39{bottom:122.760000px;}
.y24{bottom:124.920000px;}
.y85{bottom:127.440000px;}
.y2{bottom:128.550000px;}
.y7{bottom:128.730000px;}
.y97{bottom:129.060000px;}
.y76{bottom:130.320000px;}
.ya9{bottom:136.980000px;}
.y8e{bottom:139.860000px;}
.y38{bottom:142.560000px;}
.y23{bottom:144.720000px;}
.y72{bottom:145.080000px;}
.y84{bottom:147.240000px;}
.y96{bottom:148.860000px;}
.y8d{bottom:159.690000px;}
.y83{bottom:162.030000px;}
.y37{bottom:162.570000px;}
.y22{bottom:164.520000px;}
.y95{bottom:168.690000px;}
.ya8{bottom:170.850000px;}
.y8c{bottom:179.490000px;}
.y36{bottom:182.370000px;}
.y21{bottom:184.320000px;}
.y94{bottom:188.490000px;}
.y70{bottom:191.190000px;}
.y81{bottom:191.730000px;}
.y8b{bottom:199.290000px;}
.y35{bottom:202.170000px;}
.y20{bottom:204.120000px;}
.ya7{bottom:204.510000px;}
.y93{bottom:208.290000px;}
.y6d{bottom:213.690000px;}
.y8a{bottom:219.090000px;}
.y7f{bottom:221.610000px;}
.y34{bottom:221.970000px;}
.y1f{bottom:224.100000px;}
.y92{bottom:228.090000px;}
.y69{bottom:237.990000px;}
.ya6{bottom:238.350000px;}
.y89{bottom:239.070000px;}
.y33{bottom:241.770000px;}
.y1e{bottom:243.930000px;}
.y91{bottom:248.070000px;}
.y79{bottom:251.310000px;}
.y6b{bottom:258.510000px;}
.y32{bottom:261.750000px;}
.y1d{bottom:263.730000px;}
.y88{bottom:267.870000px;}
.ya5{bottom:272.010000px;}
.y31{bottom:281.550000px;}
.y1c{bottom:283.530000px;}
.y68{bottom:287.670000px;}
.y7b{bottom:291.810000px;}
.y30{bottom:301.350000px;}
.y1b{bottom:303.330000px;}
.ya4{bottom:305.670000px;}
.y67{bottom:307.470000px;}
.y2f{bottom:321.150000px;}
.y1a{bottom:323.310000px;}
.y66{bottom:327.270000px;}
.ya3{bottom:339.510000px;}
.y2e{bottom:340.950000px;}
.y19{bottom:343.110000px;}
.y65{bottom:347.250000px;}
.y2d{bottom:360.930000px;}
.y18{bottom:362.910000px;}
.y64{bottom:367.050000px;}
.ya2{bottom:373.170000px;}
.y2c{bottom:380.730000px;}
.y63{bottom:386.850000px;}
.y2b{bottom:400.575000px;}
.y62{bottom:406.695000px;}
.ya1{bottom:407.055000px;}
.y17{bottom:415.335000px;}
.y61{bottom:426.495000px;}
.ya0{bottom:440.715000px;}
.y60{bottom:446.475000px;}
.y5f{bottom:466.275000px;}
.y9f{bottom:474.555000px;}
.y5e{bottom:486.075000px;}
.y5d{bottom:505.875000px;}
.y9e{bottom:508.215000px;}
.y5c{bottom:525.675000px;}
.y9d{bottom:541.875000px;}
.y5b{bottom:545.655000px;}
.y5a{bottom:565.455000px;}
.y9c{bottom:575.715000px;}
.y59{bottom:585.255000px;}
.y58{bottom:605.055000px;}
.y9b{bottom:609.375000px;}
.y57{bottom:624.855000px;}
.y9a{bottom:643.215000px;}
.y56{bottom:644.835000px;}
.y55{bottom:664.665000px;}
.y54{bottom:684.465000px;}
.y53{bottom:704.265000px;}
.y52{bottom:724.065000px;}
.y51{bottom:744.045000px;}
.y50{bottom:763.845000px;}
.y4f{bottom:783.645000px;}
.y15{bottom:793.005000px;}
.y4e{bottom:803.445000px;}
.y4d{bottom:823.245000px;}
.y14{bottom:825.585000px;}
.y4c{bottom:843.225000px;}
.y13{bottom:850.785000px;}
.y4b{bottom:863.025000px;}
.y12{bottom:870.585000px;}
.y4a{bottom:882.825000px;}
.y11{bottom:890.385000px;}
.y49{bottom:902.670000px;}
.y10{bottom:910.230000px;}
.y48{bottom:922.470000px;}
.yf{bottom:925.350000px;}
.y47{bottom:942.450000px;}
.ye{bottom:947.310000px;}
.y46{bottom:962.250000px;}
.yd{bottom:968.550000px;}
.y45{bottom:982.050000px;}
.yc{bottom:990.690000px;}
.y44{bottom:1001.850000px;}
.yb{bottom:1018.410000px;}
.y43{bottom:1021.650000px;}
.y42{bottom:1041.630000px;}
.y9{bottom:1042.530000px;}
.y1{bottom:1059.090000px;}
.y41{bottom:1061.430000px;}
.y40{bottom:1081.230000px;}
.y3f{bottom:1101.030000px;}
.y3e{bottom:1120.830000px;}
.y3d{bottom:1140.810000px;}
.y3c{bottom:1170.540000px;}
.y3b{bottom:1193.580000px;}
.h13{height:19.800000px;}
.h15{height:22.500000px;}
.h12{height:22.680000px;}
.h14{height:23.580000px;}
.hc{height:26.100000px;}
.h18{height:28.980000px;}
.h1a{height:29.160000px;}
.hb{height:34.855313px;}
.h19{height:39.780000px;}
.h9{height:42.164648px;}
.h11{height:43.200000px;}
.h16{height:46.116000px;}
.h7{height:48.418594px;}
.h4{height:48.774375px;}
.h10{height:51.706406px;}
.h5{height:53.015625px;}
.ha{height:53.224453px;}
.hf{height:53.573906px;}
.hd{height:55.735313px;}
.h8{height:59.436914px;}
.h3{height:62.028281px;}
.h6{height:65.884219px;}
.h17{height:69.480000px;}
.h2{height:150.690000px;}
.he{height:376.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:113.940000px;}
.wb{width:123.876000px;}
.w3{width:126.396000px;}
.w11{width:127.656000px;}
.w12{width:133.236000px;}
.w9{width:134.676000px;}
.w8{width:134.820000px;}
.w10{width:138.600000px;}
.we{width:138.636000px;}
.wc{width:146.016000px;}
.w7{width:185.970000px;}
.wf{width:261.615000px;}
.wa{width:269.895000px;}
.w6{width:594.150000px;}
.w2{width:657.150000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x1{left:54.720000px;}
.x5{left:56.520000px;}
.x12{left:80.999987px;}
.x7{left:108.035987px;}
.x8{left:109.476000px;}
.xd{left:119.016000px;}
.xe{left:233.670000px;}
.x9{left:244.290000px;}
.xf{left:373.035000px;}
.xa{left:378.975000px;}
.x11{left:501.405000px;}
.xc{left:502.845000px;}
.x10{left:635.370000px;}
.xb{left:648.870000px;}
.x6{left:650.670000px;}
.x3{left:711.870000px;}
.x4{left:723.389987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-1.184000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.367467pt;}
.ls7{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.276480pt;}
.lsf{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.869333pt;}
.ls14{letter-spacing:14.672640pt;}
.ls13{letter-spacing:40.912640pt;}
.lsb{letter-spacing:76.960000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws5{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-1056.163840pt;}
._e{margin-left:-763.761920pt;}
._c{margin-left:-659.946667pt;}
._6{margin-left:-605.731840pt;}
._f{margin-left:-367.360000pt;}
._7{margin-left:-233.349120pt;}
._9{margin-left:-211.715840pt;}
._16{margin-left:-206.968320pt;}
._14{margin-left:-205.589333pt;}
._a{margin-left:-145.920000pt;}
._8{margin-left:-125.294080pt;}
._13{margin-left:-102.378667pt;}
._12{margin-left:-88.320000pt;}
._11{margin-left:-73.600000pt;}
._b{margin-left:-58.880000pt;}
._10{margin-left:-29.440000pt;}
._31{margin-left:-7.434240pt;}
._1b{margin-left:-6.364800pt;}
._23{margin-left:-4.881493pt;}
._1a{margin-left:-3.893760pt;}
._1{margin-left:-2.770560pt;}
._0{margin-left:-1.198080pt;}
._2{width:1.221973pt;}
._19{width:2.648533pt;}
._22{width:3.648853pt;}
._27{width:4.552747pt;}
._18{width:5.442347pt;}
._28{width:6.352853pt;}
._25{width:7.277440pt;}
._24{width:8.233600pt;}
._26{width:9.296000pt;}
._17{width:10.782720pt;}
._21{width:12.111360pt;}
._20{width:14.873387pt;}
._15{width:16.192000pt;}
._30{width:17.123413pt;}
._1f{width:18.167040pt;}
._1e{width:19.282560pt;}
._33{width:20.291627pt;}
._32{width:21.213440pt;}
._1d{width:22.245973pt;}
._1c{width:23.621120pt;}
._37{width:51.701547pt;}
._36{width:55.688320pt;}
._38{width:58.047787pt;}
._29{width:61.057920pt;}
._2b{width:69.928960pt;}
._34{width:77.626880pt;}
._35{width:78.809173pt;}
._2e{width:93.947520pt;}
._2c{width:105.740160pt;}
._2d{width:144.015787pt;}
._2f{width:164.990720pt;}
._2a{width:178.720000pt;}
._4{width:299.680000pt;}
._39{width:407.919787pt;}
._3{width:636.136533pt;}
._5{width:1192.477013pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:5.120000pt;}
.y7e{bottom:5.280000pt;}
.y6c{bottom:6.400000pt;}
.y16{bottom:6.720000pt;}
.y6f{bottom:6.880000pt;}
.y71{bottom:7.520000pt;}
.y6e{bottom:8.480000pt;}
.y7c{bottom:9.280000pt;}
.y6{bottom:10.400000pt;}
.y74{bottom:10.906667pt;}
.y80{bottom:13.280000pt;}
.y82{bottom:13.440000pt;}
.y7d{bottom:14.080000pt;}
.y6a{bottom:15.520000pt;}
.y75{bottom:16.826667pt;}
.y29{bottom:22.880000pt;}
.y7a{bottom:27.200000pt;}
.y73{bottom:28.506667pt;}
.y5{bottom:35.840000pt;}
.y28{bottom:40.480000pt;}
.ya{bottom:54.560000pt;}
.y27{bottom:58.080000pt;}
.y4{bottom:61.280000pt;}
.y26{bottom:75.680000pt;}
.y87{bottom:77.920000pt;}
.y99{bottom:79.360000pt;}
.y8{bottom:80.026667pt;}
.y78{bottom:80.640000pt;}
.y3{bottom:86.746667pt;}
.y90{bottom:88.960000pt;}
.y3a{bottom:91.520000pt;}
.yaa{bottom:91.840000pt;}
.y25{bottom:93.280000pt;}
.y86{bottom:95.520000pt;}
.y98{bottom:96.960000pt;}
.y77{bottom:98.240000pt;}
.y8f{bottom:106.720000pt;}
.y39{bottom:109.120000pt;}
.y24{bottom:111.040000pt;}
.y85{bottom:113.280000pt;}
.y2{bottom:114.266667pt;}
.y7{bottom:114.426667pt;}
.y97{bottom:114.720000pt;}
.y76{bottom:115.840000pt;}
.ya9{bottom:121.760000pt;}
.y8e{bottom:124.320000pt;}
.y38{bottom:126.720000pt;}
.y23{bottom:128.640000pt;}
.y72{bottom:128.960000pt;}
.y84{bottom:130.880000pt;}
.y96{bottom:132.320000pt;}
.y8d{bottom:141.946667pt;}
.y83{bottom:144.026667pt;}
.y37{bottom:144.506667pt;}
.y22{bottom:146.240000pt;}
.y95{bottom:149.946667pt;}
.ya8{bottom:151.866667pt;}
.y8c{bottom:159.546667pt;}
.y36{bottom:162.106667pt;}
.y21{bottom:163.840000pt;}
.y94{bottom:167.546667pt;}
.y70{bottom:169.946667pt;}
.y81{bottom:170.426667pt;}
.y8b{bottom:177.146667pt;}
.y35{bottom:179.706667pt;}
.y20{bottom:181.440000pt;}
.ya7{bottom:181.786667pt;}
.y93{bottom:185.146667pt;}
.y6d{bottom:189.946667pt;}
.y8a{bottom:194.746667pt;}
.y7f{bottom:196.986667pt;}
.y34{bottom:197.306667pt;}
.y1f{bottom:199.200000pt;}
.y92{bottom:202.746667pt;}
.y69{bottom:211.546667pt;}
.ya6{bottom:211.866667pt;}
.y89{bottom:212.506667pt;}
.y33{bottom:214.906667pt;}
.y1e{bottom:216.826667pt;}
.y91{bottom:220.506667pt;}
.y79{bottom:223.386667pt;}
.y6b{bottom:229.786667pt;}
.y32{bottom:232.666667pt;}
.y1d{bottom:234.426667pt;}
.y88{bottom:238.106667pt;}
.ya5{bottom:241.786667pt;}
.y31{bottom:250.266667pt;}
.y1c{bottom:252.026667pt;}
.y68{bottom:255.706667pt;}
.y7b{bottom:259.386667pt;}
.y30{bottom:267.866667pt;}
.y1b{bottom:269.626667pt;}
.ya4{bottom:271.706667pt;}
.y67{bottom:273.306667pt;}
.y2f{bottom:285.466667pt;}
.y1a{bottom:287.386667pt;}
.y66{bottom:290.906667pt;}
.ya3{bottom:301.786667pt;}
.y2e{bottom:303.066667pt;}
.y19{bottom:304.986667pt;}
.y65{bottom:308.666667pt;}
.y2d{bottom:320.826667pt;}
.y18{bottom:322.586667pt;}
.y64{bottom:326.266667pt;}
.ya2{bottom:331.706667pt;}
.y2c{bottom:338.426667pt;}
.y63{bottom:343.866667pt;}
.y2b{bottom:356.066667pt;}
.y62{bottom:361.506667pt;}
.ya1{bottom:361.826667pt;}
.y17{bottom:369.186667pt;}
.y61{bottom:379.106667pt;}
.ya0{bottom:391.746667pt;}
.y60{bottom:396.866667pt;}
.y5f{bottom:414.466667pt;}
.y9f{bottom:421.826667pt;}
.y5e{bottom:432.066667pt;}
.y5d{bottom:449.666667pt;}
.y9e{bottom:451.746667pt;}
.y5c{bottom:467.266667pt;}
.y9d{bottom:481.666667pt;}
.y5b{bottom:485.026667pt;}
.y5a{bottom:502.626667pt;}
.y9c{bottom:511.746667pt;}
.y59{bottom:520.226667pt;}
.y58{bottom:537.826667pt;}
.y9b{bottom:541.666667pt;}
.y57{bottom:555.426667pt;}
.y9a{bottom:571.746667pt;}
.y56{bottom:573.186667pt;}
.y55{bottom:590.813333pt;}
.y54{bottom:608.413333pt;}
.y53{bottom:626.013333pt;}
.y52{bottom:643.613333pt;}
.y51{bottom:661.373333pt;}
.y50{bottom:678.973333pt;}
.y4f{bottom:696.573333pt;}
.y15{bottom:704.893333pt;}
.y4e{bottom:714.173333pt;}
.y4d{bottom:731.773333pt;}
.y14{bottom:733.853333pt;}
.y4c{bottom:749.533333pt;}
.y13{bottom:756.253333pt;}
.y4b{bottom:767.133333pt;}
.y12{bottom:773.853333pt;}
.y4a{bottom:784.733333pt;}
.y11{bottom:791.453333pt;}
.y49{bottom:802.373333pt;}
.y10{bottom:809.093333pt;}
.y48{bottom:819.973333pt;}
.yf{bottom:822.533333pt;}
.y47{bottom:837.733333pt;}
.ye{bottom:842.053333pt;}
.y46{bottom:855.333333pt;}
.yd{bottom:860.933333pt;}
.y45{bottom:872.933333pt;}
.yc{bottom:880.613333pt;}
.y44{bottom:890.533333pt;}
.yb{bottom:905.253333pt;}
.y43{bottom:908.133333pt;}
.y42{bottom:925.893333pt;}
.y9{bottom:926.693333pt;}
.y1{bottom:941.413333pt;}
.y41{bottom:943.493333pt;}
.y40{bottom:961.093333pt;}
.y3f{bottom:978.693333pt;}
.y3e{bottom:996.293333pt;}
.y3d{bottom:1014.053333pt;}
.y3c{bottom:1040.480000pt;}
.y3b{bottom:1060.960000pt;}
.h13{height:17.600000pt;}
.h15{height:20.000000pt;}
.h12{height:20.160000pt;}
.h14{height:20.960000pt;}
.hc{height:23.200000pt;}
.h18{height:25.760000pt;}
.h1a{height:25.920000pt;}
.hb{height:30.982500pt;}
.h19{height:35.360000pt;}
.h9{height:37.479688pt;}
.h11{height:38.400000pt;}
.h16{height:40.992000pt;}
.h7{height:43.038750pt;}
.h4{height:43.355000pt;}
.h10{height:45.961250pt;}
.h5{height:47.125000pt;}
.ha{height:47.310625pt;}
.hf{height:47.621250pt;}
.hd{height:49.542500pt;}
.h8{height:52.832812pt;}
.h3{height:55.136250pt;}
.h6{height:58.563750pt;}
.h17{height:61.760000pt;}
.h2{height:133.946667pt;}
.he{height:335.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:101.280000pt;}
.wb{width:110.112000pt;}
.w3{width:112.352000pt;}
.w11{width:113.472000pt;}
.w12{width:118.432000pt;}
.w9{width:119.712000pt;}
.w8{width:119.840000pt;}
.w10{width:123.200000pt;}
.we{width:123.232000pt;}
.wc{width:129.792000pt;}
.w7{width:165.306667pt;}
.wf{width:232.546667pt;}
.wa{width:239.906667pt;}
.w6{width:528.133333pt;}
.w2{width:584.133333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x1{left:48.640000pt;}
.x5{left:50.240000pt;}
.x12{left:71.999988pt;}
.x7{left:96.031988pt;}
.x8{left:97.312000pt;}
.xd{left:105.792000pt;}
.xe{left:207.706667pt;}
.x9{left:217.146667pt;}
.xf{left:331.586667pt;}
.xa{left:336.866667pt;}
.x11{left:445.693333pt;}
.xc{left:446.973333pt;}
.x10{left:564.773333pt;}
.xb{left:576.773333pt;}
.x6{left:578.373333pt;}
.x3{left:632.773333pt;}
.x4{left:643.013322pt;}
}




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