
    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_7ccc6516e20676b3f071733a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_a3ad1cb1f4ab2fee73263e4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_bfd8c9ffb707ac71f06f0573.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_d96e95b5ca6f701847b1c13a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725000;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_e3a5bb622b0e3218e60a25af.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_b31e9fba987198640df8b570.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_b9ac1223516713781ac7514c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_da144ae789acd9fa110e4fad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_07cbc435d10d3d19f1478ccb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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_1b60fa04591d6995da98111b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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:ffb;src:url('chunks/assets/font_8cdf548a5472e2f0adaadfa2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773000;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:ffc;src:url('chunks/assets/font_c28433eb46d85ef0600d4f16.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.078000px;}
.v1{vertical-align:31.236000px;}
.v6{vertical-align:34.236000px;}
.v5{vertical-align:44.898000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.001597px;}
.ls21{letter-spacing:0.002692px;}
.ls11{letter-spacing:0.004322px;}
.lsf{letter-spacing:0.010766px;}
.ls6{letter-spacing:0.013995px;}
.ls18{letter-spacing:0.018046px;}
.ls8{letter-spacing:0.023807px;}
.lsb{letter-spacing:0.024891px;}
.ls1c{letter-spacing:0.024962px;}
.ls2{letter-spacing:0.025901px;}
.ls1b{letter-spacing:0.065455px;}
.ls4{letter-spacing:0.910881px;}
.ls0{letter-spacing:2.986053px;}
.ls9{letter-spacing:4.647277px;}
.ls23{letter-spacing:4.712731px;}
.ls12{letter-spacing:6.367460px;}
.ls26{letter-spacing:7.173791px;}
.ls1d{letter-spacing:7.197543px;}
.ls5{letter-spacing:14.530921px;}
.ls1e{letter-spacing:18.130924px;}
.lsc{letter-spacing:18.196379px;}
.ls24{letter-spacing:21.796382px;}
.ls3{letter-spacing:23.301838px;}
.ls10{letter-spacing:24.811460px;}
.ls25{letter-spacing:25.457412px;}
.ls19{letter-spacing:28.183460px;}
.lsd{letter-spacing:28.276387px;}
.ls1a{letter-spacing:29.127297px;}
.ls20{letter-spacing:29.912752px;}
.lse{letter-spacing:31.156390px;}
.lsa{letter-spacing:32.727300px;}
.ls14{letter-spacing:36.392758px;}
.ls15{letter-spacing:43.504763px;}
.ls1f{letter-spacing:555.382281px;}
.ls17{letter-spacing:904.844390px;}
.ls7{letter-spacing:977.695360px;}
.ls13{letter-spacing:980.117180px;}
.ls22{letter-spacing:1053.688151px;}
.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;}
}
.ws36{word-spacing:-42.637126px;}
.ws1f{word-spacing:-32.714209px;}
.ws42{word-spacing:-24.440748px;}
.ws1e{word-spacing:-17.283914px;}
.ws34{word-spacing:-14.111859px;}
.ws20{word-spacing:-7.345954px;}
.wsf{word-spacing:-7.339954px;}
.ws26{word-spacing:-3.456003px;}
.wsb{word-spacing:-1.688729px;}
.ws22{word-spacing:-1.492365px;}
.ws43{word-spacing:-0.117818px;}
.ws7{word-spacing:-0.071731px;}
.ws6{word-spacing:0.000000px;}
.ws40{word-spacing:0.013091px;}
.ws39{word-spacing:0.144000px;}
.ws35{word-spacing:0.274909px;}
.ws31{word-spacing:0.994910px;}
.wse{word-spacing:1.584001px;}
.ws2c{word-spacing:1.649456px;}
.ws3e{word-spacing:1.911274px;}
.ws10{word-spacing:1.976729px;}
.ws23{word-spacing:2.565820px;}
.ws3c{word-spacing:2.696730px;}
.ws15{word-spacing:3.154912px;}
.ws4f{word-spacing:3.299613px;}
.ws51{word-spacing:3.359389px;}
.ws2b{word-spacing:3.416730px;}
.ws4{word-spacing:3.613094px;}
.ws24{word-spacing:3.678549px;}
.ws45{word-spacing:3.744003px;}
.wsa{word-spacing:4.005822px;}
.ws32{word-spacing:4.333095px;}
.ws30{word-spacing:4.660368px;}
.ws3d{word-spacing:4.725822px;}
.wsd{word-spacing:4.922186px;}
.ws4b{word-spacing:4.987641px;}
.ws1c{word-spacing:5.053095px;}
.ws1d{word-spacing:5.118550px;}
.ws4c{word-spacing:5.707641px;}
.ws2e{word-spacing:5.969460px;}
.ws52{word-spacing:6.061246px;}
.ws50{word-spacing:6.121021px;}
.ws11{word-spacing:6.624006px;}
.ws17{word-spacing:6.754915px;}
.ws4a{word-spacing:6.820369px;}
.ws48{word-spacing:6.885824px;}
.ws4d{word-spacing:6.951279px;}
.ws3a{word-spacing:7.059856px;}
.ws1b{word-spacing:7.867643px;}
.ws14{word-spacing:7.933098px;}
.wsc{word-spacing:8.064007px;}
.ws33{word-spacing:8.325825px;}
.ws2f{word-spacing:8.587644px;}
.ws37{word-spacing:9.176735px;}
.ws3f{word-spacing:10.354918px;}
.ws29{word-spacing:10.834046px;}
.ws4e{word-spacing:10.840046px;}
.ws5{word-spacing:10.878555px;}
.ws19{word-spacing:11.336737px;}
.ws13{word-spacing:11.402191px;}
.ws12{word-spacing:11.467646px;}
.ws2a{word-spacing:11.938919px;}
.ws3b{word-spacing:12.855283px;}
.ws38{word-spacing:12.973102px;}
.ws1a{word-spacing:13.234920px;}
.ws44{word-spacing:13.837102px;}
.ws18{word-spacing:13.954921px;}
.ws25{word-spacing:14.282194px;}
.ws21{word-spacing:14.476046px;}
.ws46{word-spacing:14.544012px;}
.ws2d{word-spacing:15.866195px;}
.ws49{word-spacing:17.692046px;}
.ws9{word-spacing:25.003657px;}
.ws2{word-spacing:26.253619px;}
.ws27{word-spacing:26.827469px;}
.ws47{word-spacing:28.996388px;}
.ws28{word-spacing:29.061842px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws1{word-spacing:54.283749px;}
.ws8{word-spacing:60.480050px;}
.ws16{word-spacing:80.625869px;}
.ws41{word-spacing:99.202992px;}
._12{margin-left:-6.089067px;}
._1{margin-left:-4.164233px;}
._2{margin-left:-2.223667px;}
._15{margin-left:-1.179972px;}
._18{width:1.179972px;}
._3{width:2.223667px;}
._0{width:4.610401px;}
._14{width:17.541833px;}
._20{width:19.834533px;}
._23{width:21.115185px;}
._1f{width:22.806641px;}
._1a{width:24.874908px;}
._1b{width:27.004310px;}
._17{width:28.247947px;}
._1c{width:29.562407px;}
._21{width:31.547328px;}
._16{width:32.921875px;}
._1d{width:35.214575px;}
._f{width:41.301853px;}
._11{width:44.640037px;}
._19{width:53.407375px;}
._5{width:60.545505px;}
._9{width:66.894601px;}
._22{width:75.272790px;}
._1e{width:80.697600px;}
._24{width:126.801142px;}
._8{width:1075.613653px;}
._a{width:1180.213682px;}
._d{width:1317.270247px;}
._10{width:1380.437514px;}
._13{width:1464.610340px;}
._c{width:1625.959508px;}
._6{width:1699.594144px;}
._7{width:1713.472308px;}
._b{width:1727.541469px;}
._4{width:2079.361733px;}
._e{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:93.813000px;}
.y29{bottom:176.005500px;}
.y28{bottom:196.329000px;}
.y27{bottom:217.249500px;}
.y6c{bottom:224.026500px;}
.y48{bottom:233.418000px;}
.y26{bottom:237.573000px;}
.y6b{bottom:255.369000px;}
.y25{bottom:257.896500px;}
.y47{bottom:270.507000px;}
.y24{bottom:278.220000px;}
.y6a{bottom:286.711500px;}
.y46{bottom:307.596000px;}
.y69{bottom:314.407500px;}
.y23{bottom:316.468500px;}
.y87{bottom:322.473000px;}
.y45{bottom:344.685000px;}
.y86{bottom:347.877000px;}
.y68{bottom:348.645000px;}
.y22{bottom:366.298500px;}
.y85{bottom:373.282500px;}
.y44{bottom:381.774000px;}
.y21{bottom:386.622000px;}
.y67{bottom:390.214500px;}
.y84{bottom:398.686500px;}
.y20{bottom:406.947000px;}
.y83{bottom:416.619000px;}
.y66{bottom:419.683500px;}
.y43{bottom:420.693000px;}
.y1f{bottom:427.866000px;}
.y82{bottom:442.024500px;}
.y1e{bottom:448.189500px;}
.y65{bottom:449.154000px;}
.y81{bottom:459.957000px;}
.y1d{bottom:468.514500px;}
.y42{bottom:472.183500px;}
.y64{bottom:483.391500px;}
.y80{bottom:485.362500px;}
.y1c{bottom:488.838000px;}
.y41{bottom:492.507000px;}
.y7f{bottom:503.295000px;}
.y1b{bottom:509.161500px;}
.y40{bottom:512.830500px;}
.y63{bottom:524.961000px;}
.y1a{bottom:529.485000px;}
.y7{bottom:532.603500px;}
.y3f{bottom:533.154000px;}
.y7e{bottom:537.432000px;}
.y62{bottom:545.284500px;}
.y19{bottom:550.405500px;}
.y3e{bottom:562.275000px;}
.y61{bottom:569.295000px;}
.y6{bottom:569.326500px;}
.y18{bottom:570.729000px;}
.y3d{bottom:582.598500px;}
.y7d{bottom:583.012500px;}
.y60{bottom:589.618500px;}
.y17{bottom:591.052500px;}
.y5{bottom:598.059000px;}
.y7c{bottom:603.336000px;}
.y16{bottom:611.376000px;}
.y5f{bottom:612.634500px;}
.y5e{bottom:623.859000px;}
.y3c{bottom:625.000500px;}
.y15{bottom:631.699500px;}
.y7b{bottom:639.864000px;}
.y5d{bottom:651.879000px;}
.y14{bottom:652.024500px;}
.y3b{bottom:662.089500px;}
.y5c{bottom:672.202500px;}
.y13{bottom:677.922000px;}
.y7a{bottom:681.652500px;}
.y5b{bottom:692.526000px;}
.y79{bottom:692.877000px;}
.y3a{bottom:699.178500px;}
.y12{bottom:715.801500px;}
.y5a{bottom:719.586000px;}
.y78{bottom:735.607500px;}
.y39{bottom:736.266000px;}
.y59{bottom:753.249000px;}
.y11{bottom:753.681000px;}
.y4{bottom:759.814500px;}
.y77{bottom:772.135500px;}
.y38{bottom:773.355000px;}
.y58{bottom:773.572500px;}
.y10{bottom:791.560500px;}
.y57{bottom:793.896000px;}
.y3{bottom:797.095500px;}
.y37{bottom:815.757000px;}
.y76{bottom:817.716000px;}
.y56{bottom:817.906500px;}
.yf{bottom:829.440000px;}
.y75{bottom:838.041000px;}
.y55{bottom:839.365500px;}
.y2{bottom:841.927500px;}
.y54{bottom:850.590000px;}
.y36{bottom:854.677500px;}
.y74{bottom:858.364500px;}
.ye{bottom:867.319500px;}
.y53{bottom:875.427000px;}
.y73{bottom:878.688000px;}
.y52{bottom:895.750500px;}
.yd{bottom:905.199000px;}
.y35{bottom:906.166500px;}
.y72{bottom:915.216000px;}
.y51{bottom:916.075500px;}
.yc{bottom:926.238000px;}
.y34{bottom:926.490000px;}
.y50{bottom:942.466500px;}
.y33{bottom:946.813500px;}
.y71{bottom:960.796500px;}
.y4f{bottom:962.790000px;}
.yb{bottom:964.117500px;}
.y32{bottom:967.966500px;}
.y70{bottom:981.121500px;}
.y4e{bottom:983.113500px;}
.y31{bottom:988.290000px;}
.ya{bottom:1001.997000px;}
.y4d{bottom:1003.437000px;}
.y30{bottom:1008.615000px;}
.y6f{bottom:1014.894000px;}
.y4c{bottom:1023.762000px;}
.y2f{bottom:1028.938500px;}
.y9{bottom:1039.878000px;}
.y4b{bottom:1044.085500px;}
.y6e{bottom:1048.668000px;}
.y2e{bottom:1050.091500px;}
.y4a{bottom:1064.409000px;}
.y2d{bottom:1075.563000px;}
.y8{bottom:1077.757500px;}
.y6d{bottom:1082.440500px;}
.y49{bottom:1084.732500px;}
.y1{bottom:1087.587000px;}
.y2c{bottom:1097.857500px;}
.y2b{bottom:1118.968500px;}
.h6{height:33.665702px;}
.h2{height:41.484266px;}
.hf{height:44.831700px;}
.h9{height:45.818220px;}
.hb{height:46.145493px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.ha{height:61.168950px;}
.h5{height:73.377798px;}
.he{height:91.043493px;}
.hd{height:93.370950px;}
.hc{height:93.988950px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x16{left:137.107500px;}
.x4{left:139.332000px;}
.x13{left:147.427500px;}
.x5{left:151.972500px;}
.x17{left:161.064000px;}
.x6{left:164.010000px;}
.x7{left:251.386500px;}
.x1{left:286.581000px;}
.x10{left:299.904000px;}
.xd{left:387.280500px;}
.x11{left:398.991000px;}
.xc{left:406.095000px;}
.xb{left:407.283000px;}
.x9{left:409.101000px;}
.x14{left:410.404500px;}
.xa{left:417.618000px;}
.x12{left:424.495500px;}
.x8{left:438.466500px;}
.xe{left:481.852500px;}
.x15{left:487.413000px;}
.xf{left:520.563000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.736000pt;}
.v1{vertical-align:27.765333pt;}
.v6{vertical-align:30.432000pt;}
.v5{vertical-align:39.909333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.001420pt;}
.ls21{letter-spacing:0.002393pt;}
.ls11{letter-spacing:0.003842pt;}
.lsf{letter-spacing:0.009570pt;}
.ls6{letter-spacing:0.012440pt;}
.ls18{letter-spacing:0.016041pt;}
.ls8{letter-spacing:0.021162pt;}
.lsb{letter-spacing:0.022126pt;}
.ls1c{letter-spacing:0.022189pt;}
.ls2{letter-spacing:0.023023pt;}
.ls1b{letter-spacing:0.058182pt;}
.ls4{letter-spacing:0.809672pt;}
.ls0{letter-spacing:2.654270pt;}
.ls9{letter-spacing:4.130913pt;}
.ls23{letter-spacing:4.189094pt;}
.ls12{letter-spacing:5.659964pt;}
.ls26{letter-spacing:6.376703pt;}
.ls1d{letter-spacing:6.397816pt;}
.ls5{letter-spacing:12.916374pt;}
.ls1e{letter-spacing:16.116377pt;}
.lsc{letter-spacing:16.174559pt;}
.ls24{letter-spacing:19.374562pt;}
.ls3{letter-spacing:20.712745pt;}
.ls10{letter-spacing:22.054631pt;}
.ls25{letter-spacing:22.628811pt;}
.ls19{letter-spacing:25.051964pt;}
.lsd{letter-spacing:25.134566pt;}
.ls1a{letter-spacing:25.890931pt;}
.ls20{letter-spacing:26.589113pt;}
.lse{letter-spacing:27.694569pt;}
.lsa{letter-spacing:29.090933pt;}
.ls14{letter-spacing:32.349118pt;}
.ls15{letter-spacing:38.670900pt;}
.ls1f{letter-spacing:493.673139pt;}
.ls17{letter-spacing:804.306125pt;}
.ls7{letter-spacing:869.062542pt;}
.ls13{letter-spacing:871.215271pt;}
.ls22{letter-spacing:936.611690pt;}
.ws36{word-spacing:-37.899668pt;}
.ws1f{word-spacing:-29.079297pt;}
.ws42{word-spacing:-21.725109pt;}
.ws1e{word-spacing:-15.363479pt;}
.ws34{word-spacing:-12.543875pt;}
.ws20{word-spacing:-6.529737pt;}
.wsf{word-spacing:-6.524404pt;}
.ws26{word-spacing:-3.072003pt;}
.wsb{word-spacing:-1.501092pt;}
.ws22{word-spacing:-1.326547pt;}
.ws43{word-spacing:-0.104727pt;}
.ws7{word-spacing:-0.063761pt;}
.ws6{word-spacing:0.000000pt;}
.ws40{word-spacing:0.011636pt;}
.ws39{word-spacing:0.128000pt;}
.ws35{word-spacing:0.244364pt;}
.ws31{word-spacing:0.884364pt;}
.wse{word-spacing:1.408001pt;}
.ws2c{word-spacing:1.466183pt;}
.ws3e{word-spacing:1.698911pt;}
.ws10{word-spacing:1.757092pt;}
.ws23{word-spacing:2.280729pt;}
.ws3c{word-spacing:2.397093pt;}
.ws15{word-spacing:2.804366pt;}
.ws4f{word-spacing:2.932989pt;}
.ws51{word-spacing:2.986123pt;}
.ws2b{word-spacing:3.037093pt;}
.ws4{word-spacing:3.211639pt;}
.ws24{word-spacing:3.269821pt;}
.ws45{word-spacing:3.328003pt;}
.wsa{word-spacing:3.560730pt;}
.ws32{word-spacing:3.851640pt;}
.ws30{word-spacing:4.142549pt;}
.ws3d{word-spacing:4.200731pt;}
.wsd{word-spacing:4.375276pt;}
.ws4b{word-spacing:4.433458pt;}
.ws1c{word-spacing:4.491640pt;}
.ws1d{word-spacing:4.549822pt;}
.ws4c{word-spacing:5.073459pt;}
.ws2e{word-spacing:5.306186pt;}
.ws52{word-spacing:5.387774pt;}
.ws50{word-spacing:5.440908pt;}
.ws11{word-spacing:5.888005pt;}
.ws17{word-spacing:6.004369pt;}
.ws4a{word-spacing:6.062551pt;}
.ws48{word-spacing:6.120732pt;}
.ws4d{word-spacing:6.178914pt;}
.ws3a{word-spacing:6.275427pt;}
.ws1b{word-spacing:6.993460pt;}
.ws14{word-spacing:7.051642pt;}
.wsc{word-spacing:7.168006pt;}
.ws33{word-spacing:7.400733pt;}
.ws2f{word-spacing:7.633461pt;}
.ws37{word-spacing:8.157098pt;}
.ws3f{word-spacing:9.204371pt;}
.ws29{word-spacing:9.630263pt;}
.ws4e{word-spacing:9.635596pt;}
.ws5{word-spacing:9.669826pt;}
.ws19{word-spacing:10.077099pt;}
.ws13{word-spacing:10.135281pt;}
.ws12{word-spacing:10.193463pt;}
.ws2a{word-spacing:10.612372pt;}
.ws3b{word-spacing:11.426919pt;}
.ws38{word-spacing:11.531646pt;}
.ws1a{word-spacing:11.764373pt;}
.ws44{word-spacing:12.299647pt;}
.ws18{word-spacing:12.404374pt;}
.ws25{word-spacing:12.695283pt;}
.ws21{word-spacing:12.867596pt;}
.ws46{word-spacing:12.928011pt;}
.ws2d{word-spacing:14.103284pt;}
.ws49{word-spacing:15.726263pt;}
.ws9{word-spacing:22.225473pt;}
.ws2{word-spacing:23.336550pt;}
.ws27{word-spacing:23.846639pt;}
.ws47{word-spacing:25.774567pt;}
.ws28{word-spacing:25.832749pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws1{word-spacing:48.252221pt;}
.ws8{word-spacing:53.760045pt;}
.ws16{word-spacing:71.667439pt;}
.ws41{word-spacing:88.180437pt;}
._12{margin-left:-5.412504pt;}
._1{margin-left:-3.701540pt;}
._2{margin-left:-1.976593pt;}
._15{margin-left:-1.048864pt;}
._18{width:1.048864pt;}
._3{width:1.976593pt;}
._0{width:4.098134pt;}
._14{width:15.592740pt;}
._20{width:17.630696pt;}
._23{width:18.769053pt;}
._1f{width:20.272570pt;}
._1a{width:22.111030pt;}
._1b{width:24.003831pt;}
._17{width:25.109286pt;}
._1c{width:26.277695pt;}
._21{width:28.042069pt;}
._16{width:29.263889pt;}
._1d{width:31.301844pt;}
._f{width:36.712758pt;}
._11{width:39.680033pt;}
._19{width:47.473222pt;}
._5{width:53.818227pt;}
._9{width:59.461868pt;}
._22{width:66.909147pt;}
._1e{width:71.731200pt;}
._24{width:112.712126pt;}
._8{width:956.101025pt;}
._a{width:1049.078828pt;}
._d{width:1170.906886pt;}
._10{width:1227.055568pt;}
._13{width:1301.875858pt;}
._c{width:1445.297340pt;}
._6{width:1510.750350pt;}
._7{width:1523.086496pt;}
._b{width:1535.592417pt;}
._4{width:1848.321540pt;}
._e{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:83.389333pt;}
.y29{bottom:156.449333pt;}
.y28{bottom:174.514667pt;}
.y27{bottom:193.110667pt;}
.y6c{bottom:199.134667pt;}
.y48{bottom:207.482667pt;}
.y26{bottom:211.176000pt;}
.y6b{bottom:226.994667pt;}
.y25{bottom:229.241333pt;}
.y47{bottom:240.450667pt;}
.y24{bottom:247.306667pt;}
.y6a{bottom:254.854667pt;}
.y46{bottom:273.418667pt;}
.y69{bottom:279.473333pt;}
.y23{bottom:281.305333pt;}
.y87{bottom:286.642667pt;}
.y45{bottom:306.386667pt;}
.y86{bottom:309.224000pt;}
.y68{bottom:309.906667pt;}
.y22{bottom:325.598667pt;}
.y85{bottom:331.806667pt;}
.y44{bottom:339.354667pt;}
.y21{bottom:343.664000pt;}
.y67{bottom:346.857333pt;}
.y84{bottom:354.388000pt;}
.y20{bottom:361.730667pt;}
.y83{bottom:370.328000pt;}
.y66{bottom:373.052000pt;}
.y43{bottom:373.949333pt;}
.y1f{bottom:380.325333pt;}
.y82{bottom:392.910667pt;}
.y1e{bottom:398.390667pt;}
.y65{bottom:399.248000pt;}
.y81{bottom:408.850667pt;}
.y1d{bottom:416.457333pt;}
.y42{bottom:419.718667pt;}
.y64{bottom:429.681333pt;}
.y80{bottom:431.433333pt;}
.y1c{bottom:434.522667pt;}
.y41{bottom:437.784000pt;}
.y7f{bottom:447.373333pt;}
.y1b{bottom:452.588000pt;}
.y40{bottom:455.849333pt;}
.y63{bottom:466.632000pt;}
.y1a{bottom:470.653333pt;}
.y7{bottom:473.425333pt;}
.y3f{bottom:473.914667pt;}
.y7e{bottom:477.717333pt;}
.y62{bottom:484.697333pt;}
.y19{bottom:489.249333pt;}
.y3e{bottom:499.800000pt;}
.y61{bottom:506.040000pt;}
.y6{bottom:506.068000pt;}
.y18{bottom:507.314667pt;}
.y3d{bottom:517.865333pt;}
.y7d{bottom:518.233333pt;}
.y60{bottom:524.105333pt;}
.y17{bottom:525.380000pt;}
.y5{bottom:531.608000pt;}
.y7c{bottom:536.298667pt;}
.y16{bottom:543.445333pt;}
.y5f{bottom:544.564000pt;}
.y5e{bottom:554.541333pt;}
.y3c{bottom:555.556000pt;}
.y15{bottom:561.510667pt;}
.y7b{bottom:568.768000pt;}
.y5d{bottom:579.448000pt;}
.y14{bottom:579.577333pt;}
.y3b{bottom:588.524000pt;}
.y5c{bottom:597.513333pt;}
.y13{bottom:602.597333pt;}
.y7a{bottom:605.913333pt;}
.y5b{bottom:615.578667pt;}
.y79{bottom:615.890667pt;}
.y3a{bottom:621.492000pt;}
.y12{bottom:636.268000pt;}
.y5a{bottom:639.632000pt;}
.y78{bottom:653.873333pt;}
.y39{bottom:654.458667pt;}
.y59{bottom:669.554667pt;}
.y11{bottom:669.938667pt;}
.y4{bottom:675.390667pt;}
.y77{bottom:686.342667pt;}
.y38{bottom:687.426667pt;}
.y58{bottom:687.620000pt;}
.y10{bottom:703.609333pt;}
.y57{bottom:705.685333pt;}
.y3{bottom:708.529333pt;}
.y37{bottom:725.117333pt;}
.y76{bottom:726.858667pt;}
.y56{bottom:727.028000pt;}
.yf{bottom:737.280000pt;}
.y75{bottom:744.925333pt;}
.y55{bottom:746.102667pt;}
.y2{bottom:748.380000pt;}
.y54{bottom:756.080000pt;}
.y36{bottom:759.713333pt;}
.y74{bottom:762.990667pt;}
.ye{bottom:770.950667pt;}
.y53{bottom:778.157333pt;}
.y73{bottom:781.056000pt;}
.y52{bottom:796.222667pt;}
.yd{bottom:804.621333pt;}
.y35{bottom:805.481333pt;}
.y72{bottom:813.525333pt;}
.y51{bottom:814.289333pt;}
.yc{bottom:823.322667pt;}
.y34{bottom:823.546667pt;}
.y50{bottom:837.748000pt;}
.y33{bottom:841.612000pt;}
.y71{bottom:854.041333pt;}
.y4f{bottom:855.813333pt;}
.yb{bottom:856.993333pt;}
.y32{bottom:860.414667pt;}
.y70{bottom:872.108000pt;}
.y4e{bottom:873.878667pt;}
.y31{bottom:878.480000pt;}
.ya{bottom:890.664000pt;}
.y4d{bottom:891.944000pt;}
.y30{bottom:896.546667pt;}
.y6f{bottom:902.128000pt;}
.y4c{bottom:910.010667pt;}
.y2f{bottom:914.612000pt;}
.y9{bottom:924.336000pt;}
.y4b{bottom:928.076000pt;}
.y6e{bottom:932.149333pt;}
.y2e{bottom:933.414667pt;}
.y4a{bottom:946.141333pt;}
.y2d{bottom:956.056000pt;}
.y8{bottom:958.006667pt;}
.y6d{bottom:962.169333pt;}
.y49{bottom:964.206667pt;}
.y1{bottom:966.744000pt;}
.y2c{bottom:975.873333pt;}
.y2b{bottom:994.638667pt;}
.h6{height:29.925069pt;}
.h2{height:36.874903pt;}
.hf{height:39.850400pt;}
.h9{height:40.727307pt;}
.hb{height:41.018216pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.ha{height:54.372400pt;}
.h5{height:65.224709pt;}
.he{height:80.927549pt;}
.hd{height:82.996400pt;}
.hc{height:83.545733pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x16{left:121.873333pt;}
.x4{left:123.850667pt;}
.x13{left:131.046667pt;}
.x5{left:135.086667pt;}
.x17{left:143.168000pt;}
.x6{left:145.786667pt;}
.x7{left:223.454667pt;}
.x1{left:254.738667pt;}
.x10{left:266.581333pt;}
.xd{left:344.249333pt;}
.x11{left:354.658667pt;}
.xc{left:360.973333pt;}
.xb{left:362.029333pt;}
.x9{left:363.645333pt;}
.x14{left:364.804000pt;}
.xa{left:371.216000pt;}
.x12{left:377.329333pt;}
.x8{left:389.748000pt;}
.xe{left:428.313333pt;}
.x15{left:433.256000pt;}
.xf{left:462.722667pt;}
}




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