
    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_86cb81b25bdc0bd52a90d33f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_83bfc26a11701103e9db0833.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_c0f02f5add34378f3805488d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_2c91ccb308776e8c1bc7b425.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_1ec8ba01e609a9a9bb6562f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844000;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_df627089a4fe402f4c19e7a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896000;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_6e442b0fc8fc57596aa8c49b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.898474;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_ec3d5782199653a9bd9cae96.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714450;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_d34c9fa4a0b1dc18f4acdf1b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899000;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_deef88d354fba5ff4d11bf38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_9c8a6aa0d4eb785f47071f93.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.905000;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_c877a89ba200b0b6fa41e55d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.106000;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_cdac16deb7f091bbcf9655a5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901000;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_302a8f939ad190a431ff8900.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.917000;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_265ee16af8ded09a6c5e046c.woff2')format("woff");}.fff{font-family:fff;line-height:0.049000;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_fa760bb0556ef800b8ec83f2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.521000;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_97d352369eb17dc47ac33415.woff2')format("woff");}.ff11{font-family:ff11;line-height:3.000000;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_cdd3ebb62d2743e01a938133.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.950000;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_765eb2f6b1abe3065d1595f5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.804000;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_a4e8b1efb6272f8ada7b0838.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.877000;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_eef59aa08ec4664d8a537f7d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910000;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_01133115a5da389810270550.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.844000;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_b9176e2b37a964bc5deb7535.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.959000;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_231ebf88862482b14b4575a0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.959000;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_d27e77322e2db74f51fc7ae6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.959000;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_43854d7dcca3a5930c850e05.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.959000;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_88a844383e9010cce99ef3b9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.959000;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_6abab3a09b352f7060823756.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.959000;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_4f16e14fa9b4e915d4c20570.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.959000;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:ff1e;src:url('chunks/assets/font_2e4be584f8e2e9d85a88a25a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.959000;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:ff1f;src:url('chunks/assets/font_4af4b32df61505819edde83d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.959000;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:ff20;src:url('chunks/assets/font_231ebf88862482b14b4575a0.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.959000;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);}
.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);}
.v12{vertical-align:-22.854000px;}
.v3{vertical-align:-8.964000px;}
.v2{vertical-align:-6.372000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:7.398000px;}
.v4{vertical-align:8.964000px;}
.va{vertical-align:10.566000px;}
.vb{vertical-align:14.778000px;}
.v6{vertical-align:18.036000px;}
.v8{vertical-align:19.410000px;}
.v1{vertical-align:21.690000px;}
.v9{vertical-align:25.572000px;}
.v5{vertical-align:34.542000px;}
.vf{vertical-align:39.024000px;}
.vd{vertical-align:40.440000px;}
.v7{vertical-align:43.608000px;}
.v10{vertical-align:67.746000px;}
.vc{vertical-align:94.110000px;}
.ve{vertical-align:97.788000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000312px;}
.ls30{letter-spacing:0.000421px;}
.lsf{letter-spacing:0.000538px;}
.ls3a{letter-spacing:0.000557px;}
.lsb{letter-spacing:0.000564px;}
.ls40{letter-spacing:0.000691px;}
.ls2d{letter-spacing:0.000990px;}
.ls39{letter-spacing:0.001405px;}
.ls29{letter-spacing:0.002338px;}
.ls42{letter-spacing:0.002346px;}
.ls41{letter-spacing:0.002379px;}
.ls21{letter-spacing:0.002646px;}
.ls20{letter-spacing:0.003352px;}
.ls24{letter-spacing:0.003415px;}
.ls31{letter-spacing:0.003959px;}
.ls33{letter-spacing:0.004363px;}
.ls34{letter-spacing:0.004546px;}
.ls2a{letter-spacing:0.004643px;}
.ls32{letter-spacing:0.004738px;}
.ls19{letter-spacing:0.004893px;}
.ls36{letter-spacing:0.006421px;}
.lsa{letter-spacing:0.212086px;}
.lsd{letter-spacing:0.218086px;}
.ls2{letter-spacing:0.458387px;}
.ls6{letter-spacing:1.659333px;}
.ls13{letter-spacing:1.661249px;}
.ls0{letter-spacing:2.984525px;}
.ls3c{letter-spacing:2.986491px;}
.ls22{letter-spacing:2.987864px;}
.ls3d{letter-spacing:2.989319px;}
.ls1a{letter-spacing:2.990525px;}
.ls1b{letter-spacing:7.478450px;}
.ls37{letter-spacing:10.878564px;}
.ls2f{letter-spacing:10.884564px;}
.ls2e{letter-spacing:10.885202px;}
.ls35{letter-spacing:10.891202px;}
.lsc{letter-spacing:13.278538px;}
.ls2b{letter-spacing:13.707748px;}
.ls9{letter-spacing:16.602538px;}
.ls2c{letter-spacing:16.690491px;}
.ls28{letter-spacing:18.214648px;}
.ls3b{letter-spacing:18.435748px;}
.ls18{letter-spacing:19.247306px;}
.ls15{letter-spacing:19.264618px;}
.ls10{letter-spacing:19.502400px;}
.ls8{letter-spacing:19.562685px;}
.ls25{letter-spacing:19.593954px;}
.ls16{letter-spacing:19.925306px;}
.ls1d{letter-spacing:20.723306px;}
.ls7{letter-spacing:21.164685px;}
.ls23{letter-spacing:21.420532px;}
.lse{letter-spacing:21.994438px;}
.ls1f{letter-spacing:22.037306px;}
.ls3f{letter-spacing:22.504438px;}
.ls27{letter-spacing:22.910525px;}
.ls11{letter-spacing:23.652305px;}
.ls1e{letter-spacing:23.707140px;}
.ls3{letter-spacing:24.446727px;}
.ls4{letter-spacing:24.454438px;}
.ls5{letter-spacing:24.908387px;}
.ls26{letter-spacing:25.718525px;}
.ls14{letter-spacing:29.040305px;}
.ls3e{letter-spacing:33.472706px;}
.ls1c{letter-spacing:36.402305px;}
.ls12{letter-spacing:56.101460px;}
.ls38{letter-spacing:79.111319px;}
.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;}
}
.wsd4{word-spacing:-40.680285px;}
.ws44{word-spacing:-38.937826px;}
.wsca{word-spacing:-36.071827px;}
.ws59{word-spacing:-31.633157px;}
.wscc{word-spacing:-29.388273px;}
.ws49{word-spacing:-29.015076px;}
.ws54{word-spacing:-28.955301px;}
.wsd6{word-spacing:-27.813587px;}
.wsea{word-spacing:-25.189366px;}
.ws68{word-spacing:-22.320209px;}
.wsa5{word-spacing:-18.368329px;}
.wsb7{word-spacing:-18.326486px;}
.ws2d{word-spacing:-16.605662px;}
.wse7{word-spacing:-16.511818px;}
.ws13{word-spacing:-15.359443px;}
.ws5d{word-spacing:-15.358060px;}
.ws5a{word-spacing:-13.531962px;}
.ws67{word-spacing:-12.044963px;}
.ws5c{word-spacing:-12.039697px;}
.ws69{word-spacing:-12.038963px;}
.ws11b{word-spacing:-10.242597px;}
.wsff{word-spacing:-9.600597px;}
.ws105{word-spacing:-9.324597px;}
.ws14{word-spacing:-6.683939px;}
.ws62{word-spacing:-6.652073px;}
.ws61{word-spacing:-6.646060px;}
.ws5b{word-spacing:-6.621697px;}
.wsc6{word-spacing:-5.298597px;}
.wseb{word-spacing:-5.224024px;}
.wsee{word-spacing:-5.218024px;}
.ws79{word-spacing:-5.196597px;}
.ws128{word-spacing:-5.106597px;}
.ws101{word-spacing:-4.537531px;}
.ws127{word-spacing:-3.894597px;}
.wscb{word-spacing:-3.415267px;}
.ws121{word-spacing:-3.335478px;}
.ws3e{word-spacing:-3.275703px;}
.ws106{word-spacing:-3.156152px;}
.ws88{word-spacing:-3.096376px;}
.ws13d{word-spacing:-2.824416px;}
.ws89{word-spacing:-2.797498px;}
.wsd7{word-spacing:-2.652834px;}
.ws2b{word-spacing:-2.618171px;}
.ws64{word-spacing:-2.558396px;}
.ws3c{word-spacing:-2.379069px;}
.ws77{word-spacing:-2.080191px;}
.ws7{word-spacing:-2.017440px;}
.ws4a{word-spacing:-1.960640px;}
.wsbd{word-spacing:-1.920597px;}
.ws120{word-spacing:-1.734597px;}
.ws6f{word-spacing:-1.721537px;}
.wsc9{word-spacing:-1.640851px;}
.ws48{word-spacing:-1.601986px;}
.ws13b{word-spacing:-1.533254px;}
.wsfa{word-spacing:-1.392597px;}
.wsa9{word-spacing:-1.362884px;}
.ws139{word-spacing:-1.318061px;}
.ws34{word-spacing:-1.303108px;}
.ws132{word-spacing:-1.264262px;}
.ws73{word-spacing:-1.183557px;}
.ws2a{word-spacing:-1.064006px;}
.ws90{word-spacing:-1.004230px;}
.ws23{word-spacing:-0.824903px;}
.ws3d{word-spacing:-0.645576px;}
.wsba{word-spacing:-0.585801px;}
.ws4c{word-spacing:-0.406474px;}
.ws6e{word-spacing:-0.286923px;}
.ws83{word-spacing:-0.227147px;}
.ws22{word-spacing:-0.107596px;}
.ws53{word-spacing:-0.059776px;}
.ws12e{word-spacing:-0.047820px;}
.ws5e{word-spacing:-0.041843px;}
.wsd3{word-spacing:-0.029888px;}
.ws6{word-spacing:-0.026899px;}
.ws25{word-spacing:0.000000px;}
.ws4f{word-spacing:0.011955px;}
.ws78{word-spacing:0.071731px;}
.ws143{word-spacing:0.080698px;}
.ws122{word-spacing:0.131506px;}
.ws24{word-spacing:0.191282px;}
.ws8{word-spacing:0.242093px;}
.ws11a{word-spacing:0.251058px;}
.wsb1{word-spacing:0.310833px;}
.ws4d{word-spacing:0.370609px;}
.ws28{word-spacing:0.430384px;}
.wse{word-spacing:0.457286px;}
.ws42{word-spacing:0.549936px;}
.ws124{word-spacing:0.609711px;}
.wsb3{word-spacing:0.789038px;}
.ws12{word-spacing:0.833875px;}
.ws21{word-spacing:0.848814px;}
.wsc1{word-spacing:0.861514px;}
.ws7a{word-spacing:0.968365px;}
.wsbf{word-spacing:1.028140px;}
.wsb9{word-spacing:1.087916px;}
.wsaf{word-spacing:1.128439px;}
.ws40{word-spacing:1.147692px;}
.ws17{word-spacing:1.156666px;}
.ws104{word-spacing:1.207467px;}
.wse6{word-spacing:1.312733px;}
.ws9f{word-spacing:1.327018px;}
.ws115{word-spacing:1.348598px;}
.ws1e{word-spacing:1.386794px;}
.ws7c{word-spacing:1.446570px;}
.ws38{word-spacing:1.506345px;}
.ws126{word-spacing:1.566121px;}
.ws85{word-spacing:1.625896px;}
.ws50{word-spacing:1.685672px;}
.wsb6{word-spacing:1.743101px;}
.wsa0{word-spacing:1.745448px;}
.ws9d{word-spacing:1.805223px;}
.ws56{word-spacing:1.908294px;}
.ws93{word-spacing:1.909843px;}
.ws84{word-spacing:1.924774px;}
.wse4{word-spacing:2.017440px;}
.ws9{word-spacing:2.071238px;}
.ws6d{word-spacing:2.104101px;}
.ws136{word-spacing:2.178835px;}
.ws7f{word-spacing:2.223652px;}
.ws1c{word-spacing:2.283428px;}
.ws80{word-spacing:2.402979px;}
.ws145{word-spacing:2.501626px;}
.ws96{word-spacing:2.535674px;}
.wsd{word-spacing:2.555424px;}
.ws94{word-spacing:2.577516px;}
.wsc0{word-spacing:2.582306px;}
.ws74{word-spacing:2.637257px;}
.ws6b{word-spacing:2.642082px;}
.ws82{word-spacing:2.701857px;}
.wsa{word-spacing:2.716819px;}
.ws19{word-spacing:2.761633px;}
.wsa3{word-spacing:2.821408px;}
.ws13a{word-spacing:2.824416px;}
.ws51{word-spacing:2.940960px;}
.ws2{word-spacing:3.039610px;}
.ws26{word-spacing:3.046934px;}
.ws131{word-spacing:3.052314px;}
.ws103{word-spacing:3.060511px;}
.ws3{word-spacing:3.093408px;}
.ws72{word-spacing:3.120286px;}
.ws4b{word-spacing:3.126264px;}
.wsf5{word-spacing:3.180062px;}
.wsad{word-spacing:3.239838px;}
.ws109{word-spacing:3.290957px;}
.ws6c{word-spacing:3.291803px;}
.ws1{word-spacing:3.299613px;}
.ws107{word-spacing:3.319380px;}
.ws100{word-spacing:3.359389px;}
.ws8d{word-spacing:3.419164px;}
.ws20{word-spacing:3.478940px;}
.ws135{word-spacing:3.577594px;}
.ws133{word-spacing:3.631392px;}
.wsa1{word-spacing:3.658267px;}
.wsa2{word-spacing:3.718042px;}
.ws37{word-spacing:3.777818px;}
.ws81{word-spacing:3.837594px;}
.ws13e{word-spacing:3.846586px;}
.ws70{word-spacing:3.957145px;}
.wscd{word-spacing:4.007981px;}
.ws8c{word-spacing:4.076696px;}
.ws52{word-spacing:4.136472px;}
.ws138{word-spacing:4.169376px;}
.wsfe{word-spacing:4.173514px;}
.wsb8{word-spacing:4.196247px;}
.wsbb{word-spacing:4.315798px;}
.ws57{word-spacing:4.375574px;}
.wsc3{word-spacing:4.383671px;}
.ws63{word-spacing:4.435350px;}
.ws41{word-spacing:4.483200px;}
.wsa8{word-spacing:4.495125px;}
.ws39{word-spacing:4.554901px;}
.ws13c{word-spacing:4.653562px;}
.ws1b{word-spacing:4.674452px;}
.ws86{word-spacing:4.734228px;}
.wsa4{word-spacing:4.853779px;}
.ws47{word-spacing:4.973330px;}
.wsb{word-spacing:5.030150px;}
.wsaa{word-spacing:5.033106px;}
.ws146{word-spacing:5.083949px;}
.ws36{word-spacing:5.092881px;}
.ws118{word-spacing:5.152657px;}
.ws29{word-spacing:5.212432px;}
.wsc7{word-spacing:5.272208px;}
.ws2e{word-spacing:5.331984px;}
.ws0{word-spacing:5.379825px;}
.ws60{word-spacing:5.382292px;}
.ws58{word-spacing:5.391759px;}
.ws31{word-spacing:5.451535px;}
.ws43{word-spacing:5.511310px;}
.ws2c{word-spacing:5.571086px;}
.wsdd{word-spacing:5.596876px;}
.ws3f{word-spacing:5.690637px;}
.ws12a{word-spacing:5.709514px;}
.ws140{word-spacing:5.729530px;}
.ws142{word-spacing:5.783328px;}
.wsfd{word-spacing:5.869964px;}
.ws6a{word-spacing:5.929740px;}
.wsb4{word-spacing:6.109066px;}
.wsde{word-spacing:6.132464px;}
.wsc2{word-spacing:6.146969px;}
.ws5{word-spacing:6.159917px;}
.wsc4{word-spacing:6.168842px;}
.ws3b{word-spacing:6.228618px;}
.ws116{word-spacing:6.288393px;}
.ws12d{word-spacing:6.348169px;}
.ws9e{word-spacing:6.407944px;}
.ws1f{word-spacing:6.587271px;}
.wsf7{word-spacing:6.647047px;}
.wsf6{word-spacing:6.668064px;}
.ws7e{word-spacing:6.766598px;}
.ws11d{word-spacing:6.826374px;}
.wsbe{word-spacing:6.849671px;}
.ws1a{word-spacing:6.945925px;}
.ws66{word-spacing:7.005700px;}
.ws11c{word-spacing:7.065476px;}
.ws137{word-spacing:7.128288px;}
.ws9b{word-spacing:7.244803px;}
.ws144{word-spacing:7.289683px;}
.ws35{word-spacing:7.304578px;}
.ws1d{word-spacing:7.364354px;}
.ws12b{word-spacing:7.424130px;}
.ws129{word-spacing:7.427728px;}
.ws102{word-spacing:7.483905px;}
.ws134{word-spacing:7.504877px;}
.ws7b{word-spacing:7.603456px;}
.ws98{word-spacing:7.663232px;}
.ws45{word-spacing:7.842559px;}
.wsab{word-spacing:7.962110px;}
.ws117{word-spacing:8.081661px;}
.ws32{word-spacing:8.141437px;}
.ws55{word-spacing:8.207190px;}
.ws30{word-spacing:8.380539px;}
.wsac{word-spacing:8.500090px;}
.wsf{word-spacing:8.527046px;}
.wsb5{word-spacing:8.559866px;}
.wsbc{word-spacing:8.619642px;}
.wsec{word-spacing:8.649658px;}
.ws11f{word-spacing:8.798968px;}
.ws75{word-spacing:8.858744px;}
.wsa7{word-spacing:8.918520px;}
.ws97{word-spacing:8.978295px;}
.wsfb{word-spacing:9.097846px;}
.wsf9{word-spacing:9.157622px;}
.wsdb{word-spacing:9.287411px;}
.ws119{word-spacing:9.336949px;}
.wsb2{word-spacing:9.396724px;}
.ws12f{word-spacing:9.516276px;}
.ws65{word-spacing:9.576051px;}
.wsa6{word-spacing:9.635827px;}
.wse3{word-spacing:9.656813px;}
.ws10{word-spacing:9.818208px;}
.ws4e{word-spacing:9.862974px;}
.ws11e{word-spacing:9.874929px;}
.ws13f{word-spacing:9.979603px;}
.wsc5{word-spacing:10.173807px;}
.ws8e{word-spacing:10.233583px;}
.wsfc{word-spacing:10.293358px;}
.ws87{word-spacing:10.472685px;}
.ws114{word-spacing:10.544486px;}
.ws7d{word-spacing:10.592236px;}
.ws9a{word-spacing:10.831339px;}
.wse5{word-spacing:10.840378px;}
.ws12c{word-spacing:10.950890px;}
.ws141{word-spacing:11.593555px;}
.wsdc{word-spacing:11.739399px;}
.ws16{word-spacing:12.077741px;}
.ws8f{word-spacing:12.086626px;}
.ws46{word-spacing:12.325729px;}
.ws2f{word-spacing:12.624607px;}
.wsf8{word-spacing:13.162587px;}
.ws8b{word-spacing:13.274995px;}
.ws8a{word-spacing:13.282138px;}
.wsc8{word-spacing:13.631722px;}
.ws91{word-spacing:14.417875px;}
.wsd9{word-spacing:14.605631px;}
.ws10b{word-spacing:15.162580px;}
.ws130{word-spacing:15.195555px;}
.wsd8{word-spacing:15.601490px;}
.wsd2{word-spacing:17.011592px;}
.ws92{word-spacing:17.229043px;}
.ws111{word-spacing:18.298213px;}
.ws123{word-spacing:18.410885px;}
.wsdf{word-spacing:19.459396px;}
.ws27{word-spacing:19.690214px;}
.wsd5{word-spacing:19.694839px;}
.ws108{word-spacing:19.855444px;}
.wsf4{word-spacing:19.933452px;}
.wse0{word-spacing:20.166539px;}
.wsae{word-spacing:21.280114px;}
.wse1{word-spacing:21.352158px;}
.ws11{word-spacing:21.929739px;}
.wsb0{word-spacing:22.170160px;}
.ws125{word-spacing:23.577359px;}
.wsda{word-spacing:24.149974px;}
.wsc{word-spacing:24.414845px;}
.ws99{word-spacing:24.977120px;}
.wse2{word-spacing:25.008509px;}
.ws71{word-spacing:25.799312px;}
.ws76{word-spacing:25.961312px;}
.ws3a{word-spacing:27.519359px;}
.ws15{word-spacing:27.592038px;}
.ws4{word-spacing:29.830266px;}
.ws33{word-spacing:29.993312px;}
.ws9c{word-spacing:30.237359px;}
.wsef{word-spacing:33.738939px;}
.wsce{word-spacing:40.212182px;}
.ws18{word-spacing:58.281600px;}
.wse9{word-spacing:60.816939px;}
.wsed{word-spacing:60.822939px;}
.ws10d{word-spacing:63.247639px;}
.ws10e{word-spacing:64.546396px;}
.ws113{word-spacing:66.088639px;}
.ws10f{word-spacing:67.166935px;}
.ws112{word-spacing:68.538199px;}
.wsf3{word-spacing:78.344301px;}
.wsf0{word-spacing:82.514301px;}
.wsf2{word-spacing:82.520301px;}
.ws110{word-spacing:88.061927px;}
.ws10c{word-spacing:88.503093px;}
.ws10a{word-spacing:96.169236px;}
.wsd0{word-spacing:143.780301px;}
.wsd1{word-spacing:168.400533px;}
.wsf1{word-spacing:182.769056px;}
.wscf{word-spacing:204.385341px;}
.wse8{word-spacing:327.711413px;}
.ws5f{word-spacing:562.123927px;}
.ws95{word-spacing:791.983781px;}
._f{margin-left:-40.384666px;}
._17{margin-left:-35.139643px;}
._6{margin-left:-32.496418px;}
._12{margin-left:-31.329129px;}
._3{margin-left:-29.887800px;}
._a{margin-left:-28.214083px;}
._b{margin-left:-26.973486px;}
._1b{margin-left:-25.425296px;}
._5{margin-left:-23.252708px;}
._32{margin-left:-22.242565px;}
._d{margin-left:-21.028078px;}
._21{margin-left:-19.205735px;}
._4{margin-left:-6.603171px;}
._c{margin-left:-4.572864px;}
._0{margin-left:-2.668393px;}
._9{margin-left:-1.635081px;}
._7{width:1.641796px;}
._2{width:2.668393px;}
._e{width:3.703142px;}
._1{width:5.422864px;}
._1d{width:6.993745px;}
._19{width:10.574219px;}
._18{width:13.304197px;}
._15{width:15.281045px;}
._13{width:17.057555px;}
._3c{width:18.434844px;}
._1f{width:19.584888px;}
._8{width:20.964374px;}
._1c{width:22.208669px;}
._14{width:23.888731px;}
._10{width:25.024468px;}
._1e{width:26.855436px;}
._30{width:28.491452px;}
._1a{width:30.243421px;}
._20{width:33.691930px;}
._3e{width:37.317836px;}
._31{width:51.998058px;}
._16{width:80.697600px;}
._3b{width:109.279995px;}
._3d{width:142.996147px;}
._36{width:144.106467px;}
._38{width:145.586494px;}
._2e{width:149.713538px;}
._2b{width:153.395705px;}
._2c{width:155.822587px;}
._28{width:158.709740px;}
._26{width:159.713968px;}
._23{width:161.094780px;}
._25{width:163.563505px;}
._29{width:168.249899px;}
._11{width:170.648525px;}
._3a{width:171.753670px;}
._39{width:179.709297px;}
._35{width:182.754143px;}
._33{width:184.324446px;}
._37{width:219.425182px;}
._27{width:229.163089px;}
._34{width:342.092547px;}
._22{width:822.211020px;}
._2d{width:839.157354px;}
._24{width:876.481132px;}
._2a{width:899.369143px;}
._2f{width:922.298998px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.495600px;}
.fs8{font-size:29.394720px;}
.fs6{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y115{bottom:9.516418px;}
.y113{bottom:24.213778px;}
.y11b{bottom:33.399873px;}
.y114{bottom:41.440615px;}
.y11e{bottom:42.683828px;}
.y120{bottom:58.575348px;}
.y11c{bottom:58.979587px;}
.y116{bottom:82.807376px;}
.y11a{bottom:91.864746px;}
.y119{bottom:99.213426px;}
.y117{bottom:158.633506px;}
.y50{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.yc3{bottom:199.330500px;}
.y17e{bottom:208.657500px;}
.y25{bottom:211.549500px;}
.ye7{bottom:220.431000px;}
.yc2{bottom:222.669000px;}
.y17d{bottom:225.096000px;}
.y24{bottom:229.482000px;}
.y4f{bottom:229.794000px;}
.ye6{bottom:238.363500px;}
.yc1{bottom:240.601500px;}
.y17c{bottom:241.534500px;}
.y23{bottom:247.414500px;}
.y4e{bottom:247.726500px;}
.y97{bottom:251.575500px;}
.ye5{bottom:256.296000px;}
.y17b{bottom:257.319000px;}
.yc0{bottom:258.534000px;}
.y22{bottom:265.347000px;}
.y4d{bottom:265.660500px;}
.y96{bottom:269.508000px;}
.y17a{bottom:273.757500px;}
.ye4{bottom:274.228500px;}
.ybf{bottom:276.466500px;}
.y151{bottom:278.107500px;}
.y70{bottom:283.279500px;}
.y21{bottom:283.392000px;}
.y4c{bottom:283.593000px;}
.y12d{bottom:286.284000px;}
.y95{bottom:287.440500px;}
.y179{bottom:290.196000px;}
.ye3{bottom:292.161000px;}
.ybe{bottom:294.399000px;}
.y150{bottom:296.040000px;}
.y6f{bottom:301.213500px;}
.y20{bottom:301.324500px;}
.y4b{bottom:301.525500px;}
.y12c{bottom:304.216500px;}
.y94{bottom:305.374500px;}
.y178{bottom:305.980500px;}
.ye2{bottom:310.095000px;}
.ybd{bottom:312.333000px;}
.y14f{bottom:313.972500px;}
.y6e{bottom:319.146000px;}
.y1f{bottom:319.258500px;}
.y4a{bottom:319.458000px;}
.y12b{bottom:322.149000px;}
.y177{bottom:322.419000px;}
.y93{bottom:323.307000px;}
.ye1{bottom:328.027500px;}
.ybc{bottom:330.265500px;}
.y14e{bottom:331.905000px;}
.y6d{bottom:337.078500px;}
.y1e{bottom:337.191000px;}
.y111{bottom:337.195500px;}
.y49{bottom:337.390500px;}
.y176{bottom:338.205000px;}
.y12a{bottom:340.081500px;}
.y92{bottom:341.239500px;}
.ye0{bottom:345.960000px;}
.ybb{bottom:348.198000px;}
.y14d{bottom:349.837500px;}
.y175{bottom:354.643500px;}
.y1d{bottom:355.123500px;}
.y110{bottom:355.128000px;}
.y48{bottom:355.323000px;}
.y129{bottom:358.015500px;}
.y91{bottom:359.172000px;}
.ydf{bottom:363.892500px;}
.yba{bottom:366.427500px;}
.y14c{bottom:368.529000px;}
.y174{bottom:370.428000px;}
.y1c{bottom:373.056000px;}
.y10f{bottom:373.062000px;}
.y47{bottom:373.257000px;}
.y128{bottom:375.948000px;}
.y90{bottom:377.104500px;}
.y6c{bottom:377.664000px;}
.yde{bottom:381.825000px;}
.yb9{bottom:384.361500px;}
.y14b{bottom:386.461500px;}
.y173{bottom:386.866500px;}
.y1b{bottom:390.988500px;}
.y10e{bottom:390.994500px;}
.y127{bottom:393.880500px;}
.y8f{bottom:395.038500px;}
.ydd{bottom:399.757500px;}
.yb8{bottom:402.294000px;}
.y172{bottom:403.305000px;}
.y14a{bottom:404.395500px;}
.y1a{bottom:408.921000px;}
.y10d{bottom:408.927000px;}
.y46{bottom:410.685000px;}
.y126{bottom:411.813000px;}
.y8e{bottom:412.971000px;}
.ydc{bottom:417.691500px;}
.y171{bottom:419.091000px;}
.yb7{bottom:420.226500px;}
.y149{bottom:422.328000px;}
.y10c{bottom:426.859500px;}
.y125{bottom:429.745500px;}
.y6b{bottom:430.206000px;}
.y8d{bottom:430.903500px;}
.y170{bottom:435.528000px;}
.ydb{bottom:435.624000px;}
.yb6{bottom:438.159000px;}
.y148{bottom:440.260500px;}
.y19{bottom:445.347000px;}
.y124{bottom:447.678000px;}
.y6a{bottom:448.138500px;}
.y8c{bottom:448.836000px;}
.y16f{bottom:451.966500px;}
.yda{bottom:453.556500px;}
.yb5{bottom:456.091500px;}
.y147{bottom:458.193000px;}
.y45{bottom:460.069500px;}
.y123{bottom:465.612000px;}
.y69{bottom:466.071000px;}
.y8b{bottom:466.768500px;}
.y16e{bottom:467.752500px;}
.yd9{bottom:471.489000px;}
.yb4{bottom:474.322500px;}
.y146{bottom:476.125500px;}
.y44{bottom:478.002000px;}
.y10b{bottom:480.238500px;}
.y122{bottom:483.544500px;}
.y16d{bottom:484.191000px;}
.y8a{bottom:488.863500px;}
.yd8{bottom:489.421500px;}
.y10a{bottom:492.193500px;}
.yb3{bottom:492.255000px;}
.y145{bottom:494.059500px;}
.y43{bottom:495.934500px;}
.y18{bottom:496.543500px;}
.y16c{bottom:499.975500px;}
.y68{bottom:501.099000px;}
.y109{bottom:504.148500px;}
.y89{bottom:506.796000px;}
.yd7{bottom:507.354000px;}
.yb2{bottom:510.187500px;}
.y144{bottom:511.992000px;}
.y17{bottom:512.982000px;}
.y42{bottom:513.867000px;}
.y108{bottom:516.103500px;}
.y16b{bottom:516.414000px;}
.y65{bottom:518.221500px;}
.y88{bottom:524.728500px;}
.yd6{bottom:525.288000px;}
.y64{bottom:525.603000px;}
.y66{bottom:526.098000px;}
.yb1{bottom:528.120000px;}
.y107{bottom:528.657000px;}
.y16{bottom:529.420500px;}
.y143{bottom:529.924500px;}
.y41{bottom:531.799500px;}
.y67{bottom:531.868500px;}
.y63{bottom:532.159500px;}
.y16a{bottom:532.200000px;}
.y61{bottom:535.854000px;}
.y106{bottom:541.210500px;}
.y87{bottom:542.661000px;}
.yd5{bottom:543.220500px;}
.yb0{bottom:546.054000px;}
.y62{bottom:546.534000px;}
.y142{bottom:547.857000px;}
.y169{bottom:548.637000px;}
.y40{bottom:550.045500px;}
.y105{bottom:553.762500px;}
.y121{bottom:556.153500px;}
.y86{bottom:560.593500px;}
.yd4{bottom:561.153000px;}
.y15{bottom:562.408500px;}
.yaf{bottom:564.283500px;}
.y168{bottom:565.075500px;}
.y141{bottom:565.789500px;}
.y3f{bottom:567.978000px;}
.y85{bottom:578.526000px;}
.y14{bottom:578.847000px;}
.y11d{bottom:579.031500px;}
.y167{bottom:580.861500px;}
.y104{bottom:581.907000px;}
.yae{bottom:582.216000px;}
.y140{bottom:584.481000px;}
.y3e{bottom:585.910500px;}
.yd3{bottom:594.922500px;}
.y13{bottom:595.285500px;}
.y84{bottom:596.460000px;}
.y166{bottom:597.300000px;}
.y60{bottom:597.780000px;}
.y103{bottom:598.345500px;}
.yad{bottom:600.148500px;}
.y13f{bottom:602.413500px;}
.y3d{bottom:603.844500px;}
.y12{bottom:611.724000px;}
.y165{bottom:613.738500px;}
.y83{bottom:614.392500px;}
.y102{bottom:614.784000px;}
.y11f{bottom:616.472902px;}
.y5f{bottom:616.656000px;}
.yac{bottom:618.082500px;}
.y13e{bottom:620.347500px;}
.y3c{bottom:621.777000px;}
.y11{bottom:628.162500px;}
.y164{bottom:629.523000px;}
.y101{bottom:631.222500px;}
.y82{bottom:632.325000px;}
.y5e{bottom:634.590000px;}
.yab{bottom:636.015000px;}
.y13d{bottom:638.280000px;}
.y3b{bottom:639.709500px;}
.yd2{bottom:640.647000px;}
.y10{bottom:644.601000px;}
.y163{bottom:645.961500px;}
.y81{bottom:650.257500px;}
.y5d{bottom:652.522500px;}
.y13c{bottom:656.212500px;}
.y3a{bottom:657.642000px;}
.yd1{bottom:658.579500px;}
.yf{bottom:661.039500px;}
.y162{bottom:662.400000px;}
.y100{bottom:663.661500px;}
.y80{bottom:668.190000px;}
.y5c{bottom:670.455000px;}
.yaa{bottom:673.368000px;}
.y13b{bottom:674.145000px;}
.yff{bottom:675.616500px;}
.y39{bottom:675.888000px;}
.yd0{bottom:676.513500px;}
.ye{bottom:677.478000px;}
.y161{bottom:678.184500px;}
.y7f{bottom:686.122500px;}
.yfe{bottom:687.571500px;}
.y5b{bottom:689.331000px;}
.y38{bottom:693.820500px;}
.yd{bottom:693.916500px;}
.ycf{bottom:694.446000px;}
.y160{bottom:694.623000px;}
.yfd{bottom:699.526500px;}
.y7e{bottom:704.056500px;}
.y5a{bottom:707.265000px;}
.yc{bottom:710.353500px;}
.y15f{bottom:711.061500px;}
.yfc{bottom:711.481500px;}
.y37{bottom:711.753000px;}
.yce{bottom:712.378500px;}
.y13a{bottom:713.803500px;}
.y7d{bottom:721.989000px;}
.ya9{bottom:722.676000px;}
.yfb{bottom:723.436500px;}
.y59{bottom:725.197500px;}
.yb{bottom:726.792000px;}
.y15e{bottom:726.847500px;}
.y36{bottom:729.685500px;}
.ycd{bottom:730.311000px;}
.yfa{bottom:735.393000px;}
.y7c{bottom:739.921500px;}
.ya8{bottom:740.608500px;}
.y58{bottom:743.130000px;}
.ya{bottom:743.230500px;}
.y15d{bottom:743.286000px;}
.y112{bottom:744.138000px;}
.yf9{bottom:747.348000px;}
.y35{bottom:747.618000px;}
.ycc{bottom:748.243500px;}
.y57{bottom:756.555000px;}
.y7b{bottom:757.854000px;}
.ya7{bottom:758.542500px;}
.yf8{bottom:759.303000px;}
.y9{bottom:759.669000px;}
.y15c{bottom:759.724500px;}
.y56{bottom:761.062500px;}
.y139{bottom:765.418500px;}
.y34{bottom:765.864000px;}
.ycb{bottom:766.176000px;}
.yf7{bottom:771.258000px;}
.y15b{bottom:775.509000px;}
.y7a{bottom:775.786500px;}
.ya6{bottom:776.475000px;}
.y118{bottom:781.579402px;}
.yf6{bottom:783.213000px;}
.y138{bottom:783.351000px;}
.y33{bottom:783.796500px;}
.yca{bottom:784.110000px;}
.y15a{bottom:791.947500px;}
.y79{bottom:793.720500px;}
.y55{bottom:794.160000px;}
.yf5{bottom:795.766500px;}
.y54{bottom:798.669000px;}
.y137{bottom:801.283500px;}
.y32{bottom:801.729000px;}
.yc9{bottom:802.042500px;}
.y159{bottom:807.732000px;}
.y78{bottom:811.653000px;}
.yf4{bottom:811.905000px;}
.y136{bottom:819.216000px;}
.y31{bottom:819.663000px;}
.yc8{bottom:819.975000px;}
.y8{bottom:821.775000px;}
.yf3{bottom:823.860000px;}
.y158{bottom:824.170500px;}
.ya5{bottom:830.214000px;}
.y77{bottom:833.746500px;}
.yf2{bottom:835.816500px;}
.y135{bottom:837.148500px;}
.y30{bottom:837.595500px;}
.yc7{bottom:837.907500px;}
.y7{bottom:838.213500px;}
.y157{bottom:839.956500px;}
.ya4{bottom:842.169000px;}
.yf1{bottom:847.771500px;}
.y76{bottom:851.679000px;}
.ya3{bottom:854.124000px;}
.y6{bottom:854.650500px;}
.y53{bottom:854.896500px;}
.y134{bottom:855.082500px;}
.y2f{bottom:855.528000px;}
.yc6{bottom:855.840000px;}
.y156{bottom:856.395000px;}
.yf0{bottom:859.726500px;}
.ya2{bottom:866.079000px;}
.y75{bottom:869.611500px;}
.y5{bottom:871.089000px;}
.yef{bottom:871.681500px;}
.y52{bottom:872.829000px;}
.y155{bottom:872.833500px;}
.y133{bottom:873.015000px;}
.y2e{bottom:873.460500px;}
.yc5{bottom:873.774000px;}
.ya1{bottom:878.034000px;}
.yee{bottom:883.636500px;}
.y74{bottom:887.545500px;}
.y154{bottom:888.618000px;}
.ya0{bottom:889.989000px;}
.y51{bottom:890.761500px;}
.y132{bottom:890.947500px;}
.y2d{bottom:891.393000px;}
.yc4{bottom:891.706500px;}
.yed{bottom:895.591500px;}
.y9f{bottom:901.944000px;}
.y4{bottom:902.410500px;}
.y153{bottom:905.056500px;}
.y73{bottom:905.478000px;}
.yec{bottom:907.546500px;}
.y131{bottom:908.880000px;}
.y2c{bottom:909.639000px;}
.y9e{bottom:913.900500px;}
.yeb{bottom:919.501500px;}
.y3{bottom:920.343000px;}
.y72{bottom:923.410500px;}
.y9d{bottom:925.855500px;}
.y130{bottom:926.812500px;}
.y2b{bottom:927.571500px;}
.yea{bottom:931.456500px;}
.y152{bottom:936.162000px;}
.y9c{bottom:937.810500px;}
.y71{bottom:941.343000px;}
.ye9{bottom:944.010000px;}
.y12f{bottom:944.745000px;}
.y2a{bottom:945.504000px;}
.y9b{bottom:949.765500px;}
.y9a{bottom:962.317500px;}
.y12e{bottom:962.679000px;}
.y29{bottom:963.436500px;}
.ye8{bottom:972.030000px;}
.y2{bottom:972.403500px;}
.y28{bottom:981.370500px;}
.y99{bottom:988.468500px;}
.y1{bottom:999.303000px;}
.y98{bottom:1004.907000px;}
.y27{bottom:1038.157500px;}
.hd{height:16.707280px;}
.h1b{height:18.151240px;}
.h1c{height:21.781488px;}
.h19{height:23.850624px;}
.h12{height:29.833916px;}
.h15{height:31.382100px;}
.h4{height:33.139814px;}
.h18{height:38.780100px;}
.h3{height:40.348800px;}
.h13{height:42.141798px;}
.h6{height:44.831700px;}
.h5{height:50.498765px;}
.h17{height:51.529916px;}
.h2{height:53.072100px;}
.h16{height:53.078100px;}
.hc{height:55.397700px;}
.h7{height:55.405916px;}
.he{height:56.919798px;}
.hf{height:59.609700px;}
.h1{height:60.598349px;}
.hb{height:62.861700px;}
.h9{height:64.241700px;}
.ha{height:73.435916px;}
.h8{height:73.441916px;}
.h14{height:97.579916px;}
.h11{height:100.179024px;}
.h1d{height:108.760464px;}
.h10{height:111.279024px;}
.h1a{height:176.368320px;}
.h0{height:1188.000000px;}
.w2{width:130.806504px;}
.w1{width:176.184603px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:6.393229px;}
.x22{left:21.090589px;}
.x2d{left:23.840649px;}
.x26{left:26.124864px;}
.x27{left:28.549561px;}
.x2b{left:30.184581px;}
.x2a{left:31.715801px;}
.x25{left:32.842537px;}
.x30{left:38.513575px;}
.x21{left:56.517841px;}
.x23{left:85.612122px;}
.xa{left:202.147500px;}
.x1e{left:206.256000px;}
.x33{left:209.058000px;}
.x12{left:212.716500px;}
.x3{left:214.255500px;}
.xb{left:224.563500px;}
.x6{left:227.527500px;}
.x1{left:236.308500px;}
.x2{left:237.544500px;}
.x20{left:240.348000px;}
.x32{left:243.597000px;}
.x9{left:244.666500px;}
.x1f{left:269.131500px;}
.x1d{left:279.024000px;}
.xf{left:280.896000px;}
.x8{left:292.054500px;}
.x2c{left:297.726000px;}
.x4{left:303.505500px;}
.x2e{left:327.635005px;}
.x10{left:344.170500px;}
.x7{left:352.387500px;}
.xc{left:368.934000px;}
.x13{left:380.886000px;}
.x5{left:391.954500px;}
.x28{left:410.682505px;}
.xd{left:444.418500px;}
.x14{left:449.998500px;}
.x2f{left:463.821000px;}
.x11{left:490.395000px;}
.x31{left:493.730005px;}
.xe{left:507.072000px;}
.x29{left:546.868500px;}
.x15{left:576.328500px;}
.x16{left:620.910000px;}
.x17{left:647.509500px;}
.x18{left:662.907000px;}
.x19{left:674.440500px;}
.x1c{left:696.364500px;}
.x1a{left:699.378000px;}
.x1b{left:701.791500px;}
@media print{
.v12{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.968000pt;}
.v2{vertical-align:-5.664000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:6.576000pt;}
.v4{vertical-align:7.968000pt;}
.va{vertical-align:9.392000pt;}
.vb{vertical-align:13.136000pt;}
.v6{vertical-align:16.032000pt;}
.v8{vertical-align:17.253333pt;}
.v1{vertical-align:19.280000pt;}
.v9{vertical-align:22.730667pt;}
.v5{vertical-align:30.704000pt;}
.vf{vertical-align:34.688000pt;}
.vd{vertical-align:35.946667pt;}
.v7{vertical-align:38.762667pt;}
.v10{vertical-align:60.218667pt;}
.vc{vertical-align:83.653333pt;}
.ve{vertical-align:86.922667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000278pt;}
.ls30{letter-spacing:0.000374pt;}
.lsf{letter-spacing:0.000479pt;}
.ls3a{letter-spacing:0.000495pt;}
.lsb{letter-spacing:0.000501pt;}
.ls40{letter-spacing:0.000614pt;}
.ls2d{letter-spacing:0.000880pt;}
.ls39{letter-spacing:0.001249pt;}
.ls29{letter-spacing:0.002079pt;}
.ls42{letter-spacing:0.002086pt;}
.ls41{letter-spacing:0.002115pt;}
.ls21{letter-spacing:0.002352pt;}
.ls20{letter-spacing:0.002980pt;}
.ls24{letter-spacing:0.003035pt;}
.ls31{letter-spacing:0.003519pt;}
.ls33{letter-spacing:0.003879pt;}
.ls34{letter-spacing:0.004041pt;}
.ls2a{letter-spacing:0.004127pt;}
.ls32{letter-spacing:0.004212pt;}
.ls19{letter-spacing:0.004349pt;}
.ls36{letter-spacing:0.005708pt;}
.lsa{letter-spacing:0.188521pt;}
.lsd{letter-spacing:0.193855pt;}
.ls2{letter-spacing:0.407455pt;}
.ls6{letter-spacing:1.474963pt;}
.ls13{letter-spacing:1.476666pt;}
.ls0{letter-spacing:2.652911pt;}
.ls3c{letter-spacing:2.654659pt;}
.ls22{letter-spacing:2.655879pt;}
.ls3d{letter-spacing:2.657173pt;}
.ls1a{letter-spacing:2.658245pt;}
.ls1b{letter-spacing:6.647511pt;}
.ls37{letter-spacing:9.669835pt;}
.ls2f{letter-spacing:9.675168pt;}
.ls2e{letter-spacing:9.675735pt;}
.ls35{letter-spacing:9.681069pt;}
.lsc{letter-spacing:11.803145pt;}
.ls2b{letter-spacing:12.184665pt;}
.ls9{letter-spacing:14.757812pt;}
.ls2c{letter-spacing:14.835992pt;}
.ls28{letter-spacing:16.190798pt;}
.ls3b{letter-spacing:16.387331pt;}
.ls18{letter-spacing:17.108716pt;}
.ls15{letter-spacing:17.124105pt;}
.ls10{letter-spacing:17.335467pt;}
.ls8{letter-spacing:17.389053pt;}
.ls25{letter-spacing:17.416848pt;}
.ls16{letter-spacing:17.711383pt;}
.ls1d{letter-spacing:18.420716pt;}
.ls7{letter-spacing:18.813053pt;}
.ls23{letter-spacing:19.040473pt;}
.lse{letter-spacing:19.550612pt;}
.ls1f{letter-spacing:19.588716pt;}
.ls3f{letter-spacing:20.003945pt;}
.ls27{letter-spacing:20.364911pt;}
.ls11{letter-spacing:21.024271pt;}
.ls1e{letter-spacing:21.073014pt;}
.ls3{letter-spacing:21.730424pt;}
.ls4{letter-spacing:21.737279pt;}
.ls5{letter-spacing:22.140788pt;}
.ls26{letter-spacing:22.860911pt;}
.ls14{letter-spacing:25.813605pt;}
.ls3e{letter-spacing:29.753517pt;}
.ls1c{letter-spacing:32.357605pt;}
.ls12{letter-spacing:49.867964pt;}
.ls38{letter-spacing:70.321173pt;}
.wsd4{word-spacing:-36.160253pt;}
.ws44{word-spacing:-34.611401pt;}
.wsca{word-spacing:-32.063846pt;}
.ws59{word-spacing:-28.118362pt;}
.wscc{word-spacing:-26.122909pt;}
.ws49{word-spacing:-25.791179pt;}
.ws54{word-spacing:-25.738045pt;}
.wsd6{word-spacing:-24.723188pt;}
.wsea{word-spacing:-22.390547pt;}
.ws68{word-spacing:-19.840186pt;}
.wsa5{word-spacing:-16.327404pt;}
.wsb7{word-spacing:-16.290210pt;}
.ws2d{word-spacing:-14.760588pt;}
.wse7{word-spacing:-14.677171pt;}
.ws13{word-spacing:-13.652838pt;}
.ws5d{word-spacing:-13.651609pt;}
.ws5a{word-spacing:-12.028410pt;}
.ws67{word-spacing:-10.706633pt;}
.ws5c{word-spacing:-10.701953pt;}
.ws69{word-spacing:-10.701300pt;}
.ws11b{word-spacing:-9.104531pt;}
.wsff{word-spacing:-8.533864pt;}
.ws105{word-spacing:-8.288531pt;}
.ws14{word-spacing:-5.941279pt;}
.ws62{word-spacing:-5.912953pt;}
.ws61{word-spacing:-5.907609pt;}
.ws5b{word-spacing:-5.885953pt;}
.wsc6{word-spacing:-4.709864pt;}
.wseb{word-spacing:-4.643577pt;}
.wsee{word-spacing:-4.638244pt;}
.ws79{word-spacing:-4.619198pt;}
.ws128{word-spacing:-4.539198pt;}
.ws101{word-spacing:-4.033361pt;}
.ws127{word-spacing:-3.461864pt;}
.wscb{word-spacing:-3.035793pt;}
.ws121{word-spacing:-2.964870pt;}
.ws3e{word-spacing:-2.911736pt;}
.ws106{word-spacing:-2.805468pt;}
.ws88{word-spacing:-2.752334pt;}
.ws13d{word-spacing:-2.510592pt;}
.ws89{word-spacing:-2.486665pt;}
.wsd7{word-spacing:-2.358074pt;}
.ws2b{word-spacing:-2.327263pt;}
.ws64{word-spacing:-2.274129pt;}
.ws3c{word-spacing:-2.114728pt;}
.ws77{word-spacing:-1.849059pt;}
.ws7{word-spacing:-1.793280pt;}
.ws4a{word-spacing:-1.742791pt;}
.wsbd{word-spacing:-1.707198pt;}
.ws120{word-spacing:-1.541864pt;}
.ws6f{word-spacing:-1.530255pt;}
.wsc9{word-spacing:-1.458534pt;}
.ws48{word-spacing:-1.423988pt;}
.ws13b{word-spacing:-1.362893pt;}
.wsfa{word-spacing:-1.237864pt;}
.wsa9{word-spacing:-1.211452pt;}
.ws139{word-spacing:-1.171610pt;}
.ws34{word-spacing:-1.158318pt;}
.ws132{word-spacing:-1.123789pt;}
.ws73{word-spacing:-1.052051pt;}
.ws2a{word-spacing:-0.945783pt;}
.ws90{word-spacing:-0.892649pt;}
.ws23{word-spacing:-0.733247pt;}
.ws3d{word-spacing:-0.573846pt;}
.wsba{word-spacing:-0.520712pt;}
.ws4c{word-spacing:-0.361310pt;}
.ws6e{word-spacing:-0.255043pt;}
.ws83{word-spacing:-0.201909pt;}
.ws22{word-spacing:-0.095641pt;}
.ws53{word-spacing:-0.053134pt;}
.ws12e{word-spacing:-0.042507pt;}
.ws5e{word-spacing:-0.037194pt;}
.wsd3{word-spacing:-0.026567pt;}
.ws6{word-spacing:-0.023910pt;}
.ws25{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.010627pt;}
.ws78{word-spacing:0.063761pt;}
.ws143{word-spacing:0.071731pt;}
.ws122{word-spacing:0.116895pt;}
.ws24{word-spacing:0.170028pt;}
.ws8{word-spacing:0.215194pt;}
.ws11a{word-spacing:0.223162pt;}
.wsb1{word-spacing:0.276296pt;}
.ws4d{word-spacing:0.329430pt;}
.ws28{word-spacing:0.382564pt;}
.wse{word-spacing:0.406477pt;}
.ws42{word-spacing:0.488832pt;}
.ws124{word-spacing:0.541965pt;}
.wsb3{word-spacing:0.701367pt;}
.ws12{word-spacing:0.741222pt;}
.ws21{word-spacing:0.754501pt;}
.wsc1{word-spacing:0.765790pt;}
.ws7a{word-spacing:0.860769pt;}
.wsbf{word-spacing:0.913903pt;}
.wsb9{word-spacing:0.967036pt;}
.wsaf{word-spacing:1.003057pt;}
.ws40{word-spacing:1.020170pt;}
.ws17{word-spacing:1.028147pt;}
.ws104{word-spacing:1.073304pt;}
.wse6{word-spacing:1.166874pt;}
.ws9f{word-spacing:1.179572pt;}
.ws115{word-spacing:1.198754pt;}
.ws1e{word-spacing:1.232706pt;}
.ws7c{word-spacing:1.285840pt;}
.ws38{word-spacing:1.338973pt;}
.ws126{word-spacing:1.392107pt;}
.ws85{word-spacing:1.445241pt;}
.ws50{word-spacing:1.498375pt;}
.wsb6{word-spacing:1.549423pt;}
.wsa0{word-spacing:1.551509pt;}
.ws9d{word-spacing:1.604643pt;}
.ws56{word-spacing:1.696261pt;}
.ws93{word-spacing:1.697638pt;}
.ws84{word-spacing:1.710911pt;}
.wse4{word-spacing:1.793280pt;}
.ws9{word-spacing:1.841101pt;}
.ws6d{word-spacing:1.870312pt;}
.ws136{word-spacing:1.936742pt;}
.ws7f{word-spacing:1.976580pt;}
.ws1c{word-spacing:2.029714pt;}
.ws80{word-spacing:2.135981pt;}
.ws145{word-spacing:2.223667pt;}
.ws96{word-spacing:2.253932pt;}
.wsd{word-spacing:2.271488pt;}
.ws94{word-spacing:2.291126pt;}
.wsc0{word-spacing:2.295383pt;}
.ws74{word-spacing:2.344228pt;}
.ws6b{word-spacing:2.348517pt;}
.ws82{word-spacing:2.401651pt;}
.wsa{word-spacing:2.414950pt;}
.ws19{word-spacing:2.454785pt;}
.wsa3{word-spacing:2.507919pt;}
.ws13a{word-spacing:2.510592pt;}
.ws51{word-spacing:2.614186pt;}
.ws2{word-spacing:2.701875pt;}
.ws26{word-spacing:2.708386pt;}
.ws131{word-spacing:2.713168pt;}
.ws103{word-spacing:2.720454pt;}
.ws3{word-spacing:2.749696pt;}
.ws72{word-spacing:2.773588pt;}
.ws4b{word-spacing:2.778901pt;}
.wsf5{word-spacing:2.826722pt;}
.wsad{word-spacing:2.879856pt;}
.ws109{word-spacing:2.925295pt;}
.ws6c{word-spacing:2.926047pt;}
.ws1{word-spacing:2.932989pt;}
.ws107{word-spacing:2.950560pt;}
.ws100{word-spacing:2.986123pt;}
.ws8d{word-spacing:3.039257pt;}
.ws20{word-spacing:3.092391pt;}
.ws135{word-spacing:3.180083pt;}
.ws133{word-spacing:3.227904pt;}
.wsa1{word-spacing:3.251793pt;}
.wsa2{word-spacing:3.304927pt;}
.ws37{word-spacing:3.358060pt;}
.ws81{word-spacing:3.411194pt;}
.ws13e{word-spacing:3.419187pt;}
.ws70{word-spacing:3.517462pt;}
.wscd{word-spacing:3.562650pt;}
.ws8c{word-spacing:3.623730pt;}
.ws52{word-spacing:3.676864pt;}
.ws138{word-spacing:3.706112pt;}
.wsfe{word-spacing:3.709790pt;}
.wsb8{word-spacing:3.729997pt;}
.wsbb{word-spacing:3.836265pt;}
.ws57{word-spacing:3.889399pt;}
.wsc3{word-spacing:3.896596pt;}
.ws63{word-spacing:3.942533pt;}
.ws41{word-spacing:3.985067pt;}
.wsa8{word-spacing:3.995667pt;}
.ws39{word-spacing:4.048801pt;}
.ws13c{word-spacing:4.136499pt;}
.ws1b{word-spacing:4.155068pt;}
.ws86{word-spacing:4.208202pt;}
.wsa4{word-spacing:4.314470pt;}
.ws47{word-spacing:4.420738pt;}
.wsb{word-spacing:4.471245pt;}
.wsaa{word-spacing:4.473872pt;}
.ws146{word-spacing:4.519066pt;}
.ws36{word-spacing:4.527005pt;}
.ws118{word-spacing:4.580139pt;}
.ws29{word-spacing:4.633273pt;}
.wsc7{word-spacing:4.686407pt;}
.ws2e{word-spacing:4.739541pt;}
.ws0{word-spacing:4.782067pt;}
.ws60{word-spacing:4.784259pt;}
.ws58{word-spacing:4.792675pt;}
.ws31{word-spacing:4.845809pt;}
.ws43{word-spacing:4.898943pt;}
.ws2c{word-spacing:4.952076pt;}
.wsdd{word-spacing:4.975001pt;}
.ws3f{word-spacing:5.058344pt;}
.ws12a{word-spacing:5.075123pt;}
.ws140{word-spacing:5.092915pt;}
.ws142{word-spacing:5.140736pt;}
.wsfd{word-spacing:5.217746pt;}
.ws6a{word-spacing:5.270880pt;}
.wsb4{word-spacing:5.430281pt;}
.wsde{word-spacing:5.451079pt;}
.wsc2{word-spacing:5.463973pt;}
.ws5{word-spacing:5.475482pt;}
.wsc4{word-spacing:5.483415pt;}
.ws3b{word-spacing:5.536549pt;}
.ws116{word-spacing:5.589683pt;}
.ws12d{word-spacing:5.642817pt;}
.ws9e{word-spacing:5.695951pt;}
.ws1f{word-spacing:5.855352pt;}
.wsf7{word-spacing:5.908486pt;}
.wsf6{word-spacing:5.927168pt;}
.ws7e{word-spacing:6.014754pt;}
.ws11d{word-spacing:6.067888pt;}
.wsbe{word-spacing:6.088596pt;}
.ws1a{word-spacing:6.174155pt;}
.ws66{word-spacing:6.227289pt;}
.ws11c{word-spacing:6.280423pt;}
.ws137{word-spacing:6.336256pt;}
.ws9b{word-spacing:6.439825pt;}
.ws144{word-spacing:6.479718pt;}
.ws35{word-spacing:6.492959pt;}
.ws1d{word-spacing:6.546092pt;}
.ws12b{word-spacing:6.599226pt;}
.ws129{word-spacing:6.602425pt;}
.ws102{word-spacing:6.652360pt;}
.ws134{word-spacing:6.671002pt;}
.ws7b{word-spacing:6.758628pt;}
.ws98{word-spacing:6.811762pt;}
.ws45{word-spacing:6.971163pt;}
.wsab{word-spacing:7.077431pt;}
.ws117{word-spacing:7.183699pt;}
.ws32{word-spacing:7.236833pt;}
.ws55{word-spacing:7.295280pt;}
.ws30{word-spacing:7.449368pt;}
.wsac{word-spacing:7.555636pt;}
.wsf{word-spacing:7.579597pt;}
.wsb5{word-spacing:7.608770pt;}
.wsbc{word-spacing:7.661904pt;}
.wsec{word-spacing:7.688585pt;}
.ws11f{word-spacing:7.821305pt;}
.ws75{word-spacing:7.874439pt;}
.wsa7{word-spacing:7.927573pt;}
.ws97{word-spacing:7.980707pt;}
.wsfb{word-spacing:8.086975pt;}
.wsf9{word-spacing:8.140108pt;}
.wsdb{word-spacing:8.255477pt;}
.ws119{word-spacing:8.299510pt;}
.wsb2{word-spacing:8.352644pt;}
.ws12f{word-spacing:8.458912pt;}
.ws65{word-spacing:8.512045pt;}
.wsa6{word-spacing:8.565179pt;}
.wse3{word-spacing:8.583834pt;}
.ws10{word-spacing:8.727296pt;}
.ws4e{word-spacing:8.767088pt;}
.ws11e{word-spacing:8.777715pt;}
.ws13f{word-spacing:8.870758pt;}
.wsc5{word-spacing:9.043384pt;}
.ws8e{word-spacing:9.096518pt;}
.wsfc{word-spacing:9.149652pt;}
.ws87{word-spacing:9.309053pt;}
.ws114{word-spacing:9.372877pt;}
.ws7d{word-spacing:9.415321pt;}
.ws9a{word-spacing:9.627857pt;}
.wse5{word-spacing:9.635891pt;}
.ws12c{word-spacing:9.734124pt;}
.ws141{word-spacing:10.305382pt;}
.wsdc{word-spacing:10.435022pt;}
.ws16{word-spacing:10.735770pt;}
.ws8f{word-spacing:10.743668pt;}
.ws46{word-spacing:10.956203pt;}
.ws2f{word-spacing:11.221873pt;}
.wsf8{word-spacing:11.700077pt;}
.ws8b{word-spacing:11.799996pt;}
.ws8a{word-spacing:11.806345pt;}
.wsc8{word-spacing:12.117086pt;}
.ws91{word-spacing:12.815889pt;}
.wsd9{word-spacing:12.982783pt;}
.ws10b{word-spacing:13.477849pt;}
.ws130{word-spacing:13.507160pt;}
.wsd8{word-spacing:13.867991pt;}
.wsd2{word-spacing:15.121415pt;}
.ws92{word-spacing:15.314705pt;}
.ws111{word-spacing:16.265078pt;}
.ws123{word-spacing:16.365231pt;}
.wsdf{word-spacing:17.297241pt;}
.ws27{word-spacing:17.502413pt;}
.wsd5{word-spacing:17.506523pt;}
.ws108{word-spacing:17.649284pt;}
.wsf4{word-spacing:17.718624pt;}
.wse0{word-spacing:17.925813pt;}
.wsae{word-spacing:18.915657pt;}
.wse1{word-spacing:18.979696pt;}
.ws11{word-spacing:19.493101pt;}
.wsb0{word-spacing:19.706809pt;}
.ws125{word-spacing:20.957653pt;}
.wsda{word-spacing:21.466643pt;}
.wsc{word-spacing:21.702084pt;}
.ws99{word-spacing:22.201885pt;}
.wse2{word-spacing:22.229786pt;}
.ws71{word-spacing:22.932721pt;}
.ws76{word-spacing:23.076721pt;}
.ws3a{word-spacing:24.461653pt;}
.ws15{word-spacing:24.526256pt;}
.ws4{word-spacing:26.515792pt;}
.ws33{word-spacing:26.660721pt;}
.ws9c{word-spacing:26.877653pt;}
.wsef{word-spacing:29.990168pt;}
.wsce{word-spacing:35.744162pt;}
.ws18{word-spacing:51.805867pt;}
.wse9{word-spacing:54.059501pt;}
.wsed{word-spacing:54.064834pt;}
.ws10d{word-spacing:56.220124pt;}
.ws10e{word-spacing:57.374574pt;}
.ws113{word-spacing:58.745457pt;}
.ws10f{word-spacing:59.703942pt;}
.ws112{word-spacing:60.922843pt;}
.wsf3{word-spacing:69.639379pt;}
.wsf0{word-spacing:73.346045pt;}
.wsf2{word-spacing:73.351379pt;}
.ws110{word-spacing:78.277268pt;}
.ws10c{word-spacing:78.669416pt;}
.ws10a{word-spacing:85.483765pt;}
.wsd0{word-spacing:127.804712pt;}
.wsd1{word-spacing:149.689363pt;}
.wsf1{word-spacing:162.461383pt;}
.wscf{word-spacing:181.675859pt;}
.wse8{word-spacing:291.299033pt;}
.ws5f{word-spacing:499.665713pt;}
.ws95{word-spacing:703.985583pt;}
._f{margin-left:-35.897481pt;}
._17{margin-left:-31.235238pt;}
._6{margin-left:-28.885705pt;}
._12{margin-left:-27.848114pt;}
._3{margin-left:-26.566933pt;}
._a{margin-left:-25.079185pt;}
._b{margin-left:-23.976432pt;}
._1b{margin-left:-22.600263pt;}
._5{margin-left:-20.669074pt;}
._32{margin-left:-19.771169pt;}
._d{margin-left:-18.691625pt;}
._21{margin-left:-17.071764pt;}
._4{margin-left:-5.869485pt;}
._c{margin-left:-4.064768pt;}
._0{margin-left:-2.371905pt;}
._9{margin-left:-1.453406pt;}
._7{width:1.459374pt;}
._2{width:2.371905pt;}
._e{width:3.291682pt;}
._1{width:4.820323pt;}
._1d{width:6.216662pt;}
._19{width:9.399305pt;}
._18{width:11.825953pt;}
._15{width:13.583151pt;}
._13{width:15.162271pt;}
._3c{width:16.386528pt;}
._1f{width:17.408789pt;}
._8{width:18.634999pt;}
._1c{width:19.741039pt;}
._14{width:21.234428pt;}
._10{width:22.243971pt;}
._1e{width:23.871499pt;}
._30{width:25.325735pt;}
._1a{width:26.883041pt;}
._20{width:29.948382pt;}
._3e{width:33.171409pt;}
._31{width:46.220496pt;}
._16{width:71.731200pt;}
._3b{width:97.137773pt;}
._3d{width:127.107686pt;}
._36{width:128.094637pt;}
._38{width:129.410217pt;}
._2e{width:133.078701pt;}
._2b{width:136.351738pt;}
._2c{width:138.508966pt;}
._28{width:141.075325pt;}
._26{width:141.967971pt;}
._23{width:143.195360pt;}
._25{width:145.389782pt;}
._29{width:149.555466pt;}
._11{width:151.687578pt;}
._3a{width:152.669929pt;}
._39{width:159.741597pt;}
._35{width:162.448127pt;}
._33{width:163.843952pt;}
._37{width:195.044606pt;}
._27{width:203.700524pt;}
._34{width:304.082264pt;}
._22{width:730.854240pt;}
._2d{width:745.917648pt;}
._24{width:779.094339pt;}
._2a{width:799.439238pt;}
._2f{width:819.821331pt;}
.fs7{font-size:21.773867pt;}
.fs8{font-size:26.128640pt;}
.fs6{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:8.459038pt;}
.y113{bottom:21.523358pt;}
.y11b{bottom:29.688776pt;}
.y114{bottom:36.836102pt;}
.y11e{bottom:37.941180pt;}
.y120{bottom:52.066976pt;}
.y11c{bottom:52.426300pt;}
.y116{bottom:73.606556pt;}
.y11a{bottom:81.657552pt;}
.y119{bottom:88.189712pt;}
.y117{bottom:141.007561pt;}
.y50{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.yc3{bottom:177.182667pt;}
.y17e{bottom:185.473333pt;}
.y25{bottom:188.044000pt;}
.ye7{bottom:195.938667pt;}
.yc2{bottom:197.928000pt;}
.y17d{bottom:200.085333pt;}
.y24{bottom:203.984000pt;}
.y4f{bottom:204.261333pt;}
.ye6{bottom:211.878667pt;}
.yc1{bottom:213.868000pt;}
.y17c{bottom:214.697333pt;}
.y23{bottom:219.924000pt;}
.y4e{bottom:220.201333pt;}
.y97{bottom:223.622667pt;}
.ye5{bottom:227.818667pt;}
.y17b{bottom:228.728000pt;}
.yc0{bottom:229.808000pt;}
.y22{bottom:235.864000pt;}
.y4d{bottom:236.142667pt;}
.y96{bottom:239.562667pt;}
.y17a{bottom:243.340000pt;}
.ye4{bottom:243.758667pt;}
.ybf{bottom:245.748000pt;}
.y151{bottom:247.206667pt;}
.y70{bottom:251.804000pt;}
.y21{bottom:251.904000pt;}
.y4c{bottom:252.082667pt;}
.y12d{bottom:254.474667pt;}
.y95{bottom:255.502667pt;}
.y179{bottom:257.952000pt;}
.ye3{bottom:259.698667pt;}
.ybe{bottom:261.688000pt;}
.y150{bottom:263.146667pt;}
.y6f{bottom:267.745333pt;}
.y20{bottom:267.844000pt;}
.y4b{bottom:268.022667pt;}
.y12c{bottom:270.414667pt;}
.y94{bottom:271.444000pt;}
.y178{bottom:271.982667pt;}
.ye2{bottom:275.640000pt;}
.ybd{bottom:277.629333pt;}
.y14f{bottom:279.086667pt;}
.y6e{bottom:283.685333pt;}
.y1f{bottom:283.785333pt;}
.y4a{bottom:283.962667pt;}
.y12b{bottom:286.354667pt;}
.y177{bottom:286.594667pt;}
.y93{bottom:287.384000pt;}
.ye1{bottom:291.580000pt;}
.ybc{bottom:293.569333pt;}
.y14e{bottom:295.026667pt;}
.y6d{bottom:299.625333pt;}
.y1e{bottom:299.725333pt;}
.y111{bottom:299.729333pt;}
.y49{bottom:299.902667pt;}
.y176{bottom:300.626667pt;}
.y12a{bottom:302.294667pt;}
.y92{bottom:303.324000pt;}
.ye0{bottom:307.520000pt;}
.ybb{bottom:309.509333pt;}
.y14d{bottom:310.966667pt;}
.y175{bottom:315.238667pt;}
.y1d{bottom:315.665333pt;}
.y110{bottom:315.669333pt;}
.y48{bottom:315.842667pt;}
.y129{bottom:318.236000pt;}
.y91{bottom:319.264000pt;}
.ydf{bottom:323.460000pt;}
.yba{bottom:325.713333pt;}
.y14c{bottom:327.581333pt;}
.y174{bottom:329.269333pt;}
.y1c{bottom:331.605333pt;}
.y10f{bottom:331.610667pt;}
.y47{bottom:331.784000pt;}
.y128{bottom:334.176000pt;}
.y90{bottom:335.204000pt;}
.y6c{bottom:335.701333pt;}
.yde{bottom:339.400000pt;}
.yb9{bottom:341.654667pt;}
.y14b{bottom:343.521333pt;}
.y173{bottom:343.881333pt;}
.y1b{bottom:347.545333pt;}
.y10e{bottom:347.550667pt;}
.y127{bottom:350.116000pt;}
.y8f{bottom:351.145333pt;}
.ydd{bottom:355.340000pt;}
.yb8{bottom:357.594667pt;}
.y172{bottom:358.493333pt;}
.y14a{bottom:359.462667pt;}
.y1a{bottom:363.485333pt;}
.y10d{bottom:363.490667pt;}
.y46{bottom:365.053333pt;}
.y126{bottom:366.056000pt;}
.y8e{bottom:367.085333pt;}
.ydc{bottom:371.281333pt;}
.y171{bottom:372.525333pt;}
.yb7{bottom:373.534667pt;}
.y149{bottom:375.402667pt;}
.y10c{bottom:379.430667pt;}
.y125{bottom:381.996000pt;}
.y6b{bottom:382.405333pt;}
.y8d{bottom:383.025333pt;}
.y170{bottom:387.136000pt;}
.ydb{bottom:387.221333pt;}
.yb6{bottom:389.474667pt;}
.y148{bottom:391.342667pt;}
.y19{bottom:395.864000pt;}
.y124{bottom:397.936000pt;}
.y6a{bottom:398.345333pt;}
.y8c{bottom:398.965333pt;}
.y16f{bottom:401.748000pt;}
.yda{bottom:403.161333pt;}
.yb5{bottom:405.414667pt;}
.y147{bottom:407.282667pt;}
.y45{bottom:408.950667pt;}
.y123{bottom:413.877333pt;}
.y69{bottom:414.285333pt;}
.y8b{bottom:414.905333pt;}
.y16e{bottom:415.780000pt;}
.yd9{bottom:419.101333pt;}
.yb4{bottom:421.620000pt;}
.y146{bottom:423.222667pt;}
.y44{bottom:424.890667pt;}
.y10b{bottom:426.878667pt;}
.y122{bottom:429.817333pt;}
.y16d{bottom:430.392000pt;}
.y8a{bottom:434.545333pt;}
.yd8{bottom:435.041333pt;}
.y10a{bottom:437.505333pt;}
.yb3{bottom:437.560000pt;}
.y145{bottom:439.164000pt;}
.y43{bottom:440.830667pt;}
.y18{bottom:441.372000pt;}
.y16c{bottom:444.422667pt;}
.y68{bottom:445.421333pt;}
.y109{bottom:448.132000pt;}
.y89{bottom:450.485333pt;}
.yd7{bottom:450.981333pt;}
.yb2{bottom:453.500000pt;}
.y144{bottom:455.104000pt;}
.y17{bottom:455.984000pt;}
.y42{bottom:456.770667pt;}
.y108{bottom:458.758667pt;}
.y16b{bottom:459.034667pt;}
.y65{bottom:460.641333pt;}
.y88{bottom:466.425333pt;}
.yd6{bottom:466.922667pt;}
.y64{bottom:467.202667pt;}
.y66{bottom:467.642667pt;}
.yb1{bottom:469.440000pt;}
.y107{bottom:469.917333pt;}
.y16{bottom:470.596000pt;}
.y143{bottom:471.044000pt;}
.y41{bottom:472.710667pt;}
.y67{bottom:472.772000pt;}
.y63{bottom:473.030667pt;}
.y16a{bottom:473.066667pt;}
.y61{bottom:476.314667pt;}
.y106{bottom:481.076000pt;}
.y87{bottom:482.365333pt;}
.yd5{bottom:482.862667pt;}
.yb0{bottom:485.381333pt;}
.y62{bottom:485.808000pt;}
.y142{bottom:486.984000pt;}
.y169{bottom:487.677333pt;}
.y40{bottom:488.929333pt;}
.y105{bottom:492.233333pt;}
.y121{bottom:494.358667pt;}
.y86{bottom:498.305333pt;}
.yd4{bottom:498.802667pt;}
.y15{bottom:499.918667pt;}
.yaf{bottom:501.585333pt;}
.y168{bottom:502.289333pt;}
.y141{bottom:502.924000pt;}
.y3f{bottom:504.869333pt;}
.y85{bottom:514.245333pt;}
.y14{bottom:514.530667pt;}
.y11d{bottom:514.694667pt;}
.y167{bottom:516.321333pt;}
.y104{bottom:517.250667pt;}
.yae{bottom:517.525333pt;}
.y140{bottom:519.538667pt;}
.y3e{bottom:520.809333pt;}
.yd3{bottom:528.820000pt;}
.y13{bottom:529.142667pt;}
.y84{bottom:530.186667pt;}
.y166{bottom:530.933333pt;}
.y60{bottom:531.360000pt;}
.y103{bottom:531.862667pt;}
.yad{bottom:533.465333pt;}
.y13f{bottom:535.478667pt;}
.y3d{bottom:536.750667pt;}
.y12{bottom:543.754667pt;}
.y165{bottom:545.545333pt;}
.y83{bottom:546.126667pt;}
.y102{bottom:546.474667pt;}
.y11f{bottom:547.975913pt;}
.y5f{bottom:548.138667pt;}
.yac{bottom:549.406667pt;}
.y13e{bottom:551.420000pt;}
.y3c{bottom:552.690667pt;}
.y11{bottom:558.366667pt;}
.y164{bottom:559.576000pt;}
.y101{bottom:561.086667pt;}
.y82{bottom:562.066667pt;}
.y5e{bottom:564.080000pt;}
.yab{bottom:565.346667pt;}
.y13d{bottom:567.360000pt;}
.y3b{bottom:568.630667pt;}
.yd2{bottom:569.464000pt;}
.y10{bottom:572.978667pt;}
.y163{bottom:574.188000pt;}
.y81{bottom:578.006667pt;}
.y5d{bottom:580.020000pt;}
.y13c{bottom:583.300000pt;}
.y3a{bottom:584.570667pt;}
.yd1{bottom:585.404000pt;}
.yf{bottom:587.590667pt;}
.y162{bottom:588.800000pt;}
.y100{bottom:589.921333pt;}
.y80{bottom:593.946667pt;}
.y5c{bottom:595.960000pt;}
.yaa{bottom:598.549333pt;}
.y13b{bottom:599.240000pt;}
.yff{bottom:600.548000pt;}
.y39{bottom:600.789333pt;}
.yd0{bottom:601.345333pt;}
.ye{bottom:602.202667pt;}
.y161{bottom:602.830667pt;}
.y7f{bottom:609.886667pt;}
.yfe{bottom:611.174667pt;}
.y5b{bottom:612.738667pt;}
.y38{bottom:616.729333pt;}
.yd{bottom:616.814667pt;}
.ycf{bottom:617.285333pt;}
.y160{bottom:617.442667pt;}
.yfd{bottom:621.801333pt;}
.y7e{bottom:625.828000pt;}
.y5a{bottom:628.680000pt;}
.yc{bottom:631.425333pt;}
.y15f{bottom:632.054667pt;}
.yfc{bottom:632.428000pt;}
.y37{bottom:632.669333pt;}
.yce{bottom:633.225333pt;}
.y13a{bottom:634.492000pt;}
.y7d{bottom:641.768000pt;}
.ya9{bottom:642.378667pt;}
.yfb{bottom:643.054667pt;}
.y59{bottom:644.620000pt;}
.yb{bottom:646.037333pt;}
.y15e{bottom:646.086667pt;}
.y36{bottom:648.609333pt;}
.ycd{bottom:649.165333pt;}
.yfa{bottom:653.682667pt;}
.y7c{bottom:657.708000pt;}
.ya8{bottom:658.318667pt;}
.y58{bottom:660.560000pt;}
.ya{bottom:660.649333pt;}
.y15d{bottom:660.698667pt;}
.y112{bottom:661.456000pt;}
.yf9{bottom:664.309333pt;}
.y35{bottom:664.549333pt;}
.ycc{bottom:665.105333pt;}
.y57{bottom:672.493333pt;}
.y7b{bottom:673.648000pt;}
.ya7{bottom:674.260000pt;}
.yf8{bottom:674.936000pt;}
.y9{bottom:675.261333pt;}
.y15c{bottom:675.310667pt;}
.y56{bottom:676.500000pt;}
.y139{bottom:680.372000pt;}
.y34{bottom:680.768000pt;}
.ycb{bottom:681.045333pt;}
.yf7{bottom:685.562667pt;}
.y15b{bottom:689.341333pt;}
.y7a{bottom:689.588000pt;}
.ya6{bottom:690.200000pt;}
.y118{bottom:694.737246pt;}
.yf6{bottom:696.189333pt;}
.y138{bottom:696.312000pt;}
.y33{bottom:696.708000pt;}
.yca{bottom:696.986667pt;}
.y15a{bottom:703.953333pt;}
.y79{bottom:705.529333pt;}
.y55{bottom:705.920000pt;}
.yf5{bottom:707.348000pt;}
.y54{bottom:709.928000pt;}
.y137{bottom:712.252000pt;}
.y32{bottom:712.648000pt;}
.yc9{bottom:712.926667pt;}
.y159{bottom:717.984000pt;}
.y78{bottom:721.469333pt;}
.yf4{bottom:721.693333pt;}
.y136{bottom:728.192000pt;}
.y31{bottom:728.589333pt;}
.yc8{bottom:728.866667pt;}
.y8{bottom:730.466667pt;}
.yf3{bottom:732.320000pt;}
.y158{bottom:732.596000pt;}
.ya5{bottom:737.968000pt;}
.y77{bottom:741.108000pt;}
.yf2{bottom:742.948000pt;}
.y135{bottom:744.132000pt;}
.y30{bottom:744.529333pt;}
.yc7{bottom:744.806667pt;}
.y7{bottom:745.078667pt;}
.y157{bottom:746.628000pt;}
.ya4{bottom:748.594667pt;}
.yf1{bottom:753.574667pt;}
.y76{bottom:757.048000pt;}
.ya3{bottom:759.221333pt;}
.y6{bottom:759.689333pt;}
.y53{bottom:759.908000pt;}
.y134{bottom:760.073333pt;}
.y2f{bottom:760.469333pt;}
.yc6{bottom:760.746667pt;}
.y156{bottom:761.240000pt;}
.yf0{bottom:764.201333pt;}
.ya2{bottom:769.848000pt;}
.y75{bottom:772.988000pt;}
.y5{bottom:774.301333pt;}
.yef{bottom:774.828000pt;}
.y52{bottom:775.848000pt;}
.y155{bottom:775.852000pt;}
.y133{bottom:776.013333pt;}
.y2e{bottom:776.409333pt;}
.yc5{bottom:776.688000pt;}
.ya1{bottom:780.474667pt;}
.yee{bottom:785.454667pt;}
.y74{bottom:788.929333pt;}
.y154{bottom:789.882667pt;}
.ya0{bottom:791.101333pt;}
.y51{bottom:791.788000pt;}
.y132{bottom:791.953333pt;}
.y2d{bottom:792.349333pt;}
.yc4{bottom:792.628000pt;}
.yed{bottom:796.081333pt;}
.y9f{bottom:801.728000pt;}
.y4{bottom:802.142667pt;}
.y153{bottom:804.494667pt;}
.y73{bottom:804.869333pt;}
.yec{bottom:806.708000pt;}
.y131{bottom:807.893333pt;}
.y2c{bottom:808.568000pt;}
.y9e{bottom:812.356000pt;}
.yeb{bottom:817.334667pt;}
.y3{bottom:818.082667pt;}
.y72{bottom:820.809333pt;}
.y9d{bottom:822.982667pt;}
.y130{bottom:823.833333pt;}
.y2b{bottom:824.508000pt;}
.yea{bottom:827.961333pt;}
.y152{bottom:832.144000pt;}
.y9c{bottom:833.609333pt;}
.y71{bottom:836.749333pt;}
.ye9{bottom:839.120000pt;}
.y12f{bottom:839.773333pt;}
.y2a{bottom:840.448000pt;}
.y9b{bottom:844.236000pt;}
.y9a{bottom:855.393333pt;}
.y12e{bottom:855.714667pt;}
.y29{bottom:856.388000pt;}
.ye8{bottom:864.026667pt;}
.y2{bottom:864.358667pt;}
.y28{bottom:872.329333pt;}
.y99{bottom:878.638667pt;}
.y1{bottom:888.269333pt;}
.y98{bottom:893.250667pt;}
.y27{bottom:922.806667pt;}
.hd{height:14.850916pt;}
.h1b{height:16.134435pt;}
.h1c{height:19.361322pt;}
.h19{height:21.200555pt;}
.h12{height:26.519037pt;}
.h15{height:27.895200pt;}
.h4{height:29.457613pt;}
.h18{height:34.471200pt;}
.h3{height:35.865600pt;}
.h13{height:37.459376pt;}
.h6{height:39.850400pt;}
.h5{height:44.887791pt;}
.h17{height:45.804370pt;}
.h2{height:47.175200pt;}
.h16{height:47.180533pt;}
.hc{height:49.242400pt;}
.h7{height:49.249703pt;}
.he{height:50.595376pt;}
.hf{height:52.986400pt;}
.h1{height:53.865199pt;}
.hb{height:55.877067pt;}
.h9{height:57.103733pt;}
.ha{height:65.276370pt;}
.h8{height:65.281703pt;}
.h14{height:86.737703pt;}
.h11{height:89.048021pt;}
.h1d{height:96.675968pt;}
.h10{height:98.914688pt;}
.h1a{height:156.771840pt;}
.h0{height:1056.000000pt;}
.w2{width:116.272448pt;}
.w1{width:156.608536pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:5.682870pt;}
.x22{left:18.747190pt;}
.x2d{left:21.191688pt;}
.x26{left:23.222101pt;}
.x27{left:25.377387pt;}
.x2b{left:26.830738pt;}
.x2a{left:28.191823pt;}
.x25{left:29.193366pt;}
.x30{left:34.234288pt;}
.x21{left:50.238080pt;}
.x23{left:76.099664pt;}
.xa{left:179.686667pt;}
.x1e{left:183.338667pt;}
.x33{left:185.829333pt;}
.x12{left:189.081333pt;}
.x3{left:190.449333pt;}
.xb{left:199.612000pt;}
.x6{left:202.246667pt;}
.x1{left:210.052000pt;}
.x2{left:211.150667pt;}
.x20{left:213.642667pt;}
.x32{left:216.530667pt;}
.x9{left:217.481333pt;}
.x1f{left:239.228000pt;}
.x1d{left:248.021333pt;}
.xf{left:249.685333pt;}
.x8{left:259.604000pt;}
.x2c{left:264.645333pt;}
.x4{left:269.782667pt;}
.x2e{left:291.231116pt;}
.x10{left:305.929333pt;}
.x7{left:313.233333pt;}
.xc{left:327.941333pt;}
.x13{left:338.565333pt;}
.x5{left:348.404000pt;}
.x28{left:365.051116pt;}
.xd{left:395.038667pt;}
.x14{left:399.998667pt;}
.x2f{left:412.285333pt;}
.x11{left:435.906667pt;}
.x31{left:438.871116pt;}
.xe{left:450.730667pt;}
.x29{left:486.105333pt;}
.x15{left:512.292000pt;}
.x16{left:551.920000pt;}
.x17{left:575.564000pt;}
.x18{left:589.250667pt;}
.x19{left:599.502667pt;}
.x1c{left:618.990667pt;}
.x1a{left:621.669333pt;}
.x1b{left:623.814667pt;}
}




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