
    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_71ebabbc164871c4d8531462.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_4cbd991e3e5042cc26b09d66.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_2f3f49c3c6d72be555145944.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_acaed999ffcb41a700eac72f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.042000;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_9fbf95179713092b6a770ed1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_9430554ea6a5be11a453d1f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_dddb82f69e4861714809f4c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_d6222c7e299e9e5fd63c2a20.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049000;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls26{letter-spacing:-6.420000px;}
.ls21{letter-spacing:-5.694000px;}
.ls25{letter-spacing:-2.262000px;}
.ls24{letter-spacing:-1.542000px;}
.ls27{letter-spacing:-0.582000px;}
.ls22{letter-spacing:-0.348600px;}
.ls6{letter-spacing:-0.295200px;}
.ls23{letter-spacing:-0.234600px;}
.ls5{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.052560px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.010080px;}
.ls16{letter-spacing:0.066960px;}
.ls9{letter-spacing:0.123000px;}
.lsa{letter-spacing:0.129600px;}
.ls17{letter-spacing:0.138240px;}
.ls11{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls18{letter-spacing:0.229200px;}
.ls8{letter-spacing:0.296400px;}
.lsd{letter-spacing:0.371520px;}
.ls13{letter-spacing:0.485280px;}
.ls2{letter-spacing:0.489600px;}
.lsb{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.948000px;}
.ls20{letter-spacing:2.388000px;}
.ls10{letter-spacing:10.080000px;}
.lsf{letter-spacing:10.800000px;}
.lsc{letter-spacing:23.040000px;}
.ls1e{letter-spacing:24.170400px;}
.ls1b{letter-spacing:25.610400px;}
.ls1a{letter-spacing:26.330400px;}
.ls1c{letter-spacing:27.050400px;}
.ls19{letter-spacing:28.490400px;}
.ls15{letter-spacing:30.960000px;}
.ls1d{letter-spacing:33.530400px;}
.ls0{letter-spacing:520.020000px;}
.ls14{letter-spacing:844.284000px;}
.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;}
}
.ws9{word-spacing:-15.264000px;}
.ws1{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.937600px;}
.ws0{word-spacing:-14.616000px;}
.wsb{word-spacing:-13.497600px;}
.wsa{word-spacing:-12.778800px;}
.wsd{word-spacing:-12.679200px;}
.ws10{word-spacing:-12.559680px;}
.ws4{word-spacing:-12.549600px;}
.ws5{word-spacing:-12.497040px;}
.ws11{word-spacing:-12.315000px;}
.wsf{word-spacing:-12.201000px;}
.ws7{word-spacing:-12.131280px;}
.ws6{word-spacing:-12.071520px;}
.ws15{word-spacing:-11.967600px;}
.ws12{word-spacing:-11.007600px;}
.ws13{word-spacing:-10.287600px;}
.ws2{word-spacing:-8.769600px;}
.ws3{word-spacing:-7.560000px;}
.wse{word-spacing:-6.855600px;}
.ws14{word-spacing:-6.129600px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-11.520000px;}
._3f{margin-left:-10.249920px;}
._6{margin-left:-6.612000px;}
._7{margin-left:-5.020800px;}
._b{margin-left:-3.810240px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._a{width:1.088640px;}
._5{width:2.208000px;}
._35{width:3.312000px;}
._39{width:4.536000px;}
._1f{width:5.712000px;}
._17{width:6.984000px;}
._19{width:8.496000px;}
._18{width:9.504000px;}
._1a{width:10.782720px;}
._2e{width:12.744000px;}
._33{width:13.752000px;}
._3e{width:14.819760px;}
._31{width:16.215360px;}
._32{width:17.976000px;}
._15{width:19.152000px;}
._24{width:20.160000px;}
._27{width:21.543360px;}
._26{width:23.256000px;}
._28{width:24.704640px;}
._e{width:26.064000px;}
._f{width:27.135360px;}
._14{width:28.344000px;}
._13{width:29.592000px;}
._2f{width:31.146720px;}
._23{width:32.847360px;}
._22{width:33.984000px;}
._25{width:35.127360px;}
._1d{width:36.432000px;}
._1e{width:37.584000px;}
._10{width:39.312000px;}
._3a{width:40.608000px;}
._2b{width:42.634560px;}
._12{width:43.731360px;}
._11{width:44.856000px;}
._1b{width:47.160000px;}
._1c{width:48.168000px;}
._2a{width:50.040000px;}
._29{width:54.360000px;}
._34{width:56.664000px;}
._20{width:58.464000px;}
._21{width:59.688000px;}
._38{width:74.640000px;}
._37{width:75.744000px;}
._16{width:77.184000px;}
._2d{width:78.264000px;}
._30{width:81.792000px;}
._2c{width:85.536000px;}
._d{width:120.960000px;}
._2{width:475.164000px;}
._8{width:555.012240px;}
._3{width:1295.580000px;}
._3b{width:1457.283840px;}
._3d{width:1458.723840px;}
._3c{width:1464.483840px;}
._36{width:1485.363840px;}
._c{width:1486.803840px;}
._9{width:1491.110400px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y40{bottom:4.500000px;}
.y11{bottom:5.400000px;}
.y1c{bottom:5.760000px;}
.y8{bottom:10.260000px;}
.y3f{bottom:22.500000px;}
.y10{bottom:31.320000px;}
.y1b{bottom:33.120000px;}
.y3e{bottom:40.500000px;}
.yf{bottom:49.320000px;}
.y1a{bottom:51.120000px;}
.y5{bottom:57.600000px;}
.y3d{bottom:58.494000px;}
.ye{bottom:63.000000px;}
.y19{bottom:64.800000px;}
.y3c{bottom:76.494000px;}
.y4{bottom:79.056000px;}
.yd{bottom:84.600000px;}
.y18{bottom:86.400000px;}
.y3b{bottom:95.394000px;}
.yc{bottom:106.200000px;}
.y1d{bottom:107.496000px;}
.y17{bottom:108.000000px;}
.yc3{bottom:115.056000px;}
.y3a{bottom:116.994000px;}
.yb{bottom:128.160000px;}
.y6f{bottom:128.736000px;}
.y16{bottom:129.960000px;}
.y9d{bottom:132.336000px;}
.yc2{bottom:136.656000px;}
.y39{bottom:138.594000px;}
.y6e{bottom:150.330000px;}
.ya{bottom:151.560000px;}
.y15{bottom:153.405000px;}
.y9c{bottom:153.930000px;}
.yc1{bottom:158.250000px;}
.y38{bottom:159.294000px;}
.y6d{bottom:171.930000px;}
.y9{bottom:174.960000px;}
.y9b{bottom:175.530000px;}
.y14{bottom:176.805000px;}
.y37{bottom:177.294000px;}
.y13{bottom:178.245000px;}
.yc0{bottom:179.850000px;}
.y6c{bottom:193.530000px;}
.y36{bottom:195.294000px;}
.y9a{bottom:197.130000px;}
.ybf{bottom:201.450000px;}
.ya3{bottom:203.790000px;}
.y35{bottom:213.294000px;}
.y6b{bottom:215.130000px;}
.y99{bottom:218.730000px;}
.ybe{bottom:223.050000px;}
.ya2{bottom:225.390000px;}
.y34{bottom:231.339000px;}
.y6a{bottom:236.730000px;}
.y98{bottom:240.330000px;}
.ya1{bottom:241.590000px;}
.ybd{bottom:244.650000px;}
.yc7{bottom:246.990000px;}
.y33{bottom:249.339000px;}
.y69{bottom:258.330000px;}
.y97{bottom:261.930000px;}
.yc6{bottom:263.190000px;}
.ybc{bottom:266.250000px;}
.y32{bottom:267.339000px;}
.y68{bottom:279.930000px;}
.y96{bottom:283.530000px;}
.y31{bottom:285.339000px;}
.ybb{bottom:287.850000px;}
.ya7{bottom:295.590000px;}
.y67{bottom:301.530000px;}
.y30{bottom:303.339000px;}
.y95{bottom:305.130000px;}
.yba{bottom:309.450000px;}
.ya6{bottom:317.190000px;}
.y2f{bottom:321.339000px;}
.y66{bottom:323.130000px;}
.y94{bottom:326.730000px;}
.yb9{bottom:331.050000px;}
.ya5{bottom:333.390000px;}
.y2e{bottom:339.339000px;}
.y65{bottom:344.775000px;}
.y93{bottom:348.375000px;}
.yb8{bottom:352.695000px;}
.y2d{bottom:357.339000px;}
.y64{bottom:366.375000px;}
.y92{bottom:369.975000px;}
.yb7{bottom:374.295000px;}
.y2c{bottom:375.339000px;}
.y63{bottom:387.975000px;}
.y91{bottom:391.575000px;}
.y2b{bottom:393.339000px;}
.yb6{bottom:395.895000px;}
.y62{bottom:409.575000px;}
.y2a{bottom:411.339000px;}
.y90{bottom:413.175000px;}
.yb5{bottom:417.495000px;}
.y29{bottom:429.339000px;}
.y61{bottom:431.175000px;}
.y8f{bottom:434.775000px;}
.yb4{bottom:439.095000px;}
.y28{bottom:447.339000px;}
.y60{bottom:452.775000px;}
.y8e{bottom:456.375000px;}
.yb3{bottom:460.695000px;}
.y27{bottom:465.339000px;}
.y5f{bottom:474.375000px;}
.y8d{bottom:477.975000px;}
.yb2{bottom:482.295000px;}
.y26{bottom:483.339000px;}
.y5e{bottom:495.975000px;}
.y8c{bottom:499.575000px;}
.y25{bottom:501.369000px;}
.yb1{bottom:503.895000px;}
.y5d{bottom:517.575000px;}
.y24{bottom:519.369000px;}
.y8b{bottom:521.175000px;}
.yb0{bottom:525.495000px;}
.y23{bottom:537.369000px;}
.y5c{bottom:539.175000px;}
.y8a{bottom:542.775000px;}
.yaf{bottom:547.095000px;}
.y22{bottom:555.369000px;}
.y5b{bottom:560.775000px;}
.y89{bottom:564.375000px;}
.yae{bottom:568.695000px;}
.y21{bottom:573.369000px;}
.y5a{bottom:582.375000px;}
.y88{bottom:585.975000px;}
.yad{bottom:590.295000px;}
.y20{bottom:591.369000px;}
.y59{bottom:604.005000px;}
.y87{bottom:607.605000px;}
.y1f{bottom:610.629000px;}
.yac{bottom:611.925000px;}
.y1e{bottom:612.069000px;}
.y58{bottom:625.605000px;}
.y86{bottom:629.205000px;}
.yab{bottom:633.525000px;}
.ya0{bottom:634.965000px;}
.y57{bottom:647.205000px;}
.y85{bottom:650.805000px;}
.yaa{bottom:655.125000px;}
.y9f{bottom:656.565000px;}
.y56{bottom:668.805000px;}
.y84{bottom:672.405000px;}
.y9e{bottom:672.765000px;}
.ya9{bottom:676.725000px;}
.yc5{bottom:678.165000px;}
.y55{bottom:690.405000px;}
.y83{bottom:694.005000px;}
.yc4{bottom:694.365000px;}
.ya8{bottom:698.325000px;}
.y54{bottom:712.005000px;}
.y82{bottom:715.605000px;}
.y53{bottom:733.605000px;}
.y12{bottom:736.485000px;}
.y81{bottom:737.205000px;}
.y52{bottom:755.205000px;}
.y80{bottom:758.805000px;}
.ya4{bottom:775.005000px;}
.y51{bottom:776.805000px;}
.y7f{bottom:780.405000px;}
.yda{bottom:783.105000px;}
.y50{bottom:798.405000px;}
.yd9{bottom:801.105000px;}
.y7e{bottom:802.005000px;}
.yd8{bottom:819.105000px;}
.y4f{bottom:820.005000px;}
.y7d{bottom:823.605000px;}
.yd7{bottom:837.105000px;}
.y4e{bottom:841.605000px;}
.y7c{bottom:845.205000px;}
.yd6{bottom:855.105000px;}
.y4d{bottom:863.205000px;}
.y7b{bottom:866.805000px;}
.yd5{bottom:873.150000px;}
.y4c{bottom:884.850000px;}
.y7a{bottom:888.450000px;}
.yd4{bottom:891.150000px;}
.y4b{bottom:906.450000px;}
.yd3{bottom:909.150000px;}
.y79{bottom:910.050000px;}
.yd2{bottom:927.150000px;}
.y4a{bottom:928.050000px;}
.y7{bottom:931.650000px;}
.yd1{bottom:945.150000px;}
.y49{bottom:949.650000px;}
.y78{bottom:953.250000px;}
.yd0{bottom:963.150000px;}
.y48{bottom:971.250000px;}
.y77{bottom:974.850000px;}
.ycf{bottom:981.150000px;}
.y47{bottom:992.850000px;}
.y76{bottom:996.450000px;}
.yce{bottom:999.150000px;}
.y46{bottom:1014.450000px;}
.ycd{bottom:1017.150000px;}
.y75{bottom:1018.050000px;}
.ycc{bottom:1035.150000px;}
.y45{bottom:1036.050000px;}
.y74{bottom:1039.650000px;}
.ycb{bottom:1053.150000px;}
.y44{bottom:1057.650000px;}
.y73{bottom:1061.250000px;}
.yca{bottom:1071.150000px;}
.y43{bottom:1079.250000px;}
.y72{bottom:1082.850000px;}
.yc9{bottom:1089.150000px;}
.y42{bottom:1101.210000px;}
.y71{bottom:1104.450000px;}
.yc8{bottom:1107.150000px;}
.y41{bottom:1124.610000px;}
.y70{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.h8{height:30.420000px;}
.h5{height:50.497200px;}
.hb{height:51.632640px;}
.hc{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h7{height:67.262400px;}
.h6{height:192.600000px;}
.h9{height:194.430000px;}
.ha{height:628.275000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:202.215000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x7{left:106.235987px;}
.x2{left:190.290000px;}
.x3{left:287.175000px;}
.x6{left:807.809987px;}
.x5{left:809.609987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls26{letter-spacing:-5.706667pt;}
.ls21{letter-spacing:-5.061333pt;}
.ls25{letter-spacing:-2.010667pt;}
.ls24{letter-spacing:-1.370667pt;}
.ls27{letter-spacing:-0.517333pt;}
.ls22{letter-spacing:-0.309867pt;}
.ls6{letter-spacing:-0.262400pt;}
.ls23{letter-spacing:-0.208533pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.046720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.008960pt;}
.ls16{letter-spacing:0.059520pt;}
.ls9{letter-spacing:0.109333pt;}
.lsa{letter-spacing:0.115200pt;}
.ls17{letter-spacing:0.122880pt;}
.ls11{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls18{letter-spacing:0.203733pt;}
.ls8{letter-spacing:0.263467pt;}
.lsd{letter-spacing:0.330240pt;}
.ls13{letter-spacing:0.431360pt;}
.ls2{letter-spacing:0.435200pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.842667pt;}
.ls20{letter-spacing:2.122667pt;}
.ls10{letter-spacing:8.960000pt;}
.lsf{letter-spacing:9.600000pt;}
.lsc{letter-spacing:20.480000pt;}
.ls1e{letter-spacing:21.484800pt;}
.ls1b{letter-spacing:22.764800pt;}
.ls1a{letter-spacing:23.404800pt;}
.ls1c{letter-spacing:24.044800pt;}
.ls19{letter-spacing:25.324800pt;}
.ls15{letter-spacing:27.520000pt;}
.ls1d{letter-spacing:29.804800pt;}
.ls0{letter-spacing:462.240000pt;}
.ls14{letter-spacing:750.474667pt;}
.ws9{word-spacing:-13.568000pt;}
.ws1{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.277867pt;}
.ws0{word-spacing:-12.992000pt;}
.wsb{word-spacing:-11.997867pt;}
.wsa{word-spacing:-11.358933pt;}
.wsd{word-spacing:-11.270400pt;}
.ws10{word-spacing:-11.164160pt;}
.ws4{word-spacing:-11.155200pt;}
.ws5{word-spacing:-11.108480pt;}
.ws11{word-spacing:-10.946667pt;}
.wsf{word-spacing:-10.845333pt;}
.ws7{word-spacing:-10.783360pt;}
.ws6{word-spacing:-10.730240pt;}
.ws15{word-spacing:-10.637867pt;}
.ws12{word-spacing:-9.784533pt;}
.ws13{word-spacing:-9.144533pt;}
.ws2{word-spacing:-7.795200pt;}
.ws3{word-spacing:-6.720000pt;}
.wse{word-spacing:-6.093867pt;}
.ws14{word-spacing:-5.448533pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-10.240000pt;}
._3f{margin-left:-9.111040pt;}
._6{margin-left:-5.877333pt;}
._7{margin-left:-4.462933pt;}
._b{margin-left:-3.386880pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._a{width:0.967680pt;}
._5{width:1.962667pt;}
._35{width:2.944000pt;}
._39{width:4.032000pt;}
._1f{width:5.077333pt;}
._17{width:6.208000pt;}
._19{width:7.552000pt;}
._18{width:8.448000pt;}
._1a{width:9.584640pt;}
._2e{width:11.328000pt;}
._33{width:12.224000pt;}
._3e{width:13.173120pt;}
._31{width:14.413653pt;}
._32{width:15.978667pt;}
._15{width:17.024000pt;}
._24{width:17.920000pt;}
._27{width:19.149653pt;}
._26{width:20.672000pt;}
._28{width:21.959680pt;}
._e{width:23.168000pt;}
._f{width:24.120320pt;}
._14{width:25.194667pt;}
._13{width:26.304000pt;}
._2f{width:27.685973pt;}
._23{width:29.197653pt;}
._22{width:30.208000pt;}
._25{width:31.224320pt;}
._1d{width:32.384000pt;}
._1e{width:33.408000pt;}
._10{width:34.944000pt;}
._3a{width:36.096000pt;}
._2b{width:37.897387pt;}
._12{width:38.872320pt;}
._11{width:39.872000pt;}
._1b{width:41.920000pt;}
._1c{width:42.816000pt;}
._2a{width:44.480000pt;}
._29{width:48.320000pt;}
._34{width:50.368000pt;}
._20{width:51.968000pt;}
._21{width:53.056000pt;}
._38{width:66.346667pt;}
._37{width:67.328000pt;}
._16{width:68.608000pt;}
._2d{width:69.568000pt;}
._30{width:72.704000pt;}
._2c{width:76.032000pt;}
._d{width:107.520000pt;}
._2{width:422.368000pt;}
._8{width:493.344213pt;}
._3{width:1151.626667pt;}
._3b{width:1295.363413pt;}
._3d{width:1296.643413pt;}
._3c{width:1301.763413pt;}
._36{width:1320.323413pt;}
._c{width:1321.603413pt;}
._9{width:1325.431467pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:4.000000pt;}
.y11{bottom:4.800000pt;}
.y1c{bottom:5.120000pt;}
.y8{bottom:9.120000pt;}
.y3f{bottom:20.000000pt;}
.y10{bottom:27.840000pt;}
.y1b{bottom:29.440000pt;}
.y3e{bottom:36.000000pt;}
.yf{bottom:43.840000pt;}
.y1a{bottom:45.440000pt;}
.y5{bottom:51.200000pt;}
.y3d{bottom:51.994667pt;}
.ye{bottom:56.000000pt;}
.y19{bottom:57.600000pt;}
.y3c{bottom:67.994667pt;}
.y4{bottom:70.272000pt;}
.yd{bottom:75.200000pt;}
.y18{bottom:76.800000pt;}
.y3b{bottom:84.794667pt;}
.yc{bottom:94.400000pt;}
.y1d{bottom:95.552000pt;}
.y17{bottom:96.000000pt;}
.yc3{bottom:102.272000pt;}
.y3a{bottom:103.994667pt;}
.yb{bottom:113.920000pt;}
.y6f{bottom:114.432000pt;}
.y16{bottom:115.520000pt;}
.y9d{bottom:117.632000pt;}
.yc2{bottom:121.472000pt;}
.y39{bottom:123.194667pt;}
.y6e{bottom:133.626667pt;}
.ya{bottom:134.720000pt;}
.y15{bottom:136.360000pt;}
.y9c{bottom:136.826667pt;}
.yc1{bottom:140.666667pt;}
.y38{bottom:141.594667pt;}
.y6d{bottom:152.826667pt;}
.y9{bottom:155.520000pt;}
.y9b{bottom:156.026667pt;}
.y14{bottom:157.160000pt;}
.y37{bottom:157.594667pt;}
.y13{bottom:158.440000pt;}
.yc0{bottom:159.866667pt;}
.y6c{bottom:172.026667pt;}
.y36{bottom:173.594667pt;}
.y9a{bottom:175.226667pt;}
.ybf{bottom:179.066667pt;}
.ya3{bottom:181.146667pt;}
.y35{bottom:189.594667pt;}
.y6b{bottom:191.226667pt;}
.y99{bottom:194.426667pt;}
.ybe{bottom:198.266667pt;}
.ya2{bottom:200.346667pt;}
.y34{bottom:205.634667pt;}
.y6a{bottom:210.426667pt;}
.y98{bottom:213.626667pt;}
.ya1{bottom:214.746667pt;}
.ybd{bottom:217.466667pt;}
.yc7{bottom:219.546667pt;}
.y33{bottom:221.634667pt;}
.y69{bottom:229.626667pt;}
.y97{bottom:232.826667pt;}
.yc6{bottom:233.946667pt;}
.ybc{bottom:236.666667pt;}
.y32{bottom:237.634667pt;}
.y68{bottom:248.826667pt;}
.y96{bottom:252.026667pt;}
.y31{bottom:253.634667pt;}
.ybb{bottom:255.866667pt;}
.ya7{bottom:262.746667pt;}
.y67{bottom:268.026667pt;}
.y30{bottom:269.634667pt;}
.y95{bottom:271.226667pt;}
.yba{bottom:275.066667pt;}
.ya6{bottom:281.946667pt;}
.y2f{bottom:285.634667pt;}
.y66{bottom:287.226667pt;}
.y94{bottom:290.426667pt;}
.yb9{bottom:294.266667pt;}
.ya5{bottom:296.346667pt;}
.y2e{bottom:301.634667pt;}
.y65{bottom:306.466667pt;}
.y93{bottom:309.666667pt;}
.yb8{bottom:313.506667pt;}
.y2d{bottom:317.634667pt;}
.y64{bottom:325.666667pt;}
.y92{bottom:328.866667pt;}
.yb7{bottom:332.706667pt;}
.y2c{bottom:333.634667pt;}
.y63{bottom:344.866667pt;}
.y91{bottom:348.066667pt;}
.y2b{bottom:349.634667pt;}
.yb6{bottom:351.906667pt;}
.y62{bottom:364.066667pt;}
.y2a{bottom:365.634667pt;}
.y90{bottom:367.266667pt;}
.yb5{bottom:371.106667pt;}
.y29{bottom:381.634667pt;}
.y61{bottom:383.266667pt;}
.y8f{bottom:386.466667pt;}
.yb4{bottom:390.306667pt;}
.y28{bottom:397.634667pt;}
.y60{bottom:402.466667pt;}
.y8e{bottom:405.666667pt;}
.yb3{bottom:409.506667pt;}
.y27{bottom:413.634667pt;}
.y5f{bottom:421.666667pt;}
.y8d{bottom:424.866667pt;}
.yb2{bottom:428.706667pt;}
.y26{bottom:429.634667pt;}
.y5e{bottom:440.866667pt;}
.y8c{bottom:444.066667pt;}
.y25{bottom:445.661333pt;}
.yb1{bottom:447.906667pt;}
.y5d{bottom:460.066667pt;}
.y24{bottom:461.661333pt;}
.y8b{bottom:463.266667pt;}
.yb0{bottom:467.106667pt;}
.y23{bottom:477.661333pt;}
.y5c{bottom:479.266667pt;}
.y8a{bottom:482.466667pt;}
.yaf{bottom:486.306667pt;}
.y22{bottom:493.661333pt;}
.y5b{bottom:498.466667pt;}
.y89{bottom:501.666667pt;}
.yae{bottom:505.506667pt;}
.y21{bottom:509.661333pt;}
.y5a{bottom:517.666667pt;}
.y88{bottom:520.866667pt;}
.yad{bottom:524.706667pt;}
.y20{bottom:525.661333pt;}
.y59{bottom:536.893333pt;}
.y87{bottom:540.093333pt;}
.y1f{bottom:542.781333pt;}
.yac{bottom:543.933333pt;}
.y1e{bottom:544.061333pt;}
.y58{bottom:556.093333pt;}
.y86{bottom:559.293333pt;}
.yab{bottom:563.133333pt;}
.ya0{bottom:564.413333pt;}
.y57{bottom:575.293333pt;}
.y85{bottom:578.493333pt;}
.yaa{bottom:582.333333pt;}
.y9f{bottom:583.613333pt;}
.y56{bottom:594.493333pt;}
.y84{bottom:597.693333pt;}
.y9e{bottom:598.013333pt;}
.ya9{bottom:601.533333pt;}
.yc5{bottom:602.813333pt;}
.y55{bottom:613.693333pt;}
.y83{bottom:616.893333pt;}
.yc4{bottom:617.213333pt;}
.ya8{bottom:620.733333pt;}
.y54{bottom:632.893333pt;}
.y82{bottom:636.093333pt;}
.y53{bottom:652.093333pt;}
.y12{bottom:654.653333pt;}
.y81{bottom:655.293333pt;}
.y52{bottom:671.293333pt;}
.y80{bottom:674.493333pt;}
.ya4{bottom:688.893333pt;}
.y51{bottom:690.493333pt;}
.y7f{bottom:693.693333pt;}
.yda{bottom:696.093333pt;}
.y50{bottom:709.693333pt;}
.yd9{bottom:712.093333pt;}
.y7e{bottom:712.893333pt;}
.yd8{bottom:728.093333pt;}
.y4f{bottom:728.893333pt;}
.y7d{bottom:732.093333pt;}
.yd7{bottom:744.093333pt;}
.y4e{bottom:748.093333pt;}
.y7c{bottom:751.293333pt;}
.yd6{bottom:760.093333pt;}
.y4d{bottom:767.293333pt;}
.y7b{bottom:770.493333pt;}
.yd5{bottom:776.133333pt;}
.y4c{bottom:786.533333pt;}
.y7a{bottom:789.733333pt;}
.yd4{bottom:792.133333pt;}
.y4b{bottom:805.733333pt;}
.yd3{bottom:808.133333pt;}
.y79{bottom:808.933333pt;}
.yd2{bottom:824.133333pt;}
.y4a{bottom:824.933333pt;}
.y7{bottom:828.133333pt;}
.yd1{bottom:840.133333pt;}
.y49{bottom:844.133333pt;}
.y78{bottom:847.333333pt;}
.yd0{bottom:856.133333pt;}
.y48{bottom:863.333333pt;}
.y77{bottom:866.533333pt;}
.ycf{bottom:872.133333pt;}
.y47{bottom:882.533333pt;}
.y76{bottom:885.733333pt;}
.yce{bottom:888.133333pt;}
.y46{bottom:901.733333pt;}
.ycd{bottom:904.133333pt;}
.y75{bottom:904.933333pt;}
.ycc{bottom:920.133333pt;}
.y45{bottom:920.933333pt;}
.y74{bottom:924.133333pt;}
.ycb{bottom:936.133333pt;}
.y44{bottom:940.133333pt;}
.y73{bottom:943.333333pt;}
.yca{bottom:952.133333pt;}
.y43{bottom:959.333333pt;}
.y72{bottom:962.533333pt;}
.yc9{bottom:968.133333pt;}
.y42{bottom:978.853333pt;}
.y71{bottom:981.733333pt;}
.yc8{bottom:984.133333pt;}
.y41{bottom:999.653333pt;}
.y70{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.h8{height:27.040000pt;}
.h5{height:44.886400pt;}
.hb{height:45.895680pt;}
.hc{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h7{height:59.788800pt;}
.h6{height:171.200000pt;}
.h9{height:172.826667pt;}
.ha{height:558.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:179.746667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x7{left:94.431988pt;}
.x2{left:169.146667pt;}
.x3{left:255.266667pt;}
.x6{left:718.053322pt;}
.x5{left:719.653322pt;}
}




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