
    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_5ac70a43463f383d2d2ab153.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e33c773e1f28b0f615723dc9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_640b002448870e91b615d9cf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_446737c5b6474eff0f3ab1d9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_37a4a1977d1276b7ec65cf8b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cb57d713267e1ad8031805a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5903a4cb3da4f134f57bc890.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.463800px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.840000px;}
.lsb{letter-spacing:17.424000px;}
.lsa{letter-spacing:53.424000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.648000px;}
.ws6{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.208000px;}
.ws0{word-spacing:-14.506440px;}
.ws2{word-spacing:-11.880000px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-5.131680px;}
._8{margin-left:-4.104000px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.229120px;}
._4{width:3.525120px;}
._5{width:4.656960px;}
._c{width:6.413760px;}
._d{width:8.156160px;}
._f{width:9.253440px;}
._e{width:10.581120px;}
._12{width:12.277440px;}
._10{width:13.714560px;}
._6{width:15.552000px;}
._7{width:16.632000px;}
._b{width:19.526400px;}
._9{width:20.664000px;}
._a{width:22.711200px;}
._17{width:24.140160px;}
._1f{width:25.375680px;}
._13{width:26.406720px;}
._14{width:27.532800px;}
._15{width:28.696320px;}
._1c{width:32.826720px;}
._1a{width:33.874560px;}
._1b{width:35.210880px;}
._21{width:36.881280px;}
._20{width:38.157120px;}
._25{width:43.268160px;}
._28{width:54.881280px;}
._29{width:56.214720px;}
._2a{width:77.074560px;}
._2c{width:92.173440px;}
._2b{width:93.185280px;}
._24{width:99.532800px;}
._19{width:120.600000px;}
._27{width:127.365120px;}
._26{width:130.032000px;}
._23{width:166.176000px;}
._22{width:184.608000px;}
._1e{width:198.720000px;}
._1d{width:216.792000px;}
._18{width:245.102400px;}
._16{width:292.124160px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc4{color:rgb(27,27,27);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:7.200000px;}
.y71{bottom:7.560000px;}
.y8a{bottom:7.605000px;}
.y45{bottom:7.914000px;}
.y76{bottom:7.920000px;}
.y6f{bottom:9.000000px;}
.y6e{bottom:10.440000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y50{bottom:14.040000px;}
.y4d{bottom:14.445000px;}
.y4b{bottom:15.120000px;}
.y49{bottom:15.840000px;}
.y47{bottom:20.160000px;}
.y7f{bottom:20.925000px;}
.y6b{bottom:30.960000px;}
.yaa{bottom:31.314000px;}
.y7c{bottom:31.320000px;}
.ya8{bottom:31.365000px;}
.y44{bottom:31.674000px;}
.y8d{bottom:31.680000px;}
.y82{bottom:31.710000px;}
.y6a{bottom:54.720000px;}
.ya4{bottom:55.080000px;}
.y43{bottom:55.479000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y34{bottom:107.676000px;}
.y46{bottom:109.836000px;}
.yc5{bottom:115.236000px;}
.yf7{bottom:127.116000px;}
.ya9{bottom:128.196000px;}
.y33{bottom:131.796000px;}
.y87{bottom:136.476000px;}
.yc4{bottom:140.076000px;}
.y79{bottom:142.596000px;}
.y42{bottom:146.916000px;}
.yf6{bottom:150.870000px;}
.y32{bottom:155.550000px;}
.y78{bottom:159.510000px;}
.y86{bottom:160.230000px;}
.yc3{bottom:164.550000px;}
.yf5{bottom:174.630000px;}
.ya7{bottom:176.430000px;}
.y31{bottom:179.310000px;}
.y77{bottom:183.990000px;}
.yc2{bottom:189.030000px;}
.yf4{bottom:198.435000px;}
.y30{bottom:203.115000px;}
.y85{bottom:207.795000px;}
.y75{bottom:208.515000px;}
.yc1{bottom:213.555000px;}
.yf3{bottom:222.555000px;}
.ya6{bottom:224.715000px;}
.y41{bottom:226.515000px;}
.y2f{bottom:226.875000px;}
.y84{bottom:231.555000px;}
.y74{bottom:233.355000px;}
.yf2{bottom:246.315000px;}
.y83{bottom:248.475000px;}
.y40{bottom:250.275000px;}
.y2e{bottom:250.635000px;}
.y73{bottom:257.835000px;}
.yc0{bottom:269.355000px;}
.yf1{bottom:270.075000px;}
.ya5{bottom:272.955000px;}
.y2d{bottom:274.395000px;}
.y72{bottom:282.315000px;}
.ybf{bottom:293.475000px;}
.yf0{bottom:293.835000px;}
.y81{bottom:296.715000px;}
.y2c{bottom:298.155000px;}
.y70{bottom:306.795000px;}
.ybe{bottom:317.235000px;}
.yef{bottom:317.595000px;}
.y3f{bottom:321.585000px;}
.y2b{bottom:321.945000px;}
.y6d{bottom:331.305000px;}
.ybd{bottom:341.025000px;}
.yee{bottom:341.385000px;}
.y80{bottom:345.345000px;}
.y2a{bottom:346.065000px;}
.y69{bottom:358.665000px;}
.ybc{bottom:364.785000px;}
.yed{bottom:365.145000px;}
.y29{bottom:369.825000px;}
.ybb{bottom:388.545000px;}
.yec{bottom:388.905000px;}
.y28{bottom:393.585000px;}
.yba{bottom:412.305000px;}
.yeb{bottom:412.665000px;}
.y27{bottom:417.345000px;}
.yb9{bottom:436.425000px;}
.yea{bottom:436.785000px;}
.y68{bottom:438.225000px;}
.y26{bottom:441.105000px;}
.y7e{bottom:441.825000px;}
.ya3{bottom:457.710000px;}
.yb8{bottom:460.230000px;}
.ye9{bottom:460.590000px;}
.y67{bottom:462.030000px;}
.y25{bottom:464.910000px;}
.y7d{bottom:479.670000px;}
.ya2{bottom:482.190000px;}
.yb7{bottom:483.990000px;}
.ye8{bottom:484.350000px;}
.y66{bottom:486.150000px;}
.y24{bottom:488.670000px;}
.ya1{bottom:505.950000px;}
.yb6{bottom:507.750000px;}
.ye7{bottom:508.110000px;}
.y65{bottom:509.910000px;}
.y23{bottom:512.430000px;}
.y7b{bottom:527.910000px;}
.ya0{bottom:529.710000px;}
.yb5{bottom:531.510000px;}
.y64{bottom:533.670000px;}
.y22{bottom:536.550000px;}
.y9f{bottom:553.470000px;}
.yb4{bottom:555.270000px;}
.ye6{bottom:555.630000px;}
.y63{bottom:557.430000px;}
.y21{bottom:560.310000px;}
.y9e{bottom:577.260000px;}
.yb3{bottom:579.060000px;}
.ye5{bottom:579.420000px;}
.y62{bottom:581.220000px;}
.y7a{bottom:583.740000px;}
.y20{bottom:584.100000px;}
.y9d{bottom:601.020000px;}
.yb2{bottom:602.820000px;}
.ye4{bottom:603.180000px;}
.y61{bottom:604.980000px;}
.y1f{bottom:607.860000px;}
.y9c{bottom:624.780000px;}
.yb1{bottom:626.580000px;}
.ye3{bottom:627.300000px;}
.y60{bottom:629.100000px;}
.y1e{bottom:631.620000px;}
.y9b{bottom:648.540000px;}
.yb0{bottom:650.700000px;}
.ye2{bottom:651.060000px;}
.y5f{bottom:652.860000px;}
.y1d{bottom:655.020000px;}
.y3e{bottom:655.380000px;}
.y9a{bottom:672.660000px;}
.yaf{bottom:674.460000px;}
.ye1{bottom:674.820000px;}
.y5e{bottom:676.620000px;}
.y1c{bottom:678.780000px;}
.y3d{bottom:679.140000px;}
.y99{bottom:696.420000px;}
.yae{bottom:698.220000px;}
.ye0{bottom:698.580000px;}
.y5d{bottom:700.410000px;}
.y1b{bottom:702.930000px;}
.y98{bottom:720.210000px;}
.yad{bottom:722.010000px;}
.ydf{bottom:722.370000px;}
.y5c{bottom:724.170000px;}
.y1a{bottom:727.050000px;}
.y97{bottom:743.970000px;}
.yac{bottom:745.770000px;}
.yde{bottom:746.130000px;}
.y5b{bottom:747.930000px;}
.y19{bottom:750.810000px;}
.y96{bottom:767.730000px;}
.yab{bottom:769.530000px;}
.ydd{bottom:769.890000px;}
.y5a{bottom:771.690000px;}
.y18{bottom:774.570000px;}
.ycd{bottom:786.450000px;}
.y95{bottom:791.490000px;}
.ydc{bottom:793.650000px;}
.y59{bottom:795.450000px;}
.y17{bottom:798.330000px;}
.y94{bottom:815.250000px;}
.ydb{bottom:817.410000px;}
.y58{bottom:819.210000px;}
.y16{bottom:822.090000px;}
.ycc{bottom:835.095000px;}
.y93{bottom:839.055000px;}
.yda{bottom:841.575000px;}
.y57{bottom:843.375000px;}
.y15{bottom:845.895000px;}
.y92{bottom:862.815000px;}
.yd9{bottom:865.335000px;}
.y56{bottom:867.135000px;}
.y14{bottom:869.655000px;}
.y91{bottom:880.095000px;}
.ycb{bottom:883.335000px;}
.yd8{bottom:889.095000px;}
.y55{bottom:890.895000px;}
.y13{bottom:893.415000px;}
.y90{bottom:904.575000px;}
.yd7{bottom:912.855000px;}
.y54{bottom:914.655000px;}
.y12{bottom:917.175000px;}
.yca{bottom:931.575000px;}
.yd6{bottom:936.615000px;}
.y53{bottom:938.415000px;}
.y11{bottom:940.935000px;}
.y3c{bottom:941.295000px;}
.y8f{bottom:952.845000px;}
.yd5{bottom:960.405000px;}
.y52{bottom:962.205000px;}
.y10{bottom:964.725000px;}
.y3b{bottom:965.085000px;}
.y8e{bottom:977.325000px;}
.y51{bottom:979.125000px;}
.yc9{bottom:980.205000px;}
.yd4{bottom:984.165000px;}
.yf{bottom:988.845000px;}
.y8c{bottom:1001.805000px;}
.yd3{bottom:1007.925000px;}
.y4f{bottom:1011.885000px;}
.ye{bottom:1012.605000px;}
.yd2{bottom:1025.205000px;}
.yc8{bottom:1028.445000px;}
.yd{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.y4e{bottom:1042.845000px;}
.y8b{bottom:1050.405000px;}
.yc{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.yd1{bottom:1073.445000px;}
.y89{bottom:1074.885000px;}
.y4c{bottom:1075.605000px;}
.yc7{bottom:1076.685000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.yd0{bottom:1097.970000px;}
.y88{bottom:1099.410000px;}
.y4a{bottom:1106.970000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.ycf{bottom:1122.450000px;}
.yc6{bottom:1125.330000px;}
.y36{bottom:1131.810000px;}
.y48{bottom:1139.010000px;}
.yce{bottom:1146.930000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h15{height:23.760000px;}
.h14{height:23.796000px;}
.h16{height:24.120000px;}
.h13{height:26.640000px;}
.h5{height:27.000000px;}
.h11{height:30.240000px;}
.h10{height:30.636000px;}
.hf{height:31.320000px;}
.he{height:32.040000px;}
.hd{height:36.360000px;}
.h19{height:37.116000px;}
.h18{height:47.520000px;}
.h1b{height:47.556000px;}
.h1a{height:47.880000px;}
.h17{height:47.916000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h12{height:71.280000px;}
.h1c{height:71.640000px;}
.hc{height:71.676000px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h1d{height:74.004654px;}
.h9{height:75.251250px;}
.h8{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:59.076000px;}
.w19{width:78.156000px;}
.w17{width:78.516000px;}
.w1f{width:90.396000px;}
.w1a{width:91.476000px;}
.w1b{width:94.356000px;}
.w16{width:103.356000px;}
.w4{width:104.076000px;}
.w20{width:105.516000px;}
.w15{width:107.676000px;}
.w18{width:111.996000px;}
.w1e{width:114.156000px;}
.w8{width:116.316000px;}
.wf{width:126.756000px;}
.w14{width:130.356000px;}
.w13{width:133.632000px;}
.w12{width:137.556000px;}
.wd{width:139.392000px;}
.w11{width:144.072000px;}
.w6{width:147.996000px;}
.wb{width:156.270000px;}
.wa{width:156.315000px;}
.w7{width:158.835000px;}
.w10{width:166.035000px;}
.w1c{width:169.275000px;}
.wc{width:179.355000px;}
.w9{width:190.875000px;}
.we{width:215.355000px;}
.w5{width:233.385000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:7.560000px;}
.x1c{left:10.080000px;}
.x8{left:39.270000px;}
.x5{left:95.796000px;}
.x1b{left:104.076000px;}
.x1f{left:110.195987px;}
.x29{left:111.276000px;}
.x19{left:113.075987px;}
.x23{left:114.156000px;}
.x14{left:117.396000px;}
.x28{left:120.275987px;}
.xb{left:122.435987px;}
.xe{left:124.595987px;}
.x36{left:128.555987px;}
.x12{left:137.555987px;}
.xd{left:149.111987px;}
.xf{left:158.834987px;}
.xa{left:164.594987px;}
.x3{left:190.154987px;}
.x2a{left:219.675000px;}
.xc{left:256.424987px;}
.x24{left:258.945000px;}
.x20{left:261.825000px;}
.x30{left:268.664987px;}
.x31{left:287.385000px;}
.x6{left:290.634000px;}
.x13{left:296.384987px;}
.x11{left:322.664987px;}
.x2b{left:323.745000px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x16{left:351.510000px;}
.x1a{left:362.669987px;}
.x10{left:372.029987px;}
.x25{left:375.990000px;}
.x7{left:394.710000px;}
.x2c{left:402.990000px;}
.x32{left:404.430000px;}
.x1d{left:452.700000px;}
.x33{left:464.220000px;}
.x21{left:477.900000px;}
.x9{left:498.780000px;}
.x17{left:500.220000px;}
.x26{left:514.260000px;}
.x2d{left:516.060000px;}
.x34{left:579.090000px;}
.x2e{left:594.930000px;}
.x22{left:605.370000px;}
.x1e{left:609.690000px;}
.x27{left:648.615000px;}
.x18{left:659.775000px;}
.x35{left:670.575000px;}
.x2f{left:687.495000px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.746667pt;}
.lsb{letter-spacing:15.488000pt;}
.lsa{letter-spacing:47.488000pt;}
.ws4{word-spacing:-16.576000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.296000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws2{word-spacing:-10.560000pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-4.561493pt;}
._8{margin-left:-3.648000pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:1.981440pt;}
._4{width:3.133440pt;}
._5{width:4.139520pt;}
._c{width:5.701120pt;}
._d{width:7.249920pt;}
._f{width:8.225280pt;}
._e{width:9.405440pt;}
._12{width:10.913280pt;}
._10{width:12.190720pt;}
._6{width:13.824000pt;}
._7{width:14.784000pt;}
._b{width:17.356800pt;}
._9{width:18.368000pt;}
._a{width:20.187733pt;}
._17{width:21.457920pt;}
._1f{width:22.556160pt;}
._13{width:23.472640pt;}
._14{width:24.473600pt;}
._15{width:25.507840pt;}
._1c{width:29.179307pt;}
._1a{width:30.110720pt;}
._1b{width:31.298560pt;}
._21{width:32.783360pt;}
._20{width:33.917440pt;}
._25{width:38.460587pt;}
._28{width:48.783360pt;}
._29{width:49.968640pt;}
._2a{width:68.510720pt;}
._2c{width:81.931947pt;}
._2b{width:82.831360pt;}
._24{width:88.473600pt;}
._19{width:107.200000pt;}
._27{width:113.213440pt;}
._26{width:115.584000pt;}
._23{width:147.712000pt;}
._22{width:164.096000pt;}
._1e{width:176.640000pt;}
._1d{width:192.704000pt;}
._18{width:217.868800pt;}
._16{width:259.665920pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.400000pt;}
.y71{bottom:6.720000pt;}
.y8a{bottom:6.760000pt;}
.y45{bottom:7.034667pt;}
.y76{bottom:7.040000pt;}
.y6f{bottom:8.000000pt;}
.y6e{bottom:9.280000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y50{bottom:12.480000pt;}
.y4d{bottom:12.840000pt;}
.y4b{bottom:13.440000pt;}
.y49{bottom:14.080000pt;}
.y47{bottom:17.920000pt;}
.y7f{bottom:18.600000pt;}
.y6b{bottom:27.520000pt;}
.yaa{bottom:27.834667pt;}
.y7c{bottom:27.840000pt;}
.ya8{bottom:27.880000pt;}
.y44{bottom:28.154667pt;}
.y8d{bottom:28.160000pt;}
.y82{bottom:28.186667pt;}
.y6a{bottom:48.640000pt;}
.ya4{bottom:48.960000pt;}
.y43{bottom:49.314667pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y34{bottom:95.712000pt;}
.y46{bottom:97.632000pt;}
.yc5{bottom:102.432000pt;}
.yf7{bottom:112.992000pt;}
.ya9{bottom:113.952000pt;}
.y33{bottom:117.152000pt;}
.y87{bottom:121.312000pt;}
.yc4{bottom:124.512000pt;}
.y79{bottom:126.752000pt;}
.y42{bottom:130.592000pt;}
.yf6{bottom:134.106667pt;}
.y32{bottom:138.266667pt;}
.y78{bottom:141.786667pt;}
.y86{bottom:142.426667pt;}
.yc3{bottom:146.266667pt;}
.yf5{bottom:155.226667pt;}
.ya7{bottom:156.826667pt;}
.y31{bottom:159.386667pt;}
.y77{bottom:163.546667pt;}
.yc2{bottom:168.026667pt;}
.yf4{bottom:176.386667pt;}
.y30{bottom:180.546667pt;}
.y85{bottom:184.706667pt;}
.y75{bottom:185.346667pt;}
.yc1{bottom:189.826667pt;}
.yf3{bottom:197.826667pt;}
.ya6{bottom:199.746667pt;}
.y41{bottom:201.346667pt;}
.y2f{bottom:201.666667pt;}
.y84{bottom:205.826667pt;}
.y74{bottom:207.426667pt;}
.yf2{bottom:218.946667pt;}
.y83{bottom:220.866667pt;}
.y40{bottom:222.466667pt;}
.y2e{bottom:222.786667pt;}
.y73{bottom:229.186667pt;}
.yc0{bottom:239.426667pt;}
.yf1{bottom:240.066667pt;}
.ya5{bottom:242.626667pt;}
.y2d{bottom:243.906667pt;}
.y72{bottom:250.946667pt;}
.ybf{bottom:260.866667pt;}
.yf0{bottom:261.186667pt;}
.y81{bottom:263.746667pt;}
.y2c{bottom:265.026667pt;}
.y70{bottom:272.706667pt;}
.ybe{bottom:281.986667pt;}
.yef{bottom:282.306667pt;}
.y3f{bottom:285.853333pt;}
.y2b{bottom:286.173333pt;}
.y6d{bottom:294.493333pt;}
.ybd{bottom:303.133333pt;}
.yee{bottom:303.453333pt;}
.y80{bottom:306.973333pt;}
.y2a{bottom:307.613333pt;}
.y69{bottom:318.813333pt;}
.ybc{bottom:324.253333pt;}
.yed{bottom:324.573333pt;}
.y29{bottom:328.733333pt;}
.ybb{bottom:345.373333pt;}
.yec{bottom:345.693333pt;}
.y28{bottom:349.853333pt;}
.yba{bottom:366.493333pt;}
.yeb{bottom:366.813333pt;}
.y27{bottom:370.973333pt;}
.yb9{bottom:387.933333pt;}
.yea{bottom:388.253333pt;}
.y68{bottom:389.533333pt;}
.y26{bottom:392.093333pt;}
.y7e{bottom:392.733333pt;}
.ya3{bottom:406.853333pt;}
.yb8{bottom:409.093333pt;}
.ye9{bottom:409.413333pt;}
.y67{bottom:410.693333pt;}
.y25{bottom:413.253333pt;}
.y7d{bottom:426.373333pt;}
.ya2{bottom:428.613333pt;}
.yb7{bottom:430.213333pt;}
.ye8{bottom:430.533333pt;}
.y66{bottom:432.133333pt;}
.y24{bottom:434.373333pt;}
.ya1{bottom:449.733333pt;}
.yb6{bottom:451.333333pt;}
.ye7{bottom:451.653333pt;}
.y65{bottom:453.253333pt;}
.y23{bottom:455.493333pt;}
.y7b{bottom:469.253333pt;}
.ya0{bottom:470.853333pt;}
.yb5{bottom:472.453333pt;}
.y64{bottom:474.373333pt;}
.y22{bottom:476.933333pt;}
.y9f{bottom:491.973333pt;}
.yb4{bottom:493.573333pt;}
.ye6{bottom:493.893333pt;}
.y63{bottom:495.493333pt;}
.y21{bottom:498.053333pt;}
.y9e{bottom:513.120000pt;}
.yb3{bottom:514.720000pt;}
.ye5{bottom:515.040000pt;}
.y62{bottom:516.640000pt;}
.y7a{bottom:518.880000pt;}
.y20{bottom:519.200000pt;}
.y9d{bottom:534.240000pt;}
.yb2{bottom:535.840000pt;}
.ye4{bottom:536.160000pt;}
.y61{bottom:537.760000pt;}
.y1f{bottom:540.320000pt;}
.y9c{bottom:555.360000pt;}
.yb1{bottom:556.960000pt;}
.ye3{bottom:557.600000pt;}
.y60{bottom:559.200000pt;}
.y1e{bottom:561.440000pt;}
.y9b{bottom:576.480000pt;}
.yb0{bottom:578.400000pt;}
.ye2{bottom:578.720000pt;}
.y5f{bottom:580.320000pt;}
.y1d{bottom:582.240000pt;}
.y3e{bottom:582.560000pt;}
.y9a{bottom:597.920000pt;}
.yaf{bottom:599.520000pt;}
.ye1{bottom:599.840000pt;}
.y5e{bottom:601.440000pt;}
.y1c{bottom:603.360000pt;}
.y3d{bottom:603.680000pt;}
.y99{bottom:619.040000pt;}
.yae{bottom:620.640000pt;}
.ye0{bottom:620.960000pt;}
.y5d{bottom:622.586667pt;}
.y1b{bottom:624.826667pt;}
.y98{bottom:640.186667pt;}
.yad{bottom:641.786667pt;}
.ydf{bottom:642.106667pt;}
.y5c{bottom:643.706667pt;}
.y1a{bottom:646.266667pt;}
.y97{bottom:661.306667pt;}
.yac{bottom:662.906667pt;}
.yde{bottom:663.226667pt;}
.y5b{bottom:664.826667pt;}
.y19{bottom:667.386667pt;}
.y96{bottom:682.426667pt;}
.yab{bottom:684.026667pt;}
.ydd{bottom:684.346667pt;}
.y5a{bottom:685.946667pt;}
.y18{bottom:688.506667pt;}
.ycd{bottom:699.066667pt;}
.y95{bottom:703.546667pt;}
.ydc{bottom:705.466667pt;}
.y59{bottom:707.066667pt;}
.y17{bottom:709.626667pt;}
.y94{bottom:724.666667pt;}
.ydb{bottom:726.586667pt;}
.y58{bottom:728.186667pt;}
.y16{bottom:730.746667pt;}
.ycc{bottom:742.306667pt;}
.y93{bottom:745.826667pt;}
.yda{bottom:748.066667pt;}
.y57{bottom:749.666667pt;}
.y15{bottom:751.906667pt;}
.y92{bottom:766.946667pt;}
.yd9{bottom:769.186667pt;}
.y56{bottom:770.786667pt;}
.y14{bottom:773.026667pt;}
.y91{bottom:782.306667pt;}
.ycb{bottom:785.186667pt;}
.yd8{bottom:790.306667pt;}
.y55{bottom:791.906667pt;}
.y13{bottom:794.146667pt;}
.y90{bottom:804.066667pt;}
.yd7{bottom:811.426667pt;}
.y54{bottom:813.026667pt;}
.y12{bottom:815.266667pt;}
.yca{bottom:828.066667pt;}
.yd6{bottom:832.546667pt;}
.y53{bottom:834.146667pt;}
.y11{bottom:836.386667pt;}
.y3c{bottom:836.706667pt;}
.y8f{bottom:846.973333pt;}
.yd5{bottom:853.693333pt;}
.y52{bottom:855.293333pt;}
.y10{bottom:857.533333pt;}
.y3b{bottom:857.853333pt;}
.y8e{bottom:868.733333pt;}
.y51{bottom:870.333333pt;}
.yc9{bottom:871.293333pt;}
.yd4{bottom:874.813333pt;}
.yf{bottom:878.973333pt;}
.y8c{bottom:890.493333pt;}
.yd3{bottom:895.933333pt;}
.y4f{bottom:899.453333pt;}
.ye{bottom:900.093333pt;}
.yd2{bottom:911.293333pt;}
.yc8{bottom:914.173333pt;}
.yd{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.y4e{bottom:926.973333pt;}
.y8b{bottom:933.693333pt;}
.yc{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.yd1{bottom:954.173333pt;}
.y89{bottom:955.453333pt;}
.y4c{bottom:956.093333pt;}
.yc7{bottom:957.053333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.yd0{bottom:975.973333pt;}
.y88{bottom:977.253333pt;}
.y4a{bottom:983.973333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.ycf{bottom:997.733333pt;}
.yc6{bottom:1000.293333pt;}
.y36{bottom:1006.053333pt;}
.y48{bottom:1012.453333pt;}
.yce{bottom:1019.493333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h15{height:21.120000pt;}
.h14{height:21.152000pt;}
.h16{height:21.440000pt;}
.h13{height:23.680000pt;}
.h5{height:24.000000pt;}
.h11{height:26.880000pt;}
.h10{height:27.232000pt;}
.hf{height:27.840000pt;}
.he{height:28.480000pt;}
.hd{height:32.320000pt;}
.h19{height:32.992000pt;}
.h18{height:42.240000pt;}
.h1b{height:42.272000pt;}
.h1a{height:42.560000pt;}
.h17{height:42.592000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h12{height:63.360000pt;}
.h1c{height:63.680000pt;}
.hc{height:63.712000pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h1d{height:65.781915pt;}
.h9{height:66.890000pt;}
.h8{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:52.512000pt;}
.w19{width:69.472000pt;}
.w17{width:69.792000pt;}
.w1f{width:80.352000pt;}
.w1a{width:81.312000pt;}
.w1b{width:83.872000pt;}
.w16{width:91.872000pt;}
.w4{width:92.512000pt;}
.w20{width:93.792000pt;}
.w15{width:95.712000pt;}
.w18{width:99.552000pt;}
.w1e{width:101.472000pt;}
.w8{width:103.392000pt;}
.wf{width:112.672000pt;}
.w14{width:115.872000pt;}
.w13{width:118.784000pt;}
.w12{width:122.272000pt;}
.wd{width:123.904000pt;}
.w11{width:128.064000pt;}
.w6{width:131.552000pt;}
.wb{width:138.906667pt;}
.wa{width:138.946667pt;}
.w7{width:141.186667pt;}
.w10{width:147.586667pt;}
.w1c{width:150.466667pt;}
.wc{width:159.426667pt;}
.w9{width:169.666667pt;}
.we{width:191.426667pt;}
.w5{width:207.453333pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:6.720000pt;}
.x1c{left:8.960000pt;}
.x8{left:34.906667pt;}
.x5{left:85.152000pt;}
.x1b{left:92.512000pt;}
.x1f{left:97.951988pt;}
.x29{left:98.912000pt;}
.x19{left:100.511988pt;}
.x23{left:101.472000pt;}
.x14{left:104.352000pt;}
.x28{left:106.911988pt;}
.xb{left:108.831988pt;}
.xe{left:110.751988pt;}
.x36{left:114.271988pt;}
.x12{left:122.271988pt;}
.xd{left:132.543988pt;}
.xf{left:141.186655pt;}
.xa{left:146.306655pt;}
.x3{left:169.026655pt;}
.x2a{left:195.266667pt;}
.xc{left:227.933322pt;}
.x24{left:230.173333pt;}
.x20{left:232.733333pt;}
.x30{left:238.813322pt;}
.x31{left:255.453333pt;}
.x6{left:258.341333pt;}
.x13{left:263.453322pt;}
.x11{left:286.813322pt;}
.x2b{left:287.773333pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x16{left:312.453333pt;}
.x1a{left:322.373322pt;}
.x10{left:330.693322pt;}
.x25{left:334.213333pt;}
.x7{left:350.853333pt;}
.x2c{left:358.213333pt;}
.x32{left:359.493333pt;}
.x1d{left:402.400000pt;}
.x33{left:412.640000pt;}
.x21{left:424.800000pt;}
.x9{left:443.360000pt;}
.x17{left:444.640000pt;}
.x26{left:457.120000pt;}
.x2d{left:458.720000pt;}
.x34{left:514.746667pt;}
.x2e{left:528.826667pt;}
.x22{left:538.106667pt;}
.x1e{left:541.946667pt;}
.x27{left:576.546667pt;}
.x18{left:586.466667pt;}
.x35{left:596.066667pt;}
.x2f{left:611.106667pt;}
.x1{left:709.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; }
  