
    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_12f7dd824a7189501cf2fa7b.woff')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_253ee9ff07240b0ae837323a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fca1f47015322653852b673d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_332fa5f6c570d1358570148c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_797c008eadc83da3e01f382f.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1d71a1bb7cd0e452e6a481ca.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_16fdc158e7a493261ab5136b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_f15ba79ad2d4ba87a3c5464d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls10{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.253200px;}
.ls5{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.lse{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:11.466720px;}
.lsc{letter-spacing:35.460000px;}
.lsd{letter-spacing:41.706720px;}
.ls2{letter-spacing:64.026720px;}
.ls1{letter-spacing:634.476000px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.wsd{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.ws1{word-spacing:-14.686800px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-1.105440px;}
._0{width:1.015920px;}
._19{width:2.211120px;}
._4{width:3.466080px;}
._3{width:5.079600px;}
._17{width:6.394320px;}
._18{width:7.470000px;}
._12{width:9.262800px;}
._25{width:10.368240px;}
._2{width:11.414160px;}
._1{width:12.669120px;}
._6{width:13.864320px;}
._15{width:16.494720px;}
._26{width:17.547600px;}
._e{width:18.584400px;}
._d{width:20.019600px;}
._a{width:21.035520px;}
._9{width:22.111200px;}
._14{width:23.306400px;}
._13{width:24.441840px;}
._c{width:26.144880px;}
._b{width:27.370080px;}
._1f{width:28.445760px;}
._1a{width:29.820240px;}
._27{width:31.097040px;}
._1b{width:32.188800px;}
._31{width:33.226560px;}
._7{width:34.302240px;}
._23{width:35.318160px;}
._2d{width:36.423600px;}
._22{width:37.589040px;}
._10{width:39.236160px;}
._f{width:40.397760px;}
._30{width:41.430240px;}
._24{width:43.326000px;}
._2c{width:44.760240px;}
._11{width:46.672560px;}
._2f{width:47.987280px;}
._21{width:49.242240px;}
._16{width:50.616720px;}
._20{width:51.667920px;}
._8{width:53.007120px;}
._29{width:54.381600px;}
._28{width:55.397520px;}
._34{width:61.164000px;}
._2e{width:62.286480px;}
._2b{width:65.543520px;}
._2a{width:66.692160px;}
._1e{width:74.749680px;}
._1c{width:87.717600px;}
._1d{width:88.832160px;}
._33{width:124.061760px;}
._32{width:220.335120px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.y5d{bottom:124.596000px;}
.yc8{bottom:124.776000px;}
.y32{bottom:130.356000px;}
.y97{bottom:132.516000px;}
.y4a{bottom:136.476000px;}
.y5c{bottom:141.876000px;}
.y65{bottom:145.656000px;}
.y31{bottom:146.736000px;}
.y96{bottom:149.796000px;}
.y49{bottom:153.750000px;}
.y5b{bottom:159.150000px;}
.y30{bottom:163.290000px;}
.y95{bottom:167.070000px;}
.y84{bottom:169.590000px;}
.y48{bottom:171.030000px;}
.y5a{bottom:176.430000px;}
.yc7{bottom:177.510000px;}
.y71{bottom:178.950000px;}
.y2f{bottom:179.310000px;}
.y83{bottom:186.870000px;}
.y47{bottom:188.310000px;}
.y59{bottom:193.710000px;}
.y2e{bottom:194.070000px;}
.yc6{bottom:195.870000px;}
.y94{bottom:199.470000px;}
.y82{bottom:204.150000px;}
.y46{bottom:205.590000px;}
.y2d{bottom:206.670000px;}
.y58{bottom:210.990000px;}
.yc5{bottom:214.230000px;}
.y81{bottom:221.430000px;}
.y45{bottom:222.690000px;}
.y57{bottom:228.090000px;}
.yc4{bottom:232.410000px;}
.y80{bottom:238.710000px;}
.y44{bottom:239.970000px;}
.y56{bottom:245.370000px;}
.yc3{bottom:250.770000px;}
.y7f{bottom:255.810000px;}
.y43{bottom:257.250000px;}
.y55{bottom:262.650000px;}
.yc2{bottom:269.130000px;}
.y7e{bottom:273.090000px;}
.y42{bottom:274.530000px;}
.y54{bottom:279.930000px;}
.yc1{bottom:286.410000px;}
.y7d{bottom:290.415000px;}
.y41{bottom:291.855000px;}
.y53{bottom:297.255000px;}
.yc0{bottom:303.735000px;}
.y7c{bottom:307.695000px;}
.y40{bottom:309.135000px;}
.y52{bottom:314.535000px;}
.ybf{bottom:321.015000px;}
.y2c{bottom:321.375000px;}
.y7b{bottom:324.975000px;}
.y3f{bottom:326.235000px;}
.y51{bottom:331.635000px;}
.ybe{bottom:338.115000px;}
.y2b{bottom:338.295000px;}
.y7a{bottom:342.255000px;}
.y3e{bottom:343.515000px;}
.y64{bottom:344.775000px;}
.y50{bottom:348.915000px;}
.y2a{bottom:353.775000px;}
.ybd{bottom:355.395000px;}
.y79{bottom:359.355000px;}
.y3d{bottom:360.795000px;}
.y63{bottom:362.055000px;}
.y4f{bottom:366.195000px;}
.y29{bottom:369.255000px;}
.ybc{bottom:372.675000px;}
.y78{bottom:376.635000px;}
.y3c{bottom:378.075000px;}
.y62{bottom:379.335000px;}
.y4e{bottom:383.475000px;}
.y28{bottom:384.915000px;}
.ybb{bottom:389.955000px;}
.y77{bottom:393.915000px;}
.y3b{bottom:396.435000px;}
.y61{bottom:396.615000px;}
.y27{bottom:400.755000px;}
.y70{bottom:400.935000px;}
.yba{bottom:407.235000px;}
.y76{bottom:411.195000px;}
.y3a{bottom:413.715000px;}
.y26{bottom:417.855000px;}
.y6f{bottom:418.215000px;}
.yb9{bottom:424.335000px;}
.y75{bottom:428.475000px;}
.y39{bottom:430.815000px;}
.y60{bottom:430.995000px;}
.y25{bottom:435.135000px;}
.y6e{bottom:435.495000px;}
.yb8{bottom:441.615000px;}
.y74{bottom:445.575000px;}
.y5f{bottom:448.275000px;}
.y38{bottom:449.175000px;}
.y24{bottom:452.415000px;}
.y6d{bottom:452.775000px;}
.yb7{bottom:458.895000px;}
.y73{bottom:462.855000px;}
.y37{bottom:466.455000px;}
.y23{bottom:469.695000px;}
.y6c{bottom:469.875000px;}
.yb6{bottom:476.175000px;}
.y5e{bottom:480.855000px;}
.y36{bottom:484.815000px;}
.y22{bottom:486.975000px;}
.y6b{bottom:487.155000px;}
.yb5{bottom:493.455000px;}
.y72{bottom:495.435000px;}
.y35{bottom:502.095000px;}
.y21{bottom:504.255000px;}
.y6a{bottom:504.435000px;}
.yb4{bottom:510.735000px;}
.y34{bottom:520.275000px;}
.y20{bottom:521.355000px;}
.y69{bottom:521.715000px;}
.y93{bottom:526.755000px;}
.yb3{bottom:527.835000px;}
.y1f{bottom:538.635000px;}
.y68{bottom:538.995000px;}
.y92{bottom:543.855000px;}
.yb2{bottom:545.115000px;}
.y1e{bottom:555.945000px;}
.y67{bottom:556.305000px;}
.y91{bottom:561.165000px;}
.yb1{bottom:562.425000px;}
.y1d{bottom:573.225000px;}
.y90{bottom:578.445000px;}
.yb0{bottom:579.705000px;}
.y66{bottom:586.185000px;}
.y1c{bottom:590.505000px;}
.y8f{bottom:595.725000px;}
.yaf{bottom:596.985000px;}
.y1b{bottom:607.785000px;}
.y8e{bottom:613.005000px;}
.yae{bottom:614.265000px;}
.y1a{bottom:624.885000px;}
.y8d{bottom:630.285000px;}
.yad{bottom:631.365000px;}
.y19{bottom:642.165000px;}
.y8c{bottom:647.385000px;}
.yac{bottom:648.645000px;}
.y18{bottom:659.445000px;}
.y8b{bottom:664.665000px;}
.yab{bottom:665.925000px;}
.y17{bottom:676.725000px;}
.y8a{bottom:681.945000px;}
.yaa{bottom:684.285000px;}
.y16{bottom:694.005000px;}
.y89{bottom:699.225000px;}
.ya9{bottom:702.645000px;}
.y15{bottom:711.105000px;}
.y88{bottom:716.505000px;}
.ya8{bottom:720.825000px;}
.y14{bottom:728.385000px;}
.y87{bottom:733.605000px;}
.ya7{bottom:739.185000px;}
.y33{bottom:745.665000px;}
.y86{bottom:750.885000px;}
.ya6{bottom:757.545000px;}
.y13{bottom:762.945000px;}
.ya5{bottom:775.905000px;}
.y12{bottom:780.225000px;}
.y85{bottom:783.465000px;}
.ya4{bottom:794.265000px;}
.y11{bottom:797.505000px;}
.ya3{bottom:811.590000px;}
.y10{bottom:814.650000px;}
.ya2{bottom:828.690000px;}
.yf{bottom:831.930000px;}
.ya1{bottom:845.970000px;}
.ye{bottom:849.210000px;}
.ya0{bottom:863.250000px;}
.yd{bottom:866.490000px;}
.y9f{bottom:880.530000px;}
.yc{bottom:883.770000px;}
.y9e{bottom:897.810000px;}
.yb{bottom:901.050000px;}
.y9d{bottom:915.990000px;}
.ya{bottom:918.150000px;}
.y9c{bottom:933.270000px;}
.y9{bottom:935.430000px;}
.y9b{bottom:950.550000px;}
.y8{bottom:952.710000px;}
.y9a{bottom:968.910000px;}
.y7{bottom:969.990000px;}
.y99{bottom:986.190000px;}
.y6{bottom:987.270000px;}
.y98{bottom:1003.470000px;}
.y5{bottom:1004.550000px;}
.y4{bottom:1021.650000px;}
.y3{bottom:1038.930000px;}
.y4d{bottom:1081.800000px;}
.y4c{bottom:1101.600000px;}
.y4b{bottom:1119.960000px;}
.he{height:41.185547px;}
.hb{height:43.215117px;}
.h7{height:51.519375px;}
.h5{height:52.998047px;}
.ha{height:53.332031px;}
.h8{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h9{height:61.423863px;}
.h6{height:62.327813px;}
.hd{height:70.628906px;}
.h1{height:70.664062px;}
.hc{height:72.562500px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:106.415986px;}
.xa{left:124.055986px;}
.x6{left:128.735986px;}
.x17{left:133.415986px;}
.xf{left:136.115986px;}
.xe{left:160.049986px;}
.x16{left:168.329986px;}
.x15{left:171.029986px;}
.x12{left:188.129986px;}
.x7{left:194.429986px;}
.x13{left:215.309986px;}
.x8{left:222.149986px;}
.x5{left:237.989986px;}
.x4{left:243.389986px;}
.x3{left:268.769986px;}
.x9{left:332.174986px;}
.x1{left:444.674986px;}
.xb{left:485.174986px;}
.xc{left:512.204986px;}
.xd{left:539.204986px;}
.x14{left:549.464986px;}
.x11{left:571.604986px;}
.x10{left:587.084986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.225067pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:10.192640pt;}
.lsc{letter-spacing:31.520000pt;}
.lsd{letter-spacing:37.072640pt;}
.ls2{letter-spacing:56.912640pt;}
.ls1{letter-spacing:563.978667pt;}
.ws5{word-spacing:-53.120000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.ws1{word-spacing:-13.054933pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-0.982613pt;}
._0{width:0.903040pt;}
._19{width:1.965440pt;}
._4{width:3.080960pt;}
._3{width:4.515200pt;}
._17{width:5.683840pt;}
._18{width:6.640000pt;}
._12{width:8.233600pt;}
._25{width:9.216213pt;}
._2{width:10.145920pt;}
._1{width:11.261440pt;}
._6{width:12.323840pt;}
._15{width:14.661973pt;}
._26{width:15.597867pt;}
._e{width:16.519467pt;}
._d{width:17.795200pt;}
._a{width:18.698240pt;}
._9{width:19.654400pt;}
._14{width:20.716800pt;}
._13{width:21.726080pt;}
._c{width:23.239893pt;}
._b{width:24.328960pt;}
._1f{width:25.285120pt;}
._1a{width:26.506880pt;}
._27{width:27.641813pt;}
._1b{width:28.612267pt;}
._31{width:29.534720pt;}
._7{width:30.490880pt;}
._23{width:31.393920pt;}
._2d{width:32.376533pt;}
._22{width:33.412480pt;}
._10{width:34.876587pt;}
._f{width:35.909120pt;}
._30{width:36.826880pt;}
._24{width:38.512000pt;}
._2c{width:39.786880pt;}
._11{width:41.486720pt;}
._2f{width:42.655360pt;}
._21{width:43.770880pt;}
._16{width:44.992640pt;}
._20{width:45.927040pt;}
._8{width:47.117440pt;}
._29{width:48.339200pt;}
._28{width:49.242240pt;}
._34{width:54.368000pt;}
._2e{width:55.365760pt;}
._2b{width:58.260907pt;}
._2a{width:59.281920pt;}
._1e{width:66.444160pt;}
._1c{width:77.971200pt;}
._1d{width:78.961920pt;}
._33{width:110.277120pt;}
._32{width:195.853440pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.y5d{bottom:110.752000pt;}
.yc8{bottom:110.912000pt;}
.y32{bottom:115.872000pt;}
.y97{bottom:117.792000pt;}
.y4a{bottom:121.312000pt;}
.y5c{bottom:126.112000pt;}
.y65{bottom:129.472000pt;}
.y31{bottom:130.432000pt;}
.y96{bottom:133.152000pt;}
.y49{bottom:136.666667pt;}
.y5b{bottom:141.466667pt;}
.y30{bottom:145.146667pt;}
.y95{bottom:148.506667pt;}
.y84{bottom:150.746667pt;}
.y48{bottom:152.026667pt;}
.y5a{bottom:156.826667pt;}
.yc7{bottom:157.786667pt;}
.y71{bottom:159.066667pt;}
.y2f{bottom:159.386667pt;}
.y83{bottom:166.106667pt;}
.y47{bottom:167.386667pt;}
.y59{bottom:172.186667pt;}
.y2e{bottom:172.506667pt;}
.yc6{bottom:174.106667pt;}
.y94{bottom:177.306667pt;}
.y82{bottom:181.466667pt;}
.y46{bottom:182.746667pt;}
.y2d{bottom:183.706667pt;}
.y58{bottom:187.546667pt;}
.yc5{bottom:190.426667pt;}
.y81{bottom:196.826667pt;}
.y45{bottom:197.946667pt;}
.y57{bottom:202.746667pt;}
.yc4{bottom:206.586667pt;}
.y80{bottom:212.186667pt;}
.y44{bottom:213.306667pt;}
.y56{bottom:218.106667pt;}
.yc3{bottom:222.906667pt;}
.y7f{bottom:227.386667pt;}
.y43{bottom:228.666667pt;}
.y55{bottom:233.466667pt;}
.yc2{bottom:239.226667pt;}
.y7e{bottom:242.746667pt;}
.y42{bottom:244.026667pt;}
.y54{bottom:248.826667pt;}
.yc1{bottom:254.586667pt;}
.y7d{bottom:258.146667pt;}
.y41{bottom:259.426667pt;}
.y53{bottom:264.226667pt;}
.yc0{bottom:269.986667pt;}
.y7c{bottom:273.506667pt;}
.y40{bottom:274.786667pt;}
.y52{bottom:279.586667pt;}
.ybf{bottom:285.346667pt;}
.y2c{bottom:285.666667pt;}
.y7b{bottom:288.866667pt;}
.y3f{bottom:289.986667pt;}
.y51{bottom:294.786667pt;}
.ybe{bottom:300.546667pt;}
.y2b{bottom:300.706667pt;}
.y7a{bottom:304.226667pt;}
.y3e{bottom:305.346667pt;}
.y64{bottom:306.466667pt;}
.y50{bottom:310.146667pt;}
.y2a{bottom:314.466667pt;}
.ybd{bottom:315.906667pt;}
.y79{bottom:319.426667pt;}
.y3d{bottom:320.706667pt;}
.y63{bottom:321.826667pt;}
.y4f{bottom:325.506667pt;}
.y29{bottom:328.226667pt;}
.ybc{bottom:331.266667pt;}
.y78{bottom:334.786667pt;}
.y3c{bottom:336.066667pt;}
.y62{bottom:337.186667pt;}
.y4e{bottom:340.866667pt;}
.y28{bottom:342.146667pt;}
.ybb{bottom:346.626667pt;}
.y77{bottom:350.146667pt;}
.y3b{bottom:352.386667pt;}
.y61{bottom:352.546667pt;}
.y27{bottom:356.226667pt;}
.y70{bottom:356.386667pt;}
.yba{bottom:361.986667pt;}
.y76{bottom:365.506667pt;}
.y3a{bottom:367.746667pt;}
.y26{bottom:371.426667pt;}
.y6f{bottom:371.746667pt;}
.yb9{bottom:377.186667pt;}
.y75{bottom:380.866667pt;}
.y39{bottom:382.946667pt;}
.y60{bottom:383.106667pt;}
.y25{bottom:386.786667pt;}
.y6e{bottom:387.106667pt;}
.yb8{bottom:392.546667pt;}
.y74{bottom:396.066667pt;}
.y5f{bottom:398.466667pt;}
.y38{bottom:399.266667pt;}
.y24{bottom:402.146667pt;}
.y6d{bottom:402.466667pt;}
.yb7{bottom:407.906667pt;}
.y73{bottom:411.426667pt;}
.y37{bottom:414.626667pt;}
.y23{bottom:417.506667pt;}
.y6c{bottom:417.666667pt;}
.yb6{bottom:423.266667pt;}
.y5e{bottom:427.426667pt;}
.y36{bottom:430.946667pt;}
.y22{bottom:432.866667pt;}
.y6b{bottom:433.026667pt;}
.yb5{bottom:438.626667pt;}
.y72{bottom:440.386667pt;}
.y35{bottom:446.306667pt;}
.y21{bottom:448.226667pt;}
.y6a{bottom:448.386667pt;}
.yb4{bottom:453.986667pt;}
.y34{bottom:462.466667pt;}
.y20{bottom:463.426667pt;}
.y69{bottom:463.746667pt;}
.y93{bottom:468.226667pt;}
.yb3{bottom:469.186667pt;}
.y1f{bottom:478.786667pt;}
.y68{bottom:479.106667pt;}
.y92{bottom:483.426667pt;}
.yb2{bottom:484.546667pt;}
.y1e{bottom:494.173333pt;}
.y67{bottom:494.493333pt;}
.y91{bottom:498.813333pt;}
.yb1{bottom:499.933333pt;}
.y1d{bottom:509.533333pt;}
.y90{bottom:514.173333pt;}
.yb0{bottom:515.293333pt;}
.y66{bottom:521.053333pt;}
.y1c{bottom:524.893333pt;}
.y8f{bottom:529.533333pt;}
.yaf{bottom:530.653333pt;}
.y1b{bottom:540.253333pt;}
.y8e{bottom:544.893333pt;}
.yae{bottom:546.013333pt;}
.y1a{bottom:555.453333pt;}
.y8d{bottom:560.253333pt;}
.yad{bottom:561.213333pt;}
.y19{bottom:570.813333pt;}
.y8c{bottom:575.453333pt;}
.yac{bottom:576.573333pt;}
.y18{bottom:586.173333pt;}
.y8b{bottom:590.813333pt;}
.yab{bottom:591.933333pt;}
.y17{bottom:601.533333pt;}
.y8a{bottom:606.173333pt;}
.yaa{bottom:608.253333pt;}
.y16{bottom:616.893333pt;}
.y89{bottom:621.533333pt;}
.ya9{bottom:624.573333pt;}
.y15{bottom:632.093333pt;}
.y88{bottom:636.893333pt;}
.ya8{bottom:640.733333pt;}
.y14{bottom:647.453333pt;}
.y87{bottom:652.093333pt;}
.ya7{bottom:657.053333pt;}
.y33{bottom:662.813333pt;}
.y86{bottom:667.453333pt;}
.ya6{bottom:673.373333pt;}
.y13{bottom:678.173333pt;}
.ya5{bottom:689.693333pt;}
.y12{bottom:693.533333pt;}
.y85{bottom:696.413333pt;}
.ya4{bottom:706.013333pt;}
.y11{bottom:708.893333pt;}
.ya3{bottom:721.413333pt;}
.y10{bottom:724.133333pt;}
.ya2{bottom:736.613333pt;}
.yf{bottom:739.493333pt;}
.ya1{bottom:751.973333pt;}
.ye{bottom:754.853333pt;}
.ya0{bottom:767.333333pt;}
.yd{bottom:770.213333pt;}
.y9f{bottom:782.693333pt;}
.yc{bottom:785.573333pt;}
.y9e{bottom:798.053333pt;}
.yb{bottom:800.933333pt;}
.y9d{bottom:814.213333pt;}
.ya{bottom:816.133333pt;}
.y9c{bottom:829.573333pt;}
.y9{bottom:831.493333pt;}
.y9b{bottom:844.933333pt;}
.y8{bottom:846.853333pt;}
.y9a{bottom:861.253333pt;}
.y7{bottom:862.213333pt;}
.y99{bottom:876.613333pt;}
.y6{bottom:877.573333pt;}
.y98{bottom:891.973333pt;}
.y5{bottom:892.933333pt;}
.y4{bottom:908.133333pt;}
.y3{bottom:923.493333pt;}
.y4d{bottom:961.600000pt;}
.y4c{bottom:979.200000pt;}
.y4b{bottom:995.520000pt;}
.he{height:36.609375pt;}
.hb{height:38.413438pt;}
.h7{height:45.795000pt;}
.h5{height:47.109375pt;}
.ha{height:47.406250pt;}
.h8{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h9{height:54.598989pt;}
.h6{height:55.402500pt;}
.hd{height:62.781250pt;}
.h1{height:62.812500pt;}
.hc{height:64.500000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.xa{left:110.271988pt;}
.x6{left:114.431988pt;}
.x17{left:118.591988pt;}
.xf{left:120.991988pt;}
.xe{left:142.266655pt;}
.x16{left:149.626655pt;}
.x15{left:152.026655pt;}
.x12{left:167.226655pt;}
.x7{left:172.826655pt;}
.x13{left:191.386655pt;}
.x8{left:197.466655pt;}
.x5{left:211.546655pt;}
.x4{left:216.346655pt;}
.x3{left:238.906655pt;}
.x9{left:295.266655pt;}
.x1{left:395.266655pt;}
.xb{left:431.266655pt;}
.xc{left:455.293321pt;}
.xd{left:479.293321pt;}
.x14{left:488.413321pt;}
.x11{left:508.093321pt;}
.x10{left:521.853321pt;}
}




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