
    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_e81e0868f1fb60e027160f95.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_46adab5a4f99e49439b368cb.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d5a24612dad67ba4d34691d7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0b665591915d8414714f957a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_c5827e7eecb70eea1450cf10.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bd014696a0b43d4dc550a526.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_130301694ab792f9947e2b7d.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_baede53bd9043bcf7f0df1be.woff')format("woff");}.ff9{font-family:ff9;line-height:0.937988;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_f3f8f8aa131ede440c366eba.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c83aad8f13fb0fc5e2b04f13.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1b{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.018720px;}
.lsa{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.070560px;}
.ls3{letter-spacing:0.106560px;}
.ls1a{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206640px;}
.ls8{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.828000px;}
.ls6{letter-spacing:2.340000px;}
.ls1f{letter-spacing:3.780000px;}
.ls1e{letter-spacing:5.220000px;}
.ls19{letter-spacing:5.940000px;}
.ls17{letter-spacing:42.402720px;}
.ls10{letter-spacing:43.842720px;}
.ls16{letter-spacing:61.122720px;}
.ls12{letter-spacing:71.202720px;}
.ls20{letter-spacing:74.441280px;}
.ls18{letter-spacing:79.122720px;}
.lse{letter-spacing:81.306720px;}
.ls5{letter-spacing:82.746720px;}
.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;}
}
.ws4{word-spacing:-23.921280px;}
.ws10{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199920px;}
.ws1{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.ws2{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.482000px;}
.wse{word-spacing:-9.737280px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.008000px;}
._1{width:1.380000px;}
._12{width:2.395200px;}
._7{width:3.427200px;}
._b{width:4.628880px;}
._6{width:5.766720px;}
._5{width:7.046160px;}
._c{width:8.179680px;}
._11{width:10.093920px;}
._13{width:11.682480px;}
._14{width:13.505760px;}
._a{width:16.129680px;}
._e{width:17.205360px;}
._8{width:19.664880px;}
._9{width:21.774240px;}
._17{width:23.409840px;}
._18{width:25.242720px;}
._15{width:26.572080px;}
._d{width:27.782880px;}
._f{width:28.918320px;}
._10{width:29.985120px;}
._16{width:61.313760px;}
._4{width:393.420000px;}
._3{width:833.400000px;}
._2{width:1590.936000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.916000px;}
.y2a{bottom:3.240000px;}
.y29{bottom:20.520000px;}
.y28{bottom:37.620000px;}
.ye{bottom:43.740000px;}
.y27{bottom:54.900000px;}
.yc{bottom:68.580000px;}
.y26{bottom:81.180000px;}
.ya{bottom:94.896000px;}
.y25{bottom:98.460000px;}
.y24{bottom:115.740000px;}
.y23{bottom:133.020000px;}
.ycc{bottom:135.936000px;}
.ya8{bottom:138.636000px;}
.y6f{bottom:146.736000px;}
.y35{bottom:148.356000px;}
.y22{bottom:150.120000px;}
.ycb{bottom:155.730000px;}
.ya7{bottom:158.430000px;}
.y6e{bottom:164.010000px;}
.y21{bottom:167.400000px;}
.y34{bottom:168.150000px;}
.yca{bottom:175.530000px;}
.ya6{bottom:178.230000px;}
.y6d{bottom:181.290000px;}
.y20{bottom:184.680000px;}
.y33{bottom:187.950000px;}
.yc9{bottom:195.330000px;}
.ya5{bottom:198.030000px;}
.y6c{bottom:198.570000px;}
.y1f{bottom:201.960000px;}
.y32{bottom:207.750000px;}
.yc8{bottom:215.310000px;}
.y6b{bottom:215.670000px;}
.ya4{bottom:217.830000px;}
.y1e{bottom:219.270000px;}
.y31{bottom:227.550000px;}
.y6a{bottom:232.950000px;}
.yc7{bottom:235.110000px;}
.y1d{bottom:236.550000px;}
.ya3{bottom:237.810000px;}
.y30{bottom:247.530000px;}
.y69{bottom:250.230000px;}
.y1c{bottom:253.650000px;}
.yc6{bottom:254.910000px;}
.ya2{bottom:257.610000px;}
.y2f{bottom:267.330000px;}
.y68{bottom:267.510000px;}
.y1b{bottom:270.930000px;}
.yc5{bottom:274.710000px;}
.ya1{bottom:277.410000px;}
.y67{bottom:284.790000px;}
.y2e{bottom:287.130000px;}
.yc4{bottom:294.510000px;}
.ya0{bottom:297.210000px;}
.y66{bottom:302.070000px;}
.y2d{bottom:306.930000px;}
.y9f{bottom:314.490000px;}
.y65{bottom:319.170000px;}
.yf2{bottom:319.710000px;}
.y9e{bottom:331.770000px;}
.yc3{bottom:334.290000px;}
.y64{bottom:336.495000px;}
.y2c{bottom:341.895000px;}
.y9d{bottom:349.095000px;}
.y63{bottom:353.775000px;}
.yc2{bottom:354.135000px;}
.yf1{bottom:356.295000px;}
.y9c{bottom:366.375000px;}
.y2b{bottom:370.155000px;}
.y62{bottom:371.055000px;}
.yc1{bottom:373.935000px;}
.yf0{bottom:379.335000px;}
.y9b{bottom:383.475000px;}
.y61{bottom:388.335000px;}
.yc0{bottom:393.735000px;}
.y1a{bottom:394.815000px;}
.y9a{bottom:400.755000px;}
.yef{bottom:402.555000px;}
.y60{bottom:405.615000px;}
.y99{bottom:418.035000px;}
.y5f{bottom:422.715000px;}
.yee{bottom:425.775000px;}
.ybf{bottom:428.655000px;}
.y98{bottom:435.315000px;}
.y5e{bottom:439.995000px;}
.ybe{bottom:448.455000px;}
.yed{bottom:448.995000px;}
.y97{bottom:452.595000px;}
.y5d{bottom:457.275000px;}
.ybd{bottom:468.255000px;}
.y96{bottom:469.875000px;}
.yec{bottom:472.035000px;}
.y5c{bottom:474.555000px;}
.y95{bottom:486.975000px;}
.ybc{bottom:488.055000px;}
.y5b{bottom:491.835000px;}
.yeb{bottom:495.255000px;}
.y94{bottom:504.255000px;}
.ybb{bottom:508.035000px;}
.y5a{bottom:508.935000px;}
.yea{bottom:518.475000px;}
.y93{bottom:521.535000px;}
.yba{bottom:529.635000px;}
.y59{bottom:530.715000px;}
.y92{bottom:538.815000px;}
.ye9{bottom:541.515000px;}
.y91{bottom:556.095000px;}
.y58{bottom:556.995000px;}
.yb9{bottom:567.615000px;}
.ye8{bottom:571.935000px;}
.y90{bottom:573.375000px;}
.y57{bottom:574.275000px;}
.yb8{bottom:587.415000px;}
.y8f{bottom:590.475000px;}
.y56{bottom:591.555000px;}
.ye7{bottom:591.915000px;}
.yb7{bottom:607.245000px;}
.y8e{bottom:607.785000px;}
.y55{bottom:608.865000px;}
.ye6{bottom:611.745000px;}
.y8d{bottom:625.065000px;}
.y54{bottom:625.965000px;}
.yb6{bottom:629.025000px;}
.ye5{bottom:631.545000px;}
.y8c{bottom:642.345000px;}
.y53{bottom:643.245000px;}
.ye4{bottom:651.345000px;}
.y8b{bottom:659.625000px;}
.y52{bottom:660.525000px;}
.yb5{bottom:666.825000px;}
.ye3{bottom:671.145000px;}
.y8a{bottom:676.725000px;}
.y51{bottom:677.805000px;}
.yb4{bottom:686.625000px;}
.ye2{bottom:691.125000px;}
.y89{bottom:694.005000px;}
.y19{bottom:694.365000px;}
.y50{bottom:695.085000px;}
.yb3{bottom:706.425000px;}
.ye1{bottom:710.925000px;}
.y88{bottom:711.285000px;}
.y18{bottom:711.465000px;}
.y4f{bottom:712.365000px;}
.yb2{bottom:726.405000px;}
.y17{bottom:728.025000px;}
.y87{bottom:728.565000px;}
.y4e{bottom:729.465000px;}
.ye0{bottom:730.725000px;}
.y86{bottom:745.845000px;}
.y4d{bottom:746.745000px;}
.yb1{bottom:748.185000px;}
.ydf{bottom:750.525000px;}
.y16{bottom:751.605000px;}
.y85{bottom:763.125000px;}
.y4c{bottom:764.025000px;}
.y15{bottom:768.885000px;}
.yde{bottom:770.325000px;}
.yb0{bottom:774.465000px;}
.y84{bottom:780.225000px;}
.y4b{bottom:781.305000px;}
.y14{bottom:785.985000px;}
.ydd{bottom:790.305000px;}
.yaf{bottom:791.565000px;}
.y83{bottom:797.505000px;}
.y13{bottom:805.425000px;}
.yae{bottom:808.845000px;}
.ydc{bottom:810.105000px;}
.y82{bottom:814.785000px;}
.y4a{bottom:816.045000px;}
.ydb{bottom:829.905000px;}
.y81{bottom:832.065000px;}
.y12{bottom:832.965000px;}
.yad{bottom:835.125000px;}
.y49{bottom:845.025000px;}
.y80{bottom:849.345000px;}
.yda{bottom:849.705000px;}
.yac{bottom:852.405000px;}
.y11{bottom:860.505000px;}
.y48{bottom:864.825000px;}
.y7f{bottom:866.625000px;}
.yd9{bottom:869.505000px;}
.yab{bottom:878.190000px;}
.y7e{bottom:883.770000px;}
.y47{bottom:884.670000px;}
.y10{bottom:888.270000px;}
.yd8{bottom:889.530000px;}
.y7d{bottom:901.050000px;}
.y46{bottom:904.470000px;}
.yaa{bottom:907.170000px;}
.yd7{bottom:909.330000px;}
.yf{bottom:915.810000px;}
.y7c{bottom:918.330000px;}
.y45{bottom:924.270000px;}
.ya9{bottom:924.450000px;}
.yd6{bottom:929.130000px;}
.y7b{bottom:935.610000px;}
.y9{bottom:941.370000px;}
.y44{bottom:944.250000px;}
.yd5{bottom:948.930000px;}
.y7a{bottom:952.890000px;}
.y8{bottom:958.650000px;}
.y43{bottom:964.050000px;}
.yd4{bottom:968.730000px;}
.y79{bottom:970.170000px;}
.y7{bottom:972.690000px;}
.y42{bottom:983.850000px;}
.y78{bottom:987.270000px;}
.yd3{bottom:988.710000px;}
.y41{bottom:1003.650000px;}
.y77{bottom:1004.550000px;}
.yd2{bottom:1008.510000px;}
.y76{bottom:1021.830000px;}
.y40{bottom:1023.450000px;}
.y6{bottom:1027.230000px;}
.yd1{bottom:1028.310000px;}
.y75{bottom:1039.110000px;}
.y3f{bottom:1043.430000px;}
.yd0{bottom:1048.110000px;}
.y5{bottom:1052.070000px;}
.y74{bottom:1056.390000px;}
.y3e{bottom:1063.230000px;}
.ycf{bottom:1067.910000px;}
.y4{bottom:1073.130000px;}
.y73{bottom:1073.490000px;}
.y3d{bottom:1083.030000px;}
.yce{bottom:1087.890000px;}
.y72{bottom:1090.770000px;}
.y3{bottom:1093.830000px;}
.y3c{bottom:1102.830000px;}
.ycd{bottom:1107.690000px;}
.y71{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.y3b{bottom:1122.630000px;}
.y70{bottom:1125.330000px;}
.y1{bottom:1131.270000px;}
.y3a{bottom:1142.640000px;}
.y39{bottom:1166.400000px;}
.y38{bottom:1180.440000px;}
.y37{bottom:1201.140000px;}
.y36{bottom:1227.420000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.hb{height:34.884492px;}
.h7{height:39.049805px;}
.h5{height:39.471680px;}
.h4{height:43.215117px;}
.he{height:43.506914px;}
.hd{height:43.681992px;}
.h10{height:44.265586px;}
.h2{height:44.294766px;}
.hf{height:48.995859px;}
.ha{height:49.698281px;}
.h3{height:53.367188px;}
.h11{height:65.884219px;}
.h9{height:70.978359px;}
.hc{height:293.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:348.015000px;}
.w4{width:348.375000px;}
.w3{width:349.230000px;}
.w6{width:349.590000px;}
.w5{width:679.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.460000px;}
.x9{left:97.776000px;}
.x7{left:106.235987px;}
.xc{left:113.435987px;}
.xf{left:115.055987px;}
.x16{left:116.855987px;}
.x14{left:133.235987px;}
.x15{left:145.475987px;}
.x17{left:159.329987px;}
.xd{left:160.589987px;}
.x13{left:180.749987px;}
.x2{left:254.189987px;}
.x6{left:273.989987px;}
.x11{left:284.474987px;}
.xb{left:312.915000px;}
.xe{left:330.374987px;}
.x12{left:339.879000px;}
.x5{left:362.414987px;}
.x10{left:372.854987px;}
.x4{left:379.874987px;}
.x3{left:398.414987px;}
.x8{left:446.474987px;}
.x1{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1b{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.016640pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.062720pt;}
.ls3{letter-spacing:0.094720pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183680pt;}
.ls8{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.736000pt;}
.ls6{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:3.360000pt;}
.ls1e{letter-spacing:4.640000pt;}
.ls19{letter-spacing:5.280000pt;}
.ls17{letter-spacing:37.691307pt;}
.ls10{letter-spacing:38.971307pt;}
.ls16{letter-spacing:54.331307pt;}
.ls12{letter-spacing:63.291307pt;}
.ls20{letter-spacing:66.170027pt;}
.ls18{letter-spacing:70.331307pt;}
.lse{letter-spacing:72.272640pt;}
.ls5{letter-spacing:73.552640pt;}
.ws4{word-spacing:-21.263360pt;}
.ws10{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.511040pt;}
.ws1{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.960000pt;}
.ws3{word-spacing:-11.984000pt;}
.wse{word-spacing:-8.655360pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.226667pt;}
._12{width:2.129067pt;}
._7{width:3.046400pt;}
._b{width:4.114560pt;}
._6{width:5.125973pt;}
._5{width:6.263253pt;}
._c{width:7.270827pt;}
._11{width:8.972373pt;}
._13{width:10.384427pt;}
._14{width:12.005120pt;}
._a{width:14.337493pt;}
._e{width:15.293653pt;}
._8{width:17.479893pt;}
._9{width:19.354880pt;}
._17{width:20.808747pt;}
._18{width:22.437973pt;}
._15{width:23.619627pt;}
._d{width:24.695893pt;}
._f{width:25.705173pt;}
._10{width:26.653440pt;}
._16{width:54.501120pt;}
._4{width:349.706667pt;}
._3{width:740.800000pt;}
._2{width:1414.165333pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.592000pt;}
.y2a{bottom:2.880000pt;}
.y29{bottom:18.240000pt;}
.y28{bottom:33.440000pt;}
.ye{bottom:38.880000pt;}
.y27{bottom:48.800000pt;}
.yc{bottom:60.960000pt;}
.y26{bottom:72.160000pt;}
.ya{bottom:84.352000pt;}
.y25{bottom:87.520000pt;}
.y24{bottom:102.880000pt;}
.y23{bottom:118.240000pt;}
.ycc{bottom:120.832000pt;}
.ya8{bottom:123.232000pt;}
.y6f{bottom:130.432000pt;}
.y35{bottom:131.872000pt;}
.y22{bottom:133.440000pt;}
.ycb{bottom:138.426667pt;}
.ya7{bottom:140.826667pt;}
.y6e{bottom:145.786667pt;}
.y21{bottom:148.800000pt;}
.y34{bottom:149.466667pt;}
.yca{bottom:156.026667pt;}
.ya6{bottom:158.426667pt;}
.y6d{bottom:161.146667pt;}
.y20{bottom:164.160000pt;}
.y33{bottom:167.066667pt;}
.yc9{bottom:173.626667pt;}
.ya5{bottom:176.026667pt;}
.y6c{bottom:176.506667pt;}
.y1f{bottom:179.520000pt;}
.y32{bottom:184.666667pt;}
.yc8{bottom:191.386667pt;}
.y6b{bottom:191.706667pt;}
.ya4{bottom:193.626667pt;}
.y1e{bottom:194.906667pt;}
.y31{bottom:202.266667pt;}
.y6a{bottom:207.066667pt;}
.yc7{bottom:208.986667pt;}
.y1d{bottom:210.266667pt;}
.ya3{bottom:211.386667pt;}
.y30{bottom:220.026667pt;}
.y69{bottom:222.426667pt;}
.y1c{bottom:225.466667pt;}
.yc6{bottom:226.586667pt;}
.ya2{bottom:228.986667pt;}
.y2f{bottom:237.626667pt;}
.y68{bottom:237.786667pt;}
.y1b{bottom:240.826667pt;}
.yc5{bottom:244.186667pt;}
.ya1{bottom:246.586667pt;}
.y67{bottom:253.146667pt;}
.y2e{bottom:255.226667pt;}
.yc4{bottom:261.786667pt;}
.ya0{bottom:264.186667pt;}
.y66{bottom:268.506667pt;}
.y2d{bottom:272.826667pt;}
.y9f{bottom:279.546667pt;}
.y65{bottom:283.706667pt;}
.yf2{bottom:284.186667pt;}
.y9e{bottom:294.906667pt;}
.yc3{bottom:297.146667pt;}
.y64{bottom:299.106667pt;}
.y2c{bottom:303.906667pt;}
.y9d{bottom:310.306667pt;}
.y63{bottom:314.466667pt;}
.yc2{bottom:314.786667pt;}
.yf1{bottom:316.706667pt;}
.y9c{bottom:325.666667pt;}
.y2b{bottom:329.026667pt;}
.y62{bottom:329.826667pt;}
.yc1{bottom:332.386667pt;}
.yf0{bottom:337.186667pt;}
.y9b{bottom:340.866667pt;}
.y61{bottom:345.186667pt;}
.yc0{bottom:349.986667pt;}
.y1a{bottom:350.946667pt;}
.y9a{bottom:356.226667pt;}
.yef{bottom:357.826667pt;}
.y60{bottom:360.546667pt;}
.y99{bottom:371.586667pt;}
.y5f{bottom:375.746667pt;}
.yee{bottom:378.466667pt;}
.ybf{bottom:381.026667pt;}
.y98{bottom:386.946667pt;}
.y5e{bottom:391.106667pt;}
.ybe{bottom:398.626667pt;}
.yed{bottom:399.106667pt;}
.y97{bottom:402.306667pt;}
.y5d{bottom:406.466667pt;}
.ybd{bottom:416.226667pt;}
.y96{bottom:417.666667pt;}
.yec{bottom:419.586667pt;}
.y5c{bottom:421.826667pt;}
.y95{bottom:432.866667pt;}
.ybc{bottom:433.826667pt;}
.y5b{bottom:437.186667pt;}
.yeb{bottom:440.226667pt;}
.y94{bottom:448.226667pt;}
.ybb{bottom:451.586667pt;}
.y5a{bottom:452.386667pt;}
.yea{bottom:460.866667pt;}
.y93{bottom:463.586667pt;}
.yba{bottom:470.786667pt;}
.y59{bottom:471.746667pt;}
.y92{bottom:478.946667pt;}
.ye9{bottom:481.346667pt;}
.y91{bottom:494.306667pt;}
.y58{bottom:495.106667pt;}
.yb9{bottom:504.546667pt;}
.ye8{bottom:508.386667pt;}
.y90{bottom:509.666667pt;}
.y57{bottom:510.466667pt;}
.yb8{bottom:522.146667pt;}
.y8f{bottom:524.866667pt;}
.y56{bottom:525.826667pt;}
.ye7{bottom:526.146667pt;}
.yb7{bottom:539.773333pt;}
.y8e{bottom:540.253333pt;}
.y55{bottom:541.213333pt;}
.ye6{bottom:543.773333pt;}
.y8d{bottom:555.613333pt;}
.y54{bottom:556.413333pt;}
.yb6{bottom:559.133333pt;}
.ye5{bottom:561.373333pt;}
.y8c{bottom:570.973333pt;}
.y53{bottom:571.773333pt;}
.ye4{bottom:578.973333pt;}
.y8b{bottom:586.333333pt;}
.y52{bottom:587.133333pt;}
.yb5{bottom:592.733333pt;}
.ye3{bottom:596.573333pt;}
.y8a{bottom:601.533333pt;}
.y51{bottom:602.493333pt;}
.yb4{bottom:610.333333pt;}
.ye2{bottom:614.333333pt;}
.y89{bottom:616.893333pt;}
.y19{bottom:617.213333pt;}
.y50{bottom:617.853333pt;}
.yb3{bottom:627.933333pt;}
.ye1{bottom:631.933333pt;}
.y88{bottom:632.253333pt;}
.y18{bottom:632.413333pt;}
.y4f{bottom:633.213333pt;}
.yb2{bottom:645.693333pt;}
.y17{bottom:647.133333pt;}
.y87{bottom:647.613333pt;}
.y4e{bottom:648.413333pt;}
.ye0{bottom:649.533333pt;}
.y86{bottom:662.973333pt;}
.y4d{bottom:663.773333pt;}
.yb1{bottom:665.053333pt;}
.ydf{bottom:667.133333pt;}
.y16{bottom:668.093333pt;}
.y85{bottom:678.333333pt;}
.y4c{bottom:679.133333pt;}
.y15{bottom:683.453333pt;}
.yde{bottom:684.733333pt;}
.yb0{bottom:688.413333pt;}
.y84{bottom:693.533333pt;}
.y4b{bottom:694.493333pt;}
.y14{bottom:698.653333pt;}
.ydd{bottom:702.493333pt;}
.yaf{bottom:703.613333pt;}
.y83{bottom:708.893333pt;}
.y13{bottom:715.933333pt;}
.yae{bottom:718.973333pt;}
.ydc{bottom:720.093333pt;}
.y82{bottom:724.253333pt;}
.y4a{bottom:725.373333pt;}
.ydb{bottom:737.693333pt;}
.y81{bottom:739.613333pt;}
.y12{bottom:740.413333pt;}
.yad{bottom:742.333333pt;}
.y49{bottom:751.133333pt;}
.y80{bottom:754.973333pt;}
.yda{bottom:755.293333pt;}
.yac{bottom:757.693333pt;}
.y11{bottom:764.893333pt;}
.y48{bottom:768.733333pt;}
.y7f{bottom:770.333333pt;}
.yd9{bottom:772.893333pt;}
.yab{bottom:780.613333pt;}
.y7e{bottom:785.573333pt;}
.y47{bottom:786.373333pt;}
.y10{bottom:789.573333pt;}
.yd8{bottom:790.693333pt;}
.y7d{bottom:800.933333pt;}
.y46{bottom:803.973333pt;}
.yaa{bottom:806.373333pt;}
.yd7{bottom:808.293333pt;}
.yf{bottom:814.053333pt;}
.y7c{bottom:816.293333pt;}
.y45{bottom:821.573333pt;}
.ya9{bottom:821.733333pt;}
.yd6{bottom:825.893333pt;}
.y7b{bottom:831.653333pt;}
.y9{bottom:836.773333pt;}
.y44{bottom:839.333333pt;}
.yd5{bottom:843.493333pt;}
.y7a{bottom:847.013333pt;}
.y8{bottom:852.133333pt;}
.y43{bottom:856.933333pt;}
.yd4{bottom:861.093333pt;}
.y79{bottom:862.373333pt;}
.y7{bottom:864.613333pt;}
.y42{bottom:874.533333pt;}
.y78{bottom:877.573333pt;}
.yd3{bottom:878.853333pt;}
.y41{bottom:892.133333pt;}
.y77{bottom:892.933333pt;}
.yd2{bottom:896.453333pt;}
.y76{bottom:908.293333pt;}
.y40{bottom:909.733333pt;}
.y6{bottom:913.093333pt;}
.yd1{bottom:914.053333pt;}
.y75{bottom:923.653333pt;}
.y3f{bottom:927.493333pt;}
.yd0{bottom:931.653333pt;}
.y5{bottom:935.173333pt;}
.y74{bottom:939.013333pt;}
.y3e{bottom:945.093333pt;}
.ycf{bottom:949.253333pt;}
.y4{bottom:953.893333pt;}
.y73{bottom:954.213333pt;}
.y3d{bottom:962.693333pt;}
.yce{bottom:967.013333pt;}
.y72{bottom:969.573333pt;}
.y3{bottom:972.293333pt;}
.y3c{bottom:980.293333pt;}
.ycd{bottom:984.613333pt;}
.y71{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.y3b{bottom:997.893333pt;}
.y70{bottom:1000.293333pt;}
.y1{bottom:1005.573333pt;}
.y3a{bottom:1015.680000pt;}
.y39{bottom:1036.800000pt;}
.y38{bottom:1049.280000pt;}
.y37{bottom:1067.680000pt;}
.y36{bottom:1091.040000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.hb{height:31.008437pt;}
.h7{height:34.710938pt;}
.h5{height:35.085938pt;}
.h4{height:38.413438pt;}
.he{height:38.672812pt;}
.hd{height:38.828437pt;}
.h10{height:39.347188pt;}
.h2{height:39.373125pt;}
.hf{height:43.551875pt;}
.ha{height:44.176250pt;}
.h3{height:47.437500pt;}
.h11{height:58.563750pt;}
.h9{height:63.091875pt;}
.hc{height:261.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:309.346667pt;}
.w4{width:309.666667pt;}
.w3{width:310.426667pt;}
.w6{width:310.746667pt;}
.w5{width:604.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.520000pt;}
.x9{left:86.912000pt;}
.x7{left:94.431988pt;}
.xc{left:100.831988pt;}
.xf{left:102.271988pt;}
.x16{left:103.871988pt;}
.x14{left:118.431988pt;}
.x15{left:129.311988pt;}
.x17{left:141.626655pt;}
.xd{left:142.746655pt;}
.x13{left:160.666655pt;}
.x2{left:225.946655pt;}
.x6{left:243.546655pt;}
.x11{left:252.866655pt;}
.xb{left:278.146667pt;}
.xe{left:293.666655pt;}
.x12{left:302.114667pt;}
.x5{left:322.146655pt;}
.x10{left:331.426655pt;}
.x4{left:337.666655pt;}
.x3{left:354.146655pt;}
.x8{left:396.866655pt;}
.x1{left:699.333322pt;}
}




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