
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ff99070fa1fa09f2cc9cbcf9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_02842dd53375c7629d080d11.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_4577e4e2930bddbe170e498e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_cda5b5e1b68f7b2748de3ae8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_dbff14c208707c582c7cfc41.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_11a19e49e575b8029a7a3b19.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6c0f7bda9826d66020c23c9c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:40.320000px;}
.v3{vertical-align:45.360000px;}
.ls17{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls19{letter-spacing:-0.067200px;}
.ls9{letter-spacing:-0.015000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.165600px;}
.lsd{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.199200px;}
.ls11{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:16.650360px;}
.ls16{letter-spacing:47.726640px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.369800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws3{word-spacing:-13.211400px;}
.ws10{word-spacing:-13.159200px;}
.ws11{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:0.760440px;}
.ws4{word-spacing:4.304880px;}
.wsb{word-spacing:5.270760px;}
.wsd{word-spacing:135.280440px;}
._b{margin-left:-3.246600px;}
._a{margin-left:-2.177400px;}
._0{margin-left:-1.110000px;}
._5{width:1.006224px;}
._6{width:2.165221px;}
._2{width:3.187320px;}
._4{width:4.949423px;}
._3{width:6.122988px;}
._c{width:7.395000px;}
._8{width:8.657400px;}
._9{width:9.738598px;}
._10{width:10.761480px;}
._d{width:12.108575px;}
._7{width:14.851800px;}
._1{width:16.290360px;}
._e{width:17.617440px;}
._11{width:19.539000px;}
._12{width:22.124160px;}
._f{width:24.108120px;}
._1c{width:27.414720px;}
._1d{width:29.158200px;}
._13{width:30.360600px;}
._17{width:31.983840px;}
._1e{width:36.817200px;}
._15{width:56.572920px;}
._16{width:57.757080px;}
._1f{width:60.180120px;}
._20{width:61.382520px;}
._23{width:80.417280px;}
._21{width:81.943560px;}
._22{width:83.266200px;}
._1a{width:116.332200px;}
._1b{width:117.354240px;}
._18{width:423.906120px;}
._19{width:425.228760px;}
._14{width:1014.164280px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:4.590000px;}
.ya9{bottom:7.830000px;}
.ya7{bottom:7.920000px;}
.yaf{bottom:14.670000px;}
.yae{bottom:24.480000px;}
.yac{bottom:57.060000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.yab{bottom:79.110000px;}
.y1{bottom:101.640000px;}
.y7a{bottom:117.390000px;}
.ya2{bottom:119.460000px;}
.yd5{bottom:126.480000px;}
.y5d{bottom:131.340000px;}
.y79{bottom:134.940000px;}
.ya1{bottom:137.100000px;}
.yd4{bottom:144.030000px;}
.y5c{bottom:148.980000px;}
.yfa{bottom:152.490000px;}
.y78{bottom:152.580000px;}
.y27{bottom:154.470000px;}
.ya0{bottom:154.650000px;}
.yd3{bottom:161.670000px;}
.y5b{bottom:166.530000px;}
.y26{bottom:172.110000px;}
.y9f{bottom:172.200000px;}
.yf9{bottom:179.130000px;}
.yd2{bottom:179.220000px;}
.y5a{bottom:184.170000px;}
.y77{bottom:188.130000px;}
.y25{bottom:189.660000px;}
.y9e{bottom:189.840000px;}
.yf8{bottom:196.680000px;}
.yd1{bottom:196.770000px;}
.y59{bottom:201.720000px;}
.y76{bottom:205.680000px;}
.y24{bottom:207.300000px;}
.yf7{bottom:214.320000px;}
.yd0{bottom:214.410000px;}
.y58{bottom:219.270000px;}
.y75{bottom:223.320000px;}
.y23{bottom:224.850000px;}
.y9d{bottom:225.390000px;}
.ycf{bottom:231.960000px;}
.y74{bottom:240.870000px;}
.y22{bottom:242.400000px;}
.y9c{bottom:242.940000px;}
.yce{bottom:249.600000px;}
.y57{bottom:254.910000px;}
.yf6{bottom:258.420000px;}
.y73{bottom:258.510000px;}
.y21{bottom:260.040000px;}
.y9b{bottom:260.580000px;}
.ycd{bottom:267.150000px;}
.y56{bottom:272.460000px;}
.y72{bottom:276.060000px;}
.y9a{bottom:278.130000px;}
.ycc{bottom:284.700000px;}
.y55{bottom:290.100000px;}
.y71{bottom:293.610000px;}
.y20{bottom:295.590000px;}
.y99{bottom:295.770000px;}
.ycb{bottom:302.340000px;}
.yf5{bottom:302.610000px;}
.y54{bottom:307.650000px;}
.y70{bottom:311.250000px;}
.y1f{bottom:313.230000px;}
.y98{bottom:313.320000px;}
.yca{bottom:319.890000px;}
.yf4{bottom:320.250000px;}
.y53{bottom:325.200000px;}
.y1e{bottom:330.780000px;}
.yc9{bottom:337.530000px;}
.yf3{bottom:337.800000px;}
.y97{bottom:339.870000px;}
.y52{bottom:342.840000px;}
.y6f{bottom:346.800000px;}
.y1d{bottom:348.330000px;}
.yc8{bottom:355.080000px;}
.yf2{bottom:355.350000px;}
.y51{bottom:360.390000px;}
.y6e{bottom:364.440000px;}
.y1c{bottom:365.970000px;}
.yc7{bottom:372.630000px;}
.y96{bottom:375.510000px;}
.y50{bottom:377.940000px;}
.y6d{bottom:381.990000px;}
.y1b{bottom:383.520000px;}
.yc6{bottom:390.270000px;}
.y95{bottom:393.060000px;}
.y4f{bottom:395.580000px;}
.y6c{bottom:399.540000px;}
.y1a{bottom:401.160000px;}
.yc5{bottom:407.820000px;}
.y94{bottom:410.700000px;}
.y4e{bottom:413.130000px;}
.yf1{bottom:417.090000px;}
.y6b{bottom:417.180000px;}
.y19{bottom:418.710000px;}
.yc4{bottom:425.460000px;}
.y4d{bottom:430.770000px;}
.y6a{bottom:434.730000px;}
.y93{bottom:437.250000px;}
.yc3{bottom:443.010000px;}
.yf0{bottom:443.730000px;}
.y18{bottom:445.620000px;}
.y4c{bottom:448.320000px;}
.y69{bottom:452.370000px;}
.yc2{bottom:460.560000px;}
.yef{bottom:461.280000px;}
.y4b{bottom:465.870000px;}
.y92{bottom:472.830000px;}
.yee{bottom:478.950000px;}
.yc1{bottom:487.500000px;}
.y68{bottom:487.950000px;}
.y4a{bottom:492.810000px;}
.y17{bottom:494.250000px;}
.y91{bottom:499.470000px;}
.y67{bottom:505.500000px;}
.yed{bottom:523.050000px;}
.y66{bottom:523.140000px;}
.y16{bottom:531.240000px;}
.y90{bottom:535.020000px;}
.yc0{bottom:535.830000px;}
.y65{bottom:540.690000px;}
.y49{bottom:541.140000px;}
.y15{bottom:548.880000px;}
.y8f{bottom:552.660000px;}
.ybf{bottom:553.380000px;}
.y64{bottom:558.330000px;}
.y48{bottom:558.690000px;}
.y14{bottom:566.430000px;}
.yec{bottom:567.240000px;}
.ybe{bottom:570.930000px;}
.y63{bottom:575.880000px;}
.y47{bottom:576.330000px;}
.y8e{bottom:579.210000px;}
.y13{bottom:583.980000px;}
.yeb{bottom:584.880000px;}
.ybd{bottom:588.570000px;}
.y62{bottom:593.430000px;}
.y46{bottom:593.880000px;}
.y12{bottom:601.620000px;}
.y113{bottom:602.070000px;}
.yea{bottom:602.430000px;}
.ybc{bottom:606.120000px;}
.y45{bottom:611.430000px;}
.y8d{bottom:614.760000px;}
.y11{bottom:619.170000px;}
.y112{bottom:619.620000px;}
.ybb{bottom:623.760000px;}
.ye9{bottom:628.980000px;}
.y44{bottom:629.070000px;}
.y8c{bottom:632.400000px;}
.y10{bottom:636.810000px;}
.y111{bottom:637.260000px;}
.yba{bottom:641.310000px;}
.y43{bottom:646.620000px;}
.y8b{bottom:649.950000px;}
.yf{bottom:654.360000px;}
.y110{bottom:654.810000px;}
.yb9{bottom:658.860000px;}
.y42{bottom:664.260000px;}
.ye{bottom:671.910000px;}
.y10f{bottom:672.360000px;}
.ye8{bottom:673.170000px;}
.y41{bottom:681.810000px;}
.y8a{bottom:685.590000px;}
.yd{bottom:689.550000px;}
.ye7{bottom:690.810000px;}
.yb8{bottom:694.500000px;}
.y10e{bottom:699.000000px;}
.y61{bottom:699.360000px;}
.y89{bottom:703.140000px;}
.yc{bottom:707.100000px;}
.ye6{bottom:708.360000px;}
.yb7{bottom:712.050000px;}
.y10d{bottom:716.550000px;}
.y60{bottom:717.000000px;}
.y40{bottom:717.360000px;}
.y88{bottom:720.690000px;}
.yb6{bottom:729.690000px;}
.yb{bottom:734.010000px;}
.y3f{bottom:735.000000px;}
.ye5{bottom:735.270000px;}
.y87{bottom:738.330000px;}
.y10c{bottom:743.190000px;}
.yb5{bottom:747.240000px;}
.y3e{bottom:752.550000px;}
.y10b{bottom:760.740000px;}
.yb4{bottom:764.790000px;}
.y3d{bottom:770.190000px;}
.y86{bottom:773.880000px;}
.y10a{bottom:778.290000px;}
.ya{bottom:780.810000px;}
.yb3{bottom:782.430000px;}
.ye4{bottom:783.510000px;}
.y3c{bottom:787.740000px;}
.y85{bottom:791.520000px;}
.yb2{bottom:799.980000px;}
.y109{bottom:804.930000px;}
.y3b{bottom:805.290000px;}
.y84{bottom:809.070000px;}
.ye3{bottom:810.420000px;}
.y9{bottom:816.630000px;}
.y108{bottom:822.480000px;}
.y3a{bottom:822.930000px;}
.y83{bottom:826.620000px;}
.yb1{bottom:834.810000px;}
.y107{bottom:840.030000px;}
.y39{bottom:840.480000px;}
.yaa{bottom:847.050000px;}
.ye2{bottom:847.500000px;}
.y8{bottom:852.630000px;}
.y82{bottom:853.260000px;}
.y38{bottom:858.030000px;}
.y106{bottom:866.670000px;}
.ye1{bottom:874.410000px;}
.y37{bottom:875.670000px;}
.y105{bottom:884.220000px;}
.y7{bottom:888.630000px;}
.y81{bottom:888.810000px;}
.yad{bottom:890.970000px;}
.y5f{bottom:893.670000px;}
.y104{bottom:901.860000px;}
.y80{bottom:906.450000px;}
.y36{bottom:911.220000px;}
.ye0{bottom:911.760000px;}
.ya8{bottom:918.330000px;}
.y7f{bottom:924.000000px;}
.y6{bottom:924.720000px;}
.y103{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y7e{bottom:941.550000px;}
.ya6{bottom:945.600000px;}
.y102{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y7d{bottom:959.190000px;}
.ydf{bottom:960.000000px;}
.y5{bottom:962.970000px;}
.y33{bottom:963.960000px;}
.y101{bottom:972.600000px;}
.yde{bottom:977.550000px;}
.y32{bottom:981.600000px;}
.y7c{bottom:985.740000px;}
.y4{bottom:987.630000px;}
.y100{bottom:990.150000px;}
.ya5{bottom:994.290000px;}
.ydd{bottom:995.190000px;}
.y31{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.ydc{bottom:1012.770000px;}
.yff{bottom:1016.820000px;}
.y5e{bottom:1017.180000px;}
.ya4{bottom:1020.960000px;}
.y7b{bottom:1021.680000px;}
.ydb{bottom:1030.320000px;}
.yfe{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.yda{bottom:1047.960000px;}
.yfd{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.ya3{bottom:1056.870000px;}
.yd9{bottom:1065.510000px;}
.y2e{bottom:1069.920000px;}
.yfc{bottom:1078.560000px;}
.yd8{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.yfb{bottom:1096.110000px;}
.yd7{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.yd6{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.hc{height:43.200000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:91.222383px;}
.hd{height:96.027539px;}
.hb{height:97.830000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:63.540000px;}
.w4{width:116.850000px;}
.w5{width:119.160000px;}
.w3{width:215.910000px;}
.w7{width:236.820000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.xf{left:11.340000px;}
.xb{left:16.110000px;}
.x7{left:27.450000px;}
.xe{left:31.770000px;}
.xc{left:36.090000px;}
.xd{left:37.170000px;}
.x5{left:50.670000px;}
.x10{left:52.290000px;}
.x1{left:68.040000px;}
.x11{left:82.350000px;}
.x13{left:111.239987px;}
.x4{left:187.770000px;}
.x2{left:202.799987px;}
.x12{left:322.859987px;}
.x6{left:404.400000px;}
.x8{left:522.060000px;}
.x9{left:641.940000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:35.840000pt;}
.v3{vertical-align:40.320000pt;}
.ls17{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls19{letter-spacing:-0.059733pt;}
.ls9{letter-spacing:-0.013333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.147200pt;}
.lsd{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.177067pt;}
.ls11{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:14.800320pt;}
.ls16{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.884267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws3{word-spacing:-11.743467pt;}
.ws10{word-spacing:-11.697067pt;}
.ws11{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:0.675947pt;}
.ws4{word-spacing:3.826560pt;}
.wsb{word-spacing:4.685120pt;}
.wsd{word-spacing:120.249280pt;}
._b{margin-left:-2.885867pt;}
._a{margin-left:-1.935466pt;}
._0{margin-left:-0.986667pt;}
._5{width:0.894422pt;}
._6{width:1.924641pt;}
._2{width:2.833173pt;}
._4{width:4.399487pt;}
._3{width:5.442656pt;}
._c{width:6.573334pt;}
._8{width:7.695467pt;}
._9{width:8.656532pt;}
._10{width:9.565760pt;}
._d{width:10.763178pt;}
._7{width:13.201600pt;}
._1{width:14.480320pt;}
._e{width:15.659947pt;}
._11{width:17.368000pt;}
._12{width:19.665920pt;}
._f{width:21.429440pt;}
._1c{width:24.368640pt;}
._1d{width:25.918400pt;}
._13{width:26.987200pt;}
._17{width:28.430080pt;}
._1e{width:32.726400pt;}
._15{width:50.287040pt;}
._16{width:51.339627pt;}
._1f{width:53.493440pt;}
._20{width:54.562240pt;}
._23{width:71.482026pt;}
._21{width:72.838720pt;}
._22{width:74.014400pt;}
._1a{width:103.406400pt;}
._1b{width:104.314880pt;}
._18{width:376.805440pt;}
._19{width:377.981120pt;}
._14{width:901.479360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:4.080000pt;}
.ya9{bottom:6.960000pt;}
.ya7{bottom:7.040000pt;}
.yaf{bottom:13.040000pt;}
.yae{bottom:21.760000pt;}
.yac{bottom:50.720000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.yab{bottom:70.320000pt;}
.y1{bottom:90.346667pt;}
.y7a{bottom:104.346667pt;}
.ya2{bottom:106.186667pt;}
.yd5{bottom:112.426667pt;}
.y5d{bottom:116.746667pt;}
.y79{bottom:119.946667pt;}
.ya1{bottom:121.866667pt;}
.yd4{bottom:128.026667pt;}
.y5c{bottom:132.426667pt;}
.yfa{bottom:135.546667pt;}
.y78{bottom:135.626667pt;}
.y27{bottom:137.306667pt;}
.ya0{bottom:137.466667pt;}
.yd3{bottom:143.706667pt;}
.y5b{bottom:148.026667pt;}
.y26{bottom:152.986667pt;}
.y9f{bottom:153.066667pt;}
.yf9{bottom:159.226667pt;}
.yd2{bottom:159.306667pt;}
.y5a{bottom:163.706667pt;}
.y77{bottom:167.226667pt;}
.y25{bottom:168.586667pt;}
.y9e{bottom:168.746667pt;}
.yf8{bottom:174.826667pt;}
.yd1{bottom:174.906667pt;}
.y59{bottom:179.306667pt;}
.y76{bottom:182.826667pt;}
.y24{bottom:184.266667pt;}
.yf7{bottom:190.506667pt;}
.yd0{bottom:190.586667pt;}
.y58{bottom:194.906667pt;}
.y75{bottom:198.506667pt;}
.y23{bottom:199.866667pt;}
.y9d{bottom:200.346667pt;}
.ycf{bottom:206.186667pt;}
.y74{bottom:214.106667pt;}
.y22{bottom:215.466667pt;}
.y9c{bottom:215.946667pt;}
.yce{bottom:221.866667pt;}
.y57{bottom:226.586667pt;}
.yf6{bottom:229.706667pt;}
.y73{bottom:229.786667pt;}
.y21{bottom:231.146667pt;}
.y9b{bottom:231.626667pt;}
.ycd{bottom:237.466667pt;}
.y56{bottom:242.186667pt;}
.y72{bottom:245.386667pt;}
.y9a{bottom:247.226667pt;}
.ycc{bottom:253.066667pt;}
.y55{bottom:257.866667pt;}
.y71{bottom:260.986667pt;}
.y20{bottom:262.746667pt;}
.y99{bottom:262.906667pt;}
.ycb{bottom:268.746667pt;}
.yf5{bottom:268.986667pt;}
.y54{bottom:273.466667pt;}
.y70{bottom:276.666667pt;}
.y1f{bottom:278.426667pt;}
.y98{bottom:278.506667pt;}
.yca{bottom:284.346667pt;}
.yf4{bottom:284.666667pt;}
.y53{bottom:289.066667pt;}
.y1e{bottom:294.026667pt;}
.yc9{bottom:300.026667pt;}
.yf3{bottom:300.266667pt;}
.y97{bottom:302.106667pt;}
.y52{bottom:304.746667pt;}
.y6f{bottom:308.266667pt;}
.y1d{bottom:309.626667pt;}
.yc8{bottom:315.626667pt;}
.yf2{bottom:315.866667pt;}
.y51{bottom:320.346667pt;}
.y6e{bottom:323.946667pt;}
.y1c{bottom:325.306667pt;}
.yc7{bottom:331.226667pt;}
.y96{bottom:333.786667pt;}
.y50{bottom:335.946667pt;}
.y6d{bottom:339.546667pt;}
.y1b{bottom:340.906667pt;}
.yc6{bottom:346.906667pt;}
.y95{bottom:349.386667pt;}
.y4f{bottom:351.626667pt;}
.y6c{bottom:355.146667pt;}
.y1a{bottom:356.586667pt;}
.yc5{bottom:362.506667pt;}
.y94{bottom:365.066667pt;}
.y4e{bottom:367.226667pt;}
.yf1{bottom:370.746667pt;}
.y6b{bottom:370.826667pt;}
.y19{bottom:372.186667pt;}
.yc4{bottom:378.186667pt;}
.y4d{bottom:382.906667pt;}
.y6a{bottom:386.426667pt;}
.y93{bottom:388.666667pt;}
.yc3{bottom:393.786667pt;}
.yf0{bottom:394.426667pt;}
.y18{bottom:396.106667pt;}
.y4c{bottom:398.506667pt;}
.y69{bottom:402.106667pt;}
.yc2{bottom:409.386667pt;}
.yef{bottom:410.026667pt;}
.y4b{bottom:414.106667pt;}
.y92{bottom:420.293333pt;}
.yee{bottom:425.733333pt;}
.yc1{bottom:433.333333pt;}
.y68{bottom:433.733333pt;}
.y4a{bottom:438.053333pt;}
.y17{bottom:439.333333pt;}
.y91{bottom:443.973333pt;}
.y67{bottom:449.333333pt;}
.yed{bottom:464.933333pt;}
.y66{bottom:465.013333pt;}
.y16{bottom:472.213333pt;}
.y90{bottom:475.573333pt;}
.yc0{bottom:476.293333pt;}
.y65{bottom:480.613333pt;}
.y49{bottom:481.013333pt;}
.y15{bottom:487.893333pt;}
.y8f{bottom:491.253333pt;}
.ybf{bottom:491.893333pt;}
.y64{bottom:496.293333pt;}
.y48{bottom:496.613333pt;}
.y14{bottom:503.493333pt;}
.yec{bottom:504.213333pt;}
.ybe{bottom:507.493333pt;}
.y63{bottom:511.893333pt;}
.y47{bottom:512.293333pt;}
.y8e{bottom:514.853333pt;}
.y13{bottom:519.093333pt;}
.yeb{bottom:519.893333pt;}
.ybd{bottom:523.173333pt;}
.y62{bottom:527.493333pt;}
.y46{bottom:527.893333pt;}
.y12{bottom:534.773333pt;}
.y113{bottom:535.173333pt;}
.yea{bottom:535.493333pt;}
.ybc{bottom:538.773333pt;}
.y45{bottom:543.493333pt;}
.y8d{bottom:546.453333pt;}
.y11{bottom:550.373333pt;}
.y112{bottom:550.773333pt;}
.ybb{bottom:554.453333pt;}
.ye9{bottom:559.093333pt;}
.y44{bottom:559.173333pt;}
.y8c{bottom:562.133333pt;}
.y10{bottom:566.053333pt;}
.y111{bottom:566.453333pt;}
.yba{bottom:570.053333pt;}
.y43{bottom:574.773333pt;}
.y8b{bottom:577.733333pt;}
.yf{bottom:581.653333pt;}
.y110{bottom:582.053333pt;}
.yb9{bottom:585.653333pt;}
.y42{bottom:590.453333pt;}
.ye{bottom:597.253333pt;}
.y10f{bottom:597.653333pt;}
.ye8{bottom:598.373333pt;}
.y41{bottom:606.053333pt;}
.y8a{bottom:609.413333pt;}
.yd{bottom:612.933333pt;}
.ye7{bottom:614.053333pt;}
.yb8{bottom:617.333333pt;}
.y10e{bottom:621.333333pt;}
.y61{bottom:621.653333pt;}
.y89{bottom:625.013333pt;}
.yc{bottom:628.533333pt;}
.ye6{bottom:629.653333pt;}
.yb7{bottom:632.933333pt;}
.y10d{bottom:636.933333pt;}
.y60{bottom:637.333333pt;}
.y40{bottom:637.653333pt;}
.y88{bottom:640.613333pt;}
.yb6{bottom:648.613333pt;}
.yb{bottom:652.453333pt;}
.y3f{bottom:653.333333pt;}
.ye5{bottom:653.573333pt;}
.y87{bottom:656.293333pt;}
.y10c{bottom:660.613333pt;}
.yb5{bottom:664.213333pt;}
.y3e{bottom:668.933333pt;}
.y10b{bottom:676.213333pt;}
.yb4{bottom:679.813333pt;}
.y3d{bottom:684.613333pt;}
.y86{bottom:687.893333pt;}
.y10a{bottom:691.813333pt;}
.ya{bottom:694.053333pt;}
.yb3{bottom:695.493333pt;}
.ye4{bottom:696.453333pt;}
.y3c{bottom:700.213333pt;}
.y85{bottom:703.573333pt;}
.yb2{bottom:711.093333pt;}
.y109{bottom:715.493333pt;}
.y3b{bottom:715.813333pt;}
.y84{bottom:719.173333pt;}
.ye3{bottom:720.373333pt;}
.y9{bottom:725.893333pt;}
.y108{bottom:731.093333pt;}
.y3a{bottom:731.493333pt;}
.y83{bottom:734.773333pt;}
.yb1{bottom:742.053333pt;}
.y107{bottom:746.693333pt;}
.y39{bottom:747.093333pt;}
.yaa{bottom:752.933333pt;}
.ye2{bottom:753.333333pt;}
.y8{bottom:757.893333pt;}
.y82{bottom:758.453333pt;}
.y38{bottom:762.693333pt;}
.y106{bottom:770.373333pt;}
.ye1{bottom:777.253333pt;}
.y37{bottom:778.373333pt;}
.y105{bottom:785.973333pt;}
.y7{bottom:789.893333pt;}
.y81{bottom:790.053333pt;}
.yad{bottom:791.973333pt;}
.y5f{bottom:794.373333pt;}
.y104{bottom:801.653333pt;}
.y80{bottom:805.733333pt;}
.y36{bottom:809.973333pt;}
.ye0{bottom:810.453333pt;}
.ya8{bottom:816.293333pt;}
.y7f{bottom:821.333333pt;}
.y6{bottom:821.973333pt;}
.y103{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y7e{bottom:836.933333pt;}
.ya6{bottom:840.533333pt;}
.y102{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y7d{bottom:852.613333pt;}
.ydf{bottom:853.333333pt;}
.y5{bottom:855.973333pt;}
.y33{bottom:856.853333pt;}
.y101{bottom:864.533333pt;}
.yde{bottom:868.933333pt;}
.y32{bottom:872.533333pt;}
.y7c{bottom:876.213333pt;}
.y4{bottom:877.893333pt;}
.y100{bottom:880.133333pt;}
.ya5{bottom:883.813333pt;}
.ydd{bottom:884.613333pt;}
.y31{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.ydc{bottom:900.240000pt;}
.yff{bottom:903.840000pt;}
.y5e{bottom:904.160000pt;}
.ya4{bottom:907.520000pt;}
.y7b{bottom:908.160000pt;}
.ydb{bottom:915.840000pt;}
.yfe{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.yda{bottom:931.520000pt;}
.yfd{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.ya3{bottom:939.440000pt;}
.yd9{bottom:947.120000pt;}
.y2e{bottom:951.040000pt;}
.yfc{bottom:958.720000pt;}
.yd8{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.yfb{bottom:974.320000pt;}
.yd7{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.yd6{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.hc{height:38.400000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:81.086563pt;}
.hd{height:85.357812pt;}
.hb{height:86.960000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:56.480000pt;}
.w4{width:103.866667pt;}
.w5{width:105.920000pt;}
.w3{width:191.920000pt;}
.w7{width:210.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.xf{left:10.080000pt;}
.xb{left:14.320000pt;}
.x7{left:24.400000pt;}
.xe{left:28.240000pt;}
.xc{left:32.080000pt;}
.xd{left:33.040000pt;}
.x5{left:45.040000pt;}
.x10{left:46.480000pt;}
.x1{left:60.480000pt;}
.x11{left:73.200000pt;}
.x13{left:98.879988pt;}
.x4{left:166.906667pt;}
.x2{left:180.266655pt;}
.x12{left:286.986655pt;}
.x6{left:359.466667pt;}
.x8{left:464.053333pt;}
.x9{left:570.613333pt;}
.x3{left:704.053322pt;}
}




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