
    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_0f51e1283efef98d4409b044.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_34001fa056663db0ae8307bf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ce42c5f8dcf28d3d9bde6903.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.886719;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_d13efafb1119bb834035b0b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_e2087181509c8894a3ab3009.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056641;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_c5c0a2298dc357d313799a30.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8b369935a5a911d98b4e3c59.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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_9eaa8eaa3227a0af580b16a6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_82ee6b8e46f462b09a701f91.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ff97914b1bbede956512a53a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940430;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.229200px;}
.lsf{letter-spacing:0.264000px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:21.744000px;}
.ls11{letter-spacing:72.120000px;}
.ls6{letter-spacing:93.594720px;}
.ls4{letter-spacing:100.603200px;}
.ls10{letter-spacing:108.120000px;}
.ls2{letter-spacing:143.803200px;}
.lsc{letter-spacing:144.120000px;}
.lse{letter-spacing:144.144000px;}
.ls9{letter-spacing:164.280000px;}
.lsd{letter-spacing:180.120000px;}
.lsb{letter-spacing:848.316000px;}
.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:-72.000000px;}
.ws0{word-spacing:-36.907200px;}
.ws7{word-spacing:-36.000000px;}
.ws5{word-spacing:-16.200000px;}
.ws2{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.624000px;}
.ws6{word-spacing:-15.552000px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-15.408000px;}
._f{margin-left:-14.259600px;}
._0{margin-left:-12.749760px;}
._11{margin-left:-10.872000px;}
._13{margin-left:-9.516000px;}
._10{margin-left:-8.362320px;}
._5{margin-left:-7.213680px;}
._4{margin-left:-5.871600px;}
._2{margin-left:-3.690720px;}
._1{margin-left:-2.684160px;}
._8{margin-left:-1.379760px;}
._d{width:1.103760px;}
._c{width:2.267760px;}
._9{width:3.959280px;}
._a{width:5.307120px;}
._b{width:6.950640px;}
._17{width:8.928000px;}
._16{width:12.504000px;}
._15{width:13.752000px;}
._1b{width:14.760000px;}
._3{width:15.769440px;}
._1a{width:23.328000px;}
._6{width:24.492960px;}
._7{width:26.774640px;}
._1e{width:35.370000px;}
._18{width:36.864000px;}
._19{width:37.956000px;}
._21{width:60.048000px;}
._1d{width:65.448000px;}
._1c{width:66.636000px;}
._24{width:108.120000px;}
._1f{width:136.890000px;}
._20{width:141.036000px;}
._23{width:144.264000px;}
._22{width:180.588000px;}
._14{width:843.088800px;}
._e{width:848.316000px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y21{bottom:5.400000px;}
.y65{bottom:17.460000px;}
.y51{bottom:20.880000px;}
.y64{bottom:35.640000px;}
.y50{bottom:39.060000px;}
.y63{bottom:54.000000px;}
.y4f{bottom:57.240000px;}
.y3{bottom:57.780000px;}
.y62{bottom:72.225000px;}
.y61{bottom:90.405000px;}
.y60{bottom:108.585000px;}
.y66{bottom:113.796000px;}
.yb8{bottom:118.476000px;}
.ye2{bottom:125.316000px;}
.y39{bottom:126.036000px;}
.y10c{bottom:126.756000px;}
.y5f{bottom:126.765000px;}
.ya7{bottom:127.476000px;}
.y1d{bottom:129.096000px;}
.y4d{bottom:135.396000px;}
.ye1{bottom:144.936000px;}
.y10b{bottom:146.376000px;}
.ya6{bottom:151.770000px;}
.y1c{bottom:153.390000px;}
.y4c{bottom:159.690000px;}
.y38{bottom:162.210000px;}
.ye0{bottom:164.370000px;}
.y10a{bottom:165.810000px;}
.ya5{bottom:176.070000px;}
.y84{bottom:177.150000px;}
.y1b{bottom:177.690000px;}
.y4b{bottom:183.990000px;}
.y109{bottom:188.490000px;}
.y37{bottom:198.570000px;}
.ya4{bottom:200.190000px;}
.y83{bottom:201.270000px;}
.ydf{bottom:203.610000px;}
.y1a{bottom:213.870000px;}
.y4a{bottom:216.570000px;}
.y108{bottom:218.730000px;}
.yde{bottom:223.050000px;}
.ya3{bottom:224.490000px;}
.y82{bottom:232.950000px;}
.y36{bottom:234.750000px;}
.y19{bottom:238.170000px;}
.ydd{bottom:242.670000px;}
.ya2{bottom:251.850000px;}
.y81{bottom:257.250000px;}
.y107{bottom:257.790000px;}
.y49{bottom:258.510000px;}
.ydc{bottom:262.110000px;}
.y18{bottom:262.470000px;}
.y35{bottom:266.610000px;}
.y106{bottom:277.230000px;}
.y80{bottom:281.550000px;}
.ydb{bottom:281.730000px;}
.ya1{bottom:288.030000px;}
.y48{bottom:294.870000px;}
.y105{bottom:296.850000px;}
.y34{bottom:298.290000px;}
.y17{bottom:300.090000px;}
.yda{bottom:301.170000px;}
.y7f{bottom:305.850000px;}
.ya0{bottom:312.330000px;}
.y104{bottom:316.290000px;}
.y47{bottom:319.215000px;}
.yd9{bottom:320.835000px;}
.y16{bottom:327.135000px;}
.y33{bottom:330.195000px;}
.y103{bottom:335.955000px;}
.y9f{bottom:336.675000px;}
.yd8{bottom:340.275000px;}
.y4e{bottom:350.175000px;}
.y15{bottom:352.335000px;}
.y102{bottom:355.575000px;}
.y7e{bottom:357.375000px;}
.yd7{bottom:359.895000px;}
.y9e{bottom:360.975000px;}
.y32{bottom:361.875000px;}
.y101{bottom:375.015000px;}
.yd6{bottom:379.515000px;}
.y9d{bottom:385.275000px;}
.y14{bottom:388.695000px;}
.y31{bottom:393.555000px;}
.y7d{bottom:393.735000px;}
.y100{bottom:394.635000px;}
.yd5{bottom:398.955000px;}
.y5d{bottom:408.315000px;}
.y9c{bottom:409.395000px;}
.yff{bottom:414.075000px;}
.y7c{bottom:417.855000px;}
.yd4{bottom:418.575000px;}
.y13{bottom:424.875000px;}
.y30{bottom:429.915000px;}
.y5c{bottom:432.615000px;}
.y9b{bottom:433.695000px;}
.yd3{bottom:438.015000px;}
.y7b{bottom:442.155000px;}
.yfe{bottom:453.135000px;}
.y5b{bottom:456.915000px;}
.yd2{bottom:457.635000px;}
.y9a{bottom:461.055000px;}
.y12{bottom:461.235000px;}
.y2f{bottom:466.095000px;}
.y7a{bottom:466.455000px;}
.yfd{bottom:472.755000px;}
.yd1{bottom:477.075000px;}
.yfc{bottom:492.375000px;}
.y5a{bottom:493.095000px;}
.y79{bottom:493.635000px;}
.yd0{bottom:496.695000px;}
.y99{bottom:497.235000px;}
.y11{bottom:497.415000px;}
.y2e{bottom:502.455000px;}
.yfb{bottom:511.815000px;}
.ycf{bottom:516.315000px;}
.y59{bottom:517.395000px;}
.y98{bottom:521.535000px;}
.y78{bottom:523.695000px;}
.yfa{bottom:531.435000px;}
.y10{bottom:533.775000px;}
.yce{bottom:535.755000px;}
.y2d{bottom:538.635000px;}
.y58{bottom:541.695000px;}
.y97{bottom:545.835000px;}
.yf9{bottom:550.875000px;}
.ycd{bottom:555.375000px;}
.y77{bottom:555.555000px;}
.y57{bottom:565.635000px;}
.yf{bottom:569.985000px;}
.y96{bottom:570.165000px;}
.y2c{bottom:570.525000px;}
.ycc{bottom:574.845000px;}
.y76{bottom:579.885000px;}
.yf8{bottom:589.965000px;}
.y95{bottom:594.285000px;}
.ycb{bottom:594.465000px;}
.y75{bottom:604.005000px;}
.ye{bottom:606.345000px;}
.y2b{bottom:606.705000px;}
.yf7{bottom:609.585000px;}
.yca{bottom:613.905000px;}
.y94{bottom:618.585000px;}
.y74{bottom:628.305000px;}
.yf6{bottom:629.025000px;}
.yc9{bottom:633.525000px;}
.yb5{bottom:637.305000px;}
.yd{bottom:642.525000px;}
.y93{bottom:642.885000px;}
.y2a{bottom:643.065000px;}
.yf5{bottom:648.645000px;}
.yc8{bottom:652.965000px;}
.y73{bottom:655.485000px;}
.yb4{bottom:656.565000px;}
.y92{bottom:667.185000px;}
.yf4{bottom:668.265000px;}
.yc7{bottom:675.645000px;}
.yb3{bottom:676.185000px;}
.yc{bottom:678.885000px;}
.y29{bottom:679.245000px;}
.y72{bottom:685.725000px;}
.yf3{bottom:687.705000px;}
.y91{bottom:691.485000px;}
.yb2{bottom:695.625000px;}
.yc6{bottom:705.885000px;}
.yf2{bottom:707.325000px;}
.yb{bottom:715.065000px;}
.yb1{bottom:715.245000px;}
.y28{bottom:715.605000px;}
.y71{bottom:717.405000px;}
.y90{bottom:718.665000px;}
.yc5{bottom:725.325000px;}
.yf1{bottom:726.765000px;}
.yb0{bottom:734.865000px;}
.y70{bottom:741.705000px;}
.yc4{bottom:744.945000px;}
.yf0{bottom:746.385000px;}
.y46{bottom:746.745000px;}
.y27{bottom:747.285000px;}
.ya{bottom:752.505000px;}
.yaf{bottom:754.305000px;}
.y5e{bottom:755.025000px;}
.yc3{bottom:764.565000px;}
.yef{bottom:765.825000px;}
.y6f{bottom:766.005000px;}
.y45{bottom:770.865000px;}
.y10f{bottom:771.765000px;}
.y26{bottom:779.145000px;}
.y8f{bottom:779.325000px;}
.yae{bottom:782.385000px;}
.yc2{bottom:784.005000px;}
.yee{bottom:785.445000px;}
.y6e{bottom:790.305000px;}
.y10e{bottom:791.205000px;}
.y9{bottom:791.745000px;}
.y44{bottom:795.165000px;}
.y8e{bottom:803.445000px;}
.yc1{bottom:803.625000px;}
.yed{bottom:805.065000px;}
.y25{bottom:810.825000px;}
.y6d{bottom:814.425000px;}
.y43{bottom:819.510000px;}
.yc0{bottom:823.110000px;}
.yad{bottom:824.550000px;}
.y8d{bottom:827.790000px;}
.y8{bottom:829.230000px;}
.y10d{bottom:833.550000px;}
.y6c{bottom:838.770000px;}
.ybf{bottom:842.730000px;}
.y42{bottom:843.810000px;}
.yec{bottom:844.170000px;}
.y24{bottom:847.770000px;}
.yac{bottom:848.850000px;}
.y8c{bottom:852.090000px;}
.ybe{bottom:862.170000px;}
.y6b{bottom:863.070000px;}
.yeb{bottom:863.610000px;}
.y7{bottom:864.510000px;}
.y41{bottom:868.110000px;}
.yab{bottom:872.970000px;}
.y8b{bottom:876.390000px;}
.ybd{bottom:881.790000px;}
.yea{bottom:883.230000px;}
.y6a{bottom:887.370000px;}
.y40{bottom:892.230000px;}
.y23{bottom:895.830000px;}
.y8a{bottom:900.690000px;}
.ybc{bottom:901.230000px;}
.ye9{bottom:902.670000px;}
.yaa{bottom:905.550000px;}
.y56{bottom:906.090000px;}
.y6{bottom:913.830000px;}
.y69{bottom:914.550000px;}
.y3f{bottom:916.530000px;}
.ybb{bottom:920.850000px;}
.ye8{bottom:922.290000px;}
.y89{bottom:924.990000px;}
.y22{bottom:937.050000px;}
.y55{bottom:937.950000px;}
.y3e{bottom:940.830000px;}
.ye7{bottom:941.730000px;}
.yba{bottom:943.530000px;}
.y68{bottom:944.610000px;}
.ya9{bottom:947.490000px;}
.y88{bottom:949.110000px;}
.y20{bottom:960.270000px;}
.ye6{bottom:961.350000px;}
.y54{bottom:962.250000px;}
.y5{bottom:962.970000px;}
.y3d{bottom:964.950000px;}
.y3b{bottom:965.670000px;}
.y67{bottom:971.610000px;}
.y87{bottom:973.410000px;}
.yb9{bottom:973.590000px;}
.ya8{bottom:979.170000px;}
.ye5{bottom:980.970000px;}
.y53{bottom:986.550000px;}
.y3c{bottom:993.030000px;}
.ye4{bottom:1000.410000px;}
.yb7{bottom:1000.590000px;}
.y86{bottom:1000.770000px;}
.y3a{bottom:1003.290000px;}
.y52{bottom:1010.670000px;}
.y1f{bottom:1012.110000px;}
.y4{bottom:1012.290000px;}
.ye3{bottom:1020.030000px;}
.y85{bottom:1032.090000px;}
.y1e{bottom:1034.970000px;}
.yb6{bottom:1039.470000px;}
.y2{bottom:1056.030000px;}
.y1{bottom:1073.160000px;}
.h4{height:22.500000px;}
.h8{height:39.830273px;}
.ha{height:45.720703px;}
.hc{height:48.420000px;}
.h1{height:60.960938px;}
.h9{height:70.020000px;}
.h3{height:71.324297px;}
.hd{height:71.824219px;}
.he{height:74.004654px;}
.h6{height:81.078047px;}
.h5{height:98.051133px;}
.h7{height:98.426190px;}
.hb{height:139.536000px;}
.h2{height:142.038984px;}
.h0{height:1188.000000px;}
.w3{width:161.490000px;}
.w2{width:174.780000px;}
.w6{width:176.790000px;}
.w4{width:201.270000px;}
.w5{width:393.735000px;}
.w7{width:697.965000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.xb{left:10.800000px;}
.x2{left:108.035986px;}
.xd{left:111.636000px;}
.x10{left:117.035986px;}
.x8{left:124.595986px;}
.xe{left:135.035986px;}
.x9{left:140.975986px;}
.x11{left:162.029986px;}
.x12{left:171.029986px;}
.xf{left:189.029986px;}
.x1{left:266.609986px;}
.x5{left:284.250000px;}
.x3{left:322.814986px;}
.xa{left:391.035000px;}
.x6{left:446.475000px;}
.xc{left:541.365000px;}
.x7{left:648.645000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.203733pt;}
.lsf{letter-spacing:0.234667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:19.328000pt;}
.ls11{letter-spacing:64.106667pt;}
.ls6{letter-spacing:83.195307pt;}
.ls4{letter-spacing:89.425067pt;}
.ls10{letter-spacing:96.106667pt;}
.ls2{letter-spacing:127.825067pt;}
.lsc{letter-spacing:128.106667pt;}
.lse{letter-spacing:128.128000pt;}
.ls9{letter-spacing:146.026667pt;}
.lsd{letter-spacing:160.106667pt;}
.lsb{letter-spacing:754.058667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-32.806400pt;}
.ws7{word-spacing:-32.000000pt;}
.ws5{word-spacing:-14.400000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.888000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-13.696000pt;}
._f{margin-left:-12.675200pt;}
._0{margin-left:-11.333120pt;}
._11{margin-left:-9.664000pt;}
._13{margin-left:-8.458667pt;}
._10{margin-left:-7.433173pt;}
._5{margin-left:-6.412160pt;}
._4{margin-left:-5.219200pt;}
._2{margin-left:-3.280640pt;}
._1{margin-left:-2.385920pt;}
._8{margin-left:-1.226453pt;}
._d{width:0.981120pt;}
._c{width:2.015787pt;}
._9{width:3.519360pt;}
._a{width:4.717440pt;}
._b{width:6.178347pt;}
._17{width:7.936000pt;}
._16{width:11.114667pt;}
._15{width:12.224000pt;}
._1b{width:13.120000pt;}
._3{width:14.017280pt;}
._1a{width:20.736000pt;}
._6{width:21.771520pt;}
._7{width:23.799680pt;}
._1e{width:31.440000pt;}
._18{width:32.768000pt;}
._19{width:33.738667pt;}
._21{width:53.376000pt;}
._1d{width:58.176000pt;}
._1c{width:59.232000pt;}
._24{width:96.106667pt;}
._1f{width:121.680000pt;}
._20{width:125.365333pt;}
._23{width:128.234667pt;}
._22{width:160.522667pt;}
._14{width:749.412267pt;}
._e{width:754.058667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:4.800000pt;}
.y65{bottom:15.520000pt;}
.y51{bottom:18.560000pt;}
.y64{bottom:31.680000pt;}
.y50{bottom:34.720000pt;}
.y63{bottom:48.000000pt;}
.y4f{bottom:50.880000pt;}
.y3{bottom:51.360000pt;}
.y62{bottom:64.200000pt;}
.y61{bottom:80.360000pt;}
.y60{bottom:96.520000pt;}
.y66{bottom:101.152000pt;}
.yb8{bottom:105.312000pt;}
.ye2{bottom:111.392000pt;}
.y39{bottom:112.032000pt;}
.y10c{bottom:112.672000pt;}
.y5f{bottom:112.680000pt;}
.ya7{bottom:113.312000pt;}
.y1d{bottom:114.752000pt;}
.y4d{bottom:120.352000pt;}
.ye1{bottom:128.832000pt;}
.y10b{bottom:130.112000pt;}
.ya6{bottom:134.906667pt;}
.y1c{bottom:136.346667pt;}
.y4c{bottom:141.946667pt;}
.y38{bottom:144.186667pt;}
.ye0{bottom:146.106667pt;}
.y10a{bottom:147.386667pt;}
.ya5{bottom:156.506667pt;}
.y84{bottom:157.466667pt;}
.y1b{bottom:157.946667pt;}
.y4b{bottom:163.546667pt;}
.y109{bottom:167.546667pt;}
.y37{bottom:176.506667pt;}
.ya4{bottom:177.946667pt;}
.y83{bottom:178.906667pt;}
.ydf{bottom:180.986667pt;}
.y1a{bottom:190.106667pt;}
.y4a{bottom:192.506667pt;}
.y108{bottom:194.426667pt;}
.yde{bottom:198.266667pt;}
.ya3{bottom:199.546667pt;}
.y82{bottom:207.066667pt;}
.y36{bottom:208.666667pt;}
.y19{bottom:211.706667pt;}
.ydd{bottom:215.706667pt;}
.ya2{bottom:223.866667pt;}
.y81{bottom:228.666667pt;}
.y107{bottom:229.146667pt;}
.y49{bottom:229.786667pt;}
.ydc{bottom:232.986667pt;}
.y18{bottom:233.306667pt;}
.y35{bottom:236.986667pt;}
.y106{bottom:246.426667pt;}
.y80{bottom:250.266667pt;}
.ydb{bottom:250.426667pt;}
.ya1{bottom:256.026667pt;}
.y48{bottom:262.106667pt;}
.y105{bottom:263.866667pt;}
.y34{bottom:265.146667pt;}
.y17{bottom:266.746667pt;}
.yda{bottom:267.706667pt;}
.y7f{bottom:271.866667pt;}
.ya0{bottom:277.626667pt;}
.y104{bottom:281.146667pt;}
.y47{bottom:283.746667pt;}
.yd9{bottom:285.186667pt;}
.y16{bottom:290.786667pt;}
.y33{bottom:293.506667pt;}
.y103{bottom:298.626667pt;}
.y9f{bottom:299.266667pt;}
.yd8{bottom:302.466667pt;}
.y4e{bottom:311.266667pt;}
.y15{bottom:313.186667pt;}
.y102{bottom:316.066667pt;}
.y7e{bottom:317.666667pt;}
.yd7{bottom:319.906667pt;}
.y9e{bottom:320.866667pt;}
.y32{bottom:321.666667pt;}
.y101{bottom:333.346667pt;}
.yd6{bottom:337.346667pt;}
.y9d{bottom:342.466667pt;}
.y14{bottom:345.506667pt;}
.y31{bottom:349.826667pt;}
.y7d{bottom:349.986667pt;}
.y100{bottom:350.786667pt;}
.yd5{bottom:354.626667pt;}
.y5d{bottom:362.946667pt;}
.y9c{bottom:363.906667pt;}
.yff{bottom:368.066667pt;}
.y7c{bottom:371.426667pt;}
.yd4{bottom:372.066667pt;}
.y13{bottom:377.666667pt;}
.y30{bottom:382.146667pt;}
.y5c{bottom:384.546667pt;}
.y9b{bottom:385.506667pt;}
.yd3{bottom:389.346667pt;}
.y7b{bottom:393.026667pt;}
.yfe{bottom:402.786667pt;}
.y5b{bottom:406.146667pt;}
.yd2{bottom:406.786667pt;}
.y9a{bottom:409.826667pt;}
.y12{bottom:409.986667pt;}
.y2f{bottom:414.306667pt;}
.y7a{bottom:414.626667pt;}
.yfd{bottom:420.226667pt;}
.yd1{bottom:424.066667pt;}
.yfc{bottom:437.666667pt;}
.y5a{bottom:438.306667pt;}
.y79{bottom:438.786667pt;}
.yd0{bottom:441.506667pt;}
.y99{bottom:441.986667pt;}
.y11{bottom:442.146667pt;}
.y2e{bottom:446.626667pt;}
.yfb{bottom:454.946667pt;}
.ycf{bottom:458.946667pt;}
.y59{bottom:459.906667pt;}
.y98{bottom:463.586667pt;}
.y78{bottom:465.506667pt;}
.yfa{bottom:472.386667pt;}
.y10{bottom:474.466667pt;}
.yce{bottom:476.226667pt;}
.y2d{bottom:478.786667pt;}
.y58{bottom:481.506667pt;}
.y97{bottom:485.186667pt;}
.yf9{bottom:489.666667pt;}
.ycd{bottom:493.666667pt;}
.y77{bottom:493.826667pt;}
.y57{bottom:502.786667pt;}
.yf{bottom:506.653333pt;}
.y96{bottom:506.813333pt;}
.y2c{bottom:507.133333pt;}
.ycc{bottom:510.973333pt;}
.y76{bottom:515.453333pt;}
.yf8{bottom:524.413333pt;}
.y95{bottom:528.253333pt;}
.ycb{bottom:528.413333pt;}
.y75{bottom:536.893333pt;}
.ye{bottom:538.973333pt;}
.y2b{bottom:539.293333pt;}
.yf7{bottom:541.853333pt;}
.yca{bottom:545.693333pt;}
.y94{bottom:549.853333pt;}
.y74{bottom:558.493333pt;}
.yf6{bottom:559.133333pt;}
.yc9{bottom:563.133333pt;}
.yb5{bottom:566.493333pt;}
.yd{bottom:571.133333pt;}
.y93{bottom:571.453333pt;}
.y2a{bottom:571.613333pt;}
.yf5{bottom:576.573333pt;}
.yc8{bottom:580.413333pt;}
.y73{bottom:582.653333pt;}
.yb4{bottom:583.613333pt;}
.y92{bottom:593.053333pt;}
.yf4{bottom:594.013333pt;}
.yc7{bottom:600.573333pt;}
.yb3{bottom:601.053333pt;}
.yc{bottom:603.453333pt;}
.y29{bottom:603.773333pt;}
.y72{bottom:609.533333pt;}
.yf3{bottom:611.293333pt;}
.y91{bottom:614.653333pt;}
.yb2{bottom:618.333333pt;}
.yc6{bottom:627.453333pt;}
.yf2{bottom:628.733333pt;}
.yb{bottom:635.613333pt;}
.yb1{bottom:635.773333pt;}
.y28{bottom:636.093333pt;}
.y71{bottom:637.693333pt;}
.y90{bottom:638.813333pt;}
.yc5{bottom:644.733333pt;}
.yf1{bottom:646.013333pt;}
.yb0{bottom:653.213333pt;}
.y70{bottom:659.293333pt;}
.yc4{bottom:662.173333pt;}
.yf0{bottom:663.453333pt;}
.y46{bottom:663.773333pt;}
.y27{bottom:664.253333pt;}
.ya{bottom:668.893333pt;}
.yaf{bottom:670.493333pt;}
.y5e{bottom:671.133333pt;}
.yc3{bottom:679.613333pt;}
.yef{bottom:680.733333pt;}
.y6f{bottom:680.893333pt;}
.y45{bottom:685.213333pt;}
.y10f{bottom:686.013333pt;}
.y26{bottom:692.573333pt;}
.y8f{bottom:692.733333pt;}
.yae{bottom:695.453333pt;}
.yc2{bottom:696.893333pt;}
.yee{bottom:698.173333pt;}
.y6e{bottom:702.493333pt;}
.y10e{bottom:703.293333pt;}
.y9{bottom:703.773333pt;}
.y44{bottom:706.813333pt;}
.y8e{bottom:714.173333pt;}
.yc1{bottom:714.333333pt;}
.yed{bottom:715.613333pt;}
.y25{bottom:720.733333pt;}
.y6d{bottom:723.933333pt;}
.y43{bottom:728.453333pt;}
.yc0{bottom:731.653333pt;}
.yad{bottom:732.933333pt;}
.y8d{bottom:735.813333pt;}
.y8{bottom:737.093333pt;}
.y10d{bottom:740.933333pt;}
.y6c{bottom:745.573333pt;}
.ybf{bottom:749.093333pt;}
.y42{bottom:750.053333pt;}
.yec{bottom:750.373333pt;}
.y24{bottom:753.573333pt;}
.yac{bottom:754.533333pt;}
.y8c{bottom:757.413333pt;}
.ybe{bottom:766.373333pt;}
.y6b{bottom:767.173333pt;}
.yeb{bottom:767.653333pt;}
.y7{bottom:768.453333pt;}
.y41{bottom:771.653333pt;}
.yab{bottom:775.973333pt;}
.y8b{bottom:779.013333pt;}
.ybd{bottom:783.813333pt;}
.yea{bottom:785.093333pt;}
.y6a{bottom:788.773333pt;}
.y40{bottom:793.093333pt;}
.y23{bottom:796.293333pt;}
.y8a{bottom:800.613333pt;}
.ybc{bottom:801.093333pt;}
.ye9{bottom:802.373333pt;}
.yaa{bottom:804.933333pt;}
.y56{bottom:805.413333pt;}
.y6{bottom:812.293333pt;}
.y69{bottom:812.933333pt;}
.y3f{bottom:814.693333pt;}
.ybb{bottom:818.533333pt;}
.ye8{bottom:819.813333pt;}
.y89{bottom:822.213333pt;}
.y22{bottom:832.933333pt;}
.y55{bottom:833.733333pt;}
.y3e{bottom:836.293333pt;}
.ye7{bottom:837.093333pt;}
.yba{bottom:838.693333pt;}
.y68{bottom:839.653333pt;}
.ya9{bottom:842.213333pt;}
.y88{bottom:843.653333pt;}
.y20{bottom:853.573333pt;}
.ye6{bottom:854.533333pt;}
.y54{bottom:855.333333pt;}
.y5{bottom:855.973333pt;}
.y3d{bottom:857.733333pt;}
.y3b{bottom:858.373333pt;}
.y67{bottom:863.653333pt;}
.y87{bottom:865.253333pt;}
.yb9{bottom:865.413333pt;}
.ya8{bottom:870.373333pt;}
.ye5{bottom:871.973333pt;}
.y53{bottom:876.933333pt;}
.y3c{bottom:882.693333pt;}
.ye4{bottom:889.253333pt;}
.yb7{bottom:889.413333pt;}
.y86{bottom:889.573333pt;}
.y3a{bottom:891.813333pt;}
.y52{bottom:898.373333pt;}
.y1f{bottom:899.653333pt;}
.y4{bottom:899.813333pt;}
.ye3{bottom:906.693333pt;}
.y85{bottom:917.413333pt;}
.y1e{bottom:919.973333pt;}
.yb6{bottom:923.973333pt;}
.y2{bottom:938.693333pt;}
.y1{bottom:953.920000pt;}
.h4{height:20.000000pt;}
.h8{height:35.404688pt;}
.ha{height:40.640625pt;}
.hc{height:43.040000pt;}
.h1{height:54.187500pt;}
.h9{height:62.240000pt;}
.h3{height:63.399375pt;}
.hd{height:63.843750pt;}
.he{height:65.781915pt;}
.h6{height:72.069375pt;}
.h5{height:87.156562pt;}
.h7{height:87.489947pt;}
.hb{height:124.032000pt;}
.h2{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w3{width:143.546667pt;}
.w2{width:155.360000pt;}
.w6{width:157.146667pt;}
.w4{width:178.906667pt;}
.w5{width:349.986667pt;}
.w7{width:620.413333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.xb{left:9.600000pt;}
.x2{left:96.031988pt;}
.xd{left:99.232000pt;}
.x10{left:104.031988pt;}
.x8{left:110.751988pt;}
.xe{left:120.031988pt;}
.x9{left:125.311988pt;}
.x11{left:144.026655pt;}
.x12{left:152.026655pt;}
.xf{left:168.026655pt;}
.x1{left:236.986655pt;}
.x5{left:252.666667pt;}
.x3{left:286.946655pt;}
.xa{left:347.586667pt;}
.x6{left:396.866667pt;}
.xc{left:481.213333pt;}
.x7{left:576.573333pt;}
}




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