
    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_e1ff75fe8fc13b221271db32.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_ad8a16ccddb00d515e830f08.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_dae738299d2cf5a82f2f8260.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b12b7e3fafa64d18bc140742.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_871542043023592ebaaa1689.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0614ed590d70806d888589ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_db47dd0989d599986fa62645.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.060547;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_d37948915bf0d6020dcab510.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls8{letter-spacing:-9.900000px;}
.ls9{letter-spacing:-1.800000px;}
.lse{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.846000px;}
.lsd{letter-spacing:-0.804000px;}
.lsc{letter-spacing:-0.427800px;}
.lsb{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.269400px;}
.lsa{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.936000px;}
.ls2{letter-spacing:5.940000px;}
.ls13{letter-spacing:25.308000px;}
.ls10{letter-spacing:52.668000px;}
.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:-18.000000px;}
.ws2{word-spacing:-15.226440px;}
.wsd{word-spacing:-14.436000px;}
.wse{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.608000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws7{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.790600px;}
.ws4{word-spacing:-11.700000px;}
.wsb{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.185000px;}
.wsa{word-spacing:-9.808800px;}
.ws3{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-3.230880px;}
._0{margin-left:-1.258560px;}
._3{width:1.118400px;}
._8{width:2.770320px;}
._a{width:3.936960px;}
._5{width:5.382000px;}
._6{width:6.426000px;}
._7{width:7.470000px;}
._11{width:8.529600px;}
._9{width:9.682560px;}
._12{width:11.138880px;}
._18{width:12.437280px;}
._1b{width:14.757600px;}
._16{width:16.578000px;}
._b{width:17.766000px;}
._c{width:19.077600px;}
._19{width:20.142000px;}
._1a{width:21.376800px;}
._1e{width:22.962000px;}
._17{width:24.624000px;}
._10{width:26.136000px;}
._15{width:28.204320px;}
._14{width:29.565120px;}
._e{width:30.954000px;}
._d{width:32.826000px;}
._1f{width:34.182000px;}
._13{width:35.748000px;}
._1d{width:40.398000px;}
._1c{width:41.466000px;}
._20{width:44.046000px;}
._22{width:45.846000px;}
._21{width:50.976000px;}
._f{width:76.588560px;}
._1{width:1625.460000px;}
._2{width:1927.132800px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:5.760000px;}
.y1e{bottom:11.340000px;}
.y1d{bottom:29.160000px;}
.y1a{bottom:32.610000px;}
.y19{bottom:50.430000px;}
.y46{bottom:58.500000px;}
.y18{bottom:68.250000px;}
.y7{bottom:76.860000px;}
.y105{bottom:77.940000px;}
.ye1{bottom:81.000000px;}
.y17{bottom:86.070000px;}
.y7e{bottom:89.640000px;}
.yb6{bottom:90.000000px;}
.y42{bottom:92.880000px;}
.y104{bottom:95.760000px;}
.ye0{bottom:98.820000px;}
.y16{bottom:104.070000px;}
.y7d{bottom:107.640000px;}
.yb5{bottom:107.820000px;}
.y103{bottom:113.580000px;}
.y41{bottom:119.700000px;}
.y38{bottom:120.240000px;}
.y15{bottom:121.890000px;}
.yb4{bottom:125.640000px;}
.y102{bottom:131.580000px;}
.y7c{bottom:134.100000px;}
.y37{bottom:138.060000px;}
.y14{bottom:139.710000px;}
.ydf{bottom:143.640000px;}
.y40{bottom:146.880000px;}
.y101{bottom:149.400000px;}
.yb3{bottom:152.640000px;}
.y36{bottom:155.880000px;}
.y13{bottom:157.530000px;}
.y7b{bottom:161.280000px;}
.yde{bottom:161.460000px;}
.y3f{bottom:164.700000px;}
.yb2{bottom:170.460000px;}
.y35{bottom:173.700000px;}
.y12{bottom:175.350000px;}
.y100{bottom:177.660000px;}
.y7a{bottom:179.100000px;}
.ydd{bottom:179.280000px;}
.y3e{bottom:182.520000px;}
.yb1{bottom:188.280000px;}
.y34{bottom:191.520000px;}
.y11{bottom:193.170000px;}
.y79{bottom:196.920000px;}
.ydc{bottom:197.100000px;}
.y3d{bottom:200.340000px;}
.yb0{bottom:206.130000px;}
.yff{bottom:209.010000px;}
.y33{bottom:209.370000px;}
.y78{bottom:214.950000px;}
.y3c{bottom:218.370000px;}
.yaf{bottom:223.950000px;}
.yfe{bottom:226.830000px;}
.y32{bottom:227.370000px;}
.y77{bottom:232.770000px;}
.ydb{bottom:232.950000px;}
.y3b{bottom:236.190000px;}
.yae{bottom:241.950000px;}
.yfd{bottom:244.830000px;}
.y31{bottom:245.190000px;}
.y76{bottom:250.590000px;}
.yda{bottom:250.770000px;}
.yad{bottom:259.770000px;}
.yfc{bottom:262.650000px;}
.y30{bottom:263.010000px;}
.y75{bottom:268.410000px;}
.yd9{bottom:268.590000px;}
.yac{bottom:277.590000px;}
.yfb{bottom:280.470000px;}
.y2f{bottom:280.830000px;}
.y74{bottom:286.230000px;}
.yd8{bottom:286.410000px;}
.yab{bottom:295.410000px;}
.y2e{bottom:298.650000px;}
.y73{bottom:304.050000px;}
.yd7{bottom:304.230000px;}
.yfa{bottom:307.290000px;}
.y2d{bottom:316.650000px;}
.yaa{bottom:321.870000px;}
.y72{bottom:322.050000px;}
.yf9{bottom:325.110000px;}
.y2c{bottom:334.470000px;}
.y71{bottom:339.870000px;}
.yd6{bottom:340.050000px;}
.yf8{bottom:343.110000px;}
.ya9{bottom:349.050000px;}
.y2b{bottom:352.290000px;}
.y70{bottom:357.690000px;}
.yd5{bottom:357.870000px;}
.yf7{bottom:360.930000px;}
.ya8{bottom:367.050000px;}
.y3a{bottom:370.110000px;}
.y6f{bottom:375.510000px;}
.yd4{bottom:375.690000px;}
.yf6{bottom:378.750000px;}
.y2a{bottom:379.110000px;}
.ya7{bottom:384.870000px;}
.y39{bottom:387.930000px;}
.y6e{bottom:393.330000px;}
.yd3{bottom:393.510000px;}
.yf5{bottom:396.570000px;}
.y29{bottom:396.930000px;}
.ya6{bottom:402.690000px;}
.yd2{bottom:411.330000px;}
.yf4{bottom:414.390000px;}
.y28{bottom:414.750000px;}
.y6d{bottom:420.150000px;}
.ya5{bottom:420.510000px;}
.yd1{bottom:429.150000px;}
.yf3{bottom:432.210000px;}
.y27{bottom:432.750000px;}
.y6c{bottom:438.150000px;}
.ya4{bottom:438.330000px;}
.yd0{bottom:447.195000px;}
.yf2{bottom:450.255000px;}
.y26{bottom:450.615000px;}
.y6b{bottom:456.015000px;}
.ya3{bottom:456.195000px;}
.ycf{bottom:465.015000px;}
.yf1{bottom:468.075000px;}
.y25{bottom:468.435000px;}
.y6a{bottom:473.835000px;}
.ya2{bottom:474.195000px;}
.yce{bottom:482.835000px;}
.y24{bottom:486.255000px;}
.y69{bottom:491.655000px;}
.ya1{bottom:492.015000px;}
.yf0{bottom:494.895000px;}
.ycd{bottom:500.655000px;}
.y23{bottom:504.075000px;}
.ya0{bottom:509.835000px;}
.yef{bottom:512.715000px;}
.y68{bottom:518.475000px;}
.y22{bottom:522.075000px;}
.y9f{bottom:527.655000px;}
.yee{bottom:530.535000px;}
.y67{bottom:536.475000px;}
.y21{bottom:539.895000px;}
.ycc{bottom:545.115000px;}
.y9e{bottom:545.475000px;}
.yed{bottom:548.535000px;}
.y66{bottom:554.295000px;}
.y20{bottom:557.715000px;}
.y9d{bottom:563.475000px;}
.yec{bottom:566.355000px;}
.y65{bottom:572.115000px;}
.ycb{bottom:572.295000px;}
.y9c{bottom:581.295000px;}
.yeb{bottom:584.175000px;}
.y1f{bottom:585.975000px;}
.yca{bottom:590.115000px;}
.y64{bottom:598.935000px;}
.y9b{bottom:599.115000px;}
.yea{bottom:601.995000px;}
.yc9{bottom:607.935000px;}
.y1c{bottom:612.435000px;}
.y63{bottom:616.755000px;}
.y9a{bottom:616.935000px;}
.ye9{bottom:619.815000px;}
.yc8{bottom:625.755000px;}
.y62{bottom:634.575000px;}
.ye8{bottom:637.635000px;}
.y99{bottom:643.755000px;}
.yc7{bottom:652.215000px;}
.y61{bottom:652.575000px;}
.y98{bottom:661.575000px;}
.y10{bottom:663.555000px;}
.ye7{bottom:666.075000px;}
.y60{bottom:670.395000px;}
.y97{bottom:679.605000px;}
.y5f{bottom:688.245000px;}
.y96{bottom:697.425000px;}
.y5e{bottom:706.065000px;}
.y95{bottom:715.245000px;}
.y113{bottom:715.425000px;}
.y5d{bottom:723.885000px;}
.y94{bottom:733.065000px;}
.y5c{bottom:741.885000px;}
.y112{bottom:742.245000px;}
.yc6{bottom:750.885000px;}
.y5b{bottom:759.705000px;}
.y93{bottom:759.885000px;}
.y111{bottom:760.065000px;}
.yc5{bottom:768.885000px;}
.y92{bottom:777.885000px;}
.y5a{bottom:786.525000px;}
.yc4{bottom:786.705000px;}
.y91{bottom:795.705000px;}
.y110{bottom:795.885000px;}
.y59{bottom:804.345000px;}
.yc3{bottom:804.525000px;}
.y90{bottom:813.525000px;}
.y10f{bottom:813.705000px;}
.y58{bottom:822.165000px;}
.yc2{bottom:822.345000px;}
.y8f{bottom:831.345000px;}
.y10e{bottom:831.525000px;}
.y57{bottom:839.985000px;}
.yc1{bottom:840.165000px;}
.y8e{bottom:849.165000px;}
.y10d{bottom:849.345000px;}
.y56{bottom:857.985000px;}
.y8d{bottom:866.985000px;}
.y10c{bottom:867.165000px;}
.yc0{bottom:875.985000px;}
.yf{bottom:884.445000px;}
.y55{bottom:884.805000px;}
.y8c{bottom:884.985000px;}
.ybf{bottom:893.805000px;}
.y54{bottom:902.625000px;}
.ye6{bottom:902.805000px;}
.y10b{bottom:902.985000px;}
.ye{bottom:911.310000px;}
.y8b{bottom:911.850000px;}
.y53{bottom:920.490000px;}
.ybe{bottom:920.670000px;}
.y10a{bottom:920.850000px;}
.y8a{bottom:929.670000px;}
.y52{bottom:938.310000px;}
.ybd{bottom:938.490000px;}
.y109{bottom:938.670000px;}
.yd{bottom:944.070000px;}
.y89{bottom:947.490000px;}
.y51{bottom:956.310000px;}
.y108{bottom:956.490000px;}
.y88{bottom:965.310000px;}
.yc{bottom:970.890000px;}
.y50{bottom:974.130000px;}
.ybc{bottom:974.310000px;}
.ye5{bottom:982.950000px;}
.y87{bottom:983.310000px;}
.yb{bottom:991.410000px;}
.ybb{bottom:992.130000px;}
.y107{bottom:992.310000px;}
.ye4{bottom:1000.770000px;}
.y4f{bottom:1000.950000px;}
.y86{bottom:1001.130000px;}
.y106{bottom:1010.130000px;}
.y4e{bottom:1018.770000px;}
.y85{bottom:1018.950000px;}
.ya{bottom:1021.470000px;}
.ye3{bottom:1027.950000px;}
.y4d{bottom:1036.590000px;}
.y84{bottom:1036.770000px;}
.ye2{bottom:1045.770000px;}
.y83{bottom:1054.590000px;}
.y9{bottom:1056.930000px;}
.y4c{bottom:1063.050000px;}
.yba{bottom:1063.590000px;}
.y82{bottom:1072.410000px;}
.yb9{bottom:1081.410000px;}
.y8{bottom:1087.350000px;}
.y4b{bottom:1090.410000px;}
.yb8{bottom:1099.410000px;}
.y4a{bottom:1108.230000px;}
.y6{bottom:1113.270000px;}
.yb7{bottom:1117.230000px;}
.y49{bottom:1126.050000px;}
.y5{bottom:1132.530000px;}
.y81{bottom:1135.050000px;}
.y48{bottom:1143.870000px;}
.y4{bottom:1150.920000px;}
.y80{bottom:1152.900000px;}
.y3{bottom:1166.220000px;}
.y47{bottom:1170.360000px;}
.y7f{bottom:1170.720000px;}
.y2{bottom:1181.520000px;}
.y45{bottom:1183.860000px;}
.y44{bottom:1189.260000px;}
.y43{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h14{height:10.363359px;}
.h13{height:15.240234px;}
.hb{height:35.332031px;}
.h11{height:39.049805px;}
.h12{height:40.843828px;}
.hc{height:42.124219px;}
.h6{height:47.344922px;}
.hf{height:50.385000px;}
.h15{height:52.971680px;}
.h7{height:52.998047px;}
.hd{height:54.421875px;}
.h16{height:55.503491px;}
.ha{height:60.041250px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.h8{height:69.660000px;}
.h4{height:70.664062px;}
.h10{height:72.562500px;}
.h9{height:84.898125px;}
.he{height:214.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.098500px;}
.x5{left:54.000000px;}
.xf{left:55.440000px;}
.x8{left:72.901500px;}
.x13{left:81.000000px;}
.x6{left:89.676000px;}
.xa{left:95.256000px;}
.x14{left:108.036000px;}
.xd{left:227.010000px;}
.x1{left:259.950000px;}
.x2{left:320.475000px;}
.x4{left:335.775000px;}
.x3{left:353.055000px;}
.xe{left:446.505000px;}
.xc{left:473.505000px;}
.x11{left:500.505000px;}
.xb{left:514.725000px;}
.x12{left:527.505000px;}
.x10{left:822.420000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls8{letter-spacing:-8.800000pt;}
.ls9{letter-spacing:-1.600000pt;}
.lse{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.752000pt;}
.lsd{letter-spacing:-0.714667pt;}
.lsc{letter-spacing:-0.380267pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.239467pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.832000pt;}
.ls2{letter-spacing:5.280000pt;}
.ls13{letter-spacing:22.496000pt;}
.ls10{letter-spacing:46.816000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.wsd{word-spacing:-12.832000pt;}
.wse{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.096000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws4{word-spacing:-10.400000pt;}
.wsb{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.053333pt;}
.wsa{word-spacing:-8.718933pt;}
.ws3{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-2.871893pt;}
._0{margin-left:-1.118720pt;}
._3{width:0.994133pt;}
._8{width:2.462507pt;}
._a{width:3.499520pt;}
._5{width:4.784000pt;}
._6{width:5.712000pt;}
._7{width:6.640000pt;}
._11{width:7.581867pt;}
._9{width:8.606720pt;}
._12{width:9.901227pt;}
._18{width:11.055360pt;}
._1b{width:13.117867pt;}
._16{width:14.736000pt;}
._b{width:15.792000pt;}
._c{width:16.957867pt;}
._19{width:17.904000pt;}
._1a{width:19.001600pt;}
._1e{width:20.410667pt;}
._17{width:21.888000pt;}
._10{width:23.232000pt;}
._15{width:25.070507pt;}
._14{width:26.280107pt;}
._e{width:27.514667pt;}
._d{width:29.178667pt;}
._1f{width:30.384000pt;}
._13{width:31.776000pt;}
._1d{width:35.909333pt;}
._1c{width:36.858667pt;}
._20{width:39.152000pt;}
._22{width:40.752000pt;}
._21{width:45.312000pt;}
._f{width:68.078720pt;}
._1{width:1444.853333pt;}
._2{width:1713.006933pt;}
.fs8{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:5.120000pt;}
.y1e{bottom:10.080000pt;}
.y1d{bottom:25.920000pt;}
.y1a{bottom:28.986667pt;}
.y19{bottom:44.826667pt;}
.y46{bottom:52.000000pt;}
.y18{bottom:60.666667pt;}
.y7{bottom:68.320000pt;}
.y105{bottom:69.280000pt;}
.ye1{bottom:72.000000pt;}
.y17{bottom:76.506667pt;}
.y7e{bottom:79.680000pt;}
.yb6{bottom:80.000000pt;}
.y42{bottom:82.560000pt;}
.y104{bottom:85.120000pt;}
.ye0{bottom:87.840000pt;}
.y16{bottom:92.506667pt;}
.y7d{bottom:95.680000pt;}
.yb5{bottom:95.840000pt;}
.y103{bottom:100.960000pt;}
.y41{bottom:106.400000pt;}
.y38{bottom:106.880000pt;}
.y15{bottom:108.346667pt;}
.yb4{bottom:111.680000pt;}
.y102{bottom:116.960000pt;}
.y7c{bottom:119.200000pt;}
.y37{bottom:122.720000pt;}
.y14{bottom:124.186667pt;}
.ydf{bottom:127.680000pt;}
.y40{bottom:130.560000pt;}
.y101{bottom:132.800000pt;}
.yb3{bottom:135.680000pt;}
.y36{bottom:138.560000pt;}
.y13{bottom:140.026667pt;}
.y7b{bottom:143.360000pt;}
.yde{bottom:143.520000pt;}
.y3f{bottom:146.400000pt;}
.yb2{bottom:151.520000pt;}
.y35{bottom:154.400000pt;}
.y12{bottom:155.866667pt;}
.y100{bottom:157.920000pt;}
.y7a{bottom:159.200000pt;}
.ydd{bottom:159.360000pt;}
.y3e{bottom:162.240000pt;}
.yb1{bottom:167.360000pt;}
.y34{bottom:170.240000pt;}
.y11{bottom:171.706667pt;}
.y79{bottom:175.040000pt;}
.ydc{bottom:175.200000pt;}
.y3d{bottom:178.080000pt;}
.yb0{bottom:183.226667pt;}
.yff{bottom:185.786667pt;}
.y33{bottom:186.106667pt;}
.y78{bottom:191.066667pt;}
.y3c{bottom:194.106667pt;}
.yaf{bottom:199.066667pt;}
.yfe{bottom:201.626667pt;}
.y32{bottom:202.106667pt;}
.y77{bottom:206.906667pt;}
.ydb{bottom:207.066667pt;}
.y3b{bottom:209.946667pt;}
.yae{bottom:215.066667pt;}
.yfd{bottom:217.626667pt;}
.y31{bottom:217.946667pt;}
.y76{bottom:222.746667pt;}
.yda{bottom:222.906667pt;}
.yad{bottom:230.906667pt;}
.yfc{bottom:233.466667pt;}
.y30{bottom:233.786667pt;}
.y75{bottom:238.586667pt;}
.yd9{bottom:238.746667pt;}
.yac{bottom:246.746667pt;}
.yfb{bottom:249.306667pt;}
.y2f{bottom:249.626667pt;}
.y74{bottom:254.426667pt;}
.yd8{bottom:254.586667pt;}
.yab{bottom:262.586667pt;}
.y2e{bottom:265.466667pt;}
.y73{bottom:270.266667pt;}
.yd7{bottom:270.426667pt;}
.yfa{bottom:273.146667pt;}
.y2d{bottom:281.466667pt;}
.yaa{bottom:286.106667pt;}
.y72{bottom:286.266667pt;}
.yf9{bottom:288.986667pt;}
.y2c{bottom:297.306667pt;}
.y71{bottom:302.106667pt;}
.yd6{bottom:302.266667pt;}
.yf8{bottom:304.986667pt;}
.ya9{bottom:310.266667pt;}
.y2b{bottom:313.146667pt;}
.y70{bottom:317.946667pt;}
.yd5{bottom:318.106667pt;}
.yf7{bottom:320.826667pt;}
.ya8{bottom:326.266667pt;}
.y3a{bottom:328.986667pt;}
.y6f{bottom:333.786667pt;}
.yd4{bottom:333.946667pt;}
.yf6{bottom:336.666667pt;}
.y2a{bottom:336.986667pt;}
.ya7{bottom:342.106667pt;}
.y39{bottom:344.826667pt;}
.y6e{bottom:349.626667pt;}
.yd3{bottom:349.786667pt;}
.yf5{bottom:352.506667pt;}
.y29{bottom:352.826667pt;}
.ya6{bottom:357.946667pt;}
.yd2{bottom:365.626667pt;}
.yf4{bottom:368.346667pt;}
.y28{bottom:368.666667pt;}
.y6d{bottom:373.466667pt;}
.ya5{bottom:373.786667pt;}
.yd1{bottom:381.466667pt;}
.yf3{bottom:384.186667pt;}
.y27{bottom:384.666667pt;}
.y6c{bottom:389.466667pt;}
.ya4{bottom:389.626667pt;}
.yd0{bottom:397.506667pt;}
.yf2{bottom:400.226667pt;}
.y26{bottom:400.546667pt;}
.y6b{bottom:405.346667pt;}
.ya3{bottom:405.506667pt;}
.ycf{bottom:413.346667pt;}
.yf1{bottom:416.066667pt;}
.y25{bottom:416.386667pt;}
.y6a{bottom:421.186667pt;}
.ya2{bottom:421.506667pt;}
.yce{bottom:429.186667pt;}
.y24{bottom:432.226667pt;}
.y69{bottom:437.026667pt;}
.ya1{bottom:437.346667pt;}
.yf0{bottom:439.906667pt;}
.ycd{bottom:445.026667pt;}
.y23{bottom:448.066667pt;}
.ya0{bottom:453.186667pt;}
.yef{bottom:455.746667pt;}
.y68{bottom:460.866667pt;}
.y22{bottom:464.066667pt;}
.y9f{bottom:469.026667pt;}
.yee{bottom:471.586667pt;}
.y67{bottom:476.866667pt;}
.y21{bottom:479.906667pt;}
.ycc{bottom:484.546667pt;}
.y9e{bottom:484.866667pt;}
.yed{bottom:487.586667pt;}
.y66{bottom:492.706667pt;}
.y20{bottom:495.746667pt;}
.y9d{bottom:500.866667pt;}
.yec{bottom:503.426667pt;}
.y65{bottom:508.546667pt;}
.ycb{bottom:508.706667pt;}
.y9c{bottom:516.706667pt;}
.yeb{bottom:519.266667pt;}
.y1f{bottom:520.866667pt;}
.yca{bottom:524.546667pt;}
.y64{bottom:532.386667pt;}
.y9b{bottom:532.546667pt;}
.yea{bottom:535.106667pt;}
.yc9{bottom:540.386667pt;}
.y1c{bottom:544.386667pt;}
.y63{bottom:548.226667pt;}
.y9a{bottom:548.386667pt;}
.ye9{bottom:550.946667pt;}
.yc8{bottom:556.226667pt;}
.y62{bottom:564.066667pt;}
.ye8{bottom:566.786667pt;}
.y99{bottom:572.226667pt;}
.yc7{bottom:579.746667pt;}
.y61{bottom:580.066667pt;}
.y98{bottom:588.066667pt;}
.y10{bottom:589.826667pt;}
.ye7{bottom:592.066667pt;}
.y60{bottom:595.906667pt;}
.y97{bottom:604.093333pt;}
.y5f{bottom:611.773333pt;}
.y96{bottom:619.933333pt;}
.y5e{bottom:627.613333pt;}
.y95{bottom:635.773333pt;}
.y113{bottom:635.933333pt;}
.y5d{bottom:643.453333pt;}
.y94{bottom:651.613333pt;}
.y5c{bottom:659.453333pt;}
.y112{bottom:659.773333pt;}
.yc6{bottom:667.453333pt;}
.y5b{bottom:675.293333pt;}
.y93{bottom:675.453333pt;}
.y111{bottom:675.613333pt;}
.yc5{bottom:683.453333pt;}
.y92{bottom:691.453333pt;}
.y5a{bottom:699.133333pt;}
.yc4{bottom:699.293333pt;}
.y91{bottom:707.293333pt;}
.y110{bottom:707.453333pt;}
.y59{bottom:714.973333pt;}
.yc3{bottom:715.133333pt;}
.y90{bottom:723.133333pt;}
.y10f{bottom:723.293333pt;}
.y58{bottom:730.813333pt;}
.yc2{bottom:730.973333pt;}
.y8f{bottom:738.973333pt;}
.y10e{bottom:739.133333pt;}
.y57{bottom:746.653333pt;}
.yc1{bottom:746.813333pt;}
.y8e{bottom:754.813333pt;}
.y10d{bottom:754.973333pt;}
.y56{bottom:762.653333pt;}
.y8d{bottom:770.653333pt;}
.y10c{bottom:770.813333pt;}
.yc0{bottom:778.653333pt;}
.yf{bottom:786.173333pt;}
.y55{bottom:786.493333pt;}
.y8c{bottom:786.653333pt;}
.ybf{bottom:794.493333pt;}
.y54{bottom:802.333333pt;}
.ye6{bottom:802.493333pt;}
.y10b{bottom:802.653333pt;}
.ye{bottom:810.053333pt;}
.y8b{bottom:810.533333pt;}
.y53{bottom:818.213333pt;}
.ybe{bottom:818.373333pt;}
.y10a{bottom:818.533333pt;}
.y8a{bottom:826.373333pt;}
.y52{bottom:834.053333pt;}
.ybd{bottom:834.213333pt;}
.y109{bottom:834.373333pt;}
.yd{bottom:839.173333pt;}
.y89{bottom:842.213333pt;}
.y51{bottom:850.053333pt;}
.y108{bottom:850.213333pt;}
.y88{bottom:858.053333pt;}
.yc{bottom:863.013333pt;}
.y50{bottom:865.893333pt;}
.ybc{bottom:866.053333pt;}
.ye5{bottom:873.733333pt;}
.y87{bottom:874.053333pt;}
.yb{bottom:881.253333pt;}
.ybb{bottom:881.893333pt;}
.y107{bottom:882.053333pt;}
.ye4{bottom:889.573333pt;}
.y4f{bottom:889.733333pt;}
.y86{bottom:889.893333pt;}
.y106{bottom:897.893333pt;}
.y4e{bottom:905.573333pt;}
.y85{bottom:905.733333pt;}
.ya{bottom:907.973333pt;}
.ye3{bottom:913.733333pt;}
.y4d{bottom:921.413333pt;}
.y84{bottom:921.573333pt;}
.ye2{bottom:929.573333pt;}
.y83{bottom:937.413333pt;}
.y9{bottom:939.493333pt;}
.y4c{bottom:944.933333pt;}
.yba{bottom:945.413333pt;}
.y82{bottom:953.253333pt;}
.yb9{bottom:961.253333pt;}
.y8{bottom:966.533333pt;}
.y4b{bottom:969.253333pt;}
.yb8{bottom:977.253333pt;}
.y4a{bottom:985.093333pt;}
.y6{bottom:989.573333pt;}
.yb7{bottom:993.093333pt;}
.y49{bottom:1000.933333pt;}
.y5{bottom:1006.693333pt;}
.y81{bottom:1008.933333pt;}
.y48{bottom:1016.773333pt;}
.y4{bottom:1023.040000pt;}
.y80{bottom:1024.800000pt;}
.y3{bottom:1036.640000pt;}
.y47{bottom:1040.320000pt;}
.y7f{bottom:1040.640000pt;}
.y2{bottom:1050.240000pt;}
.y45{bottom:1052.320000pt;}
.y44{bottom:1057.120000pt;}
.y43{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h14{height:9.211875pt;}
.h13{height:13.546875pt;}
.hb{height:31.406250pt;}
.h11{height:34.710938pt;}
.h12{height:36.305625pt;}
.hc{height:37.443750pt;}
.h6{height:42.084375pt;}
.hf{height:44.786667pt;}
.h15{height:47.085938pt;}
.h7{height:47.109375pt;}
.hd{height:48.375000pt;}
.h16{height:49.336436pt;}
.ha{height:53.370000pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.h8{height:61.920000pt;}
.h4{height:62.812500pt;}
.h10{height:64.500000pt;}
.h9{height:75.465000pt;}
.he{height:190.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.198667pt;}
.x5{left:48.000000pt;}
.xf{left:49.280000pt;}
.x8{left:64.801333pt;}
.x13{left:72.000000pt;}
.x6{left:79.712000pt;}
.xa{left:84.672000pt;}
.x14{left:96.032000pt;}
.xd{left:201.786667pt;}
.x1{left:231.066667pt;}
.x2{left:284.866667pt;}
.x4{left:298.466667pt;}
.x3{left:313.826667pt;}
.xe{left:396.893333pt;}
.xc{left:420.893333pt;}
.x11{left:444.893333pt;}
.xb{left:457.533333pt;}
.x12{left:468.893333pt;}
.x10{left:731.040000pt;}
.x7{left:739.200000pt;}
}




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