
    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_c27508484fbdcd2e7471b8c9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_00a86e1c74f5cac7269eae01.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e4e5eabbbd64d111e6d463c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3dd94e90e9c6b2e5041d2850.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4eeacd2d84027aa22032a911.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a470a1be69d2b63c243b3d45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_742ffb2422f6ba59316dceb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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;}
.m9{transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249861,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249861,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249861,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249864,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249864,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249864,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.010620px;}
.ls2{letter-spacing:0.021282px;}
.ls7{letter-spacing:0.095400px;}
.ls4{letter-spacing:0.182032px;}
.ls6{letter-spacing:0.332100px;}
.ls5{letter-spacing:0.378514px;}
.lsb{letter-spacing:0.731040px;}
.ls9{letter-spacing:16.580393px;}
.ls3{letter-spacing:34.015846px;}
.ls8{letter-spacing:59.230776px;}
.ls0{letter-spacing:2669.182932px;}
.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:-18.021275px;}
.ws1{word-spacing:-17.999993px;}
.ws2{word-spacing:-12.059995px;}
.ws9{word-spacing:-11.795424px;}
.ws5{word-spacing:-11.606073px;}
.ws7{word-spacing:-11.154912px;}
.wsb{word-spacing:-10.812639px;}
.wsc{word-spacing:-9.719996px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:32.400578px;}
.ws6{word-spacing:33.532549px;}
.ws4{word-spacing:35.059107px;}
.ws8{word-spacing:35.211887px;}
._15{margin-left:-2.771280px;}
._1{margin-left:-1.632127px;}
._0{width:1.142108px;}
._10{width:2.240032px;}
._3{width:3.410988px;}
._2{width:4.552824px;}
._7{width:5.776078px;}
._14{width:6.955413px;}
._a{width:8.025455px;}
._9{width:9.346669px;}
._8{width:10.383512px;}
._f{width:11.504336px;}
._4{width:13.291232px;}
._5{width:14.308164px;}
._13{width:15.345918px;}
._b{width:16.400797px;}
._c{width:21.552465px;}
._d{width:22.604647px;}
._16{width:24.246502px;}
._39{width:25.298776px;}
._1a{width:32.440291px;}
._19{width:34.418393px;}
._6{width:38.591166px;}
._e{width:39.878340px;}
._18{width:45.224023px;}
._1b{width:48.448219px;}
._34{width:49.619135px;}
._1c{width:51.563423px;}
._1e{width:54.312528px;}
._31{width:58.782441px;}
._2e{width:65.798099px;}
._27{width:70.072169px;}
._2d{width:73.722435px;}
._38{width:75.983692px;}
._21{width:90.693008px;}
._2c{width:100.513653px;}
._26{width:103.365403px;}
._23{width:136.499085px;}
._36{width:140.858447px;}
._20{width:149.662725px;}
._2f{width:153.105924px;}
._28{width:156.708134px;}
._35{width:160.663493px;}
._25{width:161.910240px;}
._37{width:166.073993px;}
._17{width:198.127361px;}
._12{width:202.715012px;}
._1d{width:231.771172px;}
._29{width:317.503777px;}
._33{width:356.390328px;}
._2b{width:357.552970px;}
._24{width:392.369296px;}
._30{width:438.802798px;}
._2a{width:442.209116px;}
._32{width:448.782714px;}
._1f{width:464.153978px;}
._22{width:550.075873px;}
._11{width:1292.452650px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.879999px;}
.fs9{font-size:38.879984px;}
.fs7{font-size:38.894384px;}
.fs5{font-size:40.125584px;}
.fs4{font-size:41.748463px;}
.fs6{font-size:42.429583px;}
.fs2{font-size:48.239981px;}
.fs8{font-size:59.759976px;}
.fsa{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.320036px;}
.y2{bottom:54.480240px;}
.y1{bottom:58.980276px;}
.y25{bottom:115.319954px;}
.y33{bottom:117.839953px;}
.y4f{bottom:139.619944px;}
.ybe{bottom:141.239944px;}
.y9f{bottom:143.220243px;}
.y24{bottom:146.459941px;}
.y32{bottom:148.979940px;}
.y9e{bottom:163.199935px;}
.y4e{bottom:170.579932px;}
.ybd{bottom:172.379931px;}
.y23{bottom:177.419929px;}
.y31{bottom:179.939928px;}
.y9d{bottom:182.999927px;}
.y9c{bottom:200.639920px;}
.y4d{bottom:201.719919px;}
.y9b{bottom:202.979919px;}
.ybc{bottom:203.339919px;}
.y22{bottom:208.559917px;}
.y30{bottom:211.079916px;}
.y9a{bottom:222.779911px;}
.y4c{bottom:232.679907px;}
.ybb{bottom:235.739906px;}
.yd4{bottom:238.619905px;}
.y21{bottom:239.519904px;}
.y2f{bottom:242.039903px;}
.y99{bottom:251.039900px;}
.y2e{bottom:261.479895px;}
.y4b{bottom:263.819894px;}
.y98{bottom:264.719894px;}
.yba{bottom:266.699893px;}
.yd3{bottom:269.579892px;}
.y20{bottom:270.659892px;}
.y2d{bottom:275.159890px;}
.y2c{bottom:289.019884px;}
.y97{bottom:290.279884px;}
.y4a{bottom:294.779882px;}
.yb9{bottom:297.839881px;}
.yd2{bottom:300.719880px;}
.y1f{bottom:301.619879px;}
.y2b{bottom:302.879879px;}
.y96{bottom:318.899872px;}
.y95{bottom:321.239872px;}
.y2a{bottom:323.939870px;}
.y49{bottom:325.919870px;}
.yb8{bottom:330.239868px;}
.yd1{bottom:331.679867px;}
.y1e{bottom:332.759867px;}
.y94{bottom:352.379859px;}
.y48{bottom:356.879857px;}
.yb7{bottom:361.199856px;}
.yd0{bottom:362.819855px;}
.y1d{bottom:363.719855px;}
.y93{bottom:383.339847px;}
.y47{bottom:388.019845px;}
.yb6{bottom:393.599843px;}
.ycf{bottom:393.779842px;}
.y1c{bottom:394.859842px;}
.y92{bottom:409.619836px;}
.y46{bottom:418.979832px;}
.yb5{bottom:424.559830px;}
.yce{bottom:424.919830px;}
.y1b{bottom:425.819830px;}
.y84{bottom:430.859828px;}
.y8e{bottom:437.699825px;}
.y80{bottom:438.419825px;}
.y45{bottom:450.119820px;}
.y85{bottom:453.719819px;}
.yb4{bottom:455.699818px;}
.y74{bottom:455.879818px;}
.y1a{bottom:456.779817px;}
.y86{bottom:463.799814px;}
.y75{bottom:466.859813px;}
.y44{bottom:481.079808px;}
.y76{bottom:485.579806px;}
.yb3{bottom:486.299805px;}
.ycd{bottom:487.019805px;}
.y87{bottom:487.559805px;}
.y19{bottom:487.919805px;}
.y77{bottom:504.299798px;}
.y43{bottom:509.879796px;}
.y88{bottom:511.499795px;}
.y42{bottom:512.219795px;}
.yb2{bottom:517.439793px;}
.ycc{bottom:517.979793px;}
.y18{bottom:518.879792px;}
.y8d{bottom:520.139792px;}
.y78{bottom:523.199791px;}
.y7f{bottom:525.899790px;}
.y89{bottom:535.259786px;}
.y79{bottom:541.919783px;}
.y41{bottom:543.179783px;}
.yb1{bottom:547.679781px;}
.ycb{bottom:549.119780px;}
.y17{bottom:550.019780px;}
.y8a{bottom:559.199776px;}
.y7a{bottom:560.639776px;}
.y29{bottom:571.259771px;}
.y40{bottom:571.979771px;}
.y3f{bottom:574.319770px;}
.yb0{bottom:574.679770px;}
.y7b{bottom:579.539768px;}
.yca{bottom:580.079768px;}
.y16{bottom:580.979768px;}
.y8b{bottom:582.959767px;}
.y7c{bottom:598.259761px;}
.yaf{bottom:601.679759px;}
.y3d{bottom:605.279758px;}
.y8c{bottom:606.899757px;}
.yc9{bottom:611.219756px;}
.y15{bottom:612.479755px;}
.y3e{bottom:613.559755px;}
.y7d{bottom:617.159753px;}
.y90{bottom:617.519753px;}
.y3c{bottom:625.799750px;}
.yae{bottom:627.779749px;}
.y91{bottom:628.679749px;}
.y8f{bottom:629.399748px;}
.y82{bottom:634.259746px;}
.y7e{bottom:635.879746px;}
.yc8{bottom:642.179743px;}
.y83{bottom:643.079743px;}
.y14{bottom:643.439743px;}
.y3b{bottom:645.419742px;}
.y81{bottom:647.219741px;}
.yad{bottom:653.339739px;}
.y3a{bottom:659.279736px;}
.y39{bottom:672.959731px;}
.yc7{bottom:673.319731px;}
.y13{bottom:674.579730px;}
.y73{bottom:680.879728px;}
.yac{bottom:684.299726px;}
.y38{bottom:686.819725px;}
.yc6{bottom:704.279718px;}
.y12{bottom:705.539718px;}
.y72{bottom:707.699717px;}
.y37{bottom:707.879717px;}
.y6e{bottom:714.719714px;}
.y5f{bottom:715.079714px;}
.yab{bottom:715.439714px;}
.y63{bottom:731.279707px;}
.y50{bottom:732.359707px;}
.yc5{bottom:735.419706px;}
.y11{bottom:736.679705px;}
.yaa{bottom:746.399701px;}
.y51{bottom:749.639700px;}
.y64{bottom:750.539700px;}
.y52{bottom:762.959695px;}
.yc4{bottom:766.019694px;}
.y10{bottom:767.639693px;}
.y65{bottom:768.359693px;}
.y53{bottom:776.279689px;}
.ya9{bottom:777.539689px;}
.y66{bottom:786.179686px;}
.y54{bottom:789.599684px;}
.yc3{bottom:797.519681px;}
.ya8{bottom:798.239681px;}
.yf{bottom:798.779680px;}
.y6d{bottom:799.319680px;}
.y55{bottom:802.919679px;}
.y67{bottom:803.819678px;}
.y5e{bottom:807.599677px;}
.y56{bottom:816.239674px;}
.ya7{bottom:818.219673px;}
.y68{bottom:821.639671px;}
.y28{bottom:827.399669px;}
.yc2{bottom:828.479669px;}
.y57{bottom:829.559668px;}
.ye{bottom:829.739668px;}
.ya6{bottom:838.019665px;}
.y69{bottom:839.459664px;}
.y58{bottom:842.879663px;}
.y59{bottom:856.199658px;}
.y6a{bottom:857.099657px;}
.ya5{bottom:857.999657px;}
.yc1{bottom:859.619656px;}
.yd{bottom:860.879656px;}
.y5a{bottom:869.519652px;}
.y6b{bottom:874.919650px;}
.ya4{bottom:877.799649px;}
.y5b{bottom:882.839647px;}
.yc0{bottom:890.579644px;}
.yc{bottom:891.839643px;}
.y6c{bottom:892.739643px;}
.y5c{bottom:896.159642px;}
.ya3{bottom:897.779641px;}
.y70{bottom:899.939640px;}
.y61{bottom:908.399637px;}
.y5d{bottom:909.479636px;}
.y71{bottom:911.099636px;}
.y6f{bottom:912.359635px;}
.ya2{bottom:917.579633px;}
.y62{bottom:918.839632px;}
.y60{bottom:921.179632px;}
.ybf{bottom:921.719631px;}
.yb{bottom:922.979631px;}
.ya1{bottom:945.839622px;}
.ya{bottom:953.579619px;}
.y27{bottom:953.939618px;}
.ya0{bottom:959.519616px;}
.y9{bottom:984.719606px;}
.y26{bottom:985.079606px;}
.y8{bottom:1016.039594px;}
.y36{bottom:1046.819581px;}
.y7{bottom:1047.179581px;}
.y35{bottom:1077.779569px;}
.y6{bottom:1078.139569px;}
.y5{bottom:1109.279556px;}
.y4{bottom:1139.879544px;}
.y34{bottom:1140.239544px;}
.h8{height:2.826561px;}
.h2{height:20.520000px;}
.hf{height:38.158578px;}
.hd{height:40.565628px;}
.hb{height:41.849730px;}
.ha{height:43.542343px;}
.hc{height:44.252729px;}
.h6{height:47.344903px;}
.h9{height:50.312792px;}
.he{height:58.651148px;}
.h10{height:62.327788px;}
.h11{height:65.010911px;}
.h3{height:70.628878px;}
.h1{height:70.664034px;}
.h5{height:72.562471px;}
.h7{height:75.093720px;}
.h4{height:93.936408px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.379957px;}
.x6{left:107.999338px;}
.x1b{left:109.259956px;}
.xf{left:117.179765px;}
.x40{left:118.799952px;}
.x4c{left:127.620010px;}
.x4f{left:128.879948px;}
.x13{left:133.379947px;}
.x4e{left:135.899946px;}
.x28{left:138.779944px;}
.x35{left:142.199943px;}
.x27{left:145.619892px;}
.x34{left:149.219934px;}
.x17{left:150.659940px;}
.x48{left:152.638920px;}
.x33{left:155.159929px;}
.x18{left:156.421082px;}
.x26{left:162.899935px;}
.x11{left:163.979934px;}
.x19{left:165.420338px;}
.x4{left:171.179937px;}
.x2b{left:172.979597px;}
.x38{left:174.959306px;}
.x3f{left:177.119929px;}
.x12{left:183.959926px;}
.x3e{left:196.919921px;}
.x4a{left:200.699920px;}
.x21{left:206.099918px;}
.x4b{left:208.079917px;}
.xa{left:217.978868px;}
.x29{left:230.939908px;}
.x36{left:232.919907px;}
.x49{left:236.159906px;}
.x42{left:246.419901px;}
.x41{left:251.459147px;}
.x3{left:253.259899px;}
.x43{left:255.599898px;}
.x44{left:271.619891px;}
.x8{left:288.898972px;}
.xe{left:292.679588px;}
.x9{left:296.998837px;}
.xb{left:304.198933px;}
.x22{left:310.499876px;}
.x23{left:322.739871px;}
.xd{left:331.379526px;}
.x10{left:347.399513px;}
.xc{left:360.358907px;}
.x5{left:366.119854px;}
.x2a{left:376.919849px;}
.x37{left:380.879848px;}
.x1c{left:396.359152px;}
.x45{left:415.259834px;}
.x16{left:443.699823px;}
.x14{left:445.319822px;}
.x7{left:446.578823px;}
.x3b{left:469.439812px;}
.x2e{left:471.959811px;}
.x3a{left:475.919802px;}
.x2d{left:478.619799px;}
.x39{left:481.319796px;}
.x2c{left:492.299803px;}
.x31{left:499.679050px;}
.x3d{left:506.699884px;}
.x46{left:511.019796px;}
.x47{left:534.059786px;}
.x2f{left:557.819777px;}
.x1f{left:562.679775px;}
.x20{left:574.019770px;}
.x24{left:617.579753px;}
.x25{left:624.419750px;}
.x4d{left:630.899748px;}
.x30{left:697.859721px;}
.x3c{left:699.299720px;}
.x1d{left:725.939710px;}
.x1e{left:731.339707px;}
.x32{left:756.539697px;}
.x1a{left:758.699697px;}
.x50{left:764.099694px;}
.x15{left:770.579692px;}
.x2{left:786.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.009440pt;}
.ls2{letter-spacing:0.018917pt;}
.ls7{letter-spacing:0.084800pt;}
.ls4{letter-spacing:0.161806pt;}
.ls6{letter-spacing:0.295200pt;}
.ls5{letter-spacing:0.336457pt;}
.lsb{letter-spacing:0.649813pt;}
.ls9{letter-spacing:14.738127pt;}
.ls3{letter-spacing:30.236308pt;}
.ls8{letter-spacing:52.649579pt;}
.ls0{letter-spacing:2372.607051pt;}
.ws3{word-spacing:-16.018911pt;}
.ws1{word-spacing:-15.999994pt;}
.ws2{word-spacing:-10.719996pt;}
.ws9{word-spacing:-10.484821pt;}
.ws5{word-spacing:-10.316509pt;}
.ws7{word-spacing:-9.915478pt;}
.wsb{word-spacing:-9.611235pt;}
.wsc{word-spacing:-8.639997pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:28.800514pt;}
.ws6{word-spacing:29.806710pt;}
.ws4{word-spacing:31.163651pt;}
.ws8{word-spacing:31.299455pt;}
._15{margin-left:-2.463360pt;}
._1{margin-left:-1.450780pt;}
._0{width:1.015207pt;}
._10{width:1.991140pt;}
._3{width:3.031989pt;}
._2{width:4.046955pt;}
._7{width:5.134292pt;}
._14{width:6.182589pt;}
._a{width:7.133738pt;}
._9{width:8.308151pt;}
._8{width:9.229788pt;}
._f{width:10.226076pt;}
._4{width:11.814429pt;}
._5{width:12.718368pt;}
._13{width:13.640816pt;}
._b{width:14.578487pt;}
._c{width:19.157747pt;}
._d{width:20.093020pt;}
._16{width:21.552446pt;}
._39{width:22.487801pt;}
._1a{width:28.835814pt;}
._19{width:30.594127pt;}
._6{width:34.303259pt;}
._e{width:35.447413pt;}
._18{width:40.199131pt;}
._1b{width:43.065084pt;}
._34{width:44.105898pt;}
._1c{width:45.834154pt;}
._1e{width:48.277803pt;}
._31{width:52.251059pt;}
._2e{width:58.487199pt;}
._27{width:62.286373pt;}
._2d{width:65.531053pt;}
._38{width:67.541059pt;}
._21{width:80.616007pt;}
._2c{width:89.345469pt;}
._26{width:91.880358pt;}
._23{width:121.332520pt;}
._36{width:125.207508pt;}
._20{width:133.033533pt;}
._2f{width:136.094154pt;}
._28{width:139.296119pt;}
._35{width:142.811994pt;}
._25{width:143.920213pt;}
._37{width:147.621327pt;}
._17{width:176.113210pt;}
._12{width:180.191122pt;}
._1d{width:206.018819pt;}
._29{width:282.225580pt;}
._33{width:316.791403pt;}
._2b{width:317.824863pt;}
._24{width:348.772708pt;}
._30{width:390.046931pt;}
._2a{width:393.074770pt;}
._32{width:398.917968pt;}
._1f{width:412.581314pt;}
._22{width:488.956332pt;}
._11{width:1148.846800pt;}
.fs3{font-size:2.559999pt;}
.fs9{font-size:34.559986pt;}
.fs7{font-size:34.572786pt;}
.fs5{font-size:35.667186pt;}
.fs4{font-size:37.109745pt;}
.fs6{font-size:37.715185pt;}
.fs2{font-size:42.879983pt;}
.fs8{font-size:53.119979pt;}
.fsa{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.840032pt;}
.y2{bottom:48.426880pt;}
.y1{bottom:52.426912pt;}
.y25{bottom:102.506626pt;}
.y33{bottom:104.746625pt;}
.y4f{bottom:124.106617pt;}
.ybe{bottom:125.546616pt;}
.y9f{bottom:127.306882pt;}
.y24{bottom:130.186615pt;}
.y32{bottom:132.426614pt;}
.y9e{bottom:145.066609pt;}
.y4e{bottom:151.626606pt;}
.ybd{bottom:153.226605pt;}
.y23{bottom:157.706604pt;}
.y31{bottom:159.946603pt;}
.y9d{bottom:162.666602pt;}
.y9c{bottom:178.346595pt;}
.y4d{bottom:179.306595pt;}
.y9b{bottom:180.426594pt;}
.ybc{bottom:180.746594pt;}
.y22{bottom:185.386593pt;}
.y30{bottom:187.626592pt;}
.y9a{bottom:198.026587pt;}
.y4c{bottom:206.826584pt;}
.ybb{bottom:209.546583pt;}
.yd4{bottom:212.106582pt;}
.y21{bottom:212.906582pt;}
.y2f{bottom:215.146581pt;}
.y99{bottom:223.146577pt;}
.y2e{bottom:232.426574pt;}
.y4b{bottom:234.506573pt;}
.y98{bottom:235.306573pt;}
.yba{bottom:237.066572pt;}
.yd3{bottom:239.626571pt;}
.y20{bottom:240.586570pt;}
.y2d{bottom:244.586569pt;}
.y2c{bottom:256.906564pt;}
.y97{bottom:258.026563pt;}
.y4a{bottom:262.026562pt;}
.yb9{bottom:264.746561pt;}
.yd2{bottom:267.306560pt;}
.y1f{bottom:268.106559pt;}
.y2b{bottom:269.226559pt;}
.y96{bottom:283.466553pt;}
.y95{bottom:285.546552pt;}
.y2a{bottom:287.946551pt;}
.y49{bottom:289.706551pt;}
.yb8{bottom:293.546549pt;}
.yd1{bottom:294.826549pt;}
.y1e{bottom:295.786548pt;}
.y94{bottom:313.226541pt;}
.y48{bottom:317.226540pt;}
.yb7{bottom:321.066538pt;}
.yd0{bottom:322.506538pt;}
.y1d{bottom:323.306537pt;}
.y93{bottom:340.746530pt;}
.y47{bottom:344.906529pt;}
.yb6{bottom:349.866527pt;}
.ycf{bottom:350.026527pt;}
.y1c{bottom:350.986526pt;}
.y92{bottom:364.106521pt;}
.y46{bottom:372.426518pt;}
.yb5{bottom:377.386516pt;}
.yce{bottom:377.706516pt;}
.y1b{bottom:378.506515pt;}
.y84{bottom:382.986513pt;}
.y8e{bottom:389.066511pt;}
.y80{bottom:389.706511pt;}
.y45{bottom:400.106507pt;}
.y85{bottom:403.306505pt;}
.yb4{bottom:405.066505pt;}
.y74{bottom:405.226505pt;}
.y1a{bottom:406.026504pt;}
.y86{bottom:412.266502pt;}
.y75{bottom:414.986501pt;}
.y44{bottom:427.626496pt;}
.y76{bottom:431.626494pt;}
.yb3{bottom:432.266494pt;}
.ycd{bottom:432.906494pt;}
.y87{bottom:433.386493pt;}
.y19{bottom:433.706493pt;}
.y77{bottom:448.266487pt;}
.y43{bottom:453.226485pt;}
.y88{bottom:454.666485pt;}
.y42{bottom:455.306485pt;}
.yb2{bottom:459.946483pt;}
.ycc{bottom:460.426482pt;}
.y18{bottom:461.226482pt;}
.y8d{bottom:462.346482pt;}
.y78{bottom:465.066481pt;}
.y7f{bottom:467.466480pt;}
.y89{bottom:475.786476pt;}
.y79{bottom:481.706474pt;}
.y41{bottom:482.826474pt;}
.yb1{bottom:486.826472pt;}
.ycb{bottom:488.106471pt;}
.y17{bottom:488.906471pt;}
.y8a{bottom:497.066468pt;}
.y7a{bottom:498.346467pt;}
.y29{bottom:507.786464pt;}
.y40{bottom:508.426463pt;}
.y3f{bottom:510.506462pt;}
.yb0{bottom:510.826462pt;}
.y7b{bottom:515.146461pt;}
.yca{bottom:515.626460pt;}
.y16{bottom:516.426460pt;}
.y8b{bottom:518.186459pt;}
.y7c{bottom:531.786454pt;}
.yaf{bottom:534.826453pt;}
.y3d{bottom:538.026451pt;}
.y8c{bottom:539.466451pt;}
.yc9{bottom:543.306449pt;}
.y15{bottom:544.426449pt;}
.y3e{bottom:545.386449pt;}
.y7d{bottom:548.586447pt;}
.y90{bottom:548.906447pt;}
.y3c{bottom:556.266444pt;}
.yae{bottom:558.026443pt;}
.y91{bottom:558.826443pt;}
.y8f{bottom:559.466443pt;}
.y82{bottom:563.786441pt;}
.y7e{bottom:565.226441pt;}
.yc8{bottom:570.826438pt;}
.y83{bottom:571.626438pt;}
.y14{bottom:571.946438pt;}
.y3b{bottom:573.706437pt;}
.y81{bottom:575.306437pt;}
.yad{bottom:580.746434pt;}
.y3a{bottom:586.026432pt;}
.y39{bottom:598.186427pt;}
.yc7{bottom:598.506427pt;}
.y13{bottom:599.626427pt;}
.y73{bottom:605.226425pt;}
.yac{bottom:608.266423pt;}
.y38{bottom:610.506422pt;}
.yc6{bottom:626.026416pt;}
.y12{bottom:627.146416pt;}
.y72{bottom:629.066415pt;}
.y37{bottom:629.226415pt;}
.y6e{bottom:635.306413pt;}
.y5f{bottom:635.626412pt;}
.yab{bottom:635.946412pt;}
.y63{bottom:650.026407pt;}
.y50{bottom:650.986406pt;}
.yc5{bottom:653.706405pt;}
.y11{bottom:654.826405pt;}
.yaa{bottom:663.466401pt;}
.y51{bottom:666.346400pt;}
.y64{bottom:667.146400pt;}
.y52{bottom:678.186395pt;}
.yc4{bottom:680.906394pt;}
.y10{bottom:682.346394pt;}
.y65{bottom:682.986393pt;}
.y53{bottom:690.026391pt;}
.ya9{bottom:691.146390pt;}
.y66{bottom:698.826387pt;}
.y54{bottom:701.866386pt;}
.yc3{bottom:708.906383pt;}
.ya8{bottom:709.546383pt;}
.yf{bottom:710.026383pt;}
.y6d{bottom:710.506382pt;}
.y55{bottom:713.706381pt;}
.y67{bottom:714.506381pt;}
.y5e{bottom:717.866380pt;}
.y56{bottom:725.546376pt;}
.ya7{bottom:727.306376pt;}
.y68{bottom:730.346375pt;}
.y28{bottom:735.466372pt;}
.yc2{bottom:736.426372pt;}
.y57{bottom:737.386372pt;}
.ye{bottom:737.546372pt;}
.ya6{bottom:744.906369pt;}
.y69{bottom:746.186368pt;}
.y58{bottom:749.226367pt;}
.y59{bottom:761.066362pt;}
.y6a{bottom:761.866362pt;}
.ya5{bottom:762.666362pt;}
.yc1{bottom:764.106361pt;}
.yd{bottom:765.226361pt;}
.y5a{bottom:772.906358pt;}
.y6b{bottom:777.706356pt;}
.ya4{bottom:780.266355pt;}
.y5b{bottom:784.746353pt;}
.yc0{bottom:791.626350pt;}
.yc{bottom:792.746350pt;}
.y6c{bottom:793.546349pt;}
.y5c{bottom:796.586348pt;}
.ya3{bottom:798.026347pt;}
.y70{bottom:799.946347pt;}
.y61{bottom:807.466344pt;}
.y5d{bottom:808.426343pt;}
.y71{bottom:809.866343pt;}
.y6f{bottom:810.986342pt;}
.ya2{bottom:815.626340pt;}
.y62{bottom:816.746340pt;}
.y60{bottom:818.826339pt;}
.ybf{bottom:819.306339pt;}
.yb{bottom:820.426338pt;}
.ya1{bottom:840.746330pt;}
.ya{bottom:847.626328pt;}
.y27{bottom:847.946327pt;}
.ya0{bottom:852.906326pt;}
.y9{bottom:875.306317pt;}
.y26{bottom:875.626316pt;}
.y8{bottom:903.146305pt;}
.y36{bottom:930.506294pt;}
.y7{bottom:930.826294pt;}
.y35{bottom:958.026283pt;}
.y6{bottom:958.346283pt;}
.y5{bottom:986.026272pt;}
.y4{bottom:1013.226261pt;}
.y34{bottom:1013.546261pt;}
.h8{height:2.512499pt;}
.h2{height:18.240000pt;}
.hf{height:33.918736pt;}
.hd{height:36.058336pt;}
.hb{height:37.199760pt;}
.ha{height:38.704305pt;}
.hc{height:39.335759pt;}
.h6{height:42.084358pt;}
.h9{height:44.722482pt;}
.he{height:52.134354pt;}
.h10{height:55.402478pt;}
.h11{height:57.787477pt;}
.h3{height:62.781225pt;}
.h1{height:62.812475pt;}
.h5{height:64.499974pt;}
.h7{height:66.749973pt;}
.h4{height:83.499029pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.559962pt;}
.x6{left:95.999411pt;}
.x1b{left:97.119961pt;}
.xf{left:104.159791pt;}
.x40{left:105.599958pt;}
.x4c{left:113.440009pt;}
.x4f{left:114.559954pt;}
.x13{left:118.559953pt;}
.x4e{left:120.799952pt;}
.x28{left:123.359951pt;}
.x35{left:126.399949pt;}
.x27{left:129.439904pt;}
.x34{left:132.639941pt;}
.x17{left:133.919946pt;}
.x48{left:135.679040pt;}
.x33{left:137.919937pt;}
.x18{left:139.040962pt;}
.x26{left:144.799942pt;}
.x11{left:145.759942pt;}
.x19{left:147.040301pt;}
.x4{left:152.159944pt;}
.x2b{left:153.759642pt;}
.x38{left:155.519383pt;}
.x3f{left:157.439937pt;}
.x12{left:163.519935pt;}
.x3e{left:175.039930pt;}
.x4a{left:178.399929pt;}
.x21{left:183.199927pt;}
.x4b{left:184.959926pt;}
.xa{left:193.758993pt;}
.x29{left:205.279918pt;}
.x36{left:207.039917pt;}
.x49{left:209.919916pt;}
.x42{left:219.039912pt;}
.x41{left:223.519242pt;}
.x3{left:225.119910pt;}
.x43{left:227.199909pt;}
.x44{left:241.439903pt;}
.x8{left:256.799086pt;}
.xe{left:260.159634pt;}
.x9{left:263.998966pt;}
.xb{left:270.399052pt;}
.x22{left:275.999890pt;}
.x23{left:286.879885pt;}
.xd{left:294.559579pt;}
.x10{left:308.799567pt;}
.xc{left:320.319028pt;}
.x5{left:325.439870pt;}
.x2a{left:335.039866pt;}
.x37{left:338.559865pt;}
.x1c{left:352.319247pt;}
.x45{left:369.119852pt;}
.x16{left:394.399842pt;}
.x14{left:395.839842pt;}
.x7{left:396.958953pt;}
.x3b{left:417.279833pt;}
.x2e{left:419.519832pt;}
.x3a{left:423.039824pt;}
.x2d{left:425.439821pt;}
.x39{left:427.839819pt;}
.x2c{left:437.599825pt;}
.x31{left:444.159155pt;}
.x3d{left:450.399897pt;}
.x46{left:454.239818pt;}
.x47{left:474.719810pt;}
.x2f{left:495.839802pt;}
.x1f{left:500.159800pt;}
.x20{left:510.239796pt;}
.x24{left:548.959780pt;}
.x25{left:555.039778pt;}
.x4d{left:560.799776pt;}
.x30{left:620.319752pt;}
.x3c{left:621.599751pt;}
.x1d{left:645.279742pt;}
.x1e{left:650.079740pt;}
.x32{left:672.479731pt;}
.x1a{left:674.399730pt;}
.x50{left:679.199728pt;}
.x15{left:684.959726pt;}
.x2{left:699.360000pt;}
}




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