
    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_33fb6279a7cb7d4802247246.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8e84aa0d0154f46aca237a4c.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_13eb9b82e93c909c7e7a520f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b406f418dc6e019c1c185a0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cfa0be40fc875859be7658ca.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5859c93cd8ad4602ead981ea.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_12c9ebf4ba0223e18130a895.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b910a8f51e927dcf08400edf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e1d5878d2857196f91b6af64.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_4a95cf7b31679290e1889df7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7d9e21e1bd094857c7bde49e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ab0e6879679e03bf891bad66.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3134ac51b8de794780656f12.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d565e054eac46fa4bbf720e0.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ab45fd63be2e2ece6802eb78.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_5f9476af162393e2e3aea510.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_65d310dc2ac68a65a2463fac.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a19c1feebd7a8aadfb72cefd.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_e7123ce75be5e27156a4ee3b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7ad756eb1e7cd47ee913439b.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.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_f50f8d85a6defc154390e426.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_8038f0320eec7eedb352b354.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a200d5db85e848eecda48787.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_78f41048f84ccc51fab0e665.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_f00f51c0688cfd7c03d18440.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_90e0b9288c603d712193064d.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_cf028f6c0e3fe09955d75f63.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_0d4748d358ab666ef74766bf.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_0fcd18c588fa06d2608ba1e8.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_30e22cd279e748899e6c3cbc.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_7b0b090dc3cc0247181277a4.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_9e1842efb24c0cc430ff9563.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_ca926c64677afad0b8566f8f.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_c0805d2f9afd9a9c438e5a0c.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_2ad5136e1b789eb2c1a17e58.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_fa3f8b1daf272cf6551b7e27.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_c7f1622325119c75276d32d7.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_c1d2a2671261eb395c6072f0.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_2a9433cedd609a7f7151a3f1.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_da14bbe1953765a590320626.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_21c2a7efb72f5af5c7c0e6b8.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_af0196f9a2edea57a46cc3d2.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_892599f0bb41c914b9469174.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_5a31042e8ea276e29871e4ec.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_934429d600c57389779afecc.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_59e0cc846c0fd6bb31f30559.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_995766e27e93d0ba6243e4f1.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_28bca93c6cc2d729c64e5ca7.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_af146738b89579ae230c38a8.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_18e56954c216e982d1e23b26.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_df2d559d114569dbb8e4b6e5.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_8683e00394c074013144d154.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_f6de6ac6041c0c1a1916e37b.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_ff40df4bd64cf77e9bf3b652.woff2')format("woff");}.ff39{font-family:ff39;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;}
