
    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_0f9f055ac2d00af07f62af1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_810060a3f6863f9a27267c15.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_34da178d3295c7786097bb0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_751a6a4d611b7bb00f842228.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723000;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_9840688f333265d386a75443.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_c1a1af5674def9158cdd4acd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;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_74c79fe4d58a4c77127bf5bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;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_5c06f2b6b1e606b710aa70c6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897000;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_1c38aa8011cdfcb44108b4d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.014160;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_d42fe7242e2b29c45f51d54a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;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_6938cf8f65fda9cc62d4c4e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;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_fad81e5044c96f5934d6da62.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_ecc46887311d57bf3a9e629a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;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_858edd59e2fc5b51070e703d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.541000;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_16279d10e0f83be37aafde02.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.665000;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_227251eb1ca0f66b71dcc191.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.014160;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_7d68c50e5727b52cc7fe646d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.003418;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_8b73054493e2dd36579a7ebd.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;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_fad81e5044c96f5934d6da62.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.402354;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_38258dfbc24c67a877a2dbe0.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.011230;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_227251eb1ca0f66b71dcc191.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.014160;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_d8b7ec512a3d6a7863602bdd.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.003418;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_e58698bd4ce3b98faf947de0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;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_e6883b09f073dd59779cc6ac.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;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_38258dfbc24c67a877a2dbe0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.011230;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_227251eb1ca0f66b71dcc191.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.014160;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_587a3e2b940b077abf2dc735.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.003418;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_e58698bd4ce3b98faf947de0.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;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_e6883b09f073dd59779cc6ac.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.402354;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:ff21;src:url('chunks/assets/font_38258dfbc24c67a877a2dbe0.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.011230;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:ff22;src:url('chunks/assets/font_227251eb1ca0f66b71dcc191.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.014160;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:ff23;src:url('chunks/assets/font_9e6283bb0546fb9597e69a7b.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.003418;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:ff24;src:url('chunks/assets/font_451e86544523934cdaa34542.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.011230;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:ff25;src:url('chunks/assets/font_932cfa1683c9ae9cad9575ca.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.402354;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:ff26;src:url('chunks/assets/font_227251eb1ca0f66b71dcc191.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.014160;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:ff27;src:url('chunks/assets/font_b7f17c5c19c78f90aa74b022.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.003418;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:ff28;src:url('chunks/assets/font_e5a375d3c82eaddbde5cc8c1.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.011230;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:ff29;src:url('chunks/assets/font_932cfa1683c9ae9cad9575ca.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.402354;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:ff2a;src:url('chunks/assets/font_38258dfbc24c67a877a2dbe0.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.011230;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:ff2b;src:url('chunks/assets/font_cc5a7297feba8190793acdcc.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.009000;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:ff2c;src:url('chunks/assets/font_7f7acb1f321fc65ed3528884.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.869000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,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);}
.m21{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v2{vertical-align:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls15{letter-spacing:-0.425400px;}
.ls31{letter-spacing:-0.339600px;}
.ls23{letter-spacing:-0.306000px;}
.ls24{letter-spacing:-0.290700px;}
.ls18{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.159000px;}
.ls22{letter-spacing:-0.153000px;}
.ls2d{letter-spacing:-0.122400px;}
.ls13{letter-spacing:-0.090000px;}
.ls21{letter-spacing:-0.076500px;}
.ls17{letter-spacing:-0.013320px;}
.lsb{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000002px;}
.lsf{letter-spacing:0.000124px;}
.ls0{letter-spacing:0.000240px;}
.ls4{letter-spacing:0.000566px;}
.ls37{letter-spacing:0.000624px;}
.ls38{letter-spacing:0.000676px;}
.ls7{letter-spacing:0.000990px;}
.ls39{letter-spacing:0.001036px;}
.ls1a{letter-spacing:0.001193px;}
.ls3a{letter-spacing:0.001301px;}
.ls9{letter-spacing:0.001518px;}
.ls34{letter-spacing:0.001541px;}
.ls1b{letter-spacing:0.002083px;}
.ls4e{letter-spacing:0.002338px;}
.ls2a{letter-spacing:0.002400px;}
.ls33{letter-spacing:0.002958px;}
.lse{letter-spacing:0.003226px;}
.ls10{letter-spacing:0.003494px;}
.ls8{letter-spacing:0.003741px;}
.ls3b{letter-spacing:0.003859px;}
.ls36{letter-spacing:0.004435px;}
.ls2f{letter-spacing:0.004784px;}
.ls4c{letter-spacing:0.004800px;}
.ls1e{letter-spacing:0.015300px;}
.ls25{letter-spacing:0.018000px;}
.ls32{letter-spacing:0.020160px;}
.ls16{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.107100px;}
.ls20{letter-spacing:0.122400px;}
.ls27{letter-spacing:0.126000px;}
.ls29{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.145200px;}
.ls1d{letter-spacing:0.153000px;}
.ls11{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.264000px;}
.ls48{letter-spacing:0.524565px;}
.ls49{letter-spacing:0.530447px;}
.ls46{letter-spacing:0.537859px;}
.lsc{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.lsa{letter-spacing:11.954850px;}
.ls4a{letter-spacing:12.093257px;}
.ls28{letter-spacing:12.104640px;}
.ls47{letter-spacing:12.546318px;}
.ls50{letter-spacing:12.974145px;}
.ls43{letter-spacing:13.141175px;}
.ls52{letter-spacing:13.331032px;}
.ls4f{letter-spacing:13.354360px;}
.ls45{letter-spacing:13.392191px;}
.ls53{letter-spacing:13.409541px;}
.ls3c{letter-spacing:13.448400px;}
.ls41{letter-spacing:13.448604px;}
.ls3e{letter-spacing:13.451102px;}
.ls3d{letter-spacing:13.454400px;}
.ls44{letter-spacing:13.497816px;}
.ls51{letter-spacing:13.663661px;}
.ls4d{letter-spacing:13.989859px;}
.ls1c{letter-spacing:14.689257px;}
.ls2c{letter-spacing:15.003676px;}
.ls35{letter-spacing:15.050940px;}
.ls2b{letter-spacing:15.183002px;}
.ls2e{letter-spacing:16.019861px;}
.ls42{letter-spacing:16.309224px;}
.ls40{letter-spacing:16.697459px;}
.ls4b{letter-spacing:18.830400px;}
.ls3f{letter-spacing:26.891576px;}
.ls3{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.lsd{letter-spacing:2240.111700px;}
.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;}
}
.ws0{word-spacing:-83.827711px;}
.ws95{word-spacing:-60.120000px;}
.ws81{word-spacing:-54.000000px;}
.ws75{word-spacing:-45.900000px;}
.ws86{word-spacing:-25.554240px;}
.wse{word-spacing:-17.394700px;}
.wsbb{word-spacing:-15.655334px;}
.ws96{word-spacing:-15.175200px;}
.ws98{word-spacing:-15.050160px;}
.ws45{word-spacing:-15.030000px;}
.ws48{word-spacing:-15.016680px;}
.ws13{word-spacing:-14.943900px;}
.ws4a{word-spacing:-14.871000px;}
.ws49{word-spacing:-14.850000px;}
.ws97{word-spacing:-14.690400px;}
.ws46{word-spacing:-14.604600px;}
.ws6{word-spacing:-14.355754px;}
.ws21{word-spacing:-13.915795px;}
.ws47{word-spacing:-13.536000px;}
.ws82{word-spacing:-13.518000px;}
.ws80{word-spacing:-13.500000px;}
.ws7f{word-spacing:-13.449600px;}
.ws94{word-spacing:-12.150000px;}
.ws1f{word-spacing:-11.955150px;}
.ws74{word-spacing:-11.475000px;}
.ws3{word-spacing:-11.357400px;}
.ws92{word-spacing:-11.352600px;}
.ws77{word-spacing:-11.184300px;}
.ws76{word-spacing:-11.169000px;}
.ws91{word-spacing:-10.327500px;}
.ws3d{word-spacing:-5.439580px;}
.ws31{word-spacing:-3.646312px;}
.ws72{word-spacing:-3.526760px;}
.ws3c{word-spacing:-3.466985px;}
.ws57{word-spacing:-3.407209px;}
.ws55{word-spacing:-3.287658px;}
.ws111{word-spacing:-3.120307px;}
.wsb3{word-spacing:-2.869229px;}
.wsb8{word-spacing:-2.743718px;}
.ws63{word-spacing:-2.630126px;}
.wsd9{word-spacing:-2.582323px;}
.ws8e{word-spacing:-2.474726px;}
.ws9e{word-spacing:-2.450800px;}
.wsdd{word-spacing:-2.367130px;}
.ws39{word-spacing:-2.271473px;}
.wsa9{word-spacing:-2.211697px;}
.ws14{word-spacing:-2.151922px;}
.ws18{word-spacing:-2.092146px;}
.wsb{word-spacing:-1.908367px;}
.ws112{word-spacing:-1.882944px;}
.wsf7{word-spacing:-1.775347px;}
.ws101{word-spacing:-1.721549px;}
.ws4c{word-spacing:-1.673717px;}
.wsff{word-spacing:-1.667750px;}
.wse0{word-spacing:-1.506355px;}
.ws61{word-spacing:-1.494390px;}
.ws90{word-spacing:-1.434614px;}
.ws58{word-spacing:-1.374839px;}
.ws85{word-spacing:-1.344960px;}
.wsa{word-spacing:-1.322630px;}
.ws59{word-spacing:-1.195512px;}
.wsbc{word-spacing:-1.183565px;}
.wsc{word-spacing:-1.135736px;}
.wsb9{word-spacing:-1.022170px;}
.wsd{word-spacing:-1.016185px;}
.wsa7{word-spacing:-0.956410px;}
.wsee{word-spacing:-0.914573px;}
.ws6e{word-spacing:-0.896634px;}
.ws8d{word-spacing:-0.860774px;}
.ws65{word-spacing:-0.836858px;}
.wsf{word-spacing:-0.777083px;}
.ws25{word-spacing:-0.717307px;}
.ws24{word-spacing:-0.657532px;}
.ws115{word-spacing:-0.645581px;}
.wse8{word-spacing:-0.537984px;}
.wsa0{word-spacing:-0.537980px;}
.ws102{word-spacing:-0.484186px;}
.ws53{word-spacing:-0.478205px;}
.wsfd{word-spacing:-0.430387px;}
.ws6d{word-spacing:-0.418429px;}
.wsef{word-spacing:-0.376589px;}
.ws9a{word-spacing:-0.358654px;}
.wsb7{word-spacing:-0.322790px;}
.ws41{word-spacing:-0.298878px;}
.ws78{word-spacing:-0.268992px;}
.ws2d{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.179327px;}
.ws89{word-spacing:-0.161395px;}
.ws12{word-spacing:-0.119551px;}
.ws8f{word-spacing:-0.107597px;}
.ws4{word-spacing:-0.059776px;}
.ws4b{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.wsfb{word-spacing:-0.001114px;}
.ws2{word-spacing:-0.000208px;}
.ws1{word-spacing:0.000000px;}
.ws8c{word-spacing:0.053798px;}
.ws1b{word-spacing:0.059776px;}
.ws7b{word-spacing:0.107597px;}
.ws16{word-spacing:0.119551px;}
.ws7c{word-spacing:0.161395px;}
.ws34{word-spacing:0.179327px;}
.ws8{word-spacing:0.215194px;}
.ws2e{word-spacing:0.239102px;}
.ws7a{word-spacing:0.268992px;}
.wsc6{word-spacing:0.286860px;}
.ws3f{word-spacing:0.298878px;}
.ws8b{word-spacing:0.322790px;}
.ws26{word-spacing:0.358654px;}
.ws7d{word-spacing:0.376589px;}
.ws15{word-spacing:0.418429px;}
.ws1c{word-spacing:0.478205px;}
.ws93{word-spacing:0.484186px;}
.ws52{word-spacing:0.537980px;}
.wsc5{word-spacing:0.537984px;}
.ws7{word-spacing:0.562186px;}
.ws9f{word-spacing:0.597756px;}
.ws1a{word-spacing:0.657532px;}
.wsdc{word-spacing:0.753178px;}
.ws64{word-spacing:0.836858px;}
.ws69{word-spacing:0.896634px;}
.ws113{word-spacing:0.914573px;}
.ws73{word-spacing:1.075961px;}
.ws99{word-spacing:1.135736px;}
.ws4f{word-spacing:1.195512px;}
.wsfa{word-spacing:1.237363px;}
.ws54{word-spacing:1.315063px;}
.ws87{word-spacing:1.344960px;}
.ws5f{word-spacing:1.374839px;}
.ws42{word-spacing:1.434614px;}
.ws88{word-spacing:1.452557px;}
.wsb4{word-spacing:1.494390px;}
.ws36{word-spacing:1.554166px;}
.ws4d{word-spacing:1.613941px;}
.ws2b{word-spacing:1.673717px;}
.wsad{word-spacing:1.733492px;}
.wsbf{word-spacing:1.775347px;}
.ws67{word-spacing:1.793268px;}
.ws10f{word-spacing:1.829146px;}
.ws32{word-spacing:1.853044px;}
.ws6f{word-spacing:1.912819px;}
.wsfc{word-spacing:1.936742px;}
.ws3e{word-spacing:1.972595px;}
.wsa5{word-spacing:2.032370px;}
.wsbe{word-spacing:2.044339px;}
.ws9c{word-spacing:2.092146px;}
.wseb{word-spacing:2.098138px;}
.ws9d{word-spacing:2.151922px;}
.ws66{word-spacing:2.211697px;}
.ws8a{word-spacing:2.259533px;}
.wsb1{word-spacing:2.271473px;}
.ws84{word-spacing:2.313331px;}
.wsb0{word-spacing:2.331248px;}
.wsa3{word-spacing:2.450800px;}
.ws71{word-spacing:2.510575px;}
.wscd{word-spacing:2.528525px;}
.ws2a{word-spacing:2.570351px;}
.ws2c{word-spacing:2.630126px;}
.ws83{word-spacing:2.636122px;}
.ws38{word-spacing:2.689902px;}
.ws3a{word-spacing:2.749678px;}
.ws117{word-spacing:2.797517px;}
.wsd7{word-spacing:2.851315px;}
.ws5e{word-spacing:2.988780px;}
.wsab{word-spacing:3.048556px;}
.ws2f{word-spacing:3.108331px;}
.wsf6{word-spacing:3.120307px;}
.ws30{word-spacing:3.168107px;}
.ws60{word-spacing:3.227882px;}
.ws4e{word-spacing:3.287658px;}
.wsac{word-spacing:3.347434px;}
.wsb5{word-spacing:3.443098px;}
.ws108{word-spacing:3.496896px;}
.ws51{word-spacing:3.586536px;}
.ws1d{word-spacing:3.646312px;}
.ws5c{word-spacing:3.706087px;}
.wsd2{word-spacing:3.712090px;}
.wse4{word-spacing:3.873485px;}
.wsb6{word-spacing:3.927283px;}
.ws70{word-spacing:3.945190px;}
.wsa8{word-spacing:4.184292px;}
.ws23{word-spacing:4.244068px;}
.wsa6{word-spacing:4.303843px;}
.wsd5{word-spacing:4.303872px;}
.ws3b{word-spacing:4.363619px;}
.ws6c{word-spacing:4.602721px;}
.wse2{word-spacing:4.626662px;}
.ws5d{word-spacing:4.722272px;}
.ws106{word-spacing:4.734259px;}
.wsbd{word-spacing:5.003251px;}
.ws44{word-spacing:5.021150px;}
.ws43{word-spacing:5.080926px;}
.ws56{word-spacing:5.200477px;}
.ws5b{word-spacing:5.260253px;}
.wsd8{word-spacing:5.272243px;}
.ws10b{word-spacing:5.374973px;}
.wsf9{word-spacing:5.378736px;}
.ws9{word-spacing:5.379840px;}
.wsf4{word-spacing:5.379878px;}
.wsf3{word-spacing:5.379888px;}
.wsc3{word-spacing:5.383622px;}
.ws27{word-spacing:5.499355px;}
.ws79{word-spacing:5.595034px;}
.ws28{word-spacing:5.618906px;}
.wsa2{word-spacing:5.678682px;}
.ws9b{word-spacing:5.798233px;}
.ws35{word-spacing:5.858009px;}
.wsb2{word-spacing:5.917784px;}
.wsed{word-spacing:5.917824px;}
.ws19{word-spacing:5.977560px;}
.wsa1{word-spacing:6.336214px;}
.ws7e{word-spacing:6.348211px;}
.wsa4{word-spacing:6.395989px;}
.ws68{word-spacing:6.694867px;}
.ws11{word-spacing:6.754643px;}
.wsae{word-spacing:6.874194px;}
.wsaf{word-spacing:6.933970px;}
.wsf2{word-spacing:7.047590px;}
.ws105{word-spacing:7.208986px;}
.ws33{word-spacing:7.352399px;}
.ws5a{word-spacing:7.531726px;}
.ws37{word-spacing:7.770828px;}
.wsd1{word-spacing:7.962163px;}
.ws62{word-spacing:8.069706px;}
.ws6b{word-spacing:8.368584px;}
.ws10{word-spacing:8.428360px;}
.ws50{word-spacing:9.026116px;}
.wse7{word-spacing:9.091930px;}
.wsf5{word-spacing:9.576115px;}
.wsca{word-spacing:10.652083px;}
.wsda{word-spacing:10.813478px;}
.wsdf{word-spacing:11.297664px;}
.wsde{word-spacing:11.351462px;}
.ws100{word-spacing:11.674253px;}
.wse1{word-spacing:11.889446px;}
.ws1e{word-spacing:11.906324px;}
.ws104{word-spacing:12.535027px;}
.wsfe{word-spacing:12.965414px;}
.wsf0{word-spacing:13.019213px;}
.wsdb{word-spacing:13.073011px;}
.wsc8{word-spacing:13.234406px;}
.ws109{word-spacing:13.288205px;}
.ws10e{word-spacing:13.342003px;}
.ws10c{word-spacing:13.388170px;}
.wscc{word-spacing:13.392336px;}
.ws118{word-spacing:13.392403px;}
.ws10d{word-spacing:13.394016px;}
.wscb{word-spacing:13.394170px;}
.wsc4{word-spacing:13.395802px;}
.ws10a{word-spacing:13.449600px;}
.wsec{word-spacing:13.610995px;}
.wsc7{word-spacing:13.664794px;}
.ws29{word-spacing:13.867939px;}
.wsaa{word-spacing:14.651330px;}
.wse5{word-spacing:14.735779px;}
.wse9{word-spacing:14.741779px;}
.wsba{word-spacing:14.794560px;}
.ws40{word-spacing:14.884124px;}
.ws6a{word-spacing:15.003676px;}
.wsce{word-spacing:15.924326px;}
.wsd3{word-spacing:17.107891px;}
.wsd4{word-spacing:17.699674px;}
.ws107{word-spacing:18.130061px;}
.wsc1{word-spacing:18.399053px;}
.wsf8{word-spacing:18.506650px;}
.wse3{word-spacing:18.668045px;}
.ws110{word-spacing:18.769968px;}
.wsf1{word-spacing:18.770362px;}
.wse6{word-spacing:18.771437px;}
.wsc2{word-spacing:18.771859px;}
.wsea{word-spacing:18.772464px;}
.ws116{word-spacing:18.775613px;}
.wsd0{word-spacing:18.775642px;}
.wsc9{word-spacing:18.829440px;}
.ws103{word-spacing:18.937037px;}
.ws114{word-spacing:19.044634px;}
.wsc0{word-spacing:19.152230px;}
.wsd6{word-spacing:25.877030px;}
.wscf{word-spacing:26.845402px;}
.ws5{word-spacing:40.042186px;}
.ws22{word-spacing:763.264597px;}
._24{margin-left:-12.104640px;}
._2a{margin-left:-10.672280px;}
._4{margin-left:-7.713144px;}
._f{margin-left:-6.635092px;}
._5{margin-left:-5.410547px;}
._d{margin-left:-4.400536px;}
._3{margin-left:-3.326920px;}
._0{margin-left:-1.475648px;}
._7{width:1.091170px;}
._2{width:2.998561px;}
._1a{width:4.809600px;}
._22{width:6.152400px;}
._23{width:7.909810px;}
._17{width:9.640190px;}
._1b{width:11.561180px;}
._20{width:12.732203px;}
._19{width:13.767480px;}
._14{width:15.723074px;}
._13{width:17.635894px;}
._6{width:18.829440px;}
._c{width:20.127727px;}
._8{width:21.321147px;}
._29{width:22.433933px;}
._b{width:23.473069px;}
._10{width:24.608805px;}
._9{width:26.043419px;}
._15{width:27.377225px;}
._1e{width:29.529146px;}
._1d{width:31.240347px;}
._e{width:32.338600px;}
._1f{width:34.072092px;}
._16{width:36.463116px;}
._1{width:37.658880px;}
._12{width:38.973691px;}
._27{width:40.169203px;}
._a{width:42.123056px;}
._11{width:43.456861px;}
._1c{width:48.537787px;}
._28{width:88.767360px;}
._25{width:1517.674966px;}
._21{width:1537.870966px;}
._26{width:1786.110000px;}
._18{width:1809.870000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(66,66,67);}
.fsc{font-size:40.698000px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fsd{font-size:45.900000px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fse{font-size:51.102000px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fsf{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:107.747700px;}
.y11f{bottom:-752.140500px;}
.y141{bottom:-719.650500px;}
.y140{bottom:-699.400500px;}
.y13f{bottom:-679.150500px;}
.y13e{bottom:-658.900500px;}
.y13d{bottom:-638.650500px;}
.y13c{bottom:-618.400500px;}
.y13b{bottom:-598.210500px;}
.y13a{bottom:-577.960500px;}
.y139{bottom:-557.710500px;}
.y138{bottom:-537.460500px;}
.y137{bottom:-517.210500px;}
.y136{bottom:-496.960500px;}
.y135{bottom:-476.710500px;}
.y134{bottom:-456.550500px;}
.y133{bottom:-436.300500px;}
.y6e{bottom:-435.990000px;}
.y132{bottom:-406.960500px;}
.y88{bottom:-379.560000px;}
.y131{bottom:-368.800500px;}
.y130{bottom:-348.550500px;}
.y87{bottom:-341.310000px;}
.y12f{bottom:-328.300500px;}
.y86{bottom:-321.060000px;}
.y12e{bottom:-308.050500px;}
.y85{bottom:-300.810000px;}
.y12d{bottom:-287.890500px;}
.ye3{bottom:-285.582000px;}
.y84{bottom:-280.620000px;}
.yfb{bottom:-268.596000px;}
.y12c{bottom:-267.640500px;}
.y83{bottom:-260.370000px;}
.y12b{bottom:-247.390500px;}
.ycb{bottom:-245.093250px;}
.y82{bottom:-240.120000px;}
.y12a{bottom:-227.140500px;}
.y81{bottom:-219.870000px;}
.y107{bottom:-217.476000px;}
.y115{bottom:-216.038550px;}
.y129{bottom:-206.890500px;}
.y80{bottom:-199.620000px;}
.y106{bottom:-198.126000px;}
.yee{bottom:-197.112000px;}
.y128{bottom:-186.610500px;}
.y7f{bottom:-179.370000px;}
.y105{bottom:-178.596000px;}
.yed{bottom:-177.762000px;}
.y127{bottom:-166.360500px;}
.yd6{bottom:-165.839250px;}
.y7e{bottom:-159.120000px;}
.y104{bottom:-158.976000px;}
.yec{bottom:-158.232000px;}
.yd5{bottom:-149.238750px;}
.y126{bottom:-146.200500px;}
.y103{bottom:-139.626000px;}
.y7d{bottom:-138.960000px;}
.yeb{bottom:-138.672000px;}
.yd4{bottom:-132.714750px;}
.y125{bottom:-125.950500px;}
.y102{bottom:-120.066000px;}
.yea{bottom:-119.232000px;}
.y7c{bottom:-118.710000px;}
.yd3{bottom:-116.165250px;}
.y124{bottom:-105.700500px;}
.y101{bottom:-100.446000px;}
.ye9{bottom:-99.612000px;}
.yd2{bottom:-99.564750px;}
.y7b{bottom:-89.460000px;}
.yd1{bottom:-82.964250px;}
.y100{bottom:-81.096000px;}
.ye8{bottom:-80.172000px;}
.y123{bottom:-67.900500px;}
.yd0{bottom:-66.440250px;}
.yff{bottom:-61.566000px;}
.ye7{bottom:-60.732000px;}
.y119{bottom:-59.035050px;}
.y7a{bottom:-51.660000px;}
.ycf{bottom:-49.839750px;}
.y122{bottom:-48.460500px;}
.y118{bottom:-42.511050px;}
.yfe{bottom:-41.946000px;}
.ye6{bottom:-41.112000px;}
.yce{bottom:-33.239250px;}
.y79{bottom:-32.130000px;}
.y121{bottom:-28.840500px;}
.y117{bottom:-25.834050px;}
.yfd{bottom:-22.506000px;}
.ye5{bottom:-21.582000px;}
.ycd{bottom:-16.638750px;}
.y78{bottom:-7.740000px;}
.y116{bottom:-5.102550px;}
.y120{bottom:-4.450500px;}
.y0{bottom:0.000000px;}
.yfc{bottom:1.974000px;}
.ye4{bottom:2.808000px;}
.y18{bottom:3.425340px;}
.ycc{bottom:4.092750px;}
.y17{bottom:14.151273px;}
.y2{bottom:18.432716px;}
.y31{bottom:63.780000px;}
.y112{bottom:103.984500px;}
.yc8{bottom:114.156000px;}
.y30{bottom:116.527500px;}
.y160{bottom:123.121500px;}
.y111{bottom:123.217500px;}
.ye0{bottom:127.284000px;}
.yc7{bottom:134.419500px;}
.y97{bottom:134.985000px;}
.y2f{bottom:136.792500px;}
.yf8{bottom:138.250500px;}
.y110{bottom:142.450500px;}
.y15f{bottom:143.386500px;}
.ydf{bottom:146.517000px;}
.y1b9{bottom:147.691500px;}
.yc6{bottom:154.683000px;}
.y96{bottom:155.248500px;}
.y2e{bottom:157.056000px;}
.yf7{bottom:157.483500px;}
.y10f{bottom:161.682000px;}
.y62{bottom:163.650000px;}
.yde{bottom:165.750000px;}
.y1b8{bottom:167.059500px;}
.yc5{bottom:174.948000px;}
.y95{bottom:175.512000px;}
.yf6{bottom:176.715000px;}
.y2d{bottom:177.321000px;}
.y10e{bottom:180.915000px;}
.y61{bottom:183.913500px;}
.ydd{bottom:184.983000px;}
.y1b7{bottom:186.427500px;}
.y15e{bottom:192.378000px;}
.y187{bottom:192.627000px;}
.yc4{bottom:195.211500px;}
.y94{bottom:195.777000px;}
.yf5{bottom:195.948000px;}
.y2c{bottom:197.584500px;}
.y10d{bottom:200.148000px;}
.y60{bottom:204.178500px;}
.ydc{bottom:204.216000px;}
.y1b6{bottom:205.794000px;}
.y186{bottom:211.995000px;}
.y11c{bottom:212.019000px;}
.y15d{bottom:212.643000px;}
.yf4{bottom:215.181000px;}
.yc3{bottom:215.476500px;}
.y93{bottom:216.040500px;}
.y2b{bottom:217.848000px;}
.y10c{bottom:219.381000px;}
.ydb{bottom:223.449000px;}
.y5f{bottom:224.442000px;}
.y1b5{bottom:225.162000px;}
.y11b{bottom:231.250500px;}
.y185{bottom:231.361500px;}
.y15c{bottom:232.906500px;}
.yf3{bottom:234.414000px;}
.yc2{bottom:235.740000px;}
.y92{bottom:236.305500px;}
.y2a{bottom:238.113000px;}
.y10b{bottom:238.614000px;}
.yda{bottom:242.682000px;}
.y1b4{bottom:244.528500px;}
.y5e{bottom:244.707000px;}
.y11a{bottom:250.483500px;}
.y184{bottom:250.729500px;}
.y15b{bottom:253.171500px;}
.yf2{bottom:253.647000px;}
.yc1{bottom:256.003500px;}
.y91{bottom:256.569000px;}
.y10a{bottom:257.847000px;}
.yd9{bottom:261.913500px;}
.y1b3{bottom:263.896500px;}
.y5d{bottom:264.970500px;}
.y29{bottom:267.343500px;}
.y183{bottom:270.097500px;}
.yf1{bottom:272.880000px;}
.y113{bottom:272.913000px;}
.y15a{bottom:273.435000px;}
.yc0{bottom:276.268500px;}
.y90{bottom:276.832500px;}
.y109{bottom:277.080000px;}
.yd8{bottom:281.146500px;}
.y1b2{bottom:283.264500px;}
.y5c{bottom:285.234000px;}
.y182{bottom:289.464000px;}
.yf0{bottom:292.113000px;}
.y159{bottom:293.698500px;}
.y108{bottom:296.313000px;}
.ybf{bottom:296.532000px;}
.y8f{bottom:297.097500px;}
.yd7{bottom:300.379500px;}
.y1b1{bottom:302.631000px;}
.y5b{bottom:305.499000px;}
.y181{bottom:308.832000px;}
.yef{bottom:311.346000px;}
.y158{bottom:313.963500px;}
.ybe{bottom:316.797000px;}
.y8e{bottom:317.361000px;}
.yf9{bottom:318.742500px;}
.y1b0{bottom:321.999000px;}
.yc9{bottom:322.809000px;}
.y5a{bottom:325.762500px;}
.y180{bottom:328.198500px;}
.ye1{bottom:333.775500px;}
.y157{bottom:334.227000px;}
.ybd{bottom:337.060500px;}
.y8d{bottom:337.626000px;}
.y28{bottom:339.858000px;}
.y1af{bottom:341.367000px;}
.y59{bottom:346.027500px;}
.y17f{bottom:347.566500px;}
.y156{bottom:354.492000px;}
.y11e{bottom:354.769500px;}
.ybc{bottom:357.324000px;}
.y8c{bottom:357.889500px;}
.y27{bottom:360.123000px;}
.y1ae{bottom:360.733500px;}
.y58{bottom:366.291000px;}
.y17e{bottom:366.934500px;}
.y155{bottom:374.755500px;}
.ybb{bottom:377.589000px;}
.y1ad{bottom:380.101500px;}
.y57{bottom:386.554500px;}
.y8b{bottom:387.120000px;}
.y154{bottom:395.019000px;}
.y17d{bottom:395.268000px;}
.yba{bottom:397.852500px;}
.y26{bottom:398.319000px;}
.y1ac{bottom:399.468000px;}
.y56{bottom:406.819500px;}
.yb9{bottom:418.117500px;}
.y25{bottom:418.584000px;}
.y8a{bottom:418.743000px;}
.y1ab{bottom:418.836000px;}
.y153{bottom:424.249500px;}
.y55{bottom:427.083000px;}
.y17c{bottom:434.719500px;}
.y89{bottom:437.976000px;}
.y1aa{bottom:438.204000px;}
.yb8{bottom:438.381000px;}
.y24{bottom:438.847500px;}
.y54{bottom:447.348000px;}
.y17b{bottom:449.917500px;}
.y1a9{bottom:457.570500px;}
.yb7{bottom:458.644500px;}
.y152{bottom:459.069000px;}
.y23{bottom:459.112500px;}
.y6c{bottom:460.405500px;}
.y77{bottom:462.540000px;}
.y17a{bottom:465.115500px;}
.y53{bottom:467.611500px;}
.y1a8{bottom:476.938500px;}
.yb6{bottom:478.909500px;}
.y151{bottom:479.334000px;}
.y22{bottom:479.376000px;}
.y76{bottom:482.790000px;}
.y52{bottom:487.875000px;}
.y179{bottom:489.280500px;}
.y1a7{bottom:496.305000px;}
.yb5{bottom:499.173000px;}
.y150{bottom:499.597500px;}
.y21{bottom:499.639500px;}
.y75{bottom:503.040000px;}
.y178{bottom:504.478500px;}
.y51{bottom:508.140000px;}
.y1a6{bottom:515.673000px;}
.yb4{bottom:519.438000px;}
.y177{bottom:519.676500px;}
.y14f{bottom:519.862500px;}
.y20{bottom:519.904500px;}
.y74{bottom:523.290000px;}
.y50{bottom:528.403500px;}
.y176{bottom:534.874500px;}
.y1a5{bottom:535.041000px;}
.yb3{bottom:539.701500px;}
.y14e{bottom:540.126000px;}
.y1f{bottom:540.168000px;}
.y73{bottom:543.540000px;}
.y4f{bottom:548.667000px;}
.y1a4{bottom:554.407500px;}
.y175{bottom:559.039500px;}
.yb2{bottom:559.965000px;}
.y14d{bottom:560.389500px;}
.y1e{bottom:560.433000px;}
.y72{bottom:563.820000px;}
.y4e{bottom:568.932000px;}
.y1a3{bottom:573.775500px;}
.y174{bottom:574.237500px;}
.yb1{bottom:580.230000px;}
.y14c{bottom:580.654500px;}
.y1d{bottom:580.696500px;}
.y71{bottom:583.980000px;}
.y4d{bottom:589.195500px;}
.y173{bottom:589.435500px;}
.y1a2{bottom:593.142000px;}
.yb0{bottom:600.493500px;}
.y14b{bottom:600.918000px;}
.y1c{bottom:600.960000px;}
.y70{bottom:604.230000px;}
.y172{bottom:604.633500px;}
.y4c{bottom:609.460500px;}
.y1a1{bottom:612.510000px;}
.y171{bottom:619.831500px;}
.yaf{bottom:620.758500px;}
.y14a{bottom:621.183000px;}
.y1b{bottom:621.225000px;}
.y4b{bottom:629.724000px;}
.y1a0{bottom:631.878000px;}
.y6f{bottom:633.480000px;}
.y170{bottom:635.029500px;}
.yae{bottom:641.022000px;}
.y149{bottom:641.446500px;}
.y1a{bottom:641.488500px;}
.y4a{bottom:649.987500px;}
.y16f{bottom:650.227500px;}
.y19f{bottom:651.244500px;}
.yad{bottom:661.285500px;}
.y148{bottom:661.710000px;}
.y19{bottom:661.753500px;}
.y16e{bottom:665.425500px;}
.y49{bottom:670.252500px;}
.y19e{bottom:670.612500px;}
.y6d{bottom:670.920000px;}
.y16d{bottom:680.623500px;}
.yac{bottom:681.550500px;}
.y147{bottom:681.975000px;}
.y19d{bottom:689.979000px;}
.y48{bottom:690.516000px;}
.yca{bottom:695.780250px;}
.y16c{bottom:695.821500px;}
.y16{bottom:697.184964px;}
.y15{bottom:697.951500px;}
.yab{bottom:701.814000px;}
.y146{bottom:702.238500px;}
.y19c{bottom:709.347000px;}
.y47{bottom:710.781000px;}
.y16b{bottom:711.019500px;}
.yaa{bottom:722.077500px;}
.y145{bottom:722.503500px;}
.y114{bottom:724.834950px;}
.y19b{bottom:728.715000px;}
.y46{bottom:731.044500px;}
.y16a{bottom:735.184500px;}
.y14{bottom:736.957500px;}
.ya9{bottom:742.342500px;}
.y19a{bottom:748.081500px;}
.y169{bottom:750.382500px;}
.y45{bottom:751.308000px;}
.y13{bottom:755.115000px;}
.y144{bottom:757.503000px;}
.ya8{bottom:762.606000px;}
.y168{bottom:765.580500px;}
.y199{bottom:767.449500px;}
.y44{bottom:771.573000px;}
.y143{bottom:776.736000px;}
.y12{bottom:778.153500px;}
.y167{bottom:780.778500px;}
.ya7{bottom:782.871000px;}
.y198{bottom:786.816000px;}
.y11{bottom:791.428500px;}
.y43{bottom:791.836500px;}
.y142{bottom:795.969000px;}
.y166{bottom:795.976500px;}
.ya6{bottom:803.134500px;}
.y197{bottom:806.184000px;}
.y42{bottom:812.101500px;}
.y10{bottom:814.467000px;}
.y11d{bottom:818.398500px;}
.ye2{bottom:821.328000px;}
.ya5{bottom:823.398000px;}
.y196{bottom:825.552000px;}
.y165{bottom:829.107000px;}
.y41{bottom:832.365000px;}
.yf{bottom:832.624500px;}
.yfa{bottom:838.314000px;}
.ya4{bottom:843.663000px;}
.y195{bottom:844.918500px;}
.ye{bottom:845.899500px;}
.y164{bottom:849.372000px;}
.y40{bottom:852.628500px;}
.ya3{bottom:863.926500px;}
.yd{bottom:864.057000px;}
.y194{bottom:864.286500px;}
.yc{bottom:868.938000px;}
.y163{bottom:869.635500px;}
.y3f{bottom:872.893500px;}
.yb{bottom:882.213000px;}
.y193{bottom:883.653000px;}
.ya2{bottom:884.191500px;}
.y162{bottom:889.899000px;}
.y3e{bottom:893.157000px;}
.ya{bottom:900.370500px;}
.y192{bottom:903.021000px;}
.ya1{bottom:904.455000px;}
.y6b{bottom:910.164000px;}
.y3d{bottom:913.422000px;}
.y191{bottom:922.389000px;}
.y9{bottom:923.409000px;}
.ya0{bottom:924.718500px;}
.y6a{bottom:930.427500px;}
.y3c{bottom:933.685500px;}
.y190{bottom:941.755500px;}
.y9f{bottom:944.983500px;}
.y8{bottom:945.651000px;}
.y69{bottom:950.692500px;}
.y3b{bottom:953.949000px;}
.y18f{bottom:961.123500px;}
.y9e{bottom:965.247000px;}
.y7{bottom:965.914500px;}
.y1bc{bottom:968.313000px;}
.y68{bottom:970.956000px;}
.y3a{bottom:974.214000px;}
.y18e{bottom:980.490000px;}
.y9d{bottom:985.512000px;}
.y1bb{bottom:987.681000px;}
.y67{bottom:991.219500px;}
.y39{bottom:994.477500px;}
.y18d{bottom:999.858000px;}
.y9c{bottom:1005.775500px;}
.y1ba{bottom:1007.047500px;}
.y6{bottom:1010.451000px;}
.y66{bottom:1011.484500px;}
.y38{bottom:1014.742500px;}
.y18c{bottom:1019.226000px;}
.y9b{bottom:1026.039000px;}
.y65{bottom:1031.748000px;}
.y37{bottom:1035.006000px;}
.y18b{bottom:1038.592500px;}
.y161{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y9a{bottom:1046.304000px;}
.y64{bottom:1052.013000px;}
.y36{bottom:1055.269500px;}
.y18a{bottom:1057.960500px;}
.y99{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y189{bottom:1077.327000px;}
.y63{bottom:1081.243500px;}
.y98{bottom:1086.832500px;}
.y34{bottom:1095.798000px;}
.y188{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y33{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.hb{height:25.508090px;}
.h1a{height:27.855430px;}
.h1c{height:29.847850px;}
.h8{height:30.461558px;}
.h19{height:32.338600px;}
.hd{height:33.112997px;}
.h20{height:33.506104px;}
.h1f{height:33.662988px;}
.hc{height:34.199443px;}
.h10{height:35.052500px;}
.h12{height:35.115117px;}
.h1e{height:37.303462px;}
.h27{height:37.927872px;}
.ha{height:38.412058px;}
.h18{height:38.734848px;}
.h9{height:39.165235px;}
.h17{height:39.418945px;}
.h26{height:39.434227px;}
.h16{height:39.603516px;}
.he{height:43.038432px;}
.hf{height:43.516637px;}
.h4{height:43.815515px;}
.h15{height:43.886426px;}
.h14{height:44.062559px;}
.h1d{height:47.177967px;}
.h2{height:50.991599px;}
.h25{height:52.804688px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h13{height:55.503491px;}
.h3{height:73.052941px;}
.h5{height:77.469696px;}
.h24{height:312.609000px;}
.h11{height:426.111000px;}
.h1b{height:672.181275px;}
.h23{height:677.648475px;}
.h21{height:797.233500px;}
.h22{height:812.266500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:157.865275px;}
.w8{width:500.058825px;}
.w5{width:557.595622px;}
.w4{width:623.457450px;}
.w9{width:651.139200px;}
.w6{width:655.066500px;}
.w7{width:655.995750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb2{left:-38.582775px;}
.xb3{left:-11.476275px;}
.x99{left:-7.690500px;}
.xa6{left:-6.227250px;}
.x84{left:-4.563352px;}
.xb5{left:-2.977800px;}
.x55{left:-1.015050px;}
.x0{left:0.000000px;}
.x85{left:22.543148px;}
.x9b{left:24.199500px;}
.xa8{left:25.662750px;}
.x9{left:29.274117px;}
.x56{left:30.874950px;}
.x2{left:58.543128px;}
.x1{left:114.802500px;}
.x98{left:118.924500px;}
.xb4{left:120.888300px;}
.x7{left:122.110500px;}
.x3{left:123.307500px;}
.x54{left:134.728050px;}
.x4{left:146.170500px;}
.x73{left:164.503500px;}
.x83{left:167.658127px;}
.x1a{left:172.234500px;}
.xdf{left:174.811500px;}
.x74{left:179.448000px;}
.xee{left:181.000500px;}
.x75{left:183.109500px;}
.x1b{left:187.179000px;}
.xa{left:188.953500px;}
.x1c{left:190.989000px;}
.xd9{left:193.764000px;}
.xb1{left:196.426500px;}
.x4e{left:198.957000px;}
.xb{left:200.016000px;}
.xf7{left:201.169500px;}
.x58{left:204.436500px;}
.x1d{left:205.933500px;}
.x9c{left:207.085500px;}
.x1e{left:209.743500px;}
.x9d{left:211.654500px;}
.x4f{left:213.901500px;}
.x86{left:215.490000px;}
.x9e{left:218.379000px;}
.xba{left:220.816500px;}
.x1f{left:224.688000px;}
.x78{left:227.340000px;}
.xef{left:230.491500px;}
.xf0{left:236.934000px;}
.xe4{left:238.146000px;}
.xbb{left:239.422500px;}
.x14{left:240.873000px;}
.x79{left:242.283000px;}
.xe7{left:245.946000px;}
.x93{left:251.445000px;}
.xa9{left:253.470000px;}
.x15{left:255.817500px;}
.xde{left:259.030500px;}
.xaa{left:261.687000px;}
.x16{left:263.140500px;}
.x87{left:264.414000px;}
.xaf{left:266.905500px;}
.xa5{left:270.493500px;}
.x88{left:272.631000px;}
.xb0{left:275.122500px;}
.x17{left:278.083500px;}
.x52{left:291.384000px;}
.xc3{left:292.419000px;}
.x24{left:293.800500px;}
.x7d{left:302.184000px;}
.x53{left:306.328500px;}
.xc4{left:307.363500px;}
.x25{left:308.745000px;}
.x9f{left:310.704000px;}
.x89{left:314.974500px;}
.x7e{left:317.127000px;}
.x5d{left:318.336000px;}
.x8a{left:320.946000px;}
.xc5{left:325.968000px;}
.xc6{left:329.629500px;}
.xf9{left:331.815000px;}
.xae{left:334.446000px;}
.x60{left:340.383000px;}
.x94{left:344.049000px;}
.x61{left:350.380500px;}
.x7f{left:351.699000px;}
.xa0{left:354.229500px;}
.x95{left:357.633000px;}
.xa1{left:360.201000px;}
.x5e{left:363.222000px;}
.xc{left:366.330000px;}
.x8b{left:367.981500px;}
.xab{left:369.991500px;}
.xd{left:373.801500px;}
.x8c{left:376.198500px;}
.xac{left:378.208500px;}
.xe{left:381.124500px;}
.x80{left:383.931000px;}
.xf{left:388.596000px;}
.x59{left:398.094000px;}
.x96{left:400.366500px;}
.xb7{left:401.748000px;}
.xe5{left:405.256500px;}
.x97{left:407.091000px;}
.x64{left:409.749000px;}
.xe6{left:411.981000px;}
.x5a{left:413.038500px;}
.xa2{left:414.825000px;}
.x5b{left:416.700000px;}
.xd5{left:422.157000px;}
.x65{left:424.693500px;}
.x66{left:428.503500px;}
.xc1{left:429.685500px;}
.x5c{left:431.644500px;}
.xcb{left:433.530000px;}
.xd6{left:437.101500px;}
.x8d{left:440.650500px;}
.x67{left:443.448000px;}
.x91{left:444.448500px;}
.x8e{left:447.375000px;}
.xcc{left:448.474500px;}
.x26{left:449.779500px;}
.xc7{left:450.939000px;}
.xcd{left:452.244000px;}
.xa4{left:454.149000px;}
.xd7{left:455.856000px;}
.x92{left:457.897500px;}
.x18{left:462.127500px;}
.xf1{left:463.590000px;}
.x27{left:464.724000px;}
.xc8{left:465.883500px;}
.xce{left:467.188500px;}
.x28{left:468.534000px;}
.xa3{left:469.953000px;}
.xe3{left:475.354500px;}
.x19{left:477.072000px;}
.xda{left:479.557500px;}
.x5f{left:481.756500px;}
.x29{left:483.478500px;}
.x7a{left:484.974000px;}
.xf6{left:488.890500px;}
.x2a{left:491.100000px;}
.x6b{left:497.179500px;}
.xdb{left:498.214500px;}
.x3e{left:500.143500px;}
.xdc{left:501.928500px;}
.x2b{left:506.044500px;}
.x32{left:508.881000px;}
.x81{left:510.475500px;}
.x6c{left:512.124000px;}
.xe0{left:513.390000px;}
.x3f{left:515.088000px;}
.xdd{left:516.873000px;}
.xe1{left:520.114500px;}
.x33{left:523.825500px;}
.x82{left:525.418500px;}
.x34{left:527.635500px;}
.x40{left:529.413000px;}
.x41{left:536.884500px;}
.x36{left:538.858500px;}
.x42{left:540.696000px;}
.x35{left:542.580000px;}
.x6d{left:546.195000px;}
.xf2{left:547.477500px;}
.xed{left:549.301500px;}
.xc2{left:550.993500px;}
.x37{left:553.803000px;}
.x43{left:555.640500px;}
.x38{left:557.572500px;}
.x44{left:559.450500px;}
.x6e{left:561.139500px;}
.x3c{left:565.618500px;}
.x39{left:572.515500px;}
.x45{left:574.395000px;}
.x3a{left:576.285000px;}
.x46{left:578.205000px;}
.x2c{left:580.951500px;}
.xad{left:582.162000px;}
.x3d{left:584.332500px;}
.xe2{left:587.719500px;}
.x3b{left:591.229500px;}
.x47{left:593.149500px;}
.x2d{left:595.896000px;}
.x5{left:597.264000px;}
.x2e{left:599.706000px;}
.x6{left:603.988500px;}
.xf4{left:610.578000px;}
.x48{left:611.904000px;}
.x2f{left:614.650500px;}
.x49{left:615.714000px;}
.x10{left:616.806000px;}
.x30{left:618.460500px;}
.x11{left:624.277500px;}
.x4a{left:630.658500px;}
.x12{left:631.899000px;}
.x31{left:633.405000px;}
.xf5{left:637.477500px;}
.x13{left:639.370500px;}
.x7c{left:649.051500px;}
.x9a{left:655.699500px;}
.xa7{left:657.162750px;}
.xf3{left:658.447500px;}
.xb6{left:660.862200px;}
.x57{left:662.824950px;}
.x8f{left:665.367000px;}
.x76{left:667.875000px;}
.xc9{left:669.523500px;}
.x90{left:672.091500px;}
.xbe{left:674.478000px;}
.xca{left:677.095500px;}
.x6f{left:679.243500px;}
.x50{left:680.598000px;}
.x77{left:682.819500px;}
.xb8{left:685.369500px;}
.xd1{left:687.306000px;}
.xbf{left:689.422500px;}
.xd2{left:691.020000px;}
.x70{left:694.188000px;}
.xec{left:695.475000px;}
.xfa{left:696.622500px;}
.x71{left:697.848000px;}
.xb9{left:700.312500px;}
.x8{left:701.339982px;}
.xf8{left:702.675000px;}
.xd3{left:705.964500px;}
.xeb{left:707.521500px;}
.x7b{left:709.362000px;}
.x72{left:712.792500px;}
.x68{left:718.833000px;}
.x4b{left:720.033000px;}
.xe8{left:722.722500px;}
.xd4{left:724.621500px;}
.xcf{left:727.654500px;}
.xea{left:729.309000px;}
.x20{left:734.329500px;}
.xd8{left:735.621000px;}
.x69{left:737.542500px;}
.x4c{left:738.639000px;}
.xd0{left:742.599000px;}
.x21{left:749.274000px;}
.x62{left:751.140000px;}
.x6a{left:752.487000px;}
.x4d{left:753.582000px;}
.xe9{left:754.956000px;}
.x22{left:756.895500px;}
.xbc{left:758.289000px;}
.x63{left:760.369500px;}
.xc0{left:766.522500px;}
.x23{left:771.838500px;}
.xbd{left:773.233500px;}
.x51{left:776.209500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls15{letter-spacing:-0.378133pt;}
.ls31{letter-spacing:-0.301867pt;}
.ls23{letter-spacing:-0.272000pt;}
.ls24{letter-spacing:-0.258400pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.141333pt;}
.ls22{letter-spacing:-0.136000pt;}
.ls2d{letter-spacing:-0.108800pt;}
.ls13{letter-spacing:-0.080000pt;}
.ls21{letter-spacing:-0.068000pt;}
.ls17{letter-spacing:-0.011840pt;}
.lsb{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000002pt;}
.lsf{letter-spacing:0.000110pt;}
.ls0{letter-spacing:0.000213pt;}
.ls4{letter-spacing:0.000503pt;}
.ls37{letter-spacing:0.000554pt;}
.ls38{letter-spacing:0.000600pt;}
.ls7{letter-spacing:0.000880pt;}
.ls39{letter-spacing:0.000921pt;}
.ls1a{letter-spacing:0.001061pt;}
.ls3a{letter-spacing:0.001156pt;}
.ls9{letter-spacing:0.001349pt;}
.ls34{letter-spacing:0.001370pt;}
.ls1b{letter-spacing:0.001852pt;}
.ls4e{letter-spacing:0.002078pt;}
.ls2a{letter-spacing:0.002133pt;}
.ls33{letter-spacing:0.002630pt;}
.lse{letter-spacing:0.002868pt;}
.ls10{letter-spacing:0.003106pt;}
.ls8{letter-spacing:0.003325pt;}
.ls3b{letter-spacing:0.003430pt;}
.ls36{letter-spacing:0.003942pt;}
.ls2f{letter-spacing:0.004252pt;}
.ls4c{letter-spacing:0.004267pt;}
.ls1e{letter-spacing:0.013600pt;}
.ls25{letter-spacing:0.016000pt;}
.ls32{letter-spacing:0.017920pt;}
.ls16{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.095200pt;}
.ls20{letter-spacing:0.108800pt;}
.ls27{letter-spacing:0.112000pt;}
.ls29{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.129067pt;}
.ls1d{letter-spacing:0.136000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.234667pt;}
.ls48{letter-spacing:0.466280pt;}
.ls49{letter-spacing:0.471509pt;}
.ls46{letter-spacing:0.478097pt;}
.lsc{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.lsa{letter-spacing:10.626533pt;}
.ls4a{letter-spacing:10.749562pt;}
.ls28{letter-spacing:10.759680pt;}
.ls47{letter-spacing:11.152283pt;}
.ls50{letter-spacing:11.532573pt;}
.ls43{letter-spacing:11.681045pt;}
.ls52{letter-spacing:11.849807pt;}
.ls4f{letter-spacing:11.870543pt;}
.ls45{letter-spacing:11.904170pt;}
.ls53{letter-spacing:11.919592pt;}
.ls3c{letter-spacing:11.954133pt;}
.ls41{letter-spacing:11.954314pt;}
.ls3e{letter-spacing:11.956535pt;}
.ls3d{letter-spacing:11.959467pt;}
.ls44{letter-spacing:11.998059pt;}
.ls51{letter-spacing:12.145477pt;}
.ls4d{letter-spacing:12.435430pt;}
.ls1c{letter-spacing:13.057118pt;}
.ls2c{letter-spacing:13.336601pt;}
.ls35{letter-spacing:13.378613pt;}
.ls2b{letter-spacing:13.496002pt;}
.ls2e{letter-spacing:14.239876pt;}
.ls42{letter-spacing:14.497088pt;}
.ls40{letter-spacing:14.842186pt;}
.ls4b{letter-spacing:16.738133pt;}
.ls3f{letter-spacing:23.903624pt;}
.ls3{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.lsd{letter-spacing:1991.210400pt;}
.ws0{word-spacing:-74.513521pt;}
.ws95{word-spacing:-53.440000pt;}
.ws81{word-spacing:-48.000000pt;}
.ws75{word-spacing:-40.800000pt;}
.ws86{word-spacing:-22.714880pt;}
.wse{word-spacing:-15.461955pt;}
.wsbb{word-spacing:-13.915853pt;}
.ws96{word-spacing:-13.489067pt;}
.ws98{word-spacing:-13.377920pt;}
.ws45{word-spacing:-13.360000pt;}
.ws48{word-spacing:-13.348160pt;}
.ws13{word-spacing:-13.283467pt;}
.ws4a{word-spacing:-13.218667pt;}
.ws49{word-spacing:-13.200000pt;}
.ws97{word-spacing:-13.058133pt;}
.ws46{word-spacing:-12.981867pt;}
.ws6{word-spacing:-12.760670pt;}
.ws21{word-spacing:-12.369595pt;}
.ws47{word-spacing:-12.032000pt;}
.ws82{word-spacing:-12.016000pt;}
.ws80{word-spacing:-12.000000pt;}
.ws7f{word-spacing:-11.955200pt;}
.ws94{word-spacing:-10.800000pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws74{word-spacing:-10.200000pt;}
.ws3{word-spacing:-10.095467pt;}
.ws92{word-spacing:-10.091200pt;}
.ws77{word-spacing:-9.941600pt;}
.ws76{word-spacing:-9.928000pt;}
.ws91{word-spacing:-9.180000pt;}
.ws3d{word-spacing:-4.835182pt;}
.ws31{word-spacing:-3.241166pt;}
.ws72{word-spacing:-3.134898pt;}
.ws3c{word-spacing:-3.081764pt;}
.ws57{word-spacing:-3.028630pt;}
.ws55{word-spacing:-2.922363pt;}
.ws111{word-spacing:-2.773606pt;}
.wsb3{word-spacing:-2.550426pt;}
.wsb8{word-spacing:-2.438861pt;}
.ws63{word-spacing:-2.337890pt;}
.wsd9{word-spacing:-2.295398pt;}
.ws8e{word-spacing:-2.199757pt;}
.ws9e{word-spacing:-2.178489pt;}
.wsdd{word-spacing:-2.104115pt;}
.ws39{word-spacing:-2.019087pt;}
.wsa9{word-spacing:-1.965953pt;}
.ws14{word-spacing:-1.912819pt;}
.ws18{word-spacing:-1.859685pt;}
.wsb{word-spacing:-1.696326pt;}
.ws112{word-spacing:-1.673728pt;}
.wsf7{word-spacing:-1.578086pt;}
.ws101{word-spacing:-1.530266pt;}
.ws4c{word-spacing:-1.487748pt;}
.wsff{word-spacing:-1.482445pt;}
.wse0{word-spacing:-1.338982pt;}
.ws61{word-spacing:-1.328347pt;}
.ws90{word-spacing:-1.275213pt;}
.ws58{word-spacing:-1.222079pt;}
.ws85{word-spacing:-1.195520pt;}
.wsa{word-spacing:-1.175671pt;}
.ws59{word-spacing:-1.062677pt;}
.wsbc{word-spacing:-1.052058pt;}
.wsc{word-spacing:-1.009543pt;}
.wsb9{word-spacing:-0.908595pt;}
.wsd{word-spacing:-0.903276pt;}
.wsa7{word-spacing:-0.850142pt;}
.wsee{word-spacing:-0.812954pt;}
.ws6e{word-spacing:-0.797008pt;}
.ws8d{word-spacing:-0.765133pt;}
.ws65{word-spacing:-0.743874pt;}
.wsf{word-spacing:-0.690740pt;}
.ws25{word-spacing:-0.637606pt;}
.ws24{word-spacing:-0.584473pt;}
.ws115{word-spacing:-0.573850pt;}
.wse8{word-spacing:-0.478208pt;}
.wsa0{word-spacing:-0.478205pt;}
.ws102{word-spacing:-0.430387pt;}
.ws53{word-spacing:-0.425071pt;}
.wsfd{word-spacing:-0.382566pt;}
.ws6d{word-spacing:-0.371937pt;}
.wsef{word-spacing:-0.334746pt;}
.ws9a{word-spacing:-0.318803pt;}
.wsb7{word-spacing:-0.286925pt;}
.ws41{word-spacing:-0.265669pt;}
.ws78{word-spacing:-0.239104pt;}
.ws2d{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.159402pt;}
.ws89{word-spacing:-0.143462pt;}
.ws12{word-spacing:-0.106268pt;}
.ws8f{word-spacing:-0.095642pt;}
.ws4{word-spacing:-0.053134pt;}
.ws4b{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.wsfb{word-spacing:-0.000990pt;}
.ws2{word-spacing:-0.000185pt;}
.ws1{word-spacing:0.000000pt;}
.ws8c{word-spacing:0.047821pt;}
.ws1b{word-spacing:0.053134pt;}
.ws7b{word-spacing:0.095642pt;}
.ws16{word-spacing:0.106268pt;}
.ws7c{word-spacing:0.143462pt;}
.ws34{word-spacing:0.159402pt;}
.ws8{word-spacing:0.191283pt;}
.ws2e{word-spacing:0.212535pt;}
.ws7a{word-spacing:0.239104pt;}
.wsc6{word-spacing:0.254986pt;}
.ws3f{word-spacing:0.265669pt;}
.ws8b{word-spacing:0.286925pt;}
.ws26{word-spacing:0.318803pt;}
.ws7d{word-spacing:0.334746pt;}
.ws15{word-spacing:0.371937pt;}
.ws1c{word-spacing:0.425071pt;}
.ws93{word-spacing:0.430387pt;}
.ws52{word-spacing:0.478205pt;}
.wsc5{word-spacing:0.478208pt;}
.ws7{word-spacing:0.499721pt;}
.ws9f{word-spacing:0.531339pt;}
.ws1a{word-spacing:0.584473pt;}
.wsdc{word-spacing:0.669491pt;}
.ws64{word-spacing:0.743874pt;}
.ws69{word-spacing:0.797008pt;}
.ws113{word-spacing:0.812954pt;}
.ws73{word-spacing:0.956410pt;}
.ws99{word-spacing:1.009543pt;}
.ws4f{word-spacing:1.062677pt;}
.wsfa{word-spacing:1.099878pt;}
.ws54{word-spacing:1.168945pt;}
.ws87{word-spacing:1.195520pt;}
.ws5f{word-spacing:1.222079pt;}
.ws42{word-spacing:1.275213pt;}
.ws88{word-spacing:1.291162pt;}
.wsb4{word-spacing:1.328347pt;}
.ws36{word-spacing:1.381481pt;}
.ws4d{word-spacing:1.434614pt;}
.ws2b{word-spacing:1.487748pt;}
.wsad{word-spacing:1.540882pt;}
.wsbf{word-spacing:1.578086pt;}
.ws67{word-spacing:1.594016pt;}
.ws10f{word-spacing:1.625907pt;}
.ws32{word-spacing:1.647150pt;}
.ws6f{word-spacing:1.700284pt;}
.wsfc{word-spacing:1.721549pt;}
.ws3e{word-spacing:1.753418pt;}
.wsa5{word-spacing:1.806551pt;}
.wsbe{word-spacing:1.817190pt;}
.ws9c{word-spacing:1.859685pt;}
.wseb{word-spacing:1.865011pt;}
.ws9d{word-spacing:1.912819pt;}
.ws66{word-spacing:1.965953pt;}
.ws8a{word-spacing:2.008474pt;}
.wsb1{word-spacing:2.019087pt;}
.ws84{word-spacing:2.056294pt;}
.wsb0{word-spacing:2.072221pt;}
.wsa3{word-spacing:2.178489pt;}
.ws71{word-spacing:2.231622pt;}
.wscd{word-spacing:2.247578pt;}
.ws2a{word-spacing:2.284756pt;}
.ws2c{word-spacing:2.337890pt;}
.ws83{word-spacing:2.343219pt;}
.ws38{word-spacing:2.391024pt;}
.ws3a{word-spacing:2.444158pt;}
.ws117{word-spacing:2.486682pt;}
.wsd7{word-spacing:2.534502pt;}
.ws5e{word-spacing:2.656693pt;}
.wsab{word-spacing:2.709827pt;}
.ws2f{word-spacing:2.762961pt;}
.wsf6{word-spacing:2.773606pt;}
.ws30{word-spacing:2.816095pt;}
.ws60{word-spacing:2.869229pt;}
.ws4e{word-spacing:2.922363pt;}
.wsac{word-spacing:2.975497pt;}
.wsb5{word-spacing:3.060531pt;}
.ws108{word-spacing:3.108352pt;}
.ws51{word-spacing:3.188032pt;}
.ws1d{word-spacing:3.241166pt;}
.ws5c{word-spacing:3.294300pt;}
.wsd2{word-spacing:3.299635pt;}
.wse4{word-spacing:3.443098pt;}
.wsb6{word-spacing:3.490918pt;}
.ws70{word-spacing:3.506835pt;}
.wsa8{word-spacing:3.719371pt;}
.ws23{word-spacing:3.772505pt;}
.wsa6{word-spacing:3.825638pt;}
.wsd5{word-spacing:3.825664pt;}
.ws3b{word-spacing:3.878772pt;}
.ws6c{word-spacing:4.091308pt;}
.wse2{word-spacing:4.112589pt;}
.ws5d{word-spacing:4.197575pt;}
.ws106{word-spacing:4.208230pt;}
.wsbd{word-spacing:4.447334pt;}
.ws44{word-spacing:4.463245pt;}
.ws43{word-spacing:4.516379pt;}
.ws56{word-spacing:4.622646pt;}
.ws5b{word-spacing:4.675780pt;}
.wsd8{word-spacing:4.686438pt;}
.ws10b{word-spacing:4.777754pt;}
.wsf9{word-spacing:4.781099pt;}
.ws9{word-spacing:4.782080pt;}
.wsf4{word-spacing:4.782114pt;}
.wsf3{word-spacing:4.782123pt;}
.wsc3{word-spacing:4.785442pt;}
.ws27{word-spacing:4.888316pt;}
.ws79{word-spacing:4.973363pt;}
.ws28{word-spacing:4.994583pt;}
.wsa2{word-spacing:5.047717pt;}
.ws9b{word-spacing:5.153985pt;}
.ws35{word-spacing:5.207119pt;}
.wsb2{word-spacing:5.260253pt;}
.wsed{word-spacing:5.260288pt;}
.ws19{word-spacing:5.313387pt;}
.wsa1{word-spacing:5.632190pt;}
.ws7e{word-spacing:5.642854pt;}
.wsa4{word-spacing:5.685324pt;}
.ws68{word-spacing:5.950993pt;}
.ws11{word-spacing:6.004127pt;}
.wsae{word-spacing:6.110395pt;}
.wsaf{word-spacing:6.163529pt;}
.wsf2{word-spacing:6.264525pt;}
.ws105{word-spacing:6.407987pt;}
.ws33{word-spacing:6.535466pt;}
.ws5a{word-spacing:6.694867pt;}
.ws37{word-spacing:6.907403pt;}
.wsd1{word-spacing:7.077478pt;}
.ws62{word-spacing:7.173072pt;}
.ws6b{word-spacing:7.438741pt;}
.ws10{word-spacing:7.491875pt;}
.ws50{word-spacing:8.023214pt;}
.wse7{word-spacing:8.081715pt;}
.wsf5{word-spacing:8.512102pt;}
.wsca{word-spacing:9.468518pt;}
.wsda{word-spacing:9.611981pt;}
.wsdf{word-spacing:10.042368pt;}
.wsde{word-spacing:10.090189pt;}
.ws100{word-spacing:10.377114pt;}
.wse1{word-spacing:10.568397pt;}
.ws1e{word-spacing:10.583399pt;}
.ws104{word-spacing:11.142246pt;}
.wsfe{word-spacing:11.524813pt;}
.wsf0{word-spacing:11.572634pt;}
.wsdb{word-spacing:11.620454pt;}
.wsc8{word-spacing:11.763917pt;}
.ws109{word-spacing:11.811738pt;}
.ws10e{word-spacing:11.859558pt;}
.ws10c{word-spacing:11.900595pt;}
.wscc{word-spacing:11.904299pt;}
.ws118{word-spacing:11.904358pt;}
.ws10d{word-spacing:11.905792pt;}
.wscb{word-spacing:11.905929pt;}
.wsc4{word-spacing:11.907379pt;}
.ws10a{word-spacing:11.955200pt;}
.wsec{word-spacing:12.098662pt;}
.wsc7{word-spacing:12.146483pt;}
.ws29{word-spacing:12.327057pt;}
.wsaa{word-spacing:13.023404pt;}
.wse5{word-spacing:13.098470pt;}
.wse9{word-spacing:13.103804pt;}
.wsba{word-spacing:13.150720pt;}
.ws40{word-spacing:13.230333pt;}
.ws6a{word-spacing:13.336601pt;}
.wsce{word-spacing:14.154957pt;}
.wsd3{word-spacing:15.207014pt;}
.wsd4{word-spacing:15.733043pt;}
.ws107{word-spacing:16.115610pt;}
.wsc1{word-spacing:16.354714pt;}
.wsf8{word-spacing:16.450355pt;}
.wse3{word-spacing:16.593818pt;}
.ws110{word-spacing:16.684416pt;}
.wsf1{word-spacing:16.684766pt;}
.wse6{word-spacing:16.685722pt;}
.wsc2{word-spacing:16.686097pt;}
.wsea{word-spacing:16.686635pt;}
.ws116{word-spacing:16.689434pt;}
.wsd0{word-spacing:16.689459pt;}
.wsc9{word-spacing:16.737280pt;}
.ws103{word-spacing:16.832922pt;}
.ws114{word-spacing:16.928563pt;}
.wsc0{word-spacing:17.024205pt;}
.wsd6{word-spacing:23.001805pt;}
.wscf{word-spacing:23.862579pt;}
.ws5{word-spacing:35.593054pt;}
.ws22{word-spacing:678.457419pt;}
._24{margin-left:-10.759680pt;}
._2a{margin-left:-9.486471pt;}
._4{margin-left:-6.856128pt;}
._f{margin-left:-5.897859pt;}
._5{margin-left:-4.809375pt;}
._d{margin-left:-3.911588pt;}
._3{margin-left:-2.957262pt;}
._0{margin-left:-1.311687pt;}
._7{width:0.969929pt;}
._2{width:2.665388pt;}
._1a{width:4.275200pt;}
._22{width:5.468800pt;}
._23{width:7.030942pt;}
._17{width:8.569058pt;}
._1b{width:10.276605pt;}
._20{width:11.317514pt;}
._19{width:12.237760pt;}
._14{width:13.976066pt;}
._13{width:15.676350pt;}
._6{width:16.737280pt;}
._c{width:17.891313pt;}
._8{width:18.952131pt;}
._29{width:19.941274pt;}
._b{width:20.864950pt;}
._10{width:21.874493pt;}
._9{width:23.149706pt;}
._15{width:24.335311pt;}
._1e{width:26.248130pt;}
._1d{width:27.769198pt;}
._e{width:28.745422pt;}
._1f{width:30.286304pt;}
._16{width:32.411659pt;}
._1{width:33.474560pt;}
._12{width:34.643281pt;}
._27{width:35.705958pt;}
._a{width:37.442716pt;}
._11{width:38.628321pt;}
._1c{width:43.144700pt;}
._28{width:78.904320pt;}
._25{width:1349.044414pt;}
._21{width:1366.996414pt;}
._26{width:1587.653333pt;}
._18{width:1608.773333pt;}
.fsc{font-size:36.176000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fsd{font-size:40.800000pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fse{font-size:45.424000pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fsf{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:95.775733pt;}
.y11f{bottom:-668.569333pt;}
.y141{bottom:-639.689333pt;}
.y140{bottom:-621.689333pt;}
.y13f{bottom:-603.689333pt;}
.y13e{bottom:-585.689333pt;}
.y13d{bottom:-567.689333pt;}
.y13c{bottom:-549.689333pt;}
.y13b{bottom:-531.742667pt;}
.y13a{bottom:-513.742667pt;}
.y139{bottom:-495.742667pt;}
.y138{bottom:-477.742667pt;}
.y137{bottom:-459.742667pt;}
.y136{bottom:-441.742667pt;}
.y135{bottom:-423.742667pt;}
.y134{bottom:-405.822667pt;}
.y133{bottom:-387.822667pt;}
.y6e{bottom:-387.546667pt;}
.y132{bottom:-361.742667pt;}
.y88{bottom:-337.386667pt;}
.y131{bottom:-327.822667pt;}
.y130{bottom:-309.822667pt;}
.y87{bottom:-303.386667pt;}
.y12f{bottom:-291.822667pt;}
.y86{bottom:-285.386667pt;}
.y12e{bottom:-273.822667pt;}
.y85{bottom:-267.386667pt;}
.y12d{bottom:-255.902667pt;}
.ye3{bottom:-253.850667pt;}
.y84{bottom:-249.440000pt;}
.yfb{bottom:-238.752000pt;}
.y12c{bottom:-237.902667pt;}
.y83{bottom:-231.440000pt;}
.y12b{bottom:-219.902667pt;}
.ycb{bottom:-217.860667pt;}
.y82{bottom:-213.440000pt;}
.y12a{bottom:-201.902667pt;}
.y81{bottom:-195.440000pt;}
.y107{bottom:-193.312000pt;}
.y115{bottom:-192.034267pt;}
.y129{bottom:-183.902667pt;}
.y80{bottom:-177.440000pt;}
.y106{bottom:-176.112000pt;}
.yee{bottom:-175.210667pt;}
.y128{bottom:-165.876000pt;}
.y7f{bottom:-159.440000pt;}
.y105{bottom:-158.752000pt;}
.yed{bottom:-158.010667pt;}
.y127{bottom:-147.876000pt;}
.yd6{bottom:-147.412667pt;}
.y7e{bottom:-141.440000pt;}
.y104{bottom:-141.312000pt;}
.yec{bottom:-140.650667pt;}
.yd5{bottom:-132.656667pt;}
.y126{bottom:-129.956000pt;}
.y103{bottom:-124.112000pt;}
.y7d{bottom:-123.520000pt;}
.yeb{bottom:-123.264000pt;}
.yd4{bottom:-117.968667pt;}
.y125{bottom:-111.956000pt;}
.y102{bottom:-106.725333pt;}
.yea{bottom:-105.984000pt;}
.y7c{bottom:-105.520000pt;}
.yd3{bottom:-103.258000pt;}
.y124{bottom:-93.956000pt;}
.y101{bottom:-89.285333pt;}
.ye9{bottom:-88.544000pt;}
.yd2{bottom:-88.502000pt;}
.y7b{bottom:-79.520000pt;}
.yd1{bottom:-73.746000pt;}
.y100{bottom:-72.085333pt;}
.ye8{bottom:-71.264000pt;}
.y123{bottom:-60.356000pt;}
.yd0{bottom:-59.058000pt;}
.yff{bottom:-54.725333pt;}
.ye7{bottom:-53.984000pt;}
.y119{bottom:-52.475600pt;}
.y7a{bottom:-45.920000pt;}
.ycf{bottom:-44.302000pt;}
.y122{bottom:-43.076000pt;}
.y118{bottom:-37.787600pt;}
.yfe{bottom:-37.285333pt;}
.ye6{bottom:-36.544000pt;}
.yce{bottom:-29.546000pt;}
.y79{bottom:-28.560000pt;}
.y121{bottom:-25.636000pt;}
.y117{bottom:-22.963600pt;}
.yfd{bottom:-20.005333pt;}
.ye5{bottom:-19.184000pt;}
.ycd{bottom:-14.790000pt;}
.y78{bottom:-6.880000pt;}
.y116{bottom:-4.535600pt;}
.y120{bottom:-3.956000pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:1.754667pt;}
.ye4{bottom:2.496000pt;}
.y18{bottom:3.044747pt;}
.ycc{bottom:3.638000pt;}
.y17{bottom:12.578910pt;}
.y2{bottom:16.384636pt;}
.y31{bottom:56.693333pt;}
.y112{bottom:92.430667pt;}
.yc8{bottom:101.472000pt;}
.y30{bottom:103.580000pt;}
.y160{bottom:109.441333pt;}
.y111{bottom:109.526667pt;}
.ye0{bottom:113.141333pt;}
.yc7{bottom:119.484000pt;}
.y97{bottom:119.986667pt;}
.y2f{bottom:121.593333pt;}
.yf8{bottom:122.889333pt;}
.y110{bottom:126.622667pt;}
.y15f{bottom:127.454667pt;}
.ydf{bottom:130.237333pt;}
.y1b9{bottom:131.281333pt;}
.yc6{bottom:137.496000pt;}
.y96{bottom:137.998667pt;}
.y2e{bottom:139.605333pt;}
.yf7{bottom:139.985333pt;}
.y10f{bottom:143.717333pt;}
.y62{bottom:145.466667pt;}
.yde{bottom:147.333333pt;}
.y1b8{bottom:148.497333pt;}
.yc5{bottom:155.509333pt;}
.y95{bottom:156.010667pt;}
.yf6{bottom:157.080000pt;}
.y2d{bottom:157.618667pt;}
.y10e{bottom:160.813333pt;}
.y61{bottom:163.478667pt;}
.ydd{bottom:164.429333pt;}
.y1b7{bottom:165.713333pt;}
.y15e{bottom:171.002667pt;}
.y187{bottom:171.224000pt;}
.yc4{bottom:173.521333pt;}
.y94{bottom:174.024000pt;}
.yf5{bottom:174.176000pt;}
.y2c{bottom:175.630667pt;}
.y10d{bottom:177.909333pt;}
.y60{bottom:181.492000pt;}
.ydc{bottom:181.525333pt;}
.y1b6{bottom:182.928000pt;}
.y186{bottom:188.440000pt;}
.y11c{bottom:188.461333pt;}
.y15d{bottom:189.016000pt;}
.yf4{bottom:191.272000pt;}
.yc3{bottom:191.534667pt;}
.y93{bottom:192.036000pt;}
.y2b{bottom:193.642667pt;}
.y10c{bottom:195.005333pt;}
.ydb{bottom:198.621333pt;}
.y5f{bottom:199.504000pt;}
.y1b5{bottom:200.144000pt;}
.y11b{bottom:205.556000pt;}
.y185{bottom:205.654667pt;}
.y15c{bottom:207.028000pt;}
.yf3{bottom:208.368000pt;}
.yc2{bottom:209.546667pt;}
.y92{bottom:210.049333pt;}
.y2a{bottom:211.656000pt;}
.y10b{bottom:212.101333pt;}
.yda{bottom:215.717333pt;}
.y1b4{bottom:217.358667pt;}
.y5e{bottom:217.517333pt;}
.y11a{bottom:222.652000pt;}
.y184{bottom:222.870667pt;}
.y15b{bottom:225.041333pt;}
.yf2{bottom:225.464000pt;}
.yc1{bottom:227.558667pt;}
.y91{bottom:228.061333pt;}
.y10a{bottom:229.197333pt;}
.yd9{bottom:232.812000pt;}
.y1b3{bottom:234.574667pt;}
.y5d{bottom:235.529333pt;}
.y29{bottom:237.638667pt;}
.y183{bottom:240.086667pt;}
.yf1{bottom:242.560000pt;}
.y113{bottom:242.589333pt;}
.y15a{bottom:243.053333pt;}
.yc0{bottom:245.572000pt;}
.y90{bottom:246.073333pt;}
.y109{bottom:246.293333pt;}
.yd8{bottom:249.908000pt;}
.y1b2{bottom:251.790667pt;}
.y5c{bottom:253.541333pt;}
.y182{bottom:257.301333pt;}
.yf0{bottom:259.656000pt;}
.y159{bottom:261.065333pt;}
.y108{bottom:263.389333pt;}
.ybf{bottom:263.584000pt;}
.y8f{bottom:264.086667pt;}
.yd7{bottom:267.004000pt;}
.y1b1{bottom:269.005333pt;}
.y5b{bottom:271.554667pt;}
.y181{bottom:274.517333pt;}
.yef{bottom:276.752000pt;}
.y158{bottom:279.078667pt;}
.ybe{bottom:281.597333pt;}
.y8e{bottom:282.098667pt;}
.yf9{bottom:283.326667pt;}
.y1b0{bottom:286.221333pt;}
.yc9{bottom:286.941333pt;}
.y5a{bottom:289.566667pt;}
.y180{bottom:291.732000pt;}
.ye1{bottom:296.689333pt;}
.y157{bottom:297.090667pt;}
.ybd{bottom:299.609333pt;}
.y8d{bottom:300.112000pt;}
.y28{bottom:302.096000pt;}
.y1af{bottom:303.437333pt;}
.y59{bottom:307.580000pt;}
.y17f{bottom:308.948000pt;}
.y156{bottom:315.104000pt;}
.y11e{bottom:315.350667pt;}
.ybc{bottom:317.621333pt;}
.y8c{bottom:318.124000pt;}
.y27{bottom:320.109333pt;}
.y1ae{bottom:320.652000pt;}
.y58{bottom:325.592000pt;}
.y17e{bottom:326.164000pt;}
.y155{bottom:333.116000pt;}
.ybb{bottom:335.634667pt;}
.y1ad{bottom:337.868000pt;}
.y57{bottom:343.604000pt;}
.y8b{bottom:344.106667pt;}
.y154{bottom:351.128000pt;}
.y17d{bottom:351.349333pt;}
.yba{bottom:353.646667pt;}
.y26{bottom:354.061333pt;}
.y1ac{bottom:355.082667pt;}
.y56{bottom:361.617333pt;}
.yb9{bottom:371.660000pt;}
.y25{bottom:372.074667pt;}
.y8a{bottom:372.216000pt;}
.y1ab{bottom:372.298667pt;}
.y153{bottom:377.110667pt;}
.y55{bottom:379.629333pt;}
.y17c{bottom:386.417333pt;}
.y89{bottom:389.312000pt;}
.y1aa{bottom:389.514667pt;}
.yb8{bottom:389.672000pt;}
.y24{bottom:390.086667pt;}
.y54{bottom:397.642667pt;}
.y17b{bottom:399.926667pt;}
.y1a9{bottom:406.729333pt;}
.yb7{bottom:407.684000pt;}
.y152{bottom:408.061333pt;}
.y23{bottom:408.100000pt;}
.y6c{bottom:409.249333pt;}
.y77{bottom:411.146667pt;}
.y17a{bottom:413.436000pt;}
.y53{bottom:415.654667pt;}
.y1a8{bottom:423.945333pt;}
.yb6{bottom:425.697333pt;}
.y151{bottom:426.074667pt;}
.y22{bottom:426.112000pt;}
.y76{bottom:429.146667pt;}
.y52{bottom:433.666667pt;}
.y179{bottom:434.916000pt;}
.y1a7{bottom:441.160000pt;}
.yb5{bottom:443.709333pt;}
.y150{bottom:444.086667pt;}
.y21{bottom:444.124000pt;}
.y75{bottom:447.146667pt;}
.y178{bottom:448.425333pt;}
.y51{bottom:451.680000pt;}
.y1a6{bottom:458.376000pt;}
.yb4{bottom:461.722667pt;}
.y177{bottom:461.934667pt;}
.y14f{bottom:462.100000pt;}
.y20{bottom:462.137333pt;}
.y74{bottom:465.146667pt;}
.y50{bottom:469.692000pt;}
.y176{bottom:475.444000pt;}
.y1a5{bottom:475.592000pt;}
.yb3{bottom:479.734667pt;}
.y14e{bottom:480.112000pt;}
.y1f{bottom:480.149333pt;}
.y73{bottom:483.146667pt;}
.y4f{bottom:487.704000pt;}
.y1a4{bottom:492.806667pt;}
.y175{bottom:496.924000pt;}
.yb2{bottom:497.746667pt;}
.y14d{bottom:498.124000pt;}
.y1e{bottom:498.162667pt;}
.y72{bottom:501.173333pt;}
.y4e{bottom:505.717333pt;}
.y1a3{bottom:510.022667pt;}
.y174{bottom:510.433333pt;}
.yb1{bottom:515.760000pt;}
.y14c{bottom:516.137333pt;}
.y1d{bottom:516.174667pt;}
.y71{bottom:519.093333pt;}
.y4d{bottom:523.729333pt;}
.y173{bottom:523.942667pt;}
.y1a2{bottom:527.237333pt;}
.yb0{bottom:533.772000pt;}
.y14b{bottom:534.149333pt;}
.y1c{bottom:534.186667pt;}
.y70{bottom:537.093333pt;}
.y172{bottom:537.452000pt;}
.y4c{bottom:541.742667pt;}
.y1a1{bottom:544.453333pt;}
.y171{bottom:550.961333pt;}
.yaf{bottom:551.785333pt;}
.y14a{bottom:552.162667pt;}
.y1b{bottom:552.200000pt;}
.y4b{bottom:559.754667pt;}
.y1a0{bottom:561.669333pt;}
.y6f{bottom:563.093333pt;}
.y170{bottom:564.470667pt;}
.yae{bottom:569.797333pt;}
.y149{bottom:570.174667pt;}
.y1a{bottom:570.212000pt;}
.y4a{bottom:577.766667pt;}
.y16f{bottom:577.980000pt;}
.y19f{bottom:578.884000pt;}
.yad{bottom:587.809333pt;}
.y148{bottom:588.186667pt;}
.y19{bottom:588.225333pt;}
.y16e{bottom:591.489333pt;}
.y49{bottom:595.780000pt;}
.y19e{bottom:596.100000pt;}
.y6d{bottom:596.373333pt;}
.y16d{bottom:604.998667pt;}
.yac{bottom:605.822667pt;}
.y147{bottom:606.200000pt;}
.y19d{bottom:613.314667pt;}
.y48{bottom:613.792000pt;}
.yca{bottom:618.471333pt;}
.y16c{bottom:618.508000pt;}
.y16{bottom:619.719968pt;}
.y15{bottom:620.401333pt;}
.yab{bottom:623.834667pt;}
.y146{bottom:624.212000pt;}
.y19c{bottom:630.530667pt;}
.y47{bottom:631.805333pt;}
.y16b{bottom:632.017333pt;}
.yaa{bottom:641.846667pt;}
.y145{bottom:642.225333pt;}
.y114{bottom:644.297733pt;}
.y19b{bottom:647.746667pt;}
.y46{bottom:649.817333pt;}
.y16a{bottom:653.497333pt;}
.y14{bottom:655.073333pt;}
.ya9{bottom:659.860000pt;}
.y19a{bottom:664.961333pt;}
.y169{bottom:667.006667pt;}
.y45{bottom:667.829333pt;}
.y13{bottom:671.213333pt;}
.y144{bottom:673.336000pt;}
.ya8{bottom:677.872000pt;}
.y168{bottom:680.516000pt;}
.y199{bottom:682.177333pt;}
.y44{bottom:685.842667pt;}
.y143{bottom:690.432000pt;}
.y12{bottom:691.692000pt;}
.y167{bottom:694.025333pt;}
.ya7{bottom:695.885333pt;}
.y198{bottom:699.392000pt;}
.y11{bottom:703.492000pt;}
.y43{bottom:703.854667pt;}
.y142{bottom:707.528000pt;}
.y166{bottom:707.534667pt;}
.ya6{bottom:713.897333pt;}
.y197{bottom:716.608000pt;}
.y42{bottom:721.868000pt;}
.y10{bottom:723.970667pt;}
.y11d{bottom:727.465333pt;}
.ye2{bottom:730.069333pt;}
.ya5{bottom:731.909333pt;}
.y196{bottom:733.824000pt;}
.y165{bottom:736.984000pt;}
.y41{bottom:739.880000pt;}
.yf{bottom:740.110667pt;}
.yfa{bottom:745.168000pt;}
.ya4{bottom:749.922667pt;}
.y195{bottom:751.038667pt;}
.ye{bottom:751.910667pt;}
.y164{bottom:754.997333pt;}
.y40{bottom:757.892000pt;}
.ya3{bottom:767.934667pt;}
.yd{bottom:768.050667pt;}
.y194{bottom:768.254667pt;}
.yc{bottom:772.389333pt;}
.y163{bottom:773.009333pt;}
.y3f{bottom:775.905333pt;}
.yb{bottom:784.189333pt;}
.y193{bottom:785.469333pt;}
.ya2{bottom:785.948000pt;}
.y162{bottom:791.021333pt;}
.y3e{bottom:793.917333pt;}
.ya{bottom:800.329333pt;}
.y192{bottom:802.685333pt;}
.ya1{bottom:803.960000pt;}
.y6b{bottom:809.034667pt;}
.y3d{bottom:811.930667pt;}
.y191{bottom:819.901333pt;}
.y9{bottom:820.808000pt;}
.ya0{bottom:821.972000pt;}
.y6a{bottom:827.046667pt;}
.y3c{bottom:829.942667pt;}
.y190{bottom:837.116000pt;}
.y9f{bottom:839.985333pt;}
.y8{bottom:840.578667pt;}
.y69{bottom:845.060000pt;}
.y3b{bottom:847.954667pt;}
.y18f{bottom:854.332000pt;}
.y9e{bottom:857.997333pt;}
.y7{bottom:858.590667pt;}
.y1bc{bottom:860.722667pt;}
.y68{bottom:863.072000pt;}
.y3a{bottom:865.968000pt;}
.y18e{bottom:871.546667pt;}
.y9d{bottom:876.010667pt;}
.y1bb{bottom:877.938667pt;}
.y67{bottom:881.084000pt;}
.y39{bottom:883.980000pt;}
.y18d{bottom:888.762667pt;}
.y9c{bottom:894.022667pt;}
.y1ba{bottom:895.153333pt;}
.y6{bottom:898.178667pt;}
.y66{bottom:899.097333pt;}
.y38{bottom:901.993333pt;}
.y18c{bottom:905.978667pt;}
.y9b{bottom:912.034667pt;}
.y65{bottom:917.109333pt;}
.y37{bottom:920.005333pt;}
.y18b{bottom:923.193333pt;}
.y161{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y9a{bottom:930.048000pt;}
.y64{bottom:935.122667pt;}
.y36{bottom:938.017333pt;}
.y18a{bottom:940.409333pt;}
.y99{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y189{bottom:957.624000pt;}
.y63{bottom:961.105333pt;}
.y98{bottom:966.073333pt;}
.y34{bottom:974.042667pt;}
.y188{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y33{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.hb{height:22.673858pt;}
.h1a{height:24.760382pt;}
.h1c{height:26.531422pt;}
.h8{height:27.076941pt;}
.h19{height:28.745422pt;}
.hd{height:29.433775pt;}
.h20{height:29.783203pt;}
.h1f{height:29.922656pt;}
.hc{height:30.399505pt;}
.h10{height:31.157778pt;}
.h12{height:31.213438pt;}
.h1e{height:33.158633pt;}
.h27{height:33.713664pt;}
.ha{height:34.144051pt;}
.h18{height:34.430976pt;}
.h9{height:34.813542pt;}
.h17{height:35.039062pt;}
.h26{height:35.052646pt;}
.h16{height:35.203125pt;}
.he{height:38.256384pt;}
.hf{height:38.681455pt;}
.h4{height:38.947124pt;}
.h15{height:39.010156pt;}
.h14{height:39.166719pt;}
.h1d{height:41.935971pt;}
.h2{height:45.325866pt;}
.h25{height:46.937500pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h13{height:49.336436pt;}
.h3{height:64.935947pt;}
.h5{height:68.861952pt;}
.h24{height:277.874667pt;}
.h11{height:378.765333pt;}
.h1b{height:597.494467pt;}
.h23{height:602.354200pt;}
.h21{height:708.652000pt;}
.h22{height:722.014667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:140.324689pt;}
.w8{width:444.496733pt;}
.w5{width:495.640553pt;}
.w4{width:554.184400pt;}
.w9{width:578.790400pt;}
.w6{width:582.281333pt;}
.w7{width:583.107333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb2{left:-34.295800pt;}
.xb3{left:-10.201133pt;}
.x99{left:-6.836000pt;}
.xa6{left:-5.535333pt;}
.x84{left:-4.056313pt;}
.xb5{left:-2.646933pt;}
.x55{left:-0.902267pt;}
.x0{left:0.000000pt;}
.x85{left:20.038353pt;}
.x9b{left:21.510667pt;}
.xa8{left:22.811333pt;}
.x9{left:26.021437pt;}
.x56{left:27.444400pt;}
.x2{left:52.038336pt;}
.x1{left:102.046667pt;}
.x98{left:105.710667pt;}
.xb4{left:107.456267pt;}
.x7{left:108.542667pt;}
.x3{left:109.606667pt;}
.x54{left:119.758267pt;}
.x4{left:129.929333pt;}
.x73{left:146.225333pt;}
.x83{left:149.029447pt;}
.x1a{left:153.097333pt;}
.xdf{left:155.388000pt;}
.x74{left:159.509333pt;}
.xee{left:160.889333pt;}
.x75{left:162.764000pt;}
.x1b{left:166.381333pt;}
.xa{left:167.958667pt;}
.x1c{left:169.768000pt;}
.xd9{left:172.234667pt;}
.xb1{left:174.601333pt;}
.x4e{left:176.850667pt;}
.xb{left:177.792000pt;}
.xf7{left:178.817333pt;}
.x58{left:181.721333pt;}
.x1d{left:183.052000pt;}
.x9c{left:184.076000pt;}
.x1e{left:186.438667pt;}
.x9d{left:188.137333pt;}
.x4f{left:190.134667pt;}
.x86{left:191.546667pt;}
.x9e{left:194.114667pt;}
.xba{left:196.281333pt;}
.x1f{left:199.722667pt;}
.x78{left:202.080000pt;}
.xef{left:204.881333pt;}
.xf0{left:210.608000pt;}
.xe4{left:211.685333pt;}
.xbb{left:212.820000pt;}
.x14{left:214.109333pt;}
.x79{left:215.362667pt;}
.xe7{left:218.618667pt;}
.x93{left:223.506667pt;}
.xa9{left:225.306667pt;}
.x15{left:227.393333pt;}
.xde{left:230.249333pt;}
.xaa{left:232.610667pt;}
.x16{left:233.902667pt;}
.x87{left:235.034667pt;}
.xaf{left:237.249333pt;}
.xa5{left:240.438667pt;}
.x88{left:242.338667pt;}
.xb0{left:244.553333pt;}
.x17{left:247.185333pt;}
.x52{left:259.008000pt;}
.xc3{left:259.928000pt;}
.x24{left:261.156000pt;}
.x7d{left:268.608000pt;}
.x53{left:272.292000pt;}
.xc4{left:273.212000pt;}
.x25{left:274.440000pt;}
.x9f{left:276.181333pt;}
.x89{left:279.977333pt;}
.x7e{left:281.890667pt;}
.x5d{left:282.965333pt;}
.x8a{left:285.285333pt;}
.xc5{left:289.749333pt;}
.xc6{left:293.004000pt;}
.xf9{left:294.946667pt;}
.xae{left:297.285333pt;}
.x60{left:302.562667pt;}
.x94{left:305.821333pt;}
.x61{left:311.449333pt;}
.x7f{left:312.621333pt;}
.xa0{left:314.870667pt;}
.x95{left:317.896000pt;}
.xa1{left:320.178667pt;}
.x5e{left:322.864000pt;}
.xc{left:325.626667pt;}
.x8b{left:327.094667pt;}
.xab{left:328.881333pt;}
.xd{left:332.268000pt;}
.x8c{left:334.398667pt;}
.xac{left:336.185333pt;}
.xe{left:338.777333pt;}
.x80{left:341.272000pt;}
.xf{left:345.418667pt;}
.x59{left:353.861333pt;}
.x96{left:355.881333pt;}
.xb7{left:357.109333pt;}
.xe5{left:360.228000pt;}
.x97{left:361.858667pt;}
.x64{left:364.221333pt;}
.xe6{left:366.205333pt;}
.x5a{left:367.145333pt;}
.xa2{left:368.733333pt;}
.x5b{left:370.400000pt;}
.xd5{left:375.250667pt;}
.x65{left:377.505333pt;}
.x66{left:380.892000pt;}
.xc1{left:381.942667pt;}
.x5c{left:383.684000pt;}
.xcb{left:385.360000pt;}
.xd6{left:388.534667pt;}
.x8d{left:391.689333pt;}
.x67{left:394.176000pt;}
.x91{left:395.065333pt;}
.x8e{left:397.666667pt;}
.xcc{left:398.644000pt;}
.x26{left:399.804000pt;}
.xc7{left:400.834667pt;}
.xcd{left:401.994667pt;}
.xa4{left:403.688000pt;}
.xd7{left:405.205333pt;}
.x92{left:407.020000pt;}
.x18{left:410.780000pt;}
.xf1{left:412.080000pt;}
.x27{left:413.088000pt;}
.xc8{left:414.118667pt;}
.xce{left:415.278667pt;}
.x28{left:416.474667pt;}
.xa3{left:417.736000pt;}
.xe3{left:422.537333pt;}
.x19{left:424.064000pt;}
.xda{left:426.273333pt;}
.x5f{left:428.228000pt;}
.x29{left:429.758667pt;}
.x7a{left:431.088000pt;}
.xf6{left:434.569333pt;}
.x2a{left:436.533333pt;}
.x6b{left:441.937333pt;}
.xdb{left:442.857333pt;}
.x3e{left:444.572000pt;}
.xdc{left:446.158667pt;}
.x2b{left:449.817333pt;}
.x32{left:452.338667pt;}
.x81{left:453.756000pt;}
.x6c{left:455.221333pt;}
.xe0{left:456.346667pt;}
.x3f{left:457.856000pt;}
.xdd{left:459.442667pt;}
.xe1{left:462.324000pt;}
.x33{left:465.622667pt;}
.x82{left:467.038667pt;}
.x34{left:469.009333pt;}
.x40{left:470.589333pt;}
.x41{left:477.230667pt;}
.x36{left:478.985333pt;}
.x42{left:480.618667pt;}
.x35{left:482.293333pt;}
.x6d{left:485.506667pt;}
.xf2{left:486.646667pt;}
.xed{left:488.268000pt;}
.xc2{left:489.772000pt;}
.x37{left:492.269333pt;}
.x43{left:493.902667pt;}
.x38{left:495.620000pt;}
.x44{left:497.289333pt;}
.x6e{left:498.790667pt;}
.x3c{left:502.772000pt;}
.x39{left:508.902667pt;}
.x45{left:510.573333pt;}
.x3a{left:512.253333pt;}
.x46{left:513.960000pt;}
.x2c{left:516.401333pt;}
.xad{left:517.477333pt;}
.x3d{left:519.406667pt;}
.xe2{left:522.417333pt;}
.x3b{left:525.537333pt;}
.x47{left:527.244000pt;}
.x2d{left:529.685333pt;}
.x5{left:530.901333pt;}
.x2e{left:533.072000pt;}
.x6{left:536.878667pt;}
.xf4{left:542.736000pt;}
.x48{left:543.914667pt;}
.x2f{left:546.356000pt;}
.x49{left:547.301333pt;}
.x10{left:548.272000pt;}
.x30{left:549.742667pt;}
.x11{left:554.913333pt;}
.x4a{left:560.585333pt;}
.x12{left:561.688000pt;}
.x31{left:563.026667pt;}
.xf5{left:566.646667pt;}
.x13{left:568.329333pt;}
.x7c{left:576.934667pt;}
.x9a{left:582.844000pt;}
.xa7{left:584.144667pt;}
.xf3{left:585.286667pt;}
.xb6{left:587.433067pt;}
.x57{left:589.177733pt;}
.x8f{left:591.437333pt;}
.x76{left:593.666667pt;}
.xc9{left:595.132000pt;}
.x90{left:597.414667pt;}
.xbe{left:599.536000pt;}
.xca{left:601.862667pt;}
.x6f{left:603.772000pt;}
.x50{left:604.976000pt;}
.x77{left:606.950667pt;}
.xb8{left:609.217333pt;}
.xd1{left:610.938667pt;}
.xbf{left:612.820000pt;}
.xd2{left:614.240000pt;}
.x70{left:617.056000pt;}
.xec{left:618.200000pt;}
.xfa{left:619.220000pt;}
.x71{left:620.309333pt;}
.xb9{left:622.500000pt;}
.x8{left:623.413317pt;}
.xf8{left:624.600000pt;}
.xd3{left:627.524000pt;}
.xeb{left:628.908000pt;}
.x7b{left:630.544000pt;}
.x72{left:633.593333pt;}
.x68{left:638.962667pt;}
.x4b{left:640.029333pt;}
.xe8{left:642.420000pt;}
.xd4{left:644.108000pt;}
.xcf{left:646.804000pt;}
.xea{left:648.274667pt;}
.x20{left:652.737333pt;}
.xd8{left:653.885333pt;}
.x69{left:655.593333pt;}
.x4c{left:656.568000pt;}
.xd0{left:660.088000pt;}
.x21{left:666.021333pt;}
.x62{left:667.680000pt;}
.x6a{left:668.877333pt;}
.x4d{left:669.850667pt;}
.xe9{left:671.072000pt;}
.x22{left:672.796000pt;}
.xbc{left:674.034667pt;}
.x63{left:675.884000pt;}
.xc0{left:681.353333pt;}
.x23{left:686.078667pt;}
.xbd{left:687.318667pt;}
.x51{left:689.964000pt;}
}




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