
    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_46f5e6e0ca890868880c6136.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_640b002448870e91b615d9cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.884277;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_524c13dcb2ca4235103f4797.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e7c6aad85ba8cd56ee5ffdba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_ca9995111a9ed9374f020d03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.772949;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_3245f2f8f9a062507cf3330d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.004883;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_d4dd25bb73242324710d754b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_65ce5676a8561533e5b93155.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_83e2c997158a53e5de3aef23.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;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_e4471b64cfe299251ea2c33b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.004883;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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-80.640000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.305400px;}
.ls5{letter-spacing:42.480000px;}
.ls1{letter-spacing:1065.756000px;}
.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;}
}
.ws5{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-2.257920px;}
._0{margin-left:-1.224000px;}
._1{width:1.452000px;}
._9{width:2.919840px;}
._8{width:4.901760px;}
._20{width:5.918400px;}
._3{width:6.920640px;}
._2{width:8.311680px;}
._4{width:9.901440px;}
._e{width:11.671680px;}
._18{width:13.520640px;}
._f{width:15.096960px;}
._17{width:16.992000px;}
._11{width:18.613440px;}
._10{width:19.647360px;}
._6{width:21.528000px;}
._7{width:22.593600px;}
._25{width:23.632800px;}
._5{width:24.641280px;}
._16{width:25.704000px;}
._c{width:27.025920px;}
._14{width:28.702080px;}
._a{width:30.205440px;}
._b{width:31.230720px;}
._24{width:32.400000px;}
._19{width:33.696000px;}
._1a{width:34.704000px;}
._21{width:36.192000px;}
._22{width:37.536000px;}
._15{width:39.456000px;}
._2b{width:40.737600px;}
._1b{width:42.120000px;}
._1c{width:43.212000px;}
._2a{width:44.316000px;}
._23{width:45.432000px;}
._1d{width:46.872000px;}
._1e{width:48.312000px;}
._28{width:49.392000px;}
._29{width:50.772000px;}
._26{width:63.912000px;}
._27{width:65.088000px;}
._13{width:66.168000px;}
._12{width:67.392000px;}
._d{width:1039.836000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:57.600000px;}
.y5{bottom:77.616000px;}
.y61{bottom:135.936000px;}
.y66{bottom:137.016000px;}
.y95{bottom:139.716000px;}
.y33{bottom:152.490000px;}
.y60{bottom:157.710000px;}
.y94{bottom:160.410000px;}
.y32{bottom:174.630000px;}
.y65{bottom:178.050000px;}
.y5f{bottom:178.410000px;}
.yc0{bottom:180.390000px;}
.y93{bottom:181.110000px;}
.y31{bottom:196.950000px;}
.y5e{bottom:199.110000px;}
.y92{bottom:201.810000px;}
.y30{bottom:219.270000px;}
.y5d{bottom:219.810000px;}
.y91{bottom:222.510000px;}
.ybf{bottom:223.590000px;}
.y5c{bottom:240.510000px;}
.y2f{bottom:241.050000px;}
.y90{bottom:243.210000px;}
.ybe{bottom:245.730000px;}
.y5b{bottom:261.210000px;}
.y8f{bottom:263.910000px;}
.y2e{bottom:278.850000px;}
.y5a{bottom:281.910000px;}
.y8e{bottom:284.610000px;}
.ybd{bottom:289.110000px;}
.y2d{bottom:297.750000px;}
.y59{bottom:302.610000px;}
.y8d{bottom:305.310000px;}
.ybc{bottom:311.250000px;}
.y2c{bottom:316.830000px;}
.y58{bottom:323.310000px;}
.y8c{bottom:326.010000px;}
.y2b{bottom:335.730000px;}
.y57{bottom:344.055000px;}
.y8b{bottom:346.755000px;}
.ybb{bottom:354.675000px;}
.y2a{bottom:354.855000px;}
.y56{bottom:364.755000px;}
.ya6{bottom:367.095000px;}
.y8a{bottom:367.455000px;}
.y29{bottom:373.755000px;}
.y55{bottom:385.455000px;}
.ya5{bottom:387.795000px;}
.y89{bottom:388.155000px;}
.y28{bottom:392.655000px;}
.yba{bottom:398.055000px;}
.y54{bottom:406.155000px;}
.y88{bottom:408.855000px;}
.y27{bottom:411.735000px;}
.yb9{bottom:420.195000px;}
.y53{bottom:426.855000px;}
.y87{bottom:429.555000px;}
.y26{bottom:430.635000px;}
.y52{bottom:447.555000px;}
.y25{bottom:449.715000px;}
.y86{bottom:450.255000px;}
.yb8{bottom:463.575000px;}
.y51{bottom:468.255000px;}
.y24{bottom:468.615000px;}
.y85{bottom:470.955000px;}
.yb7{bottom:485.715000px;}
.y23{bottom:487.515000px;}
.y50{bottom:488.955000px;}
.y84{bottom:491.655000px;}
.y22{bottom:506.595000px;}
.y4f{bottom:509.655000px;}
.y83{bottom:512.355000px;}
.y21{bottom:525.495000px;}
.yb6{bottom:529.095000px;}
.y4e{bottom:530.355000px;}
.y82{bottom:533.055000px;}
.y20{bottom:544.575000px;}
.y64{bottom:550.695000px;}
.y4d{bottom:551.055000px;}
.yb5{bottom:551.235000px;}
.y81{bottom:553.755000px;}
.y4c{bottom:571.755000px;}
.y80{bottom:574.455000px;}
.y1f{bottom:583.275000px;}
.y4b{bottom:592.455000px;}
.yb4{bottom:594.435000px;}
.y7f{bottom:594.975000px;}
.yaf{bottom:603.645000px;}
.y1e{bottom:605.085000px;}
.y4a{bottom:613.005000px;}
.y7e{bottom:615.705000px;}
.y49{bottom:633.705000px;}
.y7d{bottom:636.405000px;}
.yb3{bottom:637.665000px;}
.yae{bottom:642.705000px;}
.y1d{bottom:643.065000px;}
.y63{bottom:654.405000px;}
.y7c{bottom:657.105000px;}
.ycf{bottom:659.085000px;}
.yb2{bottom:659.985000px;}
.y1c{bottom:661.965000px;}
.yad{bottom:663.405000px;}
.y48{bottom:675.105000px;}
.ya4{bottom:677.445000px;}
.y7b{bottom:677.805000px;}
.y1b{bottom:680.865000px;}
.yac{bottom:684.105000px;}
.y47{bottom:695.805000px;}
.y7a{bottom:698.505000px;}
.yb1{bottom:699.405000px;}
.y1a{bottom:699.945000px;}
.yce{bottom:702.645000px;}
.yab{bottom:704.805000px;}
.y46{bottom:716.505000px;}
.y19{bottom:718.845000px;}
.y79{bottom:719.205000px;}
.ycd{bottom:724.785000px;}
.yaa{bottom:725.505000px;}
.y45{bottom:737.205000px;}
.y18{bottom:737.925000px;}
.yb0{bottom:738.825000px;}
.ya3{bottom:739.905000px;}
.ya9{bottom:746.205000px;}
.y78{bottom:748.545000px;}
.y17{bottom:756.825000px;}
.y44{bottom:757.905000px;}
.ya2{bottom:760.605000px;}
.ya8{bottom:766.905000px;}
.ycc{bottom:768.165000px;}
.y16{bottom:775.725000px;}
.y43{bottom:778.605000px;}
.ya1{bottom:781.305000px;}
.y77{bottom:787.605000px;}
.ycb{bottom:790.305000px;}
.y15{bottom:794.805000px;}
.y42{bottom:799.305000px;}
.y76{bottom:808.305000px;}
.y14{bottom:813.705000px;}
.y41{bottom:820.005000px;}
.ya0{bottom:822.705000px;}
.y75{bottom:829.005000px;}
.y13{bottom:832.785000px;}
.yca{bottom:833.685000px;}
.y40{bottom:840.705000px;}
.y9f{bottom:843.405000px;}
.ya7{bottom:849.345000px;}
.y74{bottom:849.705000px;}
.y12{bottom:851.685000px;}
.yc9{bottom:855.825000px;}
.y3f{bottom:861.405000px;}
.y9e{bottom:864.105000px;}
.y73{bottom:870.405000px;}
.y11{bottom:870.810000px;}
.y3e{bottom:882.150000px;}
.y9d{bottom:884.850000px;}
.y10{bottom:889.710000px;}
.y72{bottom:891.150000px;}
.yc8{bottom:899.250000px;}
.y3d{bottom:902.850000px;}
.y9c{bottom:905.550000px;}
.yf{bottom:908.610000px;}
.y71{bottom:911.850000px;}
.yc7{bottom:921.390000px;}
.y3c{bottom:923.550000px;}
.y9b{bottom:926.250000px;}
.y70{bottom:932.550000px;}
.y62{bottom:943.890000px;}
.y3b{bottom:944.250000px;}
.y9a{bottom:946.950000px;}
.y6f{bottom:953.250000px;}
.ye{bottom:957.030000px;}
.yc6{bottom:964.770000px;}
.y3a{bottom:964.950000px;}
.y99{bottom:967.650000px;}
.y6e{bottom:973.950000px;}
.yd{bottom:979.170000px;}
.y39{bottom:985.650000px;}
.yc5{bottom:986.910000px;}
.y98{bottom:988.350000px;}
.y6d{bottom:994.650000px;}
.yc{bottom:1000.950000px;}
.y38{bottom:1006.350000px;}
.y97{bottom:1008.690000px;}
.y6c{bottom:1015.350000px;}
.yb{bottom:1020.390000px;}
.y37{bottom:1027.050000px;}
.yc4{bottom:1030.290000px;}
.y6b{bottom:1036.050000px;}
.y96{bottom:1038.390000px;}
.ya{bottom:1046.850000px;}
.y36{bottom:1047.750000px;}
.yc3{bottom:1052.430000px;}
.y6a{bottom:1056.750000px;}
.y35{bottom:1068.450000px;}
.y9{bottom:1076.370000px;}
.y69{bottom:1077.450000px;}
.y34{bottom:1089.150000px;}
.yc2{bottom:1095.810000px;}
.y8{bottom:1097.790000px;}
.y68{bottom:1098.150000px;}
.yc1{bottom:1117.950000px;}
.y7{bottom:1118.490000px;}
.y67{bottom:1118.850000px;}
.y4{bottom:1153.260000px;}
.y3{bottom:1173.240000px;}
.y2{bottom:1193.940000px;}
.y1{bottom:1214.640000px;}
.h8{height:43.244297px;}
.h9{height:47.933437px;}
.h5{height:48.192187px;}
.hd{height:48.547969px;}
.h4{height:50.229844px;}
.hc{height:50.273438px;}
.h7{height:58.651172px;}
.hb{height:64.978594px;}
.ha{height:65.010937px;}
.h6{height:66.757500px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x9{left:136.115987px;}
.x4{left:137.735987px;}
.x3{left:148.175987px;}
.xc{left:159.509987px;}
.xd{left:181.649987px;}
.xb{left:202.169987px;}
.xa{left:234.029987px;}
.x7{left:254.189987px;}
.x8{left:345.674987px;}
.x6{left:415.334987px;}
.x2{left:434.054987px;}
.x5{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-71.680000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.271467pt;}
.ls5{letter-spacing:37.760000pt;}
.ls1{letter-spacing:947.338667pt;}
.ws5{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-2.007040pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.290667pt;}
._9{width:2.595413pt;}
._8{width:4.357120pt;}
._20{width:5.260800pt;}
._3{width:6.151680pt;}
._2{width:7.388160pt;}
._4{width:8.801280pt;}
._e{width:10.374827pt;}
._18{width:12.018347pt;}
._f{width:13.419520pt;}
._17{width:15.104000pt;}
._11{width:16.545280pt;}
._10{width:17.464320pt;}
._6{width:19.136000pt;}
._7{width:20.083200pt;}
._25{width:21.006933pt;}
._5{width:21.903360pt;}
._16{width:22.848000pt;}
._c{width:24.023040pt;}
._14{width:25.512960pt;}
._a{width:26.849280pt;}
._b{width:27.760640pt;}
._24{width:28.800000pt;}
._19{width:29.952000pt;}
._1a{width:30.848000pt;}
._21{width:32.170667pt;}
._22{width:33.365333pt;}
._15{width:35.072000pt;}
._2b{width:36.211200pt;}
._1b{width:37.440000pt;}
._1c{width:38.410667pt;}
._2a{width:39.392000pt;}
._23{width:40.384000pt;}
._1d{width:41.664000pt;}
._1e{width:42.944000pt;}
._28{width:43.904000pt;}
._29{width:45.130667pt;}
._26{width:56.810667pt;}
._27{width:57.856000pt;}
._13{width:58.816000pt;}
._12{width:59.904000pt;}
._d{width:924.298667pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:51.200000pt;}
.y5{bottom:68.992000pt;}
.y61{bottom:120.832000pt;}
.y66{bottom:121.792000pt;}
.y95{bottom:124.192000pt;}
.y33{bottom:135.546667pt;}
.y60{bottom:140.186667pt;}
.y94{bottom:142.586667pt;}
.y32{bottom:155.226667pt;}
.y65{bottom:158.266667pt;}
.y5f{bottom:158.586667pt;}
.yc0{bottom:160.346667pt;}
.y93{bottom:160.986667pt;}
.y31{bottom:175.066667pt;}
.y5e{bottom:176.986667pt;}
.y92{bottom:179.386667pt;}
.y30{bottom:194.906667pt;}
.y5d{bottom:195.386667pt;}
.y91{bottom:197.786667pt;}
.ybf{bottom:198.746667pt;}
.y5c{bottom:213.786667pt;}
.y2f{bottom:214.266667pt;}
.y90{bottom:216.186667pt;}
.ybe{bottom:218.426667pt;}
.y5b{bottom:232.186667pt;}
.y8f{bottom:234.586667pt;}
.y2e{bottom:247.866667pt;}
.y5a{bottom:250.586667pt;}
.y8e{bottom:252.986667pt;}
.ybd{bottom:256.986667pt;}
.y2d{bottom:264.666667pt;}
.y59{bottom:268.986667pt;}
.y8d{bottom:271.386667pt;}
.ybc{bottom:276.666667pt;}
.y2c{bottom:281.626667pt;}
.y58{bottom:287.386667pt;}
.y8c{bottom:289.786667pt;}
.y2b{bottom:298.426667pt;}
.y57{bottom:305.826667pt;}
.y8b{bottom:308.226667pt;}
.ybb{bottom:315.266667pt;}
.y2a{bottom:315.426667pt;}
.y56{bottom:324.226667pt;}
.ya6{bottom:326.306667pt;}
.y8a{bottom:326.626667pt;}
.y29{bottom:332.226667pt;}
.y55{bottom:342.626667pt;}
.ya5{bottom:344.706667pt;}
.y89{bottom:345.026667pt;}
.y28{bottom:349.026667pt;}
.yba{bottom:353.826667pt;}
.y54{bottom:361.026667pt;}
.y88{bottom:363.426667pt;}
.y27{bottom:365.986667pt;}
.yb9{bottom:373.506667pt;}
.y53{bottom:379.426667pt;}
.y87{bottom:381.826667pt;}
.y26{bottom:382.786667pt;}
.y52{bottom:397.826667pt;}
.y25{bottom:399.746667pt;}
.y86{bottom:400.226667pt;}
.yb8{bottom:412.066667pt;}
.y51{bottom:416.226667pt;}
.y24{bottom:416.546667pt;}
.y85{bottom:418.626667pt;}
.yb7{bottom:431.746667pt;}
.y23{bottom:433.346667pt;}
.y50{bottom:434.626667pt;}
.y84{bottom:437.026667pt;}
.y22{bottom:450.306667pt;}
.y4f{bottom:453.026667pt;}
.y83{bottom:455.426667pt;}
.y21{bottom:467.106667pt;}
.yb6{bottom:470.306667pt;}
.y4e{bottom:471.426667pt;}
.y82{bottom:473.826667pt;}
.y20{bottom:484.066667pt;}
.y64{bottom:489.506667pt;}
.y4d{bottom:489.826667pt;}
.yb5{bottom:489.986667pt;}
.y81{bottom:492.226667pt;}
.y4c{bottom:508.226667pt;}
.y80{bottom:510.626667pt;}
.y1f{bottom:518.466667pt;}
.y4b{bottom:526.626667pt;}
.yb4{bottom:528.386667pt;}
.y7f{bottom:528.866667pt;}
.yaf{bottom:536.573333pt;}
.y1e{bottom:537.853333pt;}
.y4a{bottom:544.893333pt;}
.y7e{bottom:547.293333pt;}
.y49{bottom:563.293333pt;}
.y7d{bottom:565.693333pt;}
.yb3{bottom:566.813333pt;}
.yae{bottom:571.293333pt;}
.y1d{bottom:571.613333pt;}
.y63{bottom:581.693333pt;}
.y7c{bottom:584.093333pt;}
.ycf{bottom:585.853333pt;}
.yb2{bottom:586.653333pt;}
.y1c{bottom:588.413333pt;}
.yad{bottom:589.693333pt;}
.y48{bottom:600.093333pt;}
.ya4{bottom:602.173333pt;}
.y7b{bottom:602.493333pt;}
.y1b{bottom:605.213333pt;}
.yac{bottom:608.093333pt;}
.y47{bottom:618.493333pt;}
.y7a{bottom:620.893333pt;}
.yb1{bottom:621.693333pt;}
.y1a{bottom:622.173333pt;}
.yce{bottom:624.573333pt;}
.yab{bottom:626.493333pt;}
.y46{bottom:636.893333pt;}
.y19{bottom:638.973333pt;}
.y79{bottom:639.293333pt;}
.ycd{bottom:644.253333pt;}
.yaa{bottom:644.893333pt;}
.y45{bottom:655.293333pt;}
.y18{bottom:655.933333pt;}
.yb0{bottom:656.733333pt;}
.ya3{bottom:657.693333pt;}
.ya9{bottom:663.293333pt;}
.y78{bottom:665.373333pt;}
.y17{bottom:672.733333pt;}
.y44{bottom:673.693333pt;}
.ya2{bottom:676.093333pt;}
.ya8{bottom:681.693333pt;}
.ycc{bottom:682.813333pt;}
.y16{bottom:689.533333pt;}
.y43{bottom:692.093333pt;}
.ya1{bottom:694.493333pt;}
.y77{bottom:700.093333pt;}
.ycb{bottom:702.493333pt;}
.y15{bottom:706.493333pt;}
.y42{bottom:710.493333pt;}
.y76{bottom:718.493333pt;}
.y14{bottom:723.293333pt;}
.y41{bottom:728.893333pt;}
.ya0{bottom:731.293333pt;}
.y75{bottom:736.893333pt;}
.y13{bottom:740.253333pt;}
.yca{bottom:741.053333pt;}
.y40{bottom:747.293333pt;}
.y9f{bottom:749.693333pt;}
.ya7{bottom:754.973333pt;}
.y74{bottom:755.293333pt;}
.y12{bottom:757.053333pt;}
.yc9{bottom:760.733333pt;}
.y3f{bottom:765.693333pt;}
.y9e{bottom:768.093333pt;}
.y73{bottom:773.693333pt;}
.y11{bottom:774.053333pt;}
.y3e{bottom:784.133333pt;}
.y9d{bottom:786.533333pt;}
.y10{bottom:790.853333pt;}
.y72{bottom:792.133333pt;}
.yc8{bottom:799.333333pt;}
.y3d{bottom:802.533333pt;}
.y9c{bottom:804.933333pt;}
.yf{bottom:807.653333pt;}
.y71{bottom:810.533333pt;}
.yc7{bottom:819.013333pt;}
.y3c{bottom:820.933333pt;}
.y9b{bottom:823.333333pt;}
.y70{bottom:828.933333pt;}
.y62{bottom:839.013333pt;}
.y3b{bottom:839.333333pt;}
.y9a{bottom:841.733333pt;}
.y6f{bottom:847.333333pt;}
.ye{bottom:850.693333pt;}
.yc6{bottom:857.573333pt;}
.y3a{bottom:857.733333pt;}
.y99{bottom:860.133333pt;}
.y6e{bottom:865.733333pt;}
.yd{bottom:870.373333pt;}
.y39{bottom:876.133333pt;}
.yc5{bottom:877.253333pt;}
.y98{bottom:878.533333pt;}
.y6d{bottom:884.133333pt;}
.yc{bottom:889.733333pt;}
.y38{bottom:894.533333pt;}
.y97{bottom:896.613333pt;}
.y6c{bottom:902.533333pt;}
.yb{bottom:907.013333pt;}
.y37{bottom:912.933333pt;}
.yc4{bottom:915.813333pt;}
.y6b{bottom:920.933333pt;}
.y96{bottom:923.013333pt;}
.ya{bottom:930.533333pt;}
.y36{bottom:931.333333pt;}
.yc3{bottom:935.493333pt;}
.y6a{bottom:939.333333pt;}
.y35{bottom:949.733333pt;}
.y9{bottom:956.773333pt;}
.y69{bottom:957.733333pt;}
.y34{bottom:968.133333pt;}
.yc2{bottom:974.053333pt;}
.y8{bottom:975.813333pt;}
.y68{bottom:976.133333pt;}
.yc1{bottom:993.733333pt;}
.y7{bottom:994.213333pt;}
.y67{bottom:994.533333pt;}
.y4{bottom:1025.120000pt;}
.y3{bottom:1042.880000pt;}
.y2{bottom:1061.280000pt;}
.y1{bottom:1079.680000pt;}
.h8{height:38.439375pt;}
.h9{height:42.607500pt;}
.h5{height:42.837500pt;}
.hd{height:43.153750pt;}
.h4{height:44.648750pt;}
.hc{height:44.687500pt;}
.h7{height:52.134375pt;}
.hb{height:57.758750pt;}
.ha{height:57.787500pt;}
.h6{height:59.340000pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x9{left:120.991988pt;}
.x4{left:122.431988pt;}
.x3{left:131.711988pt;}
.xc{left:141.786655pt;}
.xd{left:161.466655pt;}
.xb{left:179.706655pt;}
.xa{left:208.026655pt;}
.x7{left:225.946655pt;}
.x8{left:307.266655pt;}
.x6{left:369.186655pt;}
.x2{left:385.826655pt;}
.x5{left:396.866655pt;}
}




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