
    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_fbcb327b920d4f5184c639a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b13d88904ed9dbfe4ea3fba2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ae209a2935d25728e3938783.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_fba34596a1585bf377fccf07.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_39d3ff2f2a0ffbe663b7100d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_25ca5ed05358b8afd23e28f1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_fc6dc91b1569e1b9cf20ec45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.364746;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_0b92b14893ca5e0dd4fd0c96.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_9c4d5aba064e94b49ece8286.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_b6cc99ce90e6686b2632e36b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ab6099a64e3a72db3ed2d6af.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.364746;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_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.281250;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_c805c3ba5ace00889fb4657c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_8d8604b44a1455564c27249e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_09d92aae2bde0dd02544c711.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_336d34fdd86bdbdf31544fbb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.364746;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_0b92b14893ca5e0dd4fd0c96.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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_90365ea86c503490da3cf61b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_bf89c6e87794e72226176a69.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_c057e7e8cdec245057826771.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e17a5ffd4ab4a15a4b15a6c7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_727dae22233682d975a27d02.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_06b22fad746b096f4845db2d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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_70512b47d5fa3a5af6c1b2fb.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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_0e55debf976ed58fd0727624.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.364746;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_0b06e6a9438d208ece3fe586.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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_ab6099a64e3a72db3ed2d6af.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.364746;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_97d5070f2d6d0630d6455a1a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.281250;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_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.281250;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_ac7291fa378172b3695d6137.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;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_3431ccda9f2c397450591a6e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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_f7f8a5eb717ecb3c94d5571e.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;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_0e55debf976ed58fd0727624.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.364746;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_3e117c2787e7223132992f56.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.432129;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_952b9d709be0b8e903403fa2.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;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_e586ba60ac7b7bdc6e528270.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;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_bedd51e14c3cdae3e72bc802.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;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_35fc7507722fa7db3a79541c.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;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_88730b61aca0883b91b59119.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_73af44819933c3006b5c2d49.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_68a0c661f9c56ccd01c366f3.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_0e55debf976ed58fd0727624.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_cbdaaa38cc80dc30967779af.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_c8a4c505aa38c3f69d5312e3.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;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:ff2d;src:url('chunks/assets/font_00acb7074dd6848cf5fee137.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;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:ff2e;src:url('chunks/assets/font_1a95262d577eab0aed04ab5c.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.432129;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:ff2f;src:url('chunks/assets/font_00acb7074dd6848cf5fee137.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.432129;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;}
.m1f{transform:matrix(0.079670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079670,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.099057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099057,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.099278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099278,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.123457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123457,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.135135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135135,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.135204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135204,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.192623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192623,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.219072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219072,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.226891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226891,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m87{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.253886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253886,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m73{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.259067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259067,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.293367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293367,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.308081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308081,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.309896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309896,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.311275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311275,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.313187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313187,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.313889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313889,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.317204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317204,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.318421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318421,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.319588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319588,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.323684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323684,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.365132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365132,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.386598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386598,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.391892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391892,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.392105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392105,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.397826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397826,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.454392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454392,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.516304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516304,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.598958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598958,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.688406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688406,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.810606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810606,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-25.919280px;}
.v0{vertical-align:0.000000px;}
.lsae{letter-spacing:-15.659550px;}
.ls4c{letter-spacing:-9.249075px;}
.ls3c{letter-spacing:-8.213700px;}
.ls4f{letter-spacing:-7.521525px;}
.ls4e{letter-spacing:-6.437475px;}
.lsb9{letter-spacing:-5.947560px;}
.ls2c{letter-spacing:-5.936400px;}
.ls9f{letter-spacing:-5.754315px;}
.ls84{letter-spacing:-5.194350px;}
.lsb6{letter-spacing:-5.102550px;}
.ls4b{letter-spacing:-4.952475px;}
.ls4a{letter-spacing:-4.455000px;}
.lsad{letter-spacing:-4.452300px;}
.ls39{letter-spacing:-4.326750px;}
.lsb5{letter-spacing:-4.146105px;}
.lsb7{letter-spacing:-4.077450px;}
.ls47{letter-spacing:-3.957525px;}
.ls67{letter-spacing:-3.929250px;}
.lsaa{letter-spacing:-3.917550px;}
.ls3a{letter-spacing:-3.892500px;}
.ls13{letter-spacing:-3.877575px;}
.lsa4{letter-spacing:-3.675000px;}
.ls58{letter-spacing:-3.601800px;}
.ls33{letter-spacing:-3.583125px;}
.lsa7{letter-spacing:-3.433185px;}
.ls38{letter-spacing:-3.412500px;}
.ls7f{letter-spacing:-3.044250px;}
.lsb8{letter-spacing:-3.001500px;}
.ls79{letter-spacing:-2.998800px;}
.ls48{letter-spacing:-2.969258px;}
.ls2d{letter-spacing:-2.968200px;}
.lsa8{letter-spacing:-2.939265px;}
.ls94{letter-spacing:-2.925600px;}
.ls12{letter-spacing:-2.909273px;}
.ls25{letter-spacing:-2.866988px;}
.ls4d{letter-spacing:-2.471783px;}
.ls7d{letter-spacing:-2.457675px;}
.lsa9{letter-spacing:-2.446815px;}
.ls80{letter-spacing:-2.432850px;}
.ls6a{letter-spacing:-2.422500px;}
.ls8c{letter-spacing:-2.413125px;}
.lsab{letter-spacing:-2.394000px;}
.lsac{letter-spacing:-2.371913px;}
.ls66{letter-spacing:-2.359500px;}
.ls72{letter-spacing:-2.349825px;}
.ls93{letter-spacing:-2.271308px;}
.ls45{letter-spacing:-2.248365px;}
.ls29{letter-spacing:-2.225423px;}
.lsa0{letter-spacing:-2.205000px;}
.ls16{letter-spacing:-2.202480px;}
.ls49{letter-spacing:-1.982475px;}
.ls69{letter-spacing:-1.826550px;}
.ls8f{letter-spacing:-1.815120px;}
.ls7c{letter-spacing:-1.789650px;}
.ls6d{letter-spacing:-1.772348px;}
.ls76{letter-spacing:-1.499400px;}
.ls2e{letter-spacing:-1.484100px;}
.lsa1{letter-spacing:-1.470000px;}
.ls17{letter-spacing:-1.468800px;}
.ls34{letter-spacing:-1.433250px;}
.ls8d{letter-spacing:-1.236750px;}
.ls51{letter-spacing:-1.217700px;}
.ls50{letter-spacing:-1.212015px;}
.ls68{letter-spacing:-1.210275px;}
.ls8e{letter-spacing:-1.205400px;}
.ls1c{letter-spacing:-1.194750px;}
.ls7e{letter-spacing:-1.193100px;}
.ls6c{letter-spacing:-1.168500px;}
.ls82{letter-spacing:-1.161375px;}
.ls65{letter-spacing:-0.784875px;}
.ls56{letter-spacing:-0.762300px;}
.ls61{letter-spacing:-0.750750px;}
.ls46{letter-spacing:-0.748965px;}
.ls2a{letter-spacing:-0.741323px;}
.lsa3{letter-spacing:-0.734265px;}
.ls14{letter-spacing:-0.733680px;}
.ls24{letter-spacing:-0.716138px;}
.ls37{letter-spacing:-0.672067px;}
.ls90{letter-spacing:-0.610050px;}
.ls55{letter-spacing:-0.601965px;}
.ls53{letter-spacing:-0.601425px;}
.ls6b{letter-spacing:-0.595823px;}
.ls81{letter-spacing:-0.592875px;}
.ls83{letter-spacing:-0.583538px;}
.lsb{letter-spacing:0.000000px;}
.ls70{letter-spacing:0.600600px;}
.ls52{letter-spacing:0.610050px;}
.ls85{letter-spacing:0.613350px;}
.ls92{letter-spacing:0.616275px;}
.ls19{letter-spacing:0.706118px;}
.ls26{letter-spacing:0.716138px;}
.ls57{letter-spacing:0.725888px;}
.ls4{letter-spacing:0.733680px;}
.ls9d{letter-spacing:0.734265px;}
.ls9{letter-spacing:0.741323px;}
.ls98{letter-spacing:0.742350px;}
.ls5e{letter-spacing:0.748965px;}
.lsba{letter-spacing:0.749925px;}
.ls5c{letter-spacing:0.750750px;}
.ls62{letter-spacing:0.752400px;}
.ls86{letter-spacing:0.756608px;}
.ls42{letter-spacing:0.762300px;}
.ls40{letter-spacing:0.763800px;}
.ls3d{letter-spacing:0.772943px;}
.ls5a{letter-spacing:0.784875px;}
.ls3b{letter-spacing:1.201590px;}
.lsbc{letter-spacing:1.452300px;}
.lsa6{letter-spacing:1.467750px;}
.ls5{letter-spacing:1.468800px;}
.ls9a{letter-spacing:1.470000px;}
.ls0{letter-spacing:1.475003px;}
.ls28{letter-spacing:1.478925px;}
.ls78{letter-spacing:1.482000px;}
.ls8a{letter-spacing:1.483200px;}
.ls18{letter-spacing:1.484100px;}
.ls95{letter-spacing:1.484700px;}
.ls1e{letter-spacing:1.499400px;}
.lsf{letter-spacing:1.499625px;}
.ls5b{letter-spacing:1.501988px;}
.ls10{letter-spacing:1.507200px;}
.ls89{letter-spacing:1.514700px;}
.ls3f{letter-spacing:1.522575px;}
.ls75{letter-spacing:1.522800px;}
.ls43{letter-spacing:1.525095px;}
.lsb0{letter-spacing:1.562400px;}
.ls60{letter-spacing:1.574625px;}
.ls73{letter-spacing:1.622888px;}
.ls6f{letter-spacing:1.805828px;}
.ls1a{letter-spacing:2.114775px;}
.ls6{letter-spacing:2.202480px;}
.ls9e{letter-spacing:2.205000px;}
.lse{letter-spacing:2.214675px;}
.ls15{letter-spacing:2.225423px;}
.ls96{letter-spacing:2.227050px;}
.lsb3{letter-spacing:2.227500px;}
.ls2b{letter-spacing:2.248365px;}
.lsb2{letter-spacing:2.251500px;}
.ls63{letter-spacing:2.252250px;}
.lsa5{letter-spacing:2.271150px;}
.ls88{letter-spacing:2.271308px;}
.lsbd{letter-spacing:2.277150px;}
.ls41{letter-spacing:2.286375px;}
.ls23{letter-spacing:2.286900px;}
.ls99{letter-spacing:2.321453px;}
.lsbb{letter-spacing:2.325600px;}
.lsb1{letter-spacing:2.829750px;}
.ls7{letter-spacing:2.937600px;}
.ls9c{letter-spacing:2.939265px;}
.ls1{letter-spacing:2.952900px;}
.lsb4{letter-spacing:2.966400px;}
.ls1d{letter-spacing:2.968200px;}
.ls5d{letter-spacing:2.997638px;}
.ls3e{letter-spacing:2.998800px;}
.ls3{letter-spacing:3.000218px;}
.ls44{letter-spacing:3.043755px;}
.ls8{letter-spacing:3.671280px;}
.lsa2{letter-spacing:3.672000px;}
.lsd{letter-spacing:3.691125px;}
.ls11{letter-spacing:3.693750px;}
.ls20{letter-spacing:3.709523px;}
.ls97{letter-spacing:3.712485px;}
.ls5f{letter-spacing:3.747765px;}
.ls1b{letter-spacing:3.750705px;}
.ls30{letter-spacing:3.997350px;}
.ls35{letter-spacing:4.009500px;}
.ls74{letter-spacing:4.239743px;}
.lsc{letter-spacing:4.342500px;}
.ls9b{letter-spacing:4.410000px;}
.ls7a{letter-spacing:4.452300px;}
.ls1f{letter-spacing:4.498200px;}
.ls64{letter-spacing:4.499625px;}
.ls87{letter-spacing:4.544100px;}
.ls77{letter-spacing:4.645500px;}
.ls2{letter-spacing:5.169023px;}
.ls2f{letter-spacing:5.194350px;}
.ls71{letter-spacing:5.247900px;}
.ls31{letter-spacing:5.419200px;}
.ls21{letter-spacing:5.936400px;}
.ls8b{letter-spacing:5.997600px;}
.ls7b{letter-spacing:6.678450px;}
.ls6e{letter-spacing:6.747300px;}
.ls54{letter-spacing:7.421228px;}
.ls91{letter-spacing:8.246700px;}
.lsa{letter-spacing:9.555120px;}
.ls36{letter-spacing:10.395975px;}
.ls27{letter-spacing:12.782550px;}
.ls22{letter-spacing:15.589598px;}
.lsaf{letter-spacing:21.314265px;}
.ls59{letter-spacing:31.497375px;}
.ls32{letter-spacing:32.744250px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._27{margin-left:-308.942115px;}
._29{margin-left:-83.917763px;}
._1a{margin-left:-69.191280px;}
._19{margin-left:-53.392065px;}
._2a{margin-left:-51.533625px;}
._17{margin-left:-46.895760px;}
._18{margin-left:-42.920640px;}
._30{margin-left:-41.168880px;}
._33{margin-left:-40.076235px;}
._28{margin-left:-35.685000px;}
._2c{margin-left:-27.558090px;}
._25{margin-left:-19.995337px;}
._1b{margin-left:-13.987500px;}
._3{margin-left:-12.798180px;}
._21{margin-left:-11.607098px;}
._1{margin-left:-9.759045px;}
._23{margin-left:-8.626095px;}
._16{margin-left:-7.344000px;}
._15{margin-left:-5.504610px;}
._0{margin-left:-3.691125px;}
._d{margin-left:-2.670075px;}
._c{margin-left:-1.009230px;}
._2{width:1.896225px;}
._a{width:3.321105px;}
._4{width:4.734975px;}
._5{width:6.407820px;}
._9{width:7.459200px;}
._8{width:9.216000px;}
._b{width:10.329900px;}
._6{width:11.376000px;}
._e{width:12.785925px;}
._7{width:13.968000px;}
._20{width:15.251400px;}
._1e{width:16.575975px;}
._1c{width:18.477712px;}
._24{width:19.781452px;}
._1d{width:21.713250px;}
._1f{width:23.979217px;}
._14{width:25.065360px;}
._12{width:26.416080px;}
._10{width:28.106640px;}
._f{width:30.022560px;}
._2d{width:31.142925px;}
._13{width:32.320800px;}
._11{width:33.739920px;}
._22{width:34.810455px;}
._32{width:35.863350px;}
._2e{width:37.556250px;}
._26{width:39.035302px;}
._31{width:45.352350px;}
._2b{width:49.741845px;}
._2f{width:63.239280px;}
.fc0{color:transparent;}
.fs31{font-size:15.750000px;}
.fs16{font-size:17.250000px;}
.fs29{font-size:23.250000px;}
.fs36{font-size:24.000000px;}
.fs15{font-size:24.750000px;}
.fs1a{font-size:25.500000px;}
.fs2a{font-size:27.000000px;}
.fsc{font-size:27.750000px;}
.fsa{font-size:29.250000px;}
.fs1c{font-size:30.750000px;}
.fs2d{font-size:33.750000px;}
.fs1b{font-size:34.500000px;}
.fs28{font-size:36.000000px;}
.fs2b{font-size:38.250000px;}
.fs1e{font-size:39.000000px;}
.fsd{font-size:40.500000px;}
.fs37{font-size:43.500000px;}
.fs12{font-size:45.750000px;}
.fs13{font-size:47.250000px;}
.fs10{font-size:48.000000px;}
.fs11{font-size:48.750000px;}
.fsf{font-size:49.500000px;}
.fs22{font-size:50.250000px;}
.fs2f{font-size:51.750000px;}
.fs25{font-size:54.000000px;}
.fs1f{font-size:57.000000px;}
.fs19{font-size:60.750000px;}
.fs6{font-size:65.250000px;}
.fse{font-size:67.500000px;}
.fs24{font-size:68.250000px;}
.fs9{font-size:69.000000px;}
.fsb{font-size:69.750000px;}
.fs2c{font-size:70.500000px;}
.fs23{font-size:71.250000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:72.750000px;}
.fs14{font-size:73.500000px;}
.fs8{font-size:74.250000px;}
.fs1d{font-size:75.000000px;}
.fs26{font-size:75.750000px;}
.fs20{font-size:76.500000px;}
.fs7{font-size:77.250000px;}
.fs18{font-size:79.500000px;}
.fs32{font-size:81.000000px;}
.fs21{font-size:83.250000px;}
.fs30{font-size:86.250000px;}
.fs2e{font-size:88.500000px;}
.fs33{font-size:89.250000px;}
.fs3{font-size:93.750000px;}
.fs34{font-size:94.500000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:96.750000px;}
.fs35{font-size:111.000000px;}
.fs17{font-size:136.500000px;}
.fs0{font-size:144.750000px;}
.fs27{font-size:207.750000px;}
.y0{bottom:0.000000px;}
.y117{bottom:53.279850px;}
.y91{bottom:60.118815px;}
.y19c{bottom:60.479685px;}
.y142{bottom:61.198320px;}
.y143{bottom:61.199850px;}
.y27{bottom:61.920000px;}
.y61{bottom:79.919381px;}
.y62{bottom:79.920600px;}
.y89{bottom:80.638851px;}
.y8a{bottom:80.639100px;}
.y116{bottom:80.640750px;}
.y26{bottom:81.720150px;}
.y25{bottom:81.720780px;}
.yeb{bottom:82.080562px;}
.y141{bottom:82.437983px;}
.y174{bottom:85.320022px;}
.y1ca{bottom:85.679287px;}
.y19a{bottom:85.679601px;}
.y19b{bottom:85.680150px;}
.yca{bottom:98.641129px;}
.y60{bottom:101.158744px;}
.y88{bottom:101.518101px;}
.y115{bottom:101.880488px;}
.yea{bottom:102.599700px;}
.y24{bottom:102.960600px;}
.y140{bottom:103.677645px;}
.y173{bottom:106.559685px;}
.y1c9{bottom:106.918950px;}
.y1c8{bottom:106.919888px;}
.y198{bottom:106.920465px;}
.y199{bottom:106.920600px;}
.yc9{bottom:119.880791px;}
.y5e{bottom:121.679376px;}
.y5f{bottom:121.679700px;}
.y113{bottom:122.399419px;}
.y114{bottom:122.399850px;}
.y87{bottom:122.759100px;}
.y86{bottom:122.759432px;}
.ye8{bottom:123.478476px;}
.ye9{bottom:123.480900px;}
.y23{bottom:124.199415px;}
.y22{bottom:124.199430px;}
.y13f{bottom:124.558995px;}
.y1c7{bottom:127.439250px;}
.y197{bottom:127.439603px;}
.y172{bottom:135.001282px;}
.yc8{bottom:140.400154px;}
.y5d{bottom:142.558444px;}
.y112{bottom:143.279115px;}
.y85{bottom:143.638500px;}
.ye7{bottom:144.717838px;}
.y13e{bottom:145.438691px;}
.y21{bottom:145.439250px;}
.y1c6{bottom:148.679700px;}
.y196{bottom:148.680602px;}
.y1c5{bottom:148.682347px;}
.y171{bottom:156.240945px;}
.yc7{bottom:161.279850px;}
.yc6{bottom:161.280788px;}
.y5b{bottom:163.079044px;}
.y5c{bottom:163.079400px;}
.y111{bottom:164.160465px;}
.y84{bottom:164.519685px;}
.y83{bottom:164.520182px;}
.ye6{bottom:165.598907px;}
.y13d{bottom:166.318388px;}
.y20{bottom:166.319250px;}
.y1c4{bottom:169.201710px;}
.y195{bottom:169.559670px;}
.y170{bottom:176.400341px;}
.yc5{bottom:181.800150px;}
.yc4{bottom:181.800630px;}
.y5a{bottom:183.960112px;}
.y110{bottom:185.040000px;}
.y82{bottom:185.399250px;}
.ye5{bottom:186.119863px;}
.y1f{bottom:186.839250px;}
.y13c{bottom:187.199737px;}
.y1c3{bottom:189.721072px;}
.y81{bottom:195.118785px;}
.y16f{bottom:197.281691px;}
.y194{bottom:198.361395px;}
.yc3{bottom:202.680326px;}
.y58{bottom:204.478669px;}
.y59{bottom:204.479250px;}
.y10f{bottom:205.919535px;}
.y80{bottom:206.278800px;}
.ye4{bottom:207.359226px;}
.y1e{bottom:207.359250px;}
.y13a{bottom:207.718800px;}
.y13b{bottom:207.719100px;}
.y1c2{bottom:210.240435px;}
.y16e{bottom:217.801054px;}
.y193{bottom:219.240463px;}
.yc2{bottom:223.560022px;}
.y57{bottom:225.359738px;}
.y1c{bottom:228.238485px;}
.y1d{bottom:228.239250px;}
.y138{bottom:228.599989px;}
.y139{bottom:228.600150px;}
.y1c1{bottom:230.760229px;}
.ye3{bottom:236.160951px;}
.y16d{bottom:238.680750px;}
.y16c{bottom:238.681522px;}
.y192{bottom:240.119531px;}
.y10e{bottom:243.000000px;}
.y7f{bottom:243.359250px;}
.yc0{bottom:244.079250px;}
.yc1{bottom:244.079385px;}
.y56{bottom:246.599100px;}
.y1b{bottom:249.120285px;}
.y136{bottom:249.477472px;}
.y137{bottom:249.479685px;}
.y1c0{bottom:251.999891px;}
.ye2{bottom:257.040019px;}
.y16b{bottom:259.921185px;}
.y191{bottom:261.000600px;}
.y7e{bottom:264.238785px;}
.ybe{bottom:264.959314px;}
.ybf{bottom:264.960600px;}
.y1a{bottom:269.640285px;}
.y135{bottom:270.357169px;}
.y1bf{bottom:272.879588px;}
.y190{bottom:281.880000px;}
.y18f{bottom:281.880467px;}
.y55{bottom:283.320285px;}
.ybd{bottom:286.198792px;}
.y16a{bottom:288.720750px;}
.y19{bottom:290.520285px;}
.y18{bottom:290.520343px;}
.y134{bottom:291.238519px;}
.y1be{bottom:294.119250px;}
.ye1{bottom:294.120876px;}
.y10d{bottom:295.920600px;}
.y18d{bottom:302.759361px;}
.y18e{bottom:302.759535px;}
.ybc{bottom:307.080142px;}
.y54{bottom:309.600150px;}
.y168{bottom:309.961050px;}
.y10c{bottom:310.320285px;}
.y17{bottom:312.120000px;}
.y16{bottom:312.120150px;}
.y133{bottom:312.478181px;}
.y1bd{bottom:315.000600px;}
.y53{bottom:316.439235px;}
.y7d{bottom:316.798515px;}
.y169{bottom:317.161035px;}
.y18c{bottom:323.280317px;}
.y50{bottom:324.000000px;}
.y52{bottom:324.720135px;}
.ybb{bottom:327.959839px;}
.y51{bottom:327.960000px;}
.y167{bottom:330.479685px;}
.y14{bottom:332.639685px;}
.y15{bottom:332.640150px;}
.y132{bottom:333.359531px;}
.y4f{bottom:335.159850px;}
.y4e{bottom:335.519100px;}
.y4d{bottom:336.239250px;}
.y1bc{bottom:339.840135px;}
.y1bb{bottom:343.440037px;}
.y18b{bottom:344.159385px;}
.y10b{bottom:345.599700px;}
.y166{bottom:345.960600px;}
.ye0{bottom:346.680750px;}
.ydf{bottom:346.681146px;}
.yb9{bottom:348.838868px;}
.yba{bottom:348.839535px;}
.y165{bottom:351.720135px;}
.y13{bottom:353.519685px;}
.y131{bottom:354.239228px;}
.y7c{bottom:354.239850px;}
.y4c{bottom:357.120435px;}
.y1ba{bottom:364.679700px;}
.y18a{bottom:365.399541px;}
.yde{bottom:367.920326px;}
.yb8{bottom:369.718564px;}
.y164{bottom:371.161035px;}
.y163{bottom:372.240435px;}
.y4b{bottom:373.679100px;}
.y10a{bottom:374.399235px;}
.y7b{bottom:374.758929px;}
.y11{bottom:374.759820px;}
.y12{bottom:374.760135px;}
.y130{bottom:375.118924px;}
.y4a{bottom:377.639100px;}
.y1b9{bottom:384.479685px;}
.y189{bottom:386.278609px;}
.y162{bottom:388.080465px;}
.ydd{bottom:388.441464px;}
.yb7{bottom:390.779805px;}
.y109{bottom:392.760720px;}
.y161{bottom:393.480885px;}
.y10{bottom:395.279820px;}
.y108{bottom:395.280435px;}
.y7a{bottom:395.639700px;}
.y12f{bottom:396.000274px;}
.y49{bottom:398.699850px;}
.y48{bottom:398.700444px;}
.y1b8{bottom:401.399235px;}
.y188{bottom:406.799565px;}
.y107{bottom:410.400285px;}
.yb6{bottom:411.479243px;}
.yf{bottom:416.159820px;}
.y12d{bottom:416.879839px;}
.y12e{bottom:416.879970px;}
.y47{bottom:419.399820px;}
.y160{bottom:421.920874px;}
.ydc{bottom:425.880433px;}
.y187{bottom:427.679216px;}
.yb5{bottom:432.358939px;}
.y106{bottom:432.359250px;}
.y1e1{bottom:435.599033px;}
.ye{bottom:437.039385px;}
.yd{bottom:437.039531px;}
.y12c{bottom:437.759535px;}
.y12b{bottom:437.761099px;}
.y46{bottom:438.838950px;}
.y45{bottom:440.279848px;}
.y15f{bottom:442.800570px;}
.y186{bottom:448.560285px;}
.y79{bottom:448.919814px;}
.y105{bottom:450.359850px;}
.yb4{bottom:453.240289px;}
.y104{bottom:453.599670px;}
.y1b7{bottom:454.319820px;}
.y1e0{bottom:456.119989px;}
.yc{bottom:457.920600px;}
.yb{bottom:457.920930px;}
.y12a{bottom:458.280461px;}
.y44{bottom:461.160917px;}
.y103{bottom:467.640150px;}
.y78{bottom:470.160814px;}
.y15e{bottom:471.960889px;}
.y1b6{bottom:472.679670px;}
.yb3{bottom:474.119985px;}
.y1b5{bottom:474.479235px;}
.y1df{bottom:476.999057px;}
.y185{bottom:477.719100px;}
.ydb{bottom:478.800602px;}
.ya{bottom:478.800930px;}
.y129{bottom:479.520124px;}
.y42{bottom:482.039436px;}
.y43{bottom:482.039985px;}
.y102{bottom:483.480285px;}
.y77{bottom:491.039882px;}
.y15d{bottom:492.840585px;}
.y1b4{bottom:493.920000px;}
.yb1{bottom:494.999220px;}
.yb2{bottom:494.999400px;}
.y1b3{bottom:495.360300px;}
.y101{bottom:496.439670px;}
.y1de{bottom:497.878125px;}
.y9{bottom:499.320930px;}
.yda{bottom:499.679670px;}
.yd9{bottom:499.679916px;}
.y127{bottom:500.399374px;}
.y128{bottom:500.399820px;}
.y41{bottom:503.280435px;}
.yfe{bottom:505.800150px;}
.y100{bottom:507.599670px;}
.y15c{bottom:511.559685px;}
.y76{bottom:511.918950px;}
.y75{bottom:511.920975px;}
.y159{bottom:513.720150px;}
.yff{bottom:514.079400px;}
.y184{bottom:514.799520px;}
.y1b2{bottom:515.160420px;}
.y9f{bottom:515.520173px;}
.yaf{bottom:515.879854px;}
.yb0{bottom:515.880570px;}
.y1b1{bottom:516.599070px;}
.y15b{bottom:517.320870px;}
.y8{bottom:520.560750px;}
.y15a{bottom:520.920000px;}
.yd8{bottom:520.920915px;}
.y126{bottom:521.279070px;}
.y40{bottom:521.640150px;}
.y3e{bottom:524.159661px;}
.y3f{bottom:524.159820px;}
.yfd{bottom:526.679670px;}
.y1dd{bottom:527.038144px;}
.y9e{bottom:529.919704px;}
.y1b0{bottom:530.639700px;}
.y74{bottom:532.800043px;}
.y158{bottom:532.800150px;}
.y157{bottom:534.599670px;}
.y183{bottom:535.319820px;}
.yae{bottom:536.759550px;}
.y1af{bottom:537.480285px;}
.y6{bottom:541.439820px;}
.y7{bottom:541.440315px;}
.yd7{bottom:541.799983px;}
.y125{bottom:542.160420px;}
.yfc{bottom:543.959970px;}
.y9c{bottom:544.318935px;}
.y9d{bottom:544.319235px;}
.y3d{bottom:544.680617px;}
.yfb{bottom:547.199850px;}
.y1db{bottom:547.557816px;}
.y1dc{bottom:547.559100px;}
.y73{bottom:553.681112px;}
.y156{bottom:555.480885px;}
.y9b{bottom:558.718466px;}
.y1ae{bottom:558.719100px;}
.y5{bottom:562.319820px;}
.y124{bottom:563.039839px;}
.yfa{bottom:563.399235px;}
.y3c{bottom:565.559685px;}
.yf9{bottom:568.079400px;}
.y1da{bottom:568.436884px;}
.y155{bottom:570.239820px;}
.y9a{bottom:573.120435px;}
.y99{bottom:573.120806px;}
.yad{bottom:573.480150px;}
.y1ad{bottom:573.838950px;}
.y72{bottom:574.560180px;}
.y90{bottom:575.999400px;}
.y154{bottom:576.360300px;}
.yd6{bottom:578.520546px;}
.y1ac{bottom:579.239220px;}
.y3b{bottom:580.679670px;}
.y8f{bottom:583.199385px;}
.y123{bottom:583.919535px;}
.y122{bottom:583.920964px;}
.y3a{bottom:584.280435px;}
.yf8{bottom:585.000600px;}
.y39{bottom:586.439216px;}
.y8e{bottom:587.879520px;}
.y8d{bottom:587.879700px;}
.y98{bottom:588.240619px;}
.y182{bottom:588.599029px;}
.y1d9{bottom:588.957840px;}
.yf7{bottom:589.319374px;}
.y153{bottom:591.841185px;}
.yac{bottom:594.359663px;}
.y71{bottom:595.439248px;}
.y1ab{bottom:595.440315px;}
.y152{bottom:597.239820px;}
.y4{bottom:599.759535px;}
.y1aa{bottom:600.120435px;}
.y8c{bottom:602.279250px;}
.y97{bottom:602.640150px;}
.y96{bottom:602.640454px;}
.y121{bottom:604.800660px;}
.y38{bottom:607.320285px;}
.y37{bottom:607.321258px;}
.y180{bottom:609.118577px;}
.y181{bottom:609.119985px;}
.y1d8{bottom:609.836908px;}
.yf6{bottom:610.199070px;}
.yab{bottom:615.059100px;}
.y70{bottom:616.320317px;}
.y8b{bottom:616.679070px;}
.y95{bottom:617.039985px;}
.y151{bottom:617.761072px;}
.y1a8{bottom:620.639025px;}
.y1a9{bottom:620.639100px;}
.y120{bottom:625.320022px;}
.y36{bottom:628.200326px;}
.y17f{bottom:630.359576px;}
.y1d7{bottom:630.717977px;}
.yd4{bottom:631.079370px;}
.yd5{bottom:631.080420px;}
.yaa{bottom:635.759085px;}
.ya9{bottom:635.759947px;}
.y6f{bottom:637.199385px;}
.y6e{bottom:637.199702px;}
.y150{bottom:638.280435px;}
.y1a7{bottom:641.520375px;}
.y11e{bottom:646.559554px;}
.y11f{bottom:646.559685px;}
.y35{bottom:648.359351px;}
.y17e{bottom:651.238644px;}
.y1d6{bottom:651.238933px;}
.yf5{bottom:651.600720px;}
.yd3{bottom:651.958438px;}
.ya8{bottom:656.279310px;}
.y6c{bottom:658.077579px;}
.y6d{bottom:658.078770px;}
.y1a6{bottom:662.039738px;}
.y93{bottom:663.478601px;}
.y94{bottom:663.479235px;}
.y14f{bottom:667.081710px;}
.y11d{bottom:667.439250px;}
.y33{bottom:669.239947px;}
.y34{bottom:669.240420px;}
.y17d{bottom:671.759601px;}
.yf4{bottom:671.760135px;}
.y1d5{bottom:672.118001px;}
.yd2{bottom:673.199437px;}
.ya7{bottom:676.440360px;}
.y92{bottom:677.880570px;}
.y6b{bottom:678.598536px;}
.y1a5{bottom:682.559100px;}
.y1a4{bottom:682.559610px;}
.y14e{bottom:687.601072px;}
.y11c{bottom:687.959385px;}
.y31{bottom:689.757608px;}
.y32{bottom:689.759085px;}
.yf3{bottom:692.639700px;}
.yf2{bottom:692.643255px;}
.y17b{bottom:692.999797px;}
.y17c{bottom:693.000600px;}
.y1d4{bottom:693.359183px;}
.ya6{bottom:697.680022px;}
.y69{bottom:699.838629px;}
.y6a{bottom:699.839535px;}
.y1a3{bottom:703.078972px;}
.y14c{bottom:708.120356px;}
.y14d{bottom:708.120435px;}
.yd1{bottom:709.920000px;}
.y30{bottom:710.278564px;}
.yf1{bottom:713.162618px;}
.y17a{bottom:713.518935px;}
.y1d3{bottom:713.878320px;}
.y1d2{bottom:713.878856px;}
.y11b{bottom:716.759085px;}
.ya5{bottom:718.199385px;}
.ya4{bottom:718.199441px;}
.y68{bottom:719.997473px;}
.y1a2{bottom:723.958669px;}
.y14b{bottom:728.999869px;}
.ycf{bottom:730.440105px;}
.yd0{bottom:730.440255px;}
.y2e{bottom:730.798864px;}
.y2f{bottom:730.799520px;}
.yf0{bottom:733.681980px;}
.y1d1{bottom:734.039882px;}
.ya3{bottom:738.540383px;}
.y67{bottom:740.518429px;}
.y179{bottom:741.600617px;}
.y1a1{bottom:744.478031px;}
.y14a{bottom:749.160919px;}
.y2d{bottom:751.319820px;}
.y3{bottom:752.399235px;}
.y11a{bottom:753.839535px;}
.yef{bottom:754.201343px;}
.y1cf{bottom:754.918929px;}
.y1d0{bottom:754.918950px;}
.y2c{bottom:758.519670px;}
.ya2{bottom:759.239820px;}
.y66{bottom:761.039385px;}
.y178{bottom:762.479685px;}
.y1a0{bottom:764.279115px;}
.y2{bottom:768.959286px;}
.y148{bottom:770.040304px;}
.y149{bottom:770.040615px;}
.y2b{bottom:771.479190px;}
.y2a{bottom:772.199340px;}
.yee{bottom:774.720705px;}
.y1cd{bottom:775.079434px;}
.y1ce{bottom:775.079955px;}
.y65{bottom:781.558481px;}
.yce{bottom:782.279936px;}
.y177{bottom:783.000000px;}
.y19f{bottom:785.160465px;}
.y19e{bottom:785.160615px;}
.y147{bottom:790.199700px;}
.y29{bottom:792.359734px;}
.yed{bottom:795.239220px;}
.y1cc{bottom:795.598571px;}
.ya1{bottom:795.600135px;}
.y64{bottom:802.079437px;}
.ycc{bottom:803.160503px;}
.ycd{bottom:803.161005px;}
.y176{bottom:803.520270px;}
.y119{bottom:805.319644px;}
.y19d{bottom:805.679978px;}
.y1{bottom:806.399235px;}
.y145{bottom:811.081024px;}
.y146{bottom:811.081050px;}
.y28{bottom:812.160465px;}
.ya0{bottom:815.759490px;}
.yec{bottom:816.120390px;}
.y1cb{bottom:816.479640px;}
.y63{bottom:822.598575px;}
.y175{bottom:823.679715px;}
.ycb{bottom:824.399865px;}
.y118{bottom:826.199340px;}
.y144{bottom:831.240420px;}
.h43{height:16.426758px;}
.h1a{height:16.921509px;}
.h35{height:24.249023px;}
.h19{height:24.459961px;}
.h4c{height:25.031250px;}
.h1f{height:25.201172px;}
.h36{height:28.160156px;}
.hc{height:28.692993px;}
.he{height:28.942383px;}
.h21{height:30.164429px;}
.h3a{height:35.200195px;}
.h20{height:35.982422px;}
.h33{height:37.546875px;}
.h38{height:39.893555px;}
.h23{height:40.675781px;}
.hf{height:42.240234px;}
.h4d{height:45.369141px;}
.h37{height:46.350220px;}
.h16{height:47.715820px;}
.h2b{height:47.845459px;}
.h17{height:49.280273px;}
.h14{height:50.062500px;}
.h15{height:50.844727px;}
.h13{height:51.626953px;}
.h28{height:52.409180px;}
.h3c{height:53.973633px;}
.h2c{height:56.320312px;}
.h24{height:59.449219px;}
.h1d{height:63.360352px;}
.h8{height:68.053711px;}
.h10{height:70.400391px;}
.h2a{height:71.182617px;}
.hb{height:71.964844px;}
.h48{height:72.136230px;}
.hd{height:72.747070px;}
.h39{height:73.529297px;}
.h29{height:74.311523px;}
.h7{height:75.093750px;}
.h45{height:75.603516px;}
.h6{height:75.875977px;}
.h26{height:75.876704px;}
.h18{height:76.658203px;}
.h2e{height:76.658938px;}
.h3f{height:76.659673px;}
.ha{height:77.440430px;}
.h22{height:78.222656px;}
.h2d{height:79.004883px;}
.h25{height:79.787109px;}
.h9{height:80.569336px;}
.h27{height:82.274414px;}
.h1c{height:82.916016px;}
.h44{height:84.480469px;}
.h34{height:86.827148px;}
.h49{height:89.947266px;}
.h42{height:89.956055px;}
.h3b{height:92.302734px;}
.h1e{height:94.482422px;}
.h5{height:97.778320px;}
.h4a{height:98.560547px;}
.h4{height:100.125000px;}
.h3{height:100.907227px;}
.h4b{height:115.769531px;}
.h1b{height:137.566406px;}
.h2{height:150.969727px;}
.h32{height:216.676758px;}
.h12{height:897.750000px;}
.h11{height:897.838500px;}
.h31{height:897.840000px;}
.h3e{height:901.500000px;}
.h3d{height:901.798500px;}
.h1{height:902.250000px;}
.h0{height:902.518500px;}
.h30{height:903.750000px;}
.h2f{height:903.960000px;}
.h47{height:912.750000px;}
.h46{height:912.958500px;}
.h40{height:926.640000px;}
.h41{height:927.000000px;}
.w2{width:1151.998500px;}
.w4{width:1151.999988px;}
.w5{width:1151.999994px;}
.w3{width:1152.000000px;}
.w7{width:1155.000000px;}
.w6{width:1155.238500px;}
.w0{width:1157.758500px;}
.w1{width:1158.000000px;}
.wb{width:1166.250000px;}
.wa{width:1166.398500px;}
.w8{width:1175.041185px;}
.w9{width:1175.250000px;}
.x0{left:0.000000px;}
.x6c{left:5.400288px;}
.xcb{left:32.759565px;}
.x59{left:34.199838px;}
.x61{left:35.279005px;}
.x71{left:36.361713px;}
.xa2{left:37.439685px;}
.x1{left:38.878350px;}
.xe{left:39.960386px;}
.x1c{left:41.031011px;}
.xff{left:43.199546px;}
.xfd{left:44.643232px;}
.xcc{left:51.839565px;}
.x5e{left:52.919673px;}
.x65{left:54.000003px;}
.x121{left:55.080787px;}
.x29{left:56.878950px;}
.x7{left:57.958350px;}
.x7e{left:59.398665px;}
.xca{left:60.479694px;}
.xfc{left:62.282865px;}
.x19{left:65.519100px;}
.xcd{left:71.639700px;}
.xb1{left:77.041725px;}
.xf1{left:78.839565px;}
.x7d{left:79.918950px;}
.xc{left:90.719565px;}
.x5f{left:92.520738px;}
.x13{left:93.959400px;}
.xd2{left:96.120071px;}
.xd0{left:97.558665px;}
.xe0{left:98.639261px;}
.xf9{left:99.720904px;}
.x5a{left:102.601338px;}
.xb2{left:103.679100px;}
.xd{left:105.478665px;}
.x82{left:106.559685px;}
.x60{left:110.160438px;}
.x64{left:113.761188px;}
.x42{left:116.279250px;}
.xd5{left:117.358665px;}
.x83{left:125.639700px;}
.x2a{left:133.559685px;}
.x84{left:136.079400px;}
.x7f{left:142.918350px;}
.xae{left:144.358133px;}
.x2d{left:145.798950px;}
.xac{left:149.038950px;}
.x80{left:155.879565px;}
.xfe{left:161.639100px;}
.x47{left:163.438665px;}
.x2b{left:167.039400px;}
.x85{left:171.358665px;}
.x2e{left:180.359850px;}
.x86{left:184.679100px;}
.x7c{left:186.839565px;}
.xa5{left:195.479685px;}
.x48{left:197.279250px;}
.x66{left:199.800588px;}
.x1a{left:204.120000px;}
.x2f{left:208.798515px;}
.x49{left:225.719535px;}
.xa6{left:227.878350px;}
.xd3{left:230.759100px;}
.x81{left:233.278800px;}
.xdc{left:235.798515px;}
.x6d{left:240.121038px;}
.xf{left:245.519685px;}
.xd4{left:246.958350px;}
.xa7{left:250.918350px;}
.xdd{left:251.999400px;}
.x6e{left:255.241038px;}
.xf3{left:257.399850px;}
.x43{left:262.439250px;}
.x10{left:264.958950px;}
.x44{left:276.118785px;}
.x1b{left:282.598500px;}
.xa3{left:297.718500px;}
.x67{left:299.521338px;}
.xce{left:304.918350px;}
.xf4{left:311.038950px;}
.xa4{left:314.278800px;}
.xcf{left:319.679100px;}
.x2{left:322.559685px;}
.x2c{left:323.639100px;}
.xf5{left:327.239850px;}
.x1d{left:337.679700px;}
.xde{left:345.238785px;}
.x68{left:348.480288px;}
.x9{left:352.079385px;}
.x14{left:353.158785px;}
.xa{left:369.359850px;}
.xdf{left:372.238785px;}
.x3{left:375.839535px;}
.xa8{left:376.918950px;}
.x72{left:380.880573px;}
.xfb{left:384.118785px;}
.x22{left:387.719565px;}
.xd8{left:391.679670px;}
.x73{left:397.080003px;}
.x28{left:399.239876px;}
.x25{left:400.319820px;}
.x87{left:402.119385px;}
.x97{left:403.198826px;}
.x23{left:404.279850px;}
.x102{left:405.718500px;}
.x106{left:406.795530px;}
.xa9{left:408.958335px;}
.xd9{left:412.559100px;}
.x51{left:417.238241px;}
.x30{left:418.318770px;}
.x91{left:420.838530px;}
.x45{left:425.159415px;}
.xda{left:430.918950px;}
.x3f{left:432.000000px;}
.x11{left:434.519670px;}
.xc7{left:438.840594px;}
.xc3{left:439.919994px;}
.x69{left:442.080408px;}
.x116{left:443.878320px;}
.x96{left:446.038920px;}
.x99{left:449.639700px;}
.xc2{left:450.720744px;}
.xe1{left:452.159355px;}
.xaf{left:453.599670px;}
.xc6{left:458.279844px;}
.xc4{left:459.359259px;}
.x35{left:460.799565px;}
.x12{left:464.398635px;}
.x117{left:465.479535px;}
.xb5{left:466.919994px;}
.xb0{left:468.358665px;}
.xe9{left:470.519205px;}
.x6a{left:471.961173px;}
.xe2{left:477.359805px;}
.x56{left:479.159415px;}
.x4a{left:480.599670px;}
.x10b{left:484.198785px;}
.x33{left:486.359250px;}
.x52{left:489.599070px;}
.x34{left:502.919535px;}
.x70{left:504.720708px;}
.x53{left:506.879520px;}
.xb9{left:509.040024px;}
.x11c{left:512.640753px;}
.x4b{left:516.599070px;}
.xf6{left:521.999400px;}
.x88{left:533.159415px;}
.x57{left:538.918950px;}
.xba{left:541.440264px;}
.xf7{left:549.719565px;}
.x94{left:551.878320px;}
.xfa{left:555.838530px;}
.x58{left:557.998950px;}
.x89{left:563.758530px;}
.x15{left:568.079400px;}
.xd6{left:571.678530px;}
.x17{left:574.199850px;}
.x11e{left:578.520723px;}
.x3b{left:581.759085px;}
.x9d{left:588.238770px;}
.xd7{left:589.319820px;}
.x11f{left:595.440258px;}
.x8a{left:596.519670px;}
.x16{left:597.958335px;}
.x26{left:600.118785px;}
.x1e{left:602.279250px;}
.x120{left:604.080408px;}
.x38{left:606.239220px;}
.x100{left:608.038920px;}
.xd1{left:611.639700px;}
.x27{left:618.119385px;}
.x5b{left:621.720108px;}
.x39{left:622.799520px;}
.xdb{left:632.878320px;}
.xbb{left:633.959514px;}
.xaa{left:636.838530px;}
.x1f{left:644.039985px;}
.x5c{left:645.841188px;}
.xbc{left:652.319229px;}
.x62{left:654.840588px;}
.xc8{left:657.719514px;}
.x5d{left:662.401518px;}
.x6b{left:664.201038px;}
.x11d{left:667.800108px;}
.x4f{left:670.319820px;}
.x54{left:671.758530px;}
.xc9{left:673.559694px;}
.x101{left:676.079355px;}
.xf8{left:678.958335px;}
.x18{left:683.638545px;}
.x50{left:686.878320px;}
.xad{left:688.318770px;}
.x55{left:689.759085px;}
.x92{left:696.599670px;}
.xe5{left:702.359205px;}
.xe3{left:705.239820px;}
.x36{left:706.319235px;}
.x93{left:712.798920px;}
.x20{left:714.239220px;}
.x63{left:716.401518px;}
.xe6{left:719.280390px;}
.x37{left:721.798560px;}
.xb{left:724.319820px;}
.xab{left:725.399235px;}
.x21{left:731.878920px;}
.x6f{left:738.001008px;}
.x4c{left:740.878320px;}
.x8{left:741.959385px;}
.xf2{left:744.838530px;}
.xb3{left:746.639694px;}
.xbd{left:759.599079px;}
.xb4{left:761.759544px;}
.x4{left:763.559100px;}
.x8b{left:770.759130px;}
.x9b{left:781.559685px;}
.xbe{left:794.159814px;}
.x9c{left:796.679715px;}
.x4d{left:802.439205px;}
.x9e{left:814.319280px;}
.x40{left:816.118740px;}
.x4e{left:817.918305px;}
.x9f{left:830.159370px;}
.x41{left:832.319820px;}
.x9a{left:833.399235px;}
.x74{left:841.680078px;}
.x119{left:845.279205px;}
.x3c{left:846.358605px;}
.x112{left:847.439670px;}
.x118{left:850.318815px;}
.x77{left:857.881158px;}
.x3d{left:861.119385px;}
.x113{left:862.559685px;}
.xbf{left:864.720159px;}
.x8c{left:866.878965px;}
.x10d{left:873.358605px;}
.x31{left:877.679715px;}
.x5{left:882.359805px;}
.xa0{left:885.599670px;}
.x78{left:892.081053px;}
.x32{left:893.519715px;}
.x107{left:895.678530px;}
.xa1{left:902.878320px;}
.xc0{left:906.120024px;}
.x108{left:912.958920px;}
.x103{left:914.039985px;}
.x79{left:938.520258px;}
.x11a{left:940.679070px;}
.x6{left:966.238770px;}
.x8d{left:968.399235px;}
.x104{left:973.079400px;}
.x105{left:989.998905px;}
.xe7{left:995.039970px;}
.x8e{left:997.559685px;}
.x11b{left:999.000000px;}
.xee{left:1010.519250px;}
.xe8{left:1011.600225px;}
.x75{left:1015.200993px;}
.x8f{left:1019.159370px;}
.x109{left:1022.039985px;}
.xef{left:1025.279850px;}
.x76{left:1027.081053px;}
.x10c{left:1040.759040px;}
.x110{left:1043.278755px;}
.x10a{left:1044.359805px;}
.xe4{left:1046.879520px;}
.x95{left:1057.678530px;}
.xf0{left:1059.120390px;}
.x111{left:1063.078770px;}
.x3e{left:1067.399775px;}
.x7b{left:1069.200993px;}
.xb7{left:1071.359799px;}
.x24{left:1077.119385px;}
.x98{left:1080.000000px;}
.xb8{left:1087.199799px;}
.xc1{left:1096.560249px;}
.x90{left:1097.998905px;}
.xc5{left:1102.319829px;}
.xb6{left:1104.119379px;}
.x114{left:1129.319820px;}
.x7a{left:1133.281578px;}
.x3a{left:1134.359250px;}
.x46{left:1135.438665px;}
.x10e{left:1142.279205px;}
.x10f{left:1143.358605px;}
.x115{left:1144.798920px;}
.xed{left:1148.399775px;}
.xec{left:1149.840090px;}
.xea{left:1150.919490px;}
.xeb{left:1152.000555px;}
@media print{
.v1{vertical-align:-23.039360pt;}
.v0{vertical-align:0.000000pt;}
.lsae{letter-spacing:-13.919600pt;}
.ls4c{letter-spacing:-8.221400pt;}
.ls3c{letter-spacing:-7.301067pt;}
.ls4f{letter-spacing:-6.685800pt;}
.ls4e{letter-spacing:-5.722200pt;}
.lsb9{letter-spacing:-5.286720pt;}
.ls2c{letter-spacing:-5.276800pt;}
.ls9f{letter-spacing:-5.114947pt;}
.ls84{letter-spacing:-4.617200pt;}
.lsb6{letter-spacing:-4.535600pt;}
.ls4b{letter-spacing:-4.402200pt;}
.ls4a{letter-spacing:-3.960000pt;}
.lsad{letter-spacing:-3.957600pt;}
.ls39{letter-spacing:-3.846000pt;}
.lsb5{letter-spacing:-3.685427pt;}
.lsb7{letter-spacing:-3.624400pt;}
.ls47{letter-spacing:-3.517800pt;}
.ls67{letter-spacing:-3.492667pt;}
.lsaa{letter-spacing:-3.482267pt;}
.ls3a{letter-spacing:-3.460000pt;}
.ls13{letter-spacing:-3.446733pt;}
.lsa4{letter-spacing:-3.266667pt;}
.ls58{letter-spacing:-3.201600pt;}
.ls33{letter-spacing:-3.185000pt;}
.lsa7{letter-spacing:-3.051720pt;}
.ls38{letter-spacing:-3.033333pt;}
.ls7f{letter-spacing:-2.706000pt;}
.lsb8{letter-spacing:-2.668000pt;}
.ls79{letter-spacing:-2.665600pt;}
.ls48{letter-spacing:-2.639340pt;}
.ls2d{letter-spacing:-2.638400pt;}
.lsa8{letter-spacing:-2.612680pt;}
.ls94{letter-spacing:-2.600533pt;}
.ls12{letter-spacing:-2.586020pt;}
.ls25{letter-spacing:-2.548433pt;}
.ls4d{letter-spacing:-2.197140pt;}
.ls7d{letter-spacing:-2.184600pt;}
.lsa9{letter-spacing:-2.174947pt;}
.ls80{letter-spacing:-2.162533pt;}
.ls6a{letter-spacing:-2.153333pt;}
.ls8c{letter-spacing:-2.145000pt;}
.lsab{letter-spacing:-2.128000pt;}
.lsac{letter-spacing:-2.108367pt;}
.ls66{letter-spacing:-2.097333pt;}
.ls72{letter-spacing:-2.088733pt;}
.ls93{letter-spacing:-2.018940pt;}
.ls45{letter-spacing:-1.998547pt;}
.ls29{letter-spacing:-1.978153pt;}
.lsa0{letter-spacing:-1.960000pt;}
.ls16{letter-spacing:-1.957760pt;}
.ls49{letter-spacing:-1.762200pt;}
.ls69{letter-spacing:-1.623600pt;}
.ls8f{letter-spacing:-1.613440pt;}
.ls7c{letter-spacing:-1.590800pt;}
.ls6d{letter-spacing:-1.575420pt;}
.ls76{letter-spacing:-1.332800pt;}
.ls2e{letter-spacing:-1.319200pt;}
.lsa1{letter-spacing:-1.306667pt;}
.ls17{letter-spacing:-1.305600pt;}
.ls34{letter-spacing:-1.274000pt;}
.ls8d{letter-spacing:-1.099333pt;}
.ls51{letter-spacing:-1.082400pt;}
.ls50{letter-spacing:-1.077347pt;}
.ls68{letter-spacing:-1.075800pt;}
.ls8e{letter-spacing:-1.071467pt;}
.ls1c{letter-spacing:-1.062000pt;}
.ls7e{letter-spacing:-1.060533pt;}
.ls6c{letter-spacing:-1.038667pt;}
.ls82{letter-spacing:-1.032333pt;}
.ls65{letter-spacing:-0.697667pt;}
.ls56{letter-spacing:-0.677600pt;}
.ls61{letter-spacing:-0.667333pt;}
.ls46{letter-spacing:-0.665747pt;}
.ls2a{letter-spacing:-0.658953pt;}
.lsa3{letter-spacing:-0.652680pt;}
.ls14{letter-spacing:-0.652160pt;}
.ls24{letter-spacing:-0.636567pt;}
.ls37{letter-spacing:-0.597393pt;}
.ls90{letter-spacing:-0.542267pt;}
.ls55{letter-spacing:-0.535080pt;}
.ls53{letter-spacing:-0.534600pt;}
.ls6b{letter-spacing:-0.529620pt;}
.ls81{letter-spacing:-0.527000pt;}
.ls83{letter-spacing:-0.518700pt;}
.lsb{letter-spacing:0.000000pt;}
.ls70{letter-spacing:0.533867pt;}
.ls52{letter-spacing:0.542267pt;}
.ls85{letter-spacing:0.545200pt;}
.ls92{letter-spacing:0.547800pt;}
.ls19{letter-spacing:0.627660pt;}
.ls26{letter-spacing:0.636567pt;}
.ls57{letter-spacing:0.645233pt;}
.ls4{letter-spacing:0.652160pt;}
.ls9d{letter-spacing:0.652680pt;}
.ls9{letter-spacing:0.658953pt;}
.ls98{letter-spacing:0.659867pt;}
.ls5e{letter-spacing:0.665747pt;}
.lsba{letter-spacing:0.666600pt;}
.ls5c{letter-spacing:0.667333pt;}
.ls62{letter-spacing:0.668800pt;}
.ls86{letter-spacing:0.672540pt;}
.ls42{letter-spacing:0.677600pt;}
.ls40{letter-spacing:0.678933pt;}
.ls3d{letter-spacing:0.687060pt;}
.ls5a{letter-spacing:0.697667pt;}
.ls3b{letter-spacing:1.068080pt;}
.lsbc{letter-spacing:1.290933pt;}
.lsa6{letter-spacing:1.304667pt;}
.ls5{letter-spacing:1.305600pt;}
.ls9a{letter-spacing:1.306667pt;}
.ls0{letter-spacing:1.311113pt;}
.ls28{letter-spacing:1.314600pt;}
.ls78{letter-spacing:1.317333pt;}
.ls8a{letter-spacing:1.318400pt;}
.ls18{letter-spacing:1.319200pt;}
.ls95{letter-spacing:1.319733pt;}
.ls1e{letter-spacing:1.332800pt;}
.lsf{letter-spacing:1.333000pt;}
.ls5b{letter-spacing:1.335100pt;}
.ls10{letter-spacing:1.339733pt;}
.ls89{letter-spacing:1.346400pt;}
.ls3f{letter-spacing:1.353400pt;}
.ls75{letter-spacing:1.353600pt;}
.ls43{letter-spacing:1.355640pt;}
.lsb0{letter-spacing:1.388800pt;}
.ls60{letter-spacing:1.399667pt;}
.ls73{letter-spacing:1.442567pt;}
.ls6f{letter-spacing:1.605180pt;}
.ls1a{letter-spacing:1.879800pt;}
.ls6{letter-spacing:1.957760pt;}
.ls9e{letter-spacing:1.960000pt;}
.lse{letter-spacing:1.968600pt;}
.ls15{letter-spacing:1.978153pt;}
.ls96{letter-spacing:1.979600pt;}
.lsb3{letter-spacing:1.980000pt;}
.ls2b{letter-spacing:1.998547pt;}
.lsb2{letter-spacing:2.001333pt;}
.ls63{letter-spacing:2.002000pt;}
.lsa5{letter-spacing:2.018800pt;}
.ls88{letter-spacing:2.018940pt;}
.lsbd{letter-spacing:2.024133pt;}
.ls41{letter-spacing:2.032333pt;}
.ls23{letter-spacing:2.032800pt;}
.ls99{letter-spacing:2.063513pt;}
.lsbb{letter-spacing:2.067200pt;}
.lsb1{letter-spacing:2.515333pt;}
.ls7{letter-spacing:2.611200pt;}
.ls9c{letter-spacing:2.612680pt;}
.ls1{letter-spacing:2.624800pt;}
.lsb4{letter-spacing:2.636800pt;}
.ls1d{letter-spacing:2.638400pt;}
.ls5d{letter-spacing:2.664567pt;}
.ls3e{letter-spacing:2.665600pt;}
.ls3{letter-spacing:2.666860pt;}
.ls44{letter-spacing:2.705560pt;}
.ls8{letter-spacing:3.263360pt;}
.lsa2{letter-spacing:3.264000pt;}
.lsd{letter-spacing:3.281000pt;}
.ls11{letter-spacing:3.283333pt;}
.ls20{letter-spacing:3.297353pt;}
.ls97{letter-spacing:3.299987pt;}
.ls5f{letter-spacing:3.331347pt;}
.ls1b{letter-spacing:3.333960pt;}
.ls30{letter-spacing:3.553200pt;}
.ls35{letter-spacing:3.564000pt;}
.ls74{letter-spacing:3.768660pt;}
.lsc{letter-spacing:3.860000pt;}
.ls9b{letter-spacing:3.920000pt;}
.ls7a{letter-spacing:3.957600pt;}
.ls1f{letter-spacing:3.998400pt;}
.ls64{letter-spacing:3.999667pt;}
.ls87{letter-spacing:4.039200pt;}
.ls77{letter-spacing:4.129333pt;}
.ls2{letter-spacing:4.594687pt;}
.ls2f{letter-spacing:4.617200pt;}
.ls71{letter-spacing:4.664800pt;}
.ls31{letter-spacing:4.817067pt;}
.ls21{letter-spacing:5.276800pt;}
.ls8b{letter-spacing:5.331200pt;}
.ls7b{letter-spacing:5.936400pt;}
.ls6e{letter-spacing:5.997600pt;}
.ls54{letter-spacing:6.596647pt;}
.ls91{letter-spacing:7.330400pt;}
.lsa{letter-spacing:8.493440pt;}
.ls36{letter-spacing:9.240867pt;}
.ls27{letter-spacing:11.362267pt;}
.ls22{letter-spacing:13.857420pt;}
.lsaf{letter-spacing:18.946013pt;}
.ls59{letter-spacing:27.997667pt;}
.ls32{letter-spacing:29.106000pt;}
.ws0{word-spacing:0.000000pt;}
._27{margin-left:-274.615213pt;}
._29{margin-left:-74.593567pt;}
._1a{margin-left:-61.503360pt;}
._19{margin-left:-47.459613pt;}
._2a{margin-left:-45.807667pt;}
._17{margin-left:-41.685120pt;}
._18{margin-left:-38.151680pt;}
._30{margin-left:-36.594560pt;}
._33{margin-left:-35.623320pt;}
._28{margin-left:-31.720000pt;}
._2c{margin-left:-24.496080pt;}
._25{margin-left:-17.773633pt;}
._1b{margin-left:-12.433333pt;}
._3{margin-left:-11.376160pt;}
._21{margin-left:-10.317420pt;}
._1{margin-left:-8.674707pt;}
._23{margin-left:-7.667640pt;}
._16{margin-left:-6.528000pt;}
._15{margin-left:-4.892987pt;}
._0{margin-left:-3.281000pt;}
._d{margin-left:-2.373400pt;}
._c{margin-left:-0.897093pt;}
._2{width:1.685533pt;}
._a{width:2.952093pt;}
._4{width:4.208867pt;}
._5{width:5.695840pt;}
._9{width:6.630400pt;}
._8{width:8.192000pt;}
._b{width:9.182133pt;}
._6{width:10.112000pt;}
._e{width:11.365267pt;}
._7{width:12.416000pt;}
._20{width:13.556800pt;}
._1e{width:14.734200pt;}
._1c{width:16.424633pt;}
._24{width:17.583513pt;}
._1d{width:19.300667pt;}
._1f{width:21.314860pt;}
._14{width:22.280320pt;}
._12{width:23.480960pt;}
._10{width:24.983680pt;}
._f{width:26.686720pt;}
._2d{width:27.682600pt;}
._13{width:28.729600pt;}
._11{width:29.991040pt;}
._22{width:30.942627pt;}
._32{width:31.878533pt;}
._2e{width:33.383333pt;}
._26{width:34.698047pt;}
._31{width:40.313200pt;}
._2b{width:44.214973pt;}
._2f{width:56.212693pt;}
.fs31{font-size:14.000000pt;}
.fs16{font-size:15.333333pt;}
.fs29{font-size:20.666667pt;}
.fs36{font-size:21.333333pt;}
.fs15{font-size:22.000000pt;}
.fs1a{font-size:22.666667pt;}
.fs2a{font-size:24.000000pt;}
.fsc{font-size:24.666667pt;}
.fsa{font-size:26.000000pt;}
.fs1c{font-size:27.333333pt;}
.fs2d{font-size:30.000000pt;}
.fs1b{font-size:30.666667pt;}
.fs28{font-size:32.000000pt;}
.fs2b{font-size:34.000000pt;}
.fs1e{font-size:34.666667pt;}
.fsd{font-size:36.000000pt;}
.fs37{font-size:38.666667pt;}
.fs12{font-size:40.666667pt;}
.fs13{font-size:42.000000pt;}
.fs10{font-size:42.666667pt;}
.fs11{font-size:43.333333pt;}
.fsf{font-size:44.000000pt;}
.fs22{font-size:44.666667pt;}
.fs2f{font-size:46.000000pt;}
.fs25{font-size:48.000000pt;}
.fs1f{font-size:50.666667pt;}
.fs19{font-size:54.000000pt;}
.fs6{font-size:58.000000pt;}
.fse{font-size:60.000000pt;}
.fs24{font-size:60.666667pt;}
.fs9{font-size:61.333333pt;}
.fsb{font-size:62.000000pt;}
.fs2c{font-size:62.666667pt;}
.fs23{font-size:63.333333pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:64.666667pt;}
.fs14{font-size:65.333333pt;}
.fs8{font-size:66.000000pt;}
.fs1d{font-size:66.666667pt;}
.fs26{font-size:67.333333pt;}
.fs20{font-size:68.000000pt;}
.fs7{font-size:68.666667pt;}
.fs18{font-size:70.666667pt;}
.fs32{font-size:72.000000pt;}
.fs21{font-size:74.000000pt;}
.fs30{font-size:76.666667pt;}
.fs2e{font-size:78.666667pt;}
.fs33{font-size:79.333333pt;}
.fs3{font-size:83.333333pt;}
.fs34{font-size:84.000000pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:86.000000pt;}
.fs35{font-size:98.666667pt;}
.fs17{font-size:121.333333pt;}
.fs0{font-size:128.666667pt;}
.fs27{font-size:184.666667pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:47.359867pt;}
.y91{bottom:53.438947pt;}
.y19c{bottom:53.759720pt;}
.y142{bottom:54.398507pt;}
.y143{bottom:54.399867pt;}
.y27{bottom:55.040000pt;}
.y61{bottom:71.039450pt;}
.y62{bottom:71.040533pt;}
.y89{bottom:71.678978pt;}
.y8a{bottom:71.679200pt;}
.y116{bottom:71.680667pt;}
.y26{bottom:72.640133pt;}
.y25{bottom:72.640693pt;}
.yeb{bottom:72.960500pt;}
.y141{bottom:73.278207pt;}
.y174{bottom:75.840020pt;}
.y1ca{bottom:76.159367pt;}
.y19a{bottom:76.159645pt;}
.y19b{bottom:76.160133pt;}
.yca{bottom:87.681003pt;}
.y60{bottom:89.918883pt;}
.y88{bottom:90.238312pt;}
.y115{bottom:90.560433pt;}
.yea{bottom:91.199733pt;}
.y24{bottom:91.520533pt;}
.y140{bottom:92.157907pt;}
.y173{bottom:94.719720pt;}
.y1c9{bottom:95.039067pt;}
.y1c8{bottom:95.039900pt;}
.y198{bottom:95.040413pt;}
.y199{bottom:95.040533pt;}
.yc9{bottom:106.560703pt;}
.y5e{bottom:108.159445pt;}
.y5f{bottom:108.159733pt;}
.y113{bottom:108.799483pt;}
.y114{bottom:108.799867pt;}
.y87{bottom:109.119200pt;}
.y86{bottom:109.119495pt;}
.ye8{bottom:109.758645pt;}
.ye9{bottom:109.760800pt;}
.y23{bottom:110.399480pt;}
.y22{bottom:110.399493pt;}
.y13f{bottom:110.719107pt;}
.y1c7{bottom:113.279333pt;}
.y197{bottom:113.279647pt;}
.y172{bottom:120.001140pt;}
.yc8{bottom:124.800137pt;}
.y5d{bottom:126.718617pt;}
.y112{bottom:127.359213pt;}
.y85{bottom:127.678667pt;}
.ye7{bottom:128.638078pt;}
.y13e{bottom:129.278837pt;}
.y21{bottom:129.279333pt;}
.y1c6{bottom:132.159733pt;}
.y196{bottom:132.160535pt;}
.y1c5{bottom:132.162087pt;}
.y171{bottom:138.880840pt;}
.yc7{bottom:143.359867pt;}
.yc6{bottom:143.360700pt;}
.y5b{bottom:144.959150pt;}
.y5c{bottom:144.959467pt;}
.y111{bottom:145.920413pt;}
.y84{bottom:146.239720pt;}
.y83{bottom:146.240162pt;}
.ye6{bottom:147.199028pt;}
.y13d{bottom:147.838567pt;}
.y20{bottom:147.839333pt;}
.y1c4{bottom:150.401520pt;}
.y195{bottom:150.719707pt;}
.y170{bottom:156.800303pt;}
.yc5{bottom:161.600133pt;}
.yc4{bottom:161.600560pt;}
.y5a{bottom:163.520100pt;}
.y110{bottom:164.480000pt;}
.y82{bottom:164.799333pt;}
.ye5{bottom:165.439878pt;}
.y1f{bottom:166.079333pt;}
.y13c{bottom:166.399767pt;}
.y1c3{bottom:168.640953pt;}
.y81{bottom:173.438920pt;}
.y16f{bottom:175.361503pt;}
.y194{bottom:176.321240pt;}
.yc3{bottom:180.160290pt;}
.y58{bottom:181.758817pt;}
.y59{bottom:181.759333pt;}
.y10f{bottom:183.039587pt;}
.y80{bottom:183.358933pt;}
.ye4{bottom:184.319312pt;}
.y1e{bottom:184.319333pt;}
.y13a{bottom:184.638933pt;}
.y13b{bottom:184.639200pt;}
.y1c2{bottom:186.880387pt;}
.y16e{bottom:193.600937pt;}
.y193{bottom:194.880412pt;}
.yc2{bottom:198.720020pt;}
.y57{bottom:200.319767pt;}
.y1c{bottom:202.878653pt;}
.y1d{bottom:202.879333pt;}
.y138{bottom:203.199990pt;}
.y139{bottom:203.200133pt;}
.y1c1{bottom:205.120203pt;}
.ye3{bottom:209.920845pt;}
.y16d{bottom:212.160667pt;}
.y16c{bottom:212.161353pt;}
.y192{bottom:213.439583pt;}
.y10e{bottom:216.000000pt;}
.y7f{bottom:216.319333pt;}
.yc0{bottom:216.959333pt;}
.yc1{bottom:216.959453pt;}
.y56{bottom:219.199200pt;}
.y1b{bottom:221.440253pt;}
.y136{bottom:221.757753pt;}
.y137{bottom:221.759720pt;}
.y1c0{bottom:223.999903pt;}
.ye2{bottom:228.480017pt;}
.y16b{bottom:231.041053pt;}
.y191{bottom:232.000533pt;}
.y7e{bottom:234.878920pt;}
.ybe{bottom:235.519390pt;}
.ybf{bottom:235.520533pt;}
.y1a{bottom:239.680253pt;}
.y135{bottom:240.317483pt;}
.y1bf{bottom:242.559633pt;}
.y190{bottom:250.560000pt;}
.y18f{bottom:250.560415pt;}
.y55{bottom:251.840253pt;}
.ybd{bottom:254.398927pt;}
.y16a{bottom:256.640667pt;}
.y19{bottom:258.240253pt;}
.y18{bottom:258.240305pt;}
.y134{bottom:258.878683pt;}
.y1be{bottom:261.439333pt;}
.ye1{bottom:261.440778pt;}
.y10d{bottom:263.040533pt;}
.y18d{bottom:269.119432pt;}
.y18e{bottom:269.119587pt;}
.ybc{bottom:272.960127pt;}
.y54{bottom:275.200133pt;}
.y168{bottom:275.520933pt;}
.y10c{bottom:275.840253pt;}
.y17{bottom:277.440000pt;}
.y16{bottom:277.440133pt;}
.y133{bottom:277.758383pt;}
.y1bd{bottom:280.000533pt;}
.y53{bottom:281.279320pt;}
.y7d{bottom:281.598680pt;}
.y169{bottom:281.920920pt;}
.y18c{bottom:287.360282pt;}
.y50{bottom:288.000000pt;}
.y52{bottom:288.640120pt;}
.ybb{bottom:291.519857pt;}
.y51{bottom:291.520000pt;}
.y167{bottom:293.759720pt;}
.y14{bottom:295.679720pt;}
.y15{bottom:295.680133pt;}
.y132{bottom:296.319583pt;}
.y4f{bottom:297.919867pt;}
.y4e{bottom:298.239200pt;}
.y4d{bottom:298.879333pt;}
.y1bc{bottom:302.080120pt;}
.y1bb{bottom:305.280033pt;}
.y18b{bottom:305.919453pt;}
.y10b{bottom:307.199733pt;}
.y166{bottom:307.520533pt;}
.ye0{bottom:308.160667pt;}
.ydf{bottom:308.161018pt;}
.yb9{bottom:310.078993pt;}
.yba{bottom:310.079587pt;}
.y165{bottom:312.640120pt;}
.y13{bottom:314.239720pt;}
.y131{bottom:314.879313pt;}
.y7c{bottom:314.879867pt;}
.y4c{bottom:317.440387pt;}
.y1ba{bottom:324.159733pt;}
.y18a{bottom:324.799592pt;}
.yde{bottom:327.040290pt;}
.yb8{bottom:328.638723pt;}
.y164{bottom:329.920920pt;}
.y163{bottom:330.880387pt;}
.y4b{bottom:332.159200pt;}
.y10a{bottom:332.799320pt;}
.y7b{bottom:333.119048pt;}
.y11{bottom:333.119840pt;}
.y12{bottom:333.120120pt;}
.y130{bottom:333.439043pt;}
.y4a{bottom:335.679200pt;}
.y1b9{bottom:341.759720pt;}
.y189{bottom:343.358763pt;}
.y162{bottom:344.960413pt;}
.ydd{bottom:345.281302pt;}
.yb7{bottom:347.359827pt;}
.y109{bottom:349.120640pt;}
.y161{bottom:349.760787pt;}
.y10{bottom:351.359840pt;}
.y108{bottom:351.360387pt;}
.y7a{bottom:351.679733pt;}
.y12f{bottom:352.000243pt;}
.y49{bottom:354.399867pt;}
.y48{bottom:354.400395pt;}
.y1b8{bottom:356.799320pt;}
.y188{bottom:361.599613pt;}
.y107{bottom:364.800253pt;}
.yb6{bottom:365.759327pt;}
.yf{bottom:369.919840pt;}
.y12d{bottom:370.559857pt;}
.y12e{bottom:370.559973pt;}
.y47{bottom:372.799840pt;}
.y160{bottom:375.040777pt;}
.ydc{bottom:378.560385pt;}
.y187{bottom:380.159303pt;}
.yb5{bottom:384.319057pt;}
.y106{bottom:384.319333pt;}
.y1e1{bottom:387.199140pt;}
.ye{bottom:388.479453pt;}
.yd{bottom:388.479583pt;}
.y12c{bottom:389.119587pt;}
.y12b{bottom:389.120977pt;}
.y46{bottom:390.079067pt;}
.y45{bottom:391.359865pt;}
.y15f{bottom:393.600507pt;}
.y186{bottom:398.720253pt;}
.y79{bottom:399.039835pt;}
.y105{bottom:400.319867pt;}
.yb4{bottom:402.880257pt;}
.y104{bottom:403.199707pt;}
.y1b7{bottom:403.839840pt;}
.y1e0{bottom:405.439990pt;}
.yc{bottom:407.040533pt;}
.yb{bottom:407.040827pt;}
.y12a{bottom:407.360410pt;}
.y44{bottom:409.920815pt;}
.y103{bottom:415.680133pt;}
.y78{bottom:417.920723pt;}
.y15e{bottom:419.520790pt;}
.y1b6{bottom:420.159707pt;}
.yb3{bottom:421.439987pt;}
.y1b5{bottom:421.759320pt;}
.y1df{bottom:423.999162pt;}
.y185{bottom:424.639200pt;}
.ydb{bottom:425.600535pt;}
.ya{bottom:425.600827pt;}
.y129{bottom:426.240110pt;}
.y42{bottom:428.479498pt;}
.y43{bottom:428.479987pt;}
.y102{bottom:429.760253pt;}
.y77{bottom:436.479895pt;}
.y15d{bottom:438.080520pt;}
.y1b4{bottom:439.040000pt;}
.yb1{bottom:439.999307pt;}
.yb2{bottom:439.999467pt;}
.y1b3{bottom:440.320267pt;}
.y101{bottom:441.279707pt;}
.y1de{bottom:442.558333pt;}
.y9{bottom:443.840827pt;}
.yda{bottom:444.159707pt;}
.yd9{bottom:444.159925pt;}
.y127{bottom:444.799443pt;}
.y128{bottom:444.799840pt;}
.y41{bottom:447.360387pt;}
.yfe{bottom:449.600133pt;}
.y100{bottom:451.199707pt;}
.y15c{bottom:454.719720pt;}
.y76{bottom:455.039067pt;}
.y75{bottom:455.040867pt;}
.y159{bottom:456.640133pt;}
.yff{bottom:456.959467pt;}
.y184{bottom:457.599573pt;}
.y1b2{bottom:457.920373pt;}
.y9f{bottom:458.240153pt;}
.yaf{bottom:458.559870pt;}
.yb0{bottom:458.560507pt;}
.y1b1{bottom:459.199173pt;}
.y15b{bottom:459.840773pt;}
.y8{bottom:462.720667pt;}
.y15a{bottom:463.040000pt;}
.yd8{bottom:463.040813pt;}
.y126{bottom:463.359173pt;}
.y40{bottom:463.680133pt;}
.y3e{bottom:465.919698pt;}
.y3f{bottom:465.919840pt;}
.yfd{bottom:468.159707pt;}
.y1dd{bottom:468.478350pt;}
.y9e{bottom:471.039737pt;}
.y1b0{bottom:471.679733pt;}
.y74{bottom:473.600038pt;}
.y158{bottom:473.600133pt;}
.y157{bottom:475.199707pt;}
.y183{bottom:475.839840pt;}
.yae{bottom:477.119600pt;}
.y1af{bottom:477.760253pt;}
.y6{bottom:481.279840pt;}
.y7{bottom:481.280280pt;}
.yd7{bottom:481.599985pt;}
.y125{bottom:481.920373pt;}
.yfc{bottom:483.519973pt;}
.y9c{bottom:483.839053pt;}
.y9d{bottom:483.839320pt;}
.y3d{bottom:484.160548pt;}
.yfb{bottom:486.399867pt;}
.y1db{bottom:486.718058pt;}
.y1dc{bottom:486.719200pt;}
.y73{bottom:492.160988pt;}
.y156{bottom:493.760787pt;}
.y9b{bottom:496.638637pt;}
.y1ae{bottom:496.639200pt;}
.y5{bottom:499.839840pt;}
.y124{bottom:500.479857pt;}
.yfa{bottom:500.799320pt;}
.y3c{bottom:502.719720pt;}
.yf9{bottom:504.959467pt;}
.y1da{bottom:505.277230pt;}
.y155{bottom:506.879840pt;}
.y9a{bottom:509.440387pt;}
.y99{bottom:509.440717pt;}
.yad{bottom:509.760133pt;}
.y1ad{bottom:510.079067pt;}
.y72{bottom:510.720160pt;}
.y90{bottom:511.999467pt;}
.y154{bottom:512.320267pt;}
.yd6{bottom:514.240485pt;}
.y1ac{bottom:514.879307pt;}
.y3b{bottom:516.159707pt;}
.y8f{bottom:518.399453pt;}
.y123{bottom:519.039587pt;}
.y122{bottom:519.040857pt;}
.y3a{bottom:519.360387pt;}
.yf8{bottom:520.000533pt;}
.y39{bottom:521.279303pt;}
.y8e{bottom:522.559573pt;}
.y8d{bottom:522.559733pt;}
.y98{bottom:522.880550pt;}
.y182{bottom:523.199137pt;}
.y1d9{bottom:523.518080pt;}
.yf7{bottom:523.839443pt;}
.y153{bottom:526.081053pt;}
.yac{bottom:528.319700pt;}
.y71{bottom:529.279332pt;}
.y1ab{bottom:529.280280pt;}
.y152{bottom:530.879840pt;}
.y4{bottom:533.119587pt;}
.y1aa{bottom:533.440387pt;}
.y8c{bottom:535.359333pt;}
.y97{bottom:535.680133pt;}
.y96{bottom:535.680403pt;}
.y121{bottom:537.600587pt;}
.y38{bottom:539.840253pt;}
.y37{bottom:539.841118pt;}
.y180{bottom:541.438735pt;}
.y181{bottom:541.439987pt;}
.y1d8{bottom:542.077252pt;}
.yf6{bottom:542.399173pt;}
.yab{bottom:546.719200pt;}
.y70{bottom:547.840282pt;}
.y8b{bottom:548.159173pt;}
.y95{bottom:548.479987pt;}
.y151{bottom:549.120953pt;}
.y1a8{bottom:551.679133pt;}
.y1a9{bottom:551.679200pt;}
.y120{bottom:555.840020pt;}
.y36{bottom:558.400290pt;}
.y17f{bottom:560.319623pt;}
.y1d7{bottom:560.638202pt;}
.yd4{bottom:560.959440pt;}
.yd5{bottom:560.960373pt;}
.yaa{bottom:565.119187pt;}
.ya9{bottom:565.119953pt;}
.y6f{bottom:566.399453pt;}
.y6e{bottom:566.399735pt;}
.y150{bottom:567.360387pt;}
.y1a7{bottom:570.240333pt;}
.y11e{bottom:574.719603pt;}
.y11f{bottom:574.719720pt;}
.y35{bottom:576.319423pt;}
.y17e{bottom:578.878795pt;}
.y1d6{bottom:578.879052pt;}
.yf5{bottom:579.200640pt;}
.yd3{bottom:579.518612pt;}
.ya8{bottom:583.359387pt;}
.y6c{bottom:584.957848pt;}
.y6d{bottom:584.958907pt;}
.y1a6{bottom:588.479767pt;}
.y93{bottom:589.758757pt;}
.y94{bottom:589.759320pt;}
.y14f{bottom:592.961520pt;}
.y11d{bottom:593.279333pt;}
.y33{bottom:594.879953pt;}
.y34{bottom:594.880373pt;}
.y17d{bottom:597.119645pt;}
.yf4{bottom:597.120120pt;}
.y1d5{bottom:597.438223pt;}
.yd2{bottom:598.399500pt;}
.ya7{bottom:601.280320pt;}
.y92{bottom:602.560507pt;}
.y6b{bottom:603.198698pt;}
.y1a5{bottom:606.719200pt;}
.y1a4{bottom:606.719653pt;}
.y14e{bottom:611.200953pt;}
.y11c{bottom:611.519453pt;}
.y31{bottom:613.117873pt;}
.y32{bottom:613.119187pt;}
.yf3{bottom:615.679733pt;}
.yf2{bottom:615.682893pt;}
.y17b{bottom:615.999820pt;}
.y17c{bottom:616.000533pt;}
.y1d4{bottom:616.319273pt;}
.ya6{bottom:620.160020pt;}
.y69{bottom:622.078782pt;}
.y6a{bottom:622.079587pt;}
.y1a3{bottom:624.959087pt;}
.y14c{bottom:629.440317pt;}
.y14d{bottom:629.440387pt;}
.yd1{bottom:631.040000pt;}
.y30{bottom:631.358723pt;}
.yf1{bottom:633.922327pt;}
.y17a{bottom:634.239053pt;}
.y1d3{bottom:634.558507pt;}
.y1d2{bottom:634.558983pt;}
.y11b{bottom:637.119187pt;}
.ya5{bottom:638.399453pt;}
.ya4{bottom:638.399503pt;}
.y68{bottom:639.997753pt;}
.y1a2{bottom:643.518817pt;}
.y14b{bottom:647.999883pt;}
.ycf{bottom:649.280093pt;}
.yd0{bottom:649.280227pt;}
.y2e{bottom:649.598990pt;}
.y2f{bottom:649.599573pt;}
.yf0{bottom:652.161760pt;}
.y1d1{bottom:652.479895pt;}
.ya3{bottom:656.480340pt;}
.y67{bottom:658.238603pt;}
.y179{bottom:659.200548pt;}
.y1a1{bottom:661.758250pt;}
.y14a{bottom:665.920817pt;}
.y2d{bottom:667.839840pt;}
.y3{bottom:668.799320pt;}
.y11a{bottom:670.079587pt;}
.yef{bottom:670.401193pt;}
.y1cf{bottom:671.039048pt;}
.y1d0{bottom:671.039067pt;}
.y2c{bottom:674.239707pt;}
.ya2{bottom:674.879840pt;}
.y66{bottom:676.479453pt;}
.y178{bottom:677.759720pt;}
.y1a0{bottom:679.359213pt;}
.y2{bottom:683.519365pt;}
.y148{bottom:684.480270pt;}
.y149{bottom:684.480547pt;}
.y2b{bottom:685.759280pt;}
.y2a{bottom:686.399413pt;}
.yee{bottom:688.640627pt;}
.y1cd{bottom:688.959497pt;}
.y1ce{bottom:688.959960pt;}
.y65{bottom:694.718650pt;}
.yce{bottom:695.359943pt;}
.y177{bottom:696.000000pt;}
.y19f{bottom:697.920413pt;}
.y19e{bottom:697.920547pt;}
.y147{bottom:702.399733pt;}
.y29{bottom:704.319763pt;}
.yed{bottom:706.879307pt;}
.y1cc{bottom:707.198730pt;}
.ya1{bottom:707.200120pt;}
.y64{bottom:712.959500pt;}
.ycc{bottom:713.920447pt;}
.ycd{bottom:713.920893pt;}
.y176{bottom:714.240240pt;}
.y119{bottom:715.839683pt;}
.y19d{bottom:716.159980pt;}
.y1{bottom:716.799320pt;}
.y145{bottom:720.960910pt;}
.y146{bottom:720.960933pt;}
.y28{bottom:721.920413pt;}
.ya0{bottom:725.119547pt;}
.yec{bottom:725.440347pt;}
.y1cb{bottom:725.759680pt;}
.y63{bottom:731.198733pt;}
.y175{bottom:732.159747pt;}
.ycb{bottom:732.799880pt;}
.y118{bottom:734.399413pt;}
.y144{bottom:738.880373pt;}
.h43{height:14.601562pt;}
.h1a{height:15.041341pt;}
.h35{height:21.554687pt;}
.h19{height:21.742187pt;}
.h4c{height:22.250000pt;}
.h1f{height:22.401042pt;}
.h36{height:25.031250pt;}
.hc{height:25.504883pt;}
.he{height:25.726562pt;}
.h21{height:26.812826pt;}
.h3a{height:31.289062pt;}
.h20{height:31.984375pt;}
.h33{height:33.375000pt;}
.h38{height:35.460938pt;}
.h23{height:36.156250pt;}
.hf{height:37.546875pt;}
.h4d{height:40.328125pt;}
.h37{height:41.200195pt;}
.h16{height:42.414062pt;}
.h2b{height:42.529297pt;}
.h17{height:43.804688pt;}
.h14{height:44.500000pt;}
.h15{height:45.195312pt;}
.h13{height:45.890625pt;}
.h28{height:46.585938pt;}
.h3c{height:47.976562pt;}
.h2c{height:50.062500pt;}
.h24{height:52.843750pt;}
.h1d{height:56.320312pt;}
.h8{height:60.492188pt;}
.h10{height:62.578125pt;}
.h2a{height:63.273438pt;}
.hb{height:63.968750pt;}
.h48{height:64.121094pt;}
.hd{height:64.664062pt;}
.h39{height:65.359375pt;}
.h29{height:66.054688pt;}
.h7{height:66.750000pt;}
.h45{height:67.203125pt;}
.h6{height:67.445312pt;}
.h26{height:67.445959pt;}
.h18{height:68.140625pt;}
.h2e{height:68.141278pt;}
.h3f{height:68.141932pt;}
.ha{height:68.835938pt;}
.h22{height:69.531250pt;}
.h2d{height:70.226562pt;}
.h25{height:70.921875pt;}
.h9{height:71.617188pt;}
.h27{height:73.132813pt;}
.h1c{height:73.703125pt;}
.h44{height:75.093750pt;}
.h34{height:77.179688pt;}
.h49{height:79.953125pt;}
.h42{height:79.960938pt;}
.h3b{height:82.046875pt;}
.h1e{height:83.984375pt;}
.h5{height:86.914062pt;}
.h4a{height:87.609375pt;}
.h4{height:89.000000pt;}
.h3{height:89.695312pt;}
.h4b{height:102.906250pt;}
.h1b{height:122.281250pt;}
.h2{height:134.195312pt;}
.h32{height:192.601563pt;}
.h12{height:798.000000pt;}
.h11{height:798.078667pt;}
.h31{height:798.080000pt;}
.h3e{height:801.333333pt;}
.h3d{height:801.598667pt;}
.h1{height:802.000000pt;}
.h0{height:802.238667pt;}
.h30{height:803.333333pt;}
.h2f{height:803.520000pt;}
.h47{height:811.333333pt;}
.h46{height:811.518667pt;}
.h40{height:823.680000pt;}
.h41{height:824.000000pt;}
.w2{width:1023.998667pt;}
.w4{width:1023.999989pt;}
.w5{width:1023.999995pt;}
.w3{width:1024.000000pt;}
.w7{width:1026.666667pt;}
.w6{width:1026.878667pt;}
.w0{width:1029.118667pt;}
.w1{width:1029.333333pt;}
.wb{width:1036.666667pt;}
.wa{width:1036.798667pt;}
.w8{width:1044.481053pt;}
.w9{width:1044.666667pt;}
.x0{left:0.000000pt;}
.x6c{left:4.800256pt;}
.xcb{left:29.119613pt;}
.x59{left:30.399856pt;}
.x61{left:31.359116pt;}
.x71{left:32.321523pt;}
.xa2{left:33.279720pt;}
.x1{left:34.558533pt;}
.xe{left:35.520343pt;}
.x1c{left:36.472010pt;}
.xff{left:38.399597pt;}
.xfd{left:39.682873pt;}
.xcc{left:46.079613pt;}
.x5e{left:47.039709pt;}
.x65{left:48.000003pt;}
.x121{left:48.960699pt;}
.x29{left:50.559067pt;}
.x7{left:51.518533pt;}
.x7e{left:52.798813pt;}
.xca{left:53.759728pt;}
.xfc{left:55.362547pt;}
.x19{left:58.239200pt;}
.xcd{left:63.679733pt;}
.xb1{left:68.481533pt;}
.xf1{left:70.079613pt;}
.x7d{left:71.039067pt;}
.xc{left:80.639613pt;}
.x5f{left:82.240656pt;}
.x13{left:83.519467pt;}
.xd2{left:85.440063pt;}
.xd0{left:86.718813pt;}
.xe0{left:87.679343pt;}
.xf9{left:88.640803pt;}
.x5a{left:91.201189pt;}
.xb2{left:92.159200pt;}
.xd{left:93.758813pt;}
.x82{left:94.719720pt;}
.x60{left:97.920389pt;}
.x64{left:101.121056pt;}
.x42{left:103.359333pt;}
.xd5{left:104.318813pt;}
.x83{left:111.679733pt;}
.x2a{left:118.719720pt;}
.x84{left:120.959467pt;}
.x7f{left:127.038533pt;}
.xae{left:128.318340pt;}
.x2d{left:129.599067pt;}
.xac{left:132.479067pt;}
.x80{left:138.559613pt;}
.xfe{left:143.679200pt;}
.x47{left:145.278813pt;}
.x2b{left:148.479467pt;}
.x85{left:152.318813pt;}
.x2e{left:160.319867pt;}
.x86{left:164.159200pt;}
.x7c{left:166.079613pt;}
.xa5{left:173.759720pt;}
.x48{left:175.359333pt;}
.x66{left:177.600523pt;}
.x1a{left:181.440000pt;}
.x2f{left:185.598680pt;}
.x49{left:200.639587pt;}
.xa6{left:202.558533pt;}
.xd3{left:205.119200pt;}
.x81{left:207.358933pt;}
.xdc{left:209.598680pt;}
.x6d{left:213.440923pt;}
.xf{left:218.239720pt;}
.xd4{left:219.518533pt;}
.xa7{left:223.038533pt;}
.xdd{left:223.999467pt;}
.x6e{left:226.880923pt;}
.xf3{left:228.799867pt;}
.x43{left:233.279333pt;}
.x10{left:235.519067pt;}
.x44{left:245.438920pt;}
.x1b{left:251.198667pt;}
.xa3{left:264.638667pt;}
.x67{left:266.241189pt;}
.xce{left:271.038533pt;}
.xf4{left:276.479067pt;}
.xa4{left:279.358933pt;}
.xcf{left:284.159200pt;}
.x2{left:286.719720pt;}
.x2c{left:287.679200pt;}
.xf5{left:290.879867pt;}
.x1d{left:300.159733pt;}
.xde{left:306.878920pt;}
.x68{left:309.760256pt;}
.x9{left:312.959453pt;}
.x14{left:313.918920pt;}
.xa{left:328.319867pt;}
.xdf{left:330.878920pt;}
.x3{left:334.079587pt;}
.xa8{left:335.039067pt;}
.x72{left:338.560509pt;}
.xfb{left:341.438920pt;}
.x22{left:344.639613pt;}
.xd8{left:348.159707pt;}
.x73{left:352.960003pt;}
.x28{left:354.879890pt;}
.x25{left:355.839840pt;}
.x87{left:357.439453pt;}
.x97{left:358.398957pt;}
.x23{left:359.359867pt;}
.x102{left:360.638667pt;}
.x106{left:361.596027pt;}
.xa9{left:363.518520pt;}
.xd9{left:366.719200pt;}
.x51{left:370.878437pt;}
.x30{left:371.838907pt;}
.x91{left:374.078693pt;}
.x45{left:377.919480pt;}
.xda{left:383.039067pt;}
.x3f{left:384.000000pt;}
.x11{left:386.239707pt;}
.xc7{left:390.080528pt;}
.xc3{left:391.039995pt;}
.x69{left:392.960363pt;}
.x116{left:394.558507pt;}
.x96{left:396.479040pt;}
.x99{left:399.679733pt;}
.xc2{left:400.640661pt;}
.xe1{left:401.919427pt;}
.xaf{left:403.199707pt;}
.xc6{left:407.359861pt;}
.xc4{left:408.319341pt;}
.x35{left:409.599613pt;}
.x12{left:412.798787pt;}
.x117{left:413.759587pt;}
.xb5{left:415.039995pt;}
.xb0{left:416.318813pt;}
.xe9{left:418.239293pt;}
.x6a{left:419.521043pt;}
.xe2{left:424.319827pt;}
.x56{left:425.919480pt;}
.x4a{left:427.199707pt;}
.x10b{left:430.398920pt;}
.x33{left:432.319333pt;}
.x52{left:435.199173pt;}
.x34{left:447.039587pt;}
.x70{left:448.640629pt;}
.x53{left:450.559573pt;}
.xb9{left:452.480021pt;}
.x11c{left:455.680669pt;}
.x4b{left:459.199173pt;}
.xf6{left:463.999467pt;}
.x88{left:473.919480pt;}
.x57{left:479.039067pt;}
.xba{left:481.280235pt;}
.xf7{left:488.639613pt;}
.x94{left:490.558507pt;}
.xfa{left:494.078693pt;}
.x58{left:495.999067pt;}
.x89{left:501.118693pt;}
.x15{left:504.959467pt;}
.xd6{left:508.158693pt;}
.x17{left:510.399867pt;}
.x11e{left:514.240643pt;}
.x3b{left:517.119187pt;}
.x9d{left:522.878907pt;}
.xd7{left:523.839840pt;}
.x11f{left:529.280229pt;}
.x8a{left:530.239707pt;}
.x16{left:531.518520pt;}
.x26{left:533.438920pt;}
.x1e{left:535.359333pt;}
.x120{left:536.960363pt;}
.x38{left:538.879307pt;}
.x100{left:540.479040pt;}
.xd1{left:543.679733pt;}
.x27{left:549.439453pt;}
.x5b{left:552.640096pt;}
.x39{left:553.599573pt;}
.xdb{left:562.558507pt;}
.xbb{left:563.519568pt;}
.xaa{left:566.078693pt;}
.x1f{left:572.479987pt;}
.x5c{left:574.081056pt;}
.xbc{left:579.839315pt;}
.x62{left:582.080523pt;}
.xc8{left:584.639568pt;}
.x5d{left:588.801349pt;}
.x6b{left:590.400923pt;}
.x11d{left:593.600096pt;}
.x4f{left:595.839840pt;}
.x54{left:597.118693pt;}
.xc9{left:598.719728pt;}
.x101{left:600.959427pt;}
.xf8{left:603.518520pt;}
.x18{left:607.678707pt;}
.x50{left:610.558507pt;}
.xad{left:611.838907pt;}
.x55{left:613.119187pt;}
.x92{left:619.199707pt;}
.xe5{left:624.319293pt;}
.xe3{left:626.879840pt;}
.x36{left:627.839320pt;}
.x93{left:633.599040pt;}
.x20{left:634.879307pt;}
.x63{left:636.801349pt;}
.xe6{left:639.360347pt;}
.x37{left:641.598720pt;}
.xb{left:643.839840pt;}
.xab{left:644.799320pt;}
.x21{left:650.559040pt;}
.x6f{left:656.000896pt;}
.x4c{left:658.558507pt;}
.x8{left:659.519453pt;}
.xf2{left:662.078693pt;}
.xb3{left:663.679728pt;}
.xbd{left:675.199181pt;}
.xb4{left:677.119595pt;}
.x4{left:678.719200pt;}
.x8b{left:685.119227pt;}
.x9b{left:694.719720pt;}
.xbe{left:705.919835pt;}
.x9c{left:708.159747pt;}
.x4d{left:713.279293pt;}
.x9e{left:723.839360pt;}
.x40{left:725.438880pt;}
.x4e{left:727.038493pt;}
.x9f{left:737.919440pt;}
.x41{left:739.839840pt;}
.x9a{left:740.799320pt;}
.x74{left:748.160069pt;}
.x119{left:751.359293pt;}
.x3c{left:752.318760pt;}
.x112{left:753.279707pt;}
.x118{left:755.838947pt;}
.x77{left:762.561029pt;}
.x3d{left:765.439453pt;}
.x113{left:766.719720pt;}
.xbf{left:768.640141pt;}
.x8c{left:770.559080pt;}
.x10d{left:776.318760pt;}
.x31{left:780.159747pt;}
.x5{left:784.319827pt;}
.xa0{left:787.199707pt;}
.x78{left:792.960936pt;}
.x32{left:794.239747pt;}
.x107{left:796.158693pt;}
.xa1{left:802.558507pt;}
.xc0{left:805.440021pt;}
.x108{left:811.519040pt;}
.x103{left:812.479987pt;}
.x79{left:834.240229pt;}
.x11a{left:836.159173pt;}
.x6{left:858.878907pt;}
.x8d{left:860.799320pt;}
.x104{left:864.959467pt;}
.x105{left:879.999027pt;}
.xe7{left:884.479973pt;}
.x8e{left:886.719720pt;}
.x11b{left:888.000000pt;}
.xee{left:898.239333pt;}
.xe8{left:899.200200pt;}
.x75{left:902.400883pt;}
.x8f{left:905.919440pt;}
.x109{left:908.479987pt;}
.xef{left:911.359867pt;}
.x76{left:912.960936pt;}
.x10c{left:925.119147pt;}
.x110{left:927.358893pt;}
.x10a{left:928.319827pt;}
.xe4{left:930.559573pt;}
.x95{left:940.158693pt;}
.xf0{left:941.440347pt;}
.x111{left:944.958907pt;}
.x3e{left:948.799800pt;}
.x7b{left:950.400883pt;}
.xb7{left:952.319821pt;}
.x24{left:957.439453pt;}
.x98{left:960.000000pt;}
.xb8{left:966.399821pt;}
.xc1{left:974.720221pt;}
.x90{left:975.999027pt;}
.xc5{left:979.839848pt;}
.xb6{left:981.439448pt;}
.x114{left:1003.839840pt;}
.x7a{left:1007.361403pt;}
.x3a{left:1008.319333pt;}
.x46{left:1009.278813pt;}
.x10e{left:1015.359293pt;}
.x10f{left:1016.318760pt;}
.x115{left:1017.599040pt;}
.xed{left:1020.799800pt;}
.xec{left:1022.080080pt;}
.xea{left:1023.039547pt;}
.xeb{left:1024.000493pt;}
}




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