
    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_0bc22a6ebc0ae45c821523bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_93cd026175d065d278f581ed.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9eb0072005fe358c6ba60302.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_7143b9adb03402f17990db6a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c86007d4d6a66cbb41f3d475.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_621cf00cd957aed25b1587c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bd88871be30027c7bdb934c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3b49c86615d8969b3a8b48b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.013440px;}
.ls11{letter-spacing:0.129600px;}
.lsf{letter-spacing:0.252720px;}
.ls2{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.378600px;}
.lse{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.980000px;}
.ls1c{letter-spacing:3.420000px;}
.ls8{letter-spacing:7.020000px;}
.ls13{letter-spacing:7.740000px;}
.ls18{letter-spacing:9.900000px;}
.lsd{letter-spacing:16.380000px;}
.ls16{letter-spacing:17.100000px;}
.ls14{letter-spacing:19.260000px;}
.ls15{letter-spacing:19.980000px;}
.lsa{letter-spacing:21.221280px;}
.ls12{letter-spacing:21.941280px;}
.ls17{letter-spacing:29.340000px;}
.ls1a{letter-spacing:41.381280px;}
.ls9{letter-spacing:52.380000px;}
.lsc{letter-spacing:64.026720px;}
.ls19{letter-spacing:84.780000px;}
.ls7{letter-spacing:92.700000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws5{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws9{word-spacing:-21.031920px;}
.ws3{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.700000px;}
.ws8{word-spacing:-18.000000px;}
.ws6{word-spacing:0.000000px;}
._3d{margin-left:-6.486480px;}
._20{margin-left:-5.307120px;}
._21{margin-left:-4.212000px;}
._e{margin-left:-2.662560px;}
._2{margin-left:-1.010880px;}
._0{width:1.532160px;}
._1{width:3.190560px;}
._31{width:4.212000px;}
._34{width:5.459760px;}
._22{width:6.758880px;}
._1a{width:8.002800px;}
._1b{width:9.013680px;}
._41{width:10.092960px;}
._f{width:12.046320px;}
._a{width:13.646880px;}
._b{width:14.910480px;}
._12{width:16.174080px;}
._3e{width:17.521920px;}
._40{width:18.617040px;}
._3f{width:19.620480px;}
._49{width:22.078320px;}
._47{width:23.081760px;}
._c{width:24.261120px;}
._30{width:25.945920px;}
._27{width:26.956800px;}
._5{width:28.496160px;}
._4{width:29.985600px;}
._1f{width:31.926960px;}
._14{width:33.611760px;}
._8{width:35.549280px;}
._9{width:36.554400px;}
._6{width:38.297280px;}
._7{width:39.498240px;}
._23{width:40.772160px;}
._51{width:41.951520px;}
._3c{width:43.215120px;}
._1d{width:44.562960px;}
._42{width:45.864960px;}
._33{width:46.967520px;}
._32{width:48.101040px;}
._19{width:49.954320px;}
._4f{width:50.965200px;}
._44{width:52.144560px;}
._26{width:53.155440px;}
._46{width:56.019600px;}
._2e{width:57.114720px;}
._4a{width:58.883760px;}
._24{width:60.400080px;}
._11{width:62.506080px;}
._2d{width:64.190880px;}
._1e{width:65.454480px;}
._4b{width:66.802320px;}
._10{width:68.402880px;}
._45{width:72.193680px;}
._4c{width:73.716240px;}
._4e{width:75.479040px;}
._4d{width:76.995360px;}
._d{width:81.291600px;}
._56{width:85.000080px;}
._50{width:87.862320px;}
._2f{width:89.799840px;}
._43{width:92.495520px;}
._48{width:94.164480px;}
._57{width:96.539040px;}
._58{width:98.075040px;}
._37{width:109.933200px;}
._3{width:112.233600px;}
._5c{width:117.177840px;}
._5b{width:118.778400px;}
._25{width:120.042000px;}
._35{width:133.941600px;}
._36{width:144.816000px;}
._5a{width:160.224480px;}
._59{width:161.319600px;}
._18{width:166.963680px;}
._2c{width:168.143040px;}
._53{width:173.871360px;}
._52{width:174.882240px;}
._3b{width:189.876960px;}
._28{width:192.993840px;}
._15{width:196.707840px;}
._2a{width:212.284800px;}
._55{width:221.803920px;}
._16{width:227.532240px;}
._39{width:240.420960px;}
._29{width:250.614000px;}
._13{width:269.904960px;}
._1c{width:274.116960px;}
._3a{width:281.530080px;}
._2b{width:288.269280px;}
._38{width:320.448960px;}
._17{width:432.909360px;}
._54{width:476.124480px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y1e{bottom:8.100000px;}
.y94{bottom:8.145000px;}
.ye{bottom:8.280000px;}
.y2d{bottom:35.820000px;}
.y9a{bottom:35.850000px;}
.y93{bottom:35.865000px;}
.y98{bottom:35.994000px;}
.y1d{bottom:36.000000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y2a{bottom:63.714000px;}
.y1c{bottom:63.720000px;}
.y29{bottom:91.434000px;}
.y1b{bottom:91.440000px;}
.y91{bottom:91.980000px;}
.y8a{bottom:98.496000px;}
.y20{bottom:100.836000px;}
.y4b{bottom:117.756000px;}
.y28{bottom:119.154000px;}
.y1a{bottom:119.160000px;}
.y2c{bottom:119.190000px;}
.y39{bottom:119.340000px;}
.y6f{bottom:119.916000px;}
.y89{bottom:126.216000px;}
.y97{bottom:136.476000px;}
.y4a{bottom:145.476000px;}
.y27{bottom:147.054000px;}
.y38{bottom:147.060000px;}
.y19{bottom:147.090000px;}
.y6e{bottom:147.636000px;}
.y88{bottom:154.110000px;}
.y90{bottom:166.350000px;}
.y49{bottom:173.190000px;}
.y26{bottom:174.774000px;}
.y37{bottom:174.780000px;}
.y18{bottom:174.810000px;}
.y6d{bottom:175.530000px;}
.y87{bottom:181.830000px;}
.y8f{bottom:184.890000px;}
.y48{bottom:200.910000px;}
.y25{bottom:202.494000px;}
.y36{bottom:202.500000px;}
.y17{bottom:202.530000px;}
.y6c{bottom:203.250000px;}
.y86{bottom:209.550000px;}
.y96{bottom:220.530000px;}
.y47{bottom:228.810000px;}
.y16{bottom:230.250000px;}
.y24{bottom:230.394000px;}
.y35{bottom:230.400000px;}
.y6b{bottom:230.970000px;}
.y85{bottom:237.270000px;}
.y8e{bottom:245.550000px;}
.y46{bottom:256.530000px;}
.y34{bottom:258.120000px;}
.y15{bottom:258.150000px;}
.y23{bottom:258.159000px;}
.y6a{bottom:258.690000px;}
.y8d{bottom:264.270000px;}
.y84{bottom:265.170000px;}
.y95{bottom:276.870000px;}
.y8c{bottom:282.810000px;}
.y45{bottom:284.250000px;}
.y14{bottom:285.870000px;}
.y22{bottom:285.879000px;}
.y33{bottom:285.885000px;}
.y69{bottom:286.590000px;}
.y83{bottom:292.890000px;}
.y44{bottom:311.970000px;}
.y13{bottom:313.590000px;}
.y21{bottom:313.599000px;}
.y32{bottom:313.785000px;}
.y68{bottom:314.310000px;}
.y82{bottom:320.610000px;}
.y92{bottom:333.210000px;}
.y43{bottom:339.915000px;}
.y12{bottom:341.490000px;}
.y31{bottom:341.505000px;}
.y67{bottom:342.075000px;}
.y81{bottom:348.555000px;}
.y42{bottom:367.635000px;}
.y11{bottom:369.210000px;}
.y30{bottom:369.225000px;}
.y66{bottom:369.975000px;}
.y80{bottom:376.275000px;}
.y41{bottom:395.355000px;}
.y10{bottom:396.930000px;}
.y65{bottom:397.695000px;}
.y7f{bottom:403.995000px;}
.y40{bottom:423.255000px;}
.y64{bottom:425.415000px;}
.y7e{bottom:431.715000px;}
.y1f{bottom:434.955000px;}
.y3f{bottom:450.975000px;}
.y63{bottom:453.135000px;}
.y7d{bottom:461.055000px;}
.yf{bottom:463.395000px;}
.y3e{bottom:478.695000px;}
.y62{bottom:481.035000px;}
.y7c{bottom:488.775000px;}
.y3d{bottom:506.415000px;}
.y61{bottom:508.755000px;}
.y7b{bottom:516.675000px;}
.y3c{bottom:534.315000px;}
.y60{bottom:536.475000px;}
.y7a{bottom:544.215000px;}
.y3b{bottom:562.035000px;}
.y5f{bottom:564.195000px;}
.y79{bottom:573.735000px;}
.y3a{bottom:589.755000px;}
.y5e{bottom:592.095000px;}
.y78{bottom:601.275000px;}
.y2f{bottom:609.405000px;}
.yab{bottom:617.685000px;}
.y5d{bottom:619.845000px;}
.y77{bottom:630.645000px;}
.yaa{bottom:645.405000px;}
.y5c{bottom:647.565000px;}
.y76{bottom:659.985000px;}
.ya9{bottom:673.125000px;}
.y5b{bottom:675.465000px;}
.y75{bottom:687.705000px;}
.ya8{bottom:700.845000px;}
.y5a{bottom:703.185000px;}
.y74{bottom:715.605000px;}
.ya7{bottom:728.745000px;}
.y59{bottom:730.905000px;}
.y73{bottom:743.325000px;}
.ya6{bottom:756.465000px;}
.y58{bottom:758.625000px;}
.y72{bottom:771.045000px;}
.ya5{bottom:784.185000px;}
.y57{bottom:786.525000px;}
.y71{bottom:798.945000px;}
.ya4{bottom:811.905000px;}
.y56{bottom:814.245000px;}
.y8b{bottom:818.640000px;}
.y70{bottom:834.045000px;}
.ya3{bottom:839.805000px;}
.y55{bottom:841.965000px;}
.ya2{bottom:867.525000px;}
.y54{bottom:869.865000px;}
.yd{bottom:880.710000px;}
.ya1{bottom:895.290000px;}
.y53{bottom:897.630000px;}
.yaf{bottom:913.290000px;}
.yc{bottom:917.430000px;}
.ya0{bottom:923.190000px;}
.y52{bottom:925.350000px;}
.yae{bottom:941.190000px;}
.yb{bottom:945.150000px;}
.y9f{bottom:950.910000px;}
.y51{bottom:953.070000px;}
.yad{bottom:968.910000px;}
.ya{bottom:973.050000px;}
.y9e{bottom:978.630000px;}
.y50{bottom:980.970000px;}
.yac{bottom:996.630000px;}
.y2e{bottom:998.970000px;}
.y9{bottom:1000.770000px;}
.y9d{bottom:1006.350000px;}
.y4f{bottom:1008.690000px;}
.y2b{bottom:1027.590000px;}
.y8{bottom:1028.490000px;}
.y9c{bottom:1034.250000px;}
.y4e{bottom:1036.410000px;}
.y9b{bottom:1054.590000px;}
.y7{bottom:1057.470000px;}
.y4d{bottom:1064.130000px;}
.y6{bottom:1089.330000px;}
.y4c{bottom:1092.030000px;}
.y99{bottom:1110.930000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1147.500000px;}
.h3{height:22.536000px;}
.ha{height:27.720000px;}
.h8{height:27.900000px;}
.h10{height:50.273438px;}
.h14{height:55.440000px;}
.h11{height:55.476000px;}
.h12{height:55.620000px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.h5{height:61.041094px;}
.he{height:61.329023px;}
.h6{height:67.565039px;}
.h7{height:69.432187px;}
.h13{height:83.340000px;}
.hc{height:138.816000px;}
.hb{height:333.210000px;}
.hf{height:348.480000px;}
.hd{height:388.830000px;}
.h9{height:416.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w7{width:154.290000px;}
.w6{width:243.390000px;}
.w5{width:244.650000px;}
.w8{width:300.810000px;}
.w4{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x23{left:9.540000px;}
.xf{left:10.620000px;}
.x21{left:17.640000px;}
.x3{left:18.900000px;}
.x1f{left:28.620000px;}
.x24{left:47.340000px;}
.xe{left:61.194000px;}
.x1{left:95.795987px;}
.x7{left:99.035987px;}
.x6{left:111.455987px;}
.x11{left:122.795987px;}
.x14{left:127.835987px;}
.x10{left:148.895987px;}
.x13{left:154.469987px;}
.x15{left:159.689987px;}
.x16{left:180.749987px;}
.x1e{left:222.329987px;}
.x1d{left:223.769987px;}
.xb{left:270.569987px;}
.x9{left:293.834987px;}
.x1c{left:310.214987px;}
.x1a{left:328.499987px;}
.x20{left:340.815000px;}
.xa{left:371.954987px;}
.x19{left:390.569987px;}
.x18{left:400.109987px;}
.x1b{left:406.619987px;}
.x17{left:407.849987px;}
.x2{left:421.815000px;}
.x5{left:446.474987px;}
.x4{left:451.874987px;}
.x22{left:495.825000px;}
.xd{left:574.305000px;}
.x8{left:653.684987px;}
.x12{left:743.909987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011947pt;}
.ls11{letter-spacing:0.115200pt;}
.lsf{letter-spacing:0.224640pt;}
.ls2{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.336533pt;}
.lse{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.760000pt;}
.ls1c{letter-spacing:3.040000pt;}
.ls8{letter-spacing:6.240000pt;}
.ls13{letter-spacing:6.880000pt;}
.ls18{letter-spacing:8.800000pt;}
.lsd{letter-spacing:14.560000pt;}
.ls16{letter-spacing:15.200000pt;}
.ls14{letter-spacing:17.120000pt;}
.ls15{letter-spacing:17.760000pt;}
.lsa{letter-spacing:18.863360pt;}
.ls12{letter-spacing:19.503360pt;}
.ls17{letter-spacing:26.080000pt;}
.ls1a{letter-spacing:36.783360pt;}
.ls9{letter-spacing:46.560000pt;}
.lsc{letter-spacing:56.912640pt;}
.ls19{letter-spacing:75.360000pt;}
.ls7{letter-spacing:82.400000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws5{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws1{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.695040pt;}
.ws3{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws6{word-spacing:0.000000pt;}
._3d{margin-left:-5.765760pt;}
._20{margin-left:-4.717440pt;}
._21{margin-left:-3.744000pt;}
._e{margin-left:-2.366720pt;}
._2{margin-left:-0.898560pt;}
._0{width:1.361920pt;}
._1{width:2.836053pt;}
._31{width:3.744000pt;}
._34{width:4.853120pt;}
._22{width:6.007893pt;}
._1a{width:7.113600pt;}
._1b{width:8.012160pt;}
._41{width:8.971520pt;}
._f{width:10.707840pt;}
._a{width:12.130560pt;}
._b{width:13.253760pt;}
._12{width:14.376960pt;}
._3e{width:15.575040pt;}
._40{width:16.548480pt;}
._3f{width:17.440427pt;}
._49{width:19.625173pt;}
._47{width:20.517120pt;}
._c{width:21.565440pt;}
._30{width:23.063040pt;}
._27{width:23.961600pt;}
._5{width:25.329920pt;}
._4{width:26.653867pt;}
._1f{width:28.379520pt;}
._14{width:29.877120pt;}
._8{width:31.599360pt;}
._9{width:32.492800pt;}
._6{width:34.042027pt;}
._7{width:35.109547pt;}
._23{width:36.241920pt;}
._51{width:37.290240pt;}
._3c{width:38.413440pt;}
._1d{width:39.611520pt;}
._42{width:40.768853pt;}
._33{width:41.748907pt;}
._32{width:42.756480pt;}
._19{width:44.403840pt;}
._4f{width:45.302400pt;}
._44{width:46.350720pt;}
._26{width:47.249280pt;}
._46{width:49.795200pt;}
._2e{width:50.768640pt;}
._4a{width:52.341120pt;}
._24{width:53.688960pt;}
._11{width:55.560960pt;}
._2d{width:57.058560pt;}
._1e{width:58.181760pt;}
._4b{width:59.379840pt;}
._10{width:60.802560pt;}
._45{width:64.172160pt;}
._4c{width:65.525547pt;}
._4e{width:67.092480pt;}
._4d{width:68.440320pt;}
._d{width:72.259200pt;}
._56{width:75.555627pt;}
._50{width:78.099840pt;}
._2f{width:79.822080pt;}
._43{width:82.218240pt;}
._48{width:83.701760pt;}
._57{width:85.812480pt;}
._58{width:87.177813pt;}
._37{width:97.718400pt;}
._3{width:99.763200pt;}
._5c{width:104.158080pt;}
._5b{width:105.580800pt;}
._25{width:106.704000pt;}
._35{width:119.059200pt;}
._36{width:128.725333pt;}
._5a{width:142.421760pt;}
._59{width:143.395200pt;}
._18{width:148.412160pt;}
._2c{width:149.460480pt;}
._53{width:154.552320pt;}
._52{width:155.450880pt;}
._3b{width:168.779520pt;}
._28{width:171.550080pt;}
._15{width:174.851413pt;}
._2a{width:188.697600pt;}
._55{width:197.159040pt;}
._16{width:202.250880pt;}
._39{width:213.707520pt;}
._29{width:222.768000pt;}
._13{width:239.915520pt;}
._1c{width:243.659520pt;}
._3a{width:250.248960pt;}
._2b{width:256.239360pt;}
._38{width:284.843520pt;}
._17{width:384.808320pt;}
._54{width:423.221760pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y1e{bottom:7.200000pt;}
.y94{bottom:7.240000pt;}
.ye{bottom:7.360000pt;}
.y2d{bottom:31.840000pt;}
.y9a{bottom:31.866667pt;}
.y93{bottom:31.880000pt;}
.y98{bottom:31.994667pt;}
.y1d{bottom:32.000000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y2a{bottom:56.634667pt;}
.y1c{bottom:56.640000pt;}
.y29{bottom:81.274667pt;}
.y1b{bottom:81.280000pt;}
.y91{bottom:81.760000pt;}
.y8a{bottom:87.552000pt;}
.y20{bottom:89.632000pt;}
.y4b{bottom:104.672000pt;}
.y28{bottom:105.914667pt;}
.y1a{bottom:105.920000pt;}
.y2c{bottom:105.946667pt;}
.y39{bottom:106.080000pt;}
.y6f{bottom:106.592000pt;}
.y89{bottom:112.192000pt;}
.y97{bottom:121.312000pt;}
.y4a{bottom:129.312000pt;}
.y27{bottom:130.714667pt;}
.y38{bottom:130.720000pt;}
.y19{bottom:130.746667pt;}
.y6e{bottom:131.232000pt;}
.y88{bottom:136.986667pt;}
.y90{bottom:147.866667pt;}
.y49{bottom:153.946667pt;}
.y26{bottom:155.354667pt;}
.y37{bottom:155.360000pt;}
.y18{bottom:155.386667pt;}
.y6d{bottom:156.026667pt;}
.y87{bottom:161.626667pt;}
.y8f{bottom:164.346667pt;}
.y48{bottom:178.586667pt;}
.y25{bottom:179.994667pt;}
.y36{bottom:180.000000pt;}
.y17{bottom:180.026667pt;}
.y6c{bottom:180.666667pt;}
.y86{bottom:186.266667pt;}
.y96{bottom:196.026667pt;}
.y47{bottom:203.386667pt;}
.y16{bottom:204.666667pt;}
.y24{bottom:204.794667pt;}
.y35{bottom:204.800000pt;}
.y6b{bottom:205.306667pt;}
.y85{bottom:210.906667pt;}
.y8e{bottom:218.266667pt;}
.y46{bottom:228.026667pt;}
.y34{bottom:229.440000pt;}
.y15{bottom:229.466667pt;}
.y23{bottom:229.474667pt;}
.y6a{bottom:229.946667pt;}
.y8d{bottom:234.906667pt;}
.y84{bottom:235.706667pt;}
.y95{bottom:246.106667pt;}
.y8c{bottom:251.386667pt;}
.y45{bottom:252.666667pt;}
.y14{bottom:254.106667pt;}
.y22{bottom:254.114667pt;}
.y33{bottom:254.120000pt;}
.y69{bottom:254.746667pt;}
.y83{bottom:260.346667pt;}
.y44{bottom:277.306667pt;}
.y13{bottom:278.746667pt;}
.y21{bottom:278.754667pt;}
.y32{bottom:278.920000pt;}
.y68{bottom:279.386667pt;}
.y82{bottom:284.986667pt;}
.y92{bottom:296.186667pt;}
.y43{bottom:302.146667pt;}
.y12{bottom:303.546667pt;}
.y31{bottom:303.560000pt;}
.y67{bottom:304.066667pt;}
.y81{bottom:309.826667pt;}
.y42{bottom:326.786667pt;}
.y11{bottom:328.186667pt;}
.y30{bottom:328.200000pt;}
.y66{bottom:328.866667pt;}
.y80{bottom:334.466667pt;}
.y41{bottom:351.426667pt;}
.y10{bottom:352.826667pt;}
.y65{bottom:353.506667pt;}
.y7f{bottom:359.106667pt;}
.y40{bottom:376.226667pt;}
.y64{bottom:378.146667pt;}
.y7e{bottom:383.746667pt;}
.y1f{bottom:386.626667pt;}
.y3f{bottom:400.866667pt;}
.y63{bottom:402.786667pt;}
.y7d{bottom:409.826667pt;}
.yf{bottom:411.906667pt;}
.y3e{bottom:425.506667pt;}
.y62{bottom:427.586667pt;}
.y7c{bottom:434.466667pt;}
.y3d{bottom:450.146667pt;}
.y61{bottom:452.226667pt;}
.y7b{bottom:459.266667pt;}
.y3c{bottom:474.946667pt;}
.y60{bottom:476.866667pt;}
.y7a{bottom:483.746667pt;}
.y3b{bottom:499.586667pt;}
.y5f{bottom:501.506667pt;}
.y79{bottom:509.986667pt;}
.y3a{bottom:524.226667pt;}
.y5e{bottom:526.306667pt;}
.y78{bottom:534.466667pt;}
.y2f{bottom:541.693333pt;}
.yab{bottom:549.053333pt;}
.y5d{bottom:550.973333pt;}
.y77{bottom:560.573333pt;}
.yaa{bottom:573.693333pt;}
.y5c{bottom:575.613333pt;}
.y76{bottom:586.653333pt;}
.ya9{bottom:598.333333pt;}
.y5b{bottom:600.413333pt;}
.y75{bottom:611.293333pt;}
.ya8{bottom:622.973333pt;}
.y5a{bottom:625.053333pt;}
.y74{bottom:636.093333pt;}
.ya7{bottom:647.773333pt;}
.y59{bottom:649.693333pt;}
.y73{bottom:660.733333pt;}
.ya6{bottom:672.413333pt;}
.y58{bottom:674.333333pt;}
.y72{bottom:685.373333pt;}
.ya5{bottom:697.053333pt;}
.y57{bottom:699.133333pt;}
.y71{bottom:710.173333pt;}
.ya4{bottom:721.693333pt;}
.y56{bottom:723.773333pt;}
.y8b{bottom:727.680000pt;}
.y70{bottom:741.373333pt;}
.ya3{bottom:746.493333pt;}
.y55{bottom:748.413333pt;}
.ya2{bottom:771.133333pt;}
.y54{bottom:773.213333pt;}
.yd{bottom:782.853333pt;}
.ya1{bottom:795.813333pt;}
.y53{bottom:797.893333pt;}
.yaf{bottom:811.813333pt;}
.yc{bottom:815.493333pt;}
.ya0{bottom:820.613333pt;}
.y52{bottom:822.533333pt;}
.yae{bottom:836.613333pt;}
.yb{bottom:840.133333pt;}
.y9f{bottom:845.253333pt;}
.y51{bottom:847.173333pt;}
.yad{bottom:861.253333pt;}
.ya{bottom:864.933333pt;}
.y9e{bottom:869.893333pt;}
.y50{bottom:871.973333pt;}
.yac{bottom:885.893333pt;}
.y2e{bottom:887.973333pt;}
.y9{bottom:889.573333pt;}
.y9d{bottom:894.533333pt;}
.y4f{bottom:896.613333pt;}
.y2b{bottom:913.413333pt;}
.y8{bottom:914.213333pt;}
.y9c{bottom:919.333333pt;}
.y4e{bottom:921.253333pt;}
.y9b{bottom:937.413333pt;}
.y7{bottom:939.973333pt;}
.y4d{bottom:945.893333pt;}
.y6{bottom:968.293333pt;}
.y4c{bottom:970.693333pt;}
.y99{bottom:987.493333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1020.000000pt;}
.h3{height:20.032000pt;}
.ha{height:24.640000pt;}
.h8{height:24.800000pt;}
.h10{height:44.687500pt;}
.h14{height:49.280000pt;}
.h11{height:49.312000pt;}
.h12{height:49.440000pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.h5{height:54.258750pt;}
.he{height:54.514687pt;}
.h6{height:60.057813pt;}
.h7{height:61.717500pt;}
.h13{height:74.080000pt;}
.hc{height:123.392000pt;}
.hb{height:296.186667pt;}
.hf{height:309.760000pt;}
.hd{height:345.626667pt;}
.h9{height:370.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w7{width:137.146667pt;}
.w6{width:216.346667pt;}
.w5{width:217.466667pt;}
.w8{width:267.386667pt;}
.w4{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x23{left:8.480000pt;}
.xf{left:9.440000pt;}
.x21{left:15.680000pt;}
.x3{left:16.800000pt;}
.x1f{left:25.440000pt;}
.x24{left:42.080000pt;}
.xe{left:54.394667pt;}
.x1{left:85.151988pt;}
.x7{left:88.031988pt;}
.x6{left:99.071988pt;}
.x11{left:109.151988pt;}
.x14{left:113.631988pt;}
.x10{left:132.351988pt;}
.x13{left:137.306655pt;}
.x15{left:141.946655pt;}
.x16{left:160.666655pt;}
.x1e{left:197.626655pt;}
.x1d{left:198.906655pt;}
.xb{left:240.506655pt;}
.x9{left:261.186655pt;}
.x1c{left:275.746655pt;}
.x1a{left:291.999988pt;}
.x20{left:302.946667pt;}
.xa{left:330.626655pt;}
.x19{left:347.173322pt;}
.x18{left:355.653322pt;}
.x1b{left:361.439988pt;}
.x17{left:362.533322pt;}
.x2{left:374.946667pt;}
.x5{left:396.866655pt;}
.x4{left:401.666655pt;}
.x22{left:440.733333pt;}
.xd{left:510.493333pt;}
.x8{left:581.053322pt;}
.x12{left:661.253322pt;}
}




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