
    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_a1b22819a419ebe23591c56c.woff')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_d498810aeea8ad9733e0f6a6.woff')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_3bcae5df14f0cbd0fb86f029.woff')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_052421bb7612a670e607515a.woff')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_a6f48b0045b6855ef5874a28.woff')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_61d790e34320ba93e9154508.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6fd277a309946f5d5f408844.woff')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_49970011a3e8e8d11a700031.woff')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_28c76f4f444c48750f8501df.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')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_55844cf54a05687248588a62.woff')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_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c35d58d736b4dc5e70390220.woff')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_796993af746fab836a1ee8d3.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e667b8683fd045d0278ffade.woff')format("woff");}.ff10{font-family:ff10;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_22ee668c7aff16c7188f8526.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_95b31f2aa9752f37bc696654.woff')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_6e400652d4c1d55d4e463cd5.woff')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d8c894c30dd7590bbcde71ba.woff')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')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_ce3a27364e0245e769d2c097.woff')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a7668b1a9a92363789e458fd.woff')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_f54dc0c36cd22865523ca7d4.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_5dbc70f34b5cb43423a776f2.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_638a7eb66b0a98f923a3c1e7.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_ba678087c0e895b53eb19e05.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_de6c94606f971a378f90cf87.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_1d12b0ba2f709782fe9ddbd3.woff')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_3cde4d9234e753b36b199a1b.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_8e68b58139195984ed826fbc.woff')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_32ed5867c40518c761622016.woff')format("woff");}.ff23{font-family:ff23;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_20f33a2eb38f96babceb1f49.woff')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_cac690b5743798ece6782ae6.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_df4e4d3eda8bf86d5acb4df9.woff')format("woff");}.ff27{font-family:ff27;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_baccdc75da3db6f046ec053d.woff')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_077230fe401ca9efc78524df.woff')format("woff");}.ff29{font-family:ff29;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_69f082dfc71b8ed2406ad4ee.woff')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_9b0d0e0d2cb7247d76df89c8.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_dcc0fcedcb741f32daee1718.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_00bad183d75a502c3cf92874.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_915f286ff5728cf951224c3d.woff')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_4d6f84bd1ee7d0c2ba672189.woff')format("woff");}.ff31{font-family:ff31;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_96db1aff8fe6c49232234d02.woff')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_e12200627d454a8117eb911e.woff')format("woff");}.ff33{font-family:ff33;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_a0d89b371ce30f5bb6ee852a.woff')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_b2485bb486693a6026013a7a.woff')format("woff");}.ff35{font-family:ff35;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_8782942d03aad3cc7aedf523.woff')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_800382ad03a1e09ba41742ef.woff')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_d2ec2a43d0cf1d8066fb9f6c.woff')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_f9bdff03bf740c03daf2f52b.woff')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_27eeb90ef7625483656fec33.woff')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_907ac4e43220cee65590cc7a.woff')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_800e2e19a2e0b8d38abc78c3.woff')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_67b98c206cef1069fb1b3460.woff')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_350bd39573f222557c0a29f4.woff')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_9b92ea5532af6404a49aa89b.woff')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_79f6b6cc5ea7beb5327c0214.woff')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_eb28641885fcf2842c8e0c25.woff')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_79b7e5435b720997e387b5be.woff')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_2d7045dddb71776cc8a9d34e.woff')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_da2828159f7802c959fae335.woff')format("woff");}.ff45{font-family:ff45;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;}
