
    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_8bbc1110870c72a8583a9880.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dc2ff7901c9938af9e48a72e.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_81ebdf32514b6b8563a78dc4.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_dd95ed53aafe410a2593c7ba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dccbb07b1146902c7b35278d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fcd27b9f3f643d90a9db1dab.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_94ee84fd3ac6b334681021c8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0ab8cb446ec69663edaf889b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3907f18e8ab78393bfcac3e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4fcf8e33b9042a5063fc9ae1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_34d94687f981b3ff435c5b57.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a5642f44483f6743a9384f3a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_74d600941f040b2bcf984294.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dce3d8582e45f17c178f2c41.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_4794910bbeeb5a7e9bca5a20.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e0515f735a9003d3be64f19a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_21471ef40c1cf38a80def152.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_221c0bb338c72ff945548756.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_db4743cf06167c4bb34f05aa.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_6a55c3f0496692500b90eb8c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_746f819e09f9eaf21dccc15d.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_247351334e04a91c1d7b2c5f.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_421620cb98950e175d3afde0.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_2900bf2e64eb3228b9dd74da.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_d2968dc05c6d9a7011905da5.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_5e68fc46a9f7aa31e1b46082.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c89b9cba79413eac8b353bf5.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_c1ba4018d7cce1efbfed7ee4.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_21b36068acc2febc85d7b9d3.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_9df3fdb421b6b111b5c76edf.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_3c814e2c6e67a5b8a79b78c6.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_5e68fc46a9f7aa31e1b46082.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_8a4effe1484f95ec099de182.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_e0b7b56cebfda1a517073162.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_b7b71904c0b5dd7da3692580.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_9d86cd373f2e2f51b717c094.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_d2968dc05c6d9a7011905da5.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_cbac8ebdf512bcfdd1b914f7.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_b59c88563a498cc18a866010.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_8415bd0dd8e189d32d57dc73.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_22469942abd80f97ec203f75.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_eb22831d44e1a83139676657.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_f959b82027f9f4e32e743dc2.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_9d86cd373f2e2f51b717c094.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_cdc16342177bd9c7bc0f2cc4.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_0871fd3de04a03656ef8aa64.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_388c631cfd0e967a56c5b8ad.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_0eda7f76fc17bd294c632bb3.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_717367295dec7de034cfb11b.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_8415bd0dd8e189d32d57dc73.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_ca35b69d93ab3f9231a8249e.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;}