.m74{transform:matrix(0.011667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011667,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.042683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042683,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.120283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120283,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m3d{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m61{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);}
.m6a{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.m6f{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.m47{transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);}
.m7a{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.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.260264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260264,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.278523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278523,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.291176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291176,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.533333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533333,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.842391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842391,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.466250px;}
.v6{vertical-align:2.862000px;}
.v4{vertical-align:5.744250px;}
.v3{vertical-align:7.191900px;}
.v2{vertical-align:8.626500px;}
.v1{vertical-align:10.091250px;}
.lsc4{letter-spacing:-15.589950px;}
.ls6d{letter-spacing:-12.609750px;}
.lse{letter-spacing:-10.102200px;}
.ls96{letter-spacing:-9.979200px;}
.lsed{letter-spacing:-9.439200px;}
.lsf{letter-spacing:-8.750025px;}
.ls66{letter-spacing:-8.310000px;}
.ls8c{letter-spacing:-7.842450px;}
.ls65{letter-spacing:-7.707375px;}
.ls6c{letter-spacing:-6.492300px;}
.ls5a{letter-spacing:-6.462750px;}
.ls34{letter-spacing:-6.304875px;}
.ls92{letter-spacing:-6.294825px;}
.lsde{letter-spacing:-6.111600px;}
.ls12{letter-spacing:-6.056850px;}
.lsab{letter-spacing:-5.779800px;}
.lse1{letter-spacing:-5.756325px;}
.ls5c{letter-spacing:-5.654250px;}
.ls33{letter-spacing:-5.603625px;}
.lsaa{letter-spacing:-5.054400px;}
.ls99{letter-spacing:-4.989600px;}
.ls1e{letter-spacing:-4.902375px;}
.ls5e{letter-spacing:-4.845750px;}
.ls10{letter-spacing:-4.715850px;}
.lsa9{letter-spacing:-4.334850px;}
.ls8a{letter-spacing:-4.279275px;}
.ls30{letter-spacing:-4.201125px;}
.ls17{letter-spacing:-4.196925px;}
.ls13{letter-spacing:-4.034175px;}
.lsb9{letter-spacing:-3.903900px;}
.ls54{letter-spacing:-3.794400px;}
.lsc3{letter-spacing:-3.748800px;}
.ls9a{letter-spacing:-3.643200px;}
.ls4c{letter-spacing:-3.609450px;}
.ls97{letter-spacing:-3.563175px;}
.ls2f{letter-spacing:-3.499875px;}
.ls11{letter-spacing:-3.363675px;}
.ls72{letter-spacing:-3.228750px;}
.ls23{letter-spacing:-3.134250px;}
.ls91{letter-spacing:-3.045600px;}
.lsae{letter-spacing:-3.044100px;}
.lsc7{letter-spacing:-2.997975px;}
.ls4e{letter-spacing:-2.889900px;}
.ls8b{letter-spacing:-2.852850px;}
.ls32{letter-spacing:-2.805000px;}
.lsd0{letter-spacing:-2.724750px;}
.lsa{letter-spacing:-2.693175px;}
.ls3e{letter-spacing:-2.425500px;}
.ls2e{letter-spacing:-2.328450px;}
.ls9e{letter-spacing:-2.316600px;}
.ls16{letter-spacing:-2.283075px;}
.ls5f{letter-spacing:-2.252475px;}
.lsaf{letter-spacing:-2.187000px;}
.ls55{letter-spacing:-2.164500px;}
.ls89{letter-spacing:-2.136750px;}
.ls1d{letter-spacing:-2.103750px;}
.ls21{letter-spacing:-2.095875px;}
.lsd{letter-spacing:-2.022675px;}
.lsbe{letter-spacing:-1.693350px;}
.lse0{letter-spacing:-1.643250px;}
.lsdd{letter-spacing:-1.640100px;}
.ls38{letter-spacing:-1.617000px;}
.ls8d{letter-spacing:-1.590750px;}
.ls64{letter-spacing:-1.579500px;}
.ls3a{letter-spacing:-1.565550px;}
.lsdc{letter-spacing:-1.543950px;}
.ls71{letter-spacing:-1.522800px;}
.ls2d{letter-spacing:-1.521900px;}
.ls4d{letter-spacing:-1.501650px;}
.lsba{letter-spacing:-1.481850px;}
.lse6{letter-spacing:-1.480500px;}
.ls74{letter-spacing:-1.479375px;}
.ls53{letter-spacing:-1.444950px;}
.ls90{letter-spacing:-1.426425px;}
.ls79{letter-spacing:-1.420200px;}
.ls1b{letter-spacing:-1.402500px;}
.lsc1{letter-spacing:-1.401750px;}
.ls19{letter-spacing:-1.397250px;}
.ls7d{letter-spacing:-1.365000px;}
.lsc{letter-spacing:-1.352175px;}
.lsc0{letter-spacing:-0.846675px;}
.lsd1{letter-spacing:-0.834750px;}
.lsb2{letter-spacing:-0.832275px;}
.ls7b{letter-spacing:-0.822825px;}
.ls4f{letter-spacing:-0.820050px;}
.lse3{letter-spacing:-0.819000px;}
.ls37{letter-spacing:-0.808500px;}
.lsea{letter-spacing:-0.792300px;}
.lsa6{letter-spacing:-0.791175px;}
.lsbd{letter-spacing:-0.783000px;}
.ls39{letter-spacing:-0.782775px;}
.ls22{letter-spacing:-0.782250px;}
.lsdb{letter-spacing:-0.771975px;}
.lsef{letter-spacing:-0.763800px;}
.ls6f{letter-spacing:-0.761400px;}
.ls5b{letter-spacing:-0.750825px;}
.lsdf{letter-spacing:-0.740250px;}
.ls9c{letter-spacing:-0.729675px;}
.lsac{letter-spacing:-0.729000px;}
.ls95{letter-spacing:-0.727575px;}
.ls52{letter-spacing:-0.719550px;}
.lsd2{letter-spacing:-0.719325px;}
.ls98{letter-spacing:-0.710325px;}
.lsc6{letter-spacing:-0.708975px;}
.ls1c{letter-spacing:-0.701250px;}
.ls18{letter-spacing:-0.698625px;}
.lsb{letter-spacing:0.000000px;}
.lsa8{letter-spacing:0.411825px;}
.ls0{letter-spacing:0.698625px;}
.ls5{letter-spacing:0.701250px;}
.ls82{letter-spacing:0.710325px;}
.ls20{letter-spacing:0.715200px;}
.ls42{letter-spacing:0.719550px;}
.lsa5{letter-spacing:0.729000px;}
.ls85{letter-spacing:0.729675px;}
.ls70{letter-spacing:0.732600px;}
.lsd7{letter-spacing:0.740250px;}
.ls46{letter-spacing:0.750825px;}
.lsee{letter-spacing:0.752400px;}
.ls68{letter-spacing:0.761400px;}
.lsd4{letter-spacing:0.771975px;}
.ls24{letter-spacing:0.782775px;}
.ls31{letter-spacing:0.787500px;}
.ls1f{letter-spacing:0.796050px;}
.lsa0{letter-spacing:0.803700px;}
.ls2a{letter-spacing:0.808500px;}
.ls57{letter-spacing:0.809625px;}
.lsda{letter-spacing:0.819000px;}
.ls7c{letter-spacing:0.822825px;}
.lscb{letter-spacing:0.834750px;}
.lsc2{letter-spacing:0.846675px;}
.lsad{letter-spacing:0.861000px;}
.ls3c{letter-spacing:0.870525px;}
.lse2{letter-spacing:1.249500px;}
.ls9f{letter-spacing:1.313550px;}
.ls1{letter-spacing:1.397250px;}
.ls4{letter-spacing:1.402500px;}
.ls76{letter-spacing:1.417500px;}
.lse4{letter-spacing:1.420800px;}
.ls75{letter-spacing:1.421775px;}
.ls80{letter-spacing:1.426425px;}
.ls7e{letter-spacing:1.441800px;}
.ls41{letter-spacing:1.444950px;}
.lsa3{letter-spacing:1.458000px;}
.ls87{letter-spacing:1.459350px;}
.lsd6{letter-spacing:1.480500px;}
.ls94{letter-spacing:1.485000px;}
.ls48{letter-spacing:1.501650px;}
.ls6a{letter-spacing:1.522800px;}
.ls9{letter-spacing:1.564500px;}
.ls28{letter-spacing:1.565550px;}
.ls14{letter-spacing:1.578000px;}
.ls3d{letter-spacing:1.617000px;}
.lse7{letter-spacing:1.643250px;}
.lsc9{letter-spacing:1.669500px;}
.lsb6{letter-spacing:1.693350px;}
.lsb0{letter-spacing:1.748250px;}
.lsc5{letter-spacing:1.842750px;}
.ls8{letter-spacing:2.095875px;}
.ls7{letter-spacing:2.103750px;}
.ls6e{letter-spacing:2.107575px;}
.ls81{letter-spacing:2.136750px;}
.ls43{letter-spacing:2.164500px;}
.lsb1{letter-spacing:2.187000px;}
.ls84{letter-spacing:2.189025px;}
.lsec{letter-spacing:2.197800px;}
.lsd5{letter-spacing:2.220750px;}
.ls78{letter-spacing:2.247750px;}
.ls47{letter-spacing:2.252475px;}
.lsd3{letter-spacing:2.282175px;}
.ls60{letter-spacing:2.284200px;}
.ls2b{letter-spacing:2.348325px;}
.ls29{letter-spacing:2.425500px;}
.lscf{letter-spacing:2.499000px;}
.lsb7{letter-spacing:2.534700px;}
.ls56{letter-spacing:2.597400px;}
.ls58{letter-spacing:2.688300px;}
.ls2{letter-spacing:2.794500px;}
.ls6{letter-spacing:2.805000px;}
.ls9d{letter-spacing:2.812500px;}
.ls7f{letter-spacing:2.852850px;}
.ls44{letter-spacing:2.889900px;}
.ls88{letter-spacing:2.913525px;}
.ls50{letter-spacing:2.936250px;}
.lsd8{letter-spacing:2.955750px;}
.ls15{letter-spacing:2.956500px;}
.ls49{letter-spacing:2.997975px;}
.ls7a{letter-spacing:2.999700px;}
.ls69{letter-spacing:3.040200px;}
.lse5{letter-spacing:3.042900px;}
.lsbb{letter-spacing:3.064425px;}
.ls3b{letter-spacing:3.131100px;}
.ls2c{letter-spacing:3.228750px;}
.ls3f{letter-spacing:3.238500px;}
.ls67{letter-spacing:3.268575px;}
.lscd{letter-spacing:3.333750px;}
.lsbc{letter-spacing:3.348000px;}
.lsa4{letter-spacing:3.444000px;}
.lsb3{letter-spacing:3.484800px;}
.ls26{letter-spacing:3.499875px;}
.ls83{letter-spacing:3.563175px;}
.lsa1{letter-spacing:3.609450px;}
.ls86{letter-spacing:3.643200px;}
.ls35{letter-spacing:3.669600px;}
.lse8{letter-spacing:3.695550px;}
.lsd9{letter-spacing:3.696000px;}
.ls4b{letter-spacing:3.748800px;}
.ls51{letter-spacing:3.792900px;}
.ls6b{letter-spacing:3.801600px;}
.ls36{letter-spacing:3.851700px;}
.ls27{letter-spacing:3.913875px;}
.ls93{letter-spacing:3.991350px;}
.ls8f{letter-spacing:3.997350px;}
.ls5d{letter-spacing:4.037250px;}
.ls8e{letter-spacing:4.057200px;}
.ls77{letter-spacing:4.108950px;}
.ls3{letter-spacing:4.196925px;}
.ls25{letter-spacing:4.201125px;}
.lsb4{letter-spacing:4.228050px;}
.lsa2{letter-spacing:4.334850px;}
.ls1a{letter-spacing:4.342800px;}
.ls9b{letter-spacing:4.372875px;}
.ls62{letter-spacing:4.499625px;}
.lseb{letter-spacing:4.657500px;}
.lsc8{letter-spacing:4.902375px;}
.lsca{letter-spacing:4.998000px;}
.lsb8{letter-spacing:5.069400px;}
.lsa7{letter-spacing:5.089050px;}
.lse9{letter-spacing:5.250450px;}
.lsb5{letter-spacing:5.916075px;}
.lsbf{letter-spacing:6.762750px;}
.ls59{letter-spacing:7.392000px;}
.ls4a{letter-spacing:8.074500px;}
.lsce{letter-spacing:8.331750px;}
.ls45{letter-spacing:8.883000px;}
.lscc{letter-spacing:9.750075px;}
.ls61{letter-spacing:9.804750px;}
.ls73{letter-spacing:10.506000px;}
.ls63{letter-spacing:11.251725px;}
.ls40{letter-spacing:15.888600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._27{margin-left:-87.553125px;}
._26{margin-left:-57.197241px;}
._2a{margin-left:-51.102420px;}
._32{margin-left:-49.344363px;}
._2f{margin-left:-40.874709px;}
._34{margin-left:-39.032560px;}
._1f{margin-left:-34.310467px;}
._22{margin-left:-32.662970px;}
._30{margin-left:-31.490693px;}
._2e{margin-left:-27.624917px;}
._1e{margin-left:-23.852672px;}
._21{margin-left:-22.184097px;}
._16{margin-left:-20.123584px;}
._1c{margin-left:-15.898562px;}
._15{margin-left:-14.122275px;}
._23{margin-left:-12.899637px;}
._13{margin-left:-10.686375px;}
._14{margin-left:-8.592416px;}
._f{margin-left:-7.494075px;}
._12{margin-left:-6.204234px;}
._17{margin-left:-5.064300px;}
._d{margin-left:-3.350700px;}
._e{margin-left:-1.681875px;}
._10{width:1.086750px;}
._9{width:2.154600px;}
._8{width:3.184875px;}
._a{width:4.370625px;}
._c{width:6.326700px;}
._5{width:7.565475px;}
._b{width:8.711100px;}
._1{width:9.722250px;}
._2{width:11.387325px;}
._6{width:12.974175px;}
._0{width:14.393400px;}
._19{width:15.551177px;}
._4{width:17.243025px;}
._7{width:19.221000px;}
._18{width:20.425650px;}
._28{width:21.457051px;}
._3{width:22.636645px;}
._11{width:24.426000px;}
._1d{width:25.448850px;}
._2b{width:26.518650px;}
._31{width:27.535950px;}
._1a{width:28.732952px;}
._2d{width:33.534000px;}
._25{width:35.011875px;}
._29{width:36.989772px;}
._1b{width:38.233500px;}
._20{width:39.434550px;}
._33{width:41.055000px;}
._24{width:43.957875px;}
._2c{width:47.302500px;}
.fc0{color:transparent;}
.fs25{font-size:12.750000px;}
.fs2b{font-size:33.000000px;}
.fsd{font-size:33.750000px;}
.fs21{font-size:41.250000px;}
.fs1a{font-size:44.250000px;}
.fs23{font-size:45.000000px;}
.fs22{font-size:46.500000px;}
.fs24{font-size:47.250000px;}
.fs8{font-size:48.000000px;}
.fs1c{font-size:49.500000px;}
.fs1b{font-size:50.250000px;}
.fs12{font-size:51.000000px;}
.fs3{font-size:51.750000px;}
.fs9{font-size:52.500000px;}
.fsb{font-size:53.250000px;}
.fs19{font-size:54.000000px;}
.fs2{font-size:54.750000px;}
.fs11{font-size:55.500000px;}
.fs4{font-size:56.250000px;}
.fsa{font-size:57.000000px;}
.fs18{font-size:57.750000px;}
.fs13{font-size:58.500000px;}
.fs1{font-size:60.000000px;}
.fs1d{font-size:60.750000px;}
.fs1f{font-size:61.500000px;}
.fs2a{font-size:62.250000px;}
.fsf{font-size:63.000000px;}
.fs6{font-size:63.750000px;}
.fse{font-size:64.500000px;}
.fs10{font-size:65.091600px;}
.fs7{font-size:65.250000px;}
.fs5{font-size:66.000000px;}
.fs20{font-size:66.750000px;}
.fs15{font-size:67.500000px;}
.fs28{font-size:68.250000px;}
.fsc{font-size:69.000000px;}
.fs16{font-size:70.500000px;}
.fs17{font-size:72.000000px;}
.fs1e{font-size:75.750000px;}
.fs29{font-size:79.500000px;}
.fs26{font-size:86.250000px;}
.fs27{font-size:92.250000px;}
.fs0{font-size:111.750000px;}
.fs14{font-size:112.500000px;}
.y0{bottom:0.000000px;}
.y1f0{bottom:64.216013px;}
.y1d5{bottom:66.742575px;}
.y14e{bottom:67.452900px;}
.y52{bottom:67.455000px;}
.y84{bottom:67.815300px;}
.y85{bottom:67.815900px;}
.yfe{bottom:68.175150px;}
.y14f{bottom:68.176800px;}
.y1ad{bottom:68.536050px;}
.y125{bottom:70.696500px;}
.yd8{bottom:70.697550px;}
.y22{bottom:71.054700px;}
.y181{bottom:72.136350px;}
.y1ee{bottom:79.336650px;}
.y1ef{bottom:81.136200px;}
.yb0{bottom:81.497175px;}
.yfc{bottom:81.856350px;}
.y82{bottom:82.576500px;}
.y50{bottom:84.014888px;}
.y51{bottom:84.015150px;}
.y83{bottom:84.376050px;}
.yfd{bottom:84.735450px;}
.y1d4{bottom:84.736950px;}
.yd6{bottom:85.096350px;}
.y123{bottom:85.460287px;}
.y14c{bottom:86.171400px;}
.y14d{bottom:86.177400px;}
.y124{bottom:86.895900px;}
.yd7{bottom:86.897550px;}
.y21{bottom:87.976950px;}
.y180{bottom:88.696050px;}
.y1ed{bottom:97.335600px;}
.y81{bottom:98.775900px;}
.y4e{bottom:100.214100px;}
.yaf{bottom:100.214550px;}
.y4f{bottom:100.216200px;}
.yfb{bottom:100.936350px;}
.y1d3{bottom:101.297250px;}
.y1d2{bottom:101.300400px;}
.y1ac{bottom:101.656500px;}
.y14b{bottom:102.735900px;}
.y14a{bottom:102.736950px;}
.yd5{bottom:103.816350px;}
.y122{bottom:103.818600px;}
.y20{bottom:104.899912px;}
.y17f{bottom:105.256800px;}
.y1eb{bottom:112.455600px;}
.y1ec{bottom:114.256800px;}
.y4d{bottom:114.258187px;}
.yf9{bottom:114.975300px;}
.y1d1{bottom:115.340550px;}
.y1aa{bottom:115.698487px;}
.y7f{bottom:115.698675px;}
.yad{bottom:117.135150px;}
.yae{bottom:117.135750px;}
.y148{bottom:117.146400px;}
.y80{bottom:117.496650px;}
.yfa{bottom:117.855900px;}
.y1ab{bottom:118.216800px;}
.y149{bottom:118.936950px;}
.y1f{bottom:118.937100px;}
.yd4{bottom:120.016350px;}
.yd3{bottom:120.021000px;}
.y17e{bottom:121.815300px;}
.y1cf{bottom:132.256500px;}
.y1e{bottom:132.976237px;}
.y4c{bottom:133.335000px;}
.yac{bottom:133.695900px;}
.y1d0{bottom:134.056800px;}
.y7e{bottom:134.416050px;}
.y1a8{bottom:134.774850px;}
.y1a9{bottom:134.775300px;}
.yd2{bottom:136.217250px;}
.y147{bottom:136.221900px;}
.y121{bottom:136.576500px;}
.y120{bottom:136.578150px;}
.y17d{bottom:138.375787px;}
.y4a{bottom:147.378787px;}
.y7c{bottom:149.176800px;}
.y4b{bottom:149.895300px;}
.y145{bottom:150.256200px;}
.y1ce{bottom:150.972750px;}
.y7d{bottom:150.976350px;}
.y1a6{bottom:151.332150px;}
.y1a7{bottom:151.335600px;}
.y146{bottom:152.057400px;}
.y1d{bottom:152.059050px;}
.y11f{bottom:152.775900px;}
.yd1{bottom:153.136800px;}
.y17c{bottom:154.577100px;}
.yf8{bottom:163.935750px;}
.y1cd{bottom:165.380550px;}
.y1b{bottom:166.096350px;}
.y48{bottom:166.452000px;}
.yab{bottom:166.455000px;}
.y49{bottom:166.455600px;}
.y7b{bottom:167.536500px;}
.y1a4{bottom:167.895300px;}
.y1a5{bottom:167.895900px;}
.y1c{bottom:168.256800px;}
.yd0{bottom:169.336200px;}
.y17a{bottom:169.339425px;}
.y17b{bottom:171.137400px;}
.y46{bottom:180.499050px;}
.y1cc{bottom:182.297250px;}
.yaa{bottom:183.013837px;}
.y47{bottom:183.015750px;}
.yf7{bottom:183.372150px;}
.y79{bottom:184.094700px;}
.y7a{bottom:184.096800px;}
.y1a3{bottom:184.456050px;}
.y1a{bottom:184.816950px;}
.ycf{bottom:185.537100px;}
.y11e{bottom:185.898000px;}
.y178{bottom:188.054438px;}
.y179{bottom:188.056800px;}
.y44{bottom:197.415600px;}
.y1a1{bottom:198.857662px;}
.ya9{bottom:199.215150px;}
.y144{bottom:199.935262px;}
.y45{bottom:199.935300px;}
.y78{bottom:200.655450px;}
.y1a2{bottom:201.016350px;}
.y11d{bottom:202.095750px;}
.y11c{bottom:202.096200px;}
.yf6{bottom:202.821675px;}
.y177{bottom:204.255750px;}
.ya7{bottom:216.133050px;}
.ya8{bottom:216.134550px;}
.y77{bottom:217.215600px;}
.y1a0{bottom:217.216612px;}
.y11b{bottom:219.018450px;}
.y143{bottom:219.733987px;}
.y175{bottom:220.815900px;}
.y176{bottom:220.816500px;}
.yf5{bottom:222.611400px;}
.y19{bottom:228.013350px;}
.y75{bottom:231.615450px;}
.ya6{bottom:232.693800px;}
.y76{bottom:233.775900px;}
.y19f{bottom:234.136800px;}
.y11a{bottom:235.216200px;}
.y174{bottom:237.376650px;}
.yf4{bottom:242.052300px;}
.ya5{bottom:246.738487px;}
.y18{bottom:247.457100px;}
.y17{bottom:247.458375px;}
.y19d{bottom:248.536500px;}
.y74{bottom:249.976950px;}
.y19e{bottom:250.695450px;}
.y43{bottom:252.135750px;}
.y42{bottom:252.136875px;}
.yce{bottom:253.578825px;}
.y172{bottom:253.936350px;}
.y173{bottom:253.936950px;}
.y1ca{bottom:260.765550px;}
.y1cb{bottom:260.777550px;}
.yf2{bottom:261.491550px;}
.yf3{bottom:261.496050px;}
.ya3{bottom:263.658225px;}
.y72{bottom:264.735900px;}
.ya4{bottom:265.815300px;}
.y73{bottom:266.535450px;}
.y16{bottom:266.902125px;}
.y171{bottom:270.496650px;}
.y41{bottom:271.931250px;}
.ycd{bottom:273.373200px;}
.y1c9{bottom:280.209300px;}
.y142{bottom:280.222425px;}
.yf1{bottom:280.940925px;}
.ya2{bottom:282.375600px;}
.y15{bottom:286.697625px;}
.y170{bottom:287.057400px;}
.y19c{bottom:290.292750px;}
.y40{bottom:291.380775px;}
.ycc{bottom:292.814738px;}
.ya0{bottom:298.935113px;}
.ya1{bottom:298.935750px;}
.y1c8{bottom:299.653050px;}
.y141{bottom:300.012300px;}
.yf0{bottom:300.735300px;}
.y16f{bottom:303.617550px;}
.y14{bottom:306.141375px;}
.y19b{bottom:309.736500px;}
.y3f{bottom:311.175150px;}
.y9e{bottom:313.335600px;}
.y9f{bottom:315.855300px;}
.y119{bottom:316.213238px;}
.y1c7{bottom:319.096800px;}
.y140{bottom:319.461825px;}
.y16e{bottom:320.175150px;}
.ycb{bottom:322.694175px;}
.y13{bottom:325.935750px;}
.y19a{bottom:329.536500px;}
.yef{bottom:330.611400px;}
.y3e{bottom:330.622950px;}
.y118{bottom:334.213688px;}
.y16d{bottom:336.735900px;}
.y1c5{bottom:338.892450px;}
.y1c6{bottom:338.896950px;}
.y13f{bottom:339.260888px;}
.y71{bottom:339.619012px;}
.yca{bottom:342.137925px;}
.y199{bottom:348.975750px;}
.y3d{bottom:349.700137px;}
.yee{bottom:350.066700px;}
.y117{bottom:352.217250px;}
.y16b{bottom:353.296200px;}
.y16c{bottom:353.296650px;}
.y1c3{bottom:358.333200px;}
.y1c4{bottom:358.336200px;}
.y13e{bottom:358.704638px;}
.yc9{bottom:361.932300px;}
.y169{bottom:368.059125px;}
.y70{bottom:369.501825px;}
.y16a{bottom:369.856950px;}
.y3c{bottom:369.861075px;}
.y116{bottom:370.211550px;}
.y1c2{bottom:377.775375px;}
.y13d{bottom:378.499012px;}
.y198{bottom:379.572000px;}
.y9d{bottom:379.931250px;}
.yc8{bottom:381.373200px;}
.y167{bottom:384.617550px;}
.y168{bottom:386.776500px;}
.y115{bottom:388.576050px;}
.y6f{bottom:389.296200px;}
.y6e{bottom:389.301825px;}
.y3a{bottom:389.652450px;}
.y3b{bottom:389.655450px;}
.y12{bottom:394.696800px;}
.y1c1{bottom:397.219125px;}
.y197{bottom:399.028425px;}
.y9c{bottom:399.408412px;}
.yc7{bottom:400.829738px;}
.y13c{bottom:408.381825px;}
.y39{bottom:409.096200px;}
.y6d{bottom:409.101975px;}
.yed{bottom:409.459688px;}
.y10{bottom:411.253500px;}
.y11{bottom:411.256800px;}
.y1c0{bottom:416.662875px;}
.y196{bottom:418.822800px;}
.y9b{bottom:419.202788px;}
.yc6{bottom:420.273487px;}
.y114{bottom:426.376650px;}
.yf{bottom:427.813500px;}
.y37{bottom:428.175413px;}
.y13b{bottom:428.181975px;}
.y38{bottom:428.896350px;}
.yec{bottom:429.620625px;}
.y1bf{bottom:436.462875px;}
.y195{bottom:438.617175px;}
.y9a{bottom:438.997163px;}
.yc5{bottom:440.067862px;}
.y166{bottom:442.222425px;}
.ye{bottom:444.373500px;}
.y1ea{bottom:446.175150px;}
.y113{bottom:446.176800px;}
.y112{bottom:446.182575px;}
.y13a{bottom:447.976350px;}
.y6c{bottom:448.341375px;}
.yeb{bottom:449.419800px;}
.y1be{bottom:456.261825px;}
.y194{bottom:458.060925px;}
.y99{bottom:458.440913px;}
.yc4{bottom:459.862238px;}
.yd{bottom:460.933500px;}
.y165{bottom:462.018075px;}
.y1e9{bottom:465.980925px;}
.y111{bottom:465.983850px;}
.y139{bottom:467.776500px;}
.y6b{bottom:468.141375px;}
.yea{bottom:468.863550px;}
.y1bd{bottom:476.422762px;}
.yc{bottom:477.855750px;}
.y193{bottom:477.861075px;}
.y98{bottom:478.235288px;}
.y36{bottom:478.936350px;}
.y35{bottom:478.946213px;}
.y164{bottom:481.461825px;}
.y110{bottom:485.778225px;}
.y1e8{bottom:485.792475px;}
.y138{bottom:487.576500px;}
.y69{bottom:487.932900px;}
.y6a{bottom:487.935750px;}
.ye9{bottom:488.657925px;}
.yb{bottom:494.415750px;}
.y1bc{bottom:496.217137px;}
.y192{bottom:497.658225px;}
.y97{bottom:498.029663px;}
.y34{bottom:498.740588px;}
.yc3{bottom:499.817550px;}
.y163{bottom:501.256200px;}
.y10f{bottom:505.221975px;}
.y1e7{bottom:505.586850px;}
.y68{bottom:507.375113px;}
.ye8{bottom:508.643550px;}
.ya{bottom:510.975750px;}
.y1bb{bottom:516.011512px;}
.y191{bottom:517.101975px;}
.y96{bottom:517.473412px;}
.y33{bottom:518.901525px;}
.yc2{bottom:519.617550px;}
.y162{bottom:521.053350px;}
.y10e{bottom:525.016350px;}
.y137{bottom:525.377250px;}
.y1e6{bottom:525.381225px;}
.y67{bottom:527.176800px;}
.y9{bottom:527.536050px;}
.y8{bottom:527.536200px;}
.ye7{bottom:527.896050px;}
.y190{bottom:536.896350px;}
.y95{bottom:537.267787px;}
.y32{bottom:538.695900px;}
.yc1{bottom:539.776950px;}
.y161{bottom:540.497100px;}
.y136{bottom:543.739650px;}
.y7{bottom:544.096200px;}
.y1e5{bottom:545.187150px;}
.y1ba{bottom:546.611512px;}
.y31{bottom:558.496050px;}
.ye6{bottom:558.525900px;}
.y135{bottom:562.094025px;}
.y1e4{bottom:564.981525px;}
.y1b9{bottom:566.055262px;}
.y18f{bottom:567.134662px;}
.y94{bottom:567.501225px;}
.y160{bottom:570.736950px;}
.y15f{bottom:570.742725px;}
.y10c{bottom:572.531850px;}
.y10d{bottom:572.536500px;}
.y6{bottom:577.936950px;}
.y30{bottom:578.311050px;}
.ye5{bottom:578.320275px;}
.yc0{bottom:579.377250px;}
.ybf{bottom:579.383025px;}
.y134{bottom:580.102875px;}
.y66{bottom:584.416650px;}
.y65{bottom:584.427450px;}
.y1e3{bottom:584.773050px;}
.y1b8{bottom:586.216200px;}
.y1b7{bottom:586.223362px;}
.y93{bottom:587.295600px;}
.y15e{bottom:590.542875px;}
.y10a{bottom:590.887050px;}
.y10b{bottom:590.896350px;}
.ye4{bottom:597.764025px;}
.y2f{bottom:598.105425px;}
.y133{bottom:598.457250px;}
.ybe{bottom:599.179162px;}
.y64{bottom:602.781825px;}
.y1e2{bottom:604.216800px;}
.y1e1{bottom:604.576050px;}
.y18e{bottom:606.734812px;}
.y92{bottom:607.455000px;}
.y132{bottom:608.176800px;}
.y109{bottom:609.251550px;}
.y15d{bottom:610.343025px;}
.y131{bottom:616.816950px;}
.ye3{bottom:617.558400px;}
.ybd{bottom:618.973538px;}
.y62{bottom:621.133425px;}
.y63{bottom:621.136200px;}
.y18c{bottom:626.892900px;}
.y18d{bottom:626.895750px;}
.y91{bottom:627.260775px;}
.y108{bottom:627.616050px;}
.y2e{bottom:627.621675px;}
.y15c{bottom:630.148800px;}
.y130{bottom:634.815900px;}
.ye2{bottom:637.352775px;}
.y61{bottom:639.136800px;}
.y18b{bottom:646.342425px;}
.y90{bottom:647.055150px;}
.y1b6{bottom:647.062575px;}
.y2d{bottom:647.411663px;}
.ybc{bottom:648.856350px;}
.y15b{bottom:649.943175px;}
.y5{bottom:654.256800px;}
.ye1{bottom:657.147150px;}
.y12f{bottom:664.332750px;}
.y1e0{bottom:665.775900px;}
.y107{bottom:665.781638px;}
.y1df{bottom:665.781675px;}
.y18a{bottom:666.146700px;}
.y8f{bottom:666.855300px;}
.y1b5{bottom:666.856950px;}
.y2c{bottom:667.397287px;}
.ybb{bottom:668.656500px;}
.y15a{bottom:669.737550px;}
.y159{bottom:669.741675px;}
.ye0{bottom:676.941525px;}
.y60{bottom:678.387600px;}
.y12e{bottom:683.782125px;}
.y1de{bottom:685.574513px;}
.y189{bottom:685.941075px;}
.y106{bottom:685.942575px;}
.y1b4{bottom:686.836500px;}
.y2b{bottom:687.025575px;}
.yba{bottom:688.456650px;}
.yb9{bottom:688.468050px;}
.y158{bottom:689.538825px;}
.ydf{bottom:696.747300px;}
.y8e{bottom:697.095150px;}
.y5f{bottom:698.181975px;}
.y12d{bottom:703.576500px;}
.y188{bottom:705.737325px;}
.y105{bottom:705.738225px;}
.y1dd{bottom:705.746850px;}
.y8d{bottom:706.455600px;}
.y1b3{bottom:706.822125px;}
.yb8{bottom:708.262425px;}
.y157{bottom:709.333200px;}
.y4{bottom:716.166975px;}
.y2a{bottom:716.541825px;}
.y8c{bottom:716.901075px;}
.y5e{bottom:717.976350px;}
.y5d{bottom:717.982125px;}
.y12c{bottom:723.380887px;}
.y104{bottom:725.181975px;}
.y1dc{bottom:725.541225px;}
.y1b2{bottom:726.616612px;}
.yde{bottom:727.347300px;}
.yb7{bottom:728.055262px;}
.y156{bottom:728.776950px;}
.y187{bottom:735.986700px;}
.y29{bottom:736.341825px;}
.y8b{bottom:736.701075px;}
.y5c{bottom:737.782125px;}
.y12b{bottom:743.175262px;}
.y103{bottom:744.976350px;}
.y1db{bottom:745.335600px;}
.y1da{bottom:745.341375px;}
.y1b1{bottom:746.783325px;}
.ydd{bottom:747.141675px;}
.y3{bottom:748.211288px;}
.yb6{bottom:748.221975px;}
.y186{bottom:755.781075px;}
.y28{bottom:756.136200px;}
.y8a{bottom:756.501225px;}
.y5b{bottom:757.576500px;}
.y5a{bottom:757.582275px;}
.y155{bottom:759.376050px;}
.y154{bottom:759.381825px;}
.y12a{bottom:763.336200px;}
.y102{bottom:764.776500px;}
.y1d9{bottom:765.135750px;}
.y1b0{bottom:766.582575px;}
.ydc{bottom:766.936050px;}
.yb5{bottom:768.012600px;}
.y185{bottom:775.575450px;}
.y27{bottom:776.295600px;}
.y89{bottom:776.307150px;}
.y59{bottom:777.376650px;}
.y58{bottom:777.382425px;}
.y153{bottom:779.181975px;}
.y2{bottom:780.252338px;}
.y184{bottom:795.381375px;}
.y1d7{bottom:795.734963px;}
.y1d8{bottom:795.736500px;}
.y25{bottom:796.094212px;}
.y26{bottom:796.095750px;}
.y88{bottom:796.101525px;}
.y57{bottom:797.176800px;}
.y1af{bottom:797.182575px;}
.ydb{bottom:797.534513px;}
.yb4{bottom:797.895412px;}
.y101{bottom:797.896950px;}
.y100{bottom:797.902725px;}
.y152{bottom:798.973500px;}
.y129{bottom:801.136800px;}
.y128{bottom:801.142275px;}
.y1{bottom:812.296650px;}
.y183{bottom:815.175750px;}
.y87{bottom:815.895900px;}
.y24{bottom:816.255150px;}
.y56{bottom:816.976950px;}
.yda{bottom:817.695450px;}
.yff{bottom:817.697100px;}
.yb3{bottom:818.056350px;}
.y151{bottom:818.417250px;}
.y127{bottom:819.496650px;}
.y150{bottom:847.936950px;}
.y1d6{bottom:854.416650px;}
.y55{bottom:854.775900px;}
.y182{bottom:859.096800px;}
.y86{bottom:859.456050px;}
.y23{bottom:859.815300px;}
.y53{bottom:859.816950px;}
.y54{bottom:860.176200px;}
.y1ae{bottom:860.537100px;}
.yd9{bottom:860.896350px;}
.yb1{bottom:861.257250px;}
.yb2{bottom:861.616500px;}
.y126{bottom:862.336650px;}
.h63{height:13.297852px;}
.h7c{height:32.613281px;}
.h16{height:35.200195px;}
.h5d{height:43.022461px;}
.h39{height:46.151367px;}
.h5f{height:46.933594px;}
.h5e{height:48.498047px;}
.h51{height:48.581543px;}
.h60{height:49.280273px;}
.h86{height:49.293091px;}
.h20{height:50.028809px;}
.he{height:50.062500px;}
.h2f{height:50.764526px;}
.h7{height:50.789795px;}
.h10{height:51.500244px;}
.h76{height:51.514044px;}
.h50{height:51.525879px;}
.h85{height:51.626953px;}
.h69{height:51.884766px;}
.h6f{height:52.235962px;}
.h23{height:52.261963px;}
.h73{height:52.263013px;}
.h71{height:52.263763px;}
.h35{height:52.264363px;}
.h87{height:52.265113px;}
.h75{height:52.266163px;}
.h3e{height:52.269613px;}
.h74{height:52.270963px;}
.h4a{height:52.409180px;}
.h42{height:52.998047px;}
.h4b{height:53.000447px;}
.h14{height:53.666016px;}
.h1f{height:53.667066px;}
.h3d{height:53.707397px;}
.h9{height:53.734131px;}
.h30{height:53.973633px;}
.h36{height:54.421875px;}
.h49{height:54.470215px;}
.h53{height:54.755859px;}
.h6{height:55.177734px;}
.h8{height:55.206299px;}
.h25{height:55.538086px;}
.h6a{height:55.893647px;}
.h1c{height:55.933594px;}
.h43{height:55.942383px;}
.h5c{height:56.534045px;}
.h3f{height:56.678467px;}
.h5b{height:56.690317px;}
.h5a{height:56.690917px;}
.h59{height:56.697067px;}
.h5{height:57.102539px;}
.h81{height:57.300879px;}
.h24{height:57.414551px;}
.h29{height:57.425651px;}
.h13{height:57.445312px;}
.h7e{height:58.718379px;}
.h80{height:58.727079px;}
.h4{height:58.886719px;}
.h3a{height:59.296875px;}
.h70{height:59.450713px;}
.h31{height:59.453863px;}
.h34{height:59.460163px;}
.h55{height:59.622803px;}
.h68{height:60.180047px;}
.h7f{height:60.188379px;}
.h4c{height:60.202847px;}
.h33{height:60.231445px;}
.h57{height:60.358887px;}
.hf{height:60.881045px;}
.h3b{height:60.888463px;}
.h2e{height:60.903763px;}
.h19{height:61.800293px;}
.h3c{height:62.326213px;}
.h2d{height:62.536011px;}
.hb{height:62.567139px;}
.h2c{height:62.573289px;}
.h7a{height:62.573439px;}
.h67{height:62.573889px;}
.h48{height:62.575989px;}
.h7b{height:62.578125px;}
.h46{height:62.578539px;}
.hd{height:62.579139px;}
.h47{height:62.580639px;}
.h44{height:62.582139px;}
.h18{height:62.584689px;}
.h65{height:62.585139px;}
.h4f{height:62.585739px;}
.h7d{height:62.615139px;}
.h32{height:63.303223px;}
.h6b{height:63.360352px;}
.h1d{height:63.730266px;}
.h1e{height:63.732666px;}
.h1a{height:63.883846px;}
.h66{height:64.033389px;}
.hc{height:64.039307px;}
.h45{height:64.248047px;}
.h1b{height:64.775391px;}
.h79{height:64.924805px;}
.h17{height:65.003906px;}
.h58{height:65.511475px;}
.h2b{height:65.759766px;}
.h27{height:66.247559px;}
.ha{height:66.515625px;}
.h6d{height:66.983643px;}
.h54{height:67.719727px;}
.h83{height:68.027344px;}
.h28{height:69.191895px;}
.h84{height:70.628906px;}
.h6e{height:70.664062px;}
.h15{height:71.964844px;}
.h2a{height:75.093750px;}
.h72{height:77.986084px;}
.h56{height:79.004883px;}
.h64{height:89.956055px;}
.h6c{height:96.213867px;}
.h2{height:109.676514px;}
.h3{height:109.689564px;}
.h26{height:117.333984px;}
.h0{height:929.072550px;}
.h1{height:929.250000px;}
.h11{height:929.791050px;}
.h12{height:930.000000px;}
.h41{height:931.500000px;}
.h40{height:931.592550px;}
.h37{height:931.952550px;}
.h38{height:932.250000px;}
.h21{height:932.672550px;}
.h22{height:933.000000px;}
.h4d{height:933.392550px;}
.h4e{height:933.750000px;}
.h52{height:934.112550px;}
.h61{height:934.474050px;}
.h62{height:934.500000px;}
.h82{height:935.192550px;}
.h78{height:935.250000px;}
.h77{height:935.552550px;}
.w3{width:600.750000px;}
.w2{width:600.888090px;}
.w1{width:603.000000px;}
.w0{width:603.049590px;}
.wa{width:605.208090px;}
.w6{width:605.209590px;}
.w7{width:605.250000px;}
.w8{width:608.088090px;}
.w9{width:608.250000px;}
.w4{width:610.968090px;}
.w5{width:611.250000px;}
.xd6{left:-9.516060px;}
.xb2{left:-4.115760px;}
.x0{left:0.000000px;}
.x2{left:40.154790px;}
.x1{left:41.964240px;}
.x94{left:43.043865px;}
.x8c{left:44.482590px;}
.x17{left:45.563340px;}
.x22{left:46.624215px;}
.x13{left:48.084690px;}
.x61{left:49.524990px;}
.x68{left:50.613390px;}
.x80{left:51.685440px;}
.x30{left:54.564390px;}
.x25{left:61.044240px;}
.x7{left:62.125290px;}
.x4b{left:64.643340px;}
.xf{left:66.085290px;}
.xb6{left:67.523940px;}
.x8b{left:68.964240px;}
.x21{left:70.428353px;}
.x60{left:72.564990px;}
.x7b{left:73.642027px;}
.xcb{left:74.728777px;}
.x14{left:76.164090px;}
.x15{left:77.971065px;}
.x52{left:79.044690px;}
.x56{left:80.118765px;}
.x98{left:81.549765px;}
.x97{left:82.641390px;}
.xaa{left:84.453765px;}
.x31{left:85.524540px;}
.x35{left:86.603940px;}
.x69{left:87.715328px;}
.x62{left:88.764390px;}
.x4c{left:91.643340px;}
.x10{left:93.085290px;}
.x27{left:98.844840px;}
.x47{left:99.924240px;}
.x91{left:101.720903px;}
.x8d{left:102.804840px;}
.xa4{left:103.884240px;}
.x7f{left:107.485140px;}
.x3{left:109.645590px;}
.x36{left:111.443490px;}
.xcc{left:112.524540px;}
.x1c{left:114.324090px;}
.xa5{left:115.764390px;}
.xca{left:117.204690px;}
.x28{left:118.284090px;}
.x8e{left:119.363490px;}
.x26{left:121.164690px;}
.x75{left:122.244090px;}
.xc6{left:123.684390px;}
.xaf{left:128.364540px;}
.x1d{left:136.284540px;}
.x6b{left:138.445140px;}
.x86{left:140.244690px;}
.x92{left:144.563940px;}
.x76{left:145.643340px;}
.xc7{left:148.884840px;}
.x6c{left:153.204090px;}
.x8a{left:160.764840px;}
.x3e{left:162.203640px;}
.xdb{left:163.284540px;}
.x87{left:165.443490px;}
.x93{left:167.603940px;}
.xb8{left:169.044240px;}
.x78{left:174.083640px;}
.xd0{left:178.404540px;}
.x11{left:180.564990px;}
.xa7{left:182.725440px;}
.x3f{left:184.523340px;}
.xb9{left:185.604390px;}
.x53{left:188.124090px;}
.x74{left:189.564540px;}
.x6a{left:193.885440px;}
.xd3{left:195.324090px;}
.x4{left:199.644990px;}
.xb7{left:201.083640px;}
.xa6{left:202.164690px;}
.x12{left:204.325140px;}
.x4f{left:206.844840px;}
.xd7{left:208.644390px;}
.xb4{left:211.523340px;}
.xae{left:213.685440px;}
.xa1{left:215.483340px;}
.xa3{left:217.284690px;}
.xa2{left:221.244690px;}
.x5{left:223.405140px;}
.xd8{left:225.204690px;}
.x55{left:227.363490px;}
.x6d{left:228.444540px;}
.xda{left:230.964240px;}
.x66{left:232.404540px;}
.x81{left:234.564990px;}
.xd4{left:237.084690px;}
.xa0{left:239.604390px;}
.xd1{left:241.403940px;}
.x5b{left:242.844240px;}
.x59{left:246.084240px;}
.x7a{left:247.163640px;}
.x32{left:250.403490px;}
.xab{left:252.565590px;}
.x79{left:254.724390px;}
.xb0{left:255.805440px;}
.x5a{left:257.964240px;}
.x71{left:260.124690px;}
.xc3{left:261.924240px;}
.x3b{left:264.804840px;}
.x9b{left:265.884240px;}
.x6{left:268.044690px;}
.xce{left:270.203490px;}
.x4d{left:272.723340px;}
.xc0{left:274.524540px;}
.x84{left:276.324090px;}
.x40{left:277.403490px;}
.x96{left:279.204690px;}
.x58{left:280.284090px;}
.xd{left:282.805440px;}
.xd5{left:285.684390px;}
.x37{left:286.763790px;}
.x46{left:287.844840px;}
.x3c{left:289.644390px;}
.xe{left:292.524990px;}
.x4e{left:295.403940px;}
.x85{left:296.844240px;}
.xb1{left:300.084240px;}
.x50{left:306.204690px;}
.x34{left:308.363490px;}
.x65{left:311.244090px;}
.x57{left:315.204090px;}
.xc1{left:318.804840px;}
.x7d{left:319.884240px;}
.x88{left:322.403940px;}
.x3d{left:323.844240px;}
.xbd{left:326.723340px;}
.x7e{left:328.165290px;}
.x8f{left:330.683340px;}
.x70{left:331.764390px;}
.xac{left:333.204690px;}
.x51{left:334.643340px;}
.x19{left:337.164690px;}
.xc2{left:341.483940px;}
.xbe{left:346.164090px;}
.x90{left:350.483340px;}
.x43{left:357.324090px;}
.x1a{left:360.204690px;}
.x39{left:363.803790px;}
.xb{left:367.045290px;}
.xc5{left:368.844840px;}
.xbb{left:373.884240px;}
.xa8{left:376.764990px;}
.xc{left:378.925290px;}
.x2b{left:380.723340px;}
.xc4{left:385.764390px;}
.x44{left:387.563940px;}
.x23{left:389.724390px;}
.x5c{left:391.884840px;}
.xa9{left:393.325140px;}
.x7c{left:399.084690px;}
.x67{left:405.205140px;}
.x16{left:407.004840px;}
.x48{left:412.764390px;}
.x77{left:414.204690px;}
.xb3{left:415.643340px;}
.x38{left:417.083640px;}
.x18{left:419.244090px;}
.x24{left:420.323490px;}
.x5f{left:421.404540px;}
.xd2{left:423.204090px;}
.x2e{left:425.723790px;}
.x49{left:428.604390px;}
.x4a{left:431.483490px;}
.xc8{left:432.564390px;}
.x63{left:433.645590px;}
.x64{left:444.444540px;}
.x2f{left:448.404540px;}
.x5d{left:450.204090px;}
.x9c{left:451.283490px;}
.x6e{left:454.524990px;}
.x9d{left:457.403940px;}
.x99{left:460.284540px;}
.x9e{left:462.804390px;}
.x45{left:465.683340px;}
.x2c{left:470.724390px;}
.x29{left:476.124690px;}
.xb5{left:478.283490px;}
.x9a{left:480.084690px;}
.x54{left:481.884240px;}
.xcd{left:483.324540px;}
.x6f{left:489.445140px;}
.x33{left:493.764390px;}
.x2d{left:497.004240px;}
.x9f{left:500.244090px;}
.xbf{left:501.323490px;}
.xba{left:502.404540px;}
.xd9{left:503.844840px;}
.x1f{left:505.644390px;}
.x2a{left:507.804840px;}
.x5e{left:510.683790px;}
.xdc{left:512.483490px;}
.x82{left:514.645590px;}
.x3a{left:516.804390px;}
.xad{left:517.885440px;}
.x72{left:526.164690px;}
.x20{left:527.244090px;}
.x95{left:529.763790px;}
.x8{left:534.084690px;}
.xc9{left:538.403940px;}
.x41{left:539.483490px;}
.x73{left:542.723340px;}
.x9{left:544.524540px;}
.x1b{left:546.324090px;}
.xbc{left:547.403490px;}
.xa{left:552.085290px;}
.x83{left:553.884840px;}
.x89{left:556.763790px;}
.xcf{left:558.204090px;}
.x1e{left:574.044240px;}
.x42{left:615.443940px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.303333pt;}
.v6{vertical-align:2.544000pt;}
.v4{vertical-align:5.106000pt;}
.v3{vertical-align:6.392800pt;}
.v2{vertical-align:7.668000pt;}
.v1{vertical-align:8.970000pt;}
.lsc4{letter-spacing:-13.857733pt;}
.ls6d{letter-spacing:-11.208667pt;}
.lse{letter-spacing:-8.979733pt;}
.ls96{letter-spacing:-8.870400pt;}
.lsed{letter-spacing:-8.390400pt;}
.lsf{letter-spacing:-7.777800pt;}
.ls66{letter-spacing:-7.386667pt;}
.ls8c{letter-spacing:-6.971067pt;}
.ls65{letter-spacing:-6.851000pt;}
.ls6c{letter-spacing:-5.770933pt;}
.ls5a{letter-spacing:-5.744667pt;}
.ls34{letter-spacing:-5.604333pt;}
.ls92{letter-spacing:-5.595400pt;}
.lsde{letter-spacing:-5.432533pt;}
.ls12{letter-spacing:-5.383867pt;}
.lsab{letter-spacing:-5.137600pt;}
.lse1{letter-spacing:-5.116733pt;}
.ls5c{letter-spacing:-5.026000pt;}
.ls33{letter-spacing:-4.981000pt;}
.lsaa{letter-spacing:-4.492800pt;}
.ls99{letter-spacing:-4.435200pt;}
.ls1e{letter-spacing:-4.357667pt;}
.ls5e{letter-spacing:-4.307333pt;}
.ls10{letter-spacing:-4.191867pt;}
.lsa9{letter-spacing:-3.853200pt;}
.ls8a{letter-spacing:-3.803800pt;}
.ls30{letter-spacing:-3.734333pt;}
.ls17{letter-spacing:-3.730600pt;}
.ls13{letter-spacing:-3.585933pt;}
.lsb9{letter-spacing:-3.470133pt;}
.ls54{letter-spacing:-3.372800pt;}
.lsc3{letter-spacing:-3.332267pt;}
.ls9a{letter-spacing:-3.238400pt;}
.ls4c{letter-spacing:-3.208400pt;}
.ls97{letter-spacing:-3.167267pt;}
.ls2f{letter-spacing:-3.111000pt;}
.ls11{letter-spacing:-2.989933pt;}
.ls72{letter-spacing:-2.870000pt;}
.ls23{letter-spacing:-2.786000pt;}
.ls91{letter-spacing:-2.707200pt;}
.lsae{letter-spacing:-2.705867pt;}
.lsc7{letter-spacing:-2.664867pt;}
.ls4e{letter-spacing:-2.568800pt;}
.ls8b{letter-spacing:-2.535867pt;}
.ls32{letter-spacing:-2.493333pt;}
.lsd0{letter-spacing:-2.422000pt;}
.lsa{letter-spacing:-2.393933pt;}
.ls3e{letter-spacing:-2.156000pt;}
.ls2e{letter-spacing:-2.069733pt;}
.ls9e{letter-spacing:-2.059200pt;}
.ls16{letter-spacing:-2.029400pt;}
.ls5f{letter-spacing:-2.002200pt;}
.lsaf{letter-spacing:-1.944000pt;}
.ls55{letter-spacing:-1.924000pt;}
.ls89{letter-spacing:-1.899333pt;}
.ls1d{letter-spacing:-1.870000pt;}
.ls21{letter-spacing:-1.863000pt;}
.lsd{letter-spacing:-1.797933pt;}
.lsbe{letter-spacing:-1.505200pt;}
.lse0{letter-spacing:-1.460667pt;}
.lsdd{letter-spacing:-1.457867pt;}
.ls38{letter-spacing:-1.437333pt;}
.ls8d{letter-spacing:-1.414000pt;}
.ls64{letter-spacing:-1.404000pt;}
.ls3a{letter-spacing:-1.391600pt;}
.lsdc{letter-spacing:-1.372400pt;}
.ls71{letter-spacing:-1.353600pt;}
.ls2d{letter-spacing:-1.352800pt;}
.ls4d{letter-spacing:-1.334800pt;}
.lsba{letter-spacing:-1.317200pt;}
.lse6{letter-spacing:-1.316000pt;}
.ls74{letter-spacing:-1.315000pt;}
.ls53{letter-spacing:-1.284400pt;}
.ls90{letter-spacing:-1.267933pt;}
.ls79{letter-spacing:-1.262400pt;}
.ls1b{letter-spacing:-1.246667pt;}
.lsc1{letter-spacing:-1.246000pt;}
.ls19{letter-spacing:-1.242000pt;}
.ls7d{letter-spacing:-1.213333pt;}
.lsc{letter-spacing:-1.201933pt;}
.lsc0{letter-spacing:-0.752600pt;}
.lsd1{letter-spacing:-0.742000pt;}
.lsb2{letter-spacing:-0.739800pt;}
.ls7b{letter-spacing:-0.731400pt;}
.ls4f{letter-spacing:-0.728933pt;}
.lse3{letter-spacing:-0.728000pt;}
.ls37{letter-spacing:-0.718667pt;}
.lsea{letter-spacing:-0.704267pt;}
.lsa6{letter-spacing:-0.703267pt;}
.lsbd{letter-spacing:-0.696000pt;}
.ls39{letter-spacing:-0.695800pt;}
.ls22{letter-spacing:-0.695333pt;}
.lsdb{letter-spacing:-0.686200pt;}
.lsef{letter-spacing:-0.678933pt;}
.ls6f{letter-spacing:-0.676800pt;}
.ls5b{letter-spacing:-0.667400pt;}
.lsdf{letter-spacing:-0.658000pt;}
.ls9c{letter-spacing:-0.648600pt;}
.lsac{letter-spacing:-0.648000pt;}
.ls95{letter-spacing:-0.646733pt;}
.ls52{letter-spacing:-0.639600pt;}
.lsd2{letter-spacing:-0.639400pt;}
.ls98{letter-spacing:-0.631400pt;}
.lsc6{letter-spacing:-0.630200pt;}
.ls1c{letter-spacing:-0.623333pt;}
.ls18{letter-spacing:-0.621000pt;}
.lsb{letter-spacing:0.000000pt;}
.lsa8{letter-spacing:0.366067pt;}
.ls0{letter-spacing:0.621000pt;}
.ls5{letter-spacing:0.623333pt;}
.ls82{letter-spacing:0.631400pt;}
.ls20{letter-spacing:0.635733pt;}
.ls42{letter-spacing:0.639600pt;}
.lsa5{letter-spacing:0.648000pt;}
.ls85{letter-spacing:0.648600pt;}
.ls70{letter-spacing:0.651200pt;}
.lsd7{letter-spacing:0.658000pt;}
.ls46{letter-spacing:0.667400pt;}
.lsee{letter-spacing:0.668800pt;}
.ls68{letter-spacing:0.676800pt;}
.lsd4{letter-spacing:0.686200pt;}
.ls24{letter-spacing:0.695800pt;}
.ls31{letter-spacing:0.700000pt;}
.ls1f{letter-spacing:0.707600pt;}
.lsa0{letter-spacing:0.714400pt;}
.ls2a{letter-spacing:0.718667pt;}
.ls57{letter-spacing:0.719667pt;}
.lsda{letter-spacing:0.728000pt;}
.ls7c{letter-spacing:0.731400pt;}
.lscb{letter-spacing:0.742000pt;}
.lsc2{letter-spacing:0.752600pt;}
.lsad{letter-spacing:0.765333pt;}
.ls3c{letter-spacing:0.773800pt;}
.lse2{letter-spacing:1.110667pt;}
.ls9f{letter-spacing:1.167600pt;}
.ls1{letter-spacing:1.242000pt;}
.ls4{letter-spacing:1.246667pt;}
.ls76{letter-spacing:1.260000pt;}
.lse4{letter-spacing:1.262933pt;}
.ls75{letter-spacing:1.263800pt;}
.ls80{letter-spacing:1.267933pt;}
.ls7e{letter-spacing:1.281600pt;}
.ls41{letter-spacing:1.284400pt;}
.lsa3{letter-spacing:1.296000pt;}
.ls87{letter-spacing:1.297200pt;}
.lsd6{letter-spacing:1.316000pt;}
.ls94{letter-spacing:1.320000pt;}
.ls48{letter-spacing:1.334800pt;}
.ls6a{letter-spacing:1.353600pt;}
.ls9{letter-spacing:1.390667pt;}
.ls28{letter-spacing:1.391600pt;}
.ls14{letter-spacing:1.402667pt;}
.ls3d{letter-spacing:1.437333pt;}
.lse7{letter-spacing:1.460667pt;}
.lsc9{letter-spacing:1.484000pt;}
.lsb6{letter-spacing:1.505200pt;}
.lsb0{letter-spacing:1.554000pt;}
.lsc5{letter-spacing:1.638000pt;}
.ls8{letter-spacing:1.863000pt;}
.ls7{letter-spacing:1.870000pt;}
.ls6e{letter-spacing:1.873400pt;}
.ls81{letter-spacing:1.899333pt;}
.ls43{letter-spacing:1.924000pt;}
.lsb1{letter-spacing:1.944000pt;}
.ls84{letter-spacing:1.945800pt;}
.lsec{letter-spacing:1.953600pt;}
.lsd5{letter-spacing:1.974000pt;}
.ls78{letter-spacing:1.998000pt;}
.ls47{letter-spacing:2.002200pt;}
.lsd3{letter-spacing:2.028600pt;}
.ls60{letter-spacing:2.030400pt;}
.ls2b{letter-spacing:2.087400pt;}
.ls29{letter-spacing:2.156000pt;}
.lscf{letter-spacing:2.221333pt;}
.lsb7{letter-spacing:2.253067pt;}
.ls56{letter-spacing:2.308800pt;}
.ls58{letter-spacing:2.389600pt;}
.ls2{letter-spacing:2.484000pt;}
.ls6{letter-spacing:2.493333pt;}
.ls9d{letter-spacing:2.500000pt;}
.ls7f{letter-spacing:2.535867pt;}
.ls44{letter-spacing:2.568800pt;}
.ls88{letter-spacing:2.589800pt;}
.ls50{letter-spacing:2.610000pt;}
.lsd8{letter-spacing:2.627333pt;}
.ls15{letter-spacing:2.628000pt;}
.ls49{letter-spacing:2.664867pt;}
.ls7a{letter-spacing:2.666400pt;}
.ls69{letter-spacing:2.702400pt;}
.lse5{letter-spacing:2.704800pt;}
.lsbb{letter-spacing:2.723933pt;}
.ls3b{letter-spacing:2.783200pt;}
.ls2c{letter-spacing:2.870000pt;}
.ls3f{letter-spacing:2.878667pt;}
.ls67{letter-spacing:2.905400pt;}
.lscd{letter-spacing:2.963333pt;}
.lsbc{letter-spacing:2.976000pt;}
.lsa4{letter-spacing:3.061333pt;}
.lsb3{letter-spacing:3.097600pt;}
.ls26{letter-spacing:3.111000pt;}
.ls83{letter-spacing:3.167267pt;}
.lsa1{letter-spacing:3.208400pt;}
.ls86{letter-spacing:3.238400pt;}
.ls35{letter-spacing:3.261867pt;}
.lse8{letter-spacing:3.284933pt;}
.lsd9{letter-spacing:3.285333pt;}
.ls4b{letter-spacing:3.332267pt;}
.ls51{letter-spacing:3.371467pt;}
.ls6b{letter-spacing:3.379200pt;}
.ls36{letter-spacing:3.423733pt;}
.ls27{letter-spacing:3.479000pt;}
.ls93{letter-spacing:3.547867pt;}
.ls8f{letter-spacing:3.553200pt;}
.ls5d{letter-spacing:3.588667pt;}
.ls8e{letter-spacing:3.606400pt;}
.ls77{letter-spacing:3.652400pt;}
.ls3{letter-spacing:3.730600pt;}
.ls25{letter-spacing:3.734333pt;}
.lsb4{letter-spacing:3.758267pt;}
.lsa2{letter-spacing:3.853200pt;}
.ls1a{letter-spacing:3.860267pt;}
.ls9b{letter-spacing:3.887000pt;}
.ls62{letter-spacing:3.999667pt;}
.lseb{letter-spacing:4.140000pt;}
.lsc8{letter-spacing:4.357667pt;}
.lsca{letter-spacing:4.442667pt;}
.lsb8{letter-spacing:4.506133pt;}
.lsa7{letter-spacing:4.523600pt;}
.lse9{letter-spacing:4.667067pt;}
.lsb5{letter-spacing:5.258733pt;}
.lsbf{letter-spacing:6.011333pt;}
.ls59{letter-spacing:6.570667pt;}
.ls4a{letter-spacing:7.177333pt;}
.lsce{letter-spacing:7.406000pt;}
.ls45{letter-spacing:7.896000pt;}
.lscc{letter-spacing:8.666733pt;}
.ls61{letter-spacing:8.715333pt;}
.ls73{letter-spacing:9.338667pt;}
.ls63{letter-spacing:10.001533pt;}
.ls40{letter-spacing:14.123200pt;}
.ws0{word-spacing:0.000000pt;}
._27{margin-left:-77.825000pt;}
._26{margin-left:-50.841992pt;}
._2a{margin-left:-45.424374pt;}
._32{margin-left:-43.861656pt;}
._2f{margin-left:-36.333075pt;}
._34{margin-left:-34.695609pt;}
._1f{margin-left:-30.498193pt;}
._22{margin-left:-29.033751pt;}
._30{margin-left:-27.991727pt;}
._2e{margin-left:-24.555481pt;}
._1e{margin-left:-21.202375pt;}
._21{margin-left:-19.719197pt;}
._16{margin-left:-17.887630pt;}
._1c{margin-left:-14.132055pt;}
._15{margin-left:-12.553133pt;}
._23{margin-left:-11.466344pt;}
._13{margin-left:-9.499000pt;}
._14{margin-left:-7.637703pt;}
._f{margin-left:-6.661400pt;}
._12{margin-left:-5.514875pt;}
._17{margin-left:-4.501600pt;}
._d{margin-left:-2.978400pt;}
._e{margin-left:-1.495000pt;}
._10{width:0.966000pt;}
._9{width:1.915200pt;}
._8{width:2.831000pt;}
._a{width:3.885000pt;}
._c{width:5.623733pt;}
._5{width:6.724867pt;}
._b{width:7.743200pt;}
._1{width:8.642000pt;}
._2{width:10.122067pt;}
._6{width:11.532600pt;}
._0{width:12.794133pt;}
._19{width:13.823269pt;}
._4{width:15.327133pt;}
._7{width:17.085333pt;}
._18{width:18.156133pt;}
._28{width:19.072934pt;}
._3{width:20.121463pt;}
._11{width:21.712000pt;}
._1d{width:22.621200pt;}
._2b{width:23.572133pt;}
._31{width:24.476400pt;}
._1a{width:25.540402pt;}
._2d{width:29.808000pt;}
._25{width:31.121667pt;}
._29{width:32.879797pt;}
._1b{width:33.985333pt;}
._20{width:35.052933pt;}
._33{width:36.493333pt;}
._24{width:39.073667pt;}
._2c{width:42.046667pt;}
.fs25{font-size:11.333333pt;}
.fs2b{font-size:29.333333pt;}
.fsd{font-size:30.000000pt;}
.fs21{font-size:36.666667pt;}
.fs1a{font-size:39.333333pt;}
.fs23{font-size:40.000000pt;}
.fs22{font-size:41.333333pt;}
.fs24{font-size:42.000000pt;}
.fs8{font-size:42.666667pt;}
.fs1c{font-size:44.000000pt;}
.fs1b{font-size:44.666667pt;}
.fs12{font-size:45.333333pt;}
.fs3{font-size:46.000000pt;}
.fs9{font-size:46.666667pt;}
.fsb{font-size:47.333333pt;}
.fs19{font-size:48.000000pt;}
.fs2{font-size:48.666667pt;}
.fs11{font-size:49.333333pt;}
.fs4{font-size:50.000000pt;}
.fsa{font-size:50.666667pt;}
.fs18{font-size:51.333333pt;}
.fs13{font-size:52.000000pt;}
.fs1{font-size:53.333333pt;}
.fs1d{font-size:54.000000pt;}
.fs1f{font-size:54.666667pt;}
.fs2a{font-size:55.333333pt;}
.fsf{font-size:56.000000pt;}
.fs6{font-size:56.666667pt;}
.fse{font-size:57.333333pt;}
.fs10{font-size:57.859200pt;}
.fs7{font-size:58.000000pt;}
.fs5{font-size:58.666667pt;}
.fs20{font-size:59.333333pt;}
.fs15{font-size:60.000000pt;}
.fs28{font-size:60.666667pt;}
.fsc{font-size:61.333333pt;}
.fs16{font-size:62.666667pt;}
.fs17{font-size:64.000000pt;}
.fs1e{font-size:67.333333pt;}
.fs29{font-size:70.666667pt;}
.fs26{font-size:76.666667pt;}
.fs27{font-size:82.000000pt;}
.fs0{font-size:99.333333pt;}
.fs14{font-size:100.000000pt;}
.y0{bottom:0.000000pt;}
.y1f0{bottom:57.080900pt;}
.y1d5{bottom:59.326733pt;}
.y14e{bottom:59.958133pt;}
.y52{bottom:59.960000pt;}
.y84{bottom:60.280267pt;}
.y85{bottom:60.280800pt;}
.yfe{bottom:60.600133pt;}
.y14f{bottom:60.601600pt;}
.y1ad{bottom:60.920933pt;}
.y125{bottom:62.841333pt;}
.yd8{bottom:62.842267pt;}
.y22{bottom:63.159733pt;}
.y181{bottom:64.121200pt;}
.y1ee{bottom:70.521467pt;}
.y1ef{bottom:72.121067pt;}
.yb0{bottom:72.441933pt;}
.yfc{bottom:72.761200pt;}
.y82{bottom:73.401333pt;}
.y50{bottom:74.679900pt;}
.y51{bottom:74.680133pt;}
.y83{bottom:75.000933pt;}
.yfd{bottom:75.320400pt;}
.y1d4{bottom:75.321733pt;}
.yd6{bottom:75.641200pt;}
.y123{bottom:75.964700pt;}
.y14c{bottom:76.596800pt;}
.y14d{bottom:76.602133pt;}
.y124{bottom:77.240800pt;}
.yd7{bottom:77.242267pt;}
.y21{bottom:78.201733pt;}
.y180{bottom:78.840933pt;}
.y1ed{bottom:86.520533pt;}
.y81{bottom:87.800800pt;}
.y4e{bottom:89.079200pt;}
.yaf{bottom:89.079600pt;}
.y4f{bottom:89.081067pt;}
.yfb{bottom:89.721200pt;}
.y1d3{bottom:90.042000pt;}
.y1d2{bottom:90.044800pt;}
.y1ac{bottom:90.361333pt;}
.y14b{bottom:91.320800pt;}
.y14a{bottom:91.321733pt;}
.yd5{bottom:92.281200pt;}
.y122{bottom:92.283200pt;}
.y20{bottom:93.244367pt;}
.y17f{bottom:93.561600pt;}
.y1eb{bottom:99.960533pt;}
.y1ec{bottom:101.561600pt;}
.y4d{bottom:101.562833pt;}
.yf9{bottom:102.200267pt;}
.y1d1{bottom:102.524933pt;}
.y1aa{bottom:102.843100pt;}
.y7f{bottom:102.843267pt;}
.yad{bottom:104.120133pt;}
.yae{bottom:104.120667pt;}
.y148{bottom:104.130133pt;}
.y80{bottom:104.441467pt;}
.yfa{bottom:104.760800pt;}
.y1ab{bottom:105.081600pt;}
.y149{bottom:105.721733pt;}
.y1f{bottom:105.721867pt;}
.yd4{bottom:106.681200pt;}
.yd3{bottom:106.685333pt;}
.y17e{bottom:108.280267pt;}
.y1cf{bottom:117.561333pt;}
.y1e{bottom:118.201100pt;}
.y4c{bottom:118.520000pt;}
.yac{bottom:118.840800pt;}
.y1d0{bottom:119.161600pt;}
.y7e{bottom:119.480933pt;}
.y1a8{bottom:119.799867pt;}
.y1a9{bottom:119.800267pt;}
.yd2{bottom:121.082000pt;}
.y147{bottom:121.086133pt;}
.y121{bottom:121.401333pt;}
.y120{bottom:121.402800pt;}
.y17d{bottom:123.000700pt;}
.y4a{bottom:131.003367pt;}
.y7c{bottom:132.601600pt;}
.y4b{bottom:133.240267pt;}
.y145{bottom:133.561067pt;}
.y1ce{bottom:134.198000pt;}
.y7d{bottom:134.201200pt;}
.y1a6{bottom:134.517467pt;}
.y1a7{bottom:134.520533pt;}
.y146{bottom:135.162133pt;}
.y1d{bottom:135.163600pt;}
.y11f{bottom:135.800800pt;}
.yd1{bottom:136.121600pt;}
.y17c{bottom:137.401867pt;}
.yf8{bottom:145.720667pt;}
.y1cd{bottom:147.004933pt;}
.y1b{bottom:147.641200pt;}
.y48{bottom:147.957333pt;}
.yab{bottom:147.960000pt;}
.y49{bottom:147.960533pt;}
.y7b{bottom:148.921333pt;}
.y1a4{bottom:149.240267pt;}
.y1a5{bottom:149.240800pt;}
.y1c{bottom:149.561600pt;}
.yd0{bottom:150.521067pt;}
.y17a{bottom:150.523933pt;}
.y17b{bottom:152.122133pt;}
.y46{bottom:160.443600pt;}
.y1cc{bottom:162.042000pt;}
.yaa{bottom:162.678967pt;}
.y47{bottom:162.680667pt;}
.yf7{bottom:162.997467pt;}
.y79{bottom:163.639733pt;}
.y7a{bottom:163.641600pt;}
.y1a3{bottom:163.960933pt;}
.y1a{bottom:164.281733pt;}
.ycf{bottom:164.921867pt;}
.y11e{bottom:165.242667pt;}
.y178{bottom:167.159500pt;}
.y179{bottom:167.161600pt;}
.y44{bottom:175.480533pt;}
.y1a1{bottom:176.762367pt;}
.ya9{bottom:177.080133pt;}
.y144{bottom:177.720233pt;}
.y45{bottom:177.720267pt;}
.y78{bottom:178.360400pt;}
.y1a2{bottom:178.681200pt;}
.y11d{bottom:179.640667pt;}
.y11c{bottom:179.641067pt;}
.yf6{bottom:180.285933pt;}
.y177{bottom:181.560667pt;}
.ya7{bottom:192.118267pt;}
.ya8{bottom:192.119600pt;}
.y77{bottom:193.080533pt;}
.y1a0{bottom:193.081433pt;}
.y11b{bottom:194.683067pt;}
.y143{bottom:195.319100pt;}
.y175{bottom:196.280800pt;}
.y176{bottom:196.281333pt;}
.yf5{bottom:197.876800pt;}
.y19{bottom:202.678533pt;}
.y75{bottom:205.880400pt;}
.ya6{bottom:206.838933pt;}
.y76{bottom:207.800800pt;}
.y19f{bottom:208.121600pt;}
.y11a{bottom:209.081067pt;}
.y174{bottom:211.001467pt;}
.yf4{bottom:215.157600pt;}
.ya5{bottom:219.323100pt;}
.y18{bottom:219.961867pt;}
.y17{bottom:219.963000pt;}
.y19d{bottom:220.921333pt;}
.y74{bottom:222.201733pt;}
.y19e{bottom:222.840400pt;}
.y43{bottom:224.120667pt;}
.y42{bottom:224.121667pt;}
.yce{bottom:225.403400pt;}
.y172{bottom:225.721200pt;}
.y173{bottom:225.721733pt;}
.y1ca{bottom:231.791600pt;}
.y1cb{bottom:231.802267pt;}
.yf2{bottom:232.436933pt;}
.yf3{bottom:232.440933pt;}
.ya3{bottom:234.362867pt;}
.y72{bottom:235.320800pt;}
.ya4{bottom:236.280267pt;}
.y73{bottom:236.920400pt;}
.y16{bottom:237.246333pt;}
.y171{bottom:240.441467pt;}
.y41{bottom:241.716667pt;}
.ycd{bottom:242.998400pt;}
.y1c9{bottom:249.074933pt;}
.y142{bottom:249.086600pt;}
.yf1{bottom:249.725267pt;}
.ya2{bottom:251.000533pt;}
.y15{bottom:254.842333pt;}
.y170{bottom:255.162133pt;}
.y19c{bottom:258.038000pt;}
.y40{bottom:259.005133pt;}
.ycc{bottom:260.279767pt;}
.ya0{bottom:265.720100pt;}
.ya1{bottom:265.720667pt;}
.y1c8{bottom:266.358267pt;}
.y141{bottom:266.677600pt;}
.yf0{bottom:267.320267pt;}
.y16f{bottom:269.882267pt;}
.y14{bottom:272.125667pt;}
.y19b{bottom:275.321333pt;}
.y3f{bottom:276.600133pt;}
.y9e{bottom:278.520533pt;}
.y9f{bottom:280.760267pt;}
.y119{bottom:281.078433pt;}
.y1c7{bottom:283.641600pt;}
.y140{bottom:283.966067pt;}
.y16e{bottom:284.600133pt;}
.ycb{bottom:286.839267pt;}
.y13{bottom:289.720667pt;}
.y19a{bottom:292.921333pt;}
.yef{bottom:293.876800pt;}
.y3e{bottom:293.887067pt;}
.y118{bottom:297.078833pt;}
.y16d{bottom:299.320800pt;}
.y1c5{bottom:301.237733pt;}
.y1c6{bottom:301.241733pt;}
.y13f{bottom:301.565233pt;}
.y71{bottom:301.883567pt;}
.yca{bottom:304.122600pt;}
.y199{bottom:310.200667pt;}
.y3d{bottom:310.844567pt;}
.yee{bottom:311.170400pt;}
.y117{bottom:313.082000pt;}
.y16b{bottom:314.041067pt;}
.y16c{bottom:314.041467pt;}
.y1c3{bottom:318.518400pt;}
.y1c4{bottom:318.521067pt;}
.y13e{bottom:318.848567pt;}
.yc9{bottom:321.717600pt;}
.y169{bottom:327.163667pt;}
.y70{bottom:328.446067pt;}
.y16a{bottom:328.761733pt;}
.y3c{bottom:328.765400pt;}
.y116{bottom:329.076933pt;}
.y1c2{bottom:335.800333pt;}
.y13d{bottom:336.443567pt;}
.y198{bottom:337.397333pt;}
.y9d{bottom:337.716667pt;}
.yc8{bottom:338.998400pt;}
.y167{bottom:341.882267pt;}
.y168{bottom:343.801333pt;}
.y115{bottom:345.400933pt;}
.y6f{bottom:346.041067pt;}
.y6e{bottom:346.046067pt;}
.y3a{bottom:346.357733pt;}
.y3b{bottom:346.360400pt;}
.y12{bottom:350.841600pt;}
.y1c1{bottom:353.083667pt;}
.y197{bottom:354.691933pt;}
.y9c{bottom:355.029700pt;}
.yc7{bottom:356.293100pt;}
.y13c{bottom:363.006067pt;}
.y39{bottom:363.641067pt;}
.y6d{bottom:363.646200pt;}
.yed{bottom:363.964167pt;}
.y10{bottom:365.558667pt;}
.y11{bottom:365.561600pt;}
.y1c0{bottom:370.367000pt;}
.y196{bottom:372.286933pt;}
.y9b{bottom:372.624700pt;}
.yc6{bottom:373.576433pt;}
.y114{bottom:379.001467pt;}
.yf{bottom:380.278667pt;}
.y37{bottom:380.600367pt;}
.y13b{bottom:380.606200pt;}
.y38{bottom:381.241200pt;}
.yec{bottom:381.885000pt;}
.y1bf{bottom:387.967000pt;}
.y195{bottom:389.881933pt;}
.y9a{bottom:390.219700pt;}
.yc5{bottom:391.171433pt;}
.y166{bottom:393.086600pt;}
.ye{bottom:394.998667pt;}
.y1ea{bottom:396.600133pt;}
.y113{bottom:396.601600pt;}
.y112{bottom:396.606733pt;}
.y13a{bottom:398.201200pt;}
.y6c{bottom:398.525667pt;}
.yeb{bottom:399.484267pt;}
.y1be{bottom:405.566067pt;}
.y194{bottom:407.165267pt;}
.y99{bottom:407.503033pt;}
.yc4{bottom:408.766433pt;}
.yd{bottom:409.718667pt;}
.y165{bottom:410.682733pt;}
.y1e9{bottom:414.205267pt;}
.y111{bottom:414.207867pt;}
.y139{bottom:415.801333pt;}
.y6b{bottom:416.125667pt;}
.yea{bottom:416.767600pt;}
.y1bd{bottom:423.486900pt;}
.yc{bottom:424.760667pt;}
.y193{bottom:424.765400pt;}
.y98{bottom:425.098033pt;}
.y36{bottom:425.721200pt;}
.y35{bottom:425.729967pt;}
.y164{bottom:427.966067pt;}
.y110{bottom:431.802867pt;}
.y1e8{bottom:431.815533pt;}
.y138{bottom:433.401333pt;}
.y69{bottom:433.718133pt;}
.y6a{bottom:433.720667pt;}
.ye9{bottom:434.362600pt;}
.yb{bottom:439.480667pt;}
.y1bc{bottom:441.081900pt;}
.y192{bottom:442.362867pt;}
.y97{bottom:442.693033pt;}
.y34{bottom:443.324967pt;}
.yc3{bottom:444.282267pt;}
.y163{bottom:445.561067pt;}
.y10f{bottom:449.086200pt;}
.y1e7{bottom:449.410533pt;}
.y68{bottom:451.000100pt;}
.ye8{bottom:452.127600pt;}
.ya{bottom:454.200667pt;}
.y1bb{bottom:458.676900pt;}
.y191{bottom:459.646200pt;}
.y96{bottom:459.976367pt;}
.y33{bottom:461.245800pt;}
.yc2{bottom:461.882267pt;}
.y162{bottom:463.158533pt;}
.y10e{bottom:466.681200pt;}
.y137{bottom:467.002000pt;}
.y1e6{bottom:467.005533pt;}
.y67{bottom:468.601600pt;}
.y9{bottom:468.920933pt;}
.y8{bottom:468.921067pt;}
.ye7{bottom:469.240933pt;}
.y190{bottom:477.241200pt;}
.y95{bottom:477.571367pt;}
.y32{bottom:478.840800pt;}
.yc1{bottom:479.801733pt;}
.y161{bottom:480.441867pt;}
.y136{bottom:483.324133pt;}
.y7{bottom:483.641067pt;}
.y1e5{bottom:484.610800pt;}
.y1ba{bottom:485.876900pt;}
.y31{bottom:496.440933pt;}
.ye6{bottom:496.467467pt;}
.y135{bottom:499.639133pt;}
.y1e4{bottom:502.205800pt;}
.y1b9{bottom:503.160233pt;}
.y18f{bottom:504.119700pt;}
.y94{bottom:504.445533pt;}
.y160{bottom:507.321733pt;}
.y15f{bottom:507.326867pt;}
.y10c{bottom:508.917200pt;}
.y10d{bottom:508.921333pt;}
.y6{bottom:513.721733pt;}
.y30{bottom:514.054267pt;}
.ye5{bottom:514.062467pt;}
.yc0{bottom:515.002000pt;}
.ybf{bottom:515.007133pt;}
.y134{bottom:515.647000pt;}
.y66{bottom:519.481467pt;}
.y65{bottom:519.491067pt;}
.y1e3{bottom:519.798267pt;}
.y1b8{bottom:521.081067pt;}
.y1b7{bottom:521.087433pt;}
.y93{bottom:522.040533pt;}
.y15e{bottom:524.927000pt;}
.y10a{bottom:525.232933pt;}
.y10b{bottom:525.241200pt;}
.ye4{bottom:531.345800pt;}
.y2f{bottom:531.649267pt;}
.y133{bottom:531.962000pt;}
.ybe{bottom:532.603700pt;}
.y64{bottom:535.806067pt;}
.y1e2{bottom:537.081600pt;}
.y1e1{bottom:537.400933pt;}
.y18e{bottom:539.319833pt;}
.y92{bottom:539.960000pt;}
.y132{bottom:540.601600pt;}
.y109{bottom:541.556933pt;}
.y15d{bottom:542.527133pt;}
.y131{bottom:548.281733pt;}
.ye3{bottom:548.940800pt;}
.ybd{bottom:550.198700pt;}
.y62{bottom:552.118600pt;}
.y63{bottom:552.121067pt;}
.y18c{bottom:557.238133pt;}
.y18d{bottom:557.240667pt;}
.y91{bottom:557.565133pt;}
.y108{bottom:557.880933pt;}
.y2e{bottom:557.885933pt;}
.y15c{bottom:560.132267pt;}
.y130{bottom:564.280800pt;}
.ye2{bottom:566.535800pt;}
.y61{bottom:568.121600pt;}
.y18b{bottom:574.526600pt;}
.y90{bottom:575.160133pt;}
.y1b6{bottom:575.166733pt;}
.y2d{bottom:575.477033pt;}
.ybc{bottom:576.761200pt;}
.y15b{bottom:577.727267pt;}
.y5{bottom:581.561600pt;}
.ye1{bottom:584.130800pt;}
.y12f{bottom:590.518000pt;}
.y1e0{bottom:591.800800pt;}
.y107{bottom:591.805900pt;}
.y1df{bottom:591.805933pt;}
.y18a{bottom:592.130400pt;}
.y8f{bottom:592.760267pt;}
.y1b5{bottom:592.761733pt;}
.y2c{bottom:593.242033pt;}
.ybb{bottom:594.361333pt;}
.y15a{bottom:595.322267pt;}
.y159{bottom:595.325933pt;}
.ye0{bottom:601.725800pt;}
.y60{bottom:603.011200pt;}
.y12e{bottom:607.806333pt;}
.y1de{bottom:609.399567pt;}
.y189{bottom:609.725400pt;}
.y106{bottom:609.726733pt;}
.y1b4{bottom:610.521333pt;}
.y2b{bottom:610.689400pt;}
.yba{bottom:611.961467pt;}
.yb9{bottom:611.971600pt;}
.y158{bottom:612.923400pt;}
.ydf{bottom:619.330933pt;}
.y8e{bottom:619.640133pt;}
.y5f{bottom:620.606200pt;}
.y12d{bottom:625.401333pt;}
.y188{bottom:627.322067pt;}
.y105{bottom:627.322867pt;}
.y1dd{bottom:627.330533pt;}
.y8d{bottom:627.960533pt;}
.y1b3{bottom:628.286333pt;}
.yb8{bottom:629.566600pt;}
.y157{bottom:630.518400pt;}
.y4{bottom:636.592867pt;}
.y2a{bottom:636.926067pt;}
.y8c{bottom:637.245400pt;}
.y5e{bottom:638.201200pt;}
.y5d{bottom:638.206333pt;}
.y12c{bottom:643.005233pt;}
.y104{bottom:644.606200pt;}
.y1dc{bottom:644.925533pt;}
.y1b2{bottom:645.881433pt;}
.yde{bottom:646.530933pt;}
.yb7{bottom:647.160233pt;}
.y156{bottom:647.801733pt;}
.y187{bottom:654.210400pt;}
.y29{bottom:654.526067pt;}
.y8b{bottom:654.845400pt;}
.y5c{bottom:655.806333pt;}
.y12b{bottom:660.600233pt;}
.y103{bottom:662.201200pt;}
.y1db{bottom:662.520533pt;}
.y1da{bottom:662.525667pt;}
.y1b1{bottom:663.807400pt;}
.ydd{bottom:664.125933pt;}
.y3{bottom:665.076700pt;}
.yb6{bottom:665.086200pt;}
.y186{bottom:671.805400pt;}
.y28{bottom:672.121067pt;}
.y8a{bottom:672.445533pt;}
.y5b{bottom:673.401333pt;}
.y5a{bottom:673.406467pt;}
.y155{bottom:675.000933pt;}
.y154{bottom:675.006067pt;}
.y12a{bottom:678.521067pt;}
.y102{bottom:679.801333pt;}
.y1d9{bottom:680.120667pt;}
.y1b0{bottom:681.406733pt;}
.ydc{bottom:681.720933pt;}
.yb5{bottom:682.677867pt;}
.y185{bottom:689.400400pt;}
.y27{bottom:690.040533pt;}
.y89{bottom:690.050800pt;}
.y59{bottom:691.001467pt;}
.y58{bottom:691.006600pt;}
.y153{bottom:692.606200pt;}
.y2{bottom:693.557633pt;}
.y184{bottom:707.005667pt;}
.y1d7{bottom:707.319967pt;}
.y1d8{bottom:707.321333pt;}
.y25{bottom:707.639300pt;}
.y26{bottom:707.640667pt;}
.y88{bottom:707.645800pt;}
.y57{bottom:708.601600pt;}
.y1af{bottom:708.606733pt;}
.ydb{bottom:708.919567pt;}
.yb4{bottom:709.240367pt;}
.y101{bottom:709.241733pt;}
.y100{bottom:709.246867pt;}
.y152{bottom:710.198667pt;}
.y129{bottom:712.121600pt;}
.y128{bottom:712.126467pt;}
.y1{bottom:722.041467pt;}
.y183{bottom:724.600667pt;}
.y87{bottom:725.240800pt;}
.y24{bottom:725.560133pt;}
.y56{bottom:726.201733pt;}
.yda{bottom:726.840400pt;}
.yff{bottom:726.841867pt;}
.yb3{bottom:727.161200pt;}
.y151{bottom:727.482000pt;}
.y127{bottom:728.441467pt;}
.y150{bottom:753.721733pt;}
.y1d6{bottom:759.481467pt;}
.y55{bottom:759.800800pt;}
.y182{bottom:763.641600pt;}
.y86{bottom:763.960933pt;}
.y23{bottom:764.280267pt;}
.y53{bottom:764.281733pt;}
.y54{bottom:764.601067pt;}
.y1ae{bottom:764.921867pt;}
.yd9{bottom:765.241200pt;}
.yb1{bottom:765.562000pt;}
.yb2{bottom:765.881333pt;}
.y126{bottom:766.521467pt;}
.h63{height:11.820312pt;}
.h7c{height:28.989583pt;}
.h16{height:31.289062pt;}
.h5d{height:38.242188pt;}
.h39{height:41.023438pt;}
.h5f{height:41.718750pt;}
.h5e{height:43.109375pt;}
.h51{height:43.183594pt;}
.h60{height:43.804688pt;}
.h86{height:43.816081pt;}
.h20{height:44.470052pt;}
.he{height:44.500000pt;}
.h2f{height:45.124023pt;}
.h7{height:45.146484pt;}
.h10{height:45.777995pt;}
.h76{height:45.790261pt;}
.h50{height:45.800781pt;}
.h85{height:45.890625pt;}
.h69{height:46.119792pt;}
.h6f{height:46.431966pt;}
.h23{height:46.455078pt;}
.h73{height:46.456011pt;}
.h71{height:46.456678pt;}
.h35{height:46.457211pt;}
.h87{height:46.457878pt;}
.h75{height:46.458811pt;}
.h3e{height:46.461878pt;}
.h74{height:46.463078pt;}
.h4a{height:46.585938pt;}
.h42{height:47.109375pt;}
.h4b{height:47.111508pt;}
.h14{height:47.703125pt;}
.h1f{height:47.704058pt;}
.h3d{height:47.739909pt;}
.h9{height:47.763672pt;}
.h30{height:47.976562pt;}
.h36{height:48.375000pt;}
.h49{height:48.417969pt;}
.h53{height:48.671875pt;}
.h6{height:49.046875pt;}
.h8{height:49.072266pt;}
.h25{height:49.367188pt;}
.h6a{height:49.683242pt;}
.h1c{height:49.718750pt;}
.h43{height:49.726562pt;}
.h5c{height:50.252484pt;}
.h3f{height:50.380859pt;}
.h5b{height:50.391393pt;}
.h5a{height:50.391926pt;}
.h59{height:50.397393pt;}
.h5{height:50.757812pt;}
.h81{height:50.934115pt;}
.h24{height:51.035156pt;}
.h29{height:51.045023pt;}
.h13{height:51.062500pt;}
.h7e{height:52.194115pt;}
.h80{height:52.201848pt;}
.h4{height:52.343750pt;}
.h3a{height:52.708333pt;}
.h70{height:52.845078pt;}
.h31{height:52.847878pt;}
.h34{height:52.853478pt;}
.h55{height:52.998047pt;}
.h68{height:53.493375pt;}
.h7f{height:53.500781pt;}
.h4c{height:53.513642pt;}
.h33{height:53.539062pt;}
.h57{height:53.652344pt;}
.hf{height:54.116484pt;}
.h3b{height:54.123078pt;}
.h2e{height:54.136678pt;}
.h19{height:54.933594pt;}
.h3c{height:55.401078pt;}
.h2d{height:55.587565pt;}
.hb{height:55.615234pt;}
.h2c{height:55.620701pt;}
.h7a{height:55.620834pt;}
.h67{height:55.621234pt;}
.h48{height:55.623101pt;}
.h7b{height:55.625000pt;}
.h46{height:55.625368pt;}
.hd{height:55.625901pt;}
.h47{height:55.627234pt;}
.h44{height:55.628568pt;}
.h18{height:55.630834pt;}
.h65{height:55.631234pt;}
.h4f{height:55.631768pt;}
.h7d{height:55.657901pt;}
.h32{height:56.269531pt;}
.h6b{height:56.320312pt;}
.h1d{height:56.649125pt;}
.h1e{height:56.651258pt;}
.h1a{height:56.785641pt;}
.h66{height:56.918568pt;}
.hc{height:56.923828pt;}
.h45{height:57.109375pt;}
.h1b{height:57.578125pt;}
.h79{height:57.710938pt;}
.h17{height:57.781250pt;}
.h58{height:58.232422pt;}
.h2b{height:58.453125pt;}
.h27{height:58.886719pt;}
.ha{height:59.125000pt;}
.h6d{height:59.541016pt;}
.h54{height:60.195312pt;}
.h83{height:60.468750pt;}
.h28{height:61.503906pt;}
.h84{height:62.781250pt;}
.h6e{height:62.812500pt;}
.h15{height:63.968750pt;}
.h2a{height:66.750000pt;}
.h72{height:69.320964pt;}
.h56{height:70.226562pt;}
.h64{height:79.960938pt;}
.h6c{height:85.523438pt;}
.h2{height:97.490234pt;}
.h3{height:97.501834pt;}
.h26{height:104.296875pt;}
.h0{height:825.842267pt;}
.h1{height:826.000000pt;}
.h11{height:826.480933pt;}
.h12{height:826.666667pt;}
.h41{height:828.000000pt;}
.h40{height:828.082267pt;}
.h37{height:828.402267pt;}
.h38{height:828.666667pt;}
.h21{height:829.042267pt;}
.h22{height:829.333333pt;}
.h4d{height:829.682267pt;}
.h4e{height:830.000000pt;}
.h52{height:830.322267pt;}
.h61{height:830.643600pt;}
.h62{height:830.666667pt;}
.h82{height:831.282267pt;}
.h78{height:831.333333pt;}
.h77{height:831.602267pt;}
.w3{width:534.000000pt;}
.w2{width:534.122747pt;}
.w1{width:536.000000pt;}
.w0{width:536.044080pt;}
.wa{width:537.962747pt;}
.w6{width:537.964080pt;}
.w7{width:538.000000pt;}
.w8{width:540.522747pt;}
.w9{width:540.666667pt;}
.w4{width:543.082747pt;}
.w5{width:543.333333pt;}
.xd6{left:-8.458720pt;}
.xb2{left:-3.658453pt;}
.x0{left:0.000000pt;}
.x2{left:35.693147pt;}
.x1{left:37.301547pt;}
.x94{left:38.261213pt;}
.x8c{left:39.540080pt;}
.x17{left:40.500747pt;}
.x22{left:41.443747pt;}
.x13{left:42.741947pt;}
.x61{left:44.022213pt;}
.x68{left:44.989680pt;}
.x80{left:45.942613pt;}
.x30{left:48.501680pt;}
.x25{left:54.261547pt;}
.x7{left:55.222480pt;}
.x4b{left:57.460747pt;}
.xf{left:58.742480pt;}
.xb6{left:60.021280pt;}
.x8b{left:61.301547pt;}
.x21{left:62.602980pt;}
.x60{left:64.502213pt;}
.x7b{left:65.459580pt;}
.xcb{left:66.425580pt;}
.x14{left:67.701413pt;}
.x15{left:69.307613pt;}
.x52{left:70.261947pt;}
.x56{left:71.216680pt;}
.x98{left:72.488680pt;}
.x97{left:73.459013pt;}
.xaa{left:75.070013pt;}
.x31{left:76.021813pt;}
.x35{left:76.981280pt;}
.x69{left:77.969180pt;}
.x62{left:78.901680pt;}
.x4c{left:81.460747pt;}
.x10{left:82.742480pt;}
.x27{left:87.862080pt;}
.x47{left:88.821547pt;}
.x91{left:90.418580pt;}
.x8d{left:91.382080pt;}
.xa4{left:92.341547pt;}
.x7f{left:95.542347pt;}
.x3{left:97.462747pt;}
.x36{left:99.060880pt;}
.xcc{left:100.021813pt;}
.x1c{left:101.621413pt;}
.xa5{left:102.901680pt;}
.xca{left:104.181947pt;}
.x28{left:105.141413pt;}
.x8e{left:106.100880pt;}
.x26{left:107.701947pt;}
.x75{left:108.661413pt;}
.xc6{left:109.941680pt;}
.xaf{left:114.101813pt;}
.x1d{left:121.141813pt;}
.x6b{left:123.062347pt;}
.x86{left:124.661947pt;}
.x92{left:128.501280pt;}
.x76{left:129.460747pt;}
.xc7{left:132.342080pt;}
.x6c{left:136.181413pt;}
.x8a{left:142.902080pt;}
.x3e{left:144.181013pt;}
.xdb{left:145.141813pt;}
.x87{left:147.060880pt;}
.x93{left:148.981280pt;}
.xb8{left:150.261547pt;}
.x78{left:154.741013pt;}
.xd0{left:158.581813pt;}
.x11{left:160.502213pt;}
.xa7{left:162.422613pt;}
.x3f{left:164.020747pt;}
.xb9{left:164.981680pt;}
.x53{left:167.221413pt;}
.x74{left:168.501813pt;}
.x6a{left:172.342613pt;}
.xd3{left:173.621413pt;}
.x4{left:177.462213pt;}
.xb7{left:178.741013pt;}
.xa6{left:179.701947pt;}
.x12{left:181.622347pt;}
.x4f{left:183.862080pt;}
.xd7{left:185.461680pt;}
.xb4{left:188.020747pt;}
.xae{left:189.942613pt;}
.xa1{left:191.540747pt;}
.xa3{left:193.141947pt;}
.xa2{left:196.661947pt;}
.x5{left:198.582347pt;}
.xd8{left:200.181947pt;}
.x55{left:202.100880pt;}
.x6d{left:203.061813pt;}
.xda{left:205.301547pt;}
.x66{left:206.581813pt;}
.x81{left:208.502213pt;}
.xd4{left:210.741947pt;}
.xa0{left:212.981680pt;}
.xd1{left:214.581280pt;}
.x5b{left:215.861547pt;}
.x59{left:218.741547pt;}
.x7a{left:219.701013pt;}
.x32{left:222.580880pt;}
.xab{left:224.502747pt;}
.x79{left:226.421680pt;}
.xb0{left:227.382613pt;}
.x5a{left:229.301547pt;}
.x71{left:231.221947pt;}
.xc3{left:232.821547pt;}
.x3b{left:235.382080pt;}
.x9b{left:236.341547pt;}
.x6{left:238.261947pt;}
.xce{left:240.180880pt;}
.x4d{left:242.420747pt;}
.xc0{left:244.021813pt;}
.x84{left:245.621413pt;}
.x40{left:246.580880pt;}
.x96{left:248.181947pt;}
.x58{left:249.141413pt;}
.xd{left:251.382613pt;}
.xd5{left:253.941680pt;}
.x37{left:254.901147pt;}
.x46{left:255.862080pt;}
.x3c{left:257.461680pt;}
.xe{left:260.022213pt;}
.x4e{left:262.581280pt;}
.x85{left:263.861547pt;}
.xb1{left:266.741547pt;}
.x50{left:272.181947pt;}
.x34{left:274.100880pt;}
.x65{left:276.661413pt;}
.x57{left:280.181413pt;}
.xc1{left:283.382080pt;}
.x7d{left:284.341547pt;}
.x88{left:286.581280pt;}
.x3d{left:287.861547pt;}
.xbd{left:290.420747pt;}
.x7e{left:291.702480pt;}
.x8f{left:293.940747pt;}
.x70{left:294.901680pt;}
.xac{left:296.181947pt;}
.x51{left:297.460747pt;}
.x19{left:299.701947pt;}
.xc2{left:303.541280pt;}
.xbe{left:307.701413pt;}
.x90{left:311.540747pt;}
.x43{left:317.621413pt;}
.x1a{left:320.181947pt;}
.x39{left:323.381147pt;}
.xb{left:326.262480pt;}
.xc5{left:327.862080pt;}
.xbb{left:332.341547pt;}
.xa8{left:334.902213pt;}
.xc{left:336.822480pt;}
.x2b{left:338.420747pt;}
.xc4{left:342.901680pt;}
.x44{left:344.501280pt;}
.x23{left:346.421680pt;}
.x5c{left:348.342080pt;}
.xa9{left:349.622347pt;}
.x7c{left:354.741947pt;}
.x67{left:360.182347pt;}
.x16{left:361.782080pt;}
.x48{left:366.901680pt;}
.x77{left:368.181947pt;}
.xb3{left:369.460747pt;}
.x38{left:370.741013pt;}
.x18{left:372.661413pt;}
.x24{left:373.620880pt;}
.x5f{left:374.581813pt;}
.xd2{left:376.181413pt;}
.x2e{left:378.421147pt;}
.x49{left:380.981680pt;}
.x4a{left:383.540880pt;}
.xc8{left:384.501680pt;}
.x63{left:385.462747pt;}
.x64{left:395.061813pt;}
.x2f{left:398.581813pt;}
.x5d{left:400.181413pt;}
.x9c{left:401.140880pt;}
.x6e{left:404.022213pt;}
.x9d{left:406.581280pt;}
.x99{left:409.141813pt;}
.x9e{left:411.381680pt;}
.x45{left:413.940747pt;}
.x2c{left:418.421680pt;}
.x29{left:423.221947pt;}
.xb5{left:425.140880pt;}
.x9a{left:426.741947pt;}
.x54{left:428.341547pt;}
.xcd{left:429.621813pt;}
.x6f{left:435.062347pt;}
.x33{left:438.901680pt;}
.x2d{left:441.781547pt;}
.x9f{left:444.661413pt;}
.xbf{left:445.620880pt;}
.xba{left:446.581813pt;}
.xd9{left:447.862080pt;}
.x1f{left:449.461680pt;}
.x2a{left:451.382080pt;}
.x5e{left:453.941147pt;}
.xdc{left:455.540880pt;}
.x82{left:457.462747pt;}
.x3a{left:459.381680pt;}
.xad{left:460.342613pt;}
.x72{left:467.701947pt;}
.x20{left:468.661413pt;}
.x95{left:470.901147pt;}
.x8{left:474.741947pt;}
.xc9{left:478.581280pt;}
.x41{left:479.540880pt;}
.x73{left:482.420747pt;}
.x9{left:484.021813pt;}
.x1b{left:485.621413pt;}
.xbc{left:486.580880pt;}
.xa{left:490.742480pt;}
.x83{left:492.342080pt;}
.x89{left:494.901147pt;}
.xcf{left:496.181413pt;}
.x1e{left:510.261547pt;}
.x42{left:547.061280pt;}
}




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