
    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_ace49f286c0286b34a66a1eb.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_27f3cc27f7b94779bfb7d8a6.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_05963dd0ee371385ee2b2e5d.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_16d64cc85258ad0d8b3619f2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4fe21f4d1cb33c014f7cb5b2.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_7139bfa53cde9278f89e5cb0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7dc9b5cadc07c90302140d5d.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_1c1f7a6c300fb1e51b9ec354.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0cdd08b327d17c57e43739c8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c4fbb55551b59f16d677525e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_95c760f910248a69f14442c7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fc6dc91b1569e1b9cf20ec45.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6f9219c1476fc7171d9dabda.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f6e7fa1e02d10e75f06930e1.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_cf38ef2e4e72236a261052f6.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ab6099a64e3a72db3ed2d6af.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_97d5070f2d6d0630d6455a1a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_af37ac956b90f53544bf4aea.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_5501bc934cb862f5c57ae524.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_5ee3c70a24cc8e7d89fcf5e2.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_752cc060bdf76e8e593e037d.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_0fbee27f094b6301fbfaf483.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_7eaef11cb6ea2d735bfdc59f.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_9c4d5aba064e94b49ece8286.woff2')format("woff");}.ff1a{font-family:ff1a;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: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_364a25c19ee8dad89261dbd5.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_956778fa1ea484f3b0456720.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_5f7b71dd0dfbadf8fd12a436.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_1c117c8674df9b40d9d0669b.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_4605b8f7bfc867d46ff34142.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_803fe9cf7816496d41a54286.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_988d09f133ef315886de7da8.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_0e55debf976ed58fd0727624.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_47b0278e3139db920e729276.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_98b47e9b2d56b917206e2fc0.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_1864fd5500b708932169a19a.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_898ae3d91d9bdc736732d052.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_8961463fbed1a0713ff3df49.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_c93c1ff9308cc4de94d82f6a.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_e0194e98111eb09a543d2f39.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_d7978b75025004a86fb5802a.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_43f1510b56d9c73806ea7e58.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;}
