
    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_38f78ed621d7763866241d01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6cb205e2377549004f444588.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e87b3632d28e89826bade531.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4f6b0a48dbd4d623427edd36.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_684fd41ee23965b4aab3edee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e06ececb636913ac8afc671d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_fe6e2a1d76a139477542d0c2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3d733e85499f5de065193001.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d8663e5a9326ada25c9a3c76.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_269c2439e12e03f397b531d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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_65f40dee187e2d3e6c9f24b1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9177802da2bfe377aeba9fcd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.884000;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_65ed1c39fd4e37dc032043bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.222000;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_22f746e09342ef354f871119.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.778000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-9.822000px;}
.v4{vertical-align:-6.444000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.176000px;}
.v5{vertical-align:18.744000px;}
.v7{vertical-align:27.030000px;}
.v1{vertical-align:31.236000px;}
.v6{vertical-align:89.094000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.003056px;}
.lsd{letter-spacing:0.003779px;}
.ls9{letter-spacing:0.458182px;}
.ls19{letter-spacing:2.356366px;}
.ls3{letter-spacing:2.984915px;}
.ls10{letter-spacing:2.985427px;}
.ls0{letter-spacing:2.986053px;}
.ls4{letter-spacing:2.986059px;}
.lse{letter-spacing:2.991056px;}
.ls16{letter-spacing:4.693167px;}
.ls12{letter-spacing:7.003642px;}
.ls13{letter-spacing:7.069097px;}
.lsc{letter-spacing:8.080888px;}
.ls15{letter-spacing:18.196379px;}
.ls7{letter-spacing:19.047289px;}
.ls1a{letter-spacing:21.165056px;}
.lsb{letter-spacing:23.825474px;}
.ls8{letter-spacing:25.920022px;}
.ls18{letter-spacing:26.050931px;}
.ls6{letter-spacing:27.621841px;}
.ls1c{letter-spacing:28.014569px;}
.ls1d{letter-spacing:29.258206px;}
.lsa{letter-spacing:31.287299px;}
.ls5{letter-spacing:32.530936px;}
.ls2{letter-spacing:32.727300px;}
.ls1b{letter-spacing:33.316391px;}
.ls17{letter-spacing:36.474960px;}
.ls14{letter-spacing:39.995424px;}
.ls11{letter-spacing:85.454915px;}
.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;}
}
.ws20{word-spacing:-42.637126px;}
.ws3c{word-spacing:-31.771663px;}
.ws21{word-spacing:-31.706208px;}
.ws30{word-spacing:-18.183288px;}
.ws37{word-spacing:-17.437105px;}
.ws1e{word-spacing:-3.652367px;}
.ws27{word-spacing:-3.128730px;}
.ws38{word-spacing:-2.932366px;}
.ws44{word-spacing:-2.317093px;}
.ws2c{word-spacing:-1.492365px;}
.ws1d{word-spacing:-1.230546px;}
.ws3a{word-spacing:-1.073455px;}
.ws39{word-spacing:-0.968728px;}
.ws45{word-spacing:-0.641455px;}
.ws7{word-spacing:-0.071731px;}
.ws33{word-spacing:-0.052364px;}
.ws6{word-spacing:0.000000px;}
.ws31{word-spacing:0.013091px;}
.ws47{word-spacing:0.536728px;}
.ws3b{word-spacing:0.890183px;}
.wsb{word-spacing:1.256728px;}
.ws36{word-spacing:1.387638px;}
.ws35{word-spacing:1.911274px;}
.ws49{word-spacing:2.238547px;}
.ws26{word-spacing:2.304002px;}
.wsa{word-spacing:2.696730px;}
.ws43{word-spacing:2.827639px;}
.ws1f{word-spacing:2.893093px;}
.ws3e{word-spacing:3.024003px;}
.wsc{word-spacing:3.089457px;}
.ws34{word-spacing:3.154912px;}
.ws4{word-spacing:3.613094px;}
.ws24{word-spacing:3.678549px;}
.ws15{word-spacing:3.744003px;}
.ws8{word-spacing:4.162913px;}
.ws2f{word-spacing:4.529458px;}
.ws28{word-spacing:4.725822px;}
.ws11{word-spacing:4.856731px;}
.ws12{word-spacing:6.165823px;}
.ws19{word-spacing:6.427642px;}
.ws16{word-spacing:6.493096px;}
.ws2a{word-spacing:6.689460px;}
.ws1b{word-spacing:6.702551px;}
.wsd{word-spacing:6.754915px;}
.ws32{word-spacing:6.885824px;}
.ws29{word-spacing:7.213097px;}
.ws2d{word-spacing:7.540370px;}
.ws2e{word-spacing:8.325825px;}
.ws18{word-spacing:8.456734px;}
.ws23{word-spacing:8.522189px;}
.ws48{word-spacing:9.111280px;}
.wse{word-spacing:9.517099px;}
.ws40{word-spacing:9.831281px;}
.ws41{word-spacing:9.896736px;}
.ws14{word-spacing:9.962190px;}
.ws3d{word-spacing:10.747645px;}
.ws5{word-spacing:10.878555px;}
.ws13{word-spacing:11.140373px;}
.ws3f{word-spacing:11.362919px;}
.ws1a{word-spacing:12.200737px;}
.ws42{word-spacing:12.986193px;}
.ws10{word-spacing:13.300375px;}
.wsf{word-spacing:15.538922px;}
.ws25{word-spacing:15.997104px;}
.ws2b{word-spacing:16.062559px;}
.ws22{word-spacing:18.222561px;}
.ws2{word-spacing:26.253619px;}
.ws17{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws9{word-spacing:39.639306px;}
.ws1c{word-spacing:44.548401px;}
.ws1{word-spacing:54.432472px;}
.ws46{word-spacing:80.625869px;}
._8{margin-left:-6.283642px;}
._0{margin-left:-4.610401px;}
._13{margin-left:-3.338185px;}
._2{margin-left:-2.223667px;}
._11{margin-left:-1.047274px;}
._1f{width:1.204972px;}
._3{width:2.223667px;}
._14{width:3.600003px;}
._1{width:4.759123px;}
._20{width:7.081979px;}
._1a{width:12.238221px;}
._22{width:16.271406px;}
._17{width:18.261833px;}
._e{width:20.485501px;}
._23{width:22.250986px;}
._1e{width:23.984962px;}
._1b{width:26.443658px;}
._19{width:27.756329px;}
._f{width:29.716388px;}
._18{width:32.727300px;}
._12{width:35.083666px;}
._10{width:37.728639px;}
._1d{width:39.270971px;}
._1c{width:41.330431px;}
._24{width:45.987794px;}
._15{width:48.174586px;}
._4{width:60.545505px;}
._21{width:76.385518px;}
._16{width:80.697600px;}
._c{width:653.500516px;}
._6{width:1051.857211px;}
._b{width:1154.550111px;}
._a{width:1173.275494px;}
._9{width:1269.688331px;}
._7{width:1307.717453px;}
._5{width:1384.363001px;}
._d{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y28{bottom:93.813000px;}
.y6d{bottom:176.005500px;}
.y27{bottom:191.184000px;}
.y6c{bottom:196.329000px;}
.y26{bottom:211.507500px;}
.y6b{bottom:216.652500px;}
.y25{bottom:245.281500px;}
.y6a{bottom:245.610000px;}
.y69{bottom:265.933500px;}
.y24{bottom:277.933500px;}
.y23{bottom:298.258500px;}
.y68{bottom:300.646500px;}
.y46{bottom:305.436000px;}
.y22{bottom:318.582000px;}
.y45{bottom:325.759500px;}
.y21{bottom:338.905500px;}
.y67{bottom:343.048500px;}
.y44{bottom:346.083000px;}
.y20{bottom:359.229000px;}
.y66{bottom:363.372000px;}
.y43{bottom:366.408000px;}
.y65{bottom:383.695500px;}
.y1f{bottom:395.757000px;}
.y42{bottom:400.180500px;}
.y64{bottom:416.505000px;}
.y41{bottom:427.230000px;}
.y1e{bottom:441.337500px;}
.y63{bottom:447.489000px;}
.y40{bottom:447.553500px;}
.y3f{bottom:474.601500px;}
.y62{bottom:478.471500px;}
.y1d{bottom:486.918000px;}
.y3e{bottom:494.925000px;}
.y1c{bottom:507.243000px;}
.y61{bottom:513.183000px;}
.y3d{bottom:515.250000px;}
.y1b{bottom:527.566500px;}
.y7{bottom:532.603500px;}
.y1a{bottom:547.890000px;}
.y3c{bottom:551.778000px;}
.y60{bottom:555.585000px;}
.y19{bottom:568.213500px;}
.y6{bottom:569.326500px;}
.y5f{bottom:575.908500px;}
.y18{bottom:588.537000px;}
.y3b{bottom:597.358500px;}
.y5{bottom:598.059000px;}
.y5e{bottom:608.719500px;}
.y17{bottom:608.862000px;}
.y3a{bottom:617.682000px;}
.y5d{bottom:629.043000px;}
.y16{bottom:629.185500px;}
.y39{bottom:638.005500px;}
.y15{bottom:649.509000px;}
.y38{bottom:658.329000px;}
.y5c{bottom:662.607000px;}
.y5b{bottom:666.651000px;}
.y14{bottom:669.832500px;}
.y13{bottom:690.156000px;}
.y37{bottom:692.103000px;}
.y5a{bottom:704.260500px;}
.y12{bottom:710.481000px;}
.y36{bottom:719.151000px;}
.y59{bottom:724.584000px;}
.y35{bottom:739.476000px;}
.y58{bottom:744.907500px;}
.y11{bottom:748.737000px;}
.y4{bottom:759.814500px;}
.y57{bottom:765.231000px;}
.y34{bottom:773.248500px;}
.y10{bottom:788.506500px;}
.y3{bottom:797.095500px;}
.y56{bottom:798.042000px;}
.y33{bottom:807.022500px;}
.y55{bottom:818.365500px;}
.yf{bottom:825.193500px;}
.y32{bottom:840.795000px;}
.y2{bottom:841.927500px;}
.y54{bottom:853.077000px;}
.y31{bottom:861.120000px;}
.ye{bottom:861.882000px;}
.y30{bottom:881.443500px;}
.y75{bottom:886.375500px;}
.y53{bottom:895.479000px;}
.yd{bottom:898.569000px;}
.y74{bottom:906.700500px;}
.y52{bottom:915.802500px;}
.y2f{bottom:917.971500px;}
.y73{bottom:927.024000px;}
.yc{bottom:935.256000px;}
.y51{bottom:936.126000px;}
.y50{bottom:956.451000px;}
.y72{bottom:960.796500px;}
.y2e{bottom:963.552000px;}
.yb{bottom:971.944500px;}
.y4f{bottom:976.774500px;}
.y71{bottom:994.570500px;}
.y2d{bottom:997.326000px;}
.y4c{bottom:1001.928000px;}
.ya{bottom:1008.631500px;}
.y4e{bottom:1016.673000px;}
.y49{bottom:1021.359000px;}
.y70{bottom:1028.343000px;}
.y4d{bottom:1029.852000px;}
.y2c{bottom:1031.098500px;}
.y4b{bottom:1036.905000px;}
.y4a{bottom:1041.814500px;}
.y9{bottom:1045.318500px;}
.y6f{bottom:1062.117000px;}
.y48{bottom:1063.933500px;}
.y2b{bottom:1064.872500px;}
.y8{bottom:1082.007000px;}
.y6e{bottom:1082.440500px;}
.y47{bottom:1084.257000px;}
.y1{bottom:1087.587000px;}
.y2a{bottom:1098.645000px;}
.y29{bottom:1118.968500px;}
.hb{height:0.000000px;}
.h6{height:32.661470px;}
.ha{height:33.091855px;}
.h2{height:41.484266px;}
.h9{height:46.865494px;}
.h7{height:49.090950px;}
.h4{height:51.359539px;}
.h8{height:53.798400px;}
.he{height:62.321493px;}
.hc{height:64.889493px;}
.h5{height:73.377798px;}
.hd{height:89.094000px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x4{left:139.332000px;}
.xa{left:147.427500px;}
.x9{left:152.019000px;}
.x6{left:164.010000px;}
.x7{left:168.336000px;}
.x1{left:286.581000px;}
.x5{left:328.177500px;}
.xf{left:331.791000px;}
.x11{left:369.693000px;}
.xb{left:394.320000px;}
.x8{left:438.466500px;}
.xd{left:458.352000px;}
.xc{left:464.365500px;}
.xe{left:485.806500px;}
.x10{left:561.432000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-8.730667pt;}
.v4{vertical-align:-5.728000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.378667pt;}
.v5{vertical-align:16.661333pt;}
.v7{vertical-align:24.026667pt;}
.v1{vertical-align:27.765333pt;}
.v6{vertical-align:79.194667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.002717pt;}
.lsd{letter-spacing:0.003359pt;}
.ls9{letter-spacing:0.407273pt;}
.ls19{letter-spacing:2.094547pt;}
.ls3{letter-spacing:2.653258pt;}
.ls10{letter-spacing:2.653713pt;}
.ls0{letter-spacing:2.654270pt;}
.ls4{letter-spacing:2.654275pt;}
.lse{letter-spacing:2.658717pt;}
.ls16{letter-spacing:4.171704pt;}
.ls12{letter-spacing:6.225460pt;}
.ls13{letter-spacing:6.283642pt;}
.lsc{letter-spacing:7.183012pt;}
.ls15{letter-spacing:16.174559pt;}
.ls7{letter-spacing:16.930923pt;}
.ls1a{letter-spacing:18.813383pt;}
.lsb{letter-spacing:21.178199pt;}
.ls8{letter-spacing:23.040019pt;}
.ls18{letter-spacing:23.156383pt;}
.ls6{letter-spacing:24.552748pt;}
.ls1c{letter-spacing:24.901839pt;}
.ls1d{letter-spacing:26.007294pt;}
.lsa{letter-spacing:27.810932pt;}
.ls5{letter-spacing:28.916388pt;}
.ls2{letter-spacing:29.090933pt;}
.ls1b{letter-spacing:29.614570pt;}
.ls17{letter-spacing:32.422187pt;}
.ls14{letter-spacing:35.551488pt;}
.ls11{letter-spacing:75.959925pt;}
.ws20{word-spacing:-37.899668pt;}
.ws3c{word-spacing:-28.241478pt;}
.ws21{word-spacing:-28.183296pt;}
.ws30{word-spacing:-16.162923pt;}
.ws37{word-spacing:-15.499649pt;}
.ws1e{word-spacing:-3.246548pt;}
.ws27{word-spacing:-2.781093pt;}
.ws38{word-spacing:-2.606548pt;}
.ws44{word-spacing:-2.059638pt;}
.ws2c{word-spacing:-1.326547pt;}
.ws1d{word-spacing:-1.093819pt;}
.ws3a{word-spacing:-0.954183pt;}
.ws39{word-spacing:-0.861092pt;}
.ws45{word-spacing:-0.570182pt;}
.ws7{word-spacing:-0.063761pt;}
.ws33{word-spacing:-0.046545pt;}
.ws6{word-spacing:0.000000pt;}
.ws31{word-spacing:0.011636pt;}
.ws47{word-spacing:0.477091pt;}
.ws3b{word-spacing:0.791273pt;}
.wsb{word-spacing:1.117092pt;}
.ws36{word-spacing:1.233456pt;}
.ws35{word-spacing:1.698911pt;}
.ws49{word-spacing:1.989820pt;}
.ws26{word-spacing:2.048002pt;}
.wsa{word-spacing:2.397093pt;}
.ws43{word-spacing:2.513457pt;}
.ws1f{word-spacing:2.571639pt;}
.ws3e{word-spacing:2.688002pt;}
.wsc{word-spacing:2.746184pt;}
.ws34{word-spacing:2.804366pt;}
.ws4{word-spacing:3.211639pt;}
.ws24{word-spacing:3.269821pt;}
.ws15{word-spacing:3.328003pt;}
.ws8{word-spacing:3.700367pt;}
.ws2f{word-spacing:4.026185pt;}
.ws28{word-spacing:4.200731pt;}
.ws11{word-spacing:4.317095pt;}
.ws12{word-spacing:5.480732pt;}
.ws19{word-spacing:5.713459pt;}
.ws16{word-spacing:5.771641pt;}
.ws2a{word-spacing:5.946187pt;}
.ws1b{word-spacing:5.957823pt;}
.wsd{word-spacing:6.004369pt;}
.ws32{word-spacing:6.120732pt;}
.ws29{word-spacing:6.411642pt;}
.ws2d{word-spacing:6.702551pt;}
.ws2e{word-spacing:7.400733pt;}
.ws18{word-spacing:7.517097pt;}
.ws23{word-spacing:7.575279pt;}
.ws48{word-spacing:8.098916pt;}
.wse{word-spacing:8.459643pt;}
.ws40{word-spacing:8.738916pt;}
.ws41{word-spacing:8.797098pt;}
.ws14{word-spacing:8.855280pt;}
.ws3d{word-spacing:9.553463pt;}
.ws5{word-spacing:9.669826pt;}
.ws13{word-spacing:9.902554pt;}
.ws3f{word-spacing:10.100372pt;}
.ws1a{word-spacing:10.845100pt;}
.ws42{word-spacing:11.543282pt;}
.ws10{word-spacing:11.822555pt;}
.wsf{word-spacing:13.812375pt;}
.ws25{word-spacing:14.219648pt;}
.ws2b{word-spacing:14.277830pt;}
.ws22{word-spacing:16.197832pt;}
.ws2{word-spacing:23.336550pt;}
.ws17{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws9{word-spacing:35.234938pt;}
.ws1c{word-spacing:39.598578pt;}
.ws1{word-spacing:48.384419pt;}
.ws46{word-spacing:71.667439pt;}
._8{margin-left:-5.585459pt;}
._0{margin-left:-4.098134pt;}
._13{margin-left:-2.967275pt;}
._2{margin-left:-1.976593pt;}
._11{margin-left:-0.930910pt;}
._1f{width:1.071086pt;}
._3{width:1.976593pt;}
._14{width:3.200003pt;}
._1{width:4.230332pt;}
._20{width:6.295093pt;}
._1a{width:10.878419pt;}
._22{width:14.463472pt;}
._17{width:16.232741pt;}
._e{width:18.209334pt;}
._23{width:19.778654pt;}
._1e{width:21.319966pt;}
._1b{width:23.505474pt;}
._19{width:24.672292pt;}
._f{width:26.414567pt;}
._18{width:29.090933pt;}
._12{width:31.185481pt;}
._10{width:33.536568pt;}
._1d{width:34.907530pt;}
._1c{width:36.738161pt;}
._24{width:40.878039pt;}
._15{width:42.821854pt;}
._4{width:53.818227pt;}
._21{width:67.898238pt;}
._16{width:71.731200pt;}
._c{width:580.889347pt;}
._6{width:934.984188pt;}
._b{width:1026.266765pt;}
._a{width:1042.911550pt;}
._9{width:1128.611850pt;}
._7{width:1162.415514pt;}
._5{width:1230.544890pt;}
._d{width:1897.136126pt;}
.fs6{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:83.389333pt;}
.y6d{bottom:156.449333pt;}
.y27{bottom:169.941333pt;}
.y6c{bottom:174.514667pt;}
.y26{bottom:188.006667pt;}
.y6b{bottom:192.580000pt;}
.y25{bottom:218.028000pt;}
.y6a{bottom:218.320000pt;}
.y69{bottom:236.385333pt;}
.y24{bottom:247.052000pt;}
.y23{bottom:265.118667pt;}
.y68{bottom:267.241333pt;}
.y46{bottom:271.498667pt;}
.y22{bottom:283.184000pt;}
.y45{bottom:289.564000pt;}
.y21{bottom:301.249333pt;}
.y67{bottom:304.932000pt;}
.y44{bottom:307.629333pt;}
.y20{bottom:319.314667pt;}
.y66{bottom:322.997333pt;}
.y43{bottom:325.696000pt;}
.y65{bottom:341.062667pt;}
.y1f{bottom:351.784000pt;}
.y42{bottom:355.716000pt;}
.y64{bottom:370.226667pt;}
.y41{bottom:379.760000pt;}
.y1e{bottom:392.300000pt;}
.y63{bottom:397.768000pt;}
.y40{bottom:397.825333pt;}
.y3f{bottom:421.868000pt;}
.y62{bottom:425.308000pt;}
.y1d{bottom:432.816000pt;}
.y3e{bottom:439.933333pt;}
.y1c{bottom:450.882667pt;}
.y61{bottom:456.162667pt;}
.y3d{bottom:458.000000pt;}
.y1b{bottom:468.948000pt;}
.y7{bottom:473.425333pt;}
.y1a{bottom:487.013333pt;}
.y3c{bottom:490.469333pt;}
.y60{bottom:493.853333pt;}
.y19{bottom:505.078667pt;}
.y6{bottom:506.068000pt;}
.y5f{bottom:511.918667pt;}
.y18{bottom:523.144000pt;}
.y3b{bottom:530.985333pt;}
.y5{bottom:531.608000pt;}
.y5e{bottom:541.084000pt;}
.y17{bottom:541.210667pt;}
.y3a{bottom:549.050667pt;}
.y5d{bottom:559.149333pt;}
.y16{bottom:559.276000pt;}
.y39{bottom:567.116000pt;}
.y15{bottom:577.341333pt;}
.y38{bottom:585.181333pt;}
.y5c{bottom:588.984000pt;}
.y5b{bottom:592.578667pt;}
.y14{bottom:595.406667pt;}
.y13{bottom:613.472000pt;}
.y37{bottom:615.202667pt;}
.y5a{bottom:626.009333pt;}
.y12{bottom:631.538667pt;}
.y36{bottom:639.245333pt;}
.y59{bottom:644.074667pt;}
.y35{bottom:657.312000pt;}
.y58{bottom:662.140000pt;}
.y11{bottom:665.544000pt;}
.y4{bottom:675.390667pt;}
.y57{bottom:680.205333pt;}
.y34{bottom:687.332000pt;}
.y10{bottom:700.894667pt;}
.y3{bottom:708.529333pt;}
.y56{bottom:709.370667pt;}
.y33{bottom:717.353333pt;}
.y55{bottom:727.436000pt;}
.yf{bottom:733.505333pt;}
.y32{bottom:747.373333pt;}
.y2{bottom:748.380000pt;}
.y54{bottom:758.290667pt;}
.y31{bottom:765.440000pt;}
.ye{bottom:766.117333pt;}
.y30{bottom:783.505333pt;}
.y75{bottom:787.889333pt;}
.y53{bottom:795.981333pt;}
.yd{bottom:798.728000pt;}
.y74{bottom:805.956000pt;}
.y52{bottom:814.046667pt;}
.y2f{bottom:815.974667pt;}
.y73{bottom:824.021333pt;}
.yc{bottom:831.338667pt;}
.y51{bottom:832.112000pt;}
.y50{bottom:850.178667pt;}
.y72{bottom:854.041333pt;}
.y2e{bottom:856.490667pt;}
.yb{bottom:863.950667pt;}
.y4f{bottom:868.244000pt;}
.y71{bottom:884.062667pt;}
.y2d{bottom:886.512000pt;}
.y4c{bottom:890.602667pt;}
.ya{bottom:896.561333pt;}
.y4e{bottom:903.709333pt;}
.y49{bottom:907.874667pt;}
.y70{bottom:914.082667pt;}
.y4d{bottom:915.424000pt;}
.y2c{bottom:916.532000pt;}
.y4b{bottom:921.693333pt;}
.y4a{bottom:926.057333pt;}
.y9{bottom:929.172000pt;}
.y6f{bottom:944.104000pt;}
.y48{bottom:945.718667pt;}
.y2b{bottom:946.553333pt;}
.y8{bottom:961.784000pt;}
.y6e{bottom:962.169333pt;}
.y47{bottom:963.784000pt;}
.y1{bottom:966.744000pt;}
.y2a{bottom:976.573333pt;}
.y29{bottom:994.638667pt;}
.hb{height:0.000000pt;}
.h6{height:29.032418pt;}
.ha{height:29.414982pt;}
.h2{height:36.874903pt;}
.h9{height:41.658217pt;}
.h7{height:43.636400pt;}
.h4{height:45.652924pt;}
.h8{height:47.820800pt;}
.he{height:55.396883pt;}
.hc{height:57.679549pt;}
.h5{height:65.224709pt;}
.hd{height:79.194667pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x4{left:123.850667pt;}
.xa{left:131.046667pt;}
.x9{left:135.128000pt;}
.x6{left:145.786667pt;}
.x7{left:149.632000pt;}
.x1{left:254.738667pt;}
.x5{left:291.713333pt;}
.xf{left:294.925333pt;}
.x11{left:328.616000pt;}
.xb{left:350.506667pt;}
.x8{left:389.748000pt;}
.xd{left:407.424000pt;}
.xc{left:412.769333pt;}
.xe{left:431.828000pt;}
.x10{left:499.050667pt;}
}




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