
    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_256e5890ea609ff62c3217ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_7d0563c3c67170f5ce2ed695.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_79f529272da17166657d20fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_292ddd8ac34d9296a6092490.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_117ecd9a66223b6109b19efb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_b238afdbeefa1143f06458ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_358a347e47dd6ff501eeab59.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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_05081277b93a68896fd35270.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_4d1ff284a3db53121deb9f17.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0755e37593d81d9b3709258e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;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_3446e733db895088b69340bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4bc4c429e70f04a1c6aca403.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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:ffe;src:url('chunks/assets/font_f8ab0208c37dd2d287271348.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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:fff;src:url('chunks/assets/font_31aac22d970a5976b56c12a8.woff2')format("woff");}.fff{font-family:fff;line-height:1.041992;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v8{vertical-align:-10.080000px;}
.v1{vertical-align:-7.200000px;}
.v5{vertical-align:-6.071512px;}
.va{vertical-align:-4.320000px;}
.v3{vertical-align:-2.880000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.440000px;}
.v4{vertical-align:2.880000px;}
.vb{vertical-align:4.320000px;}
.v7{vertical-align:5.760000px;}
.v2{vertical-align:7.200000px;}
.v9{vertical-align:10.080000px;}
.ls41{letter-spacing:-15.180000px;}
.ls3e{letter-spacing:-0.548400px;}
.ls25{letter-spacing:-0.538800px;}
.ls2d{letter-spacing:-0.483600px;}
.ls26{letter-spacing:-0.469200px;}
.ls1d{letter-spacing:-0.420600px;}
.ls2e{letter-spacing:-0.366000px;}
.ls40{letter-spacing:-0.276600px;}
.ls22{letter-spacing:-0.229200px;}
.ls23{letter-spacing:-0.186000px;}
.ls2f{letter-spacing:-0.014400px;}
.ls1e{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.014400px;}
.ls1f{letter-spacing:0.078000px;}
.ls2{letter-spacing:0.104734px;}
.ls2c{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.156000px;}
.ls21{letter-spacing:0.191400px;}
.ls30{letter-spacing:0.198600px;}
.ls19{letter-spacing:0.198720px;}
.ls16{letter-spacing:0.380160px;}
.ls1a{letter-spacing:0.414720px;}
.ls3d{letter-spacing:0.493800px;}
.ls2b{letter-spacing:0.516960px;}
.ls20{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.584400px;}
.ls3f{letter-spacing:0.654000px;}
.ls32{letter-spacing:0.665280px;}
.ls1c{letter-spacing:0.675360px;}
.ls24{letter-spacing:0.684000px;}
.ls3b{letter-spacing:0.686880px;}
.ls1b{letter-spacing:1.211040px;}
.ls35{letter-spacing:1.254240px;}
.ls38{letter-spacing:1.310400px;}
.ls29{letter-spacing:1.356480px;}
.ls15{letter-spacing:1.366560px;}
.lsc{letter-spacing:1.435680px;}
.ls3{letter-spacing:1.440000px;}
.ls34{letter-spacing:1.716000px;}
.ls33{letter-spacing:1.854720px;}
.ls37{letter-spacing:2.651040px;}
.ls28{letter-spacing:2.694240px;}
.ls3c{letter-spacing:2.875680px;}
.ls5{letter-spacing:2.880000px;}
.ls1{letter-spacing:4.320000px;}
.ls3a{letter-spacing:5.760000px;}
.ls7{letter-spacing:6.971040px;}
.ls14{letter-spacing:11.291040px;}
.ls4{letter-spacing:11.520000px;}
.ls18{letter-spacing:12.731040px;}
.ls0{letter-spacing:12.960000px;}
.ls2a{letter-spacing:14.400000px;}
.ls31{letter-spacing:15.840000px;}
.lsb{letter-spacing:21.371040px;}
.ls9{letter-spacing:22.811040px;}
.ls8{letter-spacing:22.823040px;}
.lsa{letter-spacing:22.931040px;}
.ls39{letter-spacing:30.939840px;}
.ls36{letter-spacing:30.951840px;}
.ls11{letter-spacing:35.771040px;}
.ls13{letter-spacing:35.951040px;}
.ls12{letter-spacing:37.211040px;}
.ls10{letter-spacing:50.171040px;}
.lsf{letter-spacing:51.611040px;}
.ls17{letter-spacing:51.731040px;}
.lsd{letter-spacing:55.931040px;}
.lse{letter-spacing:56.051040px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-83.520000px;}
.ws9{word-spacing:-60.480000px;}
.ws0{word-spacing:-23.549640px;}
.ws5{word-spacing:-19.923720px;}
.ws6{word-spacing:-19.732320px;}
.ws8{word-spacing:-19.627682px;}
.ws1{word-spacing:-19.010880px;}
.ws7{word-spacing:-18.620640px;}
.wse{word-spacing:-18.192960px;}
.ws17{word-spacing:-18.093360px;}
.ws1d{word-spacing:-18.002760px;}
.wsb{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.890800px;}
.ws14{word-spacing:-17.707560px;}
.ws1b{word-spacing:-17.523360px;}
.wsc{word-spacing:-17.508960px;}
.ws13{word-spacing:-17.494560px;}
.wsd{word-spacing:-17.322960px;}
.ws18{word-spacing:-17.232360px;}
.ws1c{word-spacing:-17.142960px;}
.ws10{word-spacing:-17.039760px;}
.wsf{word-spacing:-16.970160px;}
.ws16{word-spacing:-16.960560px;}
.ws4{word-spacing:-16.416000px;}
.ws3{word-spacing:-14.650800px;}
.wsa{word-spacing:-14.647524px;}
.ws15{word-spacing:-3.108960px;}
.ws1a{word-spacing:-1.723680px;}
.ws11{word-spacing:0.000000px;}
.ws19{word-spacing:27.276480px;}
._10{margin-left:-16.110720px;}
._1d{margin-left:-14.560920px;}
._3{margin-left:-12.889560px;}
._1a{margin-left:-11.712000px;}
._3c{margin-left:-5.787360px;}
._27{margin-left:-4.776720px;}
._4{margin-left:-3.655080px;}
._2{margin-left:-1.722240px;}
._0{width:1.620360px;}
._1{width:3.264840px;}
._1b{width:4.449960px;}
._1e{width:6.001920px;}
._6{width:7.791840px;}
._18{width:8.851680px;}
._5{width:10.260000px;}
._22{width:11.818680px;}
._1c{width:12.851040px;}
._28{width:13.886520px;}
._13{width:14.992080px;}
._f{width:16.381440px;}
._3d{width:18.347040px;}
._9{width:19.362240px;}
._a{width:20.637720px;}
._34{width:21.708480px;}
._8{width:22.708800px;}
._7{width:23.765760px;}
._23{width:25.024320px;}
._2b{width:26.325360px;}
._20{width:28.017000px;}
._1f{width:29.041560px;}
._29{width:30.489480px;}
._11{width:31.950360px;}
._12{width:33.000480px;}
._2e{width:34.745760px;}
._e{width:36.189120px;}
._d{width:37.894560px;}
._c{width:38.933280px;}
._b{width:40.141440px;}
._15{width:41.823600px;}
._3f{width:42.826680px;}
._14{width:43.937280px;}
._21{width:44.995680px;}
._3b{width:46.825920px;}
._2a{width:48.615360px;}
._2f{width:49.660440px;}
._19{width:50.904720px;}
._35{width:52.749720px;}
._36{width:53.836560px;}
._39{width:55.074840px;}
._3a{width:56.246400px;}
._38{width:57.905880px;}
._37{width:59.009400px;}
._17{width:60.691680px;}
._16{width:61.730880px;}
._32{width:64.320480px;}
._33{width:65.499840px;}
._31{width:66.677760px;}
._30{width:67.776000px;}
._41{width:69.829920px;}
._43{width:70.860600px;}
._40{width:72.485280px;}
._42{width:73.827360px;}
._2c{width:75.841920px;}
._2d{width:78.231840px;}
._3e{width:79.535160px;}
._44{width:128.730720px;}
._45{width:129.769920px;}
._26{width:154.994280px;}
._24{width:190.248600px;}
._25{width:197.745600px;}
._46{width:846.947040px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs6{font-size:24.480000px;}
.fsd{font-size:36.000000px;}
.fs9{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:75.893905px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fsc{font-size:90.720000px;}
.fsb{font-size:93.600000px;}
.fs7{font-size:96.480000px;}
.fs8{font-size:101.697833px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1a{bottom:1.425000px;}
.y12{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y10{bottom:20.160000px;}
.y17{bottom:29.865000px;}
.y5{bottom:33.120000px;}
.y1{bottom:51.120000px;}
.y16{bottom:57.585000px;}
.y33{bottom:77.796000px;}
.y15{bottom:89.295000px;}
.y14{bottom:121.335000px;}
.y54{bottom:121.356000px;}
.y30{bottom:145.836000px;}
.y53{bottom:155.190000px;}
.y2f{bottom:179.310000px;}
.y52{bottom:189.030000px;}
.y2e{bottom:213.195000px;}
.y51{bottom:222.555000px;}
.y2d{bottom:247.035000px;}
.y50{bottom:256.395000px;}
.y2c{bottom:280.515000px;}
.y4f{bottom:290.235000px;}
.y2b{bottom:314.355000px;}
.y4e{bottom:321.915000px;}
.y4d{bottom:323.715000px;}
.y2a{bottom:348.225000px;}
.y4c{bottom:357.585000px;}
.y29{bottom:381.705000px;}
.y4b{bottom:391.425000px;}
.y28{bottom:415.545000px;}
.y4a{bottom:424.905000px;}
.y27{bottom:449.385000px;}
.y56{bottom:456.990000px;}
.y49{bottom:458.790000px;}
.y26{bottom:482.910000px;}
.y55{bottom:490.830000px;}
.y48{bottom:492.630000px;}
.y25{bottom:516.750000px;}
.y47{bottom:526.110000px;}
.y24{bottom:550.590000px;}
.y46{bottom:559.950000px;}
.y23{bottom:584.100000px;}
.y57{bottom:592.020000px;}
.y45{bottom:593.820000px;}
.y22{bottom:617.940000px;}
.y44{bottom:627.300000px;}
.y21{bottom:651.780000px;}
.y43{bottom:661.140000px;}
.y20{bottom:685.260000px;}
.y42{bottom:694.980000px;}
.y1f{bottom:719.130000px;}
.y41{bottom:728.490000px;}
.y1e{bottom:752.970000px;}
.y40{bottom:762.330000px;}
.y1d{bottom:786.450000px;}
.y3f{bottom:796.170000px;}
.y1c{bottom:820.290000px;}
.y3e{bottom:830.055000px;}
.y1b{bottom:854.175000px;}
.y3d{bottom:863.535000px;}
.y19{bottom:872.190000px;}
.y13{bottom:879.390000px;}
.y18{bottom:883.190140px;}
.y3c{bottom:897.375000px;}
.y3b{bottom:931.215000px;}
.y3a{bottom:964.725000px;}
.y39{bottom:998.565000px;}
.y11{bottom:1029.165000px;}
.y58{bottom:1030.605000px;}
.y38{bottom:1032.405000px;}
.yf{bottom:1035.645000px;}
.y37{bottom:1065.885000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y36{bottom:1099.770000px;}
.y2{bottom:1106.250000px;}
.y7{bottom:1128.570000px;}
.y35{bottom:1133.610000px;}
.y4{bottom:1156.650000px;}
.y34{bottom:1167.090000px;}
.y32{bottom:1187.250000px;}
.y31{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h19{height:7.185000px;}
.hd{height:13.857187px;}
.h1a{height:18.120938px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1d{height:30.480469px;}
.he{height:41.070000px;}
.h5{height:52.950000px;}
.h16{height:55.586356px;}
.h9{height:56.084062px;}
.h15{height:59.328281px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h1b{height:62.015625px;}
.h17{height:63.984375px;}
.h1c{height:66.445312px;}
.h13{height:70.664062px;}
.h6{height:70.714687px;}
.h18{height:72.562500px;}
.h1e{height:73.645313px;}
.h14{height:74.485717px;}
.hf{height:74.882812px;}
.h4{height:79.925027px;}
.h1f{height:93.245864px;}
.h3{height:103.350000px;}
.h12{height:149.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x21{left:123.516000px;}
.x12{left:124.975500px;}
.x20{left:140.436000px;}
.x22{left:150.555000px;}
.x23{left:159.195000px;}
.x1b{left:162.075000px;}
.x4{left:168.930000px;}
.x15{left:190.495500px;}
.x16{left:193.375500px;}
.x6{left:208.860000px;}
.x13{left:249.580500px;}
.x14{left:309.370500px;}
.x19{left:325.030998px;}
.x11{left:335.650500px;}
.x17{left:348.970500px;}
.x1f{left:382.830000px;}
.x1e{left:401.835000px;}
.xa{left:445.860000px;}
.x1c{left:473.580000px;}
.x18{left:478.285500px;}
.x25{left:489.090000px;}
.x24{left:516.090000px;}
.x1d{left:527.610000px;}
.x26{left:672.735000px;}
.x7{left:722.445000px;}
.x1{left:749.445000px;}
@media print{
.v8{vertical-align:-8.960000pt;}
.v1{vertical-align:-6.400000pt;}
.v5{vertical-align:-5.396900pt;}
.va{vertical-align:-3.840000pt;}
.v3{vertical-align:-2.560000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.280000pt;}
.v4{vertical-align:2.560000pt;}
.vb{vertical-align:3.840000pt;}
.v7{vertical-align:5.120000pt;}
.v2{vertical-align:6.400000pt;}
.v9{vertical-align:8.960000pt;}
.ls41{letter-spacing:-13.493333pt;}
.ls3e{letter-spacing:-0.487467pt;}
.ls25{letter-spacing:-0.478933pt;}
.ls2d{letter-spacing:-0.429867pt;}
.ls26{letter-spacing:-0.417067pt;}
.ls1d{letter-spacing:-0.373867pt;}
.ls2e{letter-spacing:-0.325333pt;}
.ls40{letter-spacing:-0.245867pt;}
.ls22{letter-spacing:-0.203733pt;}
.ls23{letter-spacing:-0.165333pt;}
.ls2f{letter-spacing:-0.012800pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.012800pt;}
.ls1f{letter-spacing:0.069333pt;}
.ls2{letter-spacing:0.093097pt;}
.ls2c{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.138667pt;}
.ls21{letter-spacing:0.170133pt;}
.ls30{letter-spacing:0.176533pt;}
.ls19{letter-spacing:0.176640pt;}
.ls16{letter-spacing:0.337920pt;}
.ls1a{letter-spacing:0.368640pt;}
.ls3d{letter-spacing:0.438933pt;}
.ls2b{letter-spacing:0.459520pt;}
.ls20{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.519467pt;}
.ls3f{letter-spacing:0.581333pt;}
.ls32{letter-spacing:0.591360pt;}
.ls1c{letter-spacing:0.600320pt;}
.ls24{letter-spacing:0.608000pt;}
.ls3b{letter-spacing:0.610560pt;}
.ls1b{letter-spacing:1.076480pt;}
.ls35{letter-spacing:1.114880pt;}
.ls38{letter-spacing:1.164800pt;}
.ls29{letter-spacing:1.205760pt;}
.ls15{letter-spacing:1.214720pt;}
.lsc{letter-spacing:1.276160pt;}
.ls3{letter-spacing:1.280000pt;}
.ls34{letter-spacing:1.525333pt;}
.ls33{letter-spacing:1.648640pt;}
.ls37{letter-spacing:2.356480pt;}
.ls28{letter-spacing:2.394880pt;}
.ls3c{letter-spacing:2.556160pt;}
.ls5{letter-spacing:2.560000pt;}
.ls1{letter-spacing:3.840000pt;}
.ls3a{letter-spacing:5.120000pt;}
.ls7{letter-spacing:6.196480pt;}
.ls14{letter-spacing:10.036480pt;}
.ls4{letter-spacing:10.240000pt;}
.ls18{letter-spacing:11.316480pt;}
.ls0{letter-spacing:11.520000pt;}
.ls2a{letter-spacing:12.800000pt;}
.ls31{letter-spacing:14.080000pt;}
.lsb{letter-spacing:18.996480pt;}
.ls9{letter-spacing:20.276480pt;}
.ls8{letter-spacing:20.287147pt;}
.lsa{letter-spacing:20.383147pt;}
.ls39{letter-spacing:27.502080pt;}
.ls36{letter-spacing:27.512747pt;}
.ls11{letter-spacing:31.796480pt;}
.ls13{letter-spacing:31.956480pt;}
.ls12{letter-spacing:33.076480pt;}
.ls10{letter-spacing:44.596480pt;}
.lsf{letter-spacing:45.876480pt;}
.ls17{letter-spacing:45.983147pt;}
.lsd{letter-spacing:49.716480pt;}
.lse{letter-spacing:49.823147pt;}
.ws2{word-spacing:-74.240000pt;}
.ws9{word-spacing:-53.760000pt;}
.ws0{word-spacing:-20.933013pt;}
.ws5{word-spacing:-17.709973pt;}
.ws6{word-spacing:-17.539840pt;}
.ws8{word-spacing:-17.446828pt;}
.ws1{word-spacing:-16.898560pt;}
.ws7{word-spacing:-16.551680pt;}
.wse{word-spacing:-16.171520pt;}
.ws17{word-spacing:-16.082987pt;}
.ws1d{word-spacing:-16.002453pt;}
.wsb{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.902933pt;}
.ws14{word-spacing:-15.740053pt;}
.ws1b{word-spacing:-15.576320pt;}
.wsc{word-spacing:-15.563520pt;}
.ws13{word-spacing:-15.550720pt;}
.wsd{word-spacing:-15.398187pt;}
.ws18{word-spacing:-15.317653pt;}
.ws1c{word-spacing:-15.238187pt;}
.ws10{word-spacing:-15.146453pt;}
.wsf{word-spacing:-15.084587pt;}
.ws16{word-spacing:-15.076053pt;}
.ws4{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsa{word-spacing:-13.020021pt;}
.ws15{word-spacing:-2.763520pt;}
.ws1a{word-spacing:-1.532160pt;}
.ws11{word-spacing:0.000000pt;}
.ws19{word-spacing:24.245760pt;}
._10{margin-left:-14.320640pt;}
._1d{margin-left:-12.943040pt;}
._3{margin-left:-11.457387pt;}
._1a{margin-left:-10.410667pt;}
._3c{margin-left:-5.144320pt;}
._27{margin-left:-4.245973pt;}
._4{margin-left:-3.248960pt;}
._2{margin-left:-1.530880pt;}
._0{width:1.440320pt;}
._1{width:2.902080pt;}
._1b{width:3.955520pt;}
._1e{width:5.335040pt;}
._6{width:6.926080pt;}
._18{width:7.868160pt;}
._5{width:9.120000pt;}
._22{width:10.505493pt;}
._1c{width:11.423147pt;}
._28{width:12.343573pt;}
._13{width:13.326293pt;}
._f{width:14.561280pt;}
._3d{width:16.308480pt;}
._9{width:17.210880pt;}
._a{width:18.344640pt;}
._34{width:19.296427pt;}
._8{width:20.185600pt;}
._7{width:21.125120pt;}
._23{width:22.243840pt;}
._2b{width:23.400320pt;}
._20{width:24.904000pt;}
._1f{width:25.814720pt;}
._29{width:27.101760pt;}
._11{width:28.400320pt;}
._12{width:29.333760pt;}
._2e{width:30.885120pt;}
._e{width:32.168107pt;}
._d{width:33.684053pt;}
._c{width:34.607360pt;}
._b{width:35.681280pt;}
._15{width:37.176533pt;}
._3f{width:38.068160pt;}
._14{width:39.055360pt;}
._21{width:39.996160pt;}
._3b{width:41.623040pt;}
._2a{width:43.213653pt;}
._2f{width:44.142613pt;}
._19{width:45.248640pt;}
._35{width:46.888640pt;}
._36{width:47.854720pt;}
._39{width:48.955413pt;}
._3a{width:49.996800pt;}
._38{width:51.471893pt;}
._37{width:52.452800pt;}
._17{width:53.948160pt;}
._16{width:54.871893pt;}
._32{width:57.173760pt;}
._33{width:58.222080pt;}
._31{width:59.269120pt;}
._30{width:60.245333pt;}
._41{width:62.071040pt;}
._43{width:62.987200pt;}
._40{width:64.431360pt;}
._42{width:65.624320pt;}
._2c{width:67.415040pt;}
._2d{width:69.539413pt;}
._3e{width:70.697920pt;}
._44{width:114.427307pt;}
._45{width:115.351040pt;}
._26{width:137.772693pt;}
._24{width:169.109867pt;}
._25{width:175.773867pt;}
._46{width:752.841813pt;}
.fs4{font-size:16.640000pt;}
.fs6{font-size:21.760000pt;}
.fsd{font-size:32.000000pt;}
.fs9{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:67.461249pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fsc{font-size:80.640000pt;}
.fsb{font-size:83.200000pt;}
.fs7{font-size:85.760000pt;}
.fs8{font-size:90.398073pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1a{bottom:1.266667pt;}
.y12{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y10{bottom:17.920000pt;}
.y17{bottom:26.546667pt;}
.y5{bottom:29.440000pt;}
.y1{bottom:45.440000pt;}
.y16{bottom:51.186667pt;}
.y33{bottom:69.152000pt;}
.y15{bottom:79.373333pt;}
.y14{bottom:107.853333pt;}
.y54{bottom:107.872000pt;}
.y30{bottom:129.632000pt;}
.y53{bottom:137.946667pt;}
.y2f{bottom:159.386667pt;}
.y52{bottom:168.026667pt;}
.y2e{bottom:189.506667pt;}
.y51{bottom:197.826667pt;}
.y2d{bottom:219.586667pt;}
.y50{bottom:227.906667pt;}
.y2c{bottom:249.346667pt;}
.y4f{bottom:257.986667pt;}
.y2b{bottom:279.426667pt;}
.y4e{bottom:286.146667pt;}
.y4d{bottom:287.746667pt;}
.y2a{bottom:309.533333pt;}
.y4c{bottom:317.853333pt;}
.y29{bottom:339.293333pt;}
.y4b{bottom:347.933333pt;}
.y28{bottom:369.373333pt;}
.y4a{bottom:377.693333pt;}
.y27{bottom:399.453333pt;}
.y56{bottom:406.213333pt;}
.y49{bottom:407.813333pt;}
.y26{bottom:429.253333pt;}
.y55{bottom:436.293333pt;}
.y48{bottom:437.893333pt;}
.y25{bottom:459.333333pt;}
.y47{bottom:467.653333pt;}
.y24{bottom:489.413333pt;}
.y46{bottom:497.733333pt;}
.y23{bottom:519.200000pt;}
.y57{bottom:526.240000pt;}
.y45{bottom:527.840000pt;}
.y22{bottom:549.280000pt;}
.y44{bottom:557.600000pt;}
.y21{bottom:579.360000pt;}
.y43{bottom:587.680000pt;}
.y20{bottom:609.120000pt;}
.y42{bottom:617.760000pt;}
.y1f{bottom:639.226667pt;}
.y41{bottom:647.546667pt;}
.y1e{bottom:669.306667pt;}
.y40{bottom:677.626667pt;}
.y1d{bottom:699.066667pt;}
.y3f{bottom:707.706667pt;}
.y1c{bottom:729.146667pt;}
.y3e{bottom:737.826667pt;}
.y1b{bottom:759.266667pt;}
.y3d{bottom:767.586667pt;}
.y19{bottom:775.280000pt;}
.y13{bottom:781.680000pt;}
.y18{bottom:785.057902pt;}
.y3c{bottom:797.666667pt;}
.y3b{bottom:827.746667pt;}
.y3a{bottom:857.533333pt;}
.y39{bottom:887.613333pt;}
.y11{bottom:914.813333pt;}
.y58{bottom:916.093333pt;}
.y38{bottom:917.693333pt;}
.yf{bottom:920.573333pt;}
.y37{bottom:947.453333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y36{bottom:977.573333pt;}
.y2{bottom:983.333333pt;}
.y7{bottom:1003.173333pt;}
.y35{bottom:1007.653333pt;}
.y4{bottom:1028.133333pt;}
.y34{bottom:1037.413333pt;}
.y32{bottom:1055.333333pt;}
.y31{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h19{height:6.386667pt;}
.hd{height:12.317500pt;}
.h1a{height:16.107500pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1d{height:27.093750pt;}
.he{height:36.506667pt;}
.h5{height:47.066667pt;}
.h16{height:49.410094pt;}
.h9{height:49.852500pt;}
.h15{height:52.736250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h1b{height:55.125000pt;}
.h17{height:56.875000pt;}
.h1c{height:59.062500pt;}
.h13{height:62.812500pt;}
.h6{height:62.857500pt;}
.h18{height:64.500000pt;}
.h1e{height:65.462500pt;}
.h14{height:66.209526pt;}
.hf{height:66.562500pt;}
.h4{height:71.044468pt;}
.h1f{height:82.885213pt;}
.h3{height:91.866667pt;}
.h12{height:133.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x21{left:109.792000pt;}
.x12{left:111.089333pt;}
.x20{left:124.832000pt;}
.x22{left:133.826667pt;}
.x23{left:141.506667pt;}
.x1b{left:144.066667pt;}
.x4{left:150.160000pt;}
.x15{left:169.329333pt;}
.x16{left:171.889333pt;}
.x6{left:185.653333pt;}
.x13{left:221.849333pt;}
.x14{left:274.996000pt;}
.x19{left:288.916443pt;}
.x11{left:298.356000pt;}
.x17{left:310.196000pt;}
.x1f{left:340.293333pt;}
.x1e{left:357.186667pt;}
.xa{left:396.320000pt;}
.x1c{left:420.960000pt;}
.x18{left:425.142667pt;}
.x25{left:434.746667pt;}
.x24{left:458.746667pt;}
.x1d{left:468.986667pt;}
.x26{left:597.986667pt;}
.x7{left:642.173333pt;}
.x1{left:666.173333pt;}
}




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