.m17{transform:matrix(0.064062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064062,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m43{transform:matrix(0.107724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107724,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.138021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138021,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.157692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157692,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m5a{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m3e{transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.205729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205729,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m46{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.mb{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m67{transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.231203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231203,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.235185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235185,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m6a{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);}
.m2a{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.m66{transform:matrix(0.242034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242034,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.ma{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);}
.m4d{transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m6c{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);}
.m53{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m47{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.md{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m69{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m63{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);}
.m68{transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m34{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);}
.m23{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);}
.m64{transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.m4c{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m5c{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);}
.m61{transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.313859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313859,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m35{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);}
.m29{transform:matrix(0.345109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345109,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.351124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351124,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m4e{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.363861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363861,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.365196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365196,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.368687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368687,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m20{transform:matrix(0.371287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371287,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);}
.m60{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);}
.m1f{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);}
.m18{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);}
.m42{transform:matrix(0.423507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423507,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.m19{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);}
.m26{transform:matrix(0.505639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505639,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.517157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517157,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.521277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521277,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.563063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563063,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m4b{transform:matrix(0.663043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663043,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.m1c{transform:matrix(0.735294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735294,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls50{letter-spacing:-22.017975px;}
.ls24{letter-spacing:-13.884000px;}
.ls1c{letter-spacing:-9.320513px;}
.ls26{letter-spacing:-7.715408px;}
.ls25{letter-spacing:-6.885000px;}
.ls29{letter-spacing:-6.060000px;}
.ls8f{letter-spacing:-5.884710px;}
.ls58{letter-spacing:-5.858325px;}
.lsa{letter-spacing:-5.447625px;}
.ls93{letter-spacing:-5.247900px;}
.ls61{letter-spacing:-5.152950px;}
.ls2b{letter-spacing:-5.150243px;}
.ls2a{letter-spacing:-5.052525px;}
.ls15{letter-spacing:-4.590000px;}
.ls68{letter-spacing:-4.517775px;}
.ls28{letter-spacing:-4.037475px;}
.ls65{letter-spacing:-4.016528px;}
.ls13{letter-spacing:-3.824250px;}
.ls87{letter-spacing:-3.747765px;}
.ls18{letter-spacing:-3.583125px;}
.ls10{letter-spacing:-3.570750px;}
.ls3d{letter-spacing:-3.556575px;}
.ls74{letter-spacing:-3.284400px;}
.ls51{letter-spacing:-3.064950px;}
.ls23{letter-spacing:-3.060000px;}
.ls3e{letter-spacing:-3.052418px;}
.ls42{letter-spacing:-3.046875px;}
.ls7b{letter-spacing:-3.021585px;}
.ls62{letter-spacing:-3.011850px;}
.ls92{letter-spacing:-2.998800px;}
.ls3f{letter-spacing:-2.538608px;}
.ls7c{letter-spacing:-2.512965px;}
.ls67{letter-spacing:-2.509875px;}
.ls3a{letter-spacing:-2.300550px;}
.ls60{letter-spacing:-2.298900px;}
.ls11{letter-spacing:-2.294250px;}
.ls43{letter-spacing:-2.286863px;}
.ls86{letter-spacing:-2.248365px;}
.ls1a{letter-spacing:-2.149875px;}
.ls40{letter-spacing:-2.034450px;}
.ls2c{letter-spacing:-2.022525px;}
.ls63{letter-spacing:-2.007900px;}
.ls7a{letter-spacing:-1.537650px;}
.ls5e{letter-spacing:-1.535025px;}
.ls12{letter-spacing:-1.530000px;}
.ls39{letter-spacing:-1.528800px;}
.ls64{letter-spacing:-1.506653px;}
.ls89{letter-spacing:-1.499400px;}
.ls17{letter-spacing:-1.433250px;}
.ls3c{letter-spacing:-1.017225px;}
.ls27{letter-spacing:-1.008233px;}
.ls38{letter-spacing:-0.765135px;}
.ls14{letter-spacing:-0.764250px;}
.ls5f{letter-spacing:-0.763875px;}
.ls44{letter-spacing:-0.760013px;}
.ls88{letter-spacing:-0.748965px;}
.ls77{letter-spacing:-0.748320px;}
.ls19{letter-spacing:-0.716138px;}
.ls66{letter-spacing:-0.501975px;}
.lsb{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.716138px;}
.ls72{letter-spacing:0.719100px;}
.ls6b{letter-spacing:0.748320px;}
.ls80{letter-spacing:0.748965px;}
.ls1f{letter-spacing:0.750750px;}
.ls73{letter-spacing:0.757500px;}
.ls33{letter-spacing:0.760013px;}
.ls76{letter-spacing:0.760725px;}
.ls59{letter-spacing:0.763875px;}
.ls3{letter-spacing:0.764250px;}
.ls2d{letter-spacing:0.765135px;}
.ls48{letter-spacing:0.772943px;}
.ls0{letter-spacing:0.776100px;}
.ls91{letter-spacing:0.795375px;}
.ls22{letter-spacing:0.796950px;}
.ls45{letter-spacing:0.799200px;}
.ls4d{letter-spacing:0.809025px;}
.ls55{letter-spacing:0.914400px;}
.ls4f{letter-spacing:1.431675px;}
.ls8a{letter-spacing:1.441335px;}
.ls7d{letter-spacing:1.452300px;}
.lsf{letter-spacing:1.473255px;}
.ls81{letter-spacing:1.499400px;}
.ls6c{letter-spacing:1.502400px;}
.ls8c{letter-spacing:1.515000px;}
.ls70{letter-spacing:1.517625px;}
.ls34{letter-spacing:1.525875px;}
.ls79{letter-spacing:1.526400px;}
.ls2e{letter-spacing:1.528800px;}
.ls5{letter-spacing:1.530000px;}
.ls5c{letter-spacing:1.535025px;}
.lse{letter-spacing:1.543410px;}
.ls49{letter-spacing:1.544400px;}
.ls21{letter-spacing:1.560600px;}
.ls90{letter-spacing:1.574625px;}
.ls1e{letter-spacing:1.597920px;}
.ls47{letter-spacing:1.598400px;}
.ls8e{letter-spacing:1.599488px;}
.ls4c{letter-spacing:1.656000px;}
.ls95{letter-spacing:1.811700px;}
.ls46{letter-spacing:2.217600px;}
.ls82{letter-spacing:2.248365px;}
.ls6d{letter-spacing:2.251680px;}
.ls4e{letter-spacing:2.285280px;}
.ls35{letter-spacing:2.286863px;}
.ls78{letter-spacing:2.286900px;}
.ls4{letter-spacing:2.294250px;}
.ls5b{letter-spacing:2.298900px;}
.ls2f{letter-spacing:2.300550px;}
.ls75{letter-spacing:2.398013px;}
.ls54{letter-spacing:2.572800px;}
.ls1b{letter-spacing:2.693400px;}
.ls84{letter-spacing:2.998800px;}
.ls52{letter-spacing:3.027750px;}
.ls94{letter-spacing:3.031500px;}
.lsd{letter-spacing:3.045150px;}
.ls36{letter-spacing:3.046875px;}
.ls6{letter-spacing:3.060000px;}
.ls5a{letter-spacing:3.062775px;}
.ls30{letter-spacing:3.064950px;}
.lsc{letter-spacing:3.104400px;}
.ls96{letter-spacing:3.225000px;}
.ls6f{letter-spacing:3.241875px;}
.ls41{letter-spacing:3.262875px;}
.ls1d{letter-spacing:3.296400px;}
.ls56{letter-spacing:3.643200px;}
.ls83{letter-spacing:3.747765px;}
.ls4b{letter-spacing:3.750600px;}
.ls8b{letter-spacing:3.788250px;}
.ls7{letter-spacing:3.824250px;}
.ls5d{letter-spacing:3.826650px;}
.ls32{letter-spacing:3.828615px;}
.ls53{letter-spacing:4.086600px;}
.ls8d{letter-spacing:4.498200px;}
.ls57{letter-spacing:4.556880px;}
.ls4a{letter-spacing:4.593750px;}
.ls69{letter-spacing:4.597800px;}
.ls2{letter-spacing:4.671525px;}
.ls71{letter-spacing:4.699283px;}
.ls16{letter-spacing:5.022000px;}
.ls85{letter-spacing:5.247900px;}
.ls37{letter-spacing:5.333738px;}
.ls8{letter-spacing:5.355000px;}
.ls7e{letter-spacing:5.358885px;}
.ls6e{letter-spacing:6.122550px;}
.ls1{letter-spacing:6.223725px;}
.ls7f{letter-spacing:8.366100px;}
.ls6a{letter-spacing:9.730125px;}
.ls20{letter-spacing:9.953250px;}
.ls31{letter-spacing:10.716300px;}
.ls3b{letter-spacing:14.546385px;}
.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;}
._2a{margin-left:-147.279300px;}
._1f{margin-left:-65.714925px;}
._15{margin-left:-59.835750px;}
._11{margin-left:-54.817500px;}
._2c{margin-left:-44.193015px;}
._21{margin-left:-41.968388px;}
._28{margin-left:-35.977500px;}
._19{margin-left:-34.324875px;}
._22{margin-left:-28.665000px;}
._20{margin-left:-22.076400px;}
._23{margin-left:-20.806500px;}
._17{margin-left:-19.383225px;}
._29{margin-left:-17.608988px;}
._1d{margin-left:-15.013650px;}
._4{margin-left:-13.359367px;}
._2{margin-left:-12.162383px;}
._1e{margin-left:-9.934500px;}
._10{margin-left:-8.196750px;}
._1b{margin-left:-7.145550px;}
._3{margin-left:-5.970000px;}
._6{margin-left:-4.689000px;}
._9{margin-left:-3.224250px;}
._7{margin-left:-1.947000px;}
._8{width:1.167000px;}
._5{width:3.042750px;}
._1{width:4.596900px;}
._f{width:5.718300px;}
._c{width:7.370250px;}
._a{width:8.378100px;}
._e{width:10.345875px;}
._d{width:12.266625px;}
._0{width:13.357875px;}
._1a{width:14.873250px;}
._b{width:16.110000px;}
._16{width:17.145862px;}
._24{width:18.427987px;}
._1c{width:20.103623px;}
._25{width:21.570390px;}
._13{width:22.841250px;}
._26{width:25.203750px;}
._27{width:27.513112px;}
._14{width:29.513888px;}
._30{width:32.455410px;}
._12{width:34.011750px;}
._2d{width:36.507450px;}
._2e{width:37.558500px;}
._2b{width:42.150270px;}
._2f{width:46.216575px;}
._18{width:53.588438px;}
.fc0{color:transparent;}
.fs15{font-size:15.750000px;}
.fs19{font-size:17.250000px;}
.fs1a{font-size:18.000000px;}
.fs22{font-size:23.250000px;}
.fs1d{font-size:24.750000px;}
.fs17{font-size:25.500000px;}
.fs16{font-size:27.000000px;}
.fs26{font-size:30.750000px;}
.fs34{font-size:33.750000px;}
.fs14{font-size:34.500000px;}
.fs27{font-size:35.250000px;}
.fs9{font-size:36.000000px;}
.fs21{font-size:37.500000px;}
.fse{font-size:38.250000px;}
.fs38{font-size:39.000000px;}
.fs23{font-size:45.750000px;}
.fs33{font-size:46.500000px;}
.fs24{font-size:47.250000px;}
.fsc{font-size:48.000000px;}
.fsa{font-size:48.750000px;}
.fsf{font-size:49.500000px;}
.fsb{font-size:50.250000px;}
.fs13{font-size:51.750000px;}
.fs36{font-size:59.250000px;}
.fs30{font-size:62.250000px;}
.fs18{font-size:63.750000px;}
.fs35{font-size:67.500000px;}
.fs7{font-size:69.000000px;}
.fs2f{font-size:69.750000px;}
.fs31{font-size:70.500000px;}
.fs8{font-size:71.250000px;}
.fsd{font-size:72.000000px;}
.fs32{font-size:72.750000px;}
.fs20{font-size:73.500000px;}
.fs10{font-size:74.250000px;}
.fs6{font-size:75.000000px;}
.fs37{font-size:75.522600px;}
.fs1b{font-size:75.750000px;}
.fs1e{font-size:76.500000px;}
.fs2b{font-size:80.250000px;}
.fs2c{font-size:82.500000px;}
.fs2a{font-size:83.250000px;}
.fs29{font-size:89.250000px;}
.fs2e{font-size:92.250000px;}
.fs25{font-size:93.750000px;}
.fs5{font-size:94.500000px;}
.fs4{font-size:99.000000px;}
.fs1f{font-size:99.750000px;}
.fs2d{font-size:100.500000px;}
.fs3{font-size:101.250000px;}
.fs1c{font-size:117.000000px;}
.fs12{font-size:120.000000px;}
.fs11{font-size:133.500000px;}
.fs28{font-size:138.000000px;}
.fs1{font-size:141.000000px;}
.fs0{font-size:149.250000px;}
.fs2{font-size:150.750000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:39.239250px;}
.y86{bottom:65.163240px;}
.y17f{bottom:65.519741px;}
.yd4{bottom:66.239250px;}
.y14e{bottom:66.959254px;}
.yf6{bottom:72.002462px;}
.y125{bottom:75.960390px;}
.y63{bottom:76.318777px;}
.y1d{bottom:82.074188px;}
.y85{bottom:86.402902px;}
.y17e{bottom:86.759404px;}
.yd3{bottom:87.479685px;}
.y14c{bottom:87.837262px;}
.y14d{bottom:87.838950px;}
.yf5{bottom:93.602119px;}
.y62{bottom:97.198777px;}
.y124{bottom:97.200053px;}
.y155{bottom:102.237300px;}
.y156{bottom:102.238785px;}
.y1c{bottom:102.955875px;}
.y84{bottom:107.282599px;}
.y17d{bottom:107.639100px;}
.y17c{bottom:107.639280px;}
.yd2{bottom:108.359250px;}
.yf4{bottom:114.481187px;}
.y154{bottom:116.637300px;}
.y14b{bottom:116.998571px;}
.y122{bottom:118.438541px;}
.y61{bottom:118.438777px;}
.y123{bottom:118.439715px;}
.y2f{bottom:121.320300px;}
.y1b{bottom:124.194188px;}
.y83{bottom:128.162111px;}
.y17b{bottom:128.878942px;}
.yd1{bottom:129.599700px;}
.y153{bottom:131.398500px;}
.yf3{bottom:135.360255px;}
.y14a{bottom:137.878267px;}
.y121{bottom:139.318238px;}
.y60{bottom:139.318777px;}
.y1a{bottom:145.075875px;}
.y152{bottom:145.798500px;}
.y82{bottom:149.401774px;}
.y17a{bottom:149.758639px;}
.yd0{bottom:150.479250px;}
.yf2{bottom:156.241324px;}
.y149{bottom:158.759617px;}
.y5e{bottom:160.197847px;}
.y151{bottom:160.198500px;}
.y120{bottom:160.199588px;}
.y5f{bottom:160.200465px;}
.y19{bottom:165.955875px;}
.y81{bottom:170.281470px;}
.y179{bottom:170.638335px;}
.ycf{bottom:171.360300px;}
.y150{bottom:174.598500px;}
.yf1{bottom:177.481232px;}
.y148{bottom:179.999280px;}
.y5d{bottom:181.077847px;}
.y11f{bottom:181.439250px;}
.y11e{bottom:181.440825px;}
.y18{bottom:186.835875px;}
.y80{bottom:190.800832px;}
.y178{bottom:191.519685px;}
.y177{bottom:191.521129px;}
.yce{bottom:192.239850px;}
.yf0{bottom:198.002188px;}
.y147{bottom:200.518642px;}
.y5c{bottom:201.957847px;}
.y11d{bottom:201.960187px;}
.y17{bottom:207.717562px;}
.y7f{bottom:211.680529px;}
.y176{bottom:212.400825px;}
.ycd{bottom:213.119385px;}
.yef{bottom:219.603482px;}
.y146{bottom:221.398339px;}
.y5b{bottom:222.839535px;}
.y11c{bottom:223.199850px;}
.y11b{bottom:223.200788px;}
.y16{bottom:228.597562px;}
.y175{bottom:232.920187px;}
.y7e{bottom:232.920191px;}
.ycc{bottom:234.359554px;}
.yee{bottom:239.762507px;}
.y145{bottom:242.279689px;}
.y5a{bottom:243.719535px;}
.y11a{bottom:243.720150px;}
.y119{bottom:243.722359px;}
.y15{bottom:249.477562px;}
.y2e{bottom:250.920000px;}
.y7d{bottom:253.439554px;}
.y173{bottom:254.158369px;}
.y174{bottom:254.159850px;}
.ycb{bottom:255.239250px;}
.yed{bottom:261.001869px;}
.y144{bottom:263.159385px;}
.y143{bottom:263.160188px;}
.y59{bottom:264.959535px;}
.y118{bottom:264.962021px;}
.y2d{bottom:265.680623px;}
.y14{bottom:270.357562px;}
.y7c{bottom:274.319250px;}
.y7b{bottom:274.321440px;}
.y172{bottom:275.038065px;}
.yca{bottom:276.120435px;}
.y2c{bottom:280.439685px;}
.yec{bottom:281.880938px;}
.y142{bottom:284.399850px;}
.y58{bottom:285.839535px;}
.ya0{bottom:288.359850px;}
.y13{bottom:291.597562px;}
.y117{bottom:294.121309px;}
.y7a{bottom:295.561103px;}
.y171{bottom:295.917761px;}
.y2a{bottom:296.099559px;}
.y2b{bottom:296.100150px;}
.yc9{bottom:297.000000px;}
.y9e{bottom:302.759535px;}
.yeb{bottom:302.760006px;}
.y141{bottom:305.282550px;}
.y57{bottom:306.719535px;}
.y29{bottom:309.238781px;}
.y9f{bottom:309.600150px;}
.y12{bottom:312.477562px;}
.y116{bottom:314.640671px;}
.y9d{bottom:316.439235px;}
.y170{bottom:316.797458px;}
.y79{bottom:316.800398px;}
.y9b{bottom:317.159385px;}
.yc7{bottom:317.879535px;}
.y28{bottom:323.640750px;}
.y27{bottom:323.640960px;}
.yea{bottom:324.359663px;}
.yc8{bottom:324.720135px;}
.y56{bottom:325.079385px;}
.y140{bottom:326.162246px;}
.y55{bottom:327.599100px;}
.y9c{bottom:327.960000px;}
.y196{bottom:331.561343px;}
.y11{bottom:333.359250px;}
.y115{bottom:335.880334px;}
.y78{bottom:337.319760px;}
.y16f{bottom:337.678440px;}
.y9a{bottom:338.399850px;}
.y26{bottom:338.400023px;}
.y54{bottom:338.759100px;}
.yc6{bottom:339.120000px;}
.ye9{bottom:345.240731px;}
.y13f{bottom:347.401909px;}
.y53{bottom:347.760135px;}
.y52{bottom:348.480285px;}
.y195{bottom:352.801005px;}
.y25{bottom:353.880585px;}
.yc5{bottom:354.239850px;}
.y10{bottom:354.599250px;}
.y114{bottom:356.760030px;}
.y77{bottom:358.559423px;}
.y16e{bottom:358.918102px;}
.yc4{bottom:363.600150px;}
.y51{bottom:363.959385px;}
.ye8{bottom:366.119799px;}
.y24{bottom:367.560285px;}
.y23{bottom:367.561191px;}
.yc2{bottom:368.280435px;}
.y13e{bottom:368.281605px;}
.y50{bottom:369.718447px;}
.ya1{bottom:370.800135px;}
.y194{bottom:373.680701px;}
.yf{bottom:375.479250px;}
.y113{bottom:377.639726px;}
.y76{bottom:379.440773px;}
.y16d{bottom:379.799453px;}
.yc3{bottom:380.519685px;}
.y22{bottom:381.960722px;}
.ye7{bottom:386.998867px;}
.yc0{bottom:388.798785px;}
.yc1{bottom:388.798920px;}
.y13d{bottom:389.521267px;}
.y4f{bottom:390.600135px;}
.y193{bottom:394.562051px;}
.ye{bottom:396.359250px;}
.y21{bottom:396.721125px;}
.y112{bottom:398.879389px;}
.y99{bottom:398.879565px;}
.y75{bottom:400.320469px;}
.y16c{bottom:400.679149px;}
.y98{bottom:405.000000px;}
.y4e{bottom:405.359250px;}
.ye6{bottom:408.239867px;}
.ybf{bottom:409.679531px;}
.y97{bottom:409.680135px;}
.y4d{bottom:410.039385px;}
.y20{bottom:411.120656px;}
.y192{bottom:415.801714px;}
.yd{bottom:417.239250px;}
.y13c{bottom:418.320589px;}
.y111{bottom:419.759085px;}
.y16b{bottom:421.558845px;}
.y74{bottom:421.560131px;}
.y1f{bottom:425.520187px;}
.y4c{bottom:427.319820px;}
.ye5{bottom:429.118935px;}
.ybe{bottom:430.920600px;}
.y191{bottom:436.683064px;}
.y110{bottom:438.120435px;}
.y10f{bottom:438.120630px;}
.yc{bottom:438.479250px;}
.y13b{bottom:439.560068px;}
.y1e{bottom:440.279250px;}
.y73{bottom:442.439828px;}
.y16a{bottom:442.798508px;}
.ybd{bottom:448.199385px;}
.y4b{bottom:448.560285px;}
.ye4{bottom:450.000004px;}
.ybc{bottom:451.800150px;}
.y190{bottom:457.562760px;}
.y96{bottom:457.920600px;}
.yb{bottom:459.359250px;}
.y13a{bottom:460.439764px;}
.y10e{bottom:461.519539px;}
.y169{bottom:463.678204px;}
.y72{bottom:463.679490px;}
.y4a{bottom:467.279250px;}
.y95{bottom:469.080465px;}
.ybb{bottom:470.519070px;}
.ye3{bottom:471.239366px;}
.yba{bottom:473.040570px;}
.y18f{bottom:478.801871px;}
.ya{bottom:480.240420px;}
.y9{bottom:480.240923px;}
.y139{bottom:481.321114px;}
.y10d{bottom:482.399235px;}
.yb9{bottom:482.760135px;}
.y49{bottom:483.119385px;}
.y71{bottom:484.559186px;}
.y168{bottom:484.559554px;}
.y48{bottom:486.720150px;}
.y47{bottom:487.079400px;}
.yb8{bottom:490.680135px;}
.ye2{bottom:492.120435px;}
.yb7{bottom:494.279250px;}
.y94{bottom:495.719565px;}
.y46{bottom:496.080465px;}
.y92{bottom:497.879970px;}
.y18e{bottom:499.681568px;}
.y7{bottom:501.479033px;}
.y8{bottom:501.479235px;}
.y138{bottom:502.200810px;}
.y93{bottom:504.000600px;}
.y45{bottom:504.359850px;}
.y70{bottom:505.438883px;}
.y167{bottom:505.439250px;}
.y166{bottom:505.440319px;}
.y10c{bottom:506.879520px;}
.y91{bottom:509.760135px;}
.y44{bottom:510.119385px;}
.y90{bottom:512.279850px;}
.ye1{bottom:513.358804px;}
.yb6{bottom:513.359250px;}
.y43{bottom:513.720150px;}
.yb5{bottom:515.160420px;}
.y10b{bottom:519.479685px;}
.y42{bottom:519.840585px;}
.y18d{bottom:520.921230px;}
.y6{bottom:522.360720px;}
.y41{bottom:522.719565px;}
.y137{bottom:523.440472px;}
.y6f{bottom:526.678361px;}
.y8e{bottom:526.679670px;}
.y8f{bottom:533.879520px;}
.ye0{bottom:534.239873px;}
.y165{bottom:534.959940px;}
.yb4{bottom:536.039985px;}
.y40{bottom:538.920600px;}
.y18c{bottom:541.800926px;}
.y3f{bottom:543.599070px;}
.y5{bottom:543.600720px;}
.y135{bottom:544.679858px;}
.y136{bottom:544.680135px;}
.y10a{bottom:546.838950px;}
.y6e{bottom:547.558058px;}
.yb3{bottom:552.600135px;}
.ydf{bottom:555.479235px;}
.y164{bottom:555.479303px;}
.y109{bottom:555.840135px;}
.yb2{bottom:556.919535px;}
.y108{bottom:559.800150px;}
.y8d{bottom:562.679070px;}
.y3e{bottom:563.039985px;}
.y18b{bottom:563.040589px;}
.y3d{bottom:564.838380px;}
.y134{bottom:565.559554px;}
.y6d{bottom:568.439408px;}
.y106{bottom:570.959970px;}
.yb1{bottom:573.479685px;}
.y105{bottom:573.838950px;}
.y163{bottom:576.358999px;}
.y107{bottom:577.080420px;}
.yb0{bottom:578.159820px;}
.y4{bottom:580.679670px;}
.y18a{bottom:583.920285px;}
.y8c{bottom:584.280435px;}
.y3c{bottom:585.358567px;}
.y133{bottom:586.439250px;}
.y132{bottom:586.439741px;}
.y6c{bottom:589.679070px;}
.yde{bottom:592.921082px;}
.y104{bottom:593.640379px;}
.y162{bottom:597.598661px;}
.yae{bottom:598.319205px;}
.yaf{bottom:598.319235px;}
.y189{bottom:604.799981px;}
.y3b{bottom:606.238568px;}
.y131{bottom:607.679404px;}
.ydd{bottom:613.800150px;}
.y103{bottom:614.880041px;}
.y161{bottom:618.478174px;}
.yad{bottom:619.558868px;}
.y188{bottom:625.681331px;}
.y6b{bottom:626.760000px;}
.y3a{bottom:627.478567px;}
.y12f{bottom:628.558361px;}
.y130{bottom:628.559100px;}
.y102{bottom:635.759737px;}
.y160{bottom:639.359524px;}
.yac{bottom:640.438564px;}
.y8b{bottom:644.039784px;}
.y6a{bottom:647.639100px;}
.y39{bottom:648.358567px;}
.y12e{bottom:649.798024px;}
.y187{bottom:655.200953px;}
.y101{bottom:656.999400px;}
.y8a{bottom:658.798847px;}
.y15f{bottom:660.239220px;}
.y15e{bottom:660.239632px;}
.yab{bottom:661.678226px;}
.ydc{bottom:667.439034px;}
.y38{bottom:669.240255px;}
.y12d{bottom:670.677720px;}
.y89{bottom:673.200938px;}
.y186{bottom:676.440615px;}
.y100{bottom:677.880570px;}
.y15d{bottom:681.119329px;}
.yaa{bottom:682.557923px;}
.y88{bottom:687.600469px;}
.ydb{bottom:688.320103px;}
.y37{bottom:690.120255px;}
.y185{bottom:697.320311px;}
.yff{bottom:698.760135px;}
.yfe{bottom:698.760664px;}
.y12c{bottom:700.197341px;}
.y69{bottom:701.281755px;}
.y87{bottom:702.000000px;}
.y15c{bottom:702.358807px;}
.ya9{bottom:703.439273px;}
.y14f{bottom:705.599070px;}
.yda{bottom:709.559466px;}
.y35{bottom:711.359302px;}
.y36{bottom:711.360255px;}
.y184{bottom:718.559974px;}
.yfd{bottom:720.000143px;}
.y12b{bottom:721.078691px;}
.y68{bottom:722.521417px;}
.y15b{bottom:723.238504px;}
.ya8{bottom:724.678935px;}
.yd9{bottom:730.440534px;}
.y34{bottom:732.239302px;}
.y3{bottom:734.759535px;}
.y183{bottom:739.439670px;}
.yfc{bottom:740.879839px;}
.y12a{bottom:742.318354px;}
.y67{bottom:743.401114px;}
.y15a{bottom:744.119854px;}
.ya6{bottom:745.559887px;}
.ya7{bottom:745.560285px;}
.yd8{bottom:751.681534px;}
.y33{bottom:753.479302px;}
.y2{bottom:756.720105px;}
.y182{bottom:760.679813px;}
.yfb{bottom:761.759535px;}
.yfa{bottom:761.760161px;}
.y129{bottom:763.199704px;}
.y66{bottom:764.640776px;}
.y159{bottom:764.999550px;}
.ya5{bottom:766.439584px;}
.yd7{bottom:772.560602px;}
.y32{bottom:773.999490px;}
.y181{bottom:781.559509px;}
.yf9{bottom:782.639858px;}
.y128{bottom:784.079400px;}
.y127{bottom:784.080158px;}
.y65{bottom:785.880439px;}
.y158{bottom:786.239212px;}
.ya4{bottom:787.319280px;}
.ya3{bottom:787.320172px;}
.yd6{bottom:793.439670px;}
.y31{bottom:794.879490px;}
.y1{bottom:797.399865px;}
.y180{bottom:802.439205px;}
.yf8{bottom:803.879520px;}
.y126{bottom:805.319820px;}
.y157{bottom:806.758575px;}
.y64{bottom:806.760135px;}
.ya2{bottom:807.839535px;}
.y30{bottom:815.759490px;}
.yf7{bottom:822.959385px;}
.h19{height:16.426758px;}
.h42{height:16.921509px;}
.h1e{height:17.789062px;}
.h1d{height:17.991211px;}
.h2b{height:23.431641px;}
.h44{height:24.249023px;}
.h2a{height:24.459961px;}
.h21{height:24.943359px;}
.h1b{height:25.201172px;}
.h1a{height:28.160156px;}
.h2f{height:30.164429px;}
.h40{height:34.595947px;}
.h43{height:35.200195px;}
.h18{height:35.982422px;}
.h30{height:36.764648px;}
.hb{height:37.546875px;}
.h4a{height:38.542969px;}
.h29{height:39.111328px;}
.h12{height:39.893555px;}
.h2d{height:46.350220px;}
.h2c{height:47.715820px;}
.h23{height:48.178711px;}
.h41{height:48.498047px;}
.h31{height:49.280273px;}
.he{height:50.062500px;}
.h4b{height:50.062980px;}
.hc{height:50.844727px;}
.h13{height:51.626953px;}
.hd{height:52.409180px;}
.h17{height:53.973633px;}
.h46{height:58.121704px;}
.h3a{height:64.924805px;}
.h1c{height:66.489258px;}
.h45{height:70.400391px;}
.h9{height:71.964844px;}
.h39{height:72.747070px;}
.h3f{height:72.872314px;}
.h3c{height:73.379883px;}
.h3b{height:73.529297px;}
.ha{height:74.311523px;}
.hf{height:75.093750px;}
.h3d{height:75.875977px;}
.h26{height:76.658203px;}
.h27{height:76.658938px;}
.h28{height:76.659673px;}
.h4c{height:76.660408px;}
.h14{height:77.440430px;}
.h8{height:78.222656px;}
.h35{height:78.721802px;}
.h49{height:78.767712px;}
.h1f{height:79.004883px;}
.h22{height:79.787109px;}
.h36{height:80.928955px;}
.h34{height:86.827148px;}
.h33{height:93.084961px;}
.h2e{height:94.482422px;}
.h38{height:96.213867px;}
.h3e{height:97.850464px;}
.h7{height:98.560547px;}
.h6{height:103.253906px;}
.h24{height:104.036133px;}
.h37{height:104.818359px;}
.h5{height:105.600586px;}
.h20{height:114.829102px;}
.h16{height:120.937500px;}
.h15{height:139.236328px;}
.h32{height:143.929688px;}
.h3{height:147.058594px;}
.h2{height:155.663086px;}
.h4{height:157.227539px;}
.h1{height:897.750000px;}
.h25{height:897.838500px;}
.h0{height:897.840000px;}
.h11{height:901.500000px;}
.h10{height:901.798500px;}
.h47{height:903.598500px;}
.h48{height:903.750000px;}
.w4{width:1151.998500px;}
.w5{width:1151.999988px;}
.w0{width:1151.999994px;}
.w1{width:1152.000000px;}
.w2{width:1157.758500px;}
.w3{width:1158.000000px;}
.x0{left:0.000000px;}
.x24{left:40.314420px;}
.x23{left:42.120000px;}
.x1{left:43.919544px;}
.x92{left:46.081800px;}
.x73{left:47.886926px;}
.x4f{left:55.799544px;}
.x27{left:59.759565px;}
.x51{left:61.200547px;}
.x9{left:62.279244px;}
.x4e{left:64.078815px;}
.x15{left:65.519100px;}
.x2f{left:77.040000px;}
.x82{left:79.200438px;}
.x16{left:80.639100px;}
.x90{left:84.239850px;}
.x71{left:86.040409px;}
.x91{left:107.278267px;}
.x8f{left:109.079400px;}
.x72{left:110.162006px;}
.x6d{left:111.239850px;}
.x59{left:119.878350px;}
.x60{left:128.518665px;}
.x30{left:129.958950px;}
.x81{left:156.960588px;}
.x6e{left:165.599100px;}
.x31{left:171.719565px;}
.x74{left:176.759100px;}
.x5a{left:181.439250px;}
.x75{left:191.519685px;}
.x32{left:195.479685px;}
.x33{left:220.678500px;}
.x28{left:228.598500px;}
.x5b{left:232.199385px;}
.x5c{left:242.639100px;}
.x29{left:247.319250px;}
.x34{left:248.759535px;}
.x7c{left:262.798515px;}
.xa{left:268.920594px;}
.x6f{left:272.878950px;}
.x3{left:284.399829px;}
.x76{left:285.838515px;}
.x70{left:287.639700px;}
.x77{left:305.279250px;}
.x83{left:331.560723px;}
.x4{left:336.959544px;}
.x78{left:339.120000px;}
.x5d{left:343.798515px;}
.x79{left:354.958350px;}
.x7f{left:359.638530px;}
.x80{left:374.758500px;}
.x47{left:402.840075px;}
.x35{left:403.918950px;}
.x18{left:404.997896px;}
.x17{left:406.799565px;}
.x3a{left:420.839940px;}
.x3d{left:421.915200px;}
.x1b{left:423.002550px;}
.x49{left:424.439250px;}
.x58{left:431.639100px;}
.x4a{left:442.078815px;}
.x62{left:443.875680px;}
.x7a{left:448.558635px;}
.x4b{left:451.439250px;}
.x42{left:458.279850px;}
.x19{left:463.678530px;}
.x7b{left:464.759535px;}
.x89{left:467.640603px;}
.x63{left:469.077660px;}
.x43{left:474.479235px;}
.x4c{left:478.080000px;}
.x1a{left:481.679070px;}
.x36{left:489.958335px;}
.x4d{left:497.878320px;}
.x37{left:504.719100px;}
.x7d{left:565.559685px;}
.x84{left:572.761188px;}
.x7e{left:580.679670px;}
.x68{left:588.238770px;}
.x25{left:597.239820px;}
.x38{left:602.638545px;}
.x48{left:606.239220px;}
.x26{left:618.478635px;}
.x39{left:629.999400px;}
.x2{left:631.439664px;}
.x69{left:639.719100px;}
.x3e{left:648.000000px;}
.x87{left:654.120438px;}
.x8c{left:664.201038px;}
.x8d{left:707.761188px;}
.x50{left:714.239229px;}
.x5e{left:715.318770px;}
.x5f{left:730.799520px;}
.xb{left:735.120444px;}
.x85{left:749.881158px;}
.x66{left:763.199850px;}
.x67{left:779.399235px;}
.x6a{left:783.000000px;}
.x3b{left:784.799565px;}
.x52{left:789.479640px;}
.x8a{left:792.001008px;}
.x5{left:795.600309px;}
.x2d{left:797.399865px;}
.xc{left:798.840084px;}
.x53{left:807.478635px;}
.x2a{left:811.438665px;}
.x2e{left:812.519715px;}
.xd{left:813.960024px;}
.x13{left:815.039139px;}
.x8e{left:816.481293px;}
.x2b{left:826.199340px;}
.x3f{left:848.519070px;}
.x40{left:865.799565px;}
.x21{left:874.439670px;}
.x6{left:879.479184px;}
.x6b{left:881.278755px;}
.x1d{left:889.198785px;}
.x88{left:892.081053px;}
.x22{left:893.878965px;}
.x6c{left:899.999355px;}
.x41{left:905.038965px;}
.x7{left:906.479184px;}
.x86{left:915.480288px;}
.x10{left:932.040534px;}
.x1e{left:943.559685px;}
.x11{left:948.599034px;}
.x54{left:950.398590px;}
.x3c{left:961.199340px;}
.x8{left:962.280399px;}
.x1f{left:963.359805px;}
.x12{left:966.599664px;}
.x55{left:976.678530px;}
.x8b{left:1000.081053px;}
.x46{left:1002.958275px;}
.x56{left:1037.159820px;}
.x14{left:1054.440309px;}
.x44{left:1056.239865px;}
.xe{left:1058.039334px;}
.x64{left:1059.479640px;}
.x57{left:1060.559055px;}
.x2c{left:1069.558590px;}
.xf{left:1073.159364px;}
.x65{left:1078.559685px;}
.x45{left:1083.599025px;}
.x61{left:1121.399775px;}
.x20{left:1135.079400px;}
.x1c{left:1136.158815px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls50{letter-spacing:-19.571533pt;}
.ls24{letter-spacing:-12.341333pt;}
.ls1c{letter-spacing:-8.284900pt;}
.ls26{letter-spacing:-6.858140pt;}
.ls25{letter-spacing:-6.120000pt;}
.ls29{letter-spacing:-5.386667pt;}
.ls8f{letter-spacing:-5.230853pt;}
.ls58{letter-spacing:-5.207400pt;}
.lsa{letter-spacing:-4.842333pt;}
.ls93{letter-spacing:-4.664800pt;}
.ls61{letter-spacing:-4.580400pt;}
.ls2b{letter-spacing:-4.577993pt;}
.ls2a{letter-spacing:-4.491133pt;}
.ls15{letter-spacing:-4.080000pt;}
.ls68{letter-spacing:-4.015800pt;}
.ls28{letter-spacing:-3.588867pt;}
.ls65{letter-spacing:-3.570247pt;}
.ls13{letter-spacing:-3.399333pt;}
.ls87{letter-spacing:-3.331347pt;}
.ls18{letter-spacing:-3.185000pt;}
.ls10{letter-spacing:-3.174000pt;}
.ls3d{letter-spacing:-3.161400pt;}
.ls74{letter-spacing:-2.919467pt;}
.ls51{letter-spacing:-2.724400pt;}
.ls23{letter-spacing:-2.720000pt;}
.ls3e{letter-spacing:-2.713260pt;}
.ls42{letter-spacing:-2.708333pt;}
.ls7b{letter-spacing:-2.685853pt;}
.ls62{letter-spacing:-2.677200pt;}
.ls92{letter-spacing:-2.665600pt;}
.ls3f{letter-spacing:-2.256540pt;}
.ls7c{letter-spacing:-2.233747pt;}
.ls67{letter-spacing:-2.231000pt;}
.ls3a{letter-spacing:-2.044933pt;}
.ls60{letter-spacing:-2.043467pt;}
.ls11{letter-spacing:-2.039333pt;}
.ls43{letter-spacing:-2.032767pt;}
.ls86{letter-spacing:-1.998547pt;}
.ls1a{letter-spacing:-1.911000pt;}
.ls40{letter-spacing:-1.808400pt;}
.ls2c{letter-spacing:-1.797800pt;}
.ls63{letter-spacing:-1.784800pt;}
.ls7a{letter-spacing:-1.366800pt;}
.ls5e{letter-spacing:-1.364467pt;}
.ls12{letter-spacing:-1.360000pt;}
.ls39{letter-spacing:-1.358933pt;}
.ls64{letter-spacing:-1.339247pt;}
.ls89{letter-spacing:-1.332800pt;}
.ls17{letter-spacing:-1.274000pt;}
.ls3c{letter-spacing:-0.904200pt;}
.ls27{letter-spacing:-0.896207pt;}
.ls38{letter-spacing:-0.680120pt;}
.ls14{letter-spacing:-0.679333pt;}
.ls5f{letter-spacing:-0.679000pt;}
.ls44{letter-spacing:-0.675567pt;}
.ls88{letter-spacing:-0.665747pt;}
.ls77{letter-spacing:-0.665173pt;}
.ls19{letter-spacing:-0.636567pt;}
.ls66{letter-spacing:-0.446200pt;}
.lsb{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.636567pt;}
.ls72{letter-spacing:0.639200pt;}
.ls6b{letter-spacing:0.665173pt;}
.ls80{letter-spacing:0.665747pt;}
.ls1f{letter-spacing:0.667333pt;}
.ls73{letter-spacing:0.673333pt;}
.ls33{letter-spacing:0.675567pt;}
.ls76{letter-spacing:0.676200pt;}
.ls59{letter-spacing:0.679000pt;}
.ls3{letter-spacing:0.679333pt;}
.ls2d{letter-spacing:0.680120pt;}
.ls48{letter-spacing:0.687060pt;}
.ls0{letter-spacing:0.689867pt;}
.ls91{letter-spacing:0.707000pt;}
.ls22{letter-spacing:0.708400pt;}
.ls45{letter-spacing:0.710400pt;}
.ls4d{letter-spacing:0.719133pt;}
.ls55{letter-spacing:0.812800pt;}
.ls4f{letter-spacing:1.272600pt;}
.ls8a{letter-spacing:1.281187pt;}
.ls7d{letter-spacing:1.290933pt;}
.lsf{letter-spacing:1.309560pt;}
.ls81{letter-spacing:1.332800pt;}
.ls6c{letter-spacing:1.335467pt;}
.ls8c{letter-spacing:1.346667pt;}
.ls70{letter-spacing:1.349000pt;}
.ls34{letter-spacing:1.356333pt;}
.ls79{letter-spacing:1.356800pt;}
.ls2e{letter-spacing:1.358933pt;}
.ls5{letter-spacing:1.360000pt;}
.ls5c{letter-spacing:1.364467pt;}
.lse{letter-spacing:1.371920pt;}
.ls49{letter-spacing:1.372800pt;}
.ls21{letter-spacing:1.387200pt;}
.ls90{letter-spacing:1.399667pt;}
.ls1e{letter-spacing:1.420373pt;}
.ls47{letter-spacing:1.420800pt;}
.ls8e{letter-spacing:1.421767pt;}
.ls4c{letter-spacing:1.472000pt;}
.ls95{letter-spacing:1.610400pt;}
.ls46{letter-spacing:1.971200pt;}
.ls82{letter-spacing:1.998547pt;}
.ls6d{letter-spacing:2.001493pt;}
.ls4e{letter-spacing:2.031360pt;}
.ls35{letter-spacing:2.032767pt;}
.ls78{letter-spacing:2.032800pt;}
.ls4{letter-spacing:2.039333pt;}
.ls5b{letter-spacing:2.043467pt;}
.ls2f{letter-spacing:2.044933pt;}
.ls75{letter-spacing:2.131567pt;}
.ls54{letter-spacing:2.286933pt;}
.ls1b{letter-spacing:2.394133pt;}
.ls84{letter-spacing:2.665600pt;}
.ls52{letter-spacing:2.691333pt;}
.ls94{letter-spacing:2.694667pt;}
.lsd{letter-spacing:2.706800pt;}
.ls36{letter-spacing:2.708333pt;}
.ls6{letter-spacing:2.720000pt;}
.ls5a{letter-spacing:2.722467pt;}
.ls30{letter-spacing:2.724400pt;}
.lsc{letter-spacing:2.759467pt;}
.ls96{letter-spacing:2.866667pt;}
.ls6f{letter-spacing:2.881667pt;}
.ls41{letter-spacing:2.900333pt;}
.ls1d{letter-spacing:2.930133pt;}
.ls56{letter-spacing:3.238400pt;}
.ls83{letter-spacing:3.331347pt;}
.ls4b{letter-spacing:3.333867pt;}
.ls8b{letter-spacing:3.367333pt;}
.ls7{letter-spacing:3.399333pt;}
.ls5d{letter-spacing:3.401467pt;}
.ls32{letter-spacing:3.403213pt;}
.ls53{letter-spacing:3.632533pt;}
.ls8d{letter-spacing:3.998400pt;}
.ls57{letter-spacing:4.050560pt;}
.ls4a{letter-spacing:4.083333pt;}
.ls69{letter-spacing:4.086933pt;}
.ls2{letter-spacing:4.152467pt;}
.ls71{letter-spacing:4.177140pt;}
.ls16{letter-spacing:4.464000pt;}
.ls85{letter-spacing:4.664800pt;}
.ls37{letter-spacing:4.741100pt;}
.ls8{letter-spacing:4.760000pt;}
.ls7e{letter-spacing:4.763453pt;}
.ls6e{letter-spacing:5.442267pt;}
.ls1{letter-spacing:5.532200pt;}
.ls7f{letter-spacing:7.436533pt;}
.ls6a{letter-spacing:8.649000pt;}
.ls20{letter-spacing:8.847333pt;}
.ls31{letter-spacing:9.525600pt;}
.ls3b{letter-spacing:12.930120pt;}
.ws0{word-spacing:0.000000pt;}
._2a{margin-left:-130.914933pt;}
._1f{margin-left:-58.413267pt;}
._15{margin-left:-53.187333pt;}
._11{margin-left:-48.726667pt;}
._2c{margin-left:-39.282680pt;}
._21{margin-left:-37.305233pt;}
._28{margin-left:-31.980000pt;}
._19{margin-left:-30.511000pt;}
._22{margin-left:-25.480000pt;}
._20{margin-left:-19.623467pt;}
._23{margin-left:-18.494667pt;}
._17{margin-left:-17.229533pt;}
._29{margin-left:-15.652433pt;}
._1d{margin-left:-13.345467pt;}
._4{margin-left:-11.874993pt;}
._2{margin-left:-10.811007pt;}
._1e{margin-left:-8.830667pt;}
._10{margin-left:-7.286000pt;}
._1b{margin-left:-6.351600pt;}
._3{margin-left:-5.306667pt;}
._6{margin-left:-4.168000pt;}
._9{margin-left:-2.866000pt;}
._7{margin-left:-1.730667pt;}
._8{width:1.037333pt;}
._5{width:2.704667pt;}
._1{width:4.086133pt;}
._f{width:5.082933pt;}
._c{width:6.551333pt;}
._a{width:7.447200pt;}
._e{width:9.196333pt;}
._d{width:10.903667pt;}
._0{width:11.873667pt;}
._1a{width:13.220667pt;}
._b{width:14.320000pt;}
._16{width:15.240767pt;}
._24{width:16.380433pt;}
._1c{width:17.869887pt;}
._25{width:19.173680pt;}
._13{width:20.303333pt;}
._26{width:22.403333pt;}
._27{width:24.456100pt;}
._14{width:26.234567pt;}
._30{width:28.849253pt;}
._12{width:30.232667pt;}
._2d{width:32.451067pt;}
._2e{width:33.385333pt;}
._2b{width:37.466907pt;}
._2f{width:41.081400pt;}
._18{width:47.634167pt;}
.fs15{font-size:14.000000pt;}
.fs19{font-size:15.333333pt;}
.fs1a{font-size:16.000000pt;}
.fs22{font-size:20.666667pt;}
.fs1d{font-size:22.000000pt;}
.fs17{font-size:22.666667pt;}
.fs16{font-size:24.000000pt;}
.fs26{font-size:27.333333pt;}
.fs34{font-size:30.000000pt;}
.fs14{font-size:30.666667pt;}
.fs27{font-size:31.333333pt;}
.fs9{font-size:32.000000pt;}
.fs21{font-size:33.333333pt;}
.fse{font-size:34.000000pt;}
.fs38{font-size:34.666667pt;}
.fs23{font-size:40.666667pt;}
.fs33{font-size:41.333333pt;}
.fs24{font-size:42.000000pt;}
.fsc{font-size:42.666667pt;}
.fsa{font-size:43.333333pt;}
.fsf{font-size:44.000000pt;}
.fsb{font-size:44.666667pt;}
.fs13{font-size:46.000000pt;}
.fs36{font-size:52.666667pt;}
.fs30{font-size:55.333333pt;}
.fs18{font-size:56.666667pt;}
.fs35{font-size:60.000000pt;}
.fs7{font-size:61.333333pt;}
.fs2f{font-size:62.000000pt;}
.fs31{font-size:62.666667pt;}
.fs8{font-size:63.333333pt;}
.fsd{font-size:64.000000pt;}
.fs32{font-size:64.666667pt;}
.fs20{font-size:65.333333pt;}
.fs10{font-size:66.000000pt;}
.fs6{font-size:66.666667pt;}
.fs37{font-size:67.131200pt;}
.fs1b{font-size:67.333333pt;}
.fs1e{font-size:68.000000pt;}
.fs2b{font-size:71.333333pt;}
.fs2c{font-size:73.333333pt;}
.fs2a{font-size:74.000000pt;}
.fs29{font-size:79.333333pt;}
.fs2e{font-size:82.000000pt;}
.fs25{font-size:83.333333pt;}
.fs5{font-size:84.000000pt;}
.fs4{font-size:88.000000pt;}
.fs1f{font-size:88.666667pt;}
.fs2d{font-size:89.333333pt;}
.fs3{font-size:90.000000pt;}
.fs1c{font-size:104.000000pt;}
.fs12{font-size:106.666667pt;}
.fs11{font-size:118.666667pt;}
.fs28{font-size:122.666667pt;}
.fs1{font-size:125.333333pt;}
.fs0{font-size:132.666667pt;}
.fs2{font-size:134.000000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:34.879333pt;}
.y86{bottom:57.922880pt;}
.y17f{bottom:58.239770pt;}
.yd4{bottom:58.879333pt;}
.y14e{bottom:59.519337pt;}
.yf6{bottom:64.002188pt;}
.y125{bottom:67.520347pt;}
.y63{bottom:67.838913pt;}
.y1d{bottom:72.954833pt;}
.y85{bottom:76.802580pt;}
.y17e{bottom:77.119470pt;}
.yd3{bottom:77.759720pt;}
.y14c{bottom:78.077567pt;}
.y14d{bottom:78.079067pt;}
.yf5{bottom:83.201883pt;}
.y62{bottom:86.398913pt;}
.y124{bottom:86.400047pt;}
.y155{bottom:90.877600pt;}
.y156{bottom:90.878920pt;}
.y1c{bottom:91.516333pt;}
.y84{bottom:95.362310pt;}
.y17d{bottom:95.679200pt;}
.y17c{bottom:95.679360pt;}
.yd2{bottom:96.319333pt;}
.yf4{bottom:101.761055pt;}
.y154{bottom:103.677600pt;}
.y14b{bottom:103.998730pt;}
.y122{bottom:105.278703pt;}
.y61{bottom:105.278913pt;}
.y123{bottom:105.279747pt;}
.y2f{bottom:107.840267pt;}
.y1b{bottom:110.394833pt;}
.y83{bottom:113.921877pt;}
.y17b{bottom:114.559060pt;}
.yd1{bottom:115.199733pt;}
.y153{bottom:116.798667pt;}
.yf3{bottom:120.320227pt;}
.y14a{bottom:122.558460pt;}
.y121{bottom:123.838433pt;}
.y60{bottom:123.838913pt;}
.y1a{bottom:128.956333pt;}
.y152{bottom:129.598667pt;}
.y82{bottom:132.801577pt;}
.y17a{bottom:133.118790pt;}
.yd0{bottom:133.759333pt;}
.yf2{bottom:138.881177pt;}
.y149{bottom:141.119660pt;}
.y5e{bottom:142.398087pt;}
.y151{bottom:142.398667pt;}
.y120{bottom:142.399633pt;}
.y5f{bottom:142.400413pt;}
.y19{bottom:147.516333pt;}
.y81{bottom:151.361307pt;}
.y179{bottom:151.678520pt;}
.ycf{bottom:152.320267pt;}
.y150{bottom:155.198667pt;}
.yf1{bottom:157.761095pt;}
.y148{bottom:159.999360pt;}
.y5d{bottom:160.958087pt;}
.y11f{bottom:161.279333pt;}
.y11e{bottom:161.280733pt;}
.y18{bottom:166.076333pt;}
.y80{bottom:169.600740pt;}
.y178{bottom:170.239720pt;}
.y177{bottom:170.241003pt;}
.yce{bottom:170.879867pt;}
.yf0{bottom:176.001945pt;}
.y147{bottom:178.238793pt;}
.y5c{bottom:179.518087pt;}
.y11d{bottom:179.520167pt;}
.y17{bottom:184.637833pt;}
.y7f{bottom:188.160470pt;}
.y176{bottom:188.800733pt;}
.ycd{bottom:189.439453pt;}
.yef{bottom:195.203095pt;}
.y146{bottom:196.798523pt;}
.y5b{bottom:198.079587pt;}
.y11c{bottom:198.399867pt;}
.y11b{bottom:198.400700pt;}
.y16{bottom:203.197833pt;}
.y175{bottom:207.040167pt;}
.y7e{bottom:207.040170pt;}
.ycc{bottom:208.319603pt;}
.yee{bottom:213.122228pt;}
.y145{bottom:215.359723pt;}
.y5a{bottom:216.639587pt;}
.y11a{bottom:216.640133pt;}
.y119{bottom:216.642097pt;}
.y15{bottom:221.757833pt;}
.y2e{bottom:223.040000pt;}
.y7d{bottom:225.279603pt;}
.y173{bottom:225.918550pt;}
.y174{bottom:225.919867pt;}
.ycb{bottom:226.879333pt;}
.yed{bottom:232.001662pt;}
.y144{bottom:233.919453pt;}
.y143{bottom:233.920167pt;}
.y59{bottom:235.519587pt;}
.y118{bottom:235.521797pt;}
.y2d{bottom:236.160553pt;}
.y14{bottom:240.317833pt;}
.y7c{bottom:243.839333pt;}
.y7b{bottom:243.841280pt;}
.y172{bottom:244.478280pt;}
.yca{bottom:245.440387pt;}
.y2c{bottom:249.279720pt;}
.yec{bottom:250.560833pt;}
.y142{bottom:252.799867pt;}
.y58{bottom:254.079587pt;}
.ya0{bottom:256.319867pt;}
.y13{bottom:259.197833pt;}
.y117{bottom:261.441163pt;}
.y7a{bottom:262.720980pt;}
.y171{bottom:263.038010pt;}
.y2a{bottom:263.199608pt;}
.y2b{bottom:263.200133pt;}
.yc9{bottom:264.000000pt;}
.y9e{bottom:269.119587pt;}
.yeb{bottom:269.120005pt;}
.y141{bottom:271.362267pt;}
.y57{bottom:272.639587pt;}
.y29{bottom:274.878917pt;}
.y9f{bottom:275.200133pt;}
.y12{bottom:277.757833pt;}
.y116{bottom:279.680597pt;}
.y9d{bottom:281.279320pt;}
.y170{bottom:281.597740pt;}
.y79{bottom:281.600353pt;}
.y9b{bottom:281.919453pt;}
.yc7{bottom:282.559587pt;}
.y28{bottom:287.680667pt;}
.y27{bottom:287.680853pt;}
.yea{bottom:288.319700pt;}
.yc8{bottom:288.640120pt;}
.y56{bottom:288.959453pt;}
.y140{bottom:289.921997pt;}
.y55{bottom:291.199200pt;}
.y9c{bottom:291.520000pt;}
.y196{bottom:294.721193pt;}
.y11{bottom:296.319333pt;}
.y115{bottom:298.560297pt;}
.y78{bottom:299.839787pt;}
.y16f{bottom:300.158613pt;}
.y9a{bottom:300.799867pt;}
.y26{bottom:300.800020pt;}
.y54{bottom:301.119200pt;}
.yc6{bottom:301.440000pt;}
.ye9{bottom:306.880650pt;}
.y13f{bottom:308.801697pt;}
.y53{bottom:309.120120pt;}
.y52{bottom:309.760253pt;}
.y195{bottom:313.600893pt;}
.y25{bottom:314.560520pt;}
.yc5{bottom:314.879867pt;}
.y10{bottom:315.199333pt;}
.y114{bottom:317.120027pt;}
.y77{bottom:318.719487pt;}
.y16e{bottom:319.038313pt;}
.yc4{bottom:323.200133pt;}
.y51{bottom:323.519453pt;}
.ye8{bottom:325.439822pt;}
.y24{bottom:326.720253pt;}
.y23{bottom:326.721058pt;}
.yc2{bottom:327.360387pt;}
.y13e{bottom:327.361427pt;}
.y50{bottom:328.638620pt;}
.ya1{bottom:329.600120pt;}
.y194{bottom:332.160623pt;}
.yf{bottom:333.759333pt;}
.y113{bottom:335.679757pt;}
.y76{bottom:337.280687pt;}
.y16d{bottom:337.599513pt;}
.yc3{bottom:338.239720pt;}
.y22{bottom:339.520642pt;}
.ye7{bottom:343.998993pt;}
.yc0{bottom:345.598920pt;}
.yc1{bottom:345.599040pt;}
.y13d{bottom:346.241127pt;}
.y4f{bottom:347.200120pt;}
.y193{bottom:350.721823pt;}
.ye{bottom:352.319333pt;}
.y21{bottom:352.641000pt;}
.y112{bottom:354.559457pt;}
.y99{bottom:354.559613pt;}
.y75{bottom:355.840417pt;}
.y16c{bottom:356.159243pt;}
.y98{bottom:360.000000pt;}
.y4e{bottom:360.319333pt;}
.ye6{bottom:362.879882pt;}
.ybf{bottom:364.159583pt;}
.y97{bottom:364.160120pt;}
.y4d{bottom:364.479453pt;}
.y20{bottom:365.440583pt;}
.y192{bottom:369.601523pt;}
.yd{bottom:370.879333pt;}
.y13c{bottom:371.840523pt;}
.y111{bottom:373.119187pt;}
.y16b{bottom:374.718973pt;}
.y74{bottom:374.720117pt;}
.y1f{bottom:378.240167pt;}
.y4c{bottom:379.839840pt;}
.ye5{bottom:381.439053pt;}
.ybe{bottom:383.040533pt;}
.y191{bottom:388.162723pt;}
.y110{bottom:389.440387pt;}
.y10f{bottom:389.440560pt;}
.yc{bottom:389.759333pt;}
.y13b{bottom:390.720060pt;}
.y1e{bottom:391.359333pt;}
.y73{bottom:393.279847pt;}
.y16a{bottom:393.598673pt;}
.ybd{bottom:398.399453pt;}
.y4b{bottom:398.720253pt;}
.ye4{bottom:400.000003pt;}
.ybc{bottom:401.600133pt;}
.y190{bottom:406.722453pt;}
.y96{bottom:407.040533pt;}
.yb{bottom:408.319333pt;}
.y13a{bottom:409.279790pt;}
.y10e{bottom:410.239590pt;}
.y169{bottom:412.158403pt;}
.y72{bottom:412.159547pt;}
.y4a{bottom:415.359333pt;}
.y95{bottom:416.960413pt;}
.ybb{bottom:418.239173pt;}
.ye3{bottom:418.879437pt;}
.yba{bottom:420.480507pt;}
.y18f{bottom:425.601663pt;}
.ya{bottom:426.880373pt;}
.y9{bottom:426.880820pt;}
.y139{bottom:427.840990pt;}
.y10d{bottom:428.799320pt;}
.yb9{bottom:429.120120pt;}
.y49{bottom:429.439453pt;}
.y71{bottom:430.719277pt;}
.y168{bottom:430.719603pt;}
.y48{bottom:432.640133pt;}
.y47{bottom:432.959467pt;}
.yb8{bottom:436.160120pt;}
.ye2{bottom:437.440387pt;}
.yb7{bottom:439.359333pt;}
.y94{bottom:440.639613pt;}
.y46{bottom:440.960413pt;}
.y92{bottom:442.559973pt;}
.y18e{bottom:444.161393pt;}
.y7{bottom:445.759140pt;}
.y8{bottom:445.759320pt;}
.y138{bottom:446.400720pt;}
.y93{bottom:448.000533pt;}
.y45{bottom:448.319867pt;}
.y70{bottom:449.279007pt;}
.y167{bottom:449.279333pt;}
.y166{bottom:449.280283pt;}
.y10c{bottom:450.559573pt;}
.y91{bottom:453.120120pt;}
.y44{bottom:453.439453pt;}
.y90{bottom:455.359867pt;}
.ye1{bottom:456.318937pt;}
.yb6{bottom:456.319333pt;}
.y43{bottom:456.640133pt;}
.yb5{bottom:457.920373pt;}
.y10b{bottom:461.759720pt;}
.y42{bottom:462.080520pt;}
.y18d{bottom:463.041093pt;}
.y6{bottom:464.320640pt;}
.y41{bottom:464.639613pt;}
.y137{bottom:465.280420pt;}
.y6f{bottom:468.158543pt;}
.y8e{bottom:468.159707pt;}
.y8f{bottom:474.559573pt;}
.ye0{bottom:474.879887pt;}
.y165{bottom:475.519947pt;}
.yb4{bottom:476.479987pt;}
.y40{bottom:479.040533pt;}
.y18c{bottom:481.600823pt;}
.y3f{bottom:483.199173pt;}
.y5{bottom:483.200640pt;}
.y135{bottom:484.159873pt;}
.y136{bottom:484.160120pt;}
.y10a{bottom:486.079067pt;}
.y6e{bottom:486.718273pt;}
.yb3{bottom:491.200120pt;}
.ydf{bottom:493.759320pt;}
.y164{bottom:493.759380pt;}
.y109{bottom:494.080120pt;}
.yb2{bottom:495.039587pt;}
.y108{bottom:497.600133pt;}
.y8d{bottom:500.159173pt;}
.y3e{bottom:500.479987pt;}
.y18b{bottom:500.480523pt;}
.y3d{bottom:502.078560pt;}
.y134{bottom:502.719603pt;}
.y6d{bottom:505.279473pt;}
.y106{bottom:507.519973pt;}
.yb1{bottom:509.759720pt;}
.y105{bottom:510.079067pt;}
.y163{bottom:512.319110pt;}
.y107{bottom:512.960373pt;}
.yb0{bottom:513.919840pt;}
.y4{bottom:516.159707pt;}
.y18a{bottom:519.040253pt;}
.y8c{bottom:519.360387pt;}
.y3c{bottom:520.318727pt;}
.y133{bottom:521.279333pt;}
.y132{bottom:521.279770pt;}
.y6c{bottom:524.159173pt;}
.yde{bottom:527.040962pt;}
.y104{bottom:527.680337pt;}
.y162{bottom:531.198810pt;}
.yae{bottom:531.839293pt;}
.yaf{bottom:531.839320pt;}
.y189{bottom:537.599983pt;}
.y3b{bottom:538.878727pt;}
.y131{bottom:540.159470pt;}
.ydd{bottom:545.600133pt;}
.y103{bottom:546.560037pt;}
.y161{bottom:549.758377pt;}
.yad{bottom:550.718993pt;}
.y188{bottom:556.161183pt;}
.y6b{bottom:557.120000pt;}
.y3a{bottom:557.758727pt;}
.y12f{bottom:558.718543pt;}
.y130{bottom:558.719200pt;}
.y102{bottom:565.119767pt;}
.y160{bottom:568.319577pt;}
.yac{bottom:569.278723pt;}
.y8b{bottom:572.479808pt;}
.y6a{bottom:575.679200pt;}
.y39{bottom:576.318727pt;}
.y12e{bottom:577.598243pt;}
.y187{bottom:582.400847pt;}
.y101{bottom:583.999467pt;}
.y8a{bottom:585.598975pt;}
.y15f{bottom:586.879307pt;}
.y15e{bottom:586.879673pt;}
.yab{bottom:588.158423pt;}
.ydc{bottom:593.279142pt;}
.y38{bottom:594.880227pt;}
.y12d{bottom:596.157973pt;}
.y89{bottom:598.400833pt;}
.y186{bottom:601.280547pt;}
.y100{bottom:602.560507pt;}
.y15d{bottom:605.439403pt;}
.yaa{bottom:606.718153pt;}
.y88{bottom:611.200417pt;}
.ydb{bottom:611.840092pt;}
.y37{bottom:613.440227pt;}
.y185{bottom:619.840277pt;}
.yff{bottom:621.120120pt;}
.yfe{bottom:621.120590pt;}
.y12c{bottom:622.397637pt;}
.y69{bottom:623.361560pt;}
.y87{bottom:624.000000pt;}
.y15c{bottom:624.318940pt;}
.ya9{bottom:625.279353pt;}
.y14f{bottom:627.199173pt;}
.yda{bottom:630.719525pt;}
.y35{bottom:632.319380pt;}
.y36{bottom:632.320227pt;}
.y184{bottom:638.719977pt;}
.yfd{bottom:640.000127pt;}
.y12b{bottom:640.958837pt;}
.y68{bottom:642.241260pt;}
.y15b{bottom:642.878670pt;}
.ya8{bottom:644.159053pt;}
.yd9{bottom:649.280475pt;}
.y34{bottom:650.879380pt;}
.y3{bottom:653.119587pt;}
.y183{bottom:657.279707pt;}
.yfc{bottom:658.559857pt;}
.y12a{bottom:659.838537pt;}
.y67{bottom:660.800990pt;}
.y15a{bottom:661.439870pt;}
.ya6{bottom:662.719900pt;}
.ya7{bottom:662.720253pt;}
.yd8{bottom:668.161363pt;}
.y33{bottom:669.759380pt;}
.y2{bottom:672.640093pt;}
.y182{bottom:676.159833pt;}
.yfb{bottom:677.119587pt;}
.yfa{bottom:677.120143pt;}
.y129{bottom:678.399737pt;}
.y66{bottom:679.680690pt;}
.y159{bottom:679.999600pt;}
.ya5{bottom:681.279630pt;}
.yd7{bottom:686.720535pt;}
.y32{bottom:687.999547pt;}
.y181{bottom:694.719563pt;}
.yf9{bottom:695.679873pt;}
.y128{bottom:696.959467pt;}
.y127{bottom:696.960140pt;}
.y65{bottom:698.560390pt;}
.y158{bottom:698.879300pt;}
.ya4{bottom:699.839360pt;}
.ya3{bottom:699.840153pt;}
.yd6{bottom:705.279707pt;}
.y31{bottom:706.559547pt;}
.y1{bottom:708.799880pt;}
.y180{bottom:713.279293pt;}
.yf8{bottom:714.559573pt;}
.y126{bottom:715.839840pt;}
.y157{bottom:717.118733pt;}
.y64{bottom:717.120120pt;}
.ya2{bottom:718.079587pt;}
.y30{bottom:725.119547pt;}
.yf7{bottom:731.519453pt;}
.h19{height:14.601562pt;}
.h42{height:15.041341pt;}
.h1e{height:15.812500pt;}
.h1d{height:15.992187pt;}
.h2b{height:20.828125pt;}
.h44{height:21.554687pt;}
.h2a{height:21.742187pt;}
.h21{height:22.171875pt;}
.h1b{height:22.401042pt;}
.h1a{height:25.031250pt;}
.h2f{height:26.812826pt;}
.h40{height:30.751953pt;}
.h43{height:31.289062pt;}
.h18{height:31.984375pt;}
.h30{height:32.679688pt;}
.hb{height:33.375000pt;}
.h4a{height:34.260417pt;}
.h29{height:34.765625pt;}
.h12{height:35.460938pt;}
.h2d{height:41.200195pt;}
.h2c{height:42.414062pt;}
.h23{height:42.825521pt;}
.h41{height:43.109375pt;}
.h31{height:43.804688pt;}
.he{height:44.500000pt;}
.h4b{height:44.500427pt;}
.hc{height:45.195312pt;}
.h13{height:45.890625pt;}
.hd{height:46.585938pt;}
.h17{height:47.976562pt;}
.h46{height:51.663737pt;}
.h3a{height:57.710938pt;}
.h1c{height:59.101562pt;}
.h45{height:62.578125pt;}
.h9{height:63.968750pt;}
.h39{height:64.664062pt;}
.h3f{height:64.775391pt;}
.h3c{height:65.226563pt;}
.h3b{height:65.359375pt;}
.ha{height:66.054688pt;}
.hf{height:66.750000pt;}
.h3d{height:67.445312pt;}
.h26{height:68.140625pt;}
.h27{height:68.141278pt;}
.h28{height:68.141932pt;}
.h4c{height:68.142585pt;}
.h14{height:68.835938pt;}
.h8{height:69.531250pt;}
.h35{height:69.974935pt;}
.h49{height:70.015744pt;}
.h1f{height:70.226562pt;}
.h22{height:70.921875pt;}
.h36{height:71.936849pt;}
.h34{height:77.179688pt;}
.h33{height:82.742188pt;}
.h2e{height:83.984375pt;}
.h38{height:85.523438pt;}
.h3e{height:86.978190pt;}
.h7{height:87.609375pt;}
.h6{height:91.781250pt;}
.h24{height:92.476562pt;}
.h37{height:93.171875pt;}
.h5{height:93.867188pt;}
.h20{height:102.070312pt;}
.h16{height:107.500000pt;}
.h15{height:123.765625pt;}
.h32{height:127.937500pt;}
.h3{height:130.718750pt;}
.h2{height:138.367188pt;}
.h4{height:139.757812pt;}
.h1{height:798.000000pt;}
.h25{height:798.078667pt;}
.h0{height:798.080000pt;}
.h11{height:801.333333pt;}
.h10{height:801.598667pt;}
.h47{height:803.198667pt;}
.h48{height:803.333333pt;}
.w4{width:1023.998667pt;}
.w5{width:1023.999989pt;}
.w0{width:1023.999995pt;}
.w1{width:1024.000000pt;}
.w2{width:1029.118667pt;}
.w3{width:1029.333333pt;}
.x0{left:0.000000pt;}
.x24{left:35.835040pt;}
.x23{left:37.440000pt;}
.x1{left:39.039595pt;}
.x92{left:40.961600pt;}
.x73{left:42.566157pt;}
.x4f{left:49.599595pt;}
.x27{left:53.119613pt;}
.x51{left:54.400486pt;}
.x9{left:55.359328pt;}
.x4e{left:56.958947pt;}
.x15{left:58.239200pt;}
.x2f{left:68.480000pt;}
.x82{left:70.400389pt;}
.x16{left:71.679200pt;}
.x90{left:74.879867pt;}
.x71{left:76.480363pt;}
.x91{left:95.358460pt;}
.x8f{left:96.959467pt;}
.x72{left:97.921783pt;}
.x6d{left:98.879867pt;}
.x59{left:106.558533pt;}
.x60{left:114.238813pt;}
.x30{left:115.519067pt;}
.x81{left:139.520523pt;}
.x6e{left:147.199200pt;}
.x31{left:152.639613pt;}
.x74{left:157.119200pt;}
.x5a{left:161.279333pt;}
.x75{left:170.239720pt;}
.x32{left:173.759720pt;}
.x33{left:196.158667pt;}
.x28{left:203.198667pt;}
.x5b{left:206.399453pt;}
.x5c{left:215.679200pt;}
.x29{left:219.839333pt;}
.x34{left:221.119587pt;}
.x7c{left:233.598680pt;}
.xa{left:239.040528pt;}
.x6f{left:242.559067pt;}
.x3{left:252.799848pt;}
.x76{left:254.078680pt;}
.x70{left:255.679733pt;}
.x77{left:271.359333pt;}
.x83{left:294.720643pt;}
.x4{left:299.519595pt;}
.x78{left:301.440000pt;}
.x5d{left:305.598680pt;}
.x79{left:315.518533pt;}
.x7f{left:319.678693pt;}
.x80{left:333.118667pt;}
.x47{left:358.080067pt;}
.x35{left:359.039067pt;}
.x18{left:359.998130pt;}
.x17{left:361.599613pt;}
.x3a{left:374.079947pt;}
.x3d{left:375.035733pt;}
.x1b{left:376.002267pt;}
.x49{left:377.279333pt;}
.x58{left:383.679200pt;}
.x4a{left:392.958947pt;}
.x62{left:394.556160pt;}
.x7a{left:398.718787pt;}
.x4b{left:401.279333pt;}
.x42{left:407.359867pt;}
.x19{left:412.158693pt;}
.x7b{left:413.119587pt;}
.x89{left:415.680536pt;}
.x63{left:416.957920pt;}
.x43{left:421.759320pt;}
.x4c{left:424.960000pt;}
.x1a{left:428.159173pt;}
.x36{left:435.518520pt;}
.x4d{left:442.558507pt;}
.x37{left:448.639200pt;}
.x7d{left:502.719720pt;}
.x84{left:509.121056pt;}
.x7e{left:516.159707pt;}
.x68{left:522.878907pt;}
.x25{left:530.879840pt;}
.x38{left:535.678707pt;}
.x48{left:538.879307pt;}
.x26{left:549.758787pt;}
.x39{left:559.999467pt;}
.x2{left:561.279701pt;}
.x69{left:568.639200pt;}
.x3e{left:576.000000pt;}
.x87{left:581.440389pt;}
.x8c{left:590.400923pt;}
.x8d{left:629.121056pt;}
.x50{left:634.879315pt;}
.x5e{left:635.838907pt;}
.x5f{left:649.599573pt;}
.xb{left:653.440395pt;}
.x85{left:666.561029pt;}
.x66{left:678.399867pt;}
.x67{left:692.799320pt;}
.x6a{left:696.000000pt;}
.x3b{left:697.599613pt;}
.x52{left:701.759680pt;}
.x8a{left:704.000896pt;}
.x5{left:707.200275pt;}
.x2d{left:708.799880pt;}
.xc{left:710.080075pt;}
.x53{left:717.758787pt;}
.x2a{left:721.278813pt;}
.x2e{left:722.239747pt;}
.xd{left:723.520021pt;}
.x13{left:724.479235pt;}
.x8e{left:725.761149pt;}
.x2b{left:734.399413pt;}
.x3f{left:754.239173pt;}
.x40{left:769.599613pt;}
.x21{left:777.279707pt;}
.x6{left:781.759275pt;}
.x6b{left:783.358893pt;}
.x1d{left:790.398920pt;}
.x88{left:792.960936pt;}
.x22{left:794.559080pt;}
.x6c{left:799.999427pt;}
.x41{left:804.479080pt;}
.x7{left:805.759275pt;}
.x86{left:813.760256pt;}
.x10{left:828.480475pt;}
.x1e{left:838.719720pt;}
.x11{left:843.199141pt;}
.x54{left:844.798747pt;}
.x3c{left:854.399413pt;}
.x8{left:855.360355pt;}
.x1f{left:856.319827pt;}
.x12{left:859.199701pt;}
.x55{left:868.158693pt;}
.x8b{left:888.960936pt;}
.x46{left:891.518467pt;}
.x56{left:921.919840pt;}
.x14{left:937.280275pt;}
.x44{left:938.879880pt;}
.xe{left:940.479408pt;}
.x64{left:941.759680pt;}
.x57{left:942.719160pt;}
.x2c{left:950.718747pt;}
.xf{left:953.919435pt;}
.x65{left:958.719720pt;}
.x45{left:963.199133pt;}
.x61{left:996.799800pt;}
.x20{left:1008.959467pt;}
.x1c{left:1009.918947pt;}
}




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