
    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_6f67b58e80b1677d508378e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_831b08a81828c4319cd142bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.756836;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_f3a9a95ecfccdeb39eef66d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700195;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_b480f491821f84dfa2f86531.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.915039;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_fb9c10f6372000996effff62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1cab119e6489f4ee87a2a008.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7c808d4c0811eb80d8db6b0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_62bc825dfed68e3391c0a6b0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a5d37a4b4444b71209b27e4a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_48175a620e56de499f1965a8.woff2')format("woff");}.ffa{font-family:ffa;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;}
.lsa{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.366000px;}
.ls9{letter-spacing:33.264000px;}
.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:-22.500000px;}
.ws7{word-spacing:-18.353760px;}
.ws9{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.453200px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-2.736000px;}
._0{margin-left:-1.080000px;}
._1{width:1.086000px;}
._2{width:2.232000px;}
._7{width:3.306000px;}
._3{width:4.464000px;}
._4{width:5.760000px;}
._8{width:7.164000px;}
._13{width:9.120000px;}
._9{width:10.152000px;}
._12{width:11.160000px;}
._c{width:12.240000px;}
._d{width:13.680000px;}
._11{width:14.766000px;}
._e{width:15.912000px;}
._16{width:16.992000px;}
._b{width:19.212000px;}
._1a{width:20.220000px;}
._17{width:21.600000px;}
._f{width:23.328000px;}
._10{width:24.408000px;}
._14{width:28.296000px;}
._15{width:29.388000px;}
._5{width:31.752000px;}
._6{width:32.760000px;}
._a{width:33.954000px;}
._18{width:38.952000px;}
._19{width:40.536000px;}
._24{width:43.704000px;}
._25{width:47.664000px;}
._26{width:48.816000px;}
._27{width:50.688000px;}
._28{width:51.984000px;}
._1b{width:70.488000px;}
._1c{width:71.556000px;}
._1d{width:79.560000px;}
._22{width:95.976000px;}
._23{width:97.572000px;}
._21{width:155.520000px;}
._1f{width:230.316000px;}
._1e{width:231.336000px;}
._29{width:282.744000px;}
._2a{width:284.400000px;}
._2b{width:904.728000px;}
.fc2{color:rgb(78,103,200);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(6,60,100);}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:90.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.320000px;}
.y25{bottom:5.250000px;}
.y3{bottom:8.820000px;}
.yb{bottom:13.500000px;}
.y5{bottom:22.860000px;}
.y24{bottom:30.810000px;}
.y2{bottom:34.740000px;}
.y4{bottom:41.580000px;}
.y23{bottom:51.510000px;}
.y9{bottom:56.736000px;}
.ya{bottom:57.996000px;}
.y8{bottom:75.636000px;}
.y22{bottom:81.210000px;}
.y21{bottom:101.910000px;}
.yab{bottom:111.816000px;}
.y66{bottom:114.696000px;}
.y3a{bottom:116.856000px;}
.yd2{bottom:117.756000px;}
.y20{bottom:122.610000px;}
.y8f{bottom:127.116000px;}
.y65{bottom:135.396000px;}
.y39{bottom:137.556000px;}
.yaa{bottom:139.896000px;}
.y1f{bottom:143.310000px;}
.yd1{bottom:145.476000px;}
.y8e{bottom:147.816000px;}
.y64{bottom:156.090000px;}
.y38{bottom:158.250000px;}
.ya9{bottom:160.590000px;}
.y1e{bottom:164.010000px;}
.y8d{bottom:168.510000px;}
.yd0{bottom:176.610000px;}
.y37{bottom:178.950000px;}
.ya8{bottom:181.290000px;}
.y1d{bottom:184.710000px;}
.y63{bottom:185.790000px;}
.y8c{bottom:189.210000px;}
.ycf{bottom:197.310000px;}
.y36{bottom:199.650000px;}
.ya7{bottom:201.990000px;}
.y1c{bottom:205.410000px;}
.y8b{bottom:209.910000px;}
.y62{bottom:215.490000px;}
.yce{bottom:218.010000px;}
.y35{bottom:220.350000px;}
.y1b{bottom:226.110000px;}
.ya6{bottom:230.250000px;}
.y8a{bottom:230.610000px;}
.ycd{bottom:238.710000px;}
.y34{bottom:241.050000px;}
.y61{bottom:245.190000px;}
.y1a{bottom:246.810000px;}
.ya5{bottom:250.950000px;}
.y89{bottom:251.310000px;}
.y33{bottom:261.750000px;}
.y60{bottom:265.890000px;}
.ycc{bottom:266.790000px;}
.y19{bottom:267.510000px;}
.y88{bottom:272.010000px;}
.ya4{bottom:279.210000px;}
.y32{bottom:282.495000px;}
.y5f{bottom:286.635000px;}
.ycb{bottom:287.535000px;}
.y18{bottom:288.255000px;}
.y87{bottom:292.755000px;}
.ya3{bottom:299.955000px;}
.y31{bottom:303.195000px;}
.y5e{bottom:307.335000px;}
.y17{bottom:308.955000px;}
.y86{bottom:313.455000px;}
.yca{bottom:315.795000px;}
.ya2{bottom:320.655000px;}
.y30{bottom:323.895000px;}
.y16{bottom:329.655000px;}
.yc9{bottom:336.495000px;}
.y5d{bottom:337.035000px;}
.y85{bottom:340.095000px;}
.ya1{bottom:341.355000px;}
.y15{bottom:350.355000px;}
.y2f{bottom:350.715000px;}
.y5c{bottom:357.735000px;}
.yc8{bottom:364.755000px;}
.y84{bottom:366.735000px;}
.ya0{bottom:369.435000px;}
.y14{bottom:371.055000px;}
.y2e{bottom:371.415000px;}
.y5b{bottom:378.435000px;}
.yc7{bottom:385.455000px;}
.y83{bottom:387.435000px;}
.y9f{bottom:390.135000px;}
.y13{bottom:391.755000px;}
.y2d{bottom:392.115000px;}
.y5a{bottom:399.135000px;}
.yc6{bottom:406.155000px;}
.y82{bottom:408.135000px;}
.y2c{bottom:412.815000px;}
.y59{bottom:419.835000px;}
.y81{bottom:428.835000px;}
.y2b{bottom:433.515000px;}
.yc5{bottom:434.235000px;}
.y58{bottom:440.535000px;}
.y9e{bottom:449.535000px;}
.y2a{bottom:454.215000px;}
.y80{bottom:455.655000px;}
.yc4{bottom:462.495000px;}
.y57{bottom:470.235000px;}
.y29{bottom:474.915000px;}
.y7f{bottom:476.355000px;}
.yc3{bottom:490.755000px;}
.y56{bottom:490.935000px;}
.y28{bottom:495.615000px;}
.y7e{bottom:497.055000px;}
.yc2{bottom:511.455000px;}
.y55{bottom:511.635000px;}
.y27{bottom:516.315000px;}
.y7d{bottom:517.755000px;}
.y54{bottom:532.335000px;}
.y7c{bottom:538.455000px;}
.yc1{bottom:539.535000px;}
.y26{bottom:542.955000px;}
.y53{bottom:553.035000px;}
.y7b{bottom:559.155000px;}
.y12{bottom:559.695000px;}
.yc0{bottom:560.235000px;}
.y52{bottom:573.765000px;}
.y9d{bottom:582.765000px;}
.y7a{bottom:585.825000px;}
.ybf{bottom:588.525000px;}
.y51{bottom:594.465000px;}
.y9c{bottom:603.465000px;}
.y79{bottom:606.525000px;}
.ybe{bottom:609.225000px;}
.y50{bottom:624.165000px;}
.y78{bottom:627.225000px;}
.ybd{bottom:637.485000px;}
.y9b{bottom:644.865000px;}
.y4f{bottom:653.865000px;}
.ybc{bottom:658.185000px;}
.y9a{bottom:665.565000px;}
.y4e{bottom:674.565000px;}
.ybb{bottom:678.885000px;}
.y99{bottom:686.265000px;}
.y4d{bottom:695.265000px;}
.yba{bottom:706.965000px;}
.y4c{bottom:715.965000px;}
.y77{bottom:722.085000px;}
.yb9{bottom:727.665000px;}
.y4b{bottom:736.665000px;}
.y98{bottom:745.665000px;}
.y76{bottom:748.725000px;}
.yb8{bottom:755.925000px;}
.y4a{bottom:766.365000px;}
.y75{bottom:775.365000px;}
.yb7{bottom:776.625000px;}
.y49{bottom:787.065000px;}
.y74{bottom:796.065000px;}
.yb6{bottom:797.325000px;}
.y48{bottom:807.765000px;}
.y73{bottom:816.765000px;}
.yb5{bottom:825.405000px;}
.y47{bottom:828.465000px;}
.y72{bottom:843.405000px;}
.yb4{bottom:846.105000px;}
.y46{bottom:849.210000px;}
.y97{bottom:858.210000px;}
.y71{bottom:864.150000px;}
.yb3{bottom:866.850000px;}
.y45{bottom:869.910000px;}
.y96{bottom:878.910000px;}
.y70{bottom:884.850000px;}
.y44{bottom:890.610000px;}
.yb2{bottom:895.110000px;}
.y95{bottom:899.610000px;}
.y6f{bottom:905.550000px;}
.y43{bottom:920.310000px;}
.yb1{bottom:923.370000px;}
.y6e{bottom:926.250000px;}
.y42{bottom:941.010000px;}
.yb0{bottom:944.070000px;}
.y6d{bottom:946.950000px;}
.y41{bottom:961.710000px;}
.y94{bottom:970.710000px;}
.yaf{bottom:972.150000px;}
.y6c{bottom:973.770000px;}
.y11{bottom:976.290000px;}
.y40{bottom:982.410000px;}
.y93{bottom:991.410000px;}
.yae{bottom:992.850000px;}
.y6b{bottom:994.470000px;}
.y10{bottom:999.870000px;}
.y3f{bottom:1003.110000px;}
.y92{bottom:1012.110000px;}
.yad{bottom:1013.550000px;}
.y6a{bottom:1015.170000px;}
.yf{bottom:1020.570000px;}
.y3e{bottom:1023.810000px;}
.y91{bottom:1032.810000px;}
.yac{bottom:1034.250000px;}
.y69{bottom:1035.870000px;}
.y3d{bottom:1044.510000px;}
.ye{bottom:1045.410000px;}
.y90{bottom:1053.510000px;}
.y68{bottom:1062.510000px;}
.yd{bottom:1073.310000px;}
.y3c{bottom:1074.210000px;}
.y67{bottom:1083.210000px;}
.yc{bottom:1101.030000px;}
.y3b{bottom:1103.910000px;}
.y7{bottom:1124.250000px;}
.y1{bottom:1148.580000px;}
.h7{height:27.540000px;}
.h8{height:44.061328px;}
.h4{height:44.860781px;}
.h5{height:48.839062px;}
.hf{height:50.273438px;}
.he{height:52.998047px;}
.h2{height:55.800000px;}
.h6{height:65.010937px;}
.h11{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h10{height:74.004654px;}
.hc{height:82.676953px;}
.h9{height:84.898125px;}
.h3{height:90.703125px;}
.hd{height:408.495000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:42.120000px;}
.w3{width:176.970000px;}
.w2{width:559.875000px;}
.w6{width:734.145000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.020000px;}
.x11{left:8.100000px;}
.x12{left:15.840000px;}
.x8{left:23.580000px;}
.x2{left:50.400000px;}
.x10{left:61.194000px;}
.x1{left:97.776000px;}
.xf{left:100.656000px;}
.x6{left:106.415987px;}
.x9{left:122.435987px;}
.xa{left:125.135987px;}
.x13{left:133.235987px;}
.xd{left:174.629987px;}
.x3{left:206.319000px;}
.xc{left:411.374987px;}
.xb{left:467.714987px;}
.xe{left:494.384987px;}
.x4{left:660.885000px;}
.x7{left:787.110000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.325333pt;}
.ls9{letter-spacing:29.568000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws7{word-spacing:-16.314453pt;}
.ws9{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.625067pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-2.432000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.965333pt;}
._2{width:1.984000pt;}
._7{width:2.938667pt;}
._3{width:3.968000pt;}
._4{width:5.120000pt;}
._8{width:6.368000pt;}
._13{width:8.106667pt;}
._9{width:9.024000pt;}
._12{width:9.920000pt;}
._c{width:10.880000pt;}
._d{width:12.160000pt;}
._11{width:13.125333pt;}
._e{width:14.144000pt;}
._16{width:15.104000pt;}
._b{width:17.077333pt;}
._1a{width:17.973333pt;}
._17{width:19.200000pt;}
._f{width:20.736000pt;}
._10{width:21.696000pt;}
._14{width:25.152000pt;}
._15{width:26.122667pt;}
._5{width:28.224000pt;}
._6{width:29.120000pt;}
._a{width:30.181333pt;}
._18{width:34.624000pt;}
._19{width:36.032000pt;}
._24{width:38.848000pt;}
._25{width:42.368000pt;}
._26{width:43.392000pt;}
._27{width:45.056000pt;}
._28{width:46.208000pt;}
._1b{width:62.656000pt;}
._1c{width:63.605333pt;}
._1d{width:70.720000pt;}
._22{width:85.312000pt;}
._23{width:86.730667pt;}
._21{width:138.240000pt;}
._1f{width:204.725333pt;}
._1e{width:205.632000pt;}
._29{width:251.328000pt;}
._2a{width:252.800000pt;}
._2b{width:804.202667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:80.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.840000pt;}
.y25{bottom:4.666667pt;}
.y3{bottom:7.840000pt;}
.yb{bottom:12.000000pt;}
.y5{bottom:20.320000pt;}
.y24{bottom:27.386667pt;}
.y2{bottom:30.880000pt;}
.y4{bottom:36.960000pt;}
.y23{bottom:45.786667pt;}
.y9{bottom:50.432000pt;}
.ya{bottom:51.552000pt;}
.y8{bottom:67.232000pt;}
.y22{bottom:72.186667pt;}
.y21{bottom:90.586667pt;}
.yab{bottom:99.392000pt;}
.y66{bottom:101.952000pt;}
.y3a{bottom:103.872000pt;}
.yd2{bottom:104.672000pt;}
.y20{bottom:108.986667pt;}
.y8f{bottom:112.992000pt;}
.y65{bottom:120.352000pt;}
.y39{bottom:122.272000pt;}
.yaa{bottom:124.352000pt;}
.y1f{bottom:127.386667pt;}
.yd1{bottom:129.312000pt;}
.y8e{bottom:131.392000pt;}
.y64{bottom:138.746667pt;}
.y38{bottom:140.666667pt;}
.ya9{bottom:142.746667pt;}
.y1e{bottom:145.786667pt;}
.y8d{bottom:149.786667pt;}
.yd0{bottom:156.986667pt;}
.y37{bottom:159.066667pt;}
.ya8{bottom:161.146667pt;}
.y1d{bottom:164.186667pt;}
.y63{bottom:165.146667pt;}
.y8c{bottom:168.186667pt;}
.ycf{bottom:175.386667pt;}
.y36{bottom:177.466667pt;}
.ya7{bottom:179.546667pt;}
.y1c{bottom:182.586667pt;}
.y8b{bottom:186.586667pt;}
.y62{bottom:191.546667pt;}
.yce{bottom:193.786667pt;}
.y35{bottom:195.866667pt;}
.y1b{bottom:200.986667pt;}
.ya6{bottom:204.666667pt;}
.y8a{bottom:204.986667pt;}
.ycd{bottom:212.186667pt;}
.y34{bottom:214.266667pt;}
.y61{bottom:217.946667pt;}
.y1a{bottom:219.386667pt;}
.ya5{bottom:223.066667pt;}
.y89{bottom:223.386667pt;}
.y33{bottom:232.666667pt;}
.y60{bottom:236.346667pt;}
.ycc{bottom:237.146667pt;}
.y19{bottom:237.786667pt;}
.y88{bottom:241.786667pt;}
.ya4{bottom:248.186667pt;}
.y32{bottom:251.106667pt;}
.y5f{bottom:254.786667pt;}
.ycb{bottom:255.586667pt;}
.y18{bottom:256.226667pt;}
.y87{bottom:260.226667pt;}
.ya3{bottom:266.626667pt;}
.y31{bottom:269.506667pt;}
.y5e{bottom:273.186667pt;}
.y17{bottom:274.626667pt;}
.y86{bottom:278.626667pt;}
.yca{bottom:280.706667pt;}
.ya2{bottom:285.026667pt;}
.y30{bottom:287.906667pt;}
.y16{bottom:293.026667pt;}
.yc9{bottom:299.106667pt;}
.y5d{bottom:299.586667pt;}
.y85{bottom:302.306667pt;}
.ya1{bottom:303.426667pt;}
.y15{bottom:311.426667pt;}
.y2f{bottom:311.746667pt;}
.y5c{bottom:317.986667pt;}
.yc8{bottom:324.226667pt;}
.y84{bottom:325.986667pt;}
.ya0{bottom:328.386667pt;}
.y14{bottom:329.826667pt;}
.y2e{bottom:330.146667pt;}
.y5b{bottom:336.386667pt;}
.yc7{bottom:342.626667pt;}
.y83{bottom:344.386667pt;}
.y9f{bottom:346.786667pt;}
.y13{bottom:348.226667pt;}
.y2d{bottom:348.546667pt;}
.y5a{bottom:354.786667pt;}
.yc6{bottom:361.026667pt;}
.y82{bottom:362.786667pt;}
.y2c{bottom:366.946667pt;}
.y59{bottom:373.186667pt;}
.y81{bottom:381.186667pt;}
.y2b{bottom:385.346667pt;}
.yc5{bottom:385.986667pt;}
.y58{bottom:391.586667pt;}
.y9e{bottom:399.586667pt;}
.y2a{bottom:403.746667pt;}
.y80{bottom:405.026667pt;}
.yc4{bottom:411.106667pt;}
.y57{bottom:417.986667pt;}
.y29{bottom:422.146667pt;}
.y7f{bottom:423.426667pt;}
.yc3{bottom:436.226667pt;}
.y56{bottom:436.386667pt;}
.y28{bottom:440.546667pt;}
.y7e{bottom:441.826667pt;}
.yc2{bottom:454.626667pt;}
.y55{bottom:454.786667pt;}
.y27{bottom:458.946667pt;}
.y7d{bottom:460.226667pt;}
.y54{bottom:473.186667pt;}
.y7c{bottom:478.626667pt;}
.yc1{bottom:479.586667pt;}
.y26{bottom:482.626667pt;}
.y53{bottom:491.586667pt;}
.y7b{bottom:497.026667pt;}
.y12{bottom:497.506667pt;}
.yc0{bottom:497.986667pt;}
.y52{bottom:510.013333pt;}
.y9d{bottom:518.013333pt;}
.y7a{bottom:520.733333pt;}
.ybf{bottom:523.133333pt;}
.y51{bottom:528.413333pt;}
.y9c{bottom:536.413333pt;}
.y79{bottom:539.133333pt;}
.ybe{bottom:541.533333pt;}
.y50{bottom:554.813333pt;}
.y78{bottom:557.533333pt;}
.ybd{bottom:566.653333pt;}
.y9b{bottom:573.213333pt;}
.y4f{bottom:581.213333pt;}
.ybc{bottom:585.053333pt;}
.y9a{bottom:591.613333pt;}
.y4e{bottom:599.613333pt;}
.ybb{bottom:603.453333pt;}
.y99{bottom:610.013333pt;}
.y4d{bottom:618.013333pt;}
.yba{bottom:628.413333pt;}
.y4c{bottom:636.413333pt;}
.y77{bottom:641.853333pt;}
.yb9{bottom:646.813333pt;}
.y4b{bottom:654.813333pt;}
.y98{bottom:662.813333pt;}
.y76{bottom:665.533333pt;}
.yb8{bottom:671.933333pt;}
.y4a{bottom:681.213333pt;}
.y75{bottom:689.213333pt;}
.yb7{bottom:690.333333pt;}
.y49{bottom:699.613333pt;}
.y74{bottom:707.613333pt;}
.yb6{bottom:708.733333pt;}
.y48{bottom:718.013333pt;}
.y73{bottom:726.013333pt;}
.yb5{bottom:733.693333pt;}
.y47{bottom:736.413333pt;}
.y72{bottom:749.693333pt;}
.yb4{bottom:752.093333pt;}
.y46{bottom:754.853333pt;}
.y97{bottom:762.853333pt;}
.y71{bottom:768.133333pt;}
.yb3{bottom:770.533333pt;}
.y45{bottom:773.253333pt;}
.y96{bottom:781.253333pt;}
.y70{bottom:786.533333pt;}
.y44{bottom:791.653333pt;}
.yb2{bottom:795.653333pt;}
.y95{bottom:799.653333pt;}
.y6f{bottom:804.933333pt;}
.y43{bottom:818.053333pt;}
.yb1{bottom:820.773333pt;}
.y6e{bottom:823.333333pt;}
.y42{bottom:836.453333pt;}
.yb0{bottom:839.173333pt;}
.y6d{bottom:841.733333pt;}
.y41{bottom:854.853333pt;}
.y94{bottom:862.853333pt;}
.yaf{bottom:864.133333pt;}
.y6c{bottom:865.573333pt;}
.y11{bottom:867.813333pt;}
.y40{bottom:873.253333pt;}
.y93{bottom:881.253333pt;}
.yae{bottom:882.533333pt;}
.y6b{bottom:883.973333pt;}
.y10{bottom:888.773333pt;}
.y3f{bottom:891.653333pt;}
.y92{bottom:899.653333pt;}
.yad{bottom:900.933333pt;}
.y6a{bottom:902.373333pt;}
.yf{bottom:907.173333pt;}
.y3e{bottom:910.053333pt;}
.y91{bottom:918.053333pt;}
.yac{bottom:919.333333pt;}
.y69{bottom:920.773333pt;}
.y3d{bottom:928.453333pt;}
.ye{bottom:929.253333pt;}
.y90{bottom:936.453333pt;}
.y68{bottom:944.453333pt;}
.yd{bottom:954.053333pt;}
.y3c{bottom:954.853333pt;}
.y67{bottom:962.853333pt;}
.yc{bottom:978.693333pt;}
.y3b{bottom:981.253333pt;}
.y7{bottom:999.333333pt;}
.y1{bottom:1020.960000pt;}
.h7{height:24.480000pt;}
.h8{height:39.165625pt;}
.h4{height:39.876250pt;}
.h5{height:43.412500pt;}
.hf{height:44.687500pt;}
.he{height:47.109375pt;}
.h2{height:49.600000pt;}
.h6{height:57.787500pt;}
.h11{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h10{height:65.781915pt;}
.hc{height:73.490625pt;}
.h9{height:75.465000pt;}
.h3{height:80.625000pt;}
.hd{height:363.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:37.440000pt;}
.w3{width:157.306667pt;}
.w2{width:497.666667pt;}
.w6{width:652.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.240000pt;}
.x11{left:7.200000pt;}
.x12{left:14.080000pt;}
.x8{left:20.960000pt;}
.x2{left:44.800000pt;}
.x10{left:54.394667pt;}
.x1{left:86.912000pt;}
.xf{left:89.472000pt;}
.x6{left:94.591988pt;}
.x9{left:108.831988pt;}
.xa{left:111.231988pt;}
.x13{left:118.431988pt;}
.xd{left:155.226655pt;}
.x3{left:183.394667pt;}
.xc{left:365.666655pt;}
.xb{left:415.746655pt;}
.xe{left:439.453322pt;}
.x4{left:587.453333pt;}
.x7{left:699.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; }
  