
    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_7ebc5e6d6e3629cfed8ecefa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_825b2a3578ca83eae1bbaf59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_6c2b22a1386033a7631f7be5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.102000;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_a062ac8d46968f445888decd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.745000;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_a298f09073170633843df03f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.745000;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_5f3b15f13032a2ef85ec8fab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934000;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_87c10d15d1b45cf14f713c7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_0dd1baf38c325d6745219259.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090200;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_b47107d95ad117e4fb0b0d78.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102000;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_750328bc14fad79856c79375.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986000;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_1b00e621bb8e84e99d600b0b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971000;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_57972b6b9466b1e3ee171837.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.164000;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_f5c4e5964a50577a509f050a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.251000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c3bd434b835dd8e9b35a68b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.238000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e4861c8617f8baf5621507ed.woff2')format("woff");}.fff{font-family:fff;line-height:1.176000;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:ff10;src:url('chunks/assets/font_8209f0b65a6b30346a66943c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.131000;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:ff11;src:url('chunks/assets/font_badb7ea3fc30384683b456fb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.008000;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:ff12;src:url('chunks/assets/font_4d18a397b9947e1df8ec433c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.809000;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:ff13;src:url('chunks/assets/font_9edd0de3a3ab162ee225e7fd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.971000;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:ff14;src:url('chunks/assets/font_4dba01f9d979923a6d5133db.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.969053;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.v2{vertical-align:36.000000px;}
.v3{vertical-align:48.661200px;}
.lsc{letter-spacing:-1.428000px;}
.ls5{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.714000px;}
.lsb{letter-spacing:-0.561000px;}
.ls8{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.255000px;}
.lsd{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.918000px;}
.ls0{letter-spacing:5.459400px;}
.ls1{letter-spacing:5.460000px;}
.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;}
}
.ws1{word-spacing:-24.000000px;}
.ws0{word-spacing:-15.498000px;}
.wsb{word-spacing:-12.798000px;}
.ws8f{word-spacing:-12.690000px;}
.wsc0{word-spacing:-11.376000px;}
.ws2{word-spacing:-10.800000px;}
.ws7d{word-spacing:-10.200000px;}
.ws8e{word-spacing:-9.894000px;}
.ws75{word-spacing:-9.600000px;}
.wsa{word-spacing:-8.400000px;}
.ws52{word-spacing:-7.461234px;}
.ws84{word-spacing:-5.022000px;}
.wsb7{word-spacing:-4.752000px;}
.ws54{word-spacing:-4.428000px;}
.ws10{word-spacing:-3.726000px;}
.wsc4{word-spacing:-3.564000px;}
.ws44{word-spacing:-3.294000px;}
.ws27{word-spacing:-3.240000px;}
.ws92{word-spacing:-3.132000px;}
.ws2f{word-spacing:-3.078000px;}
.wsaa{word-spacing:-2.700000px;}
.wsac{word-spacing:-2.538000px;}
.ws64{word-spacing:-2.484000px;}
.ws15{word-spacing:-2.376000px;}
.wsc5{word-spacing:-2.322000px;}
.ws62{word-spacing:-2.268000px;}
.ws6e{word-spacing:-2.214000px;}
.ws93{word-spacing:-2.160000px;}
.ws88{word-spacing:-2.106000px;}
.wsbd{word-spacing:-1.890000px;}
.wsbe{word-spacing:-1.836000px;}
.wsad{word-spacing:-1.782000px;}
.ws96{word-spacing:-1.458000px;}
.ws40{word-spacing:-1.404000px;}
.ws5{word-spacing:-1.350000px;}
.wsaf{word-spacing:-1.296000px;}
.ws4c{word-spacing:-1.134000px;}
.ws9b{word-spacing:-1.080000px;}
.ws8b{word-spacing:-1.026000px;}
.ws4f{word-spacing:-0.918000px;}
.ws32{word-spacing:-0.864000px;}
.ws61{word-spacing:-0.810000px;}
.ws46{word-spacing:-0.648000px;}
.ws24{word-spacing:-0.594000px;}
.ws41{word-spacing:-0.540000px;}
.ws58{word-spacing:-0.486000px;}
.wsa6{word-spacing:-0.378000px;}
.ws70{word-spacing:-0.270000px;}
.ws60{word-spacing:-0.216000px;}
.ws90{word-spacing:-0.204000px;}
.ws16{word-spacing:-0.108000px;}
.ws1c{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws91{word-spacing:0.108000px;}
.ws2b{word-spacing:0.162000px;}
.ws95{word-spacing:0.216000px;}
.ws34{word-spacing:0.270000px;}
.ws4{word-spacing:0.324000px;}
.ws63{word-spacing:0.480000px;}
.ws56{word-spacing:0.540000px;}
.ws7f{word-spacing:0.561000px;}
.ws5c{word-spacing:0.648000px;}
.wsa8{word-spacing:0.702000px;}
.ws7e{word-spacing:0.714000px;}
.wsb5{word-spacing:0.756000px;}
.ws7{word-spacing:0.810000px;}
.wsc{word-spacing:0.840000px;}
.wsb1{word-spacing:0.918000px;}
.ws13{word-spacing:1.026000px;}
.ws5b{word-spacing:1.080000px;}
.wsa3{word-spacing:1.134000px;}
.ws4e{word-spacing:1.242000px;}
.ws9a{word-spacing:1.296000px;}
.ws3a{word-spacing:1.350000px;}
.ws94{word-spacing:1.404000px;}
.ws80{word-spacing:1.428000px;}
.ws65{word-spacing:1.458000px;}
.wsa2{word-spacing:1.512000px;}
.wsa4{word-spacing:1.620000px;}
.ws8c{word-spacing:1.674000px;}
.wsd{word-spacing:1.728000px;}
.ws55{word-spacing:1.836000px;}
.ws14{word-spacing:1.890000px;}
.wsb2{word-spacing:1.944000px;}
.wsb0{word-spacing:1.998000px;}
.ws33{word-spacing:2.052000px;}
.ws4b{word-spacing:2.160000px;}
.ws50{word-spacing:2.268000px;}
.ws8{word-spacing:2.376000px;}
.ws43{word-spacing:2.430000px;}
.wsa5{word-spacing:2.484000px;}
.wsa0{word-spacing:2.592000px;}
.wsb6{word-spacing:2.646000px;}
.ws71{word-spacing:2.700000px;}
.ws73{word-spacing:2.754000px;}
.ws6{word-spacing:2.862000px;}
.ws83{word-spacing:3.024000px;}
.wsb8{word-spacing:3.078000px;}
.ws1a{word-spacing:3.132000px;}
.ws85{word-spacing:3.294000px;}
.wsae{word-spacing:3.348000px;}
.wsab{word-spacing:3.456000px;}
.ws72{word-spacing:3.510000px;}
.ws51{word-spacing:3.618000px;}
.ws12{word-spacing:3.672000px;}
.ws1d{word-spacing:3.726000px;}
.ws2c{word-spacing:3.780000px;}
.ws4d{word-spacing:3.888000px;}
.wsa9{word-spacing:3.942000px;}
.ws6b{word-spacing:4.158000px;}
.ws57{word-spacing:4.266000px;}
.ws19{word-spacing:4.320000px;}
.ws66{word-spacing:4.374000px;}
.wsc3{word-spacing:4.482000px;}
.ws6a{word-spacing:4.590000px;}
.ws6f{word-spacing:4.752000px;}
.ws42{word-spacing:4.914000px;}
.wsb4{word-spacing:5.022000px;}
.ws38{word-spacing:5.184000px;}
.wsb9{word-spacing:5.238000px;}
.ws5f{word-spacing:5.508000px;}
.ws28{word-spacing:5.670000px;}
.wsbb{word-spacing:5.724000px;}
.ws5d{word-spacing:5.832000px;}
.wsa7{word-spacing:6.048000px;}
.ws39{word-spacing:6.102000px;}
.ws4a{word-spacing:6.156000px;}
.ws9d{word-spacing:6.210000px;}
.ws45{word-spacing:6.264000px;}
.ws2a{word-spacing:6.426000px;}
.ws31{word-spacing:6.480000px;}
.ws2e{word-spacing:6.588000px;}
.ws26{word-spacing:6.642000px;}
.ws37{word-spacing:6.696000px;}
.ws29{word-spacing:6.804000px;}
.ws86{word-spacing:6.858000px;}
.wse{word-spacing:6.912000px;}
.ws67{word-spacing:6.966000px;}
.ws1e{word-spacing:7.020000px;}
.ws3d{word-spacing:7.074000px;}
.wsba{word-spacing:7.128000px;}
.ws20{word-spacing:7.290000px;}
.ws47{word-spacing:7.398000px;}
.ws82{word-spacing:7.452000px;}
.ws6d{word-spacing:7.506000px;}
.ws3f{word-spacing:7.614000px;}
.ws3c{word-spacing:7.830000px;}
.wsc2{word-spacing:8.100000px;}
.ws68{word-spacing:8.208000px;}
.ws17{word-spacing:8.262000px;}
.ws9c{word-spacing:8.424000px;}
.wsb3{word-spacing:8.478000px;}
.ws5a{word-spacing:8.532000px;}
.ws21{word-spacing:8.586000px;}
.ws1b{word-spacing:8.640000px;}
.wsbc{word-spacing:8.748000px;}
.ws11{word-spacing:8.802000px;}
.ws18{word-spacing:8.856000px;}
.ws3e{word-spacing:9.126000px;}
.ws69{word-spacing:9.450000px;}
.ws2d{word-spacing:9.612000px;}
.ws3b{word-spacing:9.828000px;}
.ws35{word-spacing:9.882000px;}
.ws9e{word-spacing:9.936000px;}
.ws53{word-spacing:10.044000px;}
.ws30{word-spacing:10.098000px;}
.ws23{word-spacing:10.314000px;}
.ws59{word-spacing:10.692000px;}
.ws22{word-spacing:11.232000px;}
.ws5e{word-spacing:11.394000px;}
.wsbf{word-spacing:11.556000px;}
.ws8a{word-spacing:11.610000px;}
.ws9f{word-spacing:11.664000px;}
.ws49{word-spacing:12.204000px;}
.ws1f{word-spacing:12.528000px;}
.wsf{word-spacing:12.636000px;}
.ws6c{word-spacing:13.608000px;}
.ws25{word-spacing:13.716000px;}
.ws48{word-spacing:14.094000px;}
.ws89{word-spacing:15.336000px;}
.ws87{word-spacing:16.200000px;}
.wsc1{word-spacing:19.062000px;}
.ws81{word-spacing:22.140000px;}
.ws36{word-spacing:23.382000px;}
.ws9{word-spacing:33.426000px;}
.ws97{word-spacing:109.030200px;}
.ws8d{word-spacing:153.222000px;}
.ws98{word-spacing:160.390200px;}
.ws7a{word-spacing:259.604400px;}
.ws74{word-spacing:263.853000px;}
.ws7c{word-spacing:539.362800px;}
.ws7b{word-spacing:703.690200px;}
.ws76{word-spacing:809.260200px;}
.ws77{word-spacing:839.452200px;}
.ws78{word-spacing:859.596600px;}
.ws79{word-spacing:874.005000px;}
.wsa1{word-spacing:1293.924600px;}
.ws99{word-spacing:1300.101000px;}
._4{margin-left:-15.494400px;}
._3{margin-left:-6.304200px;}
._5{margin-left:-5.208000px;}
._6{margin-left:-3.720000px;}
._1{margin-left:-2.520000px;}
._0{margin-left:-1.264200px;}
._2{width:1.260000px;}
._c{width:2.521800px;}
._8{width:4.147200px;}
._9{width:5.281800px;}
._7{width:6.598800px;}
._b{width:7.694400px;}
._a{width:9.045600px;}
._f{width:10.501800px;}
._11{width:14.763600px;}
._10{width:16.966800px;}
._54{width:18.592200px;}
._9b{width:22.388400px;}
._e{width:32.772000px;}
._d{width:33.912600px;}
._12{width:37.920000px;}
._9c{width:72.792000px;}
._7a{width:105.268200px;}
._7d{width:107.448000px;}
._79{width:108.901200px;}
._78{width:110.248200px;}
._7b{width:111.833400px;}
._81{width:113.130000px;}
._91{width:114.835800px;}
._42{width:116.850000px;}
._80{width:118.616400px;}
._86{width:124.329000px;}
._84{width:127.363800px;}
._83{width:129.300000px;}
._77{width:130.908000px;}
._7f{width:131.979000px;}
._96{width:133.971000px;}
._87{width:135.675600px;}
._8b{width:136.884600px;}
._88{width:138.201000px;}
._89{width:139.577400px;}
._1f{width:140.769600px;}
._3a{width:141.904800px;}
._46{width:143.934600px;}
._4d{width:144.992400px;}
._23{width:146.202600px;}
._18{width:147.782400px;}
._15{width:149.134200px;}
._44{width:152.136600px;}
._13{width:153.271200px;}
._4a{width:154.317000px;}
._14{width:156.019200px;}
._17{width:157.062000px;}
._37{width:158.422200px;}
._48{width:160.279200px;}
._1a{width:161.349600px;}
._22{width:163.495800px;}
._4b{width:164.797200px;}
._39{width:165.816600px;}
._3c{width:167.423400px;}
._4f{width:169.537800px;}
._25{width:170.684400px;}
._4c{width:172.804200px;}
._5c{width:174.822600px;}
._9a{width:177.259800px;}
._2f{width:178.542000px;}
._2a{width:182.032200px;}
._1e{width:183.585000px;}
._53{width:184.783200px;}
._1d{width:185.933400px;}
._30{width:187.971000px;}
._60{width:191.905200px;}
._5a{width:193.510800px;}
._59{width:195.852000px;}
._34{width:197.788200px;}
._26{width:199.266600px;}
._27{width:200.338200px;}
._2c{width:201.715200px;}
._33{width:202.741200px;}
._58{width:204.956400px;}
._68{width:206.512200px;}
._2b{width:207.707400px;}
._5e{width:209.528400px;}
._67{width:210.704400px;}
._62{width:215.085000px;}
._65{width:217.707000px;}
._6a{width:219.217800px;}
._64{width:220.744800px;}
._6e{width:222.211200px;}
._51{width:224.989200px;}
._74{width:228.441600px;}
._56{width:229.734600px;}
._99{width:231.929400px;}
._73{width:237.811800px;}
._6b{width:239.508600px;}
._6c{width:242.646000px;}
._20{width:248.026200px;}
._3b{width:249.555600px;}
._19{width:250.754400px;}
._24{width:253.201800px;}
._16{width:254.695800px;}
._40{width:259.800600px;}
._2e{width:261.249600px;}
._50{width:263.427600px;}
._32{width:266.088600px;}
._1b{width:269.808600px;}
._2d{width:271.971000px;}
._28{width:275.183400px;}
._52{width:278.991000px;}
._41{width:293.204400px;}
._31{width:298.231800px;}
._35{width:313.228800px;}
._75{width:317.508600px;}
._5b{width:330.853200px;}
._66{width:348.849000px;}
._8d{width:351.219600px;}
._70{width:383.139000px;}
._8f{width:386.019000px;}
._93{width:404.043600px;}
._47{width:422.276400px;}
._29{width:436.042200px;}
._4e{width:441.107400px;}
._71{width:449.651400px;}
._97{width:467.870400px;}
._3e{width:541.332000px;}
._69{width:546.150000px;}
._55{width:552.287400px;}
._8e{width:569.388600px;}
._90{width:583.356000px;}
._5d{width:585.134400px;}
._76{width:596.365800px;}
._8c{width:603.220800px;}
._5f{width:612.336600px;}
._45{width:623.911200px;}
._21{width:629.001000px;}
._3d{width:637.962600px;}
._6f{width:668.927400px;}
._49{width:681.067200px;}
._7c{width:682.094400px;}
._92{width:683.316600px;}
._61{width:698.124600px;}
._85{width:704.416200px;}
._6d{width:706.515000px;}
._95{width:714.828000px;}
._63{width:723.042600px;}
._1c{width:743.139000px;}
._3f{width:745.332000px;}
._57{width:785.213400px;}
._43{width:791.778000px;}
._72{width:793.800600px;}
._8a{width:828.953400px;}
._36{width:843.354000px;}
._38{width:865.921800px;}
._7e{width:951.490200px;}
._82{width:964.280400px;}
._94{width:977.363400px;}
._98{width:1141.882200px;}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(161,164,168);}
.fs8{font-size:31.482000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:53.624700px;}
.y2b{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.y5d{bottom:106.299300px;}
.y8b{bottom:107.512050px;}
.yb4{bottom:113.031300px;}
.y54{bottom:113.031450px;}
.y5c{bottom:120.699300px;}
.y8a{bottom:128.977500px;}
.yc4{bottom:131.104650px;}
.y10e{bottom:133.361250px;}
.y5b{bottom:135.099300px;}
.yb3{bottom:135.531300px;}
.y53{bottom:135.531450px;}
.ye6{bottom:139.228200px;}
.yd8{bottom:152.092800px;}
.yc3{bottom:152.782650px;}
.y10d{bottom:152.861250px;}
.y89{bottom:154.058100px;}
.y27{bottom:156.259800px;}
.yb2{bottom:158.031300px;}
.y52{bottom:158.031450px;}
.ye5{bottom:171.484200px;}
.y10c{bottom:172.361250px;}
.yd7{bottom:173.770800px;}
.yc2{bottom:178.288500px;}
.y26{bottom:178.759800px;}
.y88{bottom:179.138850px;}
.y59{bottom:180.531450px;}
.yd6{bottom:191.770800px;}
.yb1{bottom:203.031300px;}
.y51{bottom:203.031450px;}
.ye4{bottom:203.740050px;}
.yc1{bottom:203.794350px;}
.y87{bottom:204.219600px;}
.y10b{bottom:204.617100px;}
.yd5{bottom:217.276650px;}
.y86{bottom:222.219600px;}
.y25{bottom:223.759800px;}
.y10a{bottom:224.117100px;}
.yb0{bottom:225.531300px;}
.y50{bottom:225.531450px;}
.yc0{bottom:229.300350px;}
.ye3{bottom:235.996050px;}
.yd4{bottom:242.782650px;}
.y24{bottom:246.259800px;}
.y85{bottom:247.300350px;}
.yaf{bottom:248.031300px;}
.y4f{bottom:248.031450px;}
.y109{bottom:256.372950px;}
.yd3{bottom:260.782650px;}
.y84{bottom:265.300350px;}
.ye2{bottom:268.251900px;}
.y23{bottom:268.759800px;}
.yae{bottom:270.531300px;}
.y4e{bottom:270.531450px;}
.ybf{bottom:272.806200px;}
.y108{bottom:275.872950px;}
.yd2{bottom:286.288500px;}
.ye1{bottom:287.751900px;}
.y83{bottom:290.380950px;}
.y22{bottom:291.259800px;}
.yad{bottom:293.031300px;}
.y4d{bottom:293.031450px;}
.ybe{bottom:298.312200px;}
.y107{bottom:308.128950px;}
.yd1{bottom:311.794350px;}
.y21{bottom:313.759800px;}
.y82{bottom:315.461700px;}
.yac{bottom:315.531300px;}
.y4c{bottom:315.531450px;}
.ye0{bottom:320.007900px;}
.ybd{bottom:323.818050px;}
.y106{bottom:327.628950px;}
.y20{bottom:336.259800px;}
.yd0{bottom:337.300350px;}
.yab{bottom:338.031300px;}
.y4b{bottom:338.031450px;}
.ydf{bottom:339.507900px;}
.y81{bottom:340.542450px;}
.ybc{bottom:341.818050px;}
.y105{bottom:347.128950px;}
.y1f{bottom:358.759800px;}
.yaa{bottom:360.531300px;}
.y4a{bottom:360.531450px;}
.ycf{bottom:362.806200px;}
.y80{bottom:365.623200px;}
.ybb{bottom:367.323900px;}
.yde{bottom:371.763750px;}
.y104{bottom:379.384800px;}
.yce{bottom:380.806200px;}
.y1e{bottom:381.259800px;}
.ya9{bottom:383.031300px;}
.y49{bottom:383.031450px;}
.y7f{bottom:390.703800px;}
.ydd{bottom:391.263750px;}
.yba{bottom:392.829900px;}
.y103{bottom:398.884800px;}
.y1d{bottom:403.759800px;}
.ya8{bottom:405.531300px;}
.y48{bottom:405.531450px;}
.ycd{bottom:406.312200px;}
.y7e{bottom:408.703800px;}
.y7d{bottom:411.869250px;}
.yb9{bottom:418.335750px;}
.ydc{bottom:423.519600px;}
.y1c{bottom:426.259800px;}
.y47{bottom:428.031450px;}
.y102{bottom:431.140800px;}
.ycc{bottom:431.818050px;}
.yb8{bottom:443.841600px;}
.y1b{bottom:448.759800px;}
.y58{bottom:450.531450px;}
.yb7{bottom:452.841600px;}
.ydb{bottom:455.775600px;}
.ycb{bottom:457.323900px;}
.y7c{bottom:457.365300px;}
.y127{bottom:462.664350px;}
.y101{bottom:463.396650px;}
.yb5{bottom:465.219600px;}
.ya7{bottom:470.080950px;}
.y1a{bottom:471.259800px;}
.y46{bottom:473.031450px;}
.y126{bottom:482.164350px;}
.y7b{bottom:482.445900px;}
.yca{bottom:482.829900px;}
.yb6{bottom:486.597600px;}
.yda{bottom:488.031450px;}
.ya6{bottom:491.758950px;}
.y19{bottom:493.759800px;}
.y45{bottom:495.531450px;}
.y100{bottom:495.652650px;}
.y125{bottom:501.664350px;}
.y7a{bottom:507.526650px;}
.yd9{bottom:507.531450px;}
.yc9{bottom:508.335750px;}
.ya5{bottom:509.758950px;}
.y18{bottom:516.259800px;}
.y44{bottom:518.031450px;}
.yff{bottom:527.908500px;}
.y79{bottom:532.607400px;}
.yc8{bottom:533.841600px;}
.y124{bottom:533.920350px;}
.ya4{bottom:535.264950px;}
.y17{bottom:538.759800px;}
.y43{bottom:540.531450px;}
.yc7{bottom:542.841600px;}
.yfe{bottom:547.408500px;}
.ya3{bottom:553.264950px;}
.y123{bottom:553.420350px;}
.yc5{bottom:555.219600px;}
.y78{bottom:557.688150px;}
.y42{bottom:563.031450px;}
.yfd{bottom:566.908500px;}
.yc6{bottom:576.597600px;}
.ya2{bottom:578.770800px;}
.y77{bottom:582.768750px;}
.y41{bottom:585.531450px;}
.y122{bottom:585.676200px;}
.y16{bottom:590.767200px;}
.ya1{bottom:596.770800px;}
.yfc{bottom:599.164350px;}
.y76{bottom:600.768750px;}
.y121{bottom:605.176200px;}
.y40{bottom:608.031450px;}
.yfb{bottom:618.664350px;}
.ya0{bottom:622.276650px;}
.y120{bottom:624.676200px;}
.y75{bottom:625.849500px;}
.y3f{bottom:630.531450px;}
.y9f{bottom:640.276650px;}
.y74{bottom:643.849500px;}
.yfa{bottom:650.920350px;}
.y15{bottom:651.536400px;}
.y3e{bottom:653.031450px;}
.y11f{bottom:656.932050px;}
.y9e{bottom:665.782650px;}
.y14{bottom:668.036400px;}
.y73{bottom:668.930250px;}
.y3d{bottom:675.531450px;}
.y11e{bottom:676.432050px;}
.yf9{bottom:683.176200px;}
.y9d{bottom:683.782650px;}
.y13{bottom:684.536400px;}
.y72{bottom:686.930250px;}
.y57{bottom:698.031450px;}
.yf8{bottom:702.676200px;}
.y12{bottom:707.414400px;}
.y11d{bottom:708.688050px;}
.y9c{bottom:709.288500px;}
.y71{bottom:712.011000px;}
.y3c{bottom:720.531450px;}
.yf7{bottom:722.176200px;}
.y9b{bottom:727.288500px;}
.y11c{bottom:728.188050px;}
.y70{bottom:737.091600px;}
.y11{bottom:741.926100px;}
.y56{bottom:743.031450px;}
.y11b{bottom:747.688050px;}
.y6d{bottom:749.257050px;}
.y9a{bottom:752.794350px;}
.yf6{bottom:754.432050px;}
.y6f{bottom:755.091600px;}
.y10{bottom:758.426100px;}
.y5a{bottom:765.531450px;}
.y6c{bottom:767.257050px;}
.y99{bottom:770.794350px;}
.yf5{bottom:773.932050px;}
.yf{bottom:774.926100px;}
.y6e{bottom:779.422350px;}
.y11a{bottom:779.943900px;}
.y3b{bottom:788.031450px;}
.y98{bottom:796.300350px;}
.ye{bottom:797.804100px;}
.y119{bottom:799.443900px;}
.y6b{bottom:803.753100px;}
.yf4{bottom:806.188050px;}
.y55{bottom:810.531450px;}
.y97{bottom:814.300350px;}
.y118{bottom:818.943900px;}
.y6a{bottom:828.833700px;}
.yd{bottom:832.315950px;}
.y3a{bottom:833.031450px;}
.yf3{bottom:838.443900px;}
.y96{bottom:839.806200px;}
.yc{bottom:848.815950px;}
.y117{bottom:851.199900px;}
.y69{bottom:853.914450px;}
.y39{bottom:855.531450px;}
.y95{bottom:857.806200px;}
.yf2{bottom:857.943900px;}
.yb{bottom:865.315950px;}
.y116{bottom:870.699900px;}
.y38{bottom:878.031450px;}
.y68{bottom:878.995200px;}
.y94{bottom:883.312200px;}
.ya{bottom:888.193950px;}
.yf1{bottom:890.199900px;}
.y37{bottom:900.531450px;}
.y115{bottom:902.955750px;}
.y67{bottom:904.075950px;}
.y93{bottom:908.818050px;}
.yf0{bottom:922.455750px;}
.y36{bottom:923.031450px;}
.y92{bottom:926.818050px;}
.y66{bottom:929.156550px;}
.yef{bottom:941.955750px;}
.y35{bottom:945.531450px;}
.y9{bottom:948.217500px;}
.y91{bottom:952.323900px;}
.y65{bottom:954.237300px;}
.yee{bottom:961.455750px;}
.y34{bottom:968.031450px;}
.y8{bottom:970.717500px;}
.y114{bottom:974.211600px;}
.y90{bottom:977.829750px;}
.y64{bottom:979.318050px;}
.yed{bottom:980.955750px;}
.y33{bottom:990.531450px;}
.y113{bottom:993.711600px;}
.y8f{bottom:1003.335750px;}
.y63{bottom:1004.398800px;}
.y7{bottom:1005.973500px;}
.y32{bottom:1013.031450px;}
.yec{bottom:1013.211600px;}
.y8e{bottom:1021.335750px;}
.y112{bottom:1025.967600px;}
.y62{bottom:1029.479400px;}
.yeb{bottom:1032.711600px;}
.y31{bottom:1035.531450px;}
.y6{bottom:1038.973500px;}
.y111{bottom:1045.467600px;}
.y8d{bottom:1046.841600px;}
.y61{bottom:1047.479400px;}
.y5f{bottom:1050.644850px;}
.yea{bottom:1052.211600px;}
.y30{bottom:1058.031450px;}
.y8c{bottom:1059.219600px;}
.y110{bottom:1064.967600px;}
.y5e{bottom:1068.644850px;}
.y60{bottom:1071.810150px;}
.y5{bottom:1071.973500px;}
.y2f{bottom:1080.531450px;}
.ye9{bottom:1084.467600px;}
.y10f{bottom:1097.223600px;}
.y2e{bottom:1103.031450px;}
.ye8{bottom:1116.723600px;}
.y2d{bottom:1125.531450px;}
.ye7{bottom:1136.223600px;}
.y4{bottom:1150.628100px;}
.y3{bottom:1162.744200px;}
.y2{bottom:1174.860300px;}
.y29{bottom:1182.884700px;}
.y2c{bottom:1197.026700px;}
.y28{bottom:1199.384700px;}
.h4{height:33.012000px;}
.h14{height:36.576000px;}
.h1b{height:36.624000px;}
.hc{height:36.816000px;}
.h3{height:37.548000px;}
.he{height:38.340000px;}
.hd{height:41.202000px;}
.hb{height:42.444000px;}
.h17{height:42.528000px;}
.h8{height:42.912000px;}
.h20{height:43.488000px;}
.h13{height:44.280000px;}
.h16{height:45.594000px;}
.h1f{height:47.088000px;}
.h1e{height:47.184000px;}
.ha{height:47.844000px;}
.h9{height:48.276000px;}
.h12{height:48.924000px;}
.h10{height:52.974000px;}
.h11{height:53.082000px;}
.h7{height:53.160000px;}
.h6{height:55.380000px;}
.hf{height:59.004000px;}
.h15{height:72.576000px;}
.h18{height:78.528000px;}
.h19{height:81.594000px;}
.h5{height:88.440000px;}
.h1c{height:92.040000px;}
.h2{height:97.710124px;}
.h1d{height:117.594000px;}
.h1a{height:127.189200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.x16{left:123.607050px;}
.x5{left:127.008600px;}
.x19{left:131.733600px;}
.x17{left:135.339450px;}
.x1c{left:138.573900px;}
.x24{left:148.818900px;}
.xb{left:152.631300px;}
.xc{left:170.715000px;}
.x1e{left:182.183250px;}
.x22{left:185.863500px;}
.x8{left:209.303100px;}
.x1a{left:379.006800px;}
.x1b{left:380.217900px;}
.x18{left:385.349850px;}
.xf{left:459.696600px;}
.xe{left:460.770450px;}
.x1d{left:469.728000px;}
.x10{left:531.693000px;}
.x11{left:535.755150px;}
.x20{left:543.145950px;}
.xd{left:554.266050px;}
.x3{left:585.415350px;}
.x12{left:591.636150px;}
.x1f{left:601.339800px;}
.x13{left:605.142150px;}
.x4{left:622.030200px;}
.x2{left:656.122950px;}
.x21{left:672.229050px;}
.x15{left:694.318500px;}
.x14{left:708.106350px;}
.x6{left:724.860750px;}
.x9{left:726.357450px;}
.x25{left:727.631700px;}
.xa{left:729.160050px;}
.x23{left:730.306950px;}
.x7{left:732.270900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.v2{vertical-align:32.000000pt;}
.v3{vertical-align:43.254400pt;}
.lsc{letter-spacing:-1.269333pt;}
.ls5{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.634667pt;}
.lsb{letter-spacing:-0.498667pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.226667pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.816000pt;}
.ls0{letter-spacing:4.852800pt;}
.ls1{letter-spacing:4.853333pt;}
.ws1{word-spacing:-21.333333pt;}
.ws0{word-spacing:-13.776000pt;}
.wsb{word-spacing:-11.376000pt;}
.ws8f{word-spacing:-11.280000pt;}
.wsc0{word-spacing:-10.112000pt;}
.ws2{word-spacing:-9.600000pt;}
.ws7d{word-spacing:-9.066667pt;}
.ws8e{word-spacing:-8.794667pt;}
.ws75{word-spacing:-8.533333pt;}
.wsa{word-spacing:-7.466667pt;}
.ws52{word-spacing:-6.632208pt;}
.ws84{word-spacing:-4.464000pt;}
.wsb7{word-spacing:-4.224000pt;}
.ws54{word-spacing:-3.936000pt;}
.ws10{word-spacing:-3.312000pt;}
.wsc4{word-spacing:-3.168000pt;}
.ws44{word-spacing:-2.928000pt;}
.ws27{word-spacing:-2.880000pt;}
.ws92{word-spacing:-2.784000pt;}
.ws2f{word-spacing:-2.736000pt;}
.wsaa{word-spacing:-2.400000pt;}
.wsac{word-spacing:-2.256000pt;}
.ws64{word-spacing:-2.208000pt;}
.ws15{word-spacing:-2.112000pt;}
.wsc5{word-spacing:-2.064000pt;}
.ws62{word-spacing:-2.016000pt;}
.ws6e{word-spacing:-1.968000pt;}
.ws93{word-spacing:-1.920000pt;}
.ws88{word-spacing:-1.872000pt;}
.wsbd{word-spacing:-1.680000pt;}
.wsbe{word-spacing:-1.632000pt;}
.wsad{word-spacing:-1.584000pt;}
.ws96{word-spacing:-1.296000pt;}
.ws40{word-spacing:-1.248000pt;}
.ws5{word-spacing:-1.200000pt;}
.wsaf{word-spacing:-1.152000pt;}
.ws4c{word-spacing:-1.008000pt;}
.ws9b{word-spacing:-0.960000pt;}
.ws8b{word-spacing:-0.912000pt;}
.ws4f{word-spacing:-0.816000pt;}
.ws32{word-spacing:-0.768000pt;}
.ws61{word-spacing:-0.720000pt;}
.ws46{word-spacing:-0.576000pt;}
.ws24{word-spacing:-0.528000pt;}
.ws41{word-spacing:-0.480000pt;}
.ws58{word-spacing:-0.432000pt;}
.wsa6{word-spacing:-0.336000pt;}
.ws70{word-spacing:-0.240000pt;}
.ws60{word-spacing:-0.192000pt;}
.ws90{word-spacing:-0.181333pt;}
.ws16{word-spacing:-0.096000pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws91{word-spacing:0.096000pt;}
.ws2b{word-spacing:0.144000pt;}
.ws95{word-spacing:0.192000pt;}
.ws34{word-spacing:0.240000pt;}
.ws4{word-spacing:0.288000pt;}
.ws63{word-spacing:0.426667pt;}
.ws56{word-spacing:0.480000pt;}
.ws7f{word-spacing:0.498667pt;}
.ws5c{word-spacing:0.576000pt;}
.wsa8{word-spacing:0.624000pt;}
.ws7e{word-spacing:0.634667pt;}
.wsb5{word-spacing:0.672000pt;}
.ws7{word-spacing:0.720000pt;}
.wsc{word-spacing:0.746667pt;}
.wsb1{word-spacing:0.816000pt;}
.ws13{word-spacing:0.912000pt;}
.ws5b{word-spacing:0.960000pt;}
.wsa3{word-spacing:1.008000pt;}
.ws4e{word-spacing:1.104000pt;}
.ws9a{word-spacing:1.152000pt;}
.ws3a{word-spacing:1.200000pt;}
.ws94{word-spacing:1.248000pt;}
.ws80{word-spacing:1.269333pt;}
.ws65{word-spacing:1.296000pt;}
.wsa2{word-spacing:1.344000pt;}
.wsa4{word-spacing:1.440000pt;}
.ws8c{word-spacing:1.488000pt;}
.wsd{word-spacing:1.536000pt;}
.ws55{word-spacing:1.632000pt;}
.ws14{word-spacing:1.680000pt;}
.wsb2{word-spacing:1.728000pt;}
.wsb0{word-spacing:1.776000pt;}
.ws33{word-spacing:1.824000pt;}
.ws4b{word-spacing:1.920000pt;}
.ws50{word-spacing:2.016000pt;}
.ws8{word-spacing:2.112000pt;}
.ws43{word-spacing:2.160000pt;}
.wsa5{word-spacing:2.208000pt;}
.wsa0{word-spacing:2.304000pt;}
.wsb6{word-spacing:2.352000pt;}
.ws71{word-spacing:2.400000pt;}
.ws73{word-spacing:2.448000pt;}
.ws6{word-spacing:2.544000pt;}
.ws83{word-spacing:2.688000pt;}
.wsb8{word-spacing:2.736000pt;}
.ws1a{word-spacing:2.784000pt;}
.ws85{word-spacing:2.928000pt;}
.wsae{word-spacing:2.976000pt;}
.wsab{word-spacing:3.072000pt;}
.ws72{word-spacing:3.120000pt;}
.ws51{word-spacing:3.216000pt;}
.ws12{word-spacing:3.264000pt;}
.ws1d{word-spacing:3.312000pt;}
.ws2c{word-spacing:3.360000pt;}
.ws4d{word-spacing:3.456000pt;}
.wsa9{word-spacing:3.504000pt;}
.ws6b{word-spacing:3.696000pt;}
.ws57{word-spacing:3.792000pt;}
.ws19{word-spacing:3.840000pt;}
.ws66{word-spacing:3.888000pt;}
.wsc3{word-spacing:3.984000pt;}
.ws6a{word-spacing:4.080000pt;}
.ws6f{word-spacing:4.224000pt;}
.ws42{word-spacing:4.368000pt;}
.wsb4{word-spacing:4.464000pt;}
.ws38{word-spacing:4.608000pt;}
.wsb9{word-spacing:4.656000pt;}
.ws5f{word-spacing:4.896000pt;}
.ws28{word-spacing:5.040000pt;}
.wsbb{word-spacing:5.088000pt;}
.ws5d{word-spacing:5.184000pt;}
.wsa7{word-spacing:5.376000pt;}
.ws39{word-spacing:5.424000pt;}
.ws4a{word-spacing:5.472000pt;}
.ws9d{word-spacing:5.520000pt;}
.ws45{word-spacing:5.568000pt;}
.ws2a{word-spacing:5.712000pt;}
.ws31{word-spacing:5.760000pt;}
.ws2e{word-spacing:5.856000pt;}
.ws26{word-spacing:5.904000pt;}
.ws37{word-spacing:5.952000pt;}
.ws29{word-spacing:6.048000pt;}
.ws86{word-spacing:6.096000pt;}
.wse{word-spacing:6.144000pt;}
.ws67{word-spacing:6.192000pt;}
.ws1e{word-spacing:6.240000pt;}
.ws3d{word-spacing:6.288000pt;}
.wsba{word-spacing:6.336000pt;}
.ws20{word-spacing:6.480000pt;}
.ws47{word-spacing:6.576000pt;}
.ws82{word-spacing:6.624000pt;}
.ws6d{word-spacing:6.672000pt;}
.ws3f{word-spacing:6.768000pt;}
.ws3c{word-spacing:6.960000pt;}
.wsc2{word-spacing:7.200000pt;}
.ws68{word-spacing:7.296000pt;}
.ws17{word-spacing:7.344000pt;}
.ws9c{word-spacing:7.488000pt;}
.wsb3{word-spacing:7.536000pt;}
.ws5a{word-spacing:7.584000pt;}
.ws21{word-spacing:7.632000pt;}
.ws1b{word-spacing:7.680000pt;}
.wsbc{word-spacing:7.776000pt;}
.ws11{word-spacing:7.824000pt;}
.ws18{word-spacing:7.872000pt;}
.ws3e{word-spacing:8.112000pt;}
.ws69{word-spacing:8.400000pt;}
.ws2d{word-spacing:8.544000pt;}
.ws3b{word-spacing:8.736000pt;}
.ws35{word-spacing:8.784000pt;}
.ws9e{word-spacing:8.832000pt;}
.ws53{word-spacing:8.928000pt;}
.ws30{word-spacing:8.976000pt;}
.ws23{word-spacing:9.168000pt;}
.ws59{word-spacing:9.504000pt;}
.ws22{word-spacing:9.984000pt;}
.ws5e{word-spacing:10.128000pt;}
.wsbf{word-spacing:10.272000pt;}
.ws8a{word-spacing:10.320000pt;}
.ws9f{word-spacing:10.368000pt;}
.ws49{word-spacing:10.848000pt;}
.ws1f{word-spacing:11.136000pt;}
.wsf{word-spacing:11.232000pt;}
.ws6c{word-spacing:12.096000pt;}
.ws25{word-spacing:12.192000pt;}
.ws48{word-spacing:12.528000pt;}
.ws89{word-spacing:13.632000pt;}
.ws87{word-spacing:14.400000pt;}
.wsc1{word-spacing:16.944000pt;}
.ws81{word-spacing:19.680000pt;}
.ws36{word-spacing:20.784000pt;}
.ws9{word-spacing:29.712000pt;}
.ws97{word-spacing:96.915733pt;}
.ws8d{word-spacing:136.197333pt;}
.ws98{word-spacing:142.569067pt;}
.ws7a{word-spacing:230.759467pt;}
.ws74{word-spacing:234.536000pt;}
.ws7c{word-spacing:479.433600pt;}
.ws7b{word-spacing:625.502400pt;}
.ws76{word-spacing:719.342400pt;}
.ws77{word-spacing:746.179733pt;}
.ws78{word-spacing:764.085867pt;}
.ws79{word-spacing:776.893333pt;}
.wsa1{word-spacing:1150.155200pt;}
.ws99{word-spacing:1155.645333pt;}
._4{margin-left:-13.772800pt;}
._3{margin-left:-5.603733pt;}
._5{margin-left:-4.629333pt;}
._6{margin-left:-3.306667pt;}
._1{margin-left:-2.240000pt;}
._0{margin-left:-1.123733pt;}
._2{width:1.120000pt;}
._c{width:2.241600pt;}
._8{width:3.686400pt;}
._9{width:4.694933pt;}
._7{width:5.865600pt;}
._b{width:6.839467pt;}
._a{width:8.040533pt;}
._f{width:9.334933pt;}
._11{width:13.123200pt;}
._10{width:15.081600pt;}
._54{width:16.526400pt;}
._9b{width:19.900800pt;}
._e{width:29.130667pt;}
._d{width:30.144533pt;}
._12{width:33.706667pt;}
._9c{width:64.704000pt;}
._7a{width:93.571733pt;}
._7d{width:95.509333pt;}
._79{width:96.801067pt;}
._78{width:97.998400pt;}
._7b{width:99.407467pt;}
._81{width:100.560000pt;}
._91{width:102.076267pt;}
._42{width:103.866667pt;}
._80{width:105.436800pt;}
._86{width:110.514667pt;}
._84{width:113.212267pt;}
._83{width:114.933333pt;}
._77{width:116.362667pt;}
._7f{width:117.314667pt;}
._96{width:119.085333pt;}
._87{width:120.600533pt;}
._8b{width:121.675200pt;}
._88{width:122.845333pt;}
._89{width:124.068800pt;}
._1f{width:125.128533pt;}
._3a{width:126.137600pt;}
._46{width:127.941867pt;}
._4d{width:128.882133pt;}
._23{width:129.957867pt;}
._18{width:131.362133pt;}
._15{width:132.563733pt;}
._44{width:135.232533pt;}
._13{width:136.241067pt;}
._4a{width:137.170667pt;}
._14{width:138.683733pt;}
._17{width:139.610667pt;}
._37{width:140.819733pt;}
._48{width:142.470400pt;}
._1a{width:143.421867pt;}
._22{width:145.329600pt;}
._4b{width:146.486400pt;}
._39{width:147.392533pt;}
._3c{width:148.820800pt;}
._4f{width:150.700267pt;}
._25{width:151.719467pt;}
._4c{width:153.603733pt;}
._5c{width:155.397867pt;}
._9a{width:157.564267pt;}
._2f{width:158.704000pt;}
._2a{width:161.806400pt;}
._1e{width:163.186667pt;}
._53{width:164.251733pt;}
._1d{width:165.274133pt;}
._30{width:167.085333pt;}
._60{width:170.582400pt;}
._5a{width:172.009600pt;}
._59{width:174.090667pt;}
._34{width:175.811733pt;}
._26{width:177.125867pt;}
._27{width:178.078400pt;}
._2c{width:179.302400pt;}
._33{width:180.214400pt;}
._58{width:182.183467pt;}
._68{width:183.566400pt;}
._2b{width:184.628800pt;}
._5e{width:186.247467pt;}
._67{width:187.292800pt;}
._62{width:191.186667pt;}
._65{width:193.517333pt;}
._6a{width:194.860267pt;}
._64{width:196.217600pt;}
._6e{width:197.521067pt;}
._51{width:199.990400pt;}
._74{width:203.059200pt;}
._56{width:204.208533pt;}
._99{width:206.159467pt;}
._73{width:211.388267pt;}
._6b{width:212.896533pt;}
._6c{width:215.685333pt;}
._20{width:220.467733pt;}
._3b{width:221.827200pt;}
._19{width:222.892800pt;}
._24{width:225.068267pt;}
._16{width:226.396267pt;}
._40{width:230.933867pt;}
._2e{width:232.221867pt;}
._50{width:234.157867pt;}
._32{width:236.523200pt;}
._1b{width:239.829867pt;}
._2d{width:241.752000pt;}
._28{width:244.607467pt;}
._52{width:247.992000pt;}
._41{width:260.626133pt;}
._31{width:265.094933pt;}
._35{width:278.425600pt;}
._75{width:282.229867pt;}
._5b{width:294.091733pt;}
._66{width:310.088000pt;}
._8d{width:312.195200pt;}
._70{width:340.568000pt;}
._8f{width:343.128000pt;}
._93{width:359.149867pt;}
._47{width:375.356800pt;}
._29{width:387.593067pt;}
._4e{width:392.095467pt;}
._71{width:399.690133pt;}
._97{width:415.884800pt;}
._3e{width:481.184000pt;}
._69{width:485.466667pt;}
._55{width:490.922133pt;}
._8e{width:506.123200pt;}
._90{width:518.538667pt;}
._5d{width:520.119467pt;}
._76{width:530.102933pt;}
._8c{width:536.196267pt;}
._5f{width:544.299200pt;}
._45{width:554.587733pt;}
._21{width:559.112000pt;}
._3d{width:567.077867pt;}
._6f{width:594.602133pt;}
._49{width:605.393067pt;}
._7c{width:606.306133pt;}
._92{width:607.392533pt;}
._61{width:620.555200pt;}
._85{width:626.147733pt;}
._6d{width:628.013333pt;}
._95{width:635.402667pt;}
._63{width:642.704533pt;}
._1c{width:660.568000pt;}
._3f{width:662.517333pt;}
._57{width:697.967467pt;}
._43{width:703.802667pt;}
._72{width:705.600533pt;}
._8a{width:736.847467pt;}
._36{width:749.648000pt;}
._38{width:769.708267pt;}
._7e{width:845.769067pt;}
._82{width:857.138133pt;}
._94{width:868.767467pt;}
._98{width:1015.006400pt;}
.fs8{font-size:27.984000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:47.666400pt;}
.y2b{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.y5d{bottom:94.488267pt;}
.y8b{bottom:95.566267pt;}
.yb4{bottom:100.472267pt;}
.y54{bottom:100.472400pt;}
.y5c{bottom:107.288267pt;}
.y8a{bottom:114.646667pt;}
.yc4{bottom:116.537467pt;}
.y10e{bottom:118.543333pt;}
.y5b{bottom:120.088267pt;}
.yb3{bottom:120.472267pt;}
.y53{bottom:120.472400pt;}
.ye6{bottom:123.758400pt;}
.yd8{bottom:135.193600pt;}
.yc3{bottom:135.806800pt;}
.y10d{bottom:135.876667pt;}
.y89{bottom:136.940533pt;}
.y27{bottom:138.897600pt;}
.yb2{bottom:140.472267pt;}
.y52{bottom:140.472400pt;}
.ye5{bottom:152.430400pt;}
.y10c{bottom:153.210000pt;}
.yd7{bottom:154.462933pt;}
.yc2{bottom:158.478667pt;}
.y26{bottom:158.897600pt;}
.y88{bottom:159.234533pt;}
.y59{bottom:160.472400pt;}
.yd6{bottom:170.462933pt;}
.yb1{bottom:180.472267pt;}
.y51{bottom:180.472400pt;}
.ye4{bottom:181.102267pt;}
.yc1{bottom:181.150533pt;}
.y87{bottom:181.528533pt;}
.y10b{bottom:181.881867pt;}
.yd5{bottom:193.134800pt;}
.y86{bottom:197.528533pt;}
.y25{bottom:198.897600pt;}
.y10a{bottom:199.215200pt;}
.yb0{bottom:200.472267pt;}
.y50{bottom:200.472400pt;}
.yc0{bottom:203.822533pt;}
.ye3{bottom:209.774267pt;}
.yd4{bottom:215.806800pt;}
.y24{bottom:218.897600pt;}
.y85{bottom:219.822533pt;}
.yaf{bottom:220.472267pt;}
.y4f{bottom:220.472400pt;}
.y109{bottom:227.887067pt;}
.yd3{bottom:231.806800pt;}
.y84{bottom:235.822533pt;}
.ye2{bottom:238.446133pt;}
.y23{bottom:238.897600pt;}
.yae{bottom:240.472267pt;}
.y4e{bottom:240.472400pt;}
.ybf{bottom:242.494400pt;}
.y108{bottom:245.220400pt;}
.yd2{bottom:254.478667pt;}
.ye1{bottom:255.779467pt;}
.y83{bottom:258.116400pt;}
.y22{bottom:258.897600pt;}
.yad{bottom:260.472267pt;}
.y4d{bottom:260.472400pt;}
.ybe{bottom:265.166400pt;}
.y107{bottom:273.892400pt;}
.yd1{bottom:277.150533pt;}
.y21{bottom:278.897600pt;}
.y82{bottom:280.410400pt;}
.yac{bottom:280.472267pt;}
.y4c{bottom:280.472400pt;}
.ye0{bottom:284.451467pt;}
.ybd{bottom:287.838267pt;}
.y106{bottom:291.225733pt;}
.y20{bottom:298.897600pt;}
.yd0{bottom:299.822533pt;}
.yab{bottom:300.472267pt;}
.y4b{bottom:300.472400pt;}
.ydf{bottom:301.784800pt;}
.y81{bottom:302.704400pt;}
.ybc{bottom:303.838267pt;}
.y105{bottom:308.559067pt;}
.y1f{bottom:318.897600pt;}
.yaa{bottom:320.472267pt;}
.y4a{bottom:320.472400pt;}
.ycf{bottom:322.494400pt;}
.y80{bottom:324.998400pt;}
.ybb{bottom:326.510133pt;}
.yde{bottom:330.456667pt;}
.y104{bottom:337.230933pt;}
.yce{bottom:338.494400pt;}
.y1e{bottom:338.897600pt;}
.ya9{bottom:340.472267pt;}
.y49{bottom:340.472400pt;}
.y7f{bottom:347.292267pt;}
.ydd{bottom:347.790000pt;}
.yba{bottom:349.182133pt;}
.y103{bottom:354.564267pt;}
.y1d{bottom:358.897600pt;}
.ya8{bottom:360.472267pt;}
.y48{bottom:360.472400pt;}
.ycd{bottom:361.166400pt;}
.y7e{bottom:363.292267pt;}
.y7d{bottom:366.106000pt;}
.yb9{bottom:371.854000pt;}
.ydc{bottom:376.461867pt;}
.y1c{bottom:378.897600pt;}
.y47{bottom:380.472400pt;}
.y102{bottom:383.236267pt;}
.ycc{bottom:383.838267pt;}
.yb8{bottom:394.525867pt;}
.y1b{bottom:398.897600pt;}
.y58{bottom:400.472400pt;}
.yb7{bottom:402.525867pt;}
.ydb{bottom:405.133867pt;}
.ycb{bottom:406.510133pt;}
.y7c{bottom:406.546933pt;}
.y127{bottom:411.257200pt;}
.y101{bottom:411.908133pt;}
.yb5{bottom:413.528533pt;}
.ya7{bottom:417.849733pt;}
.y1a{bottom:418.897600pt;}
.y46{bottom:420.472400pt;}
.y126{bottom:428.590533pt;}
.y7b{bottom:428.840800pt;}
.yca{bottom:429.182133pt;}
.yb6{bottom:432.531200pt;}
.yda{bottom:433.805733pt;}
.ya6{bottom:437.119067pt;}
.y19{bottom:438.897600pt;}
.y45{bottom:440.472400pt;}
.y100{bottom:440.580133pt;}
.y125{bottom:445.923867pt;}
.y7a{bottom:451.134800pt;}
.yd9{bottom:451.139067pt;}
.yc9{bottom:451.854000pt;}
.ya5{bottom:453.119067pt;}
.y18{bottom:458.897600pt;}
.y44{bottom:460.472400pt;}
.yff{bottom:469.252000pt;}
.y79{bottom:473.428800pt;}
.yc8{bottom:474.525867pt;}
.y124{bottom:474.595867pt;}
.ya4{bottom:475.791067pt;}
.y17{bottom:478.897600pt;}
.y43{bottom:480.472400pt;}
.yc7{bottom:482.525867pt;}
.yfe{bottom:486.585333pt;}
.ya3{bottom:491.791067pt;}
.y123{bottom:491.929200pt;}
.yc5{bottom:493.528533pt;}
.y78{bottom:495.722800pt;}
.y42{bottom:500.472400pt;}
.yfd{bottom:503.918667pt;}
.yc6{bottom:512.531200pt;}
.ya2{bottom:514.462933pt;}
.y77{bottom:518.016667pt;}
.y41{bottom:520.472400pt;}
.y122{bottom:520.601067pt;}
.y16{bottom:525.126400pt;}
.ya1{bottom:530.462933pt;}
.yfc{bottom:532.590533pt;}
.y76{bottom:534.016667pt;}
.y121{bottom:537.934400pt;}
.y40{bottom:540.472400pt;}
.yfb{bottom:549.923867pt;}
.ya0{bottom:553.134800pt;}
.y120{bottom:555.267733pt;}
.y75{bottom:556.310667pt;}
.y3f{bottom:560.472400pt;}
.y9f{bottom:569.134800pt;}
.y74{bottom:572.310667pt;}
.yfa{bottom:578.595867pt;}
.y15{bottom:579.143467pt;}
.y3e{bottom:580.472400pt;}
.y11f{bottom:583.939600pt;}
.y9e{bottom:591.806800pt;}
.y14{bottom:593.810133pt;}
.y73{bottom:594.604667pt;}
.y3d{bottom:600.472400pt;}
.y11e{bottom:601.272933pt;}
.yf9{bottom:607.267733pt;}
.y9d{bottom:607.806800pt;}
.y13{bottom:608.476800pt;}
.y72{bottom:610.604667pt;}
.y57{bottom:620.472400pt;}
.yf8{bottom:624.601067pt;}
.y12{bottom:628.812800pt;}
.y11d{bottom:629.944933pt;}
.y9c{bottom:630.478667pt;}
.y71{bottom:632.898667pt;}
.y3c{bottom:640.472400pt;}
.yf7{bottom:641.934400pt;}
.y9b{bottom:646.478667pt;}
.y11c{bottom:647.278267pt;}
.y70{bottom:655.192533pt;}
.y11{bottom:659.489867pt;}
.y56{bottom:660.472400pt;}
.y11b{bottom:664.611600pt;}
.y6d{bottom:666.006267pt;}
.y9a{bottom:669.150533pt;}
.yf6{bottom:670.606267pt;}
.y6f{bottom:671.192533pt;}
.y10{bottom:674.156533pt;}
.y5a{bottom:680.472400pt;}
.y6c{bottom:682.006267pt;}
.y99{bottom:685.150533pt;}
.yf5{bottom:687.939600pt;}
.yf{bottom:688.823200pt;}
.y6e{bottom:692.819867pt;}
.y11a{bottom:693.283467pt;}
.y3b{bottom:700.472400pt;}
.y98{bottom:707.822533pt;}
.ye{bottom:709.159200pt;}
.y119{bottom:710.616800pt;}
.y6b{bottom:714.447200pt;}
.yf4{bottom:716.611600pt;}
.y55{bottom:720.472400pt;}
.y97{bottom:723.822533pt;}
.y118{bottom:727.950133pt;}
.y6a{bottom:736.741067pt;}
.yd{bottom:739.836400pt;}
.y3a{bottom:740.472400pt;}
.yf3{bottom:745.283467pt;}
.y96{bottom:746.494400pt;}
.yc{bottom:754.503067pt;}
.y117{bottom:756.622133pt;}
.y69{bottom:759.035067pt;}
.y39{bottom:760.472400pt;}
.y95{bottom:762.494400pt;}
.yf2{bottom:762.616800pt;}
.yb{bottom:769.169733pt;}
.y116{bottom:773.955467pt;}
.y38{bottom:780.472400pt;}
.y68{bottom:781.329067pt;}
.y94{bottom:785.166400pt;}
.ya{bottom:789.505733pt;}
.yf1{bottom:791.288800pt;}
.y37{bottom:800.472400pt;}
.y115{bottom:802.627333pt;}
.y67{bottom:803.623067pt;}
.y93{bottom:807.838267pt;}
.yf0{bottom:819.960667pt;}
.y36{bottom:820.472400pt;}
.y92{bottom:823.838267pt;}
.y66{bottom:825.916933pt;}
.yef{bottom:837.294000pt;}
.y35{bottom:840.472400pt;}
.y9{bottom:842.860000pt;}
.y91{bottom:846.510133pt;}
.y65{bottom:848.210933pt;}
.yee{bottom:854.627333pt;}
.y34{bottom:860.472400pt;}
.y8{bottom:862.860000pt;}
.y114{bottom:865.965867pt;}
.y90{bottom:869.182000pt;}
.y64{bottom:870.504933pt;}
.yed{bottom:871.960667pt;}
.y33{bottom:880.472400pt;}
.y113{bottom:883.299200pt;}
.y8f{bottom:891.854000pt;}
.y63{bottom:892.798933pt;}
.y7{bottom:894.198667pt;}
.y32{bottom:900.472400pt;}
.yec{bottom:900.632533pt;}
.y8e{bottom:907.854000pt;}
.y112{bottom:911.971200pt;}
.y62{bottom:915.092800pt;}
.yeb{bottom:917.965867pt;}
.y31{bottom:920.472400pt;}
.y6{bottom:923.532000pt;}
.y111{bottom:929.304533pt;}
.y8d{bottom:930.525867pt;}
.y61{bottom:931.092800pt;}
.y5f{bottom:933.906533pt;}
.yea{bottom:935.299200pt;}
.y30{bottom:940.472400pt;}
.y8c{bottom:941.528533pt;}
.y110{bottom:946.637867pt;}
.y5e{bottom:949.906533pt;}
.y60{bottom:952.720133pt;}
.y5{bottom:952.865333pt;}
.y2f{bottom:960.472400pt;}
.ye9{bottom:963.971200pt;}
.y10f{bottom:975.309867pt;}
.y2e{bottom:980.472400pt;}
.ye8{bottom:992.643200pt;}
.y2d{bottom:1000.472400pt;}
.ye7{bottom:1009.976533pt;}
.y4{bottom:1022.780533pt;}
.y3{bottom:1033.550400pt;}
.y2{bottom:1044.320267pt;}
.y29{bottom:1051.453067pt;}
.y2c{bottom:1064.023733pt;}
.y28{bottom:1066.119733pt;}
.h4{height:29.344000pt;}
.h14{height:32.512000pt;}
.h1b{height:32.554667pt;}
.hc{height:32.725333pt;}
.h3{height:33.376000pt;}
.he{height:34.080000pt;}
.hd{height:36.624000pt;}
.hb{height:37.728000pt;}
.h17{height:37.802667pt;}
.h8{height:38.144000pt;}
.h20{height:38.656000pt;}
.h13{height:39.360000pt;}
.h16{height:40.528000pt;}
.h1f{height:41.856000pt;}
.h1e{height:41.941333pt;}
.ha{height:42.528000pt;}
.h9{height:42.912000pt;}
.h12{height:43.488000pt;}
.h10{height:47.088000pt;}
.h11{height:47.184000pt;}
.h7{height:47.253333pt;}
.h6{height:49.226667pt;}
.hf{height:52.448000pt;}
.h15{height:64.512000pt;}
.h18{height:69.802667pt;}
.h19{height:72.528000pt;}
.h5{height:78.613333pt;}
.h1c{height:81.813333pt;}
.h2{height:86.853444pt;}
.h1d{height:104.528000pt;}
.h1a{height:113.057067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.x16{left:109.872933pt;}
.x5{left:112.896533pt;}
.x19{left:117.096533pt;}
.x17{left:120.301733pt;}
.x1c{left:123.176800pt;}
.x24{left:132.283467pt;}
.xb{left:135.672267pt;}
.xc{left:151.746667pt;}
.x1e{left:161.940667pt;}
.x22{left:165.212000pt;}
.x8{left:186.047200pt;}
.x1a{left:336.894933pt;}
.x1b{left:337.971467pt;}
.x18{left:342.533200pt;}
.xf{left:408.619200pt;}
.xe{left:409.573733pt;}
.x1d{left:417.536000pt;}
.x10{left:472.616000pt;}
.x11{left:476.226800pt;}
.x20{left:482.796400pt;}
.xd{left:492.680933pt;}
.x3{left:520.369200pt;}
.x12{left:525.898800pt;}
.x1f{left:534.524267pt;}
.x13{left:537.904133pt;}
.x4{left:552.915733pt;}
.x2{left:583.220400pt;}
.x21{left:597.536933pt;}
.x15{left:617.172000pt;}
.x14{left:629.427867pt;}
.x6{left:644.320667pt;}
.x9{left:645.651067pt;}
.x25{left:646.783733pt;}
.xa{left:648.142267pt;}
.x23{left:649.161733pt;}
.x7{left:650.907467pt;}
}




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