
    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_4840fde0eaaae37e9f4df264.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.833984;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_04351f7421140840703d970d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.833984;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_537047baaebf784ba1267c62.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.695312;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_406fa060da38eff51b5651e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_b056c61b67e04a141ac2f0f5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_51e34d034c9f8f7d7f8a6052.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_4a1db1d6df74c10f32c0d8b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_448ceeb565ccb318cd8301b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_7eaa4fe40b6e20dba3c0fc26.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e73c9dc6a6a2a0fc5d29d96d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_f340f40e15add09f6b59efac.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.ls10{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.291600px;}
.lsa{letter-spacing:0.350400px;}
.ls6{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.369360px;}
.ls7{letter-spacing:0.388200px;}
.ls17{letter-spacing:0.501840px;}
.ls18{letter-spacing:0.504000px;}
.ls9{letter-spacing:5.580000px;}
.ls2{letter-spacing:21.420000px;}
.ls12{letter-spacing:24.480000px;}
.lsc{letter-spacing:51.660000px;}
.ls15{letter-spacing:125.621280px;}
.ls11{letter-spacing:134.820000px;}
.lse{letter-spacing:175.860000px;}
.ls13{letter-spacing:272.160000px;}
.ls14{letter-spacing:308.160000px;}
.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:-27.000000px;}
.ws4{word-spacing:-21.448200px;}
.ws3{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.700000px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-6.654960px;}
._10{margin-left:-5.307120px;}
._14{margin-left:-4.278720px;}
._2{margin-left:-2.962320px;}
._0{margin-left:-1.008000px;}
._1{width:1.896000px;}
._19{width:2.905920px;}
._3{width:3.914640px;}
._13{width:5.017680px;}
._b{width:6.056400px;}
._8{width:7.205520px;}
._4{width:8.286240px;}
._d{width:9.339120px;}
._c{width:11.035440px;}
._11{width:12.467520px;}
._12{width:13.559760px;}
._7{width:14.839920px;}
._6{width:16.142880px;}
._9{width:17.412960px;}
._a{width:18.809280px;}
._23{width:19.953360px;}
._5{width:22.372560px;}
._16{width:23.815920px;}
._1a{width:27.290880px;}
._e{width:28.557360px;}
._1c{width:30.242160px;}
._18{width:31.337280px;}
._1b{width:32.516640px;}
._1f{width:38.486160px;}
._1e{width:39.508560px;}
._21{width:42.035760px;}
._20{width:43.130880px;}
._22{width:44.393520px;}
._1d{width:50.535360px;}
._17{width:51.723360px;}
._26{width:53.399280px;}
._15{width:64.275120px;}
._24{width:85.503600px;}
._25{width:86.511600px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.880000px;}
.y2{bottom:3.960000px;}
.y80{bottom:4.005000px;}
.y5{bottom:16.920000px;}
.y9c{bottom:24.480000px;}
.y6f{bottom:24.660000px;}
.y4{bottom:34.740000px;}
.y7d{bottom:46.080000px;}
.y6d{bottom:46.260000px;}
.y7b{bottom:86.436000px;}
.y56{bottom:101.196000px;}
.y99{bottom:105.516000px;}
.y7a{bottom:108.036000px;}
.y24{bottom:109.656000px;}
.y3f{bottom:126.576000px;}
.y79{bottom:129.456000px;}
.y55{bottom:137.376000px;}
.y98{bottom:141.696000px;}
.y23{bottom:145.836000px;}
.yb4{bottom:146.916000px;}
.y78{bottom:150.870000px;}
.y3e{bottom:162.750000px;}
.y77{bottom:172.290000px;}
.y54{bottom:173.730000px;}
.y97{bottom:177.870000px;}
.y22{bottom:182.190000px;}
.yb3{bottom:183.270000px;}
.y76{bottom:193.710000px;}
.y3d{bottom:199.110000px;}
.y53{bottom:209.910000px;}
.y96{bottom:214.230000px;}
.y75{bottom:215.130000px;}
.y21{bottom:218.370000px;}
.yb2{bottom:219.450000px;}
.y3c{bottom:235.290000px;}
.y74{bottom:236.550000px;}
.y52{bottom:246.090000px;}
.y95{bottom:250.410000px;}
.y20{bottom:254.550000px;}
.yb1{bottom:255.630000px;}
.y73{bottom:258.150000px;}
.y3b{bottom:271.470000px;}
.y72{bottom:279.570000px;}
.y51{bottom:282.270000px;}
.y94{bottom:286.590000px;}
.y1f{bottom:290.730000px;}
.yb0{bottom:291.810000px;}
.y71{bottom:300.990000px;}
.y3a{bottom:307.650000px;}
.y50{bottom:318.630000px;}
.y70{bottom:322.410000px;}
.y93{bottom:322.770000px;}
.y1e{bottom:327.090000px;}
.yaf{bottom:328.170000px;}
.y39{bottom:343.875000px;}
.y4f{bottom:354.855000px;}
.y92{bottom:359.175000px;}
.y1d{bottom:363.315000px;}
.yae{bottom:364.395000px;}
.y6c{bottom:365.295000px;}
.y38{bottom:380.235000px;}
.y4e{bottom:391.035000px;}
.y91{bottom:395.355000px;}
.y1c{bottom:399.495000px;}
.yad{bottom:400.575000px;}
.y6e{bottom:407.595000px;}
.y37{bottom:416.415000px;}
.y4d{bottom:427.215000px;}
.y90{bottom:431.535000px;}
.y6b{bottom:433.515000px;}
.y1b{bottom:435.675000px;}
.yac{bottom:436.755000px;}
.y36{bottom:452.595000px;}
.y6a{bottom:457.635000px;}
.y4c{bottom:463.575000px;}
.y8f{bottom:467.715000px;}
.y1a{bottom:472.035000px;}
.yab{bottom:472.935000px;}
.y69{bottom:481.755000px;}
.y35{bottom:488.775000px;}
.y4b{bottom:499.755000px;}
.y8e{bottom:504.075000px;}
.y68{bottom:505.875000px;}
.y19{bottom:508.215000px;}
.yaa{bottom:509.295000px;}
.y34{bottom:525.135000px;}
.y67{bottom:526.395000px;}
.y4a{bottom:535.935000px;}
.y8d{bottom:540.255000px;}
.y18{bottom:544.395000px;}
.ya9{bottom:545.475000px;}
.y66{bottom:547.815000px;}
.y33{bottom:561.315000px;}
.y65{bottom:569.235000px;}
.y49{bottom:572.115000px;}
.y8c{bottom:576.435000px;}
.y17{bottom:580.575000px;}
.ya8{bottom:581.655000px;}
.y64{bottom:590.655000px;}
.y32{bottom:597.495000px;}
.y48{bottom:608.325000px;}
.y63{bottom:612.105000px;}
.y8b{bottom:612.645000px;}
.y16{bottom:616.785000px;}
.ya7{bottom:617.865000px;}
.y8a{bottom:632.985000px;}
.y62{bottom:633.525000px;}
.y31{bottom:633.705000px;}
.y47{bottom:644.685000px;}
.y15{bottom:653.145000px;}
.ya6{bottom:654.225000px;}
.y89{bottom:654.585000px;}
.y61{bottom:654.945000px;}
.y30{bottom:670.065000px;}
.y88{bottom:676.005000px;}
.y60{bottom:676.545000px;}
.y46{bottom:680.865000px;}
.y14{bottom:689.325000px;}
.ya5{bottom:690.405000px;}
.y87{bottom:697.425000px;}
.y5f{bottom:697.965000px;}
.y2f{bottom:706.245000px;}
.y45{bottom:717.045000px;}
.y86{bottom:718.845000px;}
.y5e{bottom:719.385000px;}
.y13{bottom:725.505000px;}
.ya4{bottom:726.585000px;}
.y85{bottom:740.265000px;}
.y5d{bottom:740.805000px;}
.y2e{bottom:742.425000px;}
.y44{bottom:753.225000px;}
.y12{bottom:761.685000px;}
.y5c{bottom:762.225000px;}
.ya3{bottom:762.765000px;}
.y2d{bottom:778.605000px;}
.y84{bottom:783.105000px;}
.y5b{bottom:783.645000px;}
.yb5{bottom:787.245000px;}
.y43{bottom:789.585000px;}
.y11{bottom:798.045000px;}
.ya2{bottom:799.125000px;}
.y83{bottom:804.705000px;}
.y5a{bottom:805.245000px;}
.y2c{bottom:814.965000px;}
.ya1{bottom:819.465000px;}
.y42{bottom:825.765000px;}
.y82{bottom:826.125000px;}
.y59{bottom:826.665000px;}
.y10{bottom:834.225000px;}
.ya0{bottom:840.885000px;}
.y81{bottom:847.545000px;}
.y58{bottom:848.085000px;}
.y2b{bottom:851.145000px;}
.y41{bottom:861.945000px;}
.y9f{bottom:862.305000px;}
.y7f{bottom:868.965000px;}
.yf{bottom:870.405000px;}
.y57{bottom:874.050000px;}
.y2a{bottom:878.910000px;}
.y9e{bottom:883.770000px;}
.y7c{bottom:890.430000px;}
.y40{bottom:898.170000px;}
.y9d{bottom:905.190000px;}
.ye{bottom:906.630000px;}
.y9a{bottom:926.790000px;}
.y7e{bottom:932.550000px;}
.y29{bottom:934.530000px;}
.yd{bottom:942.990000px;}
.y9b{bottom:968.910000px;}
.y28{bottom:970.710000px;}
.yc{bottom:979.170000px;}
.y27{bottom:1006.890000px;}
.yb{bottom:1015.350000px;}
.y26{bottom:1043.070000px;}
.ya{bottom:1051.530000px;}
.y25{bottom:1079.430000px;}
.y9{bottom:1087.710000px;}
.y8{bottom:1115.610000px;}
.y7{bottom:1151.820000px;}
.y3{bottom:1176.120000px;}
.y1{bottom:1200.240000px;}
.hb{height:20.700000px;}
.he{height:20.736000px;}
.h2{height:22.140000px;}
.h6{height:28.440000px;}
.h14{height:41.220000px;}
.h11{height:41.400000px;}
.h4{height:48.761719px;}
.h3{height:53.015625px;}
.h16{height:59.066719px;}
.h13{height:60.835430px;}
.h12{height:62.820000px;}
.h10{height:63.000000px;}
.h5{height:65.884219px;}
.hd{height:70.628906px;}
.hc{height:70.664062px;}
.hf{height:72.562500px;}
.ha{height:82.635820px;}
.h8{height:82.676953px;}
.h9{height:84.898125px;}
.h15{height:86.585445px;}
.h17{height:92.036953px;}
.h7{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:36.540000px;}
.w10{width:36.936000px;}
.w16{width:45.900000px;}
.w6{width:60.660000px;}
.w2{width:70.200000px;}
.w5{width:99.360000px;}
.w19{width:111.996000px;}
.wf{width:122.940000px;}
.w15{width:129.240000px;}
.w1b{width:135.036000px;}
.wd{width:141.876000px;}
.w13{width:142.596000px;}
.w14{width:156.810000px;}
.we{width:158.430000px;}
.w1a{width:159.840000px;}
.w9{width:169.230000px;}
.w8{width:179.490000px;}
.w17{width:207.570000px;}
.wb{width:250.950000px;}
.w11{width:251.310000px;}
.w7{width:265.350000px;}
.w18{width:408.315000px;}
.wc{width:424.875000px;}
.w12{width:430.275000px;}
.w3{width:802.080000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x3{left:-1.800000px;}
.x0{left:0.000000px;}
.x12{left:7.560000px;}
.x1{left:8.640000px;}
.x7{left:29.490000px;}
.x4{left:74.339987px;}
.x2{left:78.840000px;}
.x5{left:84.959987px;}
.x18{left:86.580000px;}
.x14{left:89.676000px;}
.x9{left:102.275987px;}
.xf{left:107.856000px;}
.xd{left:114.875987px;}
.xa{left:120.095987px;}
.x19{left:124.236000px;}
.x8{left:127.475987px;}
.x1d{left:161.490000px;}
.x10{left:169.230000px;}
.xc{left:212.069987px;}
.xe{left:312.014987px;}
.x1e{left:369.795000px;}
.x1a{left:376.275000px;}
.x15{left:378.615000px;}
.x11{left:435.495000px;}
.xb{left:446.474987px;}
.x1f{left:482.505000px;}
.x1b{left:519.585000px;}
.x16{left:521.205000px;}
.x13{left:615.885000px;}
.x20{left:643.065000px;}
.x1c{left:677.310000px;}
.x17{left:680.550000px;}
.x6{left:717.120000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.259200pt;}
.lsa{letter-spacing:0.311467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.328320pt;}
.ls7{letter-spacing:0.345067pt;}
.ls17{letter-spacing:0.446080pt;}
.ls18{letter-spacing:0.448000pt;}
.ls9{letter-spacing:4.960000pt;}
.ls2{letter-spacing:19.040000pt;}
.ls12{letter-spacing:21.760000pt;}
.lsc{letter-spacing:45.920000pt;}
.ls15{letter-spacing:111.663360pt;}
.ls11{letter-spacing:119.840000pt;}
.lse{letter-spacing:156.320000pt;}
.ls13{letter-spacing:241.920000pt;}
.ls14{letter-spacing:273.920000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws4{word-spacing:-19.065067pt;}
.ws3{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.031467pt;}
.ws7{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.400000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-5.915520pt;}
._10{margin-left:-4.717440pt;}
._14{margin-left:-3.803307pt;}
._2{margin-left:-2.633173pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.685333pt;}
._19{width:2.583040pt;}
._3{width:3.479680pt;}
._13{width:4.460160pt;}
._b{width:5.383467pt;}
._8{width:6.404907pt;}
._4{width:7.365547pt;}
._d{width:8.301440pt;}
._c{width:9.809280pt;}
._11{width:11.082240pt;}
._12{width:12.053120pt;}
._7{width:13.191040pt;}
._6{width:14.349227pt;}
._9{width:15.478187pt;}
._a{width:16.719360pt;}
._23{width:17.736320pt;}
._5{width:19.886720pt;}
._16{width:21.169707pt;}
._1a{width:24.258560pt;}
._e{width:25.384320pt;}
._1c{width:26.881920pt;}
._18{width:27.855360pt;}
._1b{width:28.903680pt;}
._1f{width:34.209920pt;}
._1e{width:35.118720pt;}
._21{width:37.365120pt;}
._20{width:38.338560pt;}
._22{width:39.460907pt;}
._1d{width:44.920320pt;}
._17{width:45.976320pt;}
._26{width:47.466027pt;}
._15{width:57.133440pt;}
._24{width:76.003200pt;}
._25{width:76.899200pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.560000pt;}
.y2{bottom:3.520000pt;}
.y80{bottom:3.560000pt;}
.y5{bottom:15.040000pt;}
.y9c{bottom:21.760000pt;}
.y6f{bottom:21.920000pt;}
.y4{bottom:30.880000pt;}
.y7d{bottom:40.960000pt;}
.y6d{bottom:41.120000pt;}
.y7b{bottom:76.832000pt;}
.y56{bottom:89.952000pt;}
.y99{bottom:93.792000pt;}
.y7a{bottom:96.032000pt;}
.y24{bottom:97.472000pt;}
.y3f{bottom:112.512000pt;}
.y79{bottom:115.072000pt;}
.y55{bottom:122.112000pt;}
.y98{bottom:125.952000pt;}
.y23{bottom:129.632000pt;}
.yb4{bottom:130.592000pt;}
.y78{bottom:134.106667pt;}
.y3e{bottom:144.666667pt;}
.y77{bottom:153.146667pt;}
.y54{bottom:154.426667pt;}
.y97{bottom:158.106667pt;}
.y22{bottom:161.946667pt;}
.yb3{bottom:162.906667pt;}
.y76{bottom:172.186667pt;}
.y3d{bottom:176.986667pt;}
.y53{bottom:186.586667pt;}
.y96{bottom:190.426667pt;}
.y75{bottom:191.226667pt;}
.y21{bottom:194.106667pt;}
.yb2{bottom:195.066667pt;}
.y3c{bottom:209.146667pt;}
.y74{bottom:210.266667pt;}
.y52{bottom:218.746667pt;}
.y95{bottom:222.586667pt;}
.y20{bottom:226.266667pt;}
.yb1{bottom:227.226667pt;}
.y73{bottom:229.466667pt;}
.y3b{bottom:241.306667pt;}
.y72{bottom:248.506667pt;}
.y51{bottom:250.906667pt;}
.y94{bottom:254.746667pt;}
.y1f{bottom:258.426667pt;}
.yb0{bottom:259.386667pt;}
.y71{bottom:267.546667pt;}
.y3a{bottom:273.466667pt;}
.y50{bottom:283.226667pt;}
.y70{bottom:286.586667pt;}
.y93{bottom:286.906667pt;}
.y1e{bottom:290.746667pt;}
.yaf{bottom:291.706667pt;}
.y39{bottom:305.666667pt;}
.y4f{bottom:315.426667pt;}
.y92{bottom:319.266667pt;}
.y1d{bottom:322.946667pt;}
.yae{bottom:323.906667pt;}
.y6c{bottom:324.706667pt;}
.y38{bottom:337.986667pt;}
.y4e{bottom:347.586667pt;}
.y91{bottom:351.426667pt;}
.y1c{bottom:355.106667pt;}
.yad{bottom:356.066667pt;}
.y6e{bottom:362.306667pt;}
.y37{bottom:370.146667pt;}
.y4d{bottom:379.746667pt;}
.y90{bottom:383.586667pt;}
.y6b{bottom:385.346667pt;}
.y1b{bottom:387.266667pt;}
.yac{bottom:388.226667pt;}
.y36{bottom:402.306667pt;}
.y6a{bottom:406.786667pt;}
.y4c{bottom:412.066667pt;}
.y8f{bottom:415.746667pt;}
.y1a{bottom:419.586667pt;}
.yab{bottom:420.386667pt;}
.y69{bottom:428.226667pt;}
.y35{bottom:434.466667pt;}
.y4b{bottom:444.226667pt;}
.y8e{bottom:448.066667pt;}
.y68{bottom:449.666667pt;}
.y19{bottom:451.746667pt;}
.yaa{bottom:452.706667pt;}
.y34{bottom:466.786667pt;}
.y67{bottom:467.906667pt;}
.y4a{bottom:476.386667pt;}
.y8d{bottom:480.226667pt;}
.y18{bottom:483.906667pt;}
.ya9{bottom:484.866667pt;}
.y66{bottom:486.946667pt;}
.y33{bottom:498.946667pt;}
.y65{bottom:505.986667pt;}
.y49{bottom:508.546667pt;}
.y8c{bottom:512.386667pt;}
.y17{bottom:516.066667pt;}
.ya8{bottom:517.026667pt;}
.y64{bottom:525.026667pt;}
.y32{bottom:531.106667pt;}
.y48{bottom:540.733333pt;}
.y63{bottom:544.093333pt;}
.y8b{bottom:544.573333pt;}
.y16{bottom:548.253333pt;}
.ya7{bottom:549.213333pt;}
.y8a{bottom:562.653333pt;}
.y62{bottom:563.133333pt;}
.y31{bottom:563.293333pt;}
.y47{bottom:573.053333pt;}
.y15{bottom:580.573333pt;}
.ya6{bottom:581.533333pt;}
.y89{bottom:581.853333pt;}
.y61{bottom:582.173333pt;}
.y30{bottom:595.613333pt;}
.y88{bottom:600.893333pt;}
.y60{bottom:601.373333pt;}
.y46{bottom:605.213333pt;}
.y14{bottom:612.733333pt;}
.ya5{bottom:613.693333pt;}
.y87{bottom:619.933333pt;}
.y5f{bottom:620.413333pt;}
.y2f{bottom:627.773333pt;}
.y45{bottom:637.373333pt;}
.y86{bottom:638.973333pt;}
.y5e{bottom:639.453333pt;}
.y13{bottom:644.893333pt;}
.ya4{bottom:645.853333pt;}
.y85{bottom:658.013333pt;}
.y5d{bottom:658.493333pt;}
.y2e{bottom:659.933333pt;}
.y44{bottom:669.533333pt;}
.y12{bottom:677.053333pt;}
.y5c{bottom:677.533333pt;}
.ya3{bottom:678.013333pt;}
.y2d{bottom:692.093333pt;}
.y84{bottom:696.093333pt;}
.y5b{bottom:696.573333pt;}
.yb5{bottom:699.773333pt;}
.y43{bottom:701.853333pt;}
.y11{bottom:709.373333pt;}
.ya2{bottom:710.333333pt;}
.y83{bottom:715.293333pt;}
.y5a{bottom:715.773333pt;}
.y2c{bottom:724.413333pt;}
.ya1{bottom:728.413333pt;}
.y42{bottom:734.013333pt;}
.y82{bottom:734.333333pt;}
.y59{bottom:734.813333pt;}
.y10{bottom:741.533333pt;}
.ya0{bottom:747.453333pt;}
.y81{bottom:753.373333pt;}
.y58{bottom:753.853333pt;}
.y2b{bottom:756.573333pt;}
.y41{bottom:766.173333pt;}
.y9f{bottom:766.493333pt;}
.y7f{bottom:772.413333pt;}
.yf{bottom:773.693333pt;}
.y57{bottom:776.933333pt;}
.y2a{bottom:781.253333pt;}
.y9e{bottom:785.573333pt;}
.y7c{bottom:791.493333pt;}
.y40{bottom:798.373333pt;}
.y9d{bottom:804.613333pt;}
.ye{bottom:805.893333pt;}
.y9a{bottom:823.813333pt;}
.y7e{bottom:828.933333pt;}
.y29{bottom:830.693333pt;}
.yd{bottom:838.213333pt;}
.y9b{bottom:861.253333pt;}
.y28{bottom:862.853333pt;}
.yc{bottom:870.373333pt;}
.y27{bottom:895.013333pt;}
.yb{bottom:902.533333pt;}
.y26{bottom:927.173333pt;}
.ya{bottom:934.693333pt;}
.y25{bottom:959.493333pt;}
.y9{bottom:966.853333pt;}
.y8{bottom:991.653333pt;}
.y7{bottom:1023.840000pt;}
.y3{bottom:1045.440000pt;}
.y1{bottom:1066.880000pt;}
.hb{height:18.400000pt;}
.he{height:18.432000pt;}
.h2{height:19.680000pt;}
.h6{height:25.280000pt;}
.h14{height:36.640000pt;}
.h11{height:36.800000pt;}
.h4{height:43.343750pt;}
.h3{height:47.125000pt;}
.h16{height:52.503750pt;}
.h13{height:54.075937pt;}
.h12{height:55.840000pt;}
.h10{height:56.000000pt;}
.h5{height:58.563750pt;}
.hd{height:62.781250pt;}
.hc{height:62.812500pt;}
.hf{height:64.500000pt;}
.ha{height:73.454062pt;}
.h8{height:73.490625pt;}
.h9{height:75.465000pt;}
.h15{height:76.964840pt;}
.h17{height:81.810625pt;}
.h7{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:32.480000pt;}
.w10{width:32.832000pt;}
.w16{width:40.800000pt;}
.w6{width:53.920000pt;}
.w2{width:62.400000pt;}
.w5{width:88.320000pt;}
.w19{width:99.552000pt;}
.wf{width:109.280000pt;}
.w15{width:114.880000pt;}
.w1b{width:120.032000pt;}
.wd{width:126.112000pt;}
.w13{width:126.752000pt;}
.w14{width:139.386667pt;}
.we{width:140.826667pt;}
.w1a{width:142.080000pt;}
.w9{width:150.426667pt;}
.w8{width:159.546667pt;}
.w17{width:184.506667pt;}
.wb{width:223.066667pt;}
.w11{width:223.386667pt;}
.w7{width:235.866667pt;}
.w18{width:362.946667pt;}
.wc{width:377.666667pt;}
.w12{width:382.466667pt;}
.w3{width:712.960000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x3{left:-1.600000pt;}
.x0{left:0.000000pt;}
.x12{left:6.720000pt;}
.x1{left:7.680000pt;}
.x7{left:26.213333pt;}
.x4{left:66.079988pt;}
.x2{left:70.080000pt;}
.x5{left:75.519988pt;}
.x18{left:76.960000pt;}
.x14{left:79.712000pt;}
.x9{left:90.911988pt;}
.xf{left:95.872000pt;}
.xd{left:102.111988pt;}
.xa{left:106.751988pt;}
.x19{left:110.432000pt;}
.x8{left:113.311988pt;}
.x1d{left:143.546667pt;}
.x10{left:150.426667pt;}
.xc{left:188.506655pt;}
.xe{left:277.346655pt;}
.x1e{left:328.706667pt;}
.x1a{left:334.466667pt;}
.x15{left:336.546667pt;}
.x11{left:387.106667pt;}
.xb{left:396.866655pt;}
.x1f{left:428.893333pt;}
.x1b{left:461.853333pt;}
.x16{left:463.293333pt;}
.x13{left:547.453333pt;}
.x20{left:571.613333pt;}
.x1c{left:602.053333pt;}
.x17{left:604.933333pt;}
.x6{left:637.440000pt;}
}




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