
    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_11a7c4d0b441bc5fa26d8d9f.woff')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_2ba3feeed0aa7023befb2482.woff')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_89a4a6e1100e64a63b0aef7b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_3461e3666aaccd0b221b1e07.woff')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_c8926ad7b8ba84d934e92abe.woff')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_04c04cb139b3ed967ffcd1f8.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2f0bbe1011ece5d079aaa5ab.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f870ace88cf946d89eedcb0a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_853521948e527d3e3935fc9d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_2b3e31579835e2abe8a82f41.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_09967a0de17b6f8ac3222cb6.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.ls12{letter-spacing:-5.742000px;}
.lsb{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.428000px;}
.lsa{letter-spacing:-1.422000px;}
.ls11{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.507000px;}
.ls7{letter-spacing:-0.025920px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.020160px;}
.ls0{letter-spacing:0.034560px;}
.ls1{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.360000px;}
.lse{letter-spacing:0.466800px;}
.ls15{letter-spacing:0.486600px;}
.lsf{letter-spacing:0.507000px;}
.ls3{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.731520px;}
.ls18{letter-spacing:1.458000px;}
.ls14{letter-spacing:1.460160px;}
.ls19{letter-spacing:11.880000px;}
.ls5{letter-spacing:12.240000px;}
.ls1b{letter-spacing:16.306560px;}
.ls17{letter-spacing:20.520000px;}
.ls2{letter-spacing:23.760000px;}
.ls1a{letter-spacing:46.558560px;}
.lsd{letter-spacing:91.342560px;}
.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;}
}
.wsb{word-spacing:-16.578000px;}
.ws2{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.606600px;}
.ws6{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.613000px;}
.ws7{word-spacing:-13.680000px;}
.ws5{word-spacing:-9.732960px;}
.ws4{word-spacing:-9.720000px;}
.ws1{word-spacing:-8.786880px;}
.ws8{word-spacing:-8.292000px;}
.ws3{word-spacing:0.000000px;}
._19{margin-left:-8.672640px;}
._16{margin-left:-7.190400px;}
._15{margin-left:-5.263200px;}
._4{margin-left:-4.082880px;}
._14{margin-left:-3.037440px;}
._0{margin-left:-2.016000px;}
._a{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.016000px;}
._3{width:3.144000px;}
._e{width:4.975200px;}
._5{width:6.071040px;}
._6{width:7.084320px;}
._10{width:8.276160px;}
._f{width:9.623520px;}
._d{width:10.981920px;}
._c{width:12.447840px;}
._b{width:13.806240px;}
._17{width:15.177120px;}
._13{width:16.854240px;}
._18{width:18.459840px;}
._11{width:19.817280px;}
._12{width:20.825280px;}
._9{width:22.297920px;}
._8{width:23.444640px;}
._7{width:24.480480px;}
._1a{width:25.583040px;}
._1b{width:27.331680px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(0,29,53);}
.fc4{color:rgb(255,0,0);}
.fc5{color:rgb(14,16,26);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs4{font-size:38.880000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y51{bottom:5.400000px;}
.y52{bottom:5.760000px;}
.y69{bottom:5.790000px;}
.y8a{bottom:6.120000px;}
.y84{bottom:14.400000px;}
.y83{bottom:25.920000px;}
.y87{bottom:39.645000px;}
.y5{bottom:57.240000px;}
.y4{bottom:77.436000px;}
.y8c{bottom:113.796000px;}
.y8b{bottom:136.116000px;}
.y26{bottom:138.636000px;}
.y61{bottom:148.356000px;}
.yc2{bottom:150.870000px;}
.y46{bottom:155.550000px;}
.y86{bottom:158.430000px;}
.ye0{bottom:159.150000px;}
.ya2{bottom:162.750000px;}
.y25{bottom:176.430000px;}
.y89{bottom:180.750000px;}
.y45{bottom:181.470000px;}
.ydf{bottom:185.070000px;}
.y60{bottom:186.150000px;}
.ya1{bottom:188.670000px;}
.yc1{bottom:190.470000px;}
.y24{bottom:202.395000px;}
.y88{bottom:203.475000px;}
.yde{bottom:211.035000px;}
.ya0{bottom:214.635000px;}
.yc0{bottom:216.435000px;}
.y44{bottom:219.675000px;}
.y5f{bottom:224.715000px;}
.y85{bottom:225.795000px;}
.y23{bottom:228.315000px;}
.ydd{bottom:236.595000px;}
.y9f{bottom:240.555000px;}
.ybf{bottom:242.355000px;}
.y43{bottom:245.235000px;}
.y82{bottom:248.115000px;}
.y5e{bottom:250.275000px;}
.ydc{bottom:262.515000px;}
.y22{bottom:266.115000px;}
.y9e{bottom:266.475000px;}
.ybe{bottom:268.275000px;}
.y42{bottom:271.155000px;}
.y5d{bottom:276.195000px;}
.ydb{bottom:288.435000px;}
.y21{bottom:292.035000px;}
.y9d{bottom:292.395000px;}
.ybd{bottom:306.795000px;}
.y41{bottom:310.035000px;}
.y81{bottom:312.555000px;}
.y5c{bottom:313.995000px;}
.yda{bottom:314.355000px;}
.y20{bottom:317.955000px;}
.yd9{bottom:340.305000px;}
.y1f{bottom:343.905000px;}
.ybc{bottom:346.425000px;}
.y5b{bottom:348.585000px;}
.y40{bottom:349.665000px;}
.y80{bottom:350.385000px;}
.yd8{bottom:366.225000px;}
.y1e{bottom:369.825000px;}
.ybb{bottom:372.345000px;}
.y3f{bottom:375.585000px;}
.y7f{bottom:376.305000px;}
.yd7{bottom:392.145000px;}
.y1d{bottom:395.745000px;}
.yba{bottom:398.265000px;}
.y3e{bottom:401.505000px;}
.y7e{bottom:402.225000px;}
.yd6{bottom:417.705000px;}
.y1c{bottom:421.305000px;}
.y9c{bottom:421.665000px;}
.yb9{bottom:424.185000px;}
.yf7{bottom:432.465000px;}
.y3d{bottom:439.305000px;}
.y7d{bottom:440.025000px;}
.yd5{bottom:443.625000px;}
.yf6{bottom:458.430000px;}
.y1b{bottom:459.510000px;}
.yb8{bottom:462.030000px;}
.y3c{bottom:465.270000px;}
.y7c{bottom:465.990000px;}
.yd4{bottom:469.590000px;}
.yf5{bottom:484.350000px;}
.y1a{bottom:485.070000px;}
.y9b{bottom:485.430000px;}
.yb7{bottom:487.950000px;}
.y3b{bottom:491.190000px;}
.y7b{bottom:491.910000px;}
.yd3{bottom:495.510000px;}
.yf4{bottom:510.270000px;}
.y19{bottom:510.990000px;}
.y9a{bottom:511.350000px;}
.yb6{bottom:513.870000px;}
.y3a{bottom:516.750000px;}
.yd2{bottom:521.430000px;}
.y7a{bottom:529.710000px;}
.yf3{bottom:535.830000px;}
.y99{bottom:537.270000px;}
.yb5{bottom:539.790000px;}
.y39{bottom:542.670000px;}
.yd1{bottom:547.350000px;}
.y18{bottom:549.150000px;}
.y79{bottom:555.630000px;}
.yf2{bottom:561.750000px;}
.y98{bottom:563.190000px;}
.yb4{bottom:565.710000px;}
.yd0{bottom:573.300000px;}
.y38{bottom:580.500000px;}
.y78{bottom:581.580000px;}
.y17{bottom:586.980000px;}
.yf1{bottom:587.700000px;}
.y97{bottom:588.780000px;}
.yb3{bottom:591.660000px;}
.ycf{bottom:599.220000px;}
.y16{bottom:612.900000px;}
.yf0{bottom:613.620000px;}
.y96{bottom:614.700000px;}
.yb2{bottom:617.220000px;}
.y37{bottom:618.660000px;}
.y77{bottom:619.380000px;}
.yce{bottom:624.780000px;}
.y5a{bottom:633.780000px;}
.y15{bottom:638.460000px;}
.yef{bottom:639.540000px;}
.y95{bottom:640.620000px;}
.yb1{bottom:643.140000px;}
.y36{bottom:644.580000px;}
.y76{bottom:645.300000px;}
.y59{bottom:648.180000px;}
.ycd{bottom:650.700000px;}
.yee{bottom:665.460000px;}
.y58{bottom:670.500000px;}
.y75{bottom:671.220000px;}
.ycc{bottom:676.620000px;}
.y14{bottom:677.340000px;}
.y94{bottom:678.420000px;}
.yb0{bottom:681.300000px;}
.y35{bottom:682.380000px;}
.yed{bottom:691.380000px;}
.y57{bottom:692.820000px;}
.y74{bottom:697.140000px;}
.ycb{bottom:702.570000px;}
.y93{bottom:704.370000px;}
.yaf{bottom:706.890000px;}
.y56{bottom:715.170000px;}
.y13{bottom:716.970000px;}
.yec{bottom:717.330000px;}
.y34{bottom:720.210000px;}
.yca{bottom:728.490000px;}
.y92{bottom:730.290000px;}
.yae{bottom:732.810000px;}
.y73{bottom:734.970000px;}
.y55{bottom:737.490000px;}
.yeb{bottom:742.890000px;}
.y12{bottom:746.490000px;}
.y72{bottom:749.370000px;}
.yc9{bottom:754.410000px;}
.y91{bottom:756.210000px;}
.y33{bottom:758.010000px;}
.yad{bottom:758.730000px;}
.y54{bottom:759.810000px;}
.yea{bottom:768.810000px;}
.y71{bottom:771.690000px;}
.y11{bottom:772.410000px;}
.yc8{bottom:780.330000px;}
.y90{bottom:782.130000px;}
.y53{bottom:782.490000px;}
.y70{bottom:794.010000px;}
.ye9{bottom:794.730000px;}
.y32{bottom:795.810000px;}
.yac{bottom:796.530000px;}
.y10{bottom:804.810000px;}
.yc7{bottom:806.250000px;}
.y6f{bottom:816.330000px;}
.y8f{bottom:819.930000px;}
.ye8{bottom:820.650000px;}
.yab{bottom:822.450000px;}
.yf{bottom:825.735000px;}
.y50{bottom:827.175000px;}
.yc6{bottom:831.855000px;}
.y31{bottom:834.015000px;}
.y6e{bottom:838.695000px;}
.y8e{bottom:845.895000px;}
.ye7{bottom:846.615000px;}
.yaa{bottom:848.415000px;}
.ye{bottom:851.655000px;}
.yc5{bottom:857.775000px;}
.y6d{bottom:861.015000px;}
.y30{bottom:871.815000px;}
.ye6{bottom:872.535000px;}
.y4f{bottom:873.615000px;}
.ya9{bottom:874.335000px;}
.yd{bottom:877.575000px;}
.y6c{bottom:883.335000px;}
.yc4{bottom:883.695000px;}
.y2f{bottom:897.735000px;}
.ye5{bottom:898.455000px;}
.yc{bottom:903.495000px;}
.y6b{bottom:906.015000px;}
.yc3{bottom:909.615000px;}
.y4e{bottom:911.415000px;}
.ya8{bottom:912.135000px;}
.y2e{bottom:923.655000px;}
.ye4{bottom:924.375000px;}
.y6a{bottom:928.335000px;}
.y8d{bottom:935.535000px;}
.y4d{bottom:937.335000px;}
.ya7{bottom:938.055000px;}
.yb{bottom:944.895000px;}
.ye3{bottom:949.935000px;}
.y68{bottom:950.655000px;}
.y2d{bottom:961.485000px;}
.ya6{bottom:964.005000px;}
.y67{bottom:973.005000px;}
.y4c{bottom:975.885000px;}
.ya{bottom:983.805000px;}
.y2c{bottom:987.405000px;}
.ya5{bottom:989.925000px;}
.y66{bottom:995.325000px;}
.ye2{bottom:1001.805000px;}
.y9{bottom:1012.245000px;}
.y2b{bottom:1012.965000px;}
.y4b{bottom:1015.845000px;}
.y65{bottom:1017.645000px;}
.ye1{bottom:1027.725000px;}
.y2a{bottom:1038.885000px;}
.y64{bottom:1039.965000px;}
.y4a{bottom:1041.765000px;}
.y8{bottom:1051.485000px;}
.ya4{bottom:1053.645000px;}
.y63{bottom:1062.285000px;}
.y29{bottom:1064.805000px;}
.y49{bottom:1067.325000px;}
.ya3{bottom:1079.610000px;}
.y62{bottom:1084.650000px;}
.y28{bottom:1090.770000px;}
.y7{bottom:1092.930000px;}
.y48{bottom:1105.530000px;}
.y6{bottom:1126.770000px;}
.y27{bottom:1129.290000px;}
.y47{bottom:1131.090000px;}
.y3{bottom:1149.090000px;}
.y2{bottom:1170.690000px;}
.y1{bottom:1193.370000px;}
.h10{height:21.600000px;}
.h11{height:21.636000px;}
.hb{height:29.387813px;}
.h12{height:39.600000px;}
.hd{height:42.229688px;}
.hc{height:42.672656px;}
.h7{height:46.736719px;}
.he{height:48.747656px;}
.h3{height:53.302500px;}
.h4{height:54.864844px;}
.ha{height:59.328281px;}
.h9{height:59.357813px;}
.h6{height:60.952500px;}
.hf{height:62.163910px;}
.h8{height:66.757500px;}
.h2{height:72.562500px;}
.h5{height:78.367500px;}
.h13{height:88.956000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:32.076000px;}
.w5{width:32.400000px;}
.w7{width:42.120000px;}
.w14{width:49.320000px;}
.w13{width:49.356000px;}
.w12{width:49.680000px;}
.w11{width:49.716000px;}
.we{width:52.560000px;}
.wf{width:52.596000px;}
.w6{width:55.476000px;}
.w10{width:65.160000px;}
.w8{width:65.196000px;}
.w9{width:79.956000px;}
.wa{width:82.476000px;}
.w3{width:88.236000px;}
.wc{width:113.076000px;}
.w15{width:182.595000px;}
.wb{width:198.075000px;}
.w4{width:270.825000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:7.560000px;}
.x1{left:108.035987px;}
.x2{left:116.675987px;}
.x6{left:118.835987px;}
.x5{left:122.795987px;}
.x7{left:123.875987px;}
.x4{left:127.115987px;}
.x19{left:135.035987px;}
.x12{left:139.752000px;}
.x1a{left:162.074987px;}
.x13{left:192.675000px;}
.x14{left:245.625000px;}
.x3{left:247.784987px;}
.x8{left:266.865000px;}
.x10{left:290.985000px;}
.xb{left:299.625000px;}
.x15{left:311.145000px;}
.xa{left:355.470000px;}
.x16{left:391.470000px;}
.xc{left:397.950000px;}
.xd{left:463.500000px;}
.x17{left:474.300000px;}
.x11{left:489.420000px;}
.x18{left:524.370000px;}
.xe{left:543.810000px;}
.xf{left:617.654987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.ls12{letter-spacing:-5.104000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.269333pt;}
.lsa{letter-spacing:-1.264000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.450667pt;}
.ls7{letter-spacing:-0.023040pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.017920pt;}
.ls0{letter-spacing:0.030720pt;}
.ls1{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.414933pt;}
.ls15{letter-spacing:0.432533pt;}
.lsf{letter-spacing:0.450667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.650240pt;}
.ls18{letter-spacing:1.296000pt;}
.ls14{letter-spacing:1.297920pt;}
.ls19{letter-spacing:10.560000pt;}
.ls5{letter-spacing:10.880000pt;}
.ls1b{letter-spacing:14.494720pt;}
.ls17{letter-spacing:18.240000pt;}
.ls2{letter-spacing:21.120000pt;}
.ls1a{letter-spacing:41.385387pt;}
.lsd{letter-spacing:81.193387pt;}
.wsb{word-spacing:-14.736000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.872533pt;}
.ws6{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-12.989333pt;}
.ws7{word-spacing:-12.160000pt;}
.ws5{word-spacing:-8.651520pt;}
.ws4{word-spacing:-8.640000pt;}
.ws1{word-spacing:-7.810560pt;}
.ws8{word-spacing:-7.370667pt;}
.ws3{word-spacing:0.000000pt;}
._19{margin-left:-7.709013pt;}
._16{margin-left:-6.391467pt;}
._15{margin-left:-4.678400pt;}
._4{margin-left:-3.629227pt;}
._14{margin-left:-2.699947pt;}
._0{margin-left:-1.792000pt;}
._a{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.792000pt;}
._3{width:2.794667pt;}
._e{width:4.422400pt;}
._5{width:5.396480pt;}
._6{width:6.297173pt;}
._10{width:7.356587pt;}
._f{width:8.554240pt;}
._d{width:9.761707pt;}
._c{width:11.064747pt;}
._b{width:12.272213pt;}
._17{width:13.490773pt;}
._13{width:14.981547pt;}
._18{width:16.408747pt;}
._11{width:17.615360pt;}
._12{width:18.511360pt;}
._9{width:19.820373pt;}
._8{width:20.839680pt;}
._7{width:21.760427pt;}
._1a{width:22.740480pt;}
._1b{width:24.294827pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:4.800000pt;}
.y52{bottom:5.120000pt;}
.y69{bottom:5.146667pt;}
.y8a{bottom:5.440000pt;}
.y84{bottom:12.800000pt;}
.y83{bottom:23.040000pt;}
.y87{bottom:35.240000pt;}
.y5{bottom:50.880000pt;}
.y4{bottom:68.832000pt;}
.y8c{bottom:101.152000pt;}
.y8b{bottom:120.992000pt;}
.y26{bottom:123.232000pt;}
.y61{bottom:131.872000pt;}
.yc2{bottom:134.106667pt;}
.y46{bottom:138.266667pt;}
.y86{bottom:140.826667pt;}
.ye0{bottom:141.466667pt;}
.ya2{bottom:144.666667pt;}
.y25{bottom:156.826667pt;}
.y89{bottom:160.666667pt;}
.y45{bottom:161.306667pt;}
.ydf{bottom:164.506667pt;}
.y60{bottom:165.466667pt;}
.ya1{bottom:167.706667pt;}
.yc1{bottom:169.306667pt;}
.y24{bottom:179.906667pt;}
.y88{bottom:180.866667pt;}
.yde{bottom:187.586667pt;}
.ya0{bottom:190.786667pt;}
.yc0{bottom:192.386667pt;}
.y44{bottom:195.266667pt;}
.y5f{bottom:199.746667pt;}
.y85{bottom:200.706667pt;}
.y23{bottom:202.946667pt;}
.ydd{bottom:210.306667pt;}
.y9f{bottom:213.826667pt;}
.ybf{bottom:215.426667pt;}
.y43{bottom:217.986667pt;}
.y82{bottom:220.546667pt;}
.y5e{bottom:222.466667pt;}
.ydc{bottom:233.346667pt;}
.y22{bottom:236.546667pt;}
.y9e{bottom:236.866667pt;}
.ybe{bottom:238.466667pt;}
.y42{bottom:241.026667pt;}
.y5d{bottom:245.506667pt;}
.ydb{bottom:256.386667pt;}
.y21{bottom:259.586667pt;}
.y9d{bottom:259.906667pt;}
.ybd{bottom:272.706667pt;}
.y41{bottom:275.586667pt;}
.y81{bottom:277.826667pt;}
.y5c{bottom:279.106667pt;}
.yda{bottom:279.426667pt;}
.y20{bottom:282.626667pt;}
.yd9{bottom:302.493333pt;}
.y1f{bottom:305.693333pt;}
.ybc{bottom:307.933333pt;}
.y5b{bottom:309.853333pt;}
.y40{bottom:310.813333pt;}
.y80{bottom:311.453333pt;}
.yd8{bottom:325.533333pt;}
.y1e{bottom:328.733333pt;}
.ybb{bottom:330.973333pt;}
.y3f{bottom:333.853333pt;}
.y7f{bottom:334.493333pt;}
.yd7{bottom:348.573333pt;}
.y1d{bottom:351.773333pt;}
.yba{bottom:354.013333pt;}
.y3e{bottom:356.893333pt;}
.y7e{bottom:357.533333pt;}
.yd6{bottom:371.293333pt;}
.y1c{bottom:374.493333pt;}
.y9c{bottom:374.813333pt;}
.yb9{bottom:377.053333pt;}
.yf7{bottom:384.413333pt;}
.y3d{bottom:390.493333pt;}
.y7d{bottom:391.133333pt;}
.yd5{bottom:394.333333pt;}
.yf6{bottom:407.493333pt;}
.y1b{bottom:408.453333pt;}
.yb8{bottom:410.693333pt;}
.y3c{bottom:413.573333pt;}
.y7c{bottom:414.213333pt;}
.yd4{bottom:417.413333pt;}
.yf5{bottom:430.533333pt;}
.y1a{bottom:431.173333pt;}
.y9b{bottom:431.493333pt;}
.yb7{bottom:433.733333pt;}
.y3b{bottom:436.613333pt;}
.y7b{bottom:437.253333pt;}
.yd3{bottom:440.453333pt;}
.yf4{bottom:453.573333pt;}
.y19{bottom:454.213333pt;}
.y9a{bottom:454.533333pt;}
.yb6{bottom:456.773333pt;}
.y3a{bottom:459.333333pt;}
.yd2{bottom:463.493333pt;}
.y7a{bottom:470.853333pt;}
.yf3{bottom:476.293333pt;}
.y99{bottom:477.573333pt;}
.yb5{bottom:479.813333pt;}
.y39{bottom:482.373333pt;}
.yd1{bottom:486.533333pt;}
.y18{bottom:488.133333pt;}
.y79{bottom:493.893333pt;}
.yf2{bottom:499.333333pt;}
.y98{bottom:500.613333pt;}
.yb4{bottom:502.853333pt;}
.yd0{bottom:509.600000pt;}
.y38{bottom:516.000000pt;}
.y78{bottom:516.960000pt;}
.y17{bottom:521.760000pt;}
.yf1{bottom:522.400000pt;}
.y97{bottom:523.360000pt;}
.yb3{bottom:525.920000pt;}
.ycf{bottom:532.640000pt;}
.y16{bottom:544.800000pt;}
.yf0{bottom:545.440000pt;}
.y96{bottom:546.400000pt;}
.yb2{bottom:548.640000pt;}
.y37{bottom:549.920000pt;}
.y77{bottom:550.560000pt;}
.yce{bottom:555.360000pt;}
.y5a{bottom:563.360000pt;}
.y15{bottom:567.520000pt;}
.yef{bottom:568.480000pt;}
.y95{bottom:569.440000pt;}
.yb1{bottom:571.680000pt;}
.y36{bottom:572.960000pt;}
.y76{bottom:573.600000pt;}
.y59{bottom:576.160000pt;}
.ycd{bottom:578.400000pt;}
.yee{bottom:591.520000pt;}
.y58{bottom:596.000000pt;}
.y75{bottom:596.640000pt;}
.ycc{bottom:601.440000pt;}
.y14{bottom:602.080000pt;}
.y94{bottom:603.040000pt;}
.yb0{bottom:605.600000pt;}
.y35{bottom:606.560000pt;}
.yed{bottom:614.560000pt;}
.y57{bottom:615.840000pt;}
.y74{bottom:619.680000pt;}
.ycb{bottom:624.506667pt;}
.y93{bottom:626.106667pt;}
.yaf{bottom:628.346667pt;}
.y56{bottom:635.706667pt;}
.y13{bottom:637.306667pt;}
.yec{bottom:637.626667pt;}
.y34{bottom:640.186667pt;}
.yca{bottom:647.546667pt;}
.y92{bottom:649.146667pt;}
.yae{bottom:651.386667pt;}
.y73{bottom:653.306667pt;}
.y55{bottom:655.546667pt;}
.yeb{bottom:660.346667pt;}
.y12{bottom:663.546667pt;}
.y72{bottom:666.106667pt;}
.yc9{bottom:670.586667pt;}
.y91{bottom:672.186667pt;}
.y33{bottom:673.786667pt;}
.yad{bottom:674.426667pt;}
.y54{bottom:675.386667pt;}
.yea{bottom:683.386667pt;}
.y71{bottom:685.946667pt;}
.y11{bottom:686.586667pt;}
.yc8{bottom:693.626667pt;}
.y90{bottom:695.226667pt;}
.y53{bottom:695.546667pt;}
.y70{bottom:705.786667pt;}
.ye9{bottom:706.426667pt;}
.y32{bottom:707.386667pt;}
.yac{bottom:708.026667pt;}
.y10{bottom:715.386667pt;}
.yc7{bottom:716.666667pt;}
.y6f{bottom:725.626667pt;}
.y8f{bottom:728.826667pt;}
.ye8{bottom:729.466667pt;}
.yab{bottom:731.066667pt;}
.yf{bottom:733.986667pt;}
.y50{bottom:735.266667pt;}
.yc6{bottom:739.426667pt;}
.y31{bottom:741.346667pt;}
.y6e{bottom:745.506667pt;}
.y8e{bottom:751.906667pt;}
.ye7{bottom:752.546667pt;}
.yaa{bottom:754.146667pt;}
.ye{bottom:757.026667pt;}
.yc5{bottom:762.466667pt;}
.y6d{bottom:765.346667pt;}
.y30{bottom:774.946667pt;}
.ye6{bottom:775.586667pt;}
.y4f{bottom:776.546667pt;}
.ya9{bottom:777.186667pt;}
.yd{bottom:780.066667pt;}
.y6c{bottom:785.186667pt;}
.yc4{bottom:785.506667pt;}
.y2f{bottom:797.986667pt;}
.ye5{bottom:798.626667pt;}
.yc{bottom:803.106667pt;}
.y6b{bottom:805.346667pt;}
.yc3{bottom:808.546667pt;}
.y4e{bottom:810.146667pt;}
.ya8{bottom:810.786667pt;}
.y2e{bottom:821.026667pt;}
.ye4{bottom:821.666667pt;}
.y6a{bottom:825.186667pt;}
.y8d{bottom:831.586667pt;}
.y4d{bottom:833.186667pt;}
.ya7{bottom:833.826667pt;}
.yb{bottom:839.906667pt;}
.ye3{bottom:844.386667pt;}
.y68{bottom:845.026667pt;}
.y2d{bottom:854.653333pt;}
.ya6{bottom:856.893333pt;}
.y67{bottom:864.893333pt;}
.y4c{bottom:867.453333pt;}
.ya{bottom:874.493333pt;}
.y2c{bottom:877.693333pt;}
.ya5{bottom:879.933333pt;}
.y66{bottom:884.733333pt;}
.ye2{bottom:890.493333pt;}
.y9{bottom:899.773333pt;}
.y2b{bottom:900.413333pt;}
.y4b{bottom:902.973333pt;}
.y65{bottom:904.573333pt;}
.ye1{bottom:913.533333pt;}
.y2a{bottom:923.453333pt;}
.y64{bottom:924.413333pt;}
.y4a{bottom:926.013333pt;}
.y8{bottom:934.653333pt;}
.ya4{bottom:936.573333pt;}
.y63{bottom:944.253333pt;}
.y29{bottom:946.493333pt;}
.y49{bottom:948.733333pt;}
.ya3{bottom:959.653333pt;}
.y62{bottom:964.133333pt;}
.y28{bottom:969.573333pt;}
.y7{bottom:971.493333pt;}
.y48{bottom:982.693333pt;}
.y6{bottom:1001.573333pt;}
.y27{bottom:1003.813333pt;}
.y47{bottom:1005.413333pt;}
.y3{bottom:1021.413333pt;}
.y2{bottom:1040.613333pt;}
.y1{bottom:1060.773333pt;}
.h10{height:19.200000pt;}
.h11{height:19.232000pt;}
.hb{height:26.122500pt;}
.h12{height:35.200000pt;}
.hd{height:37.537500pt;}
.hc{height:37.931250pt;}
.h7{height:41.543750pt;}
.he{height:43.331250pt;}
.h3{height:47.380000pt;}
.h4{height:48.768750pt;}
.ha{height:52.736250pt;}
.h9{height:52.762500pt;}
.h6{height:54.180000pt;}
.hf{height:55.256809pt;}
.h8{height:59.340000pt;}
.h2{height:64.500000pt;}
.h5{height:69.660000pt;}
.h13{height:79.072000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:28.512000pt;}
.w5{width:28.800000pt;}
.w7{width:37.440000pt;}
.w14{width:43.840000pt;}
.w13{width:43.872000pt;}
.w12{width:44.160000pt;}
.w11{width:44.192000pt;}
.we{width:46.720000pt;}
.wf{width:46.752000pt;}
.w6{width:49.312000pt;}
.w10{width:57.920000pt;}
.w8{width:57.952000pt;}
.w9{width:71.072000pt;}
.wa{width:73.312000pt;}
.w3{width:78.432000pt;}
.wc{width:100.512000pt;}
.w15{width:162.306667pt;}
.wb{width:176.066667pt;}
.w4{width:240.733333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:6.720000pt;}
.x1{left:96.031988pt;}
.x2{left:103.711988pt;}
.x6{left:105.631988pt;}
.x5{left:109.151988pt;}
.x7{left:110.111988pt;}
.x4{left:112.991988pt;}
.x19{left:120.031988pt;}
.x12{left:124.224000pt;}
.x1a{left:144.066655pt;}
.x13{left:171.266667pt;}
.x14{left:218.333333pt;}
.x3{left:220.253322pt;}
.x8{left:237.213333pt;}
.x10{left:258.653333pt;}
.xb{left:266.333333pt;}
.x15{left:276.573333pt;}
.xa{left:315.973333pt;}
.x16{left:347.973333pt;}
.xc{left:353.733333pt;}
.xd{left:412.000000pt;}
.x17{left:421.600000pt;}
.x11{left:435.040000pt;}
.x18{left:466.106667pt;}
.xe{left:483.386667pt;}
.xf{left:549.026655pt;}
}




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