
    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_e0a0ba92c0d25c78ac4b6a68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_17daf2cb1096578ce13ed122.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_c7f5898bdbf63e266ff57c54.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_8e7ebdd0d3d57f2f35332e37.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.020508;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_0599f9349bca5b48ad6434a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_c9abf3296275ec6d60fe66a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_5221d8b1349f3fd575798b7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_418d6e12f4e8de91f52536c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053711;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_badaebf6aa9f7bc5abfac544.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.144000;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_dbf154dc3f0d5e00e4af823d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_719d3447c3d4857ad114ef3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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_d9151797d5d36954754e124d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_f653e6d92d84705618d62226.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.983398;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:-20.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.160000px;}
.ls7{letter-spacing:-1.290000px;}
.ls2d{letter-spacing:-1.044000px;}
.ls32{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.696000px;}
.ls1e{letter-spacing:-0.684000px;}
.ls16{letter-spacing:-0.636000px;}
.ls1b{letter-spacing:-0.584400px;}
.lsa{letter-spacing:-0.569400px;}
.lsc{letter-spacing:-0.458400px;}
.ls14{letter-spacing:-0.443400px;}
.ls38{letter-spacing:-0.441600px;}
.ls28{letter-spacing:-0.172800px;}
.ls23{letter-spacing:-0.093000px;}
.ls9{letter-spacing:-0.037440px;}
.lsb{letter-spacing:-0.029520px;}
.ls25{letter-spacing:-0.027360px;}
.ls24{letter-spacing:-0.015840px;}
.lsd{letter-spacing:-0.007800px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.026640px;}
.ls31{letter-spacing:0.064800px;}
.ls26{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.080400px;}
.ls11{letter-spacing:0.100800px;}
.ls2c{letter-spacing:0.108000px;}
.ls36{letter-spacing:0.118800px;}
.ls18{letter-spacing:0.132480px;}
.ls15{letter-spacing:0.135600px;}
.ls2e{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.153600px;}
.ls30{letter-spacing:0.175800px;}
.ls27{letter-spacing:0.178560px;}
.ls2a{letter-spacing:0.178800px;}
.ls4{letter-spacing:0.179400px;}
.ls3a{letter-spacing:0.180288px;}
.lse{letter-spacing:0.180600px;}
.ls10{letter-spacing:0.196800px;}
.ls17{letter-spacing:0.216000px;}
.ls2f{letter-spacing:0.252000px;}
.ls1c{letter-spacing:0.256200px;}
.ls33{letter-spacing:0.271200px;}
.ls13{letter-spacing:0.276600px;}
.ls5{letter-spacing:0.299400px;}
.ls0{letter-spacing:0.306720px;}
.ls39{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.420600px;}
.ls1d{letter-spacing:0.822000px;}
.ls3{letter-spacing:0.899280px;}
.ls12{letter-spacing:1.464000px;}
.ls1a{letter-spacing:2.905488px;}
.ls21{letter-spacing:3.571488px;}
.ls19{letter-spacing:4.374720px;}
.lsf{letter-spacing:5.220000px;}
.ls1{letter-spacing:13.266720px;}
.ls34{letter-spacing:20.030400px;}
.ls1f{letter-spacing:21.533760px;}
.ls2b{letter-spacing:97.509600px;}
.ls20{letter-spacing:101.793600px;}
.ls22{letter-spacing:101.844000px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-77.760000px;}
.ws33{word-spacing:-25.060032px;}
.ws27{word-spacing:-22.176000px;}
.ws28{word-spacing:-22.129032px;}
.ws26{word-spacing:-22.068000px;}
.ws24{word-spacing:-22.032000px;}
.ws29{word-spacing:-22.018032px;}
.wsf{word-spacing:-21.953232px;}
.ws2b{word-spacing:-21.240000px;}
.ws2a{word-spacing:-21.096000px;}
.ws25{word-spacing:-20.880000px;}
.ws30{word-spacing:-19.859880px;}
.ws1e{word-spacing:-19.468512px;}
.ws20{word-spacing:-19.439280px;}
.ws31{word-spacing:-18.997680px;}
.ws3{word-spacing:-17.400120px;}
.wsd{word-spacing:-17.310552px;}
.ws2c{word-spacing:-17.280000px;}
.ws7{word-spacing:-17.127360px;}
.wsc{word-spacing:-17.122152px;}
.ws4{word-spacing:-17.100720px;}
.wsa{word-spacing:-17.071200px;}
.ws8{word-spacing:-17.063280px;}
.wsb{word-spacing:-16.642320px;}
.ws1b{word-spacing:-16.636512px;}
.ws9{word-spacing:-16.531320px;}
.ws5{word-spacing:-16.404720px;}
.ws12{word-spacing:-16.061880px;}
.ws1a{word-spacing:-16.041480px;}
.ws16{word-spacing:-16.030512px;}
.ws10{word-spacing:-16.011312px;}
.ws14{word-spacing:-15.920880px;}
.ws11{word-spacing:-15.915312px;}
.ws1c{word-spacing:-15.814512px;}
.ws6{word-spacing:-15.810720px;}
.ws17{word-spacing:-15.785280px;}
.ws22{word-spacing:-15.612480px;}
.ws13{word-spacing:-15.341880px;}
.ws19{word-spacing:-15.200880px;}
.ws15{word-spacing:-15.149280px;}
.ws1d{word-spacing:-15.130512px;}
.ws23{word-spacing:-13.410720px;}
.ws0{word-spacing:-8.915760px;}
.ws1{word-spacing:-1.480320px;}
.ws32{word-spacing:-1.440000px;}
.ws2e{word-spacing:-0.820320px;}
.ws2f{word-spacing:-0.075312px;}
.ws2d{word-spacing:-0.046080px;}
.ws2{word-spacing:0.000000px;}
.ws1f{word-spacing:1.814880px;}
.ws21{word-spacing:2.701200px;}
.wse{word-spacing:9.484560px;}
._e{margin-left:-6.442944px;}
._8{margin-left:-5.409120px;}
._6{margin-left:-3.629808px;}
._2{margin-left:-2.071392px;}
._0{margin-left:-1.062144px;}
._1{width:1.003728px;}
._4{width:2.239152px;}
._5{width:4.029072px;}
._c{width:5.465328px;}
._12{width:6.797808px;}
._13{width:7.806960px;}
._9{width:9.091920px;}
._a{width:10.100064px;}
._3{width:11.856336px;}
._14{width:17.412240px;}
._10{width:18.822192px;}
._f{width:19.903200px;}
._1a{width:20.932752px;}
._11{width:22.330368px;}
._d{width:24.152160px;}
._b{width:26.279040px;}
._7{width:27.743040px;}
._16{width:34.675056px;}
._15{width:35.952000px;}
._17{width:43.219776px;}
._19{width:50.184000px;}
._18{width:51.667392px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(73,64,54);}
.fc2{color:rgb(28,154,117);}
.fc1{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:43.920000px;}
.fsd{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:66.384000px;}
.fsc{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs9{font-size:77.904000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:84.384000px;}
.fs11{font-size:90.000000px;}
.fs12{font-size:90.144000px;}
.fsb{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fse{font-size:108.000000px;}
.fs5{font-size:108.144000px;}
.fs10{font-size:126.000000px;}
.fs3{font-size:167.760000px;}
.fs4{font-size:167.904000px;}
.fsf{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:10.224000px;}
.y65{bottom:15.336000px;}
.y4c{bottom:20.052000px;}
.y15{bottom:20.124000px;}
.y5{bottom:25.848000px;}
.y64{bottom:40.536000px;}
.y14{bottom:45.324000px;}
.y4{bottom:46.728000px;}
.y3c{bottom:48.240000px;}
.y57{bottom:49.032000px;}
.y4b{bottom:52.452000px;}
.y41{bottom:54.540000px;}
.y3f{bottom:58.752000px;}
.y40{bottom:65.052000px;}
.y3{bottom:65.628000px;}
.y63{bottom:65.736000px;}
.y3b{bottom:71.640000px;}
.y56{bottom:77.832000px;}
.y4a{bottom:84.852000px;}
.y62{bottom:90.936000px;}
.y2{bottom:91.548000px;}
.y13{bottom:110.412000px;}
.y1{bottom:112.284000px;}
.y61{bottom:116.136000px;}
.y49{bottom:117.252000px;}
.y3a{bottom:118.440000px;}
.y2e{bottom:120.528000px;}
.y1f{bottom:129.420000px;}
.y55{bottom:135.432000px;}
.y12{bottom:135.612000px;}
.y60{bottom:141.372000px;}
.y39{bottom:141.876000px;}
.y7{bottom:144.432000px;}
.y2d{bottom:149.364000px;}
.y48{bottom:149.688000px;}
.y1e{bottom:152.820000px;}
.y11{bottom:160.815000px;}
.y54{bottom:164.265000px;}
.y38{bottom:165.270000px;}
.y5f{bottom:166.575000px;}
.y2c{bottom:178.170000px;}
.y6{bottom:189.795000px;}
.y1d{bottom:199.620000px;}
.y37{bottom:212.070000px;}
.y10{bottom:212.115000px;}
.y5e{bottom:213.225000px;}
.y47{bottom:214.485000px;}
.y53{bottom:221.865000px;}
.y1c{bottom:223.020000px;}
.y36{bottom:235.470000px;}
.y2b{bottom:235.770000px;}
.yf{bottom:237.315000px;}
.y46{bottom:246.885000px;}
.y52{bottom:250.665000px;}
.y35{bottom:258.915000px;}
.ye{bottom:262.515000px;}
.y2a{bottom:264.570000px;}
.y5d{bottom:267.225000px;}
.y1b{bottom:269.850000px;}
.y45{bottom:279.330000px;}
.y25{bottom:281.415000px;}
.yd{bottom:287.715000px;}
.y1a{bottom:293.250000px;}
.y29{bottom:293.400000px;}
.y5c{bottom:294.225000px;}
.y24{bottom:304.845000px;}
.y34{bottom:305.715000px;}
.y51{bottom:308.310000px;}
.y19{bottom:316.650000px;}
.y5b{bottom:321.270000px;}
.y28{bottom:322.200000px;}
.yc{bottom:328.785000px;}
.y33{bottom:329.115000px;}
.y50{bottom:337.110000px;}
.y44{bottom:344.130000px;}
.y5a{bottom:351.510000px;}
.y23{bottom:351.645000px;}
.y18{bottom:363.450000px;}
.y22{bottom:375.045000px;}
.y32{bottom:375.915000px;}
.yb{bottom:379.230000px;}
.y27{bottom:379.800000px;}
.y17{bottom:386.895000px;}
.y59{bottom:389.310000px;}
.y4f{bottom:394.710000px;}
.y43{bottom:397.980000px;}
.y21{bottom:398.445000px;}
.y31{bottom:399.345000px;}
.ya{bottom:404.430000px;}
.y26{bottom:408.630000px;}
.y16{bottom:410.295000px;}
.y20{bottom:421.845000px;}
.y4e{bottom:423.540000px;}
.y9{bottom:429.630000px;}
.y42{bottom:430.380000px;}
.y58{bottom:439.845000px;}
.y30{bottom:446.145000px;}
.y2f{bottom:469.545000px;}
.y8{bottom:472.290000px;}
.y3e{bottom:474.090000px;}
.y4d{bottom:479.850000px;}
.h2{height:38.129766px;}
.h14{height:43.246406px;}
.h3{height:57.507187px;}
.h1{height:58.289766px;}
.h12{height:63.035156px;}
.h19{height:65.880000px;}
.hc{height:67.394531px;}
.ha{height:67.508437px;}
.hb{height:67.519336px;}
.hd{height:67.633453px;}
.h1e{height:67.786875px;}
.h1f{height:67.902750px;}
.h8{height:73.010742px;}
.h7{height:73.134141px;}
.h9{height:73.135547px;}
.h1c{height:80.683594px;}
.h1d{height:80.812687px;}
.hf{height:82.995117px;}
.h11{height:83.119922px;}
.h10{height:85.847344px;}
.he{height:85.976438px;}
.h13{height:87.752160px;}
.h15{height:93.603516px;}
.h18{height:93.728320px;}
.h16{height:93.761719px;}
.h6{height:93.886734px;}
.h17{height:96.949406px;}
.h1b{height:125.323242px;}
.h1a{height:144.555469px;}
.h4{height:145.643203px;}
.h5{height:145.768219px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:16.235984px;}
.x8{left:21.635984px;}
.x11{left:38.411984px;}
.xe{left:39.887984px;}
.xf{left:42.767984px;}
.x9{left:55.475984px;}
.x1{left:71.495984px;}
.x3{left:74.015984px;}
.x10{left:76.607984px;}
.x2{left:80.135984px;}
.x7{left:82.691984px;}
.x12{left:164.054984px;}
.xa{left:179.099984px;}
.x14{left:295.304984px;}
.x4{left:316.589984px;}
.x6{left:319.034984px;}
.xc{left:344.594984px;}
.xd{left:367.664984px;}
.xb{left:375.194984px;}
.x17{left:379.184984px;}
.x5{left:385.049984px;}
.x15{left:388.364984px;}
.x13{left:425.669984px;}
.x16{left:452.309984px;}
@media print{
.v2{vertical-align:-17.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.920000pt;}
.ls7{letter-spacing:-1.146667pt;}
.ls2d{letter-spacing:-0.928000pt;}
.ls32{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.618667pt;}
.ls1e{letter-spacing:-0.608000pt;}
.ls16{letter-spacing:-0.565333pt;}
.ls1b{letter-spacing:-0.519467pt;}
.lsa{letter-spacing:-0.506133pt;}
.lsc{letter-spacing:-0.407467pt;}
.ls14{letter-spacing:-0.394133pt;}
.ls38{letter-spacing:-0.392533pt;}
.ls28{letter-spacing:-0.153600pt;}
.ls23{letter-spacing:-0.082667pt;}
.ls9{letter-spacing:-0.033280pt;}
.lsb{letter-spacing:-0.026240pt;}
.ls25{letter-spacing:-0.024320pt;}
.ls24{letter-spacing:-0.014080pt;}
.lsd{letter-spacing:-0.006933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.023680pt;}
.ls31{letter-spacing:0.057600pt;}
.ls26{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.071467pt;}
.ls11{letter-spacing:0.089600pt;}
.ls2c{letter-spacing:0.096000pt;}
.ls36{letter-spacing:0.105600pt;}
.ls18{letter-spacing:0.117760pt;}
.ls15{letter-spacing:0.120533pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.136533pt;}
.ls30{letter-spacing:0.156267pt;}
.ls27{letter-spacing:0.158720pt;}
.ls2a{letter-spacing:0.158933pt;}
.ls4{letter-spacing:0.159467pt;}
.ls3a{letter-spacing:0.160256pt;}
.lse{letter-spacing:0.160533pt;}
.ls10{letter-spacing:0.174933pt;}
.ls17{letter-spacing:0.192000pt;}
.ls2f{letter-spacing:0.224000pt;}
.ls1c{letter-spacing:0.227733pt;}
.ls33{letter-spacing:0.241067pt;}
.ls13{letter-spacing:0.245867pt;}
.ls5{letter-spacing:0.266133pt;}
.ls0{letter-spacing:0.272640pt;}
.ls39{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.373867pt;}
.ls1d{letter-spacing:0.730667pt;}
.ls3{letter-spacing:0.799360pt;}
.ls12{letter-spacing:1.301333pt;}
.ls1a{letter-spacing:2.582656pt;}
.ls21{letter-spacing:3.174656pt;}
.ls19{letter-spacing:3.888640pt;}
.lsf{letter-spacing:4.640000pt;}
.ls1{letter-spacing:11.792640pt;}
.ls34{letter-spacing:17.804800pt;}
.ls1f{letter-spacing:19.141120pt;}
.ls2b{letter-spacing:86.675200pt;}
.ls20{letter-spacing:90.483200pt;}
.ls22{letter-spacing:90.528000pt;}
.ws18{word-spacing:-69.120000pt;}
.ws33{word-spacing:-22.275584pt;}
.ws27{word-spacing:-19.712000pt;}
.ws28{word-spacing:-19.670251pt;}
.ws26{word-spacing:-19.616000pt;}
.ws24{word-spacing:-19.584000pt;}
.ws29{word-spacing:-19.571584pt;}
.wsf{word-spacing:-19.513984pt;}
.ws2b{word-spacing:-18.880000pt;}
.ws2a{word-spacing:-18.752000pt;}
.ws25{word-spacing:-18.560000pt;}
.ws30{word-spacing:-17.653227pt;}
.ws1e{word-spacing:-17.305344pt;}
.ws20{word-spacing:-17.279360pt;}
.ws31{word-spacing:-16.886827pt;}
.ws3{word-spacing:-15.466773pt;}
.wsd{word-spacing:-15.387157pt;}
.ws2c{word-spacing:-15.360000pt;}
.ws7{word-spacing:-15.224320pt;}
.wsc{word-spacing:-15.219691pt;}
.ws4{word-spacing:-15.200640pt;}
.wsa{word-spacing:-15.174400pt;}
.ws8{word-spacing:-15.167360pt;}
.wsb{word-spacing:-14.793173pt;}
.ws1b{word-spacing:-14.788011pt;}
.ws9{word-spacing:-14.694507pt;}
.ws5{word-spacing:-14.581973pt;}
.ws12{word-spacing:-14.277227pt;}
.ws1a{word-spacing:-14.259093pt;}
.ws16{word-spacing:-14.249344pt;}
.ws10{word-spacing:-14.232277pt;}
.ws14{word-spacing:-14.151893pt;}
.ws11{word-spacing:-14.146944pt;}
.ws1c{word-spacing:-14.057344pt;}
.ws6{word-spacing:-14.053973pt;}
.ws17{word-spacing:-14.031360pt;}
.ws22{word-spacing:-13.877760pt;}
.ws13{word-spacing:-13.637227pt;}
.ws19{word-spacing:-13.511893pt;}
.ws15{word-spacing:-13.466027pt;}
.ws1d{word-spacing:-13.449344pt;}
.ws23{word-spacing:-11.920640pt;}
.ws0{word-spacing:-7.925120pt;}
.ws1{word-spacing:-1.315840pt;}
.ws32{word-spacing:-1.280000pt;}
.ws2e{word-spacing:-0.729173pt;}
.ws2f{word-spacing:-0.066944pt;}
.ws2d{word-spacing:-0.040960pt;}
.ws2{word-spacing:0.000000pt;}
.ws1f{word-spacing:1.613227pt;}
.ws21{word-spacing:2.401067pt;}
.wse{word-spacing:8.430720pt;}
._e{margin-left:-5.727061pt;}
._8{margin-left:-4.808107pt;}
._6{margin-left:-3.226496pt;}
._2{margin-left:-1.841237pt;}
._0{margin-left:-0.944128pt;}
._1{width:0.892203pt;}
._4{width:1.990357pt;}
._5{width:3.581397pt;}
._c{width:4.858069pt;}
._12{width:6.042496pt;}
._13{width:6.939520pt;}
._9{width:8.081707pt;}
._a{width:8.977835pt;}
._3{width:10.538965pt;}
._14{width:15.477547pt;}
._10{width:16.730837pt;}
._f{width:17.691733pt;}
._1a{width:18.606891pt;}
._11{width:19.849216pt;}
._d{width:21.468587pt;}
._b{width:23.359147pt;}
._7{width:24.660480pt;}
._16{width:30.822272pt;}
._15{width:31.957333pt;}
._17{width:38.417579pt;}
._19{width:44.608000pt;}
._18{width:45.926571pt;}
.fs1{font-size:39.040000pt;}
.fsd{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:59.008000pt;}
.fsc{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs9{font-size:69.248000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:75.008000pt;}
.fs11{font-size:80.000000pt;}
.fs12{font-size:80.128000pt;}
.fsb{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fse{font-size:96.000000pt;}
.fs5{font-size:96.128000pt;}
.fs10{font-size:112.000000pt;}
.fs3{font-size:149.120000pt;}
.fs4{font-size:149.248000pt;}
.fsf{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:9.088000pt;}
.y65{bottom:13.632000pt;}
.y4c{bottom:17.824000pt;}
.y15{bottom:17.888000pt;}
.y5{bottom:22.976000pt;}
.y64{bottom:36.032000pt;}
.y14{bottom:40.288000pt;}
.y4{bottom:41.536000pt;}
.y3c{bottom:42.880000pt;}
.y57{bottom:43.584000pt;}
.y4b{bottom:46.624000pt;}
.y41{bottom:48.480000pt;}
.y3f{bottom:52.224000pt;}
.y40{bottom:57.824000pt;}
.y3{bottom:58.336000pt;}
.y63{bottom:58.432000pt;}
.y3b{bottom:63.680000pt;}
.y56{bottom:69.184000pt;}
.y4a{bottom:75.424000pt;}
.y62{bottom:80.832000pt;}
.y2{bottom:81.376000pt;}
.y13{bottom:98.144000pt;}
.y1{bottom:99.808000pt;}
.y61{bottom:103.232000pt;}
.y49{bottom:104.224000pt;}
.y3a{bottom:105.280000pt;}
.y2e{bottom:107.136000pt;}
.y1f{bottom:115.040000pt;}
.y55{bottom:120.384000pt;}
.y12{bottom:120.544000pt;}
.y60{bottom:125.664000pt;}
.y39{bottom:126.112000pt;}
.y7{bottom:128.384000pt;}
.y2d{bottom:132.768000pt;}
.y48{bottom:133.056000pt;}
.y1e{bottom:135.840000pt;}
.y11{bottom:142.946667pt;}
.y54{bottom:146.013333pt;}
.y38{bottom:146.906667pt;}
.y5f{bottom:148.066667pt;}
.y2c{bottom:158.373333pt;}
.y6{bottom:168.706667pt;}
.y1d{bottom:177.440000pt;}
.y37{bottom:188.506667pt;}
.y10{bottom:188.546667pt;}
.y5e{bottom:189.533333pt;}
.y47{bottom:190.653333pt;}
.y53{bottom:197.213333pt;}
.y1c{bottom:198.240000pt;}
.y36{bottom:209.306667pt;}
.y2b{bottom:209.573333pt;}
.yf{bottom:210.946667pt;}
.y46{bottom:219.453333pt;}
.y52{bottom:222.813333pt;}
.y35{bottom:230.146667pt;}
.ye{bottom:233.346667pt;}
.y2a{bottom:235.173333pt;}
.y5d{bottom:237.533333pt;}
.y1b{bottom:239.866667pt;}
.y45{bottom:248.293333pt;}
.y25{bottom:250.146667pt;}
.yd{bottom:255.746667pt;}
.y1a{bottom:260.666667pt;}
.y29{bottom:260.800000pt;}
.y5c{bottom:261.533333pt;}
.y24{bottom:270.973333pt;}
.y34{bottom:271.746667pt;}
.y51{bottom:274.053333pt;}
.y19{bottom:281.466667pt;}
.y5b{bottom:285.573333pt;}
.y28{bottom:286.400000pt;}
.yc{bottom:292.253333pt;}
.y33{bottom:292.546667pt;}
.y50{bottom:299.653333pt;}
.y44{bottom:305.893333pt;}
.y5a{bottom:312.453333pt;}
.y23{bottom:312.573333pt;}
.y18{bottom:323.066667pt;}
.y22{bottom:333.373333pt;}
.y32{bottom:334.146667pt;}
.yb{bottom:337.093333pt;}
.y27{bottom:337.600000pt;}
.y17{bottom:343.906667pt;}
.y59{bottom:346.053333pt;}
.y4f{bottom:350.853333pt;}
.y43{bottom:353.760000pt;}
.y21{bottom:354.173333pt;}
.y31{bottom:354.973333pt;}
.ya{bottom:359.493333pt;}
.y26{bottom:363.226667pt;}
.y16{bottom:364.706667pt;}
.y20{bottom:374.973333pt;}
.y4e{bottom:376.480000pt;}
.y9{bottom:381.893333pt;}
.y42{bottom:382.560000pt;}
.y58{bottom:390.973333pt;}
.y30{bottom:396.573333pt;}
.y2f{bottom:417.373333pt;}
.y8{bottom:419.813333pt;}
.y3e{bottom:421.413333pt;}
.y4d{bottom:426.533333pt;}
.h2{height:33.893125pt;}
.h14{height:38.441250pt;}
.h3{height:51.117500pt;}
.h1{height:51.813125pt;}
.h12{height:56.031250pt;}
.h19{height:58.560000pt;}
.hc{height:59.906250pt;}
.ha{height:60.007500pt;}
.hb{height:60.017187pt;}
.hd{height:60.118625pt;}
.h1e{height:60.255000pt;}
.h1f{height:60.358000pt;}
.h8{height:64.898438pt;}
.h7{height:65.008125pt;}
.h9{height:65.009375pt;}
.h1c{height:71.718750pt;}
.h1d{height:71.833500pt;}
.hf{height:73.773438pt;}
.h11{height:73.884375pt;}
.h10{height:76.308750pt;}
.he{height:76.423500pt;}
.h13{height:78.001920pt;}
.h15{height:83.203125pt;}
.h18{height:83.314062pt;}
.h16{height:83.343750pt;}
.h6{height:83.454875pt;}
.h17{height:86.177250pt;}
.h1b{height:111.398438pt;}
.h1a{height:128.493750pt;}
.h4{height:129.460625pt;}
.h5{height:129.571750pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:14.431986pt;}
.x8{left:19.231986pt;}
.x11{left:34.143986pt;}
.xe{left:35.455986pt;}
.xf{left:38.015986pt;}
.x9{left:49.311986pt;}
.x1{left:63.551986pt;}
.x3{left:65.791986pt;}
.x10{left:68.095986pt;}
.x2{left:71.231986pt;}
.x7{left:73.503986pt;}
.x12{left:145.826652pt;}
.xa{left:159.199986pt;}
.x14{left:262.493319pt;}
.x4{left:281.413319pt;}
.x6{left:283.586652pt;}
.xc{left:306.306652pt;}
.xd{left:326.813319pt;}
.xb{left:333.506652pt;}
.x17{left:337.053319pt;}
.x5{left:342.266652pt;}
.x15{left:345.213319pt;}
.x13{left:378.373319pt;}
.x16{left:402.053319pt;}
}




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