
    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_ddd006eeea4b3e7bdcd651e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_c6927cf52ebfcf783188d14b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_593aefba7a5c311431647cd5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_afeae7dfec61ff3f70cbf697.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693000;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_322541dcdadcffbc840f7125.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_985b7abb2a6ae3e003067d74.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_d261d8cc9b2c730b6c1e4863.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_a13b63e0bc1105be0cb90ef7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.859000;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_1aee04669fc50c16a43269f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.399000;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_7bef00bca664df77b1fa854d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-15.720000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.604000px;}
.v1{vertical-align:31.242000px;}
.v9{vertical-align:44.904000px;}
.v6{vertical-align:46.128000px;}
.v7{vertical-align:77.970000px;}
.v5{vertical-align:92.286000px;}
.v8{vertical-align:137.190000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:1.815170px;}
.ls7{letter-spacing:1.820137px;}
.lsa{letter-spacing:1.828688px;}
.ls2{letter-spacing:1.833169px;}
.ls5{letter-spacing:1.848823px;}
.lsc{letter-spacing:1.849056px;}
.lsb{letter-spacing:2.356366px;}
.ls4{letter-spacing:2.880002px;}
.ls0{letter-spacing:2.986053px;}
.ls6{letter-spacing:7.174869px;}
.ls8{letter-spacing:10.906869px;}
.lse{letter-spacing:19.905275px;}
.lsf{letter-spacing:19.965050px;}
.ls3{letter-spacing:23.884834px;}
.ls9{letter-spacing:815.760680px;}
.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;}
}
.ws1d{word-spacing:-18.183288px;}
.ws3e{word-spacing:-15.278643px;}
.ws1b{word-spacing:-3.259639px;}
.ws38{word-spacing:-2.081456px;}
.wsb{word-spacing:-2.016002px;}
.ws24{word-spacing:-0.772364px;}
.ws19{word-spacing:-0.248727px;}
.ws11{word-spacing:-0.071731px;}
.ws22{word-spacing:-0.047821px;}
.ws10{word-spacing:0.000000px;}
.ws21{word-spacing:0.013091px;}
.ws34{word-spacing:0.733092px;}
.ws1c{word-spacing:0.798546px;}
.ws39{word-spacing:1.322183px;}
.ws20{word-spacing:2.238547px;}
.ws1f{word-spacing:2.304002px;}
.wse{word-spacing:2.565820px;}
.wsc{word-spacing:2.631275px;}
.ws35{word-spacing:2.893093px;}
.ws9{word-spacing:3.089457px;}
.ws3a{word-spacing:3.299613px;}
.ws8{word-spacing:3.351276px;}
.ws3f{word-spacing:3.359389px;}
.ws36{word-spacing:3.547639px;}
.ws5{word-spacing:3.613094px;}
.ws13{word-spacing:3.678549px;}
.ws3c{word-spacing:4.686407px;}
.ws29{word-spacing:5.314914px;}
.ws2a{word-spacing:5.380368px;}
.ws30{word-spacing:5.445823px;}
.ws2c{word-spacing:5.511277px;}
.ws27{word-spacing:5.642187px;}
.ws3b{word-spacing:6.121021px;}
.ws26{word-spacing:6.296733px;}
.ws25{word-spacing:6.427642px;}
.ws1a{word-spacing:6.754915px;}
.wsa{word-spacing:6.820369px;}
.ws17{word-spacing:6.951279px;}
.ws32{word-spacing:7.213097px;}
.wsf{word-spacing:7.278552px;}
.ws37{word-spacing:7.605825px;}
.ws16{word-spacing:7.802188px;}
.ws1e{word-spacing:7.867643px;}
.ws33{word-spacing:8.718553px;}
.ws2e{word-spacing:8.849462px;}
.ws2b{word-spacing:9.700372px;}
.ws23{word-spacing:10.485827px;}
.ws28{word-spacing:10.682191px;}
.ws6{word-spacing:10.878555px;}
.wsd{word-spacing:12.187647px;}
.ws18{word-spacing:12.318556px;}
.ws31{word-spacing:12.973102px;}
.ws3d{word-spacing:19.845499px;}
.ws12{word-spacing:25.003657px;}
.ws2d{word-spacing:25.069112px;}
.ws3{word-spacing:26.253619px;}
.ws15{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws7{word-spacing:50.459220px;}
.ws1{word-spacing:54.283749px;}
.ws2{word-spacing:54.432472px;}
.ws14{word-spacing:60.480050px;}
.ws2f{word-spacing:80.625869px;}
._1e{margin-left:-25.461839px;}
._0{margin-left:-13.682479px;}
._1d{margin-left:-7.265461px;}
._4{margin-left:-5.498186px;}
._5{margin-left:-3.665458px;}
._2{margin-left:-2.223667px;}
._19{margin-left:-1.114517px;}
._1f{width:1.050852px;}
._3{width:2.223667px;}
._1{width:4.610401px;}
._1c{width:10.865464px;}
._1b{width:15.972712px;}
._7{width:17.736407px;}
._28{width:21.689029px;}
._24{width:24.667438px;}
._9{width:27.096415px;}
._8{width:28.800024px;}
._22{width:31.610993px;}
._27{width:32.697253px;}
._25{width:34.229177px;}
._21{width:35.409149px;}
._20{width:37.634606px;}
._6{width:39.140062px;}
._26{width:41.885576px;}
._1a{width:55.503712px;}
._a{width:60.545505px;}
._11{width:66.894601px;}
._23{width:75.272790px;}
._18{width:80.697600px;}
._c{width:943.726212px;}
._d{width:1136.424554px;}
._f{width:1309.484728px;}
._13{width:1443.273930px;}
._10{width:1560.825024px;}
._e{width:1716.090492px;}
._14{width:1854.390694px;}
._12{width:1933.790702px;}
._b{width:1937.781644px;}
._16{width:2028.567174px;}
._17{width:2134.278142px;}
._15{width:2251.989534px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y31{bottom:93.813000px;}
.y58{bottom:93.814500px;}
.y57{bottom:201.214500px;}
.y30{bottom:215.893500px;}
.y56{bottom:221.538000px;}
.y2f{bottom:231.066000px;}
.y2e{bottom:236.217000px;}
.y55{bottom:250.315500px;}
.y2d{bottom:256.540500px;}
.y2c{bottom:276.865500px;}
.y54{bottom:286.845000px;}
.y2b{bottom:297.189000px;}
.y53{bottom:307.168500px;}
.y2a{bottom:317.512500px;}
.y52{bottom:322.341000px;}
.y51{bottom:327.492000px;}
.y77{bottom:332.203500px;}
.y29{bottom:354.040500px;}
.y50{bottom:356.269500px;}
.y76{bottom:357.609000px;}
.y75{bottom:375.541500px;}
.y4f{bottom:392.799000px;}
.y28{bottom:399.621000px;}
.y74{bottom:400.945500px;}
.y4e{bottom:413.122500px;}
.y10{bottom:415.420500px;}
.y73{bottom:418.878000px;}
.y27{bottom:419.944500px;}
.yf{bottom:435.744000px;}
.y26{bottom:440.269500px;}
.y4d{bottom:441.900000px;}
.y72{bottom:444.283500px;}
.ye{bottom:456.067500px;}
.y25{bottom:460.593000px;}
.y71{bottom:469.687500px;}
.yd{bottom:476.391000px;}
.y4c{bottom:478.429500px;}
.y24{bottom:480.916500px;}
.y70{bottom:487.621500px;}
.yc{bottom:496.716000px;}
.y23{bottom:501.240000px;}
.y6f{bottom:513.025500px;}
.y4b{bottom:514.957500px;}
.yb{bottom:517.039500px;}
.y22{bottom:521.563500px;}
.y6e{bottom:530.958000px;}
.ya{bottom:537.363000px;}
.y21{bottom:541.888500px;}
.y6d{bottom:556.363500px;}
.y9{bottom:557.686500px;}
.y4a{bottom:560.538000px;}
.y20{bottom:562.212000px;}
.y6c{bottom:574.296000px;}
.y8{bottom:578.010000px;}
.y49{bottom:580.861500px;}
.y1f{bottom:598.740000px;}
.y48{bottom:601.185000px;}
.y6b{bottom:608.433000px;}
.y7{bottom:617.761500px;}
.y47{bottom:621.508500px;}
.y46{bottom:641.833500px;}
.y1e{bottom:644.320500px;}
.y6a{bottom:654.013500px;}
.y6{bottom:654.484500px;}
.y69{bottom:674.337000px;}
.y45{bottom:678.361500px;}
.y5{bottom:683.215500px;}
.y1d{bottom:690.847500px;}
.y68{bottom:694.662000px;}
.y67{bottom:714.985500px;}
.y44{bottom:723.942000px;}
.y1c{bottom:727.534500px;}
.y66{bottom:735.309000px;}
.y43{bottom:744.265500px;}
.y1b{bottom:764.223000px;}
.y42{bottom:764.589000px;}
.y65{bottom:771.837000px;}
.y41{bottom:784.912500px;}
.y1a{bottom:800.910000px;}
.y40{bottom:805.237500px;}
.y4{bottom:808.476000px;}
.y64{bottom:817.417500px;}
.y19{bottom:821.233500px;}
.y3f{bottom:825.561000px;}
.y63{bottom:832.590000px;}
.y62{bottom:837.741000px;}
.y18{bottom:841.557000px;}
.y3{bottom:845.757000px;}
.y61{bottom:858.066000px;}
.y17{bottom:861.882000px;}
.y3e{bottom:862.089000px;}
.y60{bottom:878.389500px;}
.y2{bottom:890.589000px;}
.y16{bottom:898.569000px;}
.y3d{bottom:907.669500px;}
.y5f{bottom:914.917500px;}
.y3c{bottom:927.993000px;}
.y15{bottom:935.256000px;}
.y3b{bottom:948.316500px;}
.y5e{bottom:960.498000px;}
.y3a{bottom:963.490500px;}
.y39{bottom:968.641500px;}
.y14{bottom:971.944500px;}
.y5d{bottom:980.821500px;}
.y38{bottom:988.965000px;}
.y5c{bottom:1001.145000px;}
.y13{bottom:1008.631500px;}
.y5b{bottom:1021.470000px;}
.y37{bottom:1023.490500px;}
.y35{bottom:1034.716500px;}
.y36{bottom:1041.097500px;}
.y5a{bottom:1041.793500px;}
.y12{bottom:1045.318500px;}
.y59{bottom:1062.117000px;}
.y34{bottom:1077.289500px;}
.y11{bottom:1082.007000px;}
.y33{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y32{bottom:1118.968500px;}
.h6{height:32.661470px;}
.h2{height:41.484266px;}
.hf{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.he{height:63.642699px;}
.ha{height:63.648699px;}
.hb{height:69.694950px;}
.h5{height:72.068735px;}
.h3{height:106.485382px;}
.hc{height:109.770699px;}
.hd{height:139.808184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x10{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x11{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x7{left:322.089000px;}
.xf{left:358.362000px;}
.xa{left:364.996500px;}
.xd{left:394.108500px;}
.x8{left:438.466500px;}
.xe{left:465.036000px;}
.xc{left:482.355000px;}
.xb{left:490.614000px;}
.x9{left:534.930000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-13.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.314667pt;}
.v1{vertical-align:27.770667pt;}
.v9{vertical-align:39.914667pt;}
.v6{vertical-align:41.002667pt;}
.v7{vertical-align:69.306667pt;}
.v5{vertical-align:82.032000pt;}
.v8{vertical-align:121.946667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:1.613485pt;}
.ls7{letter-spacing:1.617899pt;}
.lsa{letter-spacing:1.625500pt;}
.ls2{letter-spacing:1.629484pt;}
.ls5{letter-spacing:1.643399pt;}
.lsc{letter-spacing:1.643606pt;}
.lsb{letter-spacing:2.094547pt;}
.ls4{letter-spacing:2.560002pt;}
.ls0{letter-spacing:2.654270pt;}
.ls6{letter-spacing:6.377661pt;}
.ls8{letter-spacing:9.694995pt;}
.lse{letter-spacing:17.693578pt;}
.lsf{letter-spacing:17.746711pt;}
.ls3{letter-spacing:21.230964pt;}
.ls9{letter-spacing:725.120604pt;}
.ws1d{word-spacing:-16.162923pt;}
.ws3e{word-spacing:-13.581016pt;}
.ws1b{word-spacing:-2.897457pt;}
.ws38{word-spacing:-1.850183pt;}
.wsb{word-spacing:-1.792001pt;}
.ws24{word-spacing:-0.686546pt;}
.ws19{word-spacing:-0.221091pt;}
.ws11{word-spacing:-0.063761pt;}
.ws22{word-spacing:-0.042507pt;}
.ws10{word-spacing:0.000000pt;}
.ws21{word-spacing:0.011636pt;}
.ws34{word-spacing:0.651637pt;}
.ws1c{word-spacing:0.709819pt;}
.ws39{word-spacing:1.175274pt;}
.ws20{word-spacing:1.989820pt;}
.ws1f{word-spacing:2.048002pt;}
.wse{word-spacing:2.280729pt;}
.wsc{word-spacing:2.338911pt;}
.ws35{word-spacing:2.571639pt;}
.ws9{word-spacing:2.746184pt;}
.ws3a{word-spacing:2.932989pt;}
.ws8{word-spacing:2.978912pt;}
.ws3f{word-spacing:2.986123pt;}
.ws36{word-spacing:3.153457pt;}
.ws5{word-spacing:3.211639pt;}
.ws13{word-spacing:3.269821pt;}
.ws3c{word-spacing:4.165695pt;}
.ws29{word-spacing:4.724368pt;}
.ws2a{word-spacing:4.782549pt;}
.ws30{word-spacing:4.840731pt;}
.ws2c{word-spacing:4.898913pt;}
.ws27{word-spacing:5.015277pt;}
.ws3b{word-spacing:5.440908pt;}
.ws26{word-spacing:5.597096pt;}
.ws25{word-spacing:5.713459pt;}
.ws1a{word-spacing:6.004369pt;}
.wsa{word-spacing:6.062551pt;}
.ws17{word-spacing:6.178914pt;}
.ws32{word-spacing:6.411642pt;}
.wsf{word-spacing:6.469824pt;}
.ws37{word-spacing:6.760733pt;}
.ws16{word-spacing:6.935279pt;}
.ws1e{word-spacing:6.993460pt;}
.ws33{word-spacing:7.749825pt;}
.ws2e{word-spacing:7.866188pt;}
.ws2b{word-spacing:8.622553pt;}
.ws23{word-spacing:9.320735pt;}
.ws28{word-spacing:9.495281pt;}
.ws6{word-spacing:9.669826pt;}
.wsd{word-spacing:10.833464pt;}
.ws18{word-spacing:10.949827pt;}
.ws31{word-spacing:11.531646pt;}
.ws3d{word-spacing:17.640444pt;}
.ws12{word-spacing:22.225473pt;}
.ws2d{word-spacing:22.283655pt;}
.ws3{word-spacing:23.336550pt;}
.ws15{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws7{word-spacing:44.852640pt;}
.ws1{word-spacing:48.252221pt;}
.ws2{word-spacing:48.384419pt;}
.ws14{word-spacing:53.760045pt;}
.ws2f{word-spacing:71.667439pt;}
._1e{margin-left:-22.632746pt;}
._0{margin-left:-12.162204pt;}
._1d{margin-left:-6.458187pt;}
._4{margin-left:-4.887277pt;}
._5{margin-left:-3.258185pt;}
._2{margin-left:-1.976593pt;}
._19{margin-left:-0.990682pt;}
._1f{width:0.934091pt;}
._3{width:1.976593pt;}
._1{width:4.098134pt;}
._1c{width:9.658190pt;}
._1b{width:14.197966pt;}
._7{width:15.765695pt;}
._28{width:19.279137pt;}
._24{width:21.926612pt;}
._9{width:24.085702pt;}
._8{width:25.600021pt;}
._22{width:28.098661pt;}
._27{width:29.064225pt;}
._25{width:30.425935pt;}
._21{width:31.474799pt;}
._20{width:33.452983pt;}
._6{width:34.791166pt;}
._26{width:37.231623pt;}
._1a{width:49.336633pt;}
._a{width:53.818227pt;}
._11{width:59.461868pt;}
._23{width:66.909147pt;}
._18{width:71.731200pt;}
._c{width:838.867744pt;}
._d{width:1010.155159pt;}
._f{width:1163.986425pt;}
._13{width:1282.910160pt;}
._10{width:1387.400021pt;}
._e{width:1525.413771pt;}
._14{width:1648.347284pt;}
._12{width:1718.925069pt;}
._b{width:1722.472572pt;}
._16{width:1803.170821pt;}
._17{width:1897.136126pt;}
._15{width:2001.768475pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:83.389333pt;}
.y58{bottom:83.390667pt;}
.y57{bottom:178.857333pt;}
.y30{bottom:191.905333pt;}
.y56{bottom:196.922667pt;}
.y2f{bottom:205.392000pt;}
.y2e{bottom:209.970667pt;}
.y55{bottom:222.502667pt;}
.y2d{bottom:228.036000pt;}
.y2c{bottom:246.102667pt;}
.y54{bottom:254.973333pt;}
.y2b{bottom:264.168000pt;}
.y53{bottom:273.038667pt;}
.y2a{bottom:282.233333pt;}
.y52{bottom:286.525333pt;}
.y51{bottom:291.104000pt;}
.y77{bottom:295.292000pt;}
.y29{bottom:314.702667pt;}
.y50{bottom:316.684000pt;}
.y76{bottom:317.874667pt;}
.y75{bottom:333.814667pt;}
.y4f{bottom:349.154667pt;}
.y28{bottom:355.218667pt;}
.y74{bottom:356.396000pt;}
.y4e{bottom:367.220000pt;}
.y10{bottom:369.262667pt;}
.y73{bottom:372.336000pt;}
.y27{bottom:373.284000pt;}
.yf{bottom:387.328000pt;}
.y26{bottom:391.350667pt;}
.y4d{bottom:392.800000pt;}
.y72{bottom:394.918667pt;}
.ye{bottom:405.393333pt;}
.y25{bottom:409.416000pt;}
.y71{bottom:417.500000pt;}
.yd{bottom:423.458667pt;}
.y4c{bottom:425.270667pt;}
.y24{bottom:427.481333pt;}
.y70{bottom:433.441333pt;}
.yc{bottom:441.525333pt;}
.y23{bottom:445.546667pt;}
.y6f{bottom:456.022667pt;}
.y4b{bottom:457.740000pt;}
.yb{bottom:459.590667pt;}
.y22{bottom:463.612000pt;}
.y6e{bottom:471.962667pt;}
.ya{bottom:477.656000pt;}
.y21{bottom:481.678667pt;}
.y6d{bottom:494.545333pt;}
.y9{bottom:495.721333pt;}
.y4a{bottom:498.256000pt;}
.y20{bottom:499.744000pt;}
.y6c{bottom:510.485333pt;}
.y8{bottom:513.786667pt;}
.y49{bottom:516.321333pt;}
.y1f{bottom:532.213333pt;}
.y48{bottom:534.386667pt;}
.y6b{bottom:540.829333pt;}
.y7{bottom:549.121333pt;}
.y47{bottom:552.452000pt;}
.y46{bottom:570.518667pt;}
.y1e{bottom:572.729333pt;}
.y6a{bottom:581.345333pt;}
.y6{bottom:581.764000pt;}
.y69{bottom:599.410667pt;}
.y45{bottom:602.988000pt;}
.y5{bottom:607.302667pt;}
.y1d{bottom:614.086667pt;}
.y68{bottom:617.477333pt;}
.y67{bottom:635.542667pt;}
.y44{bottom:643.504000pt;}
.y1c{bottom:646.697333pt;}
.y66{bottom:653.608000pt;}
.y43{bottom:661.569333pt;}
.y1b{bottom:679.309333pt;}
.y42{bottom:679.634667pt;}
.y65{bottom:686.077333pt;}
.y41{bottom:697.700000pt;}
.y1a{bottom:711.920000pt;}
.y40{bottom:715.766667pt;}
.y4{bottom:718.645333pt;}
.y64{bottom:726.593333pt;}
.y19{bottom:729.985333pt;}
.y3f{bottom:733.832000pt;}
.y63{bottom:740.080000pt;}
.y62{bottom:744.658667pt;}
.y18{bottom:748.050667pt;}
.y3{bottom:751.784000pt;}
.y61{bottom:762.725333pt;}
.y17{bottom:766.117333pt;}
.y3e{bottom:766.301333pt;}
.y60{bottom:780.790667pt;}
.y2{bottom:791.634667pt;}
.y16{bottom:798.728000pt;}
.y3d{bottom:806.817333pt;}
.y5f{bottom:813.260000pt;}
.y3c{bottom:824.882667pt;}
.y15{bottom:831.338667pt;}
.y3b{bottom:842.948000pt;}
.y5e{bottom:853.776000pt;}
.y3a{bottom:856.436000pt;}
.y39{bottom:861.014667pt;}
.y14{bottom:863.950667pt;}
.y5d{bottom:871.841333pt;}
.y38{bottom:879.080000pt;}
.y5c{bottom:889.906667pt;}
.y13{bottom:896.561333pt;}
.y5b{bottom:907.973333pt;}
.y37{bottom:909.769333pt;}
.y35{bottom:919.748000pt;}
.y36{bottom:925.420000pt;}
.y5a{bottom:926.038667pt;}
.y12{bottom:929.172000pt;}
.y59{bottom:944.104000pt;}
.y34{bottom:957.590667pt;}
.y11{bottom:961.784000pt;}
.y33{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y32{bottom:994.638667pt;}
.h6{height:29.032418pt;}
.h2{height:36.874903pt;}
.hf{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.he{height:56.571288pt;}
.ha{height:56.576621pt;}
.hb{height:61.951067pt;}
.h5{height:64.061098pt;}
.h3{height:94.653673pt;}
.hc{height:97.573955pt;}
.hd{height:124.273941pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x10{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x11{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x7{left:286.301333pt;}
.xf{left:318.544000pt;}
.xa{left:324.441333pt;}
.xd{left:350.318667pt;}
.x8{left:389.748000pt;}
.xe{left:413.365333pt;}
.xc{left:428.760000pt;}
.xb{left:436.101333pt;}
.x9{left:475.493333pt;}
}




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