
    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_119c1e30f921142734c55732.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_b41503be314e0645f63ace24.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_2abc0ee1e6d2ae59bf39bb54.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,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);}
.m11{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.954850px;}
.ls7{letter-spacing:13.448400px;}
.ls6{letter-spacing:13.454400px;}
.ls8{letter-spacing:18.373929px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.361200px;}
.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;}
}
.ws23{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws8{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws1c{word-spacing:-2.151922px;}
.ws27{word-spacing:-1.344960px;}
.ws10{word-spacing:-0.298878px;}
.ws31{word-spacing:-0.268992px;}
.wse{word-spacing:-0.179327px;}
.wsd{word-spacing:-0.119551px;}
.ws25{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.059776px;}
.ws24{word-spacing:-0.053798px;}
.ws1f{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws7{word-spacing:-0.003456px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.053798px;}
.ws1a{word-spacing:0.059776px;}
.ws2{word-spacing:0.083686px;}
.wsb{word-spacing:0.119551px;}
.ws2e{word-spacing:0.161395px;}
.ws11{word-spacing:0.179327px;}
.ws17{word-spacing:0.239102px;}
.ws39{word-spacing:0.268992px;}
.wsf{word-spacing:0.298878px;}
.ws37{word-spacing:0.430387px;}
.ws2c{word-spacing:0.537984px;}
.ws16{word-spacing:0.597756px;}
.ws33{word-spacing:0.699379px;}
.ws18{word-spacing:1.255288px;}
.wsc{word-spacing:1.434614px;}
.ws30{word-spacing:1.936742px;}
.ws20{word-spacing:2.098138px;}
.ws6{word-spacing:2.510252px;}
.ws14{word-spacing:2.510575px;}
.ws28{word-spacing:2.636122px;}
.ws9{word-spacing:2.869236px;}
.ws15{word-spacing:3.227882px;}
.ws38{word-spacing:3.496896px;}
.ws29{word-spacing:3.873485px;}
.ws13{word-spacing:4.064741px;}
.wsa{word-spacing:4.303872px;}
.ws2b{word-spacing:4.949453px;}
.ws19{word-spacing:5.678682px;}
.ws1b{word-spacing:6.754643px;}
.ws35{word-spacing:7.693171px;}
.ws1d{word-spacing:11.910929px;}
.ws3{word-spacing:12.929425px;}
.ws34{word-spacing:13.390022px;}
.ws2d{word-spacing:13.391846px;}
.ws32{word-spacing:13.394534px;}
.ws36{word-spacing:13.395581px;}
.ws26{word-spacing:16.573240px;}
.ws22{word-spacing:16.620883px;}
.ws2f{word-spacing:16.838899px;}
.ws2a{word-spacing:17.278022px;}
.ws1{word-spacing:28.455541px;}
._12{margin-left:-20.653633px;}
._4{margin-left:-11.943245px;}
._7{margin-left:-6.605224px;}
._2{margin-left:-5.397721px;}
._1{margin-left:-3.849538px;}
._15{margin-left:-2.738766px;}
._3{margin-left:-1.506341px;}
._5{width:2.738766px;}
._13{width:10.753672px;}
._0{width:12.971268px;}
._e{width:14.824386px;}
._11{width:16.666397px;}
._14{width:18.010607px;}
._9{width:19.110275px;}
._d{width:20.742133px;}
._a{width:22.236672px;}
._8{width:23.730913px;}
._c{width:28.752064px;}
._b{width:31.262639px;}
._6{width:54.664314px;}
._f{width:1834.562700px;}
._10{width:2536.712700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3c{bottom:45.921000px;}
.y11{bottom:100.260000px;}
.y3b{bottom:112.695000px;}
.y10{bottom:118.147500px;}
.y3a{bottom:133.587000px;}
.yf{bottom:136.035000px;}
.ye{bottom:153.924000px;}
.y39{bottom:154.477500px;}
.yd{bottom:171.811500px;}
.y38{bottom:175.369500px;}
.yc{bottom:189.699000px;}
.y37{bottom:196.261500px;}
.yb{bottom:207.588000px;}
.y36{bottom:217.152000px;}
.ya{bottom:225.475500px;}
.y35{bottom:238.044000px;}
.y9{bottom:252.330000px;}
.y34{bottom:258.936000px;}
.y8{bottom:270.217500px;}
.y33{bottom:279.828000px;}
.y7{bottom:288.105000px;}
.y32{bottom:300.718500px;}
.y6{bottom:305.994000px;}
.y31{bottom:321.610500px;}
.y5{bottom:323.881500px;}
.y4{bottom:341.769000px;}
.y30{bottom:342.502500px;}
.y2f{bottom:363.393000px;}
.y3{bottom:365.635500px;}
.y2{bottom:383.523000px;}
.y2e{bottom:384.285000px;}
.y1{bottom:401.410500px;}
.y2d{bottom:405.177000px;}
.y2c{bottom:426.067500px;}
.y60{bottom:431.272500px;}
.y2b{bottom:446.959500px;}
.y5f{bottom:450.423000px;}
.y2a{bottom:467.851500px;}
.y5e{bottom:469.573500px;}
.y29{bottom:488.742000px;}
.y28{bottom:509.634000px;}
.y5d{bottom:512.605500px;}
.y27{bottom:530.526000px;}
.y5c{bottom:531.756000px;}
.y5b{bottom:550.906500px;}
.y26{bottom:551.418000px;}
.y5a{bottom:570.057000px;}
.y25{bottom:576.792000px;}
.y59{bottom:589.207500px;}
.y58{bottom:608.358000px;}
.y24{bottom:615.616500px;}
.y57{bottom:627.508500px;}
.y23{bottom:636.508500px;}
.y56{bottom:646.659000px;}
.y22{bottom:657.399000px;}
.y55{bottom:665.809500px;}
.y21{bottom:678.291000px;}
.y54{bottom:684.960000px;}
.y20{bottom:699.183000px;}
.y53{bottom:704.110500px;}
.y1f{bottom:720.073500px;}
.y52{bottom:723.261000px;}
.y1e{bottom:740.965500px;}
.y51{bottom:742.411500px;}
.y50{bottom:761.562000px;}
.y1d{bottom:761.857500px;}
.y4f{bottom:780.712500px;}
.y1c{bottom:782.748000px;}
.y4e{bottom:799.863000px;}
.y1b{bottom:808.123500px;}
.y4d{bottom:819.013500px;}
.y4c{bottom:838.164000px;}
.y4b{bottom:857.314500px;}
.y4a{bottom:876.465000px;}
.y1a{bottom:887.688000px;}
.y49{bottom:895.617000px;}
.y19{bottom:903.828000px;}
.y48{bottom:914.767500px;}
.y18{bottom:924.306000px;}
.y47{bottom:933.918000px;}
.y17{bottom:936.106500px;}
.y46{bottom:953.068500px;}
.y16{bottom:956.586000px;}
.y45{bottom:972.219000px;}
.y44{bottom:991.369500px;}
.y15{bottom:1001.262000px;}
.y43{bottom:1010.520000px;}
.y42{bottom:1029.670500px;}
.y14{bottom:1040.086500px;}
.y41{bottom:1053.304500px;}
.y13{bottom:1071.424500px;}
.y40{bottom:1092.129000px;}
.y12{bottom:1102.761000px;}
.y3f{bottom:1120.593000px;}
.y3e{bottom:1140.091500px;}
.y3d{bottom:1200.196500px;}
.h7{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h8{height:34.813397px;}
.hb{height:35.052500px;}
.hc{height:39.165235px;}
.hd{height:39.434227px;}
.ha{height:43.516637px;}
.h4{height:43.815515px;}
.h9{height:51.861658px;}
.h6{height:54.547601px;}
.h5{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x20{left:85.848000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.914500px;}
.x5{left:281.479500px;}
.xc{left:327.372000px;}
.xd{left:334.843500px;}
.x10{left:339.993000px;}
.x11{left:347.464500px;}
.x1c{left:362.515500px;}
.x1d{left:377.460000px;}
.x1e{left:381.120000px;}
.x1f{left:396.064500px;}
.x6{left:428.061000px;}
.x16{left:431.556000px;}
.x7{left:435.532500px;}
.x17{left:439.029000px;}
.xa{left:457.846500px;}
.x8{left:461.919000px;}
.xb{left:465.319500px;}
.x9{left:469.390500px;}
.x18{left:548.011500px;}
.x19{left:562.956000px;}
.x1a{left:566.665500px;}
.x1b{left:581.610000px;}
.xe{left:619.225500px;}
.xf{left:626.698500px;}
.x12{left:640.912500px;}
.x13{left:648.385500px;}
.x14{left:664.444500px;}
.x15{left:671.916000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.626533pt;}
.ls7{letter-spacing:11.954133pt;}
.ls6{letter-spacing:11.959467pt;}
.ls8{letter-spacing:16.332382pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.321067pt;}
.ws23{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws8{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws1c{word-spacing:-1.912819pt;}
.ws27{word-spacing:-1.195520pt;}
.ws10{word-spacing:-0.265669pt;}
.ws31{word-spacing:-0.239104pt;}
.wse{word-spacing:-0.159402pt;}
.wsd{word-spacing:-0.106268pt;}
.ws25{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.053134pt;}
.ws24{word-spacing:-0.047821pt;}
.ws1f{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws7{word-spacing:-0.003072pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.047821pt;}
.ws1a{word-spacing:0.053134pt;}
.ws2{word-spacing:0.074387pt;}
.wsb{word-spacing:0.106268pt;}
.ws2e{word-spacing:0.143462pt;}
.ws11{word-spacing:0.159402pt;}
.ws17{word-spacing:0.212535pt;}
.ws39{word-spacing:0.239104pt;}
.wsf{word-spacing:0.265669pt;}
.ws37{word-spacing:0.382566pt;}
.ws2c{word-spacing:0.478208pt;}
.ws16{word-spacing:0.531339pt;}
.ws33{word-spacing:0.621670pt;}
.ws18{word-spacing:1.115811pt;}
.wsc{word-spacing:1.275213pt;}
.ws30{word-spacing:1.721549pt;}
.ws20{word-spacing:1.865011pt;}
.ws6{word-spacing:2.231335pt;}
.ws14{word-spacing:2.231622pt;}
.ws28{word-spacing:2.343219pt;}
.ws9{word-spacing:2.550432pt;}
.ws15{word-spacing:2.869229pt;}
.ws38{word-spacing:3.108352pt;}
.ws29{word-spacing:3.443098pt;}
.ws13{word-spacing:3.613103pt;}
.wsa{word-spacing:3.825664pt;}
.ws2b{word-spacing:4.399514pt;}
.ws19{word-spacing:5.047717pt;}
.ws1b{word-spacing:6.004127pt;}
.ws35{word-spacing:6.838374pt;}
.ws1d{word-spacing:10.587492pt;}
.ws3{word-spacing:11.492822pt;}
.ws34{word-spacing:11.902242pt;}
.ws2d{word-spacing:11.903863pt;}
.ws32{word-spacing:11.906253pt;}
.ws36{word-spacing:11.907183pt;}
.ws26{word-spacing:14.731769pt;}
.ws22{word-spacing:14.774118pt;}
.ws2f{word-spacing:14.967910pt;}
.ws2a{word-spacing:15.358242pt;}
.ws1{word-spacing:25.293814pt;}
._12{margin-left:-18.358785pt;}
._4{margin-left:-10.616218pt;}
._7{margin-left:-5.871310pt;}
._2{margin-left:-4.797974pt;}
._1{margin-left:-3.421811pt;}
._15{margin-left:-2.434459pt;}
._3{margin-left:-1.338970pt;}
._5{width:2.434459pt;}
._13{width:9.558819pt;}
._0{width:11.530016pt;}
._e{width:13.177232pt;}
._11{width:14.814575pt;}
._14{width:16.009428pt;}
._9{width:16.986911pt;}
._d{width:18.437452pt;}
._a{width:19.765931pt;}
._8{width:21.094145pt;}
._c{width:25.557390pt;}
._b{width:27.789012pt;}
._6{width:48.590501pt;}
._f{width:1630.722400pt;}
._10{width:2254.855733pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:40.818667pt;}
.y11{bottom:89.120000pt;}
.y3b{bottom:100.173333pt;}
.y10{bottom:105.020000pt;}
.y3a{bottom:118.744000pt;}
.yf{bottom:120.920000pt;}
.ye{bottom:136.821333pt;}
.y39{bottom:137.313333pt;}
.yd{bottom:152.721333pt;}
.y38{bottom:155.884000pt;}
.yc{bottom:168.621333pt;}
.y37{bottom:174.454667pt;}
.yb{bottom:184.522667pt;}
.y36{bottom:193.024000pt;}
.ya{bottom:200.422667pt;}
.y35{bottom:211.594667pt;}
.y9{bottom:224.293333pt;}
.y34{bottom:230.165333pt;}
.y8{bottom:240.193333pt;}
.y33{bottom:248.736000pt;}
.y7{bottom:256.093333pt;}
.y32{bottom:267.305333pt;}
.y6{bottom:271.994667pt;}
.y31{bottom:285.876000pt;}
.y5{bottom:287.894667pt;}
.y4{bottom:303.794667pt;}
.y30{bottom:304.446667pt;}
.y2f{bottom:323.016000pt;}
.y3{bottom:325.009333pt;}
.y2{bottom:340.909333pt;}
.y2e{bottom:341.586667pt;}
.y1{bottom:356.809333pt;}
.y2d{bottom:360.157333pt;}
.y2c{bottom:378.726667pt;}
.y60{bottom:383.353333pt;}
.y2b{bottom:397.297333pt;}
.y5f{bottom:400.376000pt;}
.y2a{bottom:415.868000pt;}
.y5e{bottom:417.398667pt;}
.y29{bottom:434.437333pt;}
.y28{bottom:453.008000pt;}
.y5d{bottom:455.649333pt;}
.y27{bottom:471.578667pt;}
.y5c{bottom:472.672000pt;}
.y5b{bottom:489.694667pt;}
.y26{bottom:490.149333pt;}
.y5a{bottom:506.717333pt;}
.y25{bottom:512.704000pt;}
.y59{bottom:523.740000pt;}
.y58{bottom:540.762667pt;}
.y24{bottom:547.214667pt;}
.y57{bottom:557.785333pt;}
.y23{bottom:565.785333pt;}
.y56{bottom:574.808000pt;}
.y22{bottom:584.354667pt;}
.y55{bottom:591.830667pt;}
.y21{bottom:602.925333pt;}
.y54{bottom:608.853333pt;}
.y20{bottom:621.496000pt;}
.y53{bottom:625.876000pt;}
.y1f{bottom:640.065333pt;}
.y52{bottom:642.898667pt;}
.y1e{bottom:658.636000pt;}
.y51{bottom:659.921333pt;}
.y50{bottom:676.944000pt;}
.y1d{bottom:677.206667pt;}
.y4f{bottom:693.966667pt;}
.y1c{bottom:695.776000pt;}
.y4e{bottom:710.989333pt;}
.y1b{bottom:718.332000pt;}
.y4d{bottom:728.012000pt;}
.y4c{bottom:745.034667pt;}
.y4b{bottom:762.057333pt;}
.y4a{bottom:779.080000pt;}
.y1a{bottom:789.056000pt;}
.y49{bottom:796.104000pt;}
.y19{bottom:803.402667pt;}
.y48{bottom:813.126667pt;}
.y18{bottom:821.605333pt;}
.y47{bottom:830.149333pt;}
.y17{bottom:832.094667pt;}
.y46{bottom:847.172000pt;}
.y16{bottom:850.298667pt;}
.y45{bottom:864.194667pt;}
.y44{bottom:881.217333pt;}
.y15{bottom:890.010667pt;}
.y43{bottom:898.240000pt;}
.y42{bottom:915.262667pt;}
.y14{bottom:924.521333pt;}
.y41{bottom:936.270667pt;}
.y13{bottom:952.377333pt;}
.y40{bottom:970.781333pt;}
.y12{bottom:980.232000pt;}
.y3f{bottom:996.082667pt;}
.y3e{bottom:1013.414667pt;}
.y3d{bottom:1066.841333pt;}
.h7{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h8{height:30.945242pt;}
.hb{height:31.157778pt;}
.hc{height:34.813542pt;}
.hd{height:35.052646pt;}
.ha{height:38.681455pt;}
.h4{height:38.947124pt;}
.h9{height:46.099251pt;}
.h6{height:48.486756pt;}
.h5{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x20{left:76.309333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.924000pt;}
.x5{left:250.204000pt;}
.xc{left:290.997333pt;}
.xd{left:297.638667pt;}
.x10{left:302.216000pt;}
.x11{left:308.857333pt;}
.x1c{left:322.236000pt;}
.x1d{left:335.520000pt;}
.x1e{left:338.773333pt;}
.x1f{left:352.057333pt;}
.x6{left:380.498667pt;}
.x16{left:383.605333pt;}
.x7{left:387.140000pt;}
.x17{left:390.248000pt;}
.xa{left:406.974667pt;}
.x8{left:410.594667pt;}
.xb{left:413.617333pt;}
.x9{left:417.236000pt;}
.x18{left:487.121333pt;}
.x19{left:500.405333pt;}
.x1a{left:503.702667pt;}
.x1b{left:516.986667pt;}
.xe{left:550.422667pt;}
.xf{left:557.065333pt;}
.x12{left:569.700000pt;}
.x13{left:576.342667pt;}
.x14{left:590.617333pt;}
.x15{left:597.258667pt;}
}




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