
    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_44ab2ef4ff2bc355e74aa6bc.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_816b32fdeaed2321109ccb92.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_1469e41f4e2416bd4444faf6.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_ed0a85bac7d782e9e487a401.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_5e32a69c4ba264aa54a56893.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ebc4b0856940b0b4c78713ac.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_5454d23d9e7bd93602f5e0ab.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_44aea2f46495c0ea441c21e4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d651c3edfd2ffdadea29d4ba.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_81fb89bc60365f54cdb4c0bf.woff')format("woff");}.ffa{font-family:ffa;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;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.000000px;}
.v2{vertical-align:15.120000px;}
.ls12{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.063600px;}
.lsd{letter-spacing:-0.031800px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.005400px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.098400px;}
.ls14{letter-spacing:0.127200px;}
.ls7{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.lsb{letter-spacing:0.174600px;}
.ls16{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls5{letter-spacing:80.344800px;}
.ls18{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;}
}
.ws2{word-spacing:-42.120000px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.wse{word-spacing:-13.353600px;}
.wsd{word-spacing:-13.324800px;}
.ws7{word-spacing:-13.275600px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-3.530520px;}
._9{margin-left:-2.140920px;}
._0{margin-left:-1.110000px;}
._1{width:1.061040px;}
._6{width:2.567153px;}
._3{width:3.727567px;}
._2{width:5.731758px;}
._5{width:7.188720px;}
._4{width:8.364960px;}
._7{width:9.780894px;}
._b{width:10.895653px;}
._e{width:12.157509px;}
._8{width:16.893720px;}
._c{width:20.440800px;}
._d{width:21.746160px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y23{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y56{bottom:118.380000px;}
.yae{bottom:118.830000px;}
.y65{bottom:124.140000px;}
.y71{bottom:125.670000px;}
.y36{bottom:128.640000px;}
.yad{bottom:136.380000px;}
.y49{bottom:138.900000px;}
.y70{bottom:152.490000px;}
.y55{bottom:153.930000px;}
.yd1{bottom:155.190000px;}
.y64{bottom:159.690000px;}
.y35{bottom:164.190000px;}
.yd0{bottom:172.830000px;}
.y48{bottom:174.450000px;}
.y89{bottom:180.030000px;}
.yac{bottom:180.570000px;}
.y54{bottom:189.570000px;}
.y63{bottom:195.330000px;}
.y34{bottom:196.410000px;}
.y88{bottom:197.670000px;}
.ycf{bottom:199.380000px;}
.y6f{bottom:200.820000px;}
.y47{bottom:206.670000px;}
.y87{bottom:215.220000px;}
.y21{bottom:215.490000px;}
.yab{bottom:216.120000px;}
.yce{bottom:216.930000px;}
.y6e{bottom:218.370000px;}
.y53{bottom:225.120000px;}
.y62{bottom:230.880000px;}
.yaa{bottom:233.760000px;}
.y20{bottom:233.940000px;}
.y86{bottom:241.860000px;}
.y52{bottom:242.760000px;}
.ycd{bottom:243.570000px;}
.y6d{bottom:245.010000px;}
.y1f{bottom:252.300000px;}
.ya9{bottom:260.670000px;}
.ycc{bottom:261.120000px;}
.y61{bottom:266.430000px;}
.y51{bottom:269.310000px;}
.y1e{bottom:270.750000px;}
.y85{bottom:277.410000px;}
.y6c{bottom:280.560000px;}
.y60{bottom:284.070000px;}
.ycb{bottom:287.760000px;}
.y1d{bottom:289.110000px;}
.y84{bottom:294.960000px;}
.y6b{bottom:298.110000px;}
.y50{bottom:304.860000px;}
.ya8{bottom:308.910000px;}
.y5f{bottom:310.620000px;}
.y83{bottom:312.600000px;}
.yca{bottom:314.310000px;}
.y4f{bottom:322.500000px;}
.y6a{bottom:324.750000px;}
.y1c{bottom:325.560000px;}
.ya7{bottom:326.460000px;}
.yc9{bottom:331.860000px;}
.y82{bottom:339.150000px;}
.ya6{bottom:344.100000px;}
.y5e{bottom:346.260000px;}
.y4e{bottom:349.050000px;}
.y1b{bottom:352.470000px;}
.yc8{bottom:358.500000px;}
.y69{bottom:360.300000px;}
.y5d{bottom:363.810000px;}
.ya5{bottom:370.650000px;}
.y81{bottom:374.700000px;}
.yc7{bottom:376.050000px;}
.y5c{bottom:381.360000px;}
.y4d{bottom:384.690000px;}
.y1a{bottom:389.550000px;}
.y80{bottom:392.340000px;}
.y68{bottom:392.520000px;}
.yc6{bottom:402.690000px;}
.ya4{bottom:406.200000px;}
.y19{bottom:407.100000px;}
.y5b{bottom:408.000000px;}
.y7f{bottom:409.890000px;}
.y4c{bottom:416.910000px;}
.yc5{bottom:420.240000px;}
.ya3{bottom:423.840000px;}
.y18{bottom:424.740000px;}
.y7e{bottom:436.440000px;}
.y17{bottom:442.290000px;}
.y5a{bottom:443.550000px;}
.yc4{bottom:446.790000px;}
.ya2{bottom:450.390000px;}
.y46{bottom:457.500000px;}
.y16{bottom:459.840000px;}
.yc3{bottom:464.430000px;}
.y7d{bottom:469.110000px;}
.y59{bottom:475.800000px;}
.ya1{bottom:486.060000px;}
.y15{bottom:486.510000px;}
.yc2{bottom:491.010000px;}
.y45{bottom:493.170000px;}
.ya0{bottom:503.610000px;}
.y7c{bottom:504.690000px;}
.yc1{bottom:508.650000px;}
.y44{bottom:510.720000px;}
.y9f{bottom:521.160000px;}
.y7b{bottom:522.330000px;}
.y14{bottom:522.420000px;}
.yc0{bottom:535.200000px;}
.y33{bottom:537.270000px;}
.y43{bottom:537.360000px;}
.y7a{bottom:539.880000px;}
.y9e{bottom:547.800000px;}
.ybf{bottom:561.750000px;}
.y79{bottom:566.430000px;}
.y32{bottom:569.490000px;}
.y13{bottom:571.020000px;}
.y42{bottom:572.910000px;}
.y9d{bottom:583.350000px;}
.ybe{bottom:588.390000px;}
.y41{bottom:590.460000px;}
.y9c{bottom:600.990000px;}
.y78{bottom:602.070000px;}
.ybd{bottom:605.940000px;}
.y12{bottom:608.010000px;}
.y40{bottom:617.100000px;}
.y77{bottom:619.620000px;}
.y11{bottom:625.560000px;}
.y9b{bottom:627.900000px;}
.ybc{bottom:632.580000px;}
.y76{bottom:637.170000px;}
.y10{bottom:643.200000px;}
.ybb{bottom:650.130000px;}
.y3f{bottom:652.650000px;}
.yf{bottom:660.750000px;}
.y75{bottom:663.810000px;}
.y9a{bottom:676.140000px;}
.yba{bottom:677.040000px;}
.ye{bottom:678.390000px;}
.y3e{bottom:684.870000px;}
.y99{bottom:693.690000px;}
.y74{bottom:696.390000px;}
.yd{bottom:705.210000px;}
.y98{bottom:711.330000px;}
.yb9{bottom:725.280000px;}
.y73{bottom:731.940000px;}
.y97{bottom:737.880000px;}
.y67{bottom:742.470000px;}
.yb8{bottom:742.920000px;}
.yc{bottom:753.540000px;}
.y72{bottom:764.160000px;}
.yb7{bottom:769.830000px;}
.y58{bottom:771.720000px;}
.y96{bottom:773.520000px;}
.y66{bottom:774.690000px;}
.y31{bottom:786.660000px;}
.yb{bottom:789.360000px;}
.y95{bottom:791.070000px;}
.y57{bottom:803.940000px;}
.yde{bottom:804.480000px;}
.y94{bottom:808.620000px;}
.yb6{bottom:818.070000px;}
.y30{bottom:822.210000px;}
.ya{bottom:825.360000px;}
.ydd{bottom:831.030000px;}
.y93{bottom:835.260000px;}
.yb5{bottom:835.620000px;}
.y2f{bottom:839.850000px;}
.ydc{bottom:848.670000px;}
.yb4{bottom:853.260000px;}
.y4b{bottom:863.520000px;}
.y9{bottom:865.140000px;}
.y2e{bottom:866.760000px;}
.y92{bottom:870.810000px;}
.ydb{bottom:875.220000px;}
.y8{bottom:879.360000px;}
.y91{bottom:888.450000px;}
.y4a{bottom:895.740000px;}
.y7{bottom:901.140000px;}
.yda{bottom:901.860000px;}
.y90{bottom:906.000000px;}
.y2d{bottom:915.000000px;}
.y6{bottom:919.140000px;}
.yd9{bottom:919.410000px;}
.y2c{bottom:932.550000px;}
.yb3{bottom:932.910000px;}
.yd8{bottom:945.960000px;}
.y2b{bottom:950.190000px;}
.y5{bottom:951.450000px;}
.yd7{bottom:963.600000px;}
.y2a{bottom:967.740000px;}
.y8f{bottom:968.190000px;}
.y4{bottom:970.800000px;}
.y3d{bottom:980.790000px;}
.yb2{bottom:981.150000px;}
.y8e{bottom:985.740000px;}
.yd6{bottom:990.150000px;}
.y29{bottom:994.290000px;}
.yb1{bottom:998.790000px;}
.y8d{bottom:1003.290000px;}
.yd5{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y3c{bottom:1016.370000px;}
.y8c{bottom:1020.960000px;}
.y28{bottom:1029.960000px;}
.y3b{bottom:1033.920000px;}
.yd4{bottom:1034.370000px;}
.yb0{bottom:1042.920000px;}
.y27{bottom:1047.510000px;}
.yd3{bottom:1051.920000px;}
.y3a{bottom:1060.560000px;}
.y26{bottom:1065.150000px;}
.yaf{bottom:1078.560000px;}
.y8b{bottom:1083.150000px;}
.y25{bottom:1091.700000px;}
.y39{bottom:1096.110000px;}
.y8a{bottom:1100.700000px;}
.y38{bottom:1113.750000px;}
.yd2{bottom:1122.750000px;}
.y24{bottom:1127.610000px;}
.y37{bottom:1140.300000px;}
.y22{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:59.973223px;}
.he{height:61.793886px;}
.ha{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.hc{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x2{left:95.040000px;}
.x12{left:104.939987px;}
.x1b{left:111.239987px;}
.x14{left:128.159987px;}
.x8{left:137.789987px;}
.x16{left:148.499987px;}
.x10{left:158.039987px;}
.xa{left:164.729987px;}
.x3{left:192.719987px;}
.x18{left:260.939987px;}
.xe{left:267.149987px;}
.x1a{left:293.429987px;}
.x6{left:302.519987px;}
.xc{left:312.329987px;}
.x5{left:670.559987px;}
.x7{left:700.889987px;}
.xb{left:703.139987px;}
.x15{left:756.059987px;}
.x9{left:758.309987px;}
.xd{left:759.389987px;}
.x11{left:760.559987px;}
.xf{left:767.309987px;}
.x13{left:775.139987px;}
.x17{left:781.889987px;}
.x19{left:785.759987px;}
.x4{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.056533pt;}
.lsd{letter-spacing:-0.028267pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.004800pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.087467pt;}
.ls14{letter-spacing:0.113067pt;}
.ls7{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.lsb{letter-spacing:0.155200pt;}
.ls16{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls5{letter-spacing:71.417600pt;}
.ls18{letter-spacing:71.863680pt;}
.ws2{word-spacing:-37.440000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.869867pt;}
.wsd{word-spacing:-11.844267pt;}
.ws7{word-spacing:-11.800533pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.138240pt;}
._9{margin-left:-1.903040pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.943147pt;}
._6{width:2.281914pt;}
._3{width:3.313393pt;}
._2{width:5.094896pt;}
._5{width:6.389974pt;}
._4{width:7.435520pt;}
._7{width:8.694128pt;}
._b{width:9.685025pt;}
._e{width:10.806675pt;}
._8{width:15.016640pt;}
._c{width:18.169600pt;}
._d{width:19.329920pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y23{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y56{bottom:105.226667pt;}
.yae{bottom:105.626667pt;}
.y65{bottom:110.346667pt;}
.y71{bottom:111.706667pt;}
.y36{bottom:114.346667pt;}
.yad{bottom:121.226667pt;}
.y49{bottom:123.466667pt;}
.y70{bottom:135.546667pt;}
.y55{bottom:136.826667pt;}
.yd1{bottom:137.946667pt;}
.y64{bottom:141.946667pt;}
.y35{bottom:145.946667pt;}
.yd0{bottom:153.626667pt;}
.y48{bottom:155.066667pt;}
.y89{bottom:160.026667pt;}
.yac{bottom:160.506667pt;}
.y54{bottom:168.506667pt;}
.y63{bottom:173.626667pt;}
.y34{bottom:174.586667pt;}
.y88{bottom:175.706667pt;}
.ycf{bottom:177.226667pt;}
.y6f{bottom:178.506667pt;}
.y47{bottom:183.706667pt;}
.y87{bottom:191.306667pt;}
.y21{bottom:191.546667pt;}
.yab{bottom:192.106667pt;}
.yce{bottom:192.826667pt;}
.y6e{bottom:194.106667pt;}
.y53{bottom:200.106667pt;}
.y62{bottom:205.226667pt;}
.yaa{bottom:207.786667pt;}
.y20{bottom:207.946667pt;}
.y86{bottom:214.986667pt;}
.y52{bottom:215.786667pt;}
.ycd{bottom:216.506667pt;}
.y6d{bottom:217.786667pt;}
.y1f{bottom:224.266667pt;}
.ya9{bottom:231.706667pt;}
.ycc{bottom:232.106667pt;}
.y61{bottom:236.826667pt;}
.y51{bottom:239.386667pt;}
.y1e{bottom:240.666667pt;}
.y85{bottom:246.586667pt;}
.y6c{bottom:249.386667pt;}
.y60{bottom:252.506667pt;}
.ycb{bottom:255.786667pt;}
.y1d{bottom:256.986667pt;}
.y84{bottom:262.186667pt;}
.y6b{bottom:264.986667pt;}
.y50{bottom:270.986667pt;}
.ya8{bottom:274.586667pt;}
.y5f{bottom:276.106667pt;}
.y83{bottom:277.866667pt;}
.yca{bottom:279.386667pt;}
.y4f{bottom:286.666667pt;}
.y6a{bottom:288.666667pt;}
.y1c{bottom:289.386667pt;}
.ya7{bottom:290.186667pt;}
.yc9{bottom:294.986667pt;}
.y82{bottom:301.466667pt;}
.ya6{bottom:305.866667pt;}
.y5e{bottom:307.786667pt;}
.y4e{bottom:310.266667pt;}
.y1b{bottom:313.306667pt;}
.yc8{bottom:318.666667pt;}
.y69{bottom:320.266667pt;}
.y5d{bottom:323.386667pt;}
.ya5{bottom:329.466667pt;}
.y81{bottom:333.066667pt;}
.yc7{bottom:334.266667pt;}
.y5c{bottom:338.986667pt;}
.y4d{bottom:341.946667pt;}
.y1a{bottom:346.266667pt;}
.y80{bottom:348.746667pt;}
.y68{bottom:348.906667pt;}
.yc6{bottom:357.946667pt;}
.ya4{bottom:361.066667pt;}
.y19{bottom:361.866667pt;}
.y5b{bottom:362.666667pt;}
.y7f{bottom:364.346667pt;}
.y4c{bottom:370.586667pt;}
.yc5{bottom:373.546667pt;}
.ya3{bottom:376.746667pt;}
.y18{bottom:377.546667pt;}
.y7e{bottom:387.946667pt;}
.y17{bottom:393.146667pt;}
.y5a{bottom:394.266667pt;}
.yc4{bottom:397.146667pt;}
.ya2{bottom:400.346667pt;}
.y46{bottom:406.666667pt;}
.y16{bottom:408.746667pt;}
.yc3{bottom:412.826667pt;}
.y7d{bottom:416.986667pt;}
.y59{bottom:422.933333pt;}
.ya1{bottom:432.053333pt;}
.y15{bottom:432.453333pt;}
.yc2{bottom:436.453333pt;}
.y45{bottom:438.373333pt;}
.ya0{bottom:447.653333pt;}
.y7c{bottom:448.613333pt;}
.yc1{bottom:452.133333pt;}
.y44{bottom:453.973333pt;}
.y9f{bottom:463.253333pt;}
.y7b{bottom:464.293333pt;}
.y14{bottom:464.373333pt;}
.yc0{bottom:475.733333pt;}
.y33{bottom:477.573333pt;}
.y43{bottom:477.653333pt;}
.y7a{bottom:479.893333pt;}
.y9e{bottom:486.933333pt;}
.ybf{bottom:499.333333pt;}
.y79{bottom:503.493333pt;}
.y32{bottom:506.213333pt;}
.y13{bottom:507.573333pt;}
.y42{bottom:509.253333pt;}
.y9d{bottom:518.533333pt;}
.ybe{bottom:523.013333pt;}
.y41{bottom:524.853333pt;}
.y9c{bottom:534.213333pt;}
.y78{bottom:535.173333pt;}
.ybd{bottom:538.613333pt;}
.y12{bottom:540.453333pt;}
.y40{bottom:548.533333pt;}
.y77{bottom:550.773333pt;}
.y11{bottom:556.053333pt;}
.y9b{bottom:558.133333pt;}
.ybc{bottom:562.293333pt;}
.y76{bottom:566.373333pt;}
.y10{bottom:571.733333pt;}
.ybb{bottom:577.893333pt;}
.y3f{bottom:580.133333pt;}
.yf{bottom:587.333333pt;}
.y75{bottom:590.053333pt;}
.y9a{bottom:601.013333pt;}
.yba{bottom:601.813333pt;}
.ye{bottom:603.013333pt;}
.y3e{bottom:608.773333pt;}
.y99{bottom:616.613333pt;}
.y74{bottom:619.013333pt;}
.yd{bottom:626.853333pt;}
.y98{bottom:632.293333pt;}
.yb9{bottom:644.693333pt;}
.y73{bottom:650.613333pt;}
.y97{bottom:655.893333pt;}
.y67{bottom:659.973333pt;}
.yb8{bottom:660.373333pt;}
.yc{bottom:669.813333pt;}
.y72{bottom:679.253333pt;}
.yb7{bottom:684.293333pt;}
.y58{bottom:685.973333pt;}
.y96{bottom:687.573333pt;}
.y66{bottom:688.613333pt;}
.y31{bottom:699.253333pt;}
.yb{bottom:701.653333pt;}
.y95{bottom:703.173333pt;}
.y57{bottom:714.613333pt;}
.yde{bottom:715.093333pt;}
.y94{bottom:718.773333pt;}
.yb6{bottom:727.173333pt;}
.y30{bottom:730.853333pt;}
.ya{bottom:733.653333pt;}
.ydd{bottom:738.693333pt;}
.y93{bottom:742.453333pt;}
.yb5{bottom:742.773333pt;}
.y2f{bottom:746.533333pt;}
.ydc{bottom:754.373333pt;}
.yb4{bottom:758.453333pt;}
.y4b{bottom:767.573333pt;}
.y9{bottom:769.013333pt;}
.y2e{bottom:770.453333pt;}
.y92{bottom:774.053333pt;}
.ydb{bottom:777.973333pt;}
.y8{bottom:781.653333pt;}
.y91{bottom:789.733333pt;}
.y4a{bottom:796.213333pt;}
.y7{bottom:801.013333pt;}
.yda{bottom:801.653333pt;}
.y90{bottom:805.333333pt;}
.y2d{bottom:813.333333pt;}
.y6{bottom:817.013333pt;}
.yd9{bottom:817.253333pt;}
.y2c{bottom:828.933333pt;}
.yb3{bottom:829.253333pt;}
.yd8{bottom:840.853333pt;}
.y2b{bottom:844.613333pt;}
.y5{bottom:845.733333pt;}
.yd7{bottom:856.533333pt;}
.y2a{bottom:860.213333pt;}
.y8f{bottom:860.613333pt;}
.y4{bottom:862.933333pt;}
.y3d{bottom:871.813333pt;}
.yb2{bottom:872.133333pt;}
.y8e{bottom:876.213333pt;}
.yd6{bottom:880.133333pt;}
.y29{bottom:883.813333pt;}
.yb1{bottom:887.813333pt;}
.y8d{bottom:891.813333pt;}
.yd5{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y3c{bottom:903.440000pt;}
.y8c{bottom:907.520000pt;}
.y28{bottom:915.520000pt;}
.y3b{bottom:919.040000pt;}
.yd4{bottom:919.440000pt;}
.yb0{bottom:927.040000pt;}
.y27{bottom:931.120000pt;}
.yd3{bottom:935.040000pt;}
.y3a{bottom:942.720000pt;}
.y26{bottom:946.800000pt;}
.yaf{bottom:958.720000pt;}
.y8b{bottom:962.800000pt;}
.y25{bottom:970.400000pt;}
.y39{bottom:974.320000pt;}
.y8a{bottom:978.400000pt;}
.y38{bottom:990.000000pt;}
.yd2{bottom:998.000000pt;}
.y24{bottom:1002.320000pt;}
.y37{bottom:1013.600000pt;}
.y22{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:53.309531pt;}
.he{height:54.927899pt;}
.ha{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.hc{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x2{left:84.480000pt;}
.x12{left:93.279988pt;}
.x1b{left:98.879988pt;}
.x14{left:113.919988pt;}
.x8{left:122.479988pt;}
.x16{left:131.999988pt;}
.x10{left:140.479988pt;}
.xa{left:146.426655pt;}
.x3{left:171.306655pt;}
.x18{left:231.946655pt;}
.xe{left:237.466655pt;}
.x1a{left:260.826655pt;}
.x6{left:268.906655pt;}
.xc{left:277.626655pt;}
.x5{left:596.053322pt;}
.x7{left:623.013322pt;}
.xb{left:625.013322pt;}
.x15{left:672.053322pt;}
.x9{left:674.053322pt;}
.xd{left:675.013322pt;}
.x11{left:676.053322pt;}
.xf{left:682.053322pt;}
.x13{left:689.013322pt;}
.x17{left:695.013322pt;}
.x19{left:698.453322pt;}
.x4{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; }
  