
    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_5c587b1f25efc77e2165aac4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_218ed46d0b147c1709c35f3b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_654c08e10403914f50b821e3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_afced36d0140b16781d5d775.woff')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1f{letter-spacing:-1.500000px;}
.lsc{letter-spacing:-0.834000px;}
.lsd{letter-spacing:-0.786000px;}
.ls14{letter-spacing:-0.579600px;}
.ls4{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.357000px;}
.ls9{letter-spacing:-0.253200px;}
.ls3{letter-spacing:-0.132600px;}
.ls11{letter-spacing:-0.115800px;}
.ls17{letter-spacing:-0.107400px;}
.ls15{letter-spacing:-0.064800px;}
.ls18{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.041040px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.038880px;}
.lsb{letter-spacing:0.066000px;}
.ls1d{letter-spacing:0.100800px;}
.lsf{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.186600px;}
.ls7{letter-spacing:0.202800px;}
.ls1a{letter-spacing:0.249000px;}
.lse{letter-spacing:0.306000px;}
.ls6{letter-spacing:0.321000px;}
.ls1c{letter-spacing:0.479520px;}
.ls12{letter-spacing:0.654000px;}
.ls1e{letter-spacing:0.756000px;}
.ls10{letter-spacing:10.254240px;}
.ls1b{letter-spacing:42.426720px;}
.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;}
}
.ws4{word-spacing:-21.962760px;}
.ws5{word-spacing:-21.844560px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws7{word-spacing:-14.717040px;}
.ws2{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.261760px;}
.wsb{word-spacing:-13.811760px;}
.ws14{word-spacing:-13.754760px;}
.ws9{word-spacing:-13.692360px;}
.wsc{word-spacing:-13.646160px;}
.ws15{word-spacing:-13.606560px;}
.wsa{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.464720px;}
.ws13{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.398360px;}
.wsf{word-spacing:-12.926160px;}
.wsd{word-spacing:-12.719760px;}
.ws17{word-spacing:-12.005760px;}
.ws6{word-spacing:-9.437760px;}
.ws8{word-spacing:-8.786880px;}
.wse{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._23{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._22{margin-left:-34.230240px;}
._19{margin-left:-32.468640px;}
._28{margin-left:-4.441920px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.317240px;}
._35{width:2.318040px;}
._31{width:3.319440px;}
._2e{width:4.721040px;}
._34{width:5.731920px;}
._2d{width:6.991920px;}
._2c{width:8.731200px;}
._30{width:9.891000px;}
._2f{width:10.936080px;}
._29{width:12.230640px;}
._2a{width:13.329360px;}
._2b{width:14.750880px;}
._32{width:15.767400px;}
._33{width:16.804560px;}
._36{width:18.302520px;}
._37{width:19.517400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y85{bottom:6.660000px;}
.y67{bottom:17.100000px;}
.y8c{bottom:18.540000px;}
.y87{bottom:18.570000px;}
.y89{bottom:18.720000px;}
.y6{bottom:61.560000px;}
.y65{bottom:95.220000px;}
.yba{bottom:101.340000px;}
.y31{bottom:108.000000px;}
.y88{bottom:114.660000px;}
.y64{bottom:116.280000px;}
.yd6{bottom:119.520000px;}
.yb9{bottom:122.400000px;}
.y30{bottom:129.060000px;}
.y63{bottom:137.340000px;}
.yb8{bottom:143.460000px;}
.y86{bottom:149.940000px;}
.y2f{bottom:150.120000px;}
.y62{bottom:158.430000px;}
.yb7{bottom:164.550000px;}
.y2e{bottom:171.210000px;}
.y61{bottom:179.490000px;}
.y84{bottom:185.250000px;}
.yb6{bottom:185.610000px;}
.y2d{bottom:192.270000px;}
.y60{bottom:200.550000px;}
.yb5{bottom:206.670000px;}
.y2c{bottom:213.330000px;}
.y83{bottom:215.130000px;}
.yd5{bottom:218.550000px;}
.y5f{bottom:221.610000px;}
.yb4{bottom:227.730000px;}
.y2b{bottom:234.390000px;}
.y82{bottom:236.190000px;}
.yd4{bottom:239.610000px;}
.y5e{bottom:242.670000px;}
.yb3{bottom:248.790000px;}
.y2a{bottom:255.450000px;}
.y81{bottom:257.250000px;}
.yd3{bottom:260.670000px;}
.y5d{bottom:263.730000px;}
.yb2{bottom:269.850000px;}
.y29{bottom:276.510000px;}
.y80{bottom:278.310000px;}
.yd2{bottom:281.730000px;}
.y5c{bottom:284.790000px;}
.yb1{bottom:290.910000px;}
.y28{bottom:297.570000px;}
.y7f{bottom:299.370000px;}
.yd1{bottom:302.790000px;}
.y5b{bottom:305.850000px;}
.yb0{bottom:311.970000px;}
.y27{bottom:318.630000px;}
.y7e{bottom:320.430000px;}
.yd0{bottom:323.850000px;}
.y5a{bottom:326.910000px;}
.yaf{bottom:333.030000px;}
.y26{bottom:339.690000px;}
.y7d{bottom:341.490000px;}
.ycf{bottom:344.910000px;}
.y59{bottom:347.970000px;}
.yae{bottom:354.090000px;}
.y25{bottom:360.750000px;}
.y7c{bottom:362.550000px;}
.yce{bottom:365.970000px;}
.y58{bottom:369.030000px;}
.yad{bottom:375.150000px;}
.y24{bottom:381.810000px;}
.y7b{bottom:383.610000px;}
.ycd{bottom:387.030000px;}
.y57{bottom:390.090000px;}
.y23{bottom:402.915000px;}
.y7a{bottom:404.715000px;}
.yac{bottom:405.255000px;}
.ycc{bottom:408.135000px;}
.y56{bottom:411.195000px;}
.y22{bottom:423.975000px;}
.y79{bottom:425.775000px;}
.yab{bottom:426.315000px;}
.ycb{bottom:429.195000px;}
.y55{bottom:432.255000px;}
.y21{bottom:445.035000px;}
.y78{bottom:446.835000px;}
.yaa{bottom:447.375000px;}
.yca{bottom:450.255000px;}
.y54{bottom:453.315000px;}
.y20{bottom:466.095000px;}
.y77{bottom:467.895000px;}
.ya9{bottom:468.435000px;}
.yc9{bottom:471.315000px;}
.y53{bottom:474.375000px;}
.y1f{bottom:487.155000px;}
.y76{bottom:488.955000px;}
.ya8{bottom:489.495000px;}
.yc8{bottom:492.375000px;}
.y52{bottom:495.435000px;}
.y1e{bottom:508.215000px;}
.y75{bottom:510.015000px;}
.ya7{bottom:510.555000px;}
.yc7{bottom:513.435000px;}
.y51{bottom:516.495000px;}
.y1d{bottom:529.275000px;}
.y74{bottom:531.075000px;}
.ya6{bottom:531.615000px;}
.yc6{bottom:534.495000px;}
.y50{bottom:537.555000px;}
.y1c{bottom:550.335000px;}
.y73{bottom:552.135000px;}
.ya5{bottom:552.675000px;}
.yc5{bottom:555.555000px;}
.y4f{bottom:558.615000px;}
.y1b{bottom:571.395000px;}
.y72{bottom:573.195000px;}
.ya4{bottom:573.735000px;}
.yc4{bottom:576.615000px;}
.y4e{bottom:579.675000px;}
.y1a{bottom:592.455000px;}
.y71{bottom:594.255000px;}
.ya3{bottom:594.795000px;}
.yc3{bottom:597.675000px;}
.y4d{bottom:600.735000px;}
.y70{bottom:615.315000px;}
.ya2{bottom:615.855000px;}
.y19{bottom:616.035000px;}
.yc2{bottom:618.735000px;}
.y4c{bottom:621.795000px;}
.y6f{bottom:636.375000px;}
.ya1{bottom:636.915000px;}
.yc1{bottom:639.795000px;}
.y18{bottom:645.915000px;}
.y4b{bottom:651.885000px;}
.y6e{bottom:657.465000px;}
.ya0{bottom:658.005000px;}
.yc0{bottom:660.885000px;}
.y17{bottom:667.005000px;}
.y4a{bottom:672.945000px;}
.y6d{bottom:678.525000px;}
.y9f{bottom:679.065000px;}
.ybf{bottom:681.945000px;}
.y16{bottom:687.885000px;}
.y49{bottom:694.005000px;}
.y9e{bottom:700.125000px;}
.ybe{bottom:703.005000px;}
.y6c{bottom:704.265000px;}
.y15{bottom:708.945000px;}
.y48{bottom:715.065000px;}
.y9d{bottom:721.185000px;}
.ybd{bottom:724.065000px;}
.y14{bottom:730.005000px;}
.y47{bottom:736.125000px;}
.y6b{bottom:737.925000px;}
.y9c{bottom:742.245000px;}
.ybc{bottom:745.125000px;}
.y13{bottom:751.065000px;}
.y46{bottom:757.005000px;}
.y9b{bottom:763.305000px;}
.ybb{bottom:766.005000px;}
.y6a{bottom:771.765000px;}
.y12{bottom:772.125000px;}
.y9a{bottom:784.365000px;}
.y45{bottom:787.065000px;}
.y11{bottom:793.185000px;}
.y99{bottom:805.425000px;}
.y69{bottom:805.605000px;}
.y44{bottom:808.125000px;}
.y10{bottom:814.245000px;}
.y98{bottom:826.485000px;}
.y43{bottom:829.185000px;}
.yf{bottom:835.305000px;}
.y68{bottom:839.265000px;}
.y97{bottom:847.545000px;}
.y42{bottom:850.245000px;}
.ye{bottom:856.365000px;}
.y96{bottom:868.605000px;}
.y41{bottom:871.305000px;}
.y66{bottom:873.105000px;}
.yd{bottom:877.605000px;}
.y95{bottom:889.665000px;}
.y40{bottom:892.365000px;}
.yc{bottom:900.870000px;}
.y94{bottom:910.770000px;}
.y3f{bottom:913.470000px;}
.yb{bottom:927.150000px;}
.y93{bottom:931.830000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:943.710000px;}
.y92{bottom:952.890000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:966.030000px;}
.y91{bottom:973.950000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:991.410000px;}
.y90{bottom:995.010000px;}
.y3b{bottom:997.710000px;}
.y8f{bottom:1016.070000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1025.070000px;}
.y8e{bottom:1037.130000px;}
.y39{bottom:1039.830000px;}
.y8d{bottom:1053.690000px;}
.y38{bottom:1060.890000px;}
.y5{bottom:1062.150000px;}
.y37{bottom:1081.950000px;}
.y8b{bottom:1088.970000px;}
.y4{bottom:1091.310000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1120.470000px;}
.y35{bottom:1124.070000px;}
.y8a{bottom:1124.250000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1149.660000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1179.900000px;}
.y32{bottom:1193.220000px;}
.hc{height:21.060000px;}
.hb{height:31.500000px;}
.ha{height:31.536000px;}
.h10{height:32.940000px;}
.hd{height:32.976000px;}
.he{height:33.120000px;}
.hf{height:33.156000px;}
.h7{height:38.671172px;}
.h9{height:45.316055px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:83.556000px;}
.w4{width:89.316000px;}
.w8{width:91.800000px;}
.w5{width:96.300000px;}
.w6{width:156.090000px;}
.w3{width:172.830000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.xf{left:75.239987px;}
.xb{left:94.535987px;}
.x8{left:101.375987px;}
.x7{left:108.035987px;}
.x5{left:185.249987px;}
.xc{left:239.430000px;}
.x9{left:243.930000px;}
.x3{left:272.414987px;}
.x2{left:350.714987px;}
.xd{left:397.695000px;}
.x4{left:419.294987px;}
.x1{left:479.444987px;}
.xe{left:483.405000px;}
.xa{left:510.585000px;}
.x10{left:839.339987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-1.333333pt;}
.lsc{letter-spacing:-0.741333pt;}
.lsd{letter-spacing:-0.698667pt;}
.ls14{letter-spacing:-0.515200pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.317333pt;}
.ls9{letter-spacing:-0.225067pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls11{letter-spacing:-0.102933pt;}
.ls17{letter-spacing:-0.095467pt;}
.ls15{letter-spacing:-0.057600pt;}
.ls18{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.036480pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.034560pt;}
.lsb{letter-spacing:0.058667pt;}
.ls1d{letter-spacing:0.089600pt;}
.lsf{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.165867pt;}
.ls7{letter-spacing:0.180267pt;}
.ls1a{letter-spacing:0.221333pt;}
.lse{letter-spacing:0.272000pt;}
.ls6{letter-spacing:0.285333pt;}
.ls1c{letter-spacing:0.426240pt;}
.ls12{letter-spacing:0.581333pt;}
.ls1e{letter-spacing:0.672000pt;}
.ls10{letter-spacing:9.114880pt;}
.ls1b{letter-spacing:37.712640pt;}
.ws4{word-spacing:-19.522453pt;}
.ws5{word-spacing:-19.417387pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws7{word-spacing:-13.081813pt;}
.ws2{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.677120pt;}
.wsb{word-spacing:-12.277120pt;}
.ws14{word-spacing:-12.226453pt;}
.ws9{word-spacing:-12.170987pt;}
.wsc{word-spacing:-12.129920pt;}
.ws15{word-spacing:-12.094720pt;}
.wsa{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.968640pt;}
.ws13{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.909653pt;}
.wsf{word-spacing:-11.489920pt;}
.wsd{word-spacing:-11.306453pt;}
.ws17{word-spacing:-10.671787pt;}
.ws6{word-spacing:-8.389120pt;}
.ws8{word-spacing:-7.810560pt;}
.wse{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._23{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._22{margin-left:-30.426880pt;}
._19{margin-left:-28.861013pt;}
._28{margin-left:-3.948373pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.170880pt;}
._35{width:2.060480pt;}
._31{width:2.950613pt;}
._2e{width:4.196480pt;}
._34{width:5.095040pt;}
._2d{width:6.215040pt;}
._2c{width:7.761067pt;}
._30{width:8.792000pt;}
._2f{width:9.720960pt;}
._29{width:10.871680pt;}
._2a{width:11.848320pt;}
._2b{width:13.111893pt;}
._32{width:14.015467pt;}
._33{width:14.937387pt;}
._36{width:16.268907pt;}
._37{width:17.348800pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:5.920000pt;}
.y67{bottom:15.200000pt;}
.y8c{bottom:16.480000pt;}
.y87{bottom:16.506667pt;}
.y89{bottom:16.640000pt;}
.y6{bottom:54.720000pt;}
.y65{bottom:84.640000pt;}
.yba{bottom:90.080000pt;}
.y31{bottom:96.000000pt;}
.y88{bottom:101.920000pt;}
.y64{bottom:103.360000pt;}
.yd6{bottom:106.240000pt;}
.yb9{bottom:108.800000pt;}
.y30{bottom:114.720000pt;}
.y63{bottom:122.080000pt;}
.yb8{bottom:127.520000pt;}
.y86{bottom:133.280000pt;}
.y2f{bottom:133.440000pt;}
.y62{bottom:140.826667pt;}
.yb7{bottom:146.266667pt;}
.y2e{bottom:152.186667pt;}
.y61{bottom:159.546667pt;}
.y84{bottom:164.666667pt;}
.yb6{bottom:164.986667pt;}
.y2d{bottom:170.906667pt;}
.y60{bottom:178.266667pt;}
.yb5{bottom:183.706667pt;}
.y2c{bottom:189.626667pt;}
.y83{bottom:191.226667pt;}
.yd5{bottom:194.266667pt;}
.y5f{bottom:196.986667pt;}
.yb4{bottom:202.426667pt;}
.y2b{bottom:208.346667pt;}
.y82{bottom:209.946667pt;}
.yd4{bottom:212.986667pt;}
.y5e{bottom:215.706667pt;}
.yb3{bottom:221.146667pt;}
.y2a{bottom:227.066667pt;}
.y81{bottom:228.666667pt;}
.yd3{bottom:231.706667pt;}
.y5d{bottom:234.426667pt;}
.yb2{bottom:239.866667pt;}
.y29{bottom:245.786667pt;}
.y80{bottom:247.386667pt;}
.yd2{bottom:250.426667pt;}
.y5c{bottom:253.146667pt;}
.yb1{bottom:258.586667pt;}
.y28{bottom:264.506667pt;}
.y7f{bottom:266.106667pt;}
.yd1{bottom:269.146667pt;}
.y5b{bottom:271.866667pt;}
.yb0{bottom:277.306667pt;}
.y27{bottom:283.226667pt;}
.y7e{bottom:284.826667pt;}
.yd0{bottom:287.866667pt;}
.y5a{bottom:290.586667pt;}
.yaf{bottom:296.026667pt;}
.y26{bottom:301.946667pt;}
.y7d{bottom:303.546667pt;}
.ycf{bottom:306.586667pt;}
.y59{bottom:309.306667pt;}
.yae{bottom:314.746667pt;}
.y25{bottom:320.666667pt;}
.y7c{bottom:322.266667pt;}
.yce{bottom:325.306667pt;}
.y58{bottom:328.026667pt;}
.yad{bottom:333.466667pt;}
.y24{bottom:339.386667pt;}
.y7b{bottom:340.986667pt;}
.ycd{bottom:344.026667pt;}
.y57{bottom:346.746667pt;}
.y23{bottom:358.146667pt;}
.y7a{bottom:359.746667pt;}
.yac{bottom:360.226667pt;}
.ycc{bottom:362.786667pt;}
.y56{bottom:365.506667pt;}
.y22{bottom:376.866667pt;}
.y79{bottom:378.466667pt;}
.yab{bottom:378.946667pt;}
.ycb{bottom:381.506667pt;}
.y55{bottom:384.226667pt;}
.y21{bottom:395.586667pt;}
.y78{bottom:397.186667pt;}
.yaa{bottom:397.666667pt;}
.yca{bottom:400.226667pt;}
.y54{bottom:402.946667pt;}
.y20{bottom:414.306667pt;}
.y77{bottom:415.906667pt;}
.ya9{bottom:416.386667pt;}
.yc9{bottom:418.946667pt;}
.y53{bottom:421.666667pt;}
.y1f{bottom:433.026667pt;}
.y76{bottom:434.626667pt;}
.ya8{bottom:435.106667pt;}
.yc8{bottom:437.666667pt;}
.y52{bottom:440.386667pt;}
.y1e{bottom:451.746667pt;}
.y75{bottom:453.346667pt;}
.ya7{bottom:453.826667pt;}
.yc7{bottom:456.386667pt;}
.y51{bottom:459.106667pt;}
.y1d{bottom:470.466667pt;}
.y74{bottom:472.066667pt;}
.ya6{bottom:472.546667pt;}
.yc6{bottom:475.106667pt;}
.y50{bottom:477.826667pt;}
.y1c{bottom:489.186667pt;}
.y73{bottom:490.786667pt;}
.ya5{bottom:491.266667pt;}
.yc5{bottom:493.826667pt;}
.y4f{bottom:496.546667pt;}
.y1b{bottom:507.906667pt;}
.y72{bottom:509.506667pt;}
.ya4{bottom:509.986667pt;}
.yc4{bottom:512.546667pt;}
.y4e{bottom:515.266667pt;}
.y1a{bottom:526.626667pt;}
.y71{bottom:528.226667pt;}
.ya3{bottom:528.706667pt;}
.yc3{bottom:531.266667pt;}
.y4d{bottom:533.986667pt;}
.y70{bottom:546.946667pt;}
.ya2{bottom:547.426667pt;}
.y19{bottom:547.586667pt;}
.yc2{bottom:549.986667pt;}
.y4c{bottom:552.706667pt;}
.y6f{bottom:565.666667pt;}
.ya1{bottom:566.146667pt;}
.yc1{bottom:568.706667pt;}
.y18{bottom:574.146667pt;}
.y4b{bottom:579.453333pt;}
.y6e{bottom:584.413333pt;}
.ya0{bottom:584.893333pt;}
.yc0{bottom:587.453333pt;}
.y17{bottom:592.893333pt;}
.y4a{bottom:598.173333pt;}
.y6d{bottom:603.133333pt;}
.y9f{bottom:603.613333pt;}
.ybf{bottom:606.173333pt;}
.y16{bottom:611.453333pt;}
.y49{bottom:616.893333pt;}
.y9e{bottom:622.333333pt;}
.ybe{bottom:624.893333pt;}
.y6c{bottom:626.013333pt;}
.y15{bottom:630.173333pt;}
.y48{bottom:635.613333pt;}
.y9d{bottom:641.053333pt;}
.ybd{bottom:643.613333pt;}
.y14{bottom:648.893333pt;}
.y47{bottom:654.333333pt;}
.y6b{bottom:655.933333pt;}
.y9c{bottom:659.773333pt;}
.ybc{bottom:662.333333pt;}
.y13{bottom:667.613333pt;}
.y46{bottom:672.893333pt;}
.y9b{bottom:678.493333pt;}
.ybb{bottom:680.893333pt;}
.y6a{bottom:686.013333pt;}
.y12{bottom:686.333333pt;}
.y9a{bottom:697.213333pt;}
.y45{bottom:699.613333pt;}
.y11{bottom:705.053333pt;}
.y99{bottom:715.933333pt;}
.y69{bottom:716.093333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:723.773333pt;}
.y98{bottom:734.653333pt;}
.y43{bottom:737.053333pt;}
.yf{bottom:742.493333pt;}
.y68{bottom:746.013333pt;}
.y97{bottom:753.373333pt;}
.y42{bottom:755.773333pt;}
.ye{bottom:761.213333pt;}
.y96{bottom:772.093333pt;}
.y41{bottom:774.493333pt;}
.y66{bottom:776.093333pt;}
.yd{bottom:780.093333pt;}
.y95{bottom:790.813333pt;}
.y40{bottom:793.213333pt;}
.yc{bottom:800.773333pt;}
.y94{bottom:809.573333pt;}
.y3f{bottom:811.973333pt;}
.yb{bottom:824.133333pt;}
.y93{bottom:828.293333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:838.853333pt;}
.y92{bottom:847.013333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:858.693333pt;}
.y91{bottom:865.733333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:881.253333pt;}
.y90{bottom:884.453333pt;}
.y3b{bottom:886.853333pt;}
.y8f{bottom:903.173333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:911.173333pt;}
.y8e{bottom:921.893333pt;}
.y39{bottom:924.293333pt;}
.y8d{bottom:936.613333pt;}
.y38{bottom:943.013333pt;}
.y5{bottom:944.133333pt;}
.y37{bottom:961.733333pt;}
.y8b{bottom:967.973333pt;}
.y4{bottom:970.053333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:995.973333pt;}
.y35{bottom:999.173333pt;}
.y8a{bottom:999.333333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1021.920000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1048.800000pt;}
.y32{bottom:1060.640000pt;}
.hc{height:18.720000pt;}
.hb{height:28.000000pt;}
.ha{height:28.032000pt;}
.h10{height:29.280000pt;}
.hd{height:29.312000pt;}
.he{height:29.440000pt;}
.hf{height:29.472000pt;}
.h7{height:34.374375pt;}
.h9{height:40.280938pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:74.272000pt;}
.w4{width:79.392000pt;}
.w8{width:81.600000pt;}
.w5{width:85.600000pt;}
.w6{width:138.746667pt;}
.w3{width:153.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.xf{left:66.879988pt;}
.xb{left:84.031988pt;}
.x8{left:90.111988pt;}
.x7{left:96.031988pt;}
.x5{left:164.666655pt;}
.xc{left:212.826667pt;}
.x9{left:216.826667pt;}
.x3{left:242.146655pt;}
.x2{left:311.746655pt;}
.xd{left:353.506667pt;}
.x4{left:372.706655pt;}
.x1{left:426.173322pt;}
.xe{left:429.693333pt;}
.xa{left:453.853333pt;}
.x10{left:746.079988pt;}
}




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