
    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_509ecd92d3fa8918e3843b12.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_ca796f36201b1cf04eb457d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_c609893a7b4ef0d081f7a679.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.886230;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_58152fcfd3d2087b9e85023e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_60d53abfff005d8c059cfa6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_9b17023fbcdd4446404345ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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_32a4e16e8cf89af85a36cadc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_299a8964ef907aa528fce9af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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:ffb;src:url('chunks/assets/font_2d18cb39d848d165850f2985.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916016;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:ffc;src:url('chunks/assets/font_7f067178650966ce960c6761.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_980dfaa1c0958753696e0e07.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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:ffe;src:url('chunks/assets/font_00541ebc70cc32aae6860be4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.886230;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:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-16.506924px;}
.lsa{letter-spacing:-12.780000px;}
.ls9{letter-spacing:-0.942000px;}
.lsf{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.450600px;}
.ls6{letter-spacing:-0.413400px;}
.ls7{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:12.420000px;}
.lsd{letter-spacing:18.666720px;}
.lsc{letter-spacing:24.660000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws2{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.609400px;}
.ws0{word-spacing:-11.340000px;}
.ws7{word-spacing:-11.118000px;}
.ws9{word-spacing:0.000000px;}
._27{margin-left:-2673.576000px;}
._2e{margin-left:-12.430560px;}
._3{margin-left:-5.075280px;}
._4{margin-left:-3.576960px;}
._b{margin-left:-2.482320px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._10{width:2.211120px;}
._2{width:3.332640px;}
._f{width:5.074080px;}
._1b{width:6.339600px;}
._d{width:7.502880px;}
._9{width:8.540160px;}
._a{width:9.692160px;}
._8{width:10.756800px;}
._e{width:11.860080px;}
._25{width:13.331280px;}
._c{width:16.185120px;}
._14{width:17.390160px;}
._1a{width:18.579840px;}
._16{width:19.840320px;}
._19{width:21.214800px;}
._1f{width:22.220880px;}
._1c{width:23.904000px;}
._20{width:25.631520px;}
._2d{width:26.837760px;}
._7{width:28.440240px;}
._6{width:29.521440px;}
._2b{width:30.526320px;}
._13{width:31.547760px;}
._15{width:32.813760px;}
._24{width:34.595520px;}
._21{width:35.676720px;}
._11{width:38.121360px;}
._17{width:40.332480px;}
._18{width:41.416800px;}
._2a{width:42.967440px;}
._1e{width:48.400080px;}
._29{width:50.013600px;}
._28{width:51.393600px;}
._30{width:52.707600px;}
._1d{width:54.799920px;}
._12{width:59.726880px;}
._2c{width:62.927280px;}
._5{width:71.590080px;}
._2f{width:86.592240px;}
._23{width:108.936000px;}
._22{width:110.160000px;}
._26{width:278.610000px;}
.fc9{color:transparent;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc8{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs10{font-size:6.000000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fse{font-size:50.848916px;}
.fs3{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:56.920429px;}
.fs7{font-size:59.760000px;}
.fsf{font-size:62.991941px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.y4d{bottom:-132.150000px;}
.y4c{bottom:-98.280000px;}
.y4b{bottom:-64.620000px;}
.y4a{bottom:-30.780000px;}
.y51{bottom:-17.922750px;}
.y0{bottom:0.000000px;}
.yc4{bottom:1.837500px;}
.y49{bottom:2.880000px;}
.y6{bottom:3.780000px;}
.y4f{bottom:5.370000px;}
.y9{bottom:12.600000px;}
.y8{bottom:24.660000px;}
.ya{bottom:25.920000px;}
.y48{bottom:27.900000px;}
.yc{bottom:35.100000px;}
.y7{bottom:41.580000px;}
.y47{bottom:48.600000px;}
.y54{bottom:58.320000px;}
.y50{bottom:63.780000px;}
.y5{bottom:75.960000px;}
.y53{bottom:77.220000px;}
.y83{bottom:112.140000px;}
.yc3{bottom:116.280000px;}
.y45{bottom:126.540000px;}
.y36{bottom:128.340000px;}
.y82{bottom:131.940000px;}
.yc2{bottom:136.260000px;}
.y44{bottom:146.340000px;}
.y35{bottom:148.320000px;}
.y81{bottom:151.740000px;}
.yc1{bottom:156.060000px;}
.y43{bottom:167.610000px;}
.y34{bottom:168.150000px;}
.y80{bottom:171.570000px;}
.yc0{bottom:175.890000px;}
.y33{bottom:187.950000px;}
.y42{bottom:191.370000px;}
.y7f{bottom:191.550000px;}
.ybf{bottom:195.690000px;}
.y32{bottom:207.750000px;}
.y7e{bottom:211.350000px;}
.y41{bottom:212.610000px;}
.ybe{bottom:215.490000px;}
.y31{bottom:227.550000px;}
.y40{bottom:229.710000px;}
.y7d{bottom:231.150000px;}
.ybd{bottom:235.470000px;}
.y30{bottom:247.530000px;}
.y3f{bottom:249.510000px;}
.y7c{bottom:250.950000px;}
.ybc{bottom:255.270000px;}
.y2f{bottom:267.330000px;}
.y3e{bottom:269.490000px;}
.y7b{bottom:270.750000px;}
.ybb{bottom:275.070000px;}
.y2e{bottom:287.130000px;}
.y3d{bottom:289.290000px;}
.y7a{bottom:290.730000px;}
.yba{bottom:294.870000px;}
.y2d{bottom:306.930000px;}
.y3c{bottom:309.090000px;}
.y79{bottom:310.530000px;}
.yb9{bottom:314.670000px;}
.y2c{bottom:326.730000px;}
.y3b{bottom:328.890000px;}
.y78{bottom:330.330000px;}
.yb8{bottom:334.650000px;}
.y2b{bottom:347.970000px;}
.y3a{bottom:348.690000px;}
.ya0{bottom:350.130000px;}
.y77{bottom:351.390000px;}
.yb7{bottom:354.450000px;}
.y39{bottom:368.670000px;}
.y9f{bottom:369.930000px;}
.yb6{bottom:374.250000px;}
.y2a{bottom:388.470000px;}
.y9e{bottom:389.910000px;}
.y76{bottom:391.890000px;}
.yb5{bottom:394.095000px;}
.y29{bottom:408.315000px;}
.y9d{bottom:409.755000px;}
.y75{bottom:411.915000px;}
.yb4{bottom:413.895000px;}
.y28{bottom:428.115000px;}
.y9c{bottom:429.555000px;}
.y74{bottom:431.715000px;}
.yb3{bottom:433.875000px;}
.y27{bottom:447.915000px;}
.y9b{bottom:449.355000px;}
.y73{bottom:451.515000px;}
.yb2{bottom:453.675000px;}
.y26{bottom:467.895000px;}
.y9a{bottom:469.155000px;}
.y72{bottom:471.315000px;}
.yb1{bottom:473.475000px;}
.y25{bottom:487.695000px;}
.y99{bottom:489.135000px;}
.y71{bottom:491.115000px;}
.yb0{bottom:493.275000px;}
.y24{bottom:507.495000px;}
.y98{bottom:508.935000px;}
.y70{bottom:511.095000px;}
.yaf{bottom:513.075000px;}
.y23{bottom:527.295000px;}
.y97{bottom:528.735000px;}
.y6f{bottom:530.895000px;}
.yae{bottom:533.055000px;}
.y22{bottom:547.095000px;}
.y96{bottom:548.535000px;}
.y6e{bottom:550.695000px;}
.yad{bottom:552.855000px;}
.y21{bottom:567.075000px;}
.y95{bottom:568.335000px;}
.y6d{bottom:570.495000px;}
.yac{bottom:572.655000px;}
.y20{bottom:586.875000px;}
.y38{bottom:588.135000px;}
.y94{bottom:588.315000px;}
.y6c{bottom:590.295000px;}
.yab{bottom:592.455000px;}
.y1f{bottom:606.675000px;}
.y93{bottom:608.115000px;}
.y37{bottom:609.375000px;}
.y6b{bottom:610.275000px;}
.yaa{bottom:612.255000px;}
.y1e{bottom:626.505000px;}
.y92{bottom:627.945000px;}
.y6a{bottom:630.105000px;}
.ya9{bottom:632.265000px;}
.y1d{bottom:646.305000px;}
.y91{bottom:647.745000px;}
.y69{bottom:649.905000px;}
.ya8{bottom:652.065000px;}
.y1c{bottom:666.285000px;}
.y90{bottom:668.805000px;}
.y68{bottom:669.705000px;}
.ya7{bottom:671.865000px;}
.y1b{bottom:686.085000px;}
.y67{bottom:689.505000px;}
.ya6{bottom:691.665000px;}
.y66{bottom:709.485000px;}
.ya5{bottom:711.465000px;}
.y46{bottom:727.845000px;}
.y65{bottom:729.285000px;}
.ya4{bottom:731.445000px;}
.y1a{bottom:731.985000px;}
.y19{bottom:746.565000px;}
.y64{bottom:749.085000px;}
.ya3{bottom:751.245000px;}
.y18{bottom:760.425000px;}
.y8f{bottom:768.885000px;}
.y63{bottom:770.145000px;}
.ya2{bottom:771.045000px;}
.y17{bottom:774.105000px;}
.y16{bottom:787.965000px;}
.y8e{bottom:788.685000px;}
.ya1{bottom:790.845000px;}
.y15{bottom:801.825000px;}
.y8d{bottom:808.665000px;}
.y62{bottom:810.645000px;}
.y8c{bottom:828.465000px;}
.y61{bottom:830.625000px;}
.y14{bottom:835.665000px;}
.y8b{bottom:848.265000px;}
.y60{bottom:850.425000px;}
.y13{bottom:865.590000px;}
.y8a{bottom:868.110000px;}
.y5f{bottom:870.270000px;}
.y89{bottom:887.910000px;}
.y5e{bottom:890.070000px;}
.y12{bottom:895.650000px;}
.y88{bottom:907.890000px;}
.y5d{bottom:909.870000px;}
.y11{bottom:926.970000px;}
.y87{bottom:927.690000px;}
.y5c{bottom:929.850000px;}
.y86{bottom:947.490000px;}
.y5b{bottom:949.650000px;}
.y10{bottom:966.570000px;}
.y85{bottom:967.290000px;}
.y5a{bottom:969.450000px;}
.y84{bottom:988.350000px;}
.y59{bottom:989.250000px;}
.yf{bottom:994.650000px;}
.y58{bottom:1009.050000px;}
.y4e{bottom:1023.300000px;}
.ye{bottom:1025.250000px;}
.y57{bottom:1029.030000px;}
.y56{bottom:1048.830000px;}
.yd{bottom:1050.810000px;}
.y55{bottom:1068.630000px;}
.y4{bottom:1069.350000px;}
.y3{bottom:1087.560000px;}
.yb{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.y1{bottom:1117.080000px;}
.y52{bottom:1122.660000px;}
.h8{height:2.010938px;}
.h20{height:6.257812px;}
.h5{height:13.500000px;}
.h1a{height:22.140000px;}
.h9{height:29.158594px;}
.h14{height:33.683203px;}
.h17{height:34.036523px;}
.h7{height:34.380000px;}
.h18{height:35.306230px;}
.h3{height:35.694141px;}
.h10{height:37.705078px;}
.h11{height:37.810547px;}
.h13{height:38.100586px;}
.h12{height:39.521899px;}
.h1e{height:41.493516px;}
.h6{height:41.726953px;}
.hc{height:42.164648px;}
.h1f{height:43.506914px;}
.h1d{height:43.737568px;}
.h19{height:45.572344px;}
.hf{height:46.251562px;}
.hb{height:48.224531px;}
.h15{height:50.800781px;}
.h1b{height:52.998047px;}
.h2{height:59.436914px;}
.h16{height:59.940000px;}
.h4{height:65.884219px;}
.hd{height:67.565039px;}
.ha{height:68.400000px;}
.he{height:74.302734px;}
.h1c{height:75.093750px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w4{width:82.080000px;}
.w6{width:101.160000px;}
.w5{width:639.870000px;}
.w7{width:715.650000px;}
.w3{width:721.950000px;}
.w8{width:743.220000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:4.252500px;}
.x8{left:8.100000px;}
.x14{left:10.800000px;}
.x19{left:21.255000px;}
.xa{left:50.580000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x17{left:86.400000px;}
.x5{left:87.834000px;}
.x4{left:108.035987px;}
.x13{left:110.916000px;}
.x22{left:114.875987px;}
.x21{left:135.035987px;}
.x7{left:190.110000px;}
.xc{left:203.789987px;}
.xe{left:216.029987px;}
.x1{left:239.969987px;}
.xf{left:283.214987px;}
.x18{left:337.065000px;}
.x15{left:365.829000px;}
.xd{left:367.634987px;}
.x16{left:368.889000px;}
.x11{left:373.034987px;}
.x3{left:378.434987px;}
.x2{left:401.654987px;}
.xb{left:442.184987px;}
.x1e{left:445.604987px;}
.x12{left:473.144987px;}
.x1f{left:479.984987px;}
.x20{left:500.144987px;}
.x10{left:609.989987px;}
.x1a{left:620.253000px;}
.x1c{left:757.979987px;}
.x1d{left:762.839987px;}
.x1b{left:777.779987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-14.672822pt;}
.lsa{letter-spacing:-11.360000pt;}
.ls9{letter-spacing:-0.837333pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.400533pt;}
.ls6{letter-spacing:-0.367467pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:11.040000pt;}
.lsd{letter-spacing:16.592640pt;}
.lsc{letter-spacing:21.920000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws2{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws5{word-spacing:-10.319467pt;}
.ws0{word-spacing:-10.080000pt;}
.ws7{word-spacing:-9.882667pt;}
.ws9{word-spacing:0.000000pt;}
._27{margin-left:-2376.512000pt;}
._2e{margin-left:-11.049387pt;}
._3{margin-left:-4.511360pt;}
._4{margin-left:-3.179520pt;}
._b{margin-left:-2.206507pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._10{width:1.965440pt;}
._2{width:2.962347pt;}
._f{width:4.510293pt;}
._1b{width:5.635200pt;}
._d{width:6.669227pt;}
._9{width:7.591253pt;}
._a{width:8.615253pt;}
._8{width:9.561600pt;}
._e{width:10.542293pt;}
._25{width:11.850027pt;}
._c{width:14.386773pt;}
._14{width:15.457920pt;}
._1a{width:16.515413pt;}
._16{width:17.635840pt;}
._19{width:18.857600pt;}
._1f{width:19.751893pt;}
._1c{width:21.248000pt;}
._20{width:22.783573pt;}
._2d{width:23.855787pt;}
._7{width:25.280213pt;}
._6{width:26.241280pt;}
._2b{width:27.134507pt;}
._13{width:28.042453pt;}
._15{width:29.167787pt;}
._24{width:30.751573pt;}
._21{width:31.712640pt;}
._11{width:33.885653pt;}
._17{width:35.851093pt;}
._18{width:36.814933pt;}
._2a{width:38.193280pt;}
._1e{width:43.022293pt;}
._29{width:44.456533pt;}
._28{width:45.683200pt;}
._30{width:46.851200pt;}
._1d{width:48.711040pt;}
._12{width:53.090560pt;}
._2c{width:55.935360pt;}
._5{width:63.635627pt;}
._2f{width:76.970880pt;}
._23{width:96.832000pt;}
._22{width:97.920000pt;}
._26{width:247.653333pt;}
.fs8{font-size:2.560000pt;}
.fs10{font-size:5.333333pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fse{font-size:45.199037pt;}
.fs3{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.595937pt;}
.fs7{font-size:53.120000pt;}
.fsf{font-size:55.992837pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.y4d{bottom:-117.466667pt;}
.y4c{bottom:-87.360000pt;}
.y4b{bottom:-57.440000pt;}
.y4a{bottom:-27.360000pt;}
.y51{bottom:-15.931333pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:1.633333pt;}
.y49{bottom:2.560000pt;}
.y6{bottom:3.360000pt;}
.y4f{bottom:4.773333pt;}
.y9{bottom:11.200000pt;}
.y8{bottom:21.920000pt;}
.ya{bottom:23.040000pt;}
.y48{bottom:24.800000pt;}
.yc{bottom:31.200000pt;}
.y7{bottom:36.960000pt;}
.y47{bottom:43.200000pt;}
.y54{bottom:51.840000pt;}
.y50{bottom:56.693333pt;}
.y5{bottom:67.520000pt;}
.y53{bottom:68.640000pt;}
.y83{bottom:99.680000pt;}
.yc3{bottom:103.360000pt;}
.y45{bottom:112.480000pt;}
.y36{bottom:114.080000pt;}
.y82{bottom:117.280000pt;}
.yc2{bottom:121.120000pt;}
.y44{bottom:130.080000pt;}
.y35{bottom:131.840000pt;}
.y81{bottom:134.880000pt;}
.yc1{bottom:138.720000pt;}
.y43{bottom:148.986667pt;}
.y34{bottom:149.466667pt;}
.y80{bottom:152.506667pt;}
.yc0{bottom:156.346667pt;}
.y33{bottom:167.066667pt;}
.y42{bottom:170.106667pt;}
.y7f{bottom:170.266667pt;}
.ybf{bottom:173.946667pt;}
.y32{bottom:184.666667pt;}
.y7e{bottom:187.866667pt;}
.y41{bottom:188.986667pt;}
.ybe{bottom:191.546667pt;}
.y31{bottom:202.266667pt;}
.y40{bottom:204.186667pt;}
.y7d{bottom:205.466667pt;}
.ybd{bottom:209.306667pt;}
.y30{bottom:220.026667pt;}
.y3f{bottom:221.786667pt;}
.y7c{bottom:223.066667pt;}
.ybc{bottom:226.906667pt;}
.y2f{bottom:237.626667pt;}
.y3e{bottom:239.546667pt;}
.y7b{bottom:240.666667pt;}
.ybb{bottom:244.506667pt;}
.y2e{bottom:255.226667pt;}
.y3d{bottom:257.146667pt;}
.y7a{bottom:258.426667pt;}
.yba{bottom:262.106667pt;}
.y2d{bottom:272.826667pt;}
.y3c{bottom:274.746667pt;}
.y79{bottom:276.026667pt;}
.yb9{bottom:279.706667pt;}
.y2c{bottom:290.426667pt;}
.y3b{bottom:292.346667pt;}
.y78{bottom:293.626667pt;}
.yb8{bottom:297.466667pt;}
.y2b{bottom:309.306667pt;}
.y3a{bottom:309.946667pt;}
.ya0{bottom:311.226667pt;}
.y77{bottom:312.346667pt;}
.yb7{bottom:315.066667pt;}
.y39{bottom:327.706667pt;}
.y9f{bottom:328.826667pt;}
.yb6{bottom:332.666667pt;}
.y2a{bottom:345.306667pt;}
.y9e{bottom:346.586667pt;}
.y76{bottom:348.346667pt;}
.yb5{bottom:350.306667pt;}
.y29{bottom:362.946667pt;}
.y9d{bottom:364.226667pt;}
.y75{bottom:366.146667pt;}
.yb4{bottom:367.906667pt;}
.y28{bottom:380.546667pt;}
.y9c{bottom:381.826667pt;}
.y74{bottom:383.746667pt;}
.yb3{bottom:385.666667pt;}
.y27{bottom:398.146667pt;}
.y9b{bottom:399.426667pt;}
.y73{bottom:401.346667pt;}
.yb2{bottom:403.266667pt;}
.y26{bottom:415.906667pt;}
.y9a{bottom:417.026667pt;}
.y72{bottom:418.946667pt;}
.yb1{bottom:420.866667pt;}
.y25{bottom:433.506667pt;}
.y99{bottom:434.786667pt;}
.y71{bottom:436.546667pt;}
.yb0{bottom:438.466667pt;}
.y24{bottom:451.106667pt;}
.y98{bottom:452.386667pt;}
.y70{bottom:454.306667pt;}
.yaf{bottom:456.066667pt;}
.y23{bottom:468.706667pt;}
.y97{bottom:469.986667pt;}
.y6f{bottom:471.906667pt;}
.yae{bottom:473.826667pt;}
.y22{bottom:486.306667pt;}
.y96{bottom:487.586667pt;}
.y6e{bottom:489.506667pt;}
.yad{bottom:491.426667pt;}
.y21{bottom:504.066667pt;}
.y95{bottom:505.186667pt;}
.y6d{bottom:507.106667pt;}
.yac{bottom:509.026667pt;}
.y20{bottom:521.666667pt;}
.y38{bottom:522.786667pt;}
.y94{bottom:522.946667pt;}
.y6c{bottom:524.706667pt;}
.yab{bottom:526.626667pt;}
.y1f{bottom:539.266667pt;}
.y93{bottom:540.546667pt;}
.y37{bottom:541.666667pt;}
.y6b{bottom:542.466667pt;}
.yaa{bottom:544.226667pt;}
.y1e{bottom:556.893333pt;}
.y92{bottom:558.173333pt;}
.y6a{bottom:560.093333pt;}
.ya9{bottom:562.013333pt;}
.y1d{bottom:574.493333pt;}
.y91{bottom:575.773333pt;}
.y69{bottom:577.693333pt;}
.ya8{bottom:579.613333pt;}
.y1c{bottom:592.253333pt;}
.y90{bottom:594.493333pt;}
.y68{bottom:595.293333pt;}
.ya7{bottom:597.213333pt;}
.y1b{bottom:609.853333pt;}
.y67{bottom:612.893333pt;}
.ya6{bottom:614.813333pt;}
.y66{bottom:630.653333pt;}
.ya5{bottom:632.413333pt;}
.y46{bottom:646.973333pt;}
.y65{bottom:648.253333pt;}
.ya4{bottom:650.173333pt;}
.y1a{bottom:650.653333pt;}
.y19{bottom:663.613333pt;}
.y64{bottom:665.853333pt;}
.ya3{bottom:667.773333pt;}
.y18{bottom:675.933333pt;}
.y8f{bottom:683.453333pt;}
.y63{bottom:684.573333pt;}
.ya2{bottom:685.373333pt;}
.y17{bottom:688.093333pt;}
.y16{bottom:700.413333pt;}
.y8e{bottom:701.053333pt;}
.ya1{bottom:702.973333pt;}
.y15{bottom:712.733333pt;}
.y8d{bottom:718.813333pt;}
.y62{bottom:720.573333pt;}
.y8c{bottom:736.413333pt;}
.y61{bottom:738.333333pt;}
.y14{bottom:742.813333pt;}
.y8b{bottom:754.013333pt;}
.y60{bottom:755.933333pt;}
.y13{bottom:769.413333pt;}
.y8a{bottom:771.653333pt;}
.y5f{bottom:773.573333pt;}
.y89{bottom:789.253333pt;}
.y5e{bottom:791.173333pt;}
.y12{bottom:796.133333pt;}
.y88{bottom:807.013333pt;}
.y5d{bottom:808.773333pt;}
.y11{bottom:823.973333pt;}
.y87{bottom:824.613333pt;}
.y5c{bottom:826.533333pt;}
.y86{bottom:842.213333pt;}
.y5b{bottom:844.133333pt;}
.y10{bottom:859.173333pt;}
.y85{bottom:859.813333pt;}
.y5a{bottom:861.733333pt;}
.y84{bottom:878.533333pt;}
.y59{bottom:879.333333pt;}
.yf{bottom:884.133333pt;}
.y58{bottom:896.933333pt;}
.y4e{bottom:909.600000pt;}
.ye{bottom:911.333333pt;}
.y57{bottom:914.693333pt;}
.y56{bottom:932.293333pt;}
.yd{bottom:934.053333pt;}
.y55{bottom:949.893333pt;}
.y4{bottom:950.533333pt;}
.y3{bottom:966.720000pt;}
.yb{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.y1{bottom:992.960000pt;}
.y52{bottom:997.920000pt;}
.h8{height:1.787500pt;}
.h20{height:5.562500pt;}
.h5{height:12.000000pt;}
.h1a{height:19.680000pt;}
.h9{height:25.918750pt;}
.h14{height:29.940625pt;}
.h17{height:30.254687pt;}
.h7{height:30.560000pt;}
.h18{height:31.383316pt;}
.h3{height:31.728125pt;}
.h10{height:33.515625pt;}
.h11{height:33.609375pt;}
.h13{height:33.867188pt;}
.h12{height:35.130577pt;}
.h1e{height:36.883125pt;}
.h6{height:37.090625pt;}
.hc{height:37.479688pt;}
.h1f{height:38.672812pt;}
.h1d{height:38.877839pt;}
.h19{height:40.508750pt;}
.hf{height:41.112500pt;}
.hb{height:42.866250pt;}
.h15{height:45.156250pt;}
.h1b{height:47.109375pt;}
.h2{height:52.832812pt;}
.h16{height:53.280000pt;}
.h4{height:58.563750pt;}
.hd{height:60.057813pt;}
.ha{height:60.800000pt;}
.he{height:66.046875pt;}
.h1c{height:66.750000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w4{width:72.960000pt;}
.w6{width:89.920000pt;}
.w5{width:568.773333pt;}
.w7{width:636.133333pt;}
.w3{width:641.733333pt;}
.w8{width:660.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:3.780000pt;}
.x8{left:7.200000pt;}
.x14{left:9.600000pt;}
.x19{left:18.893333pt;}
.xa{left:44.960000pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x17{left:76.800000pt;}
.x5{left:78.074667pt;}
.x4{left:96.031988pt;}
.x13{left:98.592000pt;}
.x22{left:102.111988pt;}
.x21{left:120.031988pt;}
.x7{left:168.986667pt;}
.xc{left:181.146655pt;}
.xe{left:192.026655pt;}
.x1{left:213.306655pt;}
.xf{left:251.746655pt;}
.x18{left:299.613333pt;}
.x15{left:325.181333pt;}
.xd{left:326.786655pt;}
.x16{left:327.901333pt;}
.x11{left:331.586655pt;}
.x3{left:336.386655pt;}
.x2{left:357.026655pt;}
.xb{left:393.053322pt;}
.x1e{left:396.093322pt;}
.x12{left:420.573322pt;}
.x1f{left:426.653322pt;}
.x20{left:444.573322pt;}
.x10{left:542.213322pt;}
.x1a{left:551.336000pt;}
.x1c{left:673.759988pt;}
.x1d{left:678.079988pt;}
.x1b{left:691.359988pt;}
}




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