
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_8fee23a69a9d76fe2dfb9013.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_19a4a9d04b18bcda769e4f24.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_ba6189cb42f56da602e03f93.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_4c494832675d5b13c564a555.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_3fbc44f583cecc49027ee6f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_be479f2acb571cdbce4bfae3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_8e41821cad6b5264cdc661a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_d672e977d217fc72f19eeb7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_82cc3fa7f96dbe1f671dd8c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bf0ca8a3a2ba6746112862b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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:ffc;src:url('chunks/assets/font_8a463e97f11d6f9daf7d11aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.053223;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.840000px;}
.v4{vertical-align:48.240000px;}
.v2{vertical-align:59.040000px;}
.v6{vertical-align:62.040000px;}
.v5{vertical-align:66.840000px;}
.ls4{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.108600px;}
.ls17{letter-spacing:-0.107400px;}
.lse{letter-spacing:-0.067200px;}
.ls14{letter-spacing:-0.058320px;}
.ls10{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.066000px;}
.ls15{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.249000px;}
.ls9{letter-spacing:0.311760px;}
.ls11{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.479520px;}
.lsb{letter-spacing:0.637200px;}
.ls5{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.810000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1a{letter-spacing:12.186720px;}
.ls16{letter-spacing:16.734240px;}
.ls18{letter-spacing:42.570720px;}
.lsa{letter-spacing:78.426720px;}
.ls12{letter-spacing:342.540000px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.506440px;}
.ws7{word-spacing:-14.315760px;}
.ws8{word-spacing:-13.754760px;}
.ws5{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.398360px;}
.ws4{word-spacing:-8.786880px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:65.544000px;}
.wse{word-spacing:164.634000px;}
.wsd{word-spacing:308.364000px;}
.wsc{word-spacing:328.524000px;}
.ws9{word-spacing:584.994000px;}
._4{margin-left:-1451.655120px;}
._2{margin-left:-1335.337920px;}
._3{margin-left:-945.377280px;}
._5{margin-left:-581.180760px;}
._e{margin-left:-4.441440px;}
._6{margin-left:-3.312000px;}
._a{margin-left:-2.122560px;}
._1{margin-left:-1.120320px;}
._0{width:1.394400px;}
._9{width:3.067920px;}
._c{width:5.043840px;}
._8{width:6.561600px;}
._7{width:8.307120px;}
._b{width:9.740880px;}
._16{width:10.756800px;}
._d{width:11.832480px;}
._11{width:14.522160px;}
._19{width:15.523440px;}
._10{width:16.553520px;}
._f{width:18.167040px;}
._12{width:19.302480px;}
._18{width:28.482000px;}
._17{width:60.726000px;}
._15{width:118.326000px;}
._13{width:433.620000px;}
._14{width:453.912000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:6.735000px;}
.ybc{bottom:10.620000px;}
.y85{bottom:12.345000px;}
.y8b{bottom:16.455000px;}
.yb3{bottom:16.485000px;}
.yb5{bottom:24.915000px;}
.y7a{bottom:28.185000px;}
.ybb{bottom:35.280000px;}
.yb1{bottom:45.255000px;}
.yb8{bottom:49.500000px;}
.y79{bottom:52.455000px;}
.y7b{bottom:52.770000px;}
.yba{bottom:59.934000px;}
.yb0{bottom:60.765000px;}
.y6{bottom:61.596000px;}
.ya9{bottom:76.605000px;}
.y7c{bottom:77.370000px;}
.ya5{bottom:80.895000px;}
.yb9{bottom:84.774000px;}
.ya7{bottom:90.645000px;}
.y76{bottom:92.196000px;}
.yb7{bottom:94.176000px;}
.y7d{bottom:101.955000px;}
.yaa{bottom:108.615000px;}
.y75{bottom:113.256000px;}
.y7e{bottom:126.510000px;}
.ya4{bottom:126.870000px;}
.y30{bottom:128.556000px;}
.y74{bottom:134.316000px;}
.y89{bottom:134.970000px;}
.y78{bottom:136.050000px;}
.yab{bottom:140.610000px;}
.ya8{bottom:146.235000px;}
.y2f{bottom:149.616000px;}
.y7f{bottom:151.095000px;}
.y88{bottom:153.825000px;}
.y73{bottom:155.370000px;}
.y61{bottom:160.950000px;}
.y2e{bottom:170.670000px;}
.yac{bottom:172.590000px;}
.y8a{bottom:172.650000px;}
.y80{bottom:175.680000px;}
.y72{bottom:176.430000px;}
.y60{bottom:182.010000px;}
.y2d{bottom:191.730000px;}
.y71{bottom:197.490000px;}
.y81{bottom:200.265000px;}
.y5f{bottom:203.070000px;}
.yad{bottom:204.585000px;}
.ya6{bottom:206.850000px;}
.y2c{bottom:212.790000px;}
.y70{bottom:218.550000px;}
.y5e{bottom:224.130000px;}
.y82{bottom:224.820000px;}
.y2b{bottom:233.850000px;}
.yae{bottom:236.595000px;}
.y6f{bottom:239.610000px;}
.y5d{bottom:245.190000px;}
.y83{bottom:249.405000px;}
.y2a{bottom:254.910000px;}
.y6e{bottom:260.670000px;}
.y5c{bottom:266.250000px;}
.yaf{bottom:268.590000px;}
.y84{bottom:273.990000px;}
.y77{bottom:275.400000px;}
.y29{bottom:275.970000px;}
.ya2{bottom:281.775000px;}
.y5b{bottom:287.355000px;}
.yb2{bottom:291.930000px;}
.y28{bottom:297.075000px;}
.ya1{bottom:302.835000px;}
.y86{bottom:302.910000px;}
.y5a{bottom:308.415000px;}
.y27{bottom:318.135000px;}
.ya0{bottom:323.895000px;}
.y59{bottom:329.475000px;}
.y26{bottom:339.195000px;}
.y9f{bottom:344.955000px;}
.y58{bottom:350.535000px;}
.y25{bottom:360.255000px;}
.y9e{bottom:366.015000px;}
.y57{bottom:371.595000px;}
.y24{bottom:381.315000px;}
.y9d{bottom:387.075000px;}
.y56{bottom:392.655000px;}
.y23{bottom:402.375000px;}
.y9c{bottom:408.135000px;}
.y55{bottom:413.715000px;}
.y22{bottom:423.435000px;}
.yb4{bottom:427.140000px;}
.y9b{bottom:429.195000px;}
.y54{bottom:443.775000px;}
.y21{bottom:444.495000px;}
.y9a{bottom:450.255000px;}
.y53{bottom:465.015000px;}
.y20{bottom:465.555000px;}
.y99{bottom:471.315000px;}
.ya3{bottom:472.500000px;}
.y1f{bottom:486.615000px;}
.y52{bottom:486.795000px;}
.y98{bottom:492.375000px;}
.y1e{bottom:507.675000px;}
.y51{bottom:508.755000px;}
.y97{bottom:513.435000px;}
.y1d{bottom:528.735000px;}
.y50{bottom:530.355000px;}
.y96{bottom:534.495000px;}
.y1c{bottom:549.795000px;}
.y4f{bottom:551.415000px;}
.y95{bottom:555.555000px;}
.y1b{bottom:570.885000px;}
.y4e{bottom:572.685000px;}
.y94{bottom:576.645000px;}
.y1a{bottom:591.945000px;}
.y4d{bottom:594.465000px;}
.y93{bottom:597.705000px;}
.y6d{bottom:611.925000px;}
.y19{bottom:613.005000px;}
.y4c{bottom:615.525000px;}
.y92{bottom:618.765000px;}
.y6c{bottom:632.985000px;}
.y18{bottom:634.065000px;}
.y4b{bottom:637.305000px;}
.y91{bottom:639.825000px;}
.y6b{bottom:654.045000px;}
.y17{bottom:657.465000px;}
.y4a{bottom:658.545000px;}
.y90{bottom:660.885000px;}
.y6a{bottom:675.105000px;}
.y49{bottom:680.325000px;}
.y8f{bottom:681.945000px;}
.y16{bottom:687.345000px;}
.y69{bottom:696.165000px;}
.y48{bottom:701.385000px;}
.y8e{bottom:703.005000px;}
.y15{bottom:708.405000px;}
.y68{bottom:717.225000px;}
.y47{bottom:723.165000px;}
.y8d{bottom:724.065000px;}
.y14{bottom:729.465000px;}
.y67{bottom:738.285000px;}
.y46{bottom:744.405000px;}
.y8c{bottom:745.125000px;}
.y13{bottom:750.525000px;}
.y66{bottom:759.345000px;}
.y45{bottom:766.005000px;}
.y12{bottom:771.585000px;}
.y65{bottom:780.405000px;}
.y44{bottom:787.065000px;}
.y11{bottom:792.645000px;}
.y64{bottom:801.465000px;}
.y43{bottom:808.125000px;}
.y10{bottom:813.705000px;}
.y63{bottom:822.525000px;}
.y42{bottom:829.185000px;}
.yf{bottom:834.765000px;}
.y62{bottom:843.585000px;}
.y41{bottom:850.290000px;}
.ye{bottom:855.870000px;}
.y87{bottom:859.680000px;}
.y40{bottom:871.350000px;}
.yd{bottom:877.110000px;}
.y3f{bottom:892.410000px;}
.yc{bottom:900.330000px;}
.y3e{bottom:913.470000px;}
.yb{bottom:926.610000px;}
.y3d{bottom:934.530000px;}
.ya{bottom:943.170000px;}
.y3c{bottom:955.590000px;}
.y9{bottom:965.490000px;}
.y3b{bottom:976.650000px;}
.y8{bottom:990.870000px;}
.y3a{bottom:997.710000px;}
.y39{bottom:1018.770000px;}
.y7{bottom:1024.530000px;}
.y38{bottom:1039.830000px;}
.y37{bottom:1060.890000px;}
.y5{bottom:1064.670000px;}
.y36{bottom:1081.950000px;}
.y4{bottom:1096.710000px;}
.y35{bottom:1103.010000px;}
.y34{bottom:1124.070000px;}
.y3{bottom:1128.930000px;}
.y33{bottom:1145.160000px;}
.y2{bottom:1161.180000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.h18{height:2.864531px;}
.h7{height:38.671172px;}
.h16{height:39.600000px;}
.hb{height:45.578672px;}
.h9{height:52.260820px;}
.hf{height:52.998047px;}
.hd{height:53.709961px;}
.h2{height:56.146289px;}
.h15{height:58.651172px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h17{height:99.000000px;}
.h12{height:101.238047px;}
.he{height:112.749961px;}
.h14{height:115.038047px;}
.h13{height:119.838047px;}
.h10{height:300.060000px;}
.h11{height:320.220000px;}
.hc{height:324.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:210.810000px;}
.w5{width:453.780000px;}
.w4{width:454.680000px;}
.w3{width:540.000000px;}
.w7{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:5.040000px;}
.x21{left:7.740000px;}
.xa{left:9.795000px;}
.x9{left:16.560000px;}
.x1a{left:20.985000px;}
.x1c{left:27.030000px;}
.x16{left:46.725000px;}
.x1{left:53.999987px;}
.x12{left:57.270000px;}
.xe{left:62.460000px;}
.x1d{left:71.099987px;}
.x14{left:73.365000px;}
.xb{left:85.140000px;}
.x2{left:96.515987px;}
.x1e{left:98.135987px;}
.x7{left:109.440000px;}
.x17{left:138.750000px;}
.x5{left:142.415987px;}
.xd{left:165.240000px;}
.x6{left:172.260000px;}
.x11{left:175.140000px;}
.x1f{left:190.110000px;}
.x1b{left:191.160000px;}
.x13{left:217.980000px;}
.x3{left:228.269987px;}
.x20{left:264.810000px;}
.x18{left:269.025000px;}
.x8{left:272.370000px;}
.x19{left:371.415000px;}
.x15{left:375.915000px;}
.xf{left:390.930000px;}
.x4{left:446.474987px;}
.x10{left:466.590000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.746667pt;}
.v4{vertical-align:42.880000pt;}
.v2{vertical-align:52.480000pt;}
.v6{vertical-align:55.146667pt;}
.v5{vertical-align:59.413333pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.096533pt;}
.ls17{letter-spacing:-0.095467pt;}
.lse{letter-spacing:-0.059733pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.058667pt;}
.ls15{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.221333pt;}
.ls9{letter-spacing:0.277120pt;}
.ls11{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.426240pt;}
.lsb{letter-spacing:0.566400pt;}
.ls5{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.720000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1a{letter-spacing:10.832640pt;}
.ls16{letter-spacing:14.874880pt;}
.ls18{letter-spacing:37.840640pt;}
.lsa{letter-spacing:69.712640pt;}
.ls12{letter-spacing:304.480000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.725120pt;}
.ws8{word-spacing:-12.226453pt;}
.ws5{word-spacing:-12.005120pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.909653pt;}
.ws4{word-spacing:-7.810560pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:58.261333pt;}
.wse{word-spacing:146.341333pt;}
.wsd{word-spacing:274.101333pt;}
.wsc{word-spacing:292.021333pt;}
.ws9{word-spacing:519.994667pt;}
._4{margin-left:-1290.360107pt;}
._2{margin-left:-1186.967040pt;}
._3{margin-left:-840.335360pt;}
._5{margin-left:-516.605120pt;}
._e{margin-left:-3.947947pt;}
._6{margin-left:-2.944000pt;}
._a{margin-left:-1.886720pt;}
._1{margin-left:-0.995840pt;}
._0{width:1.239467pt;}
._9{width:2.727040pt;}
._c{width:4.483413pt;}
._8{width:5.832533pt;}
._7{width:7.384107pt;}
._b{width:8.658560pt;}
._16{width:9.561600pt;}
._d{width:10.517760pt;}
._11{width:12.908587pt;}
._19{width:13.798613pt;}
._10{width:14.714240pt;}
._f{width:16.148480pt;}
._12{width:17.157760pt;}
._18{width:25.317333pt;}
._17{width:53.978667pt;}
._15{width:105.178667pt;}
._13{width:385.440000pt;}
._14{width:403.477333pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:5.986667pt;}
.ybc{bottom:9.440000pt;}
.y85{bottom:10.973333pt;}
.y8b{bottom:14.626667pt;}
.yb3{bottom:14.653333pt;}
.yb5{bottom:22.146667pt;}
.y7a{bottom:25.053333pt;}
.ybb{bottom:31.360000pt;}
.yb1{bottom:40.226667pt;}
.yb8{bottom:44.000000pt;}
.y79{bottom:46.626667pt;}
.y7b{bottom:46.906667pt;}
.yba{bottom:53.274667pt;}
.yb0{bottom:54.013333pt;}
.y6{bottom:54.752000pt;}
.ya9{bottom:68.093333pt;}
.y7c{bottom:68.773333pt;}
.ya5{bottom:71.906667pt;}
.yb9{bottom:75.354667pt;}
.ya7{bottom:80.573333pt;}
.y76{bottom:81.952000pt;}
.yb7{bottom:83.712000pt;}
.y7d{bottom:90.626667pt;}
.yaa{bottom:96.546667pt;}
.y75{bottom:100.672000pt;}
.y7e{bottom:112.453333pt;}
.ya4{bottom:112.773333pt;}
.y30{bottom:114.272000pt;}
.y74{bottom:119.392000pt;}
.y89{bottom:119.973333pt;}
.y78{bottom:120.933333pt;}
.yab{bottom:124.986667pt;}
.ya8{bottom:129.986667pt;}
.y2f{bottom:132.992000pt;}
.y7f{bottom:134.306667pt;}
.y88{bottom:136.733333pt;}
.y73{bottom:138.106667pt;}
.y61{bottom:143.066667pt;}
.y2e{bottom:151.706667pt;}
.yac{bottom:153.413333pt;}
.y8a{bottom:153.466667pt;}
.y80{bottom:156.160000pt;}
.y72{bottom:156.826667pt;}
.y60{bottom:161.786667pt;}
.y2d{bottom:170.426667pt;}
.y71{bottom:175.546667pt;}
.y81{bottom:178.013333pt;}
.y5f{bottom:180.506667pt;}
.yad{bottom:181.853333pt;}
.ya6{bottom:183.866667pt;}
.y2c{bottom:189.146667pt;}
.y70{bottom:194.266667pt;}
.y5e{bottom:199.226667pt;}
.y82{bottom:199.840000pt;}
.y2b{bottom:207.866667pt;}
.yae{bottom:210.306667pt;}
.y6f{bottom:212.986667pt;}
.y5d{bottom:217.946667pt;}
.y83{bottom:221.693333pt;}
.y2a{bottom:226.586667pt;}
.y6e{bottom:231.706667pt;}
.y5c{bottom:236.666667pt;}
.yaf{bottom:238.746667pt;}
.y84{bottom:243.546667pt;}
.y77{bottom:244.800000pt;}
.y29{bottom:245.306667pt;}
.ya2{bottom:250.466667pt;}
.y5b{bottom:255.426667pt;}
.yb2{bottom:259.493333pt;}
.y28{bottom:264.066667pt;}
.ya1{bottom:269.186667pt;}
.y86{bottom:269.253333pt;}
.y5a{bottom:274.146667pt;}
.y27{bottom:282.786667pt;}
.ya0{bottom:287.906667pt;}
.y59{bottom:292.866667pt;}
.y26{bottom:301.506667pt;}
.y9f{bottom:306.626667pt;}
.y58{bottom:311.586667pt;}
.y25{bottom:320.226667pt;}
.y9e{bottom:325.346667pt;}
.y57{bottom:330.306667pt;}
.y24{bottom:338.946667pt;}
.y9d{bottom:344.066667pt;}
.y56{bottom:349.026667pt;}
.y23{bottom:357.666667pt;}
.y9c{bottom:362.786667pt;}
.y55{bottom:367.746667pt;}
.y22{bottom:376.386667pt;}
.yb4{bottom:379.680000pt;}
.y9b{bottom:381.506667pt;}
.y54{bottom:394.466667pt;}
.y21{bottom:395.106667pt;}
.y9a{bottom:400.226667pt;}
.y53{bottom:413.346667pt;}
.y20{bottom:413.826667pt;}
.y99{bottom:418.946667pt;}
.ya3{bottom:420.000000pt;}
.y1f{bottom:432.546667pt;}
.y52{bottom:432.706667pt;}
.y98{bottom:437.666667pt;}
.y1e{bottom:451.266667pt;}
.y51{bottom:452.226667pt;}
.y97{bottom:456.386667pt;}
.y1d{bottom:469.986667pt;}
.y50{bottom:471.426667pt;}
.y96{bottom:475.106667pt;}
.y1c{bottom:488.706667pt;}
.y4f{bottom:490.146667pt;}
.y95{bottom:493.826667pt;}
.y1b{bottom:507.453333pt;}
.y4e{bottom:509.053333pt;}
.y94{bottom:512.573333pt;}
.y1a{bottom:526.173333pt;}
.y4d{bottom:528.413333pt;}
.y93{bottom:531.293333pt;}
.y6d{bottom:543.933333pt;}
.y19{bottom:544.893333pt;}
.y4c{bottom:547.133333pt;}
.y92{bottom:550.013333pt;}
.y6c{bottom:562.653333pt;}
.y18{bottom:563.613333pt;}
.y4b{bottom:566.493333pt;}
.y91{bottom:568.733333pt;}
.y6b{bottom:581.373333pt;}
.y17{bottom:584.413333pt;}
.y4a{bottom:585.373333pt;}
.y90{bottom:587.453333pt;}
.y6a{bottom:600.093333pt;}
.y49{bottom:604.733333pt;}
.y8f{bottom:606.173333pt;}
.y16{bottom:610.973333pt;}
.y69{bottom:618.813333pt;}
.y48{bottom:623.453333pt;}
.y8e{bottom:624.893333pt;}
.y15{bottom:629.693333pt;}
.y68{bottom:637.533333pt;}
.y47{bottom:642.813333pt;}
.y8d{bottom:643.613333pt;}
.y14{bottom:648.413333pt;}
.y67{bottom:656.253333pt;}
.y46{bottom:661.693333pt;}
.y8c{bottom:662.333333pt;}
.y13{bottom:667.133333pt;}
.y66{bottom:674.973333pt;}
.y45{bottom:680.893333pt;}
.y12{bottom:685.853333pt;}
.y65{bottom:693.693333pt;}
.y44{bottom:699.613333pt;}
.y11{bottom:704.573333pt;}
.y64{bottom:712.413333pt;}
.y43{bottom:718.333333pt;}
.y10{bottom:723.293333pt;}
.y63{bottom:731.133333pt;}
.y42{bottom:737.053333pt;}
.yf{bottom:742.013333pt;}
.y62{bottom:749.853333pt;}
.y41{bottom:755.813333pt;}
.ye{bottom:760.773333pt;}
.y87{bottom:764.160000pt;}
.y40{bottom:774.533333pt;}
.yd{bottom:779.653333pt;}
.y3f{bottom:793.253333pt;}
.yc{bottom:800.293333pt;}
.y3e{bottom:811.973333pt;}
.yb{bottom:823.653333pt;}
.y3d{bottom:830.693333pt;}
.ya{bottom:838.373333pt;}
.y3c{bottom:849.413333pt;}
.y9{bottom:858.213333pt;}
.y3b{bottom:868.133333pt;}
.y8{bottom:880.773333pt;}
.y3a{bottom:886.853333pt;}
.y39{bottom:905.573333pt;}
.y7{bottom:910.693333pt;}
.y38{bottom:924.293333pt;}
.y37{bottom:943.013333pt;}
.y5{bottom:946.373333pt;}
.y36{bottom:961.733333pt;}
.y4{bottom:974.853333pt;}
.y35{bottom:980.453333pt;}
.y34{bottom:999.173333pt;}
.y3{bottom:1003.493333pt;}
.y33{bottom:1017.920000pt;}
.y2{bottom:1032.160000pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.h18{height:2.546250pt;}
.h7{height:34.374375pt;}
.h16{height:35.200000pt;}
.hb{height:40.514375pt;}
.h9{height:46.454062pt;}
.hf{height:47.109375pt;}
.hd{height:47.742188pt;}
.h2{height:49.907812pt;}
.h15{height:52.134375pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h17{height:88.000000pt;}
.h12{height:89.989375pt;}
.he{height:100.222187pt;}
.h14{height:102.256042pt;}
.h13{height:106.522708pt;}
.h10{height:266.720000pt;}
.h11{height:284.640000pt;}
.hc{height:288.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:187.386667pt;}
.w5{width:403.360000pt;}
.w4{width:404.160000pt;}
.w3{width:480.000000pt;}
.w7{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:4.480000pt;}
.x21{left:6.880000pt;}
.xa{left:8.706667pt;}
.x9{left:14.720000pt;}
.x1a{left:18.653333pt;}
.x1c{left:24.026667pt;}
.x16{left:41.533333pt;}
.x1{left:47.999988pt;}
.x12{left:50.906667pt;}
.xe{left:55.520000pt;}
.x1d{left:63.199988pt;}
.x14{left:65.213333pt;}
.xb{left:75.680000pt;}
.x2{left:85.791988pt;}
.x1e{left:87.231988pt;}
.x7{left:97.280000pt;}
.x17{left:123.333333pt;}
.x5{left:126.591988pt;}
.xd{left:146.880000pt;}
.x6{left:153.120000pt;}
.x11{left:155.680000pt;}
.x1f{left:168.986667pt;}
.x1b{left:169.920000pt;}
.x13{left:193.760000pt;}
.x3{left:202.906655pt;}
.x20{left:235.386667pt;}
.x18{left:239.133333pt;}
.x8{left:242.106667pt;}
.x19{left:330.146667pt;}
.x15{left:334.146667pt;}
.xf{left:347.493333pt;}
.x4{left:396.866655pt;}
.x10{left:414.746667pt;}
}




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