
    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_e9dfeeb44d81b0b1c5a523d4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_b8e37fff671c899de51e1be8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_193d7cad03f5cfaf80b0c659.woff')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_8932674317fd7321832056a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_7f70add440cfc668d046e221.woff')format("woff");}.ff5{font-family:ff5;line-height:1.219727;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_9ede0f38e849b0af5ed66bd1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.070312;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_6e7675a6f834ed53e3f66982.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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_35441c387638d570d0587f9d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.157715;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_b13ff3a1f44292ebba1c8737.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.997400px;}
.ls21{letter-spacing:-4.050000px;}
.ls17{letter-spacing:-3.105000px;}
.ls16{letter-spacing:-2.691000px;}
.lsd{letter-spacing:-2.511000px;}
.lsc{letter-spacing:-2.430000px;}
.ls8{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.180000px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.243000px;}
.ls11{letter-spacing:0.427800px;}
.lsb{letter-spacing:1.260000px;}
.ls19{letter-spacing:1.518000px;}
.ls1{letter-spacing:1.722000px;}
.ls1b{letter-spacing:2.001000px;}
.ls12{letter-spacing:2.277000px;}
.lse{letter-spacing:2.400000px;}
.ls14{letter-spacing:2.829000px;}
.ls1e{letter-spacing:3.381000px;}
.ls1f{letter-spacing:3.429300px;}
.ls2{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.275000px;}
.ls6{letter-spacing:5.040000px;}
.lsa{letter-spacing:5.760000px;}
.ls9{letter-spacing:5.880000px;}
.ls4{letter-spacing:6.000000px;}
.ls0{letter-spacing:6.300000px;}
.ls13{letter-spacing:8.073000px;}
.ls18{letter-spacing:9.936000px;}
.ls10{letter-spacing:10.350000px;}
.ls23{letter-spacing:10.395000px;}
.ls20{letter-spacing:12.600000px;}
.ls15{letter-spacing:14.559000px;}
.ls1a{letter-spacing:14.904000px;}
.ls1d{letter-spacing:16.573800px;}
.ls22{letter-spacing:17.262000px;}
.ls1c{letter-spacing:25.205700px;}
.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:-25.350000px;}
.wsf{word-spacing:-23.004000px;}
.ws1d{word-spacing:-22.860000px;}
.ws3{word-spacing:-22.740000px;}
.ws6{word-spacing:-22.620000px;}
.ws2{word-spacing:-21.900000px;}
.wsc{word-spacing:-20.331000px;}
.ws10{word-spacing:-19.389000px;}
.ws19{word-spacing:-18.711000px;}
.ws1{word-spacing:-18.102000px;}
.ws12{word-spacing:-17.043000px;}
.ws5{word-spacing:-16.860000px;}
.ws1a{word-spacing:-15.561000px;}
.ws1e{word-spacing:-14.820000px;}
.ws4{word-spacing:-9.829380px;}
.ws1b{word-spacing:-6.300000px;}
.ws7{word-spacing:-6.000000px;}
.wsb{word-spacing:-4.200000px;}
.ws11{word-spacing:-2.400000px;}
.ws13{word-spacing:-1.932000px;}
.wsd{word-spacing:-1.260000px;}
.ws1c{word-spacing:-0.315000px;}
.ws1f{word-spacing:-0.120000px;}
.ws17{word-spacing:-0.069000px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:0.180000px;}
.wsa{word-spacing:0.240000px;}
.wse{word-spacing:2.511000px;}
.ws14{word-spacing:2.691000px;}
.ws15{word-spacing:3.105000px;}
.ws16{word-spacing:8.073000px;}
.ws18{word-spacing:14.835000px;}
._25{margin-left:-15.534000px;}
._b{margin-left:-9.463200px;}
._26{margin-left:-7.098600px;}
._7{margin-left:-6.048000px;}
._22{margin-left:-5.023200px;}
._6{margin-left:-3.966000px;}
._a{margin-left:-2.670000px;}
._5{margin-left:-1.278600px;}
._2{width:1.056000px;}
._4{width:2.106000px;}
._0{width:4.080000px;}
._9{width:5.244000px;}
._3{width:6.318000px;}
._8{width:7.722000px;}
._e{width:9.258000px;}
._d{width:10.371600px;}
._11{width:12.378000px;}
._10{width:13.488000px;}
._17{width:15.133200px;}
._1d{width:16.594500px;}
._1a{width:18.140100px;}
._1f{width:19.244100px;}
._1c{width:20.430900px;}
._18{width:22.300800px;}
._19{width:23.377200px;}
._27{width:24.745800px;}
._20{width:25.771500px;}
._f{width:29.190000px;}
._14{width:32.250000px;}
._13{width:33.585600px;}
._12{width:85.554000px;}
._c{width:260.610000px;}
._1{width:456.202200px;}
._23{width:458.191200px;}
._1b{width:459.256200px;}
._15{width:578.400000px;}
._1e{width:956.500200px;}
._21{width:959.125200px;}
._24{width:963.175200px;}
._16{width:965.155200px;}
.fc1{color:rgb(43,139,49);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.980000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y8d{bottom:106.165350px;}
.ycd{bottom:106.181850px;}
.y66{bottom:106.211250px;}
.y1e{bottom:106.303950px;}
.yad{bottom:106.312800px;}
.y43{bottom:106.329300px;}
.y8c{bottom:126.589350px;}
.y42{bottom:127.201800px;}
.yac{bottom:127.339050px;}
.y65{bottom:127.446000px;}
.ycc{bottom:127.649100px;}
.y1d{bottom:127.723950px;}
.y8b{bottom:147.013350px;}
.y41{bottom:148.074300px;}
.y64{bottom:148.680750px;}
.y1c{bottom:149.143950px;}
.yab{bottom:156.870300px;}
.ycb{bottom:157.621350px;}
.y8a{bottom:167.437350px;}
.y40{bottom:168.946800px;}
.y63{bottom:169.915500px;}
.y1b{bottom:170.577150px;}
.yca{bottom:179.088600px;}
.yea{bottom:182.162400px;}
.y89{bottom:187.861350px;}
.y3f{bottom:189.819300px;}
.y1a{bottom:190.497150px;}
.y62{bottom:191.150250px;}
.ye9{bottom:202.412400px;}
.y88{bottom:208.285350px;}
.yc9{bottom:209.060850px;}
.y19{bottom:210.417150px;}
.y3e{bottom:210.691800px;}
.y61{bottom:212.385000px;}
.ye8{bottom:222.662400px;}
.y87{bottom:228.709350px;}
.yaa{bottom:229.561200px;}
.y18{bottom:230.337150px;}
.yc8{bottom:230.528100px;}
.y60{bottom:233.619750px;}
.ye7{bottom:242.912400px;}
.y86{bottom:249.133350px;}
.y17{bottom:250.257150px;}
.ya9{bottom:250.588950px;}
.yc7{bottom:251.995350px;}
.y3d{bottom:252.830250px;}
.y5f{bottom:254.854500px;}
.y85{bottom:269.557350px;}
.ya8{bottom:271.616700px;}
.ye6{bottom:275.912400px;}
.y5e{bottom:276.089250px;}
.yc6{bottom:281.967600px;}
.y16{bottom:282.942150px;}
.y84{bottom:289.981350px;}
.ya7{bottom:292.644450px;}
.y5d{bottom:297.324000px;}
.yc5{bottom:303.434850px;}
.y83{bottom:310.405350px;}
.ya6{bottom:313.672200px;}
.y3c{bottom:315.882900px;}
.ye5{bottom:317.417400px;}
.y5c{bottom:318.558750px;}
.y82{bottom:330.829350px;}
.y15{bottom:332.622150px;}
.yc4{bottom:333.407100px;}
.ya5{bottom:334.699950px;}
.y3b{bottom:336.755400px;}
.ye4{bottom:336.917400px;}
.y5b{bottom:339.793500px;}
.y81{bottom:351.253350px;}
.y14{bottom:354.042150px;}
.yc3{bottom:354.874350px;}
.ya4{bottom:355.727700px;}
.ye3{bottom:356.417400px;}
.y3a{bottom:357.627900px;}
.y5a{bottom:361.028250px;}
.y80{bottom:371.677350px;}
.y13{bottom:375.471300px;}
.ye2{bottom:375.917400px;}
.yc2{bottom:376.341600px;}
.ya3{bottom:376.755450px;}
.y39{bottom:378.500400px;}
.y59{bottom:382.263000px;}
.y7f{bottom:392.101350px;}
.y12{bottom:395.391300px;}
.ye1{bottom:395.417400px;}
.ya2{bottom:397.783200px;}
.y38{bottom:399.372900px;}
.y58{bottom:403.497750px;}
.yc1{bottom:406.313850px;}
.y7e{bottom:412.525350px;}
.ye0{bottom:414.917400px;}
.y11{bottom:415.311300px;}
.ya1{bottom:418.810950px;}
.y37{bottom:420.245400px;}
.y57{bottom:424.732500px;}
.yc0{bottom:427.781100px;}
.y7d{bottom:432.949350px;}
.ydf{bottom:434.417400px;}
.y10{bottom:435.226950px;}
.ya0{bottom:439.838700px;}
.y36{bottom:441.117900px;}
.y56{bottom:445.967250px;}
.y7c{bottom:453.373350px;}
.yde{bottom:453.917400px;}
.yf{bottom:455.146950px;}
.ybf{bottom:457.753350px;}
.y9f{bottom:460.866450px;}
.y35{bottom:461.990400px;}
.y55{bottom:467.202000px;}
.ydd{bottom:473.417400px;}
.y7b{bottom:473.797350px;}
.ybe{bottom:479.220600px;}
.y9e{bottom:481.894200px;}
.y34{bottom:482.862900px;}
.ye{bottom:487.831950px;}
.y54{bottom:488.436750px;}
.ydc{bottom:492.917400px;}
.y7a{bottom:494.221350px;}
.y9d{bottom:502.921950px;}
.y33{bottom:503.735400px;}
.ybd{bottom:509.192850px;}
.y53{bottom:509.671500px;}
.ydb{bottom:512.417400px;}
.y79{bottom:514.645350px;}
.y9c{bottom:523.949700px;}
.y32{bottom:524.607900px;}
.ybc{bottom:530.660100px;}
.y52{bottom:530.906250px;}
.yda{bottom:531.917400px;}
.y78{bottom:535.069350px;}
.y9b{bottom:544.977450px;}
.y31{bottom:545.480400px;}
.yd{bottom:546.018300px;}
.yd9{bottom:551.417400px;}
.y51{bottom:552.141000px;}
.y77{bottom:555.493350px;}
.ybb{bottom:560.632350px;}
.y9a{bottom:566.005200px;}
.y30{bottom:566.352900px;}
.yd8{bottom:570.917400px;}
.y50{bottom:573.375750px;}
.yc{bottom:573.444300px;}
.y76{bottom:575.917350px;}
.yba{bottom:582.099600px;}
.y99{bottom:587.032950px;}
.y2f{bottom:587.225400px;}
.yd7{bottom:590.417400px;}
.y4f{bottom:594.610500px;}
.y75{bottom:596.341350px;}
.yb9{bottom:603.566850px;}
.y98{bottom:608.060700px;}
.y2e{bottom:608.097900px;}
.yd6{bottom:609.917400px;}
.y4e{bottom:615.845250px;}
.y74{bottom:616.765350px;}
.yb{bottom:622.151400px;}
.y2d{bottom:628.970400px;}
.y97{bottom:629.088450px;}
.yd5{bottom:629.417400px;}
.yb8{bottom:633.539100px;}
.y4d{bottom:637.080000px;}
.y73{bottom:637.189350px;}
.yd4{bottom:648.917400px;}
.y2c{bottom:649.842900px;}
.ya{bottom:654.065400px;}
.yb7{bottom:655.006350px;}
.y72{bottom:657.613350px;}
.y4c{bottom:658.314750px;}
.y2b{bottom:670.715400px;}
.y96{bottom:671.381850px;}
.yb6{bottom:676.473600px;}
.y71{bottom:678.037350px;}
.y4b{bottom:679.549500px;}
.yd3{bottom:681.167400px;}
.y9{bottom:685.979400px;}
.y2a{bottom:691.587900px;}
.y70{bottom:698.461350px;}
.y4a{bottom:700.784250px;}
.yb5{bottom:706.445850px;}
.y29{bottom:712.460400px;}
.y8{bottom:717.893400px;}
.y6f{bottom:718.885350px;}
.yb4{bottom:727.913100px;}
.y28{bottom:733.332900px;}
.y95{bottom:734.479350px;}
.yd2{bottom:738.929100px;}
.y6e{bottom:739.309350px;}
.y49{bottom:743.254950px;}
.y27{bottom:754.205400px;}
.y94{bottom:755.507100px;}
.yb3{bottom:757.885350px;}
.y6d{bottom:759.733350px;}
.yd1{bottom:765.935100px;}
.y48{bottom:768.243450px;}
.y26{bottom:775.077900px;}
.y93{bottom:776.534850px;}
.yb2{bottom:779.352600px;}
.y7{bottom:779.586600px;}
.y6c{bottom:780.157350px;}
.y47{bottom:793.231950px;}
.y25{bottom:795.950400px;}
.y92{bottom:797.562600px;}
.y6b{bottom:800.581350px;}
.yb1{bottom:809.324850px;}
.y6{bottom:809.511600px;}
.y24{bottom:816.822900px;}
.y46{bottom:818.220450px;}
.y91{bottom:818.590350px;}
.y6a{bottom:821.005350px;}
.yb0{bottom:830.792100px;}
.yd0{bottom:834.430350px;}
.y23{bottom:837.695400px;}
.y5{bottom:839.436600px;}
.y90{bottom:839.618100px;}
.y69{bottom:841.429350px;}
.yaf{bottom:852.259350px;}
.ycf{bottom:854.684850px;}
.y22{bottom:858.567900px;}
.y8f{bottom:860.645850px;}
.y4{bottom:860.856600px;}
.y68{bottom:861.853350px;}
.y45{bottom:881.466600px;}
.y8e{bottom:881.673600px;}
.yae{bottom:882.231600px;}
.y3{bottom:882.276600px;}
.y67{bottom:882.277350px;}
.yce{bottom:883.444350px;}
.y21{bottom:900.706200px;}
.y44{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:948.189000px;}
.y1f{bottom:966.189000px;}
.h8{height:41.396484px;}
.hc{height:44.414062px;}
.h4{height:55.517578px;}
.h7{height:55.534978px;}
.he{height:57.744141px;}
.h3{height:58.293457px;}
.hd{height:60.631348px;}
.ha{height:63.845215px;}
.hb{height:66.405762px;}
.h2{height:69.396973px;}
.h9{height:74.948730px;}
.h6{height:77.724609px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:82.214250px;}
.x7{left:84.015450px;}
.x5{left:85.095600px;}
.x8{left:102.682050px;}
.x4{left:105.030600px;}
.x6{left:106.364250px;}
.x3{left:232.319550px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.442133pt;}
.ls21{letter-spacing:-3.600000pt;}
.ls17{letter-spacing:-2.760000pt;}
.ls16{letter-spacing:-2.392000pt;}
.lsd{letter-spacing:-2.232000pt;}
.lsc{letter-spacing:-2.160000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.216000pt;}
.ls11{letter-spacing:0.380267pt;}
.lsb{letter-spacing:1.120000pt;}
.ls19{letter-spacing:1.349333pt;}
.ls1{letter-spacing:1.530667pt;}
.ls1b{letter-spacing:1.778667pt;}
.ls12{letter-spacing:2.024000pt;}
.lse{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.514667pt;}
.ls1e{letter-spacing:3.005333pt;}
.ls1f{letter-spacing:3.048267pt;}
.ls2{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.800000pt;}
.ls6{letter-spacing:4.480000pt;}
.lsa{letter-spacing:5.120000pt;}
.ls9{letter-spacing:5.226667pt;}
.ls4{letter-spacing:5.333333pt;}
.ls0{letter-spacing:5.600000pt;}
.ls13{letter-spacing:7.176000pt;}
.ls18{letter-spacing:8.832000pt;}
.ls10{letter-spacing:9.200000pt;}
.ls23{letter-spacing:9.240000pt;}
.ls20{letter-spacing:11.200000pt;}
.ls15{letter-spacing:12.941333pt;}
.ls1a{letter-spacing:13.248000pt;}
.ls1d{letter-spacing:14.732267pt;}
.ls22{letter-spacing:15.344000pt;}
.ls1c{letter-spacing:22.405067pt;}
.ws0{word-spacing:-22.533333pt;}
.wsf{word-spacing:-20.448000pt;}
.ws1d{word-spacing:-20.320000pt;}
.ws3{word-spacing:-20.213333pt;}
.ws6{word-spacing:-20.106667pt;}
.ws2{word-spacing:-19.466667pt;}
.wsc{word-spacing:-18.072000pt;}
.ws10{word-spacing:-17.234667pt;}
.ws19{word-spacing:-16.632000pt;}
.ws1{word-spacing:-16.090667pt;}
.ws12{word-spacing:-15.149333pt;}
.ws5{word-spacing:-14.986667pt;}
.ws1a{word-spacing:-13.832000pt;}
.ws1e{word-spacing:-13.173333pt;}
.ws4{word-spacing:-8.737227pt;}
.ws1b{word-spacing:-5.600000pt;}
.ws7{word-spacing:-5.333333pt;}
.wsb{word-spacing:-3.733333pt;}
.ws11{word-spacing:-2.133333pt;}
.ws13{word-spacing:-1.717333pt;}
.wsd{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-0.280000pt;}
.ws1f{word-spacing:-0.106667pt;}
.ws17{word-spacing:-0.061333pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:0.160000pt;}
.wsa{word-spacing:0.213333pt;}
.wse{word-spacing:2.232000pt;}
.ws14{word-spacing:2.392000pt;}
.ws15{word-spacing:2.760000pt;}
.ws16{word-spacing:7.176000pt;}
.ws18{word-spacing:13.186667pt;}
._25{margin-left:-13.808000pt;}
._b{margin-left:-8.411733pt;}
._26{margin-left:-6.309867pt;}
._7{margin-left:-5.376000pt;}
._22{margin-left:-4.465067pt;}
._6{margin-left:-3.525333pt;}
._a{margin-left:-2.373333pt;}
._5{margin-left:-1.136533pt;}
._2{width:0.938667pt;}
._4{width:1.872000pt;}
._0{width:3.626667pt;}
._9{width:4.661333pt;}
._3{width:5.616000pt;}
._8{width:6.864000pt;}
._e{width:8.229333pt;}
._d{width:9.219200pt;}
._11{width:11.002667pt;}
._10{width:11.989333pt;}
._17{width:13.451733pt;}
._1d{width:14.750667pt;}
._1a{width:16.124533pt;}
._1f{width:17.105867pt;}
._1c{width:18.160800pt;}
._18{width:19.822933pt;}
._19{width:20.779733pt;}
._27{width:21.996267pt;}
._20{width:22.908000pt;}
._f{width:25.946667pt;}
._14{width:28.666667pt;}
._13{width:29.853867pt;}
._12{width:76.048000pt;}
._c{width:231.653333pt;}
._1{width:405.513067pt;}
._23{width:407.281067pt;}
._1b{width:408.227733pt;}
._15{width:514.133333pt;}
._1e{width:850.222400pt;}
._21{width:852.555733pt;}
._24{width:856.155733pt;}
._16{width:857.915733pt;}
.fs6{font-size:31.093333pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y8d{bottom:94.369200pt;}
.ycd{bottom:94.383867pt;}
.y66{bottom:94.410000pt;}
.y1e{bottom:94.492400pt;}
.yad{bottom:94.500267pt;}
.y43{bottom:94.514933pt;}
.y8c{bottom:112.523867pt;}
.y42{bottom:113.068267pt;}
.yac{bottom:113.190267pt;}
.y65{bottom:113.285333pt;}
.ycc{bottom:113.465867pt;}
.y1d{bottom:113.532400pt;}
.y8b{bottom:130.678533pt;}
.y41{bottom:131.621600pt;}
.y64{bottom:132.160667pt;}
.y1c{bottom:132.572400pt;}
.yab{bottom:139.440267pt;}
.ycb{bottom:140.107867pt;}
.y8a{bottom:148.833200pt;}
.y40{bottom:150.174933pt;}
.y63{bottom:151.036000pt;}
.y1b{bottom:151.624133pt;}
.yca{bottom:159.189867pt;}
.yea{bottom:161.922133pt;}
.y89{bottom:166.987867pt;}
.y3f{bottom:168.728267pt;}
.y1a{bottom:169.330800pt;}
.y62{bottom:169.911333pt;}
.ye9{bottom:179.922133pt;}
.y88{bottom:185.142533pt;}
.yc9{bottom:185.831867pt;}
.y19{bottom:187.037467pt;}
.y3e{bottom:187.281600pt;}
.y61{bottom:188.786667pt;}
.ye8{bottom:197.922133pt;}
.y87{bottom:203.297200pt;}
.yaa{bottom:204.054400pt;}
.y18{bottom:204.744133pt;}
.yc8{bottom:204.913867pt;}
.y60{bottom:207.662000pt;}
.ye7{bottom:215.922133pt;}
.y86{bottom:221.451867pt;}
.y17{bottom:222.450800pt;}
.ya9{bottom:222.745733pt;}
.yc7{bottom:223.995867pt;}
.y3d{bottom:224.738000pt;}
.y5f{bottom:226.537333pt;}
.y85{bottom:239.606533pt;}
.ya8{bottom:241.437067pt;}
.ye6{bottom:245.255467pt;}
.y5e{bottom:245.412667pt;}
.yc6{bottom:250.637867pt;}
.y16{bottom:251.504133pt;}
.y84{bottom:257.761200pt;}
.ya7{bottom:260.128400pt;}
.y5d{bottom:264.288000pt;}
.yc5{bottom:269.719867pt;}
.y83{bottom:275.915867pt;}
.ya6{bottom:278.819733pt;}
.y3c{bottom:280.784800pt;}
.ye5{bottom:282.148800pt;}
.y5c{bottom:283.163333pt;}
.y82{bottom:294.070533pt;}
.y15{bottom:295.664133pt;}
.yc4{bottom:296.361867pt;}
.ya5{bottom:297.511067pt;}
.y3b{bottom:299.338133pt;}
.ye4{bottom:299.482133pt;}
.y5b{bottom:302.038667pt;}
.y81{bottom:312.225200pt;}
.y14{bottom:314.704133pt;}
.yc3{bottom:315.443867pt;}
.ya4{bottom:316.202400pt;}
.ye3{bottom:316.815467pt;}
.y3a{bottom:317.891467pt;}
.y5a{bottom:320.914000pt;}
.y80{bottom:330.379867pt;}
.y13{bottom:333.752267pt;}
.ye2{bottom:334.148800pt;}
.yc2{bottom:334.525867pt;}
.ya3{bottom:334.893733pt;}
.y39{bottom:336.444800pt;}
.y59{bottom:339.789333pt;}
.y7f{bottom:348.534533pt;}
.y12{bottom:351.458933pt;}
.ye1{bottom:351.482133pt;}
.ya2{bottom:353.585067pt;}
.y38{bottom:354.998133pt;}
.y58{bottom:358.664667pt;}
.yc1{bottom:361.167867pt;}
.y7e{bottom:366.689200pt;}
.ye0{bottom:368.815467pt;}
.y11{bottom:369.165600pt;}
.ya1{bottom:372.276400pt;}
.y37{bottom:373.551467pt;}
.y57{bottom:377.540000pt;}
.yc0{bottom:380.249867pt;}
.y7d{bottom:384.843867pt;}
.ydf{bottom:386.148800pt;}
.y10{bottom:386.868400pt;}
.ya0{bottom:390.967733pt;}
.y36{bottom:392.104800pt;}
.y56{bottom:396.415333pt;}
.y7c{bottom:402.998533pt;}
.yde{bottom:403.482133pt;}
.yf{bottom:404.575067pt;}
.ybf{bottom:406.891867pt;}
.y9f{bottom:409.659067pt;}
.y35{bottom:410.658133pt;}
.y55{bottom:415.290667pt;}
.ydd{bottom:420.815467pt;}
.y7b{bottom:421.153200pt;}
.ybe{bottom:425.973867pt;}
.y9e{bottom:428.350400pt;}
.y34{bottom:429.211467pt;}
.ye{bottom:433.628400pt;}
.y54{bottom:434.166000pt;}
.ydc{bottom:438.148800pt;}
.y7a{bottom:439.307867pt;}
.y9d{bottom:447.041733pt;}
.y33{bottom:447.764800pt;}
.ybd{bottom:452.615867pt;}
.y53{bottom:453.041333pt;}
.ydb{bottom:455.482133pt;}
.y79{bottom:457.462533pt;}
.y9c{bottom:465.733067pt;}
.y32{bottom:466.318133pt;}
.ybc{bottom:471.697867pt;}
.y52{bottom:471.916667pt;}
.yda{bottom:472.815467pt;}
.y78{bottom:475.617200pt;}
.y9b{bottom:484.424400pt;}
.y31{bottom:484.871467pt;}
.yd{bottom:485.349600pt;}
.yd9{bottom:490.148800pt;}
.y51{bottom:490.792000pt;}
.y77{bottom:493.771867pt;}
.ybb{bottom:498.339867pt;}
.y9a{bottom:503.115733pt;}
.y30{bottom:503.424800pt;}
.yd8{bottom:507.482133pt;}
.y50{bottom:509.667333pt;}
.yc{bottom:509.728267pt;}
.y76{bottom:511.926533pt;}
.yba{bottom:517.421867pt;}
.y99{bottom:521.807067pt;}
.y2f{bottom:521.978133pt;}
.yd7{bottom:524.815467pt;}
.y4f{bottom:528.542667pt;}
.y75{bottom:530.081200pt;}
.yb9{bottom:536.503867pt;}
.y98{bottom:540.498400pt;}
.y2e{bottom:540.531467pt;}
.yd6{bottom:542.148800pt;}
.y4e{bottom:547.418000pt;}
.y74{bottom:548.235867pt;}
.yb{bottom:553.023467pt;}
.y2d{bottom:559.084800pt;}
.y97{bottom:559.189733pt;}
.yd5{bottom:559.482133pt;}
.yb8{bottom:563.145867pt;}
.y4d{bottom:566.293333pt;}
.y73{bottom:566.390533pt;}
.yd4{bottom:576.815467pt;}
.y2c{bottom:577.638133pt;}
.ya{bottom:581.391467pt;}
.yb7{bottom:582.227867pt;}
.y72{bottom:584.545200pt;}
.y4c{bottom:585.168667pt;}
.y2b{bottom:596.191467pt;}
.y96{bottom:596.783867pt;}
.yb6{bottom:601.309867pt;}
.y71{bottom:602.699867pt;}
.y4b{bottom:604.044000pt;}
.yd3{bottom:605.482133pt;}
.y9{bottom:609.759467pt;}
.y2a{bottom:614.744800pt;}
.y70{bottom:620.854533pt;}
.y4a{bottom:622.919333pt;}
.yb5{bottom:627.951867pt;}
.y29{bottom:633.298133pt;}
.y8{bottom:638.127467pt;}
.y6f{bottom:639.009200pt;}
.yb4{bottom:647.033867pt;}
.y28{bottom:651.851467pt;}
.y95{bottom:652.870533pt;}
.yd2{bottom:656.825867pt;}
.y6e{bottom:657.163867pt;}
.y49{bottom:660.671067pt;}
.y27{bottom:670.404800pt;}
.y94{bottom:671.561867pt;}
.yb3{bottom:673.675867pt;}
.y6d{bottom:675.318533pt;}
.yd1{bottom:680.831200pt;}
.y48{bottom:682.883067pt;}
.y26{bottom:688.958133pt;}
.y93{bottom:690.253200pt;}
.yb2{bottom:692.757867pt;}
.y7{bottom:692.965867pt;}
.y6c{bottom:693.473200pt;}
.y47{bottom:705.095067pt;}
.y25{bottom:707.511467pt;}
.y92{bottom:708.944533pt;}
.y6b{bottom:711.627867pt;}
.yb1{bottom:719.399867pt;}
.y6{bottom:719.565867pt;}
.y24{bottom:726.064800pt;}
.y46{bottom:727.307067pt;}
.y91{bottom:727.635867pt;}
.y6a{bottom:729.782533pt;}
.yb0{bottom:738.481867pt;}
.yd0{bottom:741.715867pt;}
.y23{bottom:744.618133pt;}
.y5{bottom:746.165867pt;}
.y90{bottom:746.327200pt;}
.y69{bottom:747.937200pt;}
.yaf{bottom:757.563867pt;}
.ycf{bottom:759.719867pt;}
.y22{bottom:763.171467pt;}
.y8f{bottom:765.018533pt;}
.y4{bottom:765.205867pt;}
.y68{bottom:766.091867pt;}
.y45{bottom:783.525867pt;}
.y8e{bottom:783.709867pt;}
.yae{bottom:784.205867pt;}
.y3{bottom:784.245867pt;}
.y67{bottom:784.246533pt;}
.yce{bottom:785.283867pt;}
.y21{bottom:800.627733pt;}
.y44{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:842.834667pt;}
.y1f{bottom:858.834667pt;}
.h8{height:36.796875pt;}
.hc{height:39.479167pt;}
.h4{height:49.348958pt;}
.h7{height:49.364425pt;}
.he{height:51.328125pt;}
.h3{height:51.816406pt;}
.hd{height:53.894531pt;}
.ha{height:56.751302pt;}
.hb{height:59.027344pt;}
.h2{height:61.686198pt;}
.h9{height:66.621094pt;}
.h6{height:69.088542pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:73.079333pt;}
.x7{left:74.680400pt;}
.x5{left:75.640533pt;}
.x8{left:91.272933pt;}
.x4{left:93.360533pt;}
.x6{left:94.546000pt;}
.x3{left:206.506267pt;}
.x2{left:207.480400pt;}
}




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