
    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_b2481332a2d665ba046617f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b17f7994ee0221b9e8a4f7a1.woff2')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_ec80320a786c52edcca01e4b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b55ff6ff8512b3dc12a9e808.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_26ed1a337c879f3960f8a86c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.998535;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_2daee3cc93c49667576fb39f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118652;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_260cb924edacf786779a946d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5b94fee3a7cc799475a32b17.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.vf{vertical-align:-96.480000px;}
.vc{vertical-align:-15.840000px;}
.v4{vertical-align:-13.680000px;}
.vb{vertical-align:-11.520000px;}
.v7{vertical-align:-9.360000px;}
.v2{vertical-align:-7.920000px;}
.v6{vertical-align:-4.320000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.440000px;}
.vd{vertical-align:4.320000px;}
.v1{vertical-align:7.920000px;}
.v3{vertical-align:9.360000px;}
.va{vertical-align:11.520000px;}
.v5{vertical-align:13.680000px;}
.ve{vertical-align:30.240000px;}
.ls7{letter-spacing:-21.780000px;}
.ls8{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.390000px;}
.ls5{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.lse{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.147000px;}
.lsb{letter-spacing:0.341400px;}
.ls10{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.440000px;}
.ls2{letter-spacing:4.047840px;}
.lsf{letter-spacing:21.221280px;}
.lsa{letter-spacing:27.180000px;}
.lsd{letter-spacing:80.261280px;}
.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;}
}
.ws9{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.401400px;}
.ws7{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.880000px;}
.ws6{word-spacing:-13.608000px;}
.ws2{word-spacing:-0.231240px;}
.ws1{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:0.305760px;}
._72{margin-left:-2414.567280px;}
._73{margin-left:-730.069200px;}
._58{margin-left:-366.854400px;}
._5f{margin-left:-347.394000px;}
._59{margin-left:-340.823520px;}
._2a{margin-left:-334.972560px;}
._4a{margin-left:-330.004800px;}
._27{margin-left:-318.074400px;}
._62{margin-left:-314.456400px;}
._69{margin-left:-312.461760px;}
._35{margin-left:-310.866240px;}
._2b{margin-left:-308.391120px;}
._32{margin-left:-302.191920px;}
._16{margin-left:-300.903840px;}
._26{margin-left:-296.908560px;}
._61{margin-left:-293.220000px;}
._28{margin-left:-291.037680px;}
._31{margin-left:-289.132560px;}
._52{margin-left:-285.140880px;}
._2c{margin-left:-283.860000px;}
._53{margin-left:-277.560000px;}
._34{margin-left:-275.504400px;}
._25{margin-left:-270.900000px;}
._30{margin-left:-268.711920px;}
._57{margin-left:-265.065840px;}
._46{margin-left:-261.860400px;}
._4c{margin-left:-260.820000px;}
._41{margin-left:-258.722880px;}
._47{margin-left:-254.646000px;}
._49{margin-left:-253.440000px;}
._5a{margin-left:-251.911680px;}
._5e{margin-left:-246.902400px;}
._3d{margin-left:-245.315520px;}
._29{margin-left:-242.138880px;}
._6e{margin-left:-239.963040px;}
._56{margin-left:-238.620000px;}
._44{margin-left:-236.724480px;}
._40{margin-left:-234.919680px;}
._1b{margin-left:-231.934080px;}
._48{margin-left:-230.210160px;}
._1f{margin-left:-228.130560px;}
._1d{margin-left:-226.273200px;}
._65{margin-left:-224.545920px;}
._43{margin-left:-222.743280px;}
._55{margin-left:-220.914720px;}
._3c{margin-left:-219.130560px;}
._2e{margin-left:-217.200720px;}
._19{margin-left:-216.183840px;}
._4e{margin-left:-213.356880px;}
._12{margin-left:-208.980000px;}
._5c{margin-left:-207.635520px;}
._4b{margin-left:-205.840560px;}
._1e{margin-left:-202.617840px;}
._3a{margin-left:-201.158160px;}
._17{margin-left:-198.121440px;}
._5b{margin-left:-194.736960px;}
._23{margin-left:-193.711920px;}
._4d{margin-left:-192.708000px;}
._3e{margin-left:-191.572560px;}
._15{margin-left:-187.995600px;}
._45{margin-left:-182.427840px;}
._36{margin-left:-180.131760px;}
._39{margin-left:-178.927920px;}
._6f{margin-left:-173.571360px;}
._68{margin-left:-171.838080px;}
._6a{margin-left:-170.631840px;}
._42{margin-left:-168.562080px;}
._60{margin-left:-167.088480px;}
._3f{margin-left:-163.963680px;}
._54{margin-left:-160.609680px;}
._3b{margin-left:-159.300000px;}
._21{margin-left:-156.420000px;}
._50{margin-left:-155.162640px;}
._51{margin-left:-153.764640px;}
._4f{margin-left:-150.480000px;}
._14{margin-left:-148.003920px;}
._6d{margin-left:-146.563440px;}
._6b{margin-left:-143.655840px;}
._64{margin-left:-140.780880px;}
._63{margin-left:-136.227360px;}
._22{margin-left:-133.005120px;}
._24{margin-left:-128.454480px;}
._6c{margin-left:-125.428080px;}
._38{margin-left:-110.932560px;}
._2d{margin-left:-106.504560px;}
._66{margin-left:-98.100000px;}
._67{margin-left:-96.880800px;}
._70{margin-left:-93.783600px;}
._1a{margin-left:-92.649360px;}
._37{margin-left:-88.560000px;}
._20{margin-left:-66.231600px;}
._71{margin-left:-60.389760px;}
._2f{margin-left:-49.140000px;}
._1c{margin-left:-21.818160px;}
._13{margin-left:-7.680240px;}
._87{margin-left:-5.664480px;}
._7{margin-left:-4.633200px;}
._9{margin-left:-3.285360px;}
._5d{margin-left:-2.160000px;}
._0{margin-left:-1.095120px;}
._1{width:1.085280px;}
._b{width:2.693760px;}
._33{width:4.178880px;}
._18{width:5.189040px;}
._6{width:6.318000px;}
._5{width:7.413120px;}
._3{width:8.929440px;}
._4{width:10.507440px;}
._84{width:12.321600px;}
._82{width:13.899600px;}
._f{width:15.584400px;}
._10{width:16.595280px;}
._83{width:18.505200px;}
._81{width:19.719360px;}
._85{width:22.296720px;}
._8{width:23.334480px;}
._76{width:24.399360px;}
._c{width:25.608960px;}
._d{width:27.041040px;}
._7e{width:28.054800px;}
._2{width:29.598960px;}
._88{width:31.000320px;}
._11{width:33.822480px;}
._e{width:34.959600px;}
._75{width:36.516480px;}
._74{width:37.763040px;}
._7d{width:39.562560px;}
._a{width:40.940640px;}
._77{width:41.951520px;}
._80{width:49.250160px;}
._7f{width:50.291280px;}
._86{width:57.226800px;}
._78{width:69.610080px;}
._79{width:70.899840px;}
._7b{width:79.017120px;}
._7c{width:80.428800px;}
._7a{width:91.147680px;}
._89{width:100.884000px;}
._8a{width:102.768240px;}
._8b{width:191.340000px;}
._8c{width:800.617440px;}
._8d{width:843.240000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y74{bottom:4.500000px;}
.y6d{bottom:4.680000px;}
.y73{bottom:28.620000px;}
.y6c{bottom:28.800000px;}
.y78{bottom:28.830000px;}
.y3{bottom:38.376000px;}
.y71{bottom:52.920000px;}
.y77{bottom:52.950000px;}
.y2{bottom:62.676000px;}
.y70{bottom:77.040000px;}
.y76{bottom:77.070000px;}
.y6f{bottom:101.160000px;}
.y6a{bottom:110.736000px;}
.y57{bottom:116.856000px;}
.y2f{bottom:129.276000px;}
.y85{bottom:130.356000px;}
.y69{bottom:134.856000px;}
.y56{bottom:141.156000px;}
.y2e{bottom:153.390000px;}
.y84{bottom:154.650000px;}
.y68{bottom:159.150000px;}
.y55{bottom:165.270000px;}
.y2d{bottom:176.250000px;}
.y2c{bottom:177.510000px;}
.y83{bottom:178.770000px;}
.y67{bottom:183.270000px;}
.y54{bottom:189.390000px;}
.y2b{bottom:201.630000px;}
.y82{bottom:202.890000px;}
.y66{bottom:207.390000px;}
.y53{bottom:213.510000px;}
.y2a{bottom:225.750000px;}
.y81{bottom:227.010000px;}
.y65{bottom:231.510000px;}
.y52{bottom:237.630000px;}
.y28{bottom:249.870000px;}
.y80{bottom:251.130000px;}
.y29{bottom:252.930000px;}
.y64{bottom:255.630000px;}
.y51{bottom:261.750000px;}
.y27{bottom:274.215000px;}
.y7f{bottom:275.295000px;}
.y63{bottom:279.795000px;}
.y50{bottom:285.915000px;}
.y25{bottom:298.335000px;}
.y26{bottom:299.415000px;}
.y62{bottom:303.915000px;}
.y4f{bottom:310.215000px;}
.y24{bottom:322.455000px;}
.y7e{bottom:323.715000px;}
.y61{bottom:328.215000px;}
.y4e{bottom:334.335000px;}
.y23{bottom:346.575000px;}
.y7d{bottom:347.835000px;}
.y60{bottom:352.335000px;}
.y4d{bottom:358.455000px;}
.y22{bottom:370.695000px;}
.y7c{bottom:371.955000px;}
.y5f{bottom:376.455000px;}
.y4c{bottom:382.575000px;}
.y21{bottom:394.815000px;}
.y7b{bottom:396.075000px;}
.y5e{bottom:400.575000px;}
.y4b{bottom:406.695000px;}
.y20{bottom:419.115000px;}
.y7a{bottom:420.195000px;}
.y5d{bottom:424.695000px;}
.y4a{bottom:430.815000px;}
.y79{bottom:440.535000px;}
.y1f{bottom:443.235000px;}
.y5c{bottom:448.815000px;}
.y49{bottom:455.115000px;}
.y1e{bottom:467.355000px;}
.y5b{bottom:473.115000px;}
.y48{bottom:479.235000px;}
.y1d{bottom:491.475000px;}
.y5a{bottom:497.235000px;}
.y47{bottom:503.355000px;}
.y1c{bottom:515.595000px;}
.y59{bottom:521.355000px;}
.y46{bottom:527.475000px;}
.y75{bottom:537.915000px;}
.y1b{bottom:539.715000px;}
.y58{bottom:545.475000px;}
.y1a{bottom:564.045000px;}
.y45{bottom:569.625000px;}
.y19{bottom:588.165000px;}
.y44{bottom:593.745000px;}
.y18{bottom:612.285000px;}
.y43{bottom:618.045000px;}
.y72{bottom:635.325000px;}
.y17{bottom:636.405000px;}
.y42{bottom:642.165000px;}
.y16{bottom:660.525000px;}
.y41{bottom:666.285000px;}
.y6e{bottom:684.285000px;}
.y15{bottom:684.645000px;}
.y40{bottom:690.405000px;}
.y14{bottom:708.765000px;}
.y3f{bottom:714.525000px;}
.y13{bottom:733.065000px;}
.y3e{bottom:738.645000px;}
.y12{bottom:757.185000px;}
.y3d{bottom:762.765000px;}
.y11{bottom:781.305000px;}
.y3c{bottom:787.065000px;}
.y10{bottom:805.425000px;}
.y6b{bottom:805.785000px;}
.y3b{bottom:811.185000px;}
.yf{bottom:829.545000px;}
.y3a{bottom:835.305000px;}
.ye{bottom:853.710000px;}
.y39{bottom:859.470000px;}
.y38{bottom:883.590000px;}
.yd{bottom:896.010000px;}
.y37{bottom:907.710000px;}
.yc{bottom:920.130000px;}
.y36{bottom:932.010000px;}
.yb{bottom:944.250000px;}
.y35{bottom:956.130000px;}
.ya{bottom:968.370000px;}
.y34{bottom:980.250000px;}
.y33{bottom:1004.370000px;}
.y9{bottom:1010.490000px;}
.y32{bottom:1028.490000px;}
.y8{bottom:1034.610000px;}
.y31{bottom:1052.610000px;}
.y7{bottom:1058.730000px;}
.y30{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h13{height:48.240000px;}
.h11{height:48.456000px;}
.h5{height:58.531992px;}
.h4{height:72.846211px;}
.h9{height:76.219102px;}
.hd{height:77.329687px;}
.ha{height:80.539102px;}
.hb{height:81.259102px;}
.h10{height:82.635820px;}
.h2{height:82.676953px;}
.he{height:83.238047px;}
.h7{height:83.419102px;}
.hc{height:84.859102px;}
.h3{height:84.898125px;}
.h8{height:86.299102px;}
.h6{height:86.689687px;}
.hf{height:87.859687px;}
.h15{height:96.660000px;}
.h14{height:96.696000px;}
.h12{height:120.780000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:128.736000px;}
.w3{width:156.600000px;}
.w4{width:157.890000px;}
.w6{width:231.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.740000px;}
.x1{left:85.319987px;}
.xa{left:95.219987px;}
.x6{left:96.839987px;}
.x7{left:100.655987px;}
.xb{left:109.475987px;}
.x24{left:112.355987px;}
.x3{left:124.235987px;}
.x5{left:129.635987px;}
.x13{left:139.355987px;}
.x4{left:147.095987px;}
.x8{left:159.689987px;}
.x9{left:186.689987px;}
.x12{left:261.029987px;}
.xc{left:285.689987px;}
.x21{left:297.390000px;}
.x11{left:310.574987px;}
.xe{left:324.614987px;}
.xf{left:339.734987px;}
.xd{left:342.614987px;}
.x2{left:430.814987px;}
.x10{left:446.474987px;}
.x22{left:456.015000px;}
.x18{left:502.484987px;}
.x23{left:585.465000px;}
.x1f{left:635.144987px;}
.x1e{left:638.384987px;}
.x15{left:665.744987px;}
.x1b{left:715.109987px;}
.x19{left:737.789987px;}
.x1a{left:741.749987px;}
.x14{left:748.769987px;}
.x17{left:767.849987px;}
.x1c{left:770.189987px;}
.x1d{left:774.329987px;}
.x16{left:780.989987px;}
@media print{
.vf{vertical-align:-85.760000pt;}
.vc{vertical-align:-14.080000pt;}
.v4{vertical-align:-12.160000pt;}
.vb{vertical-align:-10.240000pt;}
.v7{vertical-align:-8.320000pt;}
.v2{vertical-align:-7.040000pt;}
.v6{vertical-align:-3.840000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.280000pt;}
.vd{vertical-align:3.840000pt;}
.v1{vertical-align:7.040000pt;}
.v3{vertical-align:8.320000pt;}
.va{vertical-align:10.240000pt;}
.v5{vertical-align:12.160000pt;}
.ve{vertical-align:26.880000pt;}
.ls7{letter-spacing:-19.360000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.346667pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.lse{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.130667pt;}
.lsb{letter-spacing:0.303467pt;}
.ls10{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls2{letter-spacing:3.598080pt;}
.lsf{letter-spacing:18.863360pt;}
.lsa{letter-spacing:24.160000pt;}
.lsd{letter-spacing:71.343360pt;}
.ws9{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.023467pt;}
.ws7{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.560000pt;}
.ws6{word-spacing:-12.096000pt;}
.ws2{word-spacing:-0.205547pt;}
.ws1{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:0.271787pt;}
._72{margin-left:-2146.282027pt;}
._73{margin-left:-648.950400pt;}
._58{margin-left:-326.092800pt;}
._5f{margin-left:-308.794667pt;}
._59{margin-left:-302.954240pt;}
._2a{margin-left:-297.753387pt;}
._4a{margin-left:-293.337600pt;}
._27{margin-left:-282.732800pt;}
._62{margin-left:-279.516800pt;}
._69{margin-left:-277.743787pt;}
._35{margin-left:-276.325547pt;}
._2b{margin-left:-274.125440pt;}
._32{margin-left:-268.615040pt;}
._16{margin-left:-267.470080pt;}
._26{margin-left:-263.918720pt;}
._61{margin-left:-260.640000pt;}
._28{margin-left:-258.700160pt;}
._31{margin-left:-257.006720pt;}
._52{margin-left:-253.458560pt;}
._2c{margin-left:-252.320000pt;}
._53{margin-left:-246.720000pt;}
._34{margin-left:-244.892800pt;}
._25{margin-left:-240.800000pt;}
._30{margin-left:-238.855040pt;}
._57{margin-left:-235.614080pt;}
._46{margin-left:-232.764800pt;}
._4c{margin-left:-231.840000pt;}
._41{margin-left:-229.975893pt;}
._47{margin-left:-226.352000pt;}
._49{margin-left:-225.280000pt;}
._5a{margin-left:-223.921493pt;}
._5e{margin-left:-219.468800pt;}
._3d{margin-left:-218.058240pt;}
._29{margin-left:-215.234560pt;}
._6e{margin-left:-213.300480pt;}
._56{margin-left:-212.106667pt;}
._44{margin-left:-210.421760pt;}
._40{margin-left:-208.817493pt;}
._1b{margin-left:-206.163627pt;}
._48{margin-left:-204.631253pt;}
._1f{margin-left:-202.782720pt;}
._1d{margin-left:-201.131733pt;}
._65{margin-left:-199.596373pt;}
._43{margin-left:-197.994027pt;}
._55{margin-left:-196.368640pt;}
._3c{margin-left:-194.782720pt;}
._2e{margin-left:-193.067307pt;}
._19{margin-left:-192.163413pt;}
._4e{margin-left:-189.650560pt;}
._12{margin-left:-185.760000pt;}
._5c{margin-left:-184.564907pt;}
._4b{margin-left:-182.969387pt;}
._1e{margin-left:-180.104747pt;}
._3a{margin-left:-178.807253pt;}
._17{margin-left:-176.107947pt;}
._5b{margin-left:-173.099520pt;}
._23{margin-left:-172.188373pt;}
._4d{margin-left:-171.296000pt;}
._3e{margin-left:-170.286720pt;}
._15{margin-left:-167.107200pt;}
._45{margin-left:-162.158080pt;}
._36{margin-left:-160.117120pt;}
._39{margin-left:-159.047040pt;}
._6f{margin-left:-154.285653pt;}
._68{margin-left:-152.744960pt;}
._6a{margin-left:-151.672747pt;}
._42{margin-left:-149.832960pt;}
._60{margin-left:-148.523093pt;}
._3f{margin-left:-145.745493pt;}
._54{margin-left:-142.764160pt;}
._3b{margin-left:-141.600000pt;}
._21{margin-left:-139.040000pt;}
._50{margin-left:-137.922347pt;}
._51{margin-left:-136.679680pt;}
._4f{margin-left:-133.760000pt;}
._14{margin-left:-131.559040pt;}
._6d{margin-left:-130.278613pt;}
._6b{margin-left:-127.694080pt;}
._64{margin-left:-125.138560pt;}
._63{margin-left:-121.090987pt;}
._22{margin-left:-118.226773pt;}
._24{margin-left:-114.181760pt;}
._6c{margin-left:-111.491627pt;}
._38{margin-left:-98.606720pt;}
._2d{margin-left:-94.670720pt;}
._66{margin-left:-87.200000pt;}
._67{margin-left:-86.116267pt;}
._70{margin-left:-83.363200pt;}
._1a{margin-left:-82.354987pt;}
._37{margin-left:-78.720000pt;}
._20{margin-left:-58.872533pt;}
._71{margin-left:-53.679787pt;}
._2f{margin-left:-43.680000pt;}
._1c{margin-left:-19.393920pt;}
._13{margin-left:-6.826880pt;}
._87{margin-left:-5.035093pt;}
._7{margin-left:-4.118400pt;}
._9{margin-left:-2.920320pt;}
._5d{margin-left:-1.920000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.964693pt;}
._b{width:2.394453pt;}
._33{width:3.714560pt;}
._18{width:4.612480pt;}
._6{width:5.616000pt;}
._5{width:6.589440pt;}
._3{width:7.937280pt;}
._4{width:9.339947pt;}
._84{width:10.952533pt;}
._82{width:12.355200pt;}
._f{width:13.852800pt;}
._10{width:14.751360pt;}
._83{width:16.449067pt;}
._81{width:17.528320pt;}
._85{width:19.819307pt;}
._8{width:20.741760pt;}
._76{width:21.688320pt;}
._c{width:22.763520pt;}
._d{width:24.036480pt;}
._7e{width:24.937600pt;}
._2{width:26.310187pt;}
._88{width:27.555840pt;}
._11{width:30.064427pt;}
._e{width:31.075200pt;}
._75{width:32.459093pt;}
._74{width:33.567147pt;}
._7d{width:35.166720pt;}
._a{width:36.391680pt;}
._77{width:37.290240pt;}
._80{width:43.777920pt;}
._7f{width:44.703360pt;}
._86{width:50.868267pt;}
._78{width:61.875627pt;}
._79{width:63.022080pt;}
._7b{width:70.237440pt;}
._7c{width:71.492267pt;}
._7a{width:81.020160pt;}
._89{width:89.674667pt;}
._8a{width:91.349547pt;}
._8b{width:170.080000pt;}
._8c{width:711.659947pt;}
._8d{width:749.546667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:4.000000pt;}
.y6d{bottom:4.160000pt;}
.y73{bottom:25.440000pt;}
.y6c{bottom:25.600000pt;}
.y78{bottom:25.626667pt;}
.y3{bottom:34.112000pt;}
.y71{bottom:47.040000pt;}
.y77{bottom:47.066667pt;}
.y2{bottom:55.712000pt;}
.y70{bottom:68.480000pt;}
.y76{bottom:68.506667pt;}
.y6f{bottom:89.920000pt;}
.y6a{bottom:98.432000pt;}
.y57{bottom:103.872000pt;}
.y2f{bottom:114.912000pt;}
.y85{bottom:115.872000pt;}
.y69{bottom:119.872000pt;}
.y56{bottom:125.472000pt;}
.y2e{bottom:136.346667pt;}
.y84{bottom:137.466667pt;}
.y68{bottom:141.466667pt;}
.y55{bottom:146.906667pt;}
.y2d{bottom:156.666667pt;}
.y2c{bottom:157.786667pt;}
.y83{bottom:158.906667pt;}
.y67{bottom:162.906667pt;}
.y54{bottom:168.346667pt;}
.y2b{bottom:179.226667pt;}
.y82{bottom:180.346667pt;}
.y66{bottom:184.346667pt;}
.y53{bottom:189.786667pt;}
.y2a{bottom:200.666667pt;}
.y81{bottom:201.786667pt;}
.y65{bottom:205.786667pt;}
.y52{bottom:211.226667pt;}
.y28{bottom:222.106667pt;}
.y80{bottom:223.226667pt;}
.y29{bottom:224.826667pt;}
.y64{bottom:227.226667pt;}
.y51{bottom:232.666667pt;}
.y27{bottom:243.746667pt;}
.y7f{bottom:244.706667pt;}
.y63{bottom:248.706667pt;}
.y50{bottom:254.146667pt;}
.y25{bottom:265.186667pt;}
.y26{bottom:266.146667pt;}
.y62{bottom:270.146667pt;}
.y4f{bottom:275.746667pt;}
.y24{bottom:286.626667pt;}
.y7e{bottom:287.746667pt;}
.y61{bottom:291.746667pt;}
.y4e{bottom:297.186667pt;}
.y23{bottom:308.066667pt;}
.y7d{bottom:309.186667pt;}
.y60{bottom:313.186667pt;}
.y4d{bottom:318.626667pt;}
.y22{bottom:329.506667pt;}
.y7c{bottom:330.626667pt;}
.y5f{bottom:334.626667pt;}
.y4c{bottom:340.066667pt;}
.y21{bottom:350.946667pt;}
.y7b{bottom:352.066667pt;}
.y5e{bottom:356.066667pt;}
.y4b{bottom:361.506667pt;}
.y20{bottom:372.546667pt;}
.y7a{bottom:373.506667pt;}
.y5d{bottom:377.506667pt;}
.y4a{bottom:382.946667pt;}
.y79{bottom:391.586667pt;}
.y1f{bottom:393.986667pt;}
.y5c{bottom:398.946667pt;}
.y49{bottom:404.546667pt;}
.y1e{bottom:415.426667pt;}
.y5b{bottom:420.546667pt;}
.y48{bottom:425.986667pt;}
.y1d{bottom:436.866667pt;}
.y5a{bottom:441.986667pt;}
.y47{bottom:447.426667pt;}
.y1c{bottom:458.306667pt;}
.y59{bottom:463.426667pt;}
.y46{bottom:468.866667pt;}
.y75{bottom:478.146667pt;}
.y1b{bottom:479.746667pt;}
.y58{bottom:484.866667pt;}
.y1a{bottom:501.373333pt;}
.y45{bottom:506.333333pt;}
.y19{bottom:522.813333pt;}
.y44{bottom:527.773333pt;}
.y18{bottom:544.253333pt;}
.y43{bottom:549.373333pt;}
.y72{bottom:564.733333pt;}
.y17{bottom:565.693333pt;}
.y42{bottom:570.813333pt;}
.y16{bottom:587.133333pt;}
.y41{bottom:592.253333pt;}
.y6e{bottom:608.253333pt;}
.y15{bottom:608.573333pt;}
.y40{bottom:613.693333pt;}
.y14{bottom:630.013333pt;}
.y3f{bottom:635.133333pt;}
.y13{bottom:651.613333pt;}
.y3e{bottom:656.573333pt;}
.y12{bottom:673.053333pt;}
.y3d{bottom:678.013333pt;}
.y11{bottom:694.493333pt;}
.y3c{bottom:699.613333pt;}
.y10{bottom:715.933333pt;}
.y6b{bottom:716.253333pt;}
.y3b{bottom:721.053333pt;}
.yf{bottom:737.373333pt;}
.y3a{bottom:742.493333pt;}
.ye{bottom:758.853333pt;}
.y39{bottom:763.973333pt;}
.y38{bottom:785.413333pt;}
.yd{bottom:796.453333pt;}
.y37{bottom:806.853333pt;}
.yc{bottom:817.893333pt;}
.y36{bottom:828.453333pt;}
.yb{bottom:839.333333pt;}
.y35{bottom:849.893333pt;}
.ya{bottom:860.773333pt;}
.y34{bottom:871.333333pt;}
.y33{bottom:892.773333pt;}
.y9{bottom:898.213333pt;}
.y32{bottom:914.213333pt;}
.y8{bottom:919.653333pt;}
.y31{bottom:935.653333pt;}
.y7{bottom:941.093333pt;}
.y30{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h13{height:42.880000pt;}
.h11{height:43.072000pt;}
.h5{height:52.028437pt;}
.h4{height:64.752187pt;}
.h9{height:67.750312pt;}
.hd{height:68.737500pt;}
.ha{height:71.590312pt;}
.hb{height:72.230312pt;}
.h10{height:73.454062pt;}
.h2{height:73.490625pt;}
.he{height:73.989375pt;}
.h7{height:74.150313pt;}
.hc{height:75.430312pt;}
.h3{height:75.465000pt;}
.h8{height:76.710312pt;}
.h6{height:77.057500pt;}
.hf{height:78.097500pt;}
.h15{height:85.920000pt;}
.h14{height:85.952000pt;}
.h12{height:107.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:114.432000pt;}
.w3{width:139.200000pt;}
.w4{width:140.346667pt;}
.w6{width:205.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.880000pt;}
.x1{left:75.839988pt;}
.xa{left:84.639988pt;}
.x6{left:86.079988pt;}
.x7{left:89.471988pt;}
.xb{left:97.311988pt;}
.x24{left:99.871988pt;}
.x3{left:110.431988pt;}
.x5{left:115.231988pt;}
.x13{left:123.871988pt;}
.x4{left:130.751988pt;}
.x8{left:141.946655pt;}
.x9{left:165.946655pt;}
.x12{left:232.026655pt;}
.xc{left:253.946655pt;}
.x21{left:264.346667pt;}
.x11{left:276.066655pt;}
.xe{left:288.546655pt;}
.xf{left:301.986655pt;}
.xd{left:304.546655pt;}
.x2{left:382.946655pt;}
.x10{left:396.866655pt;}
.x22{left:405.346667pt;}
.x18{left:446.653322pt;}
.x23{left:520.413333pt;}
.x1f{left:564.573322pt;}
.x1e{left:567.453322pt;}
.x15{left:591.773322pt;}
.x1b{left:635.653322pt;}
.x19{left:655.813322pt;}
.x1a{left:659.333322pt;}
.x14{left:665.573322pt;}
.x17{left:682.533322pt;}
.x1c{left:684.613322pt;}
.x1d{left:688.293322pt;}
.x16{left:694.213322pt;}
}




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