
    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_e2efd913d78cade7bc68e2cf.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_503beb6222ca6921fc82e4a2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a291e2e242592ea3b97167cb.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_d49fcd9afb8bacdc26086ab7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fb179f9383616f16fee29c63.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_04b17e4904f58ae41b7947dc.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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls9{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.160800px;}
.ls14{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls5{letter-spacing:-0.008400px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.041760px;}
.ls7{letter-spacing:0.045360px;}
.ls2{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.098400px;}
.lsa{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.428400px;}
.ls6{letter-spacing:0.813600px;}
.ls8{letter-spacing:1.173600px;}
.ls13{letter-spacing:47.726640px;}
.ls11{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.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.324800px;}
.ws8{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-8.553600px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-3.607200px;}
._6{margin-left:-2.129640px;}
._0{margin-left:-1.020000px;}
._5{width:1.101463px;}
._7{width:2.731337px;}
._4{width:4.653587px;}
._3{width:6.258600px;}
._9{width:7.420440px;}
._a{width:8.590352px;}
._1{width:9.884160px;}
._2{width:11.077800px;}
._c{width:12.183496px;}
._d{width:17.494920px;}
._e{width:18.963240px;}
._b{width:21.102120px;}
._f{width:43.670880px;}
._10{width:45.080280px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:7.830000px;}
.y86{bottom:7.860000px;}
.y64{bottom:7.920000px;}
.y9b{bottom:7.950000px;}
.y82{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yf7{bottom:116.490000px;}
.yce{bottom:119.190000px;}
.y80{bottom:121.440000px;}
.y5d{bottom:124.770000px;}
.y29{bottom:129.180000px;}
.yf6{bottom:134.130000px;}
.yaa{bottom:134.760000px;}
.ycd{bottom:136.740000px;}
.y5c{bottom:142.320000px;}
.y28{bottom:146.730000px;}
.yf5{bottom:151.680000px;}
.y7f{bottom:156.990000px;}
.ya6{bottom:157.980000px;}
.y5b{bottom:159.960000px;}
.ya9{bottom:162.120000px;}
.y27{bottom:164.280000px;}
.ycc{bottom:172.290000px;}
.y5a{bottom:177.510000px;}
.yf4{bottom:178.320000px;}
.y26{bottom:181.920000px;}
.ya8{bottom:189.480000px;}
.ycb{bottom:189.930000px;}
.y7e{bottom:192.540000px;}
.ya5{bottom:193.620000px;}
.y59{bottom:195.150000px;}
.yf3{bottom:195.870000px;}
.y25{bottom:199.470000px;}
.y58{bottom:212.700000px;}
.ya7{bottom:216.840000px;}
.y24{bottom:217.020000px;}
.yf2{bottom:222.420000px;}
.y7d{bottom:228.180000px;}
.ya4{bottom:229.170000px;}
.y57{bottom:230.250000px;}
.y23{bottom:234.660000px;}
.yf1{bottom:240.060000px;}
.y7c{bottom:243.120000px;}
.ya3{bottom:244.110000px;}
.y56{bottom:247.890000px;}
.y22{bottom:252.210000px;}
.yca{bottom:262.470000px;}
.y55{bottom:265.440000px;}
.yf0{bottom:266.610000px;}
.y21{bottom:269.850000px;}
.y7b{bottom:270.480000px;}
.ya2{bottom:271.470000px;}
.y54{bottom:283.080000px;}
.yef{bottom:284.250000px;}
.y20{bottom:287.400000px;}
.yc9{bottom:289.830000px;}
.y7a{bottom:297.840000px;}
.ya1{bottom:298.830000px;}
.y53{bottom:300.630000px;}
.yee{bottom:310.800000px;}
.yc8{bottom:317.190000px;}
.y52{bottom:318.180000px;}
.y1f{bottom:322.950000px;}
.y79{bottom:325.110000px;}
.ya0{bottom:326.190000px;}
.yed{bottom:328.350000px;}
.y51{bottom:335.820000px;}
.y1e{bottom:340.590000px;}
.yc7{bottom:344.460000px;}
.yec{bottom:345.990000px;}
.y78{bottom:352.470000px;}
.y50{bottom:353.370000px;}
.y9f{bottom:353.460000px;}
.y1d{bottom:358.140000px;}
.y4f{bottom:371.010000px;}
.yc6{bottom:371.820000px;}
.yeb{bottom:372.540000px;}
.y1c{bottom:375.780000px;}
.y77{bottom:379.830000px;}
.y9e{bottom:380.820000px;}
.yea{bottom:390.090000px;}
.y1b{bottom:393.330000px;}
.y4e{bottom:397.920000px;}
.yc5{bottom:399.180000px;}
.y76{bottom:407.100000px;}
.y9d{bottom:408.180000px;}
.y1a{bottom:410.880000px;}
.ye9{bottom:416.730000px;}
.yc4{bottom:426.450000px;}
.ye8{bottom:434.280000px;}
.y75{bottom:434.460000px;}
.y9c{bottom:435.450000px;}
.y4d{bottom:446.160000px;}
.y19{bottom:446.520000px;}
.yc3{bottom:453.810000px;}
.ye7{bottom:460.920000px;}
.y74{bottom:461.820000px;}
.y9a{bottom:462.810000px;}
.y4c{bottom:463.710000px;}
.y18{bottom:464.070000px;}
.ye6{bottom:478.500000px;}
.yc2{bottom:481.200000px;}
.y4b{bottom:481.380000px;}
.y17{bottom:481.740000px;}
.y73{bottom:489.210000px;}
.y99{bottom:490.200000px;}
.ye5{bottom:496.050000px;}
.y4a{bottom:498.930000px;}
.y16{bottom:499.290000px;}
.yc1{bottom:508.560000px;}
.y49{bottom:516.480000px;}
.y15{bottom:516.840000px;}
.y98{bottom:517.560000px;}
.ye4{bottom:522.960000px;}
.y48{bottom:534.120000px;}
.y14{bottom:534.480000px;}
.yc0{bottom:535.830000px;}
.y72{bottom:543.840000px;}
.y97{bottom:544.830000px;}
.y47{bottom:551.670000px;}
.y13{bottom:552.030000px;}
.ybf{bottom:563.190000px;}
.y46{bottom:569.310000px;}
.y71{bottom:571.200000px;}
.ye3{bottom:571.290000px;}
.y96{bottom:572.190000px;}
.y45{bottom:586.860000px;}
.y12{bottom:587.670000px;}
.ybe{bottom:590.550000px;}
.ye2{bottom:598.200000px;}
.y70{bottom:598.560000px;}
.y95{bottom:599.550000px;}
.ybd{bottom:617.910000px;}
.y44{bottom:622.410000px;}
.y11{bottom:623.220000px;}
.y6f{bottom:625.830000px;}
.y94{bottom:626.910000px;}
.ye1{bottom:635.190000px;}
.y43{bottom:640.050000px;}
.y10{bottom:640.770000px;}
.ybc{bottom:645.180000px;}
.y6e{bottom:653.190000px;}
.y93{bottom:654.180000px;}
.y42{bottom:657.600000px;}
.yf{bottom:658.410000px;}
.ye0{bottom:662.100000px;}
.ybb{bottom:672.540000px;}
.y41{bottom:675.240000px;}
.y6d{bottom:680.550000px;}
.y92{bottom:681.540000px;}
.ye{bottom:685.320000px;}
.y40{bottom:692.790000px;}
.ydf{bottom:699.450000px;}
.yba{bottom:699.900000px;}
.y6c{bottom:707.820000px;}
.y91{bottom:708.900000px;}
.y3f{bottom:710.340000px;}
.yb9{bottom:727.170000px;}
.y3e{bottom:727.980000px;}
.yd{bottom:732.030000px;}
.y6b{bottom:735.180000px;}
.y90{bottom:736.170000px;}
.y3d{bottom:745.530000px;}
.yde{bottom:747.690000px;}
.yb8{bottom:754.530000px;}
.y6a{bottom:762.540000px;}
.y3c{bottom:763.170000px;}
.y8f{bottom:763.530000px;}
.ydd{bottom:765.330000px;}
.yc{bottom:767.850000px;}
.yb7{bottom:781.890000px;}
.ydc{bottom:782.880000px;}
.y69{bottom:789.900000px;}
.y8e{bottom:790.890000px;}
.y3b{bottom:798.720000px;}
.ydb{bottom:800.520000px;}
.yb{bottom:803.850000px;}
.yb6{bottom:809.250000px;}
.y3a{bottom:816.270000px;}
.y68{bottom:817.170000px;}
.y8d{bottom:818.250000px;}
.yda{bottom:827.340000px;}
.y39{bottom:833.910000px;}
.yb5{bottom:836.520000px;}
.ya{bottom:839.850000px;}
.y67{bottom:844.530000px;}
.y8c{bottom:845.520000px;}
.y38{bottom:851.460000px;}
.y9{bottom:861.630000px;}
.yb4{bottom:863.880000px;}
.y66{bottom:871.890000px;}
.y8b{bottom:872.880000px;}
.yd9{bottom:875.670000px;}
.y8{bottom:879.630000px;}
.y101{bottom:884.220000px;}
.y37{bottom:887.100000px;}
.yb2{bottom:891.240000px;}
.yd8{bottom:893.220000px;}
.y7{bottom:897.630000px;}
.y65{bottom:899.250000px;}
.y8a{bottom:900.240000px;}
.y100{bottom:901.860000px;}
.y36{bottom:904.650000px;}
.yd7{bottom:910.860000px;}
.yb3{bottom:918.600000px;}
.yff{bottom:919.410000px;}
.y35{bottom:922.200000px;}
.y63{bottom:926.520000px;}
.y89{bottom:927.600000px;}
.yd6{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.y34{bottom:939.840000px;}
.yfe{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y62{bottom:953.880000px;}
.y88{bottom:954.870000px;}
.y33{bottom:957.390000px;}
.yfd{bottom:963.600000px;}
.yd5{bottom:963.960000px;}
.yb1{bottom:967.290000px;}
.y32{bottom:975.030000px;}
.y60{bottom:981.240000px;}
.yd4{bottom:981.600000px;}
.y87{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.yfc{bottom:990.150000px;}
.y31{bottom:992.580000px;}
.yd3{bottom:999.150000px;}
.yb0{bottom:1002.840000px;}
.yfb{bottom:1007.790000px;}
.y85{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.yd2{bottom:1016.820000px;}
.yaf{bottom:1017.810000px;}
.y30{bottom:1019.520000px;}
.y5f{bottom:1029.960000px;}
.yd1{bottom:1034.370000px;}
.y84{bottom:1036.890000px;}
.yae{bottom:1045.170000px;}
.yfa{bottom:1051.920000px;}
.y5e{bottom:1056.870000px;}
.y81{bottom:1064.250000px;}
.y2f{bottom:1068.120000px;}
.yd0{bottom:1069.920000px;}
.yad{bottom:1072.530000px;}
.yf9{bottom:1078.560000px;}
.ycf{bottom:1087.560000px;}
.y83{bottom:1091.610000px;}
.yf8{bottom:1096.110000px;}
.yac{bottom:1099.890000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.yab{bottom:1127.160000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h9{height:26.550000px;}
.hb{height:26.580000px;}
.ha{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.hc{height:53.910000px;}
.h5{height:55.779258px;}
.he{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:80.100000px;}
.we{width:80.130000px;}
.w9{width:80.850000px;}
.wf{width:88.650000px;}
.w14{width:88.740000px;}
.wa{width:89.550000px;}
.w4{width:106.560000px;}
.w5{width:115.500000px;}
.w3{width:115.830000px;}
.wd{width:169.500000px;}
.w12{width:169.560000px;}
.w8{width:171.120000px;}
.wc{width:243.900000px;}
.w7{width:249.750000px;}
.w6{width:339.420000px;}
.w11{width:351.840000px;}
.w10{width:414.210000px;}
.wb{width:421.680000px;}
.w15{width:522.120000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.xe{left:185.610000px;}
.x2{left:192.719987px;}
.x8{left:235.830000px;}
.xb{left:239.520000px;}
.x4{left:276.960000px;}
.x6{left:393.600000px;}
.xc{left:484.230000px;}
.x9{left:486.390000px;}
.x7{left:500.880000px;}
.xf{left:538.170000px;}
.xd{left:565.080000px;}
.xa{left:567.960000px;}
.x10{left:618.990000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls9{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.142933pt;}
.ls14{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls5{letter-spacing:-0.007467pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.037120pt;}
.ls7{letter-spacing:0.040320pt;}
.ls2{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.087467pt;}
.lsa{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.380800pt;}
.ls6{letter-spacing:0.723200pt;}
.ls8{letter-spacing:1.043200pt;}
.ls13{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.844267pt;}
.ws8{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-7.603200pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-3.206400pt;}
._6{margin-left:-1.893013pt;}
._0{margin-left:-0.906667pt;}
._5{width:0.979078pt;}
._7{width:2.427855pt;}
._4{width:4.136522pt;}
._3{width:5.563200pt;}
._9{width:6.595947pt;}
._a{width:7.635868pt;}
._1{width:8.785920pt;}
._2{width:9.846933pt;}
._c{width:10.829774pt;}
._d{width:15.551040pt;}
._e{width:16.856213pt;}
._b{width:18.757440pt;}
._f{width:38.818560pt;}
._10{width:40.071360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:6.960000pt;}
.y86{bottom:6.986667pt;}
.y64{bottom:7.040000pt;}
.y9b{bottom:7.066667pt;}
.y82{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yf7{bottom:103.546667pt;}
.yce{bottom:105.946667pt;}
.y80{bottom:107.946667pt;}
.y5d{bottom:110.906667pt;}
.y29{bottom:114.826667pt;}
.yf6{bottom:119.226667pt;}
.yaa{bottom:119.786667pt;}
.ycd{bottom:121.546667pt;}
.y5c{bottom:126.506667pt;}
.y28{bottom:130.426667pt;}
.yf5{bottom:134.826667pt;}
.y7f{bottom:139.546667pt;}
.ya6{bottom:140.426667pt;}
.y5b{bottom:142.186667pt;}
.ya9{bottom:144.106667pt;}
.y27{bottom:146.026667pt;}
.ycc{bottom:153.146667pt;}
.y5a{bottom:157.786667pt;}
.yf4{bottom:158.506667pt;}
.y26{bottom:161.706667pt;}
.ya8{bottom:168.426667pt;}
.ycb{bottom:168.826667pt;}
.y7e{bottom:171.146667pt;}
.ya5{bottom:172.106667pt;}
.y59{bottom:173.466667pt;}
.yf3{bottom:174.106667pt;}
.y25{bottom:177.306667pt;}
.y58{bottom:189.066667pt;}
.ya7{bottom:192.746667pt;}
.y24{bottom:192.906667pt;}
.yf2{bottom:197.706667pt;}
.y7d{bottom:202.826667pt;}
.ya4{bottom:203.706667pt;}
.y57{bottom:204.666667pt;}
.y23{bottom:208.586667pt;}
.yf1{bottom:213.386667pt;}
.y7c{bottom:216.106667pt;}
.ya3{bottom:216.986667pt;}
.y56{bottom:220.346667pt;}
.y22{bottom:224.186667pt;}
.yca{bottom:233.306667pt;}
.y55{bottom:235.946667pt;}
.yf0{bottom:236.986667pt;}
.y21{bottom:239.866667pt;}
.y7b{bottom:240.426667pt;}
.ya2{bottom:241.306667pt;}
.y54{bottom:251.626667pt;}
.yef{bottom:252.666667pt;}
.y20{bottom:255.466667pt;}
.yc9{bottom:257.626667pt;}
.y7a{bottom:264.746667pt;}
.ya1{bottom:265.626667pt;}
.y53{bottom:267.226667pt;}
.yee{bottom:276.266667pt;}
.yc8{bottom:281.946667pt;}
.y52{bottom:282.826667pt;}
.y1f{bottom:287.066667pt;}
.y79{bottom:288.986667pt;}
.ya0{bottom:289.946667pt;}
.yed{bottom:291.866667pt;}
.y51{bottom:298.506667pt;}
.y1e{bottom:302.746667pt;}
.yc7{bottom:306.186667pt;}
.yec{bottom:307.546667pt;}
.y78{bottom:313.306667pt;}
.y50{bottom:314.106667pt;}
.y9f{bottom:314.186667pt;}
.y1d{bottom:318.346667pt;}
.y4f{bottom:329.786667pt;}
.yc6{bottom:330.506667pt;}
.yeb{bottom:331.146667pt;}
.y1c{bottom:334.026667pt;}
.y77{bottom:337.626667pt;}
.y9e{bottom:338.506667pt;}
.yea{bottom:346.746667pt;}
.y1b{bottom:349.626667pt;}
.y4e{bottom:353.706667pt;}
.yc5{bottom:354.826667pt;}
.y76{bottom:361.866667pt;}
.y9d{bottom:362.826667pt;}
.y1a{bottom:365.226667pt;}
.ye9{bottom:370.426667pt;}
.yc4{bottom:379.066667pt;}
.ye8{bottom:386.026667pt;}
.y75{bottom:386.186667pt;}
.y9c{bottom:387.066667pt;}
.y4d{bottom:396.586667pt;}
.y19{bottom:396.906667pt;}
.yc3{bottom:403.386667pt;}
.ye7{bottom:409.706667pt;}
.y74{bottom:410.506667pt;}
.y9a{bottom:411.386667pt;}
.y4c{bottom:412.186667pt;}
.y18{bottom:412.506667pt;}
.ye6{bottom:425.333333pt;}
.yc2{bottom:427.733333pt;}
.y4b{bottom:427.893333pt;}
.y17{bottom:428.213333pt;}
.y73{bottom:434.853333pt;}
.y99{bottom:435.733333pt;}
.ye5{bottom:440.933333pt;}
.y4a{bottom:443.493333pt;}
.y16{bottom:443.813333pt;}
.yc1{bottom:452.053333pt;}
.y49{bottom:459.093333pt;}
.y15{bottom:459.413333pt;}
.y98{bottom:460.053333pt;}
.ye4{bottom:464.853333pt;}
.y48{bottom:474.773333pt;}
.y14{bottom:475.093333pt;}
.yc0{bottom:476.293333pt;}
.y72{bottom:483.413333pt;}
.y97{bottom:484.293333pt;}
.y47{bottom:490.373333pt;}
.y13{bottom:490.693333pt;}
.ybf{bottom:500.613333pt;}
.y46{bottom:506.053333pt;}
.y71{bottom:507.733333pt;}
.ye3{bottom:507.813333pt;}
.y96{bottom:508.613333pt;}
.y45{bottom:521.653333pt;}
.y12{bottom:522.373333pt;}
.ybe{bottom:524.933333pt;}
.ye2{bottom:531.733333pt;}
.y70{bottom:532.053333pt;}
.y95{bottom:532.933333pt;}
.ybd{bottom:549.253333pt;}
.y44{bottom:553.253333pt;}
.y11{bottom:553.973333pt;}
.y6f{bottom:556.293333pt;}
.y94{bottom:557.253333pt;}
.ye1{bottom:564.613333pt;}
.y43{bottom:568.933333pt;}
.y10{bottom:569.573333pt;}
.ybc{bottom:573.493333pt;}
.y6e{bottom:580.613333pt;}
.y93{bottom:581.493333pt;}
.y42{bottom:584.533333pt;}
.yf{bottom:585.253333pt;}
.ye0{bottom:588.533333pt;}
.ybb{bottom:597.813333pt;}
.y41{bottom:600.213333pt;}
.y6d{bottom:604.933333pt;}
.y92{bottom:605.813333pt;}
.ye{bottom:609.173333pt;}
.y40{bottom:615.813333pt;}
.ydf{bottom:621.733333pt;}
.yba{bottom:622.133333pt;}
.y6c{bottom:629.173333pt;}
.y91{bottom:630.133333pt;}
.y3f{bottom:631.413333pt;}
.yb9{bottom:646.373333pt;}
.y3e{bottom:647.093333pt;}
.yd{bottom:650.693333pt;}
.y6b{bottom:653.493333pt;}
.y90{bottom:654.373333pt;}
.y3d{bottom:662.693333pt;}
.yde{bottom:664.613333pt;}
.yb8{bottom:670.693333pt;}
.y6a{bottom:677.813333pt;}
.y3c{bottom:678.373333pt;}
.y8f{bottom:678.693333pt;}
.ydd{bottom:680.293333pt;}
.yc{bottom:682.533333pt;}
.yb7{bottom:695.013333pt;}
.ydc{bottom:695.893333pt;}
.y69{bottom:702.133333pt;}
.y8e{bottom:703.013333pt;}
.y3b{bottom:709.973333pt;}
.ydb{bottom:711.573333pt;}
.yb{bottom:714.533333pt;}
.yb6{bottom:719.333333pt;}
.y3a{bottom:725.573333pt;}
.y68{bottom:726.373333pt;}
.y8d{bottom:727.333333pt;}
.yda{bottom:735.413333pt;}
.y39{bottom:741.253333pt;}
.yb5{bottom:743.573333pt;}
.ya{bottom:746.533333pt;}
.y67{bottom:750.693333pt;}
.y8c{bottom:751.573333pt;}
.y38{bottom:756.853333pt;}
.y9{bottom:765.893333pt;}
.yb4{bottom:767.893333pt;}
.y66{bottom:775.013333pt;}
.y8b{bottom:775.893333pt;}
.yd9{bottom:778.373333pt;}
.y8{bottom:781.893333pt;}
.y101{bottom:785.973333pt;}
.y37{bottom:788.533333pt;}
.yb2{bottom:792.213333pt;}
.yd8{bottom:793.973333pt;}
.y7{bottom:797.893333pt;}
.y65{bottom:799.333333pt;}
.y8a{bottom:800.213333pt;}
.y100{bottom:801.653333pt;}
.y36{bottom:804.133333pt;}
.yd7{bottom:809.653333pt;}
.yb3{bottom:816.533333pt;}
.yff{bottom:817.253333pt;}
.y35{bottom:819.733333pt;}
.y63{bottom:823.573333pt;}
.y89{bottom:824.533333pt;}
.yd6{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.y34{bottom:835.413333pt;}
.yfe{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y62{bottom:847.893333pt;}
.y88{bottom:848.773333pt;}
.y33{bottom:851.013333pt;}
.yfd{bottom:856.533333pt;}
.yd5{bottom:856.853333pt;}
.yb1{bottom:859.813333pt;}
.y32{bottom:866.693333pt;}
.y60{bottom:872.213333pt;}
.yd4{bottom:872.533333pt;}
.y87{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.yfc{bottom:880.133333pt;}
.y31{bottom:882.293333pt;}
.yd3{bottom:888.133333pt;}
.yb0{bottom:891.413333pt;}
.yfb{bottom:895.813333pt;}
.y85{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.yd2{bottom:903.840000pt;}
.yaf{bottom:904.720000pt;}
.y30{bottom:906.240000pt;}
.y5f{bottom:915.520000pt;}
.yd1{bottom:919.440000pt;}
.y84{bottom:921.680000pt;}
.yae{bottom:929.040000pt;}
.yfa{bottom:935.040000pt;}
.y5e{bottom:939.440000pt;}
.y81{bottom:946.000000pt;}
.y2f{bottom:949.440000pt;}
.yd0{bottom:951.040000pt;}
.yad{bottom:953.360000pt;}
.yf9{bottom:958.720000pt;}
.ycf{bottom:966.720000pt;}
.y83{bottom:970.320000pt;}
.yf8{bottom:974.320000pt;}
.yac{bottom:977.680000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.yab{bottom:1001.920000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.hb{height:23.626667pt;}
.ha{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.hc{height:47.920000pt;}
.h5{height:49.581562pt;}
.he{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:71.200000pt;}
.we{width:71.226667pt;}
.w9{width:71.866667pt;}
.wf{width:78.800000pt;}
.w14{width:78.880000pt;}
.wa{width:79.600000pt;}
.w4{width:94.720000pt;}
.w5{width:102.666667pt;}
.w3{width:102.960000pt;}
.wd{width:150.666667pt;}
.w12{width:150.720000pt;}
.w8{width:152.106667pt;}
.wc{width:216.800000pt;}
.w7{width:222.000000pt;}
.w6{width:301.706667pt;}
.w11{width:312.746667pt;}
.w10{width:368.186667pt;}
.wb{width:374.826667pt;}
.w15{width:464.106667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.xe{left:164.986667pt;}
.x2{left:171.306655pt;}
.x8{left:209.626667pt;}
.xb{left:212.906667pt;}
.x4{left:246.186667pt;}
.x6{left:349.866667pt;}
.xc{left:430.426667pt;}
.x9{left:432.346667pt;}
.x7{left:445.226667pt;}
.xf{left:478.373333pt;}
.xd{left:502.293333pt;}
.xa{left:504.853333pt;}
.x10{left:550.213333pt;}
.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; }
  