
    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_46a1c7609384ee748f6257cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7dbb30916f948dc8e19b7df1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_72dbccfe278886cdaf989f11.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_302ff6c4da4f758526d663c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_496ff61cafba531e0afe9654.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_78414ae8bcea5b22ec35f3e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_6e331edfdcb9bbd23d7a5231.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d53c48233453d6730930cdd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_35c0c1bf4d8fb0f03b3bd6ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;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_9a4dd94d7ca2d275a585ae8f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bfa0f33b9df9588ded274471.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_94c2fa9f9e66f791e09c496c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.322800px;}
.lsd{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.229800px;}
.ls3{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.085200px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.059040px;}
.lsb{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.187200px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.737200px;}
.ws3{word-spacing:-19.038240px;}
.ws4{word-spacing:-18.808440px;}
.ws8{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.712000px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-11.119680px;}
._4{margin-left:-4.633200px;}
._2{margin-left:-3.215040px;}
._1{margin-left:-1.347840px;}
._0{width:1.080000px;}
._6{width:2.920320px;}
._5{width:3.939840px;}
._1c{width:5.428800px;}
._1f{width:7.155840px;}
._1a{width:8.352000px;}
._19{width:9.771840px;}
._7{width:10.872000px;}
._8{width:12.384000px;}
._1b{width:13.608000px;}
._20{width:15.336000px;}
._18{width:16.560000px;}
._f{width:19.584000px;}
._10{width:21.024000px;}
._11{width:22.032000px;}
._14{width:23.040000px;}
._16{width:24.048000px;}
._17{width:25.416000px;}
._22{width:26.712000px;}
._21{width:27.720000px;}
._15{width:29.736000px;}
._a{width:30.811680px;}
._9{width:31.968000px;}
._c{width:33.480000px;}
._30{width:35.616000px;}
._31{width:36.792000px;}
._d{width:38.880000px;}
._e{width:40.176000px;}
._23{width:41.472000px;}
._2d{width:43.128000px;}
._1d{width:45.504000px;}
._1e{width:46.656000px;}
._26{width:47.664000px;}
._24{width:48.816000px;}
._25{width:49.875840px;}
._b{width:51.912000px;}
._36{width:53.064000px;}
._2f{width:54.360000px;}
._32{width:55.656000px;}
._29{width:58.248000px;}
._2a{width:59.256000px;}
._34{width:60.408000px;}
._35{width:62.064000px;}
._27{width:65.952000px;}
._28{width:67.320000px;}
._33{width:84.672000px;}
._12{width:85.872000px;}
._13{width:87.120000px;}
._2b{width:113.808000px;}
._2e{width:122.184000px;}
._2c{width:153.051840px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:18.000000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:47.880000px;}
.y55{bottom:62.460000px;}
.y2f{bottom:72.000000px;}
.yf3{bottom:89.820000px;}
.ybd{bottom:91.260000px;}
.y2e{bottom:95.760000px;}
.y8a{bottom:100.440000px;}
.ya6{bottom:106.020000px;}
.yf2{bottom:113.580000px;}
.y52{bottom:114.660000px;}
.ybc{bottom:115.020000px;}
.y9e{bottom:117.000000px;}
.y2d{bottom:122.220000px;}
.y89{bottom:124.200000px;}
.ya5{bottom:129.780000px;}
.y51{bottom:135.900000px;}
.y79{bottom:136.440000px;}
.yf1{bottom:137.340000px;}
.yce{bottom:137.700000px;}
.ybb{bottom:138.780000px;}
.y2c{bottom:146.160000px;}
.y88{bottom:147.960000px;}
.ya4{bottom:153.540000px;}
.y78{bottom:160.200000px;}
.yf0{bottom:161.100000px;}
.ycd{bottom:161.460000px;}
.yba{bottom:162.540000px;}
.y2b{bottom:169.920000px;}
.y87{bottom:171.900000px;}
.ya3{bottom:177.330000px;}
.y50{bottom:178.380000px;}
.y77{bottom:184.170000px;}
.yef{bottom:185.070000px;}
.ycc{bottom:185.430000px;}
.yb9{bottom:186.510000px;}
.y2a{bottom:193.680000px;}
.y86{bottom:195.690000px;}
.y4f{bottom:199.800000px;}
.ya2{bottom:201.270000px;}
.y76{bottom:207.930000px;}
.yee{bottom:208.830000px;}
.ycb{bottom:209.190000px;}
.yb8{bottom:210.270000px;}
.y29{bottom:217.440000px;}
.y85{bottom:219.450000px;}
.ya1{bottom:225.030000px;}
.y4e{bottom:225.360000px;}
.y75{bottom:231.690000px;}
.yed{bottom:232.590000px;}
.yca{bottom:232.950000px;}
.yb7{bottom:234.030000px;}
.y28{bottom:241.410000px;}
.y84{bottom:243.210000px;}
.ya0{bottom:248.790000px;}
.y74{bottom:255.450000px;}
.yec{bottom:256.350000px;}
.yc9{bottom:256.710000px;}
.yb6{bottom:257.790000px;}
.y27{bottom:265.170000px;}
.y83{bottom:267.150000px;}
.y4d{bottom:267.870000px;}
.y9f{bottom:268.230000px;}
.y73{bottom:279.390000px;}
.yeb{bottom:280.290000px;}
.yc8{bottom:280.650000px;}
.yb5{bottom:281.550000px;}
.y26{bottom:288.930000px;}
.y4c{bottom:289.290000px;}
.y82{bottom:290.910000px;}
.y72{bottom:298.830000px;}
.yea{bottom:304.050000px;}
.yc7{bottom:304.410000px;}
.yb4{bottom:305.490000px;}
.y25{bottom:312.690000px;}
.y81{bottom:314.670000px;}
.y4b{bottom:314.850000px;}
.ye9{bottom:327.810000px;}
.yc6{bottom:328.170000px;}
.yb3{bottom:329.250000px;}
.y24{bottom:336.630000px;}
.y80{bottom:338.430000px;}
.y4a{bottom:341.490000px;}
.y9d{bottom:349.410000px;}
.ye8{bottom:351.570000px;}
.yc5{bottom:351.930000px;}
.yb2{bottom:353.010000px;}
.y23{bottom:360.390000px;}
.y7f{bottom:362.190000px;}
.y49{bottom:370.830000px;}
.y9c{bottom:373.350000px;}
.ye7{bottom:375.510000px;}
.yc4{bottom:375.870000px;}
.yb1{bottom:376.770000px;}
.y22{bottom:384.150000px;}
.y7e{bottom:386.130000px;}
.y9b{bottom:397.110000px;}
.ye6{bottom:399.270000px;}
.yc3{bottom:399.630000px;}
.y48{bottom:399.990000px;}
.yb0{bottom:400.710000px;}
.y21{bottom:407.910000px;}
.y7d{bottom:409.890000px;}
.y9a{bottom:420.915000px;}
.ye5{bottom:423.075000px;}
.yc2{bottom:423.435000px;}
.yaf{bottom:424.515000px;}
.y47{bottom:429.330000px;}
.y20{bottom:431.850000px;}
.y7c{bottom:433.695000px;}
.y99{bottom:444.675000px;}
.ye4{bottom:446.835000px;}
.yc1{bottom:447.195000px;}
.yae{bottom:448.275000px;}
.y1f{bottom:455.610000px;}
.y7b{bottom:457.455000px;}
.y46{bottom:458.670000px;}
.y98{bottom:468.615000px;}
.ye3{bottom:470.775000px;}
.yc0{bottom:471.135000px;}
.yad{bottom:471.675000px;}
.ybe{bottom:472.035000px;}
.y7a{bottom:477.075000px;}
.y1e{bottom:479.415000px;}
.y45{bottom:481.395000px;}
.y97{bottom:492.375000px;}
.ybf{bottom:494.535000px;}
.yac{bottom:495.975000px;}
.y1d{bottom:503.175000px;}
.y96{bottom:516.135000px;}
.ye2{bottom:518.295000px;}
.y71{bottom:518.655000px;}
.y1c{bottom:527.115000px;}
.y95{bottom:539.895000px;}
.ye1{bottom:542.055000px;}
.y70{bottom:542.415000px;}
.y1b{bottom:550.875000px;}
.y94{bottom:563.835000px;}
.ye0{bottom:565.995000px;}
.y6f{bottom:566.355000px;}
.y1a{bottom:574.635000px;}
.y93{bottom:587.595000px;}
.ydf{bottom:589.755000px;}
.y6e{bottom:590.115000px;}
.y19{bottom:598.395000px;}
.y92{bottom:611.355000px;}
.yde{bottom:613.515000px;}
.y6d{bottom:613.875000px;}
.y18{bottom:622.335000px;}
.y91{bottom:635.115000px;}
.ydd{bottom:637.275000px;}
.y6c{bottom:637.635000px;}
.y17{bottom:646.095000px;}
.y44{bottom:654.555000px;}
.y90{bottom:659.085000px;}
.ydc{bottom:661.065000px;}
.y6b{bottom:661.425000px;}
.y16{bottom:669.855000px;}
.y8f{bottom:678.525000px;}
.y43{bottom:683.715000px;}
.ydb{bottom:685.005000px;}
.y6a{bottom:685.365000px;}
.y15{bottom:693.645000px;}
.yda{bottom:708.765000px;}
.y69{bottom:709.125000px;}
.y42{bottom:711.645000px;}
.y14{bottom:717.405000px;}
.yd9{bottom:732.525000px;}
.y68{bottom:732.885000px;}
.y41{bottom:735.405000px;}
.y13{bottom:741.345000px;}
.yd8{bottom:756.285000px;}
.y67{bottom:756.645000px;}
.y40{bottom:759.885000px;}
.y12{bottom:765.105000px;}
.yd7{bottom:780.225000px;}
.y66{bottom:780.585000px;}
.y3f{bottom:784.005000px;}
.y11{bottom:788.865000px;}
.yd6{bottom:803.985000px;}
.y65{bottom:804.345000px;}
.y3e{bottom:807.765000px;}
.y10{bottom:812.625000px;}
.yd5{bottom:827.745000px;}
.y64{bottom:828.105000px;}
.y3d{bottom:832.965000px;}
.yf{bottom:836.565000px;}
.yd4{bottom:851.505000px;}
.y63{bottom:851.865000px;}
.ye{bottom:860.325000px;}
.y3c{bottom:860.685000px;}
.yd3{bottom:875.445000px;}
.y62{bottom:875.805000px;}
.yd{bottom:884.085000px;}
.y3b{bottom:888.225000px;}
.yd2{bottom:899.205000px;}
.y61{bottom:899.565000px;}
.yc{bottom:907.845000px;}
.y3a{bottom:915.765000px;}
.yd1{bottom:923.010000px;}
.y60{bottom:923.370000px;}
.yb{bottom:931.830000px;}
.y39{bottom:943.710000px;}
.yd0{bottom:946.770000px;}
.yab{bottom:947.130000px;}
.y5f{bottom:953.070000px;}
.ya{bottom:955.590000px;}
.y5e{bottom:970.710000px;}
.yaa{bottom:971.070000px;}
.y38{bottom:974.670000px;}
.y9{bottom:979.350000px;}
.ycf{bottom:994.470000px;}
.ya9{bottom:994.830000px;}
.y5d{bottom:1000.770000px;}
.y8{bottom:1003.110000px;}
.y37{bottom:1007.070000px;}
.y5c{bottom:1018.230000px;}
.ya8{bottom:1018.590000px;}
.y7{bottom:1027.050000px;}
.y36{bottom:1040.010000px;}
.y5b{bottom:1041.990000px;}
.ya7{bottom:1042.350000px;}
.y6{bottom:1050.810000px;}
.y5a{bottom:1065.930000px;}
.y8e{bottom:1066.290000px;}
.y35{bottom:1071.330000px;}
.y5{bottom:1074.570000px;}
.y59{bottom:1089.690000px;}
.y8d{bottom:1090.050000px;}
.y34{bottom:1096.890000px;}
.y4{bottom:1098.330000px;}
.y58{bottom:1113.450000px;}
.y8c{bottom:1113.810000px;}
.y3{bottom:1122.270000px;}
.y33{bottom:1122.630000px;}
.y57{bottom:1137.210000px;}
.y8b{bottom:1137.570000px;}
.y2{bottom:1146.030000px;}
.y32{bottom:1147.470000px;}
.y56{bottom:1161.540000px;}
.y31{bottom:1169.460000px;}
.y1{bottom:1169.820000px;}
.y54{bottom:1184.580000px;}
.y53{bottom:1198.980000px;}
.h12{height:47.321367px;}
.he{height:48.616875px;}
.hc{height:63.632461px;}
.h4{height:65.884219px;}
.h13{height:70.628906px;}
.h10{height:70.664062px;}
.h11{height:71.081367px;}
.hf{height:71.324297px;}
.h2{height:72.562500px;}
.h5{height:73.722656px;}
.ha{height:82.676953px;}
.h3{height:84.898125px;}
.h6{height:86.255508px;}
.h9{height:93.983203px;}
.hb{height:95.245664px;}
.h8{height:108.843750px;}
.h7{height:110.583984px;}
.hd{height:1262.879970px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w5{width:892.980000px;}
.w3{width:892.980015px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059957px;}
.w0{width:894.059970px;}
.x0{left:0.000000px;}
.x12{left:126.035987px;}
.x1e{left:127.655987px;}
.x2{left:137.915987px;}
.x1a{left:143.135987px;}
.x20{left:152.129987px;}
.x13{left:158.069987px;}
.x21{left:159.869987px;}
.x18{left:169.049987px;}
.x1d{left:170.129987px;}
.xb{left:179.309987px;}
.x15{left:191.729987px;}
.xa{left:197.309987px;}
.x4{left:198.389987px;}
.x6{left:212.069987px;}
.xc{left:219.449987px;}
.x2a{left:249.329987px;}
.x2b{left:250.409987px;}
.x10{left:257.609987px;}
.xf{left:281.774987px;}
.x9{left:294.374987px;}
.x8{left:298.514987px;}
.x7{left:345.854987px;}
.x1c{left:348.014987px;}
.x5{left:350.894987px;}
.xd{left:356.654987px;}
.x14{left:396.614987px;}
.x1b{left:398.594987px;}
.x3{left:409.034987px;}
.x19{left:419.114987px;}
.x28{left:435.134987px;}
.x16{left:443.414987px;}
.x1{left:456.224987px;}
.x1f{left:465.554987px;}
.x11{left:472.244987px;}
.x17{left:478.514987px;}
.x22{left:499.964987px;}
.x25{left:529.124987px;}
.x24{left:535.424987px;}
.xe{left:543.884987px;}
.x26{left:550.724987px;}
.x2c{left:664.664987px;}
.x27{left:730.589987px;}
.x29{left:833.729987px;}
.x23{left:851.009987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.286933pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.204267pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.052480pt;}
.lsb{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.433067pt;}
.ws3{word-spacing:-16.922880pt;}
.ws4{word-spacing:-16.718613pt;}
.ws8{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-9.884160pt;}
._4{margin-left:-4.118400pt;}
._2{margin-left:-2.857813pt;}
._1{margin-left:-1.198080pt;}
._0{width:0.960000pt;}
._6{width:2.595840pt;}
._5{width:3.502080pt;}
._1c{width:4.825600pt;}
._1f{width:6.360747pt;}
._1a{width:7.424000pt;}
._19{width:8.686080pt;}
._7{width:9.664000pt;}
._8{width:11.008000pt;}
._1b{width:12.096000pt;}
._20{width:13.632000pt;}
._18{width:14.720000pt;}
._f{width:17.408000pt;}
._10{width:18.688000pt;}
._11{width:19.584000pt;}
._14{width:20.480000pt;}
._16{width:21.376000pt;}
._17{width:22.592000pt;}
._22{width:23.744000pt;}
._21{width:24.640000pt;}
._15{width:26.432000pt;}
._a{width:27.388160pt;}
._9{width:28.416000pt;}
._c{width:29.760000pt;}
._30{width:31.658667pt;}
._31{width:32.704000pt;}
._d{width:34.560000pt;}
._e{width:35.712000pt;}
._23{width:36.864000pt;}
._2d{width:38.336000pt;}
._1d{width:40.448000pt;}
._1e{width:41.472000pt;}
._26{width:42.368000pt;}
._24{width:43.392000pt;}
._25{width:44.334080pt;}
._b{width:46.144000pt;}
._36{width:47.168000pt;}
._2f{width:48.320000pt;}
._32{width:49.472000pt;}
._29{width:51.776000pt;}
._2a{width:52.672000pt;}
._34{width:53.696000pt;}
._35{width:55.168000pt;}
._27{width:58.624000pt;}
._28{width:59.840000pt;}
._33{width:75.264000pt;}
._12{width:76.330667pt;}
._13{width:77.440000pt;}
._2b{width:101.162667pt;}
._2e{width:108.608000pt;}
._2c{width:136.046080pt;}
.fs6{font-size:16.000000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:42.560000pt;}
.y55{bottom:55.520000pt;}
.y2f{bottom:64.000000pt;}
.yf3{bottom:79.840000pt;}
.ybd{bottom:81.120000pt;}
.y2e{bottom:85.120000pt;}
.y8a{bottom:89.280000pt;}
.ya6{bottom:94.240000pt;}
.yf2{bottom:100.960000pt;}
.y52{bottom:101.920000pt;}
.ybc{bottom:102.240000pt;}
.y9e{bottom:104.000000pt;}
.y2d{bottom:108.640000pt;}
.y89{bottom:110.400000pt;}
.ya5{bottom:115.360000pt;}
.y51{bottom:120.800000pt;}
.y79{bottom:121.280000pt;}
.yf1{bottom:122.080000pt;}
.yce{bottom:122.400000pt;}
.ybb{bottom:123.360000pt;}
.y2c{bottom:129.920000pt;}
.y88{bottom:131.520000pt;}
.ya4{bottom:136.480000pt;}
.y78{bottom:142.400000pt;}
.yf0{bottom:143.200000pt;}
.ycd{bottom:143.520000pt;}
.yba{bottom:144.480000pt;}
.y2b{bottom:151.040000pt;}
.y87{bottom:152.800000pt;}
.ya3{bottom:157.626667pt;}
.y50{bottom:158.560000pt;}
.y77{bottom:163.706667pt;}
.yef{bottom:164.506667pt;}
.ycc{bottom:164.826667pt;}
.yb9{bottom:165.786667pt;}
.y2a{bottom:172.160000pt;}
.y86{bottom:173.946667pt;}
.y4f{bottom:177.600000pt;}
.ya2{bottom:178.906667pt;}
.y76{bottom:184.826667pt;}
.yee{bottom:185.626667pt;}
.ycb{bottom:185.946667pt;}
.yb8{bottom:186.906667pt;}
.y29{bottom:193.280000pt;}
.y85{bottom:195.066667pt;}
.ya1{bottom:200.026667pt;}
.y4e{bottom:200.320000pt;}
.y75{bottom:205.946667pt;}
.yed{bottom:206.746667pt;}
.yca{bottom:207.066667pt;}
.yb7{bottom:208.026667pt;}
.y28{bottom:214.586667pt;}
.y84{bottom:216.186667pt;}
.ya0{bottom:221.146667pt;}
.y74{bottom:227.066667pt;}
.yec{bottom:227.866667pt;}
.yc9{bottom:228.186667pt;}
.yb6{bottom:229.146667pt;}
.y27{bottom:235.706667pt;}
.y83{bottom:237.466667pt;}
.y4d{bottom:238.106667pt;}
.y9f{bottom:238.426667pt;}
.y73{bottom:248.346667pt;}
.yeb{bottom:249.146667pt;}
.yc8{bottom:249.466667pt;}
.yb5{bottom:250.266667pt;}
.y26{bottom:256.826667pt;}
.y4c{bottom:257.146667pt;}
.y82{bottom:258.586667pt;}
.y72{bottom:265.626667pt;}
.yea{bottom:270.266667pt;}
.yc7{bottom:270.586667pt;}
.yb4{bottom:271.546667pt;}
.y25{bottom:277.946667pt;}
.y81{bottom:279.706667pt;}
.y4b{bottom:279.866667pt;}
.ye9{bottom:291.386667pt;}
.yc6{bottom:291.706667pt;}
.yb3{bottom:292.666667pt;}
.y24{bottom:299.226667pt;}
.y80{bottom:300.826667pt;}
.y4a{bottom:303.546667pt;}
.y9d{bottom:310.586667pt;}
.ye8{bottom:312.506667pt;}
.yc5{bottom:312.826667pt;}
.yb2{bottom:313.786667pt;}
.y23{bottom:320.346667pt;}
.y7f{bottom:321.946667pt;}
.y49{bottom:329.626667pt;}
.y9c{bottom:331.866667pt;}
.ye7{bottom:333.786667pt;}
.yc4{bottom:334.106667pt;}
.yb1{bottom:334.906667pt;}
.y22{bottom:341.466667pt;}
.y7e{bottom:343.226667pt;}
.y9b{bottom:352.986667pt;}
.ye6{bottom:354.906667pt;}
.yc3{bottom:355.226667pt;}
.y48{bottom:355.546667pt;}
.yb0{bottom:356.186667pt;}
.y21{bottom:362.586667pt;}
.y7d{bottom:364.346667pt;}
.y9a{bottom:374.146667pt;}
.ye5{bottom:376.066667pt;}
.yc2{bottom:376.386667pt;}
.yaf{bottom:377.346667pt;}
.y47{bottom:381.626667pt;}
.y20{bottom:383.866667pt;}
.y7c{bottom:385.506667pt;}
.y99{bottom:395.266667pt;}
.ye4{bottom:397.186667pt;}
.yc1{bottom:397.506667pt;}
.yae{bottom:398.466667pt;}
.y1f{bottom:404.986667pt;}
.y7b{bottom:406.626667pt;}
.y46{bottom:407.706667pt;}
.y98{bottom:416.546667pt;}
.ye3{bottom:418.466667pt;}
.yc0{bottom:418.786667pt;}
.yad{bottom:419.266667pt;}
.ybe{bottom:419.586667pt;}
.y7a{bottom:424.066667pt;}
.y1e{bottom:426.146667pt;}
.y45{bottom:427.906667pt;}
.y97{bottom:437.666667pt;}
.ybf{bottom:439.586667pt;}
.yac{bottom:440.866667pt;}
.y1d{bottom:447.266667pt;}
.y96{bottom:458.786667pt;}
.ye2{bottom:460.706667pt;}
.y71{bottom:461.026667pt;}
.y1c{bottom:468.546667pt;}
.y95{bottom:479.906667pt;}
.ye1{bottom:481.826667pt;}
.y70{bottom:482.146667pt;}
.y1b{bottom:489.666667pt;}
.y94{bottom:501.186667pt;}
.ye0{bottom:503.106667pt;}
.y6f{bottom:503.426667pt;}
.y1a{bottom:510.786667pt;}
.y93{bottom:522.306667pt;}
.ydf{bottom:524.226667pt;}
.y6e{bottom:524.546667pt;}
.y19{bottom:531.906667pt;}
.y92{bottom:543.426667pt;}
.yde{bottom:545.346667pt;}
.y6d{bottom:545.666667pt;}
.y18{bottom:553.186667pt;}
.y91{bottom:564.546667pt;}
.ydd{bottom:566.466667pt;}
.y6c{bottom:566.786667pt;}
.y17{bottom:574.306667pt;}
.y44{bottom:581.826667pt;}
.y90{bottom:585.853333pt;}
.ydc{bottom:587.613333pt;}
.y6b{bottom:587.933333pt;}
.y16{bottom:595.426667pt;}
.y8f{bottom:603.133333pt;}
.y43{bottom:607.746667pt;}
.ydb{bottom:608.893333pt;}
.y6a{bottom:609.213333pt;}
.y15{bottom:616.573333pt;}
.yda{bottom:630.013333pt;}
.y69{bottom:630.333333pt;}
.y42{bottom:632.573333pt;}
.y14{bottom:637.693333pt;}
.yd9{bottom:651.133333pt;}
.y68{bottom:651.453333pt;}
.y41{bottom:653.693333pt;}
.y13{bottom:658.973333pt;}
.yd8{bottom:672.253333pt;}
.y67{bottom:672.573333pt;}
.y40{bottom:675.453333pt;}
.y12{bottom:680.093333pt;}
.yd7{bottom:693.533333pt;}
.y66{bottom:693.853333pt;}
.y3f{bottom:696.893333pt;}
.y11{bottom:701.213333pt;}
.yd6{bottom:714.653333pt;}
.y65{bottom:714.973333pt;}
.y3e{bottom:718.013333pt;}
.y10{bottom:722.333333pt;}
.yd5{bottom:735.773333pt;}
.y64{bottom:736.093333pt;}
.y3d{bottom:740.413333pt;}
.yf{bottom:743.613333pt;}
.yd4{bottom:756.893333pt;}
.y63{bottom:757.213333pt;}
.ye{bottom:764.733333pt;}
.y3c{bottom:765.053333pt;}
.yd3{bottom:778.173333pt;}
.y62{bottom:778.493333pt;}
.yd{bottom:785.853333pt;}
.y3b{bottom:789.533333pt;}
.yd2{bottom:799.293333pt;}
.y61{bottom:799.613333pt;}
.yc{bottom:806.973333pt;}
.y3a{bottom:814.013333pt;}
.yd1{bottom:820.453333pt;}
.y60{bottom:820.773333pt;}
.yb{bottom:828.293333pt;}
.y39{bottom:838.853333pt;}
.yd0{bottom:841.573333pt;}
.yab{bottom:841.893333pt;}
.y5f{bottom:847.173333pt;}
.ya{bottom:849.413333pt;}
.y5e{bottom:862.853333pt;}
.yaa{bottom:863.173333pt;}
.y38{bottom:866.373333pt;}
.y9{bottom:870.533333pt;}
.ycf{bottom:883.973333pt;}
.ya9{bottom:884.293333pt;}
.y5d{bottom:889.573333pt;}
.y8{bottom:891.653333pt;}
.y37{bottom:895.173333pt;}
.y5c{bottom:905.093333pt;}
.ya8{bottom:905.413333pt;}
.y7{bottom:912.933333pt;}
.y36{bottom:924.453333pt;}
.y5b{bottom:926.213333pt;}
.ya7{bottom:926.533333pt;}
.y6{bottom:934.053333pt;}
.y5a{bottom:947.493333pt;}
.y8e{bottom:947.813333pt;}
.y35{bottom:952.293333pt;}
.y5{bottom:955.173333pt;}
.y59{bottom:968.613333pt;}
.y8d{bottom:968.933333pt;}
.y34{bottom:975.013333pt;}
.y4{bottom:976.293333pt;}
.y58{bottom:989.733333pt;}
.y8c{bottom:990.053333pt;}
.y3{bottom:997.573333pt;}
.y33{bottom:997.893333pt;}
.y57{bottom:1010.853333pt;}
.y8b{bottom:1011.173333pt;}
.y2{bottom:1018.693333pt;}
.y32{bottom:1019.973333pt;}
.y56{bottom:1032.480000pt;}
.y31{bottom:1039.520000pt;}
.y1{bottom:1039.840000pt;}
.y54{bottom:1052.960000pt;}
.y53{bottom:1065.760000pt;}
.h12{height:42.063437pt;}
.he{height:43.215000pt;}
.hc{height:56.562187pt;}
.h4{height:58.563750pt;}
.h13{height:62.781250pt;}
.h10{height:62.812500pt;}
.h11{height:63.183438pt;}
.hf{height:63.399375pt;}
.h2{height:64.500000pt;}
.h5{height:65.531250pt;}
.ha{height:73.490625pt;}
.h3{height:75.465000pt;}
.h6{height:76.671562pt;}
.h9{height:83.540625pt;}
.hb{height:84.662813pt;}
.h8{height:96.750000pt;}
.h7{height:98.296875pt;}
.hd{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w5{width:793.760000pt;}
.w3{width:793.760013pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719961pt;}
.w0{width:794.719973pt;}
.x0{left:0.000000pt;}
.x12{left:112.031988pt;}
.x1e{left:113.471988pt;}
.x2{left:122.591988pt;}
.x1a{left:127.231988pt;}
.x20{left:135.226655pt;}
.x13{left:140.506655pt;}
.x21{left:142.106655pt;}
.x18{left:150.266655pt;}
.x1d{left:151.226655pt;}
.xb{left:159.386655pt;}
.x15{left:170.426655pt;}
.xa{left:175.386655pt;}
.x4{left:176.346655pt;}
.x6{left:188.506655pt;}
.xc{left:195.066655pt;}
.x2a{left:221.626655pt;}
.x2b{left:222.586655pt;}
.x10{left:228.986655pt;}
.xf{left:250.466655pt;}
.x9{left:261.666655pt;}
.x8{left:265.346655pt;}
.x7{left:307.426655pt;}
.x1c{left:309.346655pt;}
.x5{left:311.906655pt;}
.xd{left:317.026655pt;}
.x14{left:352.546655pt;}
.x1b{left:354.306655pt;}
.x3{left:363.586655pt;}
.x19{left:372.546655pt;}
.x28{left:386.786655pt;}
.x16{left:394.146655pt;}
.x1{left:405.533321pt;}
.x1f{left:413.826655pt;}
.x11{left:419.773321pt;}
.x17{left:425.346655pt;}
.x22{left:444.413322pt;}
.x25{left:470.333322pt;}
.x24{left:475.933322pt;}
.xe{left:483.453321pt;}
.x26{left:489.533322pt;}
.x2c{left:590.813322pt;}
.x27{left:649.413322pt;}
.x29{left:741.093322pt;}
.x23{left:756.453322pt;}
}




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