
    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_7a7a14ac0c3bbdbcc6a170e1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.131836;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_9ddac0d514ebb47bdeb62589.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f2c4f1e219c01ae04e32343e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.688477;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_38fe7767f85b6786df515c2b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_7a2e5264b6623d54ac80aef7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21f54a67fbae0d374ad9ebce.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_95db911cce74be39dd17eabe.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_46d5eb77e0e45d4c062d9715.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1f42d6b7dfbd689b3115552b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.472200px;}
.ls4{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.238800px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.080400px;}
.ls10{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.178560px;}
.lsc{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.414600px;}
.ls8{letter-spacing:6.785280px;}
.lsd{letter-spacing:10.800000px;}
.ls7{letter-spacing:39.905280px;}
.ls11{letter-spacing:59.345280px;}
.lsf{letter-spacing:64.026720px;}
.lsb{letter-spacing:65.825280px;}
.lse{letter-spacing:89.729280px;}
.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;}
}
.ws11{word-spacing:-66.240000px;}
.ws10{word-spacing:-59.760000px;}
.ws3{word-spacing:-20.821200px;}
.ws12{word-spacing:-16.974600px;}
.ws13{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.640400px;}
.ws9{word-spacing:-16.560000px;}
.wse{word-spacing:-16.297800px;}
.ws8{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.440000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.258800px;}
._2{width:1.042800px;}
._1{width:2.122560px;}
._3{width:3.264720px;}
._e{width:4.372080px;}
._b{width:5.895360px;}
._c{width:7.352640px;}
._8{width:8.876160px;}
._7{width:10.465920px;}
._10{width:12.386880px;}
._d{width:14.154960px;}
._6{width:15.238800px;}
._4{width:17.818560px;}
._5{width:18.878400px;}
._11{width:19.906080px;}
._9{width:21.528000px;}
._a{width:22.654080px;}
._13{width:23.846640px;}
._12{width:24.906240px;}
._f{width:32.780400px;}
._15{width:847.740000px;}
._14{width:849.360000px;}
.fc2{color:rgb(57,58,86);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:9.000000px;}
.yaf{bottom:10.260000px;}
.yc0{bottom:10.440000px;}
.y1e{bottom:11.880000px;}
.yb4{bottom:18.540000px;}
.ybf{bottom:18.570000px;}
.yf{bottom:27.900000px;}
.yc7{bottom:27.945000px;}
.yb5{bottom:28.080000px;}
.ybe{bottom:28.110000px;}
.yb8{bottom:28.125000px;}
.y46{bottom:32.940000px;}
.y1f{bottom:34.380000px;}
.y45{bottom:37.620000px;}
.y1d{bottom:37.800000px;}
.y47{bottom:56.520000px;}
.y20{bottom:57.420000px;}
.y44{bottom:63.540000px;}
.y1c{bottom:63.720000px;}
.y7{bottom:72.540000px;}
.yc3{bottom:74.925000px;}
.y43{bottom:77.220000px;}
.y1b{bottom:78.300000px;}
.yb2{bottom:83.025000px;}
.yba{bottom:84.450000px;}
.yc2{bottom:93.825000px;}
.yb1{bottom:102.105000px;}
.y6{bottom:104.760000px;}
.y5{bottom:137.160000px;}
.y4{bottom:160.200000px;}
.y42{bottom:169.200000px;}
.y8a{bottom:174.420000px;}
.y73{bottom:178.200000px;}
.ycf{bottom:184.140000px;}
.y57{bottom:185.760000px;}
.ye4{bottom:187.200000px;}
.y41{bottom:190.980000px;}
.y89{bottom:196.230000px;}
.y72{bottom:200.010000px;}
.y3{bottom:202.530000px;}
.yce{bottom:205.950000px;}
.y56{bottom:207.570000px;}
.ye3{bottom:209.190000px;}
.yab{bottom:211.890000px;}
.y40{bottom:212.790000px;}
.y88{bottom:218.010000px;}
.y71{bottom:221.790000px;}
.y2{bottom:223.410000px;}
.ycd{bottom:227.730000px;}
.ye2{bottom:230.970000px;}
.yaa{bottom:232.230000px;}
.y3f{bottom:234.750000px;}
.y55{bottom:237.810000px;}
.yf2{bottom:243.750000px;}
.y87{bottom:248.790000px;}
.ycc{bottom:249.690000px;}
.y70{bottom:252.750000px;}
.ya9{bottom:254.010000px;}
.y3e{bottom:256.530000px;}
.ye1{bottom:261.750000px;}
.y54{bottom:263.910000px;}
.yf1{bottom:265.530000px;}
.y86{bottom:270.750000px;}
.ycb{bottom:271.470000px;}
.ya8{bottom:275.790000px;}
.y3d{bottom:278.310000px;}
.y6f{bottom:283.530000px;}
.y19{bottom:284.610000px;}
.yf0{bottom:287.310000px;}
.y85{bottom:292.530000px;}
.yca{bottom:293.250000px;}
.ya7{bottom:297.750000px;}
.y3c{bottom:300.090000px;}
.y6e{bottom:305.310000px;}
.y18{bottom:306.390000px;}
.yf6{bottom:309.090000px;}
.y84{bottom:314.310000px;}
.ye0{bottom:314.490000px;}
.yc9{bottom:315.030000px;}
.yef{bottom:318.090000px;}
.ya6{bottom:319.530000px;}
.y3b{bottom:322.050000px;}
.y6d{bottom:327.090000px;}
.y17{bottom:328.350000px;}
.yee{bottom:340.050000px;}
.y83{bottom:345.090000px;}
.ydf{bottom:345.270000px;}
.yc8{bottom:345.810000px;}
.y6c{bottom:349.050000px;}
.y16{bottom:350.130000px;}
.ya5{bottom:350.310000px;}
.y3a{bottom:352.830000px;}
.yed{bottom:361.830000px;}
.y6b{bottom:370.830000px;}
.yc1{bottom:371.190000px;}
.y15{bottom:371.910000px;}
.ya4{bottom:372.090000px;}
.y82{bottom:376.050000px;}
.y39{bottom:383.610000px;}
.y6a{bottom:392.610000px;}
.y14{bottom:393.690000px;}
.ya3{bottom:394.050000px;}
.y81{bottom:397.875000px;}
.yfe{bottom:401.655000px;}
.y38{bottom:405.435000px;}
.y69{bottom:414.435000px;}
.y13{bottom:415.695000px;}
.ya2{bottom:415.875000px;}
.y80{bottom:419.655000px;}
.yc6{bottom:420.555000px;}
.yfd{bottom:423.435000px;}
.y37{bottom:427.215000px;}
.y68{bottom:436.215000px;}
.y12{bottom:437.475000px;}
.y7f{bottom:441.435000px;}
.yfc{bottom:445.215000px;}
.ya1{bottom:446.655000px;}
.y36{bottom:449.175000px;}
.yde{bottom:450.615000px;}
.y67{bottom:458.175000px;}
.y11{bottom:459.255000px;}
.y7e{bottom:463.215000px;}
.yec{bottom:467.175000px;}
.ya0{bottom:468.435000px;}
.yc5{bottom:469.875000px;}
.yfb{bottom:476.175000px;}
.y35{bottom:479.955000px;}
.y10{bottom:481.035000px;}
.ydd{bottom:481.395000px;}
.y7d{bottom:485.175000px;}
.y66{bottom:488.955000px;}
.y9f{bottom:490.215000px;}
.yfa{bottom:497.955000px;}
.y34{bottom:501.735000px;}
.yc4{bottom:502.995000px;}
.ydc{bottom:503.175000px;}
.y7c{bottom:506.955000px;}
.y65{bottom:510.735000px;}
.y9e{bottom:512.175000px;}
.y33{bottom:523.515000px;}
.y7b{bottom:528.735000px;}
.ye{bottom:532.515000px;}
.y9d{bottom:533.955000px;}
.yeb{bottom:541.515000px;}
.y32{bottom:545.295000px;}
.yf9{bottom:550.515000px;}
.yb9{bottom:552.315000px;}
.y9c{bottom:555.735000px;}
.y7a{bottom:559.515000px;}
.y64{bottom:563.295000px;}
.ydb{bottom:564.915000px;}
.y31{bottom:567.255000px;}
.yf5{bottom:572.295000px;}
.yf8{bottom:581.295000px;}
.yea{bottom:585.255000px;}
.ybd{bottom:585.435000px;}
.y9b{bottom:586.515000px;}
.yda{bottom:586.695000px;}
.y30{bottom:589.035000px;}
.y79{bottom:590.295000px;}
.y63{bottom:594.255000px;}
.yf7{bottom:603.285000px;}
.y2f{bottom:610.845000px;}
.y78{bottom:612.285000px;}
.ye9{bottom:616.065000px;}
.y9a{bottom:617.325000px;}
.yd9{bottom:617.505000px;}
.y62{bottom:625.065000px;}
.y2e{bottom:632.625000px;}
.ybc{bottom:634.965000px;}
.ye8{bottom:637.845000px;}
.yd{bottom:639.105000px;}
.y99{bottom:639.285000px;}
.y77{bottom:643.065000px;}
.yf4{bottom:646.845000px;}
.yd8{bottom:648.285000px;}
.y61{bottom:655.845000px;}
.y98{bottom:661.065000px;}
.y2d{bottom:663.585000px;}
.y76{bottom:664.845000px;}
.y53{bottom:668.625000px;}
.yd7{bottom:670.245000px;}
.y97{bottom:682.845000px;}
.yc{bottom:683.565000px;}
.ybb{bottom:684.285000px;}
.y2c{bottom:685.365000px;}
.y60{bottom:686.625000px;}
.yf3{bottom:690.585000px;}
.y52{bottom:699.585000px;}
.yd6{bottom:702.105000px;}
.y96{bottom:704.625000px;}
.y2b{bottom:707.145000px;}
.yb{bottom:714.345000px;}
.y5f{bottom:717.585000px;}
.y51{bottom:721.365000px;}
.yd5{bottom:723.885000px;}
.y95{bottom:726.585000px;}
.y2a{bottom:728.925000px;}
.yb0{bottom:733.605000px;}
.y5e{bottom:739.365000px;}
.y50{bottom:743.145000px;}
.ya{bottom:745.845000px;}
.y94{bottom:748.365000px;}
.y29{bottom:759.705000px;}
.y5d{bottom:761.145000px;}
.y93{bottom:770.145000px;}
.y4f{bottom:773.925000px;}
.yd4{bottom:777.705000px;}
.y28{bottom:781.665000px;}
.y5c{bottom:782.925000px;}
.y92{bottom:791.925000px;}
.y4e{bottom:795.705000px;}
.y27{bottom:803.445000px;}
.y5b{bottom:804.705000px;}
.yd3{bottom:808.710000px;}
.y9{bottom:809.250000px;}
.ye7{bottom:813.750000px;}
.y4d{bottom:817.710000px;}
.y91{bottom:822.750000px;}
.y26{bottom:825.270000px;}
.y5a{bottom:826.710000px;}
.yd2{bottom:830.490000px;}
.yb7{bottom:832.290000px;}
.ye6{bottom:835.710000px;}
.y90{bottom:844.710000px;}
.y25{bottom:847.050000px;}
.y4c{bottom:848.490000px;}
.ye5{bottom:857.490000px;}
.yd1{bottom:861.270000px;}
.y8f{bottom:866.490000px;}
.y4b{bottom:870.270000px;}
.y24{bottom:878.010000px;}
.y75{bottom:879.270000px;}
.yb3{bottom:881.610000px;}
.yd0{bottom:883.050000px;}
.y8e{bottom:888.270000px;}
.y4a{bottom:892.050000px;}
.y74{bottom:901.050000px;}
.y8{bottom:906.270000px;}
.y8d{bottom:910.050000px;}
.y49{bottom:914.010000px;}
.y59{bottom:923.010000px;}
.yae{bottom:931.110000px;}
.y8c{bottom:932.010000px;}
.y23{bottom:935.790000px;}
.y48{bottom:944.790000px;}
.y8b{bottom:953.790000px;}
.y58{bottom:966.570000px;}
.y22{bottom:975.570000px;}
.yad{bottom:978.990000px;}
.y21{bottom:997.350000px;}
.yac{bottom:998.790000px;}
.y1{bottom:1036.980000px;}
.y1a{bottom:1037.160000px;}
.h13{height:32.400000px;}
.h8{height:37.437188px;}
.h12{height:42.164648px;}
.h3{height:43.246406px;}
.h11{height:46.736719px;}
.hd{height:48.224531px;}
.h4{height:48.410156px;}
.h15{height:48.600000px;}
.h16{height:48.636000px;}
.h9{height:53.573906px;}
.h5{height:57.051211px;}
.h7{height:57.796523px;}
.hb{height:59.383125px;}
.he{height:61.197188px;}
.h10{height:64.546875px;}
.ha{height:64.800000px;}
.h2{height:65.884219px;}
.hf{height:77.580000px;}
.hc{height:77.760000px;}
.h6{height:91.441406px;}
.h18{height:180.390000px;}
.h17{height:180.570000px;}
.h14{height:196.590000px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w4{width:39.600000px;}
.w6{width:39.996000px;}
.w7{width:233.850000px;}
.w5{width:676.230000px;}
.w3{width:682.530000px;}
.w2{width:702.105000px;}
.w1{width:850.499987px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x5{left:45.360000px;}
.x3{left:53.100000px;}
.x1c{left:57.599987px;}
.x1a{left:64.079987px;}
.x18{left:70.379987px;}
.x1b{left:80.999987px;}
.xa{left:83.160000px;}
.x1{left:91.835987px;}
.x2{left:93.096000px;}
.x8{left:108.035987px;}
.xd{left:118.835987px;}
.x14{left:125.495987px;}
.x19{left:135.035987px;}
.xe{left:145.835987px;}
.x12{left:243.569987px;}
.x9{left:252.929987px;}
.x11{left:256.169987px;}
.x4{left:282.134987px;}
.x10{left:285.374987px;}
.x16{left:327.135000px;}
.x13{left:406.334987px;}
.x15{left:410.294987px;}
.x17{left:560.985000px;}
.x7{left:727.890000px;}
.xf{left:751.649987px;}
.xb{left:759.390000px;}
.xc{left:796.679987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.419733pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.212267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.071467pt;}
.ls10{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.158720pt;}
.lsc{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.368533pt;}
.ls8{letter-spacing:6.031360pt;}
.lsd{letter-spacing:9.600000pt;}
.ls7{letter-spacing:35.471360pt;}
.ls11{letter-spacing:52.751360pt;}
.lsf{letter-spacing:56.912640pt;}
.lsb{letter-spacing:58.511360pt;}
.lse{letter-spacing:79.759360pt;}
.ws11{word-spacing:-58.880000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws3{word-spacing:-18.507733pt;}
.ws12{word-spacing:-15.088533pt;}
.ws13{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.791467pt;}
.ws9{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.486933pt;}
.ws8{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws6{word-spacing:-9.280000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-1.118933pt;}
._2{width:0.926933pt;}
._1{width:1.886720pt;}
._3{width:2.901973pt;}
._e{width:3.886293pt;}
._b{width:5.240320pt;}
._c{width:6.535680pt;}
._8{width:7.889920pt;}
._7{width:9.303040pt;}
._10{width:11.010560pt;}
._d{width:12.582187pt;}
._6{width:13.545600pt;}
._4{width:15.838720pt;}
._5{width:16.780800pt;}
._11{width:17.694293pt;}
._9{width:19.136000pt;}
._a{width:20.136960pt;}
._13{width:21.197013pt;}
._12{width:22.138880pt;}
._f{width:29.138133pt;}
._15{width:753.546667pt;}
._14{width:754.986667pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:8.000000pt;}
.yaf{bottom:9.120000pt;}
.yc0{bottom:9.280000pt;}
.y1e{bottom:10.560000pt;}
.yb4{bottom:16.480000pt;}
.ybf{bottom:16.506667pt;}
.yf{bottom:24.800000pt;}
.yc7{bottom:24.840000pt;}
.yb5{bottom:24.960000pt;}
.ybe{bottom:24.986667pt;}
.yb8{bottom:25.000000pt;}
.y46{bottom:29.280000pt;}
.y1f{bottom:30.560000pt;}
.y45{bottom:33.440000pt;}
.y1d{bottom:33.600000pt;}
.y47{bottom:50.240000pt;}
.y20{bottom:51.040000pt;}
.y44{bottom:56.480000pt;}
.y1c{bottom:56.640000pt;}
.y7{bottom:64.480000pt;}
.yc3{bottom:66.600000pt;}
.y43{bottom:68.640000pt;}
.y1b{bottom:69.600000pt;}
.yb2{bottom:73.800000pt;}
.yba{bottom:75.066667pt;}
.yc2{bottom:83.400000pt;}
.yb1{bottom:90.760000pt;}
.y6{bottom:93.120000pt;}
.y5{bottom:121.920000pt;}
.y4{bottom:142.400000pt;}
.y42{bottom:150.400000pt;}
.y8a{bottom:155.040000pt;}
.y73{bottom:158.400000pt;}
.ycf{bottom:163.680000pt;}
.y57{bottom:165.120000pt;}
.ye4{bottom:166.400000pt;}
.y41{bottom:169.760000pt;}
.y89{bottom:174.426667pt;}
.y72{bottom:177.786667pt;}
.y3{bottom:180.026667pt;}
.yce{bottom:183.066667pt;}
.y56{bottom:184.506667pt;}
.ye3{bottom:185.946667pt;}
.yab{bottom:188.346667pt;}
.y40{bottom:189.146667pt;}
.y88{bottom:193.786667pt;}
.y71{bottom:197.146667pt;}
.y2{bottom:198.586667pt;}
.ycd{bottom:202.426667pt;}
.ye2{bottom:205.306667pt;}
.yaa{bottom:206.426667pt;}
.y3f{bottom:208.666667pt;}
.y55{bottom:211.386667pt;}
.yf2{bottom:216.666667pt;}
.y87{bottom:221.146667pt;}
.ycc{bottom:221.946667pt;}
.y70{bottom:224.666667pt;}
.ya9{bottom:225.786667pt;}
.y3e{bottom:228.026667pt;}
.ye1{bottom:232.666667pt;}
.y54{bottom:234.586667pt;}
.yf1{bottom:236.026667pt;}
.y86{bottom:240.666667pt;}
.ycb{bottom:241.306667pt;}
.ya8{bottom:245.146667pt;}
.y3d{bottom:247.386667pt;}
.y6f{bottom:252.026667pt;}
.y19{bottom:252.986667pt;}
.yf0{bottom:255.386667pt;}
.y85{bottom:260.026667pt;}
.yca{bottom:260.666667pt;}
.ya7{bottom:264.666667pt;}
.y3c{bottom:266.746667pt;}
.y6e{bottom:271.386667pt;}
.y18{bottom:272.346667pt;}
.yf6{bottom:274.746667pt;}
.y84{bottom:279.386667pt;}
.ye0{bottom:279.546667pt;}
.yc9{bottom:280.026667pt;}
.yef{bottom:282.746667pt;}
.ya6{bottom:284.026667pt;}
.y3b{bottom:286.266667pt;}
.y6d{bottom:290.746667pt;}
.y17{bottom:291.866667pt;}
.yee{bottom:302.266667pt;}
.y83{bottom:306.746667pt;}
.ydf{bottom:306.906667pt;}
.yc8{bottom:307.386667pt;}
.y6c{bottom:310.266667pt;}
.y16{bottom:311.226667pt;}
.ya5{bottom:311.386667pt;}
.y3a{bottom:313.626667pt;}
.yed{bottom:321.626667pt;}
.y6b{bottom:329.626667pt;}
.yc1{bottom:329.946667pt;}
.y15{bottom:330.586667pt;}
.ya4{bottom:330.746667pt;}
.y82{bottom:334.266667pt;}
.y39{bottom:340.986667pt;}
.y6a{bottom:348.986667pt;}
.y14{bottom:349.946667pt;}
.ya3{bottom:350.266667pt;}
.y81{bottom:353.666667pt;}
.yfe{bottom:357.026667pt;}
.y38{bottom:360.386667pt;}
.y69{bottom:368.386667pt;}
.y13{bottom:369.506667pt;}
.ya2{bottom:369.666667pt;}
.y80{bottom:373.026667pt;}
.yc6{bottom:373.826667pt;}
.yfd{bottom:376.386667pt;}
.y37{bottom:379.746667pt;}
.y68{bottom:387.746667pt;}
.y12{bottom:388.866667pt;}
.y7f{bottom:392.386667pt;}
.yfc{bottom:395.746667pt;}
.ya1{bottom:397.026667pt;}
.y36{bottom:399.266667pt;}
.yde{bottom:400.546667pt;}
.y67{bottom:407.266667pt;}
.y11{bottom:408.226667pt;}
.y7e{bottom:411.746667pt;}
.yec{bottom:415.266667pt;}
.ya0{bottom:416.386667pt;}
.yc5{bottom:417.666667pt;}
.yfb{bottom:423.266667pt;}
.y35{bottom:426.626667pt;}
.y10{bottom:427.586667pt;}
.ydd{bottom:427.906667pt;}
.y7d{bottom:431.266667pt;}
.y66{bottom:434.626667pt;}
.y9f{bottom:435.746667pt;}
.yfa{bottom:442.626667pt;}
.y34{bottom:445.986667pt;}
.yc4{bottom:447.106667pt;}
.ydc{bottom:447.266667pt;}
.y7c{bottom:450.626667pt;}
.y65{bottom:453.986667pt;}
.y9e{bottom:455.266667pt;}
.y33{bottom:465.346667pt;}
.y7b{bottom:469.986667pt;}
.ye{bottom:473.346667pt;}
.y9d{bottom:474.626667pt;}
.yeb{bottom:481.346667pt;}
.y32{bottom:484.706667pt;}
.yf9{bottom:489.346667pt;}
.yb9{bottom:490.946667pt;}
.y9c{bottom:493.986667pt;}
.y7a{bottom:497.346667pt;}
.y64{bottom:500.706667pt;}
.ydb{bottom:502.146667pt;}
.y31{bottom:504.226667pt;}
.yf5{bottom:508.706667pt;}
.yf8{bottom:516.706667pt;}
.yea{bottom:520.226667pt;}
.ybd{bottom:520.386667pt;}
.y9b{bottom:521.346667pt;}
.yda{bottom:521.506667pt;}
.y30{bottom:523.586667pt;}
.y79{bottom:524.706667pt;}
.y63{bottom:528.226667pt;}
.yf7{bottom:536.253333pt;}
.y2f{bottom:542.973333pt;}
.y78{bottom:544.253333pt;}
.ye9{bottom:547.613333pt;}
.y9a{bottom:548.733333pt;}
.yd9{bottom:548.893333pt;}
.y62{bottom:555.613333pt;}
.y2e{bottom:562.333333pt;}
.ybc{bottom:564.413333pt;}
.ye8{bottom:566.973333pt;}
.yd{bottom:568.093333pt;}
.y99{bottom:568.253333pt;}
.y77{bottom:571.613333pt;}
.yf4{bottom:574.973333pt;}
.yd8{bottom:576.253333pt;}
.y61{bottom:582.973333pt;}
.y98{bottom:587.613333pt;}
.y2d{bottom:589.853333pt;}
.y76{bottom:590.973333pt;}
.y53{bottom:594.333333pt;}
.yd7{bottom:595.773333pt;}
.y97{bottom:606.973333pt;}
.yc{bottom:607.613333pt;}
.ybb{bottom:608.253333pt;}
.y2c{bottom:609.213333pt;}
.y60{bottom:610.333333pt;}
.yf3{bottom:613.853333pt;}
.y52{bottom:621.853333pt;}
.yd6{bottom:624.093333pt;}
.y96{bottom:626.333333pt;}
.y2b{bottom:628.573333pt;}
.yb{bottom:634.973333pt;}
.y5f{bottom:637.853333pt;}
.y51{bottom:641.213333pt;}
.yd5{bottom:643.453333pt;}
.y95{bottom:645.853333pt;}
.y2a{bottom:647.933333pt;}
.yb0{bottom:652.093333pt;}
.y5e{bottom:657.213333pt;}
.y50{bottom:660.573333pt;}
.ya{bottom:662.973333pt;}
.y94{bottom:665.213333pt;}
.y29{bottom:675.293333pt;}
.y5d{bottom:676.573333pt;}
.y93{bottom:684.573333pt;}
.y4f{bottom:687.933333pt;}
.yd4{bottom:691.293333pt;}
.y28{bottom:694.813333pt;}
.y5c{bottom:695.933333pt;}
.y92{bottom:703.933333pt;}
.y4e{bottom:707.293333pt;}
.y27{bottom:714.173333pt;}
.y5b{bottom:715.293333pt;}
.yd3{bottom:718.853333pt;}
.y9{bottom:719.333333pt;}
.ye7{bottom:723.333333pt;}
.y4d{bottom:726.853333pt;}
.y91{bottom:731.333333pt;}
.y26{bottom:733.573333pt;}
.y5a{bottom:734.853333pt;}
.yd2{bottom:738.213333pt;}
.yb7{bottom:739.813333pt;}
.ye6{bottom:742.853333pt;}
.y90{bottom:750.853333pt;}
.y25{bottom:752.933333pt;}
.y4c{bottom:754.213333pt;}
.ye5{bottom:762.213333pt;}
.yd1{bottom:765.573333pt;}
.y8f{bottom:770.213333pt;}
.y4b{bottom:773.573333pt;}
.y24{bottom:780.453333pt;}
.y75{bottom:781.573333pt;}
.yb3{bottom:783.653333pt;}
.yd0{bottom:784.933333pt;}
.y8e{bottom:789.573333pt;}
.y4a{bottom:792.933333pt;}
.y74{bottom:800.933333pt;}
.y8{bottom:805.573333pt;}
.y8d{bottom:808.933333pt;}
.y49{bottom:812.453333pt;}
.y59{bottom:820.453333pt;}
.yae{bottom:827.653333pt;}
.y8c{bottom:828.453333pt;}
.y23{bottom:831.813333pt;}
.y48{bottom:839.813333pt;}
.y8b{bottom:847.813333pt;}
.y58{bottom:859.173333pt;}
.y22{bottom:867.173333pt;}
.yad{bottom:870.213333pt;}
.y21{bottom:886.533333pt;}
.yac{bottom:887.813333pt;}
.y1{bottom:921.760000pt;}
.y1a{bottom:921.920000pt;}
.h13{height:28.800000pt;}
.h8{height:33.277500pt;}
.h12{height:37.479688pt;}
.h3{height:38.441250pt;}
.h11{height:41.543750pt;}
.hd{height:42.866250pt;}
.h4{height:43.031250pt;}
.h15{height:43.200000pt;}
.h16{height:43.232000pt;}
.h9{height:47.621250pt;}
.h5{height:50.712187pt;}
.h7{height:51.374688pt;}
.hb{height:52.785000pt;}
.he{height:54.397500pt;}
.h10{height:57.375000pt;}
.ha{height:57.600000pt;}
.h2{height:58.563750pt;}
.hf{height:68.960000pt;}
.hc{height:69.120000pt;}
.h6{height:81.281250pt;}
.h18{height:160.346667pt;}
.h17{height:160.506667pt;}
.h14{height:174.746667pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w4{width:35.200000pt;}
.w6{width:35.552000pt;}
.w7{width:207.866667pt;}
.w5{width:601.093333pt;}
.w3{width:606.693333pt;}
.w2{width:624.093333pt;}
.w1{width:755.999989pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x5{left:40.320000pt;}
.x3{left:47.200000pt;}
.x1c{left:51.199989pt;}
.x1a{left:56.959989pt;}
.x18{left:62.559989pt;}
.x1b{left:71.999989pt;}
.xa{left:73.920000pt;}
.x1{left:81.631989pt;}
.x2{left:82.752000pt;}
.x8{left:96.031989pt;}
.xd{left:105.631989pt;}
.x14{left:111.551989pt;}
.x19{left:120.031989pt;}
.xe{left:129.631989pt;}
.x12{left:216.506655pt;}
.x9{left:224.826655pt;}
.x11{left:227.706655pt;}
.x4{left:250.786655pt;}
.x10{left:253.666655pt;}
.x16{left:290.786667pt;}
.x13{left:361.186655pt;}
.x15{left:364.706655pt;}
.x17{left:498.653333pt;}
.x7{left:647.013333pt;}
.xf{left:668.133322pt;}
.xb{left:675.013333pt;}
.xc{left:708.159989pt;}
}




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