
    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_323f88ad97fa6dee00e82420.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_d209a9f01950dffd09420440.woff')format("woff");}.ff2{font-family:ff2;line-height:0.776367;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_b9c53ef9126f2dec46921f24.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0ad3ddef31b862552a99bb68.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_865b2b1affbac0cc48c7454d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ca67729125f1db0fbb0af491.woff')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_f1017248a729eac360d51cdf.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01db82441bf6967259f78c1e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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:-76.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.166800px;}
.ls9{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.146880px;}
.lsb{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.720000px;}
.ls2{letter-spacing:1126.236000px;}
.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;}
}
.ws1{word-spacing:-20.733120px;}
.ws0{word-spacing:-20.566320px;}
.ws8{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws3{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.840000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-4.847280px;}
._7{margin-left:-3.709440px;}
._8{margin-left:-2.583360px;}
._0{margin-left:-1.391040px;}
._1{width:1.111920px;}
._4{width:2.119680px;}
._3{width:3.378240px;}
._2{width:4.968000px;}
._6{width:6.822720px;}
._a{width:8.809920px;}
._5{width:10.465920px;}
._9{width:11.475360px;}
._e{width:12.860640px;}
._10{width:13.908960px;}
._f{width:14.931360px;}
._13{width:16.200000px;}
._b{width:17.951040px;}
._11{width:19.480080px;}
._16{width:20.871840px;}
._20{width:21.879840px;}
._c{width:22.968000px;}
._19{width:23.976000px;}
._d{width:24.984000px;}
._1d{width:26.856000px;}
._24{width:28.076160px;}
._14{width:29.880000px;}
._15{width:31.032000px;}
._1e{width:32.760000px;}
._1f{width:34.704000px;}
._23{width:35.980080px;}
._12{width:37.008000px;}
._1b{width:40.847040px;}
._17{width:42.264000px;}
._1a{width:44.151120px;}
._21{width:48.024000px;}
._22{width:49.104000px;}
._1c{width:52.920000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.240000px;}
.y2{bottom:3.420000px;}
.y75{bottom:3.600000px;}
.y81{bottom:3.780000px;}
.y77{bottom:4.140000px;}
.y73{bottom:8.460000px;}
.y76{bottom:8.820000px;}
.y82{bottom:9.000000px;}
.y6d{bottom:11.160000px;}
.y6f{bottom:11.520000px;}
.y96{bottom:13.140000px;}
.y9d{bottom:13.680000px;}
.y6e{bottom:19.080000px;}
.y70{bottom:19.980000px;}
.y97{bottom:22.680000px;}
.y3{bottom:23.220000px;}
.y6b{bottom:28.440000px;}
.y6{bottom:56.340000px;}
.y5{bottom:76.320000px;}
.y94{bottom:123.840000px;}
.y69{bottom:133.740000px;}
.yb0{bottom:137.016000px;}
.y38{bottom:140.796000px;}
.y93{bottom:144.576000px;}
.y68{bottom:154.470000px;}
.yaf{bottom:155.910000px;}
.y37{bottom:161.490000px;}
.y92{bottom:165.270000px;}
.y67{bottom:175.170000px;}
.y36{bottom:182.190000px;}
.y91{bottom:185.970000px;}
.y66{bottom:195.870000px;}
.y35{bottom:202.890000px;}
.y90{bottom:206.670000px;}
.y65{bottom:216.570000px;}
.y34{bottom:223.590000px;}
.y8f{bottom:227.370000px;}
.y64{bottom:237.270000px;}
.y33{bottom:244.290000px;}
.y8e{bottom:248.070000px;}
.y63{bottom:257.970000px;}
.y32{bottom:264.990000px;}
.y8d{bottom:268.770000px;}
.y62{bottom:278.670000px;}
.y31{bottom:285.690000px;}
.y8c{bottom:289.470000px;}
.y61{bottom:299.370000px;}
.y30{bottom:306.390000px;}
.y8b{bottom:310.170000px;}
.y60{bottom:320.070000px;}
.y2f{bottom:327.090000px;}
.y8a{bottom:330.870000px;}
.y5f{bottom:340.770000px;}
.y2e{bottom:347.790000px;}
.y89{bottom:351.570000px;}
.y5e{bottom:361.470000px;}
.y2d{bottom:368.490000px;}
.y88{bottom:372.270000px;}
.y5d{bottom:382.170000px;}
.y2c{bottom:389.235000px;}
.y87{bottom:393.015000px;}
.y5c{bottom:402.915000px;}
.y2b{bottom:409.575000px;}
.y86{bottom:413.715000px;}
.y5b{bottom:423.615000px;}
.yd2{bottom:426.855000px;}
.y2a{bottom:428.475000px;}
.y85{bottom:434.415000px;}
.y5a{bottom:444.315000px;}
.yd1{bottom:445.755000px;}
.y29{bottom:447.555000px;}
.y84{bottom:455.115000px;}
.yd0{bottom:464.835000px;}
.y59{bottom:465.015000px;}
.y28{bottom:466.455000px;}
.y83{bottom:472.575000px;}
.yae{bottom:475.815000px;}
.ycf{bottom:483.735000px;}
.y27{bottom:485.535000px;}
.y58{bottom:485.715000px;}
.y80{bottom:489.855000px;}
.yad{bottom:496.515000px;}
.yce{bottom:502.815000px;}
.y26{bottom:504.435000px;}
.y57{bottom:506.415000px;}
.y7f{bottom:508.035000px;}
.yac{bottom:517.215000px;}
.ycd{bottom:521.715000px;}
.y25{bottom:523.515000px;}
.y7e{bottom:525.315000px;}
.y56{bottom:527.115000px;}
.yab{bottom:537.915000px;}
.ycc{bottom:540.615000px;}
.y24{bottom:542.415000px;}
.y7d{bottom:542.595000px;}
.y55{bottom:547.815000px;}
.yaa{bottom:558.615000px;}
.ycb{bottom:559.695000px;}
.y7c{bottom:559.875000px;}
.y23{bottom:561.315000px;}
.y54{bottom:568.515000px;}
.y7b{bottom:576.975000px;}
.yca{bottom:578.595000px;}
.ya9{bottom:579.315000px;}
.y22{bottom:580.395000px;}
.y53{bottom:589.215000px;}
.y7a{bottom:594.255000px;}
.yc9{bottom:597.675000px;}
.y21{bottom:599.295000px;}
.ya8{bottom:600.015000px;}
.y52{bottom:609.915000px;}
.y79{bottom:611.535000px;}
.yc8{bottom:616.575000px;}
.y20{bottom:618.375000px;}
.ya7{bottom:620.715000px;}
.y78{bottom:628.815000px;}
.y51{bottom:630.615000px;}
.yc7{bottom:635.475000px;}
.y1f{bottom:637.275000px;}
.ya6{bottom:641.445000px;}
.y74{bottom:646.125000px;}
.y50{bottom:651.345000px;}
.yc6{bottom:654.585000px;}
.ya5{bottom:662.145000px;}
.y71{bottom:664.305000px;}
.y4f{bottom:672.045000px;}
.yc5{bottom:673.485000px;}
.y1e{bottom:675.285000px;}
.y6a{bottom:682.305000px;}
.ya4{bottom:682.845000px;}
.yc4{bottom:692.565000px;}
.y4e{bottom:692.745000px;}
.y1d{bottom:694.185000px;}
.ya3{bottom:703.545000px;}
.yc3{bottom:711.465000px;}
.y1c{bottom:713.265000px;}
.y4d{bottom:713.445000px;}
.y6c{bottom:717.045000px;}
.ya2{bottom:724.245000px;}
.yc2{bottom:730.365000px;}
.y1b{bottom:732.165000px;}
.y4c{bottom:734.145000px;}
.ya1{bottom:744.945000px;}
.yc1{bottom:749.445000px;}
.y1a{bottom:751.065000px;}
.y4b{bottom:754.845000px;}
.ya0{bottom:765.645000px;}
.yc0{bottom:768.345000px;}
.y19{bottom:770.145000px;}
.y4a{bottom:775.545000px;}
.y9f{bottom:786.345000px;}
.ybf{bottom:787.425000px;}
.y18{bottom:789.045000px;}
.y49{bottom:796.245000px;}
.ybe{bottom:806.325000px;}
.y9e{bottom:807.045000px;}
.y17{bottom:808.125000px;}
.y48{bottom:816.945000px;}
.y9c{bottom:824.505000px;}
.ybd{bottom:825.225000px;}
.y16{bottom:827.025000px;}
.y47{bottom:837.645000px;}
.y9b{bottom:844.305000px;}
.y15{bottom:845.925000px;}
.y46{bottom:858.345000px;}
.y9a{bottom:863.205000px;}
.y14{bottom:865.005000px;}
.y45{bottom:879.045000px;}
.ybc{bottom:882.285000px;}
.y13{bottom:883.905000px;}
.y44{bottom:899.790000px;}
.y99{bottom:901.230000px;}
.y12{bottom:903.030000px;}
.y98{bottom:920.310000px;}
.y43{bottom:920.490000px;}
.y11{bottom:921.930000px;}
.ybb{bottom:939.210000px;}
.y95{bottom:939.930000px;}
.y10{bottom:941.010000px;}
.y42{bottom:941.190000px;}
.yba{bottom:958.110000px;}
.yf{bottom:959.910000px;}
.y41{bottom:961.890000px;}
.yb9{bottom:977.190000px;}
.ye{bottom:978.810000px;}
.y40{bottom:982.590000px;}
.yb8{bottom:996.090000px;}
.yd{bottom:997.890000px;}
.y3f{bottom:1003.290000px;}
.yb7{bottom:1015.170000px;}
.yc{bottom:1016.790000px;}
.y3e{bottom:1023.990000px;}
.yb6{bottom:1034.070000px;}
.yb{bottom:1035.870000px;}
.y3d{bottom:1044.690000px;}
.yb5{bottom:1052.970000px;}
.ya{bottom:1055.130000px;}
.y3c{bottom:1065.390000px;}
.yb4{bottom:1072.050000px;}
.y9{bottom:1076.370000px;}
.y3b{bottom:1086.090000px;}
.yb3{bottom:1090.950000px;}
.y8{bottom:1100.490000px;}
.y3a{bottom:1106.790000px;}
.yb2{bottom:1110.030000px;}
.y7{bottom:1124.610000px;}
.y39{bottom:1127.490000px;}
.yb1{bottom:1128.930000px;}
.y4{bottom:1154.880000px;}
.y1{bottom:1170.180000px;}
.h11{height:17.100000px;}
.h16{height:17.280000px;}
.h15{height:17.316000px;}
.h14{height:18.180000px;}
.h18{height:18.900000px;}
.h19{height:19.080000px;}
.hf{height:33.120000px;}
.h10{height:34.020000px;}
.h17{height:37.980000px;}
.h1a{height:38.016000px;}
.h13{height:38.158594px;}
.h1b{height:38.700000px;}
.h2{height:39.780000px;}
.h4{height:50.326875px;}
.h3{height:50.650312px;}
.h5{height:53.015625px;}
.h12{height:58.651172px;}
.h1c{height:59.383125px;}
.he{height:60.226875px;}
.ha{height:64.978594px;}
.h9{height:65.010937px;}
.h8{height:66.757500px;}
.hd{height:67.860000px;}
.hb{height:70.664062px;}
.h7{height:72.562500px;}
.hc{height:74.004654px;}
.h6{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wa{width:48.636000px;}
.w9{width:61.380000px;}
.w8{width:64.800000px;}
.wb{width:66.960000px;}
.w7{width:74.520000px;}
.wd{width:83.556000px;}
.wf{width:117.036000px;}
.wc{width:129.096000px;}
.we{width:138.240000px;}
.w6{width:241.770000px;}
.w5{width:272.235000px;}
.w3{width:327.315000px;}
.w2{width:328.575000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x19{left:9.900000px;}
.x25{left:15.660000px;}
.x1f{left:18.180000px;}
.x1e{left:24.480000px;}
.x20{left:27.360000px;}
.x2b{left:28.440000px;}
.x27{left:29.565000px;}
.x1d{left:31.680000px;}
.x28{left:33.120000px;}
.x16{left:34.560000px;}
.x18{left:37.080000px;}
.x2c{left:40.725000px;}
.x23{left:42.525000px;}
.x2d{left:50.580000px;}
.x29{left:54.720000px;}
.x2a{left:58.680000px;}
.x14{left:102.825000px;}
.x1{left:118.836000px;}
.x13{left:152.490000px;}
.x9{left:157.529987px;}
.x10{left:159.329987px;}
.x8{left:161.849987px;}
.x4{left:166.725000px;}
.x5{left:185.805000px;}
.xc{left:210.449987px;}
.x22{left:212.790000px;}
.x21{left:214.589987px;}
.x12{left:234.929987px;}
.xa{left:249.554987px;}
.xb{left:277.094987px;}
.x24{left:341.895000px;}
.xd{left:348.734987px;}
.xe{left:387.794987px;}
.xf{left:406.874987px;}
.x15{left:424.725000px;}
.x7{left:433.184987px;}
.x3{left:447.405000px;}
.x1a{left:489.525000px;}
.x1b{left:550.905000px;}
.x26{left:563.685000px;}
.x1c{left:599.550000px;}
.x17{left:666.510000px;}
.x11{left:747.689987px;}
.x6{left:766.619987px;}
@media print{
.v2{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.130560pt;}
.lsb{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1001.098667pt;}
.ws1{word-spacing:-18.429440pt;}
.ws0{word-spacing:-18.281173pt;}
.ws8{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-4.308693pt;}
._7{margin-left:-3.297280pt;}
._8{margin-left:-2.296320pt;}
._0{margin-left:-1.236480pt;}
._1{width:0.988373pt;}
._4{width:1.884160pt;}
._3{width:3.002880pt;}
._2{width:4.416000pt;}
._6{width:6.064640pt;}
._a{width:7.831040pt;}
._5{width:9.303040pt;}
._9{width:10.200320pt;}
._e{width:11.431680pt;}
._10{width:12.363520pt;}
._f{width:13.272320pt;}
._13{width:14.400000pt;}
._b{width:15.956480pt;}
._11{width:17.315627pt;}
._16{width:18.552747pt;}
._20{width:19.448747pt;}
._c{width:20.416000pt;}
._19{width:21.312000pt;}
._d{width:22.208000pt;}
._1d{width:23.872000pt;}
._24{width:24.956587pt;}
._14{width:26.560000pt;}
._15{width:27.584000pt;}
._1e{width:29.120000pt;}
._1f{width:30.848000pt;}
._23{width:31.982293pt;}
._12{width:32.896000pt;}
._1b{width:36.308480pt;}
._17{width:37.568000pt;}
._1a{width:39.245440pt;}
._21{width:42.688000pt;}
._22{width:43.648000pt;}
._1c{width:47.040000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.880000pt;}
.y2{bottom:3.040000pt;}
.y75{bottom:3.200000pt;}
.y81{bottom:3.360000pt;}
.y77{bottom:3.680000pt;}
.y73{bottom:7.520000pt;}
.y76{bottom:7.840000pt;}
.y82{bottom:8.000000pt;}
.y6d{bottom:9.920000pt;}
.y6f{bottom:10.240000pt;}
.y96{bottom:11.680000pt;}
.y9d{bottom:12.160000pt;}
.y6e{bottom:16.960000pt;}
.y70{bottom:17.760000pt;}
.y97{bottom:20.160000pt;}
.y3{bottom:20.640000pt;}
.y6b{bottom:25.280000pt;}
.y6{bottom:50.080000pt;}
.y5{bottom:67.840000pt;}
.y94{bottom:110.080000pt;}
.y69{bottom:118.880000pt;}
.yb0{bottom:121.792000pt;}
.y38{bottom:125.152000pt;}
.y93{bottom:128.512000pt;}
.y68{bottom:137.306667pt;}
.yaf{bottom:138.586667pt;}
.y37{bottom:143.546667pt;}
.y92{bottom:146.906667pt;}
.y67{bottom:155.706667pt;}
.y36{bottom:161.946667pt;}
.y91{bottom:165.306667pt;}
.y66{bottom:174.106667pt;}
.y35{bottom:180.346667pt;}
.y90{bottom:183.706667pt;}
.y65{bottom:192.506667pt;}
.y34{bottom:198.746667pt;}
.y8f{bottom:202.106667pt;}
.y64{bottom:210.906667pt;}
.y33{bottom:217.146667pt;}
.y8e{bottom:220.506667pt;}
.y63{bottom:229.306667pt;}
.y32{bottom:235.546667pt;}
.y8d{bottom:238.906667pt;}
.y62{bottom:247.706667pt;}
.y31{bottom:253.946667pt;}
.y8c{bottom:257.306667pt;}
.y61{bottom:266.106667pt;}
.y30{bottom:272.346667pt;}
.y8b{bottom:275.706667pt;}
.y60{bottom:284.506667pt;}
.y2f{bottom:290.746667pt;}
.y8a{bottom:294.106667pt;}
.y5f{bottom:302.906667pt;}
.y2e{bottom:309.146667pt;}
.y89{bottom:312.506667pt;}
.y5e{bottom:321.306667pt;}
.y2d{bottom:327.546667pt;}
.y88{bottom:330.906667pt;}
.y5d{bottom:339.706667pt;}
.y2c{bottom:345.986667pt;}
.y87{bottom:349.346667pt;}
.y5c{bottom:358.146667pt;}
.y2b{bottom:364.066667pt;}
.y86{bottom:367.746667pt;}
.y5b{bottom:376.546667pt;}
.yd2{bottom:379.426667pt;}
.y2a{bottom:380.866667pt;}
.y85{bottom:386.146667pt;}
.y5a{bottom:394.946667pt;}
.yd1{bottom:396.226667pt;}
.y29{bottom:397.826667pt;}
.y84{bottom:404.546667pt;}
.yd0{bottom:413.186667pt;}
.y59{bottom:413.346667pt;}
.y28{bottom:414.626667pt;}
.y83{bottom:420.066667pt;}
.yae{bottom:422.946667pt;}
.ycf{bottom:429.986667pt;}
.y27{bottom:431.586667pt;}
.y58{bottom:431.746667pt;}
.y80{bottom:435.426667pt;}
.yad{bottom:441.346667pt;}
.yce{bottom:446.946667pt;}
.y26{bottom:448.386667pt;}
.y57{bottom:450.146667pt;}
.y7f{bottom:451.586667pt;}
.yac{bottom:459.746667pt;}
.ycd{bottom:463.746667pt;}
.y25{bottom:465.346667pt;}
.y7e{bottom:466.946667pt;}
.y56{bottom:468.546667pt;}
.yab{bottom:478.146667pt;}
.ycc{bottom:480.546667pt;}
.y24{bottom:482.146667pt;}
.y7d{bottom:482.306667pt;}
.y55{bottom:486.946667pt;}
.yaa{bottom:496.546667pt;}
.ycb{bottom:497.506667pt;}
.y7c{bottom:497.666667pt;}
.y23{bottom:498.946667pt;}
.y54{bottom:505.346667pt;}
.y7b{bottom:512.866667pt;}
.yca{bottom:514.306667pt;}
.ya9{bottom:514.946667pt;}
.y22{bottom:515.906667pt;}
.y53{bottom:523.746667pt;}
.y7a{bottom:528.226667pt;}
.yc9{bottom:531.266667pt;}
.y21{bottom:532.706667pt;}
.ya8{bottom:533.346667pt;}
.y52{bottom:542.146667pt;}
.y79{bottom:543.586667pt;}
.yc8{bottom:548.066667pt;}
.y20{bottom:549.666667pt;}
.ya7{bottom:551.746667pt;}
.y78{bottom:558.946667pt;}
.y51{bottom:560.546667pt;}
.yc7{bottom:564.866667pt;}
.y1f{bottom:566.466667pt;}
.ya6{bottom:570.173333pt;}
.y74{bottom:574.333333pt;}
.y50{bottom:578.973333pt;}
.yc6{bottom:581.853333pt;}
.ya5{bottom:588.573333pt;}
.y71{bottom:590.493333pt;}
.y4f{bottom:597.373333pt;}
.yc5{bottom:598.653333pt;}
.y1e{bottom:600.253333pt;}
.y6a{bottom:606.493333pt;}
.ya4{bottom:606.973333pt;}
.yc4{bottom:615.613333pt;}
.y4e{bottom:615.773333pt;}
.y1d{bottom:617.053333pt;}
.ya3{bottom:625.373333pt;}
.yc3{bottom:632.413333pt;}
.y1c{bottom:634.013333pt;}
.y4d{bottom:634.173333pt;}
.y6c{bottom:637.373333pt;}
.ya2{bottom:643.773333pt;}
.yc2{bottom:649.213333pt;}
.y1b{bottom:650.813333pt;}
.y4c{bottom:652.573333pt;}
.ya1{bottom:662.173333pt;}
.yc1{bottom:666.173333pt;}
.y1a{bottom:667.613333pt;}
.y4b{bottom:670.973333pt;}
.ya0{bottom:680.573333pt;}
.yc0{bottom:682.973333pt;}
.y19{bottom:684.573333pt;}
.y4a{bottom:689.373333pt;}
.y9f{bottom:698.973333pt;}
.ybf{bottom:699.933333pt;}
.y18{bottom:701.373333pt;}
.y49{bottom:707.773333pt;}
.ybe{bottom:716.733333pt;}
.y9e{bottom:717.373333pt;}
.y17{bottom:718.333333pt;}
.y48{bottom:726.173333pt;}
.y9c{bottom:732.893333pt;}
.ybd{bottom:733.533333pt;}
.y16{bottom:735.133333pt;}
.y47{bottom:744.573333pt;}
.y9b{bottom:750.493333pt;}
.y15{bottom:751.933333pt;}
.y46{bottom:762.973333pt;}
.y9a{bottom:767.293333pt;}
.y14{bottom:768.893333pt;}
.y45{bottom:781.373333pt;}
.ybc{bottom:784.253333pt;}
.y13{bottom:785.693333pt;}
.y44{bottom:799.813333pt;}
.y99{bottom:801.093333pt;}
.y12{bottom:802.693333pt;}
.y98{bottom:818.053333pt;}
.y43{bottom:818.213333pt;}
.y11{bottom:819.493333pt;}
.ybb{bottom:834.853333pt;}
.y95{bottom:835.493333pt;}
.y10{bottom:836.453333pt;}
.y42{bottom:836.613333pt;}
.yba{bottom:851.653333pt;}
.yf{bottom:853.253333pt;}
.y41{bottom:855.013333pt;}
.yb9{bottom:868.613333pt;}
.ye{bottom:870.053333pt;}
.y40{bottom:873.413333pt;}
.yb8{bottom:885.413333pt;}
.yd{bottom:887.013333pt;}
.y3f{bottom:891.813333pt;}
.yb7{bottom:902.373333pt;}
.yc{bottom:903.813333pt;}
.y3e{bottom:910.213333pt;}
.yb6{bottom:919.173333pt;}
.yb{bottom:920.773333pt;}
.y3d{bottom:928.613333pt;}
.yb5{bottom:935.973333pt;}
.ya{bottom:937.893333pt;}
.y3c{bottom:947.013333pt;}
.yb4{bottom:952.933333pt;}
.y9{bottom:956.773333pt;}
.y3b{bottom:965.413333pt;}
.yb3{bottom:969.733333pt;}
.y8{bottom:978.213333pt;}
.y3a{bottom:983.813333pt;}
.yb2{bottom:986.693333pt;}
.y7{bottom:999.653333pt;}
.y39{bottom:1002.213333pt;}
.yb1{bottom:1003.493333pt;}
.y4{bottom:1026.560000pt;}
.y1{bottom:1040.160000pt;}
.h11{height:15.200000pt;}
.h16{height:15.360000pt;}
.h15{height:15.392000pt;}
.h14{height:16.160000pt;}
.h18{height:16.800000pt;}
.h19{height:16.960000pt;}
.hf{height:29.440000pt;}
.h10{height:30.240000pt;}
.h17{height:33.760000pt;}
.h1a{height:33.792000pt;}
.h13{height:33.918750pt;}
.h1b{height:34.400000pt;}
.h2{height:35.360000pt;}
.h4{height:44.735000pt;}
.h3{height:45.022500pt;}
.h5{height:47.125000pt;}
.h12{height:52.134375pt;}
.h1c{height:52.785000pt;}
.he{height:53.535000pt;}
.ha{height:57.758750pt;}
.h9{height:57.787500pt;}
.h8{height:59.340000pt;}
.hd{height:60.320000pt;}
.hb{height:62.812500pt;}
.h7{height:64.500000pt;}
.hc{height:65.781915pt;}
.h6{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wa{width:43.232000pt;}
.w9{width:54.560000pt;}
.w8{width:57.600000pt;}
.wb{width:59.520000pt;}
.w7{width:66.240000pt;}
.wd{width:74.272000pt;}
.wf{width:104.032000pt;}
.wc{width:114.752000pt;}
.we{width:122.880000pt;}
.w6{width:214.906667pt;}
.w5{width:241.986667pt;}
.w3{width:290.946667pt;}
.w2{width:292.066667pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x19{left:8.800000pt;}
.x25{left:13.920000pt;}
.x1f{left:16.160000pt;}
.x1e{left:21.760000pt;}
.x20{left:24.320000pt;}
.x2b{left:25.280000pt;}
.x27{left:26.280000pt;}
.x1d{left:28.160000pt;}
.x28{left:29.440000pt;}
.x16{left:30.720000pt;}
.x18{left:32.960000pt;}
.x2c{left:36.200000pt;}
.x23{left:37.800000pt;}
.x2d{left:44.960000pt;}
.x29{left:48.640000pt;}
.x2a{left:52.160000pt;}
.x14{left:91.400000pt;}
.x1{left:105.632000pt;}
.x13{left:135.546667pt;}
.x9{left:140.026655pt;}
.x10{left:141.626655pt;}
.x8{left:143.866655pt;}
.x4{left:148.200000pt;}
.x5{left:165.160000pt;}
.xc{left:187.066655pt;}
.x22{left:189.146667pt;}
.x21{left:190.746655pt;}
.x12{left:208.826655pt;}
.xa{left:221.826655pt;}
.xb{left:246.306655pt;}
.x24{left:303.906667pt;}
.xd{left:309.986655pt;}
.xe{left:344.706655pt;}
.xf{left:361.666655pt;}
.x15{left:377.533333pt;}
.x7{left:385.053321pt;}
.x3{left:397.693333pt;}
.x1a{left:435.133333pt;}
.x1b{left:489.693333pt;}
.x26{left:501.053333pt;}
.x1c{left:532.933333pt;}
.x17{left:592.453333pt;}
.x11{left:664.613321pt;}
.x6{left:681.439988pt;}
}




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