
    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_af66997fffa2c8c00e031177.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_c552a02cd6ae6368a37963ed.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_48361b96ca496615ac222587.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_38d70230e5be5e7bde2f499c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d998d2c6dbd8b9df1681e6fa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_ce180e00c36b3462cb33ca8d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b68fb70b6bff70a56cc19014.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_68bba312647c09457a42b61c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_05ad44f30a27bb995ed3ce98.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3b6e43dd701b53c6d1a192df.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-99.060000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-6.540000px;}
.ls14{letter-spacing:-5.628000px;}
.ls15{letter-spacing:-3.270000px;}
.ls11{letter-spacing:-2.250000px;}
.lsc{letter-spacing:-2.034000px;}
.ls16{letter-spacing:-1.524000px;}
.ls5{letter-spacing:-1.128000px;}
.ls1b{letter-spacing:-1.068000px;}
.ls4{letter-spacing:-0.876000px;}
.ls10{letter-spacing:-0.870000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.384600px;}
.ls1a{letter-spacing:0.468000px;}
.ls19{letter-spacing:0.618000px;}
.ls3{letter-spacing:1.128000px;}
.lsd{letter-spacing:1.230000px;}
.ls13{letter-spacing:1.524000px;}
.ls9{letter-spacing:1.525500px;}
.lsa{letter-spacing:1.645500px;}
.lsf{letter-spacing:1.675500px;}
.ls17{letter-spacing:1.705500px;}
.ls12{letter-spacing:2.034000px;}
.ls8{letter-spacing:2.142000px;}
.ls0{letter-spacing:2.250000px;}
.lse{letter-spacing:7.875000px;}
.ls1{letter-spacing:12.555000px;}
.ls7{letter-spacing:28.203000px;}
.ls1c{letter-spacing:46.203000px;}
.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;}
}
.ws3{word-spacing:-21.375000px;}
.ws7{word-spacing:-21.159000px;}
.ws8{word-spacing:-20.649000px;}
.ws6{word-spacing:-20.355000px;}
.ws1{word-spacing:-19.125000px;}
.wsc{word-spacing:-18.422100px;}
.ws4{word-spacing:-18.255000px;}
.wsd{word-spacing:-18.037500px;}
.wsb{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.601000px;}
.wse{word-spacing:-16.969500px;}
.ws5{word-spacing:-16.875000px;}
.ws9{word-spacing:-15.855000px;}
.wsf{word-spacing:-12.585000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._3{margin-left:-7.879800px;}
._16{margin-left:-6.631650px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._b{width:5.683050px;}
._7{width:6.886800px;}
._15{width:7.911900px;}
._12{width:9.243000px;}
._20{width:10.373100px;}
._9{width:11.828550px;}
._11{width:13.206600px;}
._8{width:16.540500px;}
._1c{width:17.667900px;}
._21{width:20.612250px;}
._a{width:21.728850px;}
._2b{width:22.976100px;}
._18{width:25.704750px;}
._1d{width:26.710200px;}
._27{width:27.977100px;}
._17{width:30.387750px;}
._1a{width:33.956550px;}
._e{width:35.217000px;}
._2a{width:36.771000px;}
._19{width:38.589450px;}
._d{width:40.122750px;}
._c{width:41.665350px;}
._23{width:44.350800px;}
._25{width:48.270000px;}
._24{width:49.297650px;}
._1b{width:53.407350px;}
._28{width:57.049200px;}
._29{width:58.728000px;}
._13{width:61.901400px;}
._14{width:62.951100px;}
._2e{width:67.006050px;}
._2d{width:70.439700px;}
._30{width:74.592900px;}
._2f{width:75.610050px;}
._1f{width:79.127400px;}
._1e{width:80.642100px;}
._22{width:84.476550px;}
._f{width:88.574400px;}
._10{width:89.712750px;}
._2c{width:845.895000px;}
._26{width:1153.321500px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:67.500000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:72.150000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y91{bottom:-16.170000px;}
.y0{bottom:0.000000px;}
.yab{bottom:0.405000px;}
.y90{bottom:4.080000px;}
.yb8{bottom:4.875000px;}
.y87{bottom:5.370000px;}
.ya3{bottom:6.030000px;}
.y98{bottom:6.255000px;}
.y9b{bottom:6.270000px;}
.ya7{bottom:7.275000px;}
.y4e{bottom:7.875000px;}
.y53{bottom:7.890000px;}
.y5{bottom:14.662500px;}
.y8b{bottom:15.375000px;}
.y5e{bottom:21.405000px;}
.y8f{bottom:25.500000px;}
.y3{bottom:32.662500px;}
.y51{bottom:33.750000px;}
.y58{bottom:33.757500px;}
.y60{bottom:33.780000px;}
.y55{bottom:33.795000px;}
.y9c{bottom:37.755000px;}
.yad{bottom:39.945000px;}
.yaa{bottom:42.075000px;}
.y93{bottom:45.750000px;}
.y86{bottom:45.900000px;}
.y5d{bottom:47.280000px;}
.ya1{bottom:47.700000px;}
.y96{bottom:49.050000px;}
.ya5{bottom:50.070000px;}
.y62{bottom:59.655000px;}
.y50{bottom:59.670000px;}
.y5f{bottom:59.700000px;}
.y4{bottom:61.912500px;}
.ya9{bottom:63.450000px;}
.y8d{bottom:66.045000px;}
.yb5{bottom:66.825000px;}
.yb3{bottom:69.195000px;}
.y5c{bottom:73.200000px;}
.y56{bottom:85.575000px;}
.y52{bottom:85.590000px;}
.y8c{bottom:87.420000px;}
.y57{bottom:117.112500px;}
.y7b{bottom:120.487500px;}
.y31{bottom:124.987500px;}
.y84{bottom:128.362500px;}
.y2d{bottom:130.612500px;}
.y7a{bottom:146.362500px;}
.y30{bottom:151.995000px;}
.y83{bottom:154.245000px;}
.y2c{bottom:156.480000px;}
.y79{bottom:172.275000px;}
.y54{bottom:174.525000px;}
.y2f{bottom:180.150000px;}
.y2b{bottom:182.400000px;}
.y78{bottom:198.150000px;}
.y82{bottom:206.070000px;}
.y2e{bottom:207.195000px;}
.y2a{bottom:208.320000px;}
.y77{bottom:224.070000px;}
.y81{bottom:231.945000px;}
.y29{bottom:234.195000px;}
.y76{bottom:248.850000px;}
.y80{bottom:257.850000px;}
.y28{bottom:260.100000px;}
.y75{bottom:274.725000px;}
.y7f{bottom:282.630000px;}
.y4f{bottom:283.755000px;}
.y27{bottom:286.005000px;}
.y74{bottom:300.630000px;}
.y7e{bottom:308.520000px;}
.y26{bottom:311.895000px;}
.y73{bottom:326.550000px;}
.y7d{bottom:334.425000px;}
.y25{bottom:336.675000px;}
.y72{bottom:352.425000px;}
.y7c{bottom:355.800000px;}
.y24{bottom:362.550000px;}
.y71{bottom:378.330000px;}
.yb0{bottom:382.845000px;}
.y23{bottom:388.455000px;}
.y4d{bottom:392.955000px;}
.y70{bottom:404.205000px;}
.y22{bottom:414.375000px;}
.y6f{bottom:430.125000px;}
.y4c{bottom:432.375000px;}
.yb4{bottom:437.625000px;}
.y21{bottom:440.250000px;}
.y6e{bottom:456.045000px;}
.ya8{bottom:461.250000px;}
.yb7{bottom:462.795000px;}
.y20{bottom:466.170000px;}
.ya0{bottom:472.500000px;}
.y6d{bottom:481.905000px;}
.y4b{bottom:483.045000px;}
.yb6{bottom:484.170000px;}
.y1f{bottom:492.075000px;}
.yaf{bottom:498.825000px;}
.ya2{bottom:499.950000px;}
.y4a{bottom:508.950000px;}
.y1e{bottom:517.950000px;}
.y49{bottom:534.855000px;}
.y1d{bottom:543.870000px;}
.y48{bottom:560.745000px;}
.yb2{bottom:568.125000px;}
.y1c{bottom:569.745000px;}
.yac{bottom:586.125000px;}
.y47{bottom:586.650000px;}
.ya4{bottom:587.250000px;}
.y6c{bottom:587.775000px;}
.y1b{bottom:595.650000px;}
.yae{bottom:604.650000px;}
.y9f{bottom:605.775000px;}
.y46{bottom:613.650000px;}
.yb1{bottom:614.775000px;}
.ya6{bottom:615.900000px;}
.y1a{bottom:621.570000px;}
.y9e{bottom:626.070000px;}
.y45{bottom:639.570000px;}
.y6b{bottom:640.695000px;}
.y19{bottom:646.320000px;}
.y44{bottom:665.475000px;}
.y6a{bottom:666.600000px;}
.y18{bottom:672.225000px;}
.y43{bottom:691.350000px;}
.y69{bottom:693.600000px;}
.y17{bottom:698.100000px;}
.y99{bottom:703.125000px;}
.y95{bottom:704.250000px;}
.y42{bottom:718.380000px;}
.y68{bottom:719.520000px;}
.y9d{bottom:721.755000px;}
.y16{bottom:724.005000px;}
.yb9{bottom:727.380000px;}
.y9a{bottom:730.755000px;}
.y97{bottom:731.880000px;}
.y41{bottom:744.300000px;}
.y67{bottom:745.425000px;}
.y15{bottom:749.925000px;}
.y40{bottom:770.175000px;}
.y66{bottom:772.425000px;}
.y14{bottom:775.800000px;}
.y3f{bottom:796.080000px;}
.y65{bottom:798.330000px;}
.y13{bottom:801.705000px;}
.y8a{bottom:819.000000px;}
.y3e{bottom:823.080000px;}
.y64{bottom:824.205000px;}
.y12{bottom:827.625000px;}
.y94{bottom:843.375000px;}
.y3d{bottom:849.000000px;}
.y63{bottom:851.250000px;}
.y11{bottom:853.500000px;}
.y89{bottom:854.625000px;}
.y8e{bottom:864.750000px;}
.y61{bottom:873.795000px;}
.y3c{bottom:874.920000px;}
.y10{bottom:879.420000px;}
.y92{bottom:886.170000px;}
.y88{bottom:896.295000px;}
.y3b{bottom:901.920000px;}
.yf{bottom:905.295000px;}
.y3a{bottom:927.825000px;}
.ye{bottom:931.200000px;}
.y39{bottom:953.745000px;}
.yd{bottom:957.120000px;}
.y38{bottom:980.745000px;}
.y85{bottom:981.000000px;}
.yc{bottom:981.870000px;}
.y5b{bottom:982.995000px;}
.y37{bottom:1006.650000px;}
.yb{bottom:1007.775000px;}
.y36{bottom:1032.525000px;}
.ya{bottom:1033.650000px;}
.y35{bottom:1058.445000px;}
.y9{bottom:1059.570000px;}
.y34{bottom:1084.350000px;}
.y8{bottom:1085.475000px;}
.y5a{bottom:1092.225000px;}
.y33{bottom:1110.225000px;}
.y7{bottom:1111.350000px;}
.y59{bottom:1124.880000px;}
.y32{bottom:1136.130000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h10{height:25.875000px;}
.hd{height:25.912500px;}
.h5{height:40.537500px;}
.h1c{height:50.484375px;}
.h17{height:50.906616px;}
.hf{height:51.787500px;}
.hb{height:53.639648px;}
.h12{height:53.975830px;}
.ha{height:63.052734px;}
.h14{height:64.125000px;}
.h3{height:68.027344px;}
.h1b{height:70.664062px;}
.h1a{height:70.811279px;}
.h19{height:70.875000px;}
.h15{height:72.562500px;}
.h16{height:72.713672px;}
.h8{height:75.043213px;}
.h9{height:75.080566px;}
.h7{height:77.097656px;}
.hc{height:78.629945px;}
.h1d{height:82.125000px;}
.h20{height:84.060791px;}
.h1f{height:85.500000px;}
.h2{height:86.319141px;}
.h1e{height:90.000000px;}
.h4{height:95.389453px;}
.h13{height:103.560000px;}
.he{height:103.575000px;}
.h11{height:103.612500px;}
.h18{height:104.625000px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.w6{width:117.000000px;}
.w8{width:118.125000px;}
.wa{width:121.500000px;}
.w7{width:122.625000px;}
.w9{width:124.875000px;}
.w3{width:223.020000px;}
.w5{width:313.875000px;}
.w4{width:453.975000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x3{left:-1.125000px;}
.x0{left:0.000000px;}
.x1b{left:1.110000px;}
.x21{left:5.625000px;}
.x1f{left:11.250000px;}
.x27{left:12.405000px;}
.x36{left:14.025000px;}
.x22{left:15.780000px;}
.x1c{left:18.030000px;}
.x14{left:19.125000px;}
.x3c{left:20.625000px;}
.x18{left:23.625000px;}
.x49{left:25.125000px;}
.x13{left:27.037500px;}
.x15{left:28.155000px;}
.x1a{left:30.405000px;}
.x20{left:31.530000px;}
.x51{left:34.470000px;}
.x16{left:37.200000px;}
.x10{left:38.287500px;}
.x24{left:40.575000px;}
.x1e{left:41.662500px;}
.x26{left:43.905000px;}
.x4b{left:45.375000px;}
.x45{left:49.275000px;}
.x23{left:50.655000px;}
.x1d{left:52.935000px;}
.x19{left:68.700000px;}
.x17{left:81.105000px;}
.x28{left:92.355000px;}
.x12{left:99.150000px;}
.xf{left:107.025000px;}
.x1{left:108.149987px;}
.x25{left:112.650000px;}
.xd{left:129.524987px;}
.x2f{left:143.062487px;}
.x47{left:146.437487px;}
.x2e{left:154.304987px;}
.x2d{left:155.429987px;}
.x48{left:157.679987px;}
.x3a{left:162.224987px;}
.xe{left:179.099987px;}
.x2a{left:185.849987px;}
.x4{left:190.349987px;}
.x9{left:246.674987px;}
.x33{left:258.750000px;}
.x4a{left:259.875000px;}
.x3b{left:261.000000px;}
.x31{left:273.704987px;}
.x8{left:278.219987px;}
.x3d{left:279.344987px;}
.x2b{left:294.750000px;}
.x7{left:297.374987px;}
.x5{left:299.624987px;}
.x30{left:306.374987px;}
.x32{left:309.749987px;}
.xb{left:316.529987px;}
.xa{left:319.904987px;}
.x11{left:333.420000px;}
.x2c{left:339.044987px;}
.x56{left:346.949987px;}
.xc{left:354.824987px;}
.x34{left:393.750000px;}
.x4e{left:407.774987px;}
.x4c{left:421.274987px;}
.x4d{left:424.649987px;}
.x3e{left:425.774987px;}
.x35{left:443.819987px;}
.x4f{left:448.319987px;}
.x6{left:457.319987px;}
.x3f{left:520.875000px;}
.x38{left:524.250000px;}
.x37{left:544.049987px;}
.x39{left:553.094987px;}
.x50{left:556.469987px;}
.x44{left:658.125000px;}
.x43{left:662.625000px;}
.x41{left:675.869987px;}
.x54{left:684.869987px;}
.x46{left:687.104987px;}
.x40{left:689.369987px;}
.x53{left:690.479987px;}
.x42{left:696.149987px;}
.x52{left:699.524987px;}
.x55{left:704.024987px;}
.x29{left:787.379987px;}
.x2{left:802.005000px;}
@media print{
.v1{vertical-align:-88.053333pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-5.813333pt;}
.ls14{letter-spacing:-5.002667pt;}
.ls15{letter-spacing:-2.906667pt;}
.ls11{letter-spacing:-2.000000pt;}
.lsc{letter-spacing:-1.808000pt;}
.ls16{letter-spacing:-1.354667pt;}
.ls5{letter-spacing:-1.002667pt;}
.ls1b{letter-spacing:-0.949333pt;}
.ls4{letter-spacing:-0.778667pt;}
.ls10{letter-spacing:-0.773333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.341867pt;}
.ls1a{letter-spacing:0.416000pt;}
.ls19{letter-spacing:0.549333pt;}
.ls3{letter-spacing:1.002667pt;}
.lsd{letter-spacing:1.093333pt;}
.ls13{letter-spacing:1.354667pt;}
.ls9{letter-spacing:1.356000pt;}
.lsa{letter-spacing:1.462667pt;}
.lsf{letter-spacing:1.489333pt;}
.ls17{letter-spacing:1.516000pt;}
.ls12{letter-spacing:1.808000pt;}
.ls8{letter-spacing:1.904000pt;}
.ls0{letter-spacing:2.000000pt;}
.lse{letter-spacing:7.000000pt;}
.ls1{letter-spacing:11.160000pt;}
.ls7{letter-spacing:25.069333pt;}
.ls1c{letter-spacing:41.069333pt;}
.ws3{word-spacing:-19.000000pt;}
.ws7{word-spacing:-18.808000pt;}
.ws8{word-spacing:-18.354667pt;}
.ws6{word-spacing:-18.093333pt;}
.ws1{word-spacing:-17.000000pt;}
.wsc{word-spacing:-16.375200pt;}
.ws4{word-spacing:-16.226667pt;}
.wsd{word-spacing:-16.033333pt;}
.wsb{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.645333pt;}
.wse{word-spacing:-15.084000pt;}
.ws5{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.093333pt;}
.wsf{word-spacing:-11.186667pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._3{margin-left:-7.004267pt;}
._16{margin-left:-5.894800pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._b{width:5.051600pt;}
._7{width:6.121600pt;}
._15{width:7.032800pt;}
._12{width:8.216000pt;}
._20{width:9.220533pt;}
._9{width:10.514267pt;}
._11{width:11.739200pt;}
._8{width:14.702667pt;}
._1c{width:15.704800pt;}
._21{width:18.322000pt;}
._a{width:19.314533pt;}
._2b{width:20.423200pt;}
._18{width:22.848667pt;}
._1d{width:23.742400pt;}
._27{width:24.868533pt;}
._17{width:27.011333pt;}
._1a{width:30.183600pt;}
._e{width:31.304000pt;}
._2a{width:32.685333pt;}
._19{width:34.301733pt;}
._d{width:35.664667pt;}
._c{width:37.035867pt;}
._23{width:39.422933pt;}
._25{width:42.906667pt;}
._24{width:43.820133pt;}
._1b{width:47.473200pt;}
._28{width:50.710400pt;}
._29{width:52.202667pt;}
._13{width:55.023467pt;}
._14{width:55.956533pt;}
._2e{width:59.560933pt;}
._2d{width:62.613067pt;}
._30{width:66.304800pt;}
._2f{width:67.208933pt;}
._1f{width:70.335467pt;}
._1e{width:71.681867pt;}
._22{width:75.090267pt;}
._f{width:78.732800pt;}
._10{width:79.744667pt;}
._2c{width:751.906667pt;}
._26{width:1025.174667pt;}
.fs1{font-size:60.000000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:64.133333pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y91{bottom:-14.373333pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:0.360000pt;}
.y90{bottom:3.626667pt;}
.yb8{bottom:4.333333pt;}
.y87{bottom:4.773333pt;}
.ya3{bottom:5.360000pt;}
.y98{bottom:5.560000pt;}
.y9b{bottom:5.573333pt;}
.ya7{bottom:6.466667pt;}
.y4e{bottom:7.000000pt;}
.y53{bottom:7.013333pt;}
.y5{bottom:13.033333pt;}
.y8b{bottom:13.666667pt;}
.y5e{bottom:19.026667pt;}
.y8f{bottom:22.666667pt;}
.y3{bottom:29.033333pt;}
.y51{bottom:30.000000pt;}
.y58{bottom:30.006667pt;}
.y60{bottom:30.026667pt;}
.y55{bottom:30.040000pt;}
.y9c{bottom:33.560000pt;}
.yad{bottom:35.506667pt;}
.yaa{bottom:37.400000pt;}
.y93{bottom:40.666667pt;}
.y86{bottom:40.800000pt;}
.y5d{bottom:42.026667pt;}
.ya1{bottom:42.400000pt;}
.y96{bottom:43.600000pt;}
.ya5{bottom:44.506667pt;}
.y62{bottom:53.026667pt;}
.y50{bottom:53.040000pt;}
.y5f{bottom:53.066667pt;}
.y4{bottom:55.033333pt;}
.ya9{bottom:56.400000pt;}
.y8d{bottom:58.706667pt;}
.yb5{bottom:59.400000pt;}
.yb3{bottom:61.506667pt;}
.y5c{bottom:65.066667pt;}
.y56{bottom:76.066667pt;}
.y52{bottom:76.080000pt;}
.y8c{bottom:77.706667pt;}
.y57{bottom:104.100000pt;}
.y7b{bottom:107.100000pt;}
.y31{bottom:111.100000pt;}
.y84{bottom:114.100000pt;}
.y2d{bottom:116.100000pt;}
.y7a{bottom:130.100000pt;}
.y30{bottom:135.106667pt;}
.y83{bottom:137.106667pt;}
.y2c{bottom:139.093333pt;}
.y79{bottom:153.133333pt;}
.y54{bottom:155.133333pt;}
.y2f{bottom:160.133333pt;}
.y2b{bottom:162.133333pt;}
.y78{bottom:176.133333pt;}
.y82{bottom:183.173333pt;}
.y2e{bottom:184.173333pt;}
.y2a{bottom:185.173333pt;}
.y77{bottom:199.173333pt;}
.y81{bottom:206.173333pt;}
.y29{bottom:208.173333pt;}
.y76{bottom:221.200000pt;}
.y80{bottom:229.200000pt;}
.y28{bottom:231.200000pt;}
.y75{bottom:244.200000pt;}
.y7f{bottom:251.226667pt;}
.y4f{bottom:252.226667pt;}
.y27{bottom:254.226667pt;}
.y74{bottom:267.226667pt;}
.y7e{bottom:274.240000pt;}
.y26{bottom:277.240000pt;}
.y73{bottom:290.266667pt;}
.y7d{bottom:297.266667pt;}
.y25{bottom:299.266667pt;}
.y72{bottom:313.266667pt;}
.y7c{bottom:316.266667pt;}
.y24{bottom:322.266667pt;}
.y71{bottom:336.293333pt;}
.yb0{bottom:340.306667pt;}
.y23{bottom:345.293333pt;}
.y4d{bottom:349.293333pt;}
.y70{bottom:359.293333pt;}
.y22{bottom:368.333333pt;}
.y6f{bottom:382.333333pt;}
.y4c{bottom:384.333333pt;}
.yb4{bottom:389.000000pt;}
.y21{bottom:391.333333pt;}
.y6e{bottom:405.373333pt;}
.ya8{bottom:410.000000pt;}
.yb7{bottom:411.373333pt;}
.y20{bottom:414.373333pt;}
.ya0{bottom:420.000000pt;}
.y6d{bottom:428.360000pt;}
.y4b{bottom:429.373333pt;}
.yb6{bottom:430.373333pt;}
.y1f{bottom:437.400000pt;}
.yaf{bottom:443.400000pt;}
.ya2{bottom:444.400000pt;}
.y4a{bottom:452.400000pt;}
.y1e{bottom:460.400000pt;}
.y49{bottom:475.426667pt;}
.y1d{bottom:483.440000pt;}
.y48{bottom:498.440000pt;}
.yb2{bottom:505.000000pt;}
.y1c{bottom:506.440000pt;}
.yac{bottom:521.000000pt;}
.y47{bottom:521.466667pt;}
.ya4{bottom:522.000000pt;}
.y6c{bottom:522.466667pt;}
.y1b{bottom:529.466667pt;}
.yae{bottom:537.466667pt;}
.y9f{bottom:538.466667pt;}
.y46{bottom:545.466667pt;}
.yb1{bottom:546.466667pt;}
.ya6{bottom:547.466667pt;}
.y1a{bottom:552.506667pt;}
.y9e{bottom:556.506667pt;}
.y45{bottom:568.506667pt;}
.y6b{bottom:569.506667pt;}
.y19{bottom:574.506667pt;}
.y44{bottom:591.533333pt;}
.y6a{bottom:592.533333pt;}
.y18{bottom:597.533333pt;}
.y43{bottom:614.533333pt;}
.y69{bottom:616.533333pt;}
.y17{bottom:620.533333pt;}
.y99{bottom:625.000000pt;}
.y95{bottom:626.000000pt;}
.y42{bottom:638.560000pt;}
.y68{bottom:639.573333pt;}
.y9d{bottom:641.560000pt;}
.y16{bottom:643.560000pt;}
.yb9{bottom:646.560000pt;}
.y9a{bottom:649.560000pt;}
.y97{bottom:650.560000pt;}
.y41{bottom:661.600000pt;}
.y67{bottom:662.600000pt;}
.y15{bottom:666.600000pt;}
.y40{bottom:684.600000pt;}
.y66{bottom:686.600000pt;}
.y14{bottom:689.600000pt;}
.y3f{bottom:707.626667pt;}
.y65{bottom:709.626667pt;}
.y13{bottom:712.626667pt;}
.y8a{bottom:728.000000pt;}
.y3e{bottom:731.626667pt;}
.y64{bottom:732.626667pt;}
.y12{bottom:735.666667pt;}
.y94{bottom:749.666667pt;}
.y3d{bottom:754.666667pt;}
.y63{bottom:756.666667pt;}
.y11{bottom:758.666667pt;}
.y89{bottom:759.666667pt;}
.y8e{bottom:768.666667pt;}
.y61{bottom:776.706667pt;}
.y3c{bottom:777.706667pt;}
.y10{bottom:781.706667pt;}
.y92{bottom:787.706667pt;}
.y88{bottom:796.706667pt;}
.y3b{bottom:801.706667pt;}
.yf{bottom:804.706667pt;}
.y3a{bottom:824.733333pt;}
.ye{bottom:827.733333pt;}
.y39{bottom:847.773333pt;}
.yd{bottom:850.773333pt;}
.y38{bottom:871.773333pt;}
.y85{bottom:872.000000pt;}
.yc{bottom:872.773333pt;}
.y5b{bottom:873.773333pt;}
.y37{bottom:894.800000pt;}
.yb{bottom:895.800000pt;}
.y36{bottom:917.800000pt;}
.ya{bottom:918.800000pt;}
.y35{bottom:940.840000pt;}
.y9{bottom:941.840000pt;}
.y34{bottom:963.866667pt;}
.y8{bottom:964.866667pt;}
.y5a{bottom:970.866667pt;}
.y33{bottom:986.866667pt;}
.y7{bottom:987.866667pt;}
.y59{bottom:999.893333pt;}
.y32{bottom:1009.893333pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h10{height:23.000000pt;}
.hd{height:23.033333pt;}
.h5{height:36.033333pt;}
.h1c{height:44.875000pt;}
.h17{height:45.250326pt;}
.hf{height:46.033333pt;}
.hb{height:47.679688pt;}
.h12{height:47.978516pt;}
.ha{height:56.046875pt;}
.h14{height:57.000000pt;}
.h3{height:60.468750pt;}
.h1b{height:62.812500pt;}
.h1a{height:62.943359pt;}
.h19{height:63.000000pt;}
.h15{height:64.500000pt;}
.h16{height:64.634375pt;}
.h8{height:66.705078pt;}
.h9{height:66.738281pt;}
.h7{height:68.531250pt;}
.hc{height:69.893285pt;}
.h1d{height:73.000000pt;}
.h20{height:74.720703pt;}
.h1f{height:76.000000pt;}
.h2{height:76.728125pt;}
.h1e{height:80.000000pt;}
.h4{height:84.790625pt;}
.h13{height:92.053333pt;}
.he{height:92.066667pt;}
.h11{height:92.100000pt;}
.h18{height:93.000000pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.w6{width:104.000000pt;}
.w8{width:105.000000pt;}
.wa{width:108.000000pt;}
.w7{width:109.000000pt;}
.w9{width:111.000000pt;}
.w3{width:198.240000pt;}
.w5{width:279.000000pt;}
.w4{width:403.533333pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x3{left:-1.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:0.986667pt;}
.x21{left:5.000000pt;}
.x1f{left:10.000000pt;}
.x27{left:11.026667pt;}
.x36{left:12.466667pt;}
.x22{left:14.026667pt;}
.x1c{left:16.026667pt;}
.x14{left:17.000000pt;}
.x3c{left:18.333333pt;}
.x18{left:21.000000pt;}
.x49{left:22.333333pt;}
.x13{left:24.033333pt;}
.x15{left:25.026667pt;}
.x1a{left:27.026667pt;}
.x20{left:28.026667pt;}
.x51{left:30.640000pt;}
.x16{left:33.066667pt;}
.x10{left:34.033333pt;}
.x24{left:36.066667pt;}
.x1e{left:37.033333pt;}
.x26{left:39.026667pt;}
.x4b{left:40.333333pt;}
.x45{left:43.800000pt;}
.x23{left:45.026667pt;}
.x1d{left:47.053333pt;}
.x19{left:61.066667pt;}
.x17{left:72.093333pt;}
.x28{left:82.093333pt;}
.x12{left:88.133333pt;}
.xf{left:95.133333pt;}
.x1{left:96.133322pt;}
.x25{left:100.133333pt;}
.xd{left:115.133322pt;}
.x2f{left:127.166655pt;}
.x47{left:130.166655pt;}
.x2e{left:137.159988pt;}
.x2d{left:138.159988pt;}
.x48{left:140.159988pt;}
.x3a{left:144.199988pt;}
.xe{left:159.199988pt;}
.x2a{left:165.199988pt;}
.x4{left:169.199988pt;}
.x9{left:219.266655pt;}
.x33{left:230.000000pt;}
.x4a{left:231.000000pt;}
.x3b{left:232.000000pt;}
.x31{left:243.293322pt;}
.x8{left:247.306655pt;}
.x3d{left:248.306655pt;}
.x2b{left:262.000000pt;}
.x7{left:264.333322pt;}
.x5{left:266.333322pt;}
.x30{left:272.333322pt;}
.x32{left:275.333322pt;}
.xb{left:281.359988pt;}
.xa{left:284.359988pt;}
.x11{left:296.373333pt;}
.x2c{left:301.373322pt;}
.x56{left:308.399988pt;}
.xc{left:315.399988pt;}
.x34{left:350.000000pt;}
.x4e{left:362.466655pt;}
.x4c{left:374.466655pt;}
.x4d{left:377.466655pt;}
.x3e{left:378.466655pt;}
.x35{left:394.506655pt;}
.x4f{left:398.506655pt;}
.x6{left:406.506655pt;}
.x3f{left:463.000000pt;}
.x38{left:466.000000pt;}
.x37{left:483.599988pt;}
.x39{left:491.639988pt;}
.x50{left:494.639988pt;}
.x44{left:585.000000pt;}
.x43{left:589.000000pt;}
.x41{left:600.773322pt;}
.x54{left:608.773322pt;}
.x46{left:610.759988pt;}
.x40{left:612.773322pt;}
.x53{left:613.759988pt;}
.x42{left:618.799988pt;}
.x52{left:621.799988pt;}
.x55{left:625.799988pt;}
.x29{left:699.893322pt;}
.x2{left:712.893333pt;}
}




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