
    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_b63177094b6ba3e2b52c269f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964844;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_4f9de7bc7d784c145452e6cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e6f6229d28fd73935f6047d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_74ca5556e53a13ea7a009878.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009766;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_7e2de613a9639e481acb3503.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_a6667b0a57035cd30a590f52.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_39ecadef047501b420fd3a14.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_8009ab4933ab9d9bafbed144.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_2988b927adea54ab36a7999d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_2d7b2040b29e6239a53cd5cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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);}
.v7{vertical-align:-41.040000px;}
.v2{vertical-align:-39.600000px;}
.v8{vertical-align:-28.080000px;}
.v3{vertical-align:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.600000px;}
.v4{vertical-align:25.200000px;}
.v6{vertical-align:28.800000px;}
.v1{vertical-align:39.600000px;}
.ls30{letter-spacing:-1.482000px;}
.ls2f{letter-spacing:-1.158000px;}
.ls23{letter-spacing:-0.424800px;}
.ls2c{letter-spacing:-0.383400px;}
.ls28{letter-spacing:-0.310200px;}
.ls1a{letter-spacing:-0.294600px;}
.ls18{letter-spacing:-0.219600px;}
.ls2b{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.087000px;}
.ls19{letter-spacing:-0.064800px;}
.ls15{letter-spacing:-0.054000px;}
.ls25{letter-spacing:-0.039600px;}
.ls27{letter-spacing:-0.036000px;}
.ls13{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001440px;}
.ls1d{letter-spacing:0.002160px;}
.lsd{letter-spacing:0.018144px;}
.ls7{letter-spacing:0.022320px;}
.ls6{letter-spacing:0.039600px;}
.ls1f{letter-spacing:0.043920px;}
.ls22{letter-spacing:0.067200px;}
.ls32{letter-spacing:0.074400px;}
.ls21{letter-spacing:0.150600px;}
.ls1{letter-spacing:0.157800px;}
.ls2d{letter-spacing:0.159000px;}
.ls5{letter-spacing:0.187200px;}
.ls20{letter-spacing:0.214200px;}
.ls29{letter-spacing:0.254400px;}
.ls33{letter-spacing:0.283200px;}
.ls31{letter-spacing:0.295200px;}
.ls0{letter-spacing:0.301800px;}
.ls2e{letter-spacing:0.303000px;}
.ls1c{letter-spacing:0.322800px;}
.ls26{letter-spacing:0.327000px;}
.ls1e{letter-spacing:0.331200px;}
.ls3{letter-spacing:0.364320px;}
.ls2a{letter-spacing:0.398400px;}
.ls17{letter-spacing:0.402600px;}
.lsf{letter-spacing:0.624000px;}
.ls16{letter-spacing:1.044000px;}
.ls1b{letter-spacing:1.122000px;}
.lse{letter-spacing:5.286240px;}
.ls24{letter-spacing:7.440000px;}
.ls2{letter-spacing:9.822240px;}
.ls10{letter-spacing:18.246240px;}
.lsa{letter-spacing:226.891440px;}
.ls8{letter-spacing:226.951440px;}
.ls9{letter-spacing:227.011440px;}
.lsb{letter-spacing:228.991440px;}
.lsc{letter-spacing:229.171440px;}
.ls12{letter-spacing:292.823808px;}
.ls11{letter-spacing:292.895520px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(110,110,108),0 0.015em rgb(110,110,108),0.015em 0 rgb(110,110,108),0 -0.015em  rgb(110,110,108);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(110,110,108);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws35{word-spacing:-460.727808px;}
.ws31{word-spacing:-460.655520px;}
.ws6{word-spacing:-131.760000px;}
.ws11{word-spacing:-79.840080px;}
.ws2a{word-spacing:-38.537760px;}
.ws2b{word-spacing:-38.208960px;}
.ws2d{word-spacing:-38.196960px;}
.ws12{word-spacing:-38.160504px;}
.ws13{word-spacing:-38.064360px;}
.ws2c{word-spacing:-38.020704px;}
.ws14{word-spacing:-37.980960px;}
.ws2e{word-spacing:-37.913760px;}
.ws17{word-spacing:-37.874160px;}
.ws15{word-spacing:-37.488960px;}
.ws27{word-spacing:-36.755760px;}
.ws28{word-spacing:-36.431760px;}
.wsb{word-spacing:-30.899760px;}
.ws2{word-spacing:-30.821760px;}
.ws7{word-spacing:-30.180360px;}
.wsc{word-spacing:-30.100560px;}
.ws5{word-spacing:-30.079560px;}
.ws3{word-spacing:-29.935560px;}
.wsd{word-spacing:-29.779920px;}
.ws4{word-spacing:-29.777760px;}
.ws1{word-spacing:-29.723760px;}
.ws9{word-spacing:-29.712960px;}
.ws0{word-spacing:-29.690760px;}
.ws8{word-spacing:-29.558160px;}
.wsa{word-spacing:-29.483160px;}
.ws10{word-spacing:-29.250720px;}
.ws29{word-spacing:-25.384320px;}
.ws1b{word-spacing:-21.641760px;}
.ws1e{word-spacing:-21.331560px;}
.ws22{word-spacing:-21.290904px;}
.ws1a{word-spacing:-19.038240px;}
.ws19{word-spacing:-16.272000px;}
.ws18{word-spacing:-14.970240px;}
.ws2f{word-spacing:-0.288000px;}
.wsf{word-spacing:-0.186480px;}
.ws3a{word-spacing:0.000000px;}
.wse{word-spacing:29.787552px;}
.ws37{word-spacing:124.079808px;}
.ws33{word-spacing:124.295520px;}
.ws38{word-spacing:125.075520px;}
.ws1f{word-spacing:207.310080px;}
.ws23{word-spacing:207.377112px;}
.ws20{word-spacing:209.038080px;}
.ws24{word-spacing:209.105112px;}
.ws26{word-spacing:209.470080px;}
.ws30{word-spacing:214.972704px;}
.ws16{word-spacing:251.926560px;}
.ws34{word-spacing:257.261760px;}
.ws39{word-spacing:257.441760px;}
.ws36{word-spacing:265.797504px;}
.ws32{word-spacing:265.901760px;}
.ws1c{word-spacing:285.787920px;}
.ws25{word-spacing:322.428000px;}
.ws21{word-spacing:349.753440px;}
.ws1d{word-spacing:349.788000px;}
._a{margin-left:-13.284240px;}
._33{margin-left:-11.735280px;}
._2c{margin-left:-10.666656px;}
._e{margin-left:-8.387760px;}
._2b{margin-left:-7.301040px;}
._b{margin-left:-6.060960px;}
._0{margin-left:-4.555440px;}
._13{margin-left:-3.358080px;}
._c{margin-left:-2.293680px;}
._3{margin-left:-1.029360px;}
._2{width:1.140960px;}
._6{width:2.795520px;}
._d{width:3.992640px;}
._10{width:5.270400px;}
._f{width:6.656880px;}
._1{width:8.126160px;}
._4{width:9.297120px;}
._5{width:10.353360px;}
._26{width:12.975120px;}
._25{width:14.530080px;}
._11{width:15.787440px;}
._12{width:17.568000px;}
._32{width:18.646560px;}
._24{width:19.678560px;}
._7{width:21.303360px;}
._8{width:22.390560px;}
._15{width:24.716880px;}
._9{width:31.463280px;}
._16{width:32.501040px;}
._19{width:33.965520px;}
._1b{width:36.693120px;}
._14{width:39.144432px;}
._21{width:44.173200px;}
._22{width:45.402000px;}
._1a{width:47.013840px;}
._20{width:55.332960px;}
._2d{width:57.174480px;}
._18{width:58.857600px;}
._17{width:60.109680px;}
._2a{width:74.252160px;}
._35{width:82.170480px;}
._1f{width:92.921520px;}
._2e{width:95.179920px;}
._27{width:99.848640px;}
._36{width:118.786080px;}
._31{width:127.425360px;}
._2f{width:128.907360px;}
._1c{width:136.992720px;}
._1e{width:138.279120px;}
._3b{width:145.711200px;}
._3a{width:146.945040px;}
._39{width:148.807824px;}
._30{width:165.929760px;}
._1d{width:175.506672px;}
._34{width:178.928640px;}
._47{width:203.954400px;}
._41{width:214.303608px;}
._3e{width:224.803608px;}
._29{width:229.025760px;}
._28{width:231.485280px;}
._38{width:234.756960px;}
._37{width:236.480400px;}
._40{width:237.763608px;}
._3f{width:247.243680px;}
._23{width:252.332160px;}
._44{width:253.743360px;}
._3d{width:260.803536px;}
._46{width:294.395520px;}
._43{width:295.409616px;}
._45{width:303.995520px;}
._42{width:305.735520px;}
._3c{width:1267.486080px;}
.fc1{color:rgb(110,110,108);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:48.240000px;}
.fs10{font-size:56.160000px;}
.fs11{font-size:64.080000px;}
.fs9{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fsf{font-size:84.240000px;}
.fs5{font-size:87.840000px;}
.fse{font-size:95.760000px;}
.fs13{font-size:95.904000px;}
.fs2{font-size:101.664000px;}
.fsd{font-size:108.000000px;}
.fs12{font-size:108.144000px;}
.fs16{font-size:112.320000px;}
.fs4{font-size:118.800000px;}
.fsc{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fs15{font-size:144.000000px;}
.fs14{font-size:144.144000px;}
.fs8{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs3{font-size:186.480000px;}
.fs0{font-size:239.760000px;}
.fs6{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:30.600000px;}
.y6{bottom:70.200000px;}
.y5{bottom:109.800000px;}
.y4{bottom:149.400000px;}
.y3{bottom:189.000000px;}
.y56{bottom:199.290000px;}
.y2{bottom:228.600000px;}
.y52{bottom:235.230000px;}
.y1{bottom:275.400000px;}
.y51{bottom:280.410000px;}
.y34{bottom:310.500000px;}
.y33{bottom:339.300000px;}
.y3f{bottom:365.910000px;}
.y32{bottom:383.040000px;}
.y3e{bottom:416.310000px;}
.y3d{bottom:466.710000px;}
.y3c{bottom:517.110000px;}
.y3b{bottom:571.830000px;}
.y31{bottom:669.240000px;}
.y41{bottom:675.690000px;}
.y3a{bottom:728.385000px;}
.y39{bottom:780.840000px;}
.y38{bottom:833.295000px;}
.y37{bottom:885.705000px;}
.y36{bottom:938.160000px;}
.y35{bottom:1015.995000px;}
.y30{bottom:1082.445000px;}
.y2f{bottom:1123.485000px;}
.y2e{bottom:1155.240000px;}
.y4e{bottom:1161.285000px;}
.y4d{bottom:1211.685000px;}
.y4c{bottom:1262.085000px;}
.y46{bottom:1281.525000px;}
.y4b{bottom:1312.485000px;}
.y45{bottom:1331.925000px;}
.y4a{bottom:1362.930000px;}
.y44{bottom:1382.325000px;}
.y49{bottom:1413.330000px;}
.y43{bottom:1432.725000px;}
.y48{bottom:1463.730000px;}
.y42{bottom:1483.125000px;}
.y47{bottom:1514.130000px;}
.y40{bottom:1575.750000px;}
.y5b{bottom:1635.690000px;}
.y55{bottom:1659.060000px;}
.y5a{bottom:1693.800000px;}
.y50{bottom:1697.760000px;}
.y59{bottom:1751.940000px;}
.y58{bottom:1810.080000px;}
.y57{bottom:1867.890000px;}
.y54{bottom:1891.470000px;}
.y53{bottom:1955.625000px;}
.y4f{bottom:2023.815000px;}
.y2d{bottom:2051.310000px;}
.y2c{bottom:2117.910000px;}
.y1e{bottom:2149.410000px;}
.y1d{bottom:2199.810000px;}
.y2b{bottom:2227.320000px;}
.y2a{bottom:2247.120000px;}
.y1c{bottom:2250.210000px;}
.y1b{bottom:2300.610000px;}
.y1a{bottom:2351.010000px;}
.y29{bottom:2358.180000px;}
.y28{bottom:2377.980000px;}
.y19{bottom:2401.410000px;}
.y18{bottom:2451.810000px;}
.y27{bottom:2475.390000px;}
.y26{bottom:2493.390000px;}
.y17{bottom:2502.210000px;}
.y25{bottom:2511.570000px;}
.y24{bottom:2529.750000px;}
.y16{bottom:2552.610000px;}
.y23{bottom:2602.725000px;}
.y15{bottom:2603.055000px;}
.y22{bottom:2620.905000px;}
.y21{bottom:2638.905000px;}
.y20{bottom:2657.085000px;}
.y1f{bottom:2675.265000px;}
.y11{bottom:2678.580000px;}
.y10{bottom:2766.090000px;}
.yf{bottom:2855.190000px;}
.ye{bottom:2884.890000px;}
.yd{bottom:2934.390000px;}
.yc{bottom:2973.990000px;}
.yb{bottom:3043.290000px;}
.y14{bottom:3126.810000px;}
.y13{bottom:3213.210000px;}
.y12{bottom:3299.610000px;}
.ya{bottom:3384.750000px;}
.y9{bottom:3424.350000px;}
.y8{bottom:3490.305000px;}
.h8{height:66.266016px;}
.hd{height:67.824844px;}
.h11{height:73.035703px;}
.he{height:73.722656px;}
.h4{height:81.311344px;}
.h12{height:86.255508px;}
.h6{height:95.016797px;}
.h14{height:98.051133px;}
.h19{height:98.198578px;}
.h9{height:99.399023px;}
.h7{height:105.866016px;}
.h10{height:110.583984px;}
.h15{height:110.731430px;}
.hf{height:123.116836px;}
.h3{height:131.052305px;}
.h5{height:135.853594px;}
.h1d{height:138.658945px;}
.h1c{height:138.778945px;}
.h1b{height:138.922172px;}
.h17{height:147.445312px;}
.h16{height:147.592758px;}
.hc{height:166.858945px;}
.hb{height:167.002172px;}
.h2{height:180.873633px;}
.ha{height:217.265625px;}
.h1a{height:450.360000px;}
.h18{height:534.240000px;}
.h13{height:709.920000px;}
.h1{height:3571.500000px;}
.h0{height:3571.740000px;}
.w4{width:134.820000px;}
.w3{width:192.960000px;}
.w1{width:2525.250000px;}
.w2{width:2525.579962px;}
.w0{width:2525.580000px;}
.x0{left:0.000000px;}
.x27{left:6.300000px;}
.x31{left:7.740000px;}
.x34{left:9.390000px;}
.x30{left:47.520000px;}
.x7{left:52.739962px;}
.x1{left:55.799962px;}
.x26{left:64.800000px;}
.x9{left:160.589962px;}
.x6{left:329.069962px;}
.x5{left:406.829962px;}
.xc{left:415.049962px;}
.xd{left:633.239962px;}
.x8{left:786.134962px;}
.xa{left:794.414962px;}
.xb{left:1014.149962px;}
.x1a{left:1126.949962px;}
.x15{left:1209.959962px;}
.x14{left:1217.159962px;}
.x16{left:1219.499962px;}
.x19{left:1231.664962px;}
.x18{left:1243.364962px;}
.x10{left:1277.969962px;}
.xf{left:1282.469962px;}
.x11{left:1286.069962px;}
.x12{left:1295.609962px;}
.x13{left:1300.469962px;}
.x17{left:1303.349962px;}
.x2f{left:1370.700000px;}
.x25{left:1375.560000px;}
.x2d{left:1381.709962px;}
.x38{left:1385.489962px;}
.x36{left:1393.049962px;}
.x37{left:1398.089962px;}
.x2b{left:1418.039962px;}
.x33{left:1429.409962px;}
.x2a{left:1454.834962px;}
.x29{left:1461.674962px;}
.xe{left:1483.379962px;}
.x32{left:1540.979962px;}
.x35{left:1542.059962px;}
.x1c{left:1587.884962px;}
.x2c{left:1601.849962px;}
.x28{left:1606.829962px;}
.x2e{left:1665.284962px;}
.x1e{left:1766.729962px;}
.x1d{left:1790.174962px;}
.x1b{left:1882.439962px;}
.x20{left:1944.719962px;}
.x1f{left:1973.159962px;}
.x22{left:2122.709962px;}
.x21{left:2138.549962px;}
.x3{left:2205.284962px;}
.x2{left:2241.359962px;}
.x4{left:2270.264962px;}
.x24{left:2300.654962px;}
.x23{left:2324.234962px;}
@media print{
.v7{vertical-align:-36.480000pt;}
.v2{vertical-align:-35.200000pt;}
.v8{vertical-align:-24.960000pt;}
.v3{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.200000pt;}
.v4{vertical-align:22.400000pt;}
.v6{vertical-align:25.600000pt;}
.v1{vertical-align:35.200000pt;}
.ls30{letter-spacing:-1.317333pt;}
.ls2f{letter-spacing:-1.029333pt;}
.ls23{letter-spacing:-0.377600pt;}
.ls2c{letter-spacing:-0.340800pt;}
.ls28{letter-spacing:-0.275733pt;}
.ls1a{letter-spacing:-0.261867pt;}
.ls18{letter-spacing:-0.195200pt;}
.ls2b{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.077333pt;}
.ls19{letter-spacing:-0.057600pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls25{letter-spacing:-0.035200pt;}
.ls27{letter-spacing:-0.032000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001280pt;}
.ls1d{letter-spacing:0.001920pt;}
.lsd{letter-spacing:0.016128pt;}
.ls7{letter-spacing:0.019840pt;}
.ls6{letter-spacing:0.035200pt;}
.ls1f{letter-spacing:0.039040pt;}
.ls22{letter-spacing:0.059733pt;}
.ls32{letter-spacing:0.066133pt;}
.ls21{letter-spacing:0.133867pt;}
.ls1{letter-spacing:0.140267pt;}
.ls2d{letter-spacing:0.141333pt;}
.ls5{letter-spacing:0.166400pt;}
.ls20{letter-spacing:0.190400pt;}
.ls29{letter-spacing:0.226133pt;}
.ls33{letter-spacing:0.251733pt;}
.ls31{letter-spacing:0.262400pt;}
.ls0{letter-spacing:0.268267pt;}
.ls2e{letter-spacing:0.269333pt;}
.ls1c{letter-spacing:0.286933pt;}
.ls26{letter-spacing:0.290667pt;}
.ls1e{letter-spacing:0.294400pt;}
.ls3{letter-spacing:0.323840pt;}
.ls2a{letter-spacing:0.354133pt;}
.ls17{letter-spacing:0.357867pt;}
.lsf{letter-spacing:0.554667pt;}
.ls16{letter-spacing:0.928000pt;}
.ls1b{letter-spacing:0.997333pt;}
.lse{letter-spacing:4.698880pt;}
.ls24{letter-spacing:6.613333pt;}
.ls2{letter-spacing:8.730880pt;}
.ls10{letter-spacing:16.218880pt;}
.lsa{letter-spacing:201.681280pt;}
.ls8{letter-spacing:201.734613pt;}
.ls9{letter-spacing:201.787947pt;}
.lsb{letter-spacing:203.547947pt;}
.lsc{letter-spacing:203.707947pt;}
.ls12{letter-spacing:260.287829pt;}
.ls11{letter-spacing:260.351573pt;}
.ws35{word-spacing:-409.535829pt;}
.ws31{word-spacing:-409.471573pt;}
.ws6{word-spacing:-117.120000pt;}
.ws11{word-spacing:-70.968960pt;}
.ws2a{word-spacing:-34.255787pt;}
.ws2b{word-spacing:-33.963520pt;}
.ws2d{word-spacing:-33.952853pt;}
.ws12{word-spacing:-33.920448pt;}
.ws13{word-spacing:-33.834987pt;}
.ws2c{word-spacing:-33.796181pt;}
.ws14{word-spacing:-33.760853pt;}
.ws2e{word-spacing:-33.701120pt;}
.ws17{word-spacing:-33.665920pt;}
.ws15{word-spacing:-33.323520pt;}
.ws27{word-spacing:-32.671787pt;}
.ws28{word-spacing:-32.383787pt;}
.wsb{word-spacing:-27.466453pt;}
.ws2{word-spacing:-27.397120pt;}
.ws7{word-spacing:-26.826987pt;}
.wsc{word-spacing:-26.756053pt;}
.ws5{word-spacing:-26.737387pt;}
.ws3{word-spacing:-26.609387pt;}
.wsd{word-spacing:-26.471040pt;}
.ws4{word-spacing:-26.469120pt;}
.ws1{word-spacing:-26.421120pt;}
.ws9{word-spacing:-26.411520pt;}
.ws0{word-spacing:-26.391787pt;}
.ws8{word-spacing:-26.273920pt;}
.wsa{word-spacing:-26.207253pt;}
.ws10{word-spacing:-26.000640pt;}
.ws29{word-spacing:-22.563840pt;}
.ws1b{word-spacing:-19.237120pt;}
.ws1e{word-spacing:-18.961387pt;}
.ws22{word-spacing:-18.925248pt;}
.ws1a{word-spacing:-16.922880pt;}
.ws19{word-spacing:-14.464000pt;}
.ws18{word-spacing:-13.306880pt;}
.ws2f{word-spacing:-0.256000pt;}
.wsf{word-spacing:-0.165760pt;}
.ws3a{word-spacing:0.000000pt;}
.wse{word-spacing:26.477824pt;}
.ws37{word-spacing:110.293163pt;}
.ws33{word-spacing:110.484907pt;}
.ws38{word-spacing:111.178240pt;}
.ws1f{word-spacing:184.275627pt;}
.ws23{word-spacing:184.335211pt;}
.ws20{word-spacing:185.811627pt;}
.ws24{word-spacing:185.871211pt;}
.ws26{word-spacing:186.195627pt;}
.ws30{word-spacing:191.086848pt;}
.ws16{word-spacing:223.934720pt;}
.ws34{word-spacing:228.677120pt;}
.ws39{word-spacing:228.837120pt;}
.ws36{word-spacing:236.264448pt;}
.ws32{word-spacing:236.357120pt;}
.ws1c{word-spacing:254.033707pt;}
.ws25{word-spacing:286.602667pt;}
.ws21{word-spacing:310.891947pt;}
.ws1d{word-spacing:310.922667pt;}
._a{margin-left:-11.808213pt;}
._33{margin-left:-10.431360pt;}
._2c{margin-left:-9.481472pt;}
._e{margin-left:-7.455787pt;}
._2b{margin-left:-6.489813pt;}
._b{margin-left:-5.387520pt;}
._0{margin-left:-4.049280pt;}
._13{margin-left:-2.984960pt;}
._c{margin-left:-2.038827pt;}
._3{margin-left:-0.914987pt;}
._2{width:1.014187pt;}
._6{width:2.484907pt;}
._d{width:3.549013pt;}
._10{width:4.684800pt;}
._f{width:5.917227pt;}
._1{width:7.223253pt;}
._4{width:8.264107pt;}
._5{width:9.202987pt;}
._26{width:11.533440pt;}
._25{width:12.915627pt;}
._11{width:14.033280pt;}
._12{width:15.616000pt;}
._32{width:16.574720pt;}
._24{width:17.492053pt;}
._7{width:18.936320pt;}
._8{width:19.902720pt;}
._15{width:21.970560pt;}
._9{width:27.967360pt;}
._16{width:28.889813pt;}
._19{width:30.191573pt;}
._1b{width:32.616107pt;}
._14{width:34.795051pt;}
._21{width:39.265067pt;}
._22{width:40.357333pt;}
._1a{width:41.790080pt;}
._20{width:49.184853pt;}
._2d{width:50.821760pt;}
._18{width:52.317867pt;}
._17{width:53.430827pt;}
._2a{width:66.001920pt;}
._35{width:73.040427pt;}
._1f{width:82.596907pt;}
._2e{width:84.604373pt;}
._27{width:88.754347pt;}
._36{width:105.587627pt;}
._31{width:113.266987pt;}
._2f{width:114.584320pt;}
._1c{width:121.771307pt;}
._1e{width:122.914773pt;}
._3b{width:129.521067pt;}
._3a{width:130.617813pt;}
._39{width:132.273621pt;}
._30{width:147.493120pt;}
._1d{width:156.005931pt;}
._34{width:159.047680pt;}
._47{width:181.292800pt;}
._41{width:190.492096pt;}
._3e{width:199.825429pt;}
._29{width:203.578453pt;}
._28{width:205.764693pt;}
._38{width:208.672853pt;}
._37{width:210.204800pt;}
._40{width:211.345429pt;}
._3f{width:219.772160pt;}
._23{width:224.295253pt;}
._44{width:225.549653pt;}
._3d{width:231.825365pt;}
._46{width:261.684907pt;}
._43{width:262.586325pt;}
._45{width:270.218240pt;}
._42{width:271.764907pt;}
._3c{width:1126.654293pt;}
.fsb{font-size:42.880000pt;}
.fs10{font-size:49.920000pt;}
.fs11{font-size:56.960000pt;}
.fs9{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fsf{font-size:74.880000pt;}
.fs5{font-size:78.080000pt;}
.fse{font-size:85.120000pt;}
.fs13{font-size:85.248000pt;}
.fs2{font-size:90.368000pt;}
.fsd{font-size:96.000000pt;}
.fs12{font-size:96.128000pt;}
.fs16{font-size:99.840000pt;}
.fs4{font-size:105.600000pt;}
.fsc{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fs15{font-size:128.000000pt;}
.fs14{font-size:128.128000pt;}
.fs8{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs3{font-size:165.760000pt;}
.fs0{font-size:213.120000pt;}
.fs6{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:27.200000pt;}
.y6{bottom:62.400000pt;}
.y5{bottom:97.600000pt;}
.y4{bottom:132.800000pt;}
.y3{bottom:168.000000pt;}
.y56{bottom:177.146667pt;}
.y2{bottom:203.200000pt;}
.y52{bottom:209.093333pt;}
.y1{bottom:244.800000pt;}
.y51{bottom:249.253333pt;}
.y34{bottom:276.000000pt;}
.y33{bottom:301.600000pt;}
.y3f{bottom:325.253333pt;}
.y32{bottom:340.480000pt;}
.y3e{bottom:370.053333pt;}
.y3d{bottom:414.853333pt;}
.y3c{bottom:459.653333pt;}
.y3b{bottom:508.293333pt;}
.y31{bottom:594.880000pt;}
.y41{bottom:600.613333pt;}
.y3a{bottom:647.453333pt;}
.y39{bottom:694.080000pt;}
.y38{bottom:740.706667pt;}
.y37{bottom:787.293333pt;}
.y36{bottom:833.920000pt;}
.y35{bottom:903.106667pt;}
.y30{bottom:962.173333pt;}
.y2f{bottom:998.653333pt;}
.y2e{bottom:1026.880000pt;}
.y4e{bottom:1032.253333pt;}
.y4d{bottom:1077.053333pt;}
.y4c{bottom:1121.853333pt;}
.y46{bottom:1139.133333pt;}
.y4b{bottom:1166.653333pt;}
.y45{bottom:1183.933333pt;}
.y4a{bottom:1211.493333pt;}
.y44{bottom:1228.733333pt;}
.y49{bottom:1256.293333pt;}
.y43{bottom:1273.533333pt;}
.y48{bottom:1301.093333pt;}
.y42{bottom:1318.333333pt;}
.y47{bottom:1345.893333pt;}
.y40{bottom:1400.666667pt;}
.y5b{bottom:1453.946667pt;}
.y55{bottom:1474.720000pt;}
.y5a{bottom:1505.600000pt;}
.y50{bottom:1509.120000pt;}
.y59{bottom:1557.280000pt;}
.y58{bottom:1608.960000pt;}
.y57{bottom:1660.346667pt;}
.y54{bottom:1681.306667pt;}
.y53{bottom:1738.333333pt;}
.y4f{bottom:1798.946667pt;}
.y2d{bottom:1823.386667pt;}
.y2c{bottom:1882.586667pt;}
.y1e{bottom:1910.586667pt;}
.y1d{bottom:1955.386667pt;}
.y2b{bottom:1979.840000pt;}
.y2a{bottom:1997.440000pt;}
.y1c{bottom:2000.186667pt;}
.y1b{bottom:2044.986667pt;}
.y1a{bottom:2089.786667pt;}
.y29{bottom:2096.160000pt;}
.y28{bottom:2113.760000pt;}
.y19{bottom:2134.586667pt;}
.y18{bottom:2179.386667pt;}
.y27{bottom:2200.346667pt;}
.y26{bottom:2216.346667pt;}
.y17{bottom:2224.186667pt;}
.y25{bottom:2232.506667pt;}
.y24{bottom:2248.666667pt;}
.y16{bottom:2268.986667pt;}
.y23{bottom:2313.533333pt;}
.y15{bottom:2313.826667pt;}
.y22{bottom:2329.693333pt;}
.y21{bottom:2345.693333pt;}
.y20{bottom:2361.853333pt;}
.y1f{bottom:2378.013333pt;}
.y11{bottom:2380.960000pt;}
.y10{bottom:2458.746667pt;}
.yf{bottom:2537.946667pt;}
.ye{bottom:2564.346667pt;}
.yd{bottom:2608.346667pt;}
.yc{bottom:2643.546667pt;}
.yb{bottom:2705.146667pt;}
.y14{bottom:2779.386667pt;}
.y13{bottom:2856.186667pt;}
.y12{bottom:2932.986667pt;}
.ya{bottom:3008.666667pt;}
.y9{bottom:3043.866667pt;}
.y8{bottom:3102.493333pt;}
.h8{height:58.903125pt;}
.hd{height:60.288750pt;}
.h11{height:64.920625pt;}
.he{height:65.531250pt;}
.h4{height:72.276750pt;}
.h12{height:76.671562pt;}
.h6{height:84.459375pt;}
.h14{height:87.156562pt;}
.h19{height:87.287625pt;}
.h9{height:88.354687pt;}
.h7{height:94.103125pt;}
.h10{height:98.296875pt;}
.h15{height:98.427937pt;}
.hf{height:109.437187pt;}
.h3{height:116.490937pt;}
.h5{height:120.758750pt;}
.h1d{height:123.252396pt;}
.h1c{height:123.359063pt;}
.h1b{height:123.486375pt;}
.h17{height:131.062500pt;}
.h16{height:131.193562pt;}
.hc{height:148.319063pt;}
.hb{height:148.446375pt;}
.h2{height:160.776562pt;}
.ha{height:193.125000pt;}
.h1a{height:400.320000pt;}
.h18{height:474.880000pt;}
.h13{height:631.040000pt;}
.h1{height:3174.666667pt;}
.h0{height:3174.880000pt;}
.w4{width:119.840000pt;}
.w3{width:171.520000pt;}
.w1{width:2244.666667pt;}
.w2{width:2244.959967pt;}
.w0{width:2244.960000pt;}
.x0{left:0.000000pt;}
.x27{left:5.600000pt;}
.x31{left:6.880000pt;}
.x34{left:8.346667pt;}
.x30{left:42.240000pt;}
.x7{left:46.879967pt;}
.x1{left:49.599967pt;}
.x26{left:57.600000pt;}
.x9{left:142.746633pt;}
.x6{left:292.506633pt;}
.x5{left:361.626633pt;}
.xc{left:368.933300pt;}
.xd{left:562.879967pt;}
.x8{left:698.786633pt;}
.xa{left:706.146633pt;}
.xb{left:901.466633pt;}
.x1a{left:1001.733300pt;}
.x15{left:1075.519967pt;}
.x14{left:1081.919967pt;}
.x16{left:1083.999967pt;}
.x19{left:1094.813300pt;}
.x18{left:1105.213300pt;}
.x10{left:1135.973300pt;}
.xf{left:1139.973300pt;}
.x11{left:1143.173300pt;}
.x12{left:1151.653300pt;}
.x13{left:1155.973300pt;}
.x17{left:1158.533300pt;}
.x2f{left:1218.400000pt;}
.x25{left:1222.720000pt;}
.x2d{left:1228.186633pt;}
.x38{left:1231.546633pt;}
.x36{left:1238.266633pt;}
.x37{left:1242.746633pt;}
.x2b{left:1260.479967pt;}
.x33{left:1270.586633pt;}
.x2a{left:1293.186633pt;}
.x29{left:1299.266633pt;}
.xe{left:1318.559967pt;}
.x32{left:1369.759967pt;}
.x35{left:1370.719967pt;}
.x1c{left:1411.453300pt;}
.x2c{left:1423.866633pt;}
.x28{left:1428.293300pt;}
.x2e{left:1480.253300pt;}
.x1e{left:1570.426633pt;}
.x1d{left:1591.266633pt;}
.x1b{left:1673.279967pt;}
.x20{left:1728.639967pt;}
.x1f{left:1753.919967pt;}
.x22{left:1886.853300pt;}
.x21{left:1900.933300pt;}
.x3{left:1960.253300pt;}
.x2{left:1992.319967pt;}
.x4{left:2018.013300pt;}
.x24{left:2045.026633pt;}
.x23{left:2065.986633pt;}
}




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