
    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_af3e361db518d804f6c5003e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_fadc48e958d1d24c87a84174.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_3fe53a433ef81019e19a1bfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_156fa46fbf547947340999a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_9a24d501eeb85d10a68a9b0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_a8eeda1bd485b184d4212e23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940430;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854004;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_70d49c19e25701d5a5a9c26b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.760350;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(0.264340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264340,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.265502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265502,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-2.566728px;}
.lsa{letter-spacing:-2.442977px;}
.ls9{letter-spacing:-0.787860px;}
.ls8{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.073900px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.905904px;}
.ls7{letter-spacing:1.068803px;}
.ls14{letter-spacing:3.168000px;}
.ls13{letter-spacing:8.640000px;}
.ls5{letter-spacing:12.240000px;}
.ls0{letter-spacing:39.600000px;}
.ls3{letter-spacing:64.397280px;}
.ls11{letter-spacing:2316.720000px;}
.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;}
}
.ws2{word-spacing:-21.060000px;}
.ws15{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.504000px;}
.ws14{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.212179px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:49.520981px;}
.wse{word-spacing:94.214032px;}
.wsb{word-spacing:114.056499px;}
.ws9{word-spacing:127.676097px;}
.ws7{word-spacing:132.256679px;}
.ws8{word-spacing:177.683841px;}
.ws6{word-spacing:196.171071px;}
.wsd{word-spacing:350.783000px;}
.wsa{word-spacing:396.588647px;}
.ws4{word-spacing:434.845060px;}
.ws3{word-spacing:440.851730px;}
.ws5{word-spacing:456.172862px;}
._30{margin-left:-5.639334px;}
._2{margin-left:-4.173120px;}
._1{margin-left:-2.715840px;}
._0{margin-left:-1.457280px;}
._3{width:1.126080px;}
._6{width:2.164560px;}
._5{width:3.195600px;}
._b{width:4.824000px;}
._f{width:5.904000px;}
._14{width:7.128000px;}
._18{width:8.748000px;}
._1a{width:9.756000px;}
._17{width:11.160000px;}
._13{width:12.744000px;}
._9{width:14.472000px;}
._a{width:15.577920px;}
._e{width:16.592160px;}
._8{width:19.152000px;}
._7{width:20.232000px;}
._16{width:21.695760px;}
._4{width:22.718160px;}
._15{width:24.516000px;}
._11{width:26.388000px;}
._12{width:27.756000px;}
._20{width:29.592000px;}
._19{width:30.816000px;}
._c{width:31.896000px;}
._d{width:33.228000px;}
._1f{width:38.664000px;}
._10{width:39.888000px;}
._39{width:47.592000px;}
._36{width:49.248000px;}
._1d{width:50.544000px;}
._1e{width:51.780000px;}
._37{width:54.775200px;}
._38{width:55.888800px;}
._1b{width:58.608000px;}
._1c{width:60.132000px;}
._2c{width:67.255118px;}
._3a{width:84.096000px;}
._3b{width:85.536000px;}
._29{width:89.432878px;}
._25{width:91.248569px;}
._24{width:114.658905px;}
._27{width:117.757138px;}
._28{width:140.782198px;}
._23{width:146.089258px;}
._2f{width:149.282023px;}
._33{width:176.244923px;}
._31{width:179.285956px;}
._26{width:190.399537px;}
._32{width:197.973289px;}
._21{width:213.369233px;}
._22{width:215.160944px;}
._2a{width:232.057170px;}
._34{width:245.987250px;}
._35{width:299.469574px;}
._2b{width:346.325560px;}
._2e{width:361.447972px;}
._2d{width:365.511482px;}
.fc2{color:rgb(0,29,53);}
.fc3{color:rgb(27,27,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:68.848716px;}
.fs5{font-size:69.014107px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y94{bottom:5.710194px;}
.ya0{bottom:5.733246px;}
.y9f{bottom:28.644770px;}
.y93{bottom:28.727926px;}
.y9e{bottom:51.594342px;}
.y92{bottom:51.745352px;}
.y9d{bottom:74.506168px;}
.y91{bottom:74.762778px;}
.y6{bottom:82.116000px;}
.y90{bottom:97.780204px;}
.y5{bottom:108.756000px;}
.y8f{bottom:120.797630px;}
.y4{bottom:135.036000px;}
.y8e{bottom:143.815056px;}
.y3{bottom:154.290000px;}
.y8d{bottom:166.824848px;}
.y2{bottom:173.550000px;}
.y8c{bottom:189.880445px;}
.y31{bottom:207.750000px;}
.y9b{bottom:211.710000px;}
.yc7{bottom:213.330000px;}
.yb9{bottom:215.130000px;}
.y7c{bottom:216.030000px;}
.y5f{bottom:218.010000px;}
.y30{bottom:228.450000px;}
.y50{bottom:230.610000px;}
.yd9{bottom:232.050000px;}
.yc6{bottom:244.290000px;}
.y7b{bottom:246.990000px;}
.y9a{bottom:248.790000px;}
.y2f{bottom:249.150000px;}
.yb8{bottom:252.030000px;}
.y4f{bottom:261.750000px;}
.yd8{bottom:263.010000px;}
.y2e{bottom:269.850000px;}
.yc5{bottom:275.430000px;}
.y7a{bottom:277.950000px;}
.y99{bottom:279.750000px;}
.y5e{bottom:280.110000px;}
.yb7{bottom:289.110000px;}
.y2d{bottom:290.550000px;}
.y4e{bottom:292.710000px;}
.yd7{bottom:294.150000px;}
.yc4{bottom:306.390000px;}
.y79{bottom:309.090000px;}
.y98{bottom:310.890000px;}
.y2c{bottom:311.250000px;}
.yb6{bottom:320.250000px;}
.y4d{bottom:323.850000px;}
.yd6{bottom:325.110000px;}
.y2b{bottom:331.950000px;}
.yc3{bottom:337.575000px;}
.y78{bottom:340.095000px;}
.y97{bottom:341.895000px;}
.y5d{bottom:342.255000px;}
.yb5{bottom:351.255000px;}
.y2a{bottom:352.695000px;}
.y4c{bottom:354.855000px;}
.yd5{bottom:356.295000px;}
.yc2{bottom:368.535000px;}
.y77{bottom:371.235000px;}
.y29{bottom:373.395000px;}
.y96{bottom:378.975000px;}
.yb4{bottom:382.395000px;}
.y4b{bottom:385.995000px;}
.yd4{bottom:387.255000px;}
.y28{bottom:394.095000px;}
.yc1{bottom:399.675000px;}
.y76{bottom:402.195000px;}
.y5c{bottom:404.355000px;}
.y95{bottom:412.095000px;}
.y8b{bottom:412.139959px;}
.yb3{bottom:413.355000px;}
.y27{bottom:414.795000px;}
.y4a{bottom:416.955000px;}
.yd3{bottom:418.395000px;}
.yc0{bottom:430.635000px;}
.y75{bottom:433.335000px;}
.y26{bottom:435.495000px;}
.yb2{bottom:444.495000px;}
.y49{bottom:448.095000px;}
.yd2{bottom:449.355000px;}
.y25{bottom:456.195000px;}
.ybf{bottom:461.775000px;}
.y74{bottom:464.295000px;}
.y5b{bottom:466.455000px;}
.yb1{bottom:475.455000px;}
.y24{bottom:476.895000px;}
.y48{bottom:479.055000px;}
.yd1{bottom:480.495000px;}
.ybe{bottom:492.735000px;}
.y73{bottom:495.435000px;}
.y23{bottom:497.595000px;}
.yb0{bottom:506.595000px;}
.yd0{bottom:506.955000px;}
.y47{bottom:510.195000px;}
.y22{bottom:518.295000px;}
.ybd{bottom:523.875000px;}
.y72{bottom:526.395000px;}
.y5a{bottom:528.555000px;}
.yaf{bottom:537.555000px;}
.y21{bottom:538.995000px;}
.y46{bottom:541.155000px;}
.ycf{bottom:545.835000px;}
.ybc{bottom:554.835000px;}
.y71{bottom:557.535000px;}
.y20{bottom:559.695000px;}
.yce{bottom:566.535000px;}
.yae{bottom:568.695000px;}
.y45{bottom:572.295000px;}
.y1f{bottom:580.395000px;}
.ybb{bottom:585.975000px;}
.y70{bottom:588.495000px;}
.y59{bottom:590.655000px;}
.yad{bottom:599.655000px;}
.y1e{bottom:601.095000px;}
.y44{bottom:603.255000px;}
.ycd{bottom:605.805000px;}
.yba{bottom:617.145000px;}
.y6f{bottom:619.665000px;}
.y1d{bottom:621.645000px;}
.yac{bottom:630.825000px;}
.y43{bottom:634.245000px;}
.y1c{bottom:642.345000px;}
.ycc{bottom:648.645000px;}
.y6e{bottom:650.625000px;}
.y58{bottom:652.785000px;}
.y8a{bottom:657.645000px;}
.yab{bottom:661.785000px;}
.y1b{bottom:663.045000px;}
.y42{bottom:665.385000px;}
.y6d{bottom:681.765000px;}
.y1a{bottom:683.745000px;}
.y89{bottom:688.785000px;}
.yaa{bottom:692.925000px;}
.y41{bottom:696.345000px;}
.y19{bottom:704.445000px;}
.y6c{bottom:712.725000px;}
.y57{bottom:714.885000px;}
.y88{bottom:719.745000px;}
.ya9{bottom:723.885000px;}
.y18{bottom:725.145000px;}
.y40{bottom:727.485000px;}
.y6b{bottom:743.865000px;}
.y17{bottom:745.845000px;}
.y87{bottom:750.705000px;}
.ycb{bottom:750.885000px;}
.ya8{bottom:754.845000px;}
.y3f{bottom:758.445000px;}
.y16{bottom:766.545000px;}
.y6a{bottom:774.825000px;}
.y56{bottom:776.985000px;}
.yca{bottom:781.845000px;}
.ya7{bottom:785.985000px;}
.y15{bottom:787.245000px;}
.y86{bottom:787.785000px;}
.y3e{bottom:789.585000px;}
.y69{bottom:805.965000px;}
.y14{bottom:807.945000px;}
.ya6{bottom:816.945000px;}
.y85{bottom:818.925000px;}
.y3d{bottom:820.545000px;}
.yc9{bottom:821.265000px;}
.y13{bottom:828.645000px;}
.y68{bottom:836.925000px;}
.y55{bottom:839.085000px;}
.ya5{bottom:848.085000px;}
.y12{bottom:849.345000px;}
.y84{bottom:849.885000px;}
.y3c{bottom:851.685000px;}
.yc8{bottom:864.105000px;}
.y67{bottom:868.065000px;}
.y11{bottom:870.045000px;}
.y3b{bottom:878.910000px;}
.ya4{bottom:879.090000px;}
.y83{bottom:881.070000px;}
.y10{bottom:890.790000px;}
.y66{bottom:899.070000px;}
.y54{bottom:901.230000px;}
.ya3{bottom:910.230000px;}
.yf{bottom:911.490000px;}
.y82{bottom:912.030000px;}
.y65{bottom:930.210000px;}
.ye{bottom:932.190000px;}
.y81{bottom:943.170000px;}
.ya2{bottom:947.310000px;}
.y3a{bottom:952.890000px;}
.yd{bottom:953.430000px;}
.y64{bottom:961.170000px;}
.y53{bottom:963.330000px;}
.y39{bottom:973.590000px;}
.y80{bottom:974.130000px;}
.yc{bottom:978.450000px;}
.y9c{bottom:980.189919px;}
.ya1{bottom:980.250000px;}
.y63{bottom:992.310000px;}
.y38{bottom:994.290000px;}
.y7f{bottom:1005.270000px;}
.yb{bottom:1005.990000px;}
.y37{bottom:1014.990000px;}
.y62{bottom:1023.270000px;}
.y52{bottom:1025.430000px;}
.ya{bottom:1033.530000px;}
.y36{bottom:1035.690000px;}
.y7e{bottom:1036.230000px;}
.y61{bottom:1054.410000px;}
.y35{bottom:1056.390000px;}
.y9{bottom:1061.250000px;}
.y7d{bottom:1075.470000px;}
.y34{bottom:1077.090000px;}
.y60{bottom:1085.370000px;}
.y51{bottom:1087.530000px;}
.y8{bottom:1088.790000px;}
.y33{bottom:1097.790000px;}
.y7{bottom:1115.610000px;}
.y32{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h9{height:52.171875px;}
.h7{height:54.878906px;}
.h3{height:59.383125px;}
.he{height:61.150300px;}
.hb{height:61.297197px;}
.hf{height:61.721798px;}
.hc{height:61.870068px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:70.606406px;}
.h4{height:74.820586px;}
.h5{height:85.052461px;}
.hd{height:91.718661px;}
.ha{height:230.158667px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:462.983214px;}
.w3{width:596.923308px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:2.421663px;}
.x4{left:127.655987px;}
.xb{left:134.315987px;}
.xc{left:140.795987px;}
.x6{left:144.575987px;}
.xd{left:152.849987px;}
.x16{left:154.469987px;}
.xa{left:160.049987px;}
.x2{left:170.129987px;}
.x19{left:176.069987px;}
.x10{left:177.509987px;}
.x17{left:178.769987px;}
.x9{left:181.649987px;}
.x5{left:209.009987px;}
.x8{left:212.789987px;}
.x12{left:258.167575px;}
.x11{left:265.169987px;}
.x7{left:281.594987px;}
.x18{left:306.074987px;}
.x15{left:467.924987px;}
.x1{left:486.104987px;}
.x14{left:489.164987px;}
.x13{left:721.229987px;}
.xf{left:766.949987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-2.281536pt;}
.lsa{letter-spacing:-2.171535pt;}
.ls9{letter-spacing:-0.700320pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.065689pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.805248pt;}
.ls7{letter-spacing:0.950047pt;}
.ls14{letter-spacing:2.816000pt;}
.ls13{letter-spacing:7.680000pt;}
.ls5{letter-spacing:10.880000pt;}
.ls0{letter-spacing:35.200000pt;}
.ls3{letter-spacing:57.242027pt;}
.ls11{letter-spacing:2059.306667pt;}
.ws2{word-spacing:-18.720000pt;}
.ws15{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.448000pt;}
.ws14{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.299715pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:44.018649pt;}
.wse{word-spacing:83.745807pt;}
.wsb{word-spacing:101.383555pt;}
.ws9{word-spacing:113.489864pt;}
.ws7{word-spacing:117.561493pt;}
.ws8{word-spacing:157.941192pt;}
.ws6{word-spacing:174.374285pt;}
.wsd{word-spacing:311.807111pt;}
.wsa{word-spacing:352.523242pt;}
.ws4{word-spacing:386.528942pt;}
.ws3{word-spacing:391.868204pt;}
.ws5{word-spacing:405.486988pt;}
._30{margin-left:-5.012741pt;}
._2{margin-left:-3.709440pt;}
._1{margin-left:-2.414080pt;}
._0{margin-left:-1.295360pt;}
._3{width:1.000960pt;}
._6{width:1.924053pt;}
._5{width:2.840533pt;}
._b{width:4.288000pt;}
._f{width:5.248000pt;}
._14{width:6.336000pt;}
._18{width:7.776000pt;}
._1a{width:8.672000pt;}
._17{width:9.920000pt;}
._13{width:11.328000pt;}
._9{width:12.864000pt;}
._a{width:13.847040pt;}
._e{width:14.748587pt;}
._8{width:17.024000pt;}
._7{width:17.984000pt;}
._16{width:19.285120pt;}
._4{width:20.193920pt;}
._15{width:21.792000pt;}
._11{width:23.456000pt;}
._12{width:24.672000pt;}
._20{width:26.304000pt;}
._19{width:27.392000pt;}
._c{width:28.352000pt;}
._d{width:29.536000pt;}
._1f{width:34.368000pt;}
._10{width:35.456000pt;}
._39{width:42.304000pt;}
._36{width:43.776000pt;}
._1d{width:44.928000pt;}
._1e{width:46.026667pt;}
._37{width:48.689067pt;}
._38{width:49.678933pt;}
._1b{width:52.096000pt;}
._1c{width:53.450667pt;}
._2c{width:59.782327pt;}
._3a{width:74.752000pt;}
._3b{width:76.032000pt;}
._29{width:79.495891pt;}
._25{width:81.109839pt;}
._24{width:101.919026pt;}
._27{width:104.673012pt;}
._28{width:125.139732pt;}
._23{width:129.857118pt;}
._2f{width:132.695131pt;}
._33{width:156.662154pt;}
._31{width:159.365294pt;}
._26{width:169.244033pt;}
._32{width:175.976256pt;}
._21{width:189.661541pt;}
._22{width:191.254172pt;}
._2a{width:206.273040pt;}
._34{width:218.655334pt;}
._35{width:266.195177pt;}
._2b{width:307.844943pt;}
._2e{width:321.287086pt;}
._2d{width:324.899095pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:61.198859pt;}
.fs5{font-size:61.345872pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:5.075728pt;}
.ya0{bottom:5.096219pt;}
.y9f{bottom:25.462018pt;}
.y93{bottom:25.535934pt;}
.y9e{bottom:45.861638pt;}
.y92{bottom:45.995868pt;}
.y9d{bottom:66.227705pt;}
.y91{bottom:66.455802pt;}
.y6{bottom:72.992000pt;}
.y90{bottom:86.915737pt;}
.y5{bottom:96.672000pt;}
.y8f{bottom:107.375671pt;}
.y4{bottom:120.032000pt;}
.y8e{bottom:127.835605pt;}
.y3{bottom:137.146667pt;}
.y8d{bottom:148.288753pt;}
.y2{bottom:154.266667pt;}
.y8c{bottom:168.782618pt;}
.y31{bottom:184.666667pt;}
.y9b{bottom:188.186667pt;}
.yc7{bottom:189.626667pt;}
.yb9{bottom:191.226667pt;}
.y7c{bottom:192.026667pt;}
.y5f{bottom:193.786667pt;}
.y30{bottom:203.066667pt;}
.y50{bottom:204.986667pt;}
.yd9{bottom:206.266667pt;}
.yc6{bottom:217.146667pt;}
.y7b{bottom:219.546667pt;}
.y9a{bottom:221.146667pt;}
.y2f{bottom:221.466667pt;}
.yb8{bottom:224.026667pt;}
.y4f{bottom:232.666667pt;}
.yd8{bottom:233.786667pt;}
.y2e{bottom:239.866667pt;}
.yc5{bottom:244.826667pt;}
.y7a{bottom:247.066667pt;}
.y99{bottom:248.666667pt;}
.y5e{bottom:248.986667pt;}
.yb7{bottom:256.986667pt;}
.y2d{bottom:258.266667pt;}
.y4e{bottom:260.186667pt;}
.yd7{bottom:261.466667pt;}
.yc4{bottom:272.346667pt;}
.y79{bottom:274.746667pt;}
.y98{bottom:276.346667pt;}
.y2c{bottom:276.666667pt;}
.yb6{bottom:284.666667pt;}
.y4d{bottom:287.866667pt;}
.yd6{bottom:288.986667pt;}
.y2b{bottom:295.066667pt;}
.yc3{bottom:300.066667pt;}
.y78{bottom:302.306667pt;}
.y97{bottom:303.906667pt;}
.y5d{bottom:304.226667pt;}
.yb5{bottom:312.226667pt;}
.y2a{bottom:313.506667pt;}
.y4c{bottom:315.426667pt;}
.yd5{bottom:316.706667pt;}
.yc2{bottom:327.586667pt;}
.y77{bottom:329.986667pt;}
.y29{bottom:331.906667pt;}
.y96{bottom:336.866667pt;}
.yb4{bottom:339.906667pt;}
.y4b{bottom:343.106667pt;}
.yd4{bottom:344.226667pt;}
.y28{bottom:350.306667pt;}
.yc1{bottom:355.266667pt;}
.y76{bottom:357.506667pt;}
.y5c{bottom:359.426667pt;}
.y95{bottom:366.306667pt;}
.y8b{bottom:366.346630pt;}
.yb3{bottom:367.426667pt;}
.y27{bottom:368.706667pt;}
.y4a{bottom:370.626667pt;}
.yd3{bottom:371.906667pt;}
.yc0{bottom:382.786667pt;}
.y75{bottom:385.186667pt;}
.y26{bottom:387.106667pt;}
.yb2{bottom:395.106667pt;}
.y49{bottom:398.306667pt;}
.yd2{bottom:399.426667pt;}
.y25{bottom:405.506667pt;}
.ybf{bottom:410.466667pt;}
.y74{bottom:412.706667pt;}
.y5b{bottom:414.626667pt;}
.yb1{bottom:422.626667pt;}
.y24{bottom:423.906667pt;}
.y48{bottom:425.826667pt;}
.yd1{bottom:427.106667pt;}
.ybe{bottom:437.986667pt;}
.y73{bottom:440.386667pt;}
.y23{bottom:442.306667pt;}
.yb0{bottom:450.306667pt;}
.yd0{bottom:450.626667pt;}
.y47{bottom:453.506667pt;}
.y22{bottom:460.706667pt;}
.ybd{bottom:465.666667pt;}
.y72{bottom:467.906667pt;}
.y5a{bottom:469.826667pt;}
.yaf{bottom:477.826667pt;}
.y21{bottom:479.106667pt;}
.y46{bottom:481.026667pt;}
.ycf{bottom:485.186667pt;}
.ybc{bottom:493.186667pt;}
.y71{bottom:495.586667pt;}
.y20{bottom:497.506667pt;}
.yce{bottom:503.586667pt;}
.yae{bottom:505.506667pt;}
.y45{bottom:508.706667pt;}
.y1f{bottom:515.906667pt;}
.ybb{bottom:520.866667pt;}
.y70{bottom:523.106667pt;}
.y59{bottom:525.026667pt;}
.yad{bottom:533.026667pt;}
.y1e{bottom:534.306667pt;}
.y44{bottom:536.226667pt;}
.ycd{bottom:538.493333pt;}
.yba{bottom:548.573333pt;}
.y6f{bottom:550.813333pt;}
.y1d{bottom:552.573333pt;}
.yac{bottom:560.733333pt;}
.y43{bottom:563.773333pt;}
.y1c{bottom:570.973333pt;}
.ycc{bottom:576.573333pt;}
.y6e{bottom:578.333333pt;}
.y58{bottom:580.253333pt;}
.y8a{bottom:584.573333pt;}
.yab{bottom:588.253333pt;}
.y1b{bottom:589.373333pt;}
.y42{bottom:591.453333pt;}
.y6d{bottom:606.013333pt;}
.y1a{bottom:607.773333pt;}
.y89{bottom:612.253333pt;}
.yaa{bottom:615.933333pt;}
.y41{bottom:618.973333pt;}
.y19{bottom:626.173333pt;}
.y6c{bottom:633.533333pt;}
.y57{bottom:635.453333pt;}
.y88{bottom:639.773333pt;}
.ya9{bottom:643.453333pt;}
.y18{bottom:644.573333pt;}
.y40{bottom:646.653333pt;}
.y6b{bottom:661.213333pt;}
.y17{bottom:662.973333pt;}
.y87{bottom:667.293333pt;}
.ycb{bottom:667.453333pt;}
.ya8{bottom:670.973333pt;}
.y3f{bottom:674.173333pt;}
.y16{bottom:681.373333pt;}
.y6a{bottom:688.733333pt;}
.y56{bottom:690.653333pt;}
.yca{bottom:694.973333pt;}
.ya7{bottom:698.653333pt;}
.y15{bottom:699.773333pt;}
.y86{bottom:700.253333pt;}
.y3e{bottom:701.853333pt;}
.y69{bottom:716.413333pt;}
.y14{bottom:718.173333pt;}
.ya6{bottom:726.173333pt;}
.y85{bottom:727.933333pt;}
.y3d{bottom:729.373333pt;}
.yc9{bottom:730.013333pt;}
.y13{bottom:736.573333pt;}
.y68{bottom:743.933333pt;}
.y55{bottom:745.853333pt;}
.ya5{bottom:753.853333pt;}
.y12{bottom:754.973333pt;}
.y84{bottom:755.453333pt;}
.y3c{bottom:757.053333pt;}
.yc8{bottom:768.093333pt;}
.y67{bottom:771.613333pt;}
.y11{bottom:773.373333pt;}
.y3b{bottom:781.253333pt;}
.ya4{bottom:781.413333pt;}
.y83{bottom:783.173333pt;}
.y10{bottom:791.813333pt;}
.y66{bottom:799.173333pt;}
.y54{bottom:801.093333pt;}
.ya3{bottom:809.093333pt;}
.yf{bottom:810.213333pt;}
.y82{bottom:810.693333pt;}
.y65{bottom:826.853333pt;}
.ye{bottom:828.613333pt;}
.y81{bottom:838.373333pt;}
.ya2{bottom:842.053333pt;}
.y3a{bottom:847.013333pt;}
.yd{bottom:847.493333pt;}
.y64{bottom:854.373333pt;}
.y53{bottom:856.293333pt;}
.y39{bottom:865.413333pt;}
.y80{bottom:865.893333pt;}
.yc{bottom:869.733333pt;}
.y9c{bottom:871.279928pt;}
.ya1{bottom:871.333333pt;}
.y63{bottom:882.053333pt;}
.y38{bottom:883.813333pt;}
.y7f{bottom:893.573333pt;}
.yb{bottom:894.213333pt;}
.y37{bottom:902.213333pt;}
.y62{bottom:909.573333pt;}
.y52{bottom:911.493333pt;}
.ya{bottom:918.693333pt;}
.y36{bottom:920.613333pt;}
.y7e{bottom:921.093333pt;}
.y61{bottom:937.253333pt;}
.y35{bottom:939.013333pt;}
.y9{bottom:943.333333pt;}
.y7d{bottom:955.973333pt;}
.y34{bottom:957.413333pt;}
.y60{bottom:964.773333pt;}
.y51{bottom:966.693333pt;}
.y8{bottom:967.813333pt;}
.y33{bottom:975.813333pt;}
.y7{bottom:991.653333pt;}
.y32{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h9{height:46.375000pt;}
.h7{height:48.781250pt;}
.h3{height:52.785000pt;}
.he{height:54.355822pt;}
.hb{height:54.486397pt;}
.hf{height:54.863821pt;}
.hc{height:54.995616pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:62.761250pt;}
.h4{height:66.507188pt;}
.h5{height:75.602187pt;}
.hd{height:81.527699pt;}
.ha{height:204.585482pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:411.540635pt;}
.w3{width:530.598496pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:2.152589pt;}
.x4{left:113.471988pt;}
.xb{left:119.391988pt;}
.xc{left:125.151988pt;}
.x6{left:128.511988pt;}
.xd{left:135.866655pt;}
.x16{left:137.306655pt;}
.xa{left:142.266655pt;}
.x2{left:151.226655pt;}
.x19{left:156.506655pt;}
.x10{left:157.786655pt;}
.x17{left:158.906655pt;}
.x9{left:161.466655pt;}
.x5{left:185.786655pt;}
.x8{left:189.146655pt;}
.x12{left:229.482289pt;}
.x11{left:235.706655pt;}
.x7{left:250.306655pt;}
.x18{left:272.066655pt;}
.x15{left:415.933322pt;}
.x1{left:432.093322pt;}
.x14{left:434.813322pt;}
.x13{left:641.093322pt;}
.xf{left:681.733322pt;}
.x3{left:718.373322pt;}
}




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