
    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_a946106986ff0b26015fcb7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_ea3ed98716b1a73e2d911854.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_ca07aaef5a381e69cfa3d470.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.184000;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_9c83eb5fd08cdbec75cbae30.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.185000;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_b689e79b110a653a7ffd0de5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_b689e79b110a653a7ffd0de5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.160000;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_79902f59519fbc58c113afee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.200900;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_3cfdaf1e2089ed8c8aed5d63.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.217000;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_41620ee929b6b74b26481615.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172000;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_813280fac1d32d823947b9de.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.032000;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_07fd3b57466aff55c1f73324.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.036000;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_2b71e38002b0a6d4c19d9d87.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_970d022133e2ff5702d0f59c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.196000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls33{letter-spacing:-4.080000px;}
.ls39{letter-spacing:-2.838000px;}
.ls18{letter-spacing:-2.268000px;}
.ls1d{letter-spacing:-2.214000px;}
.ls2e{letter-spacing:-2.052000px;}
.ls27{letter-spacing:-0.853464px;}
.ls23{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.510000px;}
.ls22{letter-spacing:-0.420000px;}
.ls21{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.204000px;}
.ls1b{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.153000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.150000px;}
.ls2d{letter-spacing:0.167400px;}
.lse{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.210000px;}
.ls10{letter-spacing:0.222000px;}
.ls1{letter-spacing:0.229500px;}
.ls4{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.255000px;}
.ls2b{letter-spacing:0.270000px;}
.ls2c{letter-spacing:0.279000px;}
.ls5{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.333000px;}
.ls2{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.391200px;}
.ls6{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.450000px;}
.ls12{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.558000px;}
.ls28{letter-spacing:0.570000px;}
.ls1f{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.780000px;}
.ls1e{letter-spacing:0.810000px;}
.ls34{letter-spacing:0.840000px;}
.ls37{letter-spacing:0.900000px;}
.ls35{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.032000px;}
.ls36{letter-spacing:1.140000px;}
.ls19{letter-spacing:1.200000px;}
.ls17{letter-spacing:1.782000px;}
.ls32{letter-spacing:1.908000px;}
.ls8{letter-spacing:2.322000px;}
.ls38{letter-spacing:2.838000px;}
.ls16{letter-spacing:3.444000px;}
.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;}
}
.wsa6{word-spacing:-14.241600px;}
.ws1{word-spacing:-13.725600px;}
.ws0{word-spacing:-12.798000px;}
.ws8a{word-spacing:-11.700000px;}
.ws8b{word-spacing:-11.520000px;}
.ws71{word-spacing:-11.340000px;}
.ws99{word-spacing:-11.220000px;}
.ws95{word-spacing:-11.160000px;}
.wsa7{word-spacing:-11.094000px;}
.wsa1{word-spacing:-10.746000px;}
.ws3a{word-spacing:-10.584000px;}
.ws5f{word-spacing:-8.918699px;}
.ws78{word-spacing:-8.901000px;}
.ws63{word-spacing:-8.065235px;}
.ws9a{word-spacing:-7.310820px;}
.ws82{word-spacing:-2.760000px;}
.ws98{word-spacing:-2.520000px;}
.ws37{word-spacing:-2.100000px;}
.ws16{word-spacing:-2.040000px;}
.ws5c{word-spacing:-1.980000px;}
.ws14{word-spacing:-1.920000px;}
.ws1c{word-spacing:-1.860000px;}
.ws5a{word-spacing:-1.800000px;}
.ws86{word-spacing:-1.785600px;}
.ws1e{word-spacing:-1.782000px;}
.ws66{word-spacing:-1.740000px;}
.ws52{word-spacing:-1.680000px;}
.wsf{word-spacing:-1.632000px;}
.ws6d{word-spacing:-1.620000px;}
.wsd{word-spacing:-1.581000px;}
.ws5b{word-spacing:-1.560000px;}
.ws4a{word-spacing:-1.500000px;}
.ws8d{word-spacing:-1.380000px;}
.ws27{word-spacing:-1.320000px;}
.ws2b{word-spacing:-1.260000px;}
.ws22{word-spacing:-1.200000px;}
.ws7{word-spacing:-1.173000px;}
.ws33{word-spacing:-1.140000px;}
.ws84{word-spacing:-1.116000px;}
.ws4e{word-spacing:-1.080000px;}
.wse{word-spacing:-1.032000px;}
.ws7c{word-spacing:-1.020000px;}
.wsb{word-spacing:-0.969000px;}
.ws3e{word-spacing:-0.960000px;}
.ws6{word-spacing:-0.867000px;}
.ws34{word-spacing:-0.840000px;}
.ws29{word-spacing:-0.780000px;}
.wsae{word-spacing:-0.722400px;}
.ws45{word-spacing:-0.720000px;}
.ws5{word-spacing:-0.663000px;}
.ws81{word-spacing:-0.660000px;}
.ws80{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.561000px;}
.ws55{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.480000px;}
.wsab{word-spacing:-0.464400px;}
.ws2c{word-spacing:-0.360000px;}
.ws2{word-spacing:-0.355200px;}
.ws7b{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.258000px;}
.ws21{word-spacing:-0.240000px;}
.ws89{word-spacing:-0.223200px;}
.ws1d{word-spacing:-0.222000px;}
.wsaa{word-spacing:-0.206400px;}
.ws4{word-spacing:-0.204000px;}
.ws40{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.060000px;}
.ws61{word-spacing:-0.042673px;}
.ws3{word-spacing:0.000000px;}
.ws9f{word-spacing:0.055800px;}
.ws67{word-spacing:0.060000px;}
.ws85{word-spacing:0.111600px;}
.ws23{word-spacing:0.120000px;}
.ws57{word-spacing:0.180000px;}
.ws56{word-spacing:0.240000px;}
.ws92{word-spacing:0.300000px;}
.ws75{word-spacing:0.360000px;}
.ws39{word-spacing:0.420000px;}
.ws90{word-spacing:0.480000px;}
.ws44{word-spacing:0.540000px;}
.ws6a{word-spacing:0.600000px;}
.ws36{word-spacing:0.660000px;}
.ws5e{word-spacing:0.720000px;}
.ws50{word-spacing:0.780000px;}
.ws74{word-spacing:0.840000px;}
.ws49{word-spacing:0.900000px;}
.ws97{word-spacing:0.960000px;}
.ws88{word-spacing:1.116000px;}
.ws12{word-spacing:1.140000px;}
.ws59{word-spacing:1.200000px;}
.ws1b{word-spacing:1.260000px;}
.ws73{word-spacing:1.320000px;}
.ws87{word-spacing:1.339200px;}
.ws47{word-spacing:1.380000px;}
.ws26{word-spacing:1.440000px;}
.ws38{word-spacing:1.500000px;}
.ws7e{word-spacing:1.560000px;}
.ws3f{word-spacing:1.620000px;}
.ws42{word-spacing:1.680000px;}
.wsa{word-spacing:1.734000px;}
.ws25{word-spacing:1.740000px;}
.ws7d{word-spacing:1.800000px;}
.ws8{word-spacing:1.836000px;}
.wsa0{word-spacing:1.841400px;}
.ws11{word-spacing:1.860000px;}
.ws17{word-spacing:1.920000px;}
.ws2a{word-spacing:1.980000px;}
.ws9{word-spacing:2.040000px;}
.ws4f{word-spacing:2.100000px;}
.ws3d{word-spacing:2.160000px;}
.ws65{word-spacing:2.220000px;}
.ws54{word-spacing:2.280000px;}
.ws9e{word-spacing:2.287800px;}
.ws41{word-spacing:2.340000px;}
.ws24{word-spacing:2.400000px;}
.ws19{word-spacing:2.460000px;}
.ws46{word-spacing:2.520000px;}
.ws7f{word-spacing:2.580000px;}
.wsaf{word-spacing:2.631600px;}
.ws4b{word-spacing:2.640000px;}
.ws2d{word-spacing:2.700000px;}
.ws15{word-spacing:2.760000px;}
.ws18{word-spacing:2.820000px;}
.ws35{word-spacing:2.880000px;}
.ws6e{word-spacing:2.940000px;}
.ws10{word-spacing:3.000000px;}
.ws9c{word-spacing:3.060000px;}
.wsa5{word-spacing:3.120000px;}
.ws1a{word-spacing:3.180000px;}
.ws48{word-spacing:3.240000px;}
.ws6c{word-spacing:3.300000px;}
.ws2f{word-spacing:3.360000px;}
.ws4d{word-spacing:3.420000px;}
.ws20{word-spacing:3.540000px;}
.ws94{word-spacing:3.600000px;}
.ws6f{word-spacing:3.660000px;}
.ws4c{word-spacing:3.720000px;}
.ws8e{word-spacing:3.840000px;}
.ws7a{word-spacing:3.900000px;}
.ws28{word-spacing:4.020000px;}
.ws2e{word-spacing:4.080000px;}
.ws77{word-spacing:4.140000px;}
.ws3c{word-spacing:4.200000px;}
.ws83{word-spacing:4.408200px;}
.ws9d{word-spacing:4.464000px;}
.ws32{word-spacing:4.500000px;}
.ws6b{word-spacing:4.560000px;}
.ws53{word-spacing:4.620000px;}
.ws91{word-spacing:4.800000px;}
.ws93{word-spacing:4.980000px;}
.ws76{word-spacing:5.100000px;}
.wsa9{word-spacing:5.160000px;}
.ws58{word-spacing:5.220000px;}
.ws8f{word-spacing:5.280000px;}
.ws30{word-spacing:5.460000px;}
.ws68{word-spacing:5.580000px;}
.ws31{word-spacing:6.000000px;}
.ws5d{word-spacing:6.540000px;}
.ws62{word-spacing:965.784130px;}
.wsa8{word-spacing:1496.880000px;}
.ws69{word-spacing:1497.798000px;}
.ws72{word-spacing:1498.014000px;}
.ws8c{word-spacing:1498.554000px;}
.ws1f{word-spacing:1498.608000px;}
.ws9b{word-spacing:1499.202000px;}
.ws51{word-spacing:1500.120000px;}
.wsa3{word-spacing:1500.984000px;}
.wsac{word-spacing:1581.228000px;}
.ws70{word-spacing:1581.714000px;}
.wsa2{word-spacing:1581.876000px;}
.ws3b{word-spacing:1582.038000px;}
.ws96{word-spacing:1582.092000px;}
.ws79{word-spacing:1582.200000px;}
.wsa4{word-spacing:1583.388000px;}
.ws64{word-spacing:1584.144000px;}
.ws60{word-spacing:1594.360366px;}
._c{margin-left:-1583.450400px;}
._a{margin-left:-1581.885000px;}
._d{margin-left:-1580.735400px;}
._10{margin-left:-14.563800px;}
._6{margin-left:-10.140000px;}
._7{margin-left:-7.332000px;}
._5{margin-left:-5.964900px;}
._1{margin-left:-4.809600px;}
._2{margin-left:-3.369600px;}
._0{margin-left:-1.440000px;}
._3{width:1.433400px;}
._4{width:3.060000px;}
._9{width:4.068000px;}
._8{width:5.463600px;}
._b{width:6.564000px;}
._f{width:46.759800px;}
._e{width:52.451400px;}
.fc3{color:rgb(189,188,188);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:22.200000px;}
.fs8{font-size:34.980000px;}
.fs9{font-size:41.400000px;}
.fs7{font-size:42.673200px;}
.fs4{font-size:51.000000px;}
.fs3{font-size:51.600000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:55.800000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:4.028558px;}
.y6d{bottom:63.779700px;}
.y74{bottom:63.784050px;}
.y24{bottom:64.842450px;}
.yb2{bottom:71.366100px;}
.ya1{bottom:71.404800px;}
.y73{bottom:81.179700px;}
.y6c{bottom:81.184050px;}
.y23{bottom:83.442450px;}
.yb1{bottom:88.768200px;}
.ya0{bottom:88.806900px;}
.y66{bottom:98.154000px;}
.y72{bottom:98.579550px;}
.y6b{bottom:98.579700px;}
.y22{bottom:102.042450px;}
.yb0{bottom:106.170300px;}
.y9f{bottom:106.209000px;}
.y6a{bottom:115.984050px;}
.y71{bottom:115.988400px;}
.y21{bottom:120.642450px;}
.yaf{bottom:123.572400px;}
.y9e{bottom:123.611100px;}
.y69{bottom:133.379700px;}
.y70{bottom:133.384050px;}
.ydf{bottom:138.805800px;}
.y20{bottom:139.242450px;}
.yae{bottom:140.974500px;}
.y9d{bottom:141.013200px;}
.y51{bottom:141.574950px;}
.y6f{bottom:150.779700px;}
.y68{bottom:150.784050px;}
.yde{bottom:156.207900px;}
.y1f{bottom:157.842450px;}
.yad{bottom:158.376600px;}
.y9c{bottom:158.415300px;}
.y67{bottom:168.179700px;}
.ydd{bottom:173.610000px;}
.y10a{bottom:173.652000px;}
.yac{bottom:175.778700px;}
.y9b{bottom:175.817400px;}
.y1e{bottom:176.442450px;}
.ydc{bottom:191.012100px;}
.y109{bottom:191.054100px;}
.yab{bottom:193.180800px;}
.y9a{bottom:193.219500px;}
.y1d{bottom:195.042450px;}
.ydb{bottom:208.414200px;}
.y108{bottom:208.456200px;}
.yaa{bottom:210.582900px;}
.y99{bottom:210.621600px;}
.y1c{bottom:213.642450px;}
.yda{bottom:225.816300px;}
.y107{bottom:225.858300px;}
.ya9{bottom:227.985000px;}
.y98{bottom:228.023700px;}
.y1b{bottom:232.242450px;}
.yd9{bottom:243.218400px;}
.y106{bottom:243.260400px;}
.ya8{bottom:245.387100px;}
.y97{bottom:245.425800px;}
.y1a{bottom:250.842450px;}
.yd8{bottom:260.620500px;}
.y105{bottom:260.662500px;}
.ya7{bottom:262.789200px;}
.y96{bottom:262.827900px;}
.y19{bottom:269.442450px;}
.yd7{bottom:278.022600px;}
.y104{bottom:278.064600px;}
.ya6{bottom:280.191300px;}
.y95{bottom:280.230000px;}
.y54{bottom:287.122500px;}
.y18{bottom:288.042450px;}
.yd6{bottom:295.424700px;}
.y103{bottom:295.466700px;}
.ya5{bottom:297.593400px;}
.y94{bottom:297.632100px;}
.y17{bottom:306.642450px;}
.yd5{bottom:312.826800px;}
.y102{bottom:312.868800px;}
.y75{bottom:313.709850px;}
.ya4{bottom:314.995500px;}
.y93{bottom:315.034200px;}
.y16{bottom:325.242450px;}
.yd4{bottom:330.228900px;}
.y101{bottom:330.270900px;}
.ya3{bottom:332.397600px;}
.y92{bottom:332.436300px;}
.y43{bottom:343.842450px;}
.yd3{bottom:347.631000px;}
.y100{bottom:347.673000px;}
.ya2{bottom:349.799700px;}
.y91{bottom:349.838400px;}
.y42{bottom:362.442450px;}
.yd2{bottom:365.033100px;}
.yff{bottom:365.075100px;}
.y41{bottom:381.042450px;}
.yd1{bottom:382.435200px;}
.yfe{bottom:382.477200px;}
.y90{bottom:384.642600px;}
.y15{bottom:384.941700px;}
.y40{bottom:399.642450px;}
.yd0{bottom:399.837300px;}
.yfd{bottom:399.879300px;}
.y14{bottom:402.192450px;}
.ycf{bottom:417.239400px;}
.yfc{bottom:417.281400px;}
.y3f{bottom:418.242450px;}
.y13{bottom:419.442450px;}
.yce{bottom:434.641500px;}
.yfb{bottom:434.683500px;}
.y3e{bottom:436.842450px;}
.y8f{bottom:436.842600px;}
.y47{bottom:446.292450px;}
.ycd{bottom:452.043600px;}
.yfa{bottom:452.085600px;}
.y12{bottom:454.234200px;}
.y3d{bottom:455.442450px;}
.y8e{bottom:455.442600px;}
.y50{bottom:466.618500px;}
.ycc{bottom:469.445700px;}
.yf9{bottom:469.487700px;}
.y11{bottom:471.484950px;}
.y3c{bottom:474.042450px;}
.y8d{bottom:474.042600px;}
.ycb{bottom:486.847800px;}
.yf8{bottom:486.889800px;}
.y10{bottom:488.735700px;}
.y3b{bottom:492.642450px;}
.y8c{bottom:492.642600px;}
.y4e{bottom:498.608790px;}
.y65{bottom:498.619325px;}
.y62{bottom:498.629993px;}
.yca{bottom:504.249900px;}
.yf7{bottom:504.291900px;}
.yf{bottom:505.986450px;}
.y5c{bottom:507.612701px;}
.y3a{bottom:511.242450px;}
.y8b{bottom:511.242600px;}
.y4d{bottom:511.410750px;}
.yc9{bottom:521.652000px;}
.yf6{bottom:521.694000px;}
.ye{bottom:523.237200px;}
.y61{bottom:523.817849px;}
.y4c{bottom:524.212710px;}
.y39{bottom:529.842450px;}
.y8a{bottom:529.842600px;}
.y5b{bottom:533.974071px;}
.y4b{bottom:537.014670px;}
.yc8{bottom:539.054100px;}
.yf5{bottom:539.096100px;}
.yd{bottom:540.487950px;}
.y64{bottom:546.477318px;}
.y5a{bottom:546.776031px;}
.y38{bottom:548.442450px;}
.y89{bottom:548.442600px;}
.y4a{bottom:549.816630px;}
.yc7{bottom:556.456200px;}
.yf4{bottom:556.498200px;}
.yc{bottom:557.738700px;}
.y59{bottom:559.577991px;}
.y49{bottom:562.618590px;}
.y37{bottom:567.042450px;}
.y88{bottom:567.042600px;}
.y58{bottom:572.379951px;}
.yc6{bottom:573.858300px;}
.yf3{bottom:573.873000px;}
.yb{bottom:574.989450px;}
.y48{bottom:575.420550px;}
.y63{bottom:575.591109px;}
.y36{bottom:585.642450px;}
.y87{bottom:585.642600px;}
.y60{bottom:588.393069px;}
.yc5{bottom:591.260400px;}
.yf2{bottom:591.275100px;}
.ya{bottom:592.240200px;}
.y35{bottom:604.242450px;}
.y86{bottom:604.242600px;}
.y53{bottom:608.193450px;}
.yc4{bottom:608.662500px;}
.yf1{bottom:608.677200px;}
.y9{bottom:609.490950px;}
.y34{bottom:622.842450px;}
.y85{bottom:622.842600px;}
.yc3{bottom:626.064600px;}
.yf0{bottom:626.079300px;}
.y8{bottom:626.741700px;}
.y33{bottom:641.442450px;}
.y84{bottom:641.442600px;}
.yc2{bottom:643.466700px;}
.yef{bottom:643.481400px;}
.y7{bottom:643.992450px;}
.y57{bottom:652.541557px;}
.y32{bottom:660.042450px;}
.y83{bottom:660.042600px;}
.yc1{bottom:660.868800px;}
.yee{bottom:660.883500px;}
.y6{bottom:661.242450px;}
.y5f{bottom:665.087478px;}
.y56{bottom:665.343517px;}
.y4f{bottom:665.343651px;}
.y5e{bottom:677.889438px;}
.yc0{bottom:678.270900px;}
.yed{bottom:678.285600px;}
.y31{bottom:678.642450px;}
.y82{bottom:678.642600px;}
.y5d{bottom:690.691398px;}
.ybf{bottom:695.673000px;}
.yec{bottom:695.687700px;}
.y30{bottom:697.242450px;}
.y81{bottom:697.242600px;}
.ybe{bottom:713.075100px;}
.yeb{bottom:713.089800px;}
.y2f{bottom:715.842450px;}
.y80{bottom:715.842600px;}
.ybd{bottom:730.477200px;}
.yea{bottom:730.491900px;}
.y2e{bottom:734.442450px;}
.y7f{bottom:734.442600px;}
.y55{bottom:738.496050px;}
.ybc{bottom:747.879300px;}
.ye9{bottom:747.894000px;}
.y2d{bottom:753.042450px;}
.y7e{bottom:753.042600px;}
.y5{bottom:764.449800px;}
.ybb{bottom:765.281400px;}
.ye8{bottom:765.296100px;}
.y2c{bottom:771.642450px;}
.y7d{bottom:771.642600px;}
.y4{bottom:782.445300px;}
.yba{bottom:782.683500px;}
.ye7{bottom:782.698200px;}
.y46{bottom:790.242450px;}
.y7c{bottom:790.242600px;}
.ye6{bottom:799.995300px;}
.yb9{bottom:800.085600px;}
.y2b{bottom:808.842450px;}
.y7b{bottom:808.842600px;}
.ye5{bottom:817.397400px;}
.yb8{bottom:817.487700px;}
.y3{bottom:818.445300px;}
.y2a{bottom:827.442450px;}
.y7a{bottom:827.442600px;}
.ye4{bottom:834.799500px;}
.yb7{bottom:834.889800px;}
.y45{bottom:846.042450px;}
.y79{bottom:846.042600px;}
.ye3{bottom:852.201600px;}
.yb6{bottom:852.291900px;}
.y26{bottom:857.391000px;}
.y44{bottom:864.642450px;}
.y78{bottom:864.642600px;}
.y25{bottom:864.889050px;}
.y2{bottom:865.453200px;}
.ye2{bottom:869.603700px;}
.yb5{bottom:869.694000px;}
.y29{bottom:883.242450px;}
.y77{bottom:883.242600px;}
.ye1{bottom:887.005800px;}
.yb4{bottom:887.096100px;}
.y1{bottom:895.453200px;}
.y28{bottom:901.842450px;}
.y76{bottom:901.842600px;}
.ye0{bottom:904.407900px;}
.yb3{bottom:904.498200px;}
.y6e{bottom:904.610700px;}
.y27{bottom:955.942350px;}
.h9{height:20.823600px;}
.hd{height:32.687671px;}
.h7{height:45.900000px;}
.h12{height:46.078800px;}
.h11{height:46.233600px;}
.h14{height:46.334400px;}
.hc{height:46.563000px;}
.h6{height:46.614000px;}
.h13{height:46.645800px;}
.h10{height:47.110800px;}
.h5{height:48.762000px;}
.hf{height:49.996800px;}
.h4{height:50.868000px;}
.h8{height:54.000000px;}
.hb{height:54.840000px;}
.ha{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.he{height:296.023500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:543.822000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x3{left:25.966350px;}
.x2{left:28.835700px;}
.x1{left:72.283500px;}
.x4{left:80.787450px;}
.x17{left:85.039350px;}
.x8{left:93.543300px;}
.x5{left:102.042450px;}
.x9{left:177.706050px;}
.xa{left:256.192733px;}
.xd{left:264.337650px;}
.xb{left:265.543155px;}
.x11{left:311.538150px;}
.xc{left:320.287950px;}
.x13{left:342.720450px;}
.x18{left:353.294850px;}
.x14{left:357.033000px;}
.x15{left:361.839750px;}
.x19{left:366.040050px;}
.x12{left:368.433000px;}
.x16{left:374.584950px;}
.xe{left:377.363416px;}
.xf{left:378.888983px;}
.x10{left:458.143784px;}
.x7{left:651.643500px;}
.x6{left:654.512850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls33{letter-spacing:-3.626667pt;}
.ls39{letter-spacing:-2.522667pt;}
.ls18{letter-spacing:-2.016000pt;}
.ls1d{letter-spacing:-1.968000pt;}
.ls2e{letter-spacing:-1.824000pt;}
.ls27{letter-spacing:-0.758635pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.453333pt;}
.ls22{letter-spacing:-0.373333pt;}
.ls21{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.181333pt;}
.ls1b{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.136000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.133333pt;}
.ls2d{letter-spacing:0.148800pt;}
.lse{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.186667pt;}
.ls10{letter-spacing:0.197333pt;}
.ls1{letter-spacing:0.204000pt;}
.ls4{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.226667pt;}
.ls2b{letter-spacing:0.240000pt;}
.ls2c{letter-spacing:0.248000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.296000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.347733pt;}
.ls6{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.400000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.496000pt;}
.ls28{letter-spacing:0.506667pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.693333pt;}
.ls1e{letter-spacing:0.720000pt;}
.ls34{letter-spacing:0.746667pt;}
.ls37{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.917333pt;}
.ls36{letter-spacing:1.013333pt;}
.ls19{letter-spacing:1.066667pt;}
.ls17{letter-spacing:1.584000pt;}
.ls32{letter-spacing:1.696000pt;}
.ls8{letter-spacing:2.064000pt;}
.ls38{letter-spacing:2.522667pt;}
.ls16{letter-spacing:3.061333pt;}
.wsa6{word-spacing:-12.659200pt;}
.ws1{word-spacing:-12.200533pt;}
.ws0{word-spacing:-11.376000pt;}
.ws8a{word-spacing:-10.400000pt;}
.ws8b{word-spacing:-10.240000pt;}
.ws71{word-spacing:-10.080000pt;}
.ws99{word-spacing:-9.973333pt;}
.ws95{word-spacing:-9.920000pt;}
.wsa7{word-spacing:-9.861333pt;}
.wsa1{word-spacing:-9.552000pt;}
.ws3a{word-spacing:-9.408000pt;}
.ws5f{word-spacing:-7.927732pt;}
.ws78{word-spacing:-7.912000pt;}
.ws63{word-spacing:-7.169098pt;}
.ws9a{word-spacing:-6.498507pt;}
.ws82{word-spacing:-2.453333pt;}
.ws98{word-spacing:-2.240000pt;}
.ws37{word-spacing:-1.866667pt;}
.ws16{word-spacing:-1.813333pt;}
.ws5c{word-spacing:-1.760000pt;}
.ws14{word-spacing:-1.706667pt;}
.ws1c{word-spacing:-1.653333pt;}
.ws5a{word-spacing:-1.600000pt;}
.ws86{word-spacing:-1.587200pt;}
.ws1e{word-spacing:-1.584000pt;}
.ws66{word-spacing:-1.546667pt;}
.ws52{word-spacing:-1.493333pt;}
.wsf{word-spacing:-1.450667pt;}
.ws6d{word-spacing:-1.440000pt;}
.wsd{word-spacing:-1.405333pt;}
.ws5b{word-spacing:-1.386667pt;}
.ws4a{word-spacing:-1.333333pt;}
.ws8d{word-spacing:-1.226667pt;}
.ws27{word-spacing:-1.173333pt;}
.ws2b{word-spacing:-1.120000pt;}
.ws22{word-spacing:-1.066667pt;}
.ws7{word-spacing:-1.042667pt;}
.ws33{word-spacing:-1.013333pt;}
.ws84{word-spacing:-0.992000pt;}
.ws4e{word-spacing:-0.960000pt;}
.wse{word-spacing:-0.917333pt;}
.ws7c{word-spacing:-0.906667pt;}
.wsb{word-spacing:-0.861333pt;}
.ws3e{word-spacing:-0.853333pt;}
.ws6{word-spacing:-0.770667pt;}
.ws34{word-spacing:-0.746667pt;}
.ws29{word-spacing:-0.693333pt;}
.wsae{word-spacing:-0.642133pt;}
.ws45{word-spacing:-0.640000pt;}
.ws5{word-spacing:-0.589333pt;}
.ws81{word-spacing:-0.586667pt;}
.ws80{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.498667pt;}
.ws55{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.426667pt;}
.wsab{word-spacing:-0.412800pt;}
.ws2c{word-spacing:-0.320000pt;}
.ws2{word-spacing:-0.315733pt;}
.ws7b{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.229333pt;}
.ws21{word-spacing:-0.213333pt;}
.ws89{word-spacing:-0.198400pt;}
.ws1d{word-spacing:-0.197333pt;}
.wsaa{word-spacing:-0.183467pt;}
.ws4{word-spacing:-0.181333pt;}
.ws40{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.053333pt;}
.ws61{word-spacing:-0.037932pt;}
.ws3{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.049600pt;}
.ws67{word-spacing:0.053333pt;}
.ws85{word-spacing:0.099200pt;}
.ws23{word-spacing:0.106667pt;}
.ws57{word-spacing:0.160000pt;}
.ws56{word-spacing:0.213333pt;}
.ws92{word-spacing:0.266667pt;}
.ws75{word-spacing:0.320000pt;}
.ws39{word-spacing:0.373333pt;}
.ws90{word-spacing:0.426667pt;}
.ws44{word-spacing:0.480000pt;}
.ws6a{word-spacing:0.533333pt;}
.ws36{word-spacing:0.586667pt;}
.ws5e{word-spacing:0.640000pt;}
.ws50{word-spacing:0.693333pt;}
.ws74{word-spacing:0.746667pt;}
.ws49{word-spacing:0.800000pt;}
.ws97{word-spacing:0.853333pt;}
.ws88{word-spacing:0.992000pt;}
.ws12{word-spacing:1.013333pt;}
.ws59{word-spacing:1.066667pt;}
.ws1b{word-spacing:1.120000pt;}
.ws73{word-spacing:1.173333pt;}
.ws87{word-spacing:1.190400pt;}
.ws47{word-spacing:1.226667pt;}
.ws26{word-spacing:1.280000pt;}
.ws38{word-spacing:1.333333pt;}
.ws7e{word-spacing:1.386667pt;}
.ws3f{word-spacing:1.440000pt;}
.ws42{word-spacing:1.493333pt;}
.wsa{word-spacing:1.541333pt;}
.ws25{word-spacing:1.546667pt;}
.ws7d{word-spacing:1.600000pt;}
.ws8{word-spacing:1.632000pt;}
.wsa0{word-spacing:1.636800pt;}
.ws11{word-spacing:1.653333pt;}
.ws17{word-spacing:1.706667pt;}
.ws2a{word-spacing:1.760000pt;}
.ws9{word-spacing:1.813333pt;}
.ws4f{word-spacing:1.866667pt;}
.ws3d{word-spacing:1.920000pt;}
.ws65{word-spacing:1.973333pt;}
.ws54{word-spacing:2.026667pt;}
.ws9e{word-spacing:2.033600pt;}
.ws41{word-spacing:2.080000pt;}
.ws24{word-spacing:2.133333pt;}
.ws19{word-spacing:2.186667pt;}
.ws46{word-spacing:2.240000pt;}
.ws7f{word-spacing:2.293333pt;}
.wsaf{word-spacing:2.339200pt;}
.ws4b{word-spacing:2.346667pt;}
.ws2d{word-spacing:2.400000pt;}
.ws15{word-spacing:2.453333pt;}
.ws18{word-spacing:2.506667pt;}
.ws35{word-spacing:2.560000pt;}
.ws6e{word-spacing:2.613333pt;}
.ws10{word-spacing:2.666667pt;}
.ws9c{word-spacing:2.720000pt;}
.wsa5{word-spacing:2.773333pt;}
.ws1a{word-spacing:2.826667pt;}
.ws48{word-spacing:2.880000pt;}
.ws6c{word-spacing:2.933333pt;}
.ws2f{word-spacing:2.986667pt;}
.ws4d{word-spacing:3.040000pt;}
.ws20{word-spacing:3.146667pt;}
.ws94{word-spacing:3.200000pt;}
.ws6f{word-spacing:3.253333pt;}
.ws4c{word-spacing:3.306667pt;}
.ws8e{word-spacing:3.413333pt;}
.ws7a{word-spacing:3.466667pt;}
.ws28{word-spacing:3.573333pt;}
.ws2e{word-spacing:3.626667pt;}
.ws77{word-spacing:3.680000pt;}
.ws3c{word-spacing:3.733333pt;}
.ws83{word-spacing:3.918400pt;}
.ws9d{word-spacing:3.968000pt;}
.ws32{word-spacing:4.000000pt;}
.ws6b{word-spacing:4.053333pt;}
.ws53{word-spacing:4.106667pt;}
.ws91{word-spacing:4.266667pt;}
.ws93{word-spacing:4.426667pt;}
.ws76{word-spacing:4.533333pt;}
.wsa9{word-spacing:4.586667pt;}
.ws58{word-spacing:4.640000pt;}
.ws8f{word-spacing:4.693333pt;}
.ws30{word-spacing:4.853333pt;}
.ws68{word-spacing:4.960000pt;}
.ws31{word-spacing:5.333333pt;}
.ws5d{word-spacing:5.813333pt;}
.ws62{word-spacing:858.474782pt;}
.wsa8{word-spacing:1330.560000pt;}
.ws69{word-spacing:1331.376000pt;}
.ws72{word-spacing:1331.568000pt;}
.ws8c{word-spacing:1332.048000pt;}
.ws1f{word-spacing:1332.096000pt;}
.ws9b{word-spacing:1332.624000pt;}
.ws51{word-spacing:1333.440000pt;}
.wsa3{word-spacing:1334.208000pt;}
.wsac{word-spacing:1405.536000pt;}
.ws70{word-spacing:1405.968000pt;}
.wsa2{word-spacing:1406.112000pt;}
.ws3b{word-spacing:1406.256000pt;}
.ws96{word-spacing:1406.304000pt;}
.ws79{word-spacing:1406.400000pt;}
.wsa4{word-spacing:1407.456000pt;}
.ws64{word-spacing:1408.128000pt;}
.ws60{word-spacing:1417.209214pt;}
._c{margin-left:-1407.511467pt;}
._a{margin-left:-1406.120000pt;}
._d{margin-left:-1405.098133pt;}
._10{margin-left:-12.945600pt;}
._6{margin-left:-9.013333pt;}
._7{margin-left:-6.517333pt;}
._5{margin-left:-5.302133pt;}
._1{margin-left:-4.275200pt;}
._2{margin-left:-2.995200pt;}
._0{margin-left:-1.280000pt;}
._3{width:1.274133pt;}
._4{width:2.720000pt;}
._9{width:3.616000pt;}
._8{width:4.856533pt;}
._b{width:5.834667pt;}
._f{width:41.564267pt;}
._e{width:46.623467pt;}
.fs6{font-size:19.733333pt;}
.fs8{font-size:31.093333pt;}
.fs9{font-size:36.800000pt;}
.fs7{font-size:37.931733pt;}
.fs4{font-size:45.333333pt;}
.fs3{font-size:45.866667pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:49.600000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:3.580941pt;}
.y6d{bottom:56.693067pt;}
.y74{bottom:56.696933pt;}
.y24{bottom:57.637733pt;}
.yb2{bottom:63.436533pt;}
.ya1{bottom:63.470933pt;}
.y73{bottom:72.159733pt;}
.y6c{bottom:72.163600pt;}
.y23{bottom:74.171067pt;}
.yb1{bottom:78.905067pt;}
.ya0{bottom:78.939467pt;}
.y66{bottom:87.248000pt;}
.y72{bottom:87.626267pt;}
.y6b{bottom:87.626400pt;}
.y22{bottom:90.704400pt;}
.yb0{bottom:94.373600pt;}
.y9f{bottom:94.408000pt;}
.y6a{bottom:103.096933pt;}
.y71{bottom:103.100800pt;}
.y21{bottom:107.237733pt;}
.yaf{bottom:109.842133pt;}
.y9e{bottom:109.876533pt;}
.y69{bottom:118.559733pt;}
.y70{bottom:118.563600pt;}
.ydf{bottom:123.382933pt;}
.y20{bottom:123.771067pt;}
.yae{bottom:125.310667pt;}
.y9d{bottom:125.345067pt;}
.y51{bottom:125.844400pt;}
.y6f{bottom:134.026400pt;}
.y68{bottom:134.030267pt;}
.yde{bottom:138.851467pt;}
.y1f{bottom:140.304400pt;}
.yad{bottom:140.779200pt;}
.y9c{bottom:140.813600pt;}
.y67{bottom:149.493067pt;}
.ydd{bottom:154.320000pt;}
.y10a{bottom:154.357333pt;}
.yac{bottom:156.247733pt;}
.y9b{bottom:156.282133pt;}
.y1e{bottom:156.837733pt;}
.ydc{bottom:169.788533pt;}
.y109{bottom:169.825867pt;}
.yab{bottom:171.716267pt;}
.y9a{bottom:171.750667pt;}
.y1d{bottom:173.371067pt;}
.ydb{bottom:185.257067pt;}
.y108{bottom:185.294400pt;}
.yaa{bottom:187.184800pt;}
.y99{bottom:187.219200pt;}
.y1c{bottom:189.904400pt;}
.yda{bottom:200.725600pt;}
.y107{bottom:200.762933pt;}
.ya9{bottom:202.653333pt;}
.y98{bottom:202.687733pt;}
.y1b{bottom:206.437733pt;}
.yd9{bottom:216.194133pt;}
.y106{bottom:216.231467pt;}
.ya8{bottom:218.121867pt;}
.y97{bottom:218.156267pt;}
.y1a{bottom:222.971067pt;}
.yd8{bottom:231.662667pt;}
.y105{bottom:231.700000pt;}
.ya7{bottom:233.590400pt;}
.y96{bottom:233.624800pt;}
.y19{bottom:239.504400pt;}
.yd7{bottom:247.131200pt;}
.y104{bottom:247.168533pt;}
.ya6{bottom:249.058933pt;}
.y95{bottom:249.093333pt;}
.y54{bottom:255.220000pt;}
.y18{bottom:256.037733pt;}
.yd6{bottom:262.599733pt;}
.y103{bottom:262.637067pt;}
.ya5{bottom:264.527467pt;}
.y94{bottom:264.561867pt;}
.y17{bottom:272.571067pt;}
.yd5{bottom:278.068267pt;}
.y102{bottom:278.105600pt;}
.y75{bottom:278.853200pt;}
.ya4{bottom:279.996000pt;}
.y93{bottom:280.030400pt;}
.y16{bottom:289.104400pt;}
.yd4{bottom:293.536800pt;}
.y101{bottom:293.574133pt;}
.ya3{bottom:295.464533pt;}
.y92{bottom:295.498933pt;}
.y43{bottom:305.637733pt;}
.yd3{bottom:309.005333pt;}
.y100{bottom:309.042667pt;}
.ya2{bottom:310.933067pt;}
.y91{bottom:310.967467pt;}
.y42{bottom:322.171067pt;}
.yd2{bottom:324.473867pt;}
.yff{bottom:324.511200pt;}
.y41{bottom:338.704400pt;}
.yd1{bottom:339.942400pt;}
.yfe{bottom:339.979733pt;}
.y90{bottom:341.904533pt;}
.y15{bottom:342.170400pt;}
.y40{bottom:355.237733pt;}
.yd0{bottom:355.410933pt;}
.yfd{bottom:355.448267pt;}
.y14{bottom:357.504400pt;}
.ycf{bottom:370.879467pt;}
.yfc{bottom:370.916800pt;}
.y3f{bottom:371.771067pt;}
.y13{bottom:372.837733pt;}
.yce{bottom:386.348000pt;}
.yfb{bottom:386.385333pt;}
.y3e{bottom:388.304400pt;}
.y8f{bottom:388.304533pt;}
.y47{bottom:396.704400pt;}
.ycd{bottom:401.816533pt;}
.yfa{bottom:401.853867pt;}
.y12{bottom:403.763733pt;}
.y3d{bottom:404.837733pt;}
.y8e{bottom:404.837867pt;}
.y50{bottom:414.772000pt;}
.ycc{bottom:417.285067pt;}
.yf9{bottom:417.322400pt;}
.y11{bottom:419.097733pt;}
.y3c{bottom:421.371067pt;}
.y8d{bottom:421.371200pt;}
.ycb{bottom:432.753600pt;}
.yf8{bottom:432.790933pt;}
.y10{bottom:434.431733pt;}
.y3b{bottom:437.904400pt;}
.y8c{bottom:437.904533pt;}
.y4e{bottom:443.207813pt;}
.y65{bottom:443.217177pt;}
.y62{bottom:443.226660pt;}
.yca{bottom:448.222133pt;}
.yf7{bottom:448.259467pt;}
.yf{bottom:449.765733pt;}
.y5c{bottom:451.211290pt;}
.y3a{bottom:454.437733pt;}
.y8b{bottom:454.437867pt;}
.y4d{bottom:454.587333pt;}
.yc9{bottom:463.690667pt;}
.yf6{bottom:463.728000pt;}
.ye{bottom:465.099733pt;}
.y61{bottom:465.615866pt;}
.y4c{bottom:465.966853pt;}
.y39{bottom:470.971067pt;}
.y8a{bottom:470.971200pt;}
.y5b{bottom:474.643618pt;}
.y4b{bottom:477.346373pt;}
.yc8{bottom:479.159200pt;}
.yf5{bottom:479.196533pt;}
.yd{bottom:480.433733pt;}
.y64{bottom:485.757616pt;}
.y5a{bottom:486.023138pt;}
.y38{bottom:487.504400pt;}
.y89{bottom:487.504533pt;}
.y4a{bottom:488.725893pt;}
.yc7{bottom:494.627733pt;}
.yf4{bottom:494.665067pt;}
.yc{bottom:495.767733pt;}
.y59{bottom:497.402658pt;}
.y49{bottom:500.105413pt;}
.y37{bottom:504.037733pt;}
.y88{bottom:504.037867pt;}
.y58{bottom:508.782178pt;}
.yc6{bottom:510.096267pt;}
.yf3{bottom:510.109333pt;}
.yb{bottom:511.101733pt;}
.y48{bottom:511.484933pt;}
.y63{bottom:511.636541pt;}
.y36{bottom:520.571067pt;}
.y87{bottom:520.571200pt;}
.y60{bottom:523.016061pt;}
.yc5{bottom:525.564800pt;}
.yf2{bottom:525.577867pt;}
.ya{bottom:526.435733pt;}
.y35{bottom:537.104400pt;}
.y86{bottom:537.104533pt;}
.y53{bottom:540.616400pt;}
.yc4{bottom:541.033333pt;}
.yf1{bottom:541.046400pt;}
.y9{bottom:541.769733pt;}
.y34{bottom:553.637733pt;}
.y85{bottom:553.637867pt;}
.yc3{bottom:556.501867pt;}
.yf0{bottom:556.514933pt;}
.y8{bottom:557.103733pt;}
.y33{bottom:570.171067pt;}
.y84{bottom:570.171200pt;}
.yc2{bottom:571.970400pt;}
.yef{bottom:571.983467pt;}
.y7{bottom:572.437733pt;}
.y57{bottom:580.036939pt;}
.y32{bottom:586.704400pt;}
.y83{bottom:586.704533pt;}
.yc1{bottom:587.438933pt;}
.yee{bottom:587.452000pt;}
.y6{bottom:587.771067pt;}
.y5f{bottom:591.188869pt;}
.y56{bottom:591.416459pt;}
.y4f{bottom:591.416578pt;}
.y5e{bottom:602.568389pt;}
.yc0{bottom:602.907467pt;}
.yed{bottom:602.920533pt;}
.y31{bottom:603.237733pt;}
.y82{bottom:603.237867pt;}
.y5d{bottom:613.947909pt;}
.ybf{bottom:618.376000pt;}
.yec{bottom:618.389067pt;}
.y30{bottom:619.771067pt;}
.y81{bottom:619.771200pt;}
.ybe{bottom:633.844533pt;}
.yeb{bottom:633.857600pt;}
.y2f{bottom:636.304400pt;}
.y80{bottom:636.304533pt;}
.ybd{bottom:649.313067pt;}
.yea{bottom:649.326133pt;}
.y2e{bottom:652.837733pt;}
.y7f{bottom:652.837867pt;}
.y55{bottom:656.440933pt;}
.ybc{bottom:664.781600pt;}
.ye9{bottom:664.794667pt;}
.y2d{bottom:669.371067pt;}
.y7e{bottom:669.371200pt;}
.y5{bottom:679.510933pt;}
.ybb{bottom:680.250133pt;}
.ye8{bottom:680.263200pt;}
.y2c{bottom:685.904400pt;}
.y7d{bottom:685.904533pt;}
.y4{bottom:695.506933pt;}
.yba{bottom:695.718667pt;}
.ye7{bottom:695.731733pt;}
.y46{bottom:702.437733pt;}
.y7c{bottom:702.437867pt;}
.ye6{bottom:711.106933pt;}
.yb9{bottom:711.187200pt;}
.y2b{bottom:718.971067pt;}
.y7b{bottom:718.971200pt;}
.ye5{bottom:726.575467pt;}
.yb8{bottom:726.655733pt;}
.y3{bottom:727.506933pt;}
.y2a{bottom:735.504400pt;}
.y7a{bottom:735.504533pt;}
.ye4{bottom:742.044000pt;}
.yb7{bottom:742.124267pt;}
.y45{bottom:752.037733pt;}
.y79{bottom:752.037867pt;}
.ye3{bottom:757.512533pt;}
.yb6{bottom:757.592800pt;}
.y26{bottom:762.125333pt;}
.y44{bottom:768.571067pt;}
.y78{bottom:768.571200pt;}
.y25{bottom:768.790267pt;}
.y2{bottom:769.291733pt;}
.ye2{bottom:772.981067pt;}
.yb5{bottom:773.061333pt;}
.y29{bottom:785.104400pt;}
.y77{bottom:785.104533pt;}
.ye1{bottom:788.449600pt;}
.yb4{bottom:788.529867pt;}
.y1{bottom:795.958400pt;}
.y28{bottom:801.637733pt;}
.y76{bottom:801.637867pt;}
.ye0{bottom:803.918133pt;}
.yb3{bottom:803.998400pt;}
.y6e{bottom:804.098400pt;}
.y27{bottom:849.726533pt;}
.h9{height:18.509867pt;}
.hd{height:29.055708pt;}
.h7{height:40.800000pt;}
.h12{height:40.958933pt;}
.h11{height:41.096533pt;}
.h14{height:41.186133pt;}
.hc{height:41.389333pt;}
.h6{height:41.434667pt;}
.h13{height:41.462933pt;}
.h10{height:41.876267pt;}
.h5{height:43.344000pt;}
.hf{height:44.441600pt;}
.h4{height:45.216000pt;}
.h8{height:48.000000pt;}
.hb{height:48.746667pt;}
.ha{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.he{height:263.132000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:483.397333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x3{left:23.081200pt;}
.x2{left:25.631733pt;}
.x1{left:64.252000pt;}
.x4{left:71.811067pt;}
.x17{left:75.590533pt;}
.x8{left:83.149600pt;}
.x5{left:90.704400pt;}
.x9{left:157.960933pt;}
.xa{left:227.726874pt;}
.xd{left:234.966800pt;}
.xb{left:236.038360pt;}
.x11{left:276.922800pt;}
.xc{left:284.700400pt;}
.x13{left:304.640400pt;}
.x18{left:314.039867pt;}
.x14{left:317.362667pt;}
.x15{left:321.635333pt;}
.x19{left:325.368933pt;}
.x12{left:327.496000pt;}
.x16{left:332.964400pt;}
.xe{left:335.434148pt;}
.xf{left:336.790207pt;}
.x10{left:407.238919pt;}
.x7{left:579.238667pt;}
.x6{left:581.789200pt;}
}




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