
    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_4660226daa8e37d046e997ab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_485a2340127f302448d1aa54.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_89174fc68bd67d9e79784765.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_e67a5b0fd3572a86435da32b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_f2b60b0d94f2d649140fad7c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_36160a8c5bb3a8a78249e43b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_624c6a7126f7ea2a76789b57.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_a70d2c49561fe2b433702f3e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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;}
.ls10{letter-spacing:-1.260000px;}
.ls15{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.756000px;}
.ls13{letter-spacing:0.828000px;}
.ls16{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.170720px;}
.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;}
}
.ws3{word-spacing:-24.300000px;}
.ws4{word-spacing:-23.940000px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.166000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-461.868480px;}
._f{margin-left:-3.765600px;}
._4{margin-left:-2.497200px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._10{width:4.039920px;}
._6{width:5.079600px;}
._5{width:6.095520px;}
._8{width:7.387920px;}
._7{width:8.784720px;}
._12{width:10.105200px;}
._11{width:11.414160px;}
._c{width:12.810960px;}
._9{width:13.842000px;}
._14{width:16.910640px;}
._13{width:18.087840px;}
._a{width:24.800400px;}
._b{width:26.369280px;}
._d{width:34.160400px;}
._e{width:96.512400px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.180000px;}
.y7{bottom:5.220000px;}
.y36{bottom:5.760000px;}
.y20{bottom:6.120000px;}
.y6{bottom:14.220000px;}
.y35{bottom:25.560000px;}
.y1f{bottom:25.920000px;}
.y34{bottom:45.390000px;}
.y5{bottom:45.720000px;}
.y1e{bottom:45.750000px;}
.y9{bottom:60.120000px;}
.y33{bottom:62.670000px;}
.y1d{bottom:65.550000px;}
.y4{bottom:77.400000px;}
.y32{bottom:79.950000px;}
.yb6{bottom:83.916000px;}
.y1c{bottom:85.350000px;}
.y4e{bottom:86.976000px;}
.ycc{bottom:92.916000px;}
.yf1{bottom:94.716000px;}
.y31{bottom:96.510000px;}
.y84{bottom:96.516000px;}
.yb5{bottom:103.716000px;}
.y1b{bottom:105.330000px;}
.y4d{bottom:106.776000px;}
.y3{bottom:109.110000px;}
.y30{bottom:110.190000px;}
.ycb{bottom:112.716000px;}
.yf0{bottom:114.516000px;}
.y83{bottom:116.316000px;}
.yb4{bottom:123.516000px;}
.y2f{bottom:124.050000px;}
.y1a{bottom:125.130000px;}
.y4c{bottom:126.576000px;}
.yca{bottom:132.516000px;}
.yef{bottom:134.316000px;}
.y82{bottom:136.116000px;}
.y2e{bottom:137.910000px;}
.y2{bottom:142.230000px;}
.yb3{bottom:143.316000px;}
.y19{bottom:144.930000px;}
.y4b{bottom:146.376000px;}
.y2d{bottom:151.590000px;}
.yc9{bottom:152.310000px;}
.yee{bottom:154.110000px;}
.y81{bottom:156.090000px;}
.yb2{bottom:163.110000px;}
.y18{bottom:164.730000px;}
.y2c{bottom:165.450000px;}
.y4a{bottom:166.350000px;}
.yc8{bottom:172.110000px;}
.yed{bottom:174.090000px;}
.y80{bottom:175.890000px;}
.y2b{bottom:179.310000px;}
.yb1{bottom:183.090000px;}
.y17{bottom:184.530000px;}
.y49{bottom:186.150000px;}
.yc7{bottom:192.090000px;}
.y2a{bottom:192.990000px;}
.yec{bottom:193.890000px;}
.y7f{bottom:195.690000px;}
.yb0{bottom:202.890000px;}
.y16{bottom:204.510000px;}
.y48{bottom:205.950000px;}
.y29{bottom:206.850000px;}
.yc6{bottom:211.890000px;}
.yeb{bottom:213.690000px;}
.y7e{bottom:215.490000px;}
.y28{bottom:220.710000px;}
.yaf{bottom:222.690000px;}
.y15{bottom:224.310000px;}
.y47{bottom:225.750000px;}
.yc5{bottom:231.690000px;}
.yea{bottom:233.490000px;}
.y27{bottom:234.390000px;}
.y7d{bottom:235.290000px;}
.yae{bottom:242.490000px;}
.y14{bottom:244.110000px;}
.y46{bottom:245.550000px;}
.y26{bottom:248.250000px;}
.yc4{bottom:251.490000px;}
.ye9{bottom:253.290000px;}
.y7c{bottom:255.270000px;}
.y25{bottom:262.110000px;}
.yad{bottom:262.290000px;}
.y13{bottom:263.910000px;}
.y45{bottom:265.530000px;}
.yc3{bottom:271.290000px;}
.ye8{bottom:273.270000px;}
.y7b{bottom:275.070000px;}
.y24{bottom:275.790000px;}
.yac{bottom:282.270000px;}
.y12{bottom:283.710000px;}
.y44{bottom:285.330000px;}
.y23{bottom:290.370000px;}
.yc2{bottom:291.270000px;}
.ye7{bottom:293.070000px;}
.y7a{bottom:294.870000px;}
.yab{bottom:302.070000px;}
.y11{bottom:304.995000px;}
.y43{bottom:305.130000px;}
.y22{bottom:307.695000px;}
.yc1{bottom:311.070000px;}
.ye6{bottom:312.870000px;}
.yaa{bottom:321.870000px;}
.y79{bottom:323.670000px;}
.y42{bottom:324.930000px;}
.yc0{bottom:330.915000px;}
.ye5{bottom:332.715000px;}
.ya9{bottom:341.715000px;}
.y78{bottom:343.515000px;}
.y41{bottom:344.775000px;}
.ybf{bottom:350.715000px;}
.ye4{bottom:352.515000px;}
.ya8{bottom:361.515000px;}
.y77{bottom:363.495000px;}
.y40{bottom:364.755000px;}
.ybe{bottom:370.515000px;}
.ye3{bottom:372.495000px;}
.ya7{bottom:381.495000px;}
.y76{bottom:383.295000px;}
.y3f{bottom:384.555000px;}
.ybd{bottom:390.495000px;}
.ye2{bottom:392.295000px;}
.ya6{bottom:401.295000px;}
.y75{bottom:403.095000px;}
.y3e{bottom:404.355000px;}
.ybc{bottom:410.295000px;}
.ye1{bottom:412.095000px;}
.ya5{bottom:421.095000px;}
.y74{bottom:422.895000px;}
.y3d{bottom:424.155000px;}
.ybb{bottom:430.095000px;}
.ye0{bottom:431.895000px;}
.ya4{bottom:440.895000px;}
.y73{bottom:442.695000px;}
.y3c{bottom:443.955000px;}
.yba{bottom:449.895000px;}
.ydf{bottom:451.695000px;}
.ya3{bottom:460.695000px;}
.y72{bottom:462.675000px;}
.y3b{bottom:463.935000px;}
.yb9{bottom:469.695000px;}
.yde{bottom:471.675000px;}
.ya2{bottom:480.675000px;}
.y3a{bottom:483.735000px;}
.yb8{bottom:489.675000px;}
.y71{bottom:491.475000px;}
.ya1{bottom:500.475000px;}
.y39{bottom:503.535000px;}
.yb7{bottom:509.475000px;}
.y70{bottom:511.275000px;}
.y38{bottom:523.335000px;}
.ya0{bottom:529.275000px;}
.y6f{bottom:531.075000px;}
.y37{bottom:543.135000px;}
.y9f{bottom:549.075000px;}
.y6e{bottom:550.875000px;}
.y10{bottom:558.075000px;}
.y9e{bottom:568.875000px;}
.y6d{bottom:570.855000px;}
.y9d{bottom:588.855000px;}
.y6c{bottom:590.655000px;}
.y9c{bottom:608.685000px;}
.ydd{bottom:610.485000px;}
.y6b{bottom:619.485000px;}
.y9b{bottom:628.485000px;}
.ydc{bottom:630.285000px;}
.y6a{bottom:639.285000px;}
.y9a{bottom:648.285000px;}
.ydb{bottom:650.085000px;}
.y69{bottom:659.085000px;}
.y99{bottom:668.085000px;}
.yda{bottom:670.065000px;}
.y68{bottom:679.065000px;}
.y98{bottom:688.065000px;}
.yd9{bottom:689.865000px;}
.y67{bottom:698.865000px;}
.y97{bottom:707.865000px;}
.yd8{bottom:709.665000px;}
.y66{bottom:718.665000px;}
.y96{bottom:727.665000px;}
.yd7{bottom:729.465000px;}
.y65{bottom:738.465000px;}
.y95{bottom:747.465000px;}
.yd6{bottom:749.265000px;}
.y64{bottom:758.265000px;}
.y94{bottom:767.265000px;}
.yd5{bottom:769.245000px;}
.y63{bottom:778.245000px;}
.y93{bottom:787.245000px;}
.yd4{bottom:789.045000px;}
.y62{bottom:798.045000px;}
.y92{bottom:807.045000px;}
.yd3{bottom:808.845000px;}
.y61{bottom:817.845000px;}
.y91{bottom:826.845000px;}
.yd2{bottom:828.645000px;}
.y60{bottom:837.645000px;}
.y90{bottom:846.645000px;}
.yd1{bottom:848.445000px;}
.y5f{bottom:857.445000px;}
.y8f{bottom:866.490000px;}
.yd0{bottom:868.290000px;}
.y5e{bottom:877.290000px;}
.yf{bottom:886.290000px;}
.ycf{bottom:888.270000px;}
.y5d{bottom:897.270000px;}
.ye{bottom:906.090000px;}
.y8e{bottom:906.270000px;}
.y5c{bottom:917.070000px;}
.y8d{bottom:926.070000px;}
.yd{bottom:926.430000px;}
.y5b{bottom:936.870000px;}
.y8c{bottom:945.870000px;}
.yc{bottom:947.850000px;}
.y5a{bottom:956.670000px;}
.y8b{bottom:965.670000px;}
.yb{bottom:971.250000px;}
.y59{bottom:976.470000px;}
.y8a{bottom:985.470000px;}
.y58{bottom:996.450000px;}
.ya{bottom:1002.930000px;}
.y89{bottom:1005.450000px;}
.y57{bottom:1016.250000px;}
.y88{bottom:1025.250000px;}
.y8{bottom:1029.750000px;}
.y56{bottom:1036.050000px;}
.y87{bottom:1045.050000px;}
.y1{bottom:1046.130000px;}
.y55{bottom:1055.850000px;}
.y86{bottom:1064.850000px;}
.y54{bottom:1075.650000px;}
.y85{bottom:1084.650000px;}
.yce{bottom:1095.630000px;}
.y53{bottom:1104.630000px;}
.ycd{bottom:1115.430000px;}
.y52{bottom:1124.430000px;}
.y51{bottom:1144.260000px;}
.y50{bottom:1164.060000px;}
.y4f{bottom:1192.140000px;}
.h5{height:2.010938px;}
.he{height:34.036523px;}
.hb{height:41.726953px;}
.h9{height:42.164648px;}
.h10{height:43.506914px;}
.h7{height:46.251562px;}
.ha{height:46.736719px;}
.hf{height:48.127500px;}
.h4{height:48.774375px;}
.h11{height:49.255313px;}
.hd{height:50.800781px;}
.h3{height:57.256875px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h2{height:162.750000px;}
.hc{height:321.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:147.420000px;}
.w6{width:215.490000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.000000px;}
.x6{left:56.880000px;}
.x9{left:80.999987px;}
.xa{left:108.035987px;}
.x4{left:139.320000px;}
.x8{left:333.794987px;}
.x5{left:393.014987px;}
.x7{left:620.565000px;}
.x3{left:687.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.672000pt;}
.ls13{letter-spacing:0.736000pt;}
.ls16{letter-spacing:14.672640pt;}
.lsa{letter-spacing:41.040640pt;}
.ws3{word-spacing:-21.600000pt;}
.ws4{word-spacing:-21.280000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.592000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-410.549760pt;}
._f{margin-left:-3.347200pt;}
._4{margin-left:-2.219733pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._10{width:3.591040pt;}
._6{width:4.515200pt;}
._5{width:5.418240pt;}
._8{width:6.567040pt;}
._7{width:7.808640pt;}
._12{width:8.982400pt;}
._11{width:10.145920pt;}
._c{width:11.387520pt;}
._9{width:12.304000pt;}
._14{width:15.031680pt;}
._13{width:16.078080pt;}
._a{width:22.044800pt;}
._b{width:23.439360pt;}
._d{width:30.364800pt;}
._e{width:85.788800pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.160000pt;}
.y7{bottom:4.640000pt;}
.y36{bottom:5.120000pt;}
.y20{bottom:5.440000pt;}
.y6{bottom:12.640000pt;}
.y35{bottom:22.720000pt;}
.y1f{bottom:23.040000pt;}
.y34{bottom:40.346667pt;}
.y5{bottom:40.640000pt;}
.y1e{bottom:40.666667pt;}
.y9{bottom:53.440000pt;}
.y33{bottom:55.706667pt;}
.y1d{bottom:58.266667pt;}
.y4{bottom:68.800000pt;}
.y32{bottom:71.066667pt;}
.yb6{bottom:74.592000pt;}
.y1c{bottom:75.866667pt;}
.y4e{bottom:77.312000pt;}
.ycc{bottom:82.592000pt;}
.yf1{bottom:84.192000pt;}
.y31{bottom:85.786667pt;}
.y84{bottom:85.792000pt;}
.yb5{bottom:92.192000pt;}
.y1b{bottom:93.626667pt;}
.y4d{bottom:94.912000pt;}
.y3{bottom:96.986667pt;}
.y30{bottom:97.946667pt;}
.ycb{bottom:100.192000pt;}
.yf0{bottom:101.792000pt;}
.y83{bottom:103.392000pt;}
.yb4{bottom:109.792000pt;}
.y2f{bottom:110.266667pt;}
.y1a{bottom:111.226667pt;}
.y4c{bottom:112.512000pt;}
.yca{bottom:117.792000pt;}
.yef{bottom:119.392000pt;}
.y82{bottom:120.992000pt;}
.y2e{bottom:122.586667pt;}
.y2{bottom:126.426667pt;}
.yb3{bottom:127.392000pt;}
.y19{bottom:128.826667pt;}
.y4b{bottom:130.112000pt;}
.y2d{bottom:134.746667pt;}
.yc9{bottom:135.386667pt;}
.yee{bottom:136.986667pt;}
.y81{bottom:138.746667pt;}
.yb2{bottom:144.986667pt;}
.y18{bottom:146.426667pt;}
.y2c{bottom:147.066667pt;}
.y4a{bottom:147.866667pt;}
.yc8{bottom:152.986667pt;}
.yed{bottom:154.746667pt;}
.y80{bottom:156.346667pt;}
.y2b{bottom:159.386667pt;}
.yb1{bottom:162.746667pt;}
.y17{bottom:164.026667pt;}
.y49{bottom:165.466667pt;}
.yc7{bottom:170.746667pt;}
.y2a{bottom:171.546667pt;}
.yec{bottom:172.346667pt;}
.y7f{bottom:173.946667pt;}
.yb0{bottom:180.346667pt;}
.y16{bottom:181.786667pt;}
.y48{bottom:183.066667pt;}
.y29{bottom:183.866667pt;}
.yc6{bottom:188.346667pt;}
.yeb{bottom:189.946667pt;}
.y7e{bottom:191.546667pt;}
.y28{bottom:196.186667pt;}
.yaf{bottom:197.946667pt;}
.y15{bottom:199.386667pt;}
.y47{bottom:200.666667pt;}
.yc5{bottom:205.946667pt;}
.yea{bottom:207.546667pt;}
.y27{bottom:208.346667pt;}
.y7d{bottom:209.146667pt;}
.yae{bottom:215.546667pt;}
.y14{bottom:216.986667pt;}
.y46{bottom:218.266667pt;}
.y26{bottom:220.666667pt;}
.yc4{bottom:223.546667pt;}
.ye9{bottom:225.146667pt;}
.y7c{bottom:226.906667pt;}
.y25{bottom:232.986667pt;}
.yad{bottom:233.146667pt;}
.y13{bottom:234.586667pt;}
.y45{bottom:236.026667pt;}
.yc3{bottom:241.146667pt;}
.ye8{bottom:242.906667pt;}
.y7b{bottom:244.506667pt;}
.y24{bottom:245.146667pt;}
.yac{bottom:250.906667pt;}
.y12{bottom:252.186667pt;}
.y44{bottom:253.626667pt;}
.y23{bottom:258.106667pt;}
.yc2{bottom:258.906667pt;}
.ye7{bottom:260.506667pt;}
.y7a{bottom:262.106667pt;}
.yab{bottom:268.506667pt;}
.y11{bottom:271.106667pt;}
.y43{bottom:271.226667pt;}
.y22{bottom:273.506667pt;}
.yc1{bottom:276.506667pt;}
.ye6{bottom:278.106667pt;}
.yaa{bottom:286.106667pt;}
.y79{bottom:287.706667pt;}
.y42{bottom:288.826667pt;}
.yc0{bottom:294.146667pt;}
.ye5{bottom:295.746667pt;}
.ya9{bottom:303.746667pt;}
.y78{bottom:305.346667pt;}
.y41{bottom:306.466667pt;}
.ybf{bottom:311.746667pt;}
.ye4{bottom:313.346667pt;}
.ya8{bottom:321.346667pt;}
.y77{bottom:323.106667pt;}
.y40{bottom:324.226667pt;}
.ybe{bottom:329.346667pt;}
.ye3{bottom:331.106667pt;}
.ya7{bottom:339.106667pt;}
.y76{bottom:340.706667pt;}
.y3f{bottom:341.826667pt;}
.ybd{bottom:347.106667pt;}
.ye2{bottom:348.706667pt;}
.ya6{bottom:356.706667pt;}
.y75{bottom:358.306667pt;}
.y3e{bottom:359.426667pt;}
.ybc{bottom:364.706667pt;}
.ye1{bottom:366.306667pt;}
.ya5{bottom:374.306667pt;}
.y74{bottom:375.906667pt;}
.y3d{bottom:377.026667pt;}
.ybb{bottom:382.306667pt;}
.ye0{bottom:383.906667pt;}
.ya4{bottom:391.906667pt;}
.y73{bottom:393.506667pt;}
.y3c{bottom:394.626667pt;}
.yba{bottom:399.906667pt;}
.ydf{bottom:401.506667pt;}
.ya3{bottom:409.506667pt;}
.y72{bottom:411.266667pt;}
.y3b{bottom:412.386667pt;}
.yb9{bottom:417.506667pt;}
.yde{bottom:419.266667pt;}
.ya2{bottom:427.266667pt;}
.y3a{bottom:429.986667pt;}
.yb8{bottom:435.266667pt;}
.y71{bottom:436.866667pt;}
.ya1{bottom:444.866667pt;}
.y39{bottom:447.586667pt;}
.yb7{bottom:452.866667pt;}
.y70{bottom:454.466667pt;}
.y38{bottom:465.186667pt;}
.ya0{bottom:470.466667pt;}
.y6f{bottom:472.066667pt;}
.y37{bottom:482.786667pt;}
.y9f{bottom:488.066667pt;}
.y6e{bottom:489.666667pt;}
.y10{bottom:496.066667pt;}
.y9e{bottom:505.666667pt;}
.y6d{bottom:507.426667pt;}
.y9d{bottom:523.426667pt;}
.y6c{bottom:525.026667pt;}
.y9c{bottom:541.053333pt;}
.ydd{bottom:542.653333pt;}
.y6b{bottom:550.653333pt;}
.y9b{bottom:558.653333pt;}
.ydc{bottom:560.253333pt;}
.y6a{bottom:568.253333pt;}
.y9a{bottom:576.253333pt;}
.ydb{bottom:577.853333pt;}
.y69{bottom:585.853333pt;}
.y99{bottom:593.853333pt;}
.yda{bottom:595.613333pt;}
.y68{bottom:603.613333pt;}
.y98{bottom:611.613333pt;}
.yd9{bottom:613.213333pt;}
.y67{bottom:621.213333pt;}
.y97{bottom:629.213333pt;}
.yd8{bottom:630.813333pt;}
.y66{bottom:638.813333pt;}
.y96{bottom:646.813333pt;}
.yd7{bottom:648.413333pt;}
.y65{bottom:656.413333pt;}
.y95{bottom:664.413333pt;}
.yd6{bottom:666.013333pt;}
.y64{bottom:674.013333pt;}
.y94{bottom:682.013333pt;}
.yd5{bottom:683.773333pt;}
.y63{bottom:691.773333pt;}
.y93{bottom:699.773333pt;}
.yd4{bottom:701.373333pt;}
.y62{bottom:709.373333pt;}
.y92{bottom:717.373333pt;}
.yd3{bottom:718.973333pt;}
.y61{bottom:726.973333pt;}
.y91{bottom:734.973333pt;}
.yd2{bottom:736.573333pt;}
.y60{bottom:744.573333pt;}
.y90{bottom:752.573333pt;}
.yd1{bottom:754.173333pt;}
.y5f{bottom:762.173333pt;}
.y8f{bottom:770.213333pt;}
.yd0{bottom:771.813333pt;}
.y5e{bottom:779.813333pt;}
.yf{bottom:787.813333pt;}
.ycf{bottom:789.573333pt;}
.y5d{bottom:797.573333pt;}
.ye{bottom:805.413333pt;}
.y8e{bottom:805.573333pt;}
.y5c{bottom:815.173333pt;}
.y8d{bottom:823.173333pt;}
.yd{bottom:823.493333pt;}
.y5b{bottom:832.773333pt;}
.y8c{bottom:840.773333pt;}
.yc{bottom:842.533333pt;}
.y5a{bottom:850.373333pt;}
.y8b{bottom:858.373333pt;}
.yb{bottom:863.333333pt;}
.y59{bottom:867.973333pt;}
.y8a{bottom:875.973333pt;}
.y58{bottom:885.733333pt;}
.ya{bottom:891.493333pt;}
.y89{bottom:893.733333pt;}
.y57{bottom:903.333333pt;}
.y88{bottom:911.333333pt;}
.y8{bottom:915.333333pt;}
.y56{bottom:920.933333pt;}
.y87{bottom:928.933333pt;}
.y1{bottom:929.893333pt;}
.y55{bottom:938.533333pt;}
.y86{bottom:946.533333pt;}
.y54{bottom:956.133333pt;}
.y85{bottom:964.133333pt;}
.yce{bottom:973.893333pt;}
.y53{bottom:981.893333pt;}
.ycd{bottom:991.493333pt;}
.y52{bottom:999.493333pt;}
.y51{bottom:1017.120000pt;}
.y50{bottom:1034.720000pt;}
.y4f{bottom:1059.680000pt;}
.h5{height:1.787500pt;}
.he{height:30.254687pt;}
.hb{height:37.090625pt;}
.h9{height:37.479688pt;}
.h10{height:38.672812pt;}
.h7{height:41.112500pt;}
.ha{height:41.543750pt;}
.hf{height:42.780000pt;}
.h4{height:43.355000pt;}
.h11{height:43.782500pt;}
.hd{height:45.156250pt;}
.h3{height:50.895000pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h2{height:144.666667pt;}
.hc{height:285.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:131.040000pt;}
.w6{width:191.546667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.560000pt;}
.x9{left:71.999988pt;}
.xa{left:96.031988pt;}
.x4{left:123.840000pt;}
.x8{left:296.706655pt;}
.x5{left:349.346655pt;}
.x7{left:551.613333pt;}
.x3{left:611.493333pt;}
}




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