
    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_d99a5991382cdb95254dbdc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_fa4330a1e7f371896075e31b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887000;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_7f9217474d098c95ce6dde13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_6e9282cb8171d35b6bf43af4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_65b2700dabb9f79d2894279f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_55c4c98dd295d102e4d9e1a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.684000;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_fbd9e9b903e94e7dc4d4d284.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_f36844a7b29114561ca1c4b3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_91321aec3d49261e06b1d3c9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7ec419c2508fbac1b64a457a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.842000;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_81a460fbceeec2ce506349bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.999000;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_c3f30d3c39c941d51c8f1bfb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.693000;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:ffd;src:url('chunks/assets/font_dd626e0c3f8a30f76d3aa7b9.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v5{vertical-align:-10.662000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.816000px;}
.v8{vertical-align:16.182000px;}
.v7{vertical-align:27.024000px;}
.v3{vertical-align:44.898000px;}
.v2{vertical-align:53.022000px;}
.v4{vertical-align:111.930000px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000511px;}
.ls6{letter-spacing:0.001068px;}
.ls1c{letter-spacing:0.001289px;}
.ls17{letter-spacing:0.001591px;}
.ls25{letter-spacing:0.002154px;}
.ls4{letter-spacing:0.002706px;}
.lsc{letter-spacing:0.002712px;}
.ls14{letter-spacing:0.003239px;}
.ls1a{letter-spacing:0.003242px;}
.ls7{letter-spacing:0.004344px;}
.ls12{letter-spacing:0.242692px;}
.lsf{letter-spacing:1.816322px;}
.ls10{letter-spacing:1.822322px;}
.ls1e{letter-spacing:2.349242px;}
.ls19{letter-spacing:2.984915px;}
.ls1d{letter-spacing:2.995289px;}
.lse{letter-spacing:3.638154px;}
.ls3{letter-spacing:3.771239px;}
.ls5{letter-spacing:3.777239px;}
.ls22{letter-spacing:3.824153px;}
.ls1b{letter-spacing:5.005059px;}
.ls13{letter-spacing:14.540706px;}
.lsd{letter-spacing:14.540712px;}
.ls9{letter-spacing:14.543412px;}
.ls16{letter-spacing:14.549412px;}
.ls20{letter-spacing:17.538499px;}
.ls8{letter-spacing:18.179412px;}
.ls11{letter-spacing:18.182706px;}
.ls24{letter-spacing:20.576156px;}
.ls15{letter-spacing:23.497591px;}
.lsb{letter-spacing:24.212156px;}
.ls23{letter-spacing:25.359229px;}
.lsa{letter-spacing:29.001229px;}
.ls1{letter-spacing:32.723973px;}
.ls0{letter-spacing:32.727300px;}
.ls21{letter-spacing:33.558499px;}
.ls1f{letter-spacing:38.521059px;}
.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:-65.454600px;}
.ws2e{word-spacing:-51.820407px;}
.ws1e{word-spacing:-42.637126px;}
.ws4{word-spacing:-38.937826px;}
.ws12{word-spacing:-33.696028px;}
.ws2a{word-spacing:-31.771663px;}
.ws30{word-spacing:-24.440748px;}
.ws28{word-spacing:-20.975024px;}
.ws21{word-spacing:-18.183288px;}
.ws10{word-spacing:-16.743287px;}
.wsb{word-spacing:-16.605662px;}
.ws2b{word-spacing:-12.183902px;}
.ws24{word-spacing:-7.299364px;}
.ws3b{word-spacing:-7.252370px;}
.wsc{word-spacing:-0.086077px;}
.ws52{word-spacing:-0.065455px;}
.ws26{word-spacing:-0.052364px;}
.ws20{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws2d{word-spacing:-0.023548px;}
.ws22{word-spacing:-0.017548px;}
.ws25{word-spacing:-0.007791px;}
.ws1a{word-spacing:0.000000px;}
.ws3a{word-spacing:0.013091px;}
.ws49{word-spacing:1.060365px;}
.ws9{word-spacing:2.163877px;}
.ws14{word-spacing:3.024003px;}
.ws1f{word-spacing:3.416730px;}
.ws1d{word-spacing:3.482185px;}
.ws4f{word-spacing:3.608325px;}
.ws19{word-spacing:3.613094px;}
.ws44{word-spacing:3.619348px;}
.ws31{word-spacing:3.632605px;}
.ws2f{word-spacing:3.633374px;}
.ws2c{word-spacing:3.634209px;}
.ws17{word-spacing:3.678549px;}
.ws29{word-spacing:3.682209px;}
.ws18{word-spacing:4.398549px;}
.ws38{word-spacing:4.987641px;}
.ws47{word-spacing:5.118550px;}
.ws4e{word-spacing:5.249459px;}
.ws3c{word-spacing:5.314914px;}
.ws3{word-spacing:5.630862px;}
.ws6{word-spacing:5.690637px;}
.ws43{word-spacing:5.707641px;}
.ws16{word-spacing:6.362187px;}
.ws4b{word-spacing:6.493096px;}
.ws3f{word-spacing:6.558551px;}
.ws2{word-spacing:6.647047px;}
.ws32{word-spacing:6.754915px;}
.wsa{word-spacing:7.424130px;}
.ws7{word-spacing:8.141437px;}
.ws15{word-spacing:9.045826px;}
.ws8{word-spacing:10.293358px;}
.ws3e{word-spacing:10.354918px;}
.ws3d{word-spacing:10.420372px;}
.ws4c{word-spacing:10.878555px;}
.ws4a{word-spacing:12.318556px;}
.wsf{word-spacing:14.544012px;}
.ws34{word-spacing:17.482622px;}
.ws33{word-spacing:17.483160px;}
.ws42{word-spacing:21.116847px;}
.ws40{word-spacing:21.117685px;}
.ws36{word-spacing:21.118622px;}
.ws35{word-spacing:21.119160px;}
.ws27{word-spacing:21.125451px;}
.ws37{word-spacing:21.144966px;}
.ws51{word-spacing:23.170928px;}
.ws50{word-spacing:23.301838px;}
.ws1{word-spacing:23.312640px;}
.ws45{word-spacing:24.761451px;}
.wse{word-spacing:25.003657px;}
.ws11{word-spacing:25.069112px;}
.ws39{word-spacing:26.111451px;}
.ws46{word-spacing:26.705477px;}
.ws1c{word-spacing:26.827469px;}
.ws4d{word-spacing:29.978207px;}
.ws0{word-spacing:31.091012px;}
.ws1b{word-spacing:32.192873px;}
.ws41{word-spacing:33.748392px;}
.wsd{word-spacing:60.480050px;}
.ws48{word-spacing:80.625869px;}
.ws13{word-spacing:96.750773px;}
._1a{margin-left:-39.992761px;}
._1d{margin-left:-38.225486px;}
._18{margin-left:-34.560029px;}
._11{margin-left:-32.727300px;}
._16{margin-left:-30.894571px;}
._1b{margin-left:-13.810921px;}
._12{margin-left:-10.865464px;}
._1{margin-left:-8.160100px;}
._2{margin-left:-5.881958px;}
._3{margin-left:-3.873485px;}
._0{margin-left:-2.685602px;}
._6{margin-left:-1.673717px;}
._5{width:1.673717px;}
._4{width:2.685602px;}
._22{width:3.782821px;}
._13{width:5.956369px;}
._17{width:8.836371px;}
._f{width:20.881981px;}
._26{width:22.325444px;}
._27{width:24.813185px;}
._9{width:26.181713px;}
._8{width:28.811839px;}
._25{width:30.049553px;}
._2c{width:31.434221px;}
._2b{width:32.727300px;}
._7{width:34.100197px;}
._29{width:35.410939px;}
._a{width:38.794364px;}
._1f{width:45.490345px;}
._28{width:49.981175px;}
._2a{width:55.542081px;}
._c{width:60.545505px;}
._14{width:62.181870px;}
._24{width:65.752975px;}
._e{width:66.894601px;}
._21{width:80.697600px;}
._10{width:94.185242px;}
._20{width:96.836850px;}
._23{width:443.616944px;}
._19{width:1404.262988px;}
._1c{width:1585.506776px;}
._1e{width:1616.187072px;}
._15{width:1785.367772px;}
._d{width:1807.456333px;}
._b{width:2156.840845px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.y23{bottom:108.000000px;}
.y4d{bottom:128.323500px;}
.y22{bottom:140.233500px;}
.y4c{bottom:148.647000px;}
.y21{bottom:172.467000px;}
.y4b{bottom:179.539500px;}
.y20{bottom:192.792000px;}
.y66{bottom:219.328500px;}
.y1f{bottom:222.715500px;}
.y4a{bottom:223.078500px;}
.y65{bottom:239.652000px;}
.y1e{bottom:243.039000px;}
.y49{bottom:243.402000px;}
.y1d{bottom:263.362500px;}
.y48{bottom:263.725500px;}
.y64{bottom:273.426000px;}
.y1c{bottom:283.687500px;}
.y46{bottom:293.781000px;}
.y63{bottom:307.200000px;}
.y47{bottom:309.366000px;}
.y43{bottom:313.411500px;}
.y1b{bottom:320.215500px;}
.y62{bottom:327.523500px;}
.y45{bottom:328.957500px;}
.y44{bottom:333.865500px;}
.y41{bottom:351.286500px;}
.y61{bottom:361.296000px;}
.y42{bottom:366.871500px;}
.y3e{bottom:370.917000px;}
.y1a{bottom:371.047500px;}
.y60{bottom:381.621000px;}
.y40{bottom:386.461500px;}
.y3f{bottom:391.371000px;}
.y19{bottom:407.734500px;}
.y3d{bottom:413.251500px;}
.y5f{bottom:418.149000px;}
.y18{bottom:428.059500px;}
.y3c{bottom:448.227000px;}
.y17{bottom:448.383000px;}
.y5e{bottom:469.707000px;}
.y3b{bottom:483.202500px;}
.y16{bottom:485.070000px;}
.y5d{bottom:503.479500px;}
.y15{bottom:505.393500px;}
.y3a{bottom:518.178000px;}
.y14{bottom:525.717000px;}
.y5c{bottom:537.253500px;}
.y39{bottom:549.070500px;}
.y13{bottom:562.405500px;}
.y5b{bottom:571.027500px;}
.y12{bottom:582.729000px;}
.y38{bottom:586.197000px;}
.y5a{bottom:591.351000px;}
.y11{bottom:603.052500px;}
.y59{bottom:627.879000px;}
.y37{bottom:637.473000px;}
.y10{bottom:639.739500px;}
.y36{bottom:657.798000px;}
.yf{bottom:660.064500px;}
.y58{bottom:679.437000px;}
.ye{bottom:680.388000px;}
.y35{bottom:692.781000px;}
.y57{bottom:699.760500px;}
.y34{bottom:705.762000px;}
.yd{bottom:717.075000px;}
.y56{bottom:720.084000px;}
.y55{bottom:750.976500px;}
.yc{bottom:753.762000px;}
.y33{bottom:754.635000px;}
.y32{bottom:783.054000px;}
.y54{bottom:794.796000px;}
.yb{bottom:804.595500px;}
.y31{bottom:805.350000px;}
.y53{bottom:815.119500px;}
.ya{bottom:822.528000px;}
.y30{bottom:836.041500px;}
.y9{bottom:840.460500px;}
.y52{bottom:846.012000px;}
.y8{bottom:858.393000px;}
.y2f{bottom:866.932500px;}
.y7{bottom:876.325500px;}
.y51{bottom:883.137000px;}
.y6{bottom:894.259500px;}
.y2e{bottom:910.471500px;}
.y5{bottom:912.192000px;}
.y2d{bottom:930.795000px;}
.y50{bottom:934.695000px;}
.y4{bottom:934.845000px;}
.y4f{bottom:955.020000px;}
.y2c{bottom:959.938500px;}
.y2b{bottom:980.263500px;}
.y4e{bottom:985.911000px;}
.y3{bottom:990.637500px;}
.y2a{bottom:1000.587000px;}
.y2{bottom:1027.324500px;}
.y29{bottom:1029.730500px;}
.y28{bottom:1050.054000px;}
.y27{bottom:1070.379000px;}
.y1{bottom:1072.792500px;}
.y26{bottom:1101.270000px;}
.y25{bottom:1138.396500px;}
.hf{height:2.618184px;}
.he{height:32.661470px;}
.h10{height:35.865450px;}
.h4{height:41.723369px;}
.h5{height:44.831700px;}
.h7{height:45.687311px;}
.hb{height:46.210948px;}
.h8{height:49.090950px;}
.h3{height:49.781453px;}
.h9{height:50.211840px;}
.ha{height:55.640184px;}
.h6{height:60.254040px;}
.h12{height:62.392948px;}
.h11{height:62.889450px;}
.h2{height:72.201388px;}
.hc{height:93.988950px;}
.hd{height:114.548184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.000000px;}
.x1c{left:116.182500px;}
.x8{left:132.546000px;}
.x1d{left:141.636000px;}
.x6{left:148.909500px;}
.x5{left:171.325500px;}
.x1{left:181.347000px;}
.xe{left:304.101000px;}
.xa{left:342.739500px;}
.x10{left:355.633500px;}
.xc{left:356.857500px;}
.xd{left:358.134000px;}
.x12{left:363.588000px;}
.xf{left:367.117500px;}
.x11{left:372.267000px;}
.x3{left:373.905000px;}
.xb{left:386.367000px;}
.x2{left:388.417500px;}
.x4{left:413.578500px;}
.x14{left:425.160000px;}
.x15{left:426.700500px;}
.x13{left:431.301000px;}
.x18{left:436.279500px;}
.x19{left:437.820000px;}
.x9{left:442.366500px;}
.x16{left:451.524000px;}
.x1a{left:462.643500px;}
.x17{left:476.131500px;}
.x1b{left:509.241000px;}
@media print{
.v5{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.725333pt;}
.v8{vertical-align:14.384000pt;}
.v7{vertical-align:24.021333pt;}
.v3{vertical-align:39.909333pt;}
.v2{vertical-align:47.130667pt;}
.v4{vertical-align:99.493333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000455pt;}
.ls6{letter-spacing:0.000949pt;}
.ls1c{letter-spacing:0.001146pt;}
.ls17{letter-spacing:0.001414pt;}
.ls25{letter-spacing:0.001914pt;}
.ls4{letter-spacing:0.002405pt;}
.lsc{letter-spacing:0.002411pt;}
.ls14{letter-spacing:0.002879pt;}
.ls1a{letter-spacing:0.002881pt;}
.ls7{letter-spacing:0.003861pt;}
.ls12{letter-spacing:0.215727pt;}
.lsf{letter-spacing:1.614508pt;}
.ls10{letter-spacing:1.619841pt;}
.ls1e{letter-spacing:2.088215pt;}
.ls19{letter-spacing:2.653258pt;}
.ls1d{letter-spacing:2.662479pt;}
.lse{letter-spacing:3.233914pt;}
.ls3{letter-spacing:3.352213pt;}
.ls5{letter-spacing:3.357546pt;}
.ls22{letter-spacing:3.399247pt;}
.ls1b{letter-spacing:4.448942pt;}
.ls13{letter-spacing:12.925072pt;}
.lsd{letter-spacing:12.925077pt;}
.ls9{letter-spacing:12.927477pt;}
.ls16{letter-spacing:12.932811pt;}
.ls20{letter-spacing:15.589777pt;}
.ls8{letter-spacing:16.159477pt;}
.ls11{letter-spacing:16.162405pt;}
.ls24{letter-spacing:18.289916pt;}
.ls15{letter-spacing:20.886748pt;}
.lsb{letter-spacing:21.521916pt;}
.ls23{letter-spacing:22.541537pt;}
.lsa{letter-spacing:25.778870pt;}
.ls1{letter-spacing:29.087976pt;}
.ls0{letter-spacing:29.090933pt;}
.ls21{letter-spacing:29.829777pt;}
.ls1f{letter-spacing:34.240942pt;}
.ws23{word-spacing:-58.181867pt;}
.ws2e{word-spacing:-46.062584pt;}
.ws1e{word-spacing:-37.899668pt;}
.ws4{word-spacing:-34.611401pt;}
.ws12{word-spacing:-29.952025pt;}
.ws2a{word-spacing:-28.241478pt;}
.ws30{word-spacing:-21.725109pt;}
.ws28{word-spacing:-18.644465pt;}
.ws21{word-spacing:-16.162923pt;}
.ws10{word-spacing:-14.882921pt;}
.wsb{word-spacing:-14.760588pt;}
.ws2b{word-spacing:-10.830135pt;}
.ws24{word-spacing:-6.488323pt;}
.ws3b{word-spacing:-6.446551pt;}
.wsc{word-spacing:-0.076513pt;}
.ws52{word-spacing:-0.058182pt;}
.ws26{word-spacing:-0.046545pt;}
.ws20{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws2d{word-spacing:-0.020932pt;}
.ws22{word-spacing:-0.015599pt;}
.ws25{word-spacing:-0.006925pt;}
.ws1a{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.011636pt;}
.ws49{word-spacing:0.942546pt;}
.ws9{word-spacing:1.923446pt;}
.ws14{word-spacing:2.688002pt;}
.ws1f{word-spacing:3.037093pt;}
.ws1d{word-spacing:3.095275pt;}
.ws4f{word-spacing:3.207400pt;}
.ws19{word-spacing:3.211639pt;}
.ws44{word-spacing:3.217199pt;}
.ws31{word-spacing:3.228982pt;}
.ws2f{word-spacing:3.229666pt;}
.ws2c{word-spacing:3.230408pt;}
.ws17{word-spacing:3.269821pt;}
.ws29{word-spacing:3.273075pt;}
.ws18{word-spacing:3.909821pt;}
.ws38{word-spacing:4.433458pt;}
.ws47{word-spacing:4.549822pt;}
.ws4e{word-spacing:4.666186pt;}
.ws3c{word-spacing:4.724368pt;}
.ws3{word-spacing:5.005210pt;}
.ws6{word-spacing:5.058344pt;}
.ws43{word-spacing:5.073459pt;}
.ws16{word-spacing:5.655277pt;}
.ws4b{word-spacing:5.771641pt;}
.ws3f{word-spacing:5.829823pt;}
.ws2{word-spacing:5.908486pt;}
.ws32{word-spacing:6.004369pt;}
.wsa{word-spacing:6.599226pt;}
.ws7{word-spacing:7.236833pt;}
.ws15{word-spacing:8.040734pt;}
.ws8{word-spacing:9.149652pt;}
.ws3e{word-spacing:9.204371pt;}
.ws3d{word-spacing:9.262553pt;}
.ws4c{word-spacing:9.669826pt;}
.ws4a{word-spacing:10.949827pt;}
.wsf{word-spacing:12.928011pt;}
.ws34{word-spacing:15.540109pt;}
.ws33{word-spacing:15.540587pt;}
.ws42{word-spacing:18.770531pt;}
.ws40{word-spacing:18.771275pt;}
.ws36{word-spacing:18.772109pt;}
.ws35{word-spacing:18.772587pt;}
.ws27{word-spacing:18.778178pt;}
.ws37{word-spacing:18.795526pt;}
.ws51{word-spacing:20.596381pt;}
.ws50{word-spacing:20.712745pt;}
.ws1{word-spacing:20.722347pt;}
.ws45{word-spacing:22.010178pt;}
.wse{word-spacing:22.225473pt;}
.ws11{word-spacing:22.283655pt;}
.ws39{word-spacing:23.210178pt;}
.ws46{word-spacing:23.738202pt;}
.ws1c{word-spacing:23.846639pt;}
.ws4d{word-spacing:26.647295pt;}
.ws0{word-spacing:27.636455pt;}
.ws1b{word-spacing:28.615887pt;}
.ws41{word-spacing:29.998570pt;}
.wsd{word-spacing:53.760045pt;}
.ws48{word-spacing:71.667439pt;}
.ws13{word-spacing:86.000687pt;}
._1a{margin-left:-35.549121pt;}
._1d{margin-left:-33.978210pt;}
._18{margin-left:-30.720026pt;}
._11{margin-left:-29.090933pt;}
._16{margin-left:-27.461841pt;}
._1b{margin-left:-12.276374pt;}
._12{margin-left:-9.658190pt;}
._1{margin-left:-7.253422pt;}
._2{margin-left:-5.228407pt;}
._3{margin-left:-3.443098pt;}
._0{margin-left:-2.387202pt;}
._6{margin-left:-1.487748pt;}
._5{width:1.487748pt;}
._4{width:2.387202pt;}
._22{width:3.362508pt;}
._13{width:5.294550pt;}
._17{width:7.854552pt;}
._f{width:18.561761pt;}
._26{width:19.844839pt;}
._27{width:22.056164pt;}
._9{width:23.272634pt;}
._8{width:25.610524pt;}
._25{width:26.710714pt;}
._2c{width:27.941530pt;}
._2b{width:29.090933pt;}
._7{width:30.311287pt;}
._29{width:31.476390pt;}
._a{width:34.483879pt;}
._1f{width:40.435862pt;}
._28{width:44.427711pt;}
._2a{width:49.370738pt;}
._c{width:53.818227pt;}
._14{width:55.272773pt;}
._24{width:58.447089pt;}
._e{width:59.461868pt;}
._21{width:71.731200pt;}
._10{width:83.720215pt;}
._20{width:86.077200pt;}
._23{width:394.326172pt;}
._19{width:1248.233767pt;}
._1c{width:1409.339356pt;}
._1e{width:1436.610731pt;}
._15{width:1586.993575pt;}
._d{width:1606.627851pt;}
._b{width:1917.191862pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.y23{bottom:96.000000pt;}
.y4d{bottom:114.065333pt;}
.y22{bottom:124.652000pt;}
.y4c{bottom:132.130667pt;}
.y21{bottom:153.304000pt;}
.y4b{bottom:159.590667pt;}
.y20{bottom:171.370667pt;}
.y66{bottom:194.958667pt;}
.y1f{bottom:197.969333pt;}
.y4a{bottom:198.292000pt;}
.y65{bottom:213.024000pt;}
.y1e{bottom:216.034667pt;}
.y49{bottom:216.357333pt;}
.y1d{bottom:234.100000pt;}
.y48{bottom:234.422667pt;}
.y64{bottom:243.045333pt;}
.y1c{bottom:252.166667pt;}
.y46{bottom:261.138667pt;}
.y63{bottom:273.066667pt;}
.y47{bottom:274.992000pt;}
.y43{bottom:278.588000pt;}
.y1b{bottom:284.636000pt;}
.y62{bottom:291.132000pt;}
.y45{bottom:292.406667pt;}
.y44{bottom:296.769333pt;}
.y41{bottom:312.254667pt;}
.y61{bottom:321.152000pt;}
.y42{bottom:326.108000pt;}
.y3e{bottom:329.704000pt;}
.y1a{bottom:329.820000pt;}
.y60{bottom:339.218667pt;}
.y40{bottom:343.521333pt;}
.y3f{bottom:347.885333pt;}
.y19{bottom:362.430667pt;}
.y3d{bottom:367.334667pt;}
.y5f{bottom:371.688000pt;}
.y18{bottom:380.497333pt;}
.y3c{bottom:398.424000pt;}
.y17{bottom:398.562667pt;}
.y5e{bottom:417.517333pt;}
.y3b{bottom:429.513333pt;}
.y16{bottom:431.173333pt;}
.y5d{bottom:447.537333pt;}
.y15{bottom:449.238667pt;}
.y3a{bottom:460.602667pt;}
.y14{bottom:467.304000pt;}
.y5c{bottom:477.558667pt;}
.y39{bottom:488.062667pt;}
.y13{bottom:499.916000pt;}
.y5b{bottom:507.580000pt;}
.y12{bottom:517.981333pt;}
.y38{bottom:521.064000pt;}
.y5a{bottom:525.645333pt;}
.y11{bottom:536.046667pt;}
.y59{bottom:558.114667pt;}
.y37{bottom:566.642667pt;}
.y10{bottom:568.657333pt;}
.y36{bottom:584.709333pt;}
.yf{bottom:586.724000pt;}
.y58{bottom:603.944000pt;}
.ye{bottom:604.789333pt;}
.y35{bottom:615.805333pt;}
.y57{bottom:622.009333pt;}
.y34{bottom:627.344000pt;}
.yd{bottom:637.400000pt;}
.y56{bottom:640.074667pt;}
.y55{bottom:667.534667pt;}
.yc{bottom:670.010667pt;}
.y33{bottom:670.786667pt;}
.y32{bottom:696.048000pt;}
.y54{bottom:706.485333pt;}
.yb{bottom:715.196000pt;}
.y31{bottom:715.866667pt;}
.y53{bottom:724.550667pt;}
.ya{bottom:731.136000pt;}
.y30{bottom:743.148000pt;}
.y9{bottom:747.076000pt;}
.y52{bottom:752.010667pt;}
.y8{bottom:763.016000pt;}
.y2f{bottom:770.606667pt;}
.y7{bottom:778.956000pt;}
.y51{bottom:785.010667pt;}
.y6{bottom:794.897333pt;}
.y2e{bottom:809.308000pt;}
.y5{bottom:810.837333pt;}
.y2d{bottom:827.373333pt;}
.y50{bottom:830.840000pt;}
.y4{bottom:830.973333pt;}
.y4f{bottom:848.906667pt;}
.y2c{bottom:853.278667pt;}
.y2b{bottom:871.345333pt;}
.y4e{bottom:876.365333pt;}
.y3{bottom:880.566667pt;}
.y2a{bottom:889.410667pt;}
.y2{bottom:913.177333pt;}
.y29{bottom:915.316000pt;}
.y28{bottom:933.381333pt;}
.y27{bottom:951.448000pt;}
.y1{bottom:953.593333pt;}
.y26{bottom:978.906667pt;}
.y25{bottom:1011.908000pt;}
.hf{height:2.327275pt;}
.he{height:29.032418pt;}
.h10{height:31.880400pt;}
.h4{height:37.087439pt;}
.h5{height:39.850400pt;}
.h7{height:40.610943pt;}
.hb{height:41.076398pt;}
.h8{height:43.636400pt;}
.h3{height:44.250180pt;}
.h9{height:44.632747pt;}
.ha{height:49.457941pt;}
.h6{height:53.559147pt;}
.h12{height:55.460398pt;}
.h11{height:55.901733pt;}
.h2{height:64.179011pt;}
.hc{height:83.545733pt;}
.hd{height:101.820608pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.000000pt;}
.x1c{left:103.273333pt;}
.x8{left:117.818667pt;}
.x1d{left:125.898667pt;}
.x6{left:132.364000pt;}
.x5{left:152.289333pt;}
.x1{left:161.197333pt;}
.xe{left:270.312000pt;}
.xa{left:304.657333pt;}
.x10{left:316.118667pt;}
.xc{left:317.206667pt;}
.xd{left:318.341333pt;}
.x12{left:323.189333pt;}
.xf{left:326.326667pt;}
.x11{left:330.904000pt;}
.x3{left:332.360000pt;}
.xb{left:343.437333pt;}
.x2{left:345.260000pt;}
.x4{left:367.625333pt;}
.x14{left:377.920000pt;}
.x15{left:379.289333pt;}
.x13{left:383.378667pt;}
.x18{left:387.804000pt;}
.x19{left:389.173333pt;}
.x9{left:393.214667pt;}
.x16{left:401.354667pt;}
.x1a{left:411.238667pt;}
.x17{left:423.228000pt;}
.x1b{left:452.658667pt;}
}




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