
    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_8e5dfc388b49073f6b3a5a32.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_238e7e70545870c0f235b614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2fc582528bc1bb64546cb9c2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_378b09aa3f23c23c04c19433.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_af190ad8e7066f8f589aef01.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7a05da0a23d97bf42800fcc4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_30222c3fba18c9fcb9a7df98.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_638a34f4e92f565ec4dce3a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_df6097c46b8442d065943ec0.woff2')format("woff");}.fff{font-family:fff;line-height:0.873000;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_c09c9ccfa64d36bdc8f86b7b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_61d70a2053781c163824bd43.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.988000;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_20deea9a023eca59ba387481.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.598000;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_d39d88760d503f3a4ce16936.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_73a0232f75623bd1451bb949.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_b7191fd9994242bc34eebc58.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_19b346644449cdf6482059e5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e572634a4cbf17a3989afee2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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_2c2fffd009a958b8e6b6fcba.woff2')format("woff");}.ff18{font-family:ff18;line-height:2.549805;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_9aa70e18a642b2c02fcc8b19.woff2')format("woff");}.ff19{font-family:ff19;line-height:2.552000;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_0d7e814dc41e5d3597debc40.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_7f44b5da628f2553960485b0.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_1391abc7f027147af84f1106.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.003000;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_73a0232f75623bd1451bb949.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_1ea7002077fca4bdb90e5716.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_b2650d3179e70192bb557ca4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_e572634a4cbf17a3989afee2.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;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_39501c96b7f561eb2d72431d.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.909180;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_73a0232f75623bd1451bb949.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_257060685f295b95574bbe0c.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_f1aafe17a050cd7c2225a17c.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_e572634a4cbf17a3989afee2.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_39501c96b7f561eb2d72431d.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_b80fddab7db0d17e9531474d.woff2')format("woff");}.ff27{font-family:ff27;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;}
