
    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_e4e09fbd449861645c587726.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_369e41fd6e6096c9aea7c363.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6bb4ae2faae9517ffd09d7c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e295975664c2f877f4250b53.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.046387;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_25c9d744c2c1b954867957f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:11.466720px;}
.lsb{letter-spacing:41.682720px;}
.lsc{letter-spacing:49.626720px;}
.ls6{letter-spacing:64.002720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._6{width:2.444880px;}
._2{width:4.245600px;}
._8{width:5.318640px;}
._7{width:7.051680px;}
._d{width:8.054400px;}
._f{width:9.613680px;}
._9{width:11.466240px;}
._a{width:12.728880px;}
._e{width:13.729440px;}
._12{width:16.680240px;}
._c{width:17.808480px;}
._b{width:19.063440px;}
._17{width:20.096880px;}
._13{width:21.446160px;}
._11{width:23.485680px;}
._10{width:25.338240px;}
._16{width:26.601360px;}
._15{width:27.720480px;}
._14{width:28.804320px;}
._1b{width:31.716000px;}
._1a{width:33.004080px;}
._1e{width:35.430000px;}
._1d{width:36.453600px;}
._1c{width:37.708560px;}
._26{width:43.975680px;}
._25{width:45.537120px;}
._18{width:62.262240px;}
._19{width:63.719760px;}
._21{width:89.042400px;}
._24{width:114.918480px;}
._23{width:116.053920px;}
._5{width:136.056000px;}
._20{width:148.742640px;}
._1f{width:149.818320px;}
._22{width:155.202240px;}
._4{width:636.906000px;}
._3{width:748.236000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.240000px;}
.yc8{bottom:20.340000px;}
.y9c{bottom:20.520000px;}
.y87{bottom:28.080000px;}
.yb{bottom:36.720000px;}
.yc4{bottom:37.620000px;}
.y9b{bottom:37.794000px;}
.yc2{bottom:37.800000px;}
.y9a{bottom:55.074000px;}
.yc6{bottom:55.080000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y99{bottom:72.354000px;}
.y8d{bottom:81.390000px;}
.y92{bottom:98.640000px;}
.y8c{bottom:98.670000px;}
.yc7{bottom:110.016000px;}
.yf0{bottom:112.896000px;}
.y91{bottom:115.920000px;}
.y8b{bottom:115.950000px;}
.y77{bottom:119.556000px;}
.y7a{bottom:123.696000px;}
.y40{bottom:125.496000px;}
.y98{bottom:127.836000px;}
.y97{bottom:129.825000px;}
.yef{bottom:129.996000px;}
.ya3{bottom:130.545000px;}
.y90{bottom:133.200000px;}
.y8a{bottom:133.230000px;}
.y7d{bottom:133.596000px;}
.y76{bottom:136.836000px;}
.y79{bottom:140.976000px;}
.y3f{bottom:142.596000px;}
.y96{bottom:147.105000px;}
.yee{bottom:147.276000px;}
.ya2{bottom:147.825000px;}
.y8f{bottom:150.480000px;}
.y89{bottom:150.510000px;}
.y7c{bottom:151.950000px;}
.y75{bottom:154.110000px;}
.y78{bottom:155.010000px;}
.y3e{bottom:159.870000px;}
.yc5{bottom:162.390000px;}
.y95{bottom:164.385000px;}
.yed{bottom:164.550000px;}
.ya1{bottom:165.105000px;}
.y7b{bottom:170.310000px;}
.yf2{bottom:171.210000px;}
.y74{bottom:171.390000px;}
.y3d{bottom:177.150000px;}
.y94{bottom:181.665000px;}
.yec{bottom:181.830000px;}
.ya0{bottom:182.385000px;}
.yf1{bottom:185.250000px;}
.y73{bottom:188.490000px;}
.y3c{bottom:194.430000px;}
.yeb{bottom:199.110000px;}
.y9f{bottom:199.485000px;}
.y72{bottom:205.770000px;}
.y3b{bottom:211.710000px;}
.y93{bottom:214.950000px;}
.yea{bottom:216.390000px;}
.y71{bottom:223.050000px;}
.y3a{bottom:228.990000px;}
.yc3{bottom:232.230000px;}
.ye9{bottom:233.490000px;}
.y70{bottom:240.330000px;}
.y39{bottom:246.090000px;}
.ye8{bottom:250.770000px;}
.y6f{bottom:257.610000px;}
.y38{bottom:263.370000px;}
.ye7{bottom:268.050000px;}
.y6e{bottom:274.890000px;}
.y37{bottom:280.650000px;}
.yc1{bottom:284.610000px;}
.ye6{bottom:285.330000px;}
.y6d{bottom:291.990000px;}
.y36{bottom:297.930000px;}
.ye5{bottom:302.610000px;}
.y6c{bottom:309.270000px;}
.y35{bottom:317.370000px;}
.ye4{bottom:319.890000px;}
.y6b{bottom:326.550000px;}
.y34{bottom:334.650000px;}
.ye3{bottom:337.035000px;}
.yc0{bottom:337.215000px;}
.y6a{bottom:343.875000px;}
.y33{bottom:351.975000px;}
.ye2{bottom:354.315000px;}
.ybf{bottom:358.455000px;}
.y69{bottom:361.155000px;}
.y32{bottom:369.255000px;}
.ye1{bottom:371.595000px;}
.ybe{bottom:375.735000px;}
.y68{bottom:378.255000px;}
.y31{bottom:386.355000px;}
.ye0{bottom:388.875000px;}
.ybd{bottom:393.015000px;}
.y67{bottom:395.535000px;}
.y30{bottom:403.635000px;}
.ydf{bottom:406.155000px;}
.ybc{bottom:410.115000px;}
.y8e{bottom:411.375000px;}
.y66{bottom:412.815000px;}
.y2f{bottom:420.915000px;}
.yde{bottom:423.255000px;}
.ybb{bottom:427.395000px;}
.y65{bottom:430.095000px;}
.y2e{bottom:438.195000px;}
.ydd{bottom:440.535000px;}
.yba{bottom:444.675000px;}
.y64{bottom:447.375000px;}
.y2d{bottom:455.475000px;}
.ydc{bottom:457.815000px;}
.yb9{bottom:461.955000px;}
.y63{bottom:464.655000px;}
.y2c{bottom:472.755000px;}
.ydb{bottom:475.095000px;}
.yb8{bottom:479.235000px;}
.y62{bottom:481.755000px;}
.y2b{bottom:489.855000px;}
.yda{bottom:492.375000px;}
.yb7{bottom:496.515000px;}
.y61{bottom:499.035000px;}
.y2a{bottom:507.135000px;}
.yd9{bottom:509.655000px;}
.yb6{bottom:513.615000px;}
.y60{bottom:516.315000px;}
.y29{bottom:524.415000px;}
.yd8{bottom:526.755000px;}
.yb5{bottom:531.975000px;}
.y5f{bottom:533.595000px;}
.y28{bottom:541.695000px;}
.yd7{bottom:544.035000px;}
.yb4{bottom:549.255000px;}
.y5e{bottom:550.875000px;}
.y27{bottom:558.975000px;}
.yd6{bottom:561.315000px;}
.yb3{bottom:567.615000px;}
.y5d{bottom:568.155000px;}
.y26{bottom:576.255000px;}
.y88{bottom:576.615000px;}
.yd5{bottom:578.595000px;}
.y5c{bottom:585.255000px;}
.yb2{bottom:585.975000px;}
.y25{bottom:593.355000px;}
.yd4{bottom:595.875000px;}
.y5b{bottom:602.535000px;}
.yb1{bottom:604.185000px;}
.y24{bottom:610.665000px;}
.yd3{bottom:613.185000px;}
.y5a{bottom:619.845000px;}
.yb0{bottom:622.545000px;}
.y23{bottom:627.945000px;}
.yd2{bottom:630.285000px;}
.y59{bottom:637.125000px;}
.yaf{bottom:639.825000px;}
.y22{bottom:645.225000px;}
.yd1{bottom:647.565000px;}
.y58{bottom:654.405000px;}
.yae{bottom:658.185000px;}
.yd0{bottom:662.325000px;}
.y21{bottom:662.505000px;}
.y57{bottom:671.685000px;}
.yad{bottom:676.545000px;}
.y20{bottom:679.785000px;}
.y56{bottom:688.785000px;}
.yac{bottom:693.825000px;}
.y1f{bottom:696.885000px;}
.y55{bottom:706.065000px;}
.yab{bottom:712.005000px;}
.y1e{bottom:714.165000px;}
.ycf{bottom:714.885000px;}
.y54{bottom:723.345000px;}
.yaa{bottom:729.285000px;}
.y1d{bottom:731.445000px;}
.y53{bottom:740.625000px;}
.y86{bottom:741.885000px;}
.ya9{bottom:747.645000px;}
.y1c{bottom:748.725000px;}
.y52{bottom:757.905000px;}
.ya8{bottom:764.925000px;}
.y1b{bottom:766.005000px;}
.yce{bottom:767.265000px;}
.y51{bottom:775.005000px;}
.y1a{bottom:783.105000px;}
.ya7{bottom:783.285000px;}
.y85{bottom:787.965000px;}
.y50{bottom:792.285000px;}
.ya6{bottom:801.465000px;}
.y19{bottom:802.725000px;}
.y84{bottom:805.245000px;}
.y4f{bottom:809.565000px;}
.ya5{bottom:818.745000px;}
.ycd{bottom:819.825000px;}
.y18{bottom:820.365000px;}
.y83{bottom:822.525000px;}
.y4e{bottom:826.845000px;}
.ya4{bottom:836.025000px;}
.y17{bottom:839.265000px;}
.y82{bottom:840.885000px;}
.y4d{bottom:844.125000px;}
.y9e{bottom:850.785000px;}
.y81{bottom:858.165000px;}
.y16{bottom:858.345000px;}
.y4c{bottom:861.405000px;}
.ycc{bottom:872.430000px;}
.y80{bottom:876.390000px;}
.y15{bottom:877.290000px;}
.y4b{bottom:878.550000px;}
.y7f{bottom:893.670000px;}
.y4a{bottom:895.830000px;}
.y14{bottom:896.370000px;}
.y7e{bottom:912.030000px;}
.y49{bottom:913.110000px;}
.y13{bottom:915.270000px;}
.ycb{bottom:924.810000px;}
.y48{bottom:930.390000px;}
.y12{bottom:934.170000px;}
.y47{bottom:947.670000px;}
.y11{bottom:953.250000px;}
.yca{bottom:960.090000px;}
.y46{bottom:964.950000px;}
.y10{bottom:972.150000px;}
.y45{bottom:982.050000px;}
.yf{bottom:991.230000px;}
.y44{bottom:999.330000px;}
.ye{bottom:1009.770000px;}
.yc9{bottom:1012.650000px;}
.y43{bottom:1016.610000px;}
.yd{bottom:1027.770000px;}
.y42{bottom:1033.890000px;}
.yc{bottom:1048.290000px;}
.y41{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h10{height:17.280000px;}
.h15{height:34.560000px;}
.ha{height:42.120000px;}
.h5{height:42.164648px;}
.h9{height:43.302656px;}
.h6{height:44.850586px;}
.h8{height:46.736719px;}
.h2{height:49.634648px;}
.h4{height:50.800781px;}
.h12{height:51.660000px;}
.h14{height:51.840000px;}
.h11{height:51.876000px;}
.h3{height:55.016719px;}
.h7{height:65.884219px;}
.h13{height:69.120000px;}
.he{height:86.220000px;}
.hb{height:164.370000px;}
.hc{height:164.520000px;}
.hd{height:195.690000px;}
.hf{height:213.510000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:157.170000px;}
.w6{width:160.230000px;}
.w5{width:164.730000px;}
.w3{width:185.430000px;}
.w8{width:190.650000px;}
.w4{width:216.390000px;}
.w9{width:286.230000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.740000px;}
.x22{left:46.800000px;}
.x1c{left:57.420000px;}
.x1{left:108.035987px;}
.x7{left:117.935987px;}
.x2{left:123.155987px;}
.x19{left:135.035987px;}
.xb{left:143.135987px;}
.x4{left:157.169987px;}
.x1a{left:162.029987px;}
.x2a{left:189.029987px;}
.x23{left:207.930000px;}
.xc{left:210.449987px;}
.x27{left:218.189987px;}
.x1e{left:243.570000px;}
.x21{left:257.429987px;}
.x1b{left:268.589987px;}
.x10{left:292.034987px;}
.x8{left:298.874987px;}
.x11{left:319.394987px;}
.x13{left:333.974987px;}
.x15{left:349.454987px;}
.xa{left:351.254987px;}
.x17{left:352.514987px;}
.xf{left:356.654987px;}
.x24{left:365.835000px;}
.xd{left:368.894987px;}
.xe{left:370.154987px;}
.x18{left:373.214987px;}
.x14{left:375.194987px;}
.x12{left:384.194987px;}
.x29{left:389.414987px;}
.x6{left:396.434987px;}
.x26{left:401.114987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x1f{left:460.695000px;}
.x3{left:518.504987px;}
.x25{left:557.205000px;}
.x20{left:646.845000px;}
.x16{left:785.129987px;}
.x28{left:834.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:10.192640pt;}
.lsb{letter-spacing:37.051307pt;}
.lsc{letter-spacing:44.112640pt;}
.ls6{letter-spacing:56.891307pt;}
.ws7{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._6{width:2.173227pt;}
._2{width:3.773867pt;}
._8{width:4.727680pt;}
._7{width:6.268160pt;}
._d{width:7.159467pt;}
._f{width:8.545493pt;}
._9{width:10.192213pt;}
._a{width:11.314560pt;}
._e{width:12.203947pt;}
._12{width:14.826880pt;}
._c{width:15.829760pt;}
._b{width:16.945280pt;}
._17{width:17.863893pt;}
._13{width:19.063253pt;}
._11{width:20.876160pt;}
._10{width:22.522880pt;}
._16{width:23.645653pt;}
._15{width:24.640427pt;}
._14{width:25.603840pt;}
._1b{width:28.192000pt;}
._1a{width:29.336960pt;}
._1e{width:31.493333pt;}
._1d{width:32.403200pt;}
._1c{width:33.518720pt;}
._26{width:39.089493pt;}
._25{width:40.477440pt;}
._18{width:55.344213pt;}
._19{width:56.639787pt;}
._21{width:79.148800pt;}
._24{width:102.149760pt;}
._23{width:103.159040pt;}
._5{width:120.938667pt;}
._20{width:132.215680pt;}
._1f{width:133.171840pt;}
._22{width:137.957547pt;}
._4{width:566.138667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:2.880000pt;}
.yc8{bottom:18.080000pt;}
.y9c{bottom:18.240000pt;}
.y87{bottom:24.960000pt;}
.yb{bottom:32.640000pt;}
.yc4{bottom:33.440000pt;}
.y9b{bottom:33.594667pt;}
.yc2{bottom:33.600000pt;}
.y9a{bottom:48.954667pt;}
.yc6{bottom:48.960000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y99{bottom:64.314667pt;}
.y8d{bottom:72.346667pt;}
.y92{bottom:87.680000pt;}
.y8c{bottom:87.706667pt;}
.yc7{bottom:97.792000pt;}
.yf0{bottom:100.352000pt;}
.y91{bottom:103.040000pt;}
.y8b{bottom:103.066667pt;}
.y77{bottom:106.272000pt;}
.y7a{bottom:109.952000pt;}
.y40{bottom:111.552000pt;}
.y98{bottom:113.632000pt;}
.y97{bottom:115.400000pt;}
.yef{bottom:115.552000pt;}
.ya3{bottom:116.040000pt;}
.y90{bottom:118.400000pt;}
.y8a{bottom:118.426667pt;}
.y7d{bottom:118.752000pt;}
.y76{bottom:121.632000pt;}
.y79{bottom:125.312000pt;}
.y3f{bottom:126.752000pt;}
.y96{bottom:130.760000pt;}
.yee{bottom:130.912000pt;}
.ya2{bottom:131.400000pt;}
.y8f{bottom:133.760000pt;}
.y89{bottom:133.786667pt;}
.y7c{bottom:135.066667pt;}
.y75{bottom:136.986667pt;}
.y78{bottom:137.786667pt;}
.y3e{bottom:142.106667pt;}
.yc5{bottom:144.346667pt;}
.y95{bottom:146.120000pt;}
.yed{bottom:146.266667pt;}
.ya1{bottom:146.760000pt;}
.y7b{bottom:151.386667pt;}
.yf2{bottom:152.186667pt;}
.y74{bottom:152.346667pt;}
.y3d{bottom:157.466667pt;}
.y94{bottom:161.480000pt;}
.yec{bottom:161.626667pt;}
.ya0{bottom:162.120000pt;}
.yf1{bottom:164.666667pt;}
.y73{bottom:167.546667pt;}
.y3c{bottom:172.826667pt;}
.yeb{bottom:176.986667pt;}
.y9f{bottom:177.320000pt;}
.y72{bottom:182.906667pt;}
.y3b{bottom:188.186667pt;}
.y93{bottom:191.066667pt;}
.yea{bottom:192.346667pt;}
.y71{bottom:198.266667pt;}
.y3a{bottom:203.546667pt;}
.yc3{bottom:206.426667pt;}
.ye9{bottom:207.546667pt;}
.y70{bottom:213.626667pt;}
.y39{bottom:218.746667pt;}
.ye8{bottom:222.906667pt;}
.y6f{bottom:228.986667pt;}
.y38{bottom:234.106667pt;}
.ye7{bottom:238.266667pt;}
.y6e{bottom:244.346667pt;}
.y37{bottom:249.466667pt;}
.yc1{bottom:252.986667pt;}
.ye6{bottom:253.626667pt;}
.y6d{bottom:259.546667pt;}
.y36{bottom:264.826667pt;}
.ye5{bottom:268.986667pt;}
.y6c{bottom:274.906667pt;}
.y35{bottom:282.106667pt;}
.ye4{bottom:284.346667pt;}
.y6b{bottom:290.266667pt;}
.y34{bottom:297.466667pt;}
.ye3{bottom:299.586667pt;}
.yc0{bottom:299.746667pt;}
.y6a{bottom:305.666667pt;}
.y33{bottom:312.866667pt;}
.ye2{bottom:314.946667pt;}
.ybf{bottom:318.626667pt;}
.y69{bottom:321.026667pt;}
.y32{bottom:328.226667pt;}
.ye1{bottom:330.306667pt;}
.ybe{bottom:333.986667pt;}
.y68{bottom:336.226667pt;}
.y31{bottom:343.426667pt;}
.ye0{bottom:345.666667pt;}
.ybd{bottom:349.346667pt;}
.y67{bottom:351.586667pt;}
.y30{bottom:358.786667pt;}
.ydf{bottom:361.026667pt;}
.ybc{bottom:364.546667pt;}
.y8e{bottom:365.666667pt;}
.y66{bottom:366.946667pt;}
.y2f{bottom:374.146667pt;}
.yde{bottom:376.226667pt;}
.ybb{bottom:379.906667pt;}
.y65{bottom:382.306667pt;}
.y2e{bottom:389.506667pt;}
.ydd{bottom:391.586667pt;}
.yba{bottom:395.266667pt;}
.y64{bottom:397.666667pt;}
.y2d{bottom:404.866667pt;}
.ydc{bottom:406.946667pt;}
.yb9{bottom:410.626667pt;}
.y63{bottom:413.026667pt;}
.y2c{bottom:420.226667pt;}
.ydb{bottom:422.306667pt;}
.yb8{bottom:425.986667pt;}
.y62{bottom:428.226667pt;}
.y2b{bottom:435.426667pt;}
.yda{bottom:437.666667pt;}
.yb7{bottom:441.346667pt;}
.y61{bottom:443.586667pt;}
.y2a{bottom:450.786667pt;}
.yd9{bottom:453.026667pt;}
.yb6{bottom:456.546667pt;}
.y60{bottom:458.946667pt;}
.y29{bottom:466.146667pt;}
.yd8{bottom:468.226667pt;}
.yb5{bottom:472.866667pt;}
.y5f{bottom:474.306667pt;}
.y28{bottom:481.506667pt;}
.yd7{bottom:483.586667pt;}
.yb4{bottom:488.226667pt;}
.y5e{bottom:489.666667pt;}
.y27{bottom:496.866667pt;}
.yd6{bottom:498.946667pt;}
.yb3{bottom:504.546667pt;}
.y5d{bottom:505.026667pt;}
.y26{bottom:512.226667pt;}
.y88{bottom:512.546667pt;}
.yd5{bottom:514.306667pt;}
.y5c{bottom:520.226667pt;}
.yb2{bottom:520.866667pt;}
.y25{bottom:527.426667pt;}
.yd4{bottom:529.666667pt;}
.y5b{bottom:535.586667pt;}
.yb1{bottom:537.053333pt;}
.y24{bottom:542.813333pt;}
.yd3{bottom:545.053333pt;}
.y5a{bottom:550.973333pt;}
.yb0{bottom:553.373333pt;}
.y23{bottom:558.173333pt;}
.yd2{bottom:560.253333pt;}
.y59{bottom:566.333333pt;}
.yaf{bottom:568.733333pt;}
.y22{bottom:573.533333pt;}
.yd1{bottom:575.613333pt;}
.y58{bottom:581.693333pt;}
.yae{bottom:585.053333pt;}
.yd0{bottom:588.733333pt;}
.y21{bottom:588.893333pt;}
.y57{bottom:597.053333pt;}
.yad{bottom:601.373333pt;}
.y20{bottom:604.253333pt;}
.y56{bottom:612.253333pt;}
.yac{bottom:616.733333pt;}
.y1f{bottom:619.453333pt;}
.y55{bottom:627.613333pt;}
.yab{bottom:632.893333pt;}
.y1e{bottom:634.813333pt;}
.ycf{bottom:635.453333pt;}
.y54{bottom:642.973333pt;}
.yaa{bottom:648.253333pt;}
.y1d{bottom:650.173333pt;}
.y53{bottom:658.333333pt;}
.y86{bottom:659.453333pt;}
.ya9{bottom:664.573333pt;}
.y1c{bottom:665.533333pt;}
.y52{bottom:673.693333pt;}
.ya8{bottom:679.933333pt;}
.y1b{bottom:680.893333pt;}
.yce{bottom:682.013333pt;}
.y51{bottom:688.893333pt;}
.y1a{bottom:696.093333pt;}
.ya7{bottom:696.253333pt;}
.y85{bottom:700.413333pt;}
.y50{bottom:704.253333pt;}
.ya6{bottom:712.413333pt;}
.y19{bottom:713.533333pt;}
.y84{bottom:715.773333pt;}
.y4f{bottom:719.613333pt;}
.ya5{bottom:727.773333pt;}
.ycd{bottom:728.733333pt;}
.y18{bottom:729.213333pt;}
.y83{bottom:731.133333pt;}
.y4e{bottom:734.973333pt;}
.ya4{bottom:743.133333pt;}
.y17{bottom:746.013333pt;}
.y82{bottom:747.453333pt;}
.y4d{bottom:750.333333pt;}
.y9e{bottom:756.253333pt;}
.y81{bottom:762.813333pt;}
.y16{bottom:762.973333pt;}
.y4c{bottom:765.693333pt;}
.ycc{bottom:775.493333pt;}
.y80{bottom:779.013333pt;}
.y15{bottom:779.813333pt;}
.y4b{bottom:780.933333pt;}
.y7f{bottom:794.373333pt;}
.y4a{bottom:796.293333pt;}
.y14{bottom:796.773333pt;}
.y7e{bottom:810.693333pt;}
.y49{bottom:811.653333pt;}
.y13{bottom:813.573333pt;}
.ycb{bottom:822.053333pt;}
.y48{bottom:827.013333pt;}
.y12{bottom:830.373333pt;}
.y47{bottom:842.373333pt;}
.y11{bottom:847.333333pt;}
.yca{bottom:853.413333pt;}
.y46{bottom:857.733333pt;}
.y10{bottom:864.133333pt;}
.y45{bottom:872.933333pt;}
.yf{bottom:881.093333pt;}
.y44{bottom:888.293333pt;}
.ye{bottom:897.573333pt;}
.yc9{bottom:900.133333pt;}
.y43{bottom:903.653333pt;}
.yd{bottom:913.573333pt;}
.y42{bottom:919.013333pt;}
.yc{bottom:931.813333pt;}
.y41{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h10{height:15.360000pt;}
.h15{height:30.720000pt;}
.ha{height:37.440000pt;}
.h5{height:37.479688pt;}
.h9{height:38.491250pt;}
.h6{height:39.867188pt;}
.h8{height:41.543750pt;}
.h2{height:44.119688pt;}
.h4{height:45.156250pt;}
.h12{height:45.920000pt;}
.h14{height:46.080000pt;}
.h11{height:46.112000pt;}
.h3{height:48.903750pt;}
.h7{height:58.563750pt;}
.h13{height:61.440000pt;}
.he{height:76.640000pt;}
.hb{height:146.106667pt;}
.hc{height:146.240000pt;}
.hd{height:173.946667pt;}
.hf{height:189.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:139.706667pt;}
.w6{width:142.426667pt;}
.w5{width:146.426667pt;}
.w3{width:164.826667pt;}
.w8{width:169.466667pt;}
.w4{width:192.346667pt;}
.w9{width:254.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.880000pt;}
.x22{left:41.600000pt;}
.x1c{left:51.040000pt;}
.x1{left:96.031988pt;}
.x7{left:104.831988pt;}
.x2{left:109.471988pt;}
.x19{left:120.031988pt;}
.xb{left:127.231988pt;}
.x4{left:139.706655pt;}
.x1a{left:144.026655pt;}
.x2a{left:168.026655pt;}
.x23{left:184.826667pt;}
.xc{left:187.066655pt;}
.x27{left:193.946655pt;}
.x1e{left:216.506667pt;}
.x21{left:228.826655pt;}
.x1b{left:238.746655pt;}
.x10{left:259.586655pt;}
.x8{left:265.666655pt;}
.x11{left:283.906655pt;}
.x13{left:296.866655pt;}
.x15{left:310.626655pt;}
.xa{left:312.226655pt;}
.x17{left:313.346655pt;}
.xf{left:317.026655pt;}
.x24{left:325.186667pt;}
.xd{left:327.906655pt;}
.xe{left:329.026655pt;}
.x18{left:331.746655pt;}
.x14{left:333.506655pt;}
.x12{left:341.506655pt;}
.x29{left:346.146655pt;}
.x6{left:352.386655pt;}
.x26{left:356.546655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x1f{left:409.506667pt;}
.x3{left:460.893322pt;}
.x25{left:495.293333pt;}
.x20{left:574.973333pt;}
.x16{left:697.893322pt;}
.x28{left:742.053322pt;}
}




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