
    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_42f77891b73bb508070c1472.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7d9946f218e59a215336298f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_089bbfbfa5ec31bd46b0e7ba.woff')format("woff");}.ff3{font-family:ff3;line-height:1.197754;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_edff3de32f53c156a58b003c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_5c19657e395b2d347d914bcc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_e04bbf3e2be6aeca0755fe8a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.819000;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_4a3b9ec4e7b40675f0e22064.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944336;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_4b452450e143a06a5faa5940.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_450fa3d26441f507836a6eb9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_23c48e0a16f0c7bac9a1759e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.992676;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:ffb;src:url('chunks/assets/font_84047ef780a8c15084d898f6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.028000;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);}
.v4{vertical-align:-23.760000px;}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.800000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000600px;}
.ls8{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.147000px;}
.ls11{letter-spacing:0.199200px;}
.lsc{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.431400px;}
.ls5{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.lse{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.936000px;}
.ls17{letter-spacing:1.080000px;}
.ls16{letter-spacing:4.452600px;}
.ls19{letter-spacing:4.752000px;}
.ls18{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.592292px;}
.ls0{letter-spacing:10.740000px;}
.lsd{letter-spacing:11.880000px;}
.ls3{letter-spacing:11.952000px;}
.lsf{letter-spacing:12.600000px;}
.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;}
}
.wsd{word-spacing:-61.128000px;}
.ws4{word-spacing:-60.480000px;}
.wsb{word-spacing:-60.408000px;}
.ws1c{word-spacing:-49.464000px;}
.ws11{word-spacing:-49.392000px;}
.ws12{word-spacing:-49.248000px;}
.wse{word-spacing:-49.176000px;}
.ws16{word-spacing:-49.032000px;}
.ws7{word-spacing:-48.960000px;}
.ws6{word-spacing:-48.888000px;}
.wsf{word-spacing:-48.816000px;}
.ws9{word-spacing:-48.744000px;}
.ws10{word-spacing:-48.672000px;}
.ws8{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws21{word-spacing:-40.440000px;}
.wsc{word-spacing:-36.720000px;}
.wsa{word-spacing:-36.576000px;}
.ws14{word-spacing:-36.072000px;}
.ws15{word-spacing:-36.000000px;}
.ws13{word-spacing:-35.856000px;}
.ws19{word-spacing:-32.352000px;}
.ws3{word-spacing:-32.184000px;}
.ws1d{word-spacing:-25.320000px;}
.ws2{word-spacing:-20.232000px;}
.ws1a{word-spacing:-17.784000px;}
.ws22{word-spacing:-16.860000px;}
.ws1b{word-spacing:-14.162400px;}
.ws17{word-spacing:-13.757760px;}
.ws1f{word-spacing:-12.336000px;}
.ws20{word-spacing:-11.464800px;}
.ws1e{word-spacing:-8.520000px;}
.ws18{word-spacing:-8.400000px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:8.400000px;}
._1c{margin-left:-1751.025600px;}
._1f{margin-left:-1688.439600px;}
._1d{margin-left:-1486.457400px;}
._19{margin-left:-21.083400px;}
._1e{margin-left:-19.804800px;}
._20{margin-left:-16.032000px;}
._2{margin-left:-14.841000px;}
._1a{margin-left:-13.305000px;}
._17{margin-left:-12.111000px;}
._1{margin-left:-11.040000px;}
._16{margin-left:-9.192000px;}
._10{margin-left:-8.145000px;}
._e{margin-left:-6.643200px;}
._4{margin-left:-5.280000px;}
._7{margin-left:-4.215000px;}
._0{margin-left:-3.120000px;}
._3{margin-left:-2.040000px;}
._b{margin-left:-1.032000px;}
._8{width:1.383000px;}
._6{width:2.616000px;}
._5{width:4.320000px;}
._d{width:5.625600px;}
._c{width:6.907200px;}
._11{width:8.138400px;}
._15{width:10.008000px;}
._a{width:11.406000px;}
._9{width:12.426000px;}
._13{width:13.497600px;}
._21{width:14.852400px;}
._12{width:16.152000px;}
._14{width:17.682000px;}
._1b{width:18.946200px;}
._18{width:34.508160px;}
._24{width:53.568000px;}
._23{width:75.696000px;}
._25{width:100.944000px;}
._22{width:136.032000px;}
._26{width:142.767000px;}
._27{width:163.123200px;}
._f{width:201.560400px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:32.640000px;}
.fs8{font-size:40.800000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:48.960000px;}
.fs7{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y50{bottom:100.000950px;}
.y1{bottom:103.500000px;}
.y4f{bottom:145.950000px;}
.y20{bottom:148.500000px;}
.y99{bottom:148.800000px;}
.yb8{bottom:156.000000px;}
.y73{bottom:163.500000px;}
.y29{bottom:167.460000px;}
.y4e{bottom:167.925000px;}
.y98{bottom:170.700000px;}
.y1f{bottom:171.000000px;}
.ye2{bottom:174.750000px;}
.y72{bottom:178.500000px;}
.yc7{bottom:182.250000px;}
.yb7{bottom:186.000000px;}
.y4d{bottom:189.900000px;}
.y97{bottom:192.600000px;}
.y1e{bottom:193.500000px;}
.yb6{bottom:201.000000px;}
.y71{bottom:208.500000px;}
.y4c{bottom:211.875000px;}
.ye1{bottom:212.250000px;}
.y96{bottom:214.500000px;}
.y1d{bottom:216.000000px;}
.yc6{bottom:219.750000px;}
.y70{bottom:223.500000px;}
.yb5{bottom:231.000000px;}
.y4b{bottom:233.850000px;}
.y95{bottom:236.400000px;}
.y1c{bottom:238.500000px;}
.yb4{bottom:246.000000px;}
.ye0{bottom:249.750000px;}
.y6f{bottom:253.500000px;}
.y4a{bottom:255.825000px;}
.yc5{bottom:257.250000px;}
.y94{bottom:258.300000px;}
.y1b{bottom:261.000000px;}
.y6e{bottom:268.500000px;}
.yb3{bottom:276.000000px;}
.y49{bottom:277.800000px;}
.y93{bottom:280.200000px;}
.y1a{bottom:283.500000px;}
.ydf{bottom:287.250000px;}
.yb2{bottom:291.000000px;}
.yc4{bottom:294.750000px;}
.y6d{bottom:298.500000px;}
.y48{bottom:299.775000px;}
.y92{bottom:302.100000px;}
.y19{bottom:306.000000px;}
.y6c{bottom:313.500000px;}
.yb1{bottom:321.000000px;}
.y47{bottom:321.750000px;}
.y91{bottom:324.000000px;}
.yde{bottom:324.750000px;}
.y18{bottom:328.500000px;}
.yc3{bottom:332.250000px;}
.y6b{bottom:332.460000px;}
.yb0{bottom:336.000000px;}
.ydd{bottom:343.500000px;}
.y46{bottom:343.725000px;}
.y90{bottom:345.900000px;}
.y17{bottom:351.000000px;}
.ydc{bottom:362.250000px;}
.y6a{bottom:363.150000px;}
.y45{bottom:365.700000px;}
.yaf{bottom:366.000000px;}
.y8f{bottom:367.800000px;}
.yc2{bottom:369.750000px;}
.y16{bottom:373.500000px;}
.yae{bottom:381.000000px;}
.y69{bottom:385.200000px;}
.y44{bottom:387.675000px;}
.y8e{bottom:389.700000px;}
.y15{bottom:396.000000px;}
.ydb{bottom:399.750000px;}
.y68{bottom:407.250000px;}
.y43{bottom:409.650000px;}
.yad{bottom:411.000000px;}
.y8d{bottom:411.600000px;}
.y28{bottom:418.500000px;}
.yac{bottom:426.000000px;}
.y67{bottom:429.300000px;}
.y42{bottom:431.625000px;}
.y8c{bottom:433.500000px;}
.yda{bottom:437.250000px;}
.y14{bottom:441.000000px;}
.y66{bottom:451.350000px;}
.y41{bottom:453.600000px;}
.y8b{bottom:455.400000px;}
.yab{bottom:456.000000px;}
.y13{bottom:463.500000px;}
.yaa{bottom:471.000000px;}
.y65{bottom:473.400000px;}
.yd9{bottom:474.750000px;}
.y40{bottom:475.575000px;}
.y8a{bottom:477.300000px;}
.y12{bottom:486.000000px;}
.yd8{bottom:493.500000px;}
.y64{bottom:495.450000px;}
.y3f{bottom:497.550000px;}
.y89{bottom:499.200000px;}
.ya9{bottom:501.000000px;}
.y11{bottom:508.500000px;}
.yd7{bottom:512.250000px;}
.ya8{bottom:516.000000px;}
.y63{bottom:517.500000px;}
.y3e{bottom:519.525000px;}
.y88{bottom:521.100000px;}
.y10{bottom:531.000000px;}
.y62{bottom:539.550000px;}
.y3d{bottom:541.500000px;}
.y87{bottom:543.000000px;}
.ya7{bottom:546.000000px;}
.yd6{bottom:549.750000px;}
.yf{bottom:553.500000px;}
.ya6{bottom:561.000000px;}
.y61{bottom:561.600000px;}
.y3c{bottom:563.475000px;}
.y86{bottom:564.900000px;}
.yd5{bottom:568.500000px;}
.ye{bottom:576.000000px;}
.y60{bottom:583.650000px;}
.y3b{bottom:585.450000px;}
.y85{bottom:586.800000px;}
.yd4{bottom:587.250000px;}
.ya5{bottom:591.000000px;}
.yd{bottom:598.500000px;}
.ye5{bottom:602.250000px;}
.y5f{bottom:605.700000px;}
.ya4{bottom:606.000000px;}
.y3a{bottom:607.425000px;}
.y84{bottom:608.700000px;}
.yc{bottom:621.000000px;}
.yd3{bottom:624.750000px;}
.y5e{bottom:627.750000px;}
.y39{bottom:629.400000px;}
.y83{bottom:630.600000px;}
.ya3{bottom:636.000000px;}
.ye4{bottom:639.750000px;}
.yb{bottom:643.500000px;}
.y5d{bottom:649.800000px;}
.ya2{bottom:651.000000px;}
.y38{bottom:651.375000px;}
.y82{bottom:652.500000px;}
.ye3{bottom:658.500000px;}
.yd2{bottom:662.250000px;}
.ya{bottom:666.000000px;}
.y5c{bottom:671.850000px;}
.y37{bottom:673.350000px;}
.y81{bottom:674.400000px;}
.ya1{bottom:681.000000px;}
.y9{bottom:688.500000px;}
.y5b{bottom:693.900000px;}
.y36{bottom:695.325000px;}
.ya0{bottom:696.000000px;}
.y80{bottom:696.300000px;}
.yd1{bottom:699.750000px;}
.y7{bottom:711.000000px;}
.y35{bottom:717.300000px;}
.y7f{bottom:718.200000px;}
.yd0{bottom:718.500000px;}
.y9f{bottom:726.000000px;}
.y8{bottom:733.500000px;}
.ycf{bottom:737.250000px;}
.y5a{bottom:738.000000px;}
.y34{bottom:739.275000px;}
.y7e{bottom:740.100000px;}
.yc1{bottom:741.000000px;}
.y9e{bottom:748.500000px;}
.y27{bottom:756.000000px;}
.y59{bottom:760.050000px;}
.y33{bottom:761.250000px;}
.y7d{bottom:762.000000px;}
.yc0{bottom:771.000000px;}
.yce{bottom:774.750000px;}
.y26{bottom:778.500000px;}
.y58{bottom:782.100000px;}
.y32{bottom:783.225000px;}
.y7c{bottom:783.900000px;}
.ybf{bottom:786.000000px;}
.y9d{bottom:793.500000px;}
.y6{bottom:801.000000px;}
.y57{bottom:804.150000px;}
.y31{bottom:805.200000px;}
.y7b{bottom:805.800000px;}
.y9c{bottom:808.500000px;}
.ycd{bottom:812.250000px;}
.ybe{bottom:816.000000px;}
.y5{bottom:823.500000px;}
.y56{bottom:826.200000px;}
.y30{bottom:827.175000px;}
.y7a{bottom:827.700000px;}
.ybd{bottom:831.000000px;}
.y9b{bottom:838.500000px;}
.y25{bottom:846.000000px;}
.y55{bottom:848.250000px;}
.y2f{bottom:849.150000px;}
.y79{bottom:849.600000px;}
.ycc{bottom:849.750000px;}
.y9a{bottom:853.500000px;}
.ybc{bottom:861.000000px;}
.y24{bottom:868.500000px;}
.y54{bottom:870.300000px;}
.y2e{bottom:871.125000px;}
.y78{bottom:871.500000px;}
.ybb{bottom:876.000000px;}
.ycb{bottom:887.250000px;}
.y4{bottom:891.000000px;}
.y53{bottom:892.350000px;}
.y2d{bottom:893.100000px;}
.y77{bottom:893.400000px;}
.yba{bottom:906.000000px;}
.y23{bottom:913.500000px;}
.y52{bottom:914.400000px;}
.y2c{bottom:915.075000px;}
.y76{bottom:915.300000px;}
.y3{bottom:921.000000px;}
.yca{bottom:924.750000px;}
.y22{bottom:936.000000px;}
.y51{bottom:936.450000px;}
.y2b{bottom:937.050000px;}
.y75{bottom:937.200000px;}
.yc9{bottom:943.500000px;}
.y2{bottom:951.000000px;}
.y21{bottom:958.500000px;}
.y2a{bottom:959.025000px;}
.y74{bottom:959.100000px;}
.yc8{bottom:962.250000px;}
.yb9{bottom:966.000000px;}
.ha{height:30.472500px;}
.hc{height:39.072000px;}
.h1{height:39.990234px;}
.h8{height:41.396484px;}
.hb{height:46.312500px;}
.h4{height:50.580000px;}
.h9{height:57.890625px;}
.h5{height:61.136719px;}
.h7{height:69.468750px;}
.h2{height:82.792969px;}
.h3{height:115.781250px;}
.h6{height:342.453024px;}
.h0{height:1080.000000px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x1{left:99.000000px;}
.x3{left:114.000000px;}
.x2{left:139.898550px;}
.x6{left:144.000000px;}
.x7{left:159.000000px;}
.x4{left:166.500000px;}
.x5{left:453.653250px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.600000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000533pt;}
.ls8{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.130667pt;}
.ls11{letter-spacing:0.177067pt;}
.lsc{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.383467pt;}
.ls5{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.832000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls16{letter-spacing:3.957867pt;}
.ls19{letter-spacing:4.224000pt;}
.ls18{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.415371pt;}
.ls0{letter-spacing:9.546667pt;}
.lsd{letter-spacing:10.560000pt;}
.ls3{letter-spacing:10.624000pt;}
.lsf{letter-spacing:11.200000pt;}
.wsd{word-spacing:-54.336000pt;}
.ws4{word-spacing:-53.760000pt;}
.wsb{word-spacing:-53.696000pt;}
.ws1c{word-spacing:-43.968000pt;}
.ws11{word-spacing:-43.904000pt;}
.ws12{word-spacing:-43.776000pt;}
.wse{word-spacing:-43.712000pt;}
.ws16{word-spacing:-43.584000pt;}
.ws7{word-spacing:-43.520000pt;}
.ws6{word-spacing:-43.456000pt;}
.wsf{word-spacing:-43.392000pt;}
.ws9{word-spacing:-43.328000pt;}
.ws10{word-spacing:-43.264000pt;}
.ws8{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws21{word-spacing:-35.946667pt;}
.wsc{word-spacing:-32.640000pt;}
.wsa{word-spacing:-32.512000pt;}
.ws14{word-spacing:-32.064000pt;}
.ws15{word-spacing:-32.000000pt;}
.ws13{word-spacing:-31.872000pt;}
.ws19{word-spacing:-28.757333pt;}
.ws3{word-spacing:-28.608000pt;}
.ws1d{word-spacing:-22.506667pt;}
.ws2{word-spacing:-17.984000pt;}
.ws1a{word-spacing:-15.808000pt;}
.ws22{word-spacing:-14.986667pt;}
.ws1b{word-spacing:-12.588800pt;}
.ws17{word-spacing:-12.229120pt;}
.ws1f{word-spacing:-10.965333pt;}
.ws20{word-spacing:-10.190933pt;}
.ws1e{word-spacing:-7.573333pt;}
.ws18{word-spacing:-7.466667pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:7.466667pt;}
._1c{margin-left:-1556.467200pt;}
._1f{margin-left:-1500.835200pt;}
._1d{margin-left:-1321.295467pt;}
._19{margin-left:-18.740800pt;}
._1e{margin-left:-17.604267pt;}
._20{margin-left:-14.250667pt;}
._2{margin-left:-13.192000pt;}
._1a{margin-left:-11.826667pt;}
._17{margin-left:-10.765333pt;}
._1{margin-left:-9.813333pt;}
._16{margin-left:-8.170667pt;}
._10{margin-left:-7.240000pt;}
._e{margin-left:-5.905067pt;}
._4{margin-left:-4.693333pt;}
._7{margin-left:-3.746667pt;}
._0{margin-left:-2.773333pt;}
._3{margin-left:-1.813333pt;}
._b{margin-left:-0.917333pt;}
._8{width:1.229333pt;}
._6{width:2.325333pt;}
._5{width:3.840000pt;}
._d{width:5.000533pt;}
._c{width:6.139733pt;}
._11{width:7.234133pt;}
._15{width:8.896000pt;}
._a{width:10.138667pt;}
._9{width:11.045333pt;}
._13{width:11.997867pt;}
._21{width:13.202133pt;}
._12{width:14.357333pt;}
._14{width:15.717333pt;}
._1b{width:16.841067pt;}
._18{width:30.673920pt;}
._24{width:47.616000pt;}
._23{width:67.285333pt;}
._25{width:89.728000pt;}
._22{width:120.917333pt;}
._26{width:126.904000pt;}
._27{width:144.998400pt;}
._f{width:179.164800pt;}
.fs5{font-size:29.013333pt;}
.fs8{font-size:36.266667pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:43.520000pt;}
.fs7{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:88.889733pt;}
.y1{bottom:92.000000pt;}
.y4f{bottom:129.733333pt;}
.y20{bottom:132.000000pt;}
.y99{bottom:132.266667pt;}
.yb8{bottom:138.666667pt;}
.y73{bottom:145.333333pt;}
.y29{bottom:148.853333pt;}
.y4e{bottom:149.266667pt;}
.y98{bottom:151.733333pt;}
.y1f{bottom:152.000000pt;}
.ye2{bottom:155.333333pt;}
.y72{bottom:158.666667pt;}
.yc7{bottom:162.000000pt;}
.yb7{bottom:165.333333pt;}
.y4d{bottom:168.800000pt;}
.y97{bottom:171.200000pt;}
.y1e{bottom:172.000000pt;}
.yb6{bottom:178.666667pt;}
.y71{bottom:185.333333pt;}
.y4c{bottom:188.333333pt;}
.ye1{bottom:188.666667pt;}
.y96{bottom:190.666667pt;}
.y1d{bottom:192.000000pt;}
.yc6{bottom:195.333333pt;}
.y70{bottom:198.666667pt;}
.yb5{bottom:205.333333pt;}
.y4b{bottom:207.866667pt;}
.y95{bottom:210.133333pt;}
.y1c{bottom:212.000000pt;}
.yb4{bottom:218.666667pt;}
.ye0{bottom:222.000000pt;}
.y6f{bottom:225.333333pt;}
.y4a{bottom:227.400000pt;}
.yc5{bottom:228.666667pt;}
.y94{bottom:229.600000pt;}
.y1b{bottom:232.000000pt;}
.y6e{bottom:238.666667pt;}
.yb3{bottom:245.333333pt;}
.y49{bottom:246.933333pt;}
.y93{bottom:249.066667pt;}
.y1a{bottom:252.000000pt;}
.ydf{bottom:255.333333pt;}
.yb2{bottom:258.666667pt;}
.yc4{bottom:262.000000pt;}
.y6d{bottom:265.333333pt;}
.y48{bottom:266.466667pt;}
.y92{bottom:268.533333pt;}
.y19{bottom:272.000000pt;}
.y6c{bottom:278.666667pt;}
.yb1{bottom:285.333333pt;}
.y47{bottom:286.000000pt;}
.y91{bottom:288.000000pt;}
.yde{bottom:288.666667pt;}
.y18{bottom:292.000000pt;}
.yc3{bottom:295.333333pt;}
.y6b{bottom:295.520000pt;}
.yb0{bottom:298.666667pt;}
.ydd{bottom:305.333333pt;}
.y46{bottom:305.533333pt;}
.y90{bottom:307.466667pt;}
.y17{bottom:312.000000pt;}
.ydc{bottom:322.000000pt;}
.y6a{bottom:322.800000pt;}
.y45{bottom:325.066667pt;}
.yaf{bottom:325.333333pt;}
.y8f{bottom:326.933333pt;}
.yc2{bottom:328.666667pt;}
.y16{bottom:332.000000pt;}
.yae{bottom:338.666667pt;}
.y69{bottom:342.400000pt;}
.y44{bottom:344.600000pt;}
.y8e{bottom:346.400000pt;}
.y15{bottom:352.000000pt;}
.ydb{bottom:355.333333pt;}
.y68{bottom:362.000000pt;}
.y43{bottom:364.133333pt;}
.yad{bottom:365.333333pt;}
.y8d{bottom:365.866667pt;}
.y28{bottom:372.000000pt;}
.yac{bottom:378.666667pt;}
.y67{bottom:381.600000pt;}
.y42{bottom:383.666667pt;}
.y8c{bottom:385.333333pt;}
.yda{bottom:388.666667pt;}
.y14{bottom:392.000000pt;}
.y66{bottom:401.200000pt;}
.y41{bottom:403.200000pt;}
.y8b{bottom:404.800000pt;}
.yab{bottom:405.333333pt;}
.y13{bottom:412.000000pt;}
.yaa{bottom:418.666667pt;}
.y65{bottom:420.800000pt;}
.yd9{bottom:422.000000pt;}
.y40{bottom:422.733333pt;}
.y8a{bottom:424.266667pt;}
.y12{bottom:432.000000pt;}
.yd8{bottom:438.666667pt;}
.y64{bottom:440.400000pt;}
.y3f{bottom:442.266667pt;}
.y89{bottom:443.733333pt;}
.ya9{bottom:445.333333pt;}
.y11{bottom:452.000000pt;}
.yd7{bottom:455.333333pt;}
.ya8{bottom:458.666667pt;}
.y63{bottom:460.000000pt;}
.y3e{bottom:461.800000pt;}
.y88{bottom:463.200000pt;}
.y10{bottom:472.000000pt;}
.y62{bottom:479.600000pt;}
.y3d{bottom:481.333333pt;}
.y87{bottom:482.666667pt;}
.ya7{bottom:485.333333pt;}
.yd6{bottom:488.666667pt;}
.yf{bottom:492.000000pt;}
.ya6{bottom:498.666667pt;}
.y61{bottom:499.200000pt;}
.y3c{bottom:500.866667pt;}
.y86{bottom:502.133333pt;}
.yd5{bottom:505.333333pt;}
.ye{bottom:512.000000pt;}
.y60{bottom:518.800000pt;}
.y3b{bottom:520.400000pt;}
.y85{bottom:521.600000pt;}
.yd4{bottom:522.000000pt;}
.ya5{bottom:525.333333pt;}
.yd{bottom:532.000000pt;}
.ye5{bottom:535.333333pt;}
.y5f{bottom:538.400000pt;}
.ya4{bottom:538.666667pt;}
.y3a{bottom:539.933333pt;}
.y84{bottom:541.066667pt;}
.yc{bottom:552.000000pt;}
.yd3{bottom:555.333333pt;}
.y5e{bottom:558.000000pt;}
.y39{bottom:559.466667pt;}
.y83{bottom:560.533333pt;}
.ya3{bottom:565.333333pt;}
.ye4{bottom:568.666667pt;}
.yb{bottom:572.000000pt;}
.y5d{bottom:577.600000pt;}
.ya2{bottom:578.666667pt;}
.y38{bottom:579.000000pt;}
.y82{bottom:580.000000pt;}
.ye3{bottom:585.333333pt;}
.yd2{bottom:588.666667pt;}
.ya{bottom:592.000000pt;}
.y5c{bottom:597.200000pt;}
.y37{bottom:598.533333pt;}
.y81{bottom:599.466667pt;}
.ya1{bottom:605.333333pt;}
.y9{bottom:612.000000pt;}
.y5b{bottom:616.800000pt;}
.y36{bottom:618.066667pt;}
.ya0{bottom:618.666667pt;}
.y80{bottom:618.933333pt;}
.yd1{bottom:622.000000pt;}
.y7{bottom:632.000000pt;}
.y35{bottom:637.600000pt;}
.y7f{bottom:638.400000pt;}
.yd0{bottom:638.666667pt;}
.y9f{bottom:645.333333pt;}
.y8{bottom:652.000000pt;}
.ycf{bottom:655.333333pt;}
.y5a{bottom:656.000000pt;}
.y34{bottom:657.133333pt;}
.y7e{bottom:657.866667pt;}
.yc1{bottom:658.666667pt;}
.y9e{bottom:665.333333pt;}
.y27{bottom:672.000000pt;}
.y59{bottom:675.600000pt;}
.y33{bottom:676.666667pt;}
.y7d{bottom:677.333333pt;}
.yc0{bottom:685.333333pt;}
.yce{bottom:688.666667pt;}
.y26{bottom:692.000000pt;}
.y58{bottom:695.200000pt;}
.y32{bottom:696.200000pt;}
.y7c{bottom:696.800000pt;}
.ybf{bottom:698.666667pt;}
.y9d{bottom:705.333333pt;}
.y6{bottom:712.000000pt;}
.y57{bottom:714.800000pt;}
.y31{bottom:715.733333pt;}
.y7b{bottom:716.266667pt;}
.y9c{bottom:718.666667pt;}
.ycd{bottom:722.000000pt;}
.ybe{bottom:725.333333pt;}
.y5{bottom:732.000000pt;}
.y56{bottom:734.400000pt;}
.y30{bottom:735.266667pt;}
.y7a{bottom:735.733333pt;}
.ybd{bottom:738.666667pt;}
.y9b{bottom:745.333333pt;}
.y25{bottom:752.000000pt;}
.y55{bottom:754.000000pt;}
.y2f{bottom:754.800000pt;}
.y79{bottom:755.200000pt;}
.ycc{bottom:755.333333pt;}
.y9a{bottom:758.666667pt;}
.ybc{bottom:765.333333pt;}
.y24{bottom:772.000000pt;}
.y54{bottom:773.600000pt;}
.y2e{bottom:774.333333pt;}
.y78{bottom:774.666667pt;}
.ybb{bottom:778.666667pt;}
.ycb{bottom:788.666667pt;}
.y4{bottom:792.000000pt;}
.y53{bottom:793.200000pt;}
.y2d{bottom:793.866667pt;}
.y77{bottom:794.133333pt;}
.yba{bottom:805.333333pt;}
.y23{bottom:812.000000pt;}
.y52{bottom:812.800000pt;}
.y2c{bottom:813.400000pt;}
.y76{bottom:813.600000pt;}
.y3{bottom:818.666667pt;}
.yca{bottom:822.000000pt;}
.y22{bottom:832.000000pt;}
.y51{bottom:832.400000pt;}
.y2b{bottom:832.933333pt;}
.y75{bottom:833.066667pt;}
.yc9{bottom:838.666667pt;}
.y2{bottom:845.333333pt;}
.y21{bottom:852.000000pt;}
.y2a{bottom:852.466667pt;}
.y74{bottom:852.533333pt;}
.yc8{bottom:855.333333pt;}
.yb9{bottom:858.666667pt;}
.ha{height:27.086667pt;}
.hc{height:34.730667pt;}
.h1{height:35.546875pt;}
.h8{height:36.796875pt;}
.hb{height:41.166667pt;}
.h4{height:44.960000pt;}
.h9{height:51.458333pt;}
.h5{height:54.343750pt;}
.h7{height:61.750000pt;}
.h2{height:73.593750pt;}
.h3{height:102.916667pt;}
.h6{height:304.402688pt;}
.h0{height:960.000000pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x1{left:88.000000pt;}
.x3{left:101.333333pt;}
.x2{left:124.354267pt;}
.x6{left:128.000000pt;}
.x7{left:141.333333pt;}
.x4{left:148.000000pt;}
.x5{left:403.247333pt;}
}




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