
    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_b05a9655ba22d81e18e3d721.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_504257032825e5b6a112e74a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_185d12c5a3a26671bca61ac0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.687500;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_f209f59c5749c8904e2f0a83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.993000;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_9434112e97a14e210049fd9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.993000;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_12393228d8153500f04e985d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.105000;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_f34ace8a26366749cad72089.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.998000;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_2fceab8332e9782811fc5853.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.126000;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_8f28070fff7c6b5a8ef51bb9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962000;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_74158d2e58fc37bb9596e058.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736000;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_e803fee1e8a9171e3ed2dd84.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.980000;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_ee6d086c0a03ac4e9cde1257.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.203000;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_e6d4101f85539e460d898efd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.778000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e6483acba94287a25a236ae3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_f209f59c5749c8904e2f0a83.woff2')format("woff");}.fff{font-family:fff;line-height:0.993000;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_77fafd13c23735123aabd4a3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.980000;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_f209f59c5749c8904e2f0a83.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.993000;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_4417c77261b5aff588580de2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.913000;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_f209f59c5749c8904e2f0a83.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.993000;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_f209f59c5749c8904e2f0a83.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.993000;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:ff15;src:url('chunks/assets/font_97d2dd7df65b41838ba882f5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.993000;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:ff16;src:url('chunks/assets/font_e803fee1e8a9171e3ed2dd84.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.980000;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:ff17;src:url('chunks/assets/font_97d2dd7df65b41838ba882f5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.993000;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:ff18;src:url('chunks/assets/font_e803fee1e8a9171e3ed2dd84.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.980000;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:ff19;src:url('chunks/assets/font_ee6d086c0a03ac4e9cde1257.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.203000;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:ff1a;src:url('chunks/assets/font_e803fee1e8a9171e3ed2dd84.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.980000;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:ff1b;src:url('chunks/assets/font_97d2dd7df65b41838ba882f5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.993000;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:ff1c;src:url('chunks/assets/font_97d2dd7df65b41838ba882f5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.993000;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:ff1d;src:url('chunks/assets/font_e803fee1e8a9171e3ed2dd84.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.980000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,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);}
.m2{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);}
.v4{vertical-align:-18.900000px;}
.v6{vertical-align:-10.800000px;}
.va{vertical-align:-9.373800px;}
.v2{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:3.074400px;}
.v1{vertical-align:5.790000px;}
.v9{vertical-align:10.800000px;}
.v7{vertical-align:13.874400px;}
.v5{vertical-align:16.800000px;}
.v3{vertical-align:18.855000px;}
.ls52{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.491400px;}
.ls4{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.378000px;}
.ls7{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.189000px;}
.ls13{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.151200px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.091200px;}
.ls2a{letter-spacing:0.162000px;}
.ls2f{letter-spacing:0.166800px;}
.ls21{letter-spacing:0.172200px;}
.ls1e{letter-spacing:0.188400px;}
.ls26{letter-spacing:0.189000px;}
.ls22{letter-spacing:0.189600px;}
.ls44{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.226800px;}
.ls2d{letter-spacing:0.245400px;}
.ls29{letter-spacing:0.246600px;}
.ls23{letter-spacing:0.248400px;}
.ls2b{letter-spacing:0.250800px;}
.ls31{letter-spacing:0.254400px;}
.ls27{letter-spacing:0.256800px;}
.ls20{letter-spacing:0.258000px;}
.ls1f{letter-spacing:0.258600px;}
.ls1d{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.270000px;}
.ls25{letter-spacing:0.280800px;}
.ls2e{letter-spacing:0.295800px;}
.ls28{letter-spacing:0.297000px;}
.ls4a{letter-spacing:0.335400px;}
.ls49{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.378000px;}
.ls48{letter-spacing:0.384000px;}
.ls4c{letter-spacing:0.408000px;}
.ls2{letter-spacing:0.432000px;}
.ls4d{letter-spacing:0.433200px;}
.ls55{letter-spacing:0.456000px;}
.ls46{letter-spacing:0.480000px;}
.ls42{letter-spacing:0.540000px;}
.ls5a{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.594000px;}
.ls4b{letter-spacing:0.624000px;}
.ls16{letter-spacing:0.672000px;}
.ls53{letter-spacing:0.715200px;}
.ls17{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.816000px;}
.ls9{letter-spacing:1.008000px;}
.ls1a{letter-spacing:1.026000px;}
.ls3{letter-spacing:1.050000px;}
.ls4e{letter-spacing:1.200000px;}
.ls4f{letter-spacing:1.204800px;}
.ls56{letter-spacing:1.286400px;}
.ls32{letter-spacing:1.296000px;}
.ls14{letter-spacing:1.350000px;}
.lsc{letter-spacing:1.776000px;}
.lsd{letter-spacing:1.824000px;}
.lsb{letter-spacing:1.872000px;}
.ls5c{letter-spacing:2.505600px;}
.ls50{letter-spacing:2.803200px;}
.ls47{letter-spacing:3.312000px;}
.ls57{letter-spacing:3.609600px;}
.ls54{letter-spacing:3.686400px;}
.ls58{letter-spacing:3.921600px;}
.ls10{letter-spacing:5.940000px;}
.ls1{letter-spacing:8.478000px;}
.ls11{letter-spacing:9.612000px;}
.ls5b{letter-spacing:11.323200px;}
.ls51{letter-spacing:12.456000px;}
.ls45{letter-spacing:13.824000px;}
.ls59{letter-spacing:14.529600px;}
.ls1b{letter-spacing:14.691446px;}
.ls43{letter-spacing:15.177446px;}
.ls30{letter-spacing:18.862200px;}
.ls3c{letter-spacing:65.473810px;}
.ls36{letter-spacing:65.912181px;}
.ls35{letter-spacing:66.475801px;}
.ls40{letter-spacing:66.906000px;}
.ls38{letter-spacing:69.012000px;}
.ls3d{letter-spacing:99.303281px;}
.ls3e{letter-spacing:100.464400px;}
.ls37{letter-spacing:103.788000px;}
.ls3f{letter-spacing:104.220000px;}
.ls34{letter-spacing:118.692000px;}
.ls41{letter-spacing:121.122000px;}
.ls33{letter-spacing:121.716000px;}
.ls3a{letter-spacing:132.294045px;}
.ls3b{letter-spacing:133.890967px;}
.ls39{letter-spacing:138.186000px;}
.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;}
}
.wse1{word-spacing:-138.186000px;}
.wse2{word-spacing:-133.890967px;}
.wsc6{word-spacing:-132.325357px;}
.wsdb{word-spacing:-121.716000px;}
.wse5{word-spacing:-121.122000px;}
.wsdc{word-spacing:-118.692000px;}
.wsdf{word-spacing:-103.788000px;}
.wse4{word-spacing:-100.464400px;}
.wsc8{word-spacing:-87.588000px;}
.wse0{word-spacing:-69.012000px;}
.wsdd{word-spacing:-66.475801px;}
.wsde{word-spacing:-65.912181px;}
.wse3{word-spacing:-65.473810px;}
.wsc9{word-spacing:-31.320000px;}
.ws0{word-spacing:-18.984000px;}
.ws8{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.798000px;}
.wsf7{word-spacing:-12.480000px;}
.ws6c{word-spacing:-12.000000px;}
.ws9{word-spacing:-10.500000px;}
.ws4{word-spacing:-9.450000px;}
.ws3{word-spacing:-9.000000px;}
.ws6b{word-spacing:-8.400000px;}
.ws65{word-spacing:-1.488000px;}
.ws1e{word-spacing:-1.458000px;}
.ws1f{word-spacing:-1.188000px;}
.ws95{word-spacing:-1.056000px;}
.ws60{word-spacing:-0.864000px;}
.wsf2{word-spacing:-0.816000px;}
.wsc0{word-spacing:-0.756000px;}
.ws14a{word-spacing:-0.576000px;}
.ws2b{word-spacing:-0.486000px;}
.ws10e{word-spacing:-0.480000px;}
.ws114{word-spacing:-0.336000px;}
.wsf3{word-spacing:-0.288000px;}
.wse7{word-spacing:-0.270000px;}
.wsca{word-spacing:-0.226800px;}
.ws7{word-spacing:-0.054000px;}
.ws99{word-spacing:-0.037800px;}
.ws1{word-spacing:0.000000px;}
.ws103{word-spacing:0.096000px;}
.ws31{word-spacing:0.108000px;}
.wsc5{word-spacing:0.113400px;}
.ws98{word-spacing:0.144000px;}
.wsbf{word-spacing:0.151200px;}
.wsc4{word-spacing:0.162000px;}
.ws33{word-spacing:0.189000px;}
.ws6{word-spacing:0.216000px;}
.ws28{word-spacing:0.270000px;}
.wsa7{word-spacing:0.324000px;}
.ws32{word-spacing:0.378000px;}
.ws2{word-spacing:0.432000px;}
.ws130{word-spacing:0.480000px;}
.ws83{word-spacing:0.486000px;}
.ws13{word-spacing:0.491400px;}
.ws55{word-spacing:0.540000px;}
.ws134{word-spacing:0.576000px;}
.wsbd{word-spacing:0.594000px;}
.wsaa{word-spacing:0.648000px;}
.wsc3{word-spacing:0.672000px;}
.ws4c{word-spacing:0.702000px;}
.ws139{word-spacing:0.720000px;}
.ws86{word-spacing:0.756000px;}
.ws67{word-spacing:0.768000px;}
.ws9e{word-spacing:0.810000px;}
.ws11b{word-spacing:0.864000px;}
.ws23{word-spacing:0.918000px;}
.ws97{word-spacing:0.960000px;}
.wsd2{word-spacing:0.972000px;}
.wsa{word-spacing:1.050000px;}
.ws63{word-spacing:1.080000px;}
.ws128{word-spacing:1.104000px;}
.ws106{word-spacing:1.152000px;}
.ws70{word-spacing:1.188000px;}
.ws6a{word-spacing:1.200000px;}
.ws21{word-spacing:1.242000px;}
.ws120{word-spacing:1.248000px;}
.wsf1{word-spacing:1.344000px;}
.ws24{word-spacing:1.350000px;}
.ws7e{word-spacing:1.404000px;}
.ws8a{word-spacing:1.512000px;}
.wsf9{word-spacing:1.620000px;}
.ws75{word-spacing:1.674000px;}
.ws3f{word-spacing:1.725000px;}
.ws69{word-spacing:1.728000px;}
.ws30{word-spacing:1.782000px;}
.ws68{word-spacing:1.872000px;}
.ws3c{word-spacing:1.944000px;}
.wsd9{word-spacing:1.998000px;}
.wsc{word-spacing:2.100000px;}
.wsfd{word-spacing:2.106000px;}
.wsfa{word-spacing:2.160000px;}
.ws96{word-spacing:2.208000px;}
.ws72{word-spacing:2.214000px;}
.ws52{word-spacing:2.268000px;}
.wsf6{word-spacing:2.304000px;}
.wsab{word-spacing:2.322000px;}
.ws48{word-spacing:2.430000px;}
.ws11c{word-spacing:2.448000px;}
.ws50{word-spacing:2.484000px;}
.wsf4{word-spacing:2.496000px;}
.ws9b{word-spacing:2.592000px;}
.ws12a{word-spacing:2.688000px;}
.ws82{word-spacing:2.754000px;}
.ws111{word-spacing:2.784000px;}
.ws10d{word-spacing:2.832000px;}
.ws66{word-spacing:2.928000px;}
.wsb{word-spacing:3.000000px;}
.ws20{word-spacing:3.024000px;}
.wsd1{word-spacing:3.078000px;}
.ws9c{word-spacing:3.240000px;}
.ws149{word-spacing:3.264000px;}
.ws5f{word-spacing:3.294000px;}
.ws140{word-spacing:3.312000px;}
.ws1d{word-spacing:3.348000px;}
.ws10f{word-spacing:3.360000px;}
.ws3b{word-spacing:3.402000px;}
.ws105{word-spacing:3.408000px;}
.ws138{word-spacing:3.504000px;}
.wsc2{word-spacing:3.510000px;}
.ws6f{word-spacing:3.564000px;}
.ws132{word-spacing:3.600000px;}
.wsac{word-spacing:3.672000px;}
.wsb8{word-spacing:3.726000px;}
.ws59{word-spacing:3.780000px;}
.ws141{word-spacing:3.792000px;}
.ws80{word-spacing:3.834000px;}
.ws13e{word-spacing:3.840000px;}
.ws3a{word-spacing:3.888000px;}
.ws2e{word-spacing:3.996000px;}
.wsa9{word-spacing:4.158000px;}
.ws148{word-spacing:4.176000px;}
.ws37{word-spacing:4.212000px;}
.wsb2{word-spacing:4.266000px;}
.wsf5{word-spacing:4.272000px;}
.wsbc{word-spacing:4.320000px;}
.wsb6{word-spacing:4.428000px;}
.ws25{word-spacing:4.536000px;}
.ws76{word-spacing:4.590000px;}
.ws4d{word-spacing:4.644000px;}
.ws9d{word-spacing:4.698000px;}
.ws7b{word-spacing:4.752000px;}
.ws5c{word-spacing:4.860000px;}
.wsce{word-spacing:4.914000px;}
.ws77{word-spacing:4.968000px;}
.wsfc{word-spacing:5.022000px;}
.ws10b{word-spacing:5.040000px;}
.wsae{word-spacing:5.076000px;}
.wsb3{word-spacing:5.130000px;}
.ws29{word-spacing:5.184000px;}
.ws6e{word-spacing:5.238000px;}
.ws123{word-spacing:5.280000px;}
.wsed{word-spacing:5.292000px;}
.ws2c{word-spacing:5.346000px;}
.wse{word-spacing:5.400000px;}
.ws2f{word-spacing:5.508000px;}
.wsd5{word-spacing:5.562000px;}
.ws71{word-spacing:5.616000px;}
.ws7c{word-spacing:5.670000px;}
.wsd3{word-spacing:5.724000px;}
.wsd0{word-spacing:5.778000px;}
.ws89{word-spacing:5.832000px;}
.ws127{word-spacing:5.856000px;}
.ws8b{word-spacing:5.940000px;}
.ws117{word-spacing:5.952000px;}
.ws124{word-spacing:6.096000px;}
.wsf{word-spacing:6.102000px;}
.ws49{word-spacing:6.156000px;}
.ws8f{word-spacing:6.210000px;}
.ws22{word-spacing:6.264000px;}
.ws137{word-spacing:6.288000px;}
.wsb0{word-spacing:6.372000px;}
.ws16{word-spacing:6.426000px;}
.ws108{word-spacing:6.432000px;}
.ws5e{word-spacing:6.480000px;}
.ws7d{word-spacing:6.534000px;}
.ws93{word-spacing:6.588000px;}
.ws2d{word-spacing:6.642000px;}
.wsb1{word-spacing:6.696000px;}
.ws39{word-spacing:6.750000px;}
.ws4b{word-spacing:6.804000px;}
.wsbb{word-spacing:6.858000px;}
.ws26{word-spacing:7.020000px;}
.ws10c{word-spacing:7.056000px;}
.ws44{word-spacing:7.074000px;}
.wsec{word-spacing:7.128000px;}
.ws84{word-spacing:7.182000px;}
.wsd6{word-spacing:7.344000px;}
.ws125{word-spacing:7.392000px;}
.wsf0{word-spacing:7.398000px;}
.wsa4{word-spacing:7.452000px;}
.ws3e{word-spacing:7.488000px;}
.ws19{word-spacing:7.506000px;}
.ws61{word-spacing:7.614000px;}
.ws87{word-spacing:7.668000px;}
.wsb5{word-spacing:7.722000px;}
.ws36{word-spacing:7.776000px;}
.ws11e{word-spacing:7.824000px;}
.ws143{word-spacing:7.872000px;}
.ws17{word-spacing:7.938000px;}
.ws12d{word-spacing:7.968000px;}
.ws58{word-spacing:8.046000px;}
.ws12b{word-spacing:8.064000px;}
.ws12{word-spacing:8.100000px;}
.ws13b{word-spacing:8.112000px;}
.ws40{word-spacing:8.154000px;}
.wscf{word-spacing:8.208000px;}
.ws78{word-spacing:8.262000px;}
.ws147{word-spacing:8.304000px;}
.ws4a{word-spacing:8.316000px;}
.ws102{word-spacing:8.352000px;}
.ws1b{word-spacing:8.370000px;}
.ws11d{word-spacing:8.400000px;}
.wsd4{word-spacing:8.478000px;}
.ws113{word-spacing:8.496000px;}
.ws8c{word-spacing:8.532000px;}
.ws4f{word-spacing:8.586000px;}
.ws10a{word-spacing:8.592000px;}
.ws27{word-spacing:8.694000px;}
.wsda{word-spacing:8.802000px;}
.ws15{word-spacing:8.910000px;}
.wse8{word-spacing:8.964000px;}
.wsd8{word-spacing:9.018000px;}
.ws101{word-spacing:9.072000px;}
.ws12f{word-spacing:9.120000px;}
.ws13c{word-spacing:9.168000px;}
.ws1c{word-spacing:9.180000px;}
.ws126{word-spacing:9.216000px;}
.ws38{word-spacing:9.234000px;}
.ws88{word-spacing:9.288000px;}
.ws53{word-spacing:9.396000px;}
.ws74{word-spacing:9.450000px;}
.ws73{word-spacing:9.558000px;}
.ws81{word-spacing:9.612000px;}
.ws14{word-spacing:9.774000px;}
.ws64{word-spacing:9.882000px;}
.ws45{word-spacing:9.936000px;}
.wsfe{word-spacing:9.990000px;}
.wsfb{word-spacing:10.044000px;}
.ws91{word-spacing:10.098000px;}
.ws62{word-spacing:10.152000px;}
.wsff{word-spacing:10.368000px;}
.wsd7{word-spacing:10.422000px;}
.wsea{word-spacing:10.530000px;}
.ws136{word-spacing:10.800000px;}
.ws14b{word-spacing:10.848000px;}
.ws5d{word-spacing:10.962000px;}
.wscc{word-spacing:11.016000px;}
.wsc1{word-spacing:11.070000px;}
.ws129{word-spacing:11.184000px;}
.ws92{word-spacing:11.232000px;}
.ws9f{word-spacing:11.340000px;}
.ws115{word-spacing:11.424000px;}
.ws5b{word-spacing:11.448000px;}
.wsa8{word-spacing:11.664000px;}
.ws121{word-spacing:11.712000px;}
.ws5a{word-spacing:11.880000px;}
.ws56{word-spacing:11.988000px;}
.ws94{word-spacing:12.042000px;}
.wsba{word-spacing:12.096000px;}
.wsbe{word-spacing:12.204000px;}
.ws12c{word-spacing:12.336000px;}
.wscb{word-spacing:12.420000px;}
.ws112{word-spacing:12.480000px;}
.ws85{word-spacing:12.528000px;}
.ws6d{word-spacing:12.636000px;}
.ws11f{word-spacing:12.672000px;}
.ws46{word-spacing:12.798000px;}
.ws79{word-spacing:12.852000px;}
.ws57{word-spacing:12.960000px;}
.wsaf{word-spacing:13.014000px;}
.ws7a{word-spacing:13.122000px;}
.wsb9{word-spacing:13.230000px;}
.ws7f{word-spacing:13.284000px;}
.ws116{word-spacing:13.296000px;}
.ws100{word-spacing:13.392000px;}
.ws11a{word-spacing:13.440000px;}
.wsef{word-spacing:13.662000px;}
.ws109{word-spacing:13.728000px;}
.ws47{word-spacing:13.770000px;}
.wsb7{word-spacing:13.878000px;}
.ws8e{word-spacing:13.986000px;}
.ws107{word-spacing:14.016000px;}
.ws144{word-spacing:14.064000px;}
.wsb4{word-spacing:14.256000px;}
.ws41{word-spacing:14.310000px;}
.wsa3{word-spacing:14.364000px;}
.ws13a{word-spacing:14.400000px;}
.wsa6{word-spacing:14.418000px;}
.ws42{word-spacing:14.472000px;}
.ws2a{word-spacing:14.580000px;}
.ws131{word-spacing:14.688000px;}
.ws90{word-spacing:14.742000px;}
.wsa0{word-spacing:14.796000px;}
.ws119{word-spacing:15.024000px;}
.wsa5{word-spacing:15.282000px;}
.ws13f{word-spacing:15.312000px;}
.ws110{word-spacing:15.360000px;}
.wseb{word-spacing:15.390000px;}
.ws8d{word-spacing:15.444000px;}
.ws43{word-spacing:15.498000px;}
.ws4e{word-spacing:15.606000px;}
.wsad{word-spacing:16.524000px;}
.wsa2{word-spacing:17.010000px;}
.wscd{word-spacing:17.118000px;}
.ws34{word-spacing:17.442000px;}
.ws13d{word-spacing:17.952000px;}
.ws54{word-spacing:17.982000px;}
.ws135{word-spacing:18.144000px;}
.wsf8{word-spacing:18.414000px;}
.wse9{word-spacing:18.954000px;}
.wsc7{word-spacing:19.462558px;}
.ws146{word-spacing:19.488000px;}
.ws11{word-spacing:20.898000px;}
.ws104{word-spacing:21.216000px;}
.ws51{word-spacing:22.194000px;}
.wsd{word-spacing:22.356000px;}
.ws3d{word-spacing:22.626000px;}
.ws9a{word-spacing:23.868000px;}
.ws12e{word-spacing:24.000000px;}
.ws122{word-spacing:24.144000px;}
.ws10{word-spacing:24.894000px;}
.wsee{word-spacing:25.326000px;}
.ws1a{word-spacing:25.758000px;}
.wsa1{word-spacing:25.812000px;}
.ws18{word-spacing:27.324000px;}
.ws133{word-spacing:28.608000px;}
.ws145{word-spacing:29.376000px;}
.ws142{word-spacing:30.864000px;}
.ws35{word-spacing:32.076000px;}
.ws118{word-spacing:38.976000px;}
.wse6{word-spacing:554.634000px;}
._a{margin-left:-2976.564000px;}
._16{margin-left:-66.287927px;}
._15{margin-left:-25.596000px;}
._6{margin-left:-8.400000px;}
._2{margin-left:-7.353600px;}
._7{margin-left:-5.888400px;}
._3{margin-left:-4.284000px;}
._5{margin-left:-3.000000px;}
._1{margin-left:-1.996800px;}
._8{width:1.591800px;}
._c{width:3.289800px;}
._f{width:4.320000px;}
._0{width:5.587200px;}
._e{width:7.153800px;}
._9{width:8.158200px;}
._10{width:9.945600px;}
._18{width:11.203200px;}
._d{width:12.251400px;}
._11{width:13.515000px;}
._14{width:14.719200px;}
._12{width:15.826200px;}
._1a{width:18.144000px;}
._1c{width:19.483200px;}
._13{width:24.228600px;}
._19{width:28.584000px;}
._17{width:29.896800px;}
._1b{width:31.850400px;}
._b{width:437.569200px;}
._4{width:439.255800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs13{font-size:21.000000px;}
.fse{font-size:22.500000px;}
.fs11{font-size:29.224800px;}
.fsc{font-size:29.880000px;}
.fsf{font-size:31.312200px;}
.fsd{font-size:33.600000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:37.800000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs12{font-size:50.400000px;}
.fs4{font-size:54.000000px;}
.fs10{font-size:55.291359px;}
.fs9{font-size:58.500000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:69.000000px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs7{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.005550px;}
.y162{bottom:5.483850px;}
.y180{bottom:7.499400px;}
.y15a{bottom:7.499550px;}
.yc{bottom:8.040000px;}
.y16d{bottom:8.399550px;}
.y161{bottom:13.546350px;}
.y4d{bottom:14.251050px;}
.yef{bottom:51.912750px;}
.y7f{bottom:52.233900px;}
.y1b{bottom:52.471350px;}
.y14{bottom:77.715000px;}
.y15e{bottom:92.976000px;}
.y15f{bottom:98.459850px;}
.y13{bottom:99.795000px;}
.y1e7{bottom:99.870000px;}
.y1b9{bottom:99.893400px;}
.y30{bottom:99.921300px;}
.y93{bottom:100.178400px;}
.y146{bottom:100.187400px;}
.y64{bottom:100.190400px;}
.ycd{bottom:100.271400px;}
.y11d{bottom:100.295400px;}
.yee{bottom:100.365900px;}
.y15d{bottom:100.475550px;}
.y163{bottom:101.225400px;}
.y160{bottom:106.522741px;}
.y18{bottom:113.670000px;}
.y1b8{bottom:114.137400px;}
.y1e6{bottom:114.870000px;}
.y173{bottom:116.678400px;}
.y145{bottom:116.684400px;}
.y63{bottom:116.687400px;}
.y92{bottom:116.693400px;}
.ycc{bottom:116.768400px;}
.y11c{bottom:116.792400px;}
.yed{bottom:116.862900px;}
.y7e{bottom:127.081950px;}
.y1b7{bottom:128.381400px;}
.y1e5{bottom:129.870000px;}
.y144{bottom:133.181400px;}
.y62{bottom:133.184400px;}
.y172{bottom:133.187400px;}
.y91{bottom:133.190400px;}
.ycb{bottom:133.265400px;}
.y11b{bottom:133.289400px;}
.yec{bottom:133.359900px;}
.y17{bottom:135.750000px;}
.y7d{bottom:140.581950px;}
.y1b6{bottom:142.631400px;}
.y1e4{bottom:144.870000px;}
.y143{bottom:149.678400px;}
.y61{bottom:149.681400px;}
.y171{bottom:149.684400px;}
.y90{bottom:149.687400px;}
.yca{bottom:149.762400px;}
.y11a{bottom:149.786400px;}
.yeb{bottom:149.856900px;}
.y7c{bottom:154.081950px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y1b5{bottom:156.887400px;}
.y16{bottom:157.830000px;}
.y1e3{bottom:159.870000px;}
.y60{bottom:166.178400px;}
.y170{bottom:166.181400px;}
.y8f{bottom:166.184400px;}
.y142{bottom:166.199400px;}
.yc9{bottom:166.259400px;}
.y119{bottom:166.283400px;}
.yea{bottom:166.353900px;}
.y7b{bottom:167.581950px;}
.y1b4{bottom:171.131400px;}
.y1e2{bottom:174.870000px;}
.y16f{bottom:182.678400px;}
.y8e{bottom:182.681400px;}
.y5f{bottom:182.687400px;}
.y141{bottom:182.696400px;}
.ya6{bottom:182.730900px;}
.yc8{bottom:182.756400px;}
.y118{bottom:182.780400px;}
.ye9{bottom:182.850900px;}
.y1b3{bottom:185.393400px;}
.y1e1{bottom:189.870000px;}
.y2f{bottom:191.395800px;}
.y16c{bottom:191.676000px;}
.y16e{bottom:199.175400px;}
.y8d{bottom:199.178400px;}
.y16b{bottom:199.181400px;}
.y5e{bottom:199.184400px;}
.y140{bottom:199.193400px;}
.ya5{bottom:199.227900px;}
.yc7{bottom:199.253400px;}
.y117{bottom:199.277400px;}
.ye8{bottom:199.347900px;}
.y1b2{bottom:199.637400px;}
.y1e0{bottom:204.870000px;}
.y2e{bottom:204.895800px;}
.y159{bottom:208.176000px;}
.y15c{bottom:212.206800px;}
.y1b1{bottom:213.881400px;}
.y8c{bottom:215.675400px;}
.y15b{bottom:215.675550px;}
.y16a{bottom:215.678400px;}
.y5d{bottom:215.681400px;}
.y158{bottom:215.684400px;}
.y13f{bottom:215.690400px;}
.ya4{bottom:215.724900px;}
.yc6{bottom:215.750400px;}
.y116{bottom:215.774400px;}
.ye7{bottom:215.844900px;}
.y1df{bottom:219.870000px;}
.y2d{bottom:222.895800px;}
.y1b0{bottom:228.131400px;}
.y5c{bottom:232.178400px;}
.y157{bottom:232.181400px;}
.y13e{bottom:232.187400px;}
.ya3{bottom:232.221900px;}
.yc5{bottom:232.247400px;}
.y115{bottom:232.271400px;}
.ye6{bottom:232.341900px;}
.y1de{bottom:234.870000px;}
.y2c{bottom:236.395800px;}
.y1af{bottom:242.477400px;}
.y8b{bottom:242.675400px;}
.y5b{bottom:248.675400px;}
.y156{bottom:248.678400px;}
.y13d{bottom:248.684400px;}
.ya2{bottom:248.718900px;}
.yc4{bottom:248.744400px;}
.y114{bottom:248.768400px;}
.ye5{bottom:248.838900px;}
.y1dd{bottom:249.870000px;}
.y2b{bottom:249.895800px;}
.y1ae{bottom:256.721400px;}
.y2a{bottom:263.395800px;}
.y1dc{bottom:264.870000px;}
.y169{bottom:265.178400px;}
.y13c{bottom:265.181400px;}
.y5a{bottom:265.208400px;}
.ya1{bottom:265.215900px;}
.yc3{bottom:265.241400px;}
.y113{bottom:265.265400px;}
.ye4{bottom:265.335900px;}
.y1ad{bottom:270.965400px;}
.y29{bottom:276.895800px;}
.y1db{bottom:279.870000px;}
.y13b{bottom:281.678400px;}
.y168{bottom:281.681400px;}
.y59{bottom:281.705400px;}
.ya0{bottom:281.712900px;}
.yc2{bottom:281.738400px;}
.y112{bottom:281.762400px;}
.ye3{bottom:281.832900px;}
.y1ac{bottom:285.209400px;}
.y28{bottom:290.395800px;}
.y1da{bottom:294.870000px;}
.y13a{bottom:298.178400px;}
.y58{bottom:298.202400px;}
.y8a{bottom:298.208400px;}
.y9f{bottom:298.209900px;}
.y155{bottom:298.220400px;}
.yc1{bottom:298.235400px;}
.y111{bottom:298.259400px;}
.ye2{bottom:298.329900px;}
.y1ab{bottom:299.453400px;}
.y27{bottom:306.895800px;}
.y1d9{bottom:309.870000px;}
.y1aa{bottom:313.697400px;}
.y167{bottom:314.678400px;}
.y139{bottom:314.681400px;}
.y57{bottom:314.699400px;}
.y89{bottom:314.705400px;}
.y9e{bottom:314.706900px;}
.y154{bottom:314.717400px;}
.yc0{bottom:314.732400px;}
.y110{bottom:314.756400px;}
.ye1{bottom:314.826900px;}
.y26{bottom:320.395800px;}
.y1d8{bottom:324.870000px;}
.y1a9{bottom:327.941400px;}
.y138{bottom:331.178400px;}
.y56{bottom:331.196400px;}
.y88{bottom:331.202400px;}
.y9d{bottom:331.203900px;}
.y153{bottom:331.214400px;}
.ybf{bottom:331.229400px;}
.y10f{bottom:331.253400px;}
.ye0{bottom:331.323900px;}
.y25{bottom:333.895800px;}
.y1d7{bottom:339.870000px;}
.y1a8{bottom:342.185400px;}
.ya{bottom:344.680500px;}
.y24{bottom:347.395800px;}
.y137{bottom:347.684400px;}
.y55{bottom:347.693400px;}
.y87{bottom:347.699400px;}
.y9c{bottom:347.700900px;}
.y152{bottom:347.711400px;}
.ybe{bottom:347.726400px;}
.y10e{bottom:347.750400px;}
.ydf{bottom:347.820900px;}
.y1a7{bottom:356.429400px;}
.y23{bottom:363.895800px;}
.y136{bottom:364.181400px;}
.y54{bottom:364.190400px;}
.y86{bottom:364.196400px;}
.y9b{bottom:364.197900px;}
.y151{bottom:364.208400px;}
.ybd{bottom:364.223400px;}
.y10d{bottom:364.247400px;}
.yde{bottom:364.317900px;}
.y1a6{bottom:370.673400px;}
.y22{bottom:377.395800px;}
.y135{bottom:380.678400px;}
.y53{bottom:380.687400px;}
.y85{bottom:380.693400px;}
.y9a{bottom:380.694900px;}
.y150{bottom:380.705400px;}
.ybc{bottom:380.720400px;}
.y10c{bottom:380.744400px;}
.ydd{bottom:380.814900px;}
.y1a5{bottom:384.917400px;}
.yd{bottom:386.490000px;}
.y21{bottom:390.895800px;}
.y9{bottom:395.689500px;}
.y52{bottom:397.184400px;}
.y84{bottom:397.190400px;}
.y99{bottom:397.191900px;}
.y14f{bottom:397.202400px;}
.ybb{bottom:397.217400px;}
.y10b{bottom:397.241400px;}
.ydc{bottom:397.311900px;}
.y134{bottom:397.362900px;}
.y1a4{bottom:399.161400px;}
.y1d6{bottom:399.870000px;}
.y20{bottom:404.395800px;}
.y1a3{bottom:413.405400px;}
.y51{bottom:413.681400px;}
.y83{bottom:413.687400px;}
.y98{bottom:413.688900px;}
.y14e{bottom:413.699400px;}
.yba{bottom:413.714400px;}
.y10a{bottom:413.738400px;}
.ydb{bottom:413.808900px;}
.y133{bottom:413.859900px;}
.y1d5{bottom:414.870000px;}
.y1a2{bottom:427.649400px;}
.y1d4{bottom:429.870000px;}
.y50{bottom:430.178400px;}
.y82{bottom:430.184400px;}
.y97{bottom:430.185900px;}
.y14d{bottom:430.196400px;}
.yb9{bottom:430.211400px;}
.y109{bottom:430.235400px;}
.yda{bottom:430.305900px;}
.y132{bottom:430.356900px;}
.yb{bottom:434.850000px;}
.y1a1{bottom:441.893400px;}
.y4c{bottom:443.674500px;}
.y4f{bottom:446.675400px;}
.y7a{bottom:446.681400px;}
.y96{bottom:446.682900px;}
.y166{bottom:446.687400px;}
.y4b{bottom:446.693400px;}
.y8{bottom:446.698500px;}
.yb8{bottom:446.708400px;}
.y108{bottom:446.732400px;}
.yd9{bottom:446.802900px;}
.y131{bottom:446.853900px;}
.y1a0{bottom:456.137400px;}
.y1d3{bottom:458.370000px;}
.y79{bottom:463.178400px;}
.y95{bottom:463.179900px;}
.y165{bottom:463.184400px;}
.y4a{bottom:463.190400px;}
.yb7{bottom:463.205400px;}
.y107{bottom:463.229400px;}
.yd8{bottom:463.299900px;}
.y130{bottom:463.350900px;}
.y19f{bottom:470.381400px;}
.y81{bottom:479.675400px;}
.y94{bottom:479.676900px;}
.y78{bottom:479.681400px;}
.y49{bottom:479.687400px;}
.yb6{bottom:479.702400px;}
.y106{bottom:479.726400px;}
.yd7{bottom:479.796900px;}
.y12f{bottom:479.847900px;}
.y1d2{bottom:481.620000px;}
.y19e{bottom:484.643400px;}
.y10{bottom:488.055000px;}
.y77{bottom:496.178400px;}
.y48{bottom:496.184400px;}
.yb5{bottom:496.199400px;}
.y105{bottom:496.223400px;}
.yd6{bottom:496.293900px;}
.y12e{bottom:496.344900px;}
.y7{bottom:497.707500px;}
.y19d{bottom:498.887400px;}
.y76{bottom:512.678400px;}
.y47{bottom:512.681400px;}
.yb4{bottom:512.696400px;}
.y104{bottom:512.720400px;}
.yd5{bottom:512.790900px;}
.y12d{bottom:512.841900px;}
.y19c{bottom:513.131400px;}
.yac{bottom:514.627650px;}
.y19b{bottom:527.375400px;}
.yab{bottom:528.871650px;}
.y75{bottom:529.175400px;}
.y46{bottom:529.178400px;}
.yb3{bottom:529.193400px;}
.y103{bottom:529.217400px;}
.yd4{bottom:529.287900px;}
.y12c{bottom:529.338900px;}
.y1d1{bottom:536.076000px;}
.y11{bottom:538.230000px;}
.yaa{bottom:543.115650px;}
.y14c{bottom:545.681400px;}
.y45{bottom:545.684400px;}
.yb2{bottom:545.690400px;}
.y102{bottom:545.714400px;}
.yd3{bottom:545.784900px;}
.y12b{bottom:545.835900px;}
.y6{bottom:548.716500px;}
.y1d0{bottom:550.320000px;}
.y19a{bottom:550.625400px;}
.ya9{bottom:557.359650px;}
.y74{bottom:560.403600px;}
.y14b{bottom:562.178400px;}
.y44{bottom:562.181400px;}
.yb1{bottom:562.187400px;}
.y101{bottom:562.211400px;}
.yd2{bottom:562.281900px;}
.y12a{bottom:562.332900px;}
.ya8{bottom:571.603650px;}
.y1cf{bottom:573.570000px;}
.y14a{bottom:578.675400px;}
.y43{bottom:578.678400px;}
.y164{bottom:578.679900px;}
.yb0{bottom:578.684400px;}
.y100{bottom:578.708400px;}
.yd1{bottom:578.778900px;}
.y129{bottom:578.829900px;}
.ya7{bottom:585.847650px;}
.y19{bottom:589.605000px;}
.y207{bottom:594.163650px;}
.yaf{bottom:595.181400px;}
.y42{bottom:595.196400px;}
.yff{bottom:595.205400px;}
.yd0{bottom:595.275900px;}
.y128{bottom:595.326900px;}
.y5{bottom:599.725500px;}
.y206{bottom:609.163650px;}
.y17c{bottom:611.502900px;}
.yae{bottom:611.678400px;}
.y41{bottom:611.693400px;}
.yfe{bottom:611.702400px;}
.y199{bottom:611.723400px;}
.ycf{bottom:611.772900px;}
.y127{bottom:611.823900px;}
.y205{bottom:624.163650px;}
.y17b{bottom:625.746900px;}
.y71{bottom:626.134350px;}
.y1ce{bottom:628.020000px;}
.yad{bottom:628.175400px;}
.y40{bottom:628.190400px;}
.yfd{bottom:628.199400px;}
.y198{bottom:628.220400px;}
.yce{bottom:628.269900px;}
.y126{bottom:628.320900px;}
.ye{bottom:631.920000px;}
.y204{bottom:639.163650px;}
.y17a{bottom:639.990900px;}
.y3f{bottom:644.687400px;}
.yfc{bottom:644.696400px;}
.y197{bottom:644.717400px;}
.y125{bottom:644.817900px;}
.y70{bottom:645.629475px;}
.y1cd{bottom:651.270000px;}
.y203{bottom:654.163650px;}
.y179{bottom:654.234900px;}
.y3e{bottom:661.184400px;}
.yfb{bottom:661.193400px;}
.y196{bottom:661.214400px;}
.y124{bottom:661.314900px;}
.y6f{bottom:665.124600px;}
.yf4{bottom:665.645250px;}
.y178{bottom:668.478900px;}
.y202{bottom:669.163650px;}
.y3d{bottom:677.681400px;}
.yfa{bottom:677.690400px;}
.y195{bottom:677.711400px;}
.y123{bottom:677.811900px;}
.yf3{bottom:679.889250px;}
.y177{bottom:682.722900px;}
.y201{bottom:684.163650px;}
.y6e{bottom:684.619725px;}
.yf2{bottom:694.133250px;}
.y3c{bottom:694.178400px;}
.yf9{bottom:694.187400px;}
.y194{bottom:694.208400px;}
.y122{bottom:694.308900px;}
.y176{bottom:696.966900px;}
.y200{bottom:699.163650px;}
.y6d{bottom:704.114850px;}
.y1cc{bottom:705.624000px;}
.yf1{bottom:708.377250px;}
.yf8{bottom:710.684400px;}
.y3b{bottom:710.690400px;}
.y193{bottom:710.705400px;}
.y121{bottom:710.805900px;}
.y175{bottom:711.210900px;}
.y1ff{bottom:714.163650px;}
.y1cb{bottom:719.868000px;}
.yf0{bottom:722.621250px;}
.y6c{bottom:723.609975px;}
.y174{bottom:725.454900px;}
.yf7{bottom:727.181400px;}
.y3a{bottom:727.187400px;}
.y192{bottom:727.202400px;}
.y120{bottom:727.302900px;}
.y1fe{bottom:729.163650px;}
.y1ca{bottom:734.112000px;}
.y6b{bottom:743.105100px;}
.yf6{bottom:743.678400px;}
.y39{bottom:743.684400px;}
.y191{bottom:743.699400px;}
.y11f{bottom:743.799900px;}
.y1fd{bottom:744.163650px;}
.y1c9{bottom:748.356000px;}
.y1fc{bottom:759.163650px;}
.yf5{bottom:760.175400px;}
.y38{bottom:760.181400px;}
.y190{bottom:760.196400px;}
.y11e{bottom:760.296900px;}
.y1c8{bottom:762.600000px;}
.y6a{bottom:762.600225px;}
.y1fb{bottom:774.163650px;}
.y37{bottom:776.678400px;}
.y18f{bottom:776.693400px;}
.y1c7{bottom:776.844000px;}
.y4{bottom:778.225500px;}
.y69{bottom:782.095350px;}
.y1fa{bottom:789.163650px;}
.y1c6{bottom:791.088000px;}
.y36{bottom:793.186800px;}
.y18e{bottom:793.190400px;}
.y68{bottom:801.590475px;}
.y149{bottom:804.126000px;}
.y1f9{bottom:804.163650px;}
.y1c5{bottom:805.332000px;}
.y35{bottom:809.683800px;}
.y18d{bottom:809.687400px;}
.y12{bottom:815.670000px;}
.y148{bottom:818.370000px;}
.y1f8{bottom:819.163650px;}
.y1c4{bottom:819.576000px;}
.y67{bottom:821.085600px;}
.y34{bottom:826.180800px;}
.y18c{bottom:826.184400px;}
.y147{bottom:832.614000px;}
.y1c3{bottom:833.820000px;}
.y1f7{bottom:834.163650px;}
.y66{bottom:840.580725px;}
.y33{bottom:842.677800px;}
.y18b{bottom:842.681400px;}
.y1f6{bottom:849.163650px;}
.y1c2{bottom:857.070000px;}
.y32{bottom:859.174800px;}
.y18a{bottom:859.178400px;}
.y65{bottom:860.075850px;}
.y1f5{bottom:864.163650px;}
.y31{bottom:875.671800px;}
.y189{bottom:875.675400px;}
.y1f4{bottom:879.163650px;}
.y1f3{bottom:894.163650px;}
.y188{bottom:902.675400px;}
.y3{bottom:905.716500px;}
.y1f2{bottom:909.163650px;}
.y1c1{bottom:911.376000px;}
.y1f1{bottom:924.163650px;}
.y1c0{bottom:925.620000px;}
.y1f{bottom:938.304450px;}
.y1f0{bottom:939.163650px;}
.y1bf{bottom:948.870000px;}
.y1ef{bottom:954.163650px;}
.y187{bottom:958.190400px;}
.y2{bottom:964.228500px;}
.y1e{bottom:965.310450px;}
.y1ee{bottom:969.163650px;}
.y186{bottom:974.687400px;}
.y1ed{bottom:984.163650px;}
.y1{bottom:989.716500px;}
.y185{bottom:991.184400px;}
.y1ec{bottom:999.163650px;}
.y1be{bottom:1003.182000px;}
.y184{bottom:1007.681400px;}
.y1d{bottom:1010.724300px;}
.y1eb{bottom:1014.163650px;}
.y1bd{bottom:1017.426000px;}
.y183{bottom:1024.178400px;}
.y1ea{bottom:1029.163650px;}
.y1bc{bottom:1031.682000px;}
.y17f{bottom:1033.176000px;}
.y182{bottom:1037.206650px;}
.y181{bottom:1040.675400px;}
.y17e{bottom:1040.678400px;}
.y1e9{bottom:1044.163650px;}
.y1c{bottom:1045.224300px;}
.y1bb{bottom:1045.926000px;}
.y17d{bottom:1057.175400px;}
.y1e8{bottom:1059.163650px;}
.y1ba{bottom:1060.170000px;}
.y1a{bottom:1098.358800px;}
.y73{bottom:1098.614850px;}
.y72{bottom:1124.511000px;}
.y80{bottom:1150.065000px;}
.h2a{height:16.582500px;}
.h15{height:19.500000px;}
.h31{height:20.998500px;}
.h29{height:21.000000px;}
.h2c{height:22.498500px;}
.h2d{height:23.077091px;}
.h22{height:29.325586px;}
.h4{height:33.000000px;}
.hb{height:35.616000px;}
.h20{height:35.658000px;}
.h16{height:35.964000px;}
.h32{height:37.144800px;}
.h17{height:39.798000px;}
.hc{height:40.068000px;}
.hf{height:40.752000px;}
.h1b{height:43.407000px;}
.h25{height:43.680000px;}
.h35{height:44.918400px;}
.h37{height:45.254400px;}
.h38{height:45.278400px;}
.h36{height:45.302400px;}
.h26{height:45.326400px;}
.h30{height:46.896000px;}
.h2f{height:46.968000px;}
.h10{height:46.980000px;}
.h34{height:47.304000px;}
.h39{height:47.376000px;}
.h18{height:49.140000px;}
.h2e{height:50.315137px;}
.h27{height:51.036000px;}
.h1d{height:51.198000px;}
.h24{height:51.564000px;}
.h19{height:51.654000px;}
.h28{height:51.690000px;}
.h13{height:51.702000px;}
.h23{height:51.714000px;}
.h12{height:51.726000px;}
.h1a{height:51.738000px;}
.h11{height:51.741000px;}
.h14{height:51.750000px;}
.h1f{height:51.762000px;}
.h1e{height:51.774000px;}
.h1c{height:55.152000px;}
.h3{height:58.406250px;}
.h2b{height:60.854400px;}
.h33{height:60.855000px;}
.he{height:62.412000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hd{height:89.040000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h21{height:1173.540000px;}
.h9{height:1173.543000px;}
.ha{height:1173.750000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:8.250000px;}
.wd{width:14.290500px;}
.wb{width:15.750000px;}
.wc{width:205.534500px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.921650px;}
.x3{left:3.000000px;}
.x2c{left:15.128700px;}
.x2b{left:24.503700px;}
.x17{left:72.283500px;}
.xc{left:76.535400px;}
.x37{left:77.915400px;}
.x38{left:79.295400px;}
.x36{left:82.895400px;}
.x1b{left:87.282000px;}
.x1a{left:91.533900px;}
.x39{left:100.535400px;}
.xd{left:103.041300px;}
.x21{left:110.086500px;}
.x22{left:118.337265px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x29{left:131.847450px;}
.x23{left:142.666844px;}
.x1f{left:147.024000px;}
.x28{left:151.195950px;}
.x24{left:155.512674px;}
.x20{left:165.503700px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x25{left:204.633688px;}
.x26{left:212.696579px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x27{left:237.495842px;}
.x2a{left:266.602200px;}
.x2d{left:282.070950px;}
.x16{left:293.263350px;}
.xb{left:298.150050px;}
.x1c{left:315.999000px;}
.x1e{left:324.201600px;}
.x1d{left:328.326600px;}
.x18{left:454.983750px;}
.xf{left:459.221550px;}
.x35{left:460.980600px;}
.x33{left:462.360600px;}
.x19{left:469.982250px;}
.x10{left:474.221550px;}
.x34{left:478.980600px;}
.x3a{left:483.251400px;}
.x11{left:486.054000px;}
.x13{left:494.236350px;}
.x2e{left:499.155000px;}
.x2f{left:513.512850px;}
.xe{left:578.517750px;}
.x32{left:651.612600px;}
.x31{left:681.648600px;}
.x30{left:704.892600px;}
.x15{left:738.878100px;}
.xa{left:742.892100px;}
.x14{left:870.450000px;}
@media print{
.v4{vertical-align:-16.800000pt;}
.v6{vertical-align:-9.600000pt;}
.va{vertical-align:-8.332267pt;}
.v2{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.732800pt;}
.v1{vertical-align:5.146667pt;}
.v9{vertical-align:9.600000pt;}
.v7{vertical-align:12.332800pt;}
.v5{vertical-align:14.933333pt;}
.v3{vertical-align:16.760000pt;}
.ls52{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.436800pt;}
.ls4{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.168000pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.134400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.081067pt;}
.ls2a{letter-spacing:0.144000pt;}
.ls2f{letter-spacing:0.148267pt;}
.ls21{letter-spacing:0.153067pt;}
.ls1e{letter-spacing:0.167467pt;}
.ls26{letter-spacing:0.168000pt;}
.ls22{letter-spacing:0.168533pt;}
.ls44{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.201600pt;}
.ls2d{letter-spacing:0.218133pt;}
.ls29{letter-spacing:0.219200pt;}
.ls23{letter-spacing:0.220800pt;}
.ls2b{letter-spacing:0.222933pt;}
.ls31{letter-spacing:0.226133pt;}
.ls27{letter-spacing:0.228267pt;}
.ls20{letter-spacing:0.229333pt;}
.ls1f{letter-spacing:0.229867pt;}
.ls1d{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls25{letter-spacing:0.249600pt;}
.ls2e{letter-spacing:0.262933pt;}
.ls28{letter-spacing:0.264000pt;}
.ls4a{letter-spacing:0.298133pt;}
.ls49{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.336000pt;}
.ls48{letter-spacing:0.341333pt;}
.ls4c{letter-spacing:0.362667pt;}
.ls2{letter-spacing:0.384000pt;}
.ls4d{letter-spacing:0.385067pt;}
.ls55{letter-spacing:0.405333pt;}
.ls46{letter-spacing:0.426667pt;}
.ls42{letter-spacing:0.480000pt;}
.ls5a{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.528000pt;}
.ls4b{letter-spacing:0.554667pt;}
.ls16{letter-spacing:0.597333pt;}
.ls53{letter-spacing:0.635733pt;}
.ls17{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.725333pt;}
.ls9{letter-spacing:0.896000pt;}
.ls1a{letter-spacing:0.912000pt;}
.ls3{letter-spacing:0.933333pt;}
.ls4e{letter-spacing:1.066667pt;}
.ls4f{letter-spacing:1.070933pt;}
.ls56{letter-spacing:1.143467pt;}
.ls32{letter-spacing:1.152000pt;}
.ls14{letter-spacing:1.200000pt;}
.lsc{letter-spacing:1.578667pt;}
.lsd{letter-spacing:1.621333pt;}
.lsb{letter-spacing:1.664000pt;}
.ls5c{letter-spacing:2.227200pt;}
.ls50{letter-spacing:2.491733pt;}
.ls47{letter-spacing:2.944000pt;}
.ls57{letter-spacing:3.208533pt;}
.ls54{letter-spacing:3.276800pt;}
.ls58{letter-spacing:3.485867pt;}
.ls10{letter-spacing:5.280000pt;}
.ls1{letter-spacing:7.536000pt;}
.ls11{letter-spacing:8.544000pt;}
.ls5b{letter-spacing:10.065067pt;}
.ls51{letter-spacing:11.072000pt;}
.ls45{letter-spacing:12.288000pt;}
.ls59{letter-spacing:12.915200pt;}
.ls1b{letter-spacing:13.059063pt;}
.ls43{letter-spacing:13.491063pt;}
.ls30{letter-spacing:16.766400pt;}
.ls3c{letter-spacing:58.198942pt;}
.ls36{letter-spacing:58.588605pt;}
.ls35{letter-spacing:59.089601pt;}
.ls40{letter-spacing:59.472000pt;}
.ls38{letter-spacing:61.344000pt;}
.ls3d{letter-spacing:88.269583pt;}
.ls3e{letter-spacing:89.301689pt;}
.ls37{letter-spacing:92.256000pt;}
.ls3f{letter-spacing:92.640000pt;}
.ls34{letter-spacing:105.504000pt;}
.ls41{letter-spacing:107.664000pt;}
.ls33{letter-spacing:108.192000pt;}
.ls3a{letter-spacing:117.594707pt;}
.ls3b{letter-spacing:119.014193pt;}
.ls39{letter-spacing:122.832000pt;}
.wse1{word-spacing:-122.832000pt;}
.wse2{word-spacing:-119.014193pt;}
.wsc6{word-spacing:-117.622540pt;}
.wsdb{word-spacing:-108.192000pt;}
.wse5{word-spacing:-107.664000pt;}
.wsdc{word-spacing:-105.504000pt;}
.wsdf{word-spacing:-92.256000pt;}
.wse4{word-spacing:-89.301689pt;}
.wsc8{word-spacing:-77.856000pt;}
.wse0{word-spacing:-61.344000pt;}
.wsdd{word-spacing:-59.089601pt;}
.wsde{word-spacing:-58.588605pt;}
.wse3{word-spacing:-58.198942pt;}
.wsc9{word-spacing:-27.840000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws8{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.376000pt;}
.wsf7{word-spacing:-11.093333pt;}
.ws6c{word-spacing:-10.666667pt;}
.ws9{word-spacing:-9.333333pt;}
.ws4{word-spacing:-8.400000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws6b{word-spacing:-7.466667pt;}
.ws65{word-spacing:-1.322667pt;}
.ws1e{word-spacing:-1.296000pt;}
.ws1f{word-spacing:-1.056000pt;}
.ws95{word-spacing:-0.938667pt;}
.ws60{word-spacing:-0.768000pt;}
.wsf2{word-spacing:-0.725333pt;}
.wsc0{word-spacing:-0.672000pt;}
.ws14a{word-spacing:-0.512000pt;}
.ws2b{word-spacing:-0.432000pt;}
.ws10e{word-spacing:-0.426667pt;}
.ws114{word-spacing:-0.298667pt;}
.wsf3{word-spacing:-0.256000pt;}
.wse7{word-spacing:-0.240000pt;}
.wsca{word-spacing:-0.201600pt;}
.ws7{word-spacing:-0.048000pt;}
.ws99{word-spacing:-0.033600pt;}
.ws1{word-spacing:0.000000pt;}
.ws103{word-spacing:0.085333pt;}
.ws31{word-spacing:0.096000pt;}
.wsc5{word-spacing:0.100800pt;}
.ws98{word-spacing:0.128000pt;}
.wsbf{word-spacing:0.134400pt;}
.wsc4{word-spacing:0.144000pt;}
.ws33{word-spacing:0.168000pt;}
.ws6{word-spacing:0.192000pt;}
.ws28{word-spacing:0.240000pt;}
.wsa7{word-spacing:0.288000pt;}
.ws32{word-spacing:0.336000pt;}
.ws2{word-spacing:0.384000pt;}
.ws130{word-spacing:0.426667pt;}
.ws83{word-spacing:0.432000pt;}
.ws13{word-spacing:0.436800pt;}
.ws55{word-spacing:0.480000pt;}
.ws134{word-spacing:0.512000pt;}
.wsbd{word-spacing:0.528000pt;}
.wsaa{word-spacing:0.576000pt;}
.wsc3{word-spacing:0.597333pt;}
.ws4c{word-spacing:0.624000pt;}
.ws139{word-spacing:0.640000pt;}
.ws86{word-spacing:0.672000pt;}
.ws67{word-spacing:0.682667pt;}
.ws9e{word-spacing:0.720000pt;}
.ws11b{word-spacing:0.768000pt;}
.ws23{word-spacing:0.816000pt;}
.ws97{word-spacing:0.853333pt;}
.wsd2{word-spacing:0.864000pt;}
.wsa{word-spacing:0.933333pt;}
.ws63{word-spacing:0.960000pt;}
.ws128{word-spacing:0.981333pt;}
.ws106{word-spacing:1.024000pt;}
.ws70{word-spacing:1.056000pt;}
.ws6a{word-spacing:1.066667pt;}
.ws21{word-spacing:1.104000pt;}
.ws120{word-spacing:1.109333pt;}
.wsf1{word-spacing:1.194667pt;}
.ws24{word-spacing:1.200000pt;}
.ws7e{word-spacing:1.248000pt;}
.ws8a{word-spacing:1.344000pt;}
.wsf9{word-spacing:1.440000pt;}
.ws75{word-spacing:1.488000pt;}
.ws3f{word-spacing:1.533333pt;}
.ws69{word-spacing:1.536000pt;}
.ws30{word-spacing:1.584000pt;}
.ws68{word-spacing:1.664000pt;}
.ws3c{word-spacing:1.728000pt;}
.wsd9{word-spacing:1.776000pt;}
.wsc{word-spacing:1.866667pt;}
.wsfd{word-spacing:1.872000pt;}
.wsfa{word-spacing:1.920000pt;}
.ws96{word-spacing:1.962667pt;}
.ws72{word-spacing:1.968000pt;}
.ws52{word-spacing:2.016000pt;}
.wsf6{word-spacing:2.048000pt;}
.wsab{word-spacing:2.064000pt;}
.ws48{word-spacing:2.160000pt;}
.ws11c{word-spacing:2.176000pt;}
.ws50{word-spacing:2.208000pt;}
.wsf4{word-spacing:2.218667pt;}
.ws9b{word-spacing:2.304000pt;}
.ws12a{word-spacing:2.389333pt;}
.ws82{word-spacing:2.448000pt;}
.ws111{word-spacing:2.474667pt;}
.ws10d{word-spacing:2.517333pt;}
.ws66{word-spacing:2.602667pt;}
.wsb{word-spacing:2.666667pt;}
.ws20{word-spacing:2.688000pt;}
.wsd1{word-spacing:2.736000pt;}
.ws9c{word-spacing:2.880000pt;}
.ws149{word-spacing:2.901333pt;}
.ws5f{word-spacing:2.928000pt;}
.ws140{word-spacing:2.944000pt;}
.ws1d{word-spacing:2.976000pt;}
.ws10f{word-spacing:2.986667pt;}
.ws3b{word-spacing:3.024000pt;}
.ws105{word-spacing:3.029333pt;}
.ws138{word-spacing:3.114667pt;}
.wsc2{word-spacing:3.120000pt;}
.ws6f{word-spacing:3.168000pt;}
.ws132{word-spacing:3.200000pt;}
.wsac{word-spacing:3.264000pt;}
.wsb8{word-spacing:3.312000pt;}
.ws59{word-spacing:3.360000pt;}
.ws141{word-spacing:3.370667pt;}
.ws80{word-spacing:3.408000pt;}
.ws13e{word-spacing:3.413333pt;}
.ws3a{word-spacing:3.456000pt;}
.ws2e{word-spacing:3.552000pt;}
.wsa9{word-spacing:3.696000pt;}
.ws148{word-spacing:3.712000pt;}
.ws37{word-spacing:3.744000pt;}
.wsb2{word-spacing:3.792000pt;}
.wsf5{word-spacing:3.797333pt;}
.wsbc{word-spacing:3.840000pt;}
.wsb6{word-spacing:3.936000pt;}
.ws25{word-spacing:4.032000pt;}
.ws76{word-spacing:4.080000pt;}
.ws4d{word-spacing:4.128000pt;}
.ws9d{word-spacing:4.176000pt;}
.ws7b{word-spacing:4.224000pt;}
.ws5c{word-spacing:4.320000pt;}
.wsce{word-spacing:4.368000pt;}
.ws77{word-spacing:4.416000pt;}
.wsfc{word-spacing:4.464000pt;}
.ws10b{word-spacing:4.480000pt;}
.wsae{word-spacing:4.512000pt;}
.wsb3{word-spacing:4.560000pt;}
.ws29{word-spacing:4.608000pt;}
.ws6e{word-spacing:4.656000pt;}
.ws123{word-spacing:4.693333pt;}
.wsed{word-spacing:4.704000pt;}
.ws2c{word-spacing:4.752000pt;}
.wse{word-spacing:4.800000pt;}
.ws2f{word-spacing:4.896000pt;}
.wsd5{word-spacing:4.944000pt;}
.ws71{word-spacing:4.992000pt;}
.ws7c{word-spacing:5.040000pt;}
.wsd3{word-spacing:5.088000pt;}
.wsd0{word-spacing:5.136000pt;}
.ws89{word-spacing:5.184000pt;}
.ws127{word-spacing:5.205333pt;}
.ws8b{word-spacing:5.280000pt;}
.ws117{word-spacing:5.290667pt;}
.ws124{word-spacing:5.418667pt;}
.wsf{word-spacing:5.424000pt;}
.ws49{word-spacing:5.472000pt;}
.ws8f{word-spacing:5.520000pt;}
.ws22{word-spacing:5.568000pt;}
.ws137{word-spacing:5.589333pt;}
.wsb0{word-spacing:5.664000pt;}
.ws16{word-spacing:5.712000pt;}
.ws108{word-spacing:5.717333pt;}
.ws5e{word-spacing:5.760000pt;}
.ws7d{word-spacing:5.808000pt;}
.ws93{word-spacing:5.856000pt;}
.ws2d{word-spacing:5.904000pt;}
.wsb1{word-spacing:5.952000pt;}
.ws39{word-spacing:6.000000pt;}
.ws4b{word-spacing:6.048000pt;}
.wsbb{word-spacing:6.096000pt;}
.ws26{word-spacing:6.240000pt;}
.ws10c{word-spacing:6.272000pt;}
.ws44{word-spacing:6.288000pt;}
.wsec{word-spacing:6.336000pt;}
.ws84{word-spacing:6.384000pt;}
.wsd6{word-spacing:6.528000pt;}
.ws125{word-spacing:6.570667pt;}
.wsf0{word-spacing:6.576000pt;}
.wsa4{word-spacing:6.624000pt;}
.ws3e{word-spacing:6.656000pt;}
.ws19{word-spacing:6.672000pt;}
.ws61{word-spacing:6.768000pt;}
.ws87{word-spacing:6.816000pt;}
.wsb5{word-spacing:6.864000pt;}
.ws36{word-spacing:6.912000pt;}
.ws11e{word-spacing:6.954667pt;}
.ws143{word-spacing:6.997333pt;}
.ws17{word-spacing:7.056000pt;}
.ws12d{word-spacing:7.082667pt;}
.ws58{word-spacing:7.152000pt;}
.ws12b{word-spacing:7.168000pt;}
.ws12{word-spacing:7.200000pt;}
.ws13b{word-spacing:7.210667pt;}
.ws40{word-spacing:7.248000pt;}
.wscf{word-spacing:7.296000pt;}
.ws78{word-spacing:7.344000pt;}
.ws147{word-spacing:7.381333pt;}
.ws4a{word-spacing:7.392000pt;}
.ws102{word-spacing:7.424000pt;}
.ws1b{word-spacing:7.440000pt;}
.ws11d{word-spacing:7.466667pt;}
.wsd4{word-spacing:7.536000pt;}
.ws113{word-spacing:7.552000pt;}
.ws8c{word-spacing:7.584000pt;}
.ws4f{word-spacing:7.632000pt;}
.ws10a{word-spacing:7.637333pt;}
.ws27{word-spacing:7.728000pt;}
.wsda{word-spacing:7.824000pt;}
.ws15{word-spacing:7.920000pt;}
.wse8{word-spacing:7.968000pt;}
.wsd8{word-spacing:8.016000pt;}
.ws101{word-spacing:8.064000pt;}
.ws12f{word-spacing:8.106667pt;}
.ws13c{word-spacing:8.149333pt;}
.ws1c{word-spacing:8.160000pt;}
.ws126{word-spacing:8.192000pt;}
.ws38{word-spacing:8.208000pt;}
.ws88{word-spacing:8.256000pt;}
.ws53{word-spacing:8.352000pt;}
.ws74{word-spacing:8.400000pt;}
.ws73{word-spacing:8.496000pt;}
.ws81{word-spacing:8.544000pt;}
.ws14{word-spacing:8.688000pt;}
.ws64{word-spacing:8.784000pt;}
.ws45{word-spacing:8.832000pt;}
.wsfe{word-spacing:8.880000pt;}
.wsfb{word-spacing:8.928000pt;}
.ws91{word-spacing:8.976000pt;}
.ws62{word-spacing:9.024000pt;}
.wsff{word-spacing:9.216000pt;}
.wsd7{word-spacing:9.264000pt;}
.wsea{word-spacing:9.360000pt;}
.ws136{word-spacing:9.600000pt;}
.ws14b{word-spacing:9.642667pt;}
.ws5d{word-spacing:9.744000pt;}
.wscc{word-spacing:9.792000pt;}
.wsc1{word-spacing:9.840000pt;}
.ws129{word-spacing:9.941333pt;}
.ws92{word-spacing:9.984000pt;}
.ws9f{word-spacing:10.080000pt;}
.ws115{word-spacing:10.154667pt;}
.ws5b{word-spacing:10.176000pt;}
.wsa8{word-spacing:10.368000pt;}
.ws121{word-spacing:10.410667pt;}
.ws5a{word-spacing:10.560000pt;}
.ws56{word-spacing:10.656000pt;}
.ws94{word-spacing:10.704000pt;}
.wsba{word-spacing:10.752000pt;}
.wsbe{word-spacing:10.848000pt;}
.ws12c{word-spacing:10.965333pt;}
.wscb{word-spacing:11.040000pt;}
.ws112{word-spacing:11.093333pt;}
.ws85{word-spacing:11.136000pt;}
.ws6d{word-spacing:11.232000pt;}
.ws11f{word-spacing:11.264000pt;}
.ws46{word-spacing:11.376000pt;}
.ws79{word-spacing:11.424000pt;}
.ws57{word-spacing:11.520000pt;}
.wsaf{word-spacing:11.568000pt;}
.ws7a{word-spacing:11.664000pt;}
.wsb9{word-spacing:11.760000pt;}
.ws7f{word-spacing:11.808000pt;}
.ws116{word-spacing:11.818667pt;}
.ws100{word-spacing:11.904000pt;}
.ws11a{word-spacing:11.946667pt;}
.wsef{word-spacing:12.144000pt;}
.ws109{word-spacing:12.202667pt;}
.ws47{word-spacing:12.240000pt;}
.wsb7{word-spacing:12.336000pt;}
.ws8e{word-spacing:12.432000pt;}
.ws107{word-spacing:12.458667pt;}
.ws144{word-spacing:12.501333pt;}
.wsb4{word-spacing:12.672000pt;}
.ws41{word-spacing:12.720000pt;}
.wsa3{word-spacing:12.768000pt;}
.ws13a{word-spacing:12.800000pt;}
.wsa6{word-spacing:12.816000pt;}
.ws42{word-spacing:12.864000pt;}
.ws2a{word-spacing:12.960000pt;}
.ws131{word-spacing:13.056000pt;}
.ws90{word-spacing:13.104000pt;}
.wsa0{word-spacing:13.152000pt;}
.ws119{word-spacing:13.354667pt;}
.wsa5{word-spacing:13.584000pt;}
.ws13f{word-spacing:13.610667pt;}
.ws110{word-spacing:13.653333pt;}
.wseb{word-spacing:13.680000pt;}
.ws8d{word-spacing:13.728000pt;}
.ws43{word-spacing:13.776000pt;}
.ws4e{word-spacing:13.872000pt;}
.wsad{word-spacing:14.688000pt;}
.wsa2{word-spacing:15.120000pt;}
.wscd{word-spacing:15.216000pt;}
.ws34{word-spacing:15.504000pt;}
.ws13d{word-spacing:15.957333pt;}
.ws54{word-spacing:15.984000pt;}
.ws135{word-spacing:16.128000pt;}
.wsf8{word-spacing:16.368000pt;}
.wse9{word-spacing:16.848000pt;}
.wsc7{word-spacing:17.300052pt;}
.ws146{word-spacing:17.322667pt;}
.ws11{word-spacing:18.576000pt;}
.ws104{word-spacing:18.858667pt;}
.ws51{word-spacing:19.728000pt;}
.wsd{word-spacing:19.872000pt;}
.ws3d{word-spacing:20.112000pt;}
.ws9a{word-spacing:21.216000pt;}
.ws12e{word-spacing:21.333333pt;}
.ws122{word-spacing:21.461333pt;}
.ws10{word-spacing:22.128000pt;}
.wsee{word-spacing:22.512000pt;}
.ws1a{word-spacing:22.896000pt;}
.wsa1{word-spacing:22.944000pt;}
.ws18{word-spacing:24.288000pt;}
.ws133{word-spacing:25.429333pt;}
.ws145{word-spacing:26.112000pt;}
.ws142{word-spacing:27.434667pt;}
.ws35{word-spacing:28.512000pt;}
.ws118{word-spacing:34.645333pt;}
.wse6{word-spacing:493.008000pt;}
._a{margin-left:-2645.834667pt;}
._16{margin-left:-58.922602pt;}
._15{margin-left:-22.752000pt;}
._6{margin-left:-7.466667pt;}
._2{margin-left:-6.536533pt;}
._7{margin-left:-5.234133pt;}
._3{margin-left:-3.808000pt;}
._5{margin-left:-2.666667pt;}
._1{margin-left:-1.774933pt;}
._8{width:1.414933pt;}
._c{width:2.924267pt;}
._f{width:3.840000pt;}
._0{width:4.966400pt;}
._e{width:6.358933pt;}
._9{width:7.251733pt;}
._10{width:8.840533pt;}
._18{width:9.958400pt;}
._d{width:10.890133pt;}
._11{width:12.013333pt;}
._14{width:13.083733pt;}
._12{width:14.067733pt;}
._1a{width:16.128000pt;}
._1c{width:17.318400pt;}
._13{width:21.536533pt;}
._19{width:25.408000pt;}
._17{width:26.574933pt;}
._1b{width:28.311467pt;}
._b{width:388.950400pt;}
._4{width:390.449600pt;}
.fs13{font-size:18.666667pt;}
.fse{font-size:20.000000pt;}
.fs11{font-size:25.977600pt;}
.fsc{font-size:26.560000pt;}
.fsf{font-size:27.833067pt;}
.fsd{font-size:29.866667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:33.600000pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs12{font-size:44.800000pt;}
.fs4{font-size:48.000000pt;}
.fs10{font-size:49.147875pt;}
.fs9{font-size:52.000000pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:61.333333pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs7{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.671600pt;}
.y162{bottom:4.874533pt;}
.y180{bottom:6.666133pt;}
.y15a{bottom:6.666267pt;}
.yc{bottom:7.146667pt;}
.y16d{bottom:7.466267pt;}
.y161{bottom:12.041200pt;}
.y4d{bottom:12.667600pt;}
.yef{bottom:46.144667pt;}
.y7f{bottom:46.430133pt;}
.y1b{bottom:46.641200pt;}
.y14{bottom:69.080000pt;}
.y15e{bottom:82.645333pt;}
.y15f{bottom:87.519867pt;}
.y13{bottom:88.706667pt;}
.y1e7{bottom:88.773333pt;}
.y1b9{bottom:88.794133pt;}
.y30{bottom:88.818933pt;}
.y93{bottom:89.047467pt;}
.y146{bottom:89.055467pt;}
.y64{bottom:89.058133pt;}
.ycd{bottom:89.130133pt;}
.y11d{bottom:89.151467pt;}
.yee{bottom:89.214133pt;}
.y15d{bottom:89.311600pt;}
.y163{bottom:89.978133pt;}
.y160{bottom:94.686881pt;}
.y18{bottom:101.040000pt;}
.y1b8{bottom:101.455467pt;}
.y1e6{bottom:102.106667pt;}
.y173{bottom:103.714133pt;}
.y145{bottom:103.719467pt;}
.y63{bottom:103.722133pt;}
.y92{bottom:103.727467pt;}
.ycc{bottom:103.794133pt;}
.y11c{bottom:103.815467pt;}
.yed{bottom:103.878133pt;}
.y7e{bottom:112.961733pt;}
.y1b7{bottom:114.116800pt;}
.y1e5{bottom:115.440000pt;}
.y144{bottom:118.383467pt;}
.y62{bottom:118.386133pt;}
.y172{bottom:118.388800pt;}
.y91{bottom:118.391467pt;}
.ycb{bottom:118.458133pt;}
.y11b{bottom:118.479467pt;}
.yec{bottom:118.542133pt;}
.y17{bottom:120.666667pt;}
.y7d{bottom:124.961733pt;}
.y1b6{bottom:126.783467pt;}
.y1e4{bottom:128.773333pt;}
.y143{bottom:133.047467pt;}
.y61{bottom:133.050133pt;}
.y171{bottom:133.052800pt;}
.y90{bottom:133.055467pt;}
.yca{bottom:133.122133pt;}
.y11a{bottom:133.143467pt;}
.yeb{bottom:133.206133pt;}
.y7c{bottom:136.961733pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y1b5{bottom:139.455467pt;}
.y16{bottom:140.293333pt;}
.y1e3{bottom:142.106667pt;}
.y60{bottom:147.714133pt;}
.y170{bottom:147.716800pt;}
.y8f{bottom:147.719467pt;}
.y142{bottom:147.732800pt;}
.yc9{bottom:147.786133pt;}
.y119{bottom:147.807467pt;}
.yea{bottom:147.870133pt;}
.y7b{bottom:148.961733pt;}
.y1b4{bottom:152.116800pt;}
.y1e2{bottom:155.440000pt;}
.y16f{bottom:162.380800pt;}
.y8e{bottom:162.383467pt;}
.y5f{bottom:162.388800pt;}
.y141{bottom:162.396800pt;}
.ya6{bottom:162.427467pt;}
.yc8{bottom:162.450133pt;}
.y118{bottom:162.471467pt;}
.ye9{bottom:162.534133pt;}
.y1b3{bottom:164.794133pt;}
.y1e1{bottom:168.773333pt;}
.y2f{bottom:170.129600pt;}
.y16c{bottom:170.378667pt;}
.y16e{bottom:177.044800pt;}
.y8d{bottom:177.047467pt;}
.y16b{bottom:177.050133pt;}
.y5e{bottom:177.052800pt;}
.y140{bottom:177.060800pt;}
.ya5{bottom:177.091467pt;}
.yc7{bottom:177.114133pt;}
.y117{bottom:177.135467pt;}
.ye8{bottom:177.198133pt;}
.y1b2{bottom:177.455467pt;}
.y1e0{bottom:182.106667pt;}
.y2e{bottom:182.129600pt;}
.y159{bottom:185.045333pt;}
.y15c{bottom:188.628267pt;}
.y1b1{bottom:190.116800pt;}
.y8c{bottom:191.711467pt;}
.y15b{bottom:191.711600pt;}
.y16a{bottom:191.714133pt;}
.y5d{bottom:191.716800pt;}
.y158{bottom:191.719467pt;}
.y13f{bottom:191.724800pt;}
.ya4{bottom:191.755467pt;}
.yc6{bottom:191.778133pt;}
.y116{bottom:191.799467pt;}
.ye7{bottom:191.862133pt;}
.y1df{bottom:195.440000pt;}
.y2d{bottom:198.129600pt;}
.y1b0{bottom:202.783467pt;}
.y5c{bottom:206.380800pt;}
.y157{bottom:206.383467pt;}
.y13e{bottom:206.388800pt;}
.ya3{bottom:206.419467pt;}
.yc5{bottom:206.442133pt;}
.y115{bottom:206.463467pt;}
.ye6{bottom:206.526133pt;}
.y1de{bottom:208.773333pt;}
.y2c{bottom:210.129600pt;}
.y1af{bottom:215.535467pt;}
.y8b{bottom:215.711467pt;}
.y5b{bottom:221.044800pt;}
.y156{bottom:221.047467pt;}
.y13d{bottom:221.052800pt;}
.ya2{bottom:221.083467pt;}
.yc4{bottom:221.106133pt;}
.y114{bottom:221.127467pt;}
.ye5{bottom:221.190133pt;}
.y1dd{bottom:222.106667pt;}
.y2b{bottom:222.129600pt;}
.y1ae{bottom:228.196800pt;}
.y2a{bottom:234.129600pt;}
.y1dc{bottom:235.440000pt;}
.y169{bottom:235.714133pt;}
.y13c{bottom:235.716800pt;}
.y5a{bottom:235.740800pt;}
.ya1{bottom:235.747467pt;}
.yc3{bottom:235.770133pt;}
.y113{bottom:235.791467pt;}
.ye4{bottom:235.854133pt;}
.y1ad{bottom:240.858133pt;}
.y29{bottom:246.129600pt;}
.y1db{bottom:248.773333pt;}
.y13b{bottom:250.380800pt;}
.y168{bottom:250.383467pt;}
.y59{bottom:250.404800pt;}
.ya0{bottom:250.411467pt;}
.yc2{bottom:250.434133pt;}
.y112{bottom:250.455467pt;}
.ye3{bottom:250.518133pt;}
.y1ac{bottom:253.519467pt;}
.y28{bottom:258.129600pt;}
.y1da{bottom:262.106667pt;}
.y13a{bottom:265.047467pt;}
.y58{bottom:265.068800pt;}
.y8a{bottom:265.074133pt;}
.y9f{bottom:265.075467pt;}
.y155{bottom:265.084800pt;}
.yc1{bottom:265.098133pt;}
.y111{bottom:265.119467pt;}
.ye2{bottom:265.182133pt;}
.y1ab{bottom:266.180800pt;}
.y27{bottom:272.796267pt;}
.y1d9{bottom:275.440000pt;}
.y1aa{bottom:278.842133pt;}
.y167{bottom:279.714133pt;}
.y139{bottom:279.716800pt;}
.y57{bottom:279.732800pt;}
.y89{bottom:279.738133pt;}
.y9e{bottom:279.739467pt;}
.y154{bottom:279.748800pt;}
.yc0{bottom:279.762133pt;}
.y110{bottom:279.783467pt;}
.ye1{bottom:279.846133pt;}
.y26{bottom:284.796267pt;}
.y1d8{bottom:288.773333pt;}
.y1a9{bottom:291.503467pt;}
.y138{bottom:294.380800pt;}
.y56{bottom:294.396800pt;}
.y88{bottom:294.402133pt;}
.y9d{bottom:294.403467pt;}
.y153{bottom:294.412800pt;}
.ybf{bottom:294.426133pt;}
.y10f{bottom:294.447467pt;}
.ye0{bottom:294.510133pt;}
.y25{bottom:296.796267pt;}
.y1d7{bottom:302.106667pt;}
.y1a8{bottom:304.164800pt;}
.ya{bottom:306.382667pt;}
.y24{bottom:308.796267pt;}
.y137{bottom:309.052800pt;}
.y55{bottom:309.060800pt;}
.y87{bottom:309.066133pt;}
.y9c{bottom:309.067467pt;}
.y152{bottom:309.076800pt;}
.ybe{bottom:309.090133pt;}
.y10e{bottom:309.111467pt;}
.ydf{bottom:309.174133pt;}
.y1a7{bottom:316.826133pt;}
.y23{bottom:323.462933pt;}
.y136{bottom:323.716800pt;}
.y54{bottom:323.724800pt;}
.y86{bottom:323.730133pt;}
.y9b{bottom:323.731467pt;}
.y151{bottom:323.740800pt;}
.ybd{bottom:323.754133pt;}
.y10d{bottom:323.775467pt;}
.yde{bottom:323.838133pt;}
.y1a6{bottom:329.487467pt;}
.y22{bottom:335.462933pt;}
.y135{bottom:338.380800pt;}
.y53{bottom:338.388800pt;}
.y85{bottom:338.394133pt;}
.y9a{bottom:338.395467pt;}
.y150{bottom:338.404800pt;}
.ybc{bottom:338.418133pt;}
.y10c{bottom:338.439467pt;}
.ydd{bottom:338.502133pt;}
.y1a5{bottom:342.148800pt;}
.yd{bottom:343.546667pt;}
.y21{bottom:347.462933pt;}
.y9{bottom:351.724000pt;}
.y52{bottom:353.052800pt;}
.y84{bottom:353.058133pt;}
.y99{bottom:353.059467pt;}
.y14f{bottom:353.068800pt;}
.ybb{bottom:353.082133pt;}
.y10b{bottom:353.103467pt;}
.ydc{bottom:353.166133pt;}
.y134{bottom:353.211467pt;}
.y1a4{bottom:354.810133pt;}
.y1d6{bottom:355.440000pt;}
.y20{bottom:359.462933pt;}
.y1a3{bottom:367.471467pt;}
.y51{bottom:367.716800pt;}
.y83{bottom:367.722133pt;}
.y98{bottom:367.723467pt;}
.y14e{bottom:367.732800pt;}
.yba{bottom:367.746133pt;}
.y10a{bottom:367.767467pt;}
.ydb{bottom:367.830133pt;}
.y133{bottom:367.875467pt;}
.y1d5{bottom:368.773333pt;}
.y1a2{bottom:380.132800pt;}
.y1d4{bottom:382.106667pt;}
.y50{bottom:382.380800pt;}
.y82{bottom:382.386133pt;}
.y97{bottom:382.387467pt;}
.y14d{bottom:382.396800pt;}
.yb9{bottom:382.410133pt;}
.y109{bottom:382.431467pt;}
.yda{bottom:382.494133pt;}
.y132{bottom:382.539467pt;}
.yb{bottom:386.533333pt;}
.y1a1{bottom:392.794133pt;}
.y4c{bottom:394.377333pt;}
.y4f{bottom:397.044800pt;}
.y7a{bottom:397.050133pt;}
.y96{bottom:397.051467pt;}
.y166{bottom:397.055467pt;}
.y4b{bottom:397.060800pt;}
.y8{bottom:397.065333pt;}
.yb8{bottom:397.074133pt;}
.y108{bottom:397.095467pt;}
.yd9{bottom:397.158133pt;}
.y131{bottom:397.203467pt;}
.y1a0{bottom:405.455467pt;}
.y1d3{bottom:407.440000pt;}
.y79{bottom:411.714133pt;}
.y95{bottom:411.715467pt;}
.y165{bottom:411.719467pt;}
.y4a{bottom:411.724800pt;}
.yb7{bottom:411.738133pt;}
.y107{bottom:411.759467pt;}
.yd8{bottom:411.822133pt;}
.y130{bottom:411.867467pt;}
.y19f{bottom:418.116800pt;}
.y81{bottom:426.378133pt;}
.y94{bottom:426.379467pt;}
.y78{bottom:426.383467pt;}
.y49{bottom:426.388800pt;}
.yb6{bottom:426.402133pt;}
.y106{bottom:426.423467pt;}
.yd7{bottom:426.486133pt;}
.y12f{bottom:426.531467pt;}
.y1d2{bottom:428.106667pt;}
.y19e{bottom:430.794133pt;}
.y10{bottom:433.826667pt;}
.y77{bottom:441.047467pt;}
.y48{bottom:441.052800pt;}
.yb5{bottom:441.066133pt;}
.y105{bottom:441.087467pt;}
.yd6{bottom:441.150133pt;}
.y12e{bottom:441.195467pt;}
.y7{bottom:442.406667pt;}
.y19d{bottom:443.455467pt;}
.y76{bottom:455.714133pt;}
.y47{bottom:455.716800pt;}
.yb4{bottom:455.730133pt;}
.y104{bottom:455.751467pt;}
.yd5{bottom:455.814133pt;}
.y12d{bottom:455.859467pt;}
.y19c{bottom:456.116800pt;}
.yac{bottom:457.446800pt;}
.y19b{bottom:468.778133pt;}
.yab{bottom:470.108133pt;}
.y75{bottom:470.378133pt;}
.y46{bottom:470.380800pt;}
.yb3{bottom:470.394133pt;}
.y103{bottom:470.415467pt;}
.yd4{bottom:470.478133pt;}
.y12c{bottom:470.523467pt;}
.y1d1{bottom:476.512000pt;}
.y11{bottom:478.426667pt;}
.yaa{bottom:482.769467pt;}
.y14c{bottom:485.050133pt;}
.y45{bottom:485.052800pt;}
.yb2{bottom:485.058133pt;}
.y102{bottom:485.079467pt;}
.yd3{bottom:485.142133pt;}
.y12b{bottom:485.187467pt;}
.y6{bottom:487.748000pt;}
.y1d0{bottom:489.173333pt;}
.y19a{bottom:489.444800pt;}
.ya9{bottom:495.430800pt;}
.y74{bottom:498.136533pt;}
.y14b{bottom:499.714133pt;}
.y44{bottom:499.716800pt;}
.yb1{bottom:499.722133pt;}
.y101{bottom:499.743467pt;}
.yd2{bottom:499.806133pt;}
.y12a{bottom:499.851467pt;}
.ya8{bottom:508.092133pt;}
.y1cf{bottom:509.840000pt;}
.y14a{bottom:514.378133pt;}
.y43{bottom:514.380800pt;}
.y164{bottom:514.382133pt;}
.yb0{bottom:514.386133pt;}
.y100{bottom:514.407467pt;}
.yd1{bottom:514.470133pt;}
.y129{bottom:514.515467pt;}
.ya7{bottom:520.753467pt;}
.y19{bottom:524.093333pt;}
.y207{bottom:528.145467pt;}
.yaf{bottom:529.050133pt;}
.y42{bottom:529.063467pt;}
.yff{bottom:529.071467pt;}
.yd0{bottom:529.134133pt;}
.y128{bottom:529.179467pt;}
.y5{bottom:533.089333pt;}
.y206{bottom:541.478800pt;}
.y17c{bottom:543.558133pt;}
.yae{bottom:543.714133pt;}
.y41{bottom:543.727467pt;}
.yfe{bottom:543.735467pt;}
.y199{bottom:543.754133pt;}
.ycf{bottom:543.798133pt;}
.y127{bottom:543.843467pt;}
.y205{bottom:554.812133pt;}
.y17b{bottom:556.219467pt;}
.y71{bottom:556.563867pt;}
.y1ce{bottom:558.240000pt;}
.yad{bottom:558.378133pt;}
.y40{bottom:558.391467pt;}
.yfd{bottom:558.399467pt;}
.y198{bottom:558.418133pt;}
.yce{bottom:558.462133pt;}
.y126{bottom:558.507467pt;}
.ye{bottom:561.706667pt;}
.y204{bottom:568.145467pt;}
.y17a{bottom:568.880800pt;}
.y3f{bottom:573.055467pt;}
.yfc{bottom:573.063467pt;}
.y197{bottom:573.082133pt;}
.y125{bottom:573.171467pt;}
.y70{bottom:573.892867pt;}
.y1cd{bottom:578.906667pt;}
.y203{bottom:581.478800pt;}
.y179{bottom:581.542133pt;}
.y3e{bottom:587.719467pt;}
.yfb{bottom:587.727467pt;}
.y196{bottom:587.746133pt;}
.y124{bottom:587.835467pt;}
.y6f{bottom:591.221867pt;}
.yf4{bottom:591.684667pt;}
.y178{bottom:594.203467pt;}
.y202{bottom:594.812133pt;}
.y3d{bottom:602.383467pt;}
.yfa{bottom:602.391467pt;}
.y195{bottom:602.410133pt;}
.y123{bottom:602.499467pt;}
.yf3{bottom:604.346000pt;}
.y177{bottom:606.864800pt;}
.y201{bottom:608.145467pt;}
.y6e{bottom:608.550867pt;}
.yf2{bottom:617.007333pt;}
.y3c{bottom:617.047467pt;}
.yf9{bottom:617.055467pt;}
.y194{bottom:617.074133pt;}
.y122{bottom:617.163467pt;}
.y176{bottom:619.526133pt;}
.y200{bottom:621.478800pt;}
.y6d{bottom:625.879867pt;}
.y1cc{bottom:627.221333pt;}
.yf1{bottom:629.668667pt;}
.yf8{bottom:631.719467pt;}
.y3b{bottom:631.724800pt;}
.y193{bottom:631.738133pt;}
.y121{bottom:631.827467pt;}
.y175{bottom:632.187467pt;}
.y1ff{bottom:634.812133pt;}
.y1cb{bottom:639.882667pt;}
.yf0{bottom:642.330000pt;}
.y6c{bottom:643.208867pt;}
.y174{bottom:644.848800pt;}
.yf7{bottom:646.383467pt;}
.y3a{bottom:646.388800pt;}
.y192{bottom:646.402133pt;}
.y120{bottom:646.491467pt;}
.y1fe{bottom:648.145467pt;}
.y1ca{bottom:652.544000pt;}
.y6b{bottom:660.537867pt;}
.yf6{bottom:661.047467pt;}
.y39{bottom:661.052800pt;}
.y191{bottom:661.066133pt;}
.y11f{bottom:661.155467pt;}
.y1fd{bottom:661.478800pt;}
.y1c9{bottom:665.205333pt;}
.y1fc{bottom:674.812133pt;}
.yf5{bottom:675.711467pt;}
.y38{bottom:675.716800pt;}
.y190{bottom:675.730133pt;}
.y11e{bottom:675.819467pt;}
.y1c8{bottom:677.866667pt;}
.y6a{bottom:677.866867pt;}
.y1fb{bottom:688.145467pt;}
.y37{bottom:690.380800pt;}
.y18f{bottom:690.394133pt;}
.y1c7{bottom:690.528000pt;}
.y4{bottom:691.756000pt;}
.y69{bottom:695.195867pt;}
.y1fa{bottom:701.478800pt;}
.y1c6{bottom:703.189333pt;}
.y36{bottom:705.054933pt;}
.y18e{bottom:705.058133pt;}
.y68{bottom:712.524867pt;}
.y149{bottom:714.778667pt;}
.y1f9{bottom:714.812133pt;}
.y1c5{bottom:715.850667pt;}
.y35{bottom:719.718933pt;}
.y18d{bottom:719.722133pt;}
.y12{bottom:725.040000pt;}
.y148{bottom:727.440000pt;}
.y1f8{bottom:728.145467pt;}
.y1c4{bottom:728.512000pt;}
.y67{bottom:729.853867pt;}
.y34{bottom:734.382933pt;}
.y18c{bottom:734.386133pt;}
.y147{bottom:740.101333pt;}
.y1c3{bottom:741.173333pt;}
.y1f7{bottom:741.478800pt;}
.y66{bottom:747.182867pt;}
.y33{bottom:749.046933pt;}
.y18b{bottom:749.050133pt;}
.y1f6{bottom:754.812133pt;}
.y1c2{bottom:761.840000pt;}
.y32{bottom:763.710933pt;}
.y18a{bottom:763.714133pt;}
.y65{bottom:764.511867pt;}
.y1f5{bottom:768.145467pt;}
.y31{bottom:778.374933pt;}
.y189{bottom:778.378133pt;}
.y1f4{bottom:781.478800pt;}
.y1f3{bottom:794.812133pt;}
.y188{bottom:802.378133pt;}
.y3{bottom:805.081333pt;}
.y1f2{bottom:808.145467pt;}
.y1c1{bottom:810.112000pt;}
.y1f1{bottom:821.478800pt;}
.y1c0{bottom:822.773333pt;}
.y1f{bottom:834.048400pt;}
.y1f0{bottom:834.812133pt;}
.y1bf{bottom:843.440000pt;}
.y1ef{bottom:848.145467pt;}
.y187{bottom:851.724800pt;}
.y2{bottom:857.092000pt;}
.y1e{bottom:858.053733pt;}
.y1ee{bottom:861.478800pt;}
.y186{bottom:866.388800pt;}
.y1ed{bottom:874.812133pt;}
.y1{bottom:879.748000pt;}
.y185{bottom:881.052800pt;}
.y1ec{bottom:888.145467pt;}
.y1be{bottom:891.717333pt;}
.y184{bottom:895.716800pt;}
.y1d{bottom:898.421600pt;}
.y1eb{bottom:901.478800pt;}
.y1bd{bottom:904.378667pt;}
.y183{bottom:910.380800pt;}
.y1ea{bottom:914.812133pt;}
.y1bc{bottom:917.050667pt;}
.y17f{bottom:918.378667pt;}
.y182{bottom:921.961467pt;}
.y181{bottom:925.044800pt;}
.y17e{bottom:925.047467pt;}
.y1e9{bottom:928.145467pt;}
.y1c{bottom:929.088267pt;}
.y1bb{bottom:929.712000pt;}
.y17d{bottom:939.711467pt;}
.y1e8{bottom:941.478800pt;}
.y1ba{bottom:942.373333pt;}
.y1a{bottom:976.318933pt;}
.y73{bottom:976.546533pt;}
.y72{bottom:999.565333pt;}
.y80{bottom:1022.280000pt;}
.h2a{height:14.740000pt;}
.h15{height:17.333333pt;}
.h31{height:18.665333pt;}
.h29{height:18.666667pt;}
.h2c{height:19.998667pt;}
.h2d{height:20.512970pt;}
.h22{height:26.067187pt;}
.h4{height:29.333333pt;}
.hb{height:31.658667pt;}
.h20{height:31.696000pt;}
.h16{height:31.968000pt;}
.h32{height:33.017600pt;}
.h17{height:35.376000pt;}
.hc{height:35.616000pt;}
.hf{height:36.224000pt;}
.h1b{height:38.584000pt;}
.h25{height:38.826667pt;}
.h35{height:39.927467pt;}
.h37{height:40.226133pt;}
.h38{height:40.247467pt;}
.h36{height:40.268800pt;}
.h26{height:40.290133pt;}
.h30{height:41.685333pt;}
.h2f{height:41.749333pt;}
.h10{height:41.760000pt;}
.h34{height:42.048000pt;}
.h39{height:42.112000pt;}
.h18{height:43.680000pt;}
.h2e{height:44.724566pt;}
.h27{height:45.365333pt;}
.h1d{height:45.509333pt;}
.h24{height:45.834667pt;}
.h19{height:45.914667pt;}
.h28{height:45.946667pt;}
.h13{height:45.957333pt;}
.h23{height:45.968000pt;}
.h12{height:45.978667pt;}
.h1a{height:45.989333pt;}
.h11{height:45.992000pt;}
.h14{height:46.000000pt;}
.h1f{height:46.010667pt;}
.h1e{height:46.021333pt;}
.h1c{height:49.024000pt;}
.h3{height:51.916667pt;}
.h2b{height:54.092800pt;}
.h33{height:54.093333pt;}
.he{height:55.477333pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hd{height:79.146667pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h21{height:1043.146667pt;}
.h9{height:1043.149333pt;}
.ha{height:1043.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:7.333333pt;}
.wd{width:12.702667pt;}
.wb{width:14.000000pt;}
.wc{width:182.697333pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.708133pt;}
.x3{left:2.666667pt;}
.x2c{left:13.447733pt;}
.x2b{left:21.781067pt;}
.x17{left:64.252000pt;}
.xc{left:68.031467pt;}
.x37{left:69.258133pt;}
.x38{left:70.484800pt;}
.x36{left:73.684800pt;}
.x1b{left:77.584000pt;}
.x1a{left:81.363467pt;}
.x39{left:89.364800pt;}
.xd{left:91.592267pt;}
.x21{left:97.854667pt;}
.x22{left:105.188680pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x29{left:117.197733pt;}
.x23{left:126.814973pt;}
.x1f{left:130.688000pt;}
.x28{left:134.396400pt;}
.x24{left:138.233488pt;}
.x20{left:147.114400pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x25{left:181.896611pt;}
.x26{left:189.063626pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x27{left:211.107415pt;}
.x2a{left:236.979733pt;}
.x2d{left:250.729733pt;}
.x16{left:260.678533pt;}
.xb{left:265.022267pt;}
.x1c{left:280.888000pt;}
.x1e{left:288.179200pt;}
.x1d{left:291.845867pt;}
.x18{left:404.430000pt;}
.xf{left:408.196933pt;}
.x35{left:409.760533pt;}
.x33{left:410.987200pt;}
.x19{left:417.762000pt;}
.x10{left:421.530267pt;}
.x34{left:425.760533pt;}
.x3a{left:429.556800pt;}
.x11{left:432.048000pt;}
.x13{left:439.321200pt;}
.x2e{left:443.693333pt;}
.x2f{left:456.455867pt;}
.xe{left:514.238000pt;}
.x32{left:579.211200pt;}
.x31{left:605.909867pt;}
.x30{left:626.571200pt;}
.x15{left:656.780533pt;}
.xa{left:660.348533pt;}
.x14{left:773.733333pt;}
}




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