
    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_916bd4ed52eb70aac9bb01b5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_28d86779cbb4d023bb68bd19.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_f675ba08fce8d21971d28e5f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_8fa367a61863c2afc4be3303.woff')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_08c648ecb48b6289a099c145.woff')format("woff");}.ff5{font-family:ff5;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);}
.v3{vertical-align:-22.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v2{vertical-align:25.920000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.044400px;}
.ls4{letter-spacing:0.283800px;}
.ls0{letter-spacing:0.285300px;}
.ls1{letter-spacing:18.000000px;}
.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;}
}
.ws43{word-spacing:-56.229300px;}
.ws4{word-spacing:-55.944000px;}
.ws6{word-spacing:-50.519100px;}
.ws32{word-spacing:-40.536000px;}
.ws7e{word-spacing:-39.600000px;}
.ws42{word-spacing:-39.093300px;}
.ws33{word-spacing:-39.081600px;}
.ws40{word-spacing:-38.872800px;}
.ws2{word-spacing:-38.871900px;}
.ws85{word-spacing:-38.870100px;}
.ws35{word-spacing:-38.646900px;}
.ws69{word-spacing:-38.631600px;}
.ws37{word-spacing:-38.434500px;}
.ws5b{word-spacing:-38.432700px;}
.ws30{word-spacing:-38.373300px;}
.ws6b{word-spacing:-38.364900px;}
.ws60{word-spacing:-38.358900px;}
.ws65{word-spacing:-38.349900px;}
.ws3e{word-spacing:-38.160000px;}
.ws77{word-spacing:-38.156100px;}
.ws7a{word-spacing:-38.150700px;}
.ws79{word-spacing:-38.148300px;}
.ws82{word-spacing:-38.142900px;}
.ws2e{word-spacing:-37.944000px;}
.ws44{word-spacing:-37.937100px;}
.ws84{word-spacing:-37.934100px;}
.ws78{word-spacing:-37.726200px;}
.ws75{word-spacing:-37.720200px;}
.ws5{word-spacing:-36.717300px;}
.ws8{word-spacing:-26.348400px;}
.ws0{word-spacing:-24.473400px;}
.ws1{word-spacing:-24.332400px;}
.ws62{word-spacing:-23.464800px;}
.ws9{word-spacing:-23.446800px;}
.ws2c{word-spacing:-23.256600px;}
.ws2a{word-spacing:-23.254200px;}
.ws2f{word-spacing:-23.253900px;}
.ws6f{word-spacing:-23.253300px;}
.ws2b{word-spacing:-23.252400px;}
.ws5c{word-spacing:-23.250600px;}
.ws66{word-spacing:-23.249400px;}
.ws6d{word-spacing:-23.248800px;}
.ws1f{word-spacing:-23.248200px;}
.ws63{word-spacing:-23.246400px;}
.ws34{word-spacing:-23.245200px;}
.ws19{word-spacing:-23.243400px;}
.ws3c{word-spacing:-23.241600px;}
.ws39{word-spacing:-23.239800px;}
.ws67{word-spacing:-23.232900px;}
.ws36{word-spacing:-23.232000px;}
.ws3d{word-spacing:-23.230800px;}
.ws28{word-spacing:-23.228100px;}
.ws15{word-spacing:-23.181000px;}
.ws21{word-spacing:-23.180400px;}
.ws1b{word-spacing:-23.176800px;}
.ws53{word-spacing:-23.175000px;}
.ws83{word-spacing:-23.173200px;}
.wse{word-spacing:-23.172000px;}
.ws49{word-spacing:-23.166900px;}
.ws6a{word-spacing:-23.162400px;}
.ws4f{word-spacing:-23.160600px;}
.ws47{word-spacing:-23.036400px;}
.ws81{word-spacing:-23.035500px;}
.ws29{word-spacing:-23.034600px;}
.ws1d{word-spacing:-23.025000px;}
.ws7c{word-spacing:-23.024700px;}
.ws5e{word-spacing:-22.758000px;}
.ws5d{word-spacing:-22.756200px;}
.ws25{word-spacing:-22.754400px;}
.ws1a{word-spacing:-22.752000px;}
.ws17{word-spacing:-22.751100px;}
.ws4c{word-spacing:-22.750200px;}
.ws18{word-spacing:-22.749300px;}
.ws80{word-spacing:-22.749000px;}
.ws14{word-spacing:-22.748400px;}
.ws51{word-spacing:-22.747500px;}
.ws76{word-spacing:-22.746000px;}
.ws26{word-spacing:-22.744800px;}
.ws7d{word-spacing:-22.744500px;}
.ws54{word-spacing:-22.743000px;}
.ws7{word-spacing:-22.736700px;}
.ws27{word-spacing:-22.735200px;}
.ws5a{word-spacing:-22.728600px;}
.ws70{word-spacing:-22.680000px;}
.wsb{word-spacing:-22.618200px;}
.ws10{word-spacing:-22.540200px;}
.ws5f{word-spacing:-22.538400px;}
.ws12{word-spacing:-22.536000px;}
.ws7b{word-spacing:-22.535100px;}
.ws16{word-spacing:-22.534200px;}
.ws72{word-spacing:-22.533300px;}
.wsf{word-spacing:-22.532400px;}
.ws6c{word-spacing:-22.530600px;}
.ws68{word-spacing:-22.528800px;}
.ws59{word-spacing:-22.527600px;}
.ws7f{word-spacing:-22.526100px;}
.ws38{word-spacing:-22.524600px;}
.ws4a{word-spacing:-22.523400px;}
.ws3a{word-spacing:-22.521600px;}
.ws4b{word-spacing:-22.519800px;}
.ws13{word-spacing:-22.518000px;}
.ws4e{word-spacing:-22.516200px;}
.ws20{word-spacing:-22.509000px;}
.ws3b{word-spacing:-22.457400px;}
.ws48{word-spacing:-22.455000px;}
.ws52{word-spacing:-22.453200px;}
.ws41{word-spacing:-22.452300px;}
.ws23{word-spacing:-22.451400px;}
.ws56{word-spacing:-22.435200px;}
.ws46{word-spacing:-22.372800px;}
.ws45{word-spacing:-22.318200px;}
.ws2d{word-spacing:-22.309200px;}
.ws4d{word-spacing:-22.307400px;}
.ws73{word-spacing:-22.298400px;}
.ws31{word-spacing:-22.032000px;}
.ws24{word-spacing:-22.028400px;}
.ws74{word-spacing:-22.025700px;}
.wsd{word-spacing:-22.024800px;}
.ws55{word-spacing:-22.023000px;}
.ws58{word-spacing:-22.021200px;}
.ws64{word-spacing:-22.019400px;}
.ws50{word-spacing:-22.016700px;}
.ws3f{word-spacing:-21.951000px;}
.ws11{word-spacing:-21.949200px;}
.ws1e{word-spacing:-21.814200px;}
.ws57{word-spacing:-21.789000px;}
.ws71{word-spacing:-21.730500px;}
.ws61{word-spacing:-21.305700px;}
.wsc{word-spacing:-20.004600px;}
.wsa{word-spacing:-19.694100px;}
.ws1c{word-spacing:-1.944000px;}
.ws22{word-spacing:0.000000px;}
.ws6e{word-spacing:9.503400px;}
.ws3{word-spacing:550.566000px;}
._6{margin-left:-2.331000px;}
._7{margin-left:-1.073100px;}
._1{width:1.029900px;}
._9{width:8.935800px;}
._3{width:16.832100px;}
._5{width:18.428100px;}
._4{width:19.659000px;}
._2{width:25.116900px;}
._8{width:54.000000px;}
._0{width:710.919900px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:42.600000px;}
.fs8{font-size:44.700000px;}
.fs3{font-size:46.800000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.700000px;}
.fs0{font-size:84.300000px;}
.fs2{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:14.175000px;}
.y56{bottom:14.220000px;}
.y52{bottom:14.250000px;}
.y67{bottom:14.295000px;}
.y4f{bottom:14.325000px;}
.y70{bottom:15.150000px;}
.y5{bottom:18.571500px;}
.y66{bottom:45.255000px;}
.y4e{bottom:45.286500px;}
.y5c{bottom:45.315000px;}
.y55{bottom:45.361500px;}
.y51{bottom:45.390000px;}
.y6f{bottom:46.111500px;}
.y4{bottom:52.275000px;}
.y3{bottom:71.565000px;}
.y5b{bottom:76.275000px;}
.y54{bottom:76.320000px;}
.y65{bottom:76.396500px;}
.y6e{bottom:77.250000px;}
.y64{bottom:107.355000px;}
.y5a{bottom:107.415000px;}
.y6d{bottom:108.211500px;}
.y22{bottom:121.065000px;}
.y50{bottom:121.575000px;}
.y73{bottom:121.786500px;}
.y3e{bottom:127.546500px;}
.y93{bottom:137.805000px;}
.y59{bottom:138.375000px;}
.y63{bottom:138.496500px;}
.y6c{bottom:139.350000px;}
.y85{bottom:139.605000px;}
.y21{bottom:152.025000px;}
.y72{bottom:152.746500px;}
.y3d{bottom:158.686500px;}
.yaf{bottom:159.046500px;}
.y92{bottom:168.945000px;}
.y62{bottom:169.455000px;}
.y58{bottom:169.515000px;}
.y6b{bottom:170.311500px;}
.y84{bottom:170.565000px;}
.y20{bottom:183.165000px;}
.y4d{bottom:184.500000px;}
.yae{bottom:190.005000px;}
.y71{bottom:195.765000px;}
.y91{bottom:199.905000px;}
.y61{bottom:200.596500px;}
.y6a{bottom:201.450000px;}
.y3c{bottom:201.705000px;}
.y1f{bottom:214.125000px;}
.yad{bottom:221.146500px;}
.y90{bottom:231.046500px;}
.y60{bottom:231.555000px;}
.y69{bottom:232.411500px;}
.y83{bottom:232.665000px;}
.y3b{bottom:244.725000px;}
.y1e{bottom:245.265000px;}
.yac{bottom:252.286500px;}
.y68{bottom:255.675000px;}
.y8f{bottom:262.005000px;}
.y5f{bottom:262.515000px;}
.y4c{bottom:273.525000px;}
.y3a{bottom:275.865000px;}
.y1d{bottom:276.225000px;}
.yab{bottom:285.046500px;}
.y8e{bottom:293.146500px;}
.y39{bottom:306.825000px;}
.yaa{bottom:316.005000px;}
.y4b{bottom:316.546500px;}
.y82{bottom:318.886500px;}
.y1c{bottom:319.425000px;}
.y8d{bottom:324.105000px;}
.y38{bottom:337.965000px;}
.ya9{bottom:347.146500px;}
.y81{bottom:349.846500px;}
.y1b{bottom:362.445000px;}
.y8c{bottom:368.925000px;}
.ya8{bottom:379.905000px;}
.y37{bottom:380.986500px;}
.y1a{bottom:393.405000px;}
.ya7{bottom:410.865000px;}
.y80{bottom:411.945000px;}
.y36{bottom:424.005000px;}
.y19{bottom:424.546500px;}
.ya6{bottom:442.005000px;}
.y7f{bottom:443.086500px;}
.y35{bottom:454.965000px;}
.y18{bottom:455.505000px;}
.ya5{bottom:472.965000px;}
.y7e{bottom:474.046500px;}
.y17{bottom:486.646500px;}
.y34{bottom:498.165000px;}
.ya4{bottom:504.105000px;}
.y7d{bottom:505.186500px;}
.y5e{bottom:505.650000px;}
.y16{bottom:517.605000px;}
.yba{bottom:522.105000px;}
.ya3{bottom:535.065000px;}
.y8b{bottom:536.146500px;}
.y33{bottom:541.186500px;}
.y4a{bottom:543.165000px;}
.y7c{bottom:548.205000px;}
.y15{bottom:548.746500px;}
.yb9{bottom:553.065000px;}
.ya2{bottom:566.205000px;}
.y8a{bottom:567.286500px;}
.y32{bottom:572.146500px;}
.y49{bottom:574.305000px;}
.y14{bottom:579.705000px;}
.yb8{bottom:584.205000px;}
.y7b{bottom:591.225000px;}
.ya1{bottom:597.165000px;}
.y89{bottom:598.246500px;}
.y31{bottom:603.286500px;}
.y48{bottom:605.265000px;}
.y13{bottom:610.845000px;}
.yb7{bottom:615.165000px;}
.y7a{bottom:622.365000px;}
.ya0{bottom:628.305000px;}
.y88{bottom:629.386500px;}
.y30{bottom:634.246500px;}
.y12{bottom:641.805000px;}
.yb6{bottom:646.305000px;}
.y47{bottom:648.465000px;}
.y79{bottom:653.325000px;}
.y9f{bottom:659.265000px;}
.y2f{bottom:665.386500px;}
.y87{bottom:672.405000px;}
.y11{bottom:672.945000px;}
.yb5{bottom:677.265000px;}
.y78{bottom:684.465000px;}
.y9e{bottom:690.405000px;}
.y46{bottom:691.486500px;}
.y2e{bottom:696.345000px;}
.y10{bottom:703.905000px;}
.yb4{bottom:708.405000px;}
.y77{bottom:715.425000px;}
.y9d{bottom:721.365000px;}
.y45{bottom:722.445000px;}
.y2d{bottom:727.486500px;}
.yf{bottom:734.865000px;}
.yb3{bottom:739.365000px;}
.y76{bottom:746.565000px;}
.y9c{bottom:752.505000px;}
.y44{bottom:753.586500px;}
.y2c{bottom:758.445000px;}
.ye{bottom:766.005000px;}
.yb2{bottom:770.505000px;}
.y75{bottom:777.525000px;}
.y9b{bottom:783.465000px;}
.y57{bottom:785.850000px;}
.y2b{bottom:789.586500px;}
.y43{bottom:796.605000px;}
.yd{bottom:796.965000px;}
.yb1{bottom:801.465000px;}
.y86{bottom:808.665000px;}
.y9a{bottom:814.605000px;}
.y2a{bottom:820.545000px;}
.yc{bottom:828.105000px;}
.yb0{bottom:832.605000px;}
.y42{bottom:839.625000px;}
.y99{bottom:845.565000px;}
.y29{bottom:851.686500px;}
.yb{bottom:859.065000px;}
.y74{bottom:863.565000px;}
.y41{bottom:870.765000px;}
.y98{bottom:876.705000px;}
.ya{bottom:890.205000px;}
.y28{bottom:894.705000px;}
.y40{bottom:901.725000px;}
.y97{bottom:907.665000px;}
.y27{bottom:925.665000px;}
.y9{bottom:938.445000px;}
.y96{bottom:938.805000px;}
.y3f{bottom:944.745000px;}
.y26{bottom:956.805000px;}
.y8{bottom:959.325000px;}
.y95{bottom:969.765000px;}
.y53{bottom:972.825000px;}
.y25{bottom:987.765000px;}
.y7{bottom:995.145000px;}
.y94{bottom:1000.905000px;}
.y24{bottom:1018.905000px;}
.y6{bottom:1044.286500px;}
.y23{bottom:1049.865000px;}
.y2{bottom:1086.405000px;}
.y1{bottom:1113.945000px;}
.h7{height:29.121094px;}
.h8{height:30.556641px;}
.h3{height:35.700000px;}
.h2{height:48.796875px;}
.h4{height:49.218750px;}
.h11{height:49.992188px;}
.h9{height:50.027344px;}
.h10{height:53.115234px;}
.h1{height:57.626953px;}
.h6{height:60.939141px;}
.ha{height:62.775000px;}
.hb{height:62.850000px;}
.h5{height:64.859180px;}
.hc{height:93.825000px;}
.hd{height:186.975000px;}
.hf{height:249.900000px;}
.he{height:280.125000px;}
.h0{height:1188.000000px;}
.w1{width:27.300000px;}
.w2{width:46.950000px;}
.w3{width:89.325000px;}
.w5{width:108.075000px;}
.w4{width:175.575000px;}
.w6{width:238.200000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:8.925000px;}
.xc{left:10.260000px;}
.xd{left:16.485000px;}
.x13{left:28.035000px;}
.x12{left:31.455000px;}
.x10{left:53.235000px;}
.x15{left:67.813500px;}
.xb{left:99.900000px;}
.x3{left:108.000000px;}
.x9{left:135.000000px;}
.x1{left:146.700000px;}
.x5{left:162.000000px;}
.x8{left:178.200000px;}
.xf{left:236.025000px;}
.x7{left:263.160000px;}
.x6{left:312.660000px;}
.x2{left:338.400000px;}
.xa{left:354.238500px;}
.x11{left:411.525000px;}
.x14{left:519.525000px;}
.x4{left:782.325000px;}
@media print{
.v3{vertical-align:-19.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v2{vertical-align:23.040000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.039467pt;}
.ls4{letter-spacing:0.252267pt;}
.ls0{letter-spacing:0.253600pt;}
.ls1{letter-spacing:16.000000pt;}
.ws43{word-spacing:-49.981600pt;}
.ws4{word-spacing:-49.728000pt;}
.ws6{word-spacing:-44.905867pt;}
.ws32{word-spacing:-36.032000pt;}
.ws7e{word-spacing:-35.200000pt;}
.ws42{word-spacing:-34.749600pt;}
.ws33{word-spacing:-34.739200pt;}
.ws40{word-spacing:-34.553600pt;}
.ws2{word-spacing:-34.552800pt;}
.ws85{word-spacing:-34.551200pt;}
.ws35{word-spacing:-34.352800pt;}
.ws69{word-spacing:-34.339200pt;}
.ws37{word-spacing:-34.164000pt;}
.ws5b{word-spacing:-34.162400pt;}
.ws30{word-spacing:-34.109600pt;}
.ws6b{word-spacing:-34.102133pt;}
.ws60{word-spacing:-34.096800pt;}
.ws65{word-spacing:-34.088800pt;}
.ws3e{word-spacing:-33.920000pt;}
.ws77{word-spacing:-33.916533pt;}
.ws7a{word-spacing:-33.911733pt;}
.ws79{word-spacing:-33.909600pt;}
.ws82{word-spacing:-33.904800pt;}
.ws2e{word-spacing:-33.728000pt;}
.ws44{word-spacing:-33.721867pt;}
.ws84{word-spacing:-33.719200pt;}
.ws78{word-spacing:-33.534400pt;}
.ws75{word-spacing:-33.529067pt;}
.ws5{word-spacing:-32.637600pt;}
.ws8{word-spacing:-23.420800pt;}
.ws0{word-spacing:-21.754133pt;}
.ws1{word-spacing:-21.628800pt;}
.ws62{word-spacing:-20.857600pt;}
.ws9{word-spacing:-20.841600pt;}
.ws2c{word-spacing:-20.672533pt;}
.ws2a{word-spacing:-20.670400pt;}
.ws2f{word-spacing:-20.670133pt;}
.ws6f{word-spacing:-20.669600pt;}
.ws2b{word-spacing:-20.668800pt;}
.ws5c{word-spacing:-20.667200pt;}
.ws66{word-spacing:-20.666133pt;}
.ws6d{word-spacing:-20.665600pt;}
.ws1f{word-spacing:-20.665067pt;}
.ws63{word-spacing:-20.663467pt;}
.ws34{word-spacing:-20.662400pt;}
.ws19{word-spacing:-20.660800pt;}
.ws3c{word-spacing:-20.659200pt;}
.ws39{word-spacing:-20.657600pt;}
.ws67{word-spacing:-20.651467pt;}
.ws36{word-spacing:-20.650667pt;}
.ws3d{word-spacing:-20.649600pt;}
.ws28{word-spacing:-20.647200pt;}
.ws15{word-spacing:-20.605333pt;}
.ws21{word-spacing:-20.604800pt;}
.ws1b{word-spacing:-20.601600pt;}
.ws53{word-spacing:-20.600000pt;}
.ws83{word-spacing:-20.598400pt;}
.wse{word-spacing:-20.597333pt;}
.ws49{word-spacing:-20.592800pt;}
.ws6a{word-spacing:-20.588800pt;}
.ws4f{word-spacing:-20.587200pt;}
.ws47{word-spacing:-20.476800pt;}
.ws81{word-spacing:-20.476000pt;}
.ws29{word-spacing:-20.475200pt;}
.ws1d{word-spacing:-20.466667pt;}
.ws7c{word-spacing:-20.466400pt;}
.ws5e{word-spacing:-20.229333pt;}
.ws5d{word-spacing:-20.227733pt;}
.ws25{word-spacing:-20.226133pt;}
.ws1a{word-spacing:-20.224000pt;}
.ws17{word-spacing:-20.223200pt;}
.ws4c{word-spacing:-20.222400pt;}
.ws18{word-spacing:-20.221600pt;}
.ws80{word-spacing:-20.221333pt;}
.ws14{word-spacing:-20.220800pt;}
.ws51{word-spacing:-20.220000pt;}
.ws76{word-spacing:-20.218667pt;}
.ws26{word-spacing:-20.217600pt;}
.ws7d{word-spacing:-20.217333pt;}
.ws54{word-spacing:-20.216000pt;}
.ws7{word-spacing:-20.210400pt;}
.ws27{word-spacing:-20.209067pt;}
.ws5a{word-spacing:-20.203200pt;}
.ws70{word-spacing:-20.160000pt;}
.wsb{word-spacing:-20.105067pt;}
.ws10{word-spacing:-20.035733pt;}
.ws5f{word-spacing:-20.034133pt;}
.ws12{word-spacing:-20.032000pt;}
.ws7b{word-spacing:-20.031200pt;}
.ws16{word-spacing:-20.030400pt;}
.ws72{word-spacing:-20.029600pt;}
.wsf{word-spacing:-20.028800pt;}
.ws6c{word-spacing:-20.027200pt;}
.ws68{word-spacing:-20.025600pt;}
.ws59{word-spacing:-20.024533pt;}
.ws7f{word-spacing:-20.023200pt;}
.ws38{word-spacing:-20.021867pt;}
.ws4a{word-spacing:-20.020800pt;}
.ws3a{word-spacing:-20.019200pt;}
.ws4b{word-spacing:-20.017600pt;}
.ws13{word-spacing:-20.016000pt;}
.ws4e{word-spacing:-20.014400pt;}
.ws20{word-spacing:-20.008000pt;}
.ws3b{word-spacing:-19.962133pt;}
.ws48{word-spacing:-19.960000pt;}
.ws52{word-spacing:-19.958400pt;}
.ws41{word-spacing:-19.957600pt;}
.ws23{word-spacing:-19.956800pt;}
.ws56{word-spacing:-19.942400pt;}
.ws46{word-spacing:-19.886933pt;}
.ws45{word-spacing:-19.838400pt;}
.ws2d{word-spacing:-19.830400pt;}
.ws4d{word-spacing:-19.828800pt;}
.ws73{word-spacing:-19.820800pt;}
.ws31{word-spacing:-19.584000pt;}
.ws24{word-spacing:-19.580800pt;}
.ws74{word-spacing:-19.578400pt;}
.wsd{word-spacing:-19.577600pt;}
.ws55{word-spacing:-19.576000pt;}
.ws58{word-spacing:-19.574400pt;}
.ws64{word-spacing:-19.572800pt;}
.ws50{word-spacing:-19.570400pt;}
.ws3f{word-spacing:-19.512000pt;}
.ws11{word-spacing:-19.510400pt;}
.ws1e{word-spacing:-19.390400pt;}
.ws57{word-spacing:-19.368000pt;}
.ws71{word-spacing:-19.316000pt;}
.ws61{word-spacing:-18.938400pt;}
.wsc{word-spacing:-17.781867pt;}
.wsa{word-spacing:-17.505867pt;}
.ws1c{word-spacing:-1.728000pt;}
.ws22{word-spacing:0.000000pt;}
.ws6e{word-spacing:8.447467pt;}
.ws3{word-spacing:489.392000pt;}
._6{margin-left:-2.072000pt;}
._7{margin-left:-0.953867pt;}
._1{width:0.915467pt;}
._9{width:7.942933pt;}
._3{width:14.961867pt;}
._5{width:16.380533pt;}
._4{width:17.474667pt;}
._2{width:22.326133pt;}
._8{width:48.000000pt;}
._0{width:631.928800pt;}
.fs6{font-size:37.866667pt;}
.fs8{font-size:39.733333pt;}
.fs3{font-size:41.600000pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.066667pt;}
.fs0{font-size:74.933333pt;}
.fs2{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:12.600000pt;}
.y56{bottom:12.640000pt;}
.y52{bottom:12.666667pt;}
.y67{bottom:12.706667pt;}
.y4f{bottom:12.733333pt;}
.y70{bottom:13.466667pt;}
.y5{bottom:16.508000pt;}
.y66{bottom:40.226667pt;}
.y4e{bottom:40.254667pt;}
.y5c{bottom:40.280000pt;}
.y55{bottom:40.321333pt;}
.y51{bottom:40.346667pt;}
.y6f{bottom:40.988000pt;}
.y4{bottom:46.466667pt;}
.y3{bottom:63.613333pt;}
.y5b{bottom:67.800000pt;}
.y54{bottom:67.840000pt;}
.y65{bottom:67.908000pt;}
.y6e{bottom:68.666667pt;}
.y64{bottom:95.426667pt;}
.y5a{bottom:95.480000pt;}
.y6d{bottom:96.188000pt;}
.y22{bottom:107.613333pt;}
.y50{bottom:108.066667pt;}
.y73{bottom:108.254667pt;}
.y3e{bottom:113.374667pt;}
.y93{bottom:122.493333pt;}
.y59{bottom:123.000000pt;}
.y63{bottom:123.108000pt;}
.y6c{bottom:123.866667pt;}
.y85{bottom:124.093333pt;}
.y21{bottom:135.133333pt;}
.y72{bottom:135.774667pt;}
.y3d{bottom:141.054667pt;}
.yaf{bottom:141.374667pt;}
.y92{bottom:150.173333pt;}
.y62{bottom:150.626667pt;}
.y58{bottom:150.680000pt;}
.y6b{bottom:151.388000pt;}
.y84{bottom:151.613333pt;}
.y20{bottom:162.813333pt;}
.y4d{bottom:164.000000pt;}
.yae{bottom:168.893333pt;}
.y71{bottom:174.013333pt;}
.y91{bottom:177.693333pt;}
.y61{bottom:178.308000pt;}
.y6a{bottom:179.066667pt;}
.y3c{bottom:179.293333pt;}
.y1f{bottom:190.333333pt;}
.yad{bottom:196.574667pt;}
.y90{bottom:205.374667pt;}
.y60{bottom:205.826667pt;}
.y69{bottom:206.588000pt;}
.y83{bottom:206.813333pt;}
.y3b{bottom:217.533333pt;}
.y1e{bottom:218.013333pt;}
.yac{bottom:224.254667pt;}
.y68{bottom:227.266667pt;}
.y8f{bottom:232.893333pt;}
.y5f{bottom:233.346667pt;}
.y4c{bottom:243.133333pt;}
.y3a{bottom:245.213333pt;}
.y1d{bottom:245.533333pt;}
.yab{bottom:253.374667pt;}
.y8e{bottom:260.574667pt;}
.y39{bottom:272.733333pt;}
.yaa{bottom:280.893333pt;}
.y4b{bottom:281.374667pt;}
.y82{bottom:283.454667pt;}
.y1c{bottom:283.933333pt;}
.y8d{bottom:288.093333pt;}
.y38{bottom:300.413333pt;}
.ya9{bottom:308.574667pt;}
.y81{bottom:310.974667pt;}
.y1b{bottom:322.173333pt;}
.y8c{bottom:327.933333pt;}
.ya8{bottom:337.693333pt;}
.y37{bottom:338.654667pt;}
.y1a{bottom:349.693333pt;}
.ya7{bottom:365.213333pt;}
.y80{bottom:366.173333pt;}
.y36{bottom:376.893333pt;}
.y19{bottom:377.374667pt;}
.ya6{bottom:392.893333pt;}
.y7f{bottom:393.854667pt;}
.y35{bottom:404.413333pt;}
.y18{bottom:404.893333pt;}
.ya5{bottom:420.413333pt;}
.y7e{bottom:421.374667pt;}
.y17{bottom:432.574667pt;}
.y34{bottom:442.813333pt;}
.ya4{bottom:448.093333pt;}
.y7d{bottom:449.054667pt;}
.y5e{bottom:449.466667pt;}
.y16{bottom:460.093333pt;}
.yba{bottom:464.093333pt;}
.ya3{bottom:475.613333pt;}
.y8b{bottom:476.574667pt;}
.y33{bottom:481.054667pt;}
.y4a{bottom:482.813333pt;}
.y7c{bottom:487.293333pt;}
.y15{bottom:487.774667pt;}
.yb9{bottom:491.613333pt;}
.ya2{bottom:503.293333pt;}
.y8a{bottom:504.254667pt;}
.y32{bottom:508.574667pt;}
.y49{bottom:510.493333pt;}
.y14{bottom:515.293333pt;}
.yb8{bottom:519.293333pt;}
.y7b{bottom:525.533333pt;}
.ya1{bottom:530.813333pt;}
.y89{bottom:531.774667pt;}
.y31{bottom:536.254667pt;}
.y48{bottom:538.013333pt;}
.y13{bottom:542.973333pt;}
.yb7{bottom:546.813333pt;}
.y7a{bottom:553.213333pt;}
.ya0{bottom:558.493333pt;}
.y88{bottom:559.454667pt;}
.y30{bottom:563.774667pt;}
.y12{bottom:570.493333pt;}
.yb6{bottom:574.493333pt;}
.y47{bottom:576.413333pt;}
.y79{bottom:580.733333pt;}
.y9f{bottom:586.013333pt;}
.y2f{bottom:591.454667pt;}
.y87{bottom:597.693333pt;}
.y11{bottom:598.173333pt;}
.yb5{bottom:602.013333pt;}
.y78{bottom:608.413333pt;}
.y9e{bottom:613.693333pt;}
.y46{bottom:614.654667pt;}
.y2e{bottom:618.973333pt;}
.y10{bottom:625.693333pt;}
.yb4{bottom:629.693333pt;}
.y77{bottom:635.933333pt;}
.y9d{bottom:641.213333pt;}
.y45{bottom:642.173333pt;}
.y2d{bottom:646.654667pt;}
.yf{bottom:653.213333pt;}
.yb3{bottom:657.213333pt;}
.y76{bottom:663.613333pt;}
.y9c{bottom:668.893333pt;}
.y44{bottom:669.854667pt;}
.y2c{bottom:674.173333pt;}
.ye{bottom:680.893333pt;}
.yb2{bottom:684.893333pt;}
.y75{bottom:691.133333pt;}
.y9b{bottom:696.413333pt;}
.y57{bottom:698.533333pt;}
.y2b{bottom:701.854667pt;}
.y43{bottom:708.093333pt;}
.yd{bottom:708.413333pt;}
.yb1{bottom:712.413333pt;}
.y86{bottom:718.813333pt;}
.y9a{bottom:724.093333pt;}
.y2a{bottom:729.373333pt;}
.yc{bottom:736.093333pt;}
.yb0{bottom:740.093333pt;}
.y42{bottom:746.333333pt;}
.y99{bottom:751.613333pt;}
.y29{bottom:757.054667pt;}
.yb{bottom:763.613333pt;}
.y74{bottom:767.613333pt;}
.y41{bottom:774.013333pt;}
.y98{bottom:779.293333pt;}
.ya{bottom:791.293333pt;}
.y28{bottom:795.293333pt;}
.y40{bottom:801.533333pt;}
.y97{bottom:806.813333pt;}
.y27{bottom:822.813333pt;}
.y9{bottom:834.173333pt;}
.y96{bottom:834.493333pt;}
.y3f{bottom:839.773333pt;}
.y26{bottom:850.493333pt;}
.y8{bottom:852.733333pt;}
.y95{bottom:862.013333pt;}
.y53{bottom:864.733333pt;}
.y25{bottom:878.013333pt;}
.y7{bottom:884.573333pt;}
.y94{bottom:889.693333pt;}
.y24{bottom:905.693333pt;}
.y6{bottom:928.254667pt;}
.y23{bottom:933.213333pt;}
.y2{bottom:965.693333pt;}
.y1{bottom:990.173333pt;}
.h7{height:25.885417pt;}
.h8{height:27.161458pt;}
.h3{height:31.733333pt;}
.h2{height:43.375000pt;}
.h4{height:43.750000pt;}
.h11{height:44.437500pt;}
.h9{height:44.468750pt;}
.h10{height:47.213542pt;}
.h1{height:51.223958pt;}
.h6{height:54.168125pt;}
.ha{height:55.800000pt;}
.hb{height:55.866667pt;}
.h5{height:57.652604pt;}
.hc{height:83.400000pt;}
.hd{height:166.200000pt;}
.hf{height:222.133333pt;}
.he{height:249.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:24.266667pt;}
.w2{width:41.733333pt;}
.w3{width:79.400000pt;}
.w5{width:96.066667pt;}
.w4{width:156.066667pt;}
.w6{width:211.733333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.933333pt;}
.xc{left:9.120000pt;}
.xd{left:14.653333pt;}
.x13{left:24.920000pt;}
.x12{left:27.960000pt;}
.x10{left:47.320000pt;}
.x15{left:60.278667pt;}
.xb{left:88.800000pt;}
.x3{left:96.000000pt;}
.x9{left:120.000000pt;}
.x1{left:130.400000pt;}
.x5{left:144.000000pt;}
.x8{left:158.400000pt;}
.xf{left:209.800000pt;}
.x7{left:233.920000pt;}
.x6{left:277.920000pt;}
.x2{left:300.800000pt;}
.xa{left:314.878667pt;}
.x11{left:365.800000pt;}
.x14{left:461.800000pt;}
.x4{left:695.400000pt;}
}




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