
    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_2f56b768fe5dd268b01dff6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_9f3d3447c4119f21ca5af6dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915527;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_38a778b0d46e5a5e6c77f776.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904356;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_250b4ec1b27bf881bd6cd9a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_ffd69f9849c85ed1915b3d60.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904785;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_68a474d5e63972e518212487.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_ab60115017a00d5e66944c8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_1c8756541b4c62ca4ec1be24.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_945e185ea1d6847c646a0f2e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-13.800000px;}
.ls3{letter-spacing:-13.080000px;}
.lse{letter-spacing:-2.592000px;}
.lsf{letter-spacing:-2.124000px;}
.lsb{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.105600px;}
.ls5{letter-spacing:-0.072000px;}
.ls1{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.039960px;}
.ls4{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.117600px;}
.ls11{letter-spacing:0.125400px;}
.lsa{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.175800px;}
.ls9{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.396000px;}
.ls13{letter-spacing:39.816000px;}
.ls15{letter-spacing:40.109280px;}
.ls14{letter-spacing:40.176000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5e{word-spacing:-53.342640px;}
.ws5d{word-spacing:-40.065360px;}
.ws3{word-spacing:-40.032000px;}
.ws5c{word-spacing:-39.888000px;}
.ws2{word-spacing:-38.970000px;}
.ws6{word-spacing:-33.326640px;}
.ws24{word-spacing:-27.000000px;}
.ws1f{word-spacing:-8.676000px;}
.ws22{word-spacing:-8.424000px;}
.ws29{word-spacing:-7.452000px;}
.ws4a{word-spacing:-3.096000px;}
.ws44{word-spacing:-2.592000px;}
.ws5b{word-spacing:-1.860000px;}
.ws5{word-spacing:-0.906480px;}
.ws21{word-spacing:-0.756000px;}
.ws5a{word-spacing:-0.684000px;}
.ws4{word-spacing:-0.586440px;}
.ws7{word-spacing:-0.546480px;}
.ws23{word-spacing:-0.396000px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:0.084000px;}
.ws28{word-spacing:0.756000px;}
.ws27{word-spacing:1.008000px;}
.ws26{word-spacing:1.164000px;}
.ws2a{word-spacing:1.296000px;}
.ws25{word-spacing:1.692000px;}
.ws15{word-spacing:2.088000px;}
.ws3f{word-spacing:2.916000px;}
.ws3b{word-spacing:3.168000px;}
.ws3d{word-spacing:3.276000px;}
.ws3c{word-spacing:3.312000px;}
.ws3a{word-spacing:3.384000px;}
.ws40{word-spacing:3.564000px;}
.ws46{word-spacing:5.004000px;}
.ws48{word-spacing:5.148000px;}
.ws47{word-spacing:5.292000px;}
.ws45{word-spacing:5.448000px;}
.ws59{word-spacing:6.096000px;}
.ws3e{word-spacing:8.820000px;}
.ws56{word-spacing:9.108000px;}
.ws51{word-spacing:9.144000px;}
.ws49{word-spacing:9.180000px;}
.ws13{word-spacing:10.416000px;}
.ws14{word-spacing:10.620000px;}
.ws16{word-spacing:10.692000px;}
.ws43{word-spacing:11.340000px;}
.ws32{word-spacing:11.664000px;}
.ws42{word-spacing:11.988000px;}
.ws34{word-spacing:12.024000px;}
.ws41{word-spacing:12.348000px;}
.ws57{word-spacing:14.436000px;}
.ws58{word-spacing:14.472000px;}
.wsb{word-spacing:14.760000px;}
.ws1c{word-spacing:14.904000px;}
.ws31{word-spacing:15.156000px;}
.ws2e{word-spacing:15.300000px;}
.ws55{word-spacing:16.884000px;}
.ws50{word-spacing:17.424000px;}
.ws53{word-spacing:17.712000px;}
.ws52{word-spacing:17.748000px;}
.ws54{word-spacing:17.940000px;}
.ws4e{word-spacing:17.976000px;}
.ws33{word-spacing:20.016000px;}
.ws38{word-spacing:20.448000px;}
.ws37{word-spacing:20.556000px;}
.ws39{word-spacing:20.592000px;}
.ws36{word-spacing:20.736000px;}
.ws35{word-spacing:21.180000px;}
.ws4f{word-spacing:21.780000px;}
.ws30{word-spacing:22.860000px;}
.wsa{word-spacing:23.004000px;}
.ws1d{word-spacing:23.124000px;}
.wse{word-spacing:23.184000px;}
.wsd{word-spacing:23.292000px;}
.ws9{word-spacing:23.436000px;}
.ws19{word-spacing:23.484000px;}
.wsf{word-spacing:23.508000px;}
.ws11{word-spacing:23.544000px;}
.ws10{word-spacing:23.616000px;}
.ws17{word-spacing:23.724000px;}
.ws1e{word-spacing:23.760000px;}
.ws1a{word-spacing:23.796000px;}
.ws8{word-spacing:23.808000px;}
.ws12{word-spacing:23.832000px;}
.ws2b{word-spacing:23.940000px;}
.ws18{word-spacing:23.976000px;}
.ws1b{word-spacing:24.084000px;}
.ws2f{word-spacing:24.156000px;}
.wsc{word-spacing:24.228000px;}
.ws2d{word-spacing:24.444000px;}
.ws2c{word-spacing:24.564000px;}
.ws4c{word-spacing:36.156000px;}
.ws4d{word-spacing:36.396000px;}
.ws4b{word-spacing:36.828000px;}
.ws1{word-spacing:86.474520px;}
._b{margin-left:-13.454400px;}
._a{margin-left:-11.952000px;}
._10{margin-left:-10.915920px;}
._2{margin-left:-9.785880px;}
._5{margin-left:-8.250840px;}
._6{margin-left:-7.200000px;}
._7{margin-left:-6.052320px;}
._e{margin-left:-4.844160px;}
._3{margin-left:-3.453840px;}
._9{margin-left:-2.403600px;}
._0{margin-left:-1.296000px;}
._1{width:1.584000px;}
._8{width:2.640960px;}
._4{width:3.645720px;}
._d{width:4.860000px;}
._f{width:6.966000px;}
._c{width:9.552000px;}
._15{width:27.664320px;}
._16{width:29.078880px;}
._18{width:31.433040px;}
._13{width:37.167600px;}
._12{width:38.484000px;}
._1c{width:41.527440px;}
._14{width:42.532080px;}
._1b{width:44.694000px;}
._1a{width:46.005840px;}
._17{width:48.168000px;}
._11{width:51.371280px;}
._19{width:64.729440px;}
._1d{width:266.080560px;}
.fc1{color:rgb(114,163,118);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:108.000000px;}
.fs3{font-size:119.880000px;}
.fs5{font-size:120.000000px;}
.fs1{font-size:134.280000px;}
.fs0{font-size:144.000000px;}
.fs4{font-size:144.120000px;}
.fsb{font-size:151.787810px;}
.fsa{font-size:151.914300px;}
.fs8{font-size:155.880000px;}
.fs7{font-size:162.000000px;}
.fs6{font-size:168.120000px;}
.fsc{font-size:168.240000px;}
.fs2{font-size:191.880000px;}
.y0{bottom:0.000000px;}
.y38{bottom:26.910000px;}
.y1e{bottom:45.150000px;}
.y47{bottom:60.060000px;}
.y29{bottom:64.230000px;}
.y37{bottom:70.110000px;}
.yb{bottom:77.970000px;}
.y12{bottom:87.240000px;}
.y1d{bottom:93.750000px;}
.y45{bottom:96.060000px;}
.y28{bottom:107.430000px;}
.y36{bottom:113.310000px;}
.y67{bottom:117.330000px;}
.yf{bottom:117.480000px;}
.ya{bottom:121.170000px;}
.y11{bottom:130.440000px;}
.y44{bottom:132.060000px;}
.y55{bottom:137.610000px;}
.y1c{bottom:142.380000px;}
.y27{bottom:150.630000px;}
.y35{bottom:156.510000px;}
.y66{bottom:160.530000px;}
.y9{bottom:164.400000px;}
.y5{bottom:167.190000px;}
.ye{bottom:167.880000px;}
.y43{bottom:168.060000px;}
.y54{bottom:170.010000px;}
.y10{bottom:173.640000px;}
.y1{bottom:187.350000px;}
.y1b{bottom:190.980000px;}
.y26{bottom:194.550000px;}
.y34{bottom:199.710000px;}
.y53{bottom:202.410000px;}
.y65{bottom:203.820000px;}
.y42{bottom:204.060000px;}
.y8{bottom:207.600000px;}
.yd{bottom:215.490000px;}
.y4{bottom:224.790000px;}
.y52{bottom:234.810000px;}
.y1a{bottom:239.580000px;}
.y41{bottom:240.090000px;}
.y25{bottom:241.350000px;}
.y33{bottom:242.940000px;}
.y7{bottom:249.450000px;}
.yc{bottom:251.520000px;}
.y51{bottom:267.210000px;}
.y40{bottom:276.090000px;}
.y6{bottom:285.450000px;}
.y32{bottom:286.140000px;}
.y24{bottom:288.150000px;}
.y19{bottom:288.180000px;}
.y64{bottom:290.130000px;}
.y50{bottom:299.610000px;}
.y46{bottom:312.090000px;}
.y31{bottom:329.340000px;}
.y4f{bottom:332.010000px;}
.y63{bottom:333.360000px;}
.y23{bottom:334.950000px;}
.y18{bottom:336.780000px;}
.y3{bottom:340.020000px;}
.y3f{bottom:348.090000px;}
.y4e{bottom:364.410000px;}
.y30{bottom:372.540000px;}
.y62{bottom:376.650000px;}
.y22{bottom:381.780000px;}
.y3e{bottom:384.090000px;}
.y17{bottom:385.380000px;}
.y4d{bottom:396.840000px;}
.y2f{bottom:415.740000px;}
.y61{bottom:419.760000px;}
.y3d{bottom:420.090000px;}
.y21{bottom:428.580000px;}
.y4c{bottom:429.240000px;}
.y6b{bottom:431.940000px;}
.y16{bottom:433.980000px;}
.y2{bottom:455.220000px;}
.y3c{bottom:456.090000px;}
.y2e{bottom:458.940000px;}
.y4b{bottom:461.640000px;}
.y60{bottom:462.960000px;}
.y20{bottom:475.380000px;}
.y15{bottom:482.610000px;}
.y3b{bottom:492.090000px;}
.y4a{bottom:494.040000px;}
.y2d{bottom:502.140000px;}
.y5f{bottom:506.160000px;}
.y1f{bottom:522.180000px;}
.y49{bottom:526.440000px;}
.y3a{bottom:528.090000px;}
.y59{bottom:530.760000px;}
.y14{bottom:531.210000px;}
.y6a{bottom:538.590000px;}
.y2c{bottom:545.340000px;}
.y5e{bottom:549.450000px;}
.y48{bottom:563.790000px;}
.y39{bottom:564.120000px;}
.y13{bottom:579.810000px;}
.y58{bottom:581.160000px;}
.y2b{bottom:588.570000px;}
.y69{bottom:589.020000px;}
.y5d{bottom:592.650000px;}
.y57{bottom:631.590000px;}
.y2a{bottom:631.770000px;}
.y5c{bottom:635.760000px;}
.y68{bottom:639.420000px;}
.y5b{bottom:678.990000px;}
.y56{bottom:681.990000px;}
.y5a{bottom:722.190000px;}
.hf{height:74.619141px;}
.he{height:74.830078px;}
.h3{height:83.061387px;}
.h6{height:83.144531px;}
.h4{height:99.773438px;}
.h5{height:99.856582px;}
.h9{height:108.004746px;}
.h8{height:112.245117px;}
.h15{height:114.609375px;}
.h14{height:114.704883px;}
.h7{height:116.485488px;}
.h16{height:120.807681px;}
.h13{height:120.908354px;}
.hc{height:125.031094px;}
.hd{height:125.156250px;}
.h1{height:129.093750px;}
.h12{height:129.201328px;}
.h2{height:132.948105px;}
.ha{height:150.187500px;}
.hb{height:150.312656px;}
.h11{height:150.716953px;}
.h10{height:175.343906px;}
.h17{height:175.469063px;}
.h18{height:200.124844px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x16{left:57.480000px;}
.x3{left:64.800000px;}
.x5{left:66.120000px;}
.xc{left:74.310000px;}
.x6{left:82.980000px;}
.xb{left:91.620000px;}
.xe{left:100.050000px;}
.x17{left:104.010000px;}
.xf{left:113.040000px;}
.x1{left:120.480000px;}
.x4{left:125.550000px;}
.x2{left:179.550000px;}
.x12{left:182.520000px;}
.x15{left:192.510000px;}
.x7{left:272.370000px;}
.xa{left:304.260000px;}
.x9{left:306.150000px;}
.x8{left:314.580000px;}
.x13{left:440.760000px;}
.xd{left:536.310000px;}
.x14{left:580.800000px;}
.x10{left:601.770000px;}
.x11{left:886.110000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-12.266667pt;}
.ls3{letter-spacing:-11.626667pt;}
.lse{letter-spacing:-2.304000pt;}
.lsf{letter-spacing:-1.888000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.093867pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.035520pt;}
.ls4{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.104533pt;}
.ls11{letter-spacing:0.111467pt;}
.lsa{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.156267pt;}
.ls9{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.352000pt;}
.ls13{letter-spacing:35.392000pt;}
.ls15{letter-spacing:35.652693pt;}
.ls14{letter-spacing:35.712000pt;}
.ws5e{word-spacing:-47.415680pt;}
.ws5d{word-spacing:-35.613653pt;}
.ws3{word-spacing:-35.584000pt;}
.ws5c{word-spacing:-35.456000pt;}
.ws2{word-spacing:-34.640000pt;}
.ws6{word-spacing:-29.623680pt;}
.ws24{word-spacing:-24.000000pt;}
.ws1f{word-spacing:-7.712000pt;}
.ws22{word-spacing:-7.488000pt;}
.ws29{word-spacing:-6.624000pt;}
.ws4a{word-spacing:-2.752000pt;}
.ws44{word-spacing:-2.304000pt;}
.ws5b{word-spacing:-1.653333pt;}
.ws5{word-spacing:-0.805760pt;}
.ws21{word-spacing:-0.672000pt;}
.ws5a{word-spacing:-0.608000pt;}
.ws4{word-spacing:-0.521280pt;}
.ws7{word-spacing:-0.485760pt;}
.ws23{word-spacing:-0.352000pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:0.074667pt;}
.ws28{word-spacing:0.672000pt;}
.ws27{word-spacing:0.896000pt;}
.ws26{word-spacing:1.034667pt;}
.ws2a{word-spacing:1.152000pt;}
.ws25{word-spacing:1.504000pt;}
.ws15{word-spacing:1.856000pt;}
.ws3f{word-spacing:2.592000pt;}
.ws3b{word-spacing:2.816000pt;}
.ws3d{word-spacing:2.912000pt;}
.ws3c{word-spacing:2.944000pt;}
.ws3a{word-spacing:3.008000pt;}
.ws40{word-spacing:3.168000pt;}
.ws46{word-spacing:4.448000pt;}
.ws48{word-spacing:4.576000pt;}
.ws47{word-spacing:4.704000pt;}
.ws45{word-spacing:4.842667pt;}
.ws59{word-spacing:5.418667pt;}
.ws3e{word-spacing:7.840000pt;}
.ws56{word-spacing:8.096000pt;}
.ws51{word-spacing:8.128000pt;}
.ws49{word-spacing:8.160000pt;}
.ws13{word-spacing:9.258667pt;}
.ws14{word-spacing:9.440000pt;}
.ws16{word-spacing:9.504000pt;}
.ws43{word-spacing:10.080000pt;}
.ws32{word-spacing:10.368000pt;}
.ws42{word-spacing:10.656000pt;}
.ws34{word-spacing:10.688000pt;}
.ws41{word-spacing:10.976000pt;}
.ws57{word-spacing:12.832000pt;}
.ws58{word-spacing:12.864000pt;}
.wsb{word-spacing:13.120000pt;}
.ws1c{word-spacing:13.248000pt;}
.ws31{word-spacing:13.472000pt;}
.ws2e{word-spacing:13.600000pt;}
.ws55{word-spacing:15.008000pt;}
.ws50{word-spacing:15.488000pt;}
.ws53{word-spacing:15.744000pt;}
.ws52{word-spacing:15.776000pt;}
.ws54{word-spacing:15.946667pt;}
.ws4e{word-spacing:15.978667pt;}
.ws33{word-spacing:17.792000pt;}
.ws38{word-spacing:18.176000pt;}
.ws37{word-spacing:18.272000pt;}
.ws39{word-spacing:18.304000pt;}
.ws36{word-spacing:18.432000pt;}
.ws35{word-spacing:18.826667pt;}
.ws4f{word-spacing:19.360000pt;}
.ws30{word-spacing:20.320000pt;}
.wsa{word-spacing:20.448000pt;}
.ws1d{word-spacing:20.554667pt;}
.wse{word-spacing:20.608000pt;}
.wsd{word-spacing:20.704000pt;}
.ws9{word-spacing:20.832000pt;}
.ws19{word-spacing:20.874667pt;}
.wsf{word-spacing:20.896000pt;}
.ws11{word-spacing:20.928000pt;}
.ws10{word-spacing:20.992000pt;}
.ws17{word-spacing:21.088000pt;}
.ws1e{word-spacing:21.120000pt;}
.ws1a{word-spacing:21.152000pt;}
.ws8{word-spacing:21.162667pt;}
.ws12{word-spacing:21.184000pt;}
.ws2b{word-spacing:21.280000pt;}
.ws18{word-spacing:21.312000pt;}
.ws1b{word-spacing:21.408000pt;}
.ws2f{word-spacing:21.472000pt;}
.wsc{word-spacing:21.536000pt;}
.ws2d{word-spacing:21.728000pt;}
.ws2c{word-spacing:21.834667pt;}
.ws4c{word-spacing:32.138667pt;}
.ws4d{word-spacing:32.352000pt;}
.ws4b{word-spacing:32.736000pt;}
.ws1{word-spacing:76.866240pt;}
._b{margin-left:-11.959467pt;}
._a{margin-left:-10.624000pt;}
._10{margin-left:-9.703040pt;}
._2{margin-left:-8.698560pt;}
._5{margin-left:-7.334080pt;}
._6{margin-left:-6.400000pt;}
._7{margin-left:-5.379840pt;}
._e{margin-left:-4.305920pt;}
._3{margin-left:-3.070080pt;}
._9{margin-left:-2.136533pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.408000pt;}
._8{width:2.347520pt;}
._4{width:3.240640pt;}
._d{width:4.320000pt;}
._f{width:6.192000pt;}
._c{width:8.490667pt;}
._15{width:24.590507pt;}
._16{width:25.847893pt;}
._18{width:27.940480pt;}
._13{width:33.037867pt;}
._12{width:34.208000pt;}
._1c{width:36.913280pt;}
._14{width:37.806293pt;}
._1b{width:39.728000pt;}
._1a{width:40.894080pt;}
._17{width:42.816000pt;}
._11{width:45.663360pt;}
._19{width:57.537280pt;}
._1d{width:236.516053pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:106.560000pt;}
.fs5{font-size:106.666667pt;}
.fs1{font-size:119.360000pt;}
.fs0{font-size:128.000000pt;}
.fs4{font-size:128.106667pt;}
.fsb{font-size:134.922498pt;}
.fsa{font-size:135.034933pt;}
.fs8{font-size:138.560000pt;}
.fs7{font-size:144.000000pt;}
.fs6{font-size:149.440000pt;}
.fsc{font-size:149.546667pt;}
.fs2{font-size:170.560000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:23.920000pt;}
.y1e{bottom:40.133333pt;}
.y47{bottom:53.386667pt;}
.y29{bottom:57.093333pt;}
.y37{bottom:62.320000pt;}
.yb{bottom:69.306667pt;}
.y12{bottom:77.546667pt;}
.y1d{bottom:83.333333pt;}
.y45{bottom:85.386667pt;}
.y28{bottom:95.493333pt;}
.y36{bottom:100.720000pt;}
.y67{bottom:104.293333pt;}
.yf{bottom:104.426667pt;}
.ya{bottom:107.706667pt;}
.y11{bottom:115.946667pt;}
.y44{bottom:117.386667pt;}
.y55{bottom:122.320000pt;}
.y1c{bottom:126.560000pt;}
.y27{bottom:133.893333pt;}
.y35{bottom:139.120000pt;}
.y66{bottom:142.693333pt;}
.y9{bottom:146.133333pt;}
.y5{bottom:148.613333pt;}
.ye{bottom:149.226667pt;}
.y43{bottom:149.386667pt;}
.y54{bottom:151.120000pt;}
.y10{bottom:154.346667pt;}
.y1{bottom:166.533333pt;}
.y1b{bottom:169.760000pt;}
.y26{bottom:172.933333pt;}
.y34{bottom:177.520000pt;}
.y53{bottom:179.920000pt;}
.y65{bottom:181.173333pt;}
.y42{bottom:181.386667pt;}
.y8{bottom:184.533333pt;}
.yd{bottom:191.546667pt;}
.y4{bottom:199.813333pt;}
.y52{bottom:208.720000pt;}
.y1a{bottom:212.960000pt;}
.y41{bottom:213.413333pt;}
.y25{bottom:214.533333pt;}
.y33{bottom:215.946667pt;}
.y7{bottom:221.733333pt;}
.yc{bottom:223.573333pt;}
.y51{bottom:237.520000pt;}
.y40{bottom:245.413333pt;}
.y6{bottom:253.733333pt;}
.y32{bottom:254.346667pt;}
.y24{bottom:256.133333pt;}
.y19{bottom:256.160000pt;}
.y64{bottom:257.893333pt;}
.y50{bottom:266.320000pt;}
.y46{bottom:277.413333pt;}
.y31{bottom:292.746667pt;}
.y4f{bottom:295.120000pt;}
.y63{bottom:296.320000pt;}
.y23{bottom:297.733333pt;}
.y18{bottom:299.360000pt;}
.y3{bottom:302.240000pt;}
.y3f{bottom:309.413333pt;}
.y4e{bottom:323.920000pt;}
.y30{bottom:331.146667pt;}
.y62{bottom:334.800000pt;}
.y22{bottom:339.360000pt;}
.y3e{bottom:341.413333pt;}
.y17{bottom:342.560000pt;}
.y4d{bottom:352.746667pt;}
.y2f{bottom:369.546667pt;}
.y61{bottom:373.120000pt;}
.y3d{bottom:373.413333pt;}
.y21{bottom:380.960000pt;}
.y4c{bottom:381.546667pt;}
.y6b{bottom:383.946667pt;}
.y16{bottom:385.760000pt;}
.y2{bottom:404.640000pt;}
.y3c{bottom:405.413333pt;}
.y2e{bottom:407.946667pt;}
.y4b{bottom:410.346667pt;}
.y60{bottom:411.520000pt;}
.y20{bottom:422.560000pt;}
.y15{bottom:428.986667pt;}
.y3b{bottom:437.413333pt;}
.y4a{bottom:439.146667pt;}
.y2d{bottom:446.346667pt;}
.y5f{bottom:449.920000pt;}
.y1f{bottom:464.160000pt;}
.y49{bottom:467.946667pt;}
.y3a{bottom:469.413333pt;}
.y59{bottom:471.786667pt;}
.y14{bottom:472.186667pt;}
.y6a{bottom:478.746667pt;}
.y2c{bottom:484.746667pt;}
.y5e{bottom:488.400000pt;}
.y48{bottom:501.146667pt;}
.y39{bottom:501.440000pt;}
.y13{bottom:515.386667pt;}
.y58{bottom:516.586667pt;}
.y2b{bottom:523.173333pt;}
.y69{bottom:523.573333pt;}
.y5d{bottom:526.800000pt;}
.y57{bottom:561.413333pt;}
.y2a{bottom:561.573333pt;}
.y5c{bottom:565.120000pt;}
.y68{bottom:568.373333pt;}
.y5b{bottom:603.546667pt;}
.y56{bottom:606.213333pt;}
.y5a{bottom:641.946667pt;}
.hf{height:66.328125pt;}
.he{height:66.515625pt;}
.h3{height:73.832344pt;}
.h6{height:73.906250pt;}
.h4{height:88.687500pt;}
.h5{height:88.761406pt;}
.h9{height:96.004219pt;}
.h8{height:99.773438pt;}
.h15{height:101.875000pt;}
.h14{height:101.959896pt;}
.h7{height:103.542656pt;}
.h16{height:107.384605pt;}
.h13{height:107.474092pt;}
.hc{height:111.138750pt;}
.hd{height:111.250000pt;}
.h1{height:114.750000pt;}
.h12{height:114.845625pt;}
.h2{height:118.176094pt;}
.ha{height:133.500000pt;}
.hb{height:133.611250pt;}
.h11{height:133.970625pt;}
.h10{height:155.861250pt;}
.h17{height:155.972500pt;}
.h18{height:177.888750pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x16{left:51.093333pt;}
.x3{left:57.600000pt;}
.x5{left:58.773333pt;}
.xc{left:66.053333pt;}
.x6{left:73.760000pt;}
.xb{left:81.440000pt;}
.xe{left:88.933333pt;}
.x17{left:92.453333pt;}
.xf{left:100.480000pt;}
.x1{left:107.093333pt;}
.x4{left:111.600000pt;}
.x2{left:159.600000pt;}
.x12{left:162.240000pt;}
.x15{left:171.120000pt;}
.x7{left:242.106667pt;}
.xa{left:270.453333pt;}
.x9{left:272.133333pt;}
.x8{left:279.626667pt;}
.x13{left:391.786667pt;}
.xd{left:476.720000pt;}
.x14{left:516.266667pt;}
.x10{left:534.906667pt;}
.x11{left:787.653333pt;}
}




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