
    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_d24ca8e420f08b5176d7e1fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_17763e98ae93cc3fc30927ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923340;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_56489e63718ec07a6ada3c6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_fe8cde13aa607211c6bd95b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_c99d3982ec832adf02ddea0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_f66e2dd18a9bd026804ad423.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2e6876387385c77835c83fd7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5fe9b45cd332b46a4935daba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_750ca4ba5b7174289cf68493.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_29307ab8a0450d2414283f3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.747559;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);}
.v1{vertical-align:-71.280000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-2.232000px;}
.lsa{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.260000px;}
.lsb{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:5.184000px;}
.ls8{letter-spacing:36.120000px;}
.ls3{letter-spacing:678.060000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.450800px;}
.ws9{word-spacing:-15.768000px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.220000px;}
.ws7{word-spacing:-12.060000px;}
.wsa{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._1b{margin-left:-6.756480px;}
._9{margin-left:-4.953600px;}
._8{margin-left:-3.836160px;}
._3{margin-left:-2.105280px;}
._0{margin-left:-1.075680px;}
._1{width:1.723440px;}
._19{width:2.874960px;}
._7{width:4.357440px;}
._6{width:6.206400px;}
._14{width:7.754400px;}
._18{width:9.203040px;}
._1a{width:10.272960px;}
._17{width:11.386800px;}
._16{width:12.816000px;}
._15{width:14.064480px;}
._2{width:15.246720px;}
._4{width:16.480800px;}
._13{width:19.879200px;}
._12{width:21.672000px;}
._a{width:22.697280px;}
._b{width:24.026400px;}
._1d{width:25.735680px;}
._11{width:29.522880px;}
._10{width:30.991680px;}
._1c{width:32.929920px;}
._23{width:49.392000px;}
._24{width:50.544000px;}
._c{width:55.648800px;}
._d{width:57.720960px;}
._f{width:64.077120px;}
._5{width:65.318400px;}
._e{width:74.314080px;}
._1e{width:218.232000px;}
._1f{width:219.312000px;}
._21{width:599.544000px;}
._22{width:600.624000px;}
._25{width:878.724000px;}
._20{width:943.483680px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs5{font-size:33.120000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y76{bottom:-27.900000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.780000px;}
.y75{bottom:5.040000px;}
.y42{bottom:5.220000px;}
.ya5{bottom:6.120000px;}
.yae{bottom:6.300000px;}
.yab{bottom:10.440000px;}
.y8{bottom:15.300000px;}
.ya8{bottom:20.340000px;}
.y48{bottom:21.060000px;}
.ya9{bottom:26.100000px;}
.yaa{bottom:30.240000px;}
.y7{bottom:33.300000px;}
.y47{bottom:38.160000px;}
.y4a{bottom:42.876000px;}
.y45{bottom:44.136000px;}
.y46{bottom:55.440000px;}
.y5{bottom:60.480000px;}
.y4{bottom:80.316000px;}
.yda{bottom:146.196000px;}
.y73{bottom:148.536000px;}
.y9e{bottom:164.370000px;}
.ycf{bottom:166.170000px;}
.yd9{bottom:170.130000px;}
.y72{bottom:172.290000px;}
.yfb{bottom:187.230000px;}
.y9d{bottom:188.130000px;}
.yce{bottom:189.930000px;}
.yd8{bottom:193.890000px;}
.y71{bottom:196.050000px;}
.yfa{bottom:210.990000px;}
.y9c{bottom:211.890000px;}
.ycd{bottom:213.690000px;}
.yd7{bottom:217.650000px;}
.y70{bottom:219.810000px;}
.yf9{bottom:234.750000px;}
.y9b{bottom:235.830000px;}
.ycc{bottom:237.450000px;}
.yd6{bottom:241.410000px;}
.y6f{bottom:243.750000px;}
.y9a{bottom:259.590000px;}
.ycb{bottom:261.390000px;}
.y6e{bottom:267.510000px;}
.yf8{bottom:273.675000px;}
.yd5{bottom:280.335000px;}
.y99{bottom:283.395000px;}
.yca{bottom:285.195000px;}
.y6d{bottom:291.315000px;}
.yf7{bottom:297.435000px;}
.yd4{bottom:304.095000px;}
.y98{bottom:307.155000px;}
.yc9{bottom:308.955000px;}
.y6c{bottom:315.075000px;}
.y97{bottom:331.095000px;}
.yc8{bottom:332.715000px;}
.yf6{bottom:336.135000px;}
.y6b{bottom:339.015000px;}
.yd3{bottom:342.975000px;}
.y96{bottom:354.855000px;}
.yc7{bottom:356.475000px;}
.yf5{bottom:360.075000px;}
.y6a{bottom:362.775000px;}
.yd2{bottom:366.735000px;}
.y3f{bottom:372.855000px;}
.y95{bottom:378.615000px;}
.yc6{bottom:380.415000px;}
.yf4{bottom:383.835000px;}
.y69{bottom:386.535000px;}
.y3e{bottom:396.615000px;}
.y94{bottom:402.375000px;}
.yc5{bottom:404.175000px;}
.yd1{bottom:405.435000px;}
.yf3{bottom:407.595000px;}
.y68{bottom:409.935000px;}
.y3d{bottom:420.375000px;}
.y93{bottom:426.135000px;}
.yd0{bottom:426.315000px;}
.yc4{bottom:427.935000px;}
.yf2{bottom:431.355000px;}
.y67{bottom:433.875000px;}
.y3c{bottom:444.135000px;}
.y92{bottom:450.075000px;}
.yc3{bottom:451.695000px;}
.yf1{bottom:455.295000px;}
.y66{bottom:457.995000px;}
.y3b{bottom:468.075000px;}
.y91{bottom:473.835000px;}
.yc2{bottom:475.635000px;}
.yf0{bottom:479.055000px;}
.y65{bottom:481.755000px;}
.y3a{bottom:491.835000px;}
.y90{bottom:497.595000px;}
.yc1{bottom:499.395000px;}
.y64{bottom:505.515000px;}
.y39{bottom:515.595000px;}
.yef{bottom:517.755000px;}
.ya3{bottom:520.995000px;}
.y8f{bottom:521.355000px;}
.yc0{bottom:523.155000px;}
.y63{bottom:529.455000px;}
.y38{bottom:539.355000px;}
.yee{bottom:541.695000px;}
.y8e{bottom:545.295000px;}
.ybf{bottom:546.915000px;}
.y62{bottom:553.215000px;}
.y37{bottom:563.115000px;}
.y8d{bottom:569.085000px;}
.ybe{bottom:570.885000px;}
.y61{bottom:577.005000px;}
.yed{bottom:580.425000px;}
.y36{bottom:587.055000px;}
.y8c{bottom:592.845000px;}
.ybd{bottom:594.645000px;}
.y60{bottom:600.765000px;}
.yec{bottom:604.365000px;}
.y35{bottom:610.845000px;}
.y8b{bottom:616.605000px;}
.ybc{bottom:618.405000px;}
.y5f{bottom:624.525000px;}
.yeb{bottom:628.125000px;}
.y34{bottom:634.605000px;}
.y8a{bottom:640.545000px;}
.ybb{bottom:642.165000px;}
.y5e{bottom:648.465000px;}
.yea{bottom:651.885000px;}
.y33{bottom:658.365000px;}
.y89{bottom:664.305000px;}
.yba{bottom:666.105000px;}
.y5d{bottom:672.225000px;}
.ye9{bottom:675.645000px;}
.y32{bottom:682.305000px;}
.y88{bottom:688.065000px;}
.yb9{bottom:689.865000px;}
.y5c{bottom:695.985000px;}
.ye8{bottom:699.405000px;}
.y31{bottom:706.065000px;}
.y87{bottom:711.825000px;}
.y2a{bottom:713.445000px;}
.yb8{bottom:713.625000px;}
.y5b{bottom:719.745000px;}
.y30{bottom:729.825000px;}
.y29{bottom:735.405000px;}
.ya2{bottom:735.765000px;}
.yb7{bottom:737.385000px;}
.ye7{bottom:738.285000px;}
.y5a{bottom:743.685000px;}
.y2f{bottom:753.585000px;}
.y28{bottom:757.185000px;}
.y86{bottom:759.165000px;}
.ya1{bottom:759.525000px;}
.yb6{bottom:761.325000px;}
.ye6{bottom:762.045000px;}
.y59{bottom:767.445000px;}
.y27{bottom:775.905000px;}
.y2e{bottom:777.525000px;}
.y85{bottom:783.285000px;}
.yb5{bottom:784.725000px;}
.yfc{bottom:785.985000px;}
.y58{bottom:791.205000px;}
.y26{bottom:793.005000px;}
.ye5{bottom:800.925000px;}
.y2d{bottom:801.285000px;}
.y84{bottom:807.045000px;}
.yb4{bottom:808.845000px;}
.y25{bottom:812.445000px;}
.y57{bottom:814.965000px;}
.ye4{bottom:824.685000px;}
.y2c{bottom:825.045000px;}
.y83{bottom:830.985000px;}
.y24{bottom:831.345000px;}
.yb3{bottom:832.605000px;}
.y56{bottom:838.950000px;}
.y2b{bottom:848.445000px;}
.ye3{bottom:848.490000px;}
.y40{bottom:848.805000px;}
.y23{bottom:850.245000px;}
.y82{bottom:854.790000px;}
.yb2{bottom:856.590000px;}
.y55{bottom:862.710000px;}
.ye2{bottom:872.430000px;}
.y81{bottom:878.550000px;}
.yb1{bottom:880.350000px;}
.y54{bottom:886.470000px;}
.y18{bottom:888.810000px;}
.ye1{bottom:896.190000px;}
.ya0{bottom:901.950000px;}
.y80{bottom:902.310000px;}
.yb0{bottom:904.110000px;}
.y22{bottom:905.190000px;}
.y17{bottom:907.710000px;}
.y53{bottom:910.230000px;}
.y7f{bottom:926.070000px;}
.y16{bottom:926.790000px;}
.yaf{bottom:927.870000px;}
.y52{bottom:934.170000px;}
.ye0{bottom:934.890000px;}
.y21{bottom:941.370000px;}
.yad{bottom:944.970000px;}
.y15{bottom:945.690000px;}
.y7e{bottom:950.010000px;}
.y20{bottom:951.810000px;}
.y51{bottom:957.930000px;}
.ydf{bottom:958.830000px;}
.y14{bottom:964.770000px;}
.y1f{bottom:973.230000px;}
.y7d{bottom:973.770000px;}
.y50{bottom:981.690000px;}
.yde{bottom:982.590000px;}
.y13{bottom:983.670000px;}
.y6{bottom:992.670000px;}
.yac{bottom:993.930000px;}
.y1e{bottom:994.470000px;}
.y7c{bottom:997.530000px;}
.y12{bottom:1005.450000px;}
.ydd{bottom:1006.350000px;}
.y1d{bottom:1015.710000px;}
.y7b{bottom:1021.290000px;}
.y11{bottom:1027.230000px;}
.y4f{bottom:1029.390000px;}
.ydc{bottom:1030.110000px;}
.y1c{bottom:1037.130000px;}
.ya7{bottom:1042.890000px;}
.y7a{bottom:1045.230000px;}
.y10{bottom:1046.850000px;}
.y4e{bottom:1053.150000px;}
.ydb{bottom:1054.050000px;}
.y1b{bottom:1057.650000px;}
.yf{bottom:1067.730000px;}
.y79{bottom:1068.990000px;}
.y4d{bottom:1076.910000px;}
.y1a{bottom:1081.050000px;}
.ye{bottom:1082.850000px;}
.ya6{bottom:1091.850000px;}
.y78{bottom:1092.750000px;}
.y4c{bottom:1096.890000px;}
.yd{bottom:1097.790000px;}
.ya4{bottom:1112.370000px;}
.yc{bottom:1112.730000px;}
.y77{bottom:1116.150000px;}
.y4b{bottom:1116.330000px;}
.y9f{bottom:1116.510000px;}
.yb{bottom:1127.850000px;}
.y19{bottom:1141.200000px;}
.ya{bottom:1142.820000px;}
.y44{bottom:1155.420000px;}
.y9{bottom:1157.760000px;}
.y41{bottom:1170.720000px;}
.y74{bottom:1171.980000px;}
.y43{bottom:1174.860000px;}
.y3{bottom:1185.300000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1219.860000px;}
.h12{height:5.163750px;}
.h13{height:19.440000px;}
.hf{height:19.620000px;}
.h15{height:19.800000px;}
.h14{height:19.836000px;}
.hc{height:29.691562px;}
.h3{height:42.281367px;}
.h8{height:44.860781px;}
.h4{height:47.700000px;}
.h16{height:48.240000px;}
.h10{height:50.229844px;}
.ha{height:53.077852px;}
.h2{height:53.573906px;}
.h5{height:58.833281px;}
.h6{height:59.383125px;}
.hb{height:63.949219px;}
.hd{height:64.546875px;}
.h11{height:68.940000px;}
.h7{height:75.519844px;}
.h9{height:85.052461px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wd{width:73.260000px;}
.w10{width:128.916000px;}
.we{width:129.096000px;}
.wf{width:130.140000px;}
.w11{width:131.796000px;}
.w3{width:163.290000px;}
.w9{width:201.450000px;}
.wb{width:201.630000px;}
.w8{width:435.495000px;}
.wc{width:594.645000px;}
.wa{width:623.085000px;}
.w6{width:623.265000px;}
.w7{width:892.979987px;}
.w4{width:892.980000px;}
.w5{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x20{left:8.100000px;}
.x17{left:13.500000px;}
.x1a{left:15.840000px;}
.x2f{left:19.614000px;}
.x26{left:24.114000px;}
.x6{left:25.559987px;}
.x2e{left:31.890000px;}
.x7{left:34.019987px;}
.x2b{left:36.030000px;}
.x5{left:37.620000px;}
.x18{left:40.134000px;}
.x22{left:42.120000px;}
.x2d{left:43.740000px;}
.x28{left:47.520000px;}
.x1e{left:62.454000px;}
.x25{left:80.634000px;}
.x1b{left:95.940000px;}
.x16{left:127.655987px;}
.x14{left:129.276000px;}
.x1d{left:143.676000px;}
.x24{left:149.256000px;}
.x23{left:159.689987px;}
.x1c{left:180.749987px;}
.x27{left:222.870000px;}
.x12{left:224.129987px;}
.x1{left:227.729987px;}
.x11{left:239.609987px;}
.x10{left:260.849987px;}
.x8{left:269.309987px;}
.x9{left:270.974987px;}
.x2{left:280.874987px;}
.x21{left:330.015000px;}
.x29{left:352.335000px;}
.xa{left:361.874987px;}
.xf{left:420.014987px;}
.xc{left:432.794987px;}
.xe{left:450.464987px;}
.xd{left:464.864987px;}
.x2a{left:482.835000px;}
.x13{left:514.004987px;}
.xb{left:519.584987px;}
.x19{left:564.045000px;}
.x2c{left:612.105000px;}
.x1f{left:623.094000px;}
.x4{left:664.349987px;}
.x3{left:667.589987px;}
.x15{left:750.569987px;}
@media print{
.v1{vertical-align:-63.360000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.984000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.120000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:4.608000pt;}
.ls8{letter-spacing:32.106667pt;}
.ls3{letter-spacing:602.720000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.622933pt;}
.ws9{word-spacing:-14.016000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.640000pt;}
.ws7{word-spacing:-10.720000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._1b{margin-left:-6.005760pt;}
._9{margin-left:-4.403200pt;}
._8{margin-left:-3.409920pt;}
._3{margin-left:-1.871360pt;}
._0{margin-left:-0.956160pt;}
._1{width:1.531947pt;}
._19{width:2.555520pt;}
._7{width:3.873280pt;}
._6{width:5.516800pt;}
._14{width:6.892800pt;}
._18{width:8.180480pt;}
._1a{width:9.131520pt;}
._17{width:10.121600pt;}
._16{width:11.392000pt;}
._15{width:12.501760pt;}
._2{width:13.552640pt;}
._4{width:14.649600pt;}
._13{width:17.670400pt;}
._12{width:19.264000pt;}
._a{width:20.175360pt;}
._b{width:21.356800pt;}
._1d{width:22.876160pt;}
._11{width:26.242560pt;}
._10{width:27.548160pt;}
._1c{width:29.271040pt;}
._23{width:43.904000pt;}
._24{width:44.928000pt;}
._c{width:49.465600pt;}
._d{width:51.307520pt;}
._f{width:56.957440pt;}
._5{width:58.060800pt;}
._e{width:66.056960pt;}
._1e{width:193.984000pt;}
._1f{width:194.944000pt;}
._21{width:532.928000pt;}
._22{width:533.888000pt;}
._25{width:781.088000pt;}
._20{width:838.652160pt;}
.fs8{font-size:5.120000pt;}
.fs5{font-size:29.440000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y76{bottom:-24.800000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.360000pt;}
.y75{bottom:4.480000pt;}
.y42{bottom:4.640000pt;}
.ya5{bottom:5.440000pt;}
.yae{bottom:5.600000pt;}
.yab{bottom:9.280000pt;}
.y8{bottom:13.600000pt;}
.ya8{bottom:18.080000pt;}
.y48{bottom:18.720000pt;}
.ya9{bottom:23.200000pt;}
.yaa{bottom:26.880000pt;}
.y7{bottom:29.600000pt;}
.y47{bottom:33.920000pt;}
.y4a{bottom:38.112000pt;}
.y45{bottom:39.232000pt;}
.y46{bottom:49.280000pt;}
.y5{bottom:53.760000pt;}
.y4{bottom:71.392000pt;}
.yda{bottom:129.952000pt;}
.y73{bottom:132.032000pt;}
.y9e{bottom:146.106667pt;}
.ycf{bottom:147.706667pt;}
.yd9{bottom:151.226667pt;}
.y72{bottom:153.146667pt;}
.yfb{bottom:166.426667pt;}
.y9d{bottom:167.226667pt;}
.yce{bottom:168.826667pt;}
.yd8{bottom:172.346667pt;}
.y71{bottom:174.266667pt;}
.yfa{bottom:187.546667pt;}
.y9c{bottom:188.346667pt;}
.ycd{bottom:189.946667pt;}
.yd7{bottom:193.466667pt;}
.y70{bottom:195.386667pt;}
.yf9{bottom:208.666667pt;}
.y9b{bottom:209.626667pt;}
.ycc{bottom:211.066667pt;}
.yd6{bottom:214.586667pt;}
.y6f{bottom:216.666667pt;}
.y9a{bottom:230.746667pt;}
.ycb{bottom:232.346667pt;}
.y6e{bottom:237.786667pt;}
.yf8{bottom:243.266667pt;}
.yd5{bottom:249.186667pt;}
.y99{bottom:251.906667pt;}
.yca{bottom:253.506667pt;}
.y6d{bottom:258.946667pt;}
.yf7{bottom:264.386667pt;}
.yd4{bottom:270.306667pt;}
.y98{bottom:273.026667pt;}
.yc9{bottom:274.626667pt;}
.y6c{bottom:280.066667pt;}
.y97{bottom:294.306667pt;}
.yc8{bottom:295.746667pt;}
.yf6{bottom:298.786667pt;}
.y6b{bottom:301.346667pt;}
.yd3{bottom:304.866667pt;}
.y96{bottom:315.426667pt;}
.yc7{bottom:316.866667pt;}
.yf5{bottom:320.066667pt;}
.y6a{bottom:322.466667pt;}
.yd2{bottom:325.986667pt;}
.y3f{bottom:331.426667pt;}
.y95{bottom:336.546667pt;}
.yc6{bottom:338.146667pt;}
.yf4{bottom:341.186667pt;}
.y69{bottom:343.586667pt;}
.y3e{bottom:352.546667pt;}
.y94{bottom:357.666667pt;}
.yc5{bottom:359.266667pt;}
.yd1{bottom:360.386667pt;}
.yf3{bottom:362.306667pt;}
.y68{bottom:364.386667pt;}
.y3d{bottom:373.666667pt;}
.y93{bottom:378.786667pt;}
.yd0{bottom:378.946667pt;}
.yc4{bottom:380.386667pt;}
.yf2{bottom:383.426667pt;}
.y67{bottom:385.666667pt;}
.y3c{bottom:394.786667pt;}
.y92{bottom:400.066667pt;}
.yc3{bottom:401.506667pt;}
.yf1{bottom:404.706667pt;}
.y66{bottom:407.106667pt;}
.y3b{bottom:416.066667pt;}
.y91{bottom:421.186667pt;}
.yc2{bottom:422.786667pt;}
.yf0{bottom:425.826667pt;}
.y65{bottom:428.226667pt;}
.y3a{bottom:437.186667pt;}
.y90{bottom:442.306667pt;}
.yc1{bottom:443.906667pt;}
.y64{bottom:449.346667pt;}
.y39{bottom:458.306667pt;}
.yef{bottom:460.226667pt;}
.ya3{bottom:463.106667pt;}
.y8f{bottom:463.426667pt;}
.yc0{bottom:465.026667pt;}
.y63{bottom:470.626667pt;}
.y38{bottom:479.426667pt;}
.yee{bottom:481.506667pt;}
.y8e{bottom:484.706667pt;}
.ybf{bottom:486.146667pt;}
.y62{bottom:491.746667pt;}
.y37{bottom:500.546667pt;}
.y8d{bottom:505.853333pt;}
.ybe{bottom:507.453333pt;}
.y61{bottom:512.893333pt;}
.yed{bottom:515.933333pt;}
.y36{bottom:521.826667pt;}
.y8c{bottom:526.973333pt;}
.ybd{bottom:528.573333pt;}
.y60{bottom:534.013333pt;}
.yec{bottom:537.213333pt;}
.y35{bottom:542.973333pt;}
.y8b{bottom:548.093333pt;}
.ybc{bottom:549.693333pt;}
.y5f{bottom:555.133333pt;}
.yeb{bottom:558.333333pt;}
.y34{bottom:564.093333pt;}
.y8a{bottom:569.373333pt;}
.ybb{bottom:570.813333pt;}
.y5e{bottom:576.413333pt;}
.yea{bottom:579.453333pt;}
.y33{bottom:585.213333pt;}
.y89{bottom:590.493333pt;}
.yba{bottom:592.093333pt;}
.y5d{bottom:597.533333pt;}
.ye9{bottom:600.573333pt;}
.y32{bottom:606.493333pt;}
.y88{bottom:611.613333pt;}
.yb9{bottom:613.213333pt;}
.y5c{bottom:618.653333pt;}
.ye8{bottom:621.693333pt;}
.y31{bottom:627.613333pt;}
.y87{bottom:632.733333pt;}
.y2a{bottom:634.173333pt;}
.yb8{bottom:634.333333pt;}
.y5b{bottom:639.773333pt;}
.y30{bottom:648.733333pt;}
.y29{bottom:653.693333pt;}
.ya2{bottom:654.013333pt;}
.yb7{bottom:655.453333pt;}
.ye7{bottom:656.253333pt;}
.y5a{bottom:661.053333pt;}
.y2f{bottom:669.853333pt;}
.y28{bottom:673.053333pt;}
.y86{bottom:674.813333pt;}
.ya1{bottom:675.133333pt;}
.yb6{bottom:676.733333pt;}
.ye6{bottom:677.373333pt;}
.y59{bottom:682.173333pt;}
.y27{bottom:689.693333pt;}
.y2e{bottom:691.133333pt;}
.y85{bottom:696.253333pt;}
.yb5{bottom:697.533333pt;}
.yfc{bottom:698.653333pt;}
.y58{bottom:703.293333pt;}
.y26{bottom:704.893333pt;}
.ye5{bottom:711.933333pt;}
.y2d{bottom:712.253333pt;}
.y84{bottom:717.373333pt;}
.yb4{bottom:718.973333pt;}
.y25{bottom:722.173333pt;}
.y57{bottom:724.413333pt;}
.ye4{bottom:733.053333pt;}
.y2c{bottom:733.373333pt;}
.y83{bottom:738.653333pt;}
.y24{bottom:738.973333pt;}
.yb3{bottom:740.093333pt;}
.y56{bottom:745.733333pt;}
.y2b{bottom:754.173333pt;}
.ye3{bottom:754.213333pt;}
.y40{bottom:754.493333pt;}
.y23{bottom:755.773333pt;}
.y82{bottom:759.813333pt;}
.yb2{bottom:761.413333pt;}
.y55{bottom:766.853333pt;}
.ye2{bottom:775.493333pt;}
.y81{bottom:780.933333pt;}
.yb1{bottom:782.533333pt;}
.y54{bottom:787.973333pt;}
.y18{bottom:790.053333pt;}
.ye1{bottom:796.613333pt;}
.ya0{bottom:801.733333pt;}
.y80{bottom:802.053333pt;}
.yb0{bottom:803.653333pt;}
.y22{bottom:804.613333pt;}
.y17{bottom:806.853333pt;}
.y53{bottom:809.093333pt;}
.y7f{bottom:823.173333pt;}
.y16{bottom:823.813333pt;}
.yaf{bottom:824.773333pt;}
.y52{bottom:830.373333pt;}
.ye0{bottom:831.013333pt;}
.y21{bottom:836.773333pt;}
.yad{bottom:839.973333pt;}
.y15{bottom:840.613333pt;}
.y7e{bottom:844.453333pt;}
.y20{bottom:846.053333pt;}
.y51{bottom:851.493333pt;}
.ydf{bottom:852.293333pt;}
.y14{bottom:857.573333pt;}
.y1f{bottom:865.093333pt;}
.y7d{bottom:865.573333pt;}
.y50{bottom:872.613333pt;}
.yde{bottom:873.413333pt;}
.y13{bottom:874.373333pt;}
.y6{bottom:882.373333pt;}
.yac{bottom:883.493333pt;}
.y1e{bottom:883.973333pt;}
.y7c{bottom:886.693333pt;}
.y12{bottom:893.733333pt;}
.ydd{bottom:894.533333pt;}
.y1d{bottom:902.853333pt;}
.y7b{bottom:907.813333pt;}
.y11{bottom:913.093333pt;}
.y4f{bottom:915.013333pt;}
.ydc{bottom:915.653333pt;}
.y1c{bottom:921.893333pt;}
.ya7{bottom:927.013333pt;}
.y7a{bottom:929.093333pt;}
.y10{bottom:930.533333pt;}
.y4e{bottom:936.133333pt;}
.ydb{bottom:936.933333pt;}
.y1b{bottom:940.133333pt;}
.yf{bottom:949.093333pt;}
.y79{bottom:950.213333pt;}
.y4d{bottom:957.253333pt;}
.y1a{bottom:960.933333pt;}
.ye{bottom:962.533333pt;}
.ya6{bottom:970.533333pt;}
.y78{bottom:971.333333pt;}
.y4c{bottom:975.013333pt;}
.yd{bottom:975.813333pt;}
.ya4{bottom:988.773333pt;}
.yc{bottom:989.093333pt;}
.y77{bottom:992.133333pt;}
.y4b{bottom:992.293333pt;}
.y9f{bottom:992.453333pt;}
.yb{bottom:1002.533333pt;}
.y19{bottom:1014.400000pt;}
.ya{bottom:1015.840000pt;}
.y44{bottom:1027.040000pt;}
.y9{bottom:1029.120000pt;}
.y41{bottom:1040.640000pt;}
.y74{bottom:1041.760000pt;}
.y43{bottom:1044.320000pt;}
.y3{bottom:1053.600000pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1084.320000pt;}
.h12{height:4.590000pt;}
.h13{height:17.280000pt;}
.hf{height:17.440000pt;}
.h15{height:17.600000pt;}
.h14{height:17.632000pt;}
.hc{height:26.392500pt;}
.h3{height:37.583438pt;}
.h8{height:39.876250pt;}
.h4{height:42.400000pt;}
.h16{height:42.880000pt;}
.h10{height:44.648750pt;}
.ha{height:47.180312pt;}
.h2{height:47.621250pt;}
.h5{height:52.296250pt;}
.h6{height:52.785000pt;}
.hb{height:56.843750pt;}
.hd{height:57.375000pt;}
.h11{height:61.280000pt;}
.h7{height:67.128750pt;}
.h9{height:75.602187pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wd{width:65.120000pt;}
.w10{width:114.592000pt;}
.we{width:114.752000pt;}
.wf{width:115.680000pt;}
.w11{width:117.152000pt;}
.w3{width:145.146667pt;}
.w9{width:179.066667pt;}
.wb{width:179.226667pt;}
.w8{width:387.106667pt;}
.wc{width:528.573333pt;}
.wa{width:553.853333pt;}
.w6{width:554.013333pt;}
.w7{width:793.759988pt;}
.w4{width:793.760000pt;}
.w5{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x20{left:7.200000pt;}
.x17{left:12.000000pt;}
.x1a{left:14.080000pt;}
.x2f{left:17.434667pt;}
.x26{left:21.434667pt;}
.x6{left:22.719988pt;}
.x2e{left:28.346667pt;}
.x7{left:30.239988pt;}
.x2b{left:32.026667pt;}
.x5{left:33.440000pt;}
.x18{left:35.674667pt;}
.x22{left:37.440000pt;}
.x2d{left:38.880000pt;}
.x28{left:42.240000pt;}
.x1e{left:55.514667pt;}
.x25{left:71.674667pt;}
.x1b{left:85.280000pt;}
.x16{left:113.471988pt;}
.x14{left:114.912000pt;}
.x1d{left:127.712000pt;}
.x24{left:132.672000pt;}
.x23{left:141.946655pt;}
.x1c{left:160.666655pt;}
.x27{left:198.106667pt;}
.x12{left:199.226655pt;}
.x1{left:202.426655pt;}
.x11{left:212.986655pt;}
.x10{left:231.866655pt;}
.x8{left:239.386655pt;}
.x9{left:240.866655pt;}
.x2{left:249.666655pt;}
.x21{left:293.346667pt;}
.x29{left:313.186667pt;}
.xa{left:321.666655pt;}
.xf{left:373.346655pt;}
.xc{left:384.706655pt;}
.xe{left:400.413321pt;}
.xd{left:413.213321pt;}
.x2a{left:429.186667pt;}
.x13{left:456.893321pt;}
.xb{left:461.853321pt;}
.x19{left:501.373333pt;}
.x2c{left:544.093333pt;}
.x1f{left:553.861333pt;}
.x4{left:590.533321pt;}
.x3{left:593.413321pt;}
.x15{left:667.173322pt;}
}




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