
    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_b00bd9c01282e2585cd7bd6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ebaddaafabd5aefe14ad9f08.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725586;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_7fc268701ec5f854d024573c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991699;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_a6f35ceb737a5080987fca2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_531aefedc3260c4e6cec9f21.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_f9b85100c7eb0cf3fab6c245.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_557971a566fc12ceec03de23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cfc5f465feca59cee65fa0bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e894e234ed863f533572d99c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891113;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:16.933247px;}
.ls1{letter-spacing:30.613252px;}
.ls3{letter-spacing:32.053252px;}
.ls4{letter-spacing:847.441593px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-66.233700px;}
.ws0{word-spacing:-16.558425px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-2.061034px;}
._0{margin-left:-1.051195px;}
._2{width:1.576400px;}
._25{width:3.418539px;}
._1f{width:4.896637px;}
._1e{width:5.923545px;}
._d{width:7.651020px;}
._15{width:9.191715px;}
._16{width:10.681599px;}
._10{width:11.758772px;}
._11{width:13.710376px;}
._a{width:14.962083px;}
._18{width:17.783366px;}
._27{width:19.529110px;}
._3a{width:20.538650px;}
._34{width:22.054528px;}
._35{width:23.299256px;}
._13{width:24.532341px;}
._14{width:25.668922px;}
._2b{width:27.059612px;}
._2a{width:28.106460px;}
._29{width:29.328275px;}
._19{width:30.732437px;}
._4{width:32.719448px;}
._3{width:34.164491px;}
._2c{width:35.422379px;}
._24{width:36.441213px;}
._32{width:37.927014px;}
._17{width:39.850437px;}
._23{width:41.771282px;}
._22{width:43.026809px;}
._36{width:44.676734px;}
._3b{width:46.467339px;}
._38{width:48.641435px;}
._2f{width:50.577451px;}
._26{width:52.480376px;}
._28{width:53.507378px;}
._40{width:54.619816px;}
._e{width:55.650014px;}
._37{width:57.042222px;}
._3d{width:58.973089px;}
._3e{width:60.162702px;}
._55{width:61.590614px;}
._41{width:62.596048px;}
._4d{width:64.819979px;}
._50{width:66.088641px;}
._1a{width:67.228758px;}
._1b{width:68.346982px;}
._4c{width:69.348495px;}
._3c{width:70.544092px;}
._3f{width:71.784257px;}
._6{width:73.123557px;}
._30{width:74.756373px;}
._31{width:75.930509px;}
._42{width:77.701444px;}
._43{width:78.769231px;}
._2d{width:80.440311px;}
._2e{width:82.079622px;}
._9{width:83.981738px;}
._8{width:85.349360px;}
._33{width:86.891053px;}
._57{width:89.135035px;}
._52{width:90.490931px;}
._53{width:91.682791px;}
._54{width:92.961182px;}
._51{width:94.562837px;}
._56{width:98.130142px;}
._4b{width:100.470314px;}
._48{width:102.567895px;}
._5{width:104.235531px;}
._b{width:106.041447px;}
._c{width:107.094212px;}
._49{width:111.074764px;}
._4a{width:112.188014px;}
._58{width:114.333709px;}
._59{width:115.375438px;}
._47{width:116.812775px;}
._44{width:119.276358px;}
._21{width:121.218796px;}
._20{width:122.333154px;}
._4e{width:135.654379px;}
._4f{width:137.395887px;}
._1d{width:141.451122px;}
._1c{width:142.738825px;}
._39{width:157.092624px;}
._45{width:158.474735px;}
._46{width:159.709134px;}
._7{width:187.144347px;}
._1{width:897.117746px;}
._f{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs3{font-size:66.233700px;}
.fs4{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.ya1{bottom:102.600013px;}
.y69{bottom:106.200027px;}
.y58{bottom:107.279983px;}
.ycd{bottom:110.159980px;}
.y6c{bottom:110.879997px;}
.y33{bottom:112.139991px;}
.y2b{bottom:114.480010px;}
.ybc{bottom:116.820030px;}
.ycf{bottom:117.180037px;}
.ya0{bottom:121.499999px;}
.y68{bottom:125.100013px;}
.ycc{bottom:125.460022px;}
.y57{bottom:126.360008px;}
.y8a{bottom:129.960022px;}
.y32{bottom:131.039978px;}
.yce{bottom:132.480010px;}
.y2a{bottom:133.379997px;}
.ybb{bottom:135.899986px;}
.y9f{bottom:140.580024px;}
.y67{bottom:144.180037px;}
.y56{bottom:145.259994px;}
.y89{bottom:148.860008px;}
.y6b{bottom:149.940033px;}
.y31{bottom:151.200027px;}
.y29{bottom:152.460022px;}
.yba{bottom:154.800041px;}
.y9e{bottom:159.480010px;}
.y66{bottom:163.080024px;}
.y55{bottom:164.340018px;}
.y88{bottom:167.759994px;}
.y6a{bottom:170.100013px;}
.y30{bottom:170.279983px;}
.y28{bottom:171.360008px;}
.yb9{bottom:173.700027px;}
.y9d{bottom:178.560035px;}
.y65{bottom:181.980010px;}
.y54{bottom:183.240005px;}
.y87{bottom:186.840018px;}
.y2f{bottom:189.180037px;}
.y27{bottom:190.259994px;}
.yb8{bottom:192.779983px;}
.y9c{bottom:197.460022px;}
.y64{bottom:201.060035px;}
.y53{bottom:202.139991px;}
.y86{bottom:205.740005px;}
.y2e{bottom:208.080024px;}
.y26{bottom:209.340018px;}
.yb7{bottom:211.680037px;}
.y9b{bottom:216.539978px;}
.y63{bottom:219.960022px;}
.y52{bottom:221.220016px;}
.y85{bottom:224.820030px;}
.y25{bottom:228.240005px;}
.yb6{bottom:231.840018px;}
.y9a{bottom:235.440033px;}
.y62{bottom:238.860008px;}
.y51{bottom:240.120003px;}
.y84{bottom:243.720016px;}
.y24{bottom:247.320030px;}
.yb5{bottom:251.999999px;}
.y99{bottom:254.340018px;}
.yc8{bottom:257.940033px;}
.y61{bottom:259.019988px;}
.y50{bottom:259.200027px;}
.y83{bottom:262.620003px;}
.y23{bottom:266.220016px;}
.yb4{bottom:272.159980px;}
.y98{bottom:273.240005px;}
.yc7{bottom:276.840018px;}
.y4f{bottom:278.100013px;}
.y60{bottom:279.360008px;}
.y82{bottom:281.700027px;}
.y22{bottom:285.300041px;}
.yb3{bottom:292.320030px;}
.y97{bottom:293.580024px;}
.yc6{bottom:295.920043px;}
.y4e{bottom:296.999999px;}
.y5f{bottom:298.259994px;}
.y81{bottom:300.600013px;}
.y21{bottom:304.200027px;}
.yb2{bottom:311.220016px;}
.y96{bottom:312.480010px;}
.yc5{bottom:314.820030px;}
.y4d{bottom:316.080024px;}
.y5e{bottom:318.420009px;}
.y20{bottom:319.499999px;}
.y80{bottom:319.680004px;}
.y2d{bottom:323.100013px;}
.yb1{bottom:331.560000px;}
.y95{bottom:332.640025px;}
.yc4{bottom:333.900021px;}
.y4c{bottom:334.980010px;}
.y5d{bottom:338.580024px;}
.y1f{bottom:342.180004px;}
.yb0{bottom:350.460022px;}
.y94{bottom:352.800006px;}
.y4b{bottom:354.060000px;}
.y5c{bottom:357.480010px;}
.y1e{bottom:361.080024px;}
.yaf{bottom:370.620003px;}
.y93{bottom:371.700027px;}
.yc3{bottom:371.879997px;}
.y4a{bottom:372.960022px;}
.y7f{bottom:376.560000px;}
.y5b{bottom:377.640025px;}
.y1d{bottom:380.160015px;}
.yae{bottom:389.520023px;}
.yc2{bottom:390.780017px;}
.y92{bottom:391.860008px;}
.ycb{bottom:392.220016px;}
.y49{bottom:393.120003px;}
.y7e{bottom:395.460022px;}
.y5a{bottom:396.540012px;}
.y1c{bottom:399.060000px;}
.yad{bottom:409.680004px;}
.y91{bottom:410.759994px;}
.yca{bottom:411.300006px;}
.y48{bottom:412.020023px;}
.y7d{bottom:414.540012px;}
.y59{bottom:416.700027px;}
.y1b{bottom:417.960022px;}
.yc1{bottom:428.580024px;}
.yac{bottom:429.840018px;}
.yc9{bottom:430.200027px;}
.y90{bottom:430.920009px;}
.y47{bottom:431.100013px;}
.y7c{bottom:433.439998px;}
.yd1{bottom:436.860008px;}
.y1a{bottom:437.040012px;}
.yc0{bottom:448.920009px;}
.y46{bottom:449.999999px;}
.y8f{bottom:451.259994px;}
.y7b{bottom:452.340018px;}
.y19{bottom:455.939998px;}
.ybf{bottom:467.819996px;}
.yab{bottom:468.900021px;}
.y45{bottom:470.160015px;}
.y7a{bottom:471.420009px;}
.y18{bottom:475.020023px;}
.ybe{bottom:487.980010px;}
.y8e{bottom:489.060000px;}
.y44{bottom:489.240005px;}
.y79{bottom:490.319996px;}
.y17{bottom:493.920009px;}
.y43{bottom:508.140025px;}
.y78{bottom:509.400021px;}
.y16{bottom:512.819996px;}
.yaa{bottom:527.220016px;}
.y42{bottom:528.300006px;}
.y15{bottom:531.900021px;}
.ya9{bottom:546.120003px;}
.y77{bottom:547.200027px;}
.y41{bottom:548.460022px;}
.y14{bottom:550.800006px;}
.ya8{bottom:565.020023px;}
.y76{bottom:566.280017px;}
.y40{bottom:567.360008px;}
.y13{bottom:569.879997px;}
.ya7{bottom:584.100013px;}
.y2c{bottom:585.180004px;}
.y8d{bottom:586.259994px;}
.y3f{bottom:586.439998px;}
.ybd{bottom:587.520023px;}
.y12{bottom:588.780017px;}
.ya6{bottom:602.999999px;}
.yd0{bottom:604.080024px;}
.y75{bottom:604.259994px;}
.y3e{bottom:605.340018px;}
.y8c{bottom:606.600013px;}
.y11{bottom:607.680004px;}
.ya5{bottom:621.900003px;}
.y74{bottom:623.160015px;}
.y3d{bottom:624.420009px;}
.y8b{bottom:625.500016px;}
.y10{bottom:626.760012px;}
.y73{bottom:642.240005px;}
.y3c{bottom:643.320013px;}
.yf{bottom:645.660015px;}
.y72{bottom:661.140008px;}
.y3b{bottom:662.400003px;}
.ye{bottom:664.740005px;}
.y71{bottom:680.040012px;}
.y3a{bottom:681.300006px;}
.yd{bottom:683.640008px;}
.y70{bottom:699.120003px;}
.y39{bottom:700.200009px;}
.yc{bottom:702.540012px;}
.y6f{bottom:718.020006px;}
.y38{bottom:719.100013px;}
.ya4{bottom:719.280017px;}
.yb{bottom:721.620003px;}
.y6e{bottom:736.920009px;}
.ya3{bottom:738.180004px;}
.y37{bottom:739.440015px;}
.ya{bottom:740.520006px;}
.y6d{bottom:757.080007px;}
.y36{bottom:758.340010px;}
.y9{bottom:759.600013px;}
.ya2{bottom:777.240014px;}
.y35{bottom:777.420009px;}
.y8{bottom:778.500008px;}
.y34{bottom:796.320013px;}
.y7{bottom:797.580007px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.h6{height:46.441208px;}
.h2{height:46.945875px;}
.h8{height:48.219945px;}
.h9{height:54.591057px;}
.h5{height:57.275333px;}
.h7{height:70.988787px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.x11{left:71.460000px;}
.x1e{left:85.140000px;}
.x15{left:88.560001px;}
.x8{left:90.180005px;}
.x9{left:99.900003px;}
.xa{left:102.060001px;}
.x4{left:106.739997px;}
.x19{left:112.140000px;}
.x7{left:117.000000px;}
.x12{left:128.519998px;}
.x10{left:153.719999px;}
.x1f{left:209.879998px;}
.x18{left:240.300007px;}
.x16{left:250.020006px;}
.x2{left:251.639992px;}
.x5{left:297.180005px;}
.x3{left:314.639992px;}
.x21{left:325.620002px;}
.x20{left:383.579990px;}
.xe{left:419.939999px;}
.xb{left:428.220017px;}
.x13{left:433.620002px;}
.x1c{left:444.240006px;}
.x17{left:445.860008px;}
.x1d{left:451.620002px;}
.x1a{left:463.139992px;}
.x14{left:513.720017px;}
.xf{left:516.060001px;}
.xd{left:521.100014px;}
.x1b{left:522.720017px;}
.xc{left:524.160015px;}
.x1{left:565.560001px;}
.x22{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:15.051775pt;}
.ls1{letter-spacing:27.211779pt;}
.ls3{letter-spacing:28.491779pt;}
.ls4{letter-spacing:753.281416pt;}
.ws2{word-spacing:-58.874400pt;}
.ws0{word-spacing:-14.718600pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-1.832030pt;}
._0{margin-left:-0.934395pt;}
._2{width:1.401245pt;}
._25{width:3.038701pt;}
._1f{width:4.352566pt;}
._1e{width:5.265373pt;}
._d{width:6.800907pt;}
._15{width:8.170413pt;}
._16{width:9.494755pt;}
._10{width:10.452242pt;}
._11{width:12.187001pt;}
._a{width:13.299629pt;}
._18{width:15.807436pt;}
._27{width:17.359209pt;}
._3a{width:18.256578pt;}
._34{width:19.604025pt;}
._35{width:20.710450pt;}
._13{width:21.806526pt;}
._14{width:22.816820pt;}
._2b{width:24.052988pt;}
._2a{width:24.983520pt;}
._29{width:26.069578pt;}
._19{width:27.317722pt;}
._4{width:29.083954pt;}
._3{width:30.368437pt;}
._2c{width:31.486559pt;}
._24{width:32.392189pt;}
._32{width:33.712901pt;}
._17{width:35.422611pt;}
._23{width:37.130028pt;}
._22{width:38.246052pt;}
._36{width:39.712653pt;}
._3b{width:41.304301pt;}
._38{width:43.236832pt;}
._2f{width:44.957734pt;}
._26{width:46.649223pt;}
._28{width:47.562114pt;}
._40{width:48.550948pt;}
._e{width:49.466679pt;}
._37{width:50.704197pt;}
._3d{width:52.420524pt;}
._3e{width:53.477957pt;}
._55{width:54.747212pt;}
._41{width:55.640932pt;}
._4d{width:57.617759pt;}
._50{width:58.745459pt;}
._1a{width:59.758896pt;}
._1b{width:60.752873pt;}
._4c{width:61.643107pt;}
._3c{width:62.705860pt;}
._3f{width:63.808228pt;}
._6{width:64.998717pt;}
._30{width:66.450109pt;}
._31{width:67.493786pt;}
._42{width:69.067950pt;}
._43{width:70.017094pt;}
._2d{width:71.502499pt;}
._2e{width:72.959664pt;}
._9{width:74.650433pt;}
._8{width:75.866098pt;}
._33{width:77.236491pt;}
._57{width:79.231142pt;}
._52{width:80.436383pt;}
._53{width:81.495815pt;}
._54{width:82.632162pt;}
._51{width:84.055855pt;}
._56{width:87.226793pt;}
._4b{width:89.306945pt;}
._48{width:91.171462pt;}
._5{width:92.653805pt;}
._b{width:94.259064pt;}
._c{width:95.194855pt;}
._49{width:98.733123pt;}
._4a{width:99.722679pt;}
._58{width:101.629964pt;}
._59{width:102.555945pt;}
._47{width:103.833578pt;}
._44{width:106.023430pt;}
._21{width:107.750041pt;}
._20{width:108.740581pt;}
._4e{width:120.581671pt;}
._4f{width:122.129677pt;}
._1d{width:125.734330pt;}
._1c{width:126.878956pt;}
._39{width:139.637888pt;}
._45{width:140.866431pt;}
._46{width:141.963675pt;}
._7{width:166.350531pt;}
._1{width:797.437996pt;}
._f{width:836.477976pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs3{font-size:58.874400pt;}
.fs4{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.ya1{bottom:91.200011pt;}
.y69{bottom:94.400024pt;}
.y58{bottom:95.359985pt;}
.ycd{bottom:97.919982pt;}
.y6c{bottom:98.559997pt;}
.y33{bottom:99.679992pt;}
.y2b{bottom:101.760009pt;}
.ybc{bottom:103.840026pt;}
.ycf{bottom:104.160033pt;}
.ya0{bottom:107.999999pt;}
.y68{bottom:111.200011pt;}
.ycc{bottom:111.520019pt;}
.y57{bottom:112.320007pt;}
.y8a{bottom:115.520019pt;}
.y32{bottom:116.479980pt;}
.yce{bottom:117.760009pt;}
.y2a{bottom:118.559997pt;}
.ybb{bottom:120.799987pt;}
.y9f{bottom:124.960021pt;}
.y67{bottom:128.160033pt;}
.y56{bottom:129.119994pt;}
.y89{bottom:132.320007pt;}
.y6b{bottom:133.280029pt;}
.y31{bottom:134.400024pt;}
.y29{bottom:135.520019pt;}
.yba{bottom:137.600036pt;}
.y9e{bottom:141.760009pt;}
.y66{bottom:144.960021pt;}
.y55{bottom:146.080016pt;}
.y88{bottom:149.119994pt;}
.y6a{bottom:151.200011pt;}
.y30{bottom:151.359985pt;}
.y28{bottom:152.320007pt;}
.yb9{bottom:154.400024pt;}
.y9d{bottom:158.720031pt;}
.y65{bottom:161.760009pt;}
.y54{bottom:162.880004pt;}
.y87{bottom:166.080016pt;}
.y2f{bottom:168.160033pt;}
.y27{bottom:169.119994pt;}
.yb8{bottom:171.359985pt;}
.y9c{bottom:175.520019pt;}
.y64{bottom:178.720031pt;}
.y53{bottom:179.679992pt;}
.y86{bottom:182.880004pt;}
.y2e{bottom:184.960021pt;}
.y26{bottom:186.080016pt;}
.yb7{bottom:188.160033pt;}
.y9b{bottom:192.479980pt;}
.y63{bottom:195.520019pt;}
.y52{bottom:196.640014pt;}
.y85{bottom:199.840026pt;}
.y25{bottom:202.880004pt;}
.yb6{bottom:206.080016pt;}
.y9a{bottom:209.280029pt;}
.y62{bottom:212.320007pt;}
.y51{bottom:213.440002pt;}
.y84{bottom:216.640014pt;}
.y24{bottom:219.840026pt;}
.yb5{bottom:223.999999pt;}
.y99{bottom:226.080016pt;}
.yc8{bottom:229.280029pt;}
.y61{bottom:230.239989pt;}
.y50{bottom:230.400024pt;}
.y83{bottom:233.440002pt;}
.y23{bottom:236.640014pt;}
.yb4{bottom:241.919982pt;}
.y98{bottom:242.880004pt;}
.yc7{bottom:246.080016pt;}
.y4f{bottom:247.200011pt;}
.y60{bottom:248.320007pt;}
.y82{bottom:250.400024pt;}
.y22{bottom:253.600036pt;}
.yb3{bottom:259.840026pt;}
.y97{bottom:260.960021pt;}
.yc6{bottom:263.040038pt;}
.y4e{bottom:263.999999pt;}
.y5f{bottom:265.119994pt;}
.y81{bottom:267.200011pt;}
.y21{bottom:270.400024pt;}
.yb2{bottom:276.640014pt;}
.y96{bottom:277.760009pt;}
.yc5{bottom:279.840026pt;}
.y4d{bottom:280.960021pt;}
.y5e{bottom:283.040008pt;}
.y20{bottom:283.999999pt;}
.y80{bottom:284.160003pt;}
.y2d{bottom:287.200011pt;}
.yb1{bottom:294.720000pt;}
.y95{bottom:295.680022pt;}
.yc4{bottom:296.800018pt;}
.y4c{bottom:297.760009pt;}
.y5d{bottom:300.960021pt;}
.y1f{bottom:304.160003pt;}
.yb0{bottom:311.520019pt;}
.y94{bottom:313.600005pt;}
.y4b{bottom:314.720000pt;}
.y5c{bottom:317.760009pt;}
.y1e{bottom:320.960021pt;}
.yaf{bottom:329.440002pt;}
.y93{bottom:330.400024pt;}
.yc3{bottom:330.559997pt;}
.y4a{bottom:331.520019pt;}
.y7f{bottom:334.720000pt;}
.y5b{bottom:335.680022pt;}
.y1d{bottom:337.920013pt;}
.yae{bottom:346.240020pt;}
.yc2{bottom:347.360015pt;}
.y92{bottom:348.320007pt;}
.ycb{bottom:348.640014pt;}
.y49{bottom:349.440002pt;}
.y7e{bottom:351.520019pt;}
.y5a{bottom:352.480010pt;}
.y1c{bottom:354.720000pt;}
.yad{bottom:364.160003pt;}
.y91{bottom:365.119994pt;}
.yca{bottom:365.600005pt;}
.y48{bottom:366.240020pt;}
.y7d{bottom:368.480010pt;}
.y59{bottom:370.400024pt;}
.y1b{bottom:371.520019pt;}
.yc1{bottom:380.960021pt;}
.yac{bottom:382.080016pt;}
.yc9{bottom:382.400024pt;}
.y90{bottom:383.040008pt;}
.y47{bottom:383.200011pt;}
.y7c{bottom:385.279998pt;}
.yd1{bottom:388.320007pt;}
.y1a{bottom:388.480010pt;}
.yc0{bottom:399.040008pt;}
.y46{bottom:399.999999pt;}
.y8f{bottom:401.119994pt;}
.y7b{bottom:402.080016pt;}
.y19{bottom:405.279998pt;}
.ybf{bottom:415.839996pt;}
.yab{bottom:416.800018pt;}
.y45{bottom:417.920013pt;}
.y7a{bottom:419.040008pt;}
.y18{bottom:422.240020pt;}
.ybe{bottom:433.760009pt;}
.y8e{bottom:434.720000pt;}
.y44{bottom:434.880004pt;}
.y79{bottom:435.839996pt;}
.y17{bottom:439.040008pt;}
.y43{bottom:451.680022pt;}
.y78{bottom:452.800018pt;}
.y16{bottom:455.839996pt;}
.yaa{bottom:468.640014pt;}
.y42{bottom:469.600005pt;}
.y15{bottom:472.800018pt;}
.ya9{bottom:485.440002pt;}
.y77{bottom:486.400024pt;}
.y41{bottom:487.520019pt;}
.y14{bottom:489.600005pt;}
.ya8{bottom:502.240020pt;}
.y76{bottom:503.360015pt;}
.y40{bottom:504.320007pt;}
.y13{bottom:506.559997pt;}
.ya7{bottom:519.200011pt;}
.y2c{bottom:520.160003pt;}
.y8d{bottom:521.119994pt;}
.y3f{bottom:521.279998pt;}
.ybd{bottom:522.240020pt;}
.y12{bottom:523.360015pt;}
.ya6{bottom:535.999999pt;}
.yd0{bottom:536.960021pt;}
.y75{bottom:537.119994pt;}
.y3e{bottom:538.080016pt;}
.y8c{bottom:539.200011pt;}
.y11{bottom:540.160003pt;}
.ya5{bottom:552.800002pt;}
.y74{bottom:553.920013pt;}
.y3d{bottom:555.040008pt;}
.y8b{bottom:556.000014pt;}
.y10{bottom:557.120010pt;}
.y73{bottom:570.880004pt;}
.y3c{bottom:571.840011pt;}
.yf{bottom:573.920013pt;}
.y72{bottom:587.680007pt;}
.y3b{bottom:588.800002pt;}
.ye{bottom:590.880004pt;}
.y71{bottom:604.480010pt;}
.y3a{bottom:605.600005pt;}
.yd{bottom:607.680007pt;}
.y70{bottom:621.440002pt;}
.y39{bottom:622.400008pt;}
.yc{bottom:624.480010pt;}
.y6f{bottom:638.240005pt;}
.y38{bottom:639.200011pt;}
.ya4{bottom:639.360015pt;}
.yb{bottom:641.440002pt;}
.y6e{bottom:655.040008pt;}
.ya3{bottom:656.160003pt;}
.y37{bottom:657.280013pt;}
.ya{bottom:658.240005pt;}
.y6d{bottom:672.960006pt;}
.y36{bottom:674.080009pt;}
.y9{bottom:675.200011pt;}
.ya2{bottom:690.880012pt;}
.y35{bottom:691.040008pt;}
.y8{bottom:692.000007pt;}
.y34{bottom:707.840011pt;}
.y7{bottom:708.960006pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.h6{height:41.281073pt;}
.h2{height:41.729666pt;}
.h8{height:42.862173pt;}
.h9{height:48.525384pt;}
.h5{height:50.911407pt;}
.h7{height:63.101144pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.x11{left:63.520000pt;}
.x1e{left:75.680000pt;}
.x15{left:78.720001pt;}
.x8{left:80.160004pt;}
.x9{left:88.800003pt;}
.xa{left:90.720001pt;}
.x4{left:94.879997pt;}
.x19{left:99.680000pt;}
.x7{left:104.000000pt;}
.x12{left:114.239998pt;}
.x10{left:136.639999pt;}
.x1f{left:186.559998pt;}
.x18{left:213.600006pt;}
.x16{left:222.240005pt;}
.x2{left:223.679993pt;}
.x5{left:264.160004pt;}
.x3{left:279.679993pt;}
.x21{left:289.440002pt;}
.x20{left:340.959991pt;}
.xe{left:373.279999pt;}
.xb{left:380.640015pt;}
.x13{left:385.440002pt;}
.x1c{left:394.880005pt;}
.x17{left:396.320007pt;}
.x1d{left:401.440002pt;}
.x1a{left:411.679993pt;}
.x14{left:456.640015pt;}
.xf{left:458.720001pt;}
.xd{left:463.200012pt;}
.x1b{left:464.640015pt;}
.xc{left:465.920013pt;}
.x1{left:502.720001pt;}
.x22{left:507.839996pt;}
}




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