
    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_d337b077a0298b9114bcc5a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_91388c860de4cd81b67d1565.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_33db23eb53f737936a606d69.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_f4ba4acc784a45af4e89f080.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_069f41152866240f82efc450.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_74bdeff0709be6bc3fc3fff9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_238d37e434833d884e3293af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.550000;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_8d14d3cd6918c6314bdb535e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_aa424bd845feb378d1d4ef53.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_1917b1029b8157d032adabb1.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_eeb6f2f5e6e23a7840741282.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.703000;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_554675a44e6918e8b9a59cf4.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_e16a5b6f9404ff063707ce0a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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_1f906ee700cb61d2a2a2efae.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_82efa92330353cb90e76cccf.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;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_93ece33e596173e664068bd8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006348;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_119b4f637e138863a92e16aa.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_0df392f0b5f00bc67931b031.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.707520;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_554675a44e6918e8b9a59cf4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;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_bae634e2576f832af8a45460.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;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_d42027fa7a0b6a50567b46be.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_8450602c0ef9405df7ad4df1.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.707520;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_554675a44e6918e8b9a59cf4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;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_bae634e2576f832af8a45460.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;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_d42027fa7a0b6a50567b46be.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_8450602c0ef9405df7ad4df1.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.707520;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_5b574b920f587b9c24d4afd5.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;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_a6fe499833c830de43141950.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;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_1b4638cde9d2fbeebdf68aa7.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_8450602c0ef9405df7ad4df1.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.707520;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_554675a44e6918e8b9a59cf4.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000488;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_ebde7c5583b4a41ce04f7bc1.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.006348;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_ee051724b0985afc27fa9a74.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_687fa37df669e551baf7d8b9.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.726000;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;}
