
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ca065d7d52c58aacd4333049.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_690073942f4671d01102ee1d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1414929ac6180093d0aaf5c9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_c4205a91afe6d537d83daf2f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_4f8b93b6bcdb48f89bbc588b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_6a6960c9017d538397fe27c8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1a11ecf0d4dcc8408633e08d.woff')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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.141600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.031680px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lse{letter-spacing:0.114600px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls14{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.084800px;}
.ws4{word-spacing:-13.039800px;}
.ws8{word-spacing:-10.648200px;}
.ws9{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._10{margin-left:-3.409560px;}
._7{margin-left:-2.288880px;}
._0{margin-left:-1.110000px;}
._3{width:1.223591px;}
._8{width:2.323609px;}
._5{width:3.547200px;}
._6{width:4.647960px;}
._f{width:6.113640px;}
._11{width:7.515000px;}
._4{width:9.078000px;}
._e{width:10.280400px;}
._a{width:11.397289px;}
._9{width:14.736410px;}
._c{width:16.079399px;}
._b{width:17.314800px;}
._d{width:18.817854px;}
._16{width:20.921760px;}
._1b{width:22.749120px;}
._14{width:23.807520px;}
._2{width:25.309548px;}
._1{width:26.457480px;}
._18{width:29.699280px;}
._13{width:51.423769px;}
._12{width:52.692960px;}
._1a{width:58.605240px;}
._19{width:59.699160px;}
._17{width:62.765280px;}
._1d{width:87.775200px;}
._15{width:104.668920px;}
._1c{width:107.073720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y71{bottom:7.830000px;}
.y74{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y41{bottom:130.530000px;}
.ybe{bottom:139.620000px;}
.ybd{bottom:157.260000px;}
.y26{bottom:161.130000px;}
.y7b{bottom:163.380000px;}
.ye7{bottom:165.090000px;}
.y40{bottom:166.080000px;}
.y9f{bottom:171.120000px;}
.ybc{bottom:174.810000px;}
.y25{bottom:178.680000px;}
.ye6{bottom:182.730000px;}
.ybb{bottom:192.360000px;}
.y24{bottom:196.320000px;}
.y7a{bottom:198.930000px;}
.y3f{bottom:201.720000px;}
.y9e{bottom:206.760000px;}
.ye5{bottom:209.280000px;}
.y5d{bottom:213.690000px;}
.y23{bottom:213.870000px;}
.y79{bottom:216.570000px;}
.y3e{bottom:219.270000px;}
.y9d{bottom:224.310000px;}
.ye4{bottom:226.830000px;}
.yba{bottom:228.000000px;}
.y5c{bottom:231.330000px;}
.y78{bottom:234.390000px;}
.y4e{bottom:240.330000px;}
.y9c{bottom:241.950000px;}
.ye3{bottom:244.470000px;}
.yb9{bottom:245.550000px;}
.y3d{bottom:246.180000px;}
.y5b{bottom:248.880000px;}
.y22{bottom:249.510000px;}
.y77{bottom:250.500000px;}
.y4d{bottom:257.880000px;}
.y9b{bottom:259.500000px;}
.yb8{bottom:263.190000px;}
.y5a{bottom:266.430000px;}
.y21{bottom:267.060000px;}
.ye2{bottom:271.020000px;}
.y4c{bottom:275.430000px;}
.y9a{bottom:277.050000px;}
.y76{bottom:277.860000px;}
.yb7{bottom:280.740000px;}
.y59{bottom:284.070000px;}
.y20{bottom:284.610000px;}
.ye1{bottom:288.660000px;}
.y4b{bottom:293.070000px;}
.y3c{bottom:294.420000px;}
.y99{bottom:294.690000px;}
.yb6{bottom:298.290000px;}
.y1f{bottom:302.250000px;}
.y75{bottom:305.130000px;}
.ye0{bottom:306.210000px;}
.y3b{bottom:312.060000px;}
.y58{bottom:319.620000px;}
.y1e{bottom:319.800000px;}
.y4a{bottom:328.620000px;}
.y3a{bottom:329.610000px;}
.y98{bottom:330.240000px;}
.y73{bottom:332.490000px;}
.ydf{bottom:332.760000px;}
.yb5{bottom:333.930000px;}
.y1d{bottom:337.440000px;}
.y97{bottom:345.270000px;}
.y39{bottom:347.250000px;}
.yde{bottom:350.400000px;}
.yb4{bottom:351.480000px;}
.y57{bottom:351.840000px;}
.y72{bottom:359.850000px;}
.y49{bottom:360.840000px;}
.y38{bottom:364.800000px;}
.ydd{bottom:367.950000px;}
.yb3{bottom:369.120000px;}
.y96{bottom:372.540000px;}
.y1c{bottom:372.990000px;}
.y37{bottom:382.350000px;}
.yb2{bottom:386.670000px;}
.y70{bottom:387.210000px;}
.y1b{bottom:390.540000px;}
.ydc{bottom:394.590000px;}
.y95{bottom:399.900000px;}
.y36{bottom:399.990000px;}
.yb1{bottom:404.220000px;}
.y1a{bottom:408.180000px;}
.ydb{bottom:412.140000px;}
.y19{bottom:425.730000px;}
.y35{bottom:426.900000px;}
.y6f{bottom:435.900000px;}
.yda{bottom:438.690000px;}
.yb0{bottom:439.860000px;}
.y18{bottom:443.280000px;}
.y94{bottom:448.590000px;}
.y108{bottom:452.370000px;}
.yd9{bottom:456.330000px;}
.yaf{bottom:457.410000px;}
.y17{bottom:460.920000px;}
.y107{bottom:469.950000px;}
.y6e{bottom:471.480000px;}
.yd8{bottom:473.910000px;}
.yae{bottom:475.080000px;}
.y34{bottom:475.170000px;}
.y93{bottom:484.260000px;}
.y106{bottom:487.500000px;}
.y16{bottom:487.860000px;}
.y6d{bottom:489.030000px;}
.yad{bottom:492.630000px;}
.y33{bottom:492.810000px;}
.yd7{bottom:500.550000px;}
.y92{bottom:501.810000px;}
.y105{bottom:505.140000px;}
.y32{bottom:510.360000px;}
.yd6{bottom:518.100000px;}
.y91{bottom:519.360000px;}
.y6c{bottom:524.670000px;}
.y31{bottom:527.910000px;}
.yac{bottom:528.180000px;}
.y104{bottom:531.690000px;}
.yd5{bottom:535.650000px;}
.y15{bottom:536.460000px;}
.y90{bottom:537.000000px;}
.y6b{bottom:542.220000px;}
.y30{bottom:545.550000px;}
.yab{bottom:545.820000px;}
.y103{bottom:549.330000px;}
.y6a{bottom:559.860000px;}
.yd4{bottom:562.290000px;}
.y2f{bottom:563.100000px;}
.yaa{bottom:563.370000px;}
.y102{bottom:566.880000px;}
.y8f{bottom:569.940000px;}
.y14{bottom:573.450000px;}
.y69{bottom:577.410000px;}
.yd3{bottom:579.840000px;}
.y2e{bottom:580.740000px;}
.ya9{bottom:581.010000px;}
.y101{bottom:584.430000px;}
.y13{bottom:591.090000px;}
.y68{bottom:594.960000px;}
.y8e{bottom:597.300000px;}
.ya8{bottom:598.560000px;}
.yd2{bottom:606.480000px;}
.y12{bottom:608.640000px;}
.y100{bottom:611.070000px;}
.y67{bottom:612.600000px;}
.y2d{bottom:615.570000px;}
.yd1{bottom:624.030000px;}
.y8d{bottom:624.660000px;}
.ya7{bottom:625.470000px;}
.y11{bottom:626.190000px;}
.yff{bottom:628.620000px;}
.y66{bottom:630.150000px;}
.yd0{bottom:641.580000px;}
.y10{bottom:643.830000px;}
.yfe{bottom:646.260000px;}
.y65{bottom:647.790000px;}
.y2c{bottom:648.330000px;}
.yf{bottom:661.380000px;}
.y48{bottom:663.540000px;}
.ycf{bottom:668.220000px;}
.y2b{bottom:671.550000px;}
.yfd{bottom:672.810000px;}
.y8c{bottom:673.350000px;}
.ya6{bottom:673.710000px;}
.y64{bottom:674.340000px;}
.ye{bottom:679.020000px;}
.y47{bottom:681.090000px;}
.yfc{bottom:690.360000px;}
.ya5{bottom:691.350000px;}
.yce{bottom:694.770000px;}
.yd{bottom:696.570000px;}
.y56{bottom:697.290000px;}
.y46{bottom:698.640000px;}
.yfb{bottom:708.000000px;}
.y8b{bottom:708.900000px;}
.y63{bottom:709.890000px;}
.ycd{bottom:712.410000px;}
.yc{bottom:714.120000px;}
.y55{bottom:714.840000px;}
.y8a{bottom:726.450000px;}
.y62{bottom:727.530000px;}
.ycc{bottom:729.960000px;}
.yb{bottom:731.760000px;}
.y54{bottom:732.390000px;}
.y45{bottom:734.280000px;}
.yfa{bottom:734.550000px;}
.y89{bottom:744.090000px;}
.y61{bottom:745.080000px;}
.ycb{bottom:747.510000px;}
.y53{bottom:750.030000px;}
.yf9{bottom:752.190000px;}
.ya{bottom:758.670000px;}
.y88{bottom:761.640000px;}
.y60{bottom:762.720000px;}
.y44{bottom:766.500000px;}
.y52{bottom:767.580000px;}
.yf8{bottom:769.740000px;}
.yca{bottom:774.150000px;}
.ya4{bottom:777.030000px;}
.y51{bottom:785.220000px;}
.yc9{bottom:791.700000px;}
.y87{bottom:794.670000px;}
.yf7{bottom:796.290000px;}
.y5f{bottom:798.270000px;}
.ya3{bottom:804.390000px;}
.y9{bottom:805.380000px;}
.yc8{bottom:809.340000px;}
.yf6{bottom:813.930000px;}
.y50{bottom:820.770000px;}
.y86{bottom:821.940000px;}
.y5e{bottom:830.490000px;}
.yf5{bottom:831.480000px;}
.ya2{bottom:831.750000px;}
.yc7{bottom:835.890000px;}
.y8{bottom:841.200000px;}
.y85{bottom:849.300000px;}
.y4f{bottom:852.990000px;}
.yc6{bottom:853.440000px;}
.yf4{bottom:858.030000px;}
.yf3{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.yc5{bottom:880.350000px;}
.ya1{bottom:880.440000px;}
.yf2{bottom:893.220000px;}
.y84{bottom:897.990000px;}
.yf1{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.ya0{bottom:915.990000px;}
.yc4{bottom:928.680000px;}
.y83{bottom:933.630000px;}
.yf0{bottom:937.410000px;}
.y5{bottom:949.290000px;}
.y82{bottom:951.180000px;}
.yef{bottom:954.960000px;}
.yc3{bottom:955.590000px;}
.y81{bottom:968.730000px;}
.yee{bottom:981.600000px;}
.y80{bottom:986.370000px;}
.y4{bottom:987.630000px;}
.yc2{bottom:992.580000px;}
.yed{bottom:999.150000px;}
.y7f{bottom:1003.920000px;}
.yc1{bottom:1010.160000px;}
.y3{bottom:1012.320000px;}
.yec{bottom:1016.820000px;}
.y7e{bottom:1036.890000px;}
.yc0{bottom:1037.070000px;}
.yeb{bottom:1043.370000px;}
.yea{bottom:1060.920000px;}
.y7d{bottom:1064.250000px;}
.y43{bottom:1069.110000px;}
.ybf{bottom:1074.420000px;}
.ye9{bottom:1078.560000px;}
.y7c{bottom:1091.610000px;}
.y42{bottom:1104.750000px;}
.ye8{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h9{height:41.661211px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hf{height:61.793886px;}
.hb{height:62.585859px;}
.he{height:67.714259px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:26.550000px;}
.w5{width:72.930000px;}
.w4{width:110.340000px;}
.w16{width:116.730000px;}
.wa{width:117.450000px;}
.w10{width:137.790000px;}
.w13{width:148.950000px;}
.w7{width:160.380000px;}
.w17{width:163.020000px;}
.wb{width:164.010000px;}
.w11{width:192.360000px;}
.w14{width:207.930000px;}
.w8{width:224.040000px;}
.we{width:229.440000px;}
.wd{width:236.520000px;}
.w15{width:280.470000px;}
.w9{width:282.270000px;}
.wf{width:330.870000px;}
.w12{width:357.690000px;}
.w6{width:385.320000px;}
.wc{width:466.680000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:3.960000px;}
.x1{left:68.040000px;}
.x1f{left:111.239987px;}
.x2{left:209.819987px;}
.x19{left:213.330000px;}
.x16{left:254.010000px;}
.x1c{left:267.780000px;}
.x6{left:280.649987px;}
.x10{left:298.109987px;}
.xe{left:304.679987px;}
.x1e{left:306.390000px;}
.xc{left:307.919987px;}
.x5{left:310.799987px;}
.x11{left:340.950000px;}
.x8{left:349.949987px;}
.xa{left:361.289987px;}
.x13{left:368.310000px;}
.x17{left:415.200000px;}
.x1d{left:417.540000px;}
.x1b{left:419.700000px;}
.x18{left:423.750000px;}
.x15{left:446.609987px;}
.x1a{left:450.570000px;}
.x14{left:479.370000px;}
.x9{left:675.059987px;}
.x7{left:694.139987px;}
.xf{left:698.639987px;}
.xb{left:712.139987px;}
.xd{left:720.059987px;}
.x4{left:731.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.125867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.028160pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lse{letter-spacing:0.101867pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls14{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.630933pt;}
.ws4{word-spacing:-11.590933pt;}
.ws8{word-spacing:-9.465067pt;}
.ws9{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._10{margin-left:-3.030720pt;}
._7{margin-left:-2.034560pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.087636pt;}
._8{width:2.065430pt;}
._5{width:3.153067pt;}
._6{width:4.131520pt;}
._f{width:5.434347pt;}
._11{width:6.680000pt;}
._4{width:8.069333pt;}
._e{width:9.138133pt;}
._a{width:10.130924pt;}
._9{width:13.099031pt;}
._c{width:14.292799pt;}
._b{width:15.390934pt;}
._d{width:16.726982pt;}
._16{width:18.597120pt;}
._1b{width:20.221440pt;}
._14{width:21.162240pt;}
._2{width:22.497376pt;}
._1{width:23.517760pt;}
._18{width:26.399360pt;}
._13{width:45.710017pt;}
._12{width:46.838187pt;}
._1a{width:52.093547pt;}
._19{width:53.065920pt;}
._17{width:55.791360pt;}
._1d{width:78.022400pt;}
._15{width:93.039040pt;}
._1c{width:95.176640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:6.960000pt;}
.y74{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y41{bottom:116.026667pt;}
.ybe{bottom:124.106667pt;}
.ybd{bottom:139.786667pt;}
.y26{bottom:143.226667pt;}
.y7b{bottom:145.226667pt;}
.ye7{bottom:146.746667pt;}
.y40{bottom:147.626667pt;}
.y9f{bottom:152.106667pt;}
.ybc{bottom:155.386667pt;}
.y25{bottom:158.826667pt;}
.ye6{bottom:162.426667pt;}
.ybb{bottom:170.986667pt;}
.y24{bottom:174.506667pt;}
.y7a{bottom:176.826667pt;}
.y3f{bottom:179.306667pt;}
.y9e{bottom:183.786667pt;}
.ye5{bottom:186.026667pt;}
.y5d{bottom:189.946667pt;}
.y23{bottom:190.106667pt;}
.y79{bottom:192.506667pt;}
.y3e{bottom:194.906667pt;}
.y9d{bottom:199.386667pt;}
.ye4{bottom:201.626667pt;}
.yba{bottom:202.666667pt;}
.y5c{bottom:205.626667pt;}
.y78{bottom:208.346667pt;}
.y4e{bottom:213.626667pt;}
.y9c{bottom:215.066667pt;}
.ye3{bottom:217.306667pt;}
.yb9{bottom:218.266667pt;}
.y3d{bottom:218.826667pt;}
.y5b{bottom:221.226667pt;}
.y22{bottom:221.786667pt;}
.y77{bottom:222.666667pt;}
.y4d{bottom:229.226667pt;}
.y9b{bottom:230.666667pt;}
.yb8{bottom:233.946667pt;}
.y5a{bottom:236.826667pt;}
.y21{bottom:237.386667pt;}
.ye2{bottom:240.906667pt;}
.y4c{bottom:244.826667pt;}
.y9a{bottom:246.266667pt;}
.y76{bottom:246.986667pt;}
.yb7{bottom:249.546667pt;}
.y59{bottom:252.506667pt;}
.y20{bottom:252.986667pt;}
.ye1{bottom:256.586667pt;}
.y4b{bottom:260.506667pt;}
.y3c{bottom:261.706667pt;}
.y99{bottom:261.946667pt;}
.yb6{bottom:265.146667pt;}
.y1f{bottom:268.666667pt;}
.y75{bottom:271.226667pt;}
.ye0{bottom:272.186667pt;}
.y3b{bottom:277.386667pt;}
.y58{bottom:284.106667pt;}
.y1e{bottom:284.266667pt;}
.y4a{bottom:292.106667pt;}
.y3a{bottom:292.986667pt;}
.y98{bottom:293.546667pt;}
.y73{bottom:295.546667pt;}
.ydf{bottom:295.786667pt;}
.yb5{bottom:296.826667pt;}
.y1d{bottom:299.946667pt;}
.y97{bottom:306.906667pt;}
.y39{bottom:308.666667pt;}
.yde{bottom:311.466667pt;}
.yb4{bottom:312.426667pt;}
.y57{bottom:312.746667pt;}
.y72{bottom:319.866667pt;}
.y49{bottom:320.746667pt;}
.y38{bottom:324.266667pt;}
.ydd{bottom:327.066667pt;}
.yb3{bottom:328.106667pt;}
.y96{bottom:331.146667pt;}
.y1c{bottom:331.546667pt;}
.y37{bottom:339.866667pt;}
.yb2{bottom:343.706667pt;}
.y70{bottom:344.186667pt;}
.y1b{bottom:347.146667pt;}
.ydc{bottom:350.746667pt;}
.y95{bottom:355.466667pt;}
.y36{bottom:355.546667pt;}
.yb1{bottom:359.306667pt;}
.y1a{bottom:362.826667pt;}
.ydb{bottom:366.346667pt;}
.y19{bottom:378.426667pt;}
.y35{bottom:379.466667pt;}
.y6f{bottom:387.466667pt;}
.yda{bottom:389.946667pt;}
.yb0{bottom:390.986667pt;}
.y18{bottom:394.026667pt;}
.y94{bottom:398.746667pt;}
.y108{bottom:402.106667pt;}
.yd9{bottom:405.626667pt;}
.yaf{bottom:406.586667pt;}
.y17{bottom:409.706667pt;}
.y107{bottom:417.733333pt;}
.y6e{bottom:419.093333pt;}
.yd8{bottom:421.253333pt;}
.yae{bottom:422.293333pt;}
.y34{bottom:422.373333pt;}
.y93{bottom:430.453333pt;}
.y106{bottom:433.333333pt;}
.y16{bottom:433.653333pt;}
.y6d{bottom:434.693333pt;}
.yad{bottom:437.893333pt;}
.y33{bottom:438.053333pt;}
.yd7{bottom:444.933333pt;}
.y92{bottom:446.053333pt;}
.y105{bottom:449.013333pt;}
.y32{bottom:453.653333pt;}
.yd6{bottom:460.533333pt;}
.y91{bottom:461.653333pt;}
.y6c{bottom:466.373333pt;}
.y31{bottom:469.253333pt;}
.yac{bottom:469.493333pt;}
.y104{bottom:472.613333pt;}
.yd5{bottom:476.133333pt;}
.y15{bottom:476.853333pt;}
.y90{bottom:477.333333pt;}
.y6b{bottom:481.973333pt;}
.y30{bottom:484.933333pt;}
.yab{bottom:485.173333pt;}
.y103{bottom:488.293333pt;}
.y6a{bottom:497.653333pt;}
.yd4{bottom:499.813333pt;}
.y2f{bottom:500.533333pt;}
.yaa{bottom:500.773333pt;}
.y102{bottom:503.893333pt;}
.y8f{bottom:506.613333pt;}
.y14{bottom:509.733333pt;}
.y69{bottom:513.253333pt;}
.yd3{bottom:515.413333pt;}
.y2e{bottom:516.213333pt;}
.ya9{bottom:516.453333pt;}
.y101{bottom:519.493333pt;}
.y13{bottom:525.413333pt;}
.y68{bottom:528.853333pt;}
.y8e{bottom:530.933333pt;}
.ya8{bottom:532.053333pt;}
.yd2{bottom:539.093333pt;}
.y12{bottom:541.013333pt;}
.y100{bottom:543.173333pt;}
.y67{bottom:544.533333pt;}
.y2d{bottom:547.173333pt;}
.yd1{bottom:554.693333pt;}
.y8d{bottom:555.253333pt;}
.ya7{bottom:555.973333pt;}
.y11{bottom:556.613333pt;}
.yff{bottom:558.773333pt;}
.y66{bottom:560.133333pt;}
.yd0{bottom:570.293333pt;}
.y10{bottom:572.293333pt;}
.yfe{bottom:574.453333pt;}
.y65{bottom:575.813333pt;}
.y2c{bottom:576.293333pt;}
.yf{bottom:587.893333pt;}
.y48{bottom:589.813333pt;}
.ycf{bottom:593.973333pt;}
.y2b{bottom:596.933333pt;}
.yfd{bottom:598.053333pt;}
.y8c{bottom:598.533333pt;}
.ya6{bottom:598.853333pt;}
.y64{bottom:599.413333pt;}
.ye{bottom:603.573333pt;}
.y47{bottom:605.413333pt;}
.yfc{bottom:613.653333pt;}
.ya5{bottom:614.533333pt;}
.yce{bottom:617.573333pt;}
.yd{bottom:619.173333pt;}
.y56{bottom:619.813333pt;}
.y46{bottom:621.013333pt;}
.yfb{bottom:629.333333pt;}
.y8b{bottom:630.133333pt;}
.y63{bottom:631.013333pt;}
.ycd{bottom:633.253333pt;}
.yc{bottom:634.773333pt;}
.y55{bottom:635.413333pt;}
.y8a{bottom:645.733333pt;}
.y62{bottom:646.693333pt;}
.ycc{bottom:648.853333pt;}
.yb{bottom:650.453333pt;}
.y54{bottom:651.013333pt;}
.y45{bottom:652.693333pt;}
.yfa{bottom:652.933333pt;}
.y89{bottom:661.413333pt;}
.y61{bottom:662.293333pt;}
.ycb{bottom:664.453333pt;}
.y53{bottom:666.693333pt;}
.yf9{bottom:668.613333pt;}
.ya{bottom:674.373333pt;}
.y88{bottom:677.013333pt;}
.y60{bottom:677.973333pt;}
.y44{bottom:681.333333pt;}
.y52{bottom:682.293333pt;}
.yf8{bottom:684.213333pt;}
.yca{bottom:688.133333pt;}
.ya4{bottom:690.693333pt;}
.y51{bottom:697.973333pt;}
.yc9{bottom:703.733333pt;}
.y87{bottom:706.373333pt;}
.yf7{bottom:707.813333pt;}
.y5f{bottom:709.573333pt;}
.ya3{bottom:715.013333pt;}
.y9{bottom:715.893333pt;}
.yc8{bottom:719.413333pt;}
.yf6{bottom:723.493333pt;}
.y50{bottom:729.573333pt;}
.y86{bottom:730.613333pt;}
.y5e{bottom:738.213333pt;}
.yf5{bottom:739.093333pt;}
.ya2{bottom:739.333333pt;}
.yc7{bottom:743.013333pt;}
.y8{bottom:747.733333pt;}
.y85{bottom:754.933333pt;}
.y4f{bottom:758.213333pt;}
.yc6{bottom:758.613333pt;}
.yf4{bottom:762.693333pt;}
.yf3{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.yc5{bottom:782.533333pt;}
.ya1{bottom:782.613333pt;}
.yf2{bottom:793.973333pt;}
.y84{bottom:798.213333pt;}
.yf1{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.ya0{bottom:814.213333pt;}
.yc4{bottom:825.493333pt;}
.y83{bottom:829.893333pt;}
.yf0{bottom:833.253333pt;}
.y5{bottom:843.813333pt;}
.y82{bottom:845.493333pt;}
.yef{bottom:848.853333pt;}
.yc3{bottom:849.413333pt;}
.y81{bottom:861.093333pt;}
.yee{bottom:872.533333pt;}
.y80{bottom:876.773333pt;}
.y4{bottom:877.893333pt;}
.yc2{bottom:882.293333pt;}
.yed{bottom:888.133333pt;}
.y7f{bottom:892.373333pt;}
.yc1{bottom:897.920000pt;}
.y3{bottom:899.840000pt;}
.yec{bottom:903.840000pt;}
.y7e{bottom:921.680000pt;}
.yc0{bottom:921.840000pt;}
.yeb{bottom:927.440000pt;}
.yea{bottom:943.040000pt;}
.y7d{bottom:946.000000pt;}
.y43{bottom:950.320000pt;}
.ybf{bottom:955.040000pt;}
.ye9{bottom:958.720000pt;}
.y7c{bottom:970.320000pt;}
.y42{bottom:982.000000pt;}
.ye8{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h9{height:37.032187pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hf{height:54.927899pt;}
.hb{height:55.631875pt;}
.he{height:60.190452pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:23.600000pt;}
.w5{width:64.826667pt;}
.w4{width:98.080000pt;}
.w16{width:103.760000pt;}
.wa{width:104.400000pt;}
.w10{width:122.480000pt;}
.w13{width:132.400000pt;}
.w7{width:142.560000pt;}
.w17{width:144.906667pt;}
.wb{width:145.786667pt;}
.w11{width:170.986667pt;}
.w14{width:184.826667pt;}
.w8{width:199.146667pt;}
.we{width:203.946667pt;}
.wd{width:210.240000pt;}
.w15{width:249.306667pt;}
.w9{width:250.906667pt;}
.wf{width:294.106667pt;}
.w12{width:317.946667pt;}
.w6{width:342.506667pt;}
.wc{width:414.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:3.520000pt;}
.x1{left:60.480000pt;}
.x1f{left:98.879988pt;}
.x2{left:186.506655pt;}
.x19{left:189.626667pt;}
.x16{left:225.786667pt;}
.x1c{left:238.026667pt;}
.x6{left:249.466655pt;}
.x10{left:264.986655pt;}
.xe{left:270.826655pt;}
.x1e{left:272.346667pt;}
.xc{left:273.706655pt;}
.x5{left:276.266655pt;}
.x11{left:303.066667pt;}
.x8{left:311.066655pt;}
.xa{left:321.146655pt;}
.x13{left:327.386667pt;}
.x17{left:369.066667pt;}
.x1d{left:371.146667pt;}
.x1b{left:373.066667pt;}
.x18{left:376.666667pt;}
.x15{left:396.986655pt;}
.x1a{left:400.506667pt;}
.x14{left:426.106667pt;}
.x9{left:600.053322pt;}
.x7{left:617.013322pt;}
.xf{left:621.013322pt;}
.xb{left:633.013322pt;}
.xd{left:640.053322pt;}
.x4{left:650.053322pt;}
.x3{left:711.413322pt;}
}




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