
    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_576ba25aead6ee2ff2bdc295.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_fa85b0b2c0b73baf65235702.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_c7acd0e21bb2ab0563142d82.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_f64910fdd6c5a51e202d8513.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014ed0398be84d4fa45d3d60.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_47ca352a91a83ca9becaa2f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_74663c1097e6d6c83575d561.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_c655ac295fba088e9ce9cd2e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_b48c28a045ea6c544bdb29ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_2918965b91e535f7f9166500.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_7dcf14d1937035d1a66afbb9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_944ae2a185535d35e427b1a9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cd21197c132ea96e9d8b4419.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_197c1c47c0b925d796253e81.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_df13a951c5822cea23447d16.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_af9cfabeaa6a4f2401755f7c.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-4.680000px;}
.lse{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.127200px;}
.ls13{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.087600px;}
.ls16{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls12{letter-spacing:0.179280px;}
.ls8{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.894240px;}
.ls17{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws10{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.276000px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:-10.260000px;}
.wsb{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
._2a{margin-left:-7.447440px;}
._15{margin-left:-5.559120px;}
._d{margin-left:-4.200480px;}
._3{margin-left:-3.116880px;}
._2{margin-left:-2.106000px;}
._0{margin-left:-1.050000px;}
._1{width:1.332000px;}
._5{width:2.335440px;}
._14{width:3.448800px;}
._4{width:4.533120px;}
._8{width:5.873280px;}
._f{width:6.875040px;}
._e{width:7.888320px;}
._7{width:8.927280px;}
._6{width:10.159200px;}
._c{width:11.653200px;}
._b{width:13.326480px;}
._26{width:16.128720px;}
._a{width:17.151120px;}
._9{width:18.824400px;}
._2b{width:20.028240px;}
._1a{width:23.067360px;}
._24{width:25.295760px;}
._1f{width:29.640960px;}
._11{width:33.923520px;}
._10{width:35.138880px;}
._21{width:37.887840px;}
._12{width:40.081680px;}
._13{width:41.174640px;}
._25{width:44.416080px;}
._22{width:46.655280px;}
._17{width:49.541040px;}
._1e{width:54.817200px;}
._18{width:59.760000px;}
._1d{width:61.493040px;}
._29{width:66.154320px;}
._28{width:67.230000px;}
._19{width:69.978960px;}
._1b{width:98.023680px;}
._16{width:121.107840px;}
._23{width:133.384320px;}
._1c{width:138.882240px;}
._27{width:170.734320px;}
._20{width:196.490880px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y18{bottom:3.645000px;}
.y41{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y3f{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y68{bottom:17.280000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y3b{bottom:20.520000px;}
.y67{bottom:21.240000px;}
.y40{bottom:22.140000px;}
.y17{bottom:23.805000px;}
.y3e{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y6b{bottom:34.560000px;}
.y66{bottom:35.280000px;}
.y3a{bottom:37.800000px;}
.y16{bottom:40.365000px;}
.ya{bottom:46.440000px;}
.y15{bottom:52.785000px;}
.y1{bottom:53.820000px;}
.y97{bottom:54.900000px;}
.y8e{bottom:54.930000px;}
.y39{bottom:55.080000px;}
.y95{bottom:55.125000px;}
.y14{bottom:67.365000px;}
.y38{bottom:72.180000px;}
.y8d{bottom:72.210000px;}
.y94{bottom:72.225000px;}
.y91{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y13{bottom:82.665000px;}
.y37{bottom:89.460000px;}
.y8c{bottom:89.490000px;}
.y93{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y12{bottom:101.745000px;}
.y36{bottom:106.740000px;}
.y8b{bottom:106.770000px;}
.y7{bottom:111.270000px;}
.y55{bottom:115.056000px;}
.y28{bottom:116.310000px;}
.y35{bottom:124.050000px;}
.y9b{bottom:127.476000px;}
.y11{bottom:127.485000px;}
.y27{bottom:131.610000px;}
.y54{bottom:132.336000px;}
.y34{bottom:141.330000px;}
.y9a{bottom:144.756000px;}
.y26{bottom:149.070000px;}
.y53{bottom:149.616000px;}
.y10{bottom:151.785000px;}
.y33{bottom:158.610000px;}
.y7c{bottom:158.970000px;}
.y99{bottom:162.030000px;}
.y25{bottom:166.350000px;}
.y52{bottom:166.890000px;}
.y32{bottom:175.710000px;}
.y7b{bottom:176.250000px;}
.y98{bottom:179.310000px;}
.y24{bottom:183.630000px;}
.y51{bottom:183.990000px;}
.y31{bottom:192.990000px;}
.y7a{bottom:193.530000px;}
.y96{bottom:194.070000px;}
.y50{bottom:201.270000px;}
.y23{bottom:201.450000px;}
.y30{bottom:210.270000px;}
.y79{bottom:210.630000px;}
.y4f{bottom:218.550000px;}
.y22{bottom:218.730000px;}
.y6a{bottom:226.830000px;}
.y2f{bottom:227.550000px;}
.y78{bottom:227.910000px;}
.y65{bottom:234.225000px;}
.y4e{bottom:235.830000px;}
.y21{bottom:236.190000px;}
.y2e{bottom:244.830000px;}
.y77{bottom:245.190000px;}
.y4d{bottom:253.110000px;}
.y20{bottom:253.650000px;}
.y2d{bottom:261.930000px;}
.y76{bottom:262.470000px;}
.y4c{bottom:270.390000px;}
.y1f{bottom:270.930000px;}
.y2c{bottom:279.210000px;}
.y75{bottom:279.750000px;}
.y4b{bottom:287.490000px;}
.y1e{bottom:288.570000px;}
.y2b{bottom:296.490000px;}
.y74{bottom:296.850000px;}
.y92{bottom:298.290000px;}
.y4a{bottom:304.770000px;}
.y2a{bottom:313.770000px;}
.y73{bottom:314.130000px;}
.y1d{bottom:315.930000px;}
.y49{bottom:322.050000px;}
.y29{bottom:331.050000px;}
.y72{bottom:331.410000px;}
.y1c{bottom:333.750000px;}
.y48{bottom:339.375000px;}
.y71{bottom:348.735000px;}
.y47{bottom:356.655000px;}
.y70{bottom:366.015000px;}
.y46{bottom:373.935000px;}
.y6f{bottom:383.295000px;}
.y45{bottom:391.035000px;}
.y6e{bottom:400.395000px;}
.y90{bottom:402.555000px;}
.y44{bottom:408.315000px;}
.y6d{bottom:417.675000px;}
.y43{bottom:425.595000px;}
.y6c{bottom:434.955000px;}
.y42{bottom:442.875000px;}
.y69{bottom:449.715000px;}
.y3d{bottom:456.915000px;}
.y8f{bottom:489.495000px;}
.y1b{bottom:493.455000px;}
.ya6{bottom:545.835000px;}
.y8a{bottom:559.335000px;}
.ya5{bottom:563.655000px;}
.ya4{bottom:581.295000px;}
.ya3{bottom:598.575000px;}
.ya2{bottom:615.885000px;}
.ya1{bottom:633.165000px;}
.ya0{bottom:650.265000px;}
.y9f{bottom:667.545000px;}
.y89{bottom:680.865000px;}
.y9e{bottom:684.825000px;}
.y64{bottom:691.305000px;}
.y9d{bottom:702.105000px;}
.y9c{bottom:719.385000px;}
.y88{bottom:736.665000px;}
.y87{bottom:753.765000px;}
.y86{bottom:771.045000px;}
.y85{bottom:788.325000px;}
.y84{bottom:805.605000px;}
.y83{bottom:822.885000px;}
.y19{bottom:838.545000px;}
.y82{bottom:839.985000px;}
.y81{bottom:857.265000px;}
.yf{bottom:868.065000px;}
.y80{bottom:874.590000px;}
.y7f{bottom:891.870000px;}
.y7e{bottom:909.150000px;}
.y7d{bottom:926.430000px;}
.y63{bottom:943.530000px;}
.y62{bottom:960.810000px;}
.y61{bottom:978.090000px;}
.y60{bottom:995.370000px;}
.y5f{bottom:1012.650000px;}
.y5e{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y5d{bottom:1047.030000px;}
.y6{bottom:1060.350000px;}
.y5c{bottom:1064.310000px;}
.y5b{bottom:1081.590000px;}
.y5a{bottom:1098.870000px;}
.y59{bottom:1116.150000px;}
.y58{bottom:1133.430000px;}
.y57{bottom:1150.560000px;}
.y56{bottom:1167.840000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h13{height:29.520000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1d{height:36.540000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.h12{height:43.453125px;}
.h29{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1f{height:48.027656px;}
.h1e{height:48.088125px;}
.h24{height:48.312422px;}
.h22{height:51.660000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h25{height:69.120000px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h26{height:86.220000px;}
.h28{height:103.500000px;}
.h27{height:103.536000px;}
.h23{height:120.816000px;}
.h7{height:121.536000px;}
.hc{height:166.890000px;}
.h21{height:240.870000px;}
.h20{height:248.250000px;}
.h15{height:345.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:60.660000px;}
.we{width:74.016000px;}
.w3{width:74.880000px;}
.w11{width:82.260000px;}
.w12{width:101.376000px;}
.w10{width:102.996000px;}
.wf{width:104.040000px;}
.w13{width:107.460000px;}
.wc{width:108.396000px;}
.w5{width:151.950000px;}
.w8{width:223.275000px;}
.wa{width:337.350000px;}
.wb{width:337.575000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.560000px;}
.x2{left:8.640000px;}
.x12{left:12.600000px;}
.xc{left:18.576000px;}
.x15{left:23.040000px;}
.x1c{left:34.050000px;}
.x19{left:47.730000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x1a{left:93.594000px;}
.x5{left:98.130000px;}
.x13{left:108.756000px;}
.x1d{left:117.210000px;}
.x16{left:135.894000px;}
.xd{left:157.710000px;}
.x1e{left:182.370000px;}
.x10{left:215.175000px;}
.xf{left:220.755000px;}
.x6{left:224.850000px;}
.x1f{left:243.930000px;}
.xe{left:251.175000px;}
.x9{left:288.435000px;}
.x11{left:296.175000px;}
.x18{left:311.475000px;}
.x1b{left:318.315000px;}
.x14{left:320.439000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x21{left:423.615000px;}
.x17{left:446.835000px;}
.xa{left:455.700000px;}
.x22{left:527.325000px;}
.x23{left:610.305000px;}
.x24{left:712.410000px;}
.x3{left:745.890000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-4.160000pt;}
.lse{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.113067pt;}
.ls13{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.077867pt;}
.ls16{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls12{letter-spacing:0.159360pt;}
.ls8{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.794880pt;}
.ls17{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws10{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws5{word-spacing:-10.912000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:-9.120000pt;}
.wsb{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
._2a{margin-left:-6.619947pt;}
._15{margin-left:-4.941440pt;}
._d{margin-left:-3.733760pt;}
._3{margin-left:-2.770560pt;}
._2{margin-left:-1.872000pt;}
._0{margin-left:-0.933333pt;}
._1{width:1.184000pt;}
._5{width:2.075947pt;}
._14{width:3.065600pt;}
._4{width:4.029440pt;}
._8{width:5.220693pt;}
._f{width:6.111147pt;}
._e{width:7.011840pt;}
._7{width:7.935360pt;}
._6{width:9.030400pt;}
._c{width:10.358400pt;}
._b{width:11.845760pt;}
._26{width:14.336640pt;}
._a{width:15.245440pt;}
._9{width:16.732800pt;}
._2b{width:17.802880pt;}
._1a{width:20.504320pt;}
._24{width:22.485120pt;}
._1f{width:26.347520pt;}
._11{width:30.154240pt;}
._10{width:31.234560pt;}
._21{width:33.678080pt;}
._12{width:35.628160pt;}
._13{width:36.599680pt;}
._25{width:39.480960pt;}
._22{width:41.471360pt;}
._17{width:44.036480pt;}
._1e{width:48.726400pt;}
._18{width:53.120000pt;}
._1d{width:54.660480pt;}
._29{width:58.803840pt;}
._28{width:59.760000pt;}
._19{width:62.203520pt;}
._1b{width:87.132160pt;}
._16{width:107.651413pt;}
._23{width:118.563840pt;}
._1c{width:123.450880pt;}
._27{width:151.763840pt;}
._20{width:174.658560pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y18{bottom:3.240000pt;}
.y41{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y3f{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y68{bottom:15.360000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y3b{bottom:18.240000pt;}
.y67{bottom:18.880000pt;}
.y40{bottom:19.680000pt;}
.y17{bottom:21.160000pt;}
.y3e{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y6b{bottom:30.720000pt;}
.y66{bottom:31.360000pt;}
.y3a{bottom:33.600000pt;}
.y16{bottom:35.880000pt;}
.ya{bottom:41.280000pt;}
.y15{bottom:46.920000pt;}
.y1{bottom:47.840000pt;}
.y97{bottom:48.800000pt;}
.y8e{bottom:48.826667pt;}
.y39{bottom:48.960000pt;}
.y95{bottom:49.000000pt;}
.y14{bottom:59.880000pt;}
.y38{bottom:64.160000pt;}
.y8d{bottom:64.186667pt;}
.y94{bottom:64.200000pt;}
.y91{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y13{bottom:73.480000pt;}
.y37{bottom:79.520000pt;}
.y8c{bottom:79.546667pt;}
.y93{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y12{bottom:90.440000pt;}
.y36{bottom:94.880000pt;}
.y8b{bottom:94.906667pt;}
.y7{bottom:98.906667pt;}
.y55{bottom:102.272000pt;}
.y28{bottom:103.386667pt;}
.y35{bottom:110.266667pt;}
.y9b{bottom:113.312000pt;}
.y11{bottom:113.320000pt;}
.y27{bottom:116.986667pt;}
.y54{bottom:117.632000pt;}
.y34{bottom:125.626667pt;}
.y9a{bottom:128.672000pt;}
.y26{bottom:132.506667pt;}
.y53{bottom:132.992000pt;}
.y10{bottom:134.920000pt;}
.y33{bottom:140.986667pt;}
.y7c{bottom:141.306667pt;}
.y99{bottom:144.026667pt;}
.y25{bottom:147.866667pt;}
.y52{bottom:148.346667pt;}
.y32{bottom:156.186667pt;}
.y7b{bottom:156.666667pt;}
.y98{bottom:159.386667pt;}
.y24{bottom:163.226667pt;}
.y51{bottom:163.546667pt;}
.y31{bottom:171.546667pt;}
.y7a{bottom:172.026667pt;}
.y96{bottom:172.506667pt;}
.y50{bottom:178.906667pt;}
.y23{bottom:179.066667pt;}
.y30{bottom:186.906667pt;}
.y79{bottom:187.226667pt;}
.y4f{bottom:194.266667pt;}
.y22{bottom:194.426667pt;}
.y6a{bottom:201.626667pt;}
.y2f{bottom:202.266667pt;}
.y78{bottom:202.586667pt;}
.y65{bottom:208.200000pt;}
.y4e{bottom:209.626667pt;}
.y21{bottom:209.946667pt;}
.y2e{bottom:217.626667pt;}
.y77{bottom:217.946667pt;}
.y4d{bottom:224.986667pt;}
.y20{bottom:225.466667pt;}
.y2d{bottom:232.826667pt;}
.y76{bottom:233.306667pt;}
.y4c{bottom:240.346667pt;}
.y1f{bottom:240.826667pt;}
.y2c{bottom:248.186667pt;}
.y75{bottom:248.666667pt;}
.y4b{bottom:255.546667pt;}
.y1e{bottom:256.506667pt;}
.y2b{bottom:263.546667pt;}
.y74{bottom:263.866667pt;}
.y92{bottom:265.146667pt;}
.y4a{bottom:270.906667pt;}
.y2a{bottom:278.906667pt;}
.y73{bottom:279.226667pt;}
.y1d{bottom:280.826667pt;}
.y49{bottom:286.266667pt;}
.y29{bottom:294.266667pt;}
.y72{bottom:294.586667pt;}
.y1c{bottom:296.666667pt;}
.y48{bottom:301.666667pt;}
.y71{bottom:309.986667pt;}
.y47{bottom:317.026667pt;}
.y70{bottom:325.346667pt;}
.y46{bottom:332.386667pt;}
.y6f{bottom:340.706667pt;}
.y45{bottom:347.586667pt;}
.y6e{bottom:355.906667pt;}
.y90{bottom:357.826667pt;}
.y44{bottom:362.946667pt;}
.y6d{bottom:371.266667pt;}
.y43{bottom:378.306667pt;}
.y6c{bottom:386.626667pt;}
.y42{bottom:393.666667pt;}
.y69{bottom:399.746667pt;}
.y3d{bottom:406.146667pt;}
.y8f{bottom:435.106667pt;}
.y1b{bottom:438.626667pt;}
.ya6{bottom:485.186667pt;}
.y8a{bottom:497.186667pt;}
.ya5{bottom:501.026667pt;}
.ya4{bottom:516.706667pt;}
.ya3{bottom:532.066667pt;}
.ya2{bottom:547.453333pt;}
.ya1{bottom:562.813333pt;}
.ya0{bottom:578.013333pt;}
.y9f{bottom:593.373333pt;}
.y89{bottom:605.213333pt;}
.y9e{bottom:608.733333pt;}
.y64{bottom:614.493333pt;}
.y9d{bottom:624.093333pt;}
.y9c{bottom:639.453333pt;}
.y88{bottom:654.813333pt;}
.y87{bottom:670.013333pt;}
.y86{bottom:685.373333pt;}
.y85{bottom:700.733333pt;}
.y84{bottom:716.093333pt;}
.y83{bottom:731.453333pt;}
.y19{bottom:745.373333pt;}
.y82{bottom:746.653333pt;}
.y81{bottom:762.013333pt;}
.yf{bottom:771.613333pt;}
.y80{bottom:777.413333pt;}
.y7f{bottom:792.773333pt;}
.y7e{bottom:808.133333pt;}
.y7d{bottom:823.493333pt;}
.y63{bottom:838.693333pt;}
.y62{bottom:854.053333pt;}
.y61{bottom:869.413333pt;}
.y60{bottom:884.773333pt;}
.y5f{bottom:900.133333pt;}
.y5e{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y5d{bottom:930.693333pt;}
.y6{bottom:942.533333pt;}
.y5c{bottom:946.053333pt;}
.y5b{bottom:961.413333pt;}
.y5a{bottom:976.773333pt;}
.y59{bottom:992.133333pt;}
.y58{bottom:1007.493333pt;}
.y57{bottom:1022.720000pt;}
.y56{bottom:1038.080000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h13{height:26.240000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.h12{height:38.625000pt;}
.h29{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1f{height:42.691250pt;}
.h1e{height:42.745000pt;}
.h24{height:42.944375pt;}
.h22{height:45.920000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h25{height:61.440000pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h26{height:76.640000pt;}
.h28{height:92.000000pt;}
.h27{height:92.032000pt;}
.h23{height:107.392000pt;}
.h7{height:108.032000pt;}
.hc{height:148.346667pt;}
.h21{height:214.106667pt;}
.h20{height:220.666667pt;}
.h15{height:306.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:53.920000pt;}
.we{width:65.792000pt;}
.w3{width:66.560000pt;}
.w11{width:73.120000pt;}
.w12{width:90.112000pt;}
.w10{width:91.552000pt;}
.wf{width:92.480000pt;}
.w13{width:95.520000pt;}
.wc{width:96.352000pt;}
.w5{width:135.066667pt;}
.w8{width:198.466667pt;}
.wa{width:299.866667pt;}
.wb{width:300.066667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.720000pt;}
.x2{left:7.680000pt;}
.x12{left:11.200000pt;}
.xc{left:16.512000pt;}
.x15{left:20.480000pt;}
.x1c{left:30.266667pt;}
.x19{left:42.426667pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x1a{left:83.194667pt;}
.x5{left:87.226667pt;}
.x13{left:96.672000pt;}
.x1d{left:104.186667pt;}
.x16{left:120.794667pt;}
.xd{left:140.186667pt;}
.x1e{left:162.106667pt;}
.x10{left:191.266667pt;}
.xf{left:196.226667pt;}
.x6{left:199.866667pt;}
.x1f{left:216.826667pt;}
.xe{left:223.266667pt;}
.x9{left:256.386667pt;}
.x11{left:263.266667pt;}
.x18{left:276.866667pt;}
.x1b{left:282.946667pt;}
.x14{left:284.834667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x21{left:376.546667pt;}
.x17{left:397.186667pt;}
.xa{left:405.066667pt;}
.x22{left:468.733333pt;}
.x23{left:542.493333pt;}
.x24{left:633.253333pt;}
.x3{left:663.013333pt;}
}




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