
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_f3f777e4517c0d66171d03fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_64badde639e5c1e272b84350.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c82ce0d67f68a10c4a08ae4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_527725d1837e1e2a516096c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_39800d8936269ffa00a41439.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v1{vertical-align:20.880000px;}
.ls19{letter-spacing:-1.554000px;}
.ls14{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.463800px;}
.ls1a{letter-spacing:-0.346200px;}
.ls25{letter-spacing:-0.343200px;}
.ls18{letter-spacing:-0.326400px;}
.lsd{letter-spacing:-0.303000px;}
.ls20{letter-spacing:-0.301200px;}
.ls11{letter-spacing:-0.248400px;}
.ls7{letter-spacing:-0.175800px;}
.ls13{letter-spacing:-0.064800px;}
.ls1f{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.060480px;}
.lsa{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.097200px;}
.ls8{letter-spacing:0.132480px;}
.ls15{letter-spacing:0.140400px;}
.ls24{letter-spacing:0.174240px;}
.ls26{letter-spacing:0.175200px;}
.ls1c{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.210000px;}
.ls12{letter-spacing:0.249000px;}
.ls5{letter-spacing:0.256200px;}
.ls16{letter-spacing:0.306000px;}
.ls1d{letter-spacing:0.393600px;}
.ls28{letter-spacing:0.433440px;}
.ls10{letter-spacing:0.479400px;}
.ls1e{letter-spacing:0.479520px;}
.ls1b{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.744000px;}
.lsc{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.858000px;}
.lse{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls27{letter-spacing:3.054240px;}
.ls22{letter-spacing:12.186720px;}
.ls21{letter-spacing:42.426720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws4{word-spacing:-21.641760px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wse{word-spacing:-14.363760px;}
.ws11{word-spacing:-14.165760px;}
.wsd{word-spacing:-13.811760px;}
.ws8{word-spacing:-13.754760px;}
.ws16{word-spacing:-13.680960px;}
.wsc{word-spacing:-13.646160px;}
.ws9{word-spacing:-13.566360px;}
.ws5{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.440960px;}
.ws7{word-spacing:-13.257360px;}
.ws13{word-spacing:-13.204560px;}
.ws14{word-spacing:-13.162560px;}
.ws10{word-spacing:-13.159560px;}
.wsb{word-spacing:-12.725760px;}
.wsf{word-spacing:-11.951760px;}
.ws15{word-spacing:-8.722080px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-1454.840400px;}
._2{margin-left:-1333.157760px;}
._3{margin-left:-1013.284800px;}
._5{margin-left:-585.756960px;}
._8{margin-left:-5.741760px;}
._7{margin-left:-4.541760px;}
._6{margin-left:-3.312000px;}
._10{margin-left:-2.290560px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._e{width:2.647440px;}
._a{width:4.009440px;}
._9{width:5.372880px;}
._d{width:6.551280px;}
._b{width:7.703280px;}
._c{width:8.736480px;}
._12{width:10.514160px;}
._f{width:11.895840px;}
._17{width:15.287760px;}
._14{width:16.437600px;}
._13{width:17.509680px;}
._11{width:21.274560px;}
._16{width:25.521120px;}
._18{width:44.939520px;}
._15{width:48.388320px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y82{bottom:6.480000px;}
.y59{bottom:6.660000px;}
.ydc{bottom:7.020000px;}
.y5e{bottom:8.100000px;}
.y81{bottom:27.540000px;}
.y58{bottom:27.720000px;}
.y5b{bottom:27.765000px;}
.ydb{bottom:28.074000px;}
.yd8{bottom:35.454000px;}
.y80{bottom:48.594000px;}
.y57{bottom:48.780000px;}
.yda{bottom:49.494000px;}
.y6{bottom:61.416000px;}
.yd9{bottom:70.554000px;}
.yd6{bottom:91.296000px;}
.y31{bottom:103.356000px;}
.y7f{bottom:105.516000px;}
.ycc{bottom:107.136000px;}
.yb1{bottom:109.296000px;}
.y62{bottom:110.196000px;}
.yd5{bottom:112.356000px;}
.yd7{bottom:123.336000px;}
.y30{bottom:124.416000px;}
.ycb{bottom:128.196000px;}
.yb0{bottom:130.356000px;}
.y61{bottom:131.256000px;}
.yd4{bottom:133.416000px;}
.y2f{bottom:145.476000px;}
.yca{bottom:149.256000px;}
.yaf{bottom:151.410000px;}
.y60{bottom:152.310000px;}
.yd3{bottom:154.470000px;}
.y2e{bottom:166.530000px;}
.y7e{bottom:169.410000px;}
.yc9{bottom:170.130000px;}
.yae{bottom:172.470000px;}
.y5f{bottom:173.370000px;}
.yd2{bottom:175.530000px;}
.y2d{bottom:187.590000px;}
.y5d{bottom:188.490000px;}
.yc8{bottom:191.190000px;}
.yad{bottom:193.530000px;}
.yd1{bottom:196.590000px;}
.y2c{bottom:208.650000px;}
.y5c{bottom:211.710000px;}
.y7d{bottom:212.250000px;}
.yac{bottom:214.590000px;}
.yd0{bottom:217.650000px;}
.y2b{bottom:229.710000px;}
.yc7{bottom:233.310000px;}
.yab{bottom:235.650000px;}
.ycf{bottom:238.710000px;}
.y2a{bottom:250.770000px;}
.yc6{bottom:254.370000px;}
.y5a{bottom:254.550000px;}
.y7c{bottom:255.090000px;}
.yaa{bottom:256.710000px;}
.yce{bottom:259.770000px;}
.y29{bottom:271.830000px;}
.yc5{bottom:275.430000px;}
.ya9{bottom:277.770000px;}
.ycd{bottom:280.830000px;}
.y28{bottom:292.935000px;}
.yc4{bottom:296.535000px;}
.y56{bottom:297.615000px;}
.ya8{bottom:298.875000px;}
.y7b{bottom:301.935000px;}
.y27{bottom:313.995000px;}
.yc3{bottom:317.595000px;}
.ya7{bottom:319.935000px;}
.y7a{bottom:322.995000px;}
.y26{bottom:335.055000px;}
.yc2{bottom:338.655000px;}
.ya6{bottom:340.995000px;}
.y79{bottom:344.055000px;}
.y25{bottom:356.115000px;}
.yc1{bottom:359.715000px;}
.ya5{bottom:362.055000px;}
.y78{bottom:365.115000px;}
.y55{bottom:368.175000px;}
.y24{bottom:377.175000px;}
.yc0{bottom:380.775000px;}
.ya4{bottom:383.115000px;}
.y77{bottom:386.175000px;}
.y54{bottom:389.235000px;}
.y23{bottom:398.055000px;}
.ybf{bottom:401.835000px;}
.ya3{bottom:404.175000px;}
.y76{bottom:407.235000px;}
.y53{bottom:410.295000px;}
.y22{bottom:419.115000px;}
.ybe{bottom:422.895000px;}
.ya2{bottom:425.235000px;}
.y75{bottom:428.295000px;}
.y52{bottom:431.355000px;}
.y21{bottom:440.175000px;}
.ybd{bottom:443.955000px;}
.ya1{bottom:446.295000px;}
.y74{bottom:449.355000px;}
.y51{bottom:452.415000px;}
.y20{bottom:461.235000px;}
.ybc{bottom:465.015000px;}
.ya0{bottom:467.355000px;}
.y73{bottom:470.415000px;}
.y50{bottom:473.475000px;}
.y1f{bottom:482.295000px;}
.ybb{bottom:486.075000px;}
.y9f{bottom:488.415000px;}
.y72{bottom:491.475000px;}
.y4f{bottom:494.535000px;}
.y1e{bottom:503.355000px;}
.yba{bottom:507.135000px;}
.y9e{bottom:509.475000px;}
.y71{bottom:512.535000px;}
.y4e{bottom:515.595000px;}
.y1d{bottom:524.415000px;}
.yb9{bottom:528.195000px;}
.y9d{bottom:530.535000px;}
.y70{bottom:533.595000px;}
.y4d{bottom:536.655000px;}
.y1c{bottom:545.475000px;}
.yb8{bottom:549.255000px;}
.y9c{bottom:551.595000px;}
.y6f{bottom:554.655000px;}
.y1b{bottom:566.565000px;}
.y4c{bottom:566.745000px;}
.yb7{bottom:570.345000px;}
.y9b{bottom:572.685000px;}
.y6e{bottom:575.745000px;}
.y1a{bottom:587.625000px;}
.y4b{bottom:587.805000px;}
.yb6{bottom:591.405000px;}
.y9a{bottom:593.745000px;}
.y6d{bottom:596.805000px;}
.y19{bottom:608.685000px;}
.y4a{bottom:608.865000px;}
.yb5{bottom:612.465000px;}
.y99{bottom:614.805000px;}
.y6c{bottom:617.865000px;}
.y18{bottom:629.745000px;}
.y49{bottom:629.925000px;}
.yb4{bottom:633.525000px;}
.y98{bottom:635.865000px;}
.y6b{bottom:638.925000px;}
.y17{bottom:650.805000px;}
.yb3{bottom:654.585000px;}
.y97{bottom:656.925000px;}
.y6a{bottom:659.805000px;}
.y16{bottom:671.865000px;}
.yb2{bottom:675.645000px;}
.y96{bottom:677.985000px;}
.y69{bottom:680.865000px;}
.y15{bottom:692.925000px;}
.y95{bottom:699.045000px;}
.y68{bottom:701.925000px;}
.y48{bottom:713.985000px;}
.y14{bottom:716.505000px;}
.y94{bottom:720.105000px;}
.y67{bottom:722.985000px;}
.y47{bottom:735.045000px;}
.y93{bottom:741.165000px;}
.y66{bottom:744.045000px;}
.y13{bottom:746.385000px;}
.y46{bottom:756.105000px;}
.y92{bottom:762.225000px;}
.y65{bottom:765.105000px;}
.y12{bottom:767.445000px;}
.y45{bottom:777.165000px;}
.y91{bottom:783.285000px;}
.y64{bottom:786.165000px;}
.y11{bottom:788.505000px;}
.y44{bottom:798.225000px;}
.y90{bottom:804.345000px;}
.y63{bottom:807.225000px;}
.y10{bottom:809.565000px;}
.y8f{bottom:825.405000px;}
.y43{bottom:828.285000px;}
.yf{bottom:830.625000px;}
.y8e{bottom:846.465000px;}
.y42{bottom:849.390000px;}
.ye{bottom:851.730000px;}
.y8d{bottom:867.570000px;}
.y41{bottom:870.450000px;}
.yd{bottom:872.790000px;}
.y8c{bottom:888.630000px;}
.y40{bottom:891.510000px;}
.yc{bottom:896.010000px;}
.y8b{bottom:909.690000px;}
.y3f{bottom:912.570000px;}
.yb{bottom:917.070000px;}
.y8a{bottom:930.750000px;}
.y3e{bottom:933.630000px;}
.ya{bottom:939.030000px;}
.y89{bottom:951.810000px;}
.y3d{bottom:954.690000px;}
.y9{bottom:961.350000px;}
.y88{bottom:972.870000px;}
.y3c{bottom:975.750000px;}
.y8{bottom:986.550000px;}
.y87{bottom:993.930000px;}
.y3b{bottom:996.810000px;}
.y86{bottom:1014.990000px;}
.y3a{bottom:1017.870000px;}
.y7{bottom:1020.210000px;}
.y85{bottom:1030.110000px;}
.y39{bottom:1038.930000px;}
.y38{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.y84{bottom:1072.950000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1102.110000px;}
.y35{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y83{bottom:1136.880000px;}
.y34{bottom:1144.260000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h12{height:2.864531px;}
.hc{height:22.500000px;}
.hb{height:42.120000px;}
.ha{height:42.156000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h10{height:59.551172px;}
.h6{height:61.189805px;}
.hf{height:61.423863px;}
.hd{height:63.000000px;}
.h9{height:63.180000px;}
.he{height:63.216000px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h11{height:84.960000px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:66.240000px;}
.w4{width:68.796000px;}
.w5{width:123.120000px;}
.w3{width:209.730000px;}
.w8{width:210.810000px;}
.w9{width:580.965000px;}
.w7{width:633.525000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.740000px;}
.x8{left:15.660000px;}
.x6{left:18.720000px;}
.x7{left:33.120000px;}
.x1{left:53.999987px;}
.xc{left:80.999987px;}
.x9{left:96.336000px;}
.xd{left:108.035987px;}
.xa{left:163.290000px;}
.xe{left:191.370000px;}
.x2{left:245.010000px;}
.xf{left:264.810000px;}
.xb{left:322.094987px;}
.x4{left:455.475000px;}
.x5{left:524.985000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls19{letter-spacing:-1.381333pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls1a{letter-spacing:-0.307733pt;}
.ls25{letter-spacing:-0.305067pt;}
.ls18{letter-spacing:-0.290133pt;}
.lsd{letter-spacing:-0.269333pt;}
.ls20{letter-spacing:-0.267733pt;}
.ls11{letter-spacing:-0.220800pt;}
.ls7{letter-spacing:-0.156267pt;}
.ls13{letter-spacing:-0.057600pt;}
.ls1f{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.053760pt;}
.lsa{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.086400pt;}
.ls8{letter-spacing:0.117760pt;}
.ls15{letter-spacing:0.124800pt;}
.ls24{letter-spacing:0.154880pt;}
.ls26{letter-spacing:0.155733pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.186667pt;}
.ls12{letter-spacing:0.221333pt;}
.ls5{letter-spacing:0.227733pt;}
.ls16{letter-spacing:0.272000pt;}
.ls1d{letter-spacing:0.349867pt;}
.ls28{letter-spacing:0.385280pt;}
.ls10{letter-spacing:0.426133pt;}
.ls1e{letter-spacing:0.426240pt;}
.ls1b{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.661333pt;}
.lsc{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.762667pt;}
.lse{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls27{letter-spacing:2.714880pt;}
.ls22{letter-spacing:10.832640pt;}
.ls21{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.767787pt;}
.ws11{word-spacing:-12.591787pt;}
.wsd{word-spacing:-12.277120pt;}
.ws8{word-spacing:-12.226453pt;}
.ws16{word-spacing:-12.160853pt;}
.wsc{word-spacing:-12.129920pt;}
.ws9{word-spacing:-12.058987pt;}
.ws5{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.947520pt;}
.ws7{word-spacing:-11.784320pt;}
.ws13{word-spacing:-11.737387pt;}
.ws14{word-spacing:-11.700053pt;}
.ws10{word-spacing:-11.697387pt;}
.wsb{word-spacing:-11.311787pt;}
.wsf{word-spacing:-10.623787pt;}
.ws15{word-spacing:-7.752960pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-1293.191467pt;}
._2{margin-left:-1185.029120pt;}
._3{margin-left:-900.697600pt;}
._5{margin-left:-520.672853pt;}
._8{margin-left:-5.103787pt;}
._7{margin-left:-4.037120pt;}
._6{margin-left:-2.944000pt;}
._10{margin-left:-2.036053pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._e{width:2.353280pt;}
._a{width:3.563947pt;}
._9{width:4.775893pt;}
._d{width:5.823360pt;}
._b{width:6.847360pt;}
._c{width:7.765760pt;}
._12{width:9.345920pt;}
._f{width:10.574080pt;}
._17{width:13.589120pt;}
._14{width:14.611200pt;}
._13{width:15.564160pt;}
._11{width:18.910720pt;}
._16{width:22.685440pt;}
._18{width:39.946240pt;}
._15{width:43.011840pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:5.760000pt;}
.y59{bottom:5.920000pt;}
.ydc{bottom:6.240000pt;}
.y5e{bottom:7.200000pt;}
.y81{bottom:24.480000pt;}
.y58{bottom:24.640000pt;}
.y5b{bottom:24.680000pt;}
.ydb{bottom:24.954667pt;}
.yd8{bottom:31.514667pt;}
.y80{bottom:43.194667pt;}
.y57{bottom:43.360000pt;}
.yda{bottom:43.994667pt;}
.y6{bottom:54.592000pt;}
.yd9{bottom:62.714667pt;}
.yd6{bottom:81.152000pt;}
.y31{bottom:91.872000pt;}
.y7f{bottom:93.792000pt;}
.ycc{bottom:95.232000pt;}
.yb1{bottom:97.152000pt;}
.y62{bottom:97.952000pt;}
.yd5{bottom:99.872000pt;}
.yd7{bottom:109.632000pt;}
.y30{bottom:110.592000pt;}
.ycb{bottom:113.952000pt;}
.yb0{bottom:115.872000pt;}
.y61{bottom:116.672000pt;}
.yd4{bottom:118.592000pt;}
.y2f{bottom:129.312000pt;}
.yca{bottom:132.672000pt;}
.yaf{bottom:134.586667pt;}
.y60{bottom:135.386667pt;}
.yd3{bottom:137.306667pt;}
.y2e{bottom:148.026667pt;}
.y7e{bottom:150.586667pt;}
.yc9{bottom:151.226667pt;}
.yae{bottom:153.306667pt;}
.y5f{bottom:154.106667pt;}
.yd2{bottom:156.026667pt;}
.y2d{bottom:166.746667pt;}
.y5d{bottom:167.546667pt;}
.yc8{bottom:169.946667pt;}
.yad{bottom:172.026667pt;}
.yd1{bottom:174.746667pt;}
.y2c{bottom:185.466667pt;}
.y5c{bottom:188.186667pt;}
.y7d{bottom:188.666667pt;}
.yac{bottom:190.746667pt;}
.yd0{bottom:193.466667pt;}
.y2b{bottom:204.186667pt;}
.yc7{bottom:207.386667pt;}
.yab{bottom:209.466667pt;}
.ycf{bottom:212.186667pt;}
.y2a{bottom:222.906667pt;}
.yc6{bottom:226.106667pt;}
.y5a{bottom:226.266667pt;}
.y7c{bottom:226.746667pt;}
.yaa{bottom:228.186667pt;}
.yce{bottom:230.906667pt;}
.y29{bottom:241.626667pt;}
.yc5{bottom:244.826667pt;}
.ya9{bottom:246.906667pt;}
.ycd{bottom:249.626667pt;}
.y28{bottom:260.386667pt;}
.yc4{bottom:263.586667pt;}
.y56{bottom:264.546667pt;}
.ya8{bottom:265.666667pt;}
.y7b{bottom:268.386667pt;}
.y27{bottom:279.106667pt;}
.yc3{bottom:282.306667pt;}
.ya7{bottom:284.386667pt;}
.y7a{bottom:287.106667pt;}
.y26{bottom:297.826667pt;}
.yc2{bottom:301.026667pt;}
.ya6{bottom:303.106667pt;}
.y79{bottom:305.826667pt;}
.y25{bottom:316.546667pt;}
.yc1{bottom:319.746667pt;}
.ya5{bottom:321.826667pt;}
.y78{bottom:324.546667pt;}
.y55{bottom:327.266667pt;}
.y24{bottom:335.266667pt;}
.yc0{bottom:338.466667pt;}
.ya4{bottom:340.546667pt;}
.y77{bottom:343.266667pt;}
.y54{bottom:345.986667pt;}
.y23{bottom:353.826667pt;}
.ybf{bottom:357.186667pt;}
.ya3{bottom:359.266667pt;}
.y76{bottom:361.986667pt;}
.y53{bottom:364.706667pt;}
.y22{bottom:372.546667pt;}
.ybe{bottom:375.906667pt;}
.ya2{bottom:377.986667pt;}
.y75{bottom:380.706667pt;}
.y52{bottom:383.426667pt;}
.y21{bottom:391.266667pt;}
.ybd{bottom:394.626667pt;}
.ya1{bottom:396.706667pt;}
.y74{bottom:399.426667pt;}
.y51{bottom:402.146667pt;}
.y20{bottom:409.986667pt;}
.ybc{bottom:413.346667pt;}
.ya0{bottom:415.426667pt;}
.y73{bottom:418.146667pt;}
.y50{bottom:420.866667pt;}
.y1f{bottom:428.706667pt;}
.ybb{bottom:432.066667pt;}
.y9f{bottom:434.146667pt;}
.y72{bottom:436.866667pt;}
.y4f{bottom:439.586667pt;}
.y1e{bottom:447.426667pt;}
.yba{bottom:450.786667pt;}
.y9e{bottom:452.866667pt;}
.y71{bottom:455.586667pt;}
.y4e{bottom:458.306667pt;}
.y1d{bottom:466.146667pt;}
.yb9{bottom:469.506667pt;}
.y9d{bottom:471.586667pt;}
.y70{bottom:474.306667pt;}
.y4d{bottom:477.026667pt;}
.y1c{bottom:484.866667pt;}
.yb8{bottom:488.226667pt;}
.y9c{bottom:490.306667pt;}
.y6f{bottom:493.026667pt;}
.y1b{bottom:503.613333pt;}
.y4c{bottom:503.773333pt;}
.yb7{bottom:506.973333pt;}
.y9b{bottom:509.053333pt;}
.y6e{bottom:511.773333pt;}
.y1a{bottom:522.333333pt;}
.y4b{bottom:522.493333pt;}
.yb6{bottom:525.693333pt;}
.y9a{bottom:527.773333pt;}
.y6d{bottom:530.493333pt;}
.y19{bottom:541.053333pt;}
.y4a{bottom:541.213333pt;}
.yb5{bottom:544.413333pt;}
.y99{bottom:546.493333pt;}
.y6c{bottom:549.213333pt;}
.y18{bottom:559.773333pt;}
.y49{bottom:559.933333pt;}
.yb4{bottom:563.133333pt;}
.y98{bottom:565.213333pt;}
.y6b{bottom:567.933333pt;}
.y17{bottom:578.493333pt;}
.yb3{bottom:581.853333pt;}
.y97{bottom:583.933333pt;}
.y6a{bottom:586.493333pt;}
.y16{bottom:597.213333pt;}
.yb2{bottom:600.573333pt;}
.y96{bottom:602.653333pt;}
.y69{bottom:605.213333pt;}
.y15{bottom:615.933333pt;}
.y95{bottom:621.373333pt;}
.y68{bottom:623.933333pt;}
.y48{bottom:634.653333pt;}
.y14{bottom:636.893333pt;}
.y94{bottom:640.093333pt;}
.y67{bottom:642.653333pt;}
.y47{bottom:653.373333pt;}
.y93{bottom:658.813333pt;}
.y66{bottom:661.373333pt;}
.y13{bottom:663.453333pt;}
.y46{bottom:672.093333pt;}
.y92{bottom:677.533333pt;}
.y65{bottom:680.093333pt;}
.y12{bottom:682.173333pt;}
.y45{bottom:690.813333pt;}
.y91{bottom:696.253333pt;}
.y64{bottom:698.813333pt;}
.y11{bottom:700.893333pt;}
.y44{bottom:709.533333pt;}
.y90{bottom:714.973333pt;}
.y63{bottom:717.533333pt;}
.y10{bottom:719.613333pt;}
.y8f{bottom:733.693333pt;}
.y43{bottom:736.253333pt;}
.yf{bottom:738.333333pt;}
.y8e{bottom:752.413333pt;}
.y42{bottom:755.013333pt;}
.ye{bottom:757.093333pt;}
.y8d{bottom:771.173333pt;}
.y41{bottom:773.733333pt;}
.yd{bottom:775.813333pt;}
.y8c{bottom:789.893333pt;}
.y40{bottom:792.453333pt;}
.yc{bottom:796.453333pt;}
.y8b{bottom:808.613333pt;}
.y3f{bottom:811.173333pt;}
.yb{bottom:815.173333pt;}
.y8a{bottom:827.333333pt;}
.y3e{bottom:829.893333pt;}
.ya{bottom:834.693333pt;}
.y89{bottom:846.053333pt;}
.y3d{bottom:848.613333pt;}
.y9{bottom:854.533333pt;}
.y88{bottom:864.773333pt;}
.y3c{bottom:867.333333pt;}
.y8{bottom:876.933333pt;}
.y87{bottom:883.493333pt;}
.y3b{bottom:886.053333pt;}
.y86{bottom:902.213333pt;}
.y3a{bottom:904.773333pt;}
.y7{bottom:906.853333pt;}
.y85{bottom:915.653333pt;}
.y39{bottom:923.493333pt;}
.y38{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.y84{bottom:953.733333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:979.653333pt;}
.y35{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y83{bottom:1010.560000pt;}
.y34{bottom:1017.120000pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h12{height:2.546250pt;}
.hc{height:20.000000pt;}
.hb{height:37.440000pt;}
.ha{height:37.472000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h10{height:52.934375pt;}
.h6{height:54.390938pt;}
.hf{height:54.598989pt;}
.hd{height:56.000000pt;}
.h9{height:56.160000pt;}
.he{height:56.192000pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h11{height:75.520000pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:58.880000pt;}
.w4{width:61.152000pt;}
.w5{width:109.440000pt;}
.w3{width:186.426667pt;}
.w8{width:187.386667pt;}
.w9{width:516.413333pt;}
.w7{width:563.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.880000pt;}
.x8{left:13.920000pt;}
.x6{left:16.640000pt;}
.x7{left:29.440000pt;}
.x1{left:47.999988pt;}
.xc{left:71.999988pt;}
.x9{left:85.632000pt;}
.xd{left:96.031988pt;}
.xa{left:145.146667pt;}
.xe{left:170.106667pt;}
.x2{left:217.786667pt;}
.xf{left:235.386667pt;}
.xb{left:286.306655pt;}
.x4{left:404.866667pt;}
.x5{left:466.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; }
  