.m30{transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.161972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161972,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m68{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);}
.m34{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.m59{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);}
.m6b{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m11{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);}
.m79{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.m6a{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);}
.m1b{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m5d{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m3b{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m7c{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);}
.m21{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);}
.m5f{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m7{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);}
.m22{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);}
.m2a{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);}
.m31{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m48{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);}
.m33{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);}
.m39{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m32{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);}
.m2d{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);}
.m51{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);}
.m67{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m43{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);}
.m36{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);}
.m38{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m5c{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);}
.m4f{transform:matrix(0.267921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267921,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m88{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);}
.m82{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);}
.m27{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m83{transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.328358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328358,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.354478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354478,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.359155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359155,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.373239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373239,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.445652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445652,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.578313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578313,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.668478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668478,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.891304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.891304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.891304,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(1.336957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.336957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.336957,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-1.437750px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.437750px;}
.ls6e{letter-spacing:-17.979900px;}
.ls3b{letter-spacing:-14.683200px;}
.ls27{letter-spacing:-14.027475px;}
.ls8d{letter-spacing:-12.500250px;}
.ls1f{letter-spacing:-11.854500px;}
.ls9b{letter-spacing:-11.637900px;}
.lsb7{letter-spacing:-9.750075px;}
.lsaa{letter-spacing:-8.679750px;}
.ls6c{letter-spacing:-8.646900px;}
.lsaf{letter-spacing:-8.322975px;}
.ls57{letter-spacing:-8.248425px;}
.ls58{letter-spacing:-7.497600px;}
.ls5e{letter-spacing:-7.453650px;}
.ls61{letter-spacing:-7.365600px;}
.ls39{letter-spacing:-7.298175px;}
.ls9f{letter-spacing:-6.752100px;}
.lsb2{letter-spacing:-6.581700px;}
.ls97{letter-spacing:-6.468750px;}
.ls5a{letter-spacing:-6.390000px;}
.ls47{letter-spacing:-5.825550px;}
.ls95{letter-spacing:-5.710950px;}
.ls62{letter-spacing:-5.666625px;}
.lsa4{letter-spacing:-5.497350px;}
.ls69{letter-spacing:-5.482275px;}
.ls35{letter-spacing:-5.470200px;}
.ls98{letter-spacing:-5.322450px;}
.ls4b{letter-spacing:-5.250450px;}
.ls2b{letter-spacing:-5.060175px;}
.ls8e{letter-spacing:-4.976775px;}
.ls82{letter-spacing:-4.867350px;}
.ls9d{letter-spacing:-4.735500px;}
.ls9e{letter-spacing:-4.567725px;}
.lsa6{letter-spacing:-4.563000px;}
.ls5d{letter-spacing:-4.499625px;}
.ls10{letter-spacing:-4.374000px;}
.ls43{letter-spacing:-4.308825px;}
.ls74{letter-spacing:-4.200000px;}
.lsac{letter-spacing:-4.140000px;}
.ls6b{letter-spacing:-3.851700px;}
.ls8f{letter-spacing:-3.802050px;}
.ls3a{letter-spacing:-3.799650px;}
.ls36{letter-spacing:-3.748800px;}
.ls44{letter-spacing:-3.748650px;}
.ls53{letter-spacing:-3.747600px;}
.ls4a{letter-spacing:-3.733200px;}
.ls2c{letter-spacing:-3.613275px;}
.lsa8{letter-spacing:-3.609375px;}
.ls20{letter-spacing:-3.553200px;}
.ls91{letter-spacing:-3.468750px;}
.ls3f{letter-spacing:-3.398850px;}
.ls22{letter-spacing:-3.181500px;}
.lsa2{letter-spacing:-2.998125px;}
.ls1c{letter-spacing:-2.997975px;}
.ls33{letter-spacing:-2.992650px;}
.ls59{letter-spacing:-2.956500px;}
.ls4e{letter-spacing:-2.918175px;}
.lsad{letter-spacing:-2.912100px;}
.ls71{letter-spacing:-2.732400px;}
.ls19{letter-spacing:-2.630550px;}
.lsb4{letter-spacing:-2.562000px;}
.ls7c{letter-spacing:-2.534700px;}
.ls83{letter-spacing:-2.315250px;}
.lsa9{letter-spacing:-2.314350px;}
.ls92{letter-spacing:-2.284425px;}
.ls31{letter-spacing:-2.283075px;}
.ls60{letter-spacing:-2.260800px;}
.ls1d{letter-spacing:-2.252475px;}
.ls28{letter-spacing:-2.187900px;}
.ls4f{letter-spacing:-2.160000px;}
.ls87{letter-spacing:-2.133000px;}
.ls34{letter-spacing:-2.025000px;}
.ls68{letter-spacing:-2.004750px;}
.lsab{letter-spacing:-1.973025px;}
.ls42{letter-spacing:-1.968750px;}
.ls99{letter-spacing:-1.921500px;}
.ls1b{letter-spacing:-1.795800px;}
.ls26{letter-spacing:-1.609200px;}
.ls85{letter-spacing:-1.543500px;}
.lsb1{letter-spacing:-1.526400px;}
.ls96{letter-spacing:-1.522950px;}
.ls38{letter-spacing:-1.522050px;}
.ls1e{letter-spacing:-1.501650px;}
.ls16{letter-spacing:-1.500150px;}
.ls8b{letter-spacing:-1.499400px;}
.ls2f{letter-spacing:-1.498500px;}
.ls93{letter-spacing:-1.481850px;}
.ls45{letter-spacing:-1.479600px;}
.ls6f{letter-spacing:-1.462500px;}
.ls46{letter-spacing:-1.437750px;}
.ls3e{letter-spacing:-1.423500px;}
.ls1a{letter-spacing:-1.420200px;}
.ls52{letter-spacing:-1.397400px;}
.ls6d{letter-spacing:-1.387500px;}
.lsb5{letter-spacing:-1.380750px;}
.ls90{letter-spacing:-1.354200px;}
.ls84{letter-spacing:-1.338750px;}
.ls65{letter-spacing:-0.879750px;}
.ls7f{letter-spacing:-0.771750px;}
.ls9c{letter-spacing:-0.771450px;}
.ls50{letter-spacing:-0.770625px;}
.ls25{letter-spacing:-0.761475px;}
.ls94{letter-spacing:-0.761250px;}
.ls30{letter-spacing:-0.761025px;}
.ls7a{letter-spacing:-0.760350px;}
.ls21{letter-spacing:-0.750825px;}
.ls41{letter-spacing:-0.750750px;}
.lsb6{letter-spacing:-0.750075px;}
.ls72{letter-spacing:-0.740250px;}
.ls5b{letter-spacing:-0.740175px;}
.ls66{letter-spacing:-0.739800px;}
.ls2a{letter-spacing:-0.723450px;}
.lsae{letter-spacing:-0.722700px;}
.ls23{letter-spacing:-0.720000px;}
.ls70{letter-spacing:-0.711750px;}
.lsb0{letter-spacing:-0.708225px;}
.ls32{letter-spacing:-0.695325px;}
.ls48{letter-spacing:-0.676275px;}
.ls6a{letter-spacing:-0.673425px;}
.lsb8{letter-spacing:-0.672000px;}
.ls11{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.695325px;}
.ls5f{letter-spacing:0.718875px;}
.lsd{letter-spacing:0.723450px;}
.lsa0{letter-spacing:0.749250px;}
.ls1{letter-spacing:0.750075px;}
.ls7{letter-spacing:0.750825px;}
.ls15{letter-spacing:0.758400px;}
.ls3d{letter-spacing:0.761025px;}
.ls40{letter-spacing:0.761475px;}
.ls73{letter-spacing:0.771750px;}
.ls13{letter-spacing:0.796050px;}
.ls63{letter-spacing:0.797475px;}
.ls14{letter-spacing:0.801450px;}
.ls24{letter-spacing:0.809400px;}
.ls29{letter-spacing:0.953400px;}
.lse{letter-spacing:1.446900px;}
.lsa7{letter-spacing:1.480350px;}
.ls2{letter-spacing:1.500150px;}
.ls4{letter-spacing:1.501650px;}
.ls37{letter-spacing:1.522050px;}
.ls7d{letter-spacing:1.543500px;}
.ls89{letter-spacing:1.544250px;}
.ls12{letter-spacing:1.555950px;}
.lsa5{letter-spacing:1.565100px;}
.ls7e{letter-spacing:1.695750px;}
.lsf{letter-spacing:2.170350px;}
.ls0{letter-spacing:2.250225px;}
.ls9a{letter-spacing:2.252250px;}
.ls5{letter-spacing:2.252475px;}
.ls3c{letter-spacing:2.283075px;}
.ls67{letter-spacing:2.311875px;}
.ls81{letter-spacing:2.315250px;}
.ls75{letter-spacing:2.318400px;}
.lsb3{letter-spacing:2.348325px;}
.ls88{letter-spacing:2.348775px;}
.ls55{letter-spacing:2.778825px;}
.ls4d{letter-spacing:2.954925px;}
.ls6{letter-spacing:2.997975px;}
.ls18{letter-spacing:3.000300px;}
.ls78{letter-spacing:3.087000px;}
.ls2d{letter-spacing:3.613275px;}
.ls9{letter-spacing:3.748800px;}
.ls3{letter-spacing:3.750375px;}
.ls80{letter-spacing:3.858750px;}
.ls51{letter-spacing:4.487325px;}
.ls8{letter-spacing:4.499625px;}
.ls86{letter-spacing:5.123250px;}
.lsa{letter-spacing:5.250450px;}
.ls8a{letter-spacing:5.402250px;}
.ls56{letter-spacing:5.509125px;}
.lsa3{letter-spacing:5.542425px;}
.ls17{letter-spacing:6.000600px;}
.lsc{letter-spacing:6.001275px;}
.lsb{letter-spacing:6.752100px;}
.ls77{letter-spacing:7.396725px;}
.ls2e{letter-spacing:7.497600px;}
.ls79{letter-spacing:7.722750px;}
.ls49{letter-spacing:8.248425px;}
.lsa1{letter-spacing:8.557425px;}
.ls54{letter-spacing:8.999250px;}
.ls76{letter-spacing:9.024750px;}
.ls8c{letter-spacing:9.317025px;}
.ls64{letter-spacing:12.002550px;}
.ls4c{letter-spacing:12.748050px;}
.ls7b{letter-spacing:15.048450px;}
.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;}
._1d{margin-left:-76.477575px;}
._25{margin-left:-57.338850px;}
._1c{margin-left:-43.144275px;}
._2c{margin-left:-41.670450px;}
._2a{margin-left:-37.241025px;}
._26{margin-left:-35.497425px;}
._15{margin-left:-30.064350px;}
._24{margin-left:-24.121800px;}
._30{margin-left:-20.699550px;}
._27{margin-left:-19.140450px;}
._1f{margin-left:-17.853825px;}
._29{margin-left:-16.139625px;}
._23{margin-left:-13.915425px;}
._1a{margin-left:-10.292250px;}
._7{margin-left:-8.535450px;}
._17{margin-left:-7.100250px;}
._1b{margin-left:-6.075825px;}
._19{margin-left:-4.973325px;}
._2f{margin-left:-3.967200px;}
._12{margin-left:-2.885625px;}
._16{margin-left:-1.010175px;}
._4{width:1.877925px;}
._0{width:3.104325px;}
._10{width:4.909875px;}
._20{width:5.937375px;}
._d{width:6.947100px;}
._f{width:8.193300px;}
._13{width:9.493125px;}
._1{width:10.785750px;}
._11{width:11.806575px;}
._2{width:13.578000px;}
._b{width:15.176250px;}
._5{width:16.315500px;}
._14{width:17.475900px;}
._3{width:18.527400px;}
._6{width:19.956375px;}
._1e{width:21.038775px;}
._e{width:22.093725px;}
._9{width:23.311875px;}
._8{width:24.801750px;}
._a{width:26.550750px;}
._22{width:27.844425px;}
._c{width:29.021250px;}
._21{width:30.789150px;}
._2b{width:32.774700px;}
._18{width:37.565400px;}
._2e{width:51.110775px;}
._2d{width:59.331150px;}
._31{width:66.888450px;}
._28{width:78.113250px;}
.fc0{color:transparent;}
.fs1d{font-size:32.250000px;}
.fs18{font-size:34.500000px;}
.fs1a{font-size:36.750000px;}
.fs13{font-size:39.750000px;}
.fs12{font-size:42.000000px;}
.fs9{font-size:47.250000px;}
.fs19{font-size:48.000000px;}
.fs1f{font-size:48.750000px;}
.fs1c{font-size:49.500000px;}
.fs11{font-size:50.250000px;}
.fs10{font-size:51.000000px;}
.fse{font-size:51.750000px;}
.fsd{font-size:52.500000px;}
.fs8{font-size:53.250000px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:54.750000px;}
.fs20{font-size:54.915000px;}
.fs14{font-size:55.500000px;}
.fs6{font-size:56.250000px;}
.fs15{font-size:57.000000px;}
.fsf{font-size:57.750000px;}
.fs1{font-size:58.500000px;}
.fs5{font-size:59.250000px;}
.fs3{font-size:61.500000px;}
.fs17{font-size:62.250000px;}
.fs4{font-size:65.250000px;}
.fs2{font-size:66.000000px;}
.fs1e{font-size:67.500000px;}
.fsc{font-size:69.000000px;}
.fsa{font-size:86.250000px;}
.fs0{font-size:101.250000px;}
.fs16{font-size:104.250000px;}
.fs1b{font-size:209.250000px;}
.y0{bottom:0.000000px;}
.y206{bottom:57.622785px;}
.ybc{bottom:75.617873px;}
.y7d{bottom:76.702560px;}
.y3c{bottom:77.068148px;}
.yf9{bottom:78.142935px;}
.yf8{bottom:78.149423px;}
.y17e{bottom:80.303385px;}
.y13e{bottom:84.983685px;}
.y205{bottom:85.349273px;}
.y3b{bottom:85.703835px;}
.y1bd{bottom:86.791223px;}
.ybb{bottom:88.950210px;}
.yf7{bottom:91.097160px;}
.y7c{bottom:92.544285px;}
.y17c{bottom:92.898173px;}
.y17d{bottom:92.903685px;}
.y13d{bottom:97.951073px;}
.y203{bottom:98.297160px;}
.y204{bottom:98.302335px;}
.y1bc{bottom:99.744285px;}
.yba{bottom:101.543835px;}
.y24d{bottom:102.985298px;}
.yf6{bottom:104.063535px;}
.y7b{bottom:105.330510px;}
.y17b{bottom:106.223985px;}
.y13c{bottom:110.904135px;}
.y202{bottom:111.263535px;}
.y201{bottom:111.264660px;}
.yb9{bottom:114.137160px;}
.y1bb{bottom:115.223535px;}
.y24c{bottom:115.938360px;}
.yf5{bottom:117.023085px;}
.yf4{bottom:117.029423px;}
.y3a{bottom:117.383985px;}
.y17a{bottom:118.104135px;}
.y7a{bottom:121.704885px;}
.y200{bottom:123.139410px;}
.yb8{bottom:127.103535px;}
.y1ba{bottom:128.543835px;}
.y24b{bottom:128.904735px;}
.y24a{bottom:128.912197px;}
.yf3{bottom:129.982485px;}
.y39{bottom:129.990810px;}
.y79{bottom:134.664285px;}
.yb7{bottom:140.417010px;}
.y179{bottom:141.504472px;}
.y249{bottom:141.505822px;}
.y38{bottom:142.584435px;}
.y37{bottom:142.590772px;}
.y1b9{bottom:142.590960px;}
.yf2{bottom:142.950023px;}
.y1fe{bottom:146.537460px;}
.y1ff{bottom:146.542785px;}
.y78{bottom:146.903685px;}
.y13b{bottom:148.711223px;}
.yb6{bottom:153.383385px;}
.yb5{bottom:153.389873px;}
.y1b8{bottom:155.184585px;}
.y36{bottom:155.543835px;}
.y248{bottom:155.550510px;}
.yf1{bottom:155.904060px;}
.y178{bottom:155.908597px;}
.y1fd{bottom:159.503835px;}
.y1fc{bottom:159.504622px;}
.y13a{bottom:161.664285px;}
.y77{bottom:164.184135px;}
.yb4{bottom:166.349273px;}
.y247{bottom:168.144135px;}
.y35{bottom:168.501698px;}
.yf0{bottom:168.857122px;}
.y177{bottom:168.874972px;}
.y1b7{bottom:171.024735px;}
.y1fb{bottom:172.457685px;}
.y139{bottom:174.984735px;}
.y138{bottom:174.991260px;}
.yb3{bottom:179.302335px;}
.y246{bottom:180.750773px;}
.yef{bottom:182.182935px;}
.y34{bottom:183.985298px;}
.y1b6{bottom:184.345035px;}
.y176{bottom:184.716848px;}
.y1fa{bottom:186.137573px;}
.y137{bottom:187.583160px;}
.y76{bottom:192.983685px;}
.y244{bottom:193.698510px;}
.y245{bottom:193.703835px;}
.yb2{bottom:195.136973px;}
.y33{bottom:196.938360px;}
.y1b5{bottom:196.943685px;}
.y175{bottom:197.669910px;}
.yee{bottom:197.669985px;}
.y1f9{bottom:199.463385px;}
.y1f8{bottom:199.476210px;}
.y136{bottom:203.425035px;}
.y75{bottom:206.303985px;}
.y243{bottom:206.677260px;}
.yb1{bottom:208.469272px;}
.y32{bottom:209.904735px;}
.y174{bottom:210.622973px;}
.yed{bottom:210.982485px;}
.y1f7{bottom:212.069835px;}
.y135{bottom:216.379073px;}
.y74{bottom:218.904135px;}
.y242{bottom:219.630323px;}
.y1b4{bottom:219.630773px;}
.yb0{bottom:221.415285px;}
.yec{bottom:223.940348px;}
.y1f6{bottom:225.382335px;}
.y31{bottom:226.104135px;}
.y173{bottom:226.824285px;}
.y133{bottom:229.695998px;}
.y134{bottom:229.704885px;}
.y73{bottom:231.863685px;}
.y1b3{bottom:232.583835px;}
.y241{bottom:236.191073px;}
.yaf{bottom:237.257160px;}
.yeb{bottom:239.422785px;}
.y30{bottom:239.424435px;}
.y2f{bottom:239.428447px;}
.y1f5{bottom:240.863085px;}
.y132{bottom:244.459560px;}
.y72{bottom:244.819185px;}
.y1b2{bottom:245.557710px;}
.y240{bottom:249.144135px;}
.yae{bottom:250.223535px;}
.yad{bottom:250.229872px;}
.y2e{bottom:251.662635px;}
.y172{bottom:252.023085px;}
.yea{bottom:252.748298px;}
.y1f4{bottom:253.822635px;}
.y71{bottom:258.510772px;}
.y130{bottom:258.858360px;}
.y131{bottom:258.863685px;}
.y23f{bottom:261.742372px;}
.yac{bottom:263.182935px;}
.ye9{bottom:264.982485px;}
.y1f3{bottom:267.139935px;}
.y12e{bottom:271.284285px;}
.y1b1{bottom:271.458660px;}
.y70{bottom:271.463835px;}
.y12f{bottom:271.824735px;}
.y171{bottom:274.703835px;}
.y2d{bottom:275.784885px;}
.yab{bottom:276.142485px;}
.yaa{bottom:276.147735px;}
.y23e{bottom:277.938360px;}
.ye8{bottom:279.383985px;}
.y1f2{bottom:282.262935px;}
.y12d{bottom:283.698885px;}
.y6e{bottom:284.062260px;}
.y6f{bottom:284.064135px;}
.y1b0{bottom:284.425035px;}
.y170{bottom:287.663235px;}
.ya9{bottom:288.022485px;}
.y2c{bottom:289.105185px;}
.y2b{bottom:289.111672px;}
.y23c{bottom:290.904585px;}
.y23d{bottom:290.904735px;}
.ye7{bottom:290.909572px;}
.y1f0{bottom:295.218247px;}
.y1f1{bottom:295.222335px;}
.y6d{bottom:299.904135px;}
.y2a{bottom:302.064735px;}
.y29{bottom:302.071072px;}
.y16f{bottom:303.150472px;}
.y23b{bottom:303.684585px;}
.ye6{bottom:303.857310px;}
.ya8{bottom:305.302935px;}
.y1ef{bottom:309.262935px;}
.y1ee{bottom:309.270735px;}
.y12c{bottom:309.618323px;}
.y1af{bottom:313.224585px;}
.y6c{bottom:313.231073px;}
.y28{bottom:315.024135px;}
.y27{bottom:315.025297px;}
.y23a{bottom:315.744285px;}
.y16e{bottom:316.103535px;}
.ye5{bottom:316.823685px;}
.y1ed{bottom:321.864360px;}
.y12b{bottom:322.950810px;}
.y1ae{bottom:325.822822px;}
.y6b{bottom:326.190472px;}
.y26{bottom:328.351110px;}
.y239{bottom:329.423985px;}
.ye4{bottom:329.783235px;}
.y16d{bottom:332.663835px;}
.y12a{bottom:335.544435px;}
.y69{bottom:339.141847px;}
.y6a{bottom:339.143535px;}
.y25{bottom:340.944735px;}
.y1ad{bottom:342.024135px;}
.y1ac{bottom:342.030622px;}
.ye3{bottom:343.103535px;}
.y16c{bottom:344.543835px;}
.y1ec{bottom:344.548860px;}
.ya7{bottom:346.344510px;}
.y129{bottom:348.499747px;}
.y23{bottom:353.903572px;}
.y24{bottom:353.904135px;}
.y68{bottom:354.624285px;}
.y1ab{bottom:354.983685px;}
.ye2{bottom:356.069422px;}
.y1eb{bottom:357.142485px;}
.y16b{bottom:357.503385px;}
.y238{bottom:357.864285px;}
.y237{bottom:357.870622px;}
.ya6{bottom:359.843385px;}
.y128{bottom:362.545597px;}
.y22{bottom:366.856635px;}
.y1aa{bottom:367.224585px;}
.y67{bottom:367.944735px;}
.ye1{bottom:369.017122px;}
.y1ea{bottom:370.462785px;}
.y236{bottom:370.818510px;}
.ya5{bottom:372.257160px;}
.y127{bottom:375.498660px;}
.y16a{bottom:380.539035px;}
.y66{bottom:381.263385px;}
.y21{bottom:382.339072px;}
.ye0{bottom:382.342935px;}
.y234{bottom:383.779185px;}
.y235{bottom:383.784885px;}
.ya4{bottom:385.223535px;}
.y1e9{bottom:386.295698px;}
.y126{bottom:388.459335px;}
.y1a9{bottom:393.504435px;}
.y169{bottom:393.505410px;}
.y20{bottom:395.677710px;}
.y233{bottom:397.470922px;}
.ydf{bottom:398.182935px;}
.ya3{bottom:398.916098px;}
.y1e8{bottom:399.980948px;}
.y125{bottom:402.144585px;}
.y1a8{bottom:406.111072px;}
.y168{bottom:406.458472px;}
.y65{bottom:407.183985px;}
.y1f{bottom:408.271335px;}
.y232{bottom:410.423985px;}
.y231{bottom:410.430323px;}
.yde{bottom:411.862635px;}
.ya2{bottom:411.869160px;}
.y124{bottom:415.104135px;}
.y123{bottom:415.110472px;}
.y1e7{bottom:415.463385px;}
.y1a7{bottom:419.059897px;}
.y167{bottom:419.778547px;}
.y63{bottom:420.138022px;}
.y64{bottom:420.143535px;}
.y1e{bottom:421.578660px;}
.y22f{bottom:423.372510px;}
.y230{bottom:423.383385px;}
.ya1{bottom:424.462785px;}
.ya0{bottom:424.469272px;}
.ydd{bottom:427.338022px;}
.y122{bottom:428.063535px;}
.y1e6{bottom:428.783685px;}
.y1a6{bottom:433.104585px;}
.y62{bottom:433.463835px;}
.y166{bottom:433.823235px;}
.y165{bottom:433.824360px;}
.y1d{bottom:434.542972px;}
.y22e{bottom:436.338885px;}
.y9f{bottom:437.422335px;}
.ydc{bottom:440.663835px;}
.y1e5{bottom:441.382335px;}
.y121{bottom:444.270922px;}
.y1a5{bottom:446.059897px;}
.y61{bottom:446.778585px;}
.y163{bottom:447.317760px;}
.y164{bottom:447.323235px;}
.y22d{bottom:450.024135px;}
.y1c{bottom:450.744285px;}
.y9e{bottom:453.623235px;}
.ydb{bottom:453.629722px;}
.y120{bottom:457.223985px;}
.y162{bottom:460.097760px;}
.y1a4{bottom:460.111072px;}
.y60{bottom:460.463835px;}
.y22c{bottom:462.970935px;}
.y1b{bottom:463.703835px;}
.y1e4{bottom:464.789572px;}
.yda{bottom:466.576222px;}
.y9c{bottom:466.577273px;}
.y9d{bottom:466.582785px;}
.y11f{bottom:470.182935px;}
.y161{bottom:473.058623px;}
.y1a3{bottom:473.064135px;}
.y5f{bottom:473.070210px;}
.y22b{bottom:475.937310px;}
.y1a{bottom:477.024135px;}
.y1e3{bottom:477.742635px;}
.yd9{bottom:479.183160px;}
.y9b{bottom:479.903085px;}
.y1a2{bottom:486.018172px;}
.y160{bottom:486.384435px;}
.y11e{bottom:486.743685px;}
.y5e{bottom:489.630960px;}
.y19{bottom:490.344585px;}
.y1e2{bottom:490.697947px;}
.y22a{bottom:492.498060px;}
.y9a{bottom:495.743235px;}
.y1a1{bottom:499.343985px;}
.y11c{bottom:500.059485px;}
.y11d{bottom:500.064135px;}
.y5d{bottom:502.230735px;}
.y15f{bottom:504.015435px;}
.y1e1{bottom:504.741472px;}
.y229{bottom:505.468860px;}
.y99{bottom:509.063535px;}
.y11b{bottom:512.653110px;}
.y1a0{bottom:515.183985px;}
.y5c{bottom:515.543235px;}
.y18{bottom:516.630772px;}
.y15e{bottom:517.341248px;}
.y228{bottom:518.608298px;}
.y1e0{bottom:520.942785px;}
.y98{bottom:522.023085px;}
.y19f{bottom:528.499073px;}
.y17{bottom:529.578660px;}
.y5a{bottom:531.738923px;}
.y5b{bottom:531.744285px;}
.y15c{bottom:532.818323px;}
.y15d{bottom:532.823685px;}
.y1df{bottom:533.895847px;}
.y97{bottom:534.260985px;}
.y227{bottom:534.623235px;}
.y19e{bottom:541.823010px;}
.y16{bottom:542.545035px;}
.y59{bottom:545.064735px;}
.y15b{bottom:546.144135px;}
.y1de{bottom:547.221660px;}
.yd8{bottom:547.582785px;}
.y226{bottom:547.584435px;}
.y11a{bottom:551.898360px;}
.y15{bottom:555.504435px;}
.y19d{bottom:557.664885px;}
.y58{bottom:558.024135px;}
.y15a{bottom:558.744285px;}
.y225{bottom:560.184585px;}
.yd7{bottom:560.548860px;}
.y1dd{bottom:563.063535px;}
.y119{bottom:564.858997px;}
.y14{bottom:568.463835px;}
.y13{bottom:568.464810px;}
.y19c{bottom:570.624435px;}
.y19b{bottom:570.630772px;}
.yd5{bottom:573.136973px;}
.yd6{bottom:573.142485px;}
.y224{bottom:573.503385px;}
.y1db{bottom:576.377010px;}
.y1dc{bottom:576.563535px;}
.y118{bottom:578.898360px;}
.y159{bottom:581.790585px;}
.y12{bottom:581.790622px;}
.y19a{bottom:583.583835px;}
.y57{bottom:583.944585px;}
.yd4{bottom:586.462785px;}
.y1da{bottom:589.343385px;}
.y117{bottom:591.871223px;}
.y96{bottom:592.945073px;}
.y11{bottom:594.738510px;}
.y158{bottom:595.103085px;}
.y199{bottom:596.183985px;}
.y56{bottom:596.724585px;}
.yd3{bottom:599.783235px;}
.y1d9{bottom:601.934835px;}
.y223{bottom:602.310735px;}
.y115{bottom:604.817047px;}
.y116{bottom:604.824285px;}
.y95{bottom:606.803385px;}
.y10{bottom:607.711223px;}
.y157{bottom:608.070472px;}
.y55{bottom:609.858510px;}
.yd2{bottom:612.742635px;}
.y222{bottom:615.623235px;}
.y94{bottom:618.865335px;}
.y198{bottom:619.591185px;}
.yf{bottom:620.675235px;}
.y114{bottom:621.018360px;}
.y156{bottom:621.023535px;}
.y54{bottom:622.824885px;}
.y53{bottom:622.831035px;}
.y1d8{bottom:624.978772px;}
.yd1{bottom:625.703835px;}
.y220{bottom:628.578735px;}
.y221{bottom:628.584435px;}
.y197{bottom:632.903685px;}
.y93{bottom:632.910022px;}
.y113{bottom:633.990885px;}
.y155{bottom:635.064135px;}
.y52{bottom:636.143085px;}
.y1d7{bottom:638.291272px;}
.yd0{bottom:639.020760px;}
.ye{bottom:640.470923px;}
.y21f{bottom:642.263985px;}
.y92{bottom:645.863085px;}
.y91{bottom:645.864247px;}
.y196{bottom:645.864735px;}
.y112{bottom:647.298210px;}
.y154{bottom:648.023535px;}
.y1d6{bottom:651.257647px;}
.y51{bottom:652.703835px;}
.yd{bottom:653.423985px;}
.ycf{bottom:654.858585px;}
.y21e{bottom:655.045147px;}
.y90{bottom:658.817310px;}
.y195{bottom:658.826535px;}
.y111{bottom:660.262522px;}
.y153{bottom:661.343048px;}
.y1d5{bottom:665.302335px;}
.y50{bottom:665.664885px;}
.yc{bottom:666.385035px;}
.y21c{bottom:668.182673px;}
.y21d{bottom:668.184585px;}
.yce{bottom:668.542110px;}
.y8f{bottom:671.783685px;}
.y194{bottom:672.871223px;}
.y152{bottom:674.668860px;}
.y110{bottom:676.458660px;}
.y1d4{bottom:678.263385px;}
.y4f{bottom:678.622373px;}
.yb{bottom:679.885035px;}
.ycd{bottom:684.383985px;}
.y21b{bottom:684.390060px;}
.y8e{bottom:684.735998px;}
.y193{bottom:685.830623px;}
.y10f{bottom:689.425035px;}
.y151{bottom:690.870173px;}
.y1d3{bottom:691.583835px;}
.y1d2{bottom:691.596660px;}
.ya{bottom:694.464435px;}
.y4d{bottom:694.818323px;}
.y4e{bottom:694.823685px;}
.y21a{bottom:697.343122px;}
.ycc{bottom:697.343385px;}
.y191{bottom:698.778510px;}
.y192{bottom:698.783685px;}
.y8d{bottom:700.577873px;}
.y10e{bottom:702.018060px;}
.y150{bottom:703.823235px;}
.y1d1{bottom:704.549723px;}
.y4c{bottom:708.144135px;}
.y9{bottom:709.225185px;}
.y8{bottom:709.231522px;}
.ycb{bottom:710.663835px;}
.y190{bottom:711.751223px;}
.y219{bottom:713.538923px;}
.y8c{bottom:713.908110px;}
.y14f{bottom:717.141810px;}
.y1d0{bottom:717.502785px;}
.y4b{bottom:721.103535px;}
.y7{bottom:722.184585px;}
.y18f{bottom:724.703835px;}
.y10d{bottom:726.859185px;}
.y218{bottom:726.864735px;}
.y8b{bottom:727.220610px;}
.y1ce{bottom:730.821172px;}
.y1cf{bottom:730.823235px;}
.y14e{bottom:732.983685px;}
.y6{bottom:735.505035px;}
.yca{bottom:736.582785px;}
.y217{bottom:740.183535px;}
.y216{bottom:740.190060px;}
.y10c{bottom:740.544435px;}
.y10b{bottom:740.550772px;}
.y18e{bottom:741.270923px;}
.y8a{bottom:743.062485px;}
.y14d{bottom:746.663235px;}
.y1cd{bottom:747.017122px;}
.y4a{bottom:747.378210px;}
.y215{bottom:752.783685px;}
.y109{bottom:753.492960px;}
.y10a{bottom:753.503835px;}
.y18d{bottom:754.218623px;}
.y89{bottom:756.382785px;}
.y88{bottom:756.389460px;}
.y14c{bottom:758.904135px;}
.y1cc{bottom:760.341060px;}
.y49{bottom:760.344585px;}
.y108{bottom:766.459335px;}
.y214{bottom:766.463385px;}
.y18c{bottom:767.544435px;}
.y4{bottom:768.263010px;}
.y5{bottom:768.264585px;}
.y87{bottom:768.983085px;}
.y48{bottom:773.303985px;}
.y47{bottom:773.310473px;}
.y1cb{bottom:776.177573px;}
.y14b{bottom:779.429460px;}
.y107{bottom:780.139222px;}
.y3{bottom:784.824885px;}
.yc9{bottom:785.543385px;}
.yc8{bottom:785.544397px;}
.y46{bottom:786.263535px;}
.y86{bottom:786.622785px;}
.y1ca{bottom:789.503385px;}
.y1c9{bottom:789.509723px;}
.y14a{bottom:792.017573px;}
.y106{bottom:793.465035px;}
.y213{bottom:795.265560px;}
.y18a{bottom:797.778772px;}
.y18b{bottom:797.784285px;}
.yc7{bottom:798.497460px;}
.y1c7{bottom:802.457122px;}
.y1c8{bottom:802.462785px;}
.y45{bottom:802.816448px;}
.y148{bottom:805.338023px;}
.y149{bottom:805.343385px;}
.y105{bottom:806.419073px;}
.y212{bottom:808.578060px;}
.y189{bottom:811.104585px;}
.yc6{bottom:811.463835px;}
.y1c6{bottom:815.064060px;}
.y44{bottom:815.782823px;}
.y147{bottom:818.658135px;}
.y104{bottom:819.744885px;}
.y211{bottom:821.538735px;}
.yc5{bottom:824.058435px;}
.y188{bottom:824.064135px;}
.y2{bottom:825.145185px;}
.y85{bottom:827.664210px;}
.y43{bottom:831.984135px;}
.y146{bottom:832.338023px;}
.y210{bottom:835.230473px;}
.y103{bottom:835.944135px;}
.yc4{bottom:837.741960px;}
.y84{bottom:840.617273px;}
.y1c5{bottom:841.342935px;}
.y42{bottom:845.304585px;}
.y145{bottom:845.664998px;}
.y20f{bottom:848.183535px;}
.y102{bottom:848.898172px;}
.y187{bottom:850.350323px;}
.y1{bottom:853.583835px;}
.yc3{bottom:853.589985px;}
.y83{bottom:853.949422px;}
.y1c4{bottom:854.663235px;}
.y41{bottom:858.263985px;}
.y144{bottom:858.618060px;}
.y20e{bottom:861.144585px;}
.y20d{bottom:861.151073px;}
.y101{bottom:862.229872px;}
.y186{bottom:863.298210px;}
.y82{bottom:866.897310px;}
.yc2{bottom:866.899485px;}
.y1c3{bottom:867.983685px;}
.y143{bottom:871.590322px;}
.y20c{bottom:874.116547px;}
.y184{bottom:876.259073px;}
.y185{bottom:876.264585px;}
.y100{bottom:878.790623px;}
.y81{bottom:879.863685px;}
.y1c2{bottom:881.302335px;}
.yc1{bottom:882.022485px;}
.y40{bottom:884.550323px;}
.y142{bottom:884.902822px;}
.y20b{bottom:887.069610px;}
.y182{bottom:889.584135px;}
.y183{bottom:889.584885px;}
.yfe{bottom:891.738323px;}
.yff{bottom:891.743685px;}
.y80{bottom:892.817723px;}
.y1c1{bottom:894.258023px;}
.yc0{bottom:896.063085px;}
.y3f{bottom:897.498060px;}
.y141{bottom:901.110473px;}
.y181{bottom:902.537198px;}
.y20a{bottom:903.270923px;}
.yfd{bottom:905.064135px;}
.yfc{bottom:905.070473px;}
.y7f{bottom:906.143535px;}
.y1c0{bottom:907.583835px;}
.ybf{bottom:909.022485px;}
.y3e{bottom:910.458885px;}
.y140{bottom:914.058173px;}
.y209{bottom:916.223985px;}
.y208{bottom:916.230473px;}
.yfb{bottom:918.023535px;}
.y180{bottom:918.738510px;}
.y7e{bottom:918.743685px;}
.y1bf{bottom:920.537873px;}
.ybd{bottom:921.622785px;}
.y3d{bottom:924.144135px;}
.y13f{bottom:927.383985px;}
.y207{bottom:929.183535px;}
.yfa{bottom:930.984735px;}
.y17f{bottom:931.704885px;}
.ybe{bottom:933.143535px;}
.y1be{bottom:933.863685px;}
.h60{height:31.635864px;}
.h48{height:35.982422px;}
.h4a{height:36.068115px;}
.h1f{height:41.458008px;}
.h1e{height:43.804688px;}
.h49{height:47.109375px;}
.h5f{height:48.557373px;}
.hc{height:49.280273px;}
.h1d{height:49.317627px;}
.h34{height:50.053711px;}
.h68{height:50.062500px;}
.h3c{height:50.642578px;}
.h2d{height:50.789795px;}
.h36{height:51.398438px;}
.h58{height:51.500244px;}
.h1a{height:51.525879px;}
.h4f{height:51.626953px;}
.h12{height:51.884766px;}
.h37{height:52.154297px;}
.h5a{height:52.235962px;}
.h10{height:52.261963px;}
.h29{height:52.262563px;}
.h28{height:52.263763px;}
.h52{height:52.264363px;}
.h5b{height:52.265713px;}
.h6b{height:52.266613px;}
.h44{height:52.268863px;}
.h63{height:52.269463px;}
.h73{height:52.269613px;}
.h19{height:52.270213px;}
.h43{height:52.273963px;}
.h4c{height:52.275313px;}
.h45{height:52.278163px;}
.h54{height:52.278313px;}
.h64{height:52.278913px;}
.h13{height:52.282663px;}
.h23{height:52.283263px;}
.h35{height:52.283413px;}
.h2b{height:52.284013px;}
.h22{height:52.284163px;}
.h53{height:52.284763px;}
.h50{height:52.284913px;}
.h47{height:52.288213px;}
.h3d{height:52.290163px;}
.h27{height:52.290913px;}
.h5c{height:52.296763px;}
.h55{height:52.297513px;}
.h71{height:52.312963px;}
.h2e{height:52.409180px;}
.h31{height:52.625977px;}
.h30{height:52.910156px;}
.h5e{height:52.932056px;}
.h3e{height:52.971680px;}
.h14{height:52.998047px;}
.h1c{height:53.191406px;}
.hb{height:53.666016px;}
.h3b{height:53.699713px;}
.h65{height:53.707213px;}
.h59{height:53.707397px;}
.h15{height:53.734131px;}
.h72{height:53.896069px;}
.h18{height:53.973633px;}
.hf{height:54.108398px;}
.he{height:54.421875px;}
.h51{height:54.443115px;}
.h26{height:54.470215px;}
.h16{height:54.755859px;}
.h46{height:54.849609px;}
.h24{height:55.177734px;}
.h17{height:55.206299px;}
.h69{height:55.538086px;}
.h25{height:55.933594px;}
.h38{height:56.320312px;}
.h2a{height:56.332031px;}
.h6f{height:56.650269px;}
.h3a{height:56.678467px;}
.h39{height:56.689453px;}
.h1b{height:57.073242px;}
.h9{height:57.102539px;}
.ha{height:57.108839px;}
.h2c{height:57.414551px;}
.h5d{height:57.884766px;}
.h6c{height:58.196672px;}
.h70{height:58.555664px;}
.h8{height:58.666992px;}
.h41{height:59.712891px;}
.h3{height:61.013672px;}
.h7{height:61.795898px;}
.h5{height:64.142578px;}
.h42{height:64.924805px;}
.h6{height:68.053711px;}
.h4{height:68.835938px;}
.h6a{height:70.400391px;}
.h11{height:71.964844px;}
.hd{height:89.956055px;}
.h2{height:105.600586px;}
.h2f{height:108.729492px;}
.h4b{height:218.241211px;}
.h6d{height:1019.971185px;}
.h6e{height:1020.000000px;}
.h32{height:1022.851185px;}
.h33{height:1023.000000px;}
.h61{height:1024.292685px;}
.h62{height:1024.500000px;}
.h66{height:1026.451185px;}
.h67{height:1026.750000px;}
.h3f{height:1027.171185px;}
.h40{height:1027.500000px;}
.h20{height:1027.891185px;}
.h21{height:1028.250000px;}
.h1{height:1029.000000px;}
.h0{height:1029.331185px;}
.h56{height:1041.571185px;}
.h57{height:1041.750000px;}
.h4d{height:1043.731185px;}
.h4e{height:1044.000000px;}
.w3{width:663.000000px;}
.w2{width:663.193260px;}
.wb{width:664.500000px;}
.wa{width:664.633260px;}
.w9{width:665.250000px;}
.w8{width:665.353260px;}
.w5{width:666.000000px;}
.w4{width:666.071760px;}
.w0{width:672.553260px;}
.w1{width:672.750000px;}
.w6{width:675.433260px;}
.w7{width:675.750000px;}
.x0{left:0.000000px;}
.x118{left:28.004610px;}
.x3c{left:36.292598px;}
.x8{left:38.085060px;}
.xb7{left:39.511222px;}
.x84{left:40.604760px;}
.x3a{left:55.724760px;}
.x112{left:56.818448px;}
.x116{left:57.884385px;}
.xed{left:64.364910px;}
.x23{left:65.444910px;}
.x12{left:66.520373px;}
.x35{left:67.604760px;}
.x81{left:68.684985px;}
.x90{left:70.113510px;}
.x3b{left:76.604160px;}
.xc2{left:79.484760px;}
.x122{left:80.564310px;}
.xce{left:82.724760px;}
.x114{left:83.814547px;}
.xf8{left:84.874410px;}
.x10f{left:86.677785px;}
.xd1{left:89.204460px;}
.xe4{left:90.285510px;}
.x24{left:91.367797px;}
.x3f{left:92.444310px;}
.x15{left:93.525360px;}
.x85{left:95.337248px;}
.x9{left:96.404310px;}
.xa{left:97.485622px;}
.x25{left:100.725210px;}
.xef{left:101.806260px;}
.x8e{left:109.724760px;}
.xb4{left:111.885210px;}
.xc0{left:113.684760px;}
.x26{left:114.764160px;}
.x96{left:116.565360px;}
.xcf{left:117.619073px;}
.x99{left:118.725810px;}
.x3d{left:120.525360px;}
.x3e{left:121.607047px;}
.x8f{left:123.045060px;}
.x1c{left:125.564760px;}
.x102{left:128.086110px;}
.xbb{left:130.244910px;}
.x113{left:132.764610px;}
.xf0{left:134.204910px;}
.x94{left:135.645210px;}
.xd7{left:137.444910px;}
.x108{left:139.592197px;}
.x89{left:140.684760px;}
.x5b{left:141.764160px;}
.xa7{left:142.845210px;}
.x2d{left:144.644760px;}
.x1d{left:145.724160px;}
.x42{left:147.164460px;}
.x63{left:148.245510px;}
.x5e{left:150.765210px;}
.x2{left:153.644160px;}
.xd8{left:154.725210px;}
.x50{left:157.244910px;}
.x6d{left:158.324310px;}
.x11f{left:159.764610px;}
.xf7{left:161.204910px;}
.xc5{left:162.284310px;}
.x2e{left:164.084010px;}
.x1e{left:165.885210px;}
.xf5{left:166.966260px;}
.xd2{left:169.125060px;}
.x10d{left:170.926260px;}
.xf3{left:172.364910px;}
.x6a{left:173.805210px;}
.x51{left:174.884610px;}
.x43{left:178.124460px;}
.xde{left:179.924010px;}
.xba{left:181.725210px;}
.x10e{left:183.885660px;}
.x2f{left:186.405360px;}
.xd9{left:187.844010px;}
.xd3{left:189.645210px;}
.x13{left:191.444910px;}
.x9d{left:193.605360px;}
.x16{left:195.404910px;}
.x95{left:197.204460px;}
.xdf{left:199.004010px;}
.x120{left:200.805210px;}
.x1{left:201.884610px;}
.xf4{left:204.765210px;}
.x74{left:205.844610px;}
.x14{left:207.284910px;}
.x5f{left:208.364310px;}
.xd4{left:209.804610px;}
.x44{left:211.244910px;}
.x17{left:213.764610px;}
.x119{left:215.564160px;}
.x6e{left:217.365360px;}
.xe0{left:219.165060px;}
.xe7{left:220.244460px;}
.x91{left:221.325510px;}
.xb3{left:224.204460px;}
.x109{left:225.285510px;}
.xd0{left:227.085060px;}
.xd6{left:228.164460px;}
.x4e{left:229.604760px;}
.x11a{left:231.765210px;}
.x3{left:232.844610px;}
.xda{left:233.924010px;}
.x60{left:235.005060px;}
.x45{left:236.445360px;}
.x8a{left:238.244910px;}
.xa0{left:240.766260px;}
.x38{left:242.204910px;}
.x123{left:243.284310px;}
.x10a{left:245.085660px;}
.xb6{left:246.885210px;}
.x4f{left:247.964610px;}
.x7a{left:249.044010px;}
.x11c{left:250.125060px;}
.x106{left:252.285510px;}
.xbc{left:254.805210px;}
.x4{left:255.884610px;}
.x46{left:257.324910px;}
.x39{left:258.404310px;}
.xd{left:259.485360px;}
.x92{left:260.924010px;}
.xb5{left:262.364310px;}
.x82{left:263.804610px;}
.x61{left:265.244910px;}
.xaf{left:266.324310px;}
.x75{left:268.484760px;}
.x11d{left:269.925210px;}
.x9e{left:271.006260px;}
.xab{left:272.085660px;}
.x7b{left:273.885210px;}
.xe{left:275.325510px;}
.x47{left:276.764160px;}
.x115{left:277.845210px;}
.xb0{left:278.924610px;}
.xb1{left:280.004010px;}
.x76{left:281.085060px;}
.x11e{left:282.884610px;}
.xf{left:283.964010px;}
.x7f{left:286.124460px;}
.x103{left:287.205510px;}
.x77{left:288.284910px;}
.x6f{left:289.364310px;}
.x10{left:291.165510px;}
.x93{left:292.604160px;}
.xe2{left:293.685210px;}
.x7c{left:294.764610px;}
.x21{left:295.844010px;}
.xb2{left:297.284310px;}
.xea{left:299.804160px;}
.xbe{left:301.964610px;}
.x117{left:303.404910px;}
.x62{left:304.845210px;}
.x8d{left:306.285510px;}
.x80{left:307.364910px;}
.xca{left:309.164460px;}
.xdd{left:310.245510px;}
.xc4{left:312.045060px;}
.x7d{left:314.205510px;}
.x18{left:316.005060px;}
.x52{left:317.445360px;}
.x48{left:318.884010px;}
.x5{left:319.965060px;}
.xae{left:321.766260px;}
.xf6{left:324.285960px;}
.x2a{left:325.365360px;}
.xcb{left:327.165060px;}
.x7e{left:328.244460px;}
.xbf{left:331.845210px;}
.x11{left:333.285510px;}
.x19{left:335.444310px;}
.xe5{left:336.884610px;}
.x2b{left:340.124460px;}
.x6{left:343.364310px;}
.x70{left:345.165510px;}
.x27{left:349.125510px;}
.x9c{left:350.204910px;}
.x53{left:351.284310px;}
.x83{left:353.084010px;}
.x22{left:355.964610px;}
.x49{left:357.764160px;}
.xeb{left:361.004010px;}
.x111{left:367.846260px;}
.xb{left:368.924010px;}
.x8b{left:370.725210px;}
.xa1{left:375.405360px;}
.x54{left:376.484760px;}
.x1a{left:379.724760px;}
.xb8{left:381.165060px;}
.x78{left:383.684760px;}
.xc{left:385.484310px;}
.x72{left:386.565360px;}
.x8c{left:388.724160px;}
.xee{left:390.886260px;}
.xf2{left:392.685810px;}
.xa2{left:393.765210px;}
.x1b{left:395.205510px;}
.xe3{left:396.284910px;}
.x55{left:397.725210px;}
.xb9{left:399.884010px;}
.x7{left:401.685210px;}
.x86{left:404.564310px;}
.x73{left:405.645210px;}
.xf1{left:406.724760px;}
.xc3{left:408.165060px;}
.x110{left:409.605360px;}
.xac{left:410.684760px;}
.xa8{left:413.206110px;}
.xe6{left:415.004010px;}
.x56{left:417.164460px;}
.xec{left:419.324910px;}
.x121{left:420.765210px;}
.x11b{left:422.205510px;}
.xad{left:424.365960px;}
.x4c{left:425.804610px;}
.x33{left:427.604160px;}
.xf9{left:429.046110px;}
.x57{left:431.925060px;}
.xe8{left:433.365510px;}
.x40{left:436.964610px;}
.xa9{left:438.404910px;}
.x5c{left:440.924610px;}
.x28{left:442.004010px;}
.xfe{left:443.445960px;}
.xfa{left:444.886260px;}
.x97{left:448.124460px;}
.x10c{left:449.205510px;}
.xa4{left:451.005060px;}
.xc6{left:452.445360px;}
.x41{left:455.685210px;}
.x34{left:457.844160px;}
.x58{left:459.284310px;}
.x5d{left:461.804160px;}
.xff{left:462.885210px;}
.x29{left:465.044010px;}
.x5a{left:470.085060px;}
.x30{left:471.164460px;}
.x68{left:472.604760px;}
.x4d{left:473.684160px;}
.xc7{left:475.124460px;}
.x9a{left:477.284910px;}
.x36{left:478.725210px;}
.x1f{left:480.884010px;}
.x87{left:484.125510px;}
.x31{left:485.204910px;}
.xe1{left:487.724760px;}
.x37{left:492.044010px;}
.xe9{left:493.125060px;}
.x9b{left:496.005660px;}
.x71{left:497.085060px;}
.x6b{left:498.525360px;}
.x59{left:499.964010px;}
.x20{left:502.485360px;}
.x88{left:508.965060px;}
.xc9{left:513.284310px;}
.x4a{left:515.444910px;}
.x6c{left:517.605360px;}
.x79{left:518.684760px;}
.x69{left:520.484310px;}
.xcc{left:524.805210px;}
.xdb{left:526.245510px;}
.x66{left:529.124460px;}
.x9f{left:530.564760px;}
.xc8{left:533.084460px;}
.x4b{left:534.524760px;}
.xd5{left:537.044460px;}
.xfc{left:538.484760px;}
.xfb{left:542.085660px;}
.xcd{left:543.885210px;}
.x100{left:551.085060px;}
.x104{left:552.886260px;}
.xc1{left:553.964010px;}
.xa5{left:556.485360px;}
.x2c{left:559.364310px;}
.xdc{left:561.165510px;}
.x32{left:562.604160px;}
.xbd{left:563.685210px;}
.x101{left:568.365510px;}
.x67{left:576.285510px;}
.xa6{left:579.886260px;}
.x64{left:580.964010px;}
.x105{left:582.765210px;}
.x10b{left:602.206110px;}
.xfd{left:607.604760px;}
.xa3{left:609.765210px;}
.x107{left:611.205510px;}
.x65{left:615.165510px;}
.x98{left:620.925210px;}
.xaa{left:674.565810px;}
@media print{
.v2{vertical-align:-1.278000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.278000pt;}
.ls6e{letter-spacing:-15.982133pt;}
.ls3b{letter-spacing:-13.051733pt;}
.ls27{letter-spacing:-12.468867pt;}
.ls8d{letter-spacing:-11.111333pt;}
.ls1f{letter-spacing:-10.537333pt;}
.ls9b{letter-spacing:-10.344800pt;}
.lsb7{letter-spacing:-8.666733pt;}
.lsaa{letter-spacing:-7.715333pt;}
.ls6c{letter-spacing:-7.686133pt;}
.lsaf{letter-spacing:-7.398200pt;}
.ls57{letter-spacing:-7.331933pt;}
.ls58{letter-spacing:-6.664533pt;}
.ls5e{letter-spacing:-6.625467pt;}
.ls61{letter-spacing:-6.547200pt;}
.ls39{letter-spacing:-6.487267pt;}
.ls9f{letter-spacing:-6.001867pt;}
.lsb2{letter-spacing:-5.850400pt;}
.ls97{letter-spacing:-5.750000pt;}
.ls5a{letter-spacing:-5.680000pt;}
.ls47{letter-spacing:-5.178267pt;}
.ls95{letter-spacing:-5.076400pt;}
.ls62{letter-spacing:-5.037000pt;}
.lsa4{letter-spacing:-4.886533pt;}
.ls69{letter-spacing:-4.873133pt;}
.ls35{letter-spacing:-4.862400pt;}
.ls98{letter-spacing:-4.731067pt;}
.ls4b{letter-spacing:-4.667067pt;}
.ls2b{letter-spacing:-4.497933pt;}
.ls8e{letter-spacing:-4.423800pt;}
.ls82{letter-spacing:-4.326533pt;}
.ls9d{letter-spacing:-4.209333pt;}
.ls9e{letter-spacing:-4.060200pt;}
.lsa6{letter-spacing:-4.056000pt;}
.ls5d{letter-spacing:-3.999667pt;}
.ls10{letter-spacing:-3.888000pt;}
.ls43{letter-spacing:-3.830067pt;}
.ls74{letter-spacing:-3.733333pt;}
.lsac{letter-spacing:-3.680000pt;}
.ls6b{letter-spacing:-3.423733pt;}
.ls8f{letter-spacing:-3.379600pt;}
.ls3a{letter-spacing:-3.377467pt;}
.ls36{letter-spacing:-3.332267pt;}
.ls44{letter-spacing:-3.332133pt;}
.ls53{letter-spacing:-3.331200pt;}
.ls4a{letter-spacing:-3.318400pt;}
.ls2c{letter-spacing:-3.211800pt;}
.lsa8{letter-spacing:-3.208333pt;}
.ls20{letter-spacing:-3.158400pt;}
.ls91{letter-spacing:-3.083333pt;}
.ls3f{letter-spacing:-3.021200pt;}
.ls22{letter-spacing:-2.828000pt;}
.lsa2{letter-spacing:-2.665000pt;}
.ls1c{letter-spacing:-2.664867pt;}
.ls33{letter-spacing:-2.660133pt;}
.ls59{letter-spacing:-2.628000pt;}
.ls4e{letter-spacing:-2.593933pt;}
.lsad{letter-spacing:-2.588533pt;}
.ls71{letter-spacing:-2.428800pt;}
.ls19{letter-spacing:-2.338267pt;}
.lsb4{letter-spacing:-2.277333pt;}
.ls7c{letter-spacing:-2.253067pt;}
.ls83{letter-spacing:-2.058000pt;}
.lsa9{letter-spacing:-2.057200pt;}
.ls92{letter-spacing:-2.030600pt;}
.ls31{letter-spacing:-2.029400pt;}
.ls60{letter-spacing:-2.009600pt;}
.ls1d{letter-spacing:-2.002200pt;}
.ls28{letter-spacing:-1.944800pt;}
.ls4f{letter-spacing:-1.920000pt;}
.ls87{letter-spacing:-1.896000pt;}
.ls34{letter-spacing:-1.800000pt;}
.ls68{letter-spacing:-1.782000pt;}
.lsab{letter-spacing:-1.753800pt;}
.ls42{letter-spacing:-1.750000pt;}
.ls99{letter-spacing:-1.708000pt;}
.ls1b{letter-spacing:-1.596267pt;}
.ls26{letter-spacing:-1.430400pt;}
.ls85{letter-spacing:-1.372000pt;}
.lsb1{letter-spacing:-1.356800pt;}
.ls96{letter-spacing:-1.353733pt;}
.ls38{letter-spacing:-1.352933pt;}
.ls1e{letter-spacing:-1.334800pt;}
.ls16{letter-spacing:-1.333467pt;}
.ls8b{letter-spacing:-1.332800pt;}
.ls2f{letter-spacing:-1.332000pt;}
.ls93{letter-spacing:-1.317200pt;}
.ls45{letter-spacing:-1.315200pt;}
.ls6f{letter-spacing:-1.300000pt;}
.ls46{letter-spacing:-1.278000pt;}
.ls3e{letter-spacing:-1.265333pt;}
.ls1a{letter-spacing:-1.262400pt;}
.ls52{letter-spacing:-1.242133pt;}
.ls6d{letter-spacing:-1.233333pt;}
.lsb5{letter-spacing:-1.227333pt;}
.ls90{letter-spacing:-1.203733pt;}
.ls84{letter-spacing:-1.190000pt;}
.ls65{letter-spacing:-0.782000pt;}
.ls7f{letter-spacing:-0.686000pt;}
.ls9c{letter-spacing:-0.685733pt;}
.ls50{letter-spacing:-0.685000pt;}
.ls25{letter-spacing:-0.676867pt;}
.ls94{letter-spacing:-0.676667pt;}
.ls30{letter-spacing:-0.676467pt;}
.ls7a{letter-spacing:-0.675867pt;}
.ls21{letter-spacing:-0.667400pt;}
.ls41{letter-spacing:-0.667333pt;}
.lsb6{letter-spacing:-0.666733pt;}
.ls72{letter-spacing:-0.658000pt;}
.ls5b{letter-spacing:-0.657933pt;}
.ls66{letter-spacing:-0.657600pt;}
.ls2a{letter-spacing:-0.643067pt;}
.lsae{letter-spacing:-0.642400pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls70{letter-spacing:-0.632667pt;}
.lsb0{letter-spacing:-0.629533pt;}
.ls32{letter-spacing:-0.618067pt;}
.ls48{letter-spacing:-0.601133pt;}
.ls6a{letter-spacing:-0.598600pt;}
.lsb8{letter-spacing:-0.597333pt;}
.ls11{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.618067pt;}
.ls5f{letter-spacing:0.639000pt;}
.lsd{letter-spacing:0.643067pt;}
.lsa0{letter-spacing:0.666000pt;}
.ls1{letter-spacing:0.666733pt;}
.ls7{letter-spacing:0.667400pt;}
.ls15{letter-spacing:0.674133pt;}
.ls3d{letter-spacing:0.676467pt;}
.ls40{letter-spacing:0.676867pt;}
.ls73{letter-spacing:0.686000pt;}
.ls13{letter-spacing:0.707600pt;}
.ls63{letter-spacing:0.708867pt;}
.ls14{letter-spacing:0.712400pt;}
.ls24{letter-spacing:0.719467pt;}
.ls29{letter-spacing:0.847467pt;}
.lse{letter-spacing:1.286133pt;}
.lsa7{letter-spacing:1.315867pt;}
.ls2{letter-spacing:1.333467pt;}
.ls4{letter-spacing:1.334800pt;}
.ls37{letter-spacing:1.352933pt;}
.ls7d{letter-spacing:1.372000pt;}
.ls89{letter-spacing:1.372667pt;}
.ls12{letter-spacing:1.383067pt;}
.lsa5{letter-spacing:1.391200pt;}
.ls7e{letter-spacing:1.507333pt;}
.lsf{letter-spacing:1.929200pt;}
.ls0{letter-spacing:2.000200pt;}
.ls9a{letter-spacing:2.002000pt;}
.ls5{letter-spacing:2.002200pt;}
.ls3c{letter-spacing:2.029400pt;}
.ls67{letter-spacing:2.055000pt;}
.ls81{letter-spacing:2.058000pt;}
.ls75{letter-spacing:2.060800pt;}
.lsb3{letter-spacing:2.087400pt;}
.ls88{letter-spacing:2.087800pt;}
.ls55{letter-spacing:2.470067pt;}
.ls4d{letter-spacing:2.626600pt;}
.ls6{letter-spacing:2.664867pt;}
.ls18{letter-spacing:2.666933pt;}
.ls78{letter-spacing:2.744000pt;}
.ls2d{letter-spacing:3.211800pt;}
.ls9{letter-spacing:3.332267pt;}
.ls3{letter-spacing:3.333667pt;}
.ls80{letter-spacing:3.430000pt;}
.ls51{letter-spacing:3.988733pt;}
.ls8{letter-spacing:3.999667pt;}
.ls86{letter-spacing:4.554000pt;}
.lsa{letter-spacing:4.667067pt;}
.ls8a{letter-spacing:4.802000pt;}
.ls56{letter-spacing:4.897000pt;}
.lsa3{letter-spacing:4.926600pt;}
.ls17{letter-spacing:5.333867pt;}
.lsc{letter-spacing:5.334467pt;}
.lsb{letter-spacing:6.001867pt;}
.ls77{letter-spacing:6.574867pt;}
.ls2e{letter-spacing:6.664533pt;}
.ls79{letter-spacing:6.864667pt;}
.ls49{letter-spacing:7.331933pt;}
.lsa1{letter-spacing:7.606600pt;}
.ls54{letter-spacing:7.999333pt;}
.ls76{letter-spacing:8.022000pt;}
.ls8c{letter-spacing:8.281800pt;}
.ls64{letter-spacing:10.668933pt;}
.ls4c{letter-spacing:11.331600pt;}
.ls7b{letter-spacing:13.376400pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-67.980067pt;}
._25{margin-left:-50.967867pt;}
._1c{margin-left:-38.350467pt;}
._2c{margin-left:-37.040400pt;}
._2a{margin-left:-33.103133pt;}
._26{margin-left:-31.553267pt;}
._15{margin-left:-26.723867pt;}
._24{margin-left:-21.441600pt;}
._30{margin-left:-18.399600pt;}
._27{margin-left:-17.013733pt;}
._1f{margin-left:-15.870067pt;}
._29{margin-left:-14.346333pt;}
._23{margin-left:-12.369267pt;}
._1a{margin-left:-9.148667pt;}
._7{margin-left:-7.587067pt;}
._17{margin-left:-6.311333pt;}
._1b{margin-left:-5.400733pt;}
._19{margin-left:-4.420733pt;}
._2f{margin-left:-3.526400pt;}
._12{margin-left:-2.565000pt;}
._16{margin-left:-0.897933pt;}
._4{width:1.669267pt;}
._0{width:2.759400pt;}
._10{width:4.364333pt;}
._20{width:5.277667pt;}
._d{width:6.175200pt;}
._f{width:7.282933pt;}
._13{width:8.438333pt;}
._1{width:9.587333pt;}
._11{width:10.494733pt;}
._2{width:12.069333pt;}
._b{width:13.490000pt;}
._5{width:14.502667pt;}
._14{width:15.534133pt;}
._3{width:16.468800pt;}
._6{width:17.739000pt;}
._1e{width:18.701133pt;}
._e{width:19.638867pt;}
._9{width:20.721667pt;}
._8{width:22.046000pt;}
._a{width:23.600667pt;}
._22{width:24.750600pt;}
._c{width:25.796667pt;}
._21{width:27.368133pt;}
._2b{width:29.133067pt;}
._18{width:33.391467pt;}
._2e{width:45.431800pt;}
._2d{width:52.738800pt;}
._31{width:59.456400pt;}
._28{width:69.434000pt;}
.fs1d{font-size:28.666667pt;}
.fs18{font-size:30.666667pt;}
.fs1a{font-size:32.666667pt;}
.fs13{font-size:35.333333pt;}
.fs12{font-size:37.333333pt;}
.fs9{font-size:42.000000pt;}
.fs19{font-size:42.666667pt;}
.fs1f{font-size:43.333333pt;}
.fs1c{font-size:44.000000pt;}
.fs11{font-size:44.666667pt;}
.fs10{font-size:45.333333pt;}
.fse{font-size:46.000000pt;}
.fsd{font-size:46.666667pt;}
.fs8{font-size:47.333333pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:48.666667pt;}
.fs20{font-size:48.813333pt;}
.fs14{font-size:49.333333pt;}
.fs6{font-size:50.000000pt;}
.fs15{font-size:50.666667pt;}
.fsf{font-size:51.333333pt;}
.fs1{font-size:52.000000pt;}
.fs5{font-size:52.666667pt;}
.fs3{font-size:54.666667pt;}
.fs17{font-size:55.333333pt;}
.fs4{font-size:58.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1e{font-size:60.000000pt;}
.fsc{font-size:61.333333pt;}
.fsa{font-size:76.666667pt;}
.fs0{font-size:90.000000pt;}
.fs16{font-size:92.666667pt;}
.fs1b{font-size:186.000000pt;}
.y0{bottom:0.000000pt;}
.y206{bottom:51.220253pt;}
.ybc{bottom:67.215887pt;}
.y7d{bottom:68.180053pt;}
.y3c{bottom:68.505020pt;}
.yf9{bottom:69.460387pt;}
.yf8{bottom:69.466153pt;}
.y17e{bottom:71.380787pt;}
.y13e{bottom:75.541053pt;}
.y205{bottom:75.866020pt;}
.y3b{bottom:76.181187pt;}
.y1bd{bottom:77.147753pt;}
.ybb{bottom:79.066853pt;}
.yf7{bottom:80.975253pt;}
.y7c{bottom:82.261587pt;}
.y17c{bottom:82.576153pt;}
.y17d{bottom:82.581053pt;}
.y13d{bottom:87.067620pt;}
.y203{bottom:87.375253pt;}
.y204{bottom:87.379853pt;}
.y1bc{bottom:88.661587pt;}
.yba{bottom:90.261187pt;}
.y24d{bottom:91.542487pt;}
.yf6{bottom:92.500920pt;}
.y7b{bottom:93.627120pt;}
.y17b{bottom:94.421320pt;}
.y13c{bottom:98.581453pt;}
.y202{bottom:98.900920pt;}
.y201{bottom:98.901920pt;}
.yb9{bottom:101.455253pt;}
.y1bb{bottom:102.420920pt;}
.y24c{bottom:103.056320pt;}
.yf5{bottom:104.020520pt;}
.yf4{bottom:104.026153pt;}
.y3a{bottom:104.341320pt;}
.y17a{bottom:104.981453pt;}
.y7a{bottom:108.182120pt;}
.y200{bottom:109.457253pt;}
.yb8{bottom:112.980920pt;}
.y1ba{bottom:114.261187pt;}
.y24b{bottom:114.581987pt;}
.y24a{bottom:114.588620pt;}
.yf3{bottom:115.539987pt;}
.y39{bottom:115.547387pt;}
.y79{bottom:119.701587pt;}
.yb7{bottom:124.815120pt;}
.y179{bottom:125.781753pt;}
.y249{bottom:125.782953pt;}
.y38{bottom:126.741720pt;}
.y37{bottom:126.747353pt;}
.y1b9{bottom:126.747520pt;}
.yf2{bottom:127.066687pt;}
.y1fe{bottom:130.255520pt;}
.y1ff{bottom:130.260253pt;}
.y78{bottom:130.581053pt;}
.y13b{bottom:132.187753pt;}
.yb6{bottom:136.340787pt;}
.yb5{bottom:136.346553pt;}
.y1b8{bottom:137.941853pt;}
.y36{bottom:138.261187pt;}
.y248{bottom:138.267120pt;}
.yf1{bottom:138.581387pt;}
.y178{bottom:138.585420pt;}
.y1fd{bottom:141.781187pt;}
.y1fc{bottom:141.781887pt;}
.y13a{bottom:143.701587pt;}
.y77{bottom:145.941453pt;}
.yb4{bottom:147.866020pt;}
.y247{bottom:149.461453pt;}
.y35{bottom:149.779287pt;}
.yf0{bottom:150.095220pt;}
.y177{bottom:150.111087pt;}
.y1b7{bottom:152.021987pt;}
.y1fb{bottom:153.295720pt;}
.y139{bottom:155.541987pt;}
.y138{bottom:155.547787pt;}
.yb3{bottom:159.379853pt;}
.y246{bottom:160.667353pt;}
.yef{bottom:161.940387pt;}
.y34{bottom:163.542487pt;}
.y1b6{bottom:163.862253pt;}
.y176{bottom:164.192753pt;}
.y1fa{bottom:165.455620pt;}
.y137{bottom:166.740587pt;}
.y76{bottom:171.541053pt;}
.y244{bottom:172.176453pt;}
.y245{bottom:172.181187pt;}
.yb2{bottom:173.455087pt;}
.y33{bottom:175.056320pt;}
.y1b5{bottom:175.061053pt;}
.y175{bottom:175.706587pt;}
.yee{bottom:175.706653pt;}
.y1f9{bottom:177.300787pt;}
.y1f8{bottom:177.312187pt;}
.y136{bottom:180.822253pt;}
.y75{bottom:183.381320pt;}
.y243{bottom:183.713120pt;}
.yb1{bottom:185.306020pt;}
.y32{bottom:186.581987pt;}
.y174{bottom:187.220420pt;}
.yed{bottom:187.539987pt;}
.y1f7{bottom:188.506520pt;}
.y135{bottom:192.336953pt;}
.y74{bottom:194.581453pt;}
.y242{bottom:195.226953pt;}
.y1b4{bottom:195.227353pt;}
.yb0{bottom:196.813587pt;}
.yec{bottom:199.058087pt;}
.y1f6{bottom:200.339853pt;}
.y31{bottom:200.981453pt;}
.y173{bottom:201.621587pt;}
.y133{bottom:204.174220pt;}
.y134{bottom:204.182120pt;}
.y73{bottom:206.101053pt;}
.y1b3{bottom:206.741187pt;}
.y241{bottom:209.947620pt;}
.yaf{bottom:210.895253pt;}
.yeb{bottom:212.820253pt;}
.y30{bottom:212.821720pt;}
.y2f{bottom:212.825287pt;}
.y1f5{bottom:214.100520pt;}
.y132{bottom:217.297387pt;}
.y72{bottom:217.617053pt;}
.y1b2{bottom:218.273520pt;}
.y240{bottom:221.461453pt;}
.yae{bottom:222.420920pt;}
.yad{bottom:222.426553pt;}
.y2e{bottom:223.700120pt;}
.y172{bottom:224.020520pt;}
.yea{bottom:224.665153pt;}
.y1f4{bottom:225.620120pt;}
.y71{bottom:229.787353pt;}
.y130{bottom:230.096320pt;}
.y131{bottom:230.101053pt;}
.y23f{bottom:232.659887pt;}
.yac{bottom:233.940387pt;}
.ye9{bottom:235.539987pt;}
.y1f3{bottom:237.457720pt;}
.y12e{bottom:241.141587pt;}
.y1b1{bottom:241.296587pt;}
.y70{bottom:241.301187pt;}
.y12f{bottom:241.621987pt;}
.y171{bottom:244.181187pt;}
.y2d{bottom:245.142120pt;}
.yab{bottom:245.459987pt;}
.yaa{bottom:245.464653pt;}
.y23e{bottom:247.056320pt;}
.ye8{bottom:248.341320pt;}
.y1f2{bottom:250.900387pt;}
.y12d{bottom:252.176787pt;}
.y6e{bottom:252.499787pt;}
.y6f{bottom:252.501453pt;}
.y1b0{bottom:252.822253pt;}
.y170{bottom:255.700653pt;}
.ya9{bottom:256.019987pt;}
.y2c{bottom:256.982387pt;}
.y2b{bottom:256.988153pt;}
.y23c{bottom:258.581853pt;}
.y23d{bottom:258.581987pt;}
.ye7{bottom:258.586287pt;}
.y1f0{bottom:262.416220pt;}
.y1f1{bottom:262.419853pt;}
.y6d{bottom:266.581453pt;}
.y2a{bottom:268.501987pt;}
.y29{bottom:268.507620pt;}
.y16f{bottom:269.467087pt;}
.y23b{bottom:269.941853pt;}
.ye6{bottom:270.095387pt;}
.ya8{bottom:271.380387pt;}
.y1ef{bottom:274.900387pt;}
.y1ee{bottom:274.907320pt;}
.y12c{bottom:275.216287pt;}
.y1af{bottom:278.421853pt;}
.y6c{bottom:278.427620pt;}
.y28{bottom:280.021453pt;}
.y27{bottom:280.022487pt;}
.y23a{bottom:280.661587pt;}
.y16e{bottom:280.980920pt;}
.ye5{bottom:281.621053pt;}
.y1ed{bottom:286.101653pt;}
.y12b{bottom:287.067387pt;}
.y1ae{bottom:289.620287pt;}
.y6b{bottom:289.947087pt;}
.y26{bottom:291.867653pt;}
.y239{bottom:292.821320pt;}
.ye4{bottom:293.140653pt;}
.y16d{bottom:295.701187pt;}
.y12a{bottom:298.261720pt;}
.y69{bottom:301.459420pt;}
.y6a{bottom:301.460920pt;}
.y25{bottom:303.061987pt;}
.y1ad{bottom:304.021453pt;}
.y1ac{bottom:304.027220pt;}
.ye3{bottom:304.980920pt;}
.y16c{bottom:306.261187pt;}
.y1ec{bottom:306.265653pt;}
.ya7{bottom:307.861787pt;}
.y129{bottom:309.777553pt;}
.y23{bottom:314.580953pt;}
.y24{bottom:314.581453pt;}
.y68{bottom:315.221587pt;}
.y1ab{bottom:315.541053pt;}
.ye2{bottom:316.506153pt;}
.y1eb{bottom:317.459987pt;}
.y16b{bottom:317.780787pt;}
.y238{bottom:318.101587pt;}
.y237{bottom:318.107220pt;}
.ya6{bottom:319.860787pt;}
.y128{bottom:322.262753pt;}
.y22{bottom:326.094787pt;}
.y1aa{bottom:326.421853pt;}
.y67{bottom:327.061987pt;}
.ye1{bottom:328.015220pt;}
.y1ea{bottom:329.300253pt;}
.y236{bottom:329.616453pt;}
.ya5{bottom:330.895253pt;}
.y127{bottom:333.776587pt;}
.y16a{bottom:338.256920pt;}
.y66{bottom:338.900787pt;}
.y21{bottom:339.856953pt;}
.ye0{bottom:339.860387pt;}
.y234{bottom:341.137053pt;}
.y235{bottom:341.142120pt;}
.ya4{bottom:342.420920pt;}
.y1e9{bottom:343.373953pt;}
.y126{bottom:345.297187pt;}
.y1a9{bottom:349.781720pt;}
.y169{bottom:349.782587pt;}
.y20{bottom:351.713520pt;}
.y233{bottom:353.307487pt;}
.ydf{bottom:353.940387pt;}
.ya3{bottom:354.592087pt;}
.y1e8{bottom:355.538620pt;}
.y125{bottom:357.461853pt;}
.y1a8{bottom:360.987620pt;}
.y168{bottom:361.296420pt;}
.y65{bottom:361.941320pt;}
.y1f{bottom:362.907853pt;}
.y232{bottom:364.821320pt;}
.y231{bottom:364.826953pt;}
.yde{bottom:366.100120pt;}
.ya2{bottom:366.105920pt;}
.y124{bottom:368.981453pt;}
.y123{bottom:368.987087pt;}
.y1e7{bottom:369.300787pt;}
.y1a7{bottom:372.497687pt;}
.y167{bottom:373.136487pt;}
.y63{bottom:373.456020pt;}
.y64{bottom:373.460920pt;}
.y1e{bottom:374.736587pt;}
.y22f{bottom:376.331120pt;}
.y230{bottom:376.340787pt;}
.ya1{bottom:377.300253pt;}
.ya0{bottom:377.306020pt;}
.ydd{bottom:379.856020pt;}
.y122{bottom:380.500920pt;}
.y1e6{bottom:381.141053pt;}
.y1a6{bottom:384.981853pt;}
.y62{bottom:385.301187pt;}
.y166{bottom:385.620653pt;}
.y165{bottom:385.621653pt;}
.y1d{bottom:386.260420pt;}
.y22e{bottom:387.856787pt;}
.y9f{bottom:388.819853pt;}
.ydc{bottom:391.701187pt;}
.y1e5{bottom:392.339853pt;}
.y121{bottom:394.907487pt;}
.y1a5{bottom:396.497687pt;}
.y61{bottom:397.136520pt;}
.y163{bottom:397.615787pt;}
.y164{bottom:397.620653pt;}
.y22d{bottom:400.021453pt;}
.y1c{bottom:400.661587pt;}
.y9e{bottom:403.220653pt;}
.ydb{bottom:403.226420pt;}
.y120{bottom:406.421320pt;}
.y162{bottom:408.975787pt;}
.y1a4{bottom:408.987620pt;}
.y60{bottom:409.301187pt;}
.y22c{bottom:411.529720pt;}
.y1b{bottom:412.181187pt;}
.y1e4{bottom:413.146287pt;}
.yda{bottom:414.734420pt;}
.y9c{bottom:414.735353pt;}
.y9d{bottom:414.740253pt;}
.y11f{bottom:417.940387pt;}
.y161{bottom:420.496553pt;}
.y1a3{bottom:420.501453pt;}
.y5f{bottom:420.506853pt;}
.y22b{bottom:423.055387pt;}
.y1a{bottom:424.021453pt;}
.y1e3{bottom:424.660120pt;}
.yd9{bottom:425.940587pt;}
.y9b{bottom:426.580520pt;}
.y1a2{bottom:432.016153pt;}
.y160{bottom:432.341720pt;}
.y11e{bottom:432.661053pt;}
.y5e{bottom:435.227520pt;}
.y19{bottom:435.861853pt;}
.y1e2{bottom:436.175953pt;}
.y22a{bottom:437.776053pt;}
.y9a{bottom:440.660653pt;}
.y1a1{bottom:443.861320pt;}
.y11c{bottom:444.497320pt;}
.y11d{bottom:444.501453pt;}
.y5d{bottom:446.427320pt;}
.y15f{bottom:448.013720pt;}
.y1e1{bottom:448.659087pt;}
.y229{bottom:449.305653pt;}
.y99{bottom:452.500920pt;}
.y11b{bottom:455.691653pt;}
.y1a0{bottom:457.941320pt;}
.y5c{bottom:458.260653pt;}
.y18{bottom:459.227353pt;}
.y15e{bottom:459.858887pt;}
.y228{bottom:460.985153pt;}
.y1e0{bottom:463.060253pt;}
.y98{bottom:464.020520pt;}
.y19f{bottom:469.776953pt;}
.y17{bottom:470.736587pt;}
.y5a{bottom:472.656820pt;}
.y5b{bottom:472.661587pt;}
.y15c{bottom:473.616287pt;}
.y15d{bottom:473.621053pt;}
.y1df{bottom:474.574087pt;}
.y97{bottom:474.898653pt;}
.y227{bottom:475.220653pt;}
.y19e{bottom:481.620453pt;}
.y16{bottom:482.262253pt;}
.y59{bottom:484.501987pt;}
.y15b{bottom:485.461453pt;}
.y1de{bottom:486.419253pt;}
.yd8{bottom:486.740253pt;}
.y226{bottom:486.741720pt;}
.y11a{bottom:490.576320pt;}
.y15{bottom:493.781720pt;}
.y19d{bottom:495.702120pt;}
.y58{bottom:496.021453pt;}
.y15a{bottom:496.661587pt;}
.y225{bottom:497.941853pt;}
.yd7{bottom:498.265653pt;}
.y1dd{bottom:500.500920pt;}
.y119{bottom:502.096887pt;}
.y14{bottom:505.301187pt;}
.y13{bottom:505.302053pt;}
.y19c{bottom:507.221720pt;}
.y19b{bottom:507.227353pt;}
.yd5{bottom:509.455087pt;}
.yd6{bottom:509.459987pt;}
.y224{bottom:509.780787pt;}
.y1db{bottom:512.335120pt;}
.y1dc{bottom:512.500920pt;}
.y118{bottom:514.576320pt;}
.y159{bottom:517.147187pt;}
.y12{bottom:517.147220pt;}
.y19a{bottom:518.741187pt;}
.y57{bottom:519.061853pt;}
.yd4{bottom:521.300253pt;}
.y1da{bottom:523.860787pt;}
.y117{bottom:526.107753pt;}
.y96{bottom:527.062287pt;}
.y11{bottom:528.656453pt;}
.y158{bottom:528.980520pt;}
.y199{bottom:529.941320pt;}
.y56{bottom:530.421853pt;}
.yd3{bottom:533.140653pt;}
.y1d9{bottom:535.053187pt;}
.y223{bottom:535.387320pt;}
.y115{bottom:537.615153pt;}
.y116{bottom:537.621587pt;}
.y95{bottom:539.380787pt;}
.y10{bottom:540.187753pt;}
.y157{bottom:540.507087pt;}
.y55{bottom:542.096453pt;}
.yd2{bottom:544.660120pt;}
.y222{bottom:547.220653pt;}
.y94{bottom:550.102520pt;}
.y198{bottom:550.747720pt;}
.yf{bottom:551.711320pt;}
.y114{bottom:552.016320pt;}
.y156{bottom:552.020920pt;}
.y54{bottom:553.622120pt;}
.y53{bottom:553.627587pt;}
.y1d8{bottom:555.536687pt;}
.yd1{bottom:556.181187pt;}
.y220{bottom:558.736653pt;}
.y221{bottom:558.741720pt;}
.y197{bottom:562.581053pt;}
.y93{bottom:562.586687pt;}
.y113{bottom:563.547453pt;}
.y155{bottom:564.501453pt;}
.y52{bottom:565.460520pt;}
.y1d7{bottom:567.370020pt;}
.yd0{bottom:568.018453pt;}
.ye{bottom:569.307487pt;}
.y21f{bottom:570.901320pt;}
.y92{bottom:574.100520pt;}
.y91{bottom:574.101553pt;}
.y196{bottom:574.101987pt;}
.y112{bottom:575.376187pt;}
.y154{bottom:576.020920pt;}
.y1d6{bottom:578.895687pt;}
.y51{bottom:580.181187pt;}
.yd{bottom:580.821320pt;}
.ycf{bottom:582.096520pt;}
.y21e{bottom:582.262353pt;}
.y90{bottom:585.615387pt;}
.y195{bottom:585.623587pt;}
.y111{bottom:586.900020pt;}
.y153{bottom:587.860487pt;}
.y1d5{bottom:591.379853pt;}
.y50{bottom:591.702120pt;}
.yc{bottom:592.342253pt;}
.y21c{bottom:593.940153pt;}
.y21d{bottom:593.941853pt;}
.yce{bottom:594.259653pt;}
.y8f{bottom:597.141053pt;}
.y194{bottom:598.107753pt;}
.y152{bottom:599.705653pt;}
.y110{bottom:601.296587pt;}
.y1d4{bottom:602.900787pt;}
.y4f{bottom:603.219887pt;}
.yb{bottom:604.342253pt;}
.ycd{bottom:608.341320pt;}
.y21b{bottom:608.346720pt;}
.y8e{bottom:608.654220pt;}
.y193{bottom:609.627220pt;}
.y10f{bottom:612.822253pt;}
.y151{bottom:614.106820pt;}
.y1d3{bottom:614.741187pt;}
.y1d2{bottom:614.752587pt;}
.ya{bottom:617.301720pt;}
.y4d{bottom:617.616287pt;}
.y4e{bottom:617.621053pt;}
.y21a{bottom:619.860553pt;}
.ycc{bottom:619.860787pt;}
.y191{bottom:621.136453pt;}
.y192{bottom:621.141053pt;}
.y8d{bottom:622.735887pt;}
.y10e{bottom:624.016053pt;}
.y150{bottom:625.620653pt;}
.y1d1{bottom:626.266420pt;}
.y4c{bottom:629.461453pt;}
.y9{bottom:630.422387pt;}
.y8{bottom:630.428020pt;}
.ycb{bottom:631.701187pt;}
.y190{bottom:632.667753pt;}
.y219{bottom:634.256820pt;}
.y8c{bottom:634.584987pt;}
.y14f{bottom:637.459387pt;}
.y1d0{bottom:637.780253pt;}
.y4b{bottom:640.980920pt;}
.y7{bottom:641.941853pt;}
.y18f{bottom:644.181187pt;}
.y10d{bottom:646.097053pt;}
.y218{bottom:646.101987pt;}
.y8b{bottom:646.418320pt;}
.y1ce{bottom:649.618820pt;}
.y1cf{bottom:649.620653pt;}
.y14e{bottom:651.541053pt;}
.y6{bottom:653.782253pt;}
.yca{bottom:654.740253pt;}
.y217{bottom:657.940920pt;}
.y216{bottom:657.946720pt;}
.y10c{bottom:658.261720pt;}
.y10b{bottom:658.267353pt;}
.y18e{bottom:658.907487pt;}
.y8a{bottom:660.499987pt;}
.y14d{bottom:663.700653pt;}
.y1cd{bottom:664.015220pt;}
.y4a{bottom:664.336187pt;}
.y215{bottom:669.141053pt;}
.y109{bottom:669.771520pt;}
.y10a{bottom:669.781187pt;}
.y18d{bottom:670.416553pt;}
.y89{bottom:672.340253pt;}
.y88{bottom:672.346187pt;}
.y14c{bottom:674.581453pt;}
.y1cc{bottom:675.858720pt;}
.y49{bottom:675.861853pt;}
.y108{bottom:681.297187pt;}
.y214{bottom:681.300787pt;}
.y18c{bottom:682.261720pt;}
.y4{bottom:682.900453pt;}
.y5{bottom:682.901853pt;}
.y87{bottom:683.540520pt;}
.y48{bottom:687.381320pt;}
.y47{bottom:687.387087pt;}
.y1cb{bottom:689.935620pt;}
.y14b{bottom:692.826187pt;}
.y107{bottom:693.457087pt;}
.y3{bottom:697.622120pt;}
.yc9{bottom:698.260787pt;}
.yc8{bottom:698.261687pt;}
.y46{bottom:698.900920pt;}
.y86{bottom:699.220253pt;}
.y1ca{bottom:701.780787pt;}
.y1c9{bottom:701.786420pt;}
.y14a{bottom:704.015620pt;}
.y106{bottom:705.302253pt;}
.y213{bottom:706.902720pt;}
.y18a{bottom:709.136687pt;}
.y18b{bottom:709.141587pt;}
.yc7{bottom:709.775520pt;}
.y1c7{bottom:713.295220pt;}
.y1c8{bottom:713.300253pt;}
.y45{bottom:713.614620pt;}
.y148{bottom:715.856020pt;}
.y149{bottom:715.860787pt;}
.y105{bottom:716.816953pt;}
.y212{bottom:718.736053pt;}
.y189{bottom:720.981853pt;}
.yc6{bottom:721.301187pt;}
.y1c6{bottom:724.501387pt;}
.y44{bottom:725.140287pt;}
.y147{bottom:727.696120pt;}
.y104{bottom:728.662120pt;}
.y211{bottom:730.256653pt;}
.yc5{bottom:732.496387pt;}
.y188{bottom:732.501453pt;}
.y2{bottom:733.462387pt;}
.y85{bottom:735.701520pt;}
.y43{bottom:739.541453pt;}
.y146{bottom:739.856020pt;}
.y210{bottom:742.427087pt;}
.y103{bottom:743.061453pt;}
.yc4{bottom:744.659520pt;}
.y84{bottom:747.215353pt;}
.y1c5{bottom:747.860387pt;}
.y42{bottom:751.381853pt;}
.y145{bottom:751.702220pt;}
.y20f{bottom:753.940920pt;}
.y102{bottom:754.576153pt;}
.y187{bottom:755.866953pt;}
.y1{bottom:758.741187pt;}
.yc3{bottom:758.746653pt;}
.y83{bottom:759.066153pt;}
.y1c4{bottom:759.700653pt;}
.y41{bottom:762.901320pt;}
.y144{bottom:763.216053pt;}
.y20e{bottom:765.461853pt;}
.y20d{bottom:765.467620pt;}
.y101{bottom:766.426553pt;}
.y186{bottom:767.376187pt;}
.y82{bottom:770.575387pt;}
.yc2{bottom:770.577320pt;}
.y1c3{bottom:771.541053pt;}
.y143{bottom:774.746953pt;}
.y20c{bottom:776.992487pt;}
.y184{bottom:778.896953pt;}
.y185{bottom:778.901853pt;}
.y100{bottom:781.147220pt;}
.y81{bottom:782.101053pt;}
.y1c2{bottom:783.379853pt;}
.yc1{bottom:784.019987pt;}
.y40{bottom:786.266953pt;}
.y142{bottom:786.580287pt;}
.y20b{bottom:788.506320pt;}
.y182{bottom:790.741453pt;}
.y183{bottom:790.742120pt;}
.yfe{bottom:792.656287pt;}
.yff{bottom:792.661053pt;}
.y80{bottom:793.615753pt;}
.y1c1{bottom:794.896020pt;}
.yc0{bottom:796.500520pt;}
.y3f{bottom:797.776053pt;}
.y141{bottom:800.987087pt;}
.y181{bottom:802.255287pt;}
.y20a{bottom:802.907487pt;}
.yfd{bottom:804.501453pt;}
.yfc{bottom:804.507087pt;}
.y7f{bottom:805.460920pt;}
.y1c0{bottom:806.741187pt;}
.ybf{bottom:808.019987pt;}
.y3e{bottom:809.296787pt;}
.y140{bottom:812.496153pt;}
.y209{bottom:814.421320pt;}
.y208{bottom:814.427087pt;}
.yfb{bottom:816.020920pt;}
.y180{bottom:816.656453pt;}
.y7e{bottom:816.661053pt;}
.y1bf{bottom:818.255887pt;}
.ybd{bottom:819.220253pt;}
.y3d{bottom:821.461453pt;}
.y13f{bottom:824.341320pt;}
.y207{bottom:825.940920pt;}
.yfa{bottom:827.541987pt;}
.y17f{bottom:828.182120pt;}
.ybe{bottom:829.460920pt;}
.y1be{bottom:830.101053pt;}
.h60{height:28.120768pt;}
.h48{height:31.984375pt;}
.h4a{height:32.060547pt;}
.h1f{height:36.851562pt;}
.h1e{height:38.937500pt;}
.h49{height:41.875000pt;}
.h5f{height:43.162109pt;}
.hc{height:43.804688pt;}
.h1d{height:43.837891pt;}
.h34{height:44.492188pt;}
.h68{height:44.500000pt;}
.h3c{height:45.015625pt;}
.h2d{height:45.146484pt;}
.h36{height:45.687500pt;}
.h58{height:45.777995pt;}
.h1a{height:45.800781pt;}
.h4f{height:45.890625pt;}
.h12{height:46.119792pt;}
.h37{height:46.359375pt;}
.h5a{height:46.431966pt;}
.h10{height:46.455078pt;}
.h29{height:46.455611pt;}
.h28{height:46.456678pt;}
.h52{height:46.457211pt;}
.h5b{height:46.458411pt;}
.h6b{height:46.459211pt;}
.h44{height:46.461211pt;}
.h63{height:46.461745pt;}
.h73{height:46.461878pt;}
.h19{height:46.462411pt;}
.h43{height:46.465745pt;}
.h4c{height:46.466945pt;}
.h45{height:46.469478pt;}
.h54{height:46.469611pt;}
.h64{height:46.470145pt;}
.h13{height:46.473478pt;}
.h23{height:46.474011pt;}
.h35{height:46.474145pt;}
.h2b{height:46.474678pt;}
.h22{height:46.474811pt;}
.h53{height:46.475345pt;}
.h50{height:46.475478pt;}
.h47{height:46.478411pt;}
.h3d{height:46.480145pt;}
.h27{height:46.480811pt;}
.h5c{height:46.486011pt;}
.h55{height:46.486678pt;}
.h71{height:46.500411pt;}
.h2e{height:46.585938pt;}
.h31{height:46.778646pt;}
.h30{height:47.031250pt;}
.h5e{height:47.050717pt;}
.h3e{height:47.085938pt;}
.h14{height:47.109375pt;}
.h1c{height:47.281250pt;}
.hb{height:47.703125pt;}
.h3b{height:47.733078pt;}
.h65{height:47.739745pt;}
.h59{height:47.739909pt;}
.h15{height:47.763672pt;}
.h72{height:47.907617pt;}
.h18{height:47.976562pt;}
.hf{height:48.096354pt;}
.he{height:48.375000pt;}
.h51{height:48.393880pt;}
.h26{height:48.417969pt;}
.h16{height:48.671875pt;}
.h46{height:48.755208pt;}
.h24{height:49.046875pt;}
.h17{height:49.072266pt;}
.h69{height:49.367188pt;}
.h25{height:49.718750pt;}
.h38{height:50.062500pt;}
.h2a{height:50.072917pt;}
.h6f{height:50.355794pt;}
.h3a{height:50.380859pt;}
.h39{height:50.390625pt;}
.h1b{height:50.731771pt;}
.h9{height:50.757812pt;}
.ha{height:50.763413pt;}
.h2c{height:51.035156pt;}
.h5d{height:51.453125pt;}
.h6c{height:51.730375pt;}
.h70{height:52.049479pt;}
.h8{height:52.148438pt;}
.h41{height:53.078125pt;}
.h3{height:54.234375pt;}
.h7{height:54.929688pt;}
.h5{height:57.015625pt;}
.h42{height:57.710938pt;}
.h6{height:60.492188pt;}
.h4{height:61.187500pt;}
.h6a{height:62.578125pt;}
.h11{height:63.968750pt;}
.hd{height:79.960938pt;}
.h2{height:93.867188pt;}
.h2f{height:96.648438pt;}
.h4b{height:193.992188pt;}
.h6d{height:906.641053pt;}
.h6e{height:906.666667pt;}
.h32{height:909.201053pt;}
.h33{height:909.333333pt;}
.h61{height:910.482387pt;}
.h62{height:910.666667pt;}
.h66{height:912.401053pt;}
.h67{height:912.666667pt;}
.h3f{height:913.041053pt;}
.h40{height:913.333333pt;}
.h20{height:913.681053pt;}
.h21{height:914.000000pt;}
.h1{height:914.666667pt;}
.h0{height:914.961053pt;}
.h56{height:925.841053pt;}
.h57{height:926.000000pt;}
.h4d{height:927.761053pt;}
.h4e{height:928.000000pt;}
.w3{width:589.333333pt;}
.w2{width:589.505120pt;}
.wb{width:590.666667pt;}
.wa{width:590.785120pt;}
.w9{width:591.333333pt;}
.w8{width:591.425120pt;}
.w5{width:592.000000pt;}
.w4{width:592.063787pt;}
.w0{width:597.825120pt;}
.w1{width:598.000000pt;}
.w6{width:600.385120pt;}
.w7{width:600.666667pt;}
.x0{left:0.000000pt;}
.x118{left:24.892987pt;}
.x3c{left:32.260087pt;}
.x8{left:33.853387pt;}
.xb7{left:35.121087pt;}
.x84{left:36.093120pt;}
.x3a{left:49.533120pt;}
.x112{left:50.505287pt;}
.x116{left:51.452787pt;}
.xed{left:57.213253pt;}
.x23{left:58.173253pt;}
.x12{left:59.129220pt;}
.x35{left:60.093120pt;}
.x81{left:61.053320pt;}
.x90{left:62.323120pt;}
.x3b{left:68.092587pt;}
.xc2{left:70.653120pt;}
.x122{left:71.612720pt;}
.xce{left:73.533120pt;}
.x114{left:74.501820pt;}
.xf8{left:75.443920pt;}
.x10f{left:77.046920pt;}
.xd1{left:79.292853pt;}
.xe4{left:80.253787pt;}
.x24{left:81.215820pt;}
.x3f{left:82.172720pt;}
.x15{left:83.133653pt;}
.x85{left:84.744220pt;}
.x9{left:85.692720pt;}
.xa{left:86.653887pt;}
.x25{left:89.533520pt;}
.xef{left:90.494453pt;}
.x8e{left:97.533120pt;}
.xb4{left:99.453520pt;}
.xc0{left:101.053120pt;}
.x26{left:102.012587pt;}
.x96{left:103.613653pt;}
.xcf{left:104.550287pt;}
.x99{left:105.534053pt;}
.x3d{left:107.133653pt;}
.x3e{left:108.095153pt;}
.x8f{left:109.373387pt;}
.x1c{left:111.613120pt;}
.x102{left:113.854320pt;}
.xbb{left:115.773253pt;}
.x113{left:118.012987pt;}
.xf0{left:119.293253pt;}
.x94{left:120.573520pt;}
.xd7{left:122.173253pt;}
.x108{left:124.081953pt;}
.x89{left:125.053120pt;}
.x5b{left:126.012587pt;}
.xa7{left:126.973520pt;}
.x2d{left:128.573120pt;}
.x1d{left:129.532587pt;}
.x42{left:130.812853pt;}
.x63{left:131.773787pt;}
.x5e{left:134.013520pt;}
.x2{left:136.572587pt;}
.xd8{left:137.533520pt;}
.x50{left:139.773253pt;}
.x6d{left:140.732720pt;}
.x11f{left:142.012987pt;}
.xf7{left:143.293253pt;}
.xc5{left:144.252720pt;}
.x2e{left:145.852453pt;}
.x1e{left:147.453520pt;}
.xf5{left:148.414453pt;}
.xd2{left:150.333387pt;}
.x10d{left:151.934453pt;}
.xf3{left:153.213253pt;}
.x6a{left:154.493520pt;}
.x51{left:155.452987pt;}
.x43{left:158.332853pt;}
.xde{left:159.932453pt;}
.xba{left:161.533520pt;}
.x10e{left:163.453920pt;}
.x2f{left:165.693653pt;}
.xd9{left:166.972453pt;}
.xd3{left:168.573520pt;}
.x13{left:170.173253pt;}
.x9d{left:172.093653pt;}
.x16{left:173.693253pt;}
.x95{left:175.292853pt;}
.xdf{left:176.892453pt;}
.x120{left:178.493520pt;}
.x1{left:179.452987pt;}
.xf4{left:182.013520pt;}
.x74{left:182.972987pt;}
.x14{left:184.253253pt;}
.x5f{left:185.212720pt;}
.xd4{left:186.492987pt;}
.x44{left:187.773253pt;}
.x17{left:190.012987pt;}
.x119{left:191.612587pt;}
.x6e{left:193.213653pt;}
.xe0{left:194.813387pt;}
.xe7{left:195.772853pt;}
.x91{left:196.733787pt;}
.xb3{left:199.292853pt;}
.x109{left:200.253787pt;}
.xd0{left:201.853387pt;}
.xd6{left:202.812853pt;}
.x4e{left:204.093120pt;}
.x11a{left:206.013520pt;}
.x3{left:206.972987pt;}
.xda{left:207.932453pt;}
.x60{left:208.893387pt;}
.x45{left:210.173653pt;}
.x8a{left:211.773253pt;}
.xa0{left:214.014453pt;}
.x38{left:215.293253pt;}
.x123{left:216.252720pt;}
.x10a{left:217.853920pt;}
.xb6{left:219.453520pt;}
.x4f{left:220.412987pt;}
.x7a{left:221.372453pt;}
.x11c{left:222.333387pt;}
.x106{left:224.253787pt;}
.xbc{left:226.493520pt;}
.x4{left:227.452987pt;}
.x46{left:228.733253pt;}
.x39{left:229.692720pt;}
.xd{left:230.653653pt;}
.x92{left:231.932453pt;}
.xb5{left:233.212720pt;}
.x82{left:234.492987pt;}
.x61{left:235.773253pt;}
.xaf{left:236.732720pt;}
.x75{left:238.653120pt;}
.x11d{left:239.933520pt;}
.x9e{left:240.894453pt;}
.xab{left:241.853920pt;}
.x7b{left:243.453520pt;}
.xe{left:244.733787pt;}
.x47{left:246.012587pt;}
.x115{left:246.973520pt;}
.xb0{left:247.932987pt;}
.xb1{left:248.892453pt;}
.x76{left:249.853387pt;}
.x11e{left:251.452987pt;}
.xf{left:252.412453pt;}
.x7f{left:254.332853pt;}
.x103{left:255.293787pt;}
.x77{left:256.253253pt;}
.x6f{left:257.212720pt;}
.x10{left:258.813787pt;}
.x93{left:260.092587pt;}
.xe2{left:261.053520pt;}
.x7c{left:262.012987pt;}
.x21{left:262.972453pt;}
.xb2{left:264.252720pt;}
.xea{left:266.492587pt;}
.xbe{left:268.412987pt;}
.x117{left:269.693253pt;}
.x62{left:270.973520pt;}
.x8d{left:272.253787pt;}
.x80{left:273.213253pt;}
.xca{left:274.812853pt;}
.xdd{left:275.773787pt;}
.xc4{left:277.373387pt;}
.x7d{left:279.293787pt;}
.x18{left:280.893387pt;}
.x52{left:282.173653pt;}
.x48{left:283.452453pt;}
.x5{left:284.413387pt;}
.xae{left:286.014453pt;}
.xf6{left:288.254187pt;}
.x2a{left:289.213653pt;}
.xcb{left:290.813387pt;}
.x7e{left:291.772853pt;}
.xbf{left:294.973520pt;}
.x11{left:296.253787pt;}
.x19{left:298.172720pt;}
.xe5{left:299.452987pt;}
.x2b{left:302.332853pt;}
.x6{left:305.212720pt;}
.x70{left:306.813787pt;}
.x27{left:310.333787pt;}
.x9c{left:311.293253pt;}
.x53{left:312.252720pt;}
.x83{left:313.852453pt;}
.x22{left:316.412987pt;}
.x49{left:318.012587pt;}
.xeb{left:320.892453pt;}
.x111{left:326.974453pt;}
.xb{left:327.932453pt;}
.x8b{left:329.533520pt;}
.xa1{left:333.693653pt;}
.x54{left:334.653120pt;}
.x1a{left:337.533120pt;}
.xb8{left:338.813387pt;}
.x78{left:341.053120pt;}
.xc{left:342.652720pt;}
.x72{left:343.613653pt;}
.x8c{left:345.532587pt;}
.xee{left:347.454453pt;}
.xf2{left:349.054053pt;}
.xa2{left:350.013520pt;}
.x1b{left:351.293787pt;}
.xe3{left:352.253253pt;}
.x55{left:353.533520pt;}
.xb9{left:355.452453pt;}
.x7{left:357.053520pt;}
.x86{left:359.612720pt;}
.x73{left:360.573520pt;}
.xf1{left:361.533120pt;}
.xc3{left:362.813387pt;}
.x110{left:364.093653pt;}
.xac{left:365.053120pt;}
.xa8{left:367.294320pt;}
.xe6{left:368.892453pt;}
.x56{left:370.812853pt;}
.xec{left:372.733253pt;}
.x121{left:374.013520pt;}
.x11b{left:375.293787pt;}
.xad{left:377.214187pt;}
.x4c{left:378.492987pt;}
.x33{left:380.092587pt;}
.xf9{left:381.374320pt;}
.x57{left:383.933387pt;}
.xe8{left:385.213787pt;}
.x40{left:388.412987pt;}
.xa9{left:389.693253pt;}
.x5c{left:391.932987pt;}
.x28{left:392.892453pt;}
.xfe{left:394.174187pt;}
.xfa{left:395.454453pt;}
.x97{left:398.332853pt;}
.x10c{left:399.293787pt;}
.xa4{left:400.893387pt;}
.xc6{left:402.173653pt;}
.x41{left:405.053520pt;}
.x34{left:406.972587pt;}
.x58{left:408.252720pt;}
.x5d{left:410.492587pt;}
.xff{left:411.453520pt;}
.x29{left:413.372453pt;}
.x5a{left:417.853387pt;}
.x30{left:418.812853pt;}
.x68{left:420.093120pt;}
.x4d{left:421.052587pt;}
.xc7{left:422.332853pt;}
.x9a{left:424.253253pt;}
.x36{left:425.533520pt;}
.x1f{left:427.452453pt;}
.x87{left:430.333787pt;}
.x31{left:431.293253pt;}
.xe1{left:433.533120pt;}
.x37{left:437.372453pt;}
.xe9{left:438.333387pt;}
.x9b{left:440.893920pt;}
.x71{left:441.853387pt;}
.x6b{left:443.133653pt;}
.x59{left:444.412453pt;}
.x20{left:446.653653pt;}
.x88{left:452.413387pt;}
.xc9{left:456.252720pt;}
.x4a{left:458.173253pt;}
.x6c{left:460.093653pt;}
.x79{left:461.053120pt;}
.x69{left:462.652720pt;}
.xcc{left:466.493520pt;}
.xdb{left:467.773787pt;}
.x66{left:470.332853pt;}
.x9f{left:471.613120pt;}
.xc8{left:473.852853pt;}
.x4b{left:475.133120pt;}
.xd5{left:477.372853pt;}
.xfc{left:478.653120pt;}
.xfb{left:481.853920pt;}
.xcd{left:483.453520pt;}
.x100{left:489.853387pt;}
.x104{left:491.454453pt;}
.xc1{left:492.412453pt;}
.xa5{left:494.653653pt;}
.x2c{left:497.212720pt;}
.xdc{left:498.813787pt;}
.x32{left:500.092587pt;}
.xbd{left:501.053520pt;}
.x101{left:505.213787pt;}
.x67{left:512.253787pt;}
.xa6{left:515.454453pt;}
.x64{left:516.412453pt;}
.x105{left:518.013520pt;}
.x10b{left:535.294320pt;}
.xfd{left:540.093120pt;}
.xa3{left:542.013520pt;}
.x107{left:543.293787pt;}
.x65{left:546.813787pt;}
.x98{left:551.933520pt;}
.xaa{left:599.614053pt;}
}




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