.m2{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);}
.m2b{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);}
.mc{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);}
.m3{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);}
.m19{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m29{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);}
.m6{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);}
.m9{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);}
.m4{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);}
.m27{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);}
.m16{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);}
.m12{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);}
.me{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);}
.m1c{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);}
.ma{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m1a{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);}
.md{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);}
.m1e{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);}
.m20{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);}
.m2a{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m21{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);}
.m26{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);}
.mb{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);}
.m7{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);}
.m2d{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);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m14{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);}
.m23{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);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.mf{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);}
.m15{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);}
.m1b{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);}
.m10{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);}
.m11{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);}
.m17{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);}
.m22{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);}
.m18{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);}
.m5{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1f{vertical-align:-26.574000px;}
.v1b{vertical-align:-24.042000px;}
.v13{vertical-align:-18.810000px;}
.v2{vertical-align:-17.358000px;}
.v7{vertical-align:-12.242880px;}
.v4{vertical-align:-10.164000px;}
.v3{vertical-align:-8.970000px;}
.v19{vertical-align:-7.740000px;}
.v0{vertical-align:0.000000px;}
.v25{vertical-align:1.410000px;}
.vc{vertical-align:4.677336px;}
.v8{vertical-align:12.240000px;}
.v12{vertical-align:14.940000px;}
.v6{vertical-align:16.038000px;}
.v1c{vertical-align:17.046000px;}
.v22{vertical-align:20.622000px;}
.v1{vertical-align:21.696000px;}
.v21{vertical-align:23.556000px;}
.v5{vertical-align:24.690000px;}
.v16{vertical-align:28.776000px;}
.v24{vertical-align:29.838000px;}
.v20{vertical-align:32.706000px;}
.v1d{vertical-align:34.308000px;}
.v15{vertical-align:37.422000px;}
.va{vertical-align:40.316472px;}
.v23{vertical-align:42.324000px;}
.v9{vertical-align:45.360540px;}
.v14{vertical-align:47.586000px;}
.v1e{vertical-align:50.238000px;}
.v17{vertical-align:56.382000px;}
.v10{vertical-align:58.434000px;}
.vb{vertical-align:62.276472px;}
.vd{vertical-align:65.694000px;}
.v1a{vertical-align:67.500000px;}
.ve{vertical-align:73.674000px;}
.v11{vertical-align:79.062000px;}
.v18{vertical-align:83.592000px;}
.vf{vertical-align:114.678000px;}
.ls4e{letter-spacing:-0.270540px;}
.ls4d{letter-spacing:-0.102204px;}
.ls48{letter-spacing:-0.086184px;}
.lse3{letter-spacing:-0.048096px;}
.ls51{letter-spacing:-0.030060px;}
.lse5{letter-spacing:-0.018036px;}
.ls49{letter-spacing:-0.012024px;}
.ls52{letter-spacing:-0.006012px;}
.ls0{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.000124px;}
.ls65{letter-spacing:0.000150px;}
.ls24{letter-spacing:0.000174px;}
.lsf4{letter-spacing:0.000500px;}
.ls9{letter-spacing:0.000649px;}
.lsdc{letter-spacing:0.001050px;}
.ls79{letter-spacing:0.001117px;}
.ls20{letter-spacing:0.001142px;}
.lsa9{letter-spacing:0.001200px;}
.ls78{letter-spacing:0.001518px;}
.ls1c{letter-spacing:0.001834px;}
.lsa{letter-spacing:0.002224px;}
.lsf3{letter-spacing:0.002338px;}
.lsc3{letter-spacing:0.002360px;}
.lsd0{letter-spacing:0.002383px;}
.lsdb{letter-spacing:0.002436px;}
.ls5d{letter-spacing:0.002570px;}
.ls23{letter-spacing:0.002725px;}
.lsf5{letter-spacing:0.002758px;}
.lsf7{letter-spacing:0.002832px;}
.ls40{letter-spacing:0.003067px;}
.ls7c{letter-spacing:0.003233px;}
.ls97{letter-spacing:0.003292px;}
.ls7{letter-spacing:0.003488px;}
.lseb{letter-spacing:0.003494px;}
.ls41{letter-spacing:0.003598px;}
.lse9{letter-spacing:0.003835px;}
.lsad{letter-spacing:0.003886px;}
.ls3b{letter-spacing:0.003943px;}
.ls36{letter-spacing:0.004093px;}
.lsac{letter-spacing:0.004118px;}
.lsc1{letter-spacing:0.004200px;}
.ls10{letter-spacing:0.004435px;}
.ls82{letter-spacing:0.004514px;}
.ls1a{letter-spacing:0.004766px;}
.lsd8{letter-spacing:0.004800px;}
.lse{letter-spacing:0.005108px;}
.lse1{letter-spacing:0.005400px;}
.lsec{letter-spacing:0.016200px;}
.ls29{letter-spacing:0.021600px;}
.lsdf{letter-spacing:0.027000px;}
.ls28{letter-spacing:0.032400px;}
.ls25{letter-spacing:0.033516px;}
.lsf1{letter-spacing:0.048096px;}
.lsee{letter-spacing:0.054000px;}
.lsf2{letter-spacing:0.066132px;}
.lsef{letter-spacing:0.070200px;}
.lse2{letter-spacing:0.075600px;}
.lsf0{letter-spacing:0.078156px;}
.lse4{letter-spacing:0.084168px;}
.lse8{letter-spacing:0.126252px;}
.lse6{letter-spacing:0.144288px;}
.ls50{letter-spacing:0.150300px;}
.lse7{letter-spacing:0.162324px;}
.ls27{letter-spacing:0.181944px;}
.lse0{letter-spacing:0.183600px;}
.ls26{letter-spacing:0.191520px;}
.lsa0{letter-spacing:0.287645px;}
.lsaf{letter-spacing:0.400185px;}
.lsae{letter-spacing:0.448282px;}
.ls99{letter-spacing:0.508407px;}
.lsa8{letter-spacing:0.514407px;}
.lsf6{letter-spacing:0.537859px;}
.lsb3{letter-spacing:0.548815px;}
.lsa7{letter-spacing:0.565301px;}
.lsc9{letter-spacing:0.567292px;}
.ls98{letter-spacing:0.567886px;}
.lscd{letter-spacing:0.568056px;}
.ls14{letter-spacing:0.670741px;}
.ls38{letter-spacing:0.676741px;}
.ls6d{letter-spacing:0.743782px;}
.ls68{letter-spacing:0.744150px;}
.ls42{letter-spacing:0.745694px;}
.ls55{letter-spacing:0.747067px;}
.ls7d{letter-spacing:0.747292px;}
.ls67{letter-spacing:0.747986px;}
.ls45{letter-spacing:0.748056px;}
.ls93{letter-spacing:0.748200px;}
.ls13{letter-spacing:0.749782px;}
.lsa2{letter-spacing:0.750124px;}
.ls69{letter-spacing:0.751694px;}
.lsaa{letter-spacing:0.793258px;}
.ls80{letter-spacing:1.041634px;}
.ls96{letter-spacing:1.047634px;}
.ls8{letter-spacing:1.275394px;}
.lsa5{letter-spacing:1.420741px;}
.ls92{letter-spacing:1.496378px;}
.ls74{letter-spacing:1.497986px;}
.ls4f{letter-spacing:1.527048px;}
.ls3{letter-spacing:1.861130px;}
.ls4a{letter-spacing:1.887768px;}
.ls60{letter-spacing:2.304583px;}
.ls2e{letter-spacing:2.623294px;}
.ls9a{letter-spacing:2.984726px;}
.ls39{letter-spacing:2.985943px;}
.ls3f{letter-spacing:2.989200px;}
.lsb8{letter-spacing:2.990726px;}
.ls1f{letter-spacing:2.991943px;}
.lsbb{letter-spacing:3.352457px;}
.lsb1{letter-spacing:3.434563px;}
.ls2f{letter-spacing:3.435962px;}
.ls9c{letter-spacing:3.554563px;}
.lsb9{letter-spacing:3.560563px;}
.ls2d{letter-spacing:3.725327px;}
.ls37{letter-spacing:3.733200px;}
.ls7f{letter-spacing:3.733771px;}
.ls17{letter-spacing:3.735943px;}
.ls66{letter-spacing:3.739200px;}
.ls2b{letter-spacing:3.796106px;}
.ls9e{letter-spacing:3.845645px;}
.lsa4{letter-spacing:4.096457px;}
.ls83{letter-spacing:5.972726px;}
.lsb5{letter-spacing:5.978563px;}
.ls35{letter-spacing:7.168200px;}
.ls70{letter-spacing:7.172725px;}
.lsca{letter-spacing:7.173598px;}
.ls3e{letter-spacing:7.174200px;}
.lscc{letter-spacing:7.571431px;}
.ls9f{letter-spacing:7.718815px;}
.lsed{letter-spacing:8.110800px;}
.ls73{letter-spacing:8.775886px;}
.ls76{letter-spacing:8.781886px;}
.ls2c{letter-spacing:9.913231px;}
.ls58{letter-spacing:9.962725px;}
.ls77{letter-spacing:11.620200px;}
.ls15{letter-spacing:11.621108px;}
.ls34{letter-spacing:11.622124px;}
.ls56{letter-spacing:11.624725px;}
.ls8d{letter-spacing:11.626200px;}
.ls33{letter-spacing:11.627108px;}
.ls16{letter-spacing:11.628124px;}
.lsda{letter-spacing:11.952019px;}
.ls6{letter-spacing:11.954850px;}
.ls94{letter-spacing:12.298741px;}
.ls18{letter-spacing:12.339483px;}
.ls5a{letter-spacing:12.345483px;}
.ls95{letter-spacing:12.366124px;}
.ls61{letter-spacing:12.367518px;}
.lsa3{letter-spacing:12.370200px;}
.ls43{letter-spacing:12.374725px;}
.ls4c{letter-spacing:12.865680px;}
.ls44{letter-spacing:12.949200px;}
.ls31{letter-spacing:13.450800px;}
.ls4{letter-spacing:14.107042px;}
.ls8b{letter-spacing:14.587142px;}
.ls7e{letter-spacing:14.611142px;}
.lsd1{letter-spacing:14.704798px;}
.lsd{letter-spacing:14.824349px;}
.lsdd{letter-spacing:14.884124px;}
.ls87{letter-spacing:14.888485px;}
.lsb6{letter-spacing:14.940150px;}
.ls6a{letter-spacing:14.942100px;}
.ls1d{letter-spacing:14.942725px;}
.ls9b{letter-spacing:14.943598px;}
.lsc{letter-spacing:14.943900px;}
.ls1{letter-spacing:14.944200px;}
.ls89{letter-spacing:14.945108px;}
.lsb0{letter-spacing:14.945914px;}
.lsc5{letter-spacing:14.946124px;}
.ls8a{letter-spacing:14.993108px;}
.ls85{letter-spacing:15.037088px;}
.lsb{letter-spacing:15.063451px;}
.lsc2{letter-spacing:15.131602px;}
.lsc4{letter-spacing:15.243634px;}
.ls59{letter-spacing:15.355200px;}
.ls3c{letter-spacing:15.361200px;}
.ls86{letter-spacing:15.380686px;}
.lsbf{letter-spacing:15.511200px;}
.lsb7{letter-spacing:15.513598px;}
.ls81{letter-spacing:15.616741px;}
.ls57{letter-spacing:15.689782px;}
.ls46{letter-spacing:15.692725px;}
.lsde{letter-spacing:15.840534px;}
.ls22{letter-spacing:16.602124px;}
.ls1b{letter-spacing:16.619782px;}
.ls4b{letter-spacing:16.671276px;}
.ls12{letter-spacing:17.319483px;}
.ls53{letter-spacing:17.325483px;}
.ls64{letter-spacing:17.347518px;}
.ls72{letter-spacing:17.350093px;}
.lsa6{letter-spacing:17.350200px;}
.ls75{letter-spacing:17.351108px;}
.ls6e{letter-spacing:17.351782px;}
.ls6b{letter-spacing:17.353117px;}
.lsf{letter-spacing:17.931943px;}
.ls21{letter-spacing:18.041108px;}
.ls91{letter-spacing:18.069483px;}
.lsb2{letter-spacing:18.340185px;}
.lsc0{letter-spacing:18.448407px;}
.ls5b{letter-spacing:18.681943px;}
.lscb{letter-spacing:19.147200px;}
.ls54{letter-spacing:19.515483px;}
.ls2a{letter-spacing:20.002570px;}
.lsea{letter-spacing:20.144377px;}
.ls32{letter-spacing:20.337943px;}
.lsbc{letter-spacing:20.341200px;}
.ls11{letter-spacing:20.343943px;}
.lsb4{letter-spacing:20.704457px;}
.lsc8{letter-spacing:20.918563px;}
.ls1e{letter-spacing:21.430514px;}
.lsab{letter-spacing:22.630407px;}
.ls6f{letter-spacing:22.746124px;}
.ls7a{letter-spacing:22.971886px;}
.ls90{letter-spacing:23.324563px;}
.ls7b{letter-spacing:23.330563px;}
.lsbd{letter-spacing:24.495483px;}
.ls5f{letter-spacing:24.780124px;}
.ls62{letter-spacing:24.901117px;}
.lsc7{letter-spacing:26.289483px;}
.ls8c{letter-spacing:26.508124px;}
.ls8e{letter-spacing:26.568124px;}
.lscf{letter-spacing:26.748124px;}
.ls3d{letter-spacing:27.285483px;}
.ls5e{letter-spacing:27.771943px;}
.ls2{letter-spacing:32.009510px;}
.lsba{letter-spacing:33.388407px;}
.lsbe{letter-spacing:33.781200px;}
.lsce{letter-spacing:33.926854px;}
.ls88{letter-spacing:39.435483px;}
.lsa1{letter-spacing:49.369200px;}
.ls9d{letter-spacing:54.574407px;}
.ls71{letter-spacing:66.356100px;}
.ls5{letter-spacing:67.111200px;}
.lsd7{letter-spacing:222.489178px;}
.lsd6{letter-spacing:243.142234px;}
.lsd2{letter-spacing:244.089178px;}
.lsd5{letter-spacing:246.001114px;}
.lsd4{letter-spacing:265.689178px;}
.lsd3{letter-spacing:278.401114px;}
.ls47{letter-spacing:487.557943px;}
.ls84{letter-spacing:563.979233px;}
.ls30{letter-spacing:662.035428px;}
.ls5c{letter-spacing:707.366725px;}
.ls3a{letter-spacing:725.235943px;}
.ls19{letter-spacing:927.957943px;}
.ls63{letter-spacing:964.995943px;}
.lsc6{letter-spacing:972.963943px;}
.ls8f{letter-spacing:1004.342563px;}
.lsd9{letter-spacing:1251.141782px;}
.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;}
}
.ws47{word-spacing:-76.791276px;}
.ws48{word-spacing:-72.985680px;}
.ws46{word-spacing:-62.007768px;}
.ws4b{word-spacing:-61.647048px;}
.ws49{word-spacing:-60.017796px;}
.ws4a{word-spacing:-59.849460px;}
.ws4f{word-spacing:-46.065614px;}
.ws3e{word-spacing:-41.603818px;}
.ws6d{word-spacing:-36.367718px;}
.ws69{word-spacing:-31.619002px;}
.ws5a{word-spacing:-29.232928px;}
.ws5b{word-spacing:-26.659918px;}
.ws6a{word-spacing:-24.962458px;}
.ws50{word-spacing:-24.029791px;}
.ws17{word-spacing:-17.394700px;}
.ws1{word-spacing:-16.529216px;}
.ws86{word-spacing:-15.655334px;}
.ws13{word-spacing:-14.943900px;}
.ws2{word-spacing:-13.449600px;}
.ws44{word-spacing:-12.161520px;}
.ws45{word-spacing:-11.970000px;}
.ws1d{word-spacing:-11.955150px;}
.ws4d{word-spacing:-4.979999px;}
.ws5c{word-spacing:-4.961375px;}
.ws31{word-spacing:-4.124516px;}
.ws6f{word-spacing:-3.825638px;}
.wsdc{word-spacing:-3.550694px;}
.ws83{word-spacing:-3.407209px;}
.wsfb{word-spacing:-3.281702px;}
.ws7a{word-spacing:-3.227882px;}
.ws70{word-spacing:-2.988780px;}
.ws2d{word-spacing:-2.749678px;}
.wscf{word-spacing:-2.331248px;}
.wsd{word-spacing:-2.271473px;}
.wsc9{word-spacing:-2.110212px;}
.ws27{word-spacing:-1.972595px;}
.wsf1{word-spacing:-1.936742px;}
.ws5{word-spacing:-1.908367px;}
.wsed{word-spacing:-1.829146px;}
.ws77{word-spacing:-1.793268px;}
.ws9e{word-spacing:-1.733492px;}
.ws2f{word-spacing:-1.673717px;}
.ws82{word-spacing:-1.613941px;}
.wsec{word-spacing:-1.506355px;}
.ws33{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.wsc{word-spacing:-1.255288px;}
.ws76{word-spacing:-1.195512px;}
.ws11{word-spacing:-1.135736px;}
.wsd6{word-spacing:-1.075968px;}
.ws74{word-spacing:-0.956410px;}
.ws3c{word-spacing:-0.896634px;}
.ws7f{word-spacing:-0.657532px;}
.ws38{word-spacing:-0.597756px;}
.wse8{word-spacing:-0.591782px;}
.ws63{word-spacing:-0.537980px;}
.ws12{word-spacing:-0.478205px;}
.ws78{word-spacing:-0.418429px;}
.ws64{word-spacing:-0.358654px;}
.wsc8{word-spacing:-0.342684px;}
.ws2e{word-spacing:-0.298878px;}
.ws53{word-spacing:-0.277704px;}
.ws54{word-spacing:-0.268128px;}
.ws22{word-spacing:-0.239102px;}
.wse3{word-spacing:-0.215194px;}
.ws42{word-spacing:-0.191282px;}
.ws20{word-spacing:-0.179327px;}
.wsa6{word-spacing:-0.172800px;}
.wse6{word-spacing:-0.161395px;}
.ws43{word-spacing:-0.143462px;}
.ws1f{word-spacing:-0.119551px;}
.ws103{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.wsb1{word-spacing:-0.053798px;}
.ws19{word-spacing:-0.047821px;}
.ws7c{word-spacing:-0.047338px;}
.ws51{word-spacing:-0.045430px;}
.ws6b{word-spacing:-0.035866px;}
.wsb0{word-spacing:-0.030060px;}
.ws93{word-spacing:-0.006207px;}
.ws40{word-spacing:-0.002358px;}
.ws95{word-spacing:-0.002140px;}
.ws41{word-spacing:-0.001114px;}
.ws0{word-spacing:0.000000px;}
.ws5e{word-spacing:0.001424px;}
.ws94{word-spacing:0.001967px;}
.ws3f{word-spacing:0.003187px;}
.wsaa{word-spacing:0.012024px;}
.wscc{word-spacing:0.048096px;}
.wsf4{word-spacing:0.053798px;}
.ws15{word-spacing:0.059776px;}
.ws59{word-spacing:0.102204px;}
.wsd7{word-spacing:0.107597px;}
.wsa9{word-spacing:0.108000px;}
.ws57{word-spacing:0.108216px;}
.wsab{word-spacing:0.114228px;}
.ws8{word-spacing:0.119551px;}
.ws58{word-spacing:0.126252px;}
.ws55{word-spacing:0.151200px;}
.wsa7{word-spacing:0.156600px;}
.wsde{word-spacing:0.161395px;}
.ws56{word-spacing:0.162000px;}
.wsa8{word-spacing:0.178200px;}
.ws7{word-spacing:0.179327px;}
.wsf7{word-spacing:0.215194px;}
.wsf{word-spacing:0.239102px;}
.ws52{word-spacing:0.239400px;}
.wsd9{word-spacing:0.268992px;}
.ws1b{word-spacing:0.286924px;}
.ws6{word-spacing:0.298878px;}
.ws10{word-spacing:0.358654px;}
.wsd0{word-spacing:0.418429px;}
.wsfc{word-spacing:0.484186px;}
.ws87{word-spacing:0.699379px;}
.ws85{word-spacing:0.753178px;}
.ws97{word-spacing:0.777083px;}
.wse1{word-spacing:0.806976px;}
.ws16{word-spacing:0.836858px;}
.ws73{word-spacing:0.896634px;}
.ws26{word-spacing:0.956410px;}
.ws9b{word-spacing:1.016185px;}
.ws84{word-spacing:1.022170px;}
.ws9c{word-spacing:1.075961px;}
.ws98{word-spacing:1.135736px;}
.ws96{word-spacing:1.255288px;}
.ws21{word-spacing:1.374839px;}
.ws9d{word-spacing:1.554166px;}
.ws66{word-spacing:1.673717px;}
.ws9f{word-spacing:1.733492px;}
.wsa1{word-spacing:1.853044px;}
.ws2b{word-spacing:2.032370px;}
.wsea{word-spacing:2.313331px;}
.wsb8{word-spacing:2.331248px;}
.wsc0{word-spacing:2.391024px;}
.wsff{word-spacing:2.420928px;}
.ws14{word-spacing:2.450800px;}
.ws9a{word-spacing:2.630126px;}
.ws99{word-spacing:2.689902px;}
.wsb9{word-spacing:2.988780px;}
.wse5{word-spacing:3.012710px;}
.ws28{word-spacing:3.168107px;}
.wsd2{word-spacing:3.287658px;}
.wsba{word-spacing:3.526760px;}
.ws6e{word-spacing:3.586536px;}
.ws2a{word-spacing:3.765863px;}
.ws29{word-spacing:3.825638px;}
.wsc3{word-spacing:3.873485px;}
.ws35{word-spacing:3.885414px;}
.wsce{word-spacing:3.945190px;}
.ws2c{word-spacing:4.064741px;}
.wsbf{word-spacing:4.184292px;}
.wsc2{word-spacing:4.250074px;}
.ws39{word-spacing:4.303843px;}
.wsca{word-spacing:4.370724px;}
.ws72{word-spacing:4.602721px;}
.ws24{word-spacing:4.662497px;}
.wsf3{word-spacing:4.680461px;}
.wsbd{word-spacing:4.722272px;}
.wsf0{word-spacing:4.734259px;}
.wsbe{word-spacing:4.782048px;}
.ws1a{word-spacing:4.782060px;}
.ws71{word-spacing:5.021150px;}
.wsbc{word-spacing:5.140702px;}
.wsbb{word-spacing:5.200477px;}
.wsd5{word-spacing:5.378822px;}
.ws18{word-spacing:5.379804px;}
.ws3{word-spacing:5.379840px;}
.wsdf{word-spacing:5.382000px;}
.ws5d{word-spacing:5.499355px;}
.wsd4{word-spacing:5.702630px;}
.wscd{word-spacing:5.738458px;}
.wsa2{word-spacing:5.917784px;}
.wsa{word-spacing:5.971475px;}
.wsb{word-spacing:5.977560px;}
.wsd3{word-spacing:6.079219px;}
.wsb7{word-spacing:6.097111px;}
.ws25{word-spacing:6.276438px;}
.wsc1{word-spacing:6.395989px;}
.wsa0{word-spacing:6.455765px;}
.ws23{word-spacing:6.575316px;}
.ws67{word-spacing:6.754643px;}
.ws7d{word-spacing:6.814418px;}
.ws30{word-spacing:6.874194px;}
.ws7e{word-spacing:6.993745px;}
.ws9{word-spacing:7.053521px;}
.wsda{word-spacing:7.639373px;}
.ws37{word-spacing:7.890379px;}
.wsc7{word-spacing:8.040600px;}
.wsc6{word-spacing:8.056800px;}
.wsc4{word-spacing:8.094600px;}
.wsc5{word-spacing:8.105400px;}
.wsf9{word-spacing:8.607744px;}
.wsd1{word-spacing:9.683647px;}
.ws5f{word-spacing:9.903684px;}
.ws62{word-spacing:9.982525px;}
.wsdb{word-spacing:10.167898px;}
.wsae{word-spacing:11.458872px;}
.wsf2{word-spacing:11.459059px;}
.wsaf{word-spacing:11.470896px;}
.ws60{word-spacing:11.561933px;}
.wsef{word-spacing:11.566656px;}
.wsee{word-spacing:11.620454px;}
.ws1c{word-spacing:11.907329px;}
.ws79{word-spacing:12.307150px;}
.ws3d{word-spacing:12.313150px;}
.wse9{word-spacing:12.804019px;}
.ws4e{word-spacing:12.955613px;}
.wse4{word-spacing:13.180608px;}
.ws101{word-spacing:13.385251px;}
.wsf5{word-spacing:13.386422px;}
.ws102{word-spacing:13.391069px;}
.wsf6{word-spacing:13.391520px;}
.wseb{word-spacing:13.392269px;}
.wsfe{word-spacing:13.392499px;}
.wsdd{word-spacing:13.395802px;}
.wse7{word-spacing:13.397069px;}
.wse0{word-spacing:13.449600px;}
.ws36{word-spacing:13.569061px;}
.wsf8{word-spacing:13.610995px;}
.wsd8{word-spacing:13.664794px;}
.wsfd{word-spacing:13.879987px;}
.ws75{word-spacing:13.927715px;}
.wse2{word-spacing:14.202778px;}
.ws34{word-spacing:14.645022px;}
.ws3b{word-spacing:14.884124px;}
.ws81{word-spacing:14.900909px;}
.ws100{word-spacing:15.816730px;}
.ws61{word-spacing:16.319089px;}
.ws7b{word-spacing:17.886696px;}
.ws4c{word-spacing:18.000827px;}
.ws3a{word-spacing:19.187968px;}
.ws80{word-spacing:20.292696px;}
.ws32{word-spacing:20.861684px;}
.wsfa{word-spacing:22.003546px;}
.ws68{word-spacing:22.061933px;}
.ws6c{word-spacing:23.077853px;}
.wscb{word-spacing:24.162228px;}
.ws8c{word-spacing:75.773683px;}
.ws8a{word-spacing:86.237683px;}
.ws88{word-spacing:86.254800px;}
.ws8f{word-spacing:90.219917px;}
.ws89{word-spacing:94.783066px;}
.ws91{word-spacing:96.718800px;}
.ws8d{word-spacing:103.862803px;}
.ws90{word-spacing:111.793075px;}
.ws8e{word-spacing:111.808800px;}
.ws92{word-spacing:111.846874px;}
.wsb2{word-spacing:316.872576px;}
.wsa5{word-spacing:325.103731px;}
.wsb5{word-spacing:329.784192px;}
.wsa4{word-spacing:332.420314px;}
.wsb4{word-spacing:394.143600px;}
.wsb3{word-spacing:395.650310px;}
.wsb6{word-spacing:426.249245px;}
.wsa3{word-spacing:435.255245px;}
.wsad{word-spacing:440.403048px;}
.wsac{word-spacing:449.409024px;}
.ws8b{word-spacing:636.596467px;}
.ws1e{word-spacing:746.862131px;}
.ws65{word-spacing:1052.465933px;}
._2c{margin-left:-95.560759px;}
._2d{margin-left:-87.083839px;}
._18{margin-left:-22.451946px;}
._16{margin-left:-16.773480px;}
._17{margin-left:-15.192324px;}
._19{margin-left:-9.298602px;}
._15{margin-left:-8.209549px;}
._8{margin-left:-6.821986px;}
._5{margin-left:-5.618906px;}
._0{margin-left:-3.981082px;}
._54{margin-left:-2.905114px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._1b{width:2.169476px;}
._11{width:5.275261px;}
._1c{width:6.830470px;}
._32{width:10.749446px;}
._9{width:14.293936px;}
._a{width:16.386082px;}
._52{width:17.763706px;}
._1{width:18.829440px;}
._4{width:20.697492px;}
._b{width:21.706110px;}
._e{width:23.080949px;}
._7{width:24.097134px;}
._22{width:25.467917px;}
._4e{width:26.531750px;}
._10{width:27.862997px;}
._28{width:28.886749px;}
._4f{width:30.618744px;}
._f{width:31.902674px;}
._4c{width:33.825422px;}
._4b{width:36.616614px;}
._1a{width:37.837955px;}
._d{width:40.169203px;}
._50{width:41.206704px;}
._6{width:42.560227px;}
._13{width:44.585030px;}
._53{width:45.646860px;}
._12{width:48.478012px;}
._51{width:49.709722px;}
._20{width:93.242189px;}
._21{width:103.669517px;}
._25{width:110.151283px;}
._1e{width:125.242675px;}
._1d{width:128.386855px;}
._1f{width:131.454230px;}
._23{width:135.141581px;}
._37{width:161.395200px;}
._2a{width:167.163660px;}
._24{width:175.759373px;}
._36{width:178.825882px;}
._2b{width:185.199660px;}
._26{width:194.588813px;}
._27{width:211.427712px;}
._3f{width:217.227528px;}
._47{width:222.803047px;}
._3e{width:263.612160px;}
._48{width:303.231655px;}
._33{width:318.726180px;}
._2f{width:342.203030px;}
._3c{width:345.869914px;}
._3a{width:348.990221px;}
._34{width:353.836250px;}
._38{width:356.952384px;}
._3b{width:360.825869px;}
._46{width:367.466945px;}
._42{width:370.886170px;}
._41{width:374.060275px;}
._43{width:381.323059px;}
._45{width:384.873754px;}
._31{width:390.611654px;}
._40{width:395.525837px;}
._2e{width:415.188710px;}
._4a{width:420.811085px;}
._39{width:422.425037px;}
._44{width:435.874637px;}
._30{width:466.447022px;}
._49{width:474.017702px;}
._35{width:478.080242px;}
._29{width:574.903512px;}
._4d{width:1745.374428px;}
._3d{width:1760.180402px;}
._14{width:1769.501160px;}
._c{width:1784.090402px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs16{font-size:37.371600px;}
.fs17{font-size:41.842800px;}
.fsb{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs14{font-size:42.120000px;}
.fsc{font-size:45.429600px;}
.fsa{font-size:47.236800px;}
.fs15{font-size:47.337600px;}
.fse{font-size:47.820600px;}
.fs10{font-size:47.880000px;}
.fs5{font-size:52.197584px;}
.fs9{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs13{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs12{font-size:65.880000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y148{bottom:-259.208550px;}
.yb1{bottom:-236.029050px;}
.y1b6{bottom:-234.311550px;}
.y152{bottom:-220.868127px;}
.y151{bottom:-200.708388px;}
.y150{bottom:-180.458469px;}
.y1bf{bottom:-176.621460px;}
.y14f{bottom:-160.208550px;}
.y1be{bottom:-156.371541px;}
.yb7{bottom:-156.019662px;}
.y14e{bottom:-139.958550px;}
.y1bd{bottom:-136.121622px;}
.yb6{bottom:-123.708168px;}
.y14d{bottom:-118.898550px;}
.y1bc{bottom:-115.871703px;}
.yb5{bottom:-113.628330px;}
.y14c{bottom:-108.188550px;}
.y1bb{bottom:-86.531640px;}
.yb4{bottom:-68.899050px;}
.y14b{bottom:-67.238550px;}
.y1ba{bottom:-48.911550px;}
.y1b9{bottom:-48.911100px;}
.yb3{bottom:-31.009050px;}
.y14a{bottom:-29.708550px;}
.y1b8{bottom:-29.291550px;}
.y149{bottom:-2.888550px;}
.y0{bottom:0.000000px;}
.yb2{bottom:1.390950px;}
.y1b7{bottom:2.208450px;}
.y2e{bottom:3.425340px;}
.y24{bottom:5.788613px;}
.y2d{bottom:14.151273px;}
.y23{bottom:22.317924px;}
.y22{bottom:38.654567px;}
.y51{bottom:63.780000px;}
.y4{bottom:97.125005px;}
.y1c7{bottom:108.684000px;}
.ybe{bottom:114.256500px;}
.ybd{bottom:124.507500px;}
.yae{bottom:125.794500px;}
.y1eb{bottom:126.799500px;}
.y1c6{bottom:128.949000px;}
.y15a{bottom:130.735500px;}
.y100{bottom:131.106000px;}
.y50{bottom:131.290500px;}
.y20{bottom:139.264499px;}
.yad{bottom:139.990500px;}
.yff{bottom:141.735000px;}
.yac{bottom:144.330000px;}
.y4f{bottom:145.486500px;}
.y1ea{bottom:146.167500px;}
.y159{bottom:147.531000px;}
.y1c5{bottom:149.212500px;}
.y4e{bottom:149.826000px;}
.yfe{bottom:155.932500px;}
.yab{bottom:159.300000px;}
.yfd{bottom:160.272000px;}
.y4d{bottom:160.456500px;}
.y158{bottom:164.326500px;}
.y1e9{bottom:165.534000px;}
.ybc{bottom:167.733000px;}
.y1c4{bottom:169.476000px;}
.yfc{bottom:175.240500px;}
.y4c{bottom:178.992000px;}
.y157{bottom:181.122000px;}
.yea{bottom:184.786500px;}
.y1e8{bottom:184.902000px;}
.y80{bottom:186.079500px;}
.y1c3{bottom:189.741000px;}
.ybb{bottom:196.803000px;}
.y17{bottom:196.933500px;}
.y1e7{bottom:204.270000px;}
.ye9{bottom:205.050000px;}
.y156{bottom:205.120500px;}
.y128{bottom:205.452000px;}
.yba{bottom:207.054000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yaa{bottom:214.549500px;}
.y155{bottom:218.632500px;}
.y1c2{bottom:218.971500px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1e6{bottom:223.636500px;}
.y18a{bottom:224.430000px;}
.y125{bottom:225.715500px;}
.y126{bottom:225.745500px;}
.y127{bottom:229.264500px;}
.ye8{bottom:229.528500px;}
.ye7{bottom:234.684000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yfb{bottom:235.822500px;}
.y4b{bottom:237.619500px;}
.y189{bottom:241.225500px;}
.y1e5{bottom:243.004500px;}
.y7f{bottom:244.707000px;}
.ya9{bottom:244.945500px;}
.y124{bottom:245.979000px;}
.y145{bottom:249.322500px;}
.yb9{bottom:250.279500px;}
.y1c1{bottom:250.594500px;}
.ye6{bottom:253.234500px;}
.y4a{bottom:257.883000px;}
.y188{bottom:258.022500px;}
.ye3{bottom:258.390000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y154{bottom:260.737500px;}
.y1e4{bottom:262.371000px;}
.y7e{bottom:264.970500px;}
.ya8{bottom:265.209000px;}
.y123{bottom:266.244000px;}
.y1c0{bottom:269.827500px;}
.ye5{bottom:270.889500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yfa{bottom:272.973000px;}
.ye4{bottom:275.151000px;}
.y1b3{bottom:276.268500px;}
.y49{bottom:278.148000px;}
.y1e3{bottom:281.739000px;}
.y187{bottom:282.019500px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y7d{bottom:285.234000px;}
.yb8{bottom:285.280500px;}
.ya7{bottom:285.474000px;}
.y122{bottom:286.507500px;}
.y153{bottom:290.431500px;}
.y1b4{bottom:292.257000px;}
.yf9{bottom:293.238000px;}
.ye2{bottom:294.511500px;}
.y1b2{bottom:296.532000px;}
.y48{bottom:298.411500px;}
.y186{bottom:298.815000px;}
.y1e2{bottom:301.107000px;}
.y7c{bottom:305.499000px;}
.ya6{bottom:305.737500px;}
.y121{bottom:306.772500px;}
.yaf{bottom:307.710000px;}
.y144{bottom:307.950000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y146{bottom:312.861000px;}
.yf8{bottom:313.501500px;}
.y185{bottom:315.610500px;}
.y1b1{bottom:316.797000px;}
.y47{bottom:318.676500px;}
.y1e1{bottom:320.473500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ye0{bottom:323.607000px;}
.y7b{bottom:325.762500px;}
.y120{bottom:327.036000px;}
.y143{bottom:328.213500px;}
.y184{bottom:332.406000px;}
.yf7{bottom:333.765000px;}
.ydf{bottom:333.858000px;}
.ye1{bottom:335.950500px;}
.y1b0{bottom:337.060500px;}
.y46{bottom:338.940000px;}
.y1e0{bottom:339.841500px;}
.ya5{bottom:342.889500px;}
.y7a{bottom:346.027500px;}
.y11f{bottom:347.299500px;}
.ye{bottom:348.133500px;}
.y142{bottom:348.478500px;}
.y183{bottom:349.201500px;}
.yf6{bottom:354.030000px;}
.y1af{bottom:357.324000px;}
.y45{bottom:359.203500px;}
.y1df{bottom:359.208000px;}
.y182{bottom:365.997000px;}
.y79{bottom:366.291000px;}
.y11e{bottom:367.564500px;}
.y141{bottom:368.742000px;}
.yf5{bottom:374.293500px;}
.yde{bottom:374.740500px;}
.y1ae{bottom:377.589000px;}
.y1de{bottom:378.576000px;}
.y44{bottom:379.468500px;}
.ya4{bottom:380.040000px;}
.y181{bottom:382.794000px;}
.y78{bottom:386.554500px;}
.yd{bottom:386.785499px;}
.y11d{bottom:387.828000px;}
.y140{bottom:389.005500px;}
.yf4{bottom:394.558500px;}
.ydd{bottom:395.004000px;}
.y1ad{bottom:397.852500px;}
.y1dd{bottom:397.944000px;}
.y180{bottom:399.589500px;}
.y43{bottom:399.732000px;}
.ya2{bottom:400.303500px;}
.ya3{bottom:405.729000px;}
.y77{bottom:406.819500px;}
.yc{bottom:408.044999px;}
.y11c{bottom:408.093000px;}
.y13f{bottom:409.270500px;}
.yf3{bottom:414.822000px;}
.y17f{bottom:416.385000px;}
.y1dc{bottom:417.310500px;}
.y1ac{bottom:418.117500px;}
.y42{bottom:419.997000px;}
.ya1{bottom:420.568500px;}
.y76{bottom:427.083000px;}
.y11b{bottom:428.356500px;}
.y13e{bottom:429.534000px;}
.ydc{bottom:432.154500px;}
.y17e{bottom:433.180500px;}
.y1db{bottom:436.678500px;}
.y1ab{bottom:438.381000px;}
.y41{bottom:440.260500px;}
.ya0{bottom:440.832000px;}
.y75{bottom:447.348000px;}
.y11a{bottom:448.620000px;}
.y13d{bottom:449.799000px;}
.y17d{bottom:449.976000px;}
.yf1{bottom:451.972500px;}
.yf2{bottom:454.063500px;}
.y1da{bottom:456.045000px;}
.y1aa{bottom:458.644500px;}
.y40{bottom:460.524000px;}
.y9f{bottom:461.095500px;}
.y17c{bottom:466.771500px;}
.y74{bottom:467.611500px;}
.y119{bottom:468.885000px;}
.ydb{bottom:469.305000px;}
.y13c{bottom:470.062500px;}
.y1d9{bottom:475.413000px;}
.y1a9{bottom:478.909500px;}
.y3f{bottom:480.789000px;}
.y9e{bottom:481.360500px;}
.y17b{bottom:483.567000px;}
.y73{bottom:487.875000px;}
.y118{bottom:489.148500px;}
.yda{bottom:489.570000px;}
.y13b{bottom:490.326000px;}
.yf0{bottom:494.629500px;}
.y1d8{bottom:494.781000px;}
.y1a8{bottom:499.173000px;}
.y17a{bottom:500.362500px;}
.y3e{bottom:501.052500px;}
.yb{bottom:502.864502px;}
.y72{bottom:508.140000px;}
.yd9{bottom:509.833500px;}
.y9d{bottom:510.591000px;}
.y1d7{bottom:514.147500px;}
.yef{bottom:514.894500px;}
.y179{bottom:517.158000px;}
.y1a7{bottom:519.438000px;}
.ya{bottom:520.864502px;}
.y3d{bottom:521.317500px;}
.y209{bottom:521.551500px;}
.y117{bottom:526.186500px;}
.y71{bottom:528.403500px;}
.yd8{bottom:530.098500px;}
.y13a{bottom:530.854500px;}
.y1d6{bottom:533.515500px;}
.y178{bottom:533.953500px;}
.yee{bottom:535.158000px;}
.y9{bottom:538.864499px;}
.y1a6{bottom:539.701500px;}
.y208{bottom:540.918000px;}
.y3c{bottom:541.581000px;}
.y9c{bottom:545.410500px;}
.y116{bottom:547.891500px;}
.y70{bottom:548.667000px;}
.yd7{bottom:550.362000px;}
.y177{bottom:550.749000px;}
.y139{bottom:551.119500px;}
.y1d5{bottom:552.882000px;}
.yed{bottom:555.423000px;}
.y8{bottom:556.864499px;}
.y1a5{bottom:559.965000px;}
.y207{bottom:560.286000px;}
.y3b{bottom:561.844500px;}
.y115{bottom:565.035000px;}
.y9b{bottom:565.674000px;}
.y176{bottom:567.544500px;}
.y6f{bottom:568.932000px;}
.y138{bottom:571.383000px;}
.y1d4{bottom:572.250000px;}
.y114{bottom:573.255000px;}
.yd6{bottom:579.457500px;}
.y1a4{bottom:580.230000px;}
.y3a{bottom:582.109500px;}
.y175{bottom:584.340000px;}
.y9a{bottom:585.939000px;}
.y6e{bottom:589.195500px;}
.yd5{bottom:589.710000px;}
.y1d3{bottom:591.618000px;}
.y137{bottom:591.646500px;}
.yec{bottom:592.573500px;}
.y206{bottom:593.142000px;}
.y1a3{bottom:600.493500px;}
.y174{bottom:601.135500px;}
.y39{bottom:602.373000px;}
.y113{bottom:605.119500px;}
.y99{bottom:606.202500px;}
.y6d{bottom:609.460500px;}
.y1d2{bottom:610.984500px;}
.y136{bottom:611.911500px;}
.y205{bottom:612.510000px;}
.y1a2{bottom:620.758500px;}
.y112{bottom:622.263000px;}
.y38{bottom:622.638000px;}
.y173{bottom:625.134000px;}
.y98{bottom:626.466000px;}
.y6c{bottom:629.724000px;}
.y1d1{bottom:630.352500px;}
.y111{bottom:630.481500px;}
.y204{bottom:631.878000px;}
.y135{bottom:632.175000px;}
.yd4{bottom:634.491000px;}
.y172{bottom:638.646000px;}
.y1a1{bottom:641.022000px;}
.y37{bottom:642.901500px;}
.y7{bottom:645.510000px;}
.y97{bottom:646.731000px;}
.y1d0{bottom:649.719000px;}
.y6b{bottom:649.987500px;}
.y203{bottom:651.244500px;}
.y134{bottom:652.438500px;}
.yd3{bottom:654.756000px;}
.y1a0{bottom:661.285500px;}
.y110{bottom:662.346000px;}
.y6{bottom:666.771000px;}
.y96{bottom:666.994500px;}
.y1cf{bottom:669.087000px;}
.y6a{bottom:670.252500px;}
.y202{bottom:670.612500px;}
.y36{bottom:672.132000px;}
.y133{bottom:672.703500px;}
.yd2{bottom:675.019500px;}
.y10f{bottom:679.489500px;}
.y171{bottom:680.751000px;}
.y19f{bottom:681.550500px;}
.y95{bottom:687.258000px;}
.y10e{bottom:687.709500px;}
.y201{bottom:689.979000px;}
.y69{bottom:690.516000px;}
.y132{bottom:692.967000px;}
.yd1{bottom:695.283000px;}
.y1ce{bottom:697.420500px;}
.y19e{bottom:701.814000px;}
.y94{bottom:707.523000px;}
.y200{bottom:709.347000px;}
.y68{bottom:710.781000px;}
.y131{bottom:713.232000px;}
.yd0{bottom:715.548000px;}
.y10d{bottom:719.574000px;}
.y170{bottom:721.203000px;}
.y19d{bottom:722.077500px;}
.y5{bottom:726.298500px;}
.y93{bottom:727.786500px;}
.y1ff{bottom:728.715000px;}
.y67{bottom:731.044500px;}
.y130{bottom:733.495500px;}
.ycf{bottom:735.811500px;}
.y10c{bottom:736.717500px;}
.y1cd{bottom:736.873500px;}
.y19c{bottom:742.342500px;}
.y10b{bottom:744.936000px;}
.y16f{bottom:745.201500px;}
.y92{bottom:748.051500px;}
.y1fe{bottom:748.081500px;}
.y35{bottom:748.548000px;}
.y66{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y12f{bottom:753.759000px;}
.y1cc{bottom:761.037000px;}
.y16e{bottom:761.997000px;}
.y19b{bottom:762.606000px;}
.y1fd{bottom:767.449500px;}
.y91{bottom:768.315000px;}
.y65{bottom:771.573000px;}
.yce{bottom:772.962000px;}
.y12e{bottom:774.024000px;}
.y1cb{bottom:776.235000px;}
.y10a{bottom:776.800500px;}
.y19a{bottom:782.871000px;}
.y16d{bottom:785.995500px;}
.y34{bottom:786.744000px;}
.y1fc{bottom:786.816000px;}
.y90{bottom:788.578500px;}
.y64{bottom:791.836500px;}
.y109{bottom:793.944000px;}
.y12d{bottom:794.287500px;}
.y1ca{bottom:800.400000px;}
.y108{bottom:802.164000px;}
.y16c{bottom:802.791000px;}
.y199{bottom:803.134500px;}
.y1fb{bottom:806.184000px;}
.y33{bottom:807.009000px;}
.y8e{bottom:808.843500px;}
.ycd{bottom:810.114000px;}
.y63{bottom:812.101500px;}
.y8f{bottom:814.267500px;}
.y12c{bottom:814.552500px;}
.y16b{bottom:819.586500px;}
.y198{bottom:823.398000px;}
.y1c9{bottom:824.565000px;}
.y1fa{bottom:825.552000px;}
.ycc{bottom:826.686000px;}
.y32{bottom:827.272500px;}
.y8d{bottom:829.107000px;}
.ycb{bottom:830.377500px;}
.y62{bottom:832.365000px;}
.y107{bottom:834.024000px;}
.y106{bottom:835.362000px;}
.y16a{bottom:836.382000px;}
.y1c8{bottom:839.763000px;}
.y197{bottom:843.663000px;}
.y12b{bottom:843.783000px;}
.y105{bottom:844.722000px;}
.y1f9{bottom:844.918500px;}
.y31{bottom:847.537500px;}
.y147{bottom:847.611450px;}
.y8c{bottom:849.372000px;}
.y61{bottom:852.628500px;}
.y169{bottom:853.177500px;}
.yc8{bottom:862.074000px;}
.y196{bottom:863.926500px;}
.y1f8{bottom:864.286500px;}
.y104{bottom:866.553000px;}
.y30{bottom:867.801000px;}
.yc9{bottom:868.591500px;}
.yca{bottom:868.635000px;}
.y8b{bottom:869.635500px;}
.y168{bottom:869.973000px;}
.yb0{bottom:870.790950px;}
.yc7{bottom:872.326500px;}
.y1b5{bottom:872.508450px;}
.y60{bottom:872.893500px;}
.yc6{bottom:875.875500px;}
.y12a{bottom:878.602500px;}
.y2{bottom:879.369000px;}
.y103{bottom:882.991500px;}
.y1f7{bottom:883.653000px;}
.y195{bottom:884.191500px;}
.y167{bottom:886.768500px;}
.y2f{bottom:888.064500px;}
.y8a{bottom:889.899000px;}
.y5f{bottom:893.157000px;}
.y1f6{bottom:903.021000px;}
.y166{bottom:903.564000px;}
.y194{bottom:904.455000px;}
.y89{bottom:910.164000px;}
.y5e{bottom:913.422000px;}
.y102{bottom:914.611500px;}
.yc5{bottom:916.582500px;}
.y165{bottom:920.359500px;}
.y1f5{bottom:922.389000px;}
.y2c{bottom:923.497464px;}
.y2b{bottom:924.264000px;}
.y193{bottom:924.718500px;}
.y88{bottom:930.427500px;}
.y5d{bottom:933.685500px;}
.y101{bottom:933.844500px;}
.yc4{bottom:936.846000px;}
.y164{bottom:937.155000px;}
.y1f4{bottom:941.755500px;}
.y192{bottom:944.983500px;}
.y87{bottom:950.692500px;}
.y5c{bottom:953.949000px;}
.y163{bottom:953.950500px;}
.y1f3{bottom:961.123500px;}
.y2a{bottom:963.270000px;}
.y191{bottom:965.247000px;}
.y1{bottom:966.726000px;}
.y162{bottom:970.746000px;}
.y86{bottom:970.956000px;}
.yc3{bottom:973.998000px;}
.y5b{bottom:974.214000px;}
.y1f2{bottom:980.490000px;}
.y29{bottom:981.426000px;}
.y190{bottom:985.512000px;}
.y161{bottom:987.541500px;}
.y85{bottom:991.219500px;}
.y5a{bottom:994.477500px;}
.y28{bottom:999.583500px;}
.y1f1{bottom:999.858000px;}
.y160{bottom:1004.337000px;}
.y18f{bottom:1005.775500px;}
.yc2{bottom:1011.148500px;}
.y84{bottom:1011.484500px;}
.y59{bottom:1014.742500px;}
.y1f0{bottom:1019.226000px;}
.y15f{bottom:1021.132500px;}
.y18e{bottom:1026.039000px;}
.y27{bottom:1026.706500px;}
.yc1{bottom:1031.412000px;}
.y83{bottom:1031.748000px;}
.y58{bottom:1035.006000px;}
.y15e{bottom:1037.928000px;}
.y1ef{bottom:1038.592500px;}
.y18d{bottom:1046.304000px;}
.y82{bottom:1052.013000px;}
.y57{bottom:1055.269500px;}
.y1ee{bottom:1057.960500px;}
.y15d{bottom:1061.926500px;}
.yc0{bottom:1062.585000px;}
.y18c{bottom:1066.567500px;}
.y26{bottom:1071.244500px;}
.ybf{bottom:1072.837500px;}
.y15c{bottom:1075.438500px;}
.y55{bottom:1075.534500px;}
.y1ed{bottom:1077.327000px;}
.y56{bottom:1080.958500px;}
.y81{bottom:1081.243500px;}
.y18b{bottom:1086.832500px;}
.y54{bottom:1095.798000px;}
.y1ec{bottom:1096.695000px;}
.y25{bottom:1100.145000px;}
.y129{bottom:1101.223500px;}
.y53{bottom:1116.063000px;}
.y15b{bottom:1117.543500px;}
.yeb{bottom:1121.487000px;}
.y21{bottom:1137.954000px;}
.y52{bottom:1168.366500px;}
.h12{height:25.508090px;}
.h1a{height:26.110157px;}
.h4a{height:30.252344px;}
.h42{height:31.891579px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1d{height:33.072749px;}
.h14{height:33.112997px;}
.h13{height:34.199443px;}
.h1b{height:34.813397px;}
.h1c{height:35.052500px;}
.h24{height:35.115117px;}
.h25{height:35.991211px;}
.hc{height:36.277321px;}
.h4e{height:37.712678px;}
.h5f{height:38.143066px;}
.h5e{height:38.412058px;}
.h49{height:38.896243px;}
.h3f{height:38.974950px;}
.h11{height:39.165235px;}
.h5d{height:39.418945px;}
.h5b{height:39.434227px;}
.h27{height:39.603516px;}
.h52{height:40.575235px;}
.h21{height:41.544042px;}
.h45{height:41.842920px;}
.h57{height:41.897461px;}
.h20{height:41.962471px;}
.h1e{height:42.380900px;}
.h17{height:42.679778px;}
.h15{height:43.217759px;}
.h16{height:43.516637px;}
.he{height:43.815515px;}
.h28{height:43.886426px;}
.h59{height:44.091914px;}
.h10{height:44.473046px;}
.hd{height:44.827234px;}
.h7{height:45.960000px;}
.h31{height:46.714950px;}
.h1f{height:47.338950px;}
.h30{height:47.344950px;}
.h26{height:48.091113px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.hb{height:50.931027px;}
.h54{height:51.939235px;}
.h51{height:51.945235px;}
.h56{height:52.558594px;}
.h18{height:54.768749px;}
.h19{height:54.774749px;}
.h2{height:55.152000px;}
.h22{height:57.989897px;}
.h39{height:58.581515px;}
.h36{height:58.755515px;}
.h37{height:61.954760px;}
.h32{height:61.960760px;}
.h3a{height:61.990760px;}
.h48{height:63.137897px;}
.h43{height:66.154157px;}
.h4b{height:67.692344px;}
.h40{height:70.180346px;}
.h4f{height:72.039235px;}
.h53{height:72.045235px;}
.h4d{height:73.044344px;}
.h4c{height:73.050344px;}
.h38{height:76.720760px;}
.hf{height:77.792486px;}
.h5{height:78.132000px;}
.h5a{height:80.836243px;}
.h46{height:81.718157px;}
.h44{height:82.582760px;}
.h35{height:82.588760px;}
.h2e{height:83.980637px;}
.h2b{height:83.986637px;}
.h3c{height:84.526637px;}
.h34{height:84.646637px;}
.h58{height:86.933426px;}
.h41{height:87.226346px;}
.h33{height:87.448471px;}
.h3b{height:91.401515px;}
.h3d{height:91.407515px;}
.h47{height:95.648462px;}
.h2c{height:98.766749px;}
.h50{height:104.919235px;}
.h2f{height:118.210760px;}
.h4{height:119.055004px;}
.h3e{height:122.722157px;}
.h2d{height:132.740462px;}
.h2a{height:134.165906px;}
.h29{height:139.207094px;}
.h55{height:818.148000px;}
.h23{height:823.299000px;}
.h5c{height:838.752000px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w6{width:637.005900px;}
.w2{width:637.794021px;}
.w7{width:639.580350px;}
.w8{width:649.023900px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x95{left:-14.793150px;}
.x3c{left:-10.500600px;}
.xa9{left:-5.349600px;}
.x0{left:0.000000px;}
.x3e{left:21.359400px;}
.xab{left:26.510400px;}
.xa{left:29.274117px;}
.x9c{left:50.008108px;}
.x3d{left:51.059400px;}
.x9b{left:52.976850px;}
.x9a{left:55.226850px;}
.x6{left:60.141348px;}
.x98{left:73.406420px;}
.x97{left:76.736850px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.x8{left:122.110500px;}
.x7{left:123.307500px;}
.x94{left:126.667650px;}
.x3b{left:127.955100px;}
.x2f{left:131.379000px;}
.x89{left:133.780500px;}
.xf{left:135.703500px;}
.x51{left:137.202000px;}
.x68{left:145.336500px;}
.xc{left:146.692500px;}
.x47{left:150.372000px;}
.x8b{left:154.707000px;}
.x7b{left:163.468500px;}
.x74{left:166.479000px;}
.x71{left:169.438500px;}
.x18{left:174.118500px;}
.x40{left:175.410000px;}
.xa4{left:179.668500px;}
.x19{left:181.591500px;}
.xb{left:188.961000px;}
.xa3{left:191.478000px;}
.x7e{left:199.038000px;}
.x29{left:201.381000px;}
.x4{left:203.484001px;}
.x9d{left:204.589500px;}
.x99{left:206.246850px;}
.x2a{left:208.852500px;}
.xa1{left:210.213000px;}
.x38{left:211.734000px;}
.xa0{left:212.821500px;}
.x12{left:215.229000px;}
.xa7{left:217.266000px;}
.x9e{left:218.874000px;}
.xa5{left:220.897500px;}
.xa6{left:223.212000px;}
.x13{left:225.403500px;}
.xa8{left:227.844000px;}
.x48{left:230.262000px;}
.x7f{left:231.772500px;}
.x39{left:234.103500px;}
.x61{left:235.308000px;}
.x79{left:238.333500px;}
.x7c{left:242.025000px;}
.x84{left:249.186000px;}
.x30{left:250.783500px;}
.x43{left:253.369500px;}
.x76{left:254.946000px;}
.x66{left:259.671000px;}
.xac{left:261.016500px;}
.x31{left:264.444000px;}
.x58{left:265.669500px;}
.x1a{left:267.757500px;}
.x32{left:271.863000px;}
.x50{left:273.222000px;}
.x1b{left:275.230500px;}
.x5e{left:276.853500px;}
.x52{left:277.963500px;}
.x33{left:284.731500px;}
.x4b{left:286.969500px;}
.x4a{left:290.310000px;}
.x53{left:297.840000px;}
.x69{left:303.784500px;}
.x45{left:309.069000px;}
.x41{left:312.789000px;}
.x59{left:315.145500px;}
.x85{left:316.606500px;}
.x7d{left:321.558000px;}
.x4c{left:328.902000px;}
.x3f{left:330.058786px;}
.x5f{left:331.285500px;}
.x9f{left:335.385000px;}
.x63{left:350.208000px;}
.x20{left:356.730000px;}
.x8c{left:358.626000px;}
.x21{left:364.203000px;}
.x80{left:367.519500px;}
.x8d{left:369.294000px;}
.x49{left:372.729000px;}
.x75{left:374.721000px;}
.x64{left:380.253000px;}
.x60{left:381.819000px;}
.x77{left:382.951500px;}
.x56{left:386.481000px;}
.x46{left:388.533000px;}
.x86{left:392.947500px;}
.x78{left:394.942500px;}
.x8f{left:399.118500px;}
.x8e{left:402.459000px;}
.xa2{left:405.214500px;}
.x1c{left:408.130500px;}
.x3a{left:411.034500px;}
.x1d{left:415.602000px;}
.x4d{left:417.396000px;}
.x6f{left:426.136500px;}
.x65{left:428.190000px;}
.x34{left:436.176000px;}
.x70{left:437.818500px;}
.x81{left:442.573500px;}
.x44{left:452.062500px;}
.x3{left:454.959000px;}
.x42{left:457.329000px;}
.x35{left:463.657500px;}
.x57{left:466.008000px;}
.x62{left:473.247000px;}
.x2b{left:479.590500px;}
.x4e{left:487.701000px;}
.x22{left:488.802000px;}
.x2c{left:491.773500px;}
.x23{left:496.273500px;}
.x54{left:499.141500px;}
.x67{left:512.644500px;}
.x8a{left:515.863500px;}
.x5c{left:519.337500px;}
.xd{left:520.972500px;}
.x55{left:525.213000px;}
.x4f{left:531.480000px;}
.xe{left:532.677000px;}
.x24{left:534.540000px;}
.x7a{left:539.542500px;}
.x25{left:542.011500px;}
.x5d{left:543.877500px;}
.x10{left:546.378000px;}
.x11{left:559.305000px;}
.x91{left:575.505000px;}
.x90{left:577.149000px;}
.x2d{left:580.567500px;}
.x92{left:583.768500px;}
.x83{left:586.953000px;}
.x2e{left:593.086500px;}
.x93{left:595.491000px;}
.x1e{left:597.360000px;}
.x87{left:603.249000px;}
.x1f{left:604.831500px;}
.x6a{left:611.508000px;}
.x6b{left:620.739000px;}
.x6c{left:627.321000px;}
.x14{left:628.983000px;}
.x15{left:636.454500px;}
.x82{left:638.679000px;}
.x96{left:639.686700px;}
.x26{left:642.408000px;}
.x27{left:649.881000px;}
.xaa{left:651.380250px;}
.x72{left:664.233000px;}
.x88{left:666.210000px;}
.x6d{left:670.461000px;}
.x6e{left:678.742500px;}
.x9{left:701.339982px;}
.x5a{left:710.277000px;}
.x73{left:714.949500px;}
.x36{left:730.648500px;}
.x16{left:734.137500px;}
.x5b{left:736.575000px;}
.x17{left:741.610500px;}
.x37{left:743.431500px;}
.x28{left:749.037000px;}
@media print{
.v1f{vertical-align:-23.621333pt;}
.v1b{vertical-align:-21.370667pt;}
.v13{vertical-align:-16.720000pt;}
.v2{vertical-align:-15.429333pt;}
.v7{vertical-align:-10.882560pt;}
.v4{vertical-align:-9.034667pt;}
.v3{vertical-align:-7.973333pt;}
.v19{vertical-align:-6.880000pt;}
.v0{vertical-align:0.000000pt;}
.v25{vertical-align:1.253333pt;}
.vc{vertical-align:4.157632pt;}
.v8{vertical-align:10.880000pt;}
.v12{vertical-align:13.280000pt;}
.v6{vertical-align:14.256000pt;}
.v1c{vertical-align:15.152000pt;}
.v22{vertical-align:18.330667pt;}
.v1{vertical-align:19.285333pt;}
.v21{vertical-align:20.938667pt;}
.v5{vertical-align:21.946667pt;}
.v16{vertical-align:25.578667pt;}
.v24{vertical-align:26.522667pt;}
.v20{vertical-align:29.072000pt;}
.v1d{vertical-align:30.496000pt;}
.v15{vertical-align:33.264000pt;}
.va{vertical-align:35.836864pt;}
.v23{vertical-align:37.621333pt;}
.v9{vertical-align:40.320480pt;}
.v14{vertical-align:42.298667pt;}
.v1e{vertical-align:44.656000pt;}
.v17{vertical-align:50.117333pt;}
.v10{vertical-align:51.941333pt;}
.vb{vertical-align:55.356864pt;}
.vd{vertical-align:58.394667pt;}
.v1a{vertical-align:60.000000pt;}
.ve{vertical-align:65.488000pt;}
.v11{vertical-align:70.277333pt;}
.v18{vertical-align:74.304000pt;}
.vf{vertical-align:101.936000pt;}
.ls4e{letter-spacing:-0.240480pt;}
.ls4d{letter-spacing:-0.090848pt;}
.ls48{letter-spacing:-0.076608pt;}
.lse3{letter-spacing:-0.042752pt;}
.ls51{letter-spacing:-0.026720pt;}
.lse5{letter-spacing:-0.016032pt;}
.ls49{letter-spacing:-0.010688pt;}
.ls52{letter-spacing:-0.005344pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000110pt;}
.ls65{letter-spacing:0.000133pt;}
.ls24{letter-spacing:0.000155pt;}
.lsf4{letter-spacing:0.000444pt;}
.ls9{letter-spacing:0.000577pt;}
.lsdc{letter-spacing:0.000934pt;}
.ls79{letter-spacing:0.000993pt;}
.ls20{letter-spacing:0.001015pt;}
.lsa9{letter-spacing:0.001067pt;}
.ls78{letter-spacing:0.001349pt;}
.ls1c{letter-spacing:0.001630pt;}
.lsa{letter-spacing:0.001977pt;}
.lsf3{letter-spacing:0.002078pt;}
.lsc3{letter-spacing:0.002097pt;}
.lsd0{letter-spacing:0.002118pt;}
.lsdb{letter-spacing:0.002165pt;}
.ls5d{letter-spacing:0.002285pt;}
.ls23{letter-spacing:0.002422pt;}
.lsf5{letter-spacing:0.002452pt;}
.lsf7{letter-spacing:0.002517pt;}
.ls40{letter-spacing:0.002726pt;}
.ls7c{letter-spacing:0.002874pt;}
.ls97{letter-spacing:0.002926pt;}
.ls7{letter-spacing:0.003100pt;}
.lseb{letter-spacing:0.003106pt;}
.ls41{letter-spacing:0.003198pt;}
.lse9{letter-spacing:0.003409pt;}
.lsad{letter-spacing:0.003454pt;}
.ls3b{letter-spacing:0.003505pt;}
.ls36{letter-spacing:0.003638pt;}
.lsac{letter-spacing:0.003661pt;}
.lsc1{letter-spacing:0.003733pt;}
.ls10{letter-spacing:0.003942pt;}
.ls82{letter-spacing:0.004013pt;}
.ls1a{letter-spacing:0.004237pt;}
.lsd8{letter-spacing:0.004267pt;}
.lse{letter-spacing:0.004541pt;}
.lse1{letter-spacing:0.004800pt;}
.lsec{letter-spacing:0.014400pt;}
.ls29{letter-spacing:0.019200pt;}
.lsdf{letter-spacing:0.024000pt;}
.ls28{letter-spacing:0.028800pt;}
.ls25{letter-spacing:0.029792pt;}
.lsf1{letter-spacing:0.042752pt;}
.lsee{letter-spacing:0.048000pt;}
.lsf2{letter-spacing:0.058784pt;}
.lsef{letter-spacing:0.062400pt;}
.lse2{letter-spacing:0.067200pt;}
.lsf0{letter-spacing:0.069472pt;}
.lse4{letter-spacing:0.074816pt;}
.lse8{letter-spacing:0.112224pt;}
.lse6{letter-spacing:0.128256pt;}
.ls50{letter-spacing:0.133600pt;}
.lse7{letter-spacing:0.144288pt;}
.ls27{letter-spacing:0.161728pt;}
.lse0{letter-spacing:0.163200pt;}
.ls26{letter-spacing:0.170240pt;}
.lsa0{letter-spacing:0.255684pt;}
.lsaf{letter-spacing:0.355720pt;}
.lsae{letter-spacing:0.398473pt;}
.ls99{letter-spacing:0.451918pt;}
.lsa8{letter-spacing:0.457251pt;}
.lsf6{letter-spacing:0.478097pt;}
.lsb3{letter-spacing:0.487835pt;}
.lsa7{letter-spacing:0.502490pt;}
.lsc9{letter-spacing:0.504259pt;}
.ls98{letter-spacing:0.504787pt;}
.lscd{letter-spacing:0.504939pt;}
.ls14{letter-spacing:0.596214pt;}
.ls38{letter-spacing:0.601548pt;}
.ls6d{letter-spacing:0.661139pt;}
.ls68{letter-spacing:0.661467pt;}
.ls42{letter-spacing:0.662839pt;}
.ls55{letter-spacing:0.664060pt;}
.ls7d{letter-spacing:0.664259pt;}
.ls67{letter-spacing:0.664877pt;}
.ls45{letter-spacing:0.664939pt;}
.ls93{letter-spacing:0.665067pt;}
.ls13{letter-spacing:0.666473pt;}
.lsa2{letter-spacing:0.666777pt;}
.ls69{letter-spacing:0.668173pt;}
.lsaa{letter-spacing:0.705118pt;}
.ls80{letter-spacing:0.925897pt;}
.ls96{letter-spacing:0.931230pt;}
.ls8{letter-spacing:1.133683pt;}
.lsa5{letter-spacing:1.262881pt;}
.ls92{letter-spacing:1.330114pt;}
.ls74{letter-spacing:1.331543pt;}
.ls4f{letter-spacing:1.357376pt;}
.ls3{letter-spacing:1.654338pt;}
.ls4a{letter-spacing:1.678016pt;}
.ls60{letter-spacing:2.048518pt;}
.ls2e{letter-spacing:2.331816pt;}
.ls9a{letter-spacing:2.653090pt;}
.ls39{letter-spacing:2.654172pt;}
.ls3f{letter-spacing:2.657067pt;}
.lsb8{letter-spacing:2.658423pt;}
.ls1f{letter-spacing:2.659505pt;}
.lsbb{letter-spacing:2.979962pt;}
.lsb1{letter-spacing:3.052945pt;}
.ls2f{letter-spacing:3.054189pt;}
.ls9c{letter-spacing:3.159612pt;}
.lsb9{letter-spacing:3.164945pt;}
.ls2d{letter-spacing:3.311402pt;}
.ls37{letter-spacing:3.318400pt;}
.ls7f{letter-spacing:3.318908pt;}
.ls17{letter-spacing:3.320838pt;}
.ls66{letter-spacing:3.323733pt;}
.ls2b{letter-spacing:3.374317pt;}
.ls9e{letter-spacing:3.418351pt;}
.lsa4{letter-spacing:3.641295pt;}
.ls83{letter-spacing:5.309090pt;}
.lsb5{letter-spacing:5.314278pt;}
.ls35{letter-spacing:6.371733pt;}
.ls70{letter-spacing:6.375756pt;}
.lsca{letter-spacing:6.376531pt;}
.ls3e{letter-spacing:6.377067pt;}
.lscc{letter-spacing:6.730161pt;}
.ls9f{letter-spacing:6.861169pt;}
.lsed{letter-spacing:7.209600pt;}
.ls73{letter-spacing:7.800787pt;}
.ls76{letter-spacing:7.806121pt;}
.ls2c{letter-spacing:8.811761pt;}
.ls58{letter-spacing:8.855756pt;}
.ls77{letter-spacing:10.329067pt;}
.ls15{letter-spacing:10.329874pt;}
.ls34{letter-spacing:10.330777pt;}
.ls56{letter-spacing:10.333089pt;}
.ls8d{letter-spacing:10.334400pt;}
.ls33{letter-spacing:10.335207pt;}
.ls16{letter-spacing:10.336110pt;}
.lsda{letter-spacing:10.624017pt;}
.ls6{letter-spacing:10.626533pt;}
.ls94{letter-spacing:10.932214pt;}
.ls18{letter-spacing:10.968429pt;}
.ls5a{letter-spacing:10.973762pt;}
.ls95{letter-spacing:10.992110pt;}
.ls61{letter-spacing:10.993349pt;}
.lsa3{letter-spacing:10.995733pt;}
.ls43{letter-spacing:10.999756pt;}
.ls4c{letter-spacing:11.436160pt;}
.ls44{letter-spacing:11.510400pt;}
.ls31{letter-spacing:11.956267pt;}
.ls4{letter-spacing:12.539593pt;}
.ls8b{letter-spacing:12.966349pt;}
.ls7e{letter-spacing:12.987682pt;}
.lsd1{letter-spacing:13.070931pt;}
.lsd{letter-spacing:13.177199pt;}
.lsdd{letter-spacing:13.230333pt;}
.ls87{letter-spacing:13.234209pt;}
.lsb6{letter-spacing:13.280133pt;}
.ls6a{letter-spacing:13.281867pt;}
.ls1d{letter-spacing:13.282422pt;}
.ls9b{letter-spacing:13.283198pt;}
.lsc{letter-spacing:13.283467pt;}
.ls1{letter-spacing:13.283733pt;}
.ls89{letter-spacing:13.284541pt;}
.lsb0{letter-spacing:13.285257pt;}
.lsc5{letter-spacing:13.285443pt;}
.ls8a{letter-spacing:13.327207pt;}
.ls85{letter-spacing:13.366300pt;}
.lsb{letter-spacing:13.389734pt;}
.lsc2{letter-spacing:13.450313pt;}
.lsc4{letter-spacing:13.549897pt;}
.ls59{letter-spacing:13.649067pt;}
.ls3c{letter-spacing:13.654400pt;}
.ls86{letter-spacing:13.671721pt;}
.lsbf{letter-spacing:13.787733pt;}
.lsb7{letter-spacing:13.789865pt;}
.ls81{letter-spacing:13.881548pt;}
.ls57{letter-spacing:13.946473pt;}
.ls46{letter-spacing:13.949089pt;}
.lsde{letter-spacing:14.080475pt;}
.ls22{letter-spacing:14.757443pt;}
.ls1b{letter-spacing:14.773139pt;}
.ls4b{letter-spacing:14.818912pt;}
.ls12{letter-spacing:15.395096pt;}
.ls53{letter-spacing:15.400429pt;}
.ls64{letter-spacing:15.420016pt;}
.ls72{letter-spacing:15.422305pt;}
.lsa6{letter-spacing:15.422400pt;}
.ls75{letter-spacing:15.423207pt;}
.ls6e{letter-spacing:15.423806pt;}
.ls6b{letter-spacing:15.424993pt;}
.lsf{letter-spacing:15.939505pt;}
.ls21{letter-spacing:16.036541pt;}
.ls91{letter-spacing:16.061762pt;}
.lsb2{letter-spacing:16.302386pt;}
.lsc0{letter-spacing:16.398584pt;}
.ls5b{letter-spacing:16.606172pt;}
.lscb{letter-spacing:17.019733pt;}
.ls54{letter-spacing:17.347096pt;}
.ls2a{letter-spacing:17.780062pt;}
.lsea{letter-spacing:17.906113pt;}
.ls32{letter-spacing:18.078172pt;}
.lsbc{letter-spacing:18.081067pt;}
.ls11{letter-spacing:18.083505pt;}
.lsb4{letter-spacing:18.403962pt;}
.lsc8{letter-spacing:18.594278pt;}
.ls1e{letter-spacing:19.049346pt;}
.lsab{letter-spacing:20.115918pt;}
.ls6f{letter-spacing:20.218777pt;}
.ls7a{letter-spacing:20.419454pt;}
.ls90{letter-spacing:20.732945pt;}
.ls7b{letter-spacing:20.738278pt;}
.lsbd{letter-spacing:21.773762pt;}
.ls5f{letter-spacing:22.026777pt;}
.ls62{letter-spacing:22.134326pt;}
.lsc7{letter-spacing:23.368429pt;}
.ls8c{letter-spacing:23.562777pt;}
.ls8e{letter-spacing:23.616110pt;}
.lscf{letter-spacing:23.776110pt;}
.ls3d{letter-spacing:24.253762pt;}
.ls5e{letter-spacing:24.686172pt;}
.ls2{letter-spacing:28.452898pt;}
.lsba{letter-spacing:29.678584pt;}
.lsbe{letter-spacing:30.027733pt;}
.lsce{letter-spacing:30.157203pt;}
.ls88{letter-spacing:35.053762pt;}
.lsa1{letter-spacing:43.883733pt;}
.ls9d{letter-spacing:48.510584pt;}
.ls71{letter-spacing:58.983200pt;}
.ls5{letter-spacing:59.654400pt;}
.lsd7{letter-spacing:197.768158pt;}
.lsd6{letter-spacing:216.126430pt;}
.lsd2{letter-spacing:216.968158pt;}
.lsd5{letter-spacing:218.667657pt;}
.lsd4{letter-spacing:236.168158pt;}
.lsd3{letter-spacing:247.467657pt;}
.ls47{letter-spacing:433.384838pt;}
.ls84{letter-spacing:501.314874pt;}
.ls30{letter-spacing:588.475936pt;}
.ls5c{letter-spacing:628.770422pt;}
.ls3a{letter-spacing:644.654172pt;}
.ls19{letter-spacing:824.851505pt;}
.ls63{letter-spacing:857.774172pt;}
.lsc6{letter-spacing:864.856838pt;}
.ls8f{letter-spacing:892.748945pt;}
.lsd9{letter-spacing:1112.126029pt;}
.ws47{word-spacing:-68.258912pt;}
.ws48{word-spacing:-64.876160pt;}
.ws46{word-spacing:-55.118016pt;}
.ws4b{word-spacing:-54.797376pt;}
.ws49{word-spacing:-53.349152pt;}
.ws4a{word-spacing:-53.199520pt;}
.ws4f{word-spacing:-40.947213pt;}
.ws3e{word-spacing:-36.981171pt;}
.ws6d{word-spacing:-32.326861pt;}
.ws69{word-spacing:-28.105779pt;}
.ws5a{word-spacing:-25.984825pt;}
.ws5b{word-spacing:-23.697705pt;}
.ws6a{word-spacing:-22.188851pt;}
.ws50{word-spacing:-21.359814pt;}
.ws17{word-spacing:-15.461955pt;}
.ws1{word-spacing:-14.692637pt;}
.ws86{word-spacing:-13.915853pt;}
.ws13{word-spacing:-13.283467pt;}
.ws2{word-spacing:-11.955200pt;}
.ws44{word-spacing:-10.810240pt;}
.ws45{word-spacing:-10.640000pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws4d{word-spacing:-4.426666pt;}
.ws5c{word-spacing:-4.410111pt;}
.ws31{word-spacing:-3.666237pt;}
.ws6f{word-spacing:-3.400567pt;}
.wsdc{word-spacing:-3.156173pt;}
.ws83{word-spacing:-3.028630pt;}
.wsfb{word-spacing:-2.917069pt;}
.ws7a{word-spacing:-2.869229pt;}
.ws70{word-spacing:-2.656693pt;}
.ws2d{word-spacing:-2.444158pt;}
.wscf{word-spacing:-2.072221pt;}
.wsd{word-spacing:-2.019087pt;}
.wsc9{word-spacing:-1.875744pt;}
.ws27{word-spacing:-1.753418pt;}
.wsf1{word-spacing:-1.721549pt;}
.ws5{word-spacing:-1.696326pt;}
.wsed{word-spacing:-1.625907pt;}
.ws77{word-spacing:-1.594016pt;}
.ws9e{word-spacing:-1.540882pt;}
.ws2f{word-spacing:-1.487748pt;}
.ws82{word-spacing:-1.434614pt;}
.wsec{word-spacing:-1.338982pt;}
.ws33{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.wsc{word-spacing:-1.115811pt;}
.ws76{word-spacing:-1.062677pt;}
.ws11{word-spacing:-1.009543pt;}
.wsd6{word-spacing:-0.956416pt;}
.ws74{word-spacing:-0.850142pt;}
.ws3c{word-spacing:-0.797008pt;}
.ws7f{word-spacing:-0.584473pt;}
.ws38{word-spacing:-0.531339pt;}
.wse8{word-spacing:-0.526029pt;}
.ws63{word-spacing:-0.478205pt;}
.ws12{word-spacing:-0.425071pt;}
.ws78{word-spacing:-0.371937pt;}
.ws64{word-spacing:-0.318803pt;}
.wsc8{word-spacing:-0.304608pt;}
.ws2e{word-spacing:-0.265669pt;}
.ws53{word-spacing:-0.246848pt;}
.ws54{word-spacing:-0.238336pt;}
.ws22{word-spacing:-0.212535pt;}
.wse3{word-spacing:-0.191283pt;}
.ws42{word-spacing:-0.170029pt;}
.ws20{word-spacing:-0.159402pt;}
.wsa6{word-spacing:-0.153600pt;}
.wse6{word-spacing:-0.143462pt;}
.ws43{word-spacing:-0.127522pt;}
.ws1f{word-spacing:-0.106268pt;}
.ws103{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.wsb1{word-spacing:-0.047821pt;}
.ws19{word-spacing:-0.042507pt;}
.ws7c{word-spacing:-0.042078pt;}
.ws51{word-spacing:-0.040382pt;}
.ws6b{word-spacing:-0.031881pt;}
.wsb0{word-spacing:-0.026720pt;}
.ws93{word-spacing:-0.005517pt;}
.ws40{word-spacing:-0.002096pt;}
.ws95{word-spacing:-0.001902pt;}
.ws41{word-spacing:-0.000990pt;}
.ws0{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.001266pt;}
.ws94{word-spacing:0.001749pt;}
.ws3f{word-spacing:0.002833pt;}
.wsaa{word-spacing:0.010688pt;}
.wscc{word-spacing:0.042752pt;}
.wsf4{word-spacing:0.047821pt;}
.ws15{word-spacing:0.053134pt;}
.ws59{word-spacing:0.090848pt;}
.wsd7{word-spacing:0.095642pt;}
.wsa9{word-spacing:0.096000pt;}
.ws57{word-spacing:0.096192pt;}
.wsab{word-spacing:0.101536pt;}
.ws8{word-spacing:0.106268pt;}
.ws58{word-spacing:0.112224pt;}
.ws55{word-spacing:0.134400pt;}
.wsa7{word-spacing:0.139200pt;}
.wsde{word-spacing:0.143462pt;}
.ws56{word-spacing:0.144000pt;}
.wsa8{word-spacing:0.158400pt;}
.ws7{word-spacing:0.159402pt;}
.wsf7{word-spacing:0.191283pt;}
.wsf{word-spacing:0.212535pt;}
.ws52{word-spacing:0.212800pt;}
.wsd9{word-spacing:0.239104pt;}
.ws1b{word-spacing:0.255043pt;}
.ws6{word-spacing:0.265669pt;}
.ws10{word-spacing:0.318803pt;}
.wsd0{word-spacing:0.371937pt;}
.wsfc{word-spacing:0.430387pt;}
.ws87{word-spacing:0.621670pt;}
.ws85{word-spacing:0.669491pt;}
.ws97{word-spacing:0.690740pt;}
.wse1{word-spacing:0.717312pt;}
.ws16{word-spacing:0.743874pt;}
.ws73{word-spacing:0.797008pt;}
.ws26{word-spacing:0.850142pt;}
.ws9b{word-spacing:0.903276pt;}
.ws84{word-spacing:0.908595pt;}
.ws9c{word-spacing:0.956410pt;}
.ws98{word-spacing:1.009543pt;}
.ws96{word-spacing:1.115811pt;}
.ws21{word-spacing:1.222079pt;}
.ws9d{word-spacing:1.381481pt;}
.ws66{word-spacing:1.487748pt;}
.ws9f{word-spacing:1.540882pt;}
.wsa1{word-spacing:1.647150pt;}
.ws2b{word-spacing:1.806551pt;}
.wsea{word-spacing:2.056294pt;}
.wsb8{word-spacing:2.072221pt;}
.wsc0{word-spacing:2.125355pt;}
.wsff{word-spacing:2.151936pt;}
.ws14{word-spacing:2.178489pt;}
.ws9a{word-spacing:2.337890pt;}
.ws99{word-spacing:2.391024pt;}
.wsb9{word-spacing:2.656693pt;}
.wse5{word-spacing:2.677965pt;}
.ws28{word-spacing:2.816095pt;}
.wsd2{word-spacing:2.922363pt;}
.wsba{word-spacing:3.134898pt;}
.ws6e{word-spacing:3.188032pt;}
.ws2a{word-spacing:3.347434pt;}
.ws29{word-spacing:3.400567pt;}
.wsc3{word-spacing:3.443098pt;}
.ws35{word-spacing:3.453701pt;}
.wsce{word-spacing:3.506835pt;}
.ws2c{word-spacing:3.613103pt;}
.wsbf{word-spacing:3.719371pt;}
.wsc2{word-spacing:3.777843pt;}
.ws39{word-spacing:3.825638pt;}
.wsca{word-spacing:3.885088pt;}
.ws72{word-spacing:4.091308pt;}
.ws24{word-spacing:4.144442pt;}
.wsf3{word-spacing:4.160410pt;}
.wsbd{word-spacing:4.197575pt;}
.wsf0{word-spacing:4.208230pt;}
.wsbe{word-spacing:4.250709pt;}
.ws1a{word-spacing:4.250720pt;}
.ws71{word-spacing:4.463245pt;}
.wsbc{word-spacing:4.569513pt;}
.wsbb{word-spacing:4.622646pt;}
.wsd5{word-spacing:4.781175pt;}
.ws18{word-spacing:4.782048pt;}
.ws3{word-spacing:4.782080pt;}
.wsdf{word-spacing:4.784000pt;}
.ws5d{word-spacing:4.888316pt;}
.wsd4{word-spacing:5.069005pt;}
.wscd{word-spacing:5.100851pt;}
.wsa2{word-spacing:5.260253pt;}
.wsa{word-spacing:5.307978pt;}
.wsb{word-spacing:5.313387pt;}
.wsd3{word-spacing:5.403750pt;}
.wsb7{word-spacing:5.419654pt;}
.ws25{word-spacing:5.579056pt;}
.wsc1{word-spacing:5.685324pt;}
.wsa0{word-spacing:5.738458pt;}
.ws23{word-spacing:5.844725pt;}
.ws67{word-spacing:6.004127pt;}
.ws7d{word-spacing:6.057261pt;}
.ws30{word-spacing:6.110395pt;}
.ws7e{word-spacing:6.216662pt;}
.ws9{word-spacing:6.269796pt;}
.wsda{word-spacing:6.790554pt;}
.ws37{word-spacing:7.013670pt;}
.wsc7{word-spacing:7.147200pt;}
.wsc6{word-spacing:7.161600pt;}
.wsc4{word-spacing:7.195200pt;}
.wsc5{word-spacing:7.204800pt;}
.wsf9{word-spacing:7.651328pt;}
.wsd1{word-spacing:8.607686pt;}
.ws5f{word-spacing:8.803275pt;}
.ws62{word-spacing:8.873356pt;}
.wsdb{word-spacing:9.038131pt;}
.wsae{word-spacing:10.185664pt;}
.wsf2{word-spacing:10.185830pt;}
.wsaf{word-spacing:10.196352pt;}
.ws60{word-spacing:10.277274pt;}
.wsef{word-spacing:10.281472pt;}
.wsee{word-spacing:10.329293pt;}
.ws1c{word-spacing:10.584293pt;}
.ws79{word-spacing:10.939689pt;}
.ws3d{word-spacing:10.945022pt;}
.wse9{word-spacing:11.381350pt;}
.ws4e{word-spacing:11.516100pt;}
.wse4{word-spacing:11.716096pt;}
.ws101{word-spacing:11.898001pt;}
.wsf5{word-spacing:11.899042pt;}
.ws102{word-spacing:11.903172pt;}
.wsf6{word-spacing:11.903573pt;}
.wseb{word-spacing:11.904239pt;}
.wsfe{word-spacing:11.904444pt;}
.wsdd{word-spacing:11.907379pt;}
.wse7{word-spacing:11.908506pt;}
.wse0{word-spacing:11.955200pt;}
.ws36{word-spacing:12.061388pt;}
.wsf8{word-spacing:12.098662pt;}
.wsd8{word-spacing:12.146483pt;}
.wsfd{word-spacing:12.337766pt;}
.ws75{word-spacing:12.380191pt;}
.wse2{word-spacing:12.624691pt;}
.ws34{word-spacing:13.017797pt;}
.ws3b{word-spacing:13.230333pt;}
.ws81{word-spacing:13.245252pt;}
.ws100{word-spacing:14.059315pt;}
.ws61{word-spacing:14.505857pt;}
.ws7b{word-spacing:15.899285pt;}
.ws4c{word-spacing:16.000735pt;}
.ws3a{word-spacing:17.055971pt;}
.ws80{word-spacing:18.037952pt;}
.ws32{word-spacing:18.543719pt;}
.wsfa{word-spacing:19.558707pt;}
.ws68{word-spacing:19.610607pt;}
.ws6c{word-spacing:20.513647pt;}
.wscb{word-spacing:21.477536pt;}
.ws8c{word-spacing:67.354385pt;}
.ws8a{word-spacing:76.655718pt;}
.ws88{word-spacing:76.670933pt;}
.ws8f{word-spacing:80.195482pt;}
.ws89{word-spacing:84.251614pt;}
.ws91{word-spacing:85.972267pt;}
.ws8d{word-spacing:92.322492pt;}
.ws90{word-spacing:99.371622pt;}
.ws8e{word-spacing:99.385600pt;}
.ws92{word-spacing:99.419443pt;}
.wsb2{word-spacing:281.664512pt;}
.wsa5{word-spacing:288.981094pt;}
.wsb5{word-spacing:293.141504pt;}
.wsa4{word-spacing:295.484723pt;}
.wsb4{word-spacing:350.349867pt;}
.wsb3{word-spacing:351.689165pt;}
.wsb6{word-spacing:378.888218pt;}
.wsa3{word-spacing:386.893551pt;}
.wsad{word-spacing:391.469376pt;}
.wsac{word-spacing:399.474688pt;}
.ws8b{word-spacing:565.863526pt;}
.ws1e{word-spacing:663.877450pt;}
.ws65{word-spacing:935.525274pt;}
._2c{margin-left:-84.942897pt;}
._2d{margin-left:-77.407857pt;}
._18{margin-left:-19.957285pt;}
._16{margin-left:-14.909760pt;}
._17{margin-left:-13.504288pt;}
._19{margin-left:-8.265424pt;}
._15{margin-left:-7.297377pt;}
._8{margin-left:-6.063987pt;}
._5{margin-left:-4.994583pt;}
._0{margin-left:-3.538739pt;}
._54{margin-left:-2.582323pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._1b{width:1.928423pt;}
._11{width:4.689121pt;}
._1c{width:6.071529pt;}
._32{width:9.555063pt;}
._9{width:12.705721pt;}
._a{width:14.565406pt;}
._52{width:15.789961pt;}
._1{width:16.737280pt;}
._4{width:18.397771pt;}
._b{width:19.294320pt;}
._e{width:20.516399pt;}
._7{width:21.419675pt;}
._22{width:22.638148pt;}
._4e{width:23.583778pt;}
._10{width:24.767108pt;}
._28{width:25.677110pt;}
._4f{width:27.216661pt;}
._f{width:28.357933pt;}
._4c{width:30.067042pt;}
._4b{width:32.548102pt;}
._1a{width:33.633738pt;}
._d{width:35.705958pt;}
._50{width:36.628181pt;}
._6{width:37.831313pt;}
._13{width:39.631138pt;}
._53{width:40.574987pt;}
._12{width:43.091566pt;}
._51{width:44.186419pt;}
._20{width:82.881946pt;}
._21{width:92.150682pt;}
._25{width:97.912252pt;}
._1e{width:111.326822pt;}
._1d{width:114.121649pt;}
._1f{width:116.848205pt;}
._23{width:120.125850pt;}
._37{width:143.462400pt;}
._2a{width:148.589920pt;}
._24{width:156.230554pt;}
._36{width:158.956339pt;}
._2b{width:164.621920pt;}
._26{width:172.967834pt;}
._27{width:187.935744pt;}
._3f{width:193.091136pt;}
._47{width:198.047153pt;}
._3e{width:234.321920pt;}
._48{width:269.539249pt;}
._33{width:283.312160pt;}
._2f{width:304.180471pt;}
._3c{width:307.439923pt;}
._3a{width:310.213530pt;}
._34{width:314.521111pt;}
._38{width:317.291008pt;}
._3b{width:320.734106pt;}
._46{width:326.637284pt;}
._42{width:329.676595pt;}
._41{width:332.498022pt;}
._43{width:338.953830pt;}
._45{width:342.110003pt;}
._31{width:347.210359pt;}
._40{width:351.578522pt;}
._2e{width:369.056631pt;}
._4a{width:374.054298pt;}
._39{width:375.488922pt;}
._44{width:387.444122pt;}
._30{width:414.619575pt;}
._49{width:421.349069pt;}
._35{width:424.960215pt;}
._29{width:511.025344pt;}
._4d{width:1551.443936pt;}
._3d{width:1564.604802pt;}
._14{width:1572.889920pt;}
._c{width:1585.858135pt;}
.fsd{font-size:31.880533pt;}
.fs16{font-size:33.219200pt;}
.fs17{font-size:37.193600pt;}
.fsb{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs14{font-size:37.440000pt;}
.fsc{font-size:40.381867pt;}
.fsa{font-size:41.988267pt;}
.fs15{font-size:42.077867pt;}
.fse{font-size:42.507200pt;}
.fs10{font-size:42.560000pt;}
.fs5{font-size:46.397853pt;}
.fs9{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs13{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs12{font-size:58.560000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y148{bottom:-230.407600pt;}
.yb1{bottom:-209.803600pt;}
.y1b6{bottom:-208.276933pt;}
.y152{bottom:-196.327224pt;}
.y151{bottom:-178.407456pt;}
.y150{bottom:-160.407528pt;}
.y1bf{bottom:-156.996853pt;}
.y14f{bottom:-142.407600pt;}
.y1be{bottom:-138.996925pt;}
.yb7{bottom:-138.684144pt;}
.y14e{bottom:-124.407600pt;}
.y1bd{bottom:-120.996997pt;}
.yb6{bottom:-109.962816pt;}
.y14d{bottom:-105.687600pt;}
.y1bc{bottom:-102.997069pt;}
.yb5{bottom:-101.002960pt;}
.y14c{bottom:-96.167600pt;}
.y1bb{bottom:-76.917013pt;}
.yb4{bottom:-61.243600pt;}
.y14b{bottom:-59.767600pt;}
.y1ba{bottom:-43.476933pt;}
.y1b9{bottom:-43.476533pt;}
.yb3{bottom:-27.563600pt;}
.y14a{bottom:-26.407600pt;}
.y1b8{bottom:-26.036933pt;}
.y149{bottom:-2.567600pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:1.236400pt;}
.y1b7{bottom:1.963067pt;}
.y2e{bottom:3.044747pt;}
.y24{bottom:5.145434pt;}
.y2d{bottom:12.578910pt;}
.y23{bottom:19.838154pt;}
.y22{bottom:34.359615pt;}
.y51{bottom:56.693333pt;}
.y4{bottom:86.333337pt;}
.y1c7{bottom:96.608000pt;}
.ybe{bottom:101.561333pt;}
.ybd{bottom:110.673333pt;}
.yae{bottom:111.817333pt;}
.y1eb{bottom:112.710667pt;}
.y1c6{bottom:114.621333pt;}
.y15a{bottom:116.209333pt;}
.y100{bottom:116.538667pt;}
.y50{bottom:116.702667pt;}
.y20{bottom:123.790666pt;}
.yad{bottom:124.436000pt;}
.yff{bottom:125.986667pt;}
.yac{bottom:128.293333pt;}
.y4f{bottom:129.321333pt;}
.y1ea{bottom:129.926667pt;}
.y159{bottom:131.138667pt;}
.y1c5{bottom:132.633333pt;}
.y4e{bottom:133.178667pt;}
.yfe{bottom:138.606667pt;}
.yab{bottom:141.600000pt;}
.yfd{bottom:142.464000pt;}
.y4d{bottom:142.628000pt;}
.y158{bottom:146.068000pt;}
.y1e9{bottom:147.141333pt;}
.ybc{bottom:149.096000pt;}
.y1c4{bottom:150.645333pt;}
.yfc{bottom:155.769333pt;}
.y4c{bottom:159.104000pt;}
.y157{bottom:160.997333pt;}
.yea{bottom:164.254667pt;}
.y1e8{bottom:164.357333pt;}
.y80{bottom:165.404000pt;}
.y1c3{bottom:168.658667pt;}
.ybb{bottom:174.936000pt;}
.y17{bottom:175.052000pt;}
.y1e7{bottom:181.573333pt;}
.ye9{bottom:182.266667pt;}
.y156{bottom:182.329333pt;}
.y128{bottom:182.624000pt;}
.yba{bottom:184.048000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yaa{bottom:190.710667pt;}
.y155{bottom:194.340000pt;}
.y1c2{bottom:194.641333pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1e6{bottom:198.788000pt;}
.y18a{bottom:199.493333pt;}
.y125{bottom:200.636000pt;}
.y126{bottom:200.662667pt;}
.y127{bottom:203.790667pt;}
.ye8{bottom:204.025333pt;}
.ye7{bottom:208.608000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yfb{bottom:209.620000pt;}
.y4b{bottom:211.217333pt;}
.y189{bottom:214.422667pt;}
.y1e5{bottom:216.004000pt;}
.y7f{bottom:217.517333pt;}
.ya9{bottom:217.729333pt;}
.y124{bottom:218.648000pt;}
.y145{bottom:221.620000pt;}
.yb9{bottom:222.470667pt;}
.y1c1{bottom:222.750667pt;}
.ye6{bottom:225.097333pt;}
.y4a{bottom:229.229333pt;}
.y188{bottom:229.353333pt;}
.ye3{bottom:229.680000pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y154{bottom:231.766667pt;}
.y1e4{bottom:233.218667pt;}
.y7e{bottom:235.529333pt;}
.ya8{bottom:235.741333pt;}
.y123{bottom:236.661333pt;}
.y1c0{bottom:239.846667pt;}
.ye5{bottom:240.790667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yfa{bottom:242.642667pt;}
.ye4{bottom:244.578667pt;}
.y1b3{bottom:245.572000pt;}
.y49{bottom:247.242667pt;}
.y1e3{bottom:250.434667pt;}
.y187{bottom:250.684000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y7d{bottom:253.541333pt;}
.yb8{bottom:253.582667pt;}
.ya7{bottom:253.754667pt;}
.y122{bottom:254.673333pt;}
.y153{bottom:258.161333pt;}
.y1b4{bottom:259.784000pt;}
.yf9{bottom:260.656000pt;}
.ye2{bottom:261.788000pt;}
.y1b2{bottom:263.584000pt;}
.y48{bottom:265.254667pt;}
.y186{bottom:265.613333pt;}
.y1e2{bottom:267.650667pt;}
.y7c{bottom:271.554667pt;}
.ya6{bottom:271.766667pt;}
.y121{bottom:272.686667pt;}
.yaf{bottom:273.520000pt;}
.y144{bottom:273.733333pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y146{bottom:278.098667pt;}
.yf8{bottom:278.668000pt;}
.y185{bottom:280.542667pt;}
.y1b1{bottom:281.597333pt;}
.y47{bottom:283.268000pt;}
.y1e1{bottom:284.865333pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ye0{bottom:287.650667pt;}
.y7b{bottom:289.566667pt;}
.y120{bottom:290.698667pt;}
.y143{bottom:291.745333pt;}
.y184{bottom:295.472000pt;}
.yf7{bottom:296.680000pt;}
.ydf{bottom:296.762667pt;}
.ye1{bottom:298.622667pt;}
.y1b0{bottom:299.609333pt;}
.y46{bottom:301.280000pt;}
.y1e0{bottom:302.081333pt;}
.ya5{bottom:304.790667pt;}
.y7a{bottom:307.580000pt;}
.y11f{bottom:308.710667pt;}
.ye{bottom:309.452000pt;}
.y142{bottom:309.758667pt;}
.y183{bottom:310.401333pt;}
.yf6{bottom:314.693333pt;}
.y1af{bottom:317.621333pt;}
.y45{bottom:319.292000pt;}
.y1df{bottom:319.296000pt;}
.y182{bottom:325.330667pt;}
.y79{bottom:325.592000pt;}
.y11e{bottom:326.724000pt;}
.y141{bottom:327.770667pt;}
.yf5{bottom:332.705333pt;}
.yde{bottom:333.102667pt;}
.y1ae{bottom:335.634667pt;}
.y1de{bottom:336.512000pt;}
.y44{bottom:337.305333pt;}
.ya4{bottom:337.813333pt;}
.y181{bottom:340.261333pt;}
.y78{bottom:343.604000pt;}
.yd{bottom:343.809333pt;}
.y11d{bottom:344.736000pt;}
.y140{bottom:345.782667pt;}
.yf4{bottom:350.718667pt;}
.ydd{bottom:351.114667pt;}
.y1ad{bottom:353.646667pt;}
.y1dd{bottom:353.728000pt;}
.y180{bottom:355.190667pt;}
.y43{bottom:355.317333pt;}
.ya2{bottom:355.825333pt;}
.ya3{bottom:360.648000pt;}
.y77{bottom:361.617333pt;}
.yc{bottom:362.706666pt;}
.y11c{bottom:362.749333pt;}
.y13f{bottom:363.796000pt;}
.yf3{bottom:368.730667pt;}
.y17f{bottom:370.120000pt;}
.y1dc{bottom:370.942667pt;}
.y1ac{bottom:371.660000pt;}
.y42{bottom:373.330667pt;}
.ya1{bottom:373.838667pt;}
.y76{bottom:379.629333pt;}
.y11b{bottom:380.761333pt;}
.y13e{bottom:381.808000pt;}
.ydc{bottom:384.137333pt;}
.y17e{bottom:385.049333pt;}
.y1db{bottom:388.158667pt;}
.y1ab{bottom:389.672000pt;}
.y41{bottom:391.342667pt;}
.ya0{bottom:391.850667pt;}
.y75{bottom:397.642667pt;}
.y11a{bottom:398.773333pt;}
.y13d{bottom:399.821333pt;}
.y17d{bottom:399.978667pt;}
.yf1{bottom:401.753333pt;}
.yf2{bottom:403.612000pt;}
.y1da{bottom:405.373333pt;}
.y1aa{bottom:407.684000pt;}
.y40{bottom:409.354667pt;}
.y9f{bottom:409.862667pt;}
.y17c{bottom:414.908000pt;}
.y74{bottom:415.654667pt;}
.y119{bottom:416.786667pt;}
.ydb{bottom:417.160000pt;}
.y13c{bottom:417.833333pt;}
.y1d9{bottom:422.589333pt;}
.y1a9{bottom:425.697333pt;}
.y3f{bottom:427.368000pt;}
.y9e{bottom:427.876000pt;}
.y17b{bottom:429.837333pt;}
.y73{bottom:433.666667pt;}
.y118{bottom:434.798667pt;}
.yda{bottom:435.173333pt;}
.y13b{bottom:435.845333pt;}
.yf0{bottom:439.670667pt;}
.y1d8{bottom:439.805333pt;}
.y1a8{bottom:443.709333pt;}
.y17a{bottom:444.766667pt;}
.y3e{bottom:445.380000pt;}
.yb{bottom:446.990669pt;}
.y72{bottom:451.680000pt;}
.yd9{bottom:453.185333pt;}
.y9d{bottom:453.858667pt;}
.y1d7{bottom:457.020000pt;}
.yef{bottom:457.684000pt;}
.y179{bottom:459.696000pt;}
.y1a7{bottom:461.722667pt;}
.ya{bottom:462.990669pt;}
.y3d{bottom:463.393333pt;}
.y209{bottom:463.601333pt;}
.y117{bottom:467.721333pt;}
.y71{bottom:469.692000pt;}
.yd8{bottom:471.198667pt;}
.y13a{bottom:471.870667pt;}
.y1d6{bottom:474.236000pt;}
.y178{bottom:474.625333pt;}
.yee{bottom:475.696000pt;}
.y9{bottom:478.990666pt;}
.y1a6{bottom:479.734667pt;}
.y208{bottom:480.816000pt;}
.y3c{bottom:481.405333pt;}
.y9c{bottom:484.809333pt;}
.y116{bottom:487.014667pt;}
.y70{bottom:487.704000pt;}
.yd7{bottom:489.210667pt;}
.y177{bottom:489.554667pt;}
.y139{bottom:489.884000pt;}
.y1d5{bottom:491.450667pt;}
.yed{bottom:493.709333pt;}
.y8{bottom:494.990666pt;}
.y1a5{bottom:497.746667pt;}
.y207{bottom:498.032000pt;}
.y3b{bottom:499.417333pt;}
.y115{bottom:502.253333pt;}
.y9b{bottom:502.821333pt;}
.y176{bottom:504.484000pt;}
.y6f{bottom:505.717333pt;}
.y138{bottom:507.896000pt;}
.y1d4{bottom:508.666667pt;}
.y114{bottom:509.560000pt;}
.yd6{bottom:515.073333pt;}
.y1a4{bottom:515.760000pt;}
.y3a{bottom:517.430667pt;}
.y175{bottom:519.413333pt;}
.y9a{bottom:520.834667pt;}
.y6e{bottom:523.729333pt;}
.yd5{bottom:524.186667pt;}
.y1d3{bottom:525.882667pt;}
.y137{bottom:525.908000pt;}
.yec{bottom:526.732000pt;}
.y206{bottom:527.237333pt;}
.y1a3{bottom:533.772000pt;}
.y174{bottom:534.342667pt;}
.y39{bottom:535.442667pt;}
.y113{bottom:537.884000pt;}
.y99{bottom:538.846667pt;}
.y6d{bottom:541.742667pt;}
.y1d2{bottom:543.097333pt;}
.y136{bottom:543.921333pt;}
.y205{bottom:544.453333pt;}
.y1a2{bottom:551.785333pt;}
.y112{bottom:553.122667pt;}
.y38{bottom:553.456000pt;}
.y173{bottom:555.674667pt;}
.y98{bottom:556.858667pt;}
.y6c{bottom:559.754667pt;}
.y1d1{bottom:560.313333pt;}
.y111{bottom:560.428000pt;}
.y204{bottom:561.669333pt;}
.y135{bottom:561.933333pt;}
.yd4{bottom:563.992000pt;}
.y172{bottom:567.685333pt;}
.y1a1{bottom:569.797333pt;}
.y37{bottom:571.468000pt;}
.y7{bottom:573.786667pt;}
.y97{bottom:574.872000pt;}
.y1d0{bottom:577.528000pt;}
.y6b{bottom:577.766667pt;}
.y203{bottom:578.884000pt;}
.y134{bottom:579.945333pt;}
.yd3{bottom:582.005333pt;}
.y1a0{bottom:587.809333pt;}
.y110{bottom:588.752000pt;}
.y6{bottom:592.685334pt;}
.y96{bottom:592.884000pt;}
.y1cf{bottom:594.744000pt;}
.y6a{bottom:595.780000pt;}
.y202{bottom:596.100000pt;}
.y36{bottom:597.450667pt;}
.y133{bottom:597.958667pt;}
.yd2{bottom:600.017333pt;}
.y10f{bottom:603.990667pt;}
.y171{bottom:605.112000pt;}
.y19f{bottom:605.822667pt;}
.y95{bottom:610.896000pt;}
.y10e{bottom:611.297333pt;}
.y201{bottom:613.314667pt;}
.y69{bottom:613.792000pt;}
.y132{bottom:615.970667pt;}
.yd1{bottom:618.029333pt;}
.y1ce{bottom:619.929333pt;}
.y19e{bottom:623.834667pt;}
.y94{bottom:628.909333pt;}
.y200{bottom:630.530667pt;}
.y68{bottom:631.805333pt;}
.y131{bottom:633.984000pt;}
.yd0{bottom:636.042667pt;}
.y10d{bottom:639.621333pt;}
.y170{bottom:641.069333pt;}
.y19d{bottom:641.846667pt;}
.y5{bottom:645.598667pt;}
.y93{bottom:646.921333pt;}
.y1ff{bottom:647.746667pt;}
.y67{bottom:649.817333pt;}
.y130{bottom:651.996000pt;}
.ycf{bottom:654.054667pt;}
.y10c{bottom:654.860000pt;}
.y1cd{bottom:654.998667pt;}
.y19c{bottom:659.860000pt;}
.y10b{bottom:662.165333pt;}
.y16f{bottom:662.401333pt;}
.y92{bottom:664.934667pt;}
.y1fe{bottom:664.961333pt;}
.y35{bottom:665.376000pt;}
.y66{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y12f{bottom:670.008000pt;}
.y1cc{bottom:676.477333pt;}
.y16e{bottom:677.330667pt;}
.y19b{bottom:677.872000pt;}
.y1fd{bottom:682.177333pt;}
.y91{bottom:682.946667pt;}
.y65{bottom:685.842667pt;}
.yce{bottom:687.077333pt;}
.y12e{bottom:688.021333pt;}
.y1cb{bottom:689.986667pt;}
.y10a{bottom:690.489333pt;}
.y19a{bottom:695.885333pt;}
.y16d{bottom:698.662667pt;}
.y34{bottom:699.328000pt;}
.y1fc{bottom:699.392000pt;}
.y90{bottom:700.958667pt;}
.y64{bottom:703.854667pt;}
.y109{bottom:705.728000pt;}
.y12d{bottom:706.033333pt;}
.y1ca{bottom:711.466667pt;}
.y108{bottom:713.034667pt;}
.y16c{bottom:713.592000pt;}
.y199{bottom:713.897333pt;}
.y1fb{bottom:716.608000pt;}
.y33{bottom:717.341333pt;}
.y8e{bottom:718.972000pt;}
.ycd{bottom:720.101333pt;}
.y63{bottom:721.868000pt;}
.y8f{bottom:723.793333pt;}
.y12c{bottom:724.046667pt;}
.y16b{bottom:728.521333pt;}
.y198{bottom:731.909333pt;}
.y1c9{bottom:732.946667pt;}
.y1fa{bottom:733.824000pt;}
.ycc{bottom:734.832000pt;}
.y32{bottom:735.353333pt;}
.y8d{bottom:736.984000pt;}
.ycb{bottom:738.113333pt;}
.y62{bottom:739.880000pt;}
.y107{bottom:741.354667pt;}
.y106{bottom:742.544000pt;}
.y16a{bottom:743.450667pt;}
.y1c8{bottom:746.456000pt;}
.y197{bottom:749.922667pt;}
.y12b{bottom:750.029333pt;}
.y105{bottom:750.864000pt;}
.y1f9{bottom:751.038667pt;}
.y31{bottom:753.366667pt;}
.y147{bottom:753.432400pt;}
.y8c{bottom:754.997333pt;}
.y61{bottom:757.892000pt;}
.y169{bottom:758.380000pt;}
.yc8{bottom:766.288000pt;}
.y196{bottom:767.934667pt;}
.y1f8{bottom:768.254667pt;}
.y104{bottom:770.269333pt;}
.y30{bottom:771.378667pt;}
.yc9{bottom:772.081333pt;}
.yca{bottom:772.120000pt;}
.y8b{bottom:773.009333pt;}
.y168{bottom:773.309333pt;}
.yb0{bottom:774.036400pt;}
.yc7{bottom:775.401333pt;}
.y1b5{bottom:775.563067pt;}
.y60{bottom:775.905333pt;}
.yc6{bottom:778.556000pt;}
.y12a{bottom:780.980000pt;}
.y2{bottom:781.661334pt;}
.y103{bottom:784.881333pt;}
.y1f7{bottom:785.469333pt;}
.y195{bottom:785.948000pt;}
.y167{bottom:788.238667pt;}
.y2f{bottom:789.390667pt;}
.y8a{bottom:791.021333pt;}
.y5f{bottom:793.917333pt;}
.y1f6{bottom:802.685333pt;}
.y166{bottom:803.168000pt;}
.y194{bottom:803.960000pt;}
.y89{bottom:809.034667pt;}
.y5e{bottom:811.930667pt;}
.y102{bottom:812.988000pt;}
.yc5{bottom:814.740000pt;}
.y165{bottom:818.097333pt;}
.y1f5{bottom:819.901333pt;}
.y2c{bottom:820.886634pt;}
.y2b{bottom:821.568000pt;}
.y193{bottom:821.972000pt;}
.y88{bottom:827.046667pt;}
.y5d{bottom:829.942667pt;}
.y101{bottom:830.084000pt;}
.yc4{bottom:832.752000pt;}
.y164{bottom:833.026667pt;}
.y1f4{bottom:837.116000pt;}
.y192{bottom:839.985333pt;}
.y87{bottom:845.060000pt;}
.y5c{bottom:847.954667pt;}
.y163{bottom:847.956000pt;}
.y1f3{bottom:854.332000pt;}
.y2a{bottom:856.240000pt;}
.y191{bottom:857.997333pt;}
.y1{bottom:859.312000pt;}
.y162{bottom:862.885333pt;}
.y86{bottom:863.072000pt;}
.yc3{bottom:865.776000pt;}
.y5b{bottom:865.968000pt;}
.y1f2{bottom:871.546667pt;}
.y29{bottom:872.378667pt;}
.y190{bottom:876.010667pt;}
.y161{bottom:877.814667pt;}
.y85{bottom:881.084000pt;}
.y5a{bottom:883.980000pt;}
.y28{bottom:888.518667pt;}
.y1f1{bottom:888.762667pt;}
.y160{bottom:892.744000pt;}
.y18f{bottom:894.022667pt;}
.yc2{bottom:898.798667pt;}
.y84{bottom:899.097333pt;}
.y59{bottom:901.993333pt;}
.y1f0{bottom:905.978667pt;}
.y15f{bottom:907.673333pt;}
.y18e{bottom:912.034667pt;}
.y27{bottom:912.628000pt;}
.yc1{bottom:916.810667pt;}
.y83{bottom:917.109333pt;}
.y58{bottom:920.005333pt;}
.y15e{bottom:922.602667pt;}
.y1ef{bottom:923.193333pt;}
.y18d{bottom:930.048000pt;}
.y82{bottom:935.122667pt;}
.y57{bottom:938.017333pt;}
.y1ee{bottom:940.409333pt;}
.y15d{bottom:943.934667pt;}
.yc0{bottom:944.520000pt;}
.y18c{bottom:948.060000pt;}
.y26{bottom:952.217333pt;}
.ybf{bottom:953.633333pt;}
.y15c{bottom:955.945333pt;}
.y55{bottom:956.030667pt;}
.y1ed{bottom:957.624000pt;}
.y56{bottom:960.852000pt;}
.y81{bottom:961.105333pt;}
.y18b{bottom:966.073333pt;}
.y54{bottom:974.042667pt;}
.y1ec{bottom:974.840000pt;}
.y25{bottom:977.906667pt;}
.y129{bottom:978.865333pt;}
.y53{bottom:992.056000pt;}
.y15b{bottom:993.372000pt;}
.yeb{bottom:996.877333pt;}
.y21{bottom:1011.514667pt;}
.y52{bottom:1038.548000pt;}
.h12{height:22.673858pt;}
.h1a{height:23.209028pt;}
.h4a{height:26.890973pt;}
.h42{height:28.348070pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1d{height:29.397999pt;}
.h14{height:29.433775pt;}
.h13{height:30.399505pt;}
.h1b{height:30.945242pt;}
.h1c{height:31.157778pt;}
.h24{height:31.213438pt;}
.h25{height:31.992188pt;}
.hc{height:32.246508pt;}
.h4e{height:33.522381pt;}
.h5f{height:33.904947pt;}
.h5e{height:34.144051pt;}
.h49{height:34.574438pt;}
.h3f{height:34.644400pt;}
.h11{height:34.813542pt;}
.h5d{height:35.039062pt;}
.h5b{height:35.052646pt;}
.h27{height:35.203125pt;}
.h52{height:36.066876pt;}
.h21{height:36.928037pt;}
.h45{height:37.193707pt;}
.h57{height:37.242188pt;}
.h20{height:37.299974pt;}
.h1e{height:37.671911pt;}
.h17{height:37.937581pt;}
.h15{height:38.415786pt;}
.h16{height:38.681455pt;}
.he{height:38.947124pt;}
.h28{height:39.010156pt;}
.h59{height:39.192812pt;}
.h10{height:39.531597pt;}
.hd{height:39.846430pt;}
.h7{height:40.853333pt;}
.h31{height:41.524400pt;}
.h1f{height:42.079067pt;}
.h30{height:42.084400pt;}
.h26{height:42.747656pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.hb{height:45.272024pt;}
.h54{height:46.168209pt;}
.h51{height:46.173542pt;}
.h56{height:46.718750pt;}
.h18{height:48.683332pt;}
.h19{height:48.688666pt;}
.h2{height:49.024000pt;}
.h22{height:51.546575pt;}
.h39{height:52.072458pt;}
.h36{height:52.227124pt;}
.h37{height:55.070898pt;}
.h32{height:55.076231pt;}
.h3a{height:55.102898pt;}
.h48{height:56.122575pt;}
.h43{height:58.803695pt;}
.h4b{height:60.170973pt;}
.h40{height:62.382530pt;}
.h4f{height:64.034876pt;}
.h53{height:64.040209pt;}
.h4d{height:64.928306pt;}
.h4c{height:64.933639pt;}
.h38{height:68.196231pt;}
.hf{height:69.148877pt;}
.h5{height:69.450667pt;}
.h5a{height:71.854438pt;}
.h46{height:72.638362pt;}
.h44{height:73.406898pt;}
.h35{height:73.412231pt;}
.h2e{height:74.649455pt;}
.h2b{height:74.654788pt;}
.h3c{height:75.134788pt;}
.h34{height:75.241455pt;}
.h58{height:77.274156pt;}
.h41{height:77.534530pt;}
.h33{height:77.731974pt;}
.h3b{height:81.245791pt;}
.h3d{height:81.251124pt;}
.h47{height:85.020855pt;}
.h2c{height:87.792666pt;}
.h50{height:93.261542pt;}
.h2f{height:105.076231pt;}
.h4{height:105.826671pt;}
.h3e{height:109.086362pt;}
.h2d{height:117.991522pt;}
.h2a{height:119.258583pt;}
.h29{height:123.739639pt;}
.h55{height:727.242667pt;}
.h23{height:731.821333pt;}
.h5c{height:745.557333pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w6{width:566.227467pt;}
.w2{width:566.928019pt;}
.w7{width:568.515867pt;}
.w8{width:576.910133pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x95{left:-13.149467pt;}
.x3c{left:-9.333867pt;}
.xa9{left:-4.755200pt;}
.x0{left:0.000000pt;}
.x3e{left:18.986133pt;}
.xab{left:23.564800pt;}
.xa{left:26.021437pt;}
.x9c{left:44.451651pt;}
.x3d{left:45.386133pt;}
.x9b{left:47.090533pt;}
.x9a{left:49.090533pt;}
.x6{left:53.458976pt;}
.x98{left:65.250151pt;}
.x97{left:68.210533pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.x8{left:108.542667pt;}
.x7{left:109.606667pt;}
.x94{left:112.593467pt;}
.x3b{left:113.737867pt;}
.x2f{left:116.781333pt;}
.x89{left:118.916000pt;}
.xf{left:120.625333pt;}
.x51{left:121.957333pt;}
.x68{left:129.188000pt;}
.xc{left:130.393333pt;}
.x47{left:133.664000pt;}
.x8b{left:137.517333pt;}
.x7b{left:145.305333pt;}
.x74{left:147.981333pt;}
.x71{left:150.612000pt;}
.x18{left:154.772000pt;}
.x40{left:155.920000pt;}
.xa4{left:159.705333pt;}
.x19{left:161.414667pt;}
.xb{left:167.965333pt;}
.xa3{left:170.202667pt;}
.x7e{left:176.922667pt;}
.x29{left:179.005333pt;}
.x4{left:180.874667pt;}
.x9d{left:181.857333pt;}
.x99{left:183.330533pt;}
.x2a{left:185.646667pt;}
.xa1{left:186.856000pt;}
.x38{left:188.208000pt;}
.xa0{left:189.174667pt;}
.x12{left:191.314667pt;}
.xa7{left:193.125333pt;}
.x9e{left:194.554667pt;}
.xa5{left:196.353333pt;}
.xa6{left:198.410667pt;}
.x13{left:200.358667pt;}
.xa8{left:202.528000pt;}
.x48{left:204.677333pt;}
.x7f{left:206.020000pt;}
.x39{left:208.092000pt;}
.x61{left:209.162667pt;}
.x79{left:211.852000pt;}
.x7c{left:215.133333pt;}
.x84{left:221.498667pt;}
.x30{left:222.918667pt;}
.x43{left:225.217333pt;}
.x76{left:226.618667pt;}
.x66{left:230.818667pt;}
.xac{left:232.014667pt;}
.x31{left:235.061333pt;}
.x58{left:236.150667pt;}
.x1a{left:238.006667pt;}
.x32{left:241.656000pt;}
.x50{left:242.864000pt;}
.x1b{left:244.649333pt;}
.x5e{left:246.092000pt;}
.x52{left:247.078667pt;}
.x33{left:253.094667pt;}
.x4b{left:255.084000pt;}
.x4a{left:258.053333pt;}
.x53{left:264.746667pt;}
.x69{left:270.030667pt;}
.x45{left:274.728000pt;}
.x41{left:278.034667pt;}
.x59{left:280.129333pt;}
.x85{left:281.428000pt;}
.x7d{left:285.829333pt;}
.x4c{left:292.357333pt;}
.x3f{left:293.385587pt;}
.x5f{left:294.476000pt;}
.x9f{left:298.120000pt;}
.x63{left:311.296000pt;}
.x20{left:317.093333pt;}
.x8c{left:318.778667pt;}
.x21{left:323.736000pt;}
.x80{left:326.684000pt;}
.x8d{left:328.261333pt;}
.x49{left:331.314667pt;}
.x75{left:333.085333pt;}
.x64{left:338.002667pt;}
.x60{left:339.394667pt;}
.x77{left:340.401333pt;}
.x56{left:343.538667pt;}
.x46{left:345.362667pt;}
.x86{left:349.286667pt;}
.x78{left:351.060000pt;}
.x8f{left:354.772000pt;}
.x8e{left:357.741333pt;}
.xa2{left:360.190667pt;}
.x1c{left:362.782667pt;}
.x3a{left:365.364000pt;}
.x1d{left:369.424000pt;}
.x4d{left:371.018667pt;}
.x6f{left:378.788000pt;}
.x65{left:380.613333pt;}
.x34{left:387.712000pt;}
.x70{left:389.172000pt;}
.x81{left:393.398667pt;}
.x44{left:401.833333pt;}
.x3{left:404.408000pt;}
.x42{left:406.514667pt;}
.x35{left:412.140000pt;}
.x57{left:414.229333pt;}
.x62{left:420.664000pt;}
.x2b{left:426.302667pt;}
.x4e{left:433.512000pt;}
.x22{left:434.490667pt;}
.x2c{left:437.132000pt;}
.x23{left:441.132000pt;}
.x54{left:443.681333pt;}
.x67{left:455.684000pt;}
.x8a{left:458.545333pt;}
.x5c{left:461.633333pt;}
.xd{left:463.086667pt;}
.x55{left:466.856000pt;}
.x4f{left:472.426667pt;}
.xe{left:473.490667pt;}
.x24{left:475.146667pt;}
.x7a{left:479.593333pt;}
.x25{left:481.788000pt;}
.x5d{left:483.446667pt;}
.x10{left:485.669333pt;}
.x11{left:497.160000pt;}
.x91{left:511.560000pt;}
.x90{left:513.021333pt;}
.x2d{left:516.060000pt;}
.x92{left:518.905333pt;}
.x83{left:521.736000pt;}
.x2e{left:527.188000pt;}
.x93{left:529.325333pt;}
.x1e{left:530.986667pt;}
.x87{left:536.221333pt;}
.x1f{left:537.628000pt;}
.x6a{left:543.562667pt;}
.x6b{left:551.768000pt;}
.x6c{left:557.618667pt;}
.x14{left:559.096000pt;}
.x15{left:565.737333pt;}
.x82{left:567.714667pt;}
.x96{left:568.610400pt;}
.x26{left:571.029333pt;}
.x27{left:577.672000pt;}
.xaa{left:579.004667pt;}
.x72{left:590.429333pt;}
.x88{left:592.186667pt;}
.x6d{left:595.965333pt;}
.x6e{left:603.326667pt;}
.x9{left:623.413317pt;}
.x5a{left:631.357333pt;}
.x73{left:635.510667pt;}
.x36{left:649.465333pt;}
.x16{left:652.566667pt;}
.x5b{left:654.733333pt;}
.x17{left:659.209333pt;}
.x37{left:660.828000pt;}
.x28{left:665.810667pt;}
}




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