
    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_337011bd9f34a6090809a66d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.758789;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_87ddb6a4e994bb83d84485df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_f77a779fb7849b3efe6dad6b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117676;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_f4ff165a08003b3aefc0d51a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117676;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_2769f32ef10860c3ccd5aa26.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981934;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_3c9336f3638bd185b84fc032.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981934;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_4b3033f01ce8b7e54e8ae580.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_0a22b9abf2b145eb4f9f900d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_cc2ad2cfb9b8266de16417c9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988281;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:ffb;src:url('chunks/assets/font_b15d578d41d19cb48c03d888.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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;}
.v1{vertical-align:24.912000px;}
.ls3{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.064080px;}
.ls2{letter-spacing:0.149040px;}
.ls8{letter-spacing:0.245400px;}
.ls6{letter-spacing:0.325200px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:46.697760px;}
.ls14{letter-spacing:63.072000px;}
.ls9{letter-spacing:73.888128px;}
.lsa{letter-spacing:73.954080px;}
.ls12{letter-spacing:81.870048px;}
.ls13{letter-spacing:81.936000px;}
.ls7{letter-spacing:85.165920px;}
.lsf{letter-spacing:92.608128px;}
.ls10{letter-spacing:92.674080px;}
.lse{letter-spacing:92.818080px;}
.ls1{letter-spacing:95.982048px;}
.ls15{letter-spacing:96.048000px;}
.lsd{letter-spacing:98.424000px;}
.lsb{letter-spacing:103.819968px;}
.lsc{letter-spacing:103.885920px;}
.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;}
}
.ws9{word-spacing:-167.760000px;}
.ws4{word-spacing:-66.693312px;}
.ws6{word-spacing:-66.653280px;}
.ws10{word-spacing:-60.088032px;}
.ws11{word-spacing:-60.048000px;}
.wsc{word-spacing:-53.482752px;}
.ws8{word-spacing:-53.442720px;}
.wse{word-spacing:-50.040000px;}
.wsa{word-spacing:-46.997280px;}
.wsd{word-spacing:-46.677312px;}
.wsb{word-spacing:-46.637280px;}
.ws2{word-spacing:-40.032000px;}
.ws7{word-spacing:-36.180144px;}
.ws3{word-spacing:-36.144000px;}
.ws0{word-spacing:-30.024000px;}
.ws5{word-spacing:-0.239904px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.660000px;}
._6{margin-left:-18.956880px;}
._b{margin-left:-14.225760px;}
._3{margin-left:-12.947040px;}
._c{margin-left:-11.484480px;}
._15{margin-left:-10.440000px;}
._2{margin-left:-9.116352px;}
._9{margin-left:-7.200000px;}
._a{margin-left:-4.804704px;}
._8{margin-left:-3.790656px;}
._1{margin-left:-2.638944px;}
._5{margin-left:-1.509840px;}
._4{width:1.006560px;}
._0{width:2.397600px;}
._d{width:4.111920px;}
._7{width:39.108576px;}
._14{width:49.554384px;}
._10{width:421.188816px;}
._e{width:532.305840px;}
._12{width:695.720496px;}
._11{width:853.557600px;}
._f{width:938.157888px;}
._13{width:1177.716000px;}
.fc4{color:rgb(64,73,36);}
.fc3{color:rgb(0,128,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(138,132,114);}
.fs8{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.fsc{font-size:180.000000px;}
.fsd{font-size:180.144000px;}
.fs9{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fsf{font-size:216.000000px;}
.fse{font-size:216.144000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs10{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:14.400000px;}
.y24{bottom:20.628000px;}
.y8f{bottom:43.920000px;}
.y34{bottom:45.000000px;}
.y3c{bottom:46.800000px;}
.y98{bottom:51.120000px;}
.y3b{bottom:79.236000px;}
.y8e{bottom:80.280000px;}
.y18{bottom:81.360000px;}
.y7{bottom:84.780000px;}
.y33{bottom:90.360000px;}
.y79{bottom:90.756000px;}
.yac{bottom:100.296000px;}
.y3a{bottom:111.636000px;}
.y5e{bottom:114.516000px;}
.y17{bottom:115.956000px;}
.y8d{bottom:116.496000px;}
.y97{bottom:120.276000px;}
.y6{bottom:127.116000px;}
.y53{bottom:127.836000px;}
.y49{bottom:132.156000px;}
.ya2{bottom:132.336000px;}
.y78{bottom:133.956000px;}
.y32{bottom:135.756000px;}
.ybe{bottom:139.356000px;}
.y68{bottom:139.608000px;}
.y39{bottom:144.036000px;}
.y16{bottom:150.510000px;}
.yab{bottom:152.130000px;}
.yc1{bottom:152.310000px;}
.y8c{bottom:152.850000px;}
.y5d{bottom:164.910000px;}
.y38{bottom:176.430000px;}
.y77{bottom:177.195000px;}
.y52{bottom:179.670000px;}
.y31{bottom:181.110000px;}
.ybd{bottom:182.550000px;}
.ya1{bottom:184.170000px;}
.y21{bottom:184.680000px;}
.y67{bottom:184.965000px;}
.y15{bottom:185.070000px;}
.y5{bottom:187.590000px;}
.y8b{bottom:189.030000px;}
.y96{bottom:189.390000px;}
.yaa{bottom:203.970000px;}
.y1b{bottom:210.135000px;}
.y5c{bottom:215.310000px;}
.ybc{bottom:217.110000px;}
.y14{bottom:219.630000px;}
.y76{bottom:220.395000px;}
.y7f{bottom:222.870000px;}
.y8a{bottom:225.390000px;}
.y20{bottom:227.880000px;}
.y66{bottom:230.325000px;}
.y51{bottom:231.510000px;}
.y2b{bottom:232.230000px;}
.ya0{bottom:236.010000px;}
.y1a{bottom:242.565000px;}
.y48{bottom:243.030000px;}
.ybb{bottom:251.670000px;}
.y13{bottom:254.190000px;}
.ya9{bottom:255.810000px;}
.y95{bottom:258.510000px;}
.y89{bottom:261.795000px;}
.y5b{bottom:265.755000px;}
.y28{bottom:271.080000px;}
.y75{bottom:274.395000px;}
.y19{bottom:274.965000px;}
.y65{bottom:275.730000px;}
.yb3{bottom:277.635000px;}
.y50{bottom:283.395000px;}
.yba{bottom:286.275000px;}
.y9f{bottom:287.895000px;}
.y47{bottom:288.435000px;}
.y12{bottom:288.795000px;}
.y88{bottom:297.975000px;}
.ya8{bottom:307.695000px;}
.yb2{bottom:312.195000px;}
.y1f{bottom:314.310000px;}
.y5a{bottom:316.155000px;}
.y74{bottom:317.595000px;}
.yb9{bottom:320.835000px;}
.y64{bottom:321.090000px;}
.y11{bottom:323.355000px;}
.y46{bottom:333.795000px;}
.y87{bottom:334.335000px;}
.y4f{bottom:335.235000px;}
.y9e{bottom:339.735000px;}
.yb1{bottom:346.755000px;}
.y4{bottom:351.075000px;}
.yb8{bottom:355.395000px;}
.y1e{bottom:357.510000px;}
.y10{bottom:357.915000px;}
.ya7{bottom:359.535000px;}
.y73{bottom:360.825000px;}
.y2a{bottom:362.415000px;}
.y4b{bottom:364.035000px;}
.y63{bottom:366.450000px;}
.y59{bottom:366.555000px;}
.y86{bottom:370.515000px;}
.y7e{bottom:374.115000px;}
.y45{bottom:379.155000px;}
.yb0{bottom:381.315000px;}
.y4e{bottom:387.075000px;}
.yf{bottom:392.475000px;}
.y27{bottom:400.710000px;}
.y9d{bottom:404.535000px;}
.y85{bottom:406.875000px;}
.ya6{bottom:411.375000px;}
.y7d{bottom:414.435000px;}
.y72{bottom:414.825000px;}
.y29{bottom:415.875000px;}
.y58{bottom:416.955000px;}
.y4a{bottom:421.665000px;}
.y62{bottom:421.920000px;}
.y3{bottom:423.105000px;}
.y44{bottom:424.545000px;}
.ye{bottom:427.065000px;}
.yb7{bottom:441.825000px;}
.y84{bottom:443.085000px;}
.y1d{bottom:443.910000px;}
.yaf{bottom:450.465000px;}
.y7c{bottom:454.785000px;}
.y9c{bottom:456.405000px;}
.y71{bottom:458.025000px;}
.yd{bottom:461.625000px;}
.ya5{bottom:463.245000px;}
.y94{bottom:465.945000px;}
.y61{bottom:467.280000px;}
.y43{bottom:469.905000px;}
.yb6{bottom:476.385000px;}
.y57{bottom:477.465000px;}
.y83{bottom:479.445000px;}
.y26{bottom:487.155000px;}
.y6d{bottom:495.000000px;}
.y2{bottom:495.105000px;}
.yc{bottom:496.185000px;}
.y70{bottom:501.270000px;}
.y9b{bottom:508.245000px;}
.yb5{bottom:510.945000px;}
.y60{bottom:512.640000px;}
.y4d{bottom:513.825000px;}
.ya4{bottom:515.085000px;}
.y42{bottom:515.265000px;}
.y82{bottom:515.805000px;}
.y56{bottom:527.865000px;}
.y35{bottom:530.355000px;}
.yb{bottom:530.745000px;}
.y93{bottom:535.065000px;}
.y7b{bottom:535.425000px;}
.y6f{bottom:544.470000px;}
.yb4{bottom:545.505000px;}
.y81{bottom:551.985000px;}
.yc2{bottom:556.665000px;}
.y6c{bottom:559.830000px;}
.y9a{bottom:560.085000px;}
.ya{bottom:565.305000px;}
.y4c{bottom:565.665000px;}
.ya3{bottom:566.925000px;}
.y1{bottom:567.105000px;}
.y5f{bottom:568.110000px;}
.y30{bottom:569.265000px;}
.y41{bottom:570.705000px;}
.y1c{bottom:573.555000px;}
.y7a{bottom:575.745000px;}
.y55{bottom:578.310000px;}
.yae{bottom:580.110000px;}
.y6e{bottom:587.670000px;}
.y80{bottom:588.390000px;}
.y9{bottom:599.910000px;}
.y92{bottom:604.230000px;}
.y99{bottom:611.970000px;}
.y2f{bottom:614.670000px;}
.y25{bottom:616.785000px;}
.y6b{bottom:624.630000px;}
.y54{bottom:628.710000px;}
.y40{bottom:646.350000px;}
.yc0{bottom:648.510000px;}
.y2e{bottom:660.030000px;}
.y23{bottom:671.295000px;}
.y91{bottom:673.350000px;}
.yad{bottom:680.040000px;}
.y37{bottom:683.610000px;}
.y6a{bottom:689.475000px;}
.y8{bottom:693.540000px;}
.y2d{bottom:705.390000px;}
.y3e{bottom:708.810000px;}
.ybf{bottom:713.340000px;}
.y3f{bottom:718.380000px;}
.y69{bottom:721.875000px;}
.y90{bottom:730.950000px;}
.y36{bottom:734.010000px;}
.y22{bottom:743.325000px;}
.y2c{bottom:750.780000px;}
.hd{height:62.789062px;}
.h10{height:79.417969px;}
.h15{height:84.269531px;}
.h11{height:94.183594px;}
.h12{height:94.309172px;}
.h5{height:112.640625px;}
.h6{height:125.406562px;}
.hb{height:125.578125px;}
.hc{height:125.703703px;}
.ha{height:129.093750px;}
.h7{height:129.222844px;}
.h8{height:150.187500px;}
.h9{height:150.337688px;}
.h13{height:150.394219px;}
.hf{height:150.523313px;}
.h3{height:174.968437px;}
.h4{height:175.118625px;}
.h16{height:187.734375px;}
.h17{height:187.884563px;}
.he{height:200.500313px;}
.h14{height:200.650500px;}
.h19{height:225.281250px;}
.h18{height:225.431438px;}
.h1{height:250.062187px;}
.h2{height:250.212375px;}
.h1a{height:275.744250px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1a{left:10.799984px;}
.x8{left:46.439984px;}
.xd{left:49.067984px;}
.x20{left:54.179984px;}
.x2a{left:55.871984px;}
.x21{left:63.539984px;}
.x1e{left:72.539984px;}
.x10{left:79.487984px;}
.x17{left:81.431984px;}
.x9{left:87.299984px;}
.x3{left:99.827984px;}
.x13{left:103.067984px;}
.x18{left:109.511984px;}
.x19{left:114.911984px;}
.x1f{left:117.755984px;}
.x1c{left:125.063984px;}
.x27{left:221.789984px;}
.x1{left:223.124984px;}
.x2{left:241.484984px;}
.x6{left:254.264984px;}
.x29{left:267.869984px;}
.x28{left:273.704984px;}
.x4{left:274.964984px;}
.x24{left:307.154984px;}
.x7{left:325.049984px;}
.x26{left:329.654984px;}
.xe{left:358.709984px;}
.x5{left:368.069984px;}
.x25{left:376.274984px;}
.x16{left:384.629984px;}
.x22{left:400.214984px;}
.x11{left:431.429984px;}
.x1b{left:445.109984px;}
.x2b{left:449.609984px;}
.x23{left:450.974984px;}
.xf{left:473.579984px;}
.x1d{left:525.389984px;}
.x15{left:559.079984px;}
.x2c{left:640.904984px;}
.xa{left:660.209984px;}
.xc{left:675.149984px;}
.xb{left:780.089984px;}
.x14{left:1016.639984px;}
.x12{left:1017.899984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.144000pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.056960pt;}
.ls2{letter-spacing:0.132480pt;}
.ls8{letter-spacing:0.218133pt;}
.ls6{letter-spacing:0.289067pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:41.509120pt;}
.ls14{letter-spacing:56.064000pt;}
.ls9{letter-spacing:65.678336pt;}
.lsa{letter-spacing:65.736960pt;}
.ls12{letter-spacing:72.773376pt;}
.ls13{letter-spacing:72.832000pt;}
.ls7{letter-spacing:75.703040pt;}
.lsf{letter-spacing:82.318336pt;}
.ls10{letter-spacing:82.376960pt;}
.lse{letter-spacing:82.504960pt;}
.ls1{letter-spacing:85.317376pt;}
.ls15{letter-spacing:85.376000pt;}
.lsd{letter-spacing:87.488000pt;}
.lsb{letter-spacing:92.284416pt;}
.lsc{letter-spacing:92.343040pt;}
.ws9{word-spacing:-149.120000pt;}
.ws4{word-spacing:-59.282944pt;}
.ws6{word-spacing:-59.247360pt;}
.ws10{word-spacing:-53.411584pt;}
.ws11{word-spacing:-53.376000pt;}
.wsc{word-spacing:-47.540224pt;}
.ws8{word-spacing:-47.504640pt;}
.wse{word-spacing:-44.480000pt;}
.wsa{word-spacing:-41.775360pt;}
.wsd{word-spacing:-41.490944pt;}
.wsb{word-spacing:-41.455360pt;}
.ws2{word-spacing:-35.584000pt;}
.ws7{word-spacing:-32.160128pt;}
.ws3{word-spacing:-32.128000pt;}
.ws0{word-spacing:-26.688000pt;}
.ws5{word-spacing:-0.213248pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.586667pt;}
._6{margin-left:-16.850560pt;}
._b{margin-left:-12.645120pt;}
._3{margin-left:-11.508480pt;}
._c{margin-left:-10.208427pt;}
._15{margin-left:-9.280000pt;}
._2{margin-left:-8.103424pt;}
._9{margin-left:-6.400000pt;}
._a{margin-left:-4.270848pt;}
._8{margin-left:-3.369472pt;}
._1{margin-left:-2.345728pt;}
._5{margin-left:-1.342080pt;}
._4{width:0.894720pt;}
._0{width:2.131200pt;}
._d{width:3.655040pt;}
._7{width:34.763179pt;}
._14{width:44.048341pt;}
._10{width:374.390059pt;}
._e{width:473.160747pt;}
._12{width:618.418219pt;}
._11{width:758.717867pt;}
._f{width:833.918123pt;}
._13{width:1046.858667pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.fsc{font-size:160.000000pt;}
.fsd{font-size:160.128000pt;}
.fs9{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fsf{font-size:192.000000pt;}
.fse{font-size:192.128000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs10{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:12.800000pt;}
.y24{bottom:18.336000pt;}
.y8f{bottom:39.040000pt;}
.y34{bottom:40.000000pt;}
.y3c{bottom:41.600000pt;}
.y98{bottom:45.440000pt;}
.y3b{bottom:70.432000pt;}
.y8e{bottom:71.360000pt;}
.y18{bottom:72.320000pt;}
.y7{bottom:75.360000pt;}
.y33{bottom:80.320000pt;}
.y79{bottom:80.672000pt;}
.yac{bottom:89.152000pt;}
.y3a{bottom:99.232000pt;}
.y5e{bottom:101.792000pt;}
.y17{bottom:103.072000pt;}
.y8d{bottom:103.552000pt;}
.y97{bottom:106.912000pt;}
.y6{bottom:112.992000pt;}
.y53{bottom:113.632000pt;}
.y49{bottom:117.472000pt;}
.ya2{bottom:117.632000pt;}
.y78{bottom:119.072000pt;}
.y32{bottom:120.672000pt;}
.ybe{bottom:123.872000pt;}
.y68{bottom:124.096000pt;}
.y39{bottom:128.032000pt;}
.y16{bottom:133.786667pt;}
.yab{bottom:135.226667pt;}
.yc1{bottom:135.386667pt;}
.y8c{bottom:135.866667pt;}
.y5d{bottom:146.586667pt;}
.y38{bottom:156.826667pt;}
.y77{bottom:157.506667pt;}
.y52{bottom:159.706667pt;}
.y31{bottom:160.986667pt;}
.ybd{bottom:162.266667pt;}
.ya1{bottom:163.706667pt;}
.y21{bottom:164.160000pt;}
.y67{bottom:164.413333pt;}
.y15{bottom:164.506667pt;}
.y5{bottom:166.746667pt;}
.y8b{bottom:168.026667pt;}
.y96{bottom:168.346667pt;}
.yaa{bottom:181.306667pt;}
.y1b{bottom:186.786667pt;}
.y5c{bottom:191.386667pt;}
.ybc{bottom:192.986667pt;}
.y14{bottom:195.226667pt;}
.y76{bottom:195.906667pt;}
.y7f{bottom:198.106667pt;}
.y8a{bottom:200.346667pt;}
.y20{bottom:202.560000pt;}
.y66{bottom:204.733333pt;}
.y51{bottom:205.786667pt;}
.y2b{bottom:206.426667pt;}
.ya0{bottom:209.786667pt;}
.y1a{bottom:215.613333pt;}
.y48{bottom:216.026667pt;}
.ybb{bottom:223.706667pt;}
.y13{bottom:225.946667pt;}
.ya9{bottom:227.386667pt;}
.y95{bottom:229.786667pt;}
.y89{bottom:232.706667pt;}
.y5b{bottom:236.226667pt;}
.y28{bottom:240.960000pt;}
.y75{bottom:243.906667pt;}
.y19{bottom:244.413333pt;}
.y65{bottom:245.093333pt;}
.yb3{bottom:246.786667pt;}
.y50{bottom:251.906667pt;}
.yba{bottom:254.466667pt;}
.y9f{bottom:255.906667pt;}
.y47{bottom:256.386667pt;}
.y12{bottom:256.706667pt;}
.y88{bottom:264.866667pt;}
.ya8{bottom:273.506667pt;}
.yb2{bottom:277.506667pt;}
.y1f{bottom:279.386667pt;}
.y5a{bottom:281.026667pt;}
.y74{bottom:282.306667pt;}
.yb9{bottom:285.186667pt;}
.y64{bottom:285.413333pt;}
.y11{bottom:287.426667pt;}
.y46{bottom:296.706667pt;}
.y87{bottom:297.186667pt;}
.y4f{bottom:297.986667pt;}
.y9e{bottom:301.986667pt;}
.yb1{bottom:308.226667pt;}
.y4{bottom:312.066667pt;}
.yb8{bottom:315.906667pt;}
.y1e{bottom:317.786667pt;}
.y10{bottom:318.146667pt;}
.ya7{bottom:319.586667pt;}
.y73{bottom:320.733333pt;}
.y2a{bottom:322.146667pt;}
.y4b{bottom:323.586667pt;}
.y63{bottom:325.733333pt;}
.y59{bottom:325.826667pt;}
.y86{bottom:329.346667pt;}
.y7e{bottom:332.546667pt;}
.y45{bottom:337.026667pt;}
.yb0{bottom:338.946667pt;}
.y4e{bottom:344.066667pt;}
.yf{bottom:348.866667pt;}
.y27{bottom:356.186667pt;}
.y9d{bottom:359.586667pt;}
.y85{bottom:361.666667pt;}
.ya6{bottom:365.666667pt;}
.y7d{bottom:368.386667pt;}
.y72{bottom:368.733333pt;}
.y29{bottom:369.666667pt;}
.y58{bottom:370.626667pt;}
.y4a{bottom:374.813333pt;}
.y62{bottom:375.040000pt;}
.y3{bottom:376.093333pt;}
.y44{bottom:377.373333pt;}
.ye{bottom:379.613333pt;}
.yb7{bottom:392.733333pt;}
.y84{bottom:393.853333pt;}
.y1d{bottom:394.586667pt;}
.yaf{bottom:400.413333pt;}
.y7c{bottom:404.253333pt;}
.y9c{bottom:405.693333pt;}
.y71{bottom:407.133333pt;}
.yd{bottom:410.333333pt;}
.ya5{bottom:411.773333pt;}
.y94{bottom:414.173333pt;}
.y61{bottom:415.360000pt;}
.y43{bottom:417.693333pt;}
.yb6{bottom:423.453333pt;}
.y57{bottom:424.413333pt;}
.y83{bottom:426.173333pt;}
.y26{bottom:433.026667pt;}
.y6d{bottom:440.000000pt;}
.y2{bottom:440.093333pt;}
.yc{bottom:441.053333pt;}
.y70{bottom:445.573333pt;}
.y9b{bottom:451.773333pt;}
.yb5{bottom:454.173333pt;}
.y60{bottom:455.680000pt;}
.y4d{bottom:456.733333pt;}
.ya4{bottom:457.853333pt;}
.y42{bottom:458.013333pt;}
.y82{bottom:458.493333pt;}
.y56{bottom:469.213333pt;}
.y35{bottom:471.426667pt;}
.yb{bottom:471.773333pt;}
.y93{bottom:475.613333pt;}
.y7b{bottom:475.933333pt;}
.y6f{bottom:483.973333pt;}
.yb4{bottom:484.893333pt;}
.y81{bottom:490.653333pt;}
.yc2{bottom:494.813333pt;}
.y6c{bottom:497.626667pt;}
.y9a{bottom:497.853333pt;}
.ya{bottom:502.493333pt;}
.y4c{bottom:502.813333pt;}
.ya3{bottom:503.933333pt;}
.y1{bottom:504.093333pt;}
.y5f{bottom:504.986667pt;}
.y30{bottom:506.013333pt;}
.y41{bottom:507.293333pt;}
.y1c{bottom:509.826667pt;}
.y7a{bottom:511.773333pt;}
.y55{bottom:514.053333pt;}
.yae{bottom:515.653333pt;}
.y6e{bottom:522.373333pt;}
.y80{bottom:523.013333pt;}
.y9{bottom:533.253333pt;}
.y92{bottom:537.093333pt;}
.y99{bottom:543.973333pt;}
.y2f{bottom:546.373333pt;}
.y25{bottom:548.253333pt;}
.y6b{bottom:555.226667pt;}
.y54{bottom:558.853333pt;}
.y40{bottom:574.533333pt;}
.yc0{bottom:576.453333pt;}
.y2e{bottom:586.693333pt;}
.y23{bottom:596.706667pt;}
.y91{bottom:598.533333pt;}
.yad{bottom:604.480000pt;}
.y37{bottom:607.653333pt;}
.y6a{bottom:612.866667pt;}
.y8{bottom:616.480000pt;}
.y2d{bottom:627.013333pt;}
.y3e{bottom:630.053333pt;}
.ybf{bottom:634.080000pt;}
.y3f{bottom:638.560000pt;}
.y69{bottom:641.666667pt;}
.y90{bottom:649.733333pt;}
.y36{bottom:652.453333pt;}
.y22{bottom:660.733333pt;}
.y2c{bottom:667.360000pt;}
.hd{height:55.812500pt;}
.h10{height:70.593750pt;}
.h15{height:74.906250pt;}
.h11{height:83.718750pt;}
.h12{height:83.830375pt;}
.h5{height:100.125000pt;}
.h6{height:111.472500pt;}
.hb{height:111.625000pt;}
.hc{height:111.736625pt;}
.ha{height:114.750000pt;}
.h7{height:114.864750pt;}
.h8{height:133.500000pt;}
.h9{height:133.633500pt;}
.h13{height:133.683750pt;}
.hf{height:133.798500pt;}
.h3{height:155.527500pt;}
.h4{height:155.661000pt;}
.h16{height:166.875000pt;}
.h17{height:167.008500pt;}
.he{height:178.222500pt;}
.h14{height:178.356000pt;}
.h19{height:200.250000pt;}
.h18{height:200.383500pt;}
.h1{height:222.277500pt;}
.h2{height:222.411000pt;}
.h1a{height:245.106000pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:9.599986pt;}
.x8{left:41.279986pt;}
.xd{left:43.615986pt;}
.x20{left:48.159986pt;}
.x2a{left:49.663986pt;}
.x21{left:56.479986pt;}
.x1e{left:64.479986pt;}
.x10{left:70.655986pt;}
.x17{left:72.383986pt;}
.x9{left:77.599986pt;}
.x3{left:88.735986pt;}
.x13{left:91.615986pt;}
.x18{left:97.343986pt;}
.x19{left:102.143986pt;}
.x1f{left:104.671986pt;}
.x1c{left:111.167986pt;}
.x27{left:197.146652pt;}
.x1{left:198.333319pt;}
.x2{left:214.653319pt;}
.x6{left:226.013319pt;}
.x29{left:238.106652pt;}
.x28{left:243.293319pt;}
.x4{left:244.413319pt;}
.x24{left:273.026652pt;}
.x7{left:288.933319pt;}
.x26{left:293.026652pt;}
.xe{left:318.853319pt;}
.x5{left:327.173319pt;}
.x25{left:334.466652pt;}
.x16{left:341.893319pt;}
.x22{left:355.746652pt;}
.x11{left:383.493319pt;}
.x1b{left:395.653319pt;}
.x2b{left:399.653319pt;}
.x23{left:400.866652pt;}
.xf{left:420.959986pt;}
.x1d{left:467.013319pt;}
.x15{left:496.959986pt;}
.x2c{left:569.693319pt;}
.xa{left:586.853319pt;}
.xc{left:600.133319pt;}
.xb{left:693.413319pt;}
.x14{left:903.679986pt;}
.x12{left:904.799986pt;}
}




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