.mbc{transform:matrix(0.030731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030731,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.033721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033721,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.053779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053779,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.114719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114719,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.118990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118990,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.me2{transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);}
.m82{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);}
.m27{transform:matrix(0.138489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138489,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.139456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139456,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.143284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143284,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.151079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151079,0.000000,0.000000,0.250000,0,0);}
.m9c{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);}
.mde{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.163717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163717,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.164141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164141,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.171717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171717,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.174138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174138,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.179372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179372,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.189732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189732,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.189922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189922,0.000000,0.000000,0.250000,0,0);}
.mce{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);}
.ma0{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m1f{transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.210674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210674,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.212037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212037,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m6e{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);}
.m52{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m75{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m7e{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);}
.m84{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);}
.md6{transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.md0{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);}
.m70{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.233209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233209,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.mb1{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m1d{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);}
.m16{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);}
.md4{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);}
.m1{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m5c{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);}
.me1{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);}
.m3c{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m98{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);}
.mb9{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m74{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);}
.m64{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);}
.m61{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);}
.m40{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);}
.m34{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);}
.ma5{transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.mbd{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.me{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);}
.m4e{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);}
.m62{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);}
.m57{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);}
.m78{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m15{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m72{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.m60{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);}
.m96{transform:matrix(0.257519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257519,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m35{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);}
.m29{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);}
.m2a{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);}
.m1b{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);}
.m7{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m6d{transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.mc4{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.262868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262868,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.m5d{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);}
.m86{transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);}
.m6b{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);}
.mb5{transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);}
.mdf{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);}
.m8c{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);}
.me0{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);}
.m32{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);}
.m92{transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.mb{transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m5a{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);}
.m65{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.m67{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);}
.m49{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);}
.me5{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);}
.maa{transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.md7{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);}
.me9{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.293527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293527,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.304087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304087,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.304734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304734,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.348684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348684,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.351351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351351,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.360811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360811,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.381720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381720,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.390432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390432,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.392086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392086,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.398196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398196,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.401235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401235,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.412037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412037,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.467626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467626,0.000000,0.000000,0.250000,0,0);}
.m41{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);}
.m3a{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);}
.m5f{transform:matrix(0.597826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597826,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m28{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);}
.m11{transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.815217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815217,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.840580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840580,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m26{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);}
.m12{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);}
.m4d{transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(1.184783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.184783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.184783,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.437750px;}
.v2{vertical-align:2.875500px;}
.v3{vertical-align:4.321500px;}
.ls106{letter-spacing:-21.386400px;}
.ls107{letter-spacing:-19.807200px;}
.ls8a{letter-spacing:-19.611150px;}
.ls8b{letter-spacing:-13.339650px;}
.lsa7{letter-spacing:-12.423375px;}
.ls36{letter-spacing:-12.323400px;}
.ls79{letter-spacing:-11.229000px;}
.lsda{letter-spacing:-10.477125px;}
.ls78{letter-spacing:-10.362600px;}
.ls115{letter-spacing:-10.352250px;}
.ls16{letter-spacing:-10.306350px;}
.ls4d{letter-spacing:-10.287000px;}
.ls1e{letter-spacing:-9.169800px;}
.lsd8{letter-spacing:-9.153000px;}
.ls73{letter-spacing:-8.635500px;}
.ls93{letter-spacing:-8.580000px;}
.lsc9{letter-spacing:-8.349750px;}
.ls9e{letter-spacing:-8.136000px;}
.lsac{letter-spacing:-7.113600px;}
.ls72{letter-spacing:-6.908400px;}
.lse5{letter-spacing:-6.415800px;}
.lsa3{letter-spacing:-6.401850px;}
.ls116{letter-spacing:-6.372600px;}
.ls6f{letter-spacing:-6.303600px;}
.ls114{letter-spacing:-6.227775px;}
.lsbf{letter-spacing:-6.180000px;}
.ls74{letter-spacing:-6.047700px;}
.lsa8{letter-spacing:-5.685225px;}
.ls6d{letter-spacing:-5.181300px;}
.ls50{letter-spacing:-5.085150px;}
.ls23{letter-spacing:-5.060175px;}
.lse3{letter-spacing:-4.950300px;}
.ls3a{letter-spacing:-4.845600px;}
.ls113{letter-spacing:-4.779450px;}
.lsab{letter-spacing:-4.744350px;}
.ls30{letter-spacing:-4.560675px;}
.ls28{letter-spacing:-4.499250px;}
.ls108{letter-spacing:-4.422150px;}
.ls6e{letter-spacing:-4.320600px;}
.lsd9{letter-spacing:-4.301100px;}
.lse2{letter-spacing:-4.245600px;}
.ls20{letter-spacing:-3.613275px;}
.ls9f{letter-spacing:-3.555825px;}
.lsbe{letter-spacing:-3.532500px;}
.lsdd{letter-spacing:-3.532200px;}
.ls71{letter-spacing:-3.454200px;}
.ls13{letter-spacing:-3.453900px;}
.ls3c{letter-spacing:-3.394350px;}
.ls112{letter-spacing:-3.186300px;}
.ls3d{letter-spacing:-2.997975px;}
.ls6c{letter-spacing:-2.871300px;}
.lsf2{letter-spacing:-2.866500px;}
.lsa2{letter-spacing:-2.846025px;}
.lse1{letter-spacing:-2.827500px;}
.ls14{letter-spacing:-2.766600px;}
.lsc4{letter-spacing:-2.647500px;}
.ls76{letter-spacing:-2.545875px;}
.ls68{letter-spacing:-2.491950px;}
.ls9c{letter-spacing:-2.472525px;}
.ls45{letter-spacing:-2.391900px;}
.ls110{letter-spacing:-2.386500px;}
.ls66{letter-spacing:-2.356200px;}
.ls8c{letter-spacing:-2.356050px;}
.ls24{letter-spacing:-2.352000px;}
.lsdb{letter-spacing:-2.288250px;}
.ls2e{letter-spacing:-2.252475px;}
.ls57{letter-spacing:-2.187900px;}
.ls21{letter-spacing:-2.170350px;}
.ls4f{letter-spacing:-2.156625px;}
.lsde{letter-spacing:-2.122800px;}
.ls117{letter-spacing:-2.109300px;}
.ls10c{letter-spacing:-2.109000px;}
.lsa4{letter-spacing:-2.103750px;}
.ls6a{letter-spacing:-1.995000px;}
.lsd0{letter-spacing:-1.922400px;}
.ls10d{letter-spacing:-1.870350px;}
.lsc2{letter-spacing:-1.762500px;}
.ls5b{letter-spacing:-1.716000px;}
.ls75{letter-spacing:-1.609650px;}
.ls4c{letter-spacing:-1.587300px;}
.lsba{letter-spacing:-1.537500px;}
.ls39{letter-spacing:-1.522050px;}
.ls1c{letter-spacing:-1.501650px;}
.ls3e{letter-spacing:-1.501500px;}
.ls65{letter-spacing:-1.480350px;}
.ls67{letter-spacing:-1.479600px;}
.ls7a{letter-spacing:-1.478250px;}
.ls77{letter-spacing:-1.459500px;}
.ls2a{letter-spacing:-1.459050px;}
.ls22{letter-spacing:-1.446900px;}
.ls32{letter-spacing:-1.440000px;}
.ls2f{letter-spacing:-1.438650px;}
.lsf5{letter-spacing:-1.437750px;}
.lsf8{letter-spacing:-1.433250px;}
.ls118{letter-spacing:-1.423575px;}
.ls69{letter-spacing:-1.421775px;}
.lse0{letter-spacing:-1.418100px;}
.lsca{letter-spacing:-1.390500px;}
.ls31{letter-spacing:-1.385175px;}
.lsa9{letter-spacing:-1.383375px;}
.ls15{letter-spacing:-1.383300px;}
.lsd1{letter-spacing:-1.281600px;}
.lsc5{letter-spacing:-0.885000px;}
.lsc0{letter-spacing:-0.848400px;}
.ls111{letter-spacing:-0.793350px;}
.lsad{letter-spacing:-0.789750px;}
.lsf{letter-spacing:-0.760500px;}
.ls18{letter-spacing:-0.750825px;}
.ls29{letter-spacing:-0.750750px;}
.ls64{letter-spacing:-0.740175px;}
.ls7c{letter-spacing:-0.740025px;}
.ls17{letter-spacing:-0.739800px;}
.ls8e{letter-spacing:-0.737100px;}
.ls27{letter-spacing:-0.731250px;}
.ls37{letter-spacing:-0.729000px;}
.ls1f{letter-spacing:-0.723450px;}
.ls11{letter-spacing:-0.719250px;}
.lsf6{letter-spacing:-0.716625px;}
.ls53{letter-spacing:-0.711750px;}
.lsa5{letter-spacing:-0.709800px;}
.ls70{letter-spacing:-0.708000px;}
.lsdc{letter-spacing:-0.704700px;}
.ls51{letter-spacing:-0.688275px;}
.ls41{letter-spacing:-0.682500px;}
.ls91{letter-spacing:-0.646800px;}
.lscb{letter-spacing:-0.640800px;}
.lsd{letter-spacing:0.000000px;}
.lsb8{letter-spacing:0.640800px;}
.ls34{letter-spacing:0.678300px;}
.lsb0{letter-spacing:0.695250px;}
.ls42{letter-spacing:0.695325px;}
.ls90{letter-spacing:0.709500px;}
.ls81{letter-spacing:0.709800px;}
.ls104{letter-spacing:0.713925px;}
.lsee{letter-spacing:0.716625px;}
.ls2{letter-spacing:0.719250px;}
.ls3f{letter-spacing:0.722700px;}
.lsa{letter-spacing:0.723450px;}
.lsf9{letter-spacing:0.729525px;}
.ls5c{letter-spacing:0.729675px;}
.lsa6{letter-spacing:0.735300px;}
.ls5f{letter-spacing:0.740175px;}
.ls59{letter-spacing:0.740250px;}
.ls6b{letter-spacing:0.750075px;}
.ls5{letter-spacing:0.750825px;}
.ls7e{letter-spacing:0.761025px;}
.ls58{letter-spacing:0.761400px;}
.ls5a{letter-spacing:0.761475px;}
.ls10e{letter-spacing:0.770625px;}
.ls7b{letter-spacing:0.772125px;}
.ls47{letter-spacing:0.782250px;}
.ls2b{letter-spacing:0.782925px;}
.ls87{letter-spacing:0.789750px;}
.ls48{letter-spacing:0.793650px;}
.ls1a{letter-spacing:0.804375px;}
.ls9a{letter-spacing:0.814125px;}
.ls55{letter-spacing:0.833175px;}
.ls9d{letter-spacing:0.855000px;}
.lsae{letter-spacing:0.885000px;}
.lsd2{letter-spacing:1.281600px;}
.ls5e{letter-spacing:1.356750px;}
.lsb1{letter-spacing:1.390500px;}
.ls84{letter-spacing:1.419600px;}
.ls11a{letter-spacing:1.423575px;}
.lsec{letter-spacing:1.433250px;}
.ls1d{letter-spacing:1.437750px;}
.ls0{letter-spacing:1.438500px;}
.lsb{letter-spacing:1.446900px;}
.lsbb{letter-spacing:1.456350px;}
.ls43{letter-spacing:1.480350px;}
.ls100{letter-spacing:1.499100px;}
.ls8{letter-spacing:1.500150px;}
.ls4{letter-spacing:1.501650px;}
.lse{letter-spacing:1.516800px;}
.ls5d{letter-spacing:1.522950px;}
.lscf{letter-spacing:1.560000px;}
.ls4a{letter-spacing:1.564500px;}
.ls2d{letter-spacing:1.565850px;}
.ls46{letter-spacing:1.587300px;}
.ls1b{letter-spacing:1.590750px;}
.ls102{letter-spacing:1.593150px;}
.ls4e{letter-spacing:1.593900px;}
.ls10a{letter-spacing:1.609500px;}
.lsc1{letter-spacing:1.762500px;}
.ls109{letter-spacing:1.879200px;}
.lsb2{letter-spacing:1.922400px;}
.ls38{letter-spacing:1.992375px;}
.lscd{letter-spacing:2.085750px;}
.ls8d{letter-spacing:2.090625px;}
.lsd3{letter-spacing:2.122800px;}
.ls80{letter-spacing:2.136225px;}
.ls105{letter-spacing:2.137500px;}
.lsf0{letter-spacing:2.149875px;}
.ls1{letter-spacing:2.157750px;}
.ls9{letter-spacing:2.170350px;}
.ls61{letter-spacing:2.220525px;}
.ls7{letter-spacing:2.252475px;}
.lsbd{letter-spacing:2.307825px;}
.lsfa{letter-spacing:2.345625px;}
.ls2c{letter-spacing:2.348775px;}
.ls49{letter-spacing:2.352000px;}
.ls88{letter-spacing:2.369250px;}
.ls35{letter-spacing:2.381400px;}
.ls19{letter-spacing:2.385600px;}
.ls103{letter-spacing:2.386500px;}
.ls92{letter-spacing:2.394000px;}
.ls10f{letter-spacing:2.414250px;}
.ls96{letter-spacing:2.437500px;}
.ls97{letter-spacing:2.480625px;}
.lsfe{letter-spacing:2.512125px;}
.ls7f{letter-spacing:2.534700px;}
.lsb4{letter-spacing:2.569875px;}
.lsf7{letter-spacing:2.690100px;}
.lsaf{letter-spacing:2.781000px;}
.lsd6{letter-spacing:2.827500px;}
.ls82{letter-spacing:2.846025px;}
.lsed{letter-spacing:2.866500px;}
.lsdf{letter-spacing:2.907000px;}
.ls8f{letter-spacing:2.944350px;}
.ls60{letter-spacing:2.960700px;}
.ls6{letter-spacing:2.997975px;}
.ls101{letter-spacing:2.998200px;}
.ls119{letter-spacing:3.000150px;}
.lsaa{letter-spacing:3.064425px;}
.ls4b{letter-spacing:3.134250px;}
.lsb7{letter-spacing:3.210675px;}
.ls52{letter-spacing:3.219000px;}
.lsce{letter-spacing:3.252600px;}
.lsfd{letter-spacing:3.285525px;}
.lsd4{letter-spacing:3.532200px;}
.lsa0{letter-spacing:3.534300px;}
.ls86{letter-spacing:3.555825px;}
.lsf1{letter-spacing:3.583125px;}
.ls3{letter-spacing:3.596250px;}
.lsfc{letter-spacing:3.651900px;}
.ls63{letter-spacing:3.695550px;}
.ls25{letter-spacing:3.748800px;}
.ls3b{letter-spacing:3.785250px;}
.lsc7{letter-spacing:3.805200px;}
.lsc8{letter-spacing:3.855375px;}
.ls89{letter-spacing:3.954600px;}
.lsa1{letter-spacing:4.005000px;}
.lsb6{letter-spacing:4.178250px;}
.ls7d{letter-spacing:4.228050px;}
.lsef{letter-spacing:4.299750px;}
.ls12{letter-spacing:4.315500px;}
.lsc{letter-spacing:4.336725px;}
.ls10b{letter-spacing:4.367850px;}
.lsfb{letter-spacing:4.378950px;}
.lsff{letter-spacing:4.497300px;}
.ls26{letter-spacing:4.499625px;}
.lsc6{letter-spacing:4.533750px;}
.ls94{letter-spacing:4.548600px;}
.lsd5{letter-spacing:4.950300px;}
.lsb5{letter-spacing:5.133075px;}
.ls62{letter-spacing:5.175900px;}
.ls44{letter-spacing:5.250450px;}
.ls9b{letter-spacing:5.534100px;}
.lse4{letter-spacing:5.628000px;}
.ls98{letter-spacing:5.689125px;}
.ls85{letter-spacing:6.401850px;}
.ls95{letter-spacing:6.615000px;}
.lsf3{letter-spacing:6.725250px;}
.ls54{letter-spacing:6.752100px;}
.lscc{letter-spacing:6.790275px;}
.lsb3{letter-spacing:7.062150px;}
.ls40{letter-spacing:7.095600px;}
.ls33{letter-spacing:7.180725px;}
.lsbc{letter-spacing:7.184625px;}
.ls10{letter-spacing:7.226550px;}
.ls99{letter-spacing:7.447500px;}
.ls83{letter-spacing:7.821450px;}
.lsc3{letter-spacing:7.942500px;}
.ls56{letter-spacing:9.750075px;}
.lsf4{letter-spacing:14.784525px;}
.lsb9{letter-spacing:15.025500px;}
.lse6{letter-spacing:25.757325px;}
.lse9{letter-spacing:26.830650px;}
.lse7{letter-spacing:29.360700px;}
.lseb{letter-spacing:30.000000px;}
.lsd7{letter-spacing:31.823550px;}
.lse8{letter-spacing:32.580900px;}
.lsea{letter-spacing:34.095600px;}
.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;}
._17{margin-left:-38.152202px;}
._2e{margin-left:-32.877900px;}
._26{margin-left:-31.327200px;}
._25{margin-left:-29.639655px;}
._1e{margin-left:-20.039839px;}
._20{margin-left:-16.193625px;}
._27{margin-left:-12.665400px;}
._12{margin-left:-10.863000px;}
._2d{margin-left:-9.291600px;}
._24{margin-left:-8.147250px;}
._22{margin-left:-6.075825px;}
._7{margin-left:-4.931764px;}
._16{margin-left:-2.775675px;}
._18{margin-left:-1.518450px;}
._10{width:1.027875px;}
._1b{width:2.122713px;}
._6{width:3.123750px;}
._1{width:4.341750px;}
._8{width:5.535226px;}
._f{width:7.322774px;}
._2{width:8.977500px;}
._b{width:10.210350px;}
._9{width:11.278800px;}
._15{width:12.329850px;}
._3{width:13.503000px;}
._e{width:15.133200px;}
._c{width:16.241250px;}
._d{width:17.379225px;}
._4{width:18.427500px;}
._14{width:19.576275px;}
._5{width:20.763750px;}
._a{width:21.768600px;}
._19{width:22.832175px;}
._11{width:24.758100px;}
._13{width:25.931175px;}
._1d{width:27.152925px;}
._29{width:28.496475px;}
._21{width:29.544150px;}
._2b{width:30.865200px;}
._1f{width:32.388225px;}
._2a{width:34.614000px;}
._0{width:35.626500px;}
._32{width:39.312750px;}
._1a{width:44.879100px;}
._28{width:47.053200px;}
._23{width:48.734400px;}
._2f{width:56.038060px;}
._30{width:57.343522px;}
._1c{width:58.601925px;}
._2c{width:61.162930px;}
._31{width:81.315150px;}
._36{width:290.082450px;}
._33{width:459.271725px;}
._34{width:730.333500px;}
._35{width:776.838000px;}
.fc0{color:transparent;}
.fs21{font-size:30.000000px;}
.fs4b{font-size:33.750000px;}
.fs1c{font-size:34.500000px;}
.fs1d{font-size:36.000000px;}
.fs5{font-size:39.750000px;}
.fs26{font-size:40.500000px;}
.fs16{font-size:41.250000px;}
.fs15{font-size:42.000000px;}
.fs52{font-size:42.750000px;}
.fs20{font-size:43.500000px;}
.fs14{font-size:44.250000px;}
.fs23{font-size:48.000000px;}
.fs28{font-size:48.750000px;}
.fs4a{font-size:49.500000px;}
.fs12{font-size:50.250000px;}
.fs13{font-size:51.000000px;}
.fsf{font-size:51.750000px;}
.fs6{font-size:52.500000px;}
.fs7{font-size:53.250000px;}
.fsd{font-size:54.000000px;}
.fs10{font-size:54.750000px;}
.fsb{font-size:55.500000px;}
.fs11{font-size:56.250000px;}
.fs1b{font-size:57.000000px;}
.fs1{font-size:57.750000px;}
.fs4{font-size:58.500000px;}
.fs3{font-size:59.250000px;}
.fs22{font-size:60.000000px;}
.fs31{font-size:60.750000px;}
.fs4e{font-size:62.250000px;}
.fs30{font-size:63.000000px;}
.fs2{font-size:63.750000px;}
.fs2f{font-size:64.500000px;}
.fs3c{font-size:65.250000px;}
.fs2e{font-size:66.750000px;}
.fs3b{font-size:67.500000px;}
.fs2b{font-size:68.250000px;}
.fse{font-size:69.000000px;}
.fs2c{font-size:72.000000px;}
.fs36{font-size:72.750000px;}
.fs29{font-size:74.250000px;}
.fs2a{font-size:75.000000px;}
.fs8{font-size:75.750000px;}
.fs37{font-size:76.500000px;}
.fs1e{font-size:77.250000px;}
.fs3d{font-size:78.000000px;}
.fs3e{font-size:79.500000px;}
.fs2d{font-size:84.000000px;}
.fs1f{font-size:85.500000px;}
.fs1a{font-size:86.250000px;}
.fsa{font-size:87.000000px;}
.fs35{font-size:87.750000px;}
.fs44{font-size:92.250000px;}
.fs4c{font-size:96.750000px;}
.fs27{font-size:97.500000px;}
.fs0{font-size:99.000000px;}
.fs45{font-size:100.500000px;}
.fs46{font-size:102.000000px;}
.fs17{font-size:104.250000px;}
.fs4d{font-size:108.750000px;}
.fs49{font-size:110.250000px;}
.fs3a{font-size:111.750000px;}
.fs38{font-size:112.500000px;}
.fs39{font-size:113.250000px;}
.fsc{font-size:121.500000px;}
.fs42{font-size:126.750000px;}
.fs48{font-size:129.000000px;}
.fs19{font-size:138.750000px;}
.fs51{font-size:139.500000px;}
.fs50{font-size:145.500000px;}
.fs9{font-size:156.000000px;}
.fs43{font-size:161.250000px;}
.fs25{font-size:167.250000px;}
.fs4f{font-size:168.000000px;}
.fs24{font-size:169.500000px;}
.fs18{font-size:173.250000px;}
.fs33{font-size:187.500000px;}
.fs34{font-size:199.500000px;}
.fs32{font-size:202.500000px;}
.fs47{font-size:225.750000px;}
.fs40{font-size:243.000000px;}
.fs41{font-size:251.250000px;}
.fs3f{font-size:254.250000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:64.255305px;}
.y12d{bottom:87.300480px;}
.y19c{bottom:88.354118px;}
.y2c2{bottom:88.731180px;}
.y2c3{bottom:88.735605px;}
.yed{bottom:89.084955px;}
.y1d7{bottom:89.091705px;}
.y287{bottom:89.815005px;}
.y164{bottom:89.816655px;}
.yb0{bottom:90.168742px;}
.yb1{bottom:90.174255px;}
.y337{bottom:91.255305px;}
.y72{bottom:91.610505px;}
.y216{bottom:91.613055px;}
.y3b{bottom:91.975455px;}
.y12c{bottom:100.626293px;}
.y3a{bottom:101.695005px;}
.y39{bottom:101.696467px;}
.yec{bottom:102.770205px;}
.y2c1{bottom:103.135305px;}
.y19b{bottom:103.477117px;}
.yaf{bottom:103.494555px;}
.y1d6{bottom:104.207467px;}
.y286{bottom:104.573992px;}
.y163{bottom:104.575605px;}
.y162{bottom:104.576317px;}
.y71{bottom:105.295755px;}
.y24c{bottom:106.376805px;}
.y214{bottom:106.727243px;}
.y215{bottom:106.736055px;}
.y38{bottom:109.974405px;}
.y12b{bottom:113.592668px;}
.yeb{bottom:115.736580px;}
.yad{bottom:116.442143px;}
.yae{bottom:116.454105px;}
.y2c0{bottom:116.816655px;}
.y285{bottom:116.994555px;}
.y284{bottom:116.998230px;}
.y161{bottom:117.169942px;}
.y19a{bottom:118.240680px;}
.y70{bottom:118.607955px;}
.y1d5{bottom:118.971030px;}
.y213{bottom:120.412492px;}
.y32b{bottom:121.135905px;}
.y2ef{bottom:121.482930px;}
.y24b{bottom:123.655605px;}
.y12a{bottom:126.545730px;}
.yac{bottom:128.689642px;}
.yea{bottom:129.062392px;}
.y319{bottom:129.776055px;}
.y309{bottom:130.135305px;}
.y6f{bottom:130.849905px;}
.y283{bottom:131.930580px;}
.y199{bottom:132.644805px;}
.y1d3{bottom:133.363455px;}
.y1d4{bottom:133.375155px;}
.y37{bottom:135.175868px;}
.y2ee{bottom:136.970805px;}
.y24a{bottom:138.416355px;}
.yab{bottom:142.015455px;}
.ye9{bottom:142.018492px;}
.yaa{bottom:142.021793px;}
.y32a{bottom:143.096505px;}
.y6e{bottom:144.524092px;}
.y129{bottom:145.622543px;}
.y2bf{bottom:146.331742px;}
.y282{bottom:146.336917px;}
.y160{bottom:147.044655px;}
.y198{bottom:147.408367px;}
.y212{bottom:147.769680px;}
.y1d2{bottom:148.127017px;}
.y36{bottom:148.128930px;}
.y336{bottom:152.112255px;}
.y2ed{bottom:153.175305px;}
.y249{bottom:153.536205px;}
.ya8{bottom:154.973505px;}
.ya9{bottom:154.974855px;}
.y6d{bottom:158.209342px;}
.y128{bottom:158.575605px;}
.y211{bottom:160.736055px;}
.y210{bottom:160.739393px;}
.y281{bottom:160.905780px;}
.y2be{bottom:161.092492px;}
.y35{bottom:161.095305px;}
.y34{bottom:161.108130px;}
.y15f{bottom:161.808218px;}
.y197{bottom:162.171930px;}
.y1d1{bottom:162.531142px;}
.y317{bottom:163.971705px;}
.y318{bottom:163.975905px;}
.ya7{bottom:167.926567px;}
.y6c{bottom:171.535155px;}
.y33{bottom:174.061192px;}
.ye8{bottom:174.415755px;}
.ye7{bottom:174.415942px;}
.y335{bottom:174.784005px;}
.y2bd{bottom:175.854367px;}
.y20f{bottom:175.862393px;}
.y15e{bottom:176.212343px;}
.y196{bottom:176.935493px;}
.y1d0{bottom:177.294705px;}
.y280{bottom:178.012342px;}
.y127{bottom:178.016505px;}
.y2ec{bottom:179.816055px;}
.y2eb{bottom:179.819092px;}
.ya6{bottom:181.252380px;}
.y248{bottom:182.684955px;}
.y6b{bottom:184.489380px;}
.y31{bottom:187.009080px;}
.y32{bottom:187.014255px;}
.y20e{bottom:188.815455px;}
.ye6{bottom:190.257817px;}
.y2bc{bottom:190.617930px;}
.y15d{bottom:190.969980px;}
.y126{bottom:191.335155px;}
.y125{bottom:191.363393px;}
.y27f{bottom:192.948968px;}
.y247{bottom:197.448517px;}
.y195{bottom:197.450055px;}
.y6a{bottom:197.455755px;}
.y69{bottom:197.461493px;}
.y1cf{bottom:197.816317px;}
.ya5{bottom:199.969755px;}
.y30{bottom:199.975455px;}
.y2ea{bottom:202.495155px;}
.y20d{bottom:203.571592px;}
.y124{bottom:203.970330px;}
.y15c{bottom:205.733542px;}
.y329{bottom:209.335755px;}
.y68{bottom:210.414555px;}
.y27e{bottom:210.774405px;}
.y2bb{bottom:211.132492px;}
.y246{bottom:212.212080px;}
.y194{bottom:212.213617px;}
.y1ce{bottom:212.220442px;}
.y2f{bottom:212.932493px;}
.ya4{bottom:213.655005px;}
.y308{bottom:216.535605px;}
.ye5{bottom:217.615005px;}
.ye4{bottom:217.621492px;}
.y20b{bottom:218.328555px;}
.y20c{bottom:218.335155px;}
.y15b{bottom:220.856542px;}
.y333{bottom:221.030580px;}
.y334{bottom:221.036205px;}
.y327{bottom:222.656205px;}
.y27c{bottom:225.147668px;}
.y27d{bottom:225.174255px;}
.y2e9{bottom:225.175905px;}
.y2e8{bottom:225.188542px;}
.y2ba{bottom:225.896055px;}
.y245{bottom:226.606455px;}
.y193{bottom:226.977180px;}
.y328{bottom:229.135905px;}
.y67{bottom:229.850805px;}
.ye3{bottom:230.574555px;}
.y123{bottom:230.968080px;}
.y2e{bottom:232.368743px;}
.ya3{bottom:232.735005px;}
.y20a{bottom:235.967617px;}
.y27b{bottom:239.192355px;}
.y244{bottom:241.370017px;}
.y15a{bottom:241.371105px;}
.y332{bottom:242.812830px;}
.y66{bottom:243.176617px;}
.ye2{bottom:243.889492px;}
.y122{bottom:243.934455px;}
.ya2{bottom:245.335155px;}
.ya1{bottom:245.341080px;}
.y191{bottom:245.691592px;}
.y2d{bottom:245.692230px;}
.y192{bottom:245.694555px;}
.y2b9{bottom:246.416355px;}
.y1cc{bottom:247.852042px;}
.y1cd{bottom:247.855005px;}
.y2e7{bottom:247.864605px;}
.y209{bottom:250.731180px;}
.y307{bottom:253.257743px;}
.y159{bottom:256.494105px;}
.y121{bottom:256.887518px;}
.ye1{bottom:257.209192px;}
.y326{bottom:257.937293px;}
.y243{bottom:259.009080px;}
.y18f{bottom:260.450692px;}
.y190{bottom:260.455155px;}
.y2b7{bottom:261.531742px;}
.y2b8{bottom:261.536205px;}
.y65{bottom:261.543555px;}
.y1cb{bottom:262.615605px;}
.y1ca{bottom:262.622467px;}
.y2c{bottom:264.409605px;}
.y208{bottom:265.135305px;}
.y331{bottom:265.855455px;}
.y27a{bottom:269.078918px;}
.ye0{bottom:269.816130px;}
.y120{bottom:269.840580px;}
.y2e6{bottom:270.898980px;}
.y324{bottom:271.255905px;}
.y242{bottom:273.772642px;}
.y158{bottom:273.773730px;}
.y18e{bottom:275.214255px;}
.y306{bottom:275.936055px;}
.y2b6{bottom:276.295305px;}
.y1c9{bottom:276.667155px;}
.y325{bottom:277.376355px;}
.y2b{bottom:278.094855px;}
.y2a{bottom:278.095717px;}
.y64{bottom:278.104305px;}
.y11f{bottom:282.806955px;}
.y206{bottom:283.132942px;}
.y207{bottom:283.135905px;}
.y279{bottom:283.842480px;}
.y241{bottom:288.536205px;}
.y157{bottom:288.895455px;}
.ydf{bottom:289.252380px;}
.y29{bottom:289.970467px;}
.y2e5{bottom:289.974855px;}
.y2e4{bottom:289.979880px;}
.ya0{bottom:290.696767px;}
.y18d{bottom:292.494555px;}
.y2b5{bottom:293.575605px;}
.y11e{bottom:295.760018px;}
.y323{bottom:296.095305px;}
.y322{bottom:296.456205px;}
.y204{bottom:297.890880px;}
.y205{bottom:297.896505px;}
.y278{bottom:298.246605px;}
.y304{bottom:298.250955px;}
.y305{bottom:298.255905px;}
.y156{bottom:301.492793px;}
.yde{bottom:301.859317px;}
.y9f{bottom:304.022580px;}
.y1c8{bottom:305.462092px;}
.y321{bottom:305.815005px;}
.y240{bottom:306.175905px;}
.y330{bottom:307.255305px;}
.y11d{bottom:308.713080px;}
.y203{bottom:311.576130px;}
.y277{bottom:313.010168px;}
.y315{bottom:315.894705px;}
.y316{bottom:315.895455px;}
.y155{bottom:316.256355px;}
.y154{bottom:316.265580px;}
.y28{bottom:316.608780px;}
.y9e{bottom:317.707830px;}
.y1c7{bottom:318.391980px;}
.y320{bottom:319.135305px;}
.y303{bottom:320.929267px;}
.y2b4{bottom:320.936505px;}
.y23f{bottom:321.295755px;}
.ydd{bottom:321.661492px;}
.y18c{bottom:322.009980px;}
.y276{bottom:327.773730px;}
.y11c{bottom:328.149330px;}
.y153{bottom:328.859205px;}
.y27{bottom:329.575155px;}
.y26{bottom:329.582655px;}
.y9d{bottom:330.660892px;}
.y1c6{bottom:333.155542px;}
.ydc{bottom:334.614555px;}
.ydb{bottom:334.615155px;}
.y23e{bottom:336.056505px;}
.y18b{bottom:336.414105px;}
.y2b3{bottom:336.415755px;}
.y2b2{bottom:336.419092px;}
.y31f{bottom:338.209680px;}
.y202{bottom:341.089943px;}
.y11b{bottom:341.102393px;}
.y25{bottom:342.535717px;}
.y302{bottom:343.607580px;}
.y9c{bottom:343.619280px;}
.y63{bottom:343.628430px;}
.y275{bottom:345.053355px;}
.y314{bottom:347.214705px;}
.yda{bottom:347.581530px;}
.y1c5{bottom:347.919105px;}
.y23d{bottom:349.736055px;}
.y189{bottom:351.170430px;}
.y18a{bottom:351.174705px;}
.y2b1{bottom:351.542092px;}
.y32f{bottom:352.610355px;}
.y11a{bottom:354.055455px;}
.y24{bottom:355.488780px;}
.y201{bottom:356.212942px;}
.y62{bottom:356.581493px;}
.y9b{bottom:356.585655px;}
.y31e{bottom:357.295305px;}
.y31d{bottom:357.296992px;}
.y152{bottom:358.013580px;}
.y274{bottom:360.176355px;}
.y1c4{bottom:360.885480px;}
.y2af{bottom:364.492005px;}
.y2b0{bottom:364.495155px;}
.y188{bottom:365.574555px;}
.y301{bottom:365.935455px;}
.y300{bottom:365.937892px;}
.y31b{bottom:367.016505px;}
.y23{bottom:368.455155px;}
.y61{bottom:369.534555px;}
.y9a{bottom:369.538718px;}
.y1ff{bottom:370.973505px;}
.y200{bottom:370.976505px;}
.y119{bottom:372.776055px;}
.y151{bottom:373.852642px;}
.y1c3{bottom:376.008480px;}
.y31c{bottom:376.736055px;}
.y272{bottom:378.170430px;}
.y273{bottom:378.174855px;}
.y2ad{bottom:379.613468px;}
.y2ae{bottom:379.615005px;}
.y23c{bottom:379.965667px;}
.y187{bottom:380.335155px;}
.y22{bottom:381.416205px;}
.y60{bottom:381.770992px;}
.y99{bottom:382.491780px;}
.y118{bottom:386.096505px;}
.y1fe{bottom:386.098755px;}
.y117{bottom:386.106255px;}
.y150{bottom:388.616205px;}
.y1c2{bottom:390.772042px;}
.y271{bottom:392.574555px;}
.yd9{bottom:393.296655px;}
.y23b{bottom:394.729230px;}
.y186{bottom:395.091630px;}
.y2ac{bottom:395.095905px;}
.y31a{bottom:395.816055px;}
.y5f{bottom:396.529380px;}
.y116{bottom:399.059318px;}
.y21{bottom:400.493017px;}
.y1fd{bottom:400.502880px;}
.y98{bottom:401.568592px;}
.y14f{bottom:403.723267px;}
.y313{bottom:403.743555px;}
.y1c1{bottom:405.535642px;}
.yd8{bottom:406.263030px;}
.y270{bottom:406.601580px;}
.y23a{bottom:409.492793px;}
.y185{bottom:409.495755px;}
.y5e{bottom:409.498155px;}
.y2ab{bottom:409.852755px;}
.y1fc{bottom:413.090017px;}
.y20{bottom:413.818830px;}
.y97{bottom:414.894405px;}
.y2ff{bottom:416.695605px;}
.y2fe{bottom:416.696355px;}
.y14e{bottom:418.486830px;}
.yd7{bottom:419.575530px;}
.y5d{bottom:422.451218px;}
.y1c0{bottom:423.534142px;}
.y239{bottom:424.246117px;}
.y115{bottom:425.697630px;}
.y1f{bottom:426.785205px;}
.y184{bottom:429.294105px;}
.y2aa{bottom:431.086192px;}
.yd6{bottom:432.541905px;}
.y14d{bottom:433.250392px;}
.y96{bottom:433.974405px;}
.y1fb{bottom:434.691780px;}
.y312{bottom:436.499055px;}
.y26f{bottom:436.847580px;}
.y1bf{bottom:438.297705px;}
.y238{bottom:439.009680px;}
.y114{bottom:439.010130px;}
.y2fd{bottom:439.376355px;}
.y182{bottom:443.326343px;}
.y183{bottom:443.334705px;}
.y5c{bottom:445.487280px;}
.y2a9{bottom:445.849755px;}
.yd5{bottom:445.854405px;}
.y1e{bottom:446.221455px;}
.y14b{bottom:446.573205px;}
.y14c{bottom:446.576205px;}
.y95{bottom:447.474405px;}
.y94{bottom:447.475567px;}
.y1fa{bottom:449.095905px;}
.y26e{bottom:451.611142px;}
.y113{bottom:451.976505px;}
.y112{bottom:451.977480px;}
.y1be{bottom:453.061267px;}
.y237{bottom:453.413805px;}
.y5b{bottom:458.813092px;}
.y1c{bottom:459.528780px;}
.y1d{bottom:459.533955px;}
.y93{bottom:460.615005px;}
.y14a{bottom:461.691630px;}
.yd4{bottom:464.574105px;}
.y111{bottom:465.289980px;}
.y181{bottom:465.291967px;}
.y26c{bottom:466.337955px;}
.y26d{bottom:466.374705px;}
.y2a8{bottom:467.096505px;}
.y2a7{bottom:467.098718px;}
.y236{bottom:468.532380px;}
.y311{bottom:468.906555px;}
.y1f8{bottom:470.333205px;}
.y1f9{bottom:470.336355px;}
.y1b{bottom:472.495155px;}
.y1bd{bottom:474.294705px;}
.y2fc{bottom:475.916355px;}
.y92{bottom:476.455155px;}
.y149{bottom:476.455193px;}
.y339{bottom:477.715905px;}
.y5a{bottom:478.249343px;}
.y110{bottom:478.256355px;}
.yd3{bottom:478.259355px;}
.y180{bottom:480.774405px;}
.y26b{bottom:481.101517px;}
.y2a5{bottom:481.493205px;}
.y2a6{bottom:481.675905px;}
.y235{bottom:482.934180px;}
.y1f6{bottom:485.446568px;}
.y1a{bottom:485.454555px;}
.y1f7{bottom:485.456205px;}
.y19{bottom:485.464455px;}
.y1bb{bottom:489.047617px;}
.y1bc{bottom:489.055455px;}
.y338{bottom:490.855005px;}
.y58{bottom:491.570730px;}
.y59{bottom:491.575155px;}
.y148{bottom:491.578192px;}
.y10f{bottom:491.580818px;}
.y17f{bottom:496.255305px;}
.y26a{bottom:496.583955px;}
.y2a4{bottom:496.616205px;}
.yd2{bottom:497.695605px;}
.y18{bottom:498.417517px;}
.y1f5{bottom:499.491255px;}
.y234{bottom:500.213805px;}
.y310{bottom:500.574555px;}
.y1ba{bottom:504.170618px;}
.y2fb{bottom:504.536205px;}
.y57{bottom:505.974855px;}
.y91{bottom:506.332080px;}
.y147{bottom:510.647317px;}
.yd0{bottom:510.649642px;}
.yd1{bottom:510.655005px;}
.y10e{bottom:510.657630px;}
.y269{bottom:511.347518px;}
.y2a3{bottom:511.375155px;}
.y17e{bottom:512.815455px;}
.y233{bottom:515.332530px;}
.y90{bottom:520.017330px;}
.y10d{bottom:523.970130px;}
.y146{bottom:523.973130px;}
.ycf{bottom:523.975455px;}
.y17{bottom:525.055830px;}
.y56{bottom:525.775005px;}
.y268{bottom:526.111080px;}
.y1f4{bottom:529.377817px;}
.y232{bottom:529.736655px;}
.y8f{bottom:533.329830px;}
.y1b9{bottom:534.752055px;}
.y10c{bottom:536.939505px;}
.y145{bottom:537.298943px;}
.y16{bottom:538.008893px;}
.y267{bottom:540.515205px;}
.yce{bottom:540.534668px;}
.y2a2{bottom:541.255755px;}
.y2fa{bottom:541.256543px;}
.y17d{bottom:543.407280px;}
.y1f3{bottom:544.141380px;}
.y8e{bottom:546.655642px;}
.y55{bottom:548.455755px;}
.y1b8{bottom:549.515618px;}
.y15{bottom:551.334705px;}
.y231{bottom:551.336355px;}
.y14{bottom:551.341230px;}
.y266{bottom:555.638205px;}
.y2a1{bottom:556.009080px;}
.y10b{bottom:556.370393px;}
.y30e{bottom:556.375755px;}
.y144{bottom:556.382092px;}
.y1f2{bottom:556.730505px;}
.y17c{bottom:558.170842px;}
.y8d{bottom:559.608705px;}
.y2f9{bottom:563.929418px;}
.y13{bottom:563.934855px;}
.y12{bottom:563.935830px;}
.y1b7{bottom:564.279180px;}
.y230{bottom:566.095305px;}
.y142{bottom:569.329792px;}
.y143{bottom:569.335155px;}
.ycd{bottom:569.689043px;}
.y10a{bottom:569.696205px;}
.y2a0{bottom:570.772642px;}
.y1f1{bottom:572.212943px;}
.y17b{bottom:572.917868px;}
.y8c{bottom:572.934518px;}
.y265{bottom:576.884955px;}
.y11{bottom:577.261642px;}
.y1b6{bottom:579.402180px;}
.y22f{bottom:580.496805px;}
.y109{bottom:582.297143px;}
.y141{bottom:582.655605px;}
.ycc{bottom:583.015830px;}
.y29f{bottom:585.531743px;}
.y8b{bottom:586.260330px;}
.y1f0{bottom:586.969080px;}
.y2f8{bottom:586.974855px;}
.y17a{bottom:588.400305px;}
.yf{bottom:590.209830px;}
.y10{bottom:590.214705px;}
.y54{bottom:591.655005px;}
.y264{bottom:592.007955px;}
.y1b5{bottom:594.165743px;}
.y140{bottom:595.975905px;}
.ycb{bottom:595.982205px;}
.y8a{bottom:599.213393px;}
.y29d{bottom:600.289343px;}
.y29e{bottom:600.295305px;}
.y1ef{bottom:601.732643px;}
.y179{bottom:603.163868px;}
.y53{bottom:604.630267px;}
.y108{bottom:608.935455px;}
.y1b4{bottom:609.288743px;}
.yca{bottom:609.294705px;}
.ye{bottom:609.646080px;}
.y22e{bottom:609.649643px;}
.y30c{bottom:611.809755px;}
.y262{bottom:613.251705px;}
.y263{bottom:613.254705px;}
.y29c{bottom:615.052905px;}
.y2f7{bottom:615.055905px;}
.y1ee{bottom:616.498943px;}
.y178{bottom:617.927430px;}
.y2db{bottom:618.292755px;}
.y89{bottom:618.649643px;}
.y52{bottom:619.034392px;}
.y107{bottom:621.896655px;}
.y106{bottom:621.902805px;}
.yc9{bottom:622.607130px;}
.yd{bottom:622.971892px;}
.y13f{bottom:622.975905px;}
.y1b3{bottom:624.052305px;}
.y22d{bottom:624.413205px;}
.y260{bottom:628.370280px;}
.y261{bottom:628.374705px;}
.y29b{bottom:630.175493px;}
.y1ed{bottom:631.621943px;}
.y51{bottom:631.628017px;}
.y88{bottom:631.975455px;}
.y177{bottom:632.690993px;}
.y2d9{bottom:633.406868px;}
.y2da{bottom:633.415755px;}
.y105{bottom:635.202105px;}
.yc8{bottom:635.573505px;}
.yc{bottom:635.938268px;}
.y1b2{bottom:639.165855px;}
.y22c{bottom:639.538268px;}
.y25f{bottom:642.774405px;}
.y30b{bottom:642.955755px;}
.y29a{bottom:644.939055px;}
.y50{bottom:645.313267px;}
.y176{bottom:647.435805px;}
.y2d8{bottom:647.810993px;}
.y104{bottom:648.168480px;}
.yc7{bottom:648.899318px;}
.y87{bottom:651.414705px;}
.y86{bottom:651.421230px;}
.y1ec{bottom:652.136505px;}
.y13e{bottom:652.503255px;}
.y22b{bottom:653.942393px;}
.yb{bottom:655.733955px;}
.y25e{bottom:657.894405px;}
.y4f{bottom:658.625767px;}
.y1b1{bottom:660.412605px;}
.y2d6{bottom:662.571180px;}
.y2d7{bottom:662.574555px;}
.y85{bottom:664.014855px;}
.y13d{bottom:665.456318px;}
.y299{bottom:666.172493px;}
.y229{bottom:666.892642px;}
.y22a{bottom:666.895455px;}
.y1eb{bottom:667.261718px;}
.y103{bottom:667.604730px;}
.ya{bottom:668.695005px;}
.y9{bottom:668.701493px;}
.y175{bottom:669.041993px;}
.y1b0{bottom:675.539618px;}
.y2d5{bottom:677.334743px;}
.y13c{bottom:678.049943px;}
.y4e{bottom:678.421455px;}
.y84{bottom:680.575155px;}
.y102{bottom:680.930543px;}
.y298{bottom:680.936055px;}
.y227{bottom:681.645292px;}
.y8{bottom:681.654555px;}
.y228{bottom:681.656205px;}
.yc6{bottom:682.019767px;}
.y174{bottom:683.805555px;}
.y2e3{bottom:687.775005px;}
.y1ea{bottom:688.495155px;}
.y2f6{bottom:689.215305px;}
.y13b{bottom:691.370393px;}
.y4d{bottom:691.387830px;}
.y2d4{bottom:691.738868px;}
.y101{bottom:694.256355px;}
.y1af{bottom:696.413618px;}
.y173{bottom:698.928555px;}
.y25d{bottom:700.728443px;}
.yc4{bottom:701.810093px;}
.yc5{bottom:701.815455px;}
.y297{bottom:702.176355px;}
.y296{bottom:702.181380px;}
.y226{bottom:702.892042px;}
.y1e8{bottom:703.254555px;}
.y1e9{bottom:703.255755px;}
.y13a{bottom:704.688180px;}
.y4c{bottom:704.700330px;}
.y2e2{bottom:706.495755px;}
.y83{bottom:707.566230px;}
.y7{bottom:707.934405px;}
.y1ad{bottom:711.891443px;}
.y1ae{bottom:711.896055px;}
.y2d3{bottom:712.253430px;}
.yff{bottom:713.690280px;}
.y100{bottom:713.695605px;}
.y295{bottom:714.775005px;}
.yc2{bottom:715.134368px;}
.yc3{bottom:715.135905px;}
.y25c{bottom:715.851443px;}
.y1e7{bottom:717.299242px;}
.y225{bottom:717.652793px;}
.y171{bottom:720.172305px;}
.y172{bottom:720.175305px;}
.y82{bottom:720.892042px;}
.y139{bottom:723.764993px;}
.y4b{bottom:724.855455px;}
.y4a{bottom:724.861942px;}
.y1ab{bottom:726.636893px;}
.y1ac{bottom:726.655005px;}
.yfe{bottom:726.656655px;}
.yfd{bottom:726.659580px;}
.y2d2{bottom:727.376430px;}
.y294{bottom:729.535605px;}
.y25b{bottom:730.603005px;}
.yc1{bottom:731.695118px;}
.y224{bottom:732.416355px;}
.y2e1{bottom:732.775605px;}
.y81{bottom:734.204542px;}
.y170{bottom:735.295305px;}
.y138{bottom:737.090805px;}
.y48{bottom:737.813468px;}
.y49{bottom:737.815005px;}
.yfc{bottom:739.253205px;}
.y1aa{bottom:741.041018px;}
.y2d1{bottom:741.953618px;}
.y6{bottom:742.495155px;}
.y25a{bottom:745.366567px;}
.y1e6{bottom:747.172493px;}
.y80{bottom:747.530355px;}
.y16f{bottom:749.695005px;}
.y137{bottom:750.777780px;}
.y222{bottom:753.292943px;}
.y223{bottom:753.295755px;}
.y2e0{bottom:758.696055px;}
.y293{bottom:759.060443px;}
.y7f{bottom:760.483417px;}
.yc0{bottom:761.222243px;}
.y1e4{bottom:761.931443px;}
.y1e5{bottom:761.936055px;}
.y2d0{bottom:762.654555px;}
.yfb{bottom:766.250955px;}
.y259{bottom:766.253880px;}
.y221{bottom:768.056505px;}
.y136{bottom:769.489642px;}
.y16e{bottom:770.935455px;}
.y2f3{bottom:772.014855px;}
.y1a9{bottom:772.365330px;}
.y2f5{bottom:772.735005px;}
.y7e{bottom:773.809230px;}
.ybf{bottom:774.176093px;}
.y292{bottom:774.542880px;}
.y2f4{bottom:775.615605px;}
.y1e2{bottom:776.687693px;}
.y1e3{bottom:776.695005px;}
.y2cf{bottom:777.776055px;}
.yfa{bottom:779.217330px;}
.y258{bottom:781.190505px;}
.y220{bottom:782.456205px;}
.y5{bottom:782.815455px;}
.y4{bottom:782.821080px;}
.y135{bottom:782.821943px;}
.y47{bottom:783.169155px;}
.y7d{bottom:786.775605px;}
.y1a8{bottom:787.128893px;}
.y291{bottom:787.142843px;}
.ybe{bottom:787.501905px;}
.y1e1{bottom:791.451255px;}
.y2ce{bottom:791.815005px;}
.yf9{bottom:792.529830px;}
.y30f{bottom:792.535155px;}
.y133{bottom:795.769493px;}
.y134{bottom:795.775005px;}
.y30d{bottom:796.135905px;}
.y46{bottom:796.848893px;}
.y3{bottom:799.555455px;}
.y256{bottom:800.088892px;}
.y290{bottom:800.089155px;}
.y257{bottom:800.094255px;}
.y7c{bottom:800.100668px;}
.y2f2{bottom:800.275605px;}
.y2df{bottom:800.455155px;}
.ybd{bottom:800.795843px;}
.y32e{bottom:800.816055px;}
.y1a7{bottom:802.251893px;}
.yf8{bottom:805.496205px;}
.y1e0{bottom:806.214818px;}
.y16d{bottom:808.375155px;}
.y132{bottom:809.095305px;}
.y21f{bottom:810.165930px;}
.y44{bottom:810.172455px;}
.y45{bottom:810.174705px;}
.y7b{bottom:813.067043px;}
.y254{bottom:813.407017px;}
.y255{bottom:813.414705px;}
.ybc{bottom:813.762218px;}
.y28f{bottom:815.571593px;}
.y1a6{bottom:817.015455px;}
.yf7{bottom:818.819505px;}
.y1df{bottom:820.618943px;}
.y2cd{bottom:822.054855px;}
.y16c{bottom:823.134255px;}
.y43{bottom:823.138830px;}
.y2de{bottom:824.935455px;}
.y21e{bottom:825.288930px;}
.y7a{bottom:826.379543px;}
.ybb{bottom:827.088030px;}
.y253{bottom:828.530017px;}
.y32d{bottom:828.536205px;}
.y2{bottom:829.974855px;}
.y28e{bottom:830.335155px;}
.y30a{bottom:830.695005px;}
.y1a5{bottom:831.776055px;}
.y2f1{bottom:835.015905px;}
.y131{bottom:836.095305px;}
.y42{bottom:836.451330px;}
.y2cc{bottom:836.808217px;}
.y16b{bottom:837.894855px;}
.yf6{bottom:838.255755px;}
.y79{bottom:839.705355px;}
.y21d{bottom:840.052493px;}
.y1de{bottom:841.133505px;}
.yba{bottom:846.883717px;}
.y1a3{bottom:846.893430px;}
.y1a4{bottom:846.896055px;}
.y41{bottom:849.417705px;}
.y28d{bottom:851.209155px;}
.y2cb{bottom:851.571780px;}
.yf5{bottom:851.579393px;}
.y16a{bottom:853.012043px;}
.y21c{bottom:854.816055px;}
.y1dd{bottom:856.256505px;}
.y2dd{bottom:856.615605px;}
.y252{bottom:858.043830px;}
.y78{bottom:859.501043px;}
.yb9{bottom:859.850093px;}
.y32c{bottom:862.375155px;}
.y2f0{bottom:863.095305px;}
.y1{bottom:864.894855px;}
.y2c9{bottom:865.971443px;}
.y2ca{bottom:865.975905px;}
.y28c{bottom:866.332155px;}
.y169{bottom:867.768180px;}
.y1a2{bottom:868.126868px;}
.y40{bottom:868.853955px;}
.y21b{bottom:869.566680px;}
.y130{bottom:870.295305px;}
.yf4{bottom:870.650692px;}
.y1dc{bottom:871.020068px;}
.y77{bottom:872.448593px;}
.y251{bottom:873.166830px;}
.yb8{bottom:873.173205px;}
.y2dc{bottom:878.215305px;}
.y2c8{bottom:880.735005px;}
.y28b{bottom:881.455155px;}
.y3f{bottom:882.179767px;}
.y168{bottom:882.531743px;}
.y1a1{bottom:883.249868px;}
.yf3{bottom:883.976505px;}
.yf2{bottom:883.983180px;}
.y21a{bottom:884.330243px;}
.y76{bottom:885.774405px;}
.y1db{bottom:886.861943px;}
.y250{bottom:887.930393px;}
.yb7{bottom:892.609455px;}
.yf1{bottom:896.576805px;}
.yf0{bottom:896.583143px;}
.y167{bottom:897.285855px;}
.y1da{bottom:899.812043px;}
.y2c6{bottom:901.608592px;}
.y2c7{bottom:901.614555px;}
.y3e{bottom:901.975455px;}
.y219{bottom:902.328742px;}
.y289{bottom:902.333205px;}
.y28a{bottom:902.336355px;}
.y24f{bottom:902.693955px;}
.y19f{bottom:904.851593px;}
.y1a0{bottom:904.856055px;}
.y75{bottom:905.215305px;}
.yb5{bottom:906.289343px;}
.yb6{bottom:906.294705px;}
.yef{bottom:909.536205px;}
.y1d9{bottom:914.575605px;}
.y3d{bottom:915.295755px;}
.y2c5{bottom:916.731593px;}
.y218{bottom:917.092305px;}
.y288{bottom:917.456205px;}
.y24e{bottom:917.810993px;}
.y12f{bottom:918.170805px;}
.y74{bottom:918.174705px;}
.y166{bottom:918.532605px;}
.yb3{bottom:919.613280px;}
.yb4{bottom:919.615155px;}
.y1d8{bottom:928.975455px;}
.yee{bottom:930.415755px;}
.y2c4{bottom:931.495155px;}
.y12e{bottom:931.856055px;}
.y217{bottom:932.215305px;}
.y24d{bottom:932.574555px;}
.y165{bottom:933.655605px;}
.y19e{bottom:934.375755px;}
.y73{bottom:935.094255px;}
.yb2{bottom:935.455155px;}
.y19d{bottom:944.815455px;}
.h5b{height:31.289062px;}
.hb7{height:35.200195px;}
.h3e{height:35.332031px;}
.h3d{height:35.982422px;}
.h7{height:41.458008px;}
.h7e{height:42.240234px;}
.h20{height:43.022461px;}
.hca{height:43.083984px;}
.h1f{height:43.804688px;}
.hcb{height:44.595703px;}
.h5a{height:45.369141px;}
.h1e{height:46.151367px;}
.h19{height:49.317627px;}
.h1a{height:50.053711px;}
.h69{height:50.062500px;}
.h2f{height:50.789795px;}
.h81{height:50.844727px;}
.h14{height:51.525879px;}
.hb6{height:51.626953px;}
.h6a{height:52.154297px;}
.h11{height:52.261963px;}
.h75{height:52.263613px;}
.h35{height:52.266163px;}
.h78{height:52.268713px;}
.h1b{height:52.271263px;}
.h1c{height:52.271413px;}
.h55{height:52.272463px;}
.h31{height:52.272763px;}
.h47{height:52.273213px;}
.h49{height:52.273813px;}
.h65{height:52.273963px;}
.h62{height:52.274563px;}
.h77{height:52.277563px;}
.h56{height:52.279063px;}
.h63{height:52.279663px;}
.h5c{height:52.279813px;}
.h61{height:52.279963px;}
.h46{height:52.280263px;}
.h28{height:52.280413px;}
.h18{height:52.282663px;}
.h33{height:52.283413px;}
.h25{height:52.284013px;}
.h2a{height:52.284163px;}
.h4b{height:52.285663px;}
.h70{height:52.285813px;}
.h36{height:52.286413px;}
.h64{height:52.287913px;}
.h2b{height:52.288363px;}
.h73{height:52.288963px;}
.h5f{height:52.290913px;}
.h50{height:52.291663px;}
.h45{height:52.292713px;}
.h27{height:52.293463px;}
.h44{height:52.294063px;}
.h71{height:52.295263px;}
.h4f{height:52.299763px;}
.h6c{height:52.300963px;}
.h67{height:52.302463px;}
.h6b{height:52.302913px;}
.h29{height:52.306213px;}
.h4c{height:52.309363px;}
.h6f{height:52.309963px;}
.h3f{height:52.314763px;}
.h54{height:52.328113px;}
.h32{height:52.336213px;}
.h53{height:52.336963px;}
.h5e{height:52.354663px;}
.h5d{height:52.357963px;}
.h34{height:52.409180px;}
.h26{height:52.910156px;}
.h76{height:52.992763px;}
.h38{height:52.998047px;}
.h51{height:53.191406px;}
.h57{height:53.367188px;}
.h10{height:53.666016px;}
.h16{height:53.694531px;}
.h2e{height:53.699713px;}
.h48{height:53.707397px;}
.h1d{height:53.734131px;}
.h13{height:53.973633px;}
.hf{height:54.421875px;}
.h15{height:54.470215px;}
.h8{height:54.755859px;}
.hd{height:54.849609px;}
.h4a{height:55.142563px;}
.h2d{height:55.177734px;}
.h17{height:55.206299px;}
.h9{height:55.538086px;}
.h52{height:55.933594px;}
.hbc{height:56.320312px;}
.h3b{height:56.332031px;}
.h3c{height:57.073242px;}
.hbd{height:57.884766px;}
.h2c{height:58.201172px;}
.hba{height:58.666992px;}
.h68{height:58.886719px;}
.h82{height:58.957031px;}
.h74{height:59.296875px;}
.hc6{height:59.449219px;}
.h3{height:60.231445px;}
.h6{height:61.013672px;}
.h5{height:61.795898px;}
.h8d{height:61.800293px;}
.ha1{height:61.831055px;}
.h8b{height:62.567139px;}
.h8c{height:63.303223px;}
.h8e{height:63.360352px;}
.h9f{height:64.039307px;}
.hbe{height:64.924805px;}
.h89{height:65.511475px;}
.h4{height:66.489258px;}
.h85{height:66.983643px;}
.hc7{height:67.271484px;}
.hc8{height:67.281984px;}
.hc5{height:68.053711px;}
.h9e{height:69.618164px;}
.h9d{height:70.400391px;}
.h8a{height:70.664062px;}
.h98{height:71.400146px;}
.hc9{height:71.592984px;}
.h12{height:71.964844px;}
.h88{height:72.872314px;}
.h96{height:73.608398px;}
.h97{height:74.344482px;}
.h83{height:74.830078px;}
.h99{height:75.080566px;}
.h86{height:75.093750px;}
.h84{height:75.585938px;}
.ha0{height:75.816650px;}
.ha{height:76.341797px;}
.ha2{height:76.552734px;}
.hb1{height:77.440430px;}
.h42{height:77.853516px;}
.ha3{height:78.024902px;}
.hb3{height:78.222656px;}
.hb2{height:79.004883px;}
.haa{height:79.787109px;}
.h7f{height:83.913574px;}
.hbb{height:84.498047px;}
.h94{height:84.649658px;}
.h95{height:86.121826px;}
.h43{height:86.167969px;}
.h87{height:87.609375px;}
.hc{height:87.679688px;}
.h37{height:89.956055px;}
.ha9{height:90.738281px;}
.had{height:96.213867px;}
.h80{height:96.357422px;}
.hb8{height:100.907227px;}
.h2{height:103.253906px;}
.hae{height:104.818359px;}
.haf{height:106.382812px;}
.h21{height:108.729492px;}
.h9c{height:109.676514px;}
.h9a{height:110.412598px;}
.h9b{height:111.148682px;}
.hb9{height:113.422852px;}
.hb5{height:114.987305px;}
.he{height:126.720703px;}
.hab{height:132.196289px;}
.hb4{height:134.542969px;}
.h30{height:144.711914px;}
.hc4{height:145.494141px;}
.hc3{height:151.751953px;}
.hb{height:162.703125px;}
.hc2{height:166.031250px;}
.hac{height:168.178711px;}
.h7d{height:168.556641px;}
.h7c{height:170.824219px;}
.h24{height:180.694336px;}
.h92{height:195.556641px;}
.h93{height:195.798340px;}
.h91{height:198.643799px;}
.hb0{height:235.450195px;}
.ha7{height:253.441406px;}
.ha8{height:262.045898px;}
.ha6{height:265.174805px;}
.h79{height:1003.478460px;}
.h7a{height:1003.500000px;}
.h8f{height:1004.918445px;}
.h90{height:1005.000000px;}
.hbf{height:1006.358460px;}
.hc0{height:1006.500000px;}
.ha4{height:1007.078460px;}
.ha5{height:1007.250000px;}
.h0{height:1008.518460px;}
.h1{height:1008.750000px;}
.h7b{height:1008.878445px;}
.h4d{height:1009.238460px;}
.h60{height:1009.239945px;}
.h4e{height:1009.500000px;}
.h3a{height:1010.250000px;}
.h39{height:1010.318460px;}
.h22{height:1010.678460px;}
.h66{height:1010.679960px;}
.h23{height:1011.000000px;}
.h59{height:1011.750000px;}
.hc1{height:1011.759960px;}
.h58{height:1012.118460px;}
.h6d{height:1012.478460px;}
.h6e{height:1012.500000px;}
.h40{height:1013.199960px;}
.h41{height:1013.250000px;}
.h72{height:1013.558460px;}
.w5{width:645.000000px;}
.w4{width:645.293835px;}
.wa{width:645.750000px;}
.w9{width:646.013850px;}
.w10{width:648.000000px;}
.wf{width:648.175350px;}
.w3{width:648.750000px;}
.w2{width:648.893850px;}
.w12{width:649.500000px;}
.w11{width:649.614120px;}
.we{width:650.250000px;}
.wd{width:650.333835px;}
.wb{width:653.215335px;}
.wc{width:653.250000px;}
.w0{width:656.093850px;}
.w8{width:656.095350px;}
.w1{width:656.250000px;}
.w13{width:658.973835px;}
.w6{width:658.973850px;}
.w7{width:659.250000px;}
.x0{left:0.000000px;}
.x3e{left:31.578240px;}
.x8{left:33.358740px;}
.xc2{left:34.799040px;}
.xf8{left:40.231440px;}
.xdf{left:43.440840px;}
.xe3{left:44.535090px;}
.xaa{left:48.472028px;}
.xa2{left:49.560015px;}
.x3d{left:51.000090px;}
.x2b{left:60.743790px;}
.x14{left:61.794615px;}
.x5f{left:63.252353px;}
.x6e{left:64.333515px;}
.x7e{left:66.119940px;}
.x133{left:67.136910px;}
.x100{left:68.670840px;}
.xeb{left:69.720690px;}
.xf7{left:71.160990px;}
.x9{left:72.600802px;}
.x55{left:74.044740px;}
.xae{left:75.150727px;}
.x26{left:76.198890px;}
.xab{left:77.266965px;}
.x9e{left:78.725152px;}
.x9c{left:79.795028px;}
.xc3{left:87.358740px;}
.x17{left:88.796978px;}
.x6d{left:90.239340px;}
.xbf{left:91.322602px;}
.x93{left:93.831315px;}
.x79{left:94.919490px;}
.x84{left:95.995815px;}
.x63{left:97.800090px;}
.xea{left:98.879490px;}
.x44{left:99.958890px;}
.x40{left:101.760090px;}
.x54{left:103.550340px;}
.x59{left:104.648978px;}
.xa1{left:105.713302px;}
.x8f{left:107.519790px;}
.xd8{left:108.595927px;}
.xdb{left:109.676490px;}
.x6c{left:110.759640px;}
.x137{left:113.600910px;}
.x41{left:115.799040px;}
.x123{left:117.600240px;}
.x90{left:120.840090px;}
.x83{left:121.922115px;}
.x125{left:123.719040px;}
.x7c{left:125.520240px;}
.x30{left:126.599640px;}
.x48{left:127.671278px;}
.x53{left:129.111577px;}
.x56{left:130.200952px;}
.x101{left:131.639040px;}
.x64{left:133.079490px;}
.xd9{left:135.602003px;}
.xfd{left:137.039490px;}
.x7d{left:138.839040px;}
.x7a{left:140.279340px;}
.x91{left:142.078890px;}
.x2{left:143.159940px;}
.x60{left:144.239340px;}
.x31{left:145.318740px;}
.x122{left:146.759040px;}
.x4a{left:147.840090px;}
.xa6{left:148.919490px;}
.xe0{left:150.000540px;}
.x8d{left:151.439190px;}
.x7b{left:152.520240px;}
.xc{left:153.599640px;}
.x65{left:155.399190px;}
.x7f{left:157.198740px;}
.xbc{left:158.640840px;}
.xe6{left:161.519790px;}
.x92{left:162.960090px;}
.x32{left:164.398740px;}
.x45{left:165.839040px;}
.x61{left:167.640240px;}
.x102{left:168.719640px;}
.x77{left:169.799040px;}
.x66{left:171.239340px;}
.x105{left:172.679640px;}
.xcc{left:174.479190px;}
.x80{left:175.560240px;}
.xf{left:178.079940px;}
.x114{left:179.159340px;}
.xe7{left:180.240390px;}
.x4b{left:181.679040px;}
.x46{left:183.480240px;}
.x89{left:184.918890px;}
.x85{left:186.720090px;}
.x9d{left:188.519790px;}
.xa7{left:189.960090px;}
.xce{left:192.118890px;}
.x8b{left:193.199940px;}
.xd{left:194.640240px;}
.x50{left:195.719640px;}
.x1{left:197.519190px;}
.xe4{left:198.600240px;}
.x4c{left:199.679640px;}
.x8a{left:201.479190px;}
.xc4{left:202.560240px;}
.x94{left:203.998890px;}
.x67{left:205.800090px;}
.x86{left:207.599640px;}
.x10{left:209.760090px;}
.xe{left:210.839490px;}
.x6f{left:213.359190px;}
.x51{left:214.438740px;}
.x11{left:217.319340px;}
.x81{left:218.398740px;}
.x12b{left:220.559190px;}
.x3{left:221.999490px;}
.xb9{left:224.520840px;}
.xf5{left:225.600240px;}
.xcf{left:226.679640px;}
.x104{left:228.479190px;}
.xc5{left:229.919490px;}
.xc6{left:230.998890px;}
.x12d{left:232.079940px;}
.xa3{left:233.520240px;}
.x138{left:234.923760px;}
.x82{left:236.039940px;}
.x119{left:237.119340px;}
.x52{left:238.198740px;}
.xcb{left:239.999940px;}
.x69{left:241.438740px;}
.x110{left:242.879040px;}
.x10c{left:243.960090px;}
.x4{left:245.039490px;}
.x1a{left:246.118890px;}
.x98{left:247.559190px;}
.x4d{left:249.358740px;}
.xc7{left:251.519190px;}
.x4e{left:252.959490px;}
.xc0{left:254.399790px;}
.xb0{left:256.560240px;}
.x1f{left:258.719040px;}
.x4f{left:260.520240px;}
.xaf{left:261.960540px;}
.x15{left:264.119340px;}
.x11a{left:266.279940px;}
.x1b{left:267.359190px;}
.x9f{left:269.158890px;}
.x12{left:272.039490px;}
.xcd{left:273.839040px;}
.x2c{left:274.920090px;}
.x70{left:275.999490px;}
.xfc{left:277.799040px;}
.x72{left:279.600240px;}
.x68{left:280.679640px;}
.xfa{left:281.759040px;}
.x20{left:283.199340px;}
.xb7{left:284.280390px;}
.xde{left:285.359790px;}
.x99{left:286.439190px;}
.x2d{left:287.879490px;}
.xa0{left:288.958890px;}
.xb8{left:291.120990px;}
.xc1{left:292.918890px;}
.x108{left:293.999940px;}
.x42{left:295.079490px;}
.x109{left:296.158890px;}
.x115{left:298.319340px;}
.x73{left:301.559190px;}
.xd0{left:302.640240px;}
.xfb{left:304.078890px;}
.x128{left:306.239340px;}
.xb3{left:307.679640px;}
.x5{left:309.119940px;}
.x139{left:311.639640px;}
.x10d{left:312.719040px;}
.x10a{left:314.159340px;}
.x43{left:315.238740px;}
.x126{left:316.319790px;}
.xd1{left:318.480240px;}
.xe1{left:322.079490px;}
.xa5{left:324.599190px;}
.xb4{left:329.640240px;}
.x10e{left:331.439790px;}
.x6{left:332.519190px;}
.x9a{left:333.959490px;}
.x127{left:336.119940px;}
.xa{left:337.919490px;}
.x74{left:339.719040px;}
.x112{left:341.159340px;}
.xf4{left:342.599640px;}
.xe5{left:344.400840px;}
.x3f{left:345.839490px;}
.x13{left:348.359190px;}
.xb{left:349.799640px;}
.x116{left:351.599190px;}
.x9b{left:353.039490px;}
.x21{left:354.479790px;}
.x136{left:356.621010px;}
.x10f{left:358.799040px;}
.x113{left:359.880090px;}
.x1c{left:362.759040px;}
.xad{left:364.199340px;}
.x8c{left:367.079940px;}
.x33{left:368.879490px;}
.x11b{left:369.958890px;}
.x5c{left:371.039940px;}
.x22{left:373.559640px;}
.x75{left:374.639040px;}
.x49{left:376.438740px;}
.x129{left:377.519790px;}
.xec{left:379.680240px;}
.x11f{left:381.118890px;}
.x117{left:382.920090px;}
.x12e{left:386.880090px;}
.x34{left:387.959490px;}
.x7{left:390.840090px;}
.xd7{left:395.520240px;}
.xb5{left:397.680690px;}
.xed{left:398.760090px;}
.x11c{left:400.559640px;}
.x87{left:401.999940px;}
.x62{left:403.079490px;}
.x124{left:404.158890px;}
.x5d{left:405.960090px;}
.x37{left:407.039490px;}
.x12a{left:408.479790px;}
.xee{left:411.360390px;}
.xc8{left:412.439790px;}
.xb6{left:414.600240px;}
.x118{left:415.679640px;}
.x120{left:416.759040px;}
.x38{left:419.639640px;}
.x88{left:422.159340px;}
.x3b{left:423.958890px;}
.xe2{left:429.000090px;}
.x29{left:430.438740px;}
.xef{left:432.239940px;}
.x3c{left:435.118890px;}
.x106{left:437.640240px;}
.x5e{left:440.159940px;}
.x132{left:443.738760px;}
.xff{left:445.199340px;}
.x2a{left:446.998890px;}
.xa8{left:448.800090px;}
.xba{left:451.319790px;}
.x39{left:453.480240px;}
.x10b{left:454.559640px;}
.x107{left:456.359190px;}
.x76{left:459.599190px;}
.xa9{left:462.118890px;}
.x11d{left:464.640240px;}
.x23{left:466.439790px;}
.x3a{left:467.519190px;}
.x47{left:469.318740px;}
.xdc{left:472.199340px;}
.xfe{left:473.639640px;}
.xf9{left:475.079940px;}
.x27{left:476.879490px;}
.x18{left:479.039940px;}
.xf0{left:480.120990px;}
.x71{left:481.919040px;}
.xc9{left:483.359190px;}
.x24{left:486.599190px;}
.x95{left:489.118890px;}
.x19{left:490.559190px;}
.xdd{left:491.999490px;}
.x1d{left:494.159940px;}
.x121{left:495.239340px;}
.x28{left:497.759040px;}
.x135{left:500.261010px;}
.xbd{left:501.720690px;}
.x25{left:503.879490px;}
.x5a{left:504.958890px;}
.x96{left:507.480240px;}
.x1e{left:510.359190px;}
.x103{left:511.799640px;}
.x97{left:512.879040px;}
.xa4{left:513.960090px;}
.x134{left:515.020260px;}
.xf1{left:517.560840px;}
.x13a{left:518.640240px;}
.x5b{left:522.600240px;}
.xe8{left:529.440840px;}
.x2e{left:531.238740px;}
.x35{left:532.679040px;}
.xb1{left:533.760090px;}
.xbb{left:535.200540px;}
.xca{left:538.079490px;}
.x6a{left:539.158890px;}
.xf3{left:541.320990px;}
.x2f{left:543.839040px;}
.xb2{left:545.640240px;}
.x12f{left:547.080540px;}
.xe9{left:548.520840px;}
.xd2{left:551.399790px;}
.x78{left:552.840090px;}
.x131{left:553.919490px;}
.x36{left:555.719040px;}
.x16{left:557.159340px;}
.x6b{left:561.119340px;}
.xf2{left:563.279940px;}
.xd3{left:568.680240px;}
.xac{left:572.640240px;}
.x11e{left:573.719640px;}
.xf6{left:576.240990px;}
.xbe{left:579.480840px;}
.x57{left:583.800090px;}
.xda{left:585.958890px;}
.x8e{left:591.720240px;}
.xd4{left:596.759640px;}
.x58{left:600.358740px;}
.x111{left:601.799040px;}
.xd5{left:604.318740px;}
.x130{left:608.280390px;}
.x12c{left:609.359790px;}
.xd6{left:614.760090px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.278000pt;}
.v2{vertical-align:2.556000pt;}
.v3{vertical-align:3.841333pt;}
.ls106{letter-spacing:-19.010133pt;}
.ls107{letter-spacing:-17.606400pt;}
.ls8a{letter-spacing:-17.432133pt;}
.ls8b{letter-spacing:-11.857467pt;}
.lsa7{letter-spacing:-11.043000pt;}
.ls36{letter-spacing:-10.954133pt;}
.ls79{letter-spacing:-9.981333pt;}
.lsda{letter-spacing:-9.313000pt;}
.ls78{letter-spacing:-9.211200pt;}
.ls115{letter-spacing:-9.202000pt;}
.ls16{letter-spacing:-9.161200pt;}
.ls4d{letter-spacing:-9.144000pt;}
.ls1e{letter-spacing:-8.150933pt;}
.lsd8{letter-spacing:-8.136000pt;}
.ls73{letter-spacing:-7.676000pt;}
.ls93{letter-spacing:-7.626667pt;}
.lsc9{letter-spacing:-7.422000pt;}
.ls9e{letter-spacing:-7.232000pt;}
.lsac{letter-spacing:-6.323200pt;}
.ls72{letter-spacing:-6.140800pt;}
.lse5{letter-spacing:-5.702933pt;}
.lsa3{letter-spacing:-5.690533pt;}
.ls116{letter-spacing:-5.664533pt;}
.ls6f{letter-spacing:-5.603200pt;}
.ls114{letter-spacing:-5.535800pt;}
.lsbf{letter-spacing:-5.493333pt;}
.ls74{letter-spacing:-5.375733pt;}
.lsa8{letter-spacing:-5.053533pt;}
.ls6d{letter-spacing:-4.605600pt;}
.ls50{letter-spacing:-4.520133pt;}
.ls23{letter-spacing:-4.497933pt;}
.lse3{letter-spacing:-4.400267pt;}
.ls3a{letter-spacing:-4.307200pt;}
.ls113{letter-spacing:-4.248400pt;}
.lsab{letter-spacing:-4.217200pt;}
.ls30{letter-spacing:-4.053933pt;}
.ls28{letter-spacing:-3.999333pt;}
.ls108{letter-spacing:-3.930800pt;}
.ls6e{letter-spacing:-3.840533pt;}
.lsd9{letter-spacing:-3.823200pt;}
.lse2{letter-spacing:-3.773867pt;}
.ls20{letter-spacing:-3.211800pt;}
.ls9f{letter-spacing:-3.160733pt;}
.lsbe{letter-spacing:-3.140000pt;}
.lsdd{letter-spacing:-3.139733pt;}
.ls71{letter-spacing:-3.070400pt;}
.ls13{letter-spacing:-3.070133pt;}
.ls3c{letter-spacing:-3.017200pt;}
.ls112{letter-spacing:-2.832267pt;}
.ls3d{letter-spacing:-2.664867pt;}
.ls6c{letter-spacing:-2.552267pt;}
.lsf2{letter-spacing:-2.548000pt;}
.lsa2{letter-spacing:-2.529800pt;}
.lse1{letter-spacing:-2.513333pt;}
.ls14{letter-spacing:-2.459200pt;}
.lsc4{letter-spacing:-2.353333pt;}
.ls76{letter-spacing:-2.263000pt;}
.ls68{letter-spacing:-2.215067pt;}
.ls9c{letter-spacing:-2.197800pt;}
.ls45{letter-spacing:-2.126133pt;}
.ls110{letter-spacing:-2.121333pt;}
.ls66{letter-spacing:-2.094400pt;}
.ls8c{letter-spacing:-2.094267pt;}
.ls24{letter-spacing:-2.090667pt;}
.lsdb{letter-spacing:-2.034000pt;}
.ls2e{letter-spacing:-2.002200pt;}
.ls57{letter-spacing:-1.944800pt;}
.ls21{letter-spacing:-1.929200pt;}
.ls4f{letter-spacing:-1.917000pt;}
.lsde{letter-spacing:-1.886933pt;}
.ls117{letter-spacing:-1.874933pt;}
.ls10c{letter-spacing:-1.874667pt;}
.lsa4{letter-spacing:-1.870000pt;}
.ls6a{letter-spacing:-1.773333pt;}
.lsd0{letter-spacing:-1.708800pt;}
.ls10d{letter-spacing:-1.662533pt;}
.lsc2{letter-spacing:-1.566667pt;}
.ls5b{letter-spacing:-1.525333pt;}
.ls75{letter-spacing:-1.430800pt;}
.ls4c{letter-spacing:-1.410933pt;}
.lsba{letter-spacing:-1.366667pt;}
.ls39{letter-spacing:-1.352933pt;}
.ls1c{letter-spacing:-1.334800pt;}
.ls3e{letter-spacing:-1.334667pt;}
.ls65{letter-spacing:-1.315867pt;}
.ls67{letter-spacing:-1.315200pt;}
.ls7a{letter-spacing:-1.314000pt;}
.ls77{letter-spacing:-1.297333pt;}
.ls2a{letter-spacing:-1.296933pt;}
.ls22{letter-spacing:-1.286133pt;}
.ls32{letter-spacing:-1.280000pt;}
.ls2f{letter-spacing:-1.278800pt;}
.lsf5{letter-spacing:-1.278000pt;}
.lsf8{letter-spacing:-1.274000pt;}
.ls118{letter-spacing:-1.265400pt;}
.ls69{letter-spacing:-1.263800pt;}
.lse0{letter-spacing:-1.260533pt;}
.lsca{letter-spacing:-1.236000pt;}
.ls31{letter-spacing:-1.231267pt;}
.lsa9{letter-spacing:-1.229667pt;}
.ls15{letter-spacing:-1.229600pt;}
.lsd1{letter-spacing:-1.139200pt;}
.lsc5{letter-spacing:-0.786667pt;}
.lsc0{letter-spacing:-0.754133pt;}
.ls111{letter-spacing:-0.705200pt;}
.lsad{letter-spacing:-0.702000pt;}
.lsf{letter-spacing:-0.676000pt;}
.ls18{letter-spacing:-0.667400pt;}
.ls29{letter-spacing:-0.667333pt;}
.ls64{letter-spacing:-0.657933pt;}
.ls7c{letter-spacing:-0.657800pt;}
.ls17{letter-spacing:-0.657600pt;}
.ls8e{letter-spacing:-0.655200pt;}
.ls27{letter-spacing:-0.650000pt;}
.ls37{letter-spacing:-0.648000pt;}
.ls1f{letter-spacing:-0.643067pt;}
.ls11{letter-spacing:-0.639333pt;}
.lsf6{letter-spacing:-0.637000pt;}
.ls53{letter-spacing:-0.632667pt;}
.lsa5{letter-spacing:-0.630933pt;}
.ls70{letter-spacing:-0.629333pt;}
.lsdc{letter-spacing:-0.626400pt;}
.ls51{letter-spacing:-0.611800pt;}
.ls41{letter-spacing:-0.606667pt;}
.ls91{letter-spacing:-0.574933pt;}
.lscb{letter-spacing:-0.569600pt;}
.lsd{letter-spacing:0.000000pt;}
.lsb8{letter-spacing:0.569600pt;}
.ls34{letter-spacing:0.602933pt;}
.lsb0{letter-spacing:0.618000pt;}
.ls42{letter-spacing:0.618067pt;}
.ls90{letter-spacing:0.630667pt;}
.ls81{letter-spacing:0.630933pt;}
.ls104{letter-spacing:0.634600pt;}
.lsee{letter-spacing:0.637000pt;}
.ls2{letter-spacing:0.639333pt;}
.ls3f{letter-spacing:0.642400pt;}
.lsa{letter-spacing:0.643067pt;}
.lsf9{letter-spacing:0.648467pt;}
.ls5c{letter-spacing:0.648600pt;}
.lsa6{letter-spacing:0.653600pt;}
.ls5f{letter-spacing:0.657933pt;}
.ls59{letter-spacing:0.658000pt;}
.ls6b{letter-spacing:0.666733pt;}
.ls5{letter-spacing:0.667400pt;}
.ls7e{letter-spacing:0.676467pt;}
.ls58{letter-spacing:0.676800pt;}
.ls5a{letter-spacing:0.676867pt;}
.ls10e{letter-spacing:0.685000pt;}
.ls7b{letter-spacing:0.686333pt;}
.ls47{letter-spacing:0.695333pt;}
.ls2b{letter-spacing:0.695933pt;}
.ls87{letter-spacing:0.702000pt;}
.ls48{letter-spacing:0.705467pt;}
.ls1a{letter-spacing:0.715000pt;}
.ls9a{letter-spacing:0.723667pt;}
.ls55{letter-spacing:0.740600pt;}
.ls9d{letter-spacing:0.760000pt;}
.lsae{letter-spacing:0.786667pt;}
.lsd2{letter-spacing:1.139200pt;}
.ls5e{letter-spacing:1.206000pt;}
.lsb1{letter-spacing:1.236000pt;}
.ls84{letter-spacing:1.261867pt;}
.ls11a{letter-spacing:1.265400pt;}
.lsec{letter-spacing:1.274000pt;}
.ls1d{letter-spacing:1.278000pt;}
.ls0{letter-spacing:1.278667pt;}
.lsb{letter-spacing:1.286133pt;}
.lsbb{letter-spacing:1.294533pt;}
.ls43{letter-spacing:1.315867pt;}
.ls100{letter-spacing:1.332533pt;}
.ls8{letter-spacing:1.333467pt;}
.ls4{letter-spacing:1.334800pt;}
.lse{letter-spacing:1.348267pt;}
.ls5d{letter-spacing:1.353733pt;}
.lscf{letter-spacing:1.386667pt;}
.ls4a{letter-spacing:1.390667pt;}
.ls2d{letter-spacing:1.391867pt;}
.ls46{letter-spacing:1.410933pt;}
.ls1b{letter-spacing:1.414000pt;}
.ls102{letter-spacing:1.416133pt;}
.ls4e{letter-spacing:1.416800pt;}
.ls10a{letter-spacing:1.430667pt;}
.lsc1{letter-spacing:1.566667pt;}
.ls109{letter-spacing:1.670400pt;}
.lsb2{letter-spacing:1.708800pt;}
.ls38{letter-spacing:1.771000pt;}
.lscd{letter-spacing:1.854000pt;}
.ls8d{letter-spacing:1.858333pt;}
.lsd3{letter-spacing:1.886933pt;}
.ls80{letter-spacing:1.898867pt;}
.ls105{letter-spacing:1.900000pt;}
.lsf0{letter-spacing:1.911000pt;}
.ls1{letter-spacing:1.918000pt;}
.ls9{letter-spacing:1.929200pt;}
.ls61{letter-spacing:1.973800pt;}
.ls7{letter-spacing:2.002200pt;}
.lsbd{letter-spacing:2.051400pt;}
.lsfa{letter-spacing:2.085000pt;}
.ls2c{letter-spacing:2.087800pt;}
.ls49{letter-spacing:2.090667pt;}
.ls88{letter-spacing:2.106000pt;}
.ls35{letter-spacing:2.116800pt;}
.ls19{letter-spacing:2.120533pt;}
.ls103{letter-spacing:2.121333pt;}
.ls92{letter-spacing:2.128000pt;}
.ls10f{letter-spacing:2.146000pt;}
.ls96{letter-spacing:2.166667pt;}
.ls97{letter-spacing:2.205000pt;}
.lsfe{letter-spacing:2.233000pt;}
.ls7f{letter-spacing:2.253067pt;}
.lsb4{letter-spacing:2.284333pt;}
.lsf7{letter-spacing:2.391200pt;}
.lsaf{letter-spacing:2.472000pt;}
.lsd6{letter-spacing:2.513333pt;}
.ls82{letter-spacing:2.529800pt;}
.lsed{letter-spacing:2.548000pt;}
.lsdf{letter-spacing:2.584000pt;}
.ls8f{letter-spacing:2.617200pt;}
.ls60{letter-spacing:2.631733pt;}
.ls6{letter-spacing:2.664867pt;}
.ls101{letter-spacing:2.665067pt;}
.ls119{letter-spacing:2.666800pt;}
.lsaa{letter-spacing:2.723933pt;}
.ls4b{letter-spacing:2.786000pt;}
.lsb7{letter-spacing:2.853933pt;}
.ls52{letter-spacing:2.861333pt;}
.lsce{letter-spacing:2.891200pt;}
.lsfd{letter-spacing:2.920467pt;}
.lsd4{letter-spacing:3.139733pt;}
.lsa0{letter-spacing:3.141600pt;}
.ls86{letter-spacing:3.160733pt;}
.lsf1{letter-spacing:3.185000pt;}
.ls3{letter-spacing:3.196667pt;}
.lsfc{letter-spacing:3.246133pt;}
.ls63{letter-spacing:3.284933pt;}
.ls25{letter-spacing:3.332267pt;}
.ls3b{letter-spacing:3.364667pt;}
.lsc7{letter-spacing:3.382400pt;}
.lsc8{letter-spacing:3.427000pt;}
.ls89{letter-spacing:3.515200pt;}
.lsa1{letter-spacing:3.560000pt;}
.lsb6{letter-spacing:3.714000pt;}
.ls7d{letter-spacing:3.758267pt;}
.lsef{letter-spacing:3.822000pt;}
.ls12{letter-spacing:3.836000pt;}
.lsc{letter-spacing:3.854867pt;}
.ls10b{letter-spacing:3.882533pt;}
.lsfb{letter-spacing:3.892400pt;}
.lsff{letter-spacing:3.997600pt;}
.ls26{letter-spacing:3.999667pt;}
.lsc6{letter-spacing:4.030000pt;}
.ls94{letter-spacing:4.043200pt;}
.lsd5{letter-spacing:4.400267pt;}
.lsb5{letter-spacing:4.562733pt;}
.ls62{letter-spacing:4.600800pt;}
.ls44{letter-spacing:4.667067pt;}
.ls9b{letter-spacing:4.919200pt;}
.lse4{letter-spacing:5.002667pt;}
.ls98{letter-spacing:5.057000pt;}
.ls85{letter-spacing:5.690533pt;}
.ls95{letter-spacing:5.880000pt;}
.lsf3{letter-spacing:5.978000pt;}
.ls54{letter-spacing:6.001867pt;}
.lscc{letter-spacing:6.035800pt;}
.lsb3{letter-spacing:6.277467pt;}
.ls40{letter-spacing:6.307200pt;}
.ls33{letter-spacing:6.382867pt;}
.lsbc{letter-spacing:6.386333pt;}
.ls10{letter-spacing:6.423600pt;}
.ls99{letter-spacing:6.620000pt;}
.ls83{letter-spacing:6.952400pt;}
.lsc3{letter-spacing:7.060000pt;}
.ls56{letter-spacing:8.666733pt;}
.lsf4{letter-spacing:13.141800pt;}
.lsb9{letter-spacing:13.356000pt;}
.lse6{letter-spacing:22.895400pt;}
.lse9{letter-spacing:23.849467pt;}
.lse7{letter-spacing:26.098400pt;}
.lseb{letter-spacing:26.666667pt;}
.lsd7{letter-spacing:28.287600pt;}
.lse8{letter-spacing:28.960800pt;}
.lsea{letter-spacing:30.307200pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-33.913068pt;}
._2e{margin-left:-29.224800pt;}
._26{margin-left:-27.846400pt;}
._25{margin-left:-26.346360pt;}
._1e{margin-left:-17.813190pt;}
._20{margin-left:-14.394333pt;}
._27{margin-left:-11.258133pt;}
._12{margin-left:-9.656000pt;}
._2d{margin-left:-8.259200pt;}
._24{margin-left:-7.242000pt;}
._22{margin-left:-5.400733pt;}
._7{margin-left:-4.383790pt;}
._16{margin-left:-2.467267pt;}
._18{margin-left:-1.349733pt;}
._10{width:0.913667pt;}
._1b{width:1.886856pt;}
._6{width:2.776667pt;}
._1{width:3.859333pt;}
._8{width:4.920201pt;}
._f{width:6.509132pt;}
._2{width:7.980000pt;}
._b{width:9.075867pt;}
._9{width:10.025600pt;}
._15{width:10.959867pt;}
._3{width:12.002667pt;}
._e{width:13.451733pt;}
._c{width:14.436667pt;}
._d{width:15.448200pt;}
._4{width:16.380000pt;}
._14{width:17.401133pt;}
._5{width:18.456667pt;}
._a{width:19.349867pt;}
._19{width:20.295267pt;}
._11{width:22.007200pt;}
._13{width:23.049933pt;}
._1d{width:24.135933pt;}
._29{width:25.330200pt;}
._21{width:26.261467pt;}
._2b{width:27.435733pt;}
._1f{width:28.789533pt;}
._2a{width:30.768000pt;}
._0{width:31.668000pt;}
._32{width:34.944667pt;}
._1a{width:39.892533pt;}
._28{width:41.825067pt;}
._23{width:43.319467pt;}
._2f{width:49.811609pt;}
._30{width:50.972020pt;}
._1c{width:52.090600pt;}
._2c{width:54.367049pt;}
._31{width:72.280133pt;}
._36{width:257.851067pt;}
._33{width:408.241533pt;}
._34{width:649.185333pt;}
._35{width:690.522667pt;}
.fs21{font-size:26.666667pt;}
.fs4b{font-size:30.000000pt;}
.fs1c{font-size:30.666667pt;}
.fs1d{font-size:32.000000pt;}
.fs5{font-size:35.333333pt;}
.fs26{font-size:36.000000pt;}
.fs16{font-size:36.666667pt;}
.fs15{font-size:37.333333pt;}
.fs52{font-size:38.000000pt;}
.fs20{font-size:38.666667pt;}
.fs14{font-size:39.333333pt;}
.fs23{font-size:42.666667pt;}
.fs28{font-size:43.333333pt;}
.fs4a{font-size:44.000000pt;}
.fs12{font-size:44.666667pt;}
.fs13{font-size:45.333333pt;}
.fsf{font-size:46.000000pt;}
.fs6{font-size:46.666667pt;}
.fs7{font-size:47.333333pt;}
.fsd{font-size:48.000000pt;}
.fs10{font-size:48.666667pt;}
.fsb{font-size:49.333333pt;}
.fs11{font-size:50.000000pt;}
.fs1b{font-size:50.666667pt;}
.fs1{font-size:51.333333pt;}
.fs4{font-size:52.000000pt;}
.fs3{font-size:52.666667pt;}
.fs22{font-size:53.333333pt;}
.fs31{font-size:54.000000pt;}
.fs4e{font-size:55.333333pt;}
.fs30{font-size:56.000000pt;}
.fs2{font-size:56.666667pt;}
.fs2f{font-size:57.333333pt;}
.fs3c{font-size:58.000000pt;}
.fs2e{font-size:59.333333pt;}
.fs3b{font-size:60.000000pt;}
.fs2b{font-size:60.666667pt;}
.fse{font-size:61.333333pt;}
.fs2c{font-size:64.000000pt;}
.fs36{font-size:64.666667pt;}
.fs29{font-size:66.000000pt;}
.fs2a{font-size:66.666667pt;}
.fs8{font-size:67.333333pt;}
.fs37{font-size:68.000000pt;}
.fs1e{font-size:68.666667pt;}
.fs3d{font-size:69.333333pt;}
.fs3e{font-size:70.666667pt;}
.fs2d{font-size:74.666667pt;}
.fs1f{font-size:76.000000pt;}
.fs1a{font-size:76.666667pt;}
.fsa{font-size:77.333333pt;}
.fs35{font-size:78.000000pt;}
.fs44{font-size:82.000000pt;}
.fs4c{font-size:86.000000pt;}
.fs27{font-size:86.666667pt;}
.fs0{font-size:88.000000pt;}
.fs45{font-size:89.333333pt;}
.fs46{font-size:90.666667pt;}
.fs17{font-size:92.666667pt;}
.fs4d{font-size:96.666667pt;}
.fs49{font-size:98.000000pt;}
.fs3a{font-size:99.333333pt;}
.fs38{font-size:100.000000pt;}
.fs39{font-size:100.666667pt;}
.fsc{font-size:108.000000pt;}
.fs42{font-size:112.666667pt;}
.fs48{font-size:114.666667pt;}
.fs19{font-size:123.333333pt;}
.fs51{font-size:124.000000pt;}
.fs50{font-size:129.333333pt;}
.fs9{font-size:138.666667pt;}
.fs43{font-size:143.333333pt;}
.fs25{font-size:148.666667pt;}
.fs4f{font-size:149.333333pt;}
.fs24{font-size:150.666667pt;}
.fs18{font-size:154.000000pt;}
.fs33{font-size:166.666667pt;}
.fs34{font-size:177.333333pt;}
.fs32{font-size:180.000000pt;}
.fs47{font-size:200.666667pt;}
.fs40{font-size:216.000000pt;}
.fs41{font-size:223.333333pt;}
.fs3f{font-size:226.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:57.115827pt;}
.y12d{bottom:77.600427pt;}
.y19c{bottom:78.536993pt;}
.y2c2{bottom:78.872160pt;}
.y2c3{bottom:78.876093pt;}
.yed{bottom:79.186627pt;}
.y1d7{bottom:79.192627pt;}
.y287{bottom:79.835560pt;}
.y164{bottom:79.837027pt;}
.yb0{bottom:80.149993pt;}
.yb1{bottom:80.154893pt;}
.y337{bottom:81.115827pt;}
.y72{bottom:81.431560pt;}
.y216{bottom:81.433827pt;}
.y3b{bottom:81.755960pt;}
.y12c{bottom:89.445593pt;}
.y3a{bottom:90.395560pt;}
.y39{bottom:90.396860pt;}
.yec{bottom:91.351293pt;}
.y2c1{bottom:91.675827pt;}
.y19b{bottom:91.979660pt;}
.yaf{bottom:91.995160pt;}
.y1d6{bottom:92.628860pt;}
.y286{bottom:92.954660pt;}
.y163{bottom:92.956093pt;}
.y162{bottom:92.956727pt;}
.y71{bottom:93.596227pt;}
.y24c{bottom:94.557160pt;}
.y214{bottom:94.868660pt;}
.y215{bottom:94.876493pt;}
.y38{bottom:97.755027pt;}
.y12b{bottom:100.971260pt;}
.yeb{bottom:102.876960pt;}
.yad{bottom:103.504127pt;}
.yae{bottom:103.514760pt;}
.y2c0{bottom:103.837027pt;}
.y285{bottom:103.995160pt;}
.y284{bottom:103.998427pt;}
.y161{bottom:104.151060pt;}
.y19a{bottom:105.102827pt;}
.y70{bottom:105.429293pt;}
.y1d5{bottom:105.752027pt;}
.y213{bottom:107.033327pt;}
.y32b{bottom:107.676360pt;}
.y2ef{bottom:107.984827pt;}
.y24b{bottom:109.916093pt;}
.y12a{bottom:112.485093pt;}
.yac{bottom:114.390793pt;}
.yea{bottom:114.722127pt;}
.y319{bottom:115.356493pt;}
.y309{bottom:115.675827pt;}
.y6f{bottom:116.311027pt;}
.y283{bottom:117.271627pt;}
.y199{bottom:117.906493pt;}
.y1d3{bottom:118.545293pt;}
.y1d4{bottom:118.555693pt;}
.y37{bottom:120.156327pt;}
.y2ee{bottom:121.751827pt;}
.y24a{bottom:123.036760pt;}
.yab{bottom:126.235960pt;}
.ye9{bottom:126.238660pt;}
.yaa{bottom:126.241593pt;}
.y32a{bottom:127.196893pt;}
.y6e{bottom:128.465860pt;}
.y129{bottom:129.442260pt;}
.y2bf{bottom:130.072660pt;}
.y282{bottom:130.077260pt;}
.y160{bottom:130.706360pt;}
.y198{bottom:131.029660pt;}
.y212{bottom:131.350827pt;}
.y1d2{bottom:131.668460pt;}
.y36{bottom:131.670160pt;}
.y336{bottom:135.210893pt;}
.y2ed{bottom:136.155827pt;}
.y249{bottom:136.476627pt;}
.ya8{bottom:137.754227pt;}
.ya9{bottom:137.755427pt;}
.y6d{bottom:140.630527pt;}
.y128{bottom:140.956093pt;}
.y211{bottom:142.876493pt;}
.y210{bottom:142.879460pt;}
.y281{bottom:143.027360pt;}
.y2be{bottom:143.193327pt;}
.y35{bottom:143.195827pt;}
.y34{bottom:143.207227pt;}
.y15f{bottom:143.829527pt;}
.y197{bottom:144.152827pt;}
.y1d1{bottom:144.472127pt;}
.y317{bottom:145.752627pt;}
.y318{bottom:145.756360pt;}
.ya7{bottom:149.268060pt;}
.y6c{bottom:152.475693pt;}
.y33{bottom:154.721060pt;}
.ye8{bottom:155.036227pt;}
.ye7{bottom:155.036393pt;}
.y335{bottom:155.363560pt;}
.y2bd{bottom:156.314993pt;}
.y20f{bottom:156.322127pt;}
.y15e{bottom:156.633193pt;}
.y196{bottom:157.275993pt;}
.y1d0{bottom:157.595293pt;}
.y280{bottom:158.233193pt;}
.y127{bottom:158.236893pt;}
.y2ec{bottom:159.836493pt;}
.y2eb{bottom:159.839193pt;}
.ya6{bottom:161.113227pt;}
.y248{bottom:162.386627pt;}
.y6b{bottom:163.990560pt;}
.y31{bottom:166.230293pt;}
.y32{bottom:166.234893pt;}
.y20e{bottom:167.835960pt;}
.ye6{bottom:169.118060pt;}
.y2bc{bottom:169.438160pt;}
.y15d{bottom:169.751093pt;}
.y126{bottom:170.075693pt;}
.y125{bottom:170.100793pt;}
.y27f{bottom:171.510193pt;}
.y247{bottom:175.509793pt;}
.y195{bottom:175.511160pt;}
.y6a{bottom:175.516227pt;}
.y69{bottom:175.521327pt;}
.y1cf{bottom:175.836727pt;}
.ya5{bottom:177.750893pt;}
.y30{bottom:177.755960pt;}
.y2ea{bottom:179.995693pt;}
.y20d{bottom:180.952527pt;}
.y124{bottom:181.306960pt;}
.y15c{bottom:182.874260pt;}
.y329{bottom:186.076227pt;}
.y68{bottom:187.035160pt;}
.y27e{bottom:187.355027pt;}
.y2bb{bottom:187.673327pt;}
.y246{bottom:188.632960pt;}
.y194{bottom:188.634327pt;}
.y1ce{bottom:188.640393pt;}
.y2f{bottom:189.273327pt;}
.ya4{bottom:189.915560pt;}
.y308{bottom:192.476093pt;}
.ye5{bottom:193.435560pt;}
.ye4{bottom:193.441327pt;}
.y20b{bottom:194.069827pt;}
.y20c{bottom:194.075693pt;}
.y15b{bottom:196.316927pt;}
.y333{bottom:196.471627pt;}
.y334{bottom:196.476627pt;}
.y327{bottom:197.916627pt;}
.y27c{bottom:200.131260pt;}
.y27d{bottom:200.154893pt;}
.y2e9{bottom:200.156360pt;}
.y2e8{bottom:200.167593pt;}
.y2ba{bottom:200.796493pt;}
.y245{bottom:201.427960pt;}
.y193{bottom:201.757493pt;}
.y328{bottom:203.676360pt;}
.y67{bottom:204.311827pt;}
.ye3{bottom:204.955160pt;}
.y123{bottom:205.304960pt;}
.y2e{bottom:206.549993pt;}
.ya3{bottom:206.875560pt;}
.y20a{bottom:209.748993pt;}
.y27b{bottom:212.615427pt;}
.y244{bottom:214.551127pt;}
.y15a{bottom:214.552093pt;}
.y332{bottom:215.833627pt;}
.y66{bottom:216.156993pt;}
.ye2{bottom:216.790660pt;}
.y122{bottom:216.830627pt;}
.ya2{bottom:218.075693pt;}
.ya1{bottom:218.080960pt;}
.y191{bottom:218.392527pt;}
.y2d{bottom:218.393093pt;}
.y192{bottom:218.395160pt;}
.y2b9{bottom:219.036760pt;}
.y1cc{bottom:220.312927pt;}
.y1cd{bottom:220.315560pt;}
.y2e7{bottom:220.324093pt;}
.y209{bottom:222.872160pt;}
.y307{bottom:225.117993pt;}
.y159{bottom:227.994760pt;}
.y121{bottom:228.344460pt;}
.ye1{bottom:228.630393pt;}
.y326{bottom:229.277593pt;}
.y243{bottom:230.230293pt;}
.y18f{bottom:231.511727pt;}
.y190{bottom:231.515693pt;}
.y2b7{bottom:232.472660pt;}
.y2b8{bottom:232.476627pt;}
.y65{bottom:232.483160pt;}
.y1cb{bottom:233.436093pt;}
.y1ca{bottom:233.442193pt;}
.y2c{bottom:235.030760pt;}
.y208{bottom:235.675827pt;}
.y331{bottom:236.315960pt;}
.y27a{bottom:239.181260pt;}
.ye0{bottom:239.836560pt;}
.y120{bottom:239.858293pt;}
.y2e6{bottom:240.799093pt;}
.y324{bottom:241.116360pt;}
.y242{bottom:243.353460pt;}
.y158{bottom:243.354427pt;}
.y18e{bottom:244.634893pt;}
.y306{bottom:245.276493pt;}
.y2b6{bottom:245.595827pt;}
.y1c9{bottom:245.926360pt;}
.y325{bottom:246.556760pt;}
.y2b{bottom:247.195427pt;}
.y2a{bottom:247.196193pt;}
.y64{bottom:247.203827pt;}
.y11f{bottom:251.383960pt;}
.y206{bottom:251.673727pt;}
.y207{bottom:251.676360pt;}
.y279{bottom:252.304427pt;}
.y241{bottom:256.476627pt;}
.y157{bottom:256.795960pt;}
.ydf{bottom:257.113227pt;}
.y29{bottom:257.751527pt;}
.y2e5{bottom:257.755427pt;}
.y2e4{bottom:257.759893pt;}
.ya0{bottom:258.397127pt;}
.y18d{bottom:259.995160pt;}
.y2b5{bottom:260.956093pt;}
.y11e{bottom:262.897793pt;}
.y323{bottom:263.195827pt;}
.y322{bottom:263.516627pt;}
.y204{bottom:264.791893pt;}
.y205{bottom:264.796893pt;}
.y278{bottom:265.108093pt;}
.y304{bottom:265.111960pt;}
.y305{bottom:265.116360pt;}
.y156{bottom:267.993593pt;}
.yde{bottom:268.319393pt;}
.y9f{bottom:270.242293pt;}
.y1c8{bottom:271.521860pt;}
.y321{bottom:271.835560pt;}
.y240{bottom:272.156360pt;}
.y330{bottom:273.115827pt;}
.y11d{bottom:274.411627pt;}
.y203{bottom:276.956560pt;}
.y277{bottom:278.231260pt;}
.y315{bottom:280.795293pt;}
.y316{bottom:280.795960pt;}
.y155{bottom:281.116760pt;}
.y154{bottom:281.124960pt;}
.y28{bottom:281.430027pt;}
.y9e{bottom:282.406960pt;}
.y1c7{bottom:283.015093pt;}
.y320{bottom:283.675827pt;}
.y303{bottom:285.270460pt;}
.y2b4{bottom:285.276893pt;}
.y23f{bottom:285.596227pt;}
.ydd{bottom:285.921327pt;}
.y18c{bottom:286.231093pt;}
.y276{bottom:291.354427pt;}
.y11c{bottom:291.688293pt;}
.y153{bottom:292.319293pt;}
.y27{bottom:292.955693pt;}
.y26{bottom:292.962360pt;}
.y9d{bottom:293.920793pt;}
.y1c6{bottom:296.138260pt;}
.ydc{bottom:297.435160pt;}
.ydb{bottom:297.435693pt;}
.y23e{bottom:298.716893pt;}
.y18b{bottom:299.034760pt;}
.y2b3{bottom:299.036227pt;}
.y2b2{bottom:299.039193pt;}
.y31f{bottom:300.630827pt;}
.y202{bottom:303.191060pt;}
.y11b{bottom:303.202127pt;}
.y25{bottom:304.476193pt;}
.y302{bottom:305.428960pt;}
.y9c{bottom:305.439360pt;}
.y63{bottom:305.447493pt;}
.y275{bottom:306.714093pt;}
.y314{bottom:308.635293pt;}
.yda{bottom:308.961360pt;}
.y1c5{bottom:309.261427pt;}
.y23d{bottom:310.876493pt;}
.y189{bottom:312.151493pt;}
.y18a{bottom:312.155293pt;}
.y2b1{bottom:312.481860pt;}
.y32f{bottom:313.431427pt;}
.y11a{bottom:314.715960pt;}
.y24{bottom:315.990027pt;}
.y201{bottom:316.633727pt;}
.y62{bottom:316.961327pt;}
.y9b{bottom:316.965027pt;}
.y31e{bottom:317.595827pt;}
.y31d{bottom:317.597327pt;}
.y152{bottom:318.234293pt;}
.y274{bottom:320.156760pt;}
.y1c4{bottom:320.787093pt;}
.y2af{bottom:323.992893pt;}
.y2b0{bottom:323.995693pt;}
.y188{bottom:324.955160pt;}
.y301{bottom:325.275960pt;}
.y300{bottom:325.278127pt;}
.y31b{bottom:326.236893pt;}
.y23{bottom:327.515693pt;}
.y61{bottom:328.475160pt;}
.y9a{bottom:328.478860pt;}
.y1ff{bottom:329.754227pt;}
.y200{bottom:329.756893pt;}
.y119{bottom:331.356493pt;}
.y151{bottom:332.313460pt;}
.y1c3{bottom:334.229760pt;}
.y31c{bottom:334.876493pt;}
.y272{bottom:336.151493pt;}
.y273{bottom:336.155427pt;}
.y2ad{bottom:337.434193pt;}
.y2ae{bottom:337.435560pt;}
.y23c{bottom:337.747260pt;}
.y187{bottom:338.075693pt;}
.y22{bottom:339.036627pt;}
.y60{bottom:339.351993pt;}
.y99{bottom:339.992693pt;}
.y118{bottom:343.196893pt;}
.y1fe{bottom:343.198893pt;}
.y117{bottom:343.205560pt;}
.y150{bottom:345.436627pt;}
.y1c2{bottom:347.352927pt;}
.y271{bottom:348.955160pt;}
.yd9{bottom:349.597027pt;}
.y23b{bottom:350.870427pt;}
.y186{bottom:351.192560pt;}
.y2ac{bottom:351.196360pt;}
.y31a{bottom:351.836493pt;}
.y5f{bottom:352.470560pt;}
.y116{bottom:354.719393pt;}
.y21{bottom:355.993793pt;}
.y1fd{bottom:356.002560pt;}
.y98{bottom:356.949860pt;}
.y14f{bottom:358.865127pt;}
.y313{bottom:358.883160pt;}
.y1c1{bottom:360.476127pt;}
.yd8{bottom:361.122693pt;}
.y270{bottom:361.423627pt;}
.y23a{bottom:363.993593pt;}
.y185{bottom:363.996227pt;}
.y5e{bottom:363.998360pt;}
.y2ab{bottom:364.313560pt;}
.y1fc{bottom:367.191127pt;}
.y20{bottom:367.838960pt;}
.y97{bottom:368.795027pt;}
.y2ff{bottom:370.396093pt;}
.y2fe{bottom:370.396760pt;}
.y14e{bottom:371.988293pt;}
.yd7{bottom:372.956027pt;}
.y5d{bottom:375.512193pt;}
.y1c0{bottom:376.474793pt;}
.y239{bottom:377.107660pt;}
.y115{bottom:378.397893pt;}
.y1f{bottom:379.364627pt;}
.y184{bottom:381.594760pt;}
.y2aa{bottom:383.187727pt;}
.yd6{bottom:384.481693pt;}
.y14d{bottom:385.111460pt;}
.y96{bottom:385.755027pt;}
.y1fb{bottom:386.392693pt;}
.y312{bottom:387.999160pt;}
.y26f{bottom:388.308960pt;}
.y1bf{bottom:389.597960pt;}
.y238{bottom:390.230827pt;}
.y114{bottom:390.231227pt;}
.y2fd{bottom:390.556760pt;}
.y182{bottom:394.067860pt;}
.y183{bottom:394.075293pt;}
.y5c{bottom:395.988693pt;}
.y2a9{bottom:396.310893pt;}
.yd5{bottom:396.315027pt;}
.y1e{bottom:396.641293pt;}
.y14b{bottom:396.953960pt;}
.y14c{bottom:396.956627pt;}
.y95{bottom:397.755027pt;}
.y94{bottom:397.756060pt;}
.y1fa{bottom:399.196360pt;}
.y26e{bottom:401.432127pt;}
.y113{bottom:401.756893pt;}
.y112{bottom:401.757760pt;}
.y1be{bottom:402.721127pt;}
.y237{bottom:403.034493pt;}
.y5b{bottom:407.833860pt;}
.y1c{bottom:408.470027pt;}
.y1d{bottom:408.474627pt;}
.y93{bottom:409.435560pt;}
.y14a{bottom:410.392560pt;}
.yd4{bottom:412.954760pt;}
.y111{bottom:413.591093pt;}
.y181{bottom:413.592860pt;}
.y26c{bottom:414.522627pt;}
.y26d{bottom:414.555293pt;}
.y2a8{bottom:415.196893pt;}
.y2a7{bottom:415.198860pt;}
.y236{bottom:416.473227pt;}
.y311{bottom:416.805827pt;}
.y1f8{bottom:418.073960pt;}
.y1f9{bottom:418.076760pt;}
.y1b{bottom:419.995693pt;}
.y1bd{bottom:421.595293pt;}
.y2fc{bottom:423.036760pt;}
.y92{bottom:423.515693pt;}
.y149{bottom:423.515727pt;}
.y339{bottom:424.636360pt;}
.y5a{bottom:425.110527pt;}
.y110{bottom:425.116760pt;}
.yd3{bottom:425.119427pt;}
.y180{bottom:427.355027pt;}
.y26b{bottom:427.645793pt;}
.y2a5{bottom:427.993960pt;}
.y2a6{bottom:428.156360pt;}
.y235{bottom:429.274827pt;}
.y1f6{bottom:431.508060pt;}
.y1a{bottom:431.515160pt;}
.y1f7{bottom:431.516627pt;}
.y19{bottom:431.523960pt;}
.y1bb{bottom:434.708993pt;}
.y1bc{bottom:434.715960pt;}
.y338{bottom:436.315560pt;}
.y58{bottom:436.951760pt;}
.y59{bottom:436.955693pt;}
.y148{bottom:436.958393pt;}
.y10f{bottom:436.960727pt;}
.y17f{bottom:441.115827pt;}
.y26a{bottom:441.407960pt;}
.y2a4{bottom:441.436627pt;}
.yd2{bottom:442.396093pt;}
.y18{bottom:443.037793pt;}
.y1f5{bottom:443.992227pt;}
.y234{bottom:444.634493pt;}
.y310{bottom:444.955160pt;}
.y1ba{bottom:448.151660pt;}
.y2fb{bottom:448.476627pt;}
.y57{bottom:449.755427pt;}
.y91{bottom:450.072960pt;}
.y147{bottom:453.908727pt;}
.yd0{bottom:453.910793pt;}
.yd1{bottom:453.915560pt;}
.y10e{bottom:453.917893pt;}
.y269{bottom:454.531127pt;}
.y2a3{bottom:454.555693pt;}
.y17e{bottom:455.835960pt;}
.y233{bottom:458.073360pt;}
.y90{bottom:462.237627pt;}
.y10d{bottom:465.751227pt;}
.y146{bottom:465.753893pt;}
.ycf{bottom:465.755960pt;}
.y17{bottom:466.716293pt;}
.y56{bottom:467.355560pt;}
.y268{bottom:467.654293pt;}
.y1f4{bottom:470.558060pt;}
.y232{bottom:470.877027pt;}
.y8f{bottom:474.070960pt;}
.y1b9{bottom:475.335160pt;}
.y10c{bottom:477.279560pt;}
.y145{bottom:477.599060pt;}
.y16{bottom:478.230127pt;}
.y267{bottom:480.457960pt;}
.yce{bottom:480.475260pt;}
.y2a2{bottom:481.116227pt;}
.y2fa{bottom:481.116927pt;}
.y17d{bottom:483.028693pt;}
.y1f3{bottom:483.681227pt;}
.y8e{bottom:485.916127pt;}
.y55{bottom:487.516227pt;}
.y1b8{bottom:488.458327pt;}
.y15{bottom:490.075293pt;}
.y231{bottom:490.076760pt;}
.y14{bottom:490.081093pt;}
.y266{bottom:493.900627pt;}
.y2a1{bottom:494.230293pt;}
.y10b{bottom:494.551460pt;}
.y30e{bottom:494.556227pt;}
.y144{bottom:494.561860pt;}
.y1f2{bottom:494.871560pt;}
.y17c{bottom:496.151860pt;}
.y8d{bottom:497.429960pt;}
.y2f9{bottom:501.270593pt;}
.y13{bottom:501.275427pt;}
.y12{bottom:501.276293pt;}
.y1b7{bottom:501.581493pt;}
.y230{bottom:503.195827pt;}
.y142{bottom:506.070927pt;}
.y143{bottom:506.075693pt;}
.ycd{bottom:506.390260pt;}
.y10a{bottom:506.396627pt;}
.y2a0{bottom:507.353460pt;}
.y1f1{bottom:508.633727pt;}
.y17b{bottom:509.260327pt;}
.y8c{bottom:509.275127pt;}
.y265{bottom:512.786627pt;}
.y11{bottom:513.121460pt;}
.y1b6{bottom:515.024160pt;}
.y22f{bottom:515.997160pt;}
.y109{bottom:517.597460pt;}
.y141{bottom:517.916093pt;}
.ycc{bottom:518.236293pt;}
.y29f{bottom:520.472660pt;}
.y8b{bottom:521.120293pt;}
.y1f0{bottom:521.750293pt;}
.y2f8{bottom:521.755427pt;}
.y17a{bottom:523.022493pt;}
.yf{bottom:524.630960pt;}
.y10{bottom:524.635293pt;}
.y54{bottom:525.915560pt;}
.y264{bottom:526.229293pt;}
.y1b5{bottom:528.147327pt;}
.y140{bottom:529.756360pt;}
.ycb{bottom:529.761960pt;}
.y8a{bottom:532.634127pt;}
.y29d{bottom:533.590527pt;}
.y29e{bottom:533.595827pt;}
.y1ef{bottom:534.873460pt;}
.y179{bottom:536.145660pt;}
.y53{bottom:537.449127pt;}
.y108{bottom:541.275960pt;}
.y1b4{bottom:541.589993pt;}
.yca{bottom:541.595293pt;}
.ye{bottom:541.907627pt;}
.y22e{bottom:541.910793pt;}
.y30c{bottom:543.830893pt;}
.y262{bottom:545.112627pt;}
.y263{bottom:545.115293pt;}
.y29c{bottom:546.713693pt;}
.y2f7{bottom:546.716360pt;}
.y1ee{bottom:547.999060pt;}
.y178{bottom:549.268827pt;}
.y2db{bottom:549.593560pt;}
.y89{bottom:549.910793pt;}
.y52{bottom:550.252793pt;}
.y107{bottom:552.797027pt;}
.y106{bottom:552.802493pt;}
.yc9{bottom:553.428560pt;}
.yd{bottom:553.752793pt;}
.y13f{bottom:553.756360pt;}
.y1b3{bottom:554.713160pt;}
.y22d{bottom:555.033960pt;}
.y260{bottom:558.551360pt;}
.y261{bottom:558.555293pt;}
.y29b{bottom:560.155993pt;}
.y1ed{bottom:561.441727pt;}
.y51{bottom:561.447127pt;}
.y88{bottom:561.755960pt;}
.y177{bottom:562.391993pt;}
.y2d9{bottom:563.028327pt;}
.y2da{bottom:563.036227pt;}
.y105{bottom:564.624093pt;}
.yc8{bottom:564.954227pt;}
.yc{bottom:565.278460pt;}
.y1b2{bottom:568.147427pt;}
.y22c{bottom:568.478460pt;}
.y25f{bottom:571.355027pt;}
.y30b{bottom:571.516227pt;}
.y29a{bottom:573.279160pt;}
.y50{bottom:573.611793pt;}
.y176{bottom:575.498493pt;}
.y2d8{bottom:575.831993pt;}
.y104{bottom:576.149760pt;}
.yc7{bottom:576.799393pt;}
.y87{bottom:579.035293pt;}
.y86{bottom:579.041093pt;}
.y1ec{bottom:579.676893pt;}
.y13e{bottom:580.002893pt;}
.y22b{bottom:581.282127pt;}
.yb{bottom:582.874627pt;}
.y25e{bottom:584.795027pt;}
.y4f{bottom:585.445127pt;}
.y1b1{bottom:587.033427pt;}
.y2d6{bottom:588.952160pt;}
.y2d7{bottom:588.955160pt;}
.y85{bottom:590.235427pt;}
.y13d{bottom:591.516727pt;}
.y299{bottom:592.153327pt;}
.y229{bottom:592.793460pt;}
.y22a{bottom:592.795960pt;}
.y1eb{bottom:593.121527pt;}
.y103{bottom:593.426427pt;}
.ya{bottom:594.395560pt;}
.y9{bottom:594.401327pt;}
.y175{bottom:594.703993pt;}
.y1b0{bottom:600.479660pt;}
.y2d5{bottom:602.075327pt;}
.y13c{bottom:602.711060pt;}
.y4e{bottom:603.041293pt;}
.y84{bottom:604.955693pt;}
.y102{bottom:605.271593pt;}
.y298{bottom:605.276493pt;}
.y227{bottom:605.906927pt;}
.y8{bottom:605.915160pt;}
.y228{bottom:605.916627pt;}
.yc6{bottom:606.239793pt;}
.y174{bottom:607.827160pt;}
.y2e3{bottom:611.355560pt;}
.y1ea{bottom:611.995693pt;}
.y2f6{bottom:612.635827pt;}
.y13b{bottom:614.551460pt;}
.y4d{bottom:614.566960pt;}
.y2d4{bottom:614.878993pt;}
.y101{bottom:617.116760pt;}
.y1af{bottom:619.034327pt;}
.y173{bottom:621.269827pt;}
.y25d{bottom:622.869727pt;}
.yc4{bottom:623.831193pt;}
.yc5{bottom:623.835960pt;}
.y297{bottom:624.156760pt;}
.y296{bottom:624.161227pt;}
.y226{bottom:624.792927pt;}
.y1e8{bottom:625.115160pt;}
.y1e9{bottom:625.116227pt;}
.y13a{bottom:626.389493pt;}
.y4c{bottom:626.400293pt;}
.y2e2{bottom:627.996227pt;}
.y83{bottom:628.947760pt;}
.y7{bottom:629.275027pt;}
.y1ad{bottom:632.792393pt;}
.y1ae{bottom:632.796493pt;}
.y2d3{bottom:633.114160pt;}
.yff{bottom:634.391360pt;}
.y100{bottom:634.396093pt;}
.y295{bottom:635.355560pt;}
.yc2{bottom:635.674993pt;}
.yc3{bottom:635.676360pt;}
.y25c{bottom:636.312393pt;}
.y1e7{bottom:637.599327pt;}
.y225{bottom:637.913593pt;}
.y171{bottom:640.153160pt;}
.y172{bottom:640.155827pt;}
.y82{bottom:640.792927pt;}
.y139{bottom:643.346660pt;}
.y4b{bottom:644.315960pt;}
.y4a{bottom:644.321727pt;}
.y1ab{bottom:645.899460pt;}
.y1ac{bottom:645.915560pt;}
.yfe{bottom:645.917027pt;}
.yfd{bottom:645.919627pt;}
.y2d2{bottom:646.556827pt;}
.y294{bottom:648.476093pt;}
.y25b{bottom:649.424893pt;}
.yc1{bottom:650.395660pt;}
.y224{bottom:651.036760pt;}
.y2e1{bottom:651.356093pt;}
.y81{bottom:652.626260pt;}
.y170{bottom:653.595827pt;}
.y138{bottom:655.191827pt;}
.y48{bottom:655.834193pt;}
.y49{bottom:655.835560pt;}
.yfc{bottom:657.113960pt;}
.y1aa{bottom:658.703127pt;}
.y2d1{bottom:659.514327pt;}
.y6{bottom:659.995693pt;}
.y25a{bottom:662.548060pt;}
.y1e6{bottom:664.153327pt;}
.y80{bottom:664.471427pt;}
.y16f{bottom:666.395560pt;}
.y137{bottom:667.358027pt;}
.y222{bottom:669.593727pt;}
.y223{bottom:669.596227pt;}
.y2e0{bottom:674.396493pt;}
.y293{bottom:674.720393pt;}
.y7f{bottom:675.985260pt;}
.yc0{bottom:676.641993pt;}
.y1e4{bottom:677.272393pt;}
.y1e5{bottom:677.276493pt;}
.y2d0{bottom:677.915160pt;}
.yfb{bottom:681.111960pt;}
.y259{bottom:681.114560pt;}
.y221{bottom:682.716893pt;}
.y136{bottom:683.990793pt;}
.y16e{bottom:685.275960pt;}
.y2f3{bottom:686.235427pt;}
.y1a9{bottom:686.546960pt;}
.y2f5{bottom:686.875560pt;}
.y7e{bottom:687.830427pt;}
.ybf{bottom:688.156527pt;}
.y292{bottom:688.482560pt;}
.y2f4{bottom:689.436093pt;}
.y1e2{bottom:690.389060pt;}
.y1e3{bottom:690.395560pt;}
.y2cf{bottom:691.356493pt;}
.yfa{bottom:692.637627pt;}
.y258{bottom:694.391560pt;}
.y220{bottom:695.516627pt;}
.y5{bottom:695.835960pt;}
.y4{bottom:695.840960pt;}
.y135{bottom:695.841727pt;}
.y47{bottom:696.150360pt;}
.y7d{bottom:699.356093pt;}
.y1a8{bottom:699.670127pt;}
.y291{bottom:699.682527pt;}
.ybe{bottom:700.001693pt;}
.y1e1{bottom:703.512227pt;}
.y2ce{bottom:703.835560pt;}
.yf9{bottom:704.470960pt;}
.y30f{bottom:704.475693pt;}
.y133{bottom:707.350660pt;}
.y134{bottom:707.355560pt;}
.y30d{bottom:707.676360pt;}
.y46{bottom:708.310127pt;}
.y3{bottom:710.715960pt;}
.y256{bottom:711.190127pt;}
.y290{bottom:711.190360pt;}
.y257{bottom:711.194893pt;}
.y7c{bottom:711.200593pt;}
.y2f2{bottom:711.356093pt;}
.y2df{bottom:711.515693pt;}
.ybd{bottom:711.818527pt;}
.y32e{bottom:711.836493pt;}
.y1a7{bottom:713.112793pt;}
.yf8{bottom:715.996627pt;}
.y1e0{bottom:716.635393pt;}
.y16d{bottom:718.555693pt;}
.y132{bottom:719.195827pt;}
.y21f{bottom:720.147493pt;}
.y44{bottom:720.153293pt;}
.y45{bottom:720.155293pt;}
.y7b{bottom:722.726260pt;}
.y254{bottom:723.028460pt;}
.y255{bottom:723.035293pt;}
.ybc{bottom:723.344193pt;}
.y28f{bottom:724.952527pt;}
.y1a6{bottom:726.235960pt;}
.yf7{bottom:727.839560pt;}
.y1df{bottom:729.439060pt;}
.y2cd{bottom:730.715427pt;}
.y16c{bottom:731.674893pt;}
.y43{bottom:731.678960pt;}
.y2de{bottom:733.275960pt;}
.y21e{bottom:733.590160pt;}
.y7a{bottom:734.559593pt;}
.ybb{bottom:735.189360pt;}
.y253{bottom:736.471127pt;}
.y32d{bottom:736.476627pt;}
.y2{bottom:737.755427pt;}
.y28e{bottom:738.075693pt;}
.y30a{bottom:738.395560pt;}
.y1a5{bottom:739.356493pt;}
.y2f1{bottom:742.236360pt;}
.y131{bottom:743.195827pt;}
.y42{bottom:743.512293pt;}
.y2cc{bottom:743.829527pt;}
.y16b{bottom:744.795427pt;}
.yf6{bottom:745.116227pt;}
.y79{bottom:746.404760pt;}
.y21d{bottom:746.713327pt;}
.y1de{bottom:747.674227pt;}
.yba{bottom:752.785527pt;}
.y1a3{bottom:752.794160pt;}
.y1a4{bottom:752.796493pt;}
.y41{bottom:755.037960pt;}
.y28d{bottom:756.630360pt;}
.y2cb{bottom:756.952693pt;}
.yf5{bottom:756.959460pt;}
.y16a{bottom:758.232927pt;}
.y21c{bottom:759.836493pt;}
.y1dd{bottom:761.116893pt;}
.y2dd{bottom:761.436093pt;}
.y252{bottom:762.705627pt;}
.y78{bottom:764.000927pt;}
.yb9{bottom:764.311193pt;}
.y32c{bottom:766.555693pt;}
.y2f0{bottom:767.195827pt;}
.y1{bottom:768.795427pt;}
.y2c9{bottom:769.752393pt;}
.y2ca{bottom:769.756360pt;}
.y28c{bottom:770.073027pt;}
.y169{bottom:771.349493pt;}
.y1a2{bottom:771.668327pt;}
.y40{bottom:772.314627pt;}
.y21b{bottom:772.948160pt;}
.y130{bottom:773.595827pt;}
.yf4{bottom:773.911727pt;}
.y1dc{bottom:774.240060pt;}
.y77{bottom:775.509860pt;}
.y251{bottom:776.148293pt;}
.yb8{bottom:776.153960pt;}
.y2dc{bottom:780.635827pt;}
.y2c8{bottom:782.875560pt;}
.y28b{bottom:783.515693pt;}
.y3f{bottom:784.159793pt;}
.y168{bottom:784.472660pt;}
.y1a1{bottom:785.110993pt;}
.yf3{bottom:785.756893pt;}
.yf2{bottom:785.762827pt;}
.y21a{bottom:786.071327pt;}
.y76{bottom:787.355027pt;}
.y1db{bottom:788.321727pt;}
.y250{bottom:789.271460pt;}
.yb7{bottom:793.430627pt;}
.yf1{bottom:796.957160pt;}
.yf0{bottom:796.962793pt;}
.y167{bottom:797.587427pt;}
.y1da{bottom:799.832927pt;}
.y2c6{bottom:801.429860pt;}
.y2c7{bottom:801.435160pt;}
.y3e{bottom:801.755960pt;}
.y219{bottom:802.069993pt;}
.y289{bottom:802.073960pt;}
.y28a{bottom:802.076760pt;}
.y24f{bottom:802.394627pt;}
.y19f{bottom:804.312527pt;}
.y1a0{bottom:804.316493pt;}
.y75{bottom:804.635827pt;}
.yb5{bottom:805.590527pt;}
.yb6{bottom:805.595293pt;}
.yef{bottom:808.476627pt;}
.y1d9{bottom:812.956093pt;}
.y3d{bottom:813.596227pt;}
.y2c5{bottom:814.872527pt;}
.y218{bottom:815.193160pt;}
.y288{bottom:815.516627pt;}
.y24e{bottom:815.831993pt;}
.y12f{bottom:816.151827pt;}
.y74{bottom:816.155293pt;}
.y166{bottom:816.473427pt;}
.yb3{bottom:817.434027pt;}
.yb4{bottom:817.435693pt;}
.y1d8{bottom:825.755960pt;}
.yee{bottom:827.036227pt;}
.y2c4{bottom:827.995693pt;}
.y12e{bottom:828.316493pt;}
.y217{bottom:828.635827pt;}
.y24d{bottom:828.955160pt;}
.y165{bottom:829.916093pt;}
.y19e{bottom:830.556227pt;}
.y73{bottom:831.194893pt;}
.yb2{bottom:831.515693pt;}
.y19d{bottom:839.835960pt;}
.h5b{height:27.812500pt;}
.hb7{height:31.289062pt;}
.h3e{height:31.406250pt;}
.h3d{height:31.984375pt;}
.h7{height:36.851562pt;}
.h7e{height:37.546875pt;}
.h20{height:38.242188pt;}
.hca{height:38.296875pt;}
.h1f{height:38.937500pt;}
.hcb{height:39.640625pt;}
.h5a{height:40.328125pt;}
.h1e{height:41.023438pt;}
.h19{height:43.837891pt;}
.h1a{height:44.492188pt;}
.h69{height:44.500000pt;}
.h2f{height:45.146484pt;}
.h81{height:45.195312pt;}
.h14{height:45.800781pt;}
.hb6{height:45.890625pt;}
.h6a{height:46.359375pt;}
.h11{height:46.455078pt;}
.h75{height:46.456545pt;}
.h35{height:46.458811pt;}
.h78{height:46.461078pt;}
.h1b{height:46.463345pt;}
.h1c{height:46.463478pt;}
.h55{height:46.464411pt;}
.h31{height:46.464678pt;}
.h47{height:46.465078pt;}
.h49{height:46.465611pt;}
.h65{height:46.465745pt;}
.h62{height:46.466278pt;}
.h77{height:46.468945pt;}
.h56{height:46.470278pt;}
.h63{height:46.470811pt;}
.h5c{height:46.470945pt;}
.h61{height:46.471078pt;}
.h46{height:46.471345pt;}
.h28{height:46.471478pt;}
.h18{height:46.473478pt;}
.h33{height:46.474145pt;}
.h25{height:46.474678pt;}
.h2a{height:46.474811pt;}
.h4b{height:46.476145pt;}
.h70{height:46.476278pt;}
.h36{height:46.476811pt;}
.h64{height:46.478145pt;}
.h2b{height:46.478545pt;}
.h73{height:46.479078pt;}
.h5f{height:46.480811pt;}
.h50{height:46.481478pt;}
.h45{height:46.482411pt;}
.h27{height:46.483078pt;}
.h44{height:46.483611pt;}
.h71{height:46.484678pt;}
.h4f{height:46.488678pt;}
.h6c{height:46.489745pt;}
.h67{height:46.491078pt;}
.h6b{height:46.491478pt;}
.h29{height:46.494411pt;}
.h4c{height:46.497211pt;}
.h6f{height:46.497745pt;}
.h3f{height:46.502011pt;}
.h54{height:46.513878pt;}
.h32{height:46.521078pt;}
.h53{height:46.521745pt;}
.h5e{height:46.537478pt;}
.h5d{height:46.540411pt;}
.h34{height:46.585938pt;}
.h26{height:47.031250pt;}
.h76{height:47.104678pt;}
.h38{height:47.109375pt;}
.h51{height:47.281250pt;}
.h57{height:47.437500pt;}
.h10{height:47.703125pt;}
.h16{height:47.728472pt;}
.h2e{height:47.733078pt;}
.h48{height:47.739909pt;}
.h1d{height:47.763672pt;}
.h13{height:47.976562pt;}
.hf{height:48.375000pt;}
.h15{height:48.417969pt;}
.h8{height:48.671875pt;}
.hd{height:48.755208pt;}
.h4a{height:49.015611pt;}
.h2d{height:49.046875pt;}
.h17{height:49.072266pt;}
.h9{height:49.367188pt;}
.h52{height:49.718750pt;}
.hbc{height:50.062500pt;}
.h3b{height:50.072917pt;}
.h3c{height:50.731771pt;}
.hbd{height:51.453125pt;}
.h2c{height:51.734375pt;}
.hba{height:52.148438pt;}
.h68{height:52.343750pt;}
.h82{height:52.406250pt;}
.h74{height:52.708333pt;}
.hc6{height:52.843750pt;}
.h3{height:53.539062pt;}
.h6{height:54.234375pt;}
.h5{height:54.929688pt;}
.h8d{height:54.933594pt;}
.ha1{height:54.960938pt;}
.h8b{height:55.615234pt;}
.h8c{height:56.269531pt;}
.h8e{height:56.320312pt;}
.h9f{height:56.923828pt;}
.hbe{height:57.710938pt;}
.h89{height:58.232422pt;}
.h4{height:59.101562pt;}
.h85{height:59.541016pt;}
.hc7{height:59.796875pt;}
.hc8{height:59.806208pt;}
.hc5{height:60.492188pt;}
.h9e{height:61.882812pt;}
.h9d{height:62.578125pt;}
.h8a{height:62.812500pt;}
.h98{height:63.466797pt;}
.hc9{height:63.638208pt;}
.h12{height:63.968750pt;}
.h88{height:64.775391pt;}
.h96{height:65.429688pt;}
.h97{height:66.083984pt;}
.h83{height:66.515625pt;}
.h99{height:66.738281pt;}
.h86{height:66.750000pt;}
.h84{height:67.187500pt;}
.ha0{height:67.392578pt;}
.ha{height:67.859375pt;}
.ha2{height:68.046875pt;}
.hb1{height:68.835938pt;}
.h42{height:69.203125pt;}
.ha3{height:69.355469pt;}
.hb3{height:69.531250pt;}
.hb2{height:70.226562pt;}
.haa{height:70.921875pt;}
.h7f{height:74.589844pt;}
.hbb{height:75.109375pt;}
.h94{height:75.244141pt;}
.h95{height:76.552734pt;}
.h43{height:76.593750pt;}
.h87{height:77.875000pt;}
.hc{height:77.937500pt;}
.h37{height:79.960938pt;}
.ha9{height:80.656250pt;}
.had{height:85.523438pt;}
.h80{height:85.651042pt;}
.hb8{height:89.695312pt;}
.h2{height:91.781250pt;}
.hae{height:93.171875pt;}
.haf{height:94.562500pt;}
.h21{height:96.648438pt;}
.h9c{height:97.490234pt;}
.h9a{height:98.144531pt;}
.h9b{height:98.798828pt;}
.hb9{height:100.820312pt;}
.hb5{height:102.210938pt;}
.he{height:112.640625pt;}
.hab{height:117.507812pt;}
.hb4{height:119.593750pt;}
.h30{height:128.632812pt;}
.hc4{height:129.328125pt;}
.hc3{height:134.890625pt;}
.hb{height:144.625000pt;}
.hc2{height:147.583333pt;}
.hac{height:149.492188pt;}
.h7d{height:149.828125pt;}
.h7c{height:151.843750pt;}
.h24{height:160.617188pt;}
.h92{height:173.828125pt;}
.h93{height:174.042969pt;}
.h91{height:176.572266pt;}
.hb0{height:209.289063pt;}
.ha7{height:225.281250pt;}
.ha8{height:232.929688pt;}
.ha6{height:235.710938pt;}
.h79{height:891.980853pt;}
.h7a{height:892.000000pt;}
.h8f{height:893.260840pt;}
.h90{height:893.333333pt;}
.hbf{height:894.540853pt;}
.hc0{height:894.666667pt;}
.ha4{height:895.180853pt;}
.ha5{height:895.333333pt;}
.h0{height:896.460853pt;}
.h1{height:896.666667pt;}
.h7b{height:896.780840pt;}
.h4d{height:897.100853pt;}
.h60{height:897.102173pt;}
.h4e{height:897.333333pt;}
.h3a{height:898.000000pt;}
.h39{height:898.060853pt;}
.h22{height:898.380853pt;}
.h66{height:898.382187pt;}
.h23{height:898.666667pt;}
.h59{height:899.333333pt;}
.hc1{height:899.342187pt;}
.h58{height:899.660853pt;}
.h6d{height:899.980853pt;}
.h6e{height:900.000000pt;}
.h40{height:900.622187pt;}
.h41{height:900.666667pt;}
.h72{height:900.940853pt;}
.w5{width:573.333333pt;}
.w4{width:573.594520pt;}
.wa{width:574.000000pt;}
.w9{width:574.234533pt;}
.w10{width:576.000000pt;}
.wf{width:576.155867pt;}
.w3{width:576.666667pt;}
.w2{width:576.794533pt;}
.w12{width:577.333333pt;}
.w11{width:577.434773pt;}
.we{width:578.000000pt;}
.wd{width:578.074520pt;}
.wb{width:580.635853pt;}
.wc{width:580.666667pt;}
.w0{width:583.194533pt;}
.w8{width:583.195867pt;}
.w1{width:583.333333pt;}
.w13{width:585.754520pt;}
.w6{width:585.754533pt;}
.w7{width:586.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:28.069547pt;}
.x8{left:29.652213pt;}
.xc2{left:30.932480pt;}
.xf8{left:35.761280pt;}
.xdf{left:38.614080pt;}
.xe3{left:39.586747pt;}
.xaa{left:43.086247pt;}
.xa2{left:44.053347pt;}
.x3d{left:45.333413pt;}
.x2b{left:53.994480pt;}
.x14{left:54.928547pt;}
.x5f{left:56.224313pt;}
.x6e{left:57.185347pt;}
.x7e{left:58.773280pt;}
.x133{left:59.677253pt;}
.x100{left:61.040747pt;}
.xeb{left:61.973947pt;}
.xf7{left:63.254213pt;}
.x9{left:64.534047pt;}
.x55{left:65.817547pt;}
.xae{left:66.800647pt;}
.x26{left:67.732347pt;}
.xab{left:68.681747pt;}
.x9e{left:69.977913pt;}
.x9c{left:70.928913pt;}
.xc3{left:77.652213pt;}
.x17{left:78.930647pt;}
.x6d{left:80.212747pt;}
.xbf{left:81.175647pt;}
.x93{left:83.405613pt;}
.x79{left:84.372880pt;}
.x84{left:85.329613pt;}
.x63{left:86.933413pt;}
.xea{left:87.892880pt;}
.x44{left:88.852347pt;}
.x40{left:90.453413pt;}
.x54{left:92.044747pt;}
.x59{left:93.021313pt;}
.xa1{left:93.967380pt;}
.x8f{left:95.573147pt;}
.xd8{left:96.529713pt;}
.xdb{left:97.490213pt;}
.x6c{left:98.453013pt;}
.x137{left:100.978587pt;}
.x41{left:102.932480pt;}
.x123{left:104.533547pt;}
.x90{left:107.413413pt;}
.x83{left:108.375213pt;}
.x125{left:109.972480pt;}
.x7c{left:111.573547pt;}
.x30{left:112.533013pt;}
.x48{left:113.485580pt;}
.x53{left:114.765847pt;}
.x56{left:115.734180pt;}
.x101{left:117.012480pt;}
.x64{left:118.292880pt;}
.xd9{left:120.535113pt;}
.xfd{left:121.812880pt;}
.x7d{left:123.412480pt;}
.x7a{left:124.692747pt;}
.x91{left:126.292347pt;}
.x2{left:127.253280pt;}
.x60{left:128.212747pt;}
.x31{left:129.172213pt;}
.x122{left:130.452480pt;}
.x4a{left:131.413413pt;}
.xa6{left:132.372880pt;}
.xe0{left:133.333813pt;}
.x8d{left:134.612613pt;}
.x7b{left:135.573547pt;}
.xc{left:136.533013pt;}
.x65{left:138.132613pt;}
.x7f{left:139.732213pt;}
.xbc{left:141.014080pt;}
.xe6{left:143.573147pt;}
.x92{left:144.853413pt;}
.x32{left:146.132213pt;}
.x45{left:147.412480pt;}
.x61{left:149.013547pt;}
.x102{left:149.973013pt;}
.x77{left:150.932480pt;}
.x66{left:152.212747pt;}
.x105{left:153.493013pt;}
.xcc{left:155.092613pt;}
.x80{left:156.053547pt;}
.xf{left:158.293280pt;}
.x114{left:159.252747pt;}
.xe7{left:160.213680pt;}
.x4b{left:161.492480pt;}
.x46{left:163.093547pt;}
.x89{left:164.372347pt;}
.x85{left:165.973413pt;}
.x9d{left:167.573147pt;}
.xa7{left:168.853413pt;}
.xce{left:170.772347pt;}
.x8b{left:171.733280pt;}
.xd{left:173.013547pt;}
.x50{left:173.973013pt;}
.x1{left:175.572613pt;}
.xe4{left:176.533547pt;}
.x4c{left:177.493013pt;}
.x8a{left:179.092613pt;}
.xc4{left:180.053547pt;}
.x94{left:181.332347pt;}
.x67{left:182.933413pt;}
.x86{left:184.533013pt;}
.x10{left:186.453413pt;}
.xe{left:187.412880pt;}
.x6f{left:189.652613pt;}
.x51{left:190.612213pt;}
.x11{left:193.172747pt;}
.x81{left:194.132213pt;}
.x12b{left:196.052613pt;}
.x3{left:197.332880pt;}
.xb9{left:199.574080pt;}
.xf5{left:200.533547pt;}
.xcf{left:201.493013pt;}
.x104{left:203.092613pt;}
.xc5{left:204.372880pt;}
.xc6{left:205.332347pt;}
.x12d{left:206.293280pt;}
.xa3{left:207.573547pt;}
.x138{left:208.821120pt;}
.x82{left:209.813280pt;}
.x119{left:210.772747pt;}
.x52{left:211.732213pt;}
.xcb{left:213.333280pt;}
.x69{left:214.612213pt;}
.x110{left:215.892480pt;}
.x10c{left:216.853413pt;}
.x4{left:217.812880pt;}
.x1a{left:218.772347pt;}
.x98{left:220.052613pt;}
.x4d{left:221.652213pt;}
.xc7{left:223.572613pt;}
.x4e{left:224.852880pt;}
.xc0{left:226.133147pt;}
.xb0{left:228.053547pt;}
.x1f{left:229.972480pt;}
.x4f{left:231.573547pt;}
.xaf{left:232.853813pt;}
.x15{left:234.772747pt;}
.x11a{left:236.693280pt;}
.x1b{left:237.652613pt;}
.x9f{left:239.252347pt;}
.x12{left:241.812880pt;}
.xcd{left:243.412480pt;}
.x2c{left:244.373413pt;}
.x70{left:245.332880pt;}
.xfc{left:246.932480pt;}
.x72{left:248.533547pt;}
.x68{left:249.493013pt;}
.xfa{left:250.452480pt;}
.x20{left:251.732747pt;}
.xb7{left:252.693680pt;}
.xde{left:253.653147pt;}
.x99{left:254.612613pt;}
.x2d{left:255.892880pt;}
.xa0{left:256.852347pt;}
.xb8{left:258.774213pt;}
.xc1{left:260.372347pt;}
.x108{left:261.333280pt;}
.x42{left:262.292880pt;}
.x109{left:263.252347pt;}
.x115{left:265.172747pt;}
.x73{left:268.052613pt;}
.xd0{left:269.013547pt;}
.xfb{left:270.292347pt;}
.x128{left:272.212747pt;}
.xb3{left:273.493013pt;}
.x5{left:274.773280pt;}
.x139{left:277.013013pt;}
.x10d{left:277.972480pt;}
.x10a{left:279.252747pt;}
.x43{left:280.212213pt;}
.x126{left:281.173147pt;}
.xd1{left:283.093547pt;}
.xe1{left:286.292880pt;}
.xa5{left:288.532613pt;}
.xb4{left:293.013547pt;}
.x10e{left:294.613147pt;}
.x6{left:295.572613pt;}
.x9a{left:296.852880pt;}
.x127{left:298.773280pt;}
.xa{left:300.372880pt;}
.x74{left:301.972480pt;}
.x112{left:303.252747pt;}
.xf4{left:304.533013pt;}
.xe5{left:306.134080pt;}
.x3f{left:307.412880pt;}
.x13{left:309.652613pt;}
.xb{left:310.933013pt;}
.x116{left:312.532613pt;}
.x9b{left:313.812880pt;}
.x21{left:315.093147pt;}
.x136{left:316.996453pt;}
.x10f{left:318.932480pt;}
.x113{left:319.893413pt;}
.x1c{left:322.452480pt;}
.xad{left:323.732747pt;}
.x8c{left:326.293280pt;}
.x33{left:327.892880pt;}
.x11b{left:328.852347pt;}
.x5c{left:329.813280pt;}
.x22{left:332.053013pt;}
.x75{left:333.012480pt;}
.x49{left:334.612213pt;}
.x129{left:335.573147pt;}
.xec{left:337.493547pt;}
.x11f{left:338.772347pt;}
.x117{left:340.373413pt;}
.x12e{left:343.893413pt;}
.x34{left:344.852880pt;}
.x7{left:347.413413pt;}
.xd7{left:351.573547pt;}
.xb5{left:353.493947pt;}
.xed{left:354.453413pt;}
.x11c{left:356.053013pt;}
.x87{left:357.333280pt;}
.x62{left:358.292880pt;}
.x124{left:359.252347pt;}
.x5d{left:360.853413pt;}
.x37{left:361.812880pt;}
.x12a{left:363.093147pt;}
.xee{left:365.653680pt;}
.xc8{left:366.613147pt;}
.xb6{left:368.533547pt;}
.x118{left:369.493013pt;}
.x120{left:370.452480pt;}
.x38{left:373.013013pt;}
.x88{left:375.252747pt;}
.x3b{left:376.852347pt;}
.xe2{left:381.333413pt;}
.x29{left:382.612213pt;}
.xef{left:384.213280pt;}
.x3c{left:386.772347pt;}
.x106{left:389.013547pt;}
.x5e{left:391.253280pt;}
.x132{left:394.434453pt;}
.xff{left:395.732747pt;}
.x2a{left:397.332347pt;}
.xa8{left:398.933413pt;}
.xba{left:401.173147pt;}
.x39{left:403.093547pt;}
.x10b{left:404.053013pt;}
.x107{left:405.652613pt;}
.x76{left:408.532613pt;}
.xa9{left:410.772347pt;}
.x11d{left:413.013547pt;}
.x23{left:414.613147pt;}
.x3a{left:415.572613pt;}
.x47{left:417.172213pt;}
.xdc{left:419.732747pt;}
.xfe{left:421.013013pt;}
.xf9{left:422.293280pt;}
.x27{left:423.892880pt;}
.x18{left:425.813280pt;}
.xf0{left:426.774213pt;}
.x71{left:428.372480pt;}
.xc9{left:429.652613pt;}
.x24{left:432.532613pt;}
.x95{left:434.772347pt;}
.x19{left:436.052613pt;}
.xdd{left:437.332880pt;}
.x1d{left:439.253280pt;}
.x121{left:440.212747pt;}
.x28{left:442.452480pt;}
.x135{left:444.676453pt;}
.xbd{left:445.973947pt;}
.x25{left:447.892880pt;}
.x5a{left:448.852347pt;}
.x96{left:451.093547pt;}
.x1e{left:453.652613pt;}
.x103{left:454.933013pt;}
.x97{left:455.892480pt;}
.xa4{left:456.853413pt;}
.x134{left:457.795787pt;}
.xf1{left:460.054080pt;}
.x13a{left:461.013547pt;}
.x5b{left:464.533547pt;}
.xe8{left:470.614080pt;}
.x2e{left:472.212213pt;}
.x35{left:473.492480pt;}
.xb1{left:474.453413pt;}
.xbb{left:475.733813pt;}
.xca{left:478.292880pt;}
.x6a{left:479.252347pt;}
.xf3{left:481.174213pt;}
.x2f{left:483.412480pt;}
.xb2{left:485.013547pt;}
.x12f{left:486.293813pt;}
.xe9{left:487.574080pt;}
.xd2{left:490.133147pt;}
.x78{left:491.413413pt;}
.x131{left:492.372880pt;}
.x36{left:493.972480pt;}
.x16{left:495.252747pt;}
.x6b{left:498.772747pt;}
.xf2{left:500.693280pt;}
.xd3{left:505.493547pt;}
.xac{left:509.013547pt;}
.x11e{left:509.973013pt;}
.xf6{left:512.214213pt;}
.xbe{left:515.094080pt;}
.x57{left:518.933413pt;}
.xda{left:520.852347pt;}
.x8e{left:525.973547pt;}
.xd4{left:530.453013pt;}
.x58{left:533.652213pt;}
.x111{left:534.932480pt;}
.xd5{left:537.172213pt;}
.x130{left:540.693680pt;}
.x12c{left:541.653147pt;}
.xd6{left:546.453413pt;}
}




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