.m4{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);}
.me{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);}
.m20{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);}
.m16{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);}
.m5{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);}
.m21{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);}
.m1f{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);}
.m1{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);}
.m9{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);}
.m29{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);}
.m12{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);}
.m7{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);}
.m2{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);}
.m22{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);}
.m14{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);}
.m23{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);}
.m13{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);}
.m10{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);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m8{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);}
.m15{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);}
.m1d{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);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m1c{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);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m17{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);}
.m1a{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);}
.m18{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);}
.m6{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);}
.m19{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);}
.ma{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);}
.mc{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);}
.m11{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);}
.mf{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);}
.m3{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);}
.md{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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.880000px;}
.v3{vertical-align:40.683204px;}
.ls56{letter-spacing:-2.789568px;}
.ls64{letter-spacing:-0.312624px;}
.ls65{letter-spacing:-0.270540px;}
.ls5d{letter-spacing:-0.189000px;}
.ls3b{letter-spacing:-0.168336px;}
.ls2f{letter-spacing:-0.150300px;}
.ls2b{letter-spacing:-0.144288px;}
.ls25{letter-spacing:-0.138276px;}
.ls27{letter-spacing:-0.132264px;}
.ls62{letter-spacing:-0.126252px;}
.ls5e{letter-spacing:-0.124200px;}
.ls26{letter-spacing:-0.120240px;}
.ls47{letter-spacing:-0.114228px;}
.ls46{letter-spacing:-0.108216px;}
.ls63{letter-spacing:-0.102204px;}
.ls3a{letter-spacing:-0.096192px;}
.ls20{letter-spacing:-0.090972px;}
.ls53{letter-spacing:-0.086184px;}
.ls43{letter-spacing:-0.084168px;}
.ls48{letter-spacing:-0.078156px;}
.ls24{letter-spacing:-0.072144px;}
.ls55{letter-spacing:-0.070200px;}
.ls49{letter-spacing:-0.066132px;}
.ls2a{letter-spacing:-0.060120px;}
.ls22{letter-spacing:-0.054108px;}
.ls21{letter-spacing:-0.048600px;}
.ls3c{letter-spacing:-0.048096px;}
.ls5f{letter-spacing:-0.043200px;}
.ls2c{letter-spacing:-0.042084px;}
.ls54{letter-spacing:-0.037800px;}
.ls28{letter-spacing:-0.036072px;}
.ls23{letter-spacing:-0.030060px;}
.ls30{letter-spacing:-0.024048px;}
.ls44{letter-spacing:-0.018036px;}
.ls60{letter-spacing:-0.016200px;}
.ls29{letter-spacing:-0.012024px;}
.ls2e{letter-spacing:-0.006012px;}
.ls2d{letter-spacing:-0.005400px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000435px;}
.ls6b{letter-spacing:0.000800px;}
.ls6a{letter-spacing:0.001036px;}
.ls37{letter-spacing:0.001133px;}
.ls70{letter-spacing:0.001746px;}
.ls71{letter-spacing:0.001834px;}
.ls68{letter-spacing:0.002544px;}
.ls6c{letter-spacing:0.003965px;}
.ls0{letter-spacing:0.004200px;}
.ls69{letter-spacing:0.004800px;}
.ls19{letter-spacing:0.005400px;}
.ls1c{letter-spacing:0.006012px;}
.ls13{letter-spacing:0.010800px;}
.ls59{letter-spacing:0.012024px;}
.ls33{letter-spacing:0.016200px;}
.ls1f{letter-spacing:0.018036px;}
.ls11{letter-spacing:0.021600px;}
.ls17{letter-spacing:0.027000px;}
.ls1b{letter-spacing:0.030060px;}
.lsf{letter-spacing:0.033516px;}
.ls58{letter-spacing:0.036072px;}
.ls12{letter-spacing:0.037800px;}
.ls1d{letter-spacing:0.042084px;}
.ls4c{letter-spacing:0.043092px;}
.ls5b{letter-spacing:0.043200px;}
.ls15{letter-spacing:0.048096px;}
.ls18{letter-spacing:0.048600px;}
.ls5a{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.054108px;}
.lsd{letter-spacing:0.057456px;}
.ls4f{letter-spacing:0.059400px;}
.ls35{letter-spacing:0.060120px;}
.ls4e{letter-spacing:0.064800px;}
.ls1e{letter-spacing:0.066132px;}
.ls4a{letter-spacing:0.067032px;}
.ls41{letter-spacing:0.072144px;}
.ls36{letter-spacing:0.078156px;}
.ls51{letter-spacing:0.081000px;}
.ls16{letter-spacing:0.084168px;}
.ls50{letter-spacing:0.086400px;}
.ls5c{letter-spacing:0.091800px;}
.ls1a{letter-spacing:0.096192px;}
.ls3e{letter-spacing:0.102204px;}
.ls34{letter-spacing:0.124200px;}
.ls4d{letter-spacing:0.140400px;}
.ls3d{letter-spacing:0.144288px;}
.ls57{letter-spacing:0.145800px;}
.ls3f{letter-spacing:0.156312px;}
.ls10{letter-spacing:0.172368px;}
.ls40{letter-spacing:0.178200px;}
.lse{letter-spacing:0.181944px;}
.ls4b{letter-spacing:0.191520px;}
.lsb{letter-spacing:0.542815px;}
.ls32{letter-spacing:0.548815px;}
.ls31{letter-spacing:0.745694px;}
.ls9{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls61{letter-spacing:2.969928px;}
.ls1{letter-spacing:2.989200px;}
.ls45{letter-spacing:6.931836px;}
.ls4{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls6e{letter-spacing:13.366242px;}
.ls66{letter-spacing:13.448400px;}
.ls67{letter-spacing:13.454400px;}
.ls38{letter-spacing:15.675483px;}
.lsc{letter-spacing:17.934089px;}
.ls39{letter-spacing:17.947200px;}
.ls6d{letter-spacing:19.485694px;}
.ls42{letter-spacing:20.084602px;}
.ls6f{letter-spacing:20.591576px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.ls52{letter-spacing:849.309228px;}
.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:-110.285406px;}
.wsbe{word-spacing:-60.120000px;}
.ws4e{word-spacing:-14.943900px;}
.ws97{word-spacing:-13.500000px;}
.ws99{word-spacing:-13.449600px;}
.wse8{word-spacing:-12.161520px;}
.ws56{word-spacing:-12.151944px;}
.ws32{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws8{word-spacing:-10.460700px;}
.ws98{word-spacing:-9.000000px;}
.wsdb{word-spacing:-3.529044px;}
.ws12c{word-spacing:-3.504996px;}
.ws4f{word-spacing:-3.347434px;}
.ws42{word-spacing:-3.168107px;}
.ws12b{word-spacing:-3.156300px;}
.ws9e{word-spacing:-3.048556px;}
.wsda{word-spacing:-3.036060px;}
.wse9{word-spacing:-2.689920px;}
.wsea{word-spacing:-2.474726px;}
.ws92{word-spacing:-2.450800px;}
.ws135{word-spacing:-2.410812px;}
.ws136{word-spacing:-2.326644px;}
.ws113{word-spacing:-2.296584px;}
.wse6{word-spacing:-2.062116px;}
.ws13d{word-spacing:-2.038068px;}
.ws13c{word-spacing:-2.032056px;}
.ws52{word-spacing:-1.972595px;}
.ws141{word-spacing:-1.971936px;}
.wse5{word-spacing:-1.959912px;}
.ws140{word-spacing:-1.953900px;}
.ws5{word-spacing:-1.908367px;}
.ws1b{word-spacing:-1.829146px;}
.wsc5{word-spacing:-1.755504px;}
.ws5a{word-spacing:-1.733492px;}
.ws48{word-spacing:-1.673717px;}
.ws15b{word-spacing:-1.667750px;}
.ws8a{word-spacing:-1.613941px;}
.ws155{word-spacing:-1.506355px;}
.wse7{word-spacing:-1.434614px;}
.wsfd{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.wsfc{word-spacing:-1.315063px;}
.ws91{word-spacing:-1.255288px;}
.wsd3{word-spacing:-1.148292px;}
.wsd2{word-spacing:-1.094184px;}
.wsc2{word-spacing:-1.016185px;}
.ws146{word-spacing:-0.993600px;}
.wsb7{word-spacing:-0.991980px;}
.ws145{word-spacing:-0.945000px;}
.wsb6{word-spacing:-0.943884px;}
.ws15f{word-spacing:-0.860774px;}
.wsb8{word-spacing:-0.859716px;}
.ws11e{word-spacing:-0.836858px;}
.ws43{word-spacing:-0.717307px;}
.ws12d{word-spacing:-0.679356px;}
.ws153{word-spacing:-0.645581px;}
.wsd1{word-spacing:-0.613224px;}
.ws53{word-spacing:-0.597756px;}
.ws76{word-spacing:-0.588600px;}
.ws74{word-spacing:-0.567000px;}
.wsd7{word-spacing:-0.550800px;}
.wsd8{word-spacing:-0.540000px;}
.ws49{word-spacing:-0.537980px;}
.ws75{word-spacing:-0.534600px;}
.ws4a{word-spacing:-0.478205px;}
.ws2f{word-spacing:-0.418429px;}
.ws78{word-spacing:-0.366732px;}
.ws23{word-spacing:-0.358654px;}
.wsd9{word-spacing:-0.342684px;}
.ws65{word-spacing:-0.324648px;}
.ws156{word-spacing:-0.322790px;}
.ws26{word-spacing:-0.298878px;}
.wseb{word-spacing:-0.268992px;}
.wsef{word-spacing:-0.268128px;}
.ws60{word-spacing:-0.263340px;}
.ws10d{word-spacing:-0.258516px;}
.ws68{word-spacing:-0.240480px;}
.ws30{word-spacing:-0.239102px;}
.wsec{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.wsaf{word-spacing:-0.172800px;}
.ws1e{word-spacing:-0.161395px;}
.wsee{word-spacing:-0.129276px;}
.ws5f{word-spacing:-0.124488px;}
.ws28{word-spacing:-0.119551px;}
.ws123{word-spacing:-0.107597px;}
.ws3b{word-spacing:-0.059776px;}
.ws57{word-spacing:-0.053798px;}
.ws13{word-spacing:-0.047821px;}
.ws168{word-spacing:-0.027110px;}
.ws159{word-spacing:-0.008342px;}
.ws31{word-spacing:-0.003377px;}
.ws7{word-spacing:-0.002798px;}
.ws16d{word-spacing:-0.002342px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.000008px;}
.ws66{word-spacing:0.042084px;}
.wsfb{word-spacing:0.053798px;}
.ws22{word-spacing:0.059776px;}
.ws13b{word-spacing:0.078156px;}
.ws89{word-spacing:0.084168px;}
.ws160{word-spacing:0.085181px;}
.ws6f{word-spacing:0.102204px;}
.wsf7{word-spacing:0.102600px;}
.ws58{word-spacing:0.107597px;}
.ws10c{word-spacing:0.113400px;}
.ws12a{word-spacing:0.114228px;}
.ws20{word-spacing:0.119551px;}
.wsad{word-spacing:0.120240px;}
.ws6d{word-spacing:0.126252px;}
.ws73{word-spacing:0.132264px;}
.wsde{word-spacing:0.138276px;}
.wsa5{word-spacing:0.140400px;}
.ws10a{word-spacing:0.156600px;}
.ws15{word-spacing:0.161395px;}
.wsb0{word-spacing:0.162000px;}
.ws64{word-spacing:0.167400px;}
.ws77{word-spacing:0.172800px;}
.wsa4{word-spacing:0.178200px;}
.ws38{word-spacing:0.179327px;}
.wsae{word-spacing:0.183600px;}
.wsd6{word-spacing:0.198396px;}
.ws9{word-spacing:0.209214px;}
.ws6e{word-spacing:0.210420px;}
.wsed{word-spacing:0.215194px;}
.ws109{word-spacing:0.216000px;}
.ws6c{word-spacing:0.222444px;}
.ws6a{word-spacing:0.228456px;}
.ws71{word-spacing:0.234468px;}
.ws33{word-spacing:0.239102px;}
.ws10b{word-spacing:0.248400px;}
.ws1d{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws25{word-spacing:0.298878px;}
.wsfa{word-spacing:0.322790px;}
.ws37{word-spacing:0.358654px;}
.ws16b{word-spacing:0.376589px;}
.ws41{word-spacing:0.418429px;}
.wsdd{word-spacing:0.468936px;}
.ws40{word-spacing:0.478205px;}
.ws142{word-spacing:0.480600px;}
.ws107{word-spacing:0.484186px;}
.ws144{word-spacing:0.486000px;}
.ws143{word-spacing:0.529200px;}
.ws158{word-spacing:0.591782px;}
.ws8f{word-spacing:0.597756px;}
.ws162{word-spacing:0.645581px;}
.ws3a{word-spacing:0.657532px;}
.wsd0{word-spacing:0.667332px;}
.ws8b{word-spacing:0.742462px;}
.ws106{word-spacing:0.753178px;}
.wsa9{word-spacing:0.769536px;}
.ws27{word-spacing:0.777083px;}
.ws157{word-spacing:0.806976px;}
.ws110{word-spacing:0.817632px;}
.wscf{word-spacing:0.823644px;}
.ws47{word-spacing:0.836858px;}
.ws7d{word-spacing:0.847692px;}
.ws152{word-spacing:0.860774px;}
.wsa8{word-spacing:0.883764px;}
.ws96{word-spacing:0.896634px;}
.ws11d{word-spacing:0.914573px;}
.ws5b{word-spacing:0.956410px;}
.ws7e{word-spacing:0.961920px;}
.wsfe{word-spacing:1.075961px;}
.ws172{word-spacing:1.129766px;}
.ws11c{word-spacing:1.183565px;}
.ws130{word-spacing:1.184364px;}
.ws54{word-spacing:1.195512px;}
.ws21{word-spacing:1.255288px;}
.ws50{word-spacing:1.315063px;}
.ws148{word-spacing:1.344960px;}
.ws8e{word-spacing:1.374839px;}
.ws95{word-spacing:1.434614px;}
.wsc7{word-spacing:1.472940px;}
.ws1c{word-spacing:1.506355px;}
.ws80{word-spacing:1.551096px;}
.wsa0{word-spacing:1.554166px;}
.ws11a{word-spacing:1.569132px;}
.wsc6{word-spacing:1.581156px;}
.ws81{word-spacing:1.587168px;}
.ws11b{word-spacing:1.659312px;}
.ws3d{word-spacing:1.673717px;}
.ws1a{word-spacing:1.721549px;}
.ws44{word-spacing:1.793268px;}
.ws147{word-spacing:1.829146px;}
.ws10e{word-spacing:1.881756px;}
.wsff{word-spacing:1.912819px;}
.wsbc{word-spacing:1.917828px;}
.ws161{word-spacing:1.936742px;}
.ws10f{word-spacing:1.941876px;}
.ws94{word-spacing:1.972595px;}
.ws129{word-spacing:1.998000px;}
.wsa{word-spacing:2.008454px;}
.ws128{word-spacing:2.025000px;}
.ws93{word-spacing:2.032370px;}
.ws5c{word-spacing:2.092146px;}
.ws127{word-spacing:2.106000px;}
.wsbd{word-spacing:2.182356px;}
.ws24{word-spacing:2.211697px;}
.wsb5{word-spacing:2.260512px;}
.ws5e{word-spacing:2.271473px;}
.wsa6{word-spacing:2.272536px;}
.ws35{word-spacing:2.331248px;}
.wscc{word-spacing:2.332656px;}
.ws36{word-spacing:2.391024px;}
.ws103{word-spacing:2.450800px;}
.ws9f{word-spacing:2.510575px;}
.wsa7{word-spacing:2.549088px;}
.wsaa{word-spacing:2.573136px;}
.ws121{word-spacing:2.689902px;}
.ws5d{word-spacing:2.809453px;}
.ws34{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.wsdc{word-spacing:2.927844px;}
.ws108{word-spacing:2.958912px;}
.wsd4{word-spacing:3.006000px;}
.wsf6{word-spacing:3.029400px;}
.wsf5{word-spacing:3.067200px;}
.ws120{word-spacing:3.108331px;}
.ws19{word-spacing:3.120307px;}
.wsd5{word-spacing:3.138264px;}
.wsa1{word-spacing:3.168107px;}
.ws16c{word-spacing:3.174106px;}
.ws1f{word-spacing:3.219667px;}
.ws15a{word-spacing:3.222298px;}
.ws154{word-spacing:3.222854px;}
.ws169{word-spacing:3.224650px;}
.ws14b{word-spacing:3.225110px;}
.ws15c{word-spacing:3.226810px;}
.ws16a{word-spacing:3.226963px;}
.ws151{word-spacing:3.227846px;}
.ws11f{word-spacing:3.227882px;}
.ws14c{word-spacing:3.227904px;}
.wse2{word-spacing:3.264516px;}
.ws150{word-spacing:3.281702px;}
.ws2a{word-spacing:3.287658px;}
.ws149{word-spacing:3.335501px;}
.wsca{word-spacing:3.342672px;}
.wsf9{word-spacing:3.369600px;}
.ws14f{word-spacing:3.389299px;}
.wsf8{word-spacing:3.391200px;}
.ws39{word-spacing:3.407209px;}
.ws2c{word-spacing:3.466985px;}
.ws14a{word-spacing:3.496896px;}
.ws2e{word-spacing:3.586536px;}
.ws29{word-spacing:3.646312px;}
.ws18{word-spacing:3.658291px;}
.ws124{word-spacing:3.753000px;}
.ws125{word-spacing:3.785400px;}
.ws51{word-spacing:3.945190px;}
.ws126{word-spacing:3.969000px;}
.ws15e{word-spacing:3.981082px;}
.ws114{word-spacing:4.022028px;}
.ws87{word-spacing:4.034052px;}
.wscb{word-spacing:4.094172px;}
.ws175{word-spacing:4.142477px;}
.ws16{word-spacing:4.196275px;}
.ws3c{word-spacing:4.244068px;}
.wsba{word-spacing:4.412808px;}
.ws104{word-spacing:4.423394px;}
.wsbb{word-spacing:4.448880px;}
.ws3e{word-spacing:4.483170px;}
.ws170{word-spacing:4.572864px;}
.ws45{word-spacing:4.602721px;}
.wsb9{word-spacing:4.719420px;}
.ws14e{word-spacing:4.734259px;}
.ws102{word-spacing:4.782048px;}
.wse4{word-spacing:4.785552px;}
.ws163{word-spacing:4.788058px;}
.wse3{word-spacing:4.791564px;}
.wsf3{word-spacing:4.806000px;}
.ws132{word-spacing:4.821624px;}
.wsf4{word-spacing:4.849200px;}
.ws131{word-spacing:4.893768px;}
.ws8d{word-spacing:5.021150px;}
.ws15d{word-spacing:5.057050px;}
.ws7c{word-spacing:5.098176px;}
.wsc1{word-spacing:5.140702px;}
.wsce{word-spacing:5.182344px;}
.wscd{word-spacing:5.200380px;}
.ws90{word-spacing:5.439580px;}
.ws62{word-spacing:5.540400px;}
.ws61{word-spacing:5.556600px;}
.ws3f{word-spacing:5.559131px;}
.ws63{word-spacing:5.626800px;}
.ws16f{word-spacing:5.648832px;}
.ws86{word-spacing:5.783544px;}
.ws84{word-spacing:5.807592px;}
.ws17{word-spacing:5.810227px;}
.ws2d{word-spacing:5.858009px;}
.ws167{word-spacing:5.864026px;}
.ws85{word-spacing:5.921820px;}
.ws14d{word-spacing:5.971622px;}
.ws165{word-spacing:6.025421px;}
.ws11{word-spacing:6.067206px;}
.ws171{word-spacing:6.079219px;}
.ws12{word-spacing:6.150892px;}
.ws174{word-spacing:6.186816px;}
.ws55{word-spacing:6.216662px;}
.wsc9{word-spacing:6.282540px;}
.wsc0{word-spacing:6.336214px;}
.ws8c{word-spacing:6.395989px;}
.wsdf{word-spacing:6.589152px;}
.wsa3{word-spacing:6.591000px;}
.wsc8{word-spacing:6.607188px;}
.wse0{word-spacing:6.649272px;}
.ws101{word-spacing:6.754643px;}
.ws100{word-spacing:6.814418px;}
.ws13e{word-spacing:6.985944px;}
.wsa2{word-spacing:6.993745px;}
.ws16e{word-spacing:7.047590px;}
.wsbf{word-spacing:7.113296px;}
.ws173{word-spacing:7.160719px;}
.ws13f{word-spacing:7.202376px;}
.ws166{word-spacing:7.316582px;}
.ws115{word-spacing:7.629228px;}
.ws46{word-spacing:7.651277px;}
.ws82{word-spacing:7.767504px;}
.ws122{word-spacing:7.770828px;}
.ws83{word-spacing:7.785540px;}
.ws7f{word-spacing:8.440848px;}
.wsf{word-spacing:8.661460px;}
.ws12f{word-spacing:9.048060px;}
.ws112{word-spacing:9.072108px;}
.ws111{word-spacing:9.102168px;}
.wsab{word-spacing:9.186336px;}
.ws12e{word-spacing:9.222408px;}
.ws134{word-spacing:9.775512px;}
.ws133{word-spacing:9.853668px;}
.ws137{word-spacing:10.316592px;}
.ws138{word-spacing:10.484928px;}
.ws139{word-spacing:11.615184px;}
.ws13a{word-spacing:11.639232px;}
.ws67{word-spacing:12.246444px;}
.wse1{word-spacing:12.324600px;}
.ws88{word-spacing:13.034016px;}
.ws4c{word-spacing:14.107042px;}
.wsc4{word-spacing:14.458860px;}
.wsc3{word-spacing:14.549040px;}
.ws119{word-spacing:14.849640px;}
.ws118{word-spacing:14.861664px;}
.ws117{word-spacing:15.216372px;}
.ws116{word-spacing:15.246432px;}
.ws6{word-spacing:15.483541px;}
.ws4b{word-spacing:16.079636px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.wse{word-spacing:17.699504px;}
.ws164{word-spacing:18.022464px;}
.ws79{word-spacing:20.218356px;}
.ws7b{word-spacing:20.242404px;}
.ws7a{word-spacing:20.254428px;}
.wsf2{word-spacing:21.011400px;}
.wsf0{word-spacing:21.038400px;}
.wsf1{word-spacing:21.060000px;}
.wsac{word-spacing:22.388688px;}
.ws10{word-spacing:27.448877px;}
.ws4d{word-spacing:28.692288px;}
.ws72{word-spacing:113.260068px;}
.ws6b{word-spacing:135.570600px;}
.ws70{word-spacing:138.029508px;}
.ws69{word-spacing:160.724808px;}
.ws59{word-spacing:401.363155px;}
.wsb2{word-spacing:891.014472px;}
.wsb3{word-spacing:915.218784px;}
.ws9b{word-spacing:920.490624px;}
.ws9c{word-spacing:940.127040px;}
.wsb4{word-spacing:946.336896px;}
.ws9d{word-spacing:967.725619px;}
.wsb1{word-spacing:995.533092px;}
.ws9a{word-spacing:1008.173155px;}
.ws105{word-spacing:1021.739213px;}
._1c{margin-left:-161.067492px;}
._26{margin-left:-138.408264px;}
._1d{margin-left:-135.095652px;}
._29{margin-left:-112.448448px;}
._1f{margin-left:-25.496892px;}
._1e{margin-left:-19.496916px;}
._0{margin-left:-9.898906px;}
._16{margin-left:-7.770828px;}
._9{margin-left:-6.567769px;}
._8{margin-left:-4.949453px;}
._4{margin-left:-3.849538px;}
._3d{margin-left:-2.574921px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._1{width:2.996562px;}
._3c{width:4.064741px;}
._5{width:12.968986px;}
._6{width:14.273598px;}
._18{width:15.776404px;}
._a{width:17.542642px;}
._b{width:18.805493px;}
._13{width:20.451860px;}
._f{width:21.788352px;}
._e{width:23.039218px;}
._14{width:24.507996px;}
._d{width:26.285088px;}
._c{width:28.997338px;}
._10{width:30.014918px;}
._42{width:31.451167px;}
._7{width:32.637384px;}
._3e{width:34.012316px;}
._19{width:37.897730px;}
._22{width:39.432708px;}
._3b{width:40.822380px;}
._15{width:41.902696px;}
._21{width:45.071964px;}
._27{width:49.683168px;}
._17{width:51.055930px;}
._20{width:57.366504px;}
._28{width:59.398560px;}
._41{width:61.868160px;}
._25{width:63.360468px;}
._2a{width:66.035808px;}
._24{width:69.168060px;}
._23{width:88.713072px;}
._2e{width:226.652659px;}
._1b{width:235.952964px;}
._39{width:243.330163px;}
._32{width:256.779763px;}
._3a{width:261.998208px;}
._34{width:282.172608px;}
._33{width:288.736013px;}
._38{width:303.100186px;}
._36{width:307.565453px;}
._2f{width:323.274586px;}
._37{width:325.318925px;}
._35{width:342.749606px;}
._2b{width:345.493325px;}
._31{width:348.613632px;}
._30{width:383.797786px;}
._2d{width:426.836506px;}
._2c{width:448.624858px;}
._11{width:821.395587px;}
._40{width:2114.385588px;}
._1a{width:2138.507532px;}
._3f{width:2500.010700px;}
._12{width:2523.920700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,44,83);}
.fs7{font-size:35.865600px;}
.fse{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:141.755020px;}
.y1be{bottom:-678.473550px;}
.y17b{bottom:-573.785550px;}
.y1e0{bottom:-559.280550px;}
.y10f{bottom:-510.715050px;}
.y1f9{bottom:-493.401000px;}
.y184{bottom:-492.155550px;}
.y1f8{bottom:-476.030550px;}
.y183{bottom:-452.375850px;}
.y123{bottom:-444.291342px;}
.y1f7{bottom:-440.290911px;}
.y182{bottom:-435.005400px;}
.y122{bottom:-425.031900px;}
.y1f6{bottom:-421.031469px;}
.y181{bottom:-412.595400px;}
.y121{bottom:-405.862638px;}
.y1f5{bottom:-401.862207px;}
.y120{bottom:-386.603196px;}
.y1f4{bottom:-382.602765px;}
.y11f{bottom:-367.343754px;}
.ybb{bottom:-366.929550px;}
.y1f3{bottom:-363.433503px;}
.y11e{bottom:-348.174492px;}
.y1ce{bottom:-346.188177px;}
.y1f2{bottom:-344.174061px;}
.y13b{bottom:-333.505050px;}
.y11d{bottom:-328.915050px;}
.y1cd{bottom:-326.928735px;}
.y1f1{bottom:-324.914619px;}
.y1cc{bottom:-307.669293px;}
.y1f0{bottom:-305.745357px;}
.y11c{bottom:-290.035050px;}
.y1cb{bottom:-288.500031px;}
.y1ef{bottom:-286.485915px;}
.yd6{bottom:-286.103412px;}
.y156{bottom:-273.920235px;}
.y1ca{bottom:-269.240589px;}
.y11b{bottom:-268.975050px;}
.y1ee{bottom:-267.226473px;}
.yd5{bottom:-266.843970px;}
.y155{bottom:-254.660793px;}
.y1c9{bottom:-250.071327px;}
.y1ed{bottom:-248.057211px;}
.y11a{bottom:-248.005050px;}
.yd4{bottom:-247.584528px;}
.y154{bottom:-235.491531px;}
.y1c8{bottom:-230.811885px;}
.y1ec{bottom:-228.797769px;}
.yd3{bottom:-228.415266px;}
.y119{bottom:-226.945050px;}
.y153{bottom:-216.232089px;}
.y1c7{bottom:-211.552443px;}
.y1eb{bottom:-209.628507px;}
.yd2{bottom:-209.155824px;}
.y152{bottom:-196.972647px;}
.y118{bottom:-196.885050px;}
.y1c6{bottom:-192.381678px;}
.y1ea{bottom:-190.369065px;}
.yd1{bottom:-189.896382px;}
.y151{bottom:-177.803385px;}
.y1c5{bottom:-173.122236px;}
.y1e9{bottom:-171.109623px;}
.yd0{bottom:-170.727120px;}
.y18c{bottom:-161.336550px;}
.y117{bottom:-161.243433px;}
.y150{bottom:-158.543943px;}
.y1c4{bottom:-153.952974px;}
.y1e8{bottom:-151.938858px;}
.ycf{bottom:-151.467678px;}
.y116{bottom:-141.983991px;}
.y14f{bottom:-139.374681px;}
.y1e7{bottom:-132.679416px;}
.yce{bottom:-132.298416px;}
.y1c3{bottom:-130.193550px;}
.y115{bottom:-122.724549px;}
.y14e{bottom:-120.115239px;}
.y1e6{bottom:-113.510154px;}
.ycd{bottom:-113.038974px;}
.y114{bottom:-103.553784px;}
.y14d{bottom:-100.855797px;}
.y1c2{bottom:-93.473100px;}
.y1e5{bottom:-89.660550px;}
.ycc{bottom:-89.279550px;}
.y113{bottom:-84.294342px;}
.y195{bottom:-79.706550px;}
.y180{bottom:-77.974650px;}
.y14c{bottom:-77.185050px;}
.y1c1{bottom:-76.013550px;}
.y112{bottom:-65.034900px;}
.y17f{bottom:-60.785100px;}
.y1c0{bottom:-58.733550px;}
.y1e4{bottom:-53.030100px;}
.ycb{bottom:-52.560000px;}
.y17e{bottom:-43.325550px;}
.y14b{bottom:-40.464600px;}
.y194{bottom:-39.926850px;}
.y1bf{bottom:-36.322812px;}
.y1e3{bottom:-35.570550px;}
.yca{bottom:-35.189550px;}
.y111{bottom:-28.225050px;}
.y17d{bottom:-26.045550px;}
.y14a{bottom:-23.005050px;}
.y193{bottom:-22.556400px;}
.y1e2{bottom:-18.290550px;}
.yc9{bottom:-12.779550px;}
.y110{bottom:-5.815266px;}
.y17c{bottom:-3.636027px;}
.y149{bottom:-0.593718px;}
.y192{bottom:-0.146400px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y1e1{bottom:4.119000px;}
.y8{bottom:14.151273px;}
.y2{bottom:16.933071px;}
.y4a{bottom:31.890000px;}
.y171{bottom:90.022500px;}
.yf4{bottom:98.520000px;}
.y21{bottom:102.823500px;}
.y284{bottom:103.557000px;}
.yf5{bottom:103.945500px;}
.yb7{bottom:104.005500px;}
.y49{bottom:104.569500px;}
.y213{bottom:108.508500px;}
.y170{bottom:108.852000px;}
.y81{bottom:109.366500px;}
.yf3{bottom:117.349500px;}
.y137{bottom:118.444500px;}
.y20{bottom:120.711000px;}
.y283{bottom:120.817500px;}
.yb6{bottom:122.835000px;}
.y48{bottom:123.397500px;}
.y212{bottom:126.082500px;}
.y16f{bottom:127.681500px;}
.y80{bottom:128.196000px;}
.yf2{bottom:136.179000px;}
.y136{bottom:137.274000px;}
.y282{bottom:138.078000px;}
.y1f{bottom:138.600000px;}
.y249{bottom:140.230500px;}
.yb5{bottom:141.664500px;}
.y211{bottom:143.658000px;}
.y16e{bottom:146.511000px;}
.y47{bottom:146.710500px;}
.y7f{bottom:147.025500px;}
.yf1{bottom:155.008500px;}
.y281{bottom:155.338500px;}
.y135{bottom:156.103500px;}
.y1e{bottom:156.487500px;}
.y248{bottom:157.489500px;}
.yb4{bottom:160.494000px;}
.y210{bottom:161.232000px;}
.y16d{bottom:165.340500px;}
.y7e{bottom:165.855000px;}
.y280{bottom:172.599000px;}
.yf0{bottom:173.838000px;}
.y1d{bottom:174.375000px;}
.y247{bottom:174.750000px;}
.y134{bottom:174.933000px;}
.yb3{bottom:179.323500px;}
.y46{bottom:180.334500px;}
.y16c{bottom:184.170000px;}
.y7d{bottom:184.684500px;}
.y27f{bottom:189.858000px;}
.y246{bottom:192.010500px;}
.y1c{bottom:192.264000px;}
.yee{bottom:192.667500px;}
.y132{bottom:193.762500px;}
.y20f{bottom:196.738500px;}
.yef{bottom:198.091500px;}
.yb2{bottom:198.153000px;}
.y45{bottom:199.164000px;}
.y133{bottom:199.186500px;}
.y7c{bottom:203.514000px;}
.y1b3{bottom:206.334000px;}
.y27e{bottom:207.118500px;}
.y16b{bottom:207.483000px;}
.y245{bottom:209.271000px;}
.y1b{bottom:210.151500px;}
.yed{bottom:211.497000px;}
.y131{bottom:212.592000px;}
.y20e{bottom:215.568000px;}
.yb1{bottom:216.982500px;}
.y44{bottom:217.993500px;}
.y7b{bottom:222.343500px;}
.y27d{bottom:224.379000px;}
.y1b2{bottom:225.163500px;}
.y244{bottom:226.531500px;}
.y1a{bottom:228.039000px;}
.y130{bottom:231.421500px;}
.y20d{bottom:234.397500px;}
.yec{bottom:234.810000px;}
.yb0{bottom:235.812000px;}
.y43{bottom:236.823000px;}
.y16a{bottom:241.107000px;}
.y7a{bottom:241.173000px;}
.y27c{bottom:241.639500px;}
.y243{bottom:243.792000px;}
.y1b1{bottom:243.993000px;}
.y1dc{bottom:246.109500px;}
.y12f{bottom:250.251000px;}
.y20c{bottom:253.227000px;}
.yaf{bottom:254.641500px;}
.y42{bottom:255.652500px;}
.y27b{bottom:258.900000px;}
.y169{bottom:259.936500px;}
.y79{bottom:260.002500px;}
.y242{bottom:261.052500px;}
.y1b0{bottom:262.822500px;}
.y1db{bottom:264.939000px;}
.yeb{bottom:268.434000px;}
.y12e{bottom:269.080500px;}
.y20b{bottom:272.056500px;}
.yae{bottom:273.471000px;}
.y10b{bottom:273.919500px;}
.y41{bottom:274.482000px;}
.y27a{bottom:276.160500px;}
.y241{bottom:278.313000px;}
.y168{bottom:278.766000px;}
.y78{bottom:278.832000px;}
.y1af{bottom:281.652000px;}
.y1da{bottom:283.768500px;}
.yea{bottom:287.263500px;}
.y12d{bottom:287.910000px;}
.y20a{bottom:290.886000px;}
.yad{bottom:292.300500px;}
.y10a{bottom:292.747500px;}
.y40{bottom:293.311500px;}
.y279{bottom:293.421000px;}
.y240{bottom:295.572000px;}
.y167{bottom:297.595500px;}
.y77{bottom:297.661500px;}
.y1ae{bottom:300.481500px;}
.y1d9{bottom:302.598000px;}
.ye8{bottom:306.093000px;}
.y12c{bottom:306.739500px;}
.y19{bottom:307.299000px;}
.y188{bottom:308.610000px;}
.y209{bottom:309.715500px;}
.y278{bottom:310.681500px;}
.yac{bottom:311.130000px;}
.ye9{bottom:311.517000px;}
.y109{bottom:311.577000px;}
.y3f{bottom:312.141000px;}
.y23f{bottom:312.832500px;}
.y166{bottom:316.425000px;}
.y76{bottom:316.491000px;}
.y1ad{bottom:319.311000px;}
.y1d8{bottom:321.427500px;}
.ye7{bottom:324.922500px;}
.y18{bottom:325.186500px;}
.y12b{bottom:325.569000px;}
.y187{bottom:327.843000px;}
.y277{bottom:327.940500px;}
.y208{bottom:328.545000px;}
.y23e{bottom:330.093000px;}
.y108{bottom:330.406500px;}
.y3e{bottom:330.970500px;}
.yab{bottom:334.441500px;}
.y191{bottom:334.474350px;}
.y165{bottom:335.254500px;}
.y75{bottom:335.320500px;}
.y1ac{bottom:338.140500px;}
.y1d7{bottom:340.257000px;}
.y17{bottom:343.074000px;}
.y12a{bottom:344.398500px;}
.y276{bottom:345.201000px;}
.y186{bottom:347.076000px;}
.y23d{bottom:347.353500px;}
.y207{bottom:347.374500px;}
.ye6{bottom:348.234000px;}
.y107{bottom:349.236000px;}
.y3d{bottom:349.800000px;}
.y190{bottom:351.663900px;}
.y164{bottom:354.084000px;}
.y74{bottom:354.150000px;}
.y1ab{bottom:356.970000px;}
.y1d6{bottom:359.086500px;}
.y16{bottom:360.963000px;}
.y275{bottom:362.461500px;}
.y23c{bottom:364.614000px;}
.y206{bottom:366.204000px;}
.y185{bottom:366.309000px;}
.yaa{bottom:368.065500px;}
.y3c{bottom:368.629500px;}
.y18f{bottom:369.123450px;}
.y163{bottom:372.912000px;}
.y73{bottom:372.979500px;}
.y1aa{bottom:375.799500px;}
.y1d5{bottom:377.916000px;}
.y274{bottom:379.722000px;}
.y23b{bottom:381.874500px;}
.y205{bottom:385.033500px;}
.y18e{bottom:386.403450px;}
.ya9{bottom:386.895000px;}
.y3b{bottom:387.459000px;}
.y178{bottom:388.738500px;}
.y129{bottom:389.860500px;}
.ye5{bottom:390.558000px;}
.y162{bottom:391.741500px;}
.y72{bottom:391.809000px;}
.y1a9{bottom:394.629000px;}
.y1d4{bottom:396.745500px;}
.y273{bottom:396.982500px;}
.y15{bottom:399.024000px;}
.y23a{bottom:399.135000px;}
.y204{bottom:403.861500px;}
.ya8{bottom:405.724500px;}
.y3a{bottom:406.288500px;}
.ye4{bottom:406.996500px;}
.y18d{bottom:408.812973px;}
.y161{bottom:410.571000px;}
.y71{bottom:410.638500px;}
.y1a8{bottom:413.458500px;}
.y128{bottom:413.500500px;}
.y272{bottom:414.243000px;}
.y1d3{bottom:415.575000px;}
.y239{bottom:416.395500px;}
.y14{bottom:416.913000px;}
.y203{bottom:422.691000px;}
.ye3{bottom:423.435000px;}
.ya7{bottom:424.554000px;}
.y39{bottom:425.118000px;}
.y160{bottom:429.400500px;}
.y70{bottom:429.468000px;}
.y271{bottom:431.503500px;}
.y1a7{bottom:432.288000px;}
.y238{bottom:433.656000px;}
.y13{bottom:434.800500px;}
.y127{bottom:437.142000px;}
.y1d2{bottom:438.888000px;}
.ye2{bottom:439.873500px;}
.y202{bottom:441.520500px;}
.ya6{bottom:443.383500px;}
.y38{bottom:443.947500px;}
.y15f{bottom:448.230000px;}
.y6f{bottom:448.297500px;}
.y270{bottom:448.764000px;}
.y237{bottom:450.915000px;}
.y1a6{bottom:451.117500px;}
.y1bd{bottom:455.527035px;}
.ye1{bottom:456.312000px;}
.y201{bottom:460.350000px;}
.y126{bottom:460.977000px;}
.ya5{bottom:462.213000px;}
.y37{bottom:462.777000px;}
.y1bc{bottom:465.336450px;}
.y26f{bottom:466.024500px;}
.y15e{bottom:467.059500px;}
.y6e{bottom:467.127000px;}
.y236{bottom:468.175500px;}
.y1d1{bottom:469.315500px;}
.y1a5{bottom:469.947000px;}
.y12{bottom:470.622000px;}
.ye0{bottom:472.750500px;}
.y200{bottom:479.179500px;}
.ya4{bottom:481.042500px;}
.y36{bottom:481.606500px;}
.y26e{bottom:483.283500px;}
.yc8{bottom:483.751116px;}
.y235{bottom:485.436000px;}
.y15d{bottom:485.889000px;}
.y6d{bottom:485.956500px;}
.y1d0{bottom:488.547000px;}
.y1a4{bottom:488.775000px;}
.ydf{bottom:489.189000px;}
.y125{bottom:492.790500px;}
.y1ff{bottom:498.009000px;}
.ya3{bottom:499.872000px;}
.y26d{bottom:500.544000px;}
.y234{bottom:502.696500px;}
.yc7{bottom:503.910855px;}
.y15c{bottom:504.718500px;}
.y6c{bottom:504.786000px;}
.y35{bottom:504.918000px;}
.yde{bottom:505.627500px;}
.y11{bottom:506.442000px;}
.y1a3{bottom:507.604500px;}
.y1cf{bottom:507.780000px;}
.y148{bottom:515.196804px;}
.y1fe{bottom:516.838500px;}
.y26c{bottom:517.804500px;}
.ya2{bottom:518.701500px;}
.y233{bottom:519.957000px;}
.y124{bottom:522.484500px;}
.y15b{bottom:523.548000px;}
.y6b{bottom:523.615500px;}
.yc6{bottom:524.160774px;}
.y10{bottom:524.329500px;}
.ydc{bottom:529.267500px;}
.y1bb{bottom:530.209500px;}
.y1a2{bottom:530.917500px;}
.y147{bottom:534.456246px;}
.y26b{bottom:535.065000px;}
.y232{bottom:537.217500px;}
.ydb{bottom:537.486000px;}
.ya1{bottom:537.531000px;}
.y1fd{bottom:540.151500px;}
.yf{bottom:542.218500px;}
.y15a{bottom:542.377500px;}
.y6a{bottom:542.445000px;}
.yc5{bottom:544.410693px;}
.y10c{bottom:544.914000px;}
.ydd{bottom:545.706000px;}
.y26a{bottom:552.325500px;}
.y146{bottom:553.715688px;}
.y231{bottom:554.478000px;}
.ya0{bottom:556.360500px;}
.ye{bottom:560.106000px;}
.y17a{bottom:560.215035px;}
.y69{bottom:561.274500px;}
.y1a1{bottom:564.541500px;}
.yc4{bottom:564.660612px;}
.y159{bottom:565.690500px;}
.y269{bottom:569.586000px;}
.y179{bottom:570.024450px;}
.y1fc{bottom:570.579000px;}
.y230{bottom:571.738500px;}
.y145{bottom:572.888118px;}
.y1df{bottom:574.720035px;}
.y9f{bottom:575.190000px;}
.yda{bottom:577.326000px;}
.yd{bottom:577.993500px;}
.y34{bottom:580.068000px;}
.y68{bottom:580.104000px;}
.y1a0{bottom:583.371000px;}
.y1de{bottom:584.529450px;}
.yc3{bottom:584.910531px;}
.y268{bottom:586.846500px;}
.y22e{bottom:588.997500px;}
.y22f{bottom:588.999000px;}
.y1fb{bottom:589.812000px;}
.y144{bottom:592.147560px;}
.y9e{bottom:594.019500px;}
.yc{bottom:595.882500px;}
.y158{bottom:596.118000px;}
.yd9{bottom:596.559000px;}
.y67{bottom:598.932000px;}
.y19f{bottom:602.200500px;}
.y267{bottom:604.107000px;}
.yc2{bottom:605.160450px;}
.y22d{bottom:606.258000px;}
.y1fa{bottom:609.045000px;}
.y143{bottom:611.407002px;}
.y9d{bottom:612.849000px;}
.yb{bottom:613.770000px;}
.y157{bottom:615.351000px;}
.y33{bottom:617.458500px;}
.y66{bottom:617.761500px;}
.y19e{bottom:621.030000px;}
.y266{bottom:621.366000px;}
.y10e{bottom:623.285535px;}
.y22c{bottom:623.518500px;}
.yc1{bottom:625.410450px;}
.y142{bottom:630.577767px;}
.y1dd{bottom:631.474500px;}
.ya{bottom:631.657500px;}
.y9c{bottom:631.678500px;}
.y10d{bottom:633.094950px;}
.yd8{bottom:635.218500px;}
.y65{bottom:636.591000px;}
.y32{bottom:636.915000px;}
.y106{bottom:637.102500px;}
.y138{bottom:637.780500px;}
.y265{bottom:638.626500px;}
.y19d{bottom:639.859500px;}
.y22b{bottom:640.779000px;}
.ybf{bottom:646.471332px;}
.y141{bottom:649.837209px;}
.y9b{bottom:650.508000px;}
.y7{bottom:654.028555px;}
.yd7{bottom:654.451500px;}
.y64{bottom:655.420500px;}
.y264{bottom:655.887000px;}
.y31{bottom:656.373000px;}
.ybe{bottom:656.550450px;}
.y22a{bottom:658.039500px;}
.y19c{bottom:658.689000px;}
.yc0{bottom:666.721251px;}
.y140{bottom:669.007974px;}
.y9a{bottom:669.337500px;}
.y263{bottom:673.147500px;}
.y63{bottom:674.250000px;}
.y229{bottom:675.300000px;}
.y30{bottom:675.829500px;}
.yb8{bottom:676.881000px;}
.y19b{bottom:677.518500px;}
.y99{bottom:688.167000px;}
.y13f{bottom:688.267416px;}
.y262{bottom:690.408000px;}
.y228{bottom:692.560500px;}
.y62{bottom:693.079500px;}
.y105{bottom:693.591000px;}
.y2f{bottom:695.286000px;}
.y19a{bottom:696.348000px;}
.ybd{bottom:696.690000px;}
.y98{bottom:706.996500px;}
.y13e{bottom:707.526858px;}
.y261{bottom:707.668500px;}
.y227{bottom:709.821000px;}
.y61{bottom:711.909000px;}
.y104{bottom:712.420500px;}
.ybc{bottom:714.060450px;}
.y2e{bottom:714.744000px;}
.y199{bottom:715.177500px;}
.y260{bottom:724.929000px;}
.y97{bottom:725.826000px;}
.y13d{bottom:726.696120px;}
.y226{bottom:727.081500px;}
.y60{bottom:730.738500px;}
.y103{bottom:731.250000px;}
.y2d{bottom:734.200500px;}
.y198{bottom:738.490500px;}
.y25f{bottom:742.189500px;}
.y225{bottom:744.340500px;}
.y96{bottom:744.655500px;}
.y13c{bottom:745.955562px;}
.y5f{bottom:749.568000px;}
.y102{bottom:750.079500px;}
.y2c{bottom:753.658500px;}
.y25e{bottom:759.450000px;}
.y224{bottom:761.601000px;}
.y95{bottom:763.485000px;}
.yba{bottom:767.071035px;}
.y5e{bottom:768.397500px;}
.y197{bottom:768.918000px;}
.y2b{bottom:773.115000px;}
.y25d{bottom:776.709000px;}
.yb9{bottom:776.880450px;}
.y223{bottom:778.861500px;}
.y94{bottom:782.314500px;}
.y5d{bottom:787.227000px;}
.y196{bottom:788.149500px;}
.y2a{bottom:792.571500px;}
.y25c{bottom:793.969500px;}
.y222{bottom:796.122000px;}
.y13a{bottom:800.495535px;}
.y101{bottom:801.144000px;}
.y93{bottom:805.626000px;}
.y5c{bottom:806.056500px;}
.y139{bottom:810.304950px;}
.y189{bottom:810.579000px;}
.y25b{bottom:811.230000px;}
.y29{bottom:812.029500px;}
.y221{bottom:813.382500px;}
.y100{bottom:819.972000px;}
.y5b{bottom:824.886000px;}
.y25a{bottom:828.490500px;}
.y220{bottom:830.643000px;}
.y28{bottom:831.486000px;}
.yff{bottom:838.801500px;}
.y92{bottom:839.250000px;}
.y5a{bottom:843.715500px;}
.y259{bottom:845.751000px;}
.y21f{bottom:847.903500px;}
.yfe{bottom:857.631000px;}
.y91{bottom:858.079500px;}
.y59{bottom:862.545000px;}
.y258{bottom:863.011500px;}
.y21e{bottom:865.164000px;}
.y27{bottom:870.072000px;}
.y90{bottom:876.909000px;}
.y257{bottom:880.272000px;}
.yfd{bottom:880.944000px;}
.y58{bottom:881.374500px;}
.y21d{bottom:882.424500px;}
.y26{bottom:886.210500px;}
.y8f{bottom:893.008500px;}
.y8e{bottom:895.738500px;}
.y256{bottom:897.532500px;}
.y21c{bottom:899.683500px;}
.y57{bottom:900.204000px;}
.yfc{bottom:901.119000px;}
.y25{bottom:902.350500px;}
.y8d{bottom:914.568000px;}
.y254{bottom:914.791500px;}
.y255{bottom:914.793000px;}
.y21b{bottom:916.944000px;}
.y56{bottom:919.033500px;}
.y24{bottom:922.830000px;}
.y253{bottom:932.052000px;}
.y8b{bottom:933.397500px;}
.y23{bottom:934.629000px;}
.yfb{bottom:934.743000px;}
.y177{bottom:935.191500px;}
.y55{bottom:937.863000px;}
.y21a{bottom:938.688000px;}
.y8c{bottom:938.823000px;}
.y1ba{bottom:943.594500px;}
.y252{bottom:949.312500px;}
.y8a{bottom:952.227000px;}
.yfa{bottom:953.572500px;}
.y176{bottom:954.021000px;}
.y22{bottom:955.108500px;}
.y54{bottom:956.692500px;}
.y1b9{bottom:962.424000px;}
.y251{bottom:966.573000px;}
.y89{bottom:968.326500px;}
.y88{bottom:971.056500px;}
.y219{bottom:972.312000px;}
.yf9{bottom:972.402000px;}
.y18b{bottom:972.664035px;}
.y175{bottom:972.849000px;}
.y53{bottom:975.522000px;}
.y1b8{bottom:981.253500px;}
.y18a{bottom:982.473450px;}
.y250{bottom:983.833500px;}
.y87{bottom:989.886000px;}
.yf8{bottom:991.231500px;}
.y174{bottom:991.678500px;}
.y52{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y218{bottom:998.853000px;}
.y24f{bottom:1001.094000px;}
.y173{bottom:1010.508000px;}
.y51{bottom:1013.181000px;}
.y86{bottom:1013.199000px;}
.yf7{bottom:1014.543000px;}
.y217{bottom:1016.427000px;}
.y24e{bottom:1018.354500px;}
.y1b7{bottom:1026.715500px;}
.y172{bottom:1029.337500px;}
.y50{bottom:1032.010500px;}
.y85{bottom:1033.372500px;}
.y24d{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y216{bottom:1042.966500px;}
.yf6{bottom:1048.167000px;}
.y1b6{bottom:1050.357000px;}
.y4f{bottom:1050.840000px;}
.y24c{bottom:1052.875500px;}
.y215{bottom:1060.540500px;}
.y84{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4e{bottom:1069.669500px;}
.y24b{bottom:1070.134500px;}
.y1b5{bottom:1073.997000px;}
.y83{bottom:1085.826000px;}
.y214{bottom:1087.081500px;}
.y24a{bottom:1087.395000px;}
.y4d{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y82{bottom:1104.655500px;}
.y1b4{bottom:1106.137500px;}
.y4c{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4b{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.h14{height:26.461718px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h2c{height:31.336422px;}
.h13{height:33.072749px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h18{height:34.951465px;}
.h12{height:35.052500px;}
.h17{height:35.255391px;}
.h26{height:37.658880px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h1b{height:39.418945px;}
.h2b{height:39.434227px;}
.h1a{height:39.761719px;}
.h20{height:41.842920px;}
.h10{height:43.217759px;}
.h1e{height:43.269961px;}
.h11{height:43.516637px;}
.h4{height:43.815515px;}
.h19{height:43.886426px;}
.h1d{height:44.268047px;}
.h22{height:49.002344px;}
.h28{height:49.991558px;}
.h2{height:50.930649px;}
.h6{height:54.541601px;}
.h23{height:54.768749px;}
.h15{height:54.774749px;}
.h1f{height:71.776243px;}
.h5{height:77.792486px;}
.h1c{height:84.951251px;}
.h3{height:96.109904px;}
.h27{height:309.021000px;}
.h29{height:389.745000px;}
.h16{height:442.720500px;}
.h24{height:481.821000px;}
.h2a{height:488.127000px;}
.h25{height:522.813000px;}
.h21{height:574.687500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:192.612344px;}
.w9{width:389.745000px;}
.wa{width:441.457500px;}
.w7{width:466.054500px;}
.w5{width:536.059800px;}
.w6{width:573.265500px;}
.w8{width:749.848500px;}
.w4{width:761.200350px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xcf{left:-306.103500px;}
.xd6{left:-232.948500px;}
.xab{left:-203.938500px;}
.xb7{left:-197.001000px;}
.xbb{left:-165.141000px;}
.xd0{left:-110.533500px;}
.xa0{left:-94.993200px;}
.xd1{left:-78.672906px;}
.xd8{left:-37.378500px;}
.xc2{left:-21.048000px;}
.x76{left:-9.696150px;}
.xad{left:-8.369643px;}
.xd9{left:-5.517906px;}
.xb9{left:-1.431000px;}
.x0{left:0.000000px;}
.xc5{left:10.812000px;}
.x84{left:22.163850px;}
.xac{left:23.490951px;}
.x3{left:29.274117px;}
.xa1{left:47.656800px;}
.x1{left:54.000000px;}
.x2{left:60.720389px;}
.x75{left:65.857650px;}
.xc1{left:71.533500px;}
.x91{left:75.331500px;}
.x8e{left:78.693000px;}
.x92{left:80.239500px;}
.x85{left:85.890000px;}
.x90{left:90.508500px;}
.x8d{left:95.553000px;}
.x8f{left:99.426000px;}
.xa3{left:100.576206px;}
.x8c{left:104.469000px;}
.x88{left:114.186000px;}
.xa2{left:132.436800px;}
.x87{left:136.675500px;}
.x86{left:143.134500px;}
.xa5{left:161.866800px;}
.xa6{left:167.986800px;}
.xc4{left:174.522000px;}
.xa7{left:179.416800px;}
.x77{left:185.873850px;}
.x82{left:189.294183px;}
.x7e{left:192.984048px;}
.x83{left:195.324219px;}
.xa4{left:196.426800px;}
.x7f{left:200.903355px;}
.x81{left:206.754534px;}
.x7d{left:212.423850px;}
.x80{left:216.743472px;}
.x7c{left:222.323850px;}
.x78{left:233.123850px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x89{left:269.272500px;}
.x5{left:271.221000px;}
.x8{left:282.786000px;}
.x63{left:288.504000px;}
.x2e{left:291.315000px;}
.x64{left:295.975500px;}
.x2f{left:298.786500px;}
.x70{left:301.431000px;}
.x30{left:302.538000px;}
.xaf{left:308.122500px;}
.x7{left:309.442500px;}
.x9f{left:311.803500px;}
.xd2{left:313.473000px;}
.x65{left:314.662500px;}
.x11{left:315.930000px;}
.x31{left:317.482500px;}
.xca{left:319.030500px;}
.xd3{left:320.197500px;}
.x9c{left:322.275000px;}
.x12{left:323.403000px;}
.x4d{left:324.553500px;}
.x13{left:327.213000px;}
.xc8{left:329.991000px;}
.xbc{left:333.150000px;}
.x14{left:334.686000px;}
.x9d{left:338.043000px;}
.x1d{left:339.351000px;}
.x40{left:342.475500px;}
.xa8{left:349.146000px;}
.x1e{left:354.294000px;}
.xa9{left:364.324500px;}
.x9{left:374.025000px;}
.x4e{left:375.126000px;}
.xce{left:377.814000px;}
.x4f{left:379.594500px;}
.xa{left:381.496500px;}
.xd4{left:382.840500px;}
.xb{left:388.975500px;}
.xb0{left:391.500000px;}
.xd5{left:393.129000px;}
.x50{left:394.539000px;}
.xc{left:396.448500px;}
.x51{left:398.349000px;}
.xb1{left:399.717000px;}
.x41{left:407.301000px;}
.xcc{left:409.206000px;}
.x43{left:411.757500px;}
.x52{left:413.293500px;}
.x42{left:414.772500px;}
.x53{left:417.105000px;}
.x44{left:419.229000px;}
.xbd{left:423.307500px;}
.x95{left:424.755000px;}
.x6b{left:427.243500px;}
.x17{left:430.468500px;}
.x54{left:432.048000px;}
.x96{left:435.274500px;}
.x18{left:437.940000px;}
.x79{left:454.523265px;}
.x6c{left:467.032500px;}
.xd7{left:471.121329px;}
.xbe{left:472.332000px;}
.x6d{left:473.458500px;}
.x55{left:477.354000px;}
.xbf{left:481.591500px;}
.x56{left:492.298500px;}
.x57{left:495.960000px;}
.xda{left:501.474000px;}
.xdb{left:507.445500px;}
.x58{left:510.904500px;}
.xdc{left:514.264500px;}
.x28{left:516.825000px;}
.xdd{left:519.496500px;}
.xb8{left:522.815366px;}
.xcd{left:524.607000px;}
.x5d{left:529.771500px;}
.x29{left:531.768000px;}
.x2a{left:535.572000px;}
.x73{left:536.860500px;}
.x5e{left:544.716000px;}
.x7a{left:545.872599px;}
.x5f{left:548.376000px;}
.x2b{left:550.515000px;}
.x74{left:551.803500px;}
.x2c{left:554.319000px;}
.x60{left:563.320500px;}
.x8a{left:567.711000px;}
.xcb{left:568.806000px;}
.x1b{left:569.869500px;}
.x36{left:570.939000px;}
.xae{left:572.131377px;}
.x1c{left:577.341000px;}
.x37{left:578.412000px;}
.x67{left:580.030500px;}
.x8b{left:583.237500px;}
.xba{left:588.249000px;}
.x2d{left:591.813000px;}
.xb5{left:593.601000px;}
.x68{left:595.797000px;}
.x71{left:597.175500px;}
.xb6{left:603.891000px;}
.x9e{left:606.597000px;}
.x72{left:612.120000px;}
.x22{left:629.128500px;}
.x19{left:638.494500px;}
.x23{left:644.071500px;}
.xc6{left:646.213500px;}
.x24{left:647.883000px;}
.x7b{left:649.911762px;}
.x15{left:652.360500px;}
.x1a{left:653.437500px;}
.xc7{left:656.971500px;}
.x16{left:659.833500px;}
.xb2{left:661.110000px;}
.x25{left:662.826000px;}
.x26{left:666.637500px;}
.xb3{left:670.440000px;}
.x93{left:673.836000px;}
.x9a{left:676.191000px;}
.xb4{left:678.658500px;}
.x27{left:681.582000px;}
.x94{left:684.375000px;}
.x59{left:685.986000px;}
.x69{left:690.129000px;}
.x9b{left:691.959000px;}
.x6a{left:694.278000px;}
.xd{left:695.311500px;}
.xc3{left:698.768366px;}
.x5a{left:700.930500px;}
.xe{left:702.783000px;}
.x5b{left:704.740500px;}
.xc9{left:717.208500px;}
.x5c{left:719.685000px;}
.x61{left:722.182500px;}
.x38{left:723.196500px;}
.x49{left:724.917000px;}
.x39{left:730.668000px;}
.xde{left:732.408000px;}
.x3a{left:734.478000px;}
.x62{left:737.127000px;}
.x4a{left:739.860000px;}
.xc0{left:742.380000px;}
.x4b{left:743.671500px;}
.x97{left:747.411000px;}
.x3b{left:749.422500px;}
.x45{left:750.759000px;}
.x3c{left:753.232500px;}
.x98{left:757.566000px;}
.x4c{left:758.614500px;}
.x6e{left:764.118000px;}
.x46{left:765.703500px;}
.x3d{left:768.177000px;}
.x47{left:769.498500px;}
.x6f{left:771.591000px;}
.x3e{left:775.798500px;}
.x48{left:784.443000px;}
.xaa{left:788.296500px;}
.xdf{left:789.453000px;}
.x3f{left:790.743000px;}
.x99{left:792.241500px;}
.x32{left:796.327500px;}
.x1f{left:798.943500px;}
.xe0{left:800.515500px;}
.x66{left:805.498500px;}
.x33{left:811.272000px;}
.x20{left:813.886500px;}
.x21{left:817.698000px;}
.x34{left:818.893500px;}
.xf{left:825.169500px;}
.x10{left:832.642500px;}
.x35{left:833.838000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.226667pt;}
.v3{vertical-align:36.162848pt;}
.ls56{letter-spacing:-2.479616pt;}
.ls64{letter-spacing:-0.277888pt;}
.ls65{letter-spacing:-0.240480pt;}
.ls5d{letter-spacing:-0.168000pt;}
.ls3b{letter-spacing:-0.149632pt;}
.ls2f{letter-spacing:-0.133600pt;}
.ls2b{letter-spacing:-0.128256pt;}
.ls25{letter-spacing:-0.122912pt;}
.ls27{letter-spacing:-0.117568pt;}
.ls62{letter-spacing:-0.112224pt;}
.ls5e{letter-spacing:-0.110400pt;}
.ls26{letter-spacing:-0.106880pt;}
.ls47{letter-spacing:-0.101536pt;}
.ls46{letter-spacing:-0.096192pt;}
.ls63{letter-spacing:-0.090848pt;}
.ls3a{letter-spacing:-0.085504pt;}
.ls20{letter-spacing:-0.080864pt;}
.ls53{letter-spacing:-0.076608pt;}
.ls43{letter-spacing:-0.074816pt;}
.ls48{letter-spacing:-0.069472pt;}
.ls24{letter-spacing:-0.064128pt;}
.ls55{letter-spacing:-0.062400pt;}
.ls49{letter-spacing:-0.058784pt;}
.ls2a{letter-spacing:-0.053440pt;}
.ls22{letter-spacing:-0.048096pt;}
.ls21{letter-spacing:-0.043200pt;}
.ls3c{letter-spacing:-0.042752pt;}
.ls5f{letter-spacing:-0.038400pt;}
.ls2c{letter-spacing:-0.037408pt;}
.ls54{letter-spacing:-0.033600pt;}
.ls28{letter-spacing:-0.032064pt;}
.ls23{letter-spacing:-0.026720pt;}
.ls30{letter-spacing:-0.021376pt;}
.ls44{letter-spacing:-0.016032pt;}
.ls60{letter-spacing:-0.014400pt;}
.ls29{letter-spacing:-0.010688pt;}
.ls2e{letter-spacing:-0.005344pt;}
.ls2d{letter-spacing:-0.004800pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000387pt;}
.ls6b{letter-spacing:0.000711pt;}
.ls6a{letter-spacing:0.000921pt;}
.ls37{letter-spacing:0.001007pt;}
.ls70{letter-spacing:0.001552pt;}
.ls71{letter-spacing:0.001630pt;}
.ls68{letter-spacing:0.002262pt;}
.ls6c{letter-spacing:0.003525pt;}
.ls0{letter-spacing:0.003733pt;}
.ls69{letter-spacing:0.004267pt;}
.ls19{letter-spacing:0.004800pt;}
.ls1c{letter-spacing:0.005344pt;}
.ls13{letter-spacing:0.009600pt;}
.ls59{letter-spacing:0.010688pt;}
.ls33{letter-spacing:0.014400pt;}
.ls1f{letter-spacing:0.016032pt;}
.ls11{letter-spacing:0.019200pt;}
.ls17{letter-spacing:0.024000pt;}
.ls1b{letter-spacing:0.026720pt;}
.lsf{letter-spacing:0.029792pt;}
.ls58{letter-spacing:0.032064pt;}
.ls12{letter-spacing:0.033600pt;}
.ls1d{letter-spacing:0.037408pt;}
.ls4c{letter-spacing:0.038304pt;}
.ls5b{letter-spacing:0.038400pt;}
.ls15{letter-spacing:0.042752pt;}
.ls18{letter-spacing:0.043200pt;}
.ls5a{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.048096pt;}
.lsd{letter-spacing:0.051072pt;}
.ls4f{letter-spacing:0.052800pt;}
.ls35{letter-spacing:0.053440pt;}
.ls4e{letter-spacing:0.057600pt;}
.ls1e{letter-spacing:0.058784pt;}
.ls4a{letter-spacing:0.059584pt;}
.ls41{letter-spacing:0.064128pt;}
.ls36{letter-spacing:0.069472pt;}
.ls51{letter-spacing:0.072000pt;}
.ls16{letter-spacing:0.074816pt;}
.ls50{letter-spacing:0.076800pt;}
.ls5c{letter-spacing:0.081600pt;}
.ls1a{letter-spacing:0.085504pt;}
.ls3e{letter-spacing:0.090848pt;}
.ls34{letter-spacing:0.110400pt;}
.ls4d{letter-spacing:0.124800pt;}
.ls3d{letter-spacing:0.128256pt;}
.ls57{letter-spacing:0.129600pt;}
.ls3f{letter-spacing:0.138944pt;}
.ls10{letter-spacing:0.153216pt;}
.ls40{letter-spacing:0.158400pt;}
.lse{letter-spacing:0.161728pt;}
.ls4b{letter-spacing:0.170240pt;}
.lsb{letter-spacing:0.482502pt;}
.ls32{letter-spacing:0.487835pt;}
.ls31{letter-spacing:0.662839pt;}
.ls9{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls61{letter-spacing:2.639936pt;}
.ls1{letter-spacing:2.657067pt;}
.ls45{letter-spacing:6.161632pt;}
.ls4{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls6e{letter-spacing:11.881104pt;}
.ls66{letter-spacing:11.954133pt;}
.ls67{letter-spacing:11.959467pt;}
.ls38{letter-spacing:13.933762pt;}
.lsc{letter-spacing:15.941412pt;}
.ls39{letter-spacing:15.953067pt;}
.ls6d{letter-spacing:17.320617pt;}
.ls42{letter-spacing:17.852979pt;}
.ls6f{letter-spacing:18.303624pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ls52{letter-spacing:754.941536pt;}
.ws0{word-spacing:-98.031472pt;}
.wsbe{word-spacing:-53.440000pt;}
.ws4e{word-spacing:-13.283467pt;}
.ws97{word-spacing:-12.000000pt;}
.ws99{word-spacing:-11.955200pt;}
.wse8{word-spacing:-10.810240pt;}
.ws56{word-spacing:-10.801728pt;}
.ws32{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws8{word-spacing:-9.298400pt;}
.ws98{word-spacing:-8.000000pt;}
.wsdb{word-spacing:-3.136928pt;}
.ws12c{word-spacing:-3.115552pt;}
.ws4f{word-spacing:-2.975497pt;}
.ws42{word-spacing:-2.816095pt;}
.ws12b{word-spacing:-2.805600pt;}
.ws9e{word-spacing:-2.709827pt;}
.wsda{word-spacing:-2.698720pt;}
.wse9{word-spacing:-2.391040pt;}
.wsea{word-spacing:-2.199757pt;}
.ws92{word-spacing:-2.178489pt;}
.ws135{word-spacing:-2.142944pt;}
.ws136{word-spacing:-2.068128pt;}
.ws113{word-spacing:-2.041408pt;}
.wse6{word-spacing:-1.832992pt;}
.ws13d{word-spacing:-1.811616pt;}
.ws13c{word-spacing:-1.806272pt;}
.ws52{word-spacing:-1.753418pt;}
.ws141{word-spacing:-1.752832pt;}
.wse5{word-spacing:-1.742144pt;}
.ws140{word-spacing:-1.736800pt;}
.ws5{word-spacing:-1.696326pt;}
.ws1b{word-spacing:-1.625907pt;}
.wsc5{word-spacing:-1.560448pt;}
.ws5a{word-spacing:-1.540882pt;}
.ws48{word-spacing:-1.487748pt;}
.ws15b{word-spacing:-1.482445pt;}
.ws8a{word-spacing:-1.434614pt;}
.ws155{word-spacing:-1.338982pt;}
.wse7{word-spacing:-1.275213pt;}
.wsfd{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.wsfc{word-spacing:-1.168945pt;}
.ws91{word-spacing:-1.115811pt;}
.wsd3{word-spacing:-1.020704pt;}
.wsd2{word-spacing:-0.972608pt;}
.wsc2{word-spacing:-0.903276pt;}
.ws146{word-spacing:-0.883200pt;}
.wsb7{word-spacing:-0.881760pt;}
.ws145{word-spacing:-0.840000pt;}
.wsb6{word-spacing:-0.839008pt;}
.ws15f{word-spacing:-0.765133pt;}
.wsb8{word-spacing:-0.764192pt;}
.ws11e{word-spacing:-0.743874pt;}
.ws43{word-spacing:-0.637606pt;}
.ws12d{word-spacing:-0.603872pt;}
.ws153{word-spacing:-0.573850pt;}
.wsd1{word-spacing:-0.545088pt;}
.ws53{word-spacing:-0.531339pt;}
.ws76{word-spacing:-0.523200pt;}
.ws74{word-spacing:-0.504000pt;}
.wsd7{word-spacing:-0.489600pt;}
.wsd8{word-spacing:-0.480000pt;}
.ws49{word-spacing:-0.478205pt;}
.ws75{word-spacing:-0.475200pt;}
.ws4a{word-spacing:-0.425071pt;}
.ws2f{word-spacing:-0.371937pt;}
.ws78{word-spacing:-0.325984pt;}
.ws23{word-spacing:-0.318803pt;}
.wsd9{word-spacing:-0.304608pt;}
.ws65{word-spacing:-0.288576pt;}
.ws156{word-spacing:-0.286925pt;}
.ws26{word-spacing:-0.265669pt;}
.wseb{word-spacing:-0.239104pt;}
.wsef{word-spacing:-0.238336pt;}
.ws60{word-spacing:-0.234080pt;}
.ws10d{word-spacing:-0.229792pt;}
.ws68{word-spacing:-0.213760pt;}
.ws30{word-spacing:-0.212535pt;}
.wsec{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.wsaf{word-spacing:-0.153600pt;}
.ws1e{word-spacing:-0.143462pt;}
.wsee{word-spacing:-0.114912pt;}
.ws5f{word-spacing:-0.110656pt;}
.ws28{word-spacing:-0.106268pt;}
.ws123{word-spacing:-0.095642pt;}
.ws3b{word-spacing:-0.053134pt;}
.ws57{word-spacing:-0.047821pt;}
.ws13{word-spacing:-0.042507pt;}
.ws168{word-spacing:-0.024098pt;}
.ws159{word-spacing:-0.007415pt;}
.ws31{word-spacing:-0.003002pt;}
.ws7{word-spacing:-0.002487pt;}
.ws16d{word-spacing:-0.002082pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.000007pt;}
.ws66{word-spacing:0.037408pt;}
.wsfb{word-spacing:0.047821pt;}
.ws22{word-spacing:0.053134pt;}
.ws13b{word-spacing:0.069472pt;}
.ws89{word-spacing:0.074816pt;}
.ws160{word-spacing:0.075716pt;}
.ws6f{word-spacing:0.090848pt;}
.wsf7{word-spacing:0.091200pt;}
.ws58{word-spacing:0.095642pt;}
.ws10c{word-spacing:0.100800pt;}
.ws12a{word-spacing:0.101536pt;}
.ws20{word-spacing:0.106268pt;}
.wsad{word-spacing:0.106880pt;}
.ws6d{word-spacing:0.112224pt;}
.ws73{word-spacing:0.117568pt;}
.wsde{word-spacing:0.122912pt;}
.wsa5{word-spacing:0.124800pt;}
.ws10a{word-spacing:0.139200pt;}
.ws15{word-spacing:0.143462pt;}
.wsb0{word-spacing:0.144000pt;}
.ws64{word-spacing:0.148800pt;}
.ws77{word-spacing:0.153600pt;}
.wsa4{word-spacing:0.158400pt;}
.ws38{word-spacing:0.159402pt;}
.wsae{word-spacing:0.163200pt;}
.wsd6{word-spacing:0.176352pt;}
.ws9{word-spacing:0.185968pt;}
.ws6e{word-spacing:0.187040pt;}
.wsed{word-spacing:0.191283pt;}
.ws109{word-spacing:0.192000pt;}
.ws6c{word-spacing:0.197728pt;}
.ws6a{word-spacing:0.203072pt;}
.ws71{word-spacing:0.208416pt;}
.ws33{word-spacing:0.212535pt;}
.ws10b{word-spacing:0.220800pt;}
.ws1d{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws25{word-spacing:0.265669pt;}
.wsfa{word-spacing:0.286925pt;}
.ws37{word-spacing:0.318803pt;}
.ws16b{word-spacing:0.334746pt;}
.ws41{word-spacing:0.371937pt;}
.wsdd{word-spacing:0.416832pt;}
.ws40{word-spacing:0.425071pt;}
.ws142{word-spacing:0.427200pt;}
.ws107{word-spacing:0.430387pt;}
.ws144{word-spacing:0.432000pt;}
.ws143{word-spacing:0.470400pt;}
.ws158{word-spacing:0.526029pt;}
.ws8f{word-spacing:0.531339pt;}
.ws162{word-spacing:0.573850pt;}
.ws3a{word-spacing:0.584473pt;}
.wsd0{word-spacing:0.593184pt;}
.ws8b{word-spacing:0.659966pt;}
.ws106{word-spacing:0.669491pt;}
.wsa9{word-spacing:0.684032pt;}
.ws27{word-spacing:0.690740pt;}
.ws157{word-spacing:0.717312pt;}
.ws110{word-spacing:0.726784pt;}
.wscf{word-spacing:0.732128pt;}
.ws47{word-spacing:0.743874pt;}
.ws7d{word-spacing:0.753504pt;}
.ws152{word-spacing:0.765133pt;}
.wsa8{word-spacing:0.785568pt;}
.ws96{word-spacing:0.797008pt;}
.ws11d{word-spacing:0.812954pt;}
.ws5b{word-spacing:0.850142pt;}
.ws7e{word-spacing:0.855040pt;}
.wsfe{word-spacing:0.956410pt;}
.ws172{word-spacing:1.004237pt;}
.ws11c{word-spacing:1.052058pt;}
.ws130{word-spacing:1.052768pt;}
.ws54{word-spacing:1.062677pt;}
.ws21{word-spacing:1.115811pt;}
.ws50{word-spacing:1.168945pt;}
.ws148{word-spacing:1.195520pt;}
.ws8e{word-spacing:1.222079pt;}
.ws95{word-spacing:1.275213pt;}
.wsc7{word-spacing:1.309280pt;}
.ws1c{word-spacing:1.338982pt;}
.ws80{word-spacing:1.378752pt;}
.wsa0{word-spacing:1.381481pt;}
.ws11a{word-spacing:1.394784pt;}
.wsc6{word-spacing:1.405472pt;}
.ws81{word-spacing:1.410816pt;}
.ws11b{word-spacing:1.474944pt;}
.ws3d{word-spacing:1.487748pt;}
.ws1a{word-spacing:1.530266pt;}
.ws44{word-spacing:1.594016pt;}
.ws147{word-spacing:1.625907pt;}
.ws10e{word-spacing:1.672672pt;}
.wsff{word-spacing:1.700284pt;}
.wsbc{word-spacing:1.704736pt;}
.ws161{word-spacing:1.721549pt;}
.ws10f{word-spacing:1.726112pt;}
.ws94{word-spacing:1.753418pt;}
.ws129{word-spacing:1.776000pt;}
.wsa{word-spacing:1.785293pt;}
.ws128{word-spacing:1.800000pt;}
.ws93{word-spacing:1.806551pt;}
.ws5c{word-spacing:1.859685pt;}
.ws127{word-spacing:1.872000pt;}
.wsbd{word-spacing:1.939872pt;}
.ws24{word-spacing:1.965953pt;}
.wsb5{word-spacing:2.009344pt;}
.ws5e{word-spacing:2.019087pt;}
.wsa6{word-spacing:2.020032pt;}
.ws35{word-spacing:2.072221pt;}
.wscc{word-spacing:2.073472pt;}
.ws36{word-spacing:2.125355pt;}
.ws103{word-spacing:2.178489pt;}
.ws9f{word-spacing:2.231622pt;}
.wsa7{word-spacing:2.265856pt;}
.wsaa{word-spacing:2.287232pt;}
.ws121{word-spacing:2.391024pt;}
.ws5d{word-spacing:2.497292pt;}
.ws34{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.wsdc{word-spacing:2.602528pt;}
.ws108{word-spacing:2.630144pt;}
.wsd4{word-spacing:2.672000pt;}
.wsf6{word-spacing:2.692800pt;}
.wsf5{word-spacing:2.726400pt;}
.ws120{word-spacing:2.762961pt;}
.ws19{word-spacing:2.773606pt;}
.wsd5{word-spacing:2.789568pt;}
.wsa1{word-spacing:2.816095pt;}
.ws16c{word-spacing:2.821427pt;}
.ws1f{word-spacing:2.861926pt;}
.ws15a{word-spacing:2.864265pt;}
.ws154{word-spacing:2.864759pt;}
.ws169{word-spacing:2.866355pt;}
.ws14b{word-spacing:2.866765pt;}
.ws15c{word-spacing:2.868275pt;}
.ws16a{word-spacing:2.868412pt;}
.ws151{word-spacing:2.869197pt;}
.ws11f{word-spacing:2.869229pt;}
.ws14c{word-spacing:2.869248pt;}
.wse2{word-spacing:2.901792pt;}
.ws150{word-spacing:2.917069pt;}
.ws2a{word-spacing:2.922363pt;}
.ws149{word-spacing:2.964890pt;}
.wsca{word-spacing:2.971264pt;}
.wsf9{word-spacing:2.995200pt;}
.ws14f{word-spacing:3.012710pt;}
.wsf8{word-spacing:3.014400pt;}
.ws39{word-spacing:3.028630pt;}
.ws2c{word-spacing:3.081764pt;}
.ws14a{word-spacing:3.108352pt;}
.ws2e{word-spacing:3.188032pt;}
.ws29{word-spacing:3.241166pt;}
.ws18{word-spacing:3.251814pt;}
.ws124{word-spacing:3.336000pt;}
.ws125{word-spacing:3.364800pt;}
.ws51{word-spacing:3.506835pt;}
.ws126{word-spacing:3.528000pt;}
.ws15e{word-spacing:3.538739pt;}
.ws114{word-spacing:3.575136pt;}
.ws87{word-spacing:3.585824pt;}
.wscb{word-spacing:3.639264pt;}
.ws175{word-spacing:3.682202pt;}
.ws16{word-spacing:3.730022pt;}
.ws3c{word-spacing:3.772505pt;}
.wsba{word-spacing:3.922496pt;}
.ws104{word-spacing:3.931906pt;}
.wsbb{word-spacing:3.954560pt;}
.ws3e{word-spacing:3.985040pt;}
.ws170{word-spacing:4.064768pt;}
.ws45{word-spacing:4.091308pt;}
.wsb9{word-spacing:4.195040pt;}
.ws14e{word-spacing:4.208230pt;}
.ws102{word-spacing:4.250709pt;}
.wse4{word-spacing:4.253824pt;}
.ws163{word-spacing:4.256051pt;}
.wse3{word-spacing:4.259168pt;}
.wsf3{word-spacing:4.272000pt;}
.ws132{word-spacing:4.285888pt;}
.wsf4{word-spacing:4.310400pt;}
.ws131{word-spacing:4.350016pt;}
.ws8d{word-spacing:4.463245pt;}
.ws15d{word-spacing:4.495155pt;}
.ws7c{word-spacing:4.531712pt;}
.wsc1{word-spacing:4.569513pt;}
.wsce{word-spacing:4.606528pt;}
.wscd{word-spacing:4.622560pt;}
.ws90{word-spacing:4.835182pt;}
.ws62{word-spacing:4.924800pt;}
.ws61{word-spacing:4.939200pt;}
.ws3f{word-spacing:4.941450pt;}
.ws63{word-spacing:5.001600pt;}
.ws16f{word-spacing:5.021184pt;}
.ws86{word-spacing:5.140928pt;}
.ws84{word-spacing:5.162304pt;}
.ws17{word-spacing:5.164646pt;}
.ws2d{word-spacing:5.207119pt;}
.ws167{word-spacing:5.212467pt;}
.ws85{word-spacing:5.263840pt;}
.ws14d{word-spacing:5.308109pt;}
.ws165{word-spacing:5.355930pt;}
.ws11{word-spacing:5.393072pt;}
.ws171{word-spacing:5.403750pt;}
.ws12{word-spacing:5.467459pt;}
.ws174{word-spacing:5.499392pt;}
.ws55{word-spacing:5.525922pt;}
.wsc9{word-spacing:5.584480pt;}
.wsc0{word-spacing:5.632190pt;}
.ws8c{word-spacing:5.685324pt;}
.wsdf{word-spacing:5.857024pt;}
.wsa3{word-spacing:5.858667pt;}
.wsc8{word-spacing:5.873056pt;}
.wse0{word-spacing:5.910464pt;}
.ws101{word-spacing:6.004127pt;}
.ws100{word-spacing:6.057261pt;}
.ws13e{word-spacing:6.209728pt;}
.wsa2{word-spacing:6.216662pt;}
.ws16e{word-spacing:6.264525pt;}
.wsbf{word-spacing:6.322930pt;}
.ws173{word-spacing:6.365084pt;}
.ws13f{word-spacing:6.402112pt;}
.ws166{word-spacing:6.503629pt;}
.ws115{word-spacing:6.781536pt;}
.ws46{word-spacing:6.801135pt;}
.ws82{word-spacing:6.904448pt;}
.ws122{word-spacing:6.907403pt;}
.ws83{word-spacing:6.920480pt;}
.ws7f{word-spacing:7.502976pt;}
.wsf{word-spacing:7.699075pt;}
.ws12f{word-spacing:8.042720pt;}
.ws112{word-spacing:8.064096pt;}
.ws111{word-spacing:8.090816pt;}
.wsab{word-spacing:8.165632pt;}
.ws12e{word-spacing:8.197696pt;}
.ws134{word-spacing:8.689344pt;}
.ws133{word-spacing:8.758816pt;}
.ws137{word-spacing:9.170304pt;}
.ws138{word-spacing:9.319936pt;}
.ws139{word-spacing:10.324608pt;}
.ws13a{word-spacing:10.345984pt;}
.ws67{word-spacing:10.885728pt;}
.wse1{word-spacing:10.955200pt;}
.ws88{word-spacing:11.585792pt;}
.ws4c{word-spacing:12.539593pt;}
.wsc4{word-spacing:12.852320pt;}
.wsc3{word-spacing:12.932480pt;}
.ws119{word-spacing:13.199680pt;}
.ws118{word-spacing:13.210368pt;}
.ws117{word-spacing:13.525664pt;}
.ws116{word-spacing:13.552384pt;}
.ws6{word-spacing:13.763148pt;}
.ws4b{word-spacing:14.293010pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.wse{word-spacing:15.732893pt;}
.ws164{word-spacing:16.019968pt;}
.ws79{word-spacing:17.971872pt;}
.ws7b{word-spacing:17.993248pt;}
.ws7a{word-spacing:18.003936pt;}
.wsf2{word-spacing:18.676800pt;}
.wsf0{word-spacing:18.700800pt;}
.wsf1{word-spacing:18.720000pt;}
.wsac{word-spacing:19.901056pt;}
.ws10{word-spacing:24.399002pt;}
.ws4d{word-spacing:25.504256pt;}
.ws72{word-spacing:100.675616pt;}
.ws6b{word-spacing:120.507200pt;}
.ws70{word-spacing:122.692896pt;}
.ws69{word-spacing:142.866496pt;}
.ws59{word-spacing:356.767249pt;}
.wsb2{word-spacing:792.012864pt;}
.wsb3{word-spacing:813.527808pt;}
.ws9b{word-spacing:818.213888pt;}
.ws9c{word-spacing:835.668480pt;}
.wsb4{word-spacing:841.188352pt;}
.ws9d{word-spacing:860.200550pt;}
.wsb1{word-spacing:884.918304pt;}
.ws9a{word-spacing:896.153916pt;}
.ws105{word-spacing:908.212634pt;}
._1c{margin-left:-143.171104pt;}
._26{margin-left:-123.029568pt;}
._1d{margin-left:-120.085024pt;}
._29{margin-left:-99.954176pt;}
._1f{margin-left:-22.663904pt;}
._1e{margin-left:-17.330592pt;}
._0{margin-left:-8.799027pt;}
._16{margin-left:-6.907403pt;}
._9{margin-left:-5.838017pt;}
._8{margin-left:-4.399514pt;}
._4{margin-left:-3.421811pt;}
._3d{margin-left:-2.288819pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._1{width:2.663611pt;}
._3c{width:3.613103pt;}
._5{width:11.527987pt;}
._6{width:12.687643pt;}
._18{width:14.023470pt;}
._a{width:15.593460pt;}
._b{width:16.715994pt;}
._13{width:18.179432pt;}
._f{width:19.367424pt;}
._e{width:20.479305pt;}
._14{width:21.784885pt;}
._d{width:23.364523pt;}
._c{width:25.775411pt;}
._10{width:26.679927pt;}
._42{width:27.956593pt;}
._7{width:29.011008pt;}
._3e{width:30.233170pt;}
._19{width:33.686871pt;}
._22{width:35.051296pt;}
._3b{width:36.286560pt;}
._15{width:37.246841pt;}
._21{width:40.063968pt;}
._27{width:44.162816pt;}
._17{width:45.383049pt;}
._20{width:50.992448pt;}
._28{width:52.798720pt;}
._41{width:54.993920pt;}
._25{width:56.320416pt;}
._2a{width:58.698496pt;}
._24{width:61.482720pt;}
._23{width:78.856064pt;}
._2e{width:201.469030pt;}
._1b{width:209.735968pt;}
._39{width:216.293478pt;}
._32{width:228.248678pt;}
._3a{width:232.887296pt;}
._34{width:250.820096pt;}
._33{width:256.654234pt;}
._38{width:269.422387pt;}
._36{width:273.391514pt;}
._2f{width:287.355187pt;}
._37{width:289.172378pt;}
._35{width:304.666317pt;}
._2b{width:307.105178pt;}
._31{width:309.878784pt;}
._30{width:341.153587pt;}
._2d{width:379.410227pt;}
._2c{width:398.777651pt;}
._11{width:730.129411pt;}
._40{width:1879.453856pt;}
._1a{width:1900.895584pt;}
._3f{width:2222.231733pt;}
._12{width:2243.485067pt;}
.fs7{font-size:31.880533pt;}
.fse{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:126.004462pt;}
.y1be{bottom:-603.087600pt;}
.y17b{bottom:-510.031600pt;}
.y1e0{bottom:-497.138267pt;}
.y10f{bottom:-453.968933pt;}
.y1f9{bottom:-438.578667pt;}
.y184{bottom:-437.471600pt;}
.y1f8{bottom:-423.138267pt;}
.y183{bottom:-402.111867pt;}
.y123{bottom:-394.925637pt;}
.y1f7{bottom:-391.369699pt;}
.y182{bottom:-386.671467pt;}
.y122{bottom:-377.806133pt;}
.y1f6{bottom:-374.250195pt;}
.y181{bottom:-366.751467pt;}
.y121{bottom:-360.766789pt;}
.y1f5{bottom:-357.210851pt;}
.y120{bottom:-343.647285pt;}
.y1f4{bottom:-340.091347pt;}
.y11f{bottom:-326.527781pt;}
.ybb{bottom:-326.159600pt;}
.y1f3{bottom:-323.052003pt;}
.y11e{bottom:-309.488437pt;}
.y1ce{bottom:-307.722824pt;}
.y1f2{bottom:-305.932499pt;}
.y13b{bottom:-296.448933pt;}
.y11d{bottom:-292.368933pt;}
.y1cd{bottom:-290.603320pt;}
.y1f1{bottom:-288.812995pt;}
.y1cc{bottom:-273.483816pt;}
.y1f0{bottom:-271.773651pt;}
.y11c{bottom:-257.808933pt;}
.y1cb{bottom:-256.444472pt;}
.y1ef{bottom:-254.654147pt;}
.yd6{bottom:-254.314144pt;}
.y156{bottom:-243.484653pt;}
.y1ca{bottom:-239.324968pt;}
.y11b{bottom:-239.088933pt;}
.y1ee{bottom:-237.534643pt;}
.yd5{bottom:-237.194640pt;}
.y155{bottom:-226.365149pt;}
.y1c9{bottom:-222.285624pt;}
.y1ed{bottom:-220.495299pt;}
.y11a{bottom:-220.448933pt;}
.yd4{bottom:-220.075136pt;}
.y154{bottom:-209.325805pt;}
.y1c8{bottom:-205.166120pt;}
.y1ec{bottom:-203.375795pt;}
.yd3{bottom:-203.035792pt;}
.y119{bottom:-201.728933pt;}
.y153{bottom:-192.206301pt;}
.y1c7{bottom:-188.046616pt;}
.y1eb{bottom:-186.336451pt;}
.yd2{bottom:-185.916288pt;}
.y152{bottom:-175.086797pt;}
.y118{bottom:-175.008933pt;}
.y1c6{bottom:-171.005936pt;}
.y1ea{bottom:-169.216947pt;}
.yd1{bottom:-168.796784pt;}
.y151{bottom:-158.047453pt;}
.y1c5{bottom:-153.886432pt;}
.y1e9{bottom:-152.097443pt;}
.yd0{bottom:-151.757440pt;}
.y18c{bottom:-143.410267pt;}
.y117{bottom:-143.327496pt;}
.y150{bottom:-140.927949pt;}
.y1c4{bottom:-136.847088pt;}
.y1e8{bottom:-135.056763pt;}
.ycf{bottom:-134.637936pt;}
.y116{bottom:-126.207992pt;}
.y14f{bottom:-123.888605pt;}
.y1e7{bottom:-117.937259pt;}
.yce{bottom:-117.598592pt;}
.y1c3{bottom:-115.727600pt;}
.y115{bottom:-109.088488pt;}
.y14e{bottom:-106.769101pt;}
.y1e6{bottom:-100.897915pt;}
.ycd{bottom:-100.479088pt;}
.y114{bottom:-92.047808pt;}
.y14d{bottom:-89.649597pt;}
.y1c2{bottom:-83.087200pt;}
.y1e5{bottom:-79.698267pt;}
.ycc{bottom:-79.359600pt;}
.y113{bottom:-74.928304pt;}
.y195{bottom:-70.850267pt;}
.y180{bottom:-69.310800pt;}
.y14c{bottom:-68.608933pt;}
.y1c1{bottom:-67.567600pt;}
.y112{bottom:-57.808800pt;}
.y17f{bottom:-54.031200pt;}
.y1c0{bottom:-52.207600pt;}
.y1e4{bottom:-47.137867pt;}
.ycb{bottom:-46.720000pt;}
.y17e{bottom:-38.511600pt;}
.y14b{bottom:-35.968533pt;}
.y194{bottom:-35.490533pt;}
.y1bf{bottom:-32.286944pt;}
.y1e3{bottom:-31.618267pt;}
.yca{bottom:-31.279600pt;}
.y111{bottom:-25.088933pt;}
.y17d{bottom:-23.151600pt;}
.y14a{bottom:-20.448933pt;}
.y193{bottom:-20.050133pt;}
.y1e2{bottom:-16.258267pt;}
.yc9{bottom:-11.359600pt;}
.y110{bottom:-5.169125pt;}
.y17c{bottom:-3.232024pt;}
.y149{bottom:-0.527749pt;}
.y192{bottom:-0.130133pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y1e1{bottom:3.661333pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:15.051618pt;}
.y4a{bottom:28.346667pt;}
.y171{bottom:80.020000pt;}
.yf4{bottom:87.573333pt;}
.y21{bottom:91.398667pt;}
.y284{bottom:92.050667pt;}
.yf5{bottom:92.396000pt;}
.yb7{bottom:92.449333pt;}
.y49{bottom:92.950667pt;}
.y213{bottom:96.452000pt;}
.y170{bottom:96.757333pt;}
.y81{bottom:97.214667pt;}
.yf3{bottom:104.310667pt;}
.y137{bottom:105.284000pt;}
.y20{bottom:107.298667pt;}
.y283{bottom:107.393333pt;}
.yb6{bottom:109.186667pt;}
.y48{bottom:109.686667pt;}
.y212{bottom:112.073333pt;}
.y16f{bottom:113.494667pt;}
.y80{bottom:113.952000pt;}
.yf2{bottom:121.048000pt;}
.y136{bottom:122.021333pt;}
.y282{bottom:122.736000pt;}
.y1f{bottom:123.200000pt;}
.y249{bottom:124.649333pt;}
.yb5{bottom:125.924000pt;}
.y211{bottom:127.696000pt;}
.y16e{bottom:130.232000pt;}
.y47{bottom:130.409333pt;}
.y7f{bottom:130.689333pt;}
.yf1{bottom:137.785333pt;}
.y281{bottom:138.078667pt;}
.y135{bottom:138.758667pt;}
.y1e{bottom:139.100000pt;}
.y248{bottom:139.990667pt;}
.yb4{bottom:142.661333pt;}
.y210{bottom:143.317333pt;}
.y16d{bottom:146.969333pt;}
.y7e{bottom:147.426667pt;}
.y280{bottom:153.421333pt;}
.yf0{bottom:154.522667pt;}
.y1d{bottom:155.000000pt;}
.y247{bottom:155.333333pt;}
.y134{bottom:155.496000pt;}
.yb3{bottom:159.398667pt;}
.y46{bottom:160.297333pt;}
.y16c{bottom:163.706667pt;}
.y7d{bottom:164.164000pt;}
.y27f{bottom:168.762667pt;}
.y246{bottom:170.676000pt;}
.y1c{bottom:170.901333pt;}
.yee{bottom:171.260000pt;}
.y132{bottom:172.233333pt;}
.y20f{bottom:174.878667pt;}
.yef{bottom:176.081333pt;}
.yb2{bottom:176.136000pt;}
.y45{bottom:177.034667pt;}
.y133{bottom:177.054667pt;}
.y7c{bottom:180.901333pt;}
.y1b3{bottom:183.408000pt;}
.y27e{bottom:184.105333pt;}
.y16b{bottom:184.429333pt;}
.y245{bottom:186.018667pt;}
.y1b{bottom:186.801333pt;}
.yed{bottom:187.997333pt;}
.y131{bottom:188.970667pt;}
.y20e{bottom:191.616000pt;}
.yb1{bottom:192.873333pt;}
.y44{bottom:193.772000pt;}
.y7b{bottom:197.638667pt;}
.y27d{bottom:199.448000pt;}
.y1b2{bottom:200.145333pt;}
.y244{bottom:201.361333pt;}
.y1a{bottom:202.701333pt;}
.y130{bottom:205.708000pt;}
.y20d{bottom:208.353333pt;}
.yec{bottom:208.720000pt;}
.yb0{bottom:209.610667pt;}
.y43{bottom:210.509333pt;}
.y16a{bottom:214.317333pt;}
.y7a{bottom:214.376000pt;}
.y27c{bottom:214.790667pt;}
.y243{bottom:216.704000pt;}
.y1b1{bottom:216.882667pt;}
.y1dc{bottom:218.764000pt;}
.y12f{bottom:222.445333pt;}
.y20c{bottom:225.090667pt;}
.yaf{bottom:226.348000pt;}
.y42{bottom:227.246667pt;}
.y27b{bottom:230.133333pt;}
.y169{bottom:231.054667pt;}
.y79{bottom:231.113333pt;}
.y242{bottom:232.046667pt;}
.y1b0{bottom:233.620000pt;}
.y1db{bottom:235.501333pt;}
.yeb{bottom:238.608000pt;}
.y12e{bottom:239.182667pt;}
.y20b{bottom:241.828000pt;}
.yae{bottom:243.085333pt;}
.y10b{bottom:243.484000pt;}
.y41{bottom:243.984000pt;}
.y27a{bottom:245.476000pt;}
.y241{bottom:247.389333pt;}
.y168{bottom:247.792000pt;}
.y78{bottom:247.850667pt;}
.y1af{bottom:250.357333pt;}
.y1da{bottom:252.238667pt;}
.yea{bottom:255.345333pt;}
.y12d{bottom:255.920000pt;}
.y20a{bottom:258.565333pt;}
.yad{bottom:259.822667pt;}
.y10a{bottom:260.220000pt;}
.y40{bottom:260.721333pt;}
.y279{bottom:260.818667pt;}
.y240{bottom:262.730667pt;}
.y167{bottom:264.529333pt;}
.y77{bottom:264.588000pt;}
.y1ae{bottom:267.094667pt;}
.y1d9{bottom:268.976000pt;}
.ye8{bottom:272.082667pt;}
.y12c{bottom:272.657333pt;}
.y19{bottom:273.154667pt;}
.y188{bottom:274.320000pt;}
.y209{bottom:275.302667pt;}
.y278{bottom:276.161333pt;}
.yac{bottom:276.560000pt;}
.ye9{bottom:276.904000pt;}
.y109{bottom:276.957333pt;}
.y3f{bottom:277.458667pt;}
.y23f{bottom:278.073333pt;}
.y166{bottom:281.266667pt;}
.y76{bottom:281.325333pt;}
.y1ad{bottom:283.832000pt;}
.y1d8{bottom:285.713333pt;}
.ye7{bottom:288.820000pt;}
.y18{bottom:289.054667pt;}
.y12b{bottom:289.394667pt;}
.y187{bottom:291.416000pt;}
.y277{bottom:291.502667pt;}
.y208{bottom:292.040000pt;}
.y23e{bottom:293.416000pt;}
.y108{bottom:293.694667pt;}
.y3e{bottom:294.196000pt;}
.yab{bottom:297.281333pt;}
.y191{bottom:297.310533pt;}
.y165{bottom:298.004000pt;}
.y75{bottom:298.062667pt;}
.y1ac{bottom:300.569333pt;}
.y1d7{bottom:302.450667pt;}
.y17{bottom:304.954667pt;}
.y12a{bottom:306.132000pt;}
.y276{bottom:306.845333pt;}
.y186{bottom:308.512000pt;}
.y23d{bottom:308.758667pt;}
.y207{bottom:308.777333pt;}
.ye6{bottom:309.541333pt;}
.y107{bottom:310.432000pt;}
.y3d{bottom:310.933333pt;}
.y190{bottom:312.590133pt;}
.y164{bottom:314.741333pt;}
.y74{bottom:314.800000pt;}
.y1ab{bottom:317.306667pt;}
.y1d6{bottom:319.188000pt;}
.y16{bottom:320.856000pt;}
.y275{bottom:322.188000pt;}
.y23c{bottom:324.101333pt;}
.y206{bottom:325.514667pt;}
.y185{bottom:325.608000pt;}
.yaa{bottom:327.169333pt;}
.y3c{bottom:327.670667pt;}
.y18f{bottom:328.109733pt;}
.y163{bottom:331.477333pt;}
.y73{bottom:331.537333pt;}
.y1aa{bottom:334.044000pt;}
.y1d5{bottom:335.925333pt;}
.y274{bottom:337.530667pt;}
.y23b{bottom:339.444000pt;}
.y205{bottom:342.252000pt;}
.y18e{bottom:343.469733pt;}
.ya9{bottom:343.906667pt;}
.y3b{bottom:344.408000pt;}
.y178{bottom:345.545333pt;}
.y129{bottom:346.542667pt;}
.ye5{bottom:347.162667pt;}
.y162{bottom:348.214667pt;}
.y72{bottom:348.274667pt;}
.y1a9{bottom:350.781333pt;}
.y1d4{bottom:352.662667pt;}
.y273{bottom:352.873333pt;}
.y15{bottom:354.688000pt;}
.y23a{bottom:354.786667pt;}
.y204{bottom:358.988000pt;}
.ya8{bottom:360.644000pt;}
.y3a{bottom:361.145333pt;}
.ye4{bottom:361.774667pt;}
.y18d{bottom:363.389309pt;}
.y161{bottom:364.952000pt;}
.y71{bottom:365.012000pt;}
.y1a8{bottom:367.518667pt;}
.y128{bottom:367.556000pt;}
.y272{bottom:368.216000pt;}
.y1d3{bottom:369.400000pt;}
.y239{bottom:370.129333pt;}
.y14{bottom:370.589333pt;}
.y203{bottom:375.725333pt;}
.ye3{bottom:376.386667pt;}
.ya7{bottom:377.381333pt;}
.y39{bottom:377.882667pt;}
.y160{bottom:381.689333pt;}
.y70{bottom:381.749333pt;}
.y271{bottom:383.558667pt;}
.y1a7{bottom:384.256000pt;}
.y238{bottom:385.472000pt;}
.y13{bottom:386.489333pt;}
.y127{bottom:388.570667pt;}
.y1d2{bottom:390.122667pt;}
.ye2{bottom:390.998667pt;}
.y202{bottom:392.462667pt;}
.ya6{bottom:394.118667pt;}
.y38{bottom:394.620000pt;}
.y15f{bottom:398.426667pt;}
.y6f{bottom:398.486667pt;}
.y270{bottom:398.901333pt;}
.y237{bottom:400.813333pt;}
.y1a6{bottom:400.993333pt;}
.y1bd{bottom:404.912920pt;}
.ye1{bottom:405.610667pt;}
.y201{bottom:409.200000pt;}
.y126{bottom:409.757333pt;}
.ya5{bottom:410.856000pt;}
.y37{bottom:411.357333pt;}
.y1bc{bottom:413.632400pt;}
.y26f{bottom:414.244000pt;}
.y15e{bottom:415.164000pt;}
.y6e{bottom:415.224000pt;}
.y236{bottom:416.156000pt;}
.y1d1{bottom:417.169333pt;}
.y1a5{bottom:417.730667pt;}
.y12{bottom:418.330667pt;}
.ye0{bottom:420.222667pt;}
.y200{bottom:425.937333pt;}
.ya4{bottom:427.593333pt;}
.y36{bottom:428.094667pt;}
.y26e{bottom:429.585333pt;}
.yc8{bottom:430.000992pt;}
.y235{bottom:431.498667pt;}
.y15d{bottom:431.901333pt;}
.y6d{bottom:431.961333pt;}
.y1d0{bottom:434.264000pt;}
.y1a4{bottom:434.466667pt;}
.ydf{bottom:434.834667pt;}
.y125{bottom:438.036000pt;}
.y1ff{bottom:442.674667pt;}
.ya3{bottom:444.330667pt;}
.y26d{bottom:444.928000pt;}
.y234{bottom:446.841333pt;}
.yc7{bottom:447.920760pt;}
.y15c{bottom:448.638667pt;}
.y6c{bottom:448.698667pt;}
.y35{bottom:448.816000pt;}
.yde{bottom:449.446667pt;}
.y11{bottom:450.170667pt;}
.y1a3{bottom:451.204000pt;}
.y1cf{bottom:451.360000pt;}
.y148{bottom:457.952715pt;}
.y1fe{bottom:459.412000pt;}
.y26c{bottom:460.270667pt;}
.ya2{bottom:461.068000pt;}
.y233{bottom:462.184000pt;}
.y124{bottom:464.430667pt;}
.y15b{bottom:465.376000pt;}
.y6b{bottom:465.436000pt;}
.yc6{bottom:465.920688pt;}
.y10{bottom:466.070667pt;}
.ydc{bottom:470.460000pt;}
.y1bb{bottom:471.297333pt;}
.y1a2{bottom:471.926667pt;}
.y147{bottom:475.072219pt;}
.y26b{bottom:475.613333pt;}
.y232{bottom:477.526667pt;}
.ydb{bottom:477.765333pt;}
.ya1{bottom:477.805333pt;}
.y1fd{bottom:480.134667pt;}
.yf{bottom:481.972000pt;}
.y15a{bottom:482.113333pt;}
.y6a{bottom:482.173333pt;}
.yc5{bottom:483.920616pt;}
.y10c{bottom:484.368000pt;}
.ydd{bottom:485.072000pt;}
.y26a{bottom:490.956000pt;}
.y146{bottom:492.191723pt;}
.y231{bottom:492.869333pt;}
.ya0{bottom:494.542667pt;}
.ye{bottom:497.872000pt;}
.y17a{bottom:497.968920pt;}
.y69{bottom:498.910667pt;}
.y1a1{bottom:501.814667pt;}
.yc4{bottom:501.920544pt;}
.y159{bottom:502.836000pt;}
.y269{bottom:506.298667pt;}
.y179{bottom:506.688400pt;}
.y1fc{bottom:507.181333pt;}
.y230{bottom:508.212000pt;}
.y145{bottom:509.233883pt;}
.y1df{bottom:510.862253pt;}
.y9f{bottom:511.280000pt;}
.yda{bottom:513.178667pt;}
.yd{bottom:513.772000pt;}
.y34{bottom:515.616000pt;}
.y68{bottom:515.648000pt;}
.y1a0{bottom:518.552000pt;}
.y1de{bottom:519.581733pt;}
.yc3{bottom:519.920472pt;}
.y268{bottom:521.641333pt;}
.y22e{bottom:523.553333pt;}
.y22f{bottom:523.554667pt;}
.y1fb{bottom:524.277333pt;}
.y144{bottom:526.353387pt;}
.y9e{bottom:528.017333pt;}
.yc{bottom:529.673333pt;}
.y158{bottom:529.882667pt;}
.yd9{bottom:530.274667pt;}
.y67{bottom:532.384000pt;}
.y19f{bottom:535.289333pt;}
.y267{bottom:536.984000pt;}
.yc2{bottom:537.920400pt;}
.y22d{bottom:538.896000pt;}
.y1fa{bottom:541.373333pt;}
.y143{bottom:543.472891pt;}
.y9d{bottom:544.754667pt;}
.yb{bottom:545.573333pt;}
.y157{bottom:546.978667pt;}
.y33{bottom:548.852000pt;}
.y66{bottom:549.121333pt;}
.y19e{bottom:552.026667pt;}
.y266{bottom:552.325333pt;}
.y10e{bottom:554.031587pt;}
.y22c{bottom:554.238667pt;}
.yc1{bottom:555.920400pt;}
.y142{bottom:560.513571pt;}
.y1dd{bottom:561.310667pt;}
.ya{bottom:561.473333pt;}
.y9c{bottom:561.492000pt;}
.y10d{bottom:562.751067pt;}
.yd8{bottom:564.638667pt;}
.y65{bottom:565.858667pt;}
.y32{bottom:566.146667pt;}
.y106{bottom:566.313333pt;}
.y138{bottom:566.916000pt;}
.y265{bottom:567.668000pt;}
.y19d{bottom:568.764000pt;}
.y22b{bottom:569.581333pt;}
.ybf{bottom:574.641184pt;}
.y141{bottom:577.633075pt;}
.y9b{bottom:578.229333pt;}
.y7{bottom:581.358715pt;}
.yd7{bottom:581.734667pt;}
.y64{bottom:582.596000pt;}
.y264{bottom:583.010667pt;}
.y31{bottom:583.442667pt;}
.ybe{bottom:583.600400pt;}
.y22a{bottom:584.924000pt;}
.y19c{bottom:585.501333pt;}
.yc0{bottom:592.641112pt;}
.y140{bottom:594.673755pt;}
.y9a{bottom:594.966667pt;}
.y263{bottom:598.353333pt;}
.y63{bottom:599.333333pt;}
.y229{bottom:600.266667pt;}
.y30{bottom:600.737333pt;}
.yb8{bottom:601.672000pt;}
.y19b{bottom:602.238667pt;}
.y99{bottom:611.704000pt;}
.y13f{bottom:611.793259pt;}
.y262{bottom:613.696000pt;}
.y228{bottom:615.609333pt;}
.y62{bottom:616.070667pt;}
.y105{bottom:616.525333pt;}
.y2f{bottom:618.032000pt;}
.y19a{bottom:618.976000pt;}
.ybd{bottom:619.280000pt;}
.y98{bottom:628.441333pt;}
.y13e{bottom:628.912763pt;}
.y261{bottom:629.038667pt;}
.y227{bottom:630.952000pt;}
.y61{bottom:632.808000pt;}
.y104{bottom:633.262667pt;}
.ybc{bottom:634.720400pt;}
.y2e{bottom:635.328000pt;}
.y199{bottom:635.713333pt;}
.y260{bottom:644.381333pt;}
.y97{bottom:645.178667pt;}
.y13d{bottom:645.952107pt;}
.y226{bottom:646.294667pt;}
.y60{bottom:649.545333pt;}
.y103{bottom:650.000000pt;}
.y2d{bottom:652.622667pt;}
.y198{bottom:656.436000pt;}
.y25f{bottom:659.724000pt;}
.y225{bottom:661.636000pt;}
.y96{bottom:661.916000pt;}
.y13c{bottom:663.071611pt;}
.y5f{bottom:666.282667pt;}
.y102{bottom:666.737333pt;}
.y2c{bottom:669.918667pt;}
.y25e{bottom:675.066667pt;}
.y224{bottom:676.978667pt;}
.y95{bottom:678.653333pt;}
.yba{bottom:681.840920pt;}
.y5e{bottom:683.020000pt;}
.y197{bottom:683.482667pt;}
.y2b{bottom:687.213333pt;}
.y25d{bottom:690.408000pt;}
.yb9{bottom:690.560400pt;}
.y223{bottom:692.321333pt;}
.y94{bottom:695.390667pt;}
.y5d{bottom:699.757333pt;}
.y196{bottom:700.577333pt;}
.y2a{bottom:704.508000pt;}
.y25c{bottom:705.750667pt;}
.y222{bottom:707.664000pt;}
.y13a{bottom:711.551587pt;}
.y101{bottom:712.128000pt;}
.y93{bottom:716.112000pt;}
.y5c{bottom:716.494667pt;}
.y139{bottom:720.271067pt;}
.y189{bottom:720.514667pt;}
.y25b{bottom:721.093333pt;}
.y29{bottom:721.804000pt;}
.y221{bottom:723.006667pt;}
.y100{bottom:728.864000pt;}
.y5b{bottom:733.232000pt;}
.y25a{bottom:736.436000pt;}
.y220{bottom:738.349333pt;}
.y28{bottom:739.098667pt;}
.yff{bottom:745.601333pt;}
.y92{bottom:746.000000pt;}
.y5a{bottom:749.969333pt;}
.y259{bottom:751.778667pt;}
.y21f{bottom:753.692000pt;}
.yfe{bottom:762.338667pt;}
.y91{bottom:762.737333pt;}
.y59{bottom:766.706667pt;}
.y258{bottom:767.121333pt;}
.y21e{bottom:769.034667pt;}
.y27{bottom:773.397333pt;}
.y90{bottom:779.474667pt;}
.y257{bottom:782.464000pt;}
.yfd{bottom:783.061333pt;}
.y58{bottom:783.444000pt;}
.y21d{bottom:784.377333pt;}
.y26{bottom:787.742667pt;}
.y8f{bottom:793.785333pt;}
.y8e{bottom:796.212000pt;}
.y256{bottom:797.806667pt;}
.y21c{bottom:799.718667pt;}
.y57{bottom:800.181333pt;}
.yfc{bottom:800.994667pt;}
.y25{bottom:802.089333pt;}
.y8d{bottom:812.949333pt;}
.y254{bottom:813.148000pt;}
.y255{bottom:813.149333pt;}
.y21b{bottom:815.061333pt;}
.y56{bottom:816.918667pt;}
.y24{bottom:820.293333pt;}
.y253{bottom:828.490667pt;}
.y8b{bottom:829.686667pt;}
.y23{bottom:830.781333pt;}
.yfb{bottom:830.882667pt;}
.y177{bottom:831.281333pt;}
.y55{bottom:833.656000pt;}
.y21a{bottom:834.389333pt;}
.y8c{bottom:834.509333pt;}
.y1ba{bottom:838.750667pt;}
.y252{bottom:843.833333pt;}
.y8a{bottom:846.424000pt;}
.yfa{bottom:847.620000pt;}
.y176{bottom:848.018667pt;}
.y22{bottom:848.985333pt;}
.y54{bottom:850.393333pt;}
.y1b9{bottom:855.488000pt;}
.y251{bottom:859.176000pt;}
.y89{bottom:860.734667pt;}
.y88{bottom:863.161333pt;}
.y219{bottom:864.277333pt;}
.yf9{bottom:864.357333pt;}
.y18b{bottom:864.590253pt;}
.y175{bottom:864.754667pt;}
.y53{bottom:867.130667pt;}
.y1b8{bottom:872.225333pt;}
.y18a{bottom:873.309733pt;}
.y250{bottom:874.518667pt;}
.y87{bottom:879.898667pt;}
.yf8{bottom:881.094667pt;}
.y174{bottom:881.492000pt;}
.y52{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y218{bottom:887.869333pt;}
.y24f{bottom:889.861333pt;}
.y173{bottom:898.229333pt;}
.y51{bottom:900.605333pt;}
.y86{bottom:900.621333pt;}
.yf7{bottom:901.816000pt;}
.y217{bottom:903.490667pt;}
.y24e{bottom:905.204000pt;}
.y1b7{bottom:912.636000pt;}
.y172{bottom:914.966667pt;}
.y50{bottom:917.342667pt;}
.y85{bottom:918.553333pt;}
.y24d{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y216{bottom:927.081333pt;}
.yf6{bottom:931.704000pt;}
.y1b6{bottom:933.650667pt;}
.y4f{bottom:934.080000pt;}
.y24c{bottom:935.889333pt;}
.y215{bottom:942.702667pt;}
.y84{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4e{bottom:950.817333pt;}
.y24b{bottom:951.230667pt;}
.y1b5{bottom:954.664000pt;}
.y83{bottom:965.178667pt;}
.y214{bottom:966.294667pt;}
.y24a{bottom:966.573333pt;}
.y4d{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y82{bottom:981.916000pt;}
.y1b4{bottom:983.233333pt;}
.y4c{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4b{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.h14{height:23.521527pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h2c{height:27.854597pt;}
.h13{height:29.397999pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h18{height:31.067969pt;}
.h12{height:31.157778pt;}
.h17{height:31.338125pt;}
.h26{height:33.474560pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h1b{height:35.039062pt;}
.h2b{height:35.052646pt;}
.h1a{height:35.343750pt;}
.h20{height:37.193707pt;}
.h10{height:38.415786pt;}
.h1e{height:38.462187pt;}
.h11{height:38.681455pt;}
.h4{height:38.947124pt;}
.h19{height:39.010156pt;}
.h1d{height:39.349375pt;}
.h22{height:43.557639pt;}
.h28{height:44.436941pt;}
.h2{height:45.271688pt;}
.h6{height:48.481423pt;}
.h23{height:48.683332pt;}
.h15{height:48.688666pt;}
.h1f{height:63.801105pt;}
.h5{height:69.148877pt;}
.h1c{height:75.512223pt;}
.h3{height:85.431026pt;}
.h27{height:274.685333pt;}
.h29{height:346.440000pt;}
.h16{height:393.529333pt;}
.h24{height:428.285333pt;}
.h2a{height:433.890667pt;}
.h25{height:464.722667pt;}
.h21{height:510.833333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:171.210973pt;}
.w9{width:346.440000pt;}
.wa{width:392.406667pt;}
.w7{width:414.270667pt;}
.w5{width:476.497600pt;}
.w6{width:509.569333pt;}
.w8{width:666.532000pt;}
.w4{width:676.622533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xcf{left:-272.092000pt;}
.xd6{left:-207.065333pt;}
.xab{left:-181.278667pt;}
.xb7{left:-175.112000pt;}
.xbb{left:-146.792000pt;}
.xd0{left:-98.252000pt;}
.xa0{left:-84.438400pt;}
.xd1{left:-69.931472pt;}
.xd8{left:-33.225333pt;}
.xc2{left:-18.709333pt;}
.x76{left:-8.618800pt;}
.xad{left:-7.439683pt;}
.xd9{left:-4.904805pt;}
.xb9{left:-1.272000pt;}
.x0{left:0.000000pt;}
.xc5{left:9.610667pt;}
.x84{left:19.701200pt;}
.xac{left:20.880845pt;}
.x3{left:26.021437pt;}
.xa1{left:42.361600pt;}
.x1{left:48.000000pt;}
.x2{left:53.973679pt;}
.x75{left:58.540133pt;}
.xc1{left:63.585333pt;}
.x91{left:66.961333pt;}
.x8e{left:69.949333pt;}
.x92{left:71.324000pt;}
.x85{left:76.346667pt;}
.x90{left:80.452000pt;}
.x8d{left:84.936000pt;}
.x8f{left:88.378667pt;}
.xa3{left:89.401072pt;}
.x8c{left:92.861333pt;}
.x88{left:101.498667pt;}
.xa2{left:117.721600pt;}
.x87{left:121.489333pt;}
.x86{left:127.230667pt;}
.xa5{left:143.881600pt;}
.xa6{left:149.321600pt;}
.xc4{left:155.130667pt;}
.xa7{left:159.481600pt;}
.x77{left:165.221200pt;}
.x82{left:168.261496pt;}
.x7e{left:171.541376pt;}
.x83{left:173.621528pt;}
.xa4{left:174.601600pt;}
.x7f{left:178.580760pt;}
.x81{left:183.781808pt;}
.x7d{left:188.821200pt;}
.x80{left:192.660864pt;}
.x7c{left:197.621200pt;}
.x78{left:207.221200pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x89{left:239.353333pt;}
.x5{left:241.085333pt;}
.x8{left:251.365333pt;}
.x63{left:256.448000pt;}
.x2e{left:258.946667pt;}
.x64{left:263.089333pt;}
.x2f{left:265.588000pt;}
.x70{left:267.938667pt;}
.x30{left:268.922667pt;}
.xaf{left:273.886667pt;}
.x7{left:275.060000pt;}
.x9f{left:277.158667pt;}
.xd2{left:278.642667pt;}
.x65{left:279.700000pt;}
.x11{left:280.826667pt;}
.x31{left:282.206667pt;}
.xca{left:283.582667pt;}
.xd3{left:284.620000pt;}
.x9c{left:286.466667pt;}
.x12{left:287.469333pt;}
.x4d{left:288.492000pt;}
.x13{left:290.856000pt;}
.xc8{left:293.325333pt;}
.xbc{left:296.133333pt;}
.x14{left:297.498667pt;}
.x9d{left:300.482667pt;}
.x1d{left:301.645333pt;}
.x40{left:304.422667pt;}
.xa8{left:310.352000pt;}
.x1e{left:314.928000pt;}
.xa9{left:323.844000pt;}
.x9{left:332.466667pt;}
.x4e{left:333.445333pt;}
.xce{left:335.834667pt;}
.x4f{left:337.417333pt;}
.xa{left:339.108000pt;}
.xd4{left:340.302667pt;}
.xb{left:345.756000pt;}
.xb0{left:348.000000pt;}
.xd5{left:349.448000pt;}
.x50{left:350.701333pt;}
.xc{left:352.398667pt;}
.x51{left:354.088000pt;}
.xb1{left:355.304000pt;}
.x41{left:362.045333pt;}
.xcc{left:363.738667pt;}
.x43{left:366.006667pt;}
.x52{left:367.372000pt;}
.x42{left:368.686667pt;}
.x53{left:370.760000pt;}
.x44{left:372.648000pt;}
.xbd{left:376.273333pt;}
.x95{left:377.560000pt;}
.x6b{left:379.772000pt;}
.x17{left:382.638667pt;}
.x54{left:384.042667pt;}
.x96{left:386.910667pt;}
.x18{left:389.280000pt;}
.x79{left:404.020680pt;}
.x6c{left:415.140000pt;}
.xd7{left:418.774515pt;}
.xbe{left:419.850667pt;}
.x6d{left:420.852000pt;}
.x55{left:424.314667pt;}
.xbf{left:428.081333pt;}
.x56{left:437.598667pt;}
.x57{left:440.853333pt;}
.xda{left:445.754667pt;}
.xdb{left:451.062667pt;}
.x58{left:454.137333pt;}
.xdc{left:457.124000pt;}
.x28{left:459.400000pt;}
.xdd{left:461.774667pt;}
.xb8{left:464.724770pt;}
.xcd{left:466.317333pt;}
.x5d{left:470.908000pt;}
.x29{left:472.682667pt;}
.x2a{left:476.064000pt;}
.x73{left:477.209333pt;}
.x5e{left:484.192000pt;}
.x7a{left:485.220088pt;}
.x5f{left:487.445333pt;}
.x2b{left:489.346667pt;}
.x74{left:490.492000pt;}
.x2c{left:492.728000pt;}
.x60{left:500.729333pt;}
.x8a{left:504.632000pt;}
.xcb{left:505.605333pt;}
.x1b{left:506.550667pt;}
.x36{left:507.501333pt;}
.xae{left:508.561224pt;}
.x1c{left:513.192000pt;}
.x37{left:514.144000pt;}
.x67{left:515.582667pt;}
.x8b{left:518.433333pt;}
.xba{left:522.888000pt;}
.x2d{left:526.056000pt;}
.xb5{left:527.645333pt;}
.x68{left:529.597333pt;}
.x71{left:530.822667pt;}
.xb6{left:536.792000pt;}
.x9e{left:539.197333pt;}
.x72{left:544.106667pt;}
.x22{left:559.225333pt;}
.x19{left:567.550667pt;}
.x23{left:572.508000pt;}
.xc6{left:574.412000pt;}
.x24{left:575.896000pt;}
.x7b{left:577.699344pt;}
.x15{left:579.876000pt;}
.x1a{left:580.833333pt;}
.xc7{left:583.974667pt;}
.x16{left:586.518667pt;}
.xb2{left:587.653333pt;}
.x25{left:589.178667pt;}
.x26{left:592.566667pt;}
.xb3{left:595.946667pt;}
.x93{left:598.965333pt;}
.x9a{left:601.058667pt;}
.xb4{left:603.252000pt;}
.x27{left:605.850667pt;}
.x94{left:608.333333pt;}
.x59{left:609.765333pt;}
.x69{left:613.448000pt;}
.x9b{left:615.074667pt;}
.x6a{left:617.136000pt;}
.xd{left:618.054667pt;}
.xc3{left:621.127437pt;}
.x5a{left:623.049333pt;}
.xe{left:624.696000pt;}
.x5b{left:626.436000pt;}
.xc9{left:637.518667pt;}
.x5c{left:639.720000pt;}
.x61{left:641.940000pt;}
.x38{left:642.841333pt;}
.x49{left:644.370667pt;}
.x39{left:649.482667pt;}
.xde{left:651.029333pt;}
.x3a{left:652.869333pt;}
.x62{left:655.224000pt;}
.x4a{left:657.653333pt;}
.xc0{left:659.893333pt;}
.x4b{left:661.041333pt;}
.x97{left:664.365333pt;}
.x3b{left:666.153333pt;}
.x45{left:667.341333pt;}
.x3c{left:669.540000pt;}
.x98{left:673.392000pt;}
.x4c{left:674.324000pt;}
.x6e{left:679.216000pt;}
.x46{left:680.625333pt;}
.x3d{left:682.824000pt;}
.x47{left:683.998667pt;}
.x6f{left:685.858667pt;}
.x3e{left:689.598667pt;}
.x48{left:697.282667pt;}
.xaa{left:700.708000pt;}
.xdf{left:701.736000pt;}
.x3f{left:702.882667pt;}
.x99{left:704.214667pt;}
.x32{left:707.846667pt;}
.x1f{left:710.172000pt;}
.xe0{left:711.569333pt;}
.x66{left:715.998667pt;}
.x33{left:721.130667pt;}
.x20{left:723.454667pt;}
.x21{left:726.842667pt;}
.x34{left:727.905333pt;}
.xf{left:733.484000pt;}
.x10{left:740.126667pt;}
.x35{left:741.189333pt;}
}




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