
    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_2a00942da899c5935350d835.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_1fbac556c6a56faf7791562e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_fbf9f8c3b43a7e2072706195.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_595bfcd739c456b44d7a2941.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_593eeb2f8d78a89822a33adf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.995605;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-14.400000px;}
.v3{vertical-align:-13.248000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.982000px;}
.ls19{letter-spacing:-20.232000px;}
.ls1e{letter-spacing:-7.920000px;}
.lse{letter-spacing:-7.776000px;}
.ls8{letter-spacing:-7.560000px;}
.ls13{letter-spacing:-7.488000px;}
.lsa{letter-spacing:-7.200000px;}
.ls1f{letter-spacing:-6.840000px;}
.ls23{letter-spacing:-6.600000px;}
.ls18{letter-spacing:-6.480000px;}
.ls12{letter-spacing:-6.192000px;}
.ls21{letter-spacing:-3.894000px;}
.ls11{letter-spacing:-3.528000px;}
.ls5{letter-spacing:-3.384000px;}
.ls10{letter-spacing:-3.168000px;}
.lsf{letter-spacing:-3.096000px;}
.lsb{letter-spacing:-2.808000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.720000px;}
.ls0{letter-spacing:4.200000px;}
.lsc{letter-spacing:5.544000px;}
.lsd{letter-spacing:5.904000px;}
.ls1c{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls1a{letter-spacing:7.200000px;}
.ls7{letter-spacing:8.640000px;}
.ls1b{letter-spacing:8.784000px;}
.ls6{letter-spacing:9.072000px;}
.ls2{letter-spacing:10.200000px;}
.ls15{letter-spacing:13.752000px;}
.ls22{letter-spacing:19.800000px;}
.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;}
}
.wsc{word-spacing:-27.432000px;}
.wsd{word-spacing:-22.860000px;}
.ws5{word-spacing:-20.232000px;}
.ws7{word-spacing:-19.872000px;}
.wsb{word-spacing:-19.512000px;}
.ws10{word-spacing:-19.206000px;}
.wse{word-spacing:-18.546000px;}
.ws9{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.144000px;}
.ws0{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.424000px;}
.wsa{word-spacing:-17.064000px;}
.ws4{word-spacing:-16.860000px;}
.ws11{word-spacing:-16.302000px;}
.ws2{word-spacing:-12.139200px;}
.ws6{word-spacing:-11.923200px;}
.wsf{word-spacing:-11.127600px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-21.144000px;}
._1f{margin-left:-19.176000px;}
._1a{margin-left:-17.652000px;}
._14{margin-left:-14.976000px;}
._15{margin-left:-13.956000px;}
._13{margin-left:-11.940000px;}
._20{margin-left:-10.842000px;}
._9{margin-left:-8.154000px;}
._2{margin-left:-6.798000px;}
._3{margin-left:-5.304000px;}
._1{margin-left:-4.284000px;}
._7{margin-left:-2.826000px;}
._0{margin-left:-1.680000px;}
._5{width:1.056000px;}
._4{width:2.064000px;}
._6{width:3.216000px;}
._a{width:4.410000px;}
._12{width:5.412000px;}
._8{width:6.480000px;}
._11{width:7.734000px;}
._10{width:8.754000px;}
._b{width:10.224000px;}
._c{width:11.736000px;}
._d{width:12.804000px;}
._1c{width:14.136000px;}
._18{width:15.498000px;}
._1b{width:17.208000px;}
._19{width:18.510000px;}
._17{width:20.796000px;}
._1d{width:22.056000px;}
._16{width:23.904000px;}
._f{width:26.976000px;}
._e{width:28.464000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:76.337550px;}
.y1{bottom:76.343400px;}
.y20{bottom:142.654500px;}
.yd4{bottom:144.869850px;}
.yad{bottom:148.306500px;}
.y46{bottom:150.112500px;}
.y6b{bottom:150.118200px;}
.y8e{bottom:150.916350px;}
.y1f{bottom:164.254500px;}
.yd3{bottom:164.966850px;}
.yac{bottom:168.106500px;}
.y45{bottom:171.712500px;}
.y6a{bottom:171.718200px;}
.y8d{bottom:173.110350px;}
.yd2{bottom:185.063850px;}
.y1e{bottom:185.854500px;}
.yab{bottom:187.906500px;}
.y44{bottom:193.312500px;}
.y69{bottom:193.318200px;}
.y8c{bottom:195.304350px;}
.yd1{bottom:205.160850px;}
.y1d{bottom:207.454500px;}
.yaa{bottom:207.706500px;}
.yf3{bottom:210.699600px;}
.y43{bottom:214.912500px;}
.y68{bottom:214.918200px;}
.y8b{bottom:217.498350px;}
.yd0{bottom:225.257850px;}
.yf2{bottom:228.699600px;}
.y1c{bottom:229.054500px;}
.ya9{bottom:236.010450px;}
.y42{bottom:236.512500px;}
.y67{bottom:236.518200px;}
.y8a{bottom:239.692350px;}
.ycf{bottom:245.354850px;}
.yf1{bottom:246.699600px;}
.y1b{bottom:250.654500px;}
.y41{bottom:258.112500px;}
.y66{bottom:258.118200px;}
.y89{bottom:261.886350px;}
.yf0{bottom:264.699600px;}
.yce{bottom:265.451850px;}
.y1a{bottom:272.254500px;}
.y40{bottom:279.712500px;}
.y65{bottom:279.718200px;}
.ya8{bottom:284.014350px;}
.y88{bottom:284.080350px;}
.ycd{bottom:285.548850px;}
.y19{bottom:293.854500px;}
.y3f{bottom:301.312500px;}
.y64{bottom:301.318200px;}
.yef{bottom:303.399600px;}
.ycc{bottom:305.645850px;}
.ya7{bottom:305.920350px;}
.y87{bottom:306.274350px;}
.y18{bottom:315.454500px;}
.y3e{bottom:322.912500px;}
.y63{bottom:322.918200px;}
.yee{bottom:323.199600px;}
.ycb{bottom:325.742850px;}
.ya6{bottom:327.826350px;}
.y86{bottom:328.468350px;}
.y17{bottom:337.054500px;}
.yed{bottom:342.999600px;}
.y3d{bottom:344.512500px;}
.y62{bottom:344.518200px;}
.yca{bottom:345.839850px;}
.ya5{bottom:349.732350px;}
.y85{bottom:350.662350px;}
.y16{bottom:358.654500px;}
.yec{bottom:362.799600px;}
.yc9{bottom:365.936850px;}
.y3c{bottom:366.112500px;}
.y61{bottom:366.118200px;}
.ya4{bottom:371.638350px;}
.y84{bottom:372.856350px;}
.y15{bottom:380.254500px;}
.yeb{bottom:382.599600px;}
.yc8{bottom:386.033850px;}
.y3b{bottom:387.712500px;}
.y60{bottom:387.718200px;}
.ya3{bottom:393.544350px;}
.y83{bottom:395.050350px;}
.y14{bottom:401.854500px;}
.yea{bottom:402.399600px;}
.yc7{bottom:406.130850px;}
.y3a{bottom:409.312500px;}
.y5f{bottom:409.318200px;}
.ya2{bottom:415.450350px;}
.y82{bottom:417.244350px;}
.ye9{bottom:422.199600px;}
.y13{bottom:423.454500px;}
.yc6{bottom:426.227850px;}
.y39{bottom:430.912500px;}
.y5e{bottom:430.918200px;}
.ya1{bottom:437.356350px;}
.y81{bottom:439.438350px;}
.ye8{bottom:441.999600px;}
.y12{bottom:445.054500px;}
.yc5{bottom:446.324850px;}
.y38{bottom:452.512500px;}
.y5d{bottom:452.518200px;}
.ya0{bottom:459.262350px;}
.y80{bottom:461.632350px;}
.ye7{bottom:461.799600px;}
.yc4{bottom:466.421850px;}
.y11{bottom:466.654500px;}
.y37{bottom:474.112500px;}
.y5c{bottom:474.118200px;}
.y9f{bottom:481.168350px;}
.ye6{bottom:481.599600px;}
.y7f{bottom:483.826350px;}
.yc3{bottom:486.518850px;}
.y10{bottom:488.254500px;}
.y36{bottom:495.712500px;}
.y5b{bottom:495.718200px;}
.ye5{bottom:501.399600px;}
.y7e{bottom:506.020350px;}
.yc2{bottom:506.618850px;}
.yf{bottom:509.854500px;}
.y9e{bottom:511.570350px;}
.y35{bottom:517.312500px;}
.y5a{bottom:517.318200px;}
.yc1{bottom:526.757850px;}
.y7d{bottom:528.214350px;}
.ye{bottom:531.454500px;}
.y34{bottom:538.912500px;}
.y59{bottom:538.918200px;}
.yc0{bottom:546.854850px;}
.ye4{bottom:548.199600px;}
.y7c{bottom:550.408350px;}
.yd{bottom:553.054500px;}
.y33{bottom:560.512500px;}
.y58{bottom:560.518200px;}
.ybf{bottom:566.951850px;}
.y7b{bottom:572.602350px;}
.yc{bottom:574.654500px;}
.ye3{bottom:576.503550px;}
.y32{bottom:582.112500px;}
.y57{bottom:582.118200px;}
.ybe{bottom:587.048850px;}
.y7a{bottom:594.796350px;}
.yb{bottom:596.254500px;}
.y9d{bottom:599.176350px;}
.y31{bottom:603.712500px;}
.y56{bottom:603.718200px;}
.ybd{bottom:607.145850px;}
.y79{bottom:616.990350px;}
.ya{bottom:617.854500px;}
.y9c{bottom:621.082350px;}
.y30{bottom:625.312500px;}
.y55{bottom:625.318200px;}
.ybc{bottom:627.242850px;}
.y78{bottom:639.184350px;}
.y9{bottom:639.454500px;}
.y9b{bottom:642.988350px;}
.y2f{bottom:646.912500px;}
.y54{bottom:646.918200px;}
.ybb{bottom:647.339850px;}
.ye2{bottom:649.403550px;}
.y8{bottom:661.054500px;}
.y77{bottom:661.378350px;}
.y9a{bottom:664.894350px;}
.yba{bottom:667.436850px;}
.y2e{bottom:668.512500px;}
.y53{bottom:668.518200px;}
.y7{bottom:682.654500px;}
.y76{bottom:683.572350px;}
.ye1{bottom:683.603700px;}
.y99{bottom:686.800350px;}
.yb9{bottom:687.533850px;}
.y2d{bottom:690.112500px;}
.y52{bottom:690.118200px;}
.ye0{bottom:703.403700px;}
.y6{bottom:704.254500px;}
.y75{bottom:705.766350px;}
.yb8{bottom:707.630850px;}
.y98{bottom:708.706350px;}
.y2c{bottom:711.712500px;}
.y51{bottom:711.718200px;}
.ydf{bottom:723.203700px;}
.y5{bottom:725.854500px;}
.yb7{bottom:727.727850px;}
.y74{bottom:727.960350px;}
.y97{bottom:730.612350px;}
.y2b{bottom:733.312500px;}
.y50{bottom:733.318350px;}
.yde{bottom:743.003700px;}
.yb6{bottom:747.824850px;}
.y73{bottom:750.154350px;}
.y96{bottom:752.470350px;}
.y2a{bottom:754.912500px;}
.y4f{bottom:754.918200px;}
.ydd{bottom:762.803700px;}
.yb5{bottom:767.921850px;}
.y72{bottom:772.348350px;}
.y95{bottom:774.376350px;}
.y29{bottom:776.512500px;}
.y4e{bottom:776.518350px;}
.ydc{bottom:782.603700px;}
.yb4{bottom:788.018850px;}
.y71{bottom:794.542350px;}
.y94{bottom:796.282350px;}
.y28{bottom:798.112500px;}
.y4d{bottom:798.118350px;}
.ydb{bottom:802.403700px;}
.yb3{bottom:808.118850px;}
.y70{bottom:816.736350px;}
.y93{bottom:818.188350px;}
.y27{bottom:819.712500px;}
.y4c{bottom:819.718350px;}
.yda{bottom:822.203700px;}
.yb2{bottom:828.218850px;}
.y6f{bottom:838.930350px;}
.y92{bottom:840.094350px;}
.y26{bottom:841.312500px;}
.y4b{bottom:841.318350px;}
.yd9{bottom:842.003700px;}
.yb1{bottom:848.327850px;}
.y4{bottom:855.454500px;}
.y6e{bottom:861.124350px;}
.yd8{bottom:861.803700px;}
.y91{bottom:862.000350px;}
.y25{bottom:862.912500px;}
.y4a{bottom:862.918350px;}
.yb0{bottom:868.424850px;}
.yd7{bottom:881.603700px;}
.y6d{bottom:883.330350px;}
.y90{bottom:883.906350px;}
.y24{bottom:884.512500px;}
.y49{bottom:884.518350px;}
.yaf{bottom:888.521850px;}
.yd6{bottom:901.403700px;}
.y6c{bottom:905.524350px;}
.y8f{bottom:905.812350px;}
.y23{bottom:906.112500px;}
.y48{bottom:906.118350px;}
.yae{bottom:908.618850px;}
.y3{bottom:910.715850px;}
.y22{bottom:927.712500px;}
.y47{bottom:927.718350px;}
.y2{bottom:928.715850px;}
.yd5{bottom:929.707650px;}
.h9{height:28.198242px;}
.h8{height:35.663086px;}
.h3{height:40.283203px;}
.h2{height:40.757812px;}
.he{height:48.339844px;}
.hd{height:48.399902px;}
.h5{height:50.947266px;}
.ha{height:54.703125px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.hb{height:61.137319px;}
.hc{height:61.328719px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.757400px;}
.x7{left:119.053350px;}
.x8{left:140.323800px;}
.x5{left:150.670350px;}
.x6{left:270.577950px;}
.x1{left:345.297150px;}
.x9{left:543.209400px;}
.x2{left:572.164350px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v3{vertical-align:-11.776000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.650667pt;}
.ls19{letter-spacing:-17.984000pt;}
.ls1e{letter-spacing:-7.040000pt;}
.lse{letter-spacing:-6.912000pt;}
.ls8{letter-spacing:-6.720000pt;}
.ls13{letter-spacing:-6.656000pt;}
.lsa{letter-spacing:-6.400000pt;}
.ls1f{letter-spacing:-6.080000pt;}
.ls23{letter-spacing:-5.866667pt;}
.ls18{letter-spacing:-5.760000pt;}
.ls12{letter-spacing:-5.504000pt;}
.ls21{letter-spacing:-3.461333pt;}
.ls11{letter-spacing:-3.136000pt;}
.ls5{letter-spacing:-3.008000pt;}
.ls10{letter-spacing:-2.816000pt;}
.lsf{letter-spacing:-2.752000pt;}
.lsb{letter-spacing:-2.496000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.640000pt;}
.ls0{letter-spacing:3.733333pt;}
.lsc{letter-spacing:4.928000pt;}
.lsd{letter-spacing:5.248000pt;}
.ls1c{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls1a{letter-spacing:6.400000pt;}
.ls7{letter-spacing:7.680000pt;}
.ls1b{letter-spacing:7.808000pt;}
.ls6{letter-spacing:8.064000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls15{letter-spacing:12.224000pt;}
.ls22{letter-spacing:17.600000pt;}
.wsc{word-spacing:-24.384000pt;}
.wsd{word-spacing:-20.320000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.664000pt;}
.wsb{word-spacing:-17.344000pt;}
.ws10{word-spacing:-17.072000pt;}
.wse{word-spacing:-16.485333pt;}
.ws9{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws0{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.488000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.986667pt;}
.ws11{word-spacing:-14.490667pt;}
.ws2{word-spacing:-10.790400pt;}
.ws6{word-spacing:-10.598400pt;}
.wsf{word-spacing:-9.891200pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-18.794667pt;}
._1f{margin-left:-17.045333pt;}
._1a{margin-left:-15.690667pt;}
._14{margin-left:-13.312000pt;}
._15{margin-left:-12.405333pt;}
._13{margin-left:-10.613333pt;}
._20{margin-left:-9.637333pt;}
._9{margin-left:-7.248000pt;}
._2{margin-left:-6.042667pt;}
._3{margin-left:-4.714667pt;}
._1{margin-left:-3.808000pt;}
._7{margin-left:-2.512000pt;}
._0{margin-left:-1.493333pt;}
._5{width:0.938667pt;}
._4{width:1.834667pt;}
._6{width:2.858667pt;}
._a{width:3.920000pt;}
._12{width:4.810667pt;}
._8{width:5.760000pt;}
._11{width:6.874667pt;}
._10{width:7.781333pt;}
._b{width:9.088000pt;}
._c{width:10.432000pt;}
._d{width:11.381333pt;}
._1c{width:12.565333pt;}
._18{width:13.776000pt;}
._1b{width:15.296000pt;}
._19{width:16.453333pt;}
._17{width:18.485333pt;}
._1d{width:19.605333pt;}
._16{width:21.248000pt;}
._f{width:23.978667pt;}
._e{width:25.301333pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:67.855600pt;}
.y1{bottom:67.860800pt;}
.y20{bottom:126.804000pt;}
.yd4{bottom:128.773200pt;}
.yad{bottom:131.828000pt;}
.y46{bottom:133.433333pt;}
.y6b{bottom:133.438400pt;}
.y8e{bottom:134.147867pt;}
.y1f{bottom:146.004000pt;}
.yd3{bottom:146.637200pt;}
.yac{bottom:149.428000pt;}
.y45{bottom:152.633333pt;}
.y6a{bottom:152.638400pt;}
.y8d{bottom:153.875867pt;}
.yd2{bottom:164.501200pt;}
.y1e{bottom:165.204000pt;}
.yab{bottom:167.028000pt;}
.y44{bottom:171.833333pt;}
.y69{bottom:171.838400pt;}
.y8c{bottom:173.603867pt;}
.yd1{bottom:182.365200pt;}
.y1d{bottom:184.404000pt;}
.yaa{bottom:184.628000pt;}
.yf3{bottom:187.288533pt;}
.y43{bottom:191.033333pt;}
.y68{bottom:191.038400pt;}
.y8b{bottom:193.331867pt;}
.yd0{bottom:200.229200pt;}
.yf2{bottom:203.288533pt;}
.y1c{bottom:203.604000pt;}
.ya9{bottom:209.787067pt;}
.y42{bottom:210.233333pt;}
.y67{bottom:210.238400pt;}
.y8a{bottom:213.059867pt;}
.ycf{bottom:218.093200pt;}
.yf1{bottom:219.288533pt;}
.y1b{bottom:222.804000pt;}
.y41{bottom:229.433333pt;}
.y66{bottom:229.438400pt;}
.y89{bottom:232.787867pt;}
.yf0{bottom:235.288533pt;}
.yce{bottom:235.957200pt;}
.y1a{bottom:242.004000pt;}
.y40{bottom:248.633333pt;}
.y65{bottom:248.638400pt;}
.ya8{bottom:252.457200pt;}
.y88{bottom:252.515867pt;}
.ycd{bottom:253.821200pt;}
.y19{bottom:261.204000pt;}
.y3f{bottom:267.833333pt;}
.y64{bottom:267.838400pt;}
.yef{bottom:269.688533pt;}
.ycc{bottom:271.685200pt;}
.ya7{bottom:271.929200pt;}
.y87{bottom:272.243867pt;}
.y18{bottom:280.404000pt;}
.y3e{bottom:287.033333pt;}
.y63{bottom:287.038400pt;}
.yee{bottom:287.288533pt;}
.ycb{bottom:289.549200pt;}
.ya6{bottom:291.401200pt;}
.y86{bottom:291.971867pt;}
.y17{bottom:299.604000pt;}
.yed{bottom:304.888533pt;}
.y3d{bottom:306.233333pt;}
.y62{bottom:306.238400pt;}
.yca{bottom:307.413200pt;}
.ya5{bottom:310.873200pt;}
.y85{bottom:311.699867pt;}
.y16{bottom:318.804000pt;}
.yec{bottom:322.488533pt;}
.yc9{bottom:325.277200pt;}
.y3c{bottom:325.433333pt;}
.y61{bottom:325.438400pt;}
.ya4{bottom:330.345200pt;}
.y84{bottom:331.427867pt;}
.y15{bottom:338.004000pt;}
.yeb{bottom:340.088533pt;}
.yc8{bottom:343.141200pt;}
.y3b{bottom:344.633333pt;}
.y60{bottom:344.638400pt;}
.ya3{bottom:349.817200pt;}
.y83{bottom:351.155867pt;}
.y14{bottom:357.204000pt;}
.yea{bottom:357.688533pt;}
.yc7{bottom:361.005200pt;}
.y3a{bottom:363.833333pt;}
.y5f{bottom:363.838400pt;}
.ya2{bottom:369.289200pt;}
.y82{bottom:370.883867pt;}
.ye9{bottom:375.288533pt;}
.y13{bottom:376.404000pt;}
.yc6{bottom:378.869200pt;}
.y39{bottom:383.033333pt;}
.y5e{bottom:383.038400pt;}
.ya1{bottom:388.761200pt;}
.y81{bottom:390.611867pt;}
.ye8{bottom:392.888533pt;}
.y12{bottom:395.604000pt;}
.yc5{bottom:396.733200pt;}
.y38{bottom:402.233333pt;}
.y5d{bottom:402.238400pt;}
.ya0{bottom:408.233200pt;}
.y80{bottom:410.339867pt;}
.ye7{bottom:410.488533pt;}
.yc4{bottom:414.597200pt;}
.y11{bottom:414.804000pt;}
.y37{bottom:421.433333pt;}
.y5c{bottom:421.438400pt;}
.y9f{bottom:427.705200pt;}
.ye6{bottom:428.088533pt;}
.y7f{bottom:430.067867pt;}
.yc3{bottom:432.461200pt;}
.y10{bottom:434.004000pt;}
.y36{bottom:440.633333pt;}
.y5b{bottom:440.638400pt;}
.ye5{bottom:445.688533pt;}
.y7e{bottom:449.795867pt;}
.yc2{bottom:450.327867pt;}
.yf{bottom:453.204000pt;}
.y9e{bottom:454.729200pt;}
.y35{bottom:459.833333pt;}
.y5a{bottom:459.838400pt;}
.yc1{bottom:468.229200pt;}
.y7d{bottom:469.523867pt;}
.ye{bottom:472.404000pt;}
.y34{bottom:479.033333pt;}
.y59{bottom:479.038400pt;}
.yc0{bottom:486.093200pt;}
.ye4{bottom:487.288533pt;}
.y7c{bottom:489.251867pt;}
.yd{bottom:491.604000pt;}
.y33{bottom:498.233333pt;}
.y58{bottom:498.238400pt;}
.ybf{bottom:503.957200pt;}
.y7b{bottom:508.979867pt;}
.yc{bottom:510.804000pt;}
.ye3{bottom:512.447600pt;}
.y32{bottom:517.433333pt;}
.y57{bottom:517.438400pt;}
.ybe{bottom:521.821200pt;}
.y7a{bottom:528.707867pt;}
.yb{bottom:530.004000pt;}
.y9d{bottom:532.601200pt;}
.y31{bottom:536.633333pt;}
.y56{bottom:536.638400pt;}
.ybd{bottom:539.685200pt;}
.y79{bottom:548.435867pt;}
.ya{bottom:549.204000pt;}
.y9c{bottom:552.073200pt;}
.y30{bottom:555.833333pt;}
.y55{bottom:555.838400pt;}
.ybc{bottom:557.549200pt;}
.y78{bottom:568.163867pt;}
.y9{bottom:568.404000pt;}
.y9b{bottom:571.545200pt;}
.y2f{bottom:575.033333pt;}
.y54{bottom:575.038400pt;}
.ybb{bottom:575.413200pt;}
.ye2{bottom:577.247600pt;}
.y8{bottom:587.604000pt;}
.y77{bottom:587.891867pt;}
.y9a{bottom:591.017200pt;}
.yba{bottom:593.277200pt;}
.y2e{bottom:594.233333pt;}
.y53{bottom:594.238400pt;}
.y7{bottom:606.804000pt;}
.y76{bottom:607.619867pt;}
.ye1{bottom:607.647733pt;}
.y99{bottom:610.489200pt;}
.yb9{bottom:611.141200pt;}
.y2d{bottom:613.433333pt;}
.y52{bottom:613.438400pt;}
.ye0{bottom:625.247733pt;}
.y6{bottom:626.004000pt;}
.y75{bottom:627.347867pt;}
.yb8{bottom:629.005200pt;}
.y98{bottom:629.961200pt;}
.y2c{bottom:632.633333pt;}
.y51{bottom:632.638400pt;}
.ydf{bottom:642.847733pt;}
.y5{bottom:645.204000pt;}
.yb7{bottom:646.869200pt;}
.y74{bottom:647.075867pt;}
.y97{bottom:649.433200pt;}
.y2b{bottom:651.833333pt;}
.y50{bottom:651.838533pt;}
.yde{bottom:660.447733pt;}
.yb6{bottom:664.733200pt;}
.y73{bottom:666.803867pt;}
.y96{bottom:668.862533pt;}
.y2a{bottom:671.033333pt;}
.y4f{bottom:671.038400pt;}
.ydd{bottom:678.047733pt;}
.yb5{bottom:682.597200pt;}
.y72{bottom:686.531867pt;}
.y95{bottom:688.334533pt;}
.y29{bottom:690.233333pt;}
.y4e{bottom:690.238533pt;}
.ydc{bottom:695.647733pt;}
.yb4{bottom:700.461200pt;}
.y71{bottom:706.259867pt;}
.y94{bottom:707.806533pt;}
.y28{bottom:709.433333pt;}
.y4d{bottom:709.438533pt;}
.ydb{bottom:713.247733pt;}
.yb3{bottom:718.327867pt;}
.y70{bottom:725.987867pt;}
.y93{bottom:727.278533pt;}
.y27{bottom:728.633333pt;}
.y4c{bottom:728.638533pt;}
.yda{bottom:730.847733pt;}
.yb2{bottom:736.194533pt;}
.y6f{bottom:745.715867pt;}
.y92{bottom:746.750533pt;}
.y26{bottom:747.833333pt;}
.y4b{bottom:747.838533pt;}
.yd9{bottom:748.447733pt;}
.yb1{bottom:754.069200pt;}
.y4{bottom:760.404000pt;}
.y6e{bottom:765.443867pt;}
.yd8{bottom:766.047733pt;}
.y91{bottom:766.222533pt;}
.y25{bottom:767.033333pt;}
.y4a{bottom:767.038533pt;}
.yb0{bottom:771.933200pt;}
.yd7{bottom:783.647733pt;}
.y6d{bottom:785.182533pt;}
.y90{bottom:785.694533pt;}
.y24{bottom:786.233333pt;}
.y49{bottom:786.238533pt;}
.yaf{bottom:789.797200pt;}
.yd6{bottom:801.247733pt;}
.y6c{bottom:804.910533pt;}
.y8f{bottom:805.166533pt;}
.y23{bottom:805.433333pt;}
.y48{bottom:805.438533pt;}
.yae{bottom:807.661200pt;}
.y3{bottom:809.525200pt;}
.y22{bottom:824.633333pt;}
.y47{bottom:824.638533pt;}
.y2{bottom:825.525200pt;}
.yd5{bottom:826.406800pt;}
.h9{height:25.065104pt;}
.h8{height:31.700521pt;}
.h3{height:35.807292pt;}
.h2{height:36.229167pt;}
.he{height:42.968750pt;}
.hd{height:43.022135pt;}
.h5{height:45.286458pt;}
.ha{height:48.625000pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.hb{height:54.344283pt;}
.hc{height:54.514417pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.895467pt;}
.x7{left:105.825200pt;}
.x8{left:124.732267pt;}
.x5{left:133.929200pt;}
.x6{left:240.513733pt;}
.x1{left:306.930800pt;}
.x9{left:482.852800pt;}
.x2{left:508.590533pt;}
}




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