
    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_5087ed02cad6a698cd80e987.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_1933c005942e20d6537ba14c.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c19636be32528e7833336dcd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_a1c96847fc9ed1906d2a6852.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_a28209b937e63d53d5ef2cc7.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a76c2095c2c81594143e0230.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-0.648000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls1{letter-spacing:16.020000px;}
.ls3{letter-spacing:64.397280px;}
.ls6{letter-spacing:150.797280px;}
.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;}
}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-4.536000px;}
._9{margin-left:-3.462240px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._6{width:3.255840px;}
._5{width:4.596480px;}
._10{width:5.897280px;}
._c{width:7.056000px;}
._d{width:8.064000px;}
._11{width:9.720000px;}
._12{width:11.664000px;}
._13{width:12.831360px;}
._16{width:14.365440px;}
._b{width:15.425280px;}
._a{width:16.488000px;}
._e{width:19.584000px;}
._f{width:20.664000px;}
._19{width:21.672000px;}
._1b{width:23.616000px;}
._1c{width:24.624000px;}
._1a{width:26.352000px;}
._14{width:27.396000px;}
._15{width:28.692000px;}
._1f{width:30.617280px;}
._17{width:31.680000px;}
._18{width:32.688000px;}
._1e{width:33.857280px;}
._2{width:36.963360px;}
._1d{width:39.240000px;}
._3{width:46.469280px;}
._4{width:47.683440px;}
._7{width:237.223200px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:82.116000px;}
.y5{bottom:102.816000px;}
.y4{bottom:129.096000px;}
.y3{bottom:148.176000px;}
.y2{bottom:167.250000px;}
.y6c{bottom:187.050000px;}
.yb5{bottom:187.950000px;}
.y72{bottom:197.850000px;}
.y108{bottom:199.650000px;}
.y31{bottom:200.730000px;}
.ycf{bottom:201.090000px;}
.y8a{bottom:202.170000px;}
.y4f{bottom:206.850000px;}
.y126{bottom:207.750000px;}
.ye0{bottom:209.370000px;}
.ya4{bottom:214.050000px;}
.y6b{bottom:218.010000px;}
.yb4{bottom:218.910000px;}
.y107{bottom:220.350000px;}
.y30{bottom:221.430000px;}
.y125{bottom:228.450000px;}
.y71{bottom:228.990000px;}
.yce{bottom:232.050000px;}
.y4e{bottom:237.990000px;}
.y89{bottom:239.250000px;}
.ydf{bottom:240.330000px;}
.y106{bottom:241.050000px;}
.y2f{bottom:242.130000px;}
.ya3{bottom:245.190000px;}
.y6a{bottom:249.150000px;}
.yb3{bottom:250.050000px;}
.y70{bottom:259.950000px;}
.y105{bottom:261.750000px;}
.y2e{bottom:262.830000px;}
.ycd{bottom:263.190000px;}
.y4d{bottom:268.950000px;}
.y124{bottom:269.850000px;}
.y88{bottom:270.210000px;}
.yde{bottom:271.470000px;}
.ya2{bottom:276.150000px;}
.y69{bottom:280.110000px;}
.yb2{bottom:281.010000px;}
.y104{bottom:282.450000px;}
.y2d{bottom:283.530000px;}
.y123{bottom:290.550000px;}
.y6f{bottom:291.090000px;}
.ycc{bottom:294.150000px;}
.y4c{bottom:300.090000px;}
.y87{bottom:301.350000px;}
.ydd{bottom:302.430000px;}
.y103{bottom:303.150000px;}
.y2c{bottom:304.230000px;}
.ya1{bottom:307.290000px;}
.y68{bottom:311.250000px;}
.yb1{bottom:312.150000px;}
.y6e{bottom:322.050000px;}
.y102{bottom:323.850000px;}
.y2b{bottom:324.930000px;}
.ycb{bottom:325.290000px;}
.y4b{bottom:331.050000px;}
.y122{bottom:331.950000px;}
.y86{bottom:332.310000px;}
.ydc{bottom:333.570000px;}
.ya0{bottom:338.295000px;}
.y67{bottom:342.255000px;}
.yb0{bottom:343.155000px;}
.y101{bottom:344.595000px;}
.y2a{bottom:345.675000px;}
.y121{bottom:352.695000px;}
.yca{bottom:356.295000px;}
.y6d{bottom:361.335000px;}
.y4a{bottom:362.235000px;}
.y85{bottom:363.495000px;}
.ydb{bottom:364.575000px;}
.y100{bottom:365.295000px;}
.y29{bottom:366.375000px;}
.y9f{bottom:369.435000px;}
.y66{bottom:373.395000px;}
.yaf{bottom:374.295000px;}
.yff{bottom:385.995000px;}
.y28{bottom:387.075000px;}
.yc9{bottom:387.435000px;}
.y49{bottom:393.195000px;}
.y120{bottom:394.095000px;}
.y84{bottom:394.455000px;}
.yda{bottom:395.715000px;}
.y9e{bottom:400.395000px;}
.y65{bottom:404.355000px;}
.yae{bottom:405.255000px;}
.yfe{bottom:406.695000px;}
.y27{bottom:407.775000px;}
.y11f{bottom:414.795000px;}
.yc8{bottom:418.395000px;}
.y48{bottom:424.155000px;}
.y83{bottom:425.595000px;}
.yd9{bottom:426.675000px;}
.yfd{bottom:427.395000px;}
.y26{bottom:428.475000px;}
.y9d{bottom:431.535000px;}
.y64{bottom:435.495000px;}
.yad{bottom:436.395000px;}
.yfc{bottom:448.095000px;}
.y25{bottom:449.175000px;}
.yc7{bottom:449.535000px;}
.y47{bottom:455.295000px;}
.y11e{bottom:456.195000px;}
.y82{bottom:456.555000px;}
.yd8{bottom:457.815000px;}
.y9c{bottom:462.495000px;}
.y63{bottom:466.455000px;}
.yac{bottom:467.355000px;}
.yfb{bottom:468.795000px;}
.y24{bottom:469.875000px;}
.y11d{bottom:476.895000px;}
.yc6{bottom:480.495000px;}
.y46{bottom:486.255000px;}
.y81{bottom:487.695000px;}
.yd7{bottom:488.775000px;}
.yfa{bottom:489.495000px;}
.y23{bottom:490.575000px;}
.y9b{bottom:493.635000px;}
.y62{bottom:497.595000px;}
.yab{bottom:498.495000px;}
.yf9{bottom:510.195000px;}
.y22{bottom:511.275000px;}
.yc5{bottom:511.635000px;}
.y45{bottom:517.395000px;}
.y11c{bottom:518.295000px;}
.y80{bottom:518.655000px;}
.y9a{bottom:524.595000px;}
.yd6{bottom:528.015000px;}
.y61{bottom:528.555000px;}
.yaa{bottom:529.455000px;}
.yf8{bottom:530.895000px;}
.y21{bottom:531.975000px;}
.y11b{bottom:538.995000px;}
.yc4{bottom:542.595000px;}
.y44{bottom:548.355000px;}
.y7f{bottom:549.615000px;}
.yf7{bottom:551.595000px;}
.y20{bottom:552.675000px;}
.y99{bottom:555.735000px;}
.y60{bottom:559.695000px;}
.ya9{bottom:560.595000px;}
.yd5{bottom:571.035000px;}
.yf6{bottom:572.295000px;}
.y1f{bottom:573.375000px;}
.yc3{bottom:573.735000px;}
.y43{bottom:579.495000px;}
.y11a{bottom:580.395000px;}
.y7e{bottom:586.695000px;}
.y5f{bottom:590.655000px;}
.ya8{bottom:591.555000px;}
.yf5{bottom:592.995000px;}
.y1e{bottom:594.075000px;}
.yd4{bottom:598.035000px;}
.y119{bottom:601.095000px;}
.yc2{bottom:604.725000px;}
.y42{bottom:610.485000px;}
.yf4{bottom:613.545000px;}
.y1d{bottom:614.805000px;}
.y98{bottom:617.865000px;}
.y5e{bottom:621.645000px;}
.y7d{bottom:623.805000px;}
.ya7{bottom:630.825000px;}
.yf3{bottom:634.245000px;}
.y1c{bottom:635.505000px;}
.yc1{bottom:635.865000px;}
.y41{bottom:641.625000px;}
.y118{bottom:642.345000px;}
.y97{bottom:648.825000px;}
.y5d{bottom:652.785000px;}
.yf2{bottom:654.945000px;}
.y1b{bottom:656.205000px;}
.y7c{bottom:660.885000px;}
.y117{bottom:663.045000px;}
.yc0{bottom:666.825000px;}
.y40{bottom:672.585000px;}
.ya6{bottom:673.845000px;}
.yf1{bottom:675.645000px;}
.y1a{bottom:676.905000px;}
.y96{bottom:679.965000px;}
.y5c{bottom:683.745000px;}
.yf0{bottom:696.345000px;}
.y19{bottom:697.605000px;}
.y7b{bottom:697.965000px;}
.y3f{bottom:703.725000px;}
.y116{bottom:704.445000px;}
.ya5{bottom:706.965000px;}
.y95{bottom:710.925000px;}
.y5b{bottom:714.885000px;}
.yef{bottom:717.045000px;}
.y18{bottom:718.305000px;}
.y115{bottom:725.145000px;}
.ybf{bottom:728.925000px;}
.y3e{bottom:734.685000px;}
.y7a{bottom:735.045000px;}
.yee{bottom:737.745000px;}
.y17{bottom:739.005000px;}
.y5a{bottom:745.845000px;}
.y94{bottom:748.005000px;}
.yed{bottom:758.445000px;}
.y16{bottom:759.705000px;}
.ybe{bottom:760.065000px;}
.y3d{bottom:765.825000px;}
.y114{bottom:766.545000px;}
.y79{bottom:771.945000px;}
.y59{bottom:776.985000px;}
.yec{bottom:779.145000px;}
.y15{bottom:780.405000px;}
.y93{bottom:785.085000px;}
.y113{bottom:787.245000px;}
.ybd{bottom:791.025000px;}
.y3c{bottom:796.785000px;}
.yeb{bottom:799.845000px;}
.y14{bottom:807.945000px;}
.y78{bottom:809.025000px;}
.yea{bottom:820.545000px;}
.y13{bottom:821.805000px;}
.y92{bottom:822.165000px;}
.y3b{bottom:827.925000px;}
.ybc{bottom:828.105000px;}
.y112{bottom:828.645000px;}
.yd3{bottom:833.145000px;}
.y58{bottom:839.085000px;}
.ye9{bottom:841.245000px;}
.y12{bottom:842.505000px;}
.y77{bottom:846.105000px;}
.y111{bottom:849.345000px;}
.y3a{bottom:858.885000px;}
.y91{bottom:859.245000px;}
.ye8{bottom:861.945000px;}
.y11{bottom:863.205000px;}
.yd2{bottom:864.105000px;}
.ybb{bottom:865.185000px;}
.y57{bottom:870.045000px;}
.ye7{bottom:882.690000px;}
.y76{bottom:883.230000px;}
.y10{bottom:883.950000px;}
.y39{bottom:890.070000px;}
.y110{bottom:890.790000px;}
.yd1{bottom:895.290000px;}
.y90{bottom:896.190000px;}
.y56{bottom:901.230000px;}
.yba{bottom:902.310000px;}
.ye6{bottom:903.390000px;}
.yf{bottom:904.650000px;}
.y10f{bottom:911.490000px;}
.y75{bottom:920.310000px;}
.y38{bottom:921.030000px;}
.ye5{bottom:924.090000px;}
.yd0{bottom:926.250000px;}
.ye{bottom:926.610000px;}
.y55{bottom:932.190000px;}
.y8f{bottom:933.270000px;}
.yb9{bottom:939.210000px;}
.ye4{bottom:944.790000px;}
.y37{bottom:952.170000px;}
.y10e{bottom:952.890000px;}
.yd{bottom:954.330000px;}
.y74{bottom:957.210000px;}
.y54{bottom:963.330000px;}
.ye3{bottom:965.490000px;}
.y8e{bottom:970.350000px;}
.y10d{bottom:973.590000px;}
.yb8{bottom:976.290000px;}
.yc{bottom:981.870000px;}
.y36{bottom:983.130000px;}
.y73{bottom:988.350000px;}
.ye2{bottom:992.310000px;}
.y53{bottom:994.290000px;}
.y128{bottom:1003.110000px;}
.y8d{bottom:1007.430000px;}
.yb{bottom:1009.410000px;}
.yb7{bottom:1013.370000px;}
.ye1{bottom:1013.550000px;}
.y35{bottom:1014.270000px;}
.y10c{bottom:1014.990000px;}
.y52{bottom:1025.430000px;}
.y127{bottom:1029.750000px;}
.y10b{bottom:1035.690000px;}
.ya{bottom:1037.130000px;}
.y8c{bottom:1044.510000px;}
.y34{bottom:1045.230000px;}
.yb6{bottom:1050.450000px;}
.y51{bottom:1056.390000px;}
.y9{bottom:1064.670000px;}
.y33{bottom:1076.370000px;}
.y10a{bottom:1077.090000px;}
.y8b{bottom:1081.410000px;}
.y50{bottom:1087.530000px;}
.y8{bottom:1092.210000px;}
.y109{bottom:1097.790000px;}
.y32{bottom:1115.430000px;}
.y7{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h8{height:43.246406px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:69.388594px;}
.h9{height:69.710625px;}
.h7{height:70.606406px;}
.ha{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x5{left:132.695987px;}
.x9{left:160.049987px;}
.x4{left:170.129987px;}
.x6{left:187.589987px;}
.x7{left:300.134987px;}
.x1{left:489.164987px;}
.xa{left:693.329987px;}
.x8{left:803.849987px;}
.x3{left:808.169987px;}
.xb{left:840.389987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1{letter-spacing:14.240000pt;}
.ls3{letter-spacing:57.242027pt;}
.ls6{letter-spacing:134.042027pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-4.032000pt;}
._9{margin-left:-3.077547pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._6{width:2.894080pt;}
._5{width:4.085760pt;}
._10{width:5.242027pt;}
._c{width:6.272000pt;}
._d{width:7.168000pt;}
._11{width:8.640000pt;}
._12{width:10.368000pt;}
._13{width:11.405653pt;}
._16{width:12.769280pt;}
._b{width:13.711360pt;}
._a{width:14.656000pt;}
._e{width:17.408000pt;}
._f{width:18.368000pt;}
._19{width:19.264000pt;}
._1b{width:20.992000pt;}
._1c{width:21.888000pt;}
._1a{width:23.424000pt;}
._14{width:24.352000pt;}
._15{width:25.504000pt;}
._1f{width:27.215360pt;}
._17{width:28.160000pt;}
._18{width:29.056000pt;}
._1e{width:30.095360pt;}
._2{width:32.856320pt;}
._1d{width:34.880000pt;}
._3{width:41.306027pt;}
._4{width:42.385280pt;}
._7{width:210.865067pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:91.392000pt;}
.y4{bottom:114.752000pt;}
.y3{bottom:131.712000pt;}
.y2{bottom:148.666667pt;}
.y6c{bottom:166.266667pt;}
.yb5{bottom:167.066667pt;}
.y72{bottom:175.866667pt;}
.y108{bottom:177.466667pt;}
.y31{bottom:178.426667pt;}
.ycf{bottom:178.746667pt;}
.y8a{bottom:179.706667pt;}
.y4f{bottom:183.866667pt;}
.y126{bottom:184.666667pt;}
.ye0{bottom:186.106667pt;}
.ya4{bottom:190.266667pt;}
.y6b{bottom:193.786667pt;}
.yb4{bottom:194.586667pt;}
.y107{bottom:195.866667pt;}
.y30{bottom:196.826667pt;}
.y125{bottom:203.066667pt;}
.y71{bottom:203.546667pt;}
.yce{bottom:206.266667pt;}
.y4e{bottom:211.546667pt;}
.y89{bottom:212.666667pt;}
.ydf{bottom:213.626667pt;}
.y106{bottom:214.266667pt;}
.y2f{bottom:215.226667pt;}
.ya3{bottom:217.946667pt;}
.y6a{bottom:221.466667pt;}
.yb3{bottom:222.266667pt;}
.y70{bottom:231.066667pt;}
.y105{bottom:232.666667pt;}
.y2e{bottom:233.626667pt;}
.ycd{bottom:233.946667pt;}
.y4d{bottom:239.066667pt;}
.y124{bottom:239.866667pt;}
.y88{bottom:240.186667pt;}
.yde{bottom:241.306667pt;}
.ya2{bottom:245.466667pt;}
.y69{bottom:248.986667pt;}
.yb2{bottom:249.786667pt;}
.y104{bottom:251.066667pt;}
.y2d{bottom:252.026667pt;}
.y123{bottom:258.266667pt;}
.y6f{bottom:258.746667pt;}
.ycc{bottom:261.466667pt;}
.y4c{bottom:266.746667pt;}
.y87{bottom:267.866667pt;}
.ydd{bottom:268.826667pt;}
.y103{bottom:269.466667pt;}
.y2c{bottom:270.426667pt;}
.ya1{bottom:273.146667pt;}
.y68{bottom:276.666667pt;}
.yb1{bottom:277.466667pt;}
.y6e{bottom:286.266667pt;}
.y102{bottom:287.866667pt;}
.y2b{bottom:288.826667pt;}
.ycb{bottom:289.146667pt;}
.y4b{bottom:294.266667pt;}
.y122{bottom:295.066667pt;}
.y86{bottom:295.386667pt;}
.ydc{bottom:296.506667pt;}
.ya0{bottom:300.706667pt;}
.y67{bottom:304.226667pt;}
.yb0{bottom:305.026667pt;}
.y101{bottom:306.306667pt;}
.y2a{bottom:307.266667pt;}
.y121{bottom:313.506667pt;}
.yca{bottom:316.706667pt;}
.y6d{bottom:321.186667pt;}
.y4a{bottom:321.986667pt;}
.y85{bottom:323.106667pt;}
.ydb{bottom:324.066667pt;}
.y100{bottom:324.706667pt;}
.y29{bottom:325.666667pt;}
.y9f{bottom:328.386667pt;}
.y66{bottom:331.906667pt;}
.yaf{bottom:332.706667pt;}
.yff{bottom:343.106667pt;}
.y28{bottom:344.066667pt;}
.yc9{bottom:344.386667pt;}
.y49{bottom:349.506667pt;}
.y120{bottom:350.306667pt;}
.y84{bottom:350.626667pt;}
.yda{bottom:351.746667pt;}
.y9e{bottom:355.906667pt;}
.y65{bottom:359.426667pt;}
.yae{bottom:360.226667pt;}
.yfe{bottom:361.506667pt;}
.y27{bottom:362.466667pt;}
.y11f{bottom:368.706667pt;}
.yc8{bottom:371.906667pt;}
.y48{bottom:377.026667pt;}
.y83{bottom:378.306667pt;}
.yd9{bottom:379.266667pt;}
.yfd{bottom:379.906667pt;}
.y26{bottom:380.866667pt;}
.y9d{bottom:383.586667pt;}
.y64{bottom:387.106667pt;}
.yad{bottom:387.906667pt;}
.yfc{bottom:398.306667pt;}
.y25{bottom:399.266667pt;}
.yc7{bottom:399.586667pt;}
.y47{bottom:404.706667pt;}
.y11e{bottom:405.506667pt;}
.y82{bottom:405.826667pt;}
.yd8{bottom:406.946667pt;}
.y9c{bottom:411.106667pt;}
.y63{bottom:414.626667pt;}
.yac{bottom:415.426667pt;}
.yfb{bottom:416.706667pt;}
.y24{bottom:417.666667pt;}
.y11d{bottom:423.906667pt;}
.yc6{bottom:427.106667pt;}
.y46{bottom:432.226667pt;}
.y81{bottom:433.506667pt;}
.yd7{bottom:434.466667pt;}
.yfa{bottom:435.106667pt;}
.y23{bottom:436.066667pt;}
.y9b{bottom:438.786667pt;}
.y62{bottom:442.306667pt;}
.yab{bottom:443.106667pt;}
.yf9{bottom:453.506667pt;}
.y22{bottom:454.466667pt;}
.yc5{bottom:454.786667pt;}
.y45{bottom:459.906667pt;}
.y11c{bottom:460.706667pt;}
.y80{bottom:461.026667pt;}
.y9a{bottom:466.306667pt;}
.yd6{bottom:469.346667pt;}
.y61{bottom:469.826667pt;}
.yaa{bottom:470.626667pt;}
.yf8{bottom:471.906667pt;}
.y21{bottom:472.866667pt;}
.y11b{bottom:479.106667pt;}
.yc4{bottom:482.306667pt;}
.y44{bottom:487.426667pt;}
.y7f{bottom:488.546667pt;}
.yf7{bottom:490.306667pt;}
.y20{bottom:491.266667pt;}
.y99{bottom:493.986667pt;}
.y60{bottom:497.506667pt;}
.ya9{bottom:498.306667pt;}
.yd5{bottom:507.586667pt;}
.yf6{bottom:508.706667pt;}
.y1f{bottom:509.666667pt;}
.yc3{bottom:509.986667pt;}
.y43{bottom:515.106667pt;}
.y11a{bottom:515.906667pt;}
.y7e{bottom:521.506667pt;}
.y5f{bottom:525.026667pt;}
.ya8{bottom:525.826667pt;}
.yf5{bottom:527.106667pt;}
.y1e{bottom:528.066667pt;}
.yd4{bottom:531.586667pt;}
.y119{bottom:534.306667pt;}
.yc2{bottom:537.533333pt;}
.y42{bottom:542.653333pt;}
.yf4{bottom:545.373333pt;}
.y1d{bottom:546.493333pt;}
.y98{bottom:549.213333pt;}
.y5e{bottom:552.573333pt;}
.y7d{bottom:554.493333pt;}
.ya7{bottom:560.733333pt;}
.yf3{bottom:563.773333pt;}
.y1c{bottom:564.893333pt;}
.yc1{bottom:565.213333pt;}
.y41{bottom:570.333333pt;}
.y118{bottom:570.973333pt;}
.y97{bottom:576.733333pt;}
.y5d{bottom:580.253333pt;}
.yf2{bottom:582.173333pt;}
.y1b{bottom:583.293333pt;}
.y7c{bottom:587.453333pt;}
.y117{bottom:589.373333pt;}
.yc0{bottom:592.733333pt;}
.y40{bottom:597.853333pt;}
.ya6{bottom:598.973333pt;}
.yf1{bottom:600.573333pt;}
.y1a{bottom:601.693333pt;}
.y96{bottom:604.413333pt;}
.y5c{bottom:607.773333pt;}
.yf0{bottom:618.973333pt;}
.y19{bottom:620.093333pt;}
.y7b{bottom:620.413333pt;}
.y3f{bottom:625.533333pt;}
.y116{bottom:626.173333pt;}
.ya5{bottom:628.413333pt;}
.y95{bottom:631.933333pt;}
.y5b{bottom:635.453333pt;}
.yef{bottom:637.373333pt;}
.y18{bottom:638.493333pt;}
.y115{bottom:644.573333pt;}
.ybf{bottom:647.933333pt;}
.y3e{bottom:653.053333pt;}
.y7a{bottom:653.373333pt;}
.yee{bottom:655.773333pt;}
.y17{bottom:656.893333pt;}
.y5a{bottom:662.973333pt;}
.y94{bottom:664.893333pt;}
.yed{bottom:674.173333pt;}
.y16{bottom:675.293333pt;}
.ybe{bottom:675.613333pt;}
.y3d{bottom:680.733333pt;}
.y114{bottom:681.373333pt;}
.y79{bottom:686.173333pt;}
.y59{bottom:690.653333pt;}
.yec{bottom:692.573333pt;}
.y15{bottom:693.693333pt;}
.y93{bottom:697.853333pt;}
.y113{bottom:699.773333pt;}
.ybd{bottom:703.133333pt;}
.y3c{bottom:708.253333pt;}
.yeb{bottom:710.973333pt;}
.y14{bottom:718.173333pt;}
.y78{bottom:719.133333pt;}
.yea{bottom:729.373333pt;}
.y13{bottom:730.493333pt;}
.y92{bottom:730.813333pt;}
.y3b{bottom:735.933333pt;}
.ybc{bottom:736.093333pt;}
.y112{bottom:736.573333pt;}
.yd3{bottom:740.573333pt;}
.y58{bottom:745.853333pt;}
.ye9{bottom:747.773333pt;}
.y12{bottom:748.893333pt;}
.y77{bottom:752.093333pt;}
.y111{bottom:754.973333pt;}
.y3a{bottom:763.453333pt;}
.y91{bottom:763.773333pt;}
.ye8{bottom:766.173333pt;}
.y11{bottom:767.293333pt;}
.yd2{bottom:768.093333pt;}
.ybb{bottom:769.053333pt;}
.y57{bottom:773.373333pt;}
.ye7{bottom:784.613333pt;}
.y76{bottom:785.093333pt;}
.y10{bottom:785.733333pt;}
.y39{bottom:791.173333pt;}
.y110{bottom:791.813333pt;}
.yd1{bottom:795.813333pt;}
.y90{bottom:796.613333pt;}
.y56{bottom:801.093333pt;}
.yba{bottom:802.053333pt;}
.ye6{bottom:803.013333pt;}
.yf{bottom:804.133333pt;}
.y10f{bottom:810.213333pt;}
.y75{bottom:818.053333pt;}
.y38{bottom:818.693333pt;}
.ye5{bottom:821.413333pt;}
.yd0{bottom:823.333333pt;}
.ye{bottom:823.653333pt;}
.y55{bottom:828.613333pt;}
.y8f{bottom:829.573333pt;}
.yb9{bottom:834.853333pt;}
.ye4{bottom:839.813333pt;}
.y37{bottom:846.373333pt;}
.y10e{bottom:847.013333pt;}
.yd{bottom:848.293333pt;}
.y74{bottom:850.853333pt;}
.y54{bottom:856.293333pt;}
.ye3{bottom:858.213333pt;}
.y8e{bottom:862.533333pt;}
.y10d{bottom:865.413333pt;}
.yb8{bottom:867.813333pt;}
.yc{bottom:872.773333pt;}
.y36{bottom:873.893333pt;}
.y73{bottom:878.533333pt;}
.ye2{bottom:882.053333pt;}
.y53{bottom:883.813333pt;}
.y128{bottom:891.653333pt;}
.y8d{bottom:895.493333pt;}
.yb{bottom:897.253333pt;}
.yb7{bottom:900.773333pt;}
.ye1{bottom:900.933333pt;}
.y35{bottom:901.573333pt;}
.y10c{bottom:902.213333pt;}
.y52{bottom:911.493333pt;}
.y127{bottom:915.333333pt;}
.y10b{bottom:920.613333pt;}
.ya{bottom:921.893333pt;}
.y8c{bottom:928.453333pt;}
.y34{bottom:929.093333pt;}
.yb6{bottom:933.733333pt;}
.y51{bottom:939.013333pt;}
.y9{bottom:946.373333pt;}
.y33{bottom:956.773333pt;}
.y10a{bottom:957.413333pt;}
.y8b{bottom:961.253333pt;}
.y50{bottom:966.693333pt;}
.y8{bottom:970.853333pt;}
.y109{bottom:975.813333pt;}
.y32{bottom:991.493333pt;}
.y7{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h8{height:38.441250pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:61.678750pt;}
.h9{height:61.965000pt;}
.h7{height:62.761250pt;}
.ha{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x5{left:117.951988pt;}
.x9{left:142.266655pt;}
.x4{left:151.226655pt;}
.x6{left:166.746655pt;}
.x7{left:266.786655pt;}
.x1{left:434.813322pt;}
.xa{left:616.293322pt;}
.x8{left:714.533322pt;}
.x3{left:718.373322pt;}
.xb{left:747.013322pt;}
}




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