
    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_3e249281fd99d01186375e29.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_b6d5ce9ca50f47f319df9042.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_63c8deb8aa8623055674c02e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_42e512f3872030a9172035ab.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053711;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_7cabc6509604c8d9ca05826f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_03f90fc9e1b868b1fbf0d096.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f088bfdf11860bbb0bbaa105.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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:-24.000000px;}
.v5{vertical-align:-12.000000px;}
.v4{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.000000px;}
.v3{vertical-align:24.000000px;}
.v1{vertical-align:30.000000px;}
.v8{vertical-align:36.000000px;}
.v7{vertical-align:42.000000px;}
.ls7{letter-spacing:-0.516000px;}
.ls17{letter-spacing:-0.492000px;}
.ls8{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.468000px;}
.ls5{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.024000px;}
.lse{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.492000px;}
.ls1d{letter-spacing:0.516000px;}
.lsf{letter-spacing:0.696000px;}
.ls9{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.984000px;}
.lsc{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.524000px;}
.ls13{letter-spacing:1.572000px;}
.ls14{letter-spacing:2.796000px;}
.ls15{letter-spacing:4.764000px;}
.ls6{letter-spacing:7.500000px;}
.ls11{letter-spacing:11.868000px;}
.ls1c{letter-spacing:13.500000px;}
.ls12{letter-spacing:17.553000px;}
.lsa{letter-spacing:19.500000px;}
.ls2{letter-spacing:33.984000px;}
.ls10{letter-spacing:34.164000px;}
.ls18{letter-spacing:49.500000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-60.000000px;}
.wsd{word-spacing:-51.132000px;}
.wsa{word-spacing:-42.696000px;}
.wsb{word-spacing:-42.000000px;}
.ws11{word-spacing:-18.516000px;}
.ws2{word-spacing:-18.492000px;}
.ws5{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.976000px;}
.wsc{word-spacing:-17.532000px;}
.wse{word-spacing:-17.508000px;}
.ws8{word-spacing:-17.484000px;}
.wsf{word-spacing:-16.500000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.000000px;}
.ws10{word-spacing:-10.500000px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-4.728000px;}
._5{margin-left:-3.336000px;}
._2{margin-left:-2.214000px;}
._1{margin-left:-1.008000px;}
._0{width:1.296000px;}
._3{width:2.538000px;}
._4{width:4.464000px;}
._d{width:5.472000px;}
._b{width:6.840000px;}
._c{width:7.902000px;}
._e{width:9.252000px;}
._a{width:10.326000px;}
._6{width:11.448000px;}
._7{width:13.374000px;}
._16{width:14.502000px;}
._9{width:15.540000px;}
._8{width:16.632000px;}
._12{width:19.362000px;}
._11{width:20.382000px;}
._10{width:21.552000px;}
._f{width:22.650000px;}
._14{width:24.264000px;}
._1a{width:25.398000px;}
._15{width:26.928000px;}
._19{width:32.202000px;}
._18{width:33.258000px;}
._17{width:34.416000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yad{bottom:3.750000px;}
.yaa{bottom:4.875000px;}
.ya5{bottom:9.000000px;}
.ya7{bottom:9.360000px;}
.yaf{bottom:22.920000px;}
.y3{bottom:46.162500px;}
.y2{bottom:66.787500px;}
.y7d{bottom:114.037500px;}
.y9e{bottom:123.787500px;}
.y4d{bottom:127.162500px;}
.y7c{bottom:135.037500px;}
.y2e{bottom:136.537500px;}
.yc9{bottom:137.662500px;}
.y9d{bottom:144.412500px;}
.y4c{bottom:147.787500px;}
.y7b{bottom:155.655000px;}
.y2d{bottom:157.170000px;}
.yc8{bottom:158.280000px;}
.yf4{bottom:167.295000px;}
.y4b{bottom:168.405000px;}
.y7a{bottom:176.325000px;}
.y2c{bottom:177.825000px;}
.yc7{bottom:178.950000px;}
.y9c{bottom:180.075000px;}
.yf3{bottom:187.950000px;}
.y4a{bottom:189.075000px;}
.y79{bottom:196.950000px;}
.y2b{bottom:198.825000px;}
.yc6{bottom:199.950000px;}
.y9b{bottom:200.700000px;}
.y68{bottom:203.325000px;}
.yf2{bottom:208.575000px;}
.y78{bottom:217.575000px;}
.y2a{bottom:219.450000px;}
.yc5{bottom:220.575000px;}
.y9a{bottom:222.075000px;}
.y67{bottom:223.950000px;}
.y49{bottom:224.700000px;}
.yf1{bottom:229.200000px;}
.y99{bottom:238.950000px;}
.y29{bottom:240.075000px;}
.yc4{bottom:241.200000px;}
.y66{bottom:244.575000px;}
.y48{bottom:245.700000px;}
.y98{bottom:247.950000px;}
.yf0{bottom:250.200000px;}
.y77{bottom:253.575000px;}
.y28{bottom:260.700000px;}
.y65{bottom:265.200000px;}
.y47{bottom:266.325000px;}
.yef{bottom:270.825000px;}
.y97{bottom:273.450000px;}
.y76{bottom:273.825000px;}
.yc3{bottom:274.950000px;}
.y64{bottom:286.200000px;}
.y46{bottom:286.950000px;}
.y75{bottom:291.075000px;}
.yee{bottom:291.450000px;}
.y96{bottom:294.075000px;}
.y27{bottom:296.325000px;}
.y63{bottom:306.870000px;}
.y45{bottom:307.605000px;}
.yed{bottom:312.120000px;}
.y95{bottom:314.730000px;}
.y26{bottom:317.355000px;}
.y74{bottom:319.995000px;}
.yc2{bottom:322.620000px;}
.y62{bottom:327.480000px;}
.y44{bottom:328.230000px;}
.yec{bottom:332.745000px;}
.y94{bottom:335.745000px;}
.y25{bottom:337.980000px;}
.yc1{bottom:343.620000px;}
.y61{bottom:348.105000px;}
.y43{bottom:349.245000px;}
.yeb{bottom:353.745000px;}
.y93{bottom:356.370000px;}
.y24{bottom:358.605000px;}
.yc0{bottom:364.245000px;}
.y60{bottom:368.730000px;}
.y42{bottom:369.870000px;}
.yea{bottom:374.370000px;}
.y92{bottom:376.995000px;}
.y23{bottom:379.245000px;}
.y5f{bottom:389.745000px;}
.ye9{bottom:394.980000px;}
.y91{bottom:397.620000px;}
.ybf{bottom:397.995000px;}
.y22{bottom:399.870000px;}
.y41{bottom:405.495000px;}
.y5e{bottom:410.370000px;}
.ye8{bottom:415.620000px;}
.y90{bottom:418.245000px;}
.y40{bottom:425.745000px;}
.y5d{bottom:430.995000px;}
.y21{bottom:434.025000px;}
.ye7{bottom:436.275000px;}
.y8f{bottom:439.275000px;}
.ybe{bottom:445.650000px;}
.y5c{bottom:451.275000px;}
.y3f{bottom:454.650000px;}
.ye6{bottom:457.275000px;}
.ybd{bottom:466.275000px;}
.y5a{bottom:468.900000px;}
.y5b{bottom:469.275000px;}
.y8e{bottom:474.900000px;}
.ye5{bottom:477.900000px;}
.y20{bottom:481.650000px;}
.y59{bottom:486.525000px;}
.ybc{bottom:487.275000px;}
.y8d{bottom:495.525000px;}
.ye4{bottom:498.525000px;}
.y1f{bottom:502.275000px;}
.ybb{bottom:507.900000px;}
.y58{bottom:515.400000px;}
.y8c{bottom:516.150000px;}
.ye3{bottom:519.150000px;}
.yba{bottom:528.525000px;}
.y8b{bottom:536.775000px;}
.y1e{bottom:537.900000px;}
.ye2{bottom:539.775000px;}
.yb9{bottom:549.150000px;}
.y8a{bottom:557.775000px;}
.y1d{bottom:558.525000px;}
.ye1{bottom:560.820000px;}
.yb8{bottom:569.820000px;}
.y89{bottom:578.445000px;}
.y1c{bottom:579.570000px;}
.ye0{bottom:581.445000px;}
.yb7{bottom:590.820000px;}
.y88{bottom:599.070000px;}
.y1b{bottom:600.195000px;}
.ydf{bottom:602.070000px;}
.yb6{bottom:611.445000px;}
.y87{bottom:619.695000px;}
.y1a{bottom:620.820000px;}
.yde{bottom:622.695000px;}
.y86{bottom:640.320000px;}
.y19{bottom:641.445000px;}
.ydd{bottom:643.320000px;}
.yb5{bottom:647.070000px;}
.y18{bottom:662.070000px;}
.ydc{bottom:664.320000px;}
.yb4{bottom:667.695000px;}
.y85{bottom:676.320000px;}
.y17{bottom:682.695000px;}
.ydb{bottom:684.945000px;}
.yb3{bottom:688.350000px;}
.y84{bottom:696.975000px;}
.y16{bottom:703.725000px;}
.yda{bottom:705.600000px;}
.yb2{bottom:709.350000px;}
.y73{bottom:716.850000px;}
.y83{bottom:717.600000px;}
.y15{bottom:724.350000px;}
.yd9{bottom:726.225000px;}
.yb1{bottom:729.975000px;}
.y72{bottom:737.475000px;}
.y82{bottom:738.225000px;}
.y14{bottom:744.975000px;}
.yd8{bottom:746.850000px;}
.y71{bottom:758.100000px;}
.y81{bottom:758.850000px;}
.yb0{bottom:763.725000px;}
.y13{bottom:765.600000px;}
.yd7{bottom:767.475000px;}
.y70{bottom:778.725000px;}
.y12{bottom:786.225000px;}
.yd6{bottom:788.475000px;}
.y80{bottom:792.975000px;}
.y3e{bottom:795.225000px;}
.y6f{bottom:799.725000px;}
.y11{bottom:807.225000px;}
.yd5{bottom:809.100000px;}
.yae{bottom:809.850000px;}
.y3d{bottom:815.850000px;}
.y6e{bottom:820.395000px;}
.y10{bottom:827.880000px;}
.yd4{bottom:829.755000px;}
.y3c{bottom:836.880000px;}
.y7f{bottom:840.630000px;}
.y6d{bottom:841.005000px;}
.yac{bottom:847.755000px;}
.yf{bottom:848.505000px;}
.yd3{bottom:850.380000px;}
.y3b{bottom:857.505000px;}
.y7e{bottom:860.880000px;}
.yab{bottom:868.005000px;}
.ye{bottom:869.145000px;}
.yd2{bottom:871.005000px;}
.y6c{bottom:874.755000px;}
.y57{bottom:878.130000px;}
.ya9{bottom:888.255000px;}
.yd{bottom:889.755000px;}
.y3a{bottom:891.255000px;}
.yd1{bottom:892.005000px;}
.ya8{bottom:908.505000px;}
.yc{bottom:910.755000px;}
.yd0{bottom:912.630000px;}
.y56{bottom:913.755000px;}
.y6b{bottom:922.380000px;}
.yb{bottom:931.380000px;}
.ya6{bottom:932.520000px;}
.ycf{bottom:933.255000px;}
.y55{bottom:934.380000px;}
.y39{bottom:938.880000px;}
.y6a{bottom:942.630000px;}
.yce{bottom:953.925000px;}
.y54{bottom:955.425000px;}
.y38{bottom:959.550000px;}
.ya4{bottom:960.300000px;}
.ya{bottom:961.050000px;}
.ycd{bottom:974.550000px;}
.y53{bottom:976.050000px;}
.y37{bottom:980.550000px;}
.y69{bottom:990.300000px;}
.ycc{bottom:995.550000px;}
.y52{bottom:996.675000px;}
.y36{bottom:1001.175000px;}
.ya3{bottom:1007.550000px;}
.ycb{bottom:1016.175000px;}
.y51{bottom:1017.300000px;}
.y9{bottom:1017.675000px;}
.y35{bottom:1021.800000px;}
.ya2{bottom:1024.800000px;}
.yca{bottom:1036.800000px;}
.y50{bottom:1037.925000px;}
.y8{bottom:1038.300000px;}
.y34{bottom:1042.425000px;}
.ya1{bottom:1057.425000px;}
.y33{bottom:1063.050000px;}
.y7{bottom:1065.300000px;}
.y4f{bottom:1072.050000px;}
.ya0{bottom:1078.080000px;}
.y32{bottom:1084.080000px;}
.y6{bottom:1085.205000px;}
.y9f{bottom:1099.080000px;}
.y31{bottom:1104.705000px;}
.y5{bottom:1118.955000px;}
.y4e{bottom:1119.705000px;}
.y30{bottom:1140.330000px;}
.y4{bottom:1146.705000px;}
.y2f{bottom:1160.955000px;}
.y1{bottom:1203.750000px;}
.h14{height:20.250000px;}
.h13{height:24.000000px;}
.hf{height:24.375000px;}
.h11{height:24.397500px;}
.h4{height:34.710938px;}
.h16{height:37.912500px;}
.h9{height:42.333984px;}
.h10{height:46.567383px;}
.h12{height:47.727539px;}
.ha{height:50.566406px;}
.h5{height:50.800781px;}
.h1{height:52.066406px;}
.h7{height:52.417969px;}
.h15{height:54.372070px;}
.h17{height:54.398438px;}
.h6{height:58.710938px;}
.hb{height:58.890937px;}
.h8{height:59.343750px;}
.hc{height:60.679688px;}
.h2{height:67.734375px;}
.h3{height:68.100586px;}
.hd{height:84.981445px;}
.he{height:96.679688px;}
.h0{height:1263.000000px;}
.w6{width:66.037500px;}
.w9{width:70.912500px;}
.w7{width:77.287500px;}
.wa{width:103.537500px;}
.w5{width:174.825000px;}
.w8{width:220.950000px;}
.w3{width:318.150000px;}
.w4{width:395.400000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:6.750000px;}
.x1d{left:7.875000px;}
.x1f{left:21.000000px;}
.x21{left:25.860000px;}
.x23{left:29.250000px;}
.x26{left:34.155000px;}
.x24{left:58.155000px;}
.x25{left:63.030000px;}
.x3{left:85.162487px;}
.x1a{left:90.037500px;}
.x14{left:94.162487px;}
.x17{left:101.287487px;}
.x6{left:119.662487px;}
.x29{left:123.037487px;}
.x4{left:126.412487px;}
.x19{left:204.074987px;}
.x7{left:216.824987px;}
.x15{left:230.744987px;}
.x2{left:235.244987px;}
.x27{left:251.744987px;}
.x1e{left:264.870000px;}
.x8{left:300.869987px;}
.xc{left:331.274987px;}
.x9{left:341.024987px;}
.xb{left:361.274987px;}
.x5{left:363.149987px;}
.x18{left:376.274987px;}
.x28{left:386.024987px;}
.x12{left:392.024987px;}
.xa{left:397.694987px;}
.xe{left:399.194987px;}
.x1c{left:408.195000px;}
.x20{left:629.145000px;}
.x10{left:664.799987px;}
.x11{left:680.549987px;}
.x22{left:700.050000px;}
.xf{left:718.424987px;}
.x16{left:761.954987px;}
.xd{left:772.079987px;}
.x13{left:805.829987px;}
.x1{left:808.469987px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v5{vertical-align:-10.666667pt;}
.v4{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.666667pt;}
.v3{vertical-align:21.333333pt;}
.v1{vertical-align:26.666667pt;}
.v8{vertical-align:32.000000pt;}
.v7{vertical-align:37.333333pt;}
.ls7{letter-spacing:-0.458667pt;}
.ls17{letter-spacing:-0.437333pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.416000pt;}
.ls5{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.437333pt;}
.ls1d{letter-spacing:0.458667pt;}
.lsf{letter-spacing:0.618667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.874667pt;}
.lsc{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.354667pt;}
.ls13{letter-spacing:1.397333pt;}
.ls14{letter-spacing:2.485333pt;}
.ls15{letter-spacing:4.234667pt;}
.ls6{letter-spacing:6.666667pt;}
.ls11{letter-spacing:10.549333pt;}
.ls1c{letter-spacing:12.000000pt;}
.ls12{letter-spacing:15.602667pt;}
.lsa{letter-spacing:17.333333pt;}
.ls2{letter-spacing:30.208000pt;}
.ls10{letter-spacing:30.368000pt;}
.ls18{letter-spacing:44.000000pt;}
.ws9{word-spacing:-53.333333pt;}
.wsd{word-spacing:-45.450667pt;}
.wsa{word-spacing:-37.952000pt;}
.wsb{word-spacing:-37.333333pt;}
.ws11{word-spacing:-16.458667pt;}
.ws2{word-spacing:-16.437333pt;}
.ws5{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.978667pt;}
.wsc{word-spacing:-15.584000pt;}
.wse{word-spacing:-15.562667pt;}
.ws8{word-spacing:-15.541333pt;}
.wsf{word-spacing:-14.666667pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws10{word-spacing:-9.333333pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-4.202667pt;}
._5{margin-left:-2.965333pt;}
._2{margin-left:-1.968000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.152000pt;}
._3{width:2.256000pt;}
._4{width:3.968000pt;}
._d{width:4.864000pt;}
._b{width:6.080000pt;}
._c{width:7.024000pt;}
._e{width:8.224000pt;}
._a{width:9.178667pt;}
._6{width:10.176000pt;}
._7{width:11.888000pt;}
._16{width:12.890667pt;}
._9{width:13.813333pt;}
._8{width:14.784000pt;}
._12{width:17.210667pt;}
._11{width:18.117333pt;}
._10{width:19.157333pt;}
._f{width:20.133333pt;}
._14{width:21.568000pt;}
._1a{width:22.576000pt;}
._15{width:23.936000pt;}
._19{width:28.624000pt;}
._18{width:29.562667pt;}
._17{width:30.592000pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:3.333333pt;}
.yaa{bottom:4.333333pt;}
.ya5{bottom:8.000000pt;}
.ya7{bottom:8.320000pt;}
.yaf{bottom:20.373333pt;}
.y3{bottom:41.033333pt;}
.y2{bottom:59.366667pt;}
.y7d{bottom:101.366667pt;}
.y9e{bottom:110.033333pt;}
.y4d{bottom:113.033333pt;}
.y7c{bottom:120.033333pt;}
.y2e{bottom:121.366667pt;}
.yc9{bottom:122.366667pt;}
.y9d{bottom:128.366667pt;}
.y4c{bottom:131.366667pt;}
.y7b{bottom:138.360000pt;}
.y2d{bottom:139.706667pt;}
.yc8{bottom:140.693333pt;}
.yf4{bottom:148.706667pt;}
.y4b{bottom:149.693333pt;}
.y7a{bottom:156.733333pt;}
.y2c{bottom:158.066667pt;}
.yc7{bottom:159.066667pt;}
.y9c{bottom:160.066667pt;}
.yf3{bottom:167.066667pt;}
.y4a{bottom:168.066667pt;}
.y79{bottom:175.066667pt;}
.y2b{bottom:176.733333pt;}
.yc6{bottom:177.733333pt;}
.y9b{bottom:178.400000pt;}
.y68{bottom:180.733333pt;}
.yf2{bottom:185.400000pt;}
.y78{bottom:193.400000pt;}
.y2a{bottom:195.066667pt;}
.yc5{bottom:196.066667pt;}
.y9a{bottom:197.400000pt;}
.y67{bottom:199.066667pt;}
.y49{bottom:199.733333pt;}
.yf1{bottom:203.733333pt;}
.y99{bottom:212.400000pt;}
.y29{bottom:213.400000pt;}
.yc4{bottom:214.400000pt;}
.y66{bottom:217.400000pt;}
.y48{bottom:218.400000pt;}
.y98{bottom:220.400000pt;}
.yf0{bottom:222.400000pt;}
.y77{bottom:225.400000pt;}
.y28{bottom:231.733333pt;}
.y65{bottom:235.733333pt;}
.y47{bottom:236.733333pt;}
.yef{bottom:240.733333pt;}
.y97{bottom:243.066667pt;}
.y76{bottom:243.400000pt;}
.yc3{bottom:244.400000pt;}
.y64{bottom:254.400000pt;}
.y46{bottom:255.066667pt;}
.y75{bottom:258.733333pt;}
.yee{bottom:259.066667pt;}
.y96{bottom:261.400000pt;}
.y27{bottom:263.400000pt;}
.y63{bottom:272.773333pt;}
.y45{bottom:273.426667pt;}
.yed{bottom:277.440000pt;}
.y95{bottom:279.760000pt;}
.y26{bottom:282.093333pt;}
.y74{bottom:284.440000pt;}
.yc2{bottom:286.773333pt;}
.y62{bottom:291.093333pt;}
.y44{bottom:291.760000pt;}
.yec{bottom:295.773333pt;}
.y94{bottom:298.440000pt;}
.y25{bottom:300.426667pt;}
.yc1{bottom:305.440000pt;}
.y61{bottom:309.426667pt;}
.y43{bottom:310.440000pt;}
.yeb{bottom:314.440000pt;}
.y93{bottom:316.773333pt;}
.y24{bottom:318.760000pt;}
.yc0{bottom:323.773333pt;}
.y60{bottom:327.760000pt;}
.y42{bottom:328.773333pt;}
.yea{bottom:332.773333pt;}
.y92{bottom:335.106667pt;}
.y23{bottom:337.106667pt;}
.y5f{bottom:346.440000pt;}
.ye9{bottom:351.093333pt;}
.y91{bottom:353.440000pt;}
.ybf{bottom:353.773333pt;}
.y22{bottom:355.440000pt;}
.y41{bottom:360.440000pt;}
.y5e{bottom:364.773333pt;}
.ye8{bottom:369.440000pt;}
.y90{bottom:371.773333pt;}
.y40{bottom:378.440000pt;}
.y5d{bottom:383.106667pt;}
.y21{bottom:385.800000pt;}
.ye7{bottom:387.800000pt;}
.y8f{bottom:390.466667pt;}
.ybe{bottom:396.133333pt;}
.y5c{bottom:401.133333pt;}
.y3f{bottom:404.133333pt;}
.ye6{bottom:406.466667pt;}
.ybd{bottom:414.466667pt;}
.y5a{bottom:416.800000pt;}
.y5b{bottom:417.133333pt;}
.y8e{bottom:422.133333pt;}
.ye5{bottom:424.800000pt;}
.y20{bottom:428.133333pt;}
.y59{bottom:432.466667pt;}
.ybc{bottom:433.133333pt;}
.y8d{bottom:440.466667pt;}
.ye4{bottom:443.133333pt;}
.y1f{bottom:446.466667pt;}
.ybb{bottom:451.466667pt;}
.y58{bottom:458.133333pt;}
.y8c{bottom:458.800000pt;}
.ye3{bottom:461.466667pt;}
.yba{bottom:469.800000pt;}
.y8b{bottom:477.133333pt;}
.y1e{bottom:478.133333pt;}
.ye2{bottom:479.800000pt;}
.yb9{bottom:488.133333pt;}
.y8a{bottom:495.800000pt;}
.y1d{bottom:496.466667pt;}
.ye1{bottom:498.506667pt;}
.yb8{bottom:506.506667pt;}
.y89{bottom:514.173333pt;}
.y1c{bottom:515.173333pt;}
.ye0{bottom:516.840000pt;}
.yb7{bottom:525.173333pt;}
.y88{bottom:532.506667pt;}
.y1b{bottom:533.506667pt;}
.ydf{bottom:535.173333pt;}
.yb6{bottom:543.506667pt;}
.y87{bottom:550.840000pt;}
.y1a{bottom:551.840000pt;}
.yde{bottom:553.506667pt;}
.y86{bottom:569.173333pt;}
.y19{bottom:570.173333pt;}
.ydd{bottom:571.840000pt;}
.yb5{bottom:575.173333pt;}
.y18{bottom:588.506667pt;}
.ydc{bottom:590.506667pt;}
.yb4{bottom:593.506667pt;}
.y85{bottom:601.173333pt;}
.y17{bottom:606.840000pt;}
.ydb{bottom:608.840000pt;}
.yb3{bottom:611.866667pt;}
.y84{bottom:619.533333pt;}
.y16{bottom:625.533333pt;}
.yda{bottom:627.200000pt;}
.yb2{bottom:630.533333pt;}
.y73{bottom:637.200000pt;}
.y83{bottom:637.866667pt;}
.y15{bottom:643.866667pt;}
.yd9{bottom:645.533333pt;}
.yb1{bottom:648.866667pt;}
.y72{bottom:655.533333pt;}
.y82{bottom:656.200000pt;}
.y14{bottom:662.200000pt;}
.yd8{bottom:663.866667pt;}
.y71{bottom:673.866667pt;}
.y81{bottom:674.533333pt;}
.yb0{bottom:678.866667pt;}
.y13{bottom:680.533333pt;}
.yd7{bottom:682.200000pt;}
.y70{bottom:692.200000pt;}
.y12{bottom:698.866667pt;}
.yd6{bottom:700.866667pt;}
.y80{bottom:704.866667pt;}
.y3e{bottom:706.866667pt;}
.y6f{bottom:710.866667pt;}
.y11{bottom:717.533333pt;}
.yd5{bottom:719.200000pt;}
.yae{bottom:719.866667pt;}
.y3d{bottom:725.200000pt;}
.y6e{bottom:729.240000pt;}
.y10{bottom:735.893333pt;}
.yd4{bottom:737.560000pt;}
.y3c{bottom:743.893333pt;}
.y7f{bottom:747.226667pt;}
.y6d{bottom:747.560000pt;}
.yac{bottom:753.560000pt;}
.yf{bottom:754.226667pt;}
.yd3{bottom:755.893333pt;}
.y3b{bottom:762.226667pt;}
.y7e{bottom:765.226667pt;}
.yab{bottom:771.560000pt;}
.ye{bottom:772.573333pt;}
.yd2{bottom:774.226667pt;}
.y6c{bottom:777.560000pt;}
.y57{bottom:780.560000pt;}
.ya9{bottom:789.560000pt;}
.yd{bottom:790.893333pt;}
.y3a{bottom:792.226667pt;}
.yd1{bottom:792.893333pt;}
.ya8{bottom:807.560000pt;}
.yc{bottom:809.560000pt;}
.yd0{bottom:811.226667pt;}
.y56{bottom:812.226667pt;}
.y6b{bottom:819.893333pt;}
.yb{bottom:827.893333pt;}
.ya6{bottom:828.906667pt;}
.ycf{bottom:829.560000pt;}
.y55{bottom:830.560000pt;}
.y39{bottom:834.560000pt;}
.y6a{bottom:837.893333pt;}
.yce{bottom:847.933333pt;}
.y54{bottom:849.266667pt;}
.y38{bottom:852.933333pt;}
.ya4{bottom:853.600000pt;}
.ya{bottom:854.266667pt;}
.ycd{bottom:866.266667pt;}
.y53{bottom:867.600000pt;}
.y37{bottom:871.600000pt;}
.y69{bottom:880.266667pt;}
.ycc{bottom:884.933333pt;}
.y52{bottom:885.933333pt;}
.y36{bottom:889.933333pt;}
.ya3{bottom:895.600000pt;}
.ycb{bottom:903.266667pt;}
.y51{bottom:904.266667pt;}
.y9{bottom:904.600000pt;}
.y35{bottom:908.266667pt;}
.ya2{bottom:910.933333pt;}
.yca{bottom:921.600000pt;}
.y50{bottom:922.600000pt;}
.y8{bottom:922.933333pt;}
.y34{bottom:926.600000pt;}
.ya1{bottom:939.933333pt;}
.y33{bottom:944.933333pt;}
.y7{bottom:946.933333pt;}
.y4f{bottom:952.933333pt;}
.ya0{bottom:958.293333pt;}
.y32{bottom:963.626667pt;}
.y6{bottom:964.626667pt;}
.y9f{bottom:976.960000pt;}
.y31{bottom:981.960000pt;}
.y5{bottom:994.626667pt;}
.y4e{bottom:995.293333pt;}
.y30{bottom:1013.626667pt;}
.y4{bottom:1019.293333pt;}
.y2f{bottom:1031.960000pt;}
.y1{bottom:1070.000000pt;}
.h14{height:18.000000pt;}
.h13{height:21.333333pt;}
.hf{height:21.666667pt;}
.h11{height:21.686667pt;}
.h4{height:30.854167pt;}
.h16{height:33.700000pt;}
.h9{height:37.630208pt;}
.h10{height:41.393229pt;}
.h12{height:42.424479pt;}
.ha{height:44.947917pt;}
.h5{height:45.156250pt;}
.h1{height:46.281250pt;}
.h7{height:46.593750pt;}
.h15{height:48.330729pt;}
.h17{height:48.354167pt;}
.h6{height:52.187500pt;}
.hb{height:52.347500pt;}
.h8{height:52.750000pt;}
.hc{height:53.937500pt;}
.h2{height:60.208333pt;}
.h3{height:60.533854pt;}
.hd{height:75.539063pt;}
.he{height:85.937500pt;}
.h0{height:1122.666667pt;}
.w6{width:58.700000pt;}
.w9{width:63.033333pt;}
.w7{width:68.700000pt;}
.wa{width:92.033333pt;}
.w5{width:155.400000pt;}
.w8{width:196.400000pt;}
.w3{width:282.800000pt;}
.w4{width:351.466667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.000000pt;}
.x1d{left:7.000000pt;}
.x1f{left:18.666667pt;}
.x21{left:22.986667pt;}
.x23{left:26.000000pt;}
.x26{left:30.360000pt;}
.x24{left:51.693333pt;}
.x25{left:56.026667pt;}
.x3{left:75.699988pt;}
.x1a{left:80.033333pt;}
.x14{left:83.699988pt;}
.x17{left:90.033322pt;}
.x6{left:106.366655pt;}
.x29{left:109.366655pt;}
.x4{left:112.366655pt;}
.x19{left:181.399988pt;}
.x7{left:192.733322pt;}
.x15{left:205.106655pt;}
.x2{left:209.106655pt;}
.x27{left:223.773322pt;}
.x1e{left:235.440000pt;}
.x8{left:267.439988pt;}
.xc{left:294.466655pt;}
.x9{left:303.133322pt;}
.xb{left:321.133322pt;}
.x5{left:322.799988pt;}
.x18{left:334.466655pt;}
.x28{left:343.133322pt;}
.x12{left:348.466655pt;}
.xa{left:353.506655pt;}
.xe{left:354.839988pt;}
.x1c{left:362.840000pt;}
.x20{left:559.240000pt;}
.x10{left:590.933322pt;}
.x11{left:604.933322pt;}
.x22{left:622.266667pt;}
.xf{left:638.599988pt;}
.x16{left:677.293322pt;}
.xd{left:686.293322pt;}
.x13{left:716.293322pt;}
.x1{left:718.639988pt;}
}




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