
    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_acaf1c432cf386dd674e3c92.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_89f69d2a809493a20dcf3b64.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f56fc28f982301f775d1cc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8e84aa0d0154f46aca237a4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_605ad4a9ca7de089b3460034.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5c9195f632582ebfcf61497b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fa11da8e67fec74d9a679c83.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bb6027ccf08564c55e02d853.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a7280a569ba553eca594d835.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2cd33a5f3e591da9ce2975c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_751bed7faa85679abc1b68c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ea269d5ad0e27d4ae0efd829.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_08db3e4b618f4406c4f6360c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_51d043ebed786d117a41ff70.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4234b88ec026de6a9108599a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_eaebd4bc88d31dc616218e61.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_414a2988e56a9380ac4b2f7a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_21d2eb72b96bbfc0e1d4cfcf.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c1a7510dccd6b78dce8edfdf.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c4733eface491682b3c9653d.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_1be03fca8703bb9d69881d39.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_4ddc823ff239e1152c011475.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e181fdb60220c9cf812fb26f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f12e53ef4132347fee96297e.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c3b43a9c5fac3b0dad6a0e82.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_c87b9b4f8cc8842ad7061053.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_889a3643aa61134fd0325eae.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_e971dbec007453bb616c1486.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_e6f263d72fc70690a592330e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_f96c39c5d1e03aa4f4f92260.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_f44019ec3e359397e2da883e.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_2aa020c796c228bff543e7c9.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_555f6d0d5058c413a7c63aa7.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_5c4790fb5a39911a97b1a16d.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_95c528cc5e4aca3854a55243.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_34a352718d89b0e4f6cff1e5.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_cad4749c4b6150ea225d542c.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_5dee4db61def13431a8fdd21.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_dbcb83ee37f84d32c56093f9.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_d327792fca03c610dbdbba04.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_7f13507c2135788da42d527e.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_98abd70be3ecdfa2f30c2c9e.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_b418bd4f8cec008d62d52364.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_b8729b8f8fe7b64f61b2363f.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_344ca3e1adb7311e6e3fdd3b.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_fc23e4a7aecae94544973936.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_738ead5fbb2b97461a48adc7.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_0b96962795132cfb44503599.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_77d2f7fb8d26d7ecb207ef5f.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_2732cfc57d727a6f1af7c12f.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_d47ea3923944347fe99ea619.woff2')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_8a47d486bb699be4ded67212.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_d6c1b2e2663f2f36cf3837f0.woff2')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_a9b34c63f57f3f82b308ec94.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_bc9789516f10ee86dffacb7a.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_2cf184dd95deea7c5205e892.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_65e23af4e1a15336d11eccca.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_3894b3b8df674e1f16f26c9a.woff2')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_56deeefc88560cb73b12e0e6.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_be55e643bcdda75417875695.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_1abca4e94925882915d8324c.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_3e26109208dbfab6245bee1b.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_bcd81f3496987a47a68adc46.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_87c0669a33b65ddf1e5ac023.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_f149ff0fe07c5fefbe27965f.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_4c9d2c7d059d5d36610eea17.woff2')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_d870c6d6dfe1a098dd7ff0bb.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_1176af1e0ac64de5212cdf38.woff2')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;}
@font-face{font-family:ff46;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_d5c3891957dfcc55b649a6b4.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_cc7fc4db5ff30debca467d43.woff2')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff49{font-family:ff49;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;}
.m9a{transform:matrix(0.016355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016355,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.046584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046584,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.066176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066176,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.071237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071237,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.111979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111979,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.126812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126812,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.ma7{transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.175532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175532,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m81{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);}
.m8{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m41{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);}
.m28{transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m9e{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m95{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);}
.m49{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.mb6{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m16{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m89{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m37{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);}
.m57{transform:matrix(0.236346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236346,0.000000,0.000000,0.250000,0,0);}
.m76{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);}
.m2a{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.m64{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);}
.m3d{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m86{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m1f{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);}
.m27{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.mb1{transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.mab{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);}
.mad{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m35{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);}
.m74{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.maa{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);}
.m7a{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mb0{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m14{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m25{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m82{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);}
.mb{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);}
.m77{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.270109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270109,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m67{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);}
.m43{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m6c{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.m44{transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.295833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295833,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.m93{transform:matrix(0.302198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302198,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.305921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305921,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.352113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352113,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.416096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416096,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.420051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420051,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.510870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510870,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.551230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551230,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.681818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681818,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.898438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.898438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.898438,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(1.404676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.404676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.404676,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(4.054348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.054348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.054348,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(13.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(13.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(13.350000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.919400px;}
.ls4b{letter-spacing:-17.878200px;}
.ls5c{letter-spacing:-13.218000px;}
.ls91{letter-spacing:-10.544625px;}
.ls65{letter-spacing:-10.031700px;}
.ls97{letter-spacing:-9.241200px;}
.ls4c{letter-spacing:-9.112650px;}
.ls2a{letter-spacing:-8.751750px;}
.ls25{letter-spacing:-7.595850px;}
.ls88{letter-spacing:-7.192800px;}
.ls90{letter-spacing:-7.167450px;}
.ls50{letter-spacing:-6.693075px;}
.ls2b{letter-spacing:-6.480000px;}
.ls34{letter-spacing:-6.079050px;}
.ls2c{letter-spacing:-5.670000px;}
.ls59{letter-spacing:-5.625000px;}
.ls33{letter-spacing:-4.935525px;}
.ls73{letter-spacing:-4.927275px;}
.ls28{letter-spacing:-4.860000px;}
.ls3d{letter-spacing:-4.723200px;}
.ls66{letter-spacing:-4.568850px;}
.ls1f{letter-spacing:-4.556325px;}
.ls96{letter-spacing:-4.272300px;}
.ls32{letter-spacing:-4.205400px;}
.ls53{letter-spacing:-4.155300px;}
.lsaa{letter-spacing:-3.898650px;}
.lsb4{letter-spacing:-3.894075px;}
.ls1c{letter-spacing:-3.797925px;}
.ls47{letter-spacing:-3.771075px;}
.ls8b{letter-spacing:-3.748875px;}
.ls11{letter-spacing:-3.695250px;}
.ls3b{letter-spacing:-3.519000px;}
.ls41{letter-spacing:-3.331800px;}
.lsab{letter-spacing:-3.116550px;}
.lsb6{letter-spacing:-3.116475px;}
.ls35{letter-spacing:-3.039525px;}
.ls13{letter-spacing:-2.954250px;}
.ls29{letter-spacing:-2.830500px;}
.ls42{letter-spacing:-2.720025px;}
.ls85{letter-spacing:-2.699175px;}
.ls26{letter-spacing:-2.696925px;}
.ls49{letter-spacing:-2.668800px;}
.ls58{letter-spacing:-2.416050px;}
.ls20{letter-spacing:-2.281125px;}
.ls30{letter-spacing:-2.251500px;}
.ls10{letter-spacing:-2.218125px;}
.lsa4{letter-spacing:-2.214300px;}
.ls64{letter-spacing:-2.213400px;}
.ls89{letter-spacing:-2.170950px;}
.lsad{letter-spacing:-2.138925px;}
.lsa7{letter-spacing:-2.125575px;}
.ls79{letter-spacing:-2.025000px;}
.ls27{letter-spacing:-1.671525px;}
.ls86{letter-spacing:-1.643250px;}
.ls31{letter-spacing:-1.564500px;}
.lsa{letter-spacing:-1.560600px;}
.lsb2{letter-spacing:-1.555200px;}
.lsa5{letter-spacing:-1.552500px;}
.ls77{letter-spacing:-1.550250px;}
.ls24{letter-spacing:-1.518000px;}
.ls1d{letter-spacing:-1.516800px;}
.lse{letter-spacing:-1.513200px;}
.ls68{letter-spacing:-1.478925px;}
.ls12{letter-spacing:-1.477125px;}
.ls70{letter-spacing:-1.433250px;}
.ls6f{letter-spacing:-1.350000px;}
.ls93{letter-spacing:-0.836550px;}
.ls99{letter-spacing:-0.806400px;}
.ls55{letter-spacing:-0.805350px;}
.ls1b{letter-spacing:-0.798975px;}
.lsd{letter-spacing:-0.795600px;}
.ls6e{letter-spacing:-0.793650px;}
.lsb5{letter-spacing:-0.787200px;}
.ls2f{letter-spacing:-0.787050px;}
.ls98{letter-spacing:-0.785400px;}
.lsac{letter-spacing:-0.782100px;}
.lsb{letter-spacing:-0.780300px;}
.lsb1{letter-spacing:-0.777600px;}
.ls76{letter-spacing:-0.775125px;}
.lsa6{letter-spacing:-0.774000px;}
.ls39{letter-spacing:-0.773850px;}
.ls95{letter-spacing:-0.768900px;}
.lsc{letter-spacing:-0.765000px;}
.ls14{letter-spacing:-0.763800px;}
.ls61{letter-spacing:-0.762300px;}
.ls43{letter-spacing:-0.759450px;}
.ls1e{letter-spacing:-0.758400px;}
.ls8f{letter-spacing:-0.750750px;}
.ls3a{letter-spacing:-0.748125px;}
.ls9{letter-spacing:-0.741000px;}
.ls62{letter-spacing:-0.739350px;}
.ls3e{letter-spacing:-0.738675px;}
.ls5d{letter-spacing:-0.722925px;}
.ls5f{letter-spacing:-0.696000px;}
.ls56{letter-spacing:-0.626400px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.634500px;}
.ls60{letter-spacing:0.734550px;}
.ls4a{letter-spacing:0.737550px;}
.ls22{letter-spacing:0.738000px;}
.ls5{letter-spacing:0.741000px;}
.lsa9{letter-spacing:0.752400px;}
.ls17{letter-spacing:0.758400px;}
.lsa8{letter-spacing:0.759900px;}
.ls3c{letter-spacing:0.760500px;}
.ls67{letter-spacing:0.762300px;}
.ls8a{letter-spacing:0.762600px;}
.ls3f{letter-spacing:0.772200px;}
.ls6a{letter-spacing:0.775125px;}
.lsaf{letter-spacing:0.777600px;}
.ls21{letter-spacing:0.779625px;}
.ls36{letter-spacing:0.781050px;}
.ls9d{letter-spacing:0.782100px;}
.ls9b{letter-spacing:0.787050px;}
.ls38{letter-spacing:0.787200px;}
.ls46{letter-spacing:0.792075px;}
.ls6c{letter-spacing:0.793650px;}
.ls1{letter-spacing:0.795600px;}
.ls2d{letter-spacing:0.796950px;}
.ls15{letter-spacing:0.798975px;}
.ls5e{letter-spacing:0.799500px;}
.ls7c{letter-spacing:0.801900px;}
.ls7a{letter-spacing:0.808725px;}
.ls48{letter-spacing:0.809025px;}
.lsb3{letter-spacing:0.810000px;}
.lsa3{letter-spacing:0.813150px;}
.ls94{letter-spacing:0.836550px;}
.ls8{letter-spacing:0.841500px;}
.ls9a{letter-spacing:1.098900px;}
.ls51{letter-spacing:1.507275px;}
.ls16{letter-spacing:1.516800px;}
.ls84{letter-spacing:1.522575px;}
.ls6b{letter-spacing:1.550250px;}
.lsae{letter-spacing:1.555200px;}
.ls9e{letter-spacing:1.558275px;}
.ls23{letter-spacing:1.560000px;}
.ls7b{letter-spacing:1.572825px;}
.ls83{letter-spacing:1.597725px;}
.ls5b{letter-spacing:1.599000px;}
.ls5a{letter-spacing:1.610700px;}
.ls4f{letter-spacing:2.130000px;}
.ls8c{letter-spacing:2.217600px;}
.ls3{letter-spacing:2.277075px;}
.ls18{letter-spacing:2.281125px;}
.ls54{letter-spacing:2.288100px;}
.ls40{letter-spacing:2.310750px;}
.ls9f{letter-spacing:2.340375px;}
.ls37{letter-spacing:2.361600px;}
.ls8d{letter-spacing:2.391900px;}
.ls82{letter-spacing:2.399625px;}
.ls2e{letter-spacing:2.437500px;}
.ls8e{letter-spacing:2.506725px;}
.ls44{letter-spacing:2.606175px;}
.ls63{letter-spacing:2.691000px;}
.ls57{letter-spacing:2.937600px;}
.ls4{letter-spacing:2.954250px;}
.ls2{letter-spacing:3.033675px;}
.ls19{letter-spacing:3.039525px;}
.ls6d{letter-spacing:3.095625px;}
.ls9c{letter-spacing:3.116550px;}
.ls0{letter-spacing:3.121200px;}
.ls4e{letter-spacing:3.480750px;}
.ls52{letter-spacing:3.631650px;}
.ls45{letter-spacing:3.749850px;}
.ls69{letter-spacing:3.870750px;}
.lsb0{letter-spacing:3.894075px;}
.ls72{letter-spacing:3.930300px;}
.ls6{letter-spacing:4.431375px;}
.ls7f{letter-spacing:4.556325px;}
.ls74{letter-spacing:4.641000px;}
.ls71{letter-spacing:5.198700px;}
.ls1a{letter-spacing:5.314725px;}
.ls75{letter-spacing:5.550000px;}
.ls4d{letter-spacing:7.239300px;}
.ls78{letter-spacing:11.376600px;}
.ls87{letter-spacing:15.191700px;}
.ls92{letter-spacing:15.675000px;}
.ls7e{letter-spacing:15.950100px;}
.ls80{letter-spacing:16.714425px;}
.lsa0{letter-spacing:17.152875px;}
.lsa2{letter-spacing:19.487325px;}
.ls81{letter-spacing:32.664525px;}
.ls7d{letter-spacing:34.181325px;}
.lsa1{letter-spacing:36.640200px;}
.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;}
._19{margin-left:-169.717500px;}
._38{margin-left:-91.339800px;}
._3c{margin-left:-86.872500px;}
._3b{margin-left:-83.895750px;}
._3d{margin-left:-73.063869px;}
._33{margin-left:-69.631224px;}
._29{margin-left:-67.806443px;}
._2d{margin-left:-65.560239px;}
._2f{margin-left:-64.107826px;}
._2e{margin-left:-61.921076px;}
._30{margin-left:-60.442423px;}
._37{margin-left:-53.488773px;}
._1{margin-left:-51.819851px;}
._3a{margin-left:-46.413000px;}
._31{margin-left:-41.478255px;}
._16{margin-left:-35.325899px;}
._34{margin-left:-33.942958px;}
._2c{margin-left:-32.765935px;}
._2a{margin-left:-30.193704px;}
._32{margin-left:-27.540846px;}
._6{margin-left:-26.203337px;}
._35{margin-left:-18.306132px;}
._8{margin-left:-16.808888px;}
._4{margin-left:-15.715212px;}
._7{margin-left:-13.993463px;}
._36{margin-left:-12.449636px;}
._13{margin-left:-10.224973px;}
._9{margin-left:-8.352205px;}
._b{margin-left:-6.519205px;}
._2b{margin-left:-5.513609px;}
._a{margin-left:-4.386318px;}
._e{margin-left:-3.180036px;}
._0{margin-left:-1.716000px;}
._10{width:1.119536px;}
._2{width:2.187900px;}
._d{width:3.394950px;}
._3{width:5.045212px;}
._c{width:6.177600px;}
._f{width:7.657028px;}
._11{width:9.654599px;}
._5{width:11.494500px;}
._12{width:12.544616px;}
._20{width:13.590514px;}
._14{width:16.047261px;}
._18{width:17.093473px;}
._39{width:19.959521px;}
._1a{width:21.359186px;}
._17{width:24.188377px;}
._1b{width:85.074000px;}
._1c{width:125.004000px;}
._1e{width:167.707500px;}
._1f{width:169.212000px;}
._1d{width:170.760750px;}
._23{width:176.070420px;}
._25{width:179.980950px;}
._24{width:182.151000px;}
._22{width:188.452311px;}
._27{width:198.057300px;}
._28{width:200.438250px;}
._26{width:201.964500px;}
._15{width:281.471760px;}
._21{width:495.444094px;}
.fc0{color:transparent;}
.fs48{font-size:17.250000px;}
.fs2a{font-size:24.000000px;}
.fs46{font-size:24.750000px;}
.fs36{font-size:27.000000px;}
.fs35{font-size:27.750000px;}
.fs45{font-size:28.500000px;}
.fs42{font-size:29.250000px;}
.fs14{font-size:30.000000px;}
.fs39{font-size:30.750000px;}
.fs37{font-size:31.500000px;}
.fs44{font-size:32.250000px;}
.fs41{font-size:33.000000px;}
.fs38{font-size:33.750000px;}
.fs16{font-size:34.500000px;}
.fs15{font-size:35.250000px;}
.fse{font-size:36.000000px;}
.fs33{font-size:38.250000px;}
.fs32{font-size:39.000000px;}
.fs22{font-size:39.750000px;}
.fsb{font-size:40.500000px;}
.fs3c{font-size:41.250000px;}
.fs29{font-size:42.000000px;}
.fsc{font-size:42.750000px;}
.fs17{font-size:43.500000px;}
.fs1f{font-size:44.250000px;}
.fs2b{font-size:44.359800px;}
.fs4{font-size:45.000000px;}
.fs3b{font-size:45.750000px;}
.fs2f{font-size:46.500000px;}
.fs1a{font-size:47.250000px;}
.fs19{font-size:48.000000px;}
.fs0{font-size:48.750000px;}
.fs1{font-size:49.500000px;}
.fs5{font-size:50.250000px;}
.fs18{font-size:51.000000px;}
.fsa{font-size:51.750000px;}
.fsd{font-size:52.500000px;}
.fs26{font-size:53.250000px;}
.fs1b{font-size:54.000000px;}
.fs3e{font-size:54.750000px;}
.fs1e{font-size:55.500000px;}
.fs13{font-size:56.250000px;}
.fs49{font-size:56.862600px;}
.fsf{font-size:57.000000px;}
.fs8{font-size:57.750000px;}
.fs1d{font-size:58.500000px;}
.fs1c{font-size:58.617000px;}
.fs6{font-size:59.250000px;}
.fs9{font-size:60.000000px;}
.fs7{font-size:60.750000px;}
.fs12{font-size:61.500000px;}
.fs11{font-size:62.250000px;}
.fs25{font-size:63.000000px;}
.fs10{font-size:64.500000px;}
.fs2e{font-size:66.000000px;}
.fs4a{font-size:66.750000px;}
.fs3f{font-size:68.250000px;}
.fs27{font-size:69.000000px;}
.fs47{font-size:72.000000px;}
.fs3{font-size:72.750000px;}
.fs3d{font-size:74.250000px;}
.fs23{font-size:75.750000px;}
.fs2{font-size:76.500000px;}
.fs43{font-size:80.250000px;}
.fs21{font-size:91.500000px;}
.fs31{font-size:104.250000px;}
.fs40{font-size:109.500000px;}
.fs34{font-size:112.500000px;}
.fs24{font-size:124.500000px;}
.fs28{font-size:147.750000px;}
.fs20{font-size:156.000000px;}
.fs3a{font-size:156.750000px;}
.fs30{font-size:241.500000px;}
.fs2c{font-size:396.750000px;}
.fs2d{font-size:558.000000px;}
.y0{bottom:0.000000px;}
.y123{bottom:79.763190px;}
.y84{bottom:81.203640px;}
.y136{bottom:81.564390px;}
.y98{bottom:83.363040px;}
.y99{bottom:83.364090px;}
.y18d{bottom:85.524540px;}
.y4d{bottom:85.877903px;}
.y1b1{bottom:87.688515px;}
.ye6{bottom:88.044240px;}
.y167{bottom:89.482890px;}
.y53{bottom:90.203040px;}
.y166{bottom:90.918952px;}
.y134{bottom:93.803790px;}
.yc4{bottom:94.157303px;}
.y135{bottom:96.684390px;}
.y97{bottom:98.123040px;}
.y83{bottom:98.476065px;}
.y18b{bottom:102.791715px;}
.y18c{bottom:102.803190px;}
.y4c{bottom:103.164090px;}
.y1af{bottom:104.598653px;}
.y1b0{bottom:104.604390px;}
.y175{bottom:105.318803px;}
.ye5{bottom:105.324540px;}
.y133{bottom:106.403940px;}
.y120{bottom:106.763190px;}
.y165{bottom:108.203153px;}
.y11c{bottom:111.437602px;}
.y11d{bottom:111.445140px;}
.yc3{bottom:111.448665px;}
.y122{bottom:111.804390px;}
.y96{bottom:113.243040px;}
.y82{bottom:116.117753px;}
.y52{bottom:119.363490px;}
.y18a{bottom:120.077902px;}
.y4b{bottom:120.805440px;}
.y1ae{bottom:121.884840px;}
.y174{bottom:122.597602px;}
.ye4{bottom:122.604990px;}
.y121{bottom:123.323490px;}
.y163{bottom:125.839102px;}
.y164{bottom:125.844840px;}
.y132{bottom:126.924240px;}
.yc2{bottom:128.364540px;}
.y11b{bottom:128.718053px;}
.y11f{bottom:128.723790px;}
.y131{bottom:131.604390px;}
.y81{bottom:133.403940px;}
.y189{bottom:137.364090px;}
.y4a{bottom:138.078352px;}
.y1ad{bottom:139.165290px;}
.ye3{bottom:139.885440px;}
.y173{bottom:139.888965px;}
.y130{bottom:141.324090px;}
.y162{bottom:143.125290px;}
.yc1{bottom:145.998352px;}
.y11a{bottom:146.004240px;}
.y80{bottom:150.682740px;}
.y188{bottom:154.644390px;}
.y49{bottom:155.364540px;}
.y1ac{bottom:156.443940px;}
.ye1{bottom:156.802852px;}
.ye2{bottom:156.804840px;}
.y12f{bottom:157.164090px;}
.y161{bottom:160.038952px;}
.yc0{bottom:163.284540px;}
.y119{bottom:163.643940px;}
.y7f{bottom:167.951565px;}
.y187{bottom:171.917302px;}
.y12e{bottom:172.284090px;}
.y48{bottom:172.639103px;}
.y1ab{bottom:173.724390px;}
.y172{bottom:174.077903px;}
.ye0{bottom:174.444540px;}
.y160{bottom:177.317752px;}
.y118{bottom:180.204090px;}
.ybf{bottom:180.557603px;}
.y7e{bottom:185.237752px;}
.y186{bottom:189.203490px;}
.y47{bottom:189.925290px;}
.y12d{bottom:190.284540px;}
.y171{bottom:191.358203px;}
.ydf{bottom:191.724990px;}
.y15e{bottom:194.598052px;}
.y15f{bottom:194.603940px;}
.ybe{bottom:197.837903px;}
.y117{bottom:198.198802px;}
.y12a{bottom:200.363490px;}
.y12c{bottom:201.803790px;}
.y7d{bottom:202.527615px;}
.y185{bottom:206.843190px;}
.y46{bottom:207.566528px;}
.y95{bottom:208.642027px;}
.y170{bottom:208.644390px;}
.yde{bottom:209.005290px;}
.y15d{bottom:211.884240px;}
.y24{bottom:214.763190px;}
.ybd{bottom:215.124090px;}
.y116{bottom:215.488665px;}
.y12b{bottom:217.284540px;}
.y7c{bottom:219.441353px;}
.y183{bottom:224.117752px;}
.y184{bottom:224.123640px;}
.y45{bottom:224.482403px;}
.y1aa{bottom:225.558053px;}
.ydd{bottom:226.283603px;}
.y16f{bottom:226.284090px;}
.y129{bottom:227.004240px;}
.y15c{bottom:229.158953px;}
.y115{bottom:232.404540px;}
.ybc{bottom:232.758052px;}
.y94{bottom:234.922590px;}
.y7b{bottom:237.071415px;}
.y23{bottom:240.329865px;}
.y182{bottom:241.398203px;}
.y43{bottom:242.118353px;}
.y44{bottom:242.124090px;}
.y1a9{bottom:242.844240px;}
.ydb{bottom:243.917902px;}
.ydc{bottom:243.925290px;}
.y15b{bottom:246.445140px;}
.ybb{bottom:250.044240px;}
.y22{bottom:254.004240px;}
.y7a{bottom:254.357602px;}
.y181{bottom:258.684390px;}
.y42{bottom:259.404540px;}
.y1a8{bottom:260.124690px;}
.yda{bottom:261.204090px;}
.y93{bottom:261.922890px;}
.y15a{bottom:263.718052px;}
.y114{bottom:267.318802px;}
.yba{bottom:267.678053px;}
.y21{bottom:267.683302px;}
.y79{bottom:271.643790px;}
.y180{bottom:275.962702px;}
.y41{bottom:276.684990px;}
.y1a7{bottom:277.405140px;}
.yd9{bottom:278.484540px;}
.y159{bottom:281.002102px;}
.y20{bottom:281.004240px;}
.y92{bottom:282.442890px;}
.y113{bottom:284.604990px;}
.yb8{bottom:284.958503px;}
.yb9{bottom:284.964240px;}
.y78{bottom:288.922590px;}
.y90{bottom:293.238952px;}
.y91{bottom:293.243490px;}
.y17f{bottom:293.604390px;}
.y40{bottom:293.965290px;}
.y1f{bottom:294.683302px;}
.yd8{bottom:295.759103px;}
.y158{bottom:298.643790px;}
.y112{bottom:301.883790px;}
.yb7{bottom:302.244690px;}
.y178{bottom:305.843790px;}
.y76{bottom:306.197153px;}
.y77{bottom:306.203040px;}
.y1e{bottom:308.009415px;}
.y17e{bottom:310.877453px;}
.y3e{bottom:311.238353px;}
.y3f{bottom:311.244090px;}
.yd7{bottom:313.045290px;}
.y8f{bottom:314.122327px;}
.y1a6{bottom:314.482965px;}
.y156{bottom:315.918503px;}
.y157{bottom:315.924240px;}
.y111{bottom:318.802853px;}
.y1d{bottom:321.683302px;}
.y75{bottom:323.477602px;}
.y17d{bottom:328.163640px;}
.y3d{bottom:328.524540px;}
.yd6{bottom:330.318202px;}
.y176{bottom:331.044240px;}
.y177{bottom:332.484540px;}
.y155{bottom:333.204690px;}
.y1c{bottom:335.009415px;}
.y110{bottom:336.444540px;}
.yb6{bottom:336.803790px;}
.y8e{bottom:340.402890px;}
.y74{bottom:340.763790px;}
.y3c{bottom:345.804840px;}
.yd5{bottom:347.598652px;}
.y1b{bottom:348.683790px;}
.y1a{bottom:348.689115px;}
.y10f{bottom:353.361953px;}
.y73{bottom:358.397603px;}
.y19{bottom:362.363490px;}
.yd4{bottom:364.879103px;}
.y8d{bottom:367.403790px;}
.y154{bottom:368.124690px;}
.y1a5{bottom:368.844840px;}
.y10e{bottom:371.003640px;}
.yb5{bottom:371.364540px;}
.y72{bottom:375.681803px;}
.y18{bottom:375.683790px;}
.y8c{bottom:375.687540px;}
.y3b{bottom:380.724990px;}
.yd3{bottom:382.165290px;}
.y8b{bottom:384.323790px;}
.y1a4{bottom:386.123153px;}
.y10d{bottom:388.284090px;}
.yb4{bottom:388.642853px;}
.y71{bottom:393.323490px;}
.y153{bottom:402.683790px;}
.y17{bottom:403.044690px;}
.y1a3{bottom:403.764840px;}
.yb3{bottom:406.284540px;}
.y70{bottom:410.584927px;}
.y17c{bottom:414.563940px;}
.y3a{bottom:415.649340px;}
.y152{bottom:419.958503px;}
.y1a2{bottom:421.045290px;}
.y10c{bottom:423.204090px;}
.yb2{bottom:423.564990px;}
.y6f{bottom:427.871115px;}
.y128{bottom:428.963640px;}
.y8a{bottom:430.043040px;}
.y16{bottom:430.044690px;}
.y151{bottom:437.242552px;}
.y1a1{bottom:438.318202px;}
.y89{bottom:438.683340px;}
.yb1{bottom:441.204690px;}
.y15{bottom:443.729565px;}
.y6e{bottom:445.157303px;}
.yc8{bottom:445.164690px;}
.y88{bottom:446.964240px;}
.y150{bottom:454.878502px;}
.y1a0{bottom:455.604390px;}
.y14{bottom:457.403940px;}
.y10b{bottom:457.764840px;}
.yaf{bottom:458.483002px;}
.yb0{bottom:458.483490px;}
.yc7{bottom:460.284540px;}
.y6d{bottom:462.443490px;}
.y16e{bottom:465.684990px;}
.y16d{bottom:470.363490px;}
.y13{bottom:471.084090px;}
.y14f{bottom:472.164690px;}
.y39{bottom:472.884840px;}
.y19f{bottom:473.244090px;}
.y10a{bottom:475.402552px;}
.yae{bottom:476.117302px;}
.y17b{bottom:476.483940px;}
.y6c{bottom:480.083040px;}
.y12{bottom:485.123602px;}
.y14d{bottom:489.437603px;}
.y14e{bottom:489.445140px;}
.y38{bottom:490.165290px;}
.y19e{bottom:490.524540px;}
.y109{bottom:493.044240px;}
.yad{bottom:493.403490px;}
.y6a{bottom:497.357602px;}
.y6b{bottom:497.363490px;}
.y11{bottom:498.443490px;}
.y14c{bottom:506.723453px;}
.y37{bottom:507.799103px;}
.y19d{bottom:508.164090px;}
.y108{bottom:510.318803px;}
.yab{bottom:511.037303px;}
.yac{bottom:511.044690px;}
.y10{bottom:512.478128px;}
.y69{bottom:514.636403px;}
.y14b{bottom:524.365140px;}
.y36{bottom:525.083303px;}
.y19c{bottom:525.444540px;}
.yf{bottom:526.164690px;}
.y107{bottom:527.604990px;}
.yaa{bottom:528.323152px;}
.y68{bottom:531.922253px;}
.ye{bottom:539.844240px;}
.y14a{bottom:541.643453px;}
.y35{bottom:542.724990px;}
.y19b{bottom:543.084240px;}
.y106{bottom:545.238803px;}
.ya9{bottom:545.957302px;}
.y67{bottom:549.556402px;}
.yd{bottom:553.523940px;}
.y149{bottom:559.285140px;}
.y34{bottom:560.356665px;}
.y19a{bottom:560.362553px;}
.y105{bottom:562.523002px;}
.ya8{bottom:563.240115px;}
.y66{bottom:566.842590px;}
.yc{bottom:567.203640px;}
.y148{bottom:576.563940px;}
.y33{bottom:577.642853px;}
.y199{bottom:578.004240px;}
.y103{bottom:580.158953px;}
.y104{bottom:580.164690px;}
.yb{bottom:580.884840px;}
.y146{bottom:593.842253px;}
.y147{bottom:593.844240px;}
.ya{bottom:594.203640px;}
.y32{bottom:595.284540px;}
.y198{bottom:595.643790px;}
.y1c2{bottom:596.003190px;}
.y102{bottom:597.445140px;}
.y65{bottom:601.762740px;}
.y144{bottom:611.478203px;}
.y145{bottom:611.483940px;}
.y31{bottom:612.924240px;}
.y1c1{bottom:613.644390px;}
.y101{bottom:615.078952px;}
.y143{bottom:628.764390px;}
.y30{bottom:630.204690px;}
.y197{bottom:630.558052px;}
.y1c0{bottom:631.284090px;}
.y100{bottom:632.361015px;}
.y64{bottom:636.682402px;}
.y141{bottom:646.403603px;}
.y142{bottom:646.403940px;}
.y196{bottom:647.842253px;}
.y2f{bottom:647.844240px;}
.y1bf{bottom:648.923640px;}
.yff{bottom:650.002703px;}
.y9{bottom:652.888440px;}
.y63{bottom:654.324090px;}
.ya7{bottom:655.397603px;}
.yf3{bottom:656.845440px;}
.y16c{bottom:657.563940px;}
.y17a{bottom:661.883190px;}
.y140{bottom:664.045290px;}
.y8{bottom:665.124690px;}
.y2e{bottom:665.478203px;}
.y195{bottom:665.483940px;}
.y1be{bottom:666.204090px;}
.y1bd{bottom:666.211103px;}
.yfe{bottom:667.638652px;}
.yf2{bottom:670.164090px;}
.y62{bottom:671.597003px;}
.ya6{bottom:672.683790px;}
.y7{bottom:677.364090px;}
.y16b{bottom:678.084240px;}
.y16a{bottom:679.163640px;}
.y13f{bottom:681.321953px;}
.yd2{bottom:682.044240px;}
.y2d{bottom:682.764390px;}
.y194{bottom:683.117752px;}
.yf1{bottom:683.484540px;}
.y1bc{bottom:683.843790px;}
.yfd{bottom:684.924840px;}
.y127{bottom:685.284090px;}
.y60{bottom:688.881203px;}
.y61{bottom:688.883190px;}
.ya5{bottom:690.323490px;}
.y126{bottom:695.364540px;}
.y13e{bottom:698.963640px;}
.y2c{bottom:700.403603px;}
.y1bb{bottom:701.483490px;}
.y6{bottom:701.844240px;}
.yfc{bottom:702.564390px;}
.y5f{bottom:706.522890px;}
.ya4{bottom:707.598052px;}
.yf0{bottom:709.405140px;}
.y13d{bottom:716.244090px;}
.yd1{bottom:716.604990px;}
.yef{bottom:717.684390px;}
.y193{bottom:718.037902px;}
.y2b{bottom:718.043303px;}
.y1ba{bottom:718.763790px;}
.yfb{bottom:719.844840px;}
.y5{bottom:720.204090px;}
.yee{bottom:722.723790px;}
.y5e{bottom:723.801203px;}
.ya3{bottom:724.887652px;}
.yd0{bottom:735.324090px;}
.y2a{bottom:735.682852px;}
.y11e{bottom:736.044240px;}
.y1b9{bottom:736.403490px;}
.yfa{bottom:737.484540px;}
.yed{bottom:738.924840px;}
.y5d{bottom:741.437152px;}
.ycf{bottom:741.805440px;}
.ya2{bottom:742.884840px;}
.yce{bottom:749.005290px;}
.yec{bottom:750.084690px;}
.y13c{bottom:751.164090px;}
.y192{bottom:752.957902px;}
.y29{bottom:753.324540px;}
.y1b8{bottom:753.683790px;}
.yf9{bottom:754.762853px;}
.y5c{bottom:758.723340px;}
.ya1{bottom:760.163640px;}
.ycd{bottom:762.684990px;}
.yeb{bottom:764.125290px;}
.y191{bottom:770.242103px;}
.y28{bottom:770.603003px;}
.ycc{bottom:770.604990px;}
.y1b7{bottom:771.323490px;}
.y1b6{bottom:771.330503px;}
.yf8{bottom:772.398802px;}
.yea{bottom:773.124690px;}
.ycb{bottom:774.204090px;}
.y51{bottom:775.644390px;}
.y5b{bottom:776.362890px;}
.ya0{bottom:777.441953px;}
.yca{bottom:785.724990px;}
.y13b{bottom:786.445140px;}
.y190{bottom:787.883790px;}
.y27{bottom:788.242552px;}
.y1b5{bottom:788.963190px;}
.ye9{bottom:788.964840px;}
.y50{bottom:789.683340px;}
.yf7{bottom:789.695677px;}
.y4{bottom:793.283940px;}
.ye8{bottom:793.284090px;}
.y5a{bottom:793.643340px;}
.y9f{bottom:795.077903px;}
.y179{bottom:799.043640px;}
.y13a{bottom:804.078540px;}
.y18f{bottom:805.164090px;}
.y26{bottom:805.884240px;}
.y1b4{bottom:806.243490px;}
.y1b3{bottom:806.250503px;}
.yf6{bottom:806.967053px;}
.y125{bottom:808.044690px;}
.y59{bottom:810.923790px;}
.ye7{bottom:811.284540px;}
.y3{bottom:811.643940px;}
.y9e{bottom:812.361953px;}
.y124{bottom:818.123640px;}
.yc9{bottom:820.284090px;}
.y169{bottom:823.164690px;}
.y1b2{bottom:823.883190px;}
.yf5{bottom:824.964240px;}
.y57{bottom:828.557603px;}
.y58{bottom:828.563340px;}
.y4f{bottom:829.283490px;}
.y9d{bottom:830.003303px;}
.y2{bottom:830.003640px;}
.y139{bottom:841.524540px;}
.yf4{bottom:842.244690px;}
.y18e{bottom:842.603940px;}
.y56{bottom:845.843790px;}
.y9c{bottom:847.644990px;}
.y87{bottom:853.763790px;}
.y1{bottom:869.244690px;}
.y138{bottom:876.803790px;}
.y137{bottom:877.884840px;}
.yc6{bottom:878.244090px;}
.y4e{bottom:878.603340px;}
.y168{bottom:878.964240px;}
.yc5{bottom:879.325140px;}
.y54{bottom:879.682740px;}
.y25{bottom:880.045290px;}
.y55{bottom:880.763790px;}
.y85{bottom:881.483940px;}
.y86{bottom:882.563340px;}
.y9a{bottom:883.283490px;}
.y9b{bottom:884.003640px;}
.h8f{height:17.991211px;}
.h57{height:25.031250px;}
.h8d{height:25.813477px;}
.h72{height:28.160156px;}
.h71{height:28.942383px;}
.h6f{height:29.443359px;}
.h8c{height:29.724609px;}
.h84{height:30.506836px;}
.h7a{height:30.990234px;}
.h73{height:31.130859px;}
.h35{height:31.289062px;}
.h8a{height:31.746094px;}
.h76{height:32.071289px;}
.h89{height:32.501953px;}
.h88{height:32.853516px;}
.h83{height:33.257812px;}
.h8b{height:33.635742px;}
.h37{height:33.859863px;}
.h75{height:34.013672px;}
.h36{height:34.595947px;}
.h85{height:34.836914px;}
.h58{height:35.332031px;}
.h51{height:35.982422px;}
.h6d{height:37.521606px;}
.h26{height:37.546875px;}
.h74{height:38.257324px;}
.h6a{height:38.276367px;}
.h6e{height:38.548828px;}
.h4b{height:39.284180px;}
.h4d{height:39.728760px;}
.h79{height:40.766602px;}
.h56{height:41.220703px;}
.h38{height:41.956787px;}
.h22{height:42.240234px;}
.h39{height:42.692871px;}
.h23{height:43.083984px;}
.h48{height:43.428955px;}
.h59{height:43.536718px;}
.h94{height:44.165039px;}
.h95{height:44.901123px;}
.h7f{height:45.614502px;}
.h6b{height:45.637207px;}
.h3c{height:46.350220px;}
.h9{height:46.933594px;}
.h3b{height:47.085938px;}
.h78{height:47.715820px;}
.h2{height:47.821655px;}
.h4{height:47.845459px;}
.hc{height:47.847409px;}
.hb{height:47.849659px;}
.ha{height:47.866909px;}
.h47{height:48.375000px;}
.h91{height:48.498047px;}
.h3{height:48.557373px;}
.h25{height:49.130859px;}
.h6c{height:49.280273px;}
.h3d{height:49.293091px;}
.h10{height:49.317627px;}
.h66{height:50.028809px;}
.h3a{height:50.402344px;}
.hd{height:50.642578px;}
.h52{height:50.844727px;}
.h4e{height:51.143555px;}
.h2a{height:51.525879px;}
.h80{height:52.625977px;}
.h40{height:52.998047px;}
.h21{height:53.973633px;}
.h46{height:54.470215px;}
.h24{height:54.755859px;}
.h34{height:55.206299px;}
.h53{height:55.538086px;}
.h90{height:55.807532px;}
.h29{height:55.942383px;}
.h19{height:56.678467px;}
.h7c{height:57.102539px;}
.h44{height:57.385986px;}
.h63{height:57.414551px;}
.h41{height:57.529380px;}
.h97{height:58.121704px;}
.h98{height:58.145254px;}
.h11{height:58.150635px;}
.h14{height:58.151985px;}
.h43{height:58.152585px;}
.h13{height:58.158585px;}
.h12{height:58.159185px;}
.h42{height:58.164135px;}
.h62{height:58.167135px;}
.h15{height:58.173585px;}
.h1c{height:58.174185px;}
.h7d{height:58.175235px;}
.h2e{height:58.180185px;}
.h1d{height:58.180785px;}
.h17{height:58.182135px;}
.h96{height:58.196535px;}
.h31{height:58.197135px;}
.h30{height:58.226685px;}
.h5c{height:58.666992px;}
.h1a{height:58.886719px;}
.h61{height:59.296875px;}
.h45{height:59.449219px;}
.h18{height:59.593140px;}
.h16{height:59.622803px;}
.h20{height:60.231445px;}
.h2d{height:60.328857px;}
.h2f{height:60.358887px;}
.h1b{height:60.468750px;}
.h93{height:61.013672px;}
.h2c{height:61.094971px;}
.h99{height:61.224609px;}
.h50{height:61.831055px;}
.h5e{height:62.578125px;}
.h92{height:65.511475px;}
.h2b{height:67.271484px;}
.h5d{height:68.835938px;}
.h81{height:71.182617px;}
.h7{height:71.400146px;}
.h67{height:71.556607px;}
.h54{height:71.964844px;}
.h8{height:75.080566px;}
.h8e{height:75.093750px;}
.h4c{height:76.341797px;}
.h5{height:77.097656px;}
.h6{height:77.098256px;}
.h7b{height:77.440430px;}
.h86{height:79.787109px;}
.h87{height:83.698242px;}
.h4a{height:95.431641px;}
.h69{height:108.729492px;}
.h82{height:114.205078px;}
.h70{height:117.333984px;}
.h4f{height:129.849609px;}
.h55{height:154.098633px;}
.h49{height:162.703125px;}
.h77{height:163.485352px;}
.h68{height:251.876953px;}
.h5a{height:389.388428px;}
.h5b{height:581.976562px;}
.h1f{height:959.250000px;}
.h1e{height:959.448090px;}
.h65{height:960.750000px;}
.h64{height:960.888090px;}
.h1{height:961.500000px;}
.h0{height:961.608090px;}
.h33{height:962.250000px;}
.h32{height:962.328090px;}
.h27{height:962.688090px;}
.h28{height:963.000000px;}
.h7e{height:963.048090px;}
.h60{height:963.750000px;}
.h5f{height:963.768090px;}
.he{height:964.488090px;}
.hf{height:964.500000px;}
.h3e{height:965.929590px;}
.h3f{height:966.000000px;}
.wd{width:640.488090px;}
.we{width:640.500000px;}
.wf{width:641.208090px;}
.w10{width:641.250000px;}
.w2{width:641.926590px;}
.w3{width:642.000000px;}
.w0{width:642.648090px;}
.w4{width:642.649275px;}
.w1{width:642.750000px;}
.wb{width:643.368090px;}
.wc{width:643.500000px;}
.w7{width:644.089590px;}
.w8{width:644.250000px;}
.w5{width:645.528090px;}
.w6{width:645.750000px;}
.w9{width:648.408090px;}
.wa{width:648.750000px;}
.x0{left:0.000000px;}
.x89{left:57.084240px;}
.xb0{left:59.603940px;}
.xad{left:60.683565px;}
.x87{left:62.123640px;}
.x5a{left:67.164690px;}
.xcf{left:68.604990px;}
.x2f{left:71.844840px;}
.x13{left:72.924240px;}
.x16{left:73.998090px;}
.x41{left:75.084690px;}
.xc{left:76.884240px;}
.x4{left:78.324540px;}
.x27{left:80.124075px;}
.x30{left:84.443490px;}
.x81{left:85.524540px;}
.x86{left:86.603940px;}
.xb5{left:87.683340px;}
.xbf{left:89.845440px;}
.x8a{left:92.004240px;}
.x1c{left:93.803790px;}
.xb{left:95.244090px;}
.xaa{left:97.763790px;}
.x88{left:99.924240px;}
.xe7{left:101.005290px;}
.x56{left:104.963640px;}
.x5b{left:106.764840px;}
.x6{left:108.203640px;}
.x31{left:112.524540px;}
.x1e{left:113.964825px;}
.x28{left:118.284075px;}
.xd{left:119.724390px;}
.x5c{left:120.803790px;}
.xd6{left:122.964240px;}
.x93{left:124.043640px;}
.x42{left:127.644390px;}
.x29{left:130.164075px;}
.x46{left:133.044690px;}
.x4b{left:135.205140px;}
.xe8{left:138.084240px;}
.x11{left:139.163640px;}
.xc0{left:140.605590px;}
.x2a{left:143.123640px;}
.x12{left:144.563940px;}
.x32{left:145.643340px;}
.x47{left:148.525590px;}
.x20{left:150.684375px;}
.x33{left:157.164090px;}
.xe{left:158.963640px;}
.x69{left:161.124090px;}
.x3d{left:166.524540px;}
.x40{left:167.605590px;}
.xda{left:171.204690px;}
.x18{left:172.284090px;}
.xe9{left:173.365140px;}
.xdb{left:175.884840px;}
.xe0{left:177.684390px;}
.xae{left:178.763790px;}
.x76{left:183.084690px;}
.x14{left:185.963640px;}
.xbe{left:187.403940px;}
.xaf{left:190.284540px;}
.x1b{left:191.364090px;}
.xe1{left:192.445140px;}
.x77{left:193.524540px;}
.xe3{left:195.324090px;}
.xe2{left:197.845440px;}
.x15{left:198.924840px;}
.x19{left:201.083640px;}
.x80{left:202.164690px;}
.xc7{left:203.244090px;}
.x17{left:204.308715px;}
.xc2{left:206.844840px;}
.x6f{left:208.644390px;}
.x7d{left:209.723790px;}
.x2e{left:212.963640px;}
.x78{left:214.044690px;}
.x50{left:216.925290px;}
.xd9{left:219.443490px;}
.xea{left:221.244690px;}
.x4e{left:222.684990px;}
.x21{left:224.125275px;}
.x4c{left:228.085290px;}
.x22{left:231.684375px;}
.x3e{left:233.485590px;}
.x6c{left:234.924240px;}
.x9{left:236.003640px;}
.x4f{left:238.164090px;}
.x83{left:239.243490px;}
.x3f{left:241.764840px;}
.xc1{left:243.925290px;}
.x39{left:245.364090px;}
.xa7{left:246.804390px;}
.xa{left:249.324090px;}
.x55{left:251.484540px;}
.x3c{left:252.922778px;}
.x5{left:257.244090px;}
.x85{left:258.323490px;}
.x48{left:259.404540px;}
.x26{left:261.924225px;}
.xd7{left:264.804840px;}
.x79{left:267.324540px;}
.xdd{left:269.484990px;}
.xb3{left:270.923640px;}
.x3a{left:272.004840px;}
.x94{left:275.244690px;}
.x70{left:276.324090px;}
.x7e{left:278.484540px;}
.xa3{left:279.563940px;}
.xd0{left:281.365140px;}
.x3b{left:282.444540px;}
.xde{left:283.525590px;}
.x61{left:284.964240px;}
.xe4{left:286.045290px;}
.x6b{left:287.483940px;}
.x51{left:291.084690px;}
.x6d{left:292.523340px;}
.x23{left:294.685425px;}
.x62{left:296.844240px;}
.x43{left:300.804390px;}
.x52{left:305.484540px;}
.x71{left:306.924840px;}
.xb1{left:308.004240px;}
.x7{left:311.244090px;}
.x6a{left:314.483940px;}
.x53{left:315.564990px;}
.x82{left:317.364540px;}
.xb2{left:319.164090px;}
.x7f{left:320.963640px;}
.x49{left:324.925290px;}
.x44{left:326.364090px;}
.x6e{left:327.804390px;}
.x54{left:330.684990px;}
.x72{left:334.643340px;}
.x45{left:336.805440px;}
.x73{left:337.884840px;}
.xdf{left:338.964240px;}
.x8{left:340.763790px;}
.xb4{left:345.443940px;}
.x4d{left:348.324540px;}
.x95{left:359.484540px;}
.xd5{left:360.924840px;}
.x64{left:362.724390px;}
.xc9{left:363.805440px;}
.xc3{left:365.604990px;}
.x68{left:366.684390px;}
.x8b{left:369.204090px;}
.x1{left:370.644390px;}
.x7a{left:374.243490px;}
.x74{left:376.403940px;}
.xca{left:383.605590px;}
.xc4{left:385.044240px;}
.xb6{left:387.204690px;}
.xcd{left:388.644990px;}
.x96{left:390.444540px;}
.x97{left:394.763790px;}
.x8f{left:398.723790px;}
.xd8{left:399.804840px;}
.x7b{left:401.243490px;}
.x1d{left:402.324540px;}
.xbb{left:403.403940px;}
.xbd{left:406.643790px;}
.xcb{left:408.804390px;}
.x90{left:409.883790px;}
.x84{left:410.964840px;}
.x9a{left:413.123640px;}
.x91{left:414.924840px;}
.x5e{left:417.444540px;}
.xce{left:419.604990px;}
.xbc{left:421.404540px;}
.x2{left:425.003640px;}
.x7c{left:427.884240px;}
.xc5{left:428.965290px;}
.x92{left:431.124090px;}
.xa8{left:432.203640px;}
.x65{left:434.723340px;}
.x66{left:438.683340px;}
.x5f{left:439.764390px;}
.x5d{left:441.924840px;}
.x67{left:443.004240px;}
.x2b{left:445.164690px;}
.x24{left:446.604975px;}
.xdc{left:449.124690px;}
.x75{left:450.204090px;}
.x25{left:453.084675px;}
.x9f{left:454.164090px;}
.xcc{left:455.604390px;}
.xc6{left:457.044690px;}
.xe5{left:458.124090px;}
.xb7{left:462.804390px;}
.x2c{left:464.244690px;}
.x8c{left:465.324090px;}
.xe6{left:470.004240px;}
.xab{left:473.964240px;}
.xd2{left:475.045290px;}
.xb8{left:477.563340px;}
.x57{left:480.804840px;}
.x36{left:483.685440px;}
.xb9{left:488.364090px;}
.x3{left:489.443490px;}
.x9b{left:490.883790px;}
.x8d{left:494.843790px;}
.x98{left:497.724390px;}
.xba{left:499.523940px;}
.x9c{left:500.603340px;}
.xf{left:503.844840px;}
.x8e{left:506.003640px;}
.xd3{left:507.084690px;}
.x60{left:510.683790px;}
.xc8{left:511.764990px;}
.x99{left:512.844240px;}
.x10{left:513.923640px;}
.xd4{left:515.004840px;}
.x2d{left:517.883790px;}
.xa9{left:520.044240px;}
.x4a{left:523.644990px;}
.x9d{left:527.244090px;}
.xa4{left:533.723790px;}
.x9e{left:538.044690px;}
.x63{left:539.124090px;}
.xac{left:540.564390px;}
.x34{left:542.004840px;}
.xa0{left:545.244690px;}
.x58{left:547.403490px;}
.xa5{left:548.484540px;}
.x37{left:550.644990px;}
.xa6{left:552.083640px;}
.x35{left:553.523940px;}
.x59{left:555.323490px;}
.x1f{left:556.765425px;}
.x1a{left:558.563340px;}
.xd1{left:559.644390px;}
.xa1{left:562.164090px;}
.x38{left:563.245140px;}
.xa2{left:571.883790px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.039467pt;}
.ls4b{letter-spacing:-15.891733pt;}
.ls5c{letter-spacing:-11.749333pt;}
.ls91{letter-spacing:-9.373000pt;}
.ls65{letter-spacing:-8.917067pt;}
.ls97{letter-spacing:-8.214400pt;}
.ls4c{letter-spacing:-8.100133pt;}
.ls2a{letter-spacing:-7.779333pt;}
.ls25{letter-spacing:-6.751867pt;}
.ls88{letter-spacing:-6.393600pt;}
.ls90{letter-spacing:-6.371067pt;}
.ls50{letter-spacing:-5.949400pt;}
.ls2b{letter-spacing:-5.760000pt;}
.ls34{letter-spacing:-5.403600pt;}
.ls2c{letter-spacing:-5.040000pt;}
.ls59{letter-spacing:-5.000000pt;}
.ls33{letter-spacing:-4.387133pt;}
.ls73{letter-spacing:-4.379800pt;}
.ls28{letter-spacing:-4.320000pt;}
.ls3d{letter-spacing:-4.198400pt;}
.ls66{letter-spacing:-4.061200pt;}
.ls1f{letter-spacing:-4.050067pt;}
.ls96{letter-spacing:-3.797600pt;}
.ls32{letter-spacing:-3.738133pt;}
.ls53{letter-spacing:-3.693600pt;}
.lsaa{letter-spacing:-3.465467pt;}
.lsb4{letter-spacing:-3.461400pt;}
.ls1c{letter-spacing:-3.375933pt;}
.ls47{letter-spacing:-3.352067pt;}
.ls8b{letter-spacing:-3.332333pt;}
.ls11{letter-spacing:-3.284667pt;}
.ls3b{letter-spacing:-3.128000pt;}
.ls41{letter-spacing:-2.961600pt;}
.lsab{letter-spacing:-2.770267pt;}
.lsb6{letter-spacing:-2.770200pt;}
.ls35{letter-spacing:-2.701800pt;}
.ls13{letter-spacing:-2.626000pt;}
.ls29{letter-spacing:-2.516000pt;}
.ls42{letter-spacing:-2.417800pt;}
.ls85{letter-spacing:-2.399267pt;}
.ls26{letter-spacing:-2.397267pt;}
.ls49{letter-spacing:-2.372267pt;}
.ls58{letter-spacing:-2.147600pt;}
.ls20{letter-spacing:-2.027667pt;}
.ls30{letter-spacing:-2.001333pt;}
.ls10{letter-spacing:-1.971667pt;}
.lsa4{letter-spacing:-1.968267pt;}
.ls64{letter-spacing:-1.967467pt;}
.ls89{letter-spacing:-1.929733pt;}
.lsad{letter-spacing:-1.901267pt;}
.lsa7{letter-spacing:-1.889400pt;}
.ls79{letter-spacing:-1.800000pt;}
.ls27{letter-spacing:-1.485800pt;}
.ls86{letter-spacing:-1.460667pt;}
.ls31{letter-spacing:-1.390667pt;}
.lsa{letter-spacing:-1.387200pt;}
.lsb2{letter-spacing:-1.382400pt;}
.lsa5{letter-spacing:-1.380000pt;}
.ls77{letter-spacing:-1.378000pt;}
.ls24{letter-spacing:-1.349333pt;}
.ls1d{letter-spacing:-1.348267pt;}
.lse{letter-spacing:-1.345067pt;}
.ls68{letter-spacing:-1.314600pt;}
.ls12{letter-spacing:-1.313000pt;}
.ls70{letter-spacing:-1.274000pt;}
.ls6f{letter-spacing:-1.200000pt;}
.ls93{letter-spacing:-0.743600pt;}
.ls99{letter-spacing:-0.716800pt;}
.ls55{letter-spacing:-0.715867pt;}
.ls1b{letter-spacing:-0.710200pt;}
.lsd{letter-spacing:-0.707200pt;}
.ls6e{letter-spacing:-0.705467pt;}
.lsb5{letter-spacing:-0.699733pt;}
.ls2f{letter-spacing:-0.699600pt;}
.ls98{letter-spacing:-0.698133pt;}
.lsac{letter-spacing:-0.695200pt;}
.lsb{letter-spacing:-0.693600pt;}
.lsb1{letter-spacing:-0.691200pt;}
.ls76{letter-spacing:-0.689000pt;}
.lsa6{letter-spacing:-0.688000pt;}
.ls39{letter-spacing:-0.687867pt;}
.ls95{letter-spacing:-0.683467pt;}
.lsc{letter-spacing:-0.680000pt;}
.ls14{letter-spacing:-0.678933pt;}
.ls61{letter-spacing:-0.677600pt;}
.ls43{letter-spacing:-0.675067pt;}
.ls1e{letter-spacing:-0.674133pt;}
.ls8f{letter-spacing:-0.667333pt;}
.ls3a{letter-spacing:-0.665000pt;}
.ls9{letter-spacing:-0.658667pt;}
.ls62{letter-spacing:-0.657200pt;}
.ls3e{letter-spacing:-0.656600pt;}
.ls5d{letter-spacing:-0.642600pt;}
.ls5f{letter-spacing:-0.618667pt;}
.ls56{letter-spacing:-0.556800pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.564000pt;}
.ls60{letter-spacing:0.652933pt;}
.ls4a{letter-spacing:0.655600pt;}
.ls22{letter-spacing:0.656000pt;}
.ls5{letter-spacing:0.658667pt;}
.lsa9{letter-spacing:0.668800pt;}
.ls17{letter-spacing:0.674133pt;}
.lsa8{letter-spacing:0.675467pt;}
.ls3c{letter-spacing:0.676000pt;}
.ls67{letter-spacing:0.677600pt;}
.ls8a{letter-spacing:0.677867pt;}
.ls3f{letter-spacing:0.686400pt;}
.ls6a{letter-spacing:0.689000pt;}
.lsaf{letter-spacing:0.691200pt;}
.ls21{letter-spacing:0.693000pt;}
.ls36{letter-spacing:0.694267pt;}
.ls9d{letter-spacing:0.695200pt;}
.ls9b{letter-spacing:0.699600pt;}
.ls38{letter-spacing:0.699733pt;}
.ls46{letter-spacing:0.704067pt;}
.ls6c{letter-spacing:0.705467pt;}
.ls1{letter-spacing:0.707200pt;}
.ls2d{letter-spacing:0.708400pt;}
.ls15{letter-spacing:0.710200pt;}
.ls5e{letter-spacing:0.710667pt;}
.ls7c{letter-spacing:0.712800pt;}
.ls7a{letter-spacing:0.718867pt;}
.ls48{letter-spacing:0.719133pt;}
.lsb3{letter-spacing:0.720000pt;}
.lsa3{letter-spacing:0.722800pt;}
.ls94{letter-spacing:0.743600pt;}
.ls8{letter-spacing:0.748000pt;}
.ls9a{letter-spacing:0.976800pt;}
.ls51{letter-spacing:1.339800pt;}
.ls16{letter-spacing:1.348267pt;}
.ls84{letter-spacing:1.353400pt;}
.ls6b{letter-spacing:1.378000pt;}
.lsae{letter-spacing:1.382400pt;}
.ls9e{letter-spacing:1.385133pt;}
.ls23{letter-spacing:1.386667pt;}
.ls7b{letter-spacing:1.398067pt;}
.ls83{letter-spacing:1.420200pt;}
.ls5b{letter-spacing:1.421333pt;}
.ls5a{letter-spacing:1.431733pt;}
.ls4f{letter-spacing:1.893333pt;}
.ls8c{letter-spacing:1.971200pt;}
.ls3{letter-spacing:2.024067pt;}
.ls18{letter-spacing:2.027667pt;}
.ls54{letter-spacing:2.033867pt;}
.ls40{letter-spacing:2.054000pt;}
.ls9f{letter-spacing:2.080333pt;}
.ls37{letter-spacing:2.099200pt;}
.ls8d{letter-spacing:2.126133pt;}
.ls82{letter-spacing:2.133000pt;}
.ls2e{letter-spacing:2.166667pt;}
.ls8e{letter-spacing:2.228200pt;}
.ls44{letter-spacing:2.316600pt;}
.ls63{letter-spacing:2.392000pt;}
.ls57{letter-spacing:2.611200pt;}
.ls4{letter-spacing:2.626000pt;}
.ls2{letter-spacing:2.696600pt;}
.ls19{letter-spacing:2.701800pt;}
.ls6d{letter-spacing:2.751667pt;}
.ls9c{letter-spacing:2.770267pt;}
.ls0{letter-spacing:2.774400pt;}
.ls4e{letter-spacing:3.094000pt;}
.ls52{letter-spacing:3.228133pt;}
.ls45{letter-spacing:3.333200pt;}
.ls69{letter-spacing:3.440667pt;}
.lsb0{letter-spacing:3.461400pt;}
.ls72{letter-spacing:3.493600pt;}
.ls6{letter-spacing:3.939000pt;}
.ls7f{letter-spacing:4.050067pt;}
.ls74{letter-spacing:4.125333pt;}
.ls71{letter-spacing:4.621067pt;}
.ls1a{letter-spacing:4.724200pt;}
.ls75{letter-spacing:4.933333pt;}
.ls4d{letter-spacing:6.434933pt;}
.ls78{letter-spacing:10.112533pt;}
.ls87{letter-spacing:13.503733pt;}
.ls92{letter-spacing:13.933333pt;}
.ls7e{letter-spacing:14.177867pt;}
.ls80{letter-spacing:14.857267pt;}
.lsa0{letter-spacing:15.247000pt;}
.lsa2{letter-spacing:17.322067pt;}
.ls81{letter-spacing:29.035133pt;}
.ls7d{letter-spacing:30.383400pt;}
.lsa1{letter-spacing:32.569067pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-150.860000pt;}
._38{margin-left:-81.190933pt;}
._3c{margin-left:-77.220000pt;}
._3b{margin-left:-74.574000pt;}
._3d{margin-left:-64.945662pt;}
._33{margin-left:-61.894421pt;}
._29{margin-left:-60.272394pt;}
._2d{margin-left:-58.275768pt;}
._2f{margin-left:-56.984734pt;}
._2e{margin-left:-55.040956pt;}
._30{margin-left:-53.726598pt;}
._37{margin-left:-47.545576pt;}
._1{margin-left:-46.062090pt;}
._3a{margin-left:-41.256000pt;}
._31{margin-left:-36.869560pt;}
._16{margin-left:-31.400799pt;}
._34{margin-left:-30.171518pt;}
._2c{margin-left:-29.125275pt;}
._2a{margin-left:-26.838848pt;}
._32{margin-left:-24.480752pt;}
._6{margin-left:-23.291856pt;}
._35{margin-left:-16.272118pt;}
._8{margin-left:-14.941233pt;}
._4{margin-left:-13.969078pt;}
._7{margin-left:-12.438633pt;}
._36{margin-left:-11.066343pt;}
._13{margin-left:-9.088865pt;}
._9{margin-left:-7.424182pt;}
._b{margin-left:-5.794848pt;}
._2b{margin-left:-4.900986pt;}
._a{margin-left:-3.898949pt;}
._e{margin-left:-2.826699pt;}
._0{margin-left:-1.525333pt;}
._10{width:0.995143pt;}
._2{width:1.944800pt;}
._d{width:3.017733pt;}
._3{width:4.484633pt;}
._c{width:5.491200pt;}
._f{width:6.806247pt;}
._11{width:8.581866pt;}
._5{width:10.217333pt;}
._12{width:11.150770pt;}
._20{width:12.080457pt;}
._14{width:14.264232pt;}
._18{width:15.194198pt;}
._39{width:17.741796pt;}
._1a{width:18.985943pt;}
._17{width:21.500779pt;}
._1b{width:75.621333pt;}
._1c{width:111.114667pt;}
._1e{width:149.073333pt;}
._1f{width:150.410667pt;}
._1d{width:151.787333pt;}
._23{width:156.507040pt;}
._25{width:159.983067pt;}
._24{width:161.912000pt;}
._22{width:167.513166pt;}
._27{width:176.050933pt;}
._28{width:178.167333pt;}
._26{width:179.524000pt;}
._15{width:250.197120pt;}
._21{width:440.394750pt;}
.fs48{font-size:15.333333pt;}
.fs2a{font-size:21.333333pt;}
.fs46{font-size:22.000000pt;}
.fs36{font-size:24.000000pt;}
.fs35{font-size:24.666667pt;}
.fs45{font-size:25.333333pt;}
.fs42{font-size:26.000000pt;}
.fs14{font-size:26.666667pt;}
.fs39{font-size:27.333333pt;}
.fs37{font-size:28.000000pt;}
.fs44{font-size:28.666667pt;}
.fs41{font-size:29.333333pt;}
.fs38{font-size:30.000000pt;}
.fs16{font-size:30.666667pt;}
.fs15{font-size:31.333333pt;}
.fse{font-size:32.000000pt;}
.fs33{font-size:34.000000pt;}
.fs32{font-size:34.666667pt;}
.fs22{font-size:35.333333pt;}
.fsb{font-size:36.000000pt;}
.fs3c{font-size:36.666667pt;}
.fs29{font-size:37.333333pt;}
.fsc{font-size:38.000000pt;}
.fs17{font-size:38.666667pt;}
.fs1f{font-size:39.333333pt;}
.fs2b{font-size:39.430933pt;}
.fs4{font-size:40.000000pt;}
.fs3b{font-size:40.666667pt;}
.fs2f{font-size:41.333333pt;}
.fs1a{font-size:42.000000pt;}
.fs19{font-size:42.666667pt;}
.fs0{font-size:43.333333pt;}
.fs1{font-size:44.000000pt;}
.fs5{font-size:44.666667pt;}
.fs18{font-size:45.333333pt;}
.fsa{font-size:46.000000pt;}
.fsd{font-size:46.666667pt;}
.fs26{font-size:47.333333pt;}
.fs1b{font-size:48.000000pt;}
.fs3e{font-size:48.666667pt;}
.fs1e{font-size:49.333333pt;}
.fs13{font-size:50.000000pt;}
.fs49{font-size:50.544533pt;}
.fsf{font-size:50.666667pt;}
.fs8{font-size:51.333333pt;}
.fs1d{font-size:52.000000pt;}
.fs1c{font-size:52.104000pt;}
.fs6{font-size:52.666667pt;}
.fs9{font-size:53.333333pt;}
.fs7{font-size:54.000000pt;}
.fs12{font-size:54.666667pt;}
.fs11{font-size:55.333333pt;}
.fs25{font-size:56.000000pt;}
.fs10{font-size:57.333333pt;}
.fs2e{font-size:58.666667pt;}
.fs4a{font-size:59.333333pt;}
.fs3f{font-size:60.666667pt;}
.fs27{font-size:61.333333pt;}
.fs47{font-size:64.000000pt;}
.fs3{font-size:64.666667pt;}
.fs3d{font-size:66.000000pt;}
.fs23{font-size:67.333333pt;}
.fs2{font-size:68.000000pt;}
.fs43{font-size:71.333333pt;}
.fs21{font-size:81.333333pt;}
.fs31{font-size:92.666667pt;}
.fs40{font-size:97.333333pt;}
.fs34{font-size:100.000000pt;}
.fs24{font-size:110.666667pt;}
.fs28{font-size:131.333333pt;}
.fs20{font-size:138.666667pt;}
.fs3a{font-size:139.333333pt;}
.fs30{font-size:214.666667pt;}
.fs2c{font-size:352.666667pt;}
.fs2d{font-size:496.000000pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:70.900613pt;}
.y84{bottom:72.181013pt;}
.y136{bottom:72.501680pt;}
.y98{bottom:74.100480pt;}
.y99{bottom:74.101413pt;}
.y18d{bottom:76.021813pt;}
.y4d{bottom:76.335913pt;}
.y1b1{bottom:77.945347pt;}
.ye6{bottom:78.261547pt;}
.y167{bottom:79.540347pt;}
.y53{bottom:80.180480pt;}
.y166{bottom:80.816847pt;}
.y134{bottom:83.381147pt;}
.yc4{bottom:83.695380pt;}
.y135{bottom:85.941680pt;}
.y97{bottom:87.220480pt;}
.y83{bottom:87.534280pt;}
.y18b{bottom:91.370413pt;}
.y18c{bottom:91.380613pt;}
.y4c{bottom:91.701413pt;}
.y1af{bottom:92.976580pt;}
.y1b0{bottom:92.981680pt;}
.y175{bottom:93.616713pt;}
.ye5{bottom:93.621813pt;}
.y133{bottom:94.581280pt;}
.y120{bottom:94.900613pt;}
.y165{bottom:96.180580pt;}
.y11c{bottom:99.055647pt;}
.y11d{bottom:99.062347pt;}
.yc3{bottom:99.065480pt;}
.y122{bottom:99.381680pt;}
.y96{bottom:100.660480pt;}
.y82{bottom:103.215780pt;}
.y52{bottom:106.100880pt;}
.y18a{bottom:106.735913pt;}
.y4b{bottom:107.382613pt;}
.y1ae{bottom:108.342080pt;}
.y174{bottom:108.975647pt;}
.ye4{bottom:108.982213pt;}
.y121{bottom:109.620880pt;}
.y163{bottom:111.856980pt;}
.y164{bottom:111.862080pt;}
.y132{bottom:112.821547pt;}
.yc2{bottom:114.101813pt;}
.y11b{bottom:114.416047pt;}
.y11f{bottom:114.421147pt;}
.y131{bottom:116.981680pt;}
.y81{bottom:118.581280pt;}
.y189{bottom:122.101413pt;}
.y4a{bottom:122.736313pt;}
.y1ad{bottom:123.702480pt;}
.ye3{bottom:124.342613pt;}
.y173{bottom:124.345747pt;}
.y130{bottom:125.621413pt;}
.y162{bottom:127.222480pt;}
.yc1{bottom:129.776313pt;}
.y11a{bottom:129.781547pt;}
.y80{bottom:133.940213pt;}
.y188{bottom:137.461680pt;}
.y49{bottom:138.101813pt;}
.y1ac{bottom:139.061280pt;}
.ye1{bottom:139.380313pt;}
.ye2{bottom:139.382080pt;}
.y12f{bottom:139.701413pt;}
.y161{bottom:142.256847pt;}
.yc0{bottom:145.141813pt;}
.y119{bottom:145.461280pt;}
.y7f{bottom:149.290280pt;}
.y187{bottom:152.815380pt;}
.y12e{bottom:153.141413pt;}
.y48{bottom:153.456980pt;}
.y1ab{bottom:154.421680pt;}
.y172{bottom:154.735913pt;}
.ye0{bottom:155.061813pt;}
.y160{bottom:157.615780pt;}
.y118{bottom:160.181413pt;}
.ybf{bottom:160.495647pt;}
.y7e{bottom:164.655780pt;}
.y186{bottom:168.180880pt;}
.y47{bottom:168.822480pt;}
.y12d{bottom:169.141813pt;}
.y171{bottom:170.096180pt;}
.ydf{bottom:170.422213pt;}
.y15e{bottom:172.976047pt;}
.y15f{bottom:172.981280pt;}
.ybe{bottom:175.855913pt;}
.y117{bottom:176.176713pt;}
.y12a{bottom:178.100880pt;}
.y12c{bottom:179.381147pt;}
.y7d{bottom:180.024547pt;}
.y185{bottom:183.860613pt;}
.y46{bottom:184.503580pt;}
.y95{bottom:185.459580pt;}
.y170{bottom:185.461680pt;}
.yde{bottom:185.782480pt;}
.y15d{bottom:188.341547pt;}
.y24{bottom:190.900613pt;}
.ybd{bottom:191.221413pt;}
.y116{bottom:191.545480pt;}
.y12b{bottom:193.141813pt;}
.y7c{bottom:195.058980pt;}
.y183{bottom:199.215780pt;}
.y184{bottom:199.221013pt;}
.y45{bottom:199.539913pt;}
.y1aa{bottom:200.496047pt;}
.ydd{bottom:201.140980pt;}
.y16f{bottom:201.141413pt;}
.y129{bottom:201.781547pt;}
.y15c{bottom:203.696847pt;}
.y115{bottom:206.581813pt;}
.ybc{bottom:206.896047pt;}
.y94{bottom:208.820080pt;}
.y7b{bottom:210.730147pt;}
.y23{bottom:213.626547pt;}
.y182{bottom:214.576180pt;}
.y43{bottom:215.216313pt;}
.y44{bottom:215.221413pt;}
.y1a9{bottom:215.861547pt;}
.ydb{bottom:216.815913pt;}
.ydc{bottom:216.822480pt;}
.y15b{bottom:219.062347pt;}
.ybb{bottom:222.261547pt;}
.y22{bottom:225.781547pt;}
.y7a{bottom:226.095647pt;}
.y181{bottom:229.941680pt;}
.y42{bottom:230.581813pt;}
.y1a8{bottom:231.221947pt;}
.yda{bottom:232.181413pt;}
.y93{bottom:232.820347pt;}
.y15a{bottom:234.416047pt;}
.y114{bottom:237.616713pt;}
.yba{bottom:237.936047pt;}
.y21{bottom:237.940713pt;}
.y79{bottom:241.461147pt;}
.y180{bottom:245.300180pt;}
.y41{bottom:245.942213pt;}
.y1a7{bottom:246.582347pt;}
.yd9{bottom:247.541813pt;}
.y159{bottom:249.779647pt;}
.y20{bottom:249.781547pt;}
.y92{bottom:251.060347pt;}
.y113{bottom:252.982213pt;}
.yb8{bottom:253.296447pt;}
.yb9{bottom:253.301547pt;}
.y78{bottom:256.820080pt;}
.y90{bottom:260.656847pt;}
.y91{bottom:260.660880pt;}
.y17f{bottom:260.981680pt;}
.y40{bottom:261.302480pt;}
.y1f{bottom:261.940713pt;}
.yd8{bottom:262.896980pt;}
.y158{bottom:265.461147pt;}
.y112{bottom:268.341147pt;}
.yb7{bottom:268.661947pt;}
.y178{bottom:271.861147pt;}
.y76{bottom:272.175247pt;}
.y77{bottom:272.180480pt;}
.y1e{bottom:273.786147pt;}
.y17e{bottom:276.335513pt;}
.y3e{bottom:276.656313pt;}
.y3f{bottom:276.661413pt;}
.yd7{bottom:278.262480pt;}
.y8f{bottom:279.219847pt;}
.y1a6{bottom:279.540413pt;}
.y156{bottom:280.816447pt;}
.y157{bottom:280.821547pt;}
.y111{bottom:283.380313pt;}
.y1d{bottom:285.940713pt;}
.y75{bottom:287.535647pt;}
.y17d{bottom:291.701013pt;}
.y3d{bottom:292.021813pt;}
.yd6{bottom:293.616180pt;}
.y176{bottom:294.261547pt;}
.y177{bottom:295.541813pt;}
.y155{bottom:296.181947pt;}
.y1c{bottom:297.786147pt;}
.y110{bottom:299.061813pt;}
.yb6{bottom:299.381147pt;}
.y8e{bottom:302.580347pt;}
.y74{bottom:302.901147pt;}
.y3c{bottom:307.382080pt;}
.yd5{bottom:308.976580pt;}
.y1b{bottom:309.941147pt;}
.y1a{bottom:309.945880pt;}
.y10f{bottom:314.099513pt;}
.y73{bottom:318.575647pt;}
.y19{bottom:322.100880pt;}
.yd4{bottom:324.336980pt;}
.y8d{bottom:326.581147pt;}
.y154{bottom:327.221947pt;}
.y1a5{bottom:327.862080pt;}
.y10e{bottom:329.781013pt;}
.yb5{bottom:330.101813pt;}
.y72{bottom:333.939380pt;}
.y18{bottom:333.941147pt;}
.y8c{bottom:333.944480pt;}
.y3b{bottom:338.422213pt;}
.yd3{bottom:339.702480pt;}
.y8b{bottom:341.621147pt;}
.y1a4{bottom:343.220580pt;}
.y10d{bottom:345.141413pt;}
.yb4{bottom:345.460313pt;}
.y71{bottom:349.620880pt;}
.y153{bottom:357.941147pt;}
.y17{bottom:358.261947pt;}
.y1a3{bottom:358.902080pt;}
.yb3{bottom:361.141813pt;}
.y70{bottom:364.964380pt;}
.y17c{bottom:368.501280pt;}
.y3a{bottom:369.466080pt;}
.y152{bottom:373.296447pt;}
.y1a2{bottom:374.262480pt;}
.y10c{bottom:376.181413pt;}
.yb2{bottom:376.502213pt;}
.y6f{bottom:380.329880pt;}
.y128{bottom:381.301013pt;}
.y8a{bottom:382.260480pt;}
.y16{bottom:382.261947pt;}
.y151{bottom:388.660047pt;}
.y1a1{bottom:389.616180pt;}
.y89{bottom:389.940747pt;}
.yb1{bottom:392.181947pt;}
.y15{bottom:394.426280pt;}
.y6e{bottom:395.695380pt;}
.yc8{bottom:395.701947pt;}
.y88{bottom:397.301547pt;}
.y150{bottom:404.336447pt;}
.y1a0{bottom:404.981680pt;}
.y14{bottom:406.581280pt;}
.y10b{bottom:406.902080pt;}
.yaf{bottom:407.540447pt;}
.yb0{bottom:407.540880pt;}
.yc7{bottom:409.141813pt;}
.y6d{bottom:411.060880pt;}
.y16e{bottom:413.942213pt;}
.y16d{bottom:418.100880pt;}
.y13{bottom:418.741413pt;}
.y14f{bottom:419.701947pt;}
.y39{bottom:420.342080pt;}
.y19f{bottom:420.661413pt;}
.y10a{bottom:422.580047pt;}
.yae{bottom:423.215380pt;}
.y17b{bottom:423.541280pt;}
.y6c{bottom:426.740480pt;}
.y12{bottom:431.220980pt;}
.y14d{bottom:435.055647pt;}
.y14e{bottom:435.062347pt;}
.y38{bottom:435.702480pt;}
.y19e{bottom:436.021813pt;}
.y109{bottom:438.261547pt;}
.yad{bottom:438.580880pt;}
.y6a{bottom:442.095647pt;}
.y6b{bottom:442.100880pt;}
.y11{bottom:443.060880pt;}
.y14c{bottom:450.420847pt;}
.y37{bottom:451.376980pt;}
.y19d{bottom:451.701413pt;}
.y108{bottom:453.616713pt;}
.yab{bottom:454.255380pt;}
.yac{bottom:454.261947pt;}
.y10{bottom:455.536113pt;}
.y69{bottom:457.454580pt;}
.y14b{bottom:466.102347pt;}
.y36{bottom:466.740713pt;}
.y19c{bottom:467.061813pt;}
.yf{bottom:467.701947pt;}
.y107{bottom:468.982213pt;}
.yaa{bottom:469.620580pt;}
.y68{bottom:472.819780pt;}
.ye{bottom:479.861547pt;}
.y14a{bottom:481.460847pt;}
.y35{bottom:482.422213pt;}
.y19b{bottom:482.741547pt;}
.y106{bottom:484.656713pt;}
.ya9{bottom:485.295380pt;}
.y67{bottom:488.494580pt;}
.yd{bottom:492.021280pt;}
.y149{bottom:497.142347pt;}
.y34{bottom:498.094813pt;}
.y19a{bottom:498.100047pt;}
.y105{bottom:500.020447pt;}
.ya8{bottom:500.657880pt;}
.y66{bottom:503.860080pt;}
.yc{bottom:504.181013pt;}
.y148{bottom:512.501280pt;}
.y33{bottom:513.460313pt;}
.y199{bottom:513.781547pt;}
.y103{bottom:515.696847pt;}
.y104{bottom:515.701947pt;}
.yb{bottom:516.342080pt;}
.y146{bottom:527.859780pt;}
.y147{bottom:527.861547pt;}
.ya{bottom:528.181013pt;}
.y32{bottom:529.141813pt;}
.y198{bottom:529.461147pt;}
.y1c2{bottom:529.780613pt;}
.y102{bottom:531.062347pt;}
.y65{bottom:534.900213pt;}
.y144{bottom:543.536180pt;}
.y145{bottom:543.541280pt;}
.y31{bottom:544.821547pt;}
.y1c1{bottom:545.461680pt;}
.y101{bottom:546.736847pt;}
.y143{bottom:558.901680pt;}
.y30{bottom:560.181947pt;}
.y197{bottom:560.496047pt;}
.y1c0{bottom:561.141413pt;}
.y100{bottom:562.098680pt;}
.y64{bottom:565.939913pt;}
.y141{bottom:574.580980pt;}
.y142{bottom:574.581280pt;}
.y196{bottom:575.859780pt;}
.y2f{bottom:575.861547pt;}
.y1bf{bottom:576.821013pt;}
.yff{bottom:577.780180pt;}
.y9{bottom:580.345280pt;}
.y63{bottom:581.621413pt;}
.ya7{bottom:582.575647pt;}
.yf3{bottom:583.862613pt;}
.y16c{bottom:584.501280pt;}
.y17a{bottom:588.340613pt;}
.y140{bottom:590.262480pt;}
.y8{bottom:591.221947pt;}
.y2e{bottom:591.536180pt;}
.y195{bottom:591.541280pt;}
.y1be{bottom:592.181413pt;}
.y1bd{bottom:592.187647pt;}
.yfe{bottom:593.456580pt;}
.yf2{bottom:595.701413pt;}
.y62{bottom:596.975113pt;}
.ya6{bottom:597.941147pt;}
.y7{bottom:602.101413pt;}
.y16b{bottom:602.741547pt;}
.y16a{bottom:603.701013pt;}
.y13f{bottom:605.619513pt;}
.yd2{bottom:606.261547pt;}
.y2d{bottom:606.901680pt;}
.y194{bottom:607.215780pt;}
.yf1{bottom:607.541813pt;}
.y1bc{bottom:607.861147pt;}
.yfd{bottom:608.822080pt;}
.y127{bottom:609.141413pt;}
.y60{bottom:612.338847pt;}
.y61{bottom:612.340613pt;}
.ya5{bottom:613.620880pt;}
.y126{bottom:618.101813pt;}
.y13e{bottom:621.301013pt;}
.y2c{bottom:622.580980pt;}
.y1bb{bottom:623.540880pt;}
.y6{bottom:623.861547pt;}
.yfc{bottom:624.501680pt;}
.y5f{bottom:628.020347pt;}
.ya4{bottom:628.976047pt;}
.yf0{bottom:630.582347pt;}
.y13d{bottom:636.661413pt;}
.yd1{bottom:636.982213pt;}
.yef{bottom:637.941680pt;}
.y193{bottom:638.255913pt;}
.y2b{bottom:638.260713pt;}
.y1ba{bottom:638.901147pt;}
.yfb{bottom:639.862080pt;}
.y5{bottom:640.181413pt;}
.yee{bottom:642.421147pt;}
.y5e{bottom:643.378847pt;}
.ya3{bottom:644.344580pt;}
.yd0{bottom:653.621413pt;}
.y2a{bottom:653.940313pt;}
.y11e{bottom:654.261547pt;}
.y1b9{bottom:654.580880pt;}
.yfa{bottom:655.541813pt;}
.yed{bottom:656.822080pt;}
.y5d{bottom:659.055247pt;}
.ycf{bottom:659.382613pt;}
.ya2{bottom:660.342080pt;}
.yce{bottom:665.782480pt;}
.yec{bottom:666.741947pt;}
.y13c{bottom:667.701413pt;}
.y192{bottom:669.295913pt;}
.y29{bottom:669.621813pt;}
.y1b8{bottom:669.941147pt;}
.yf9{bottom:670.900313pt;}
.y5c{bottom:674.420747pt;}
.ya1{bottom:675.701013pt;}
.ycd{bottom:677.942213pt;}
.yeb{bottom:679.222480pt;}
.y191{bottom:684.659647pt;}
.y28{bottom:684.980447pt;}
.ycc{bottom:684.982213pt;}
.y1b7{bottom:685.620880pt;}
.y1b6{bottom:685.627113pt;}
.yf8{bottom:686.576713pt;}
.yea{bottom:687.221947pt;}
.ycb{bottom:688.181413pt;}
.y51{bottom:689.461680pt;}
.y5b{bottom:690.100347pt;}
.ya0{bottom:691.059513pt;}
.yca{bottom:698.422213pt;}
.y13b{bottom:699.062347pt;}
.y190{bottom:700.341147pt;}
.y27{bottom:700.660047pt;}
.y1b5{bottom:701.300613pt;}
.ye9{bottom:701.302080pt;}
.y50{bottom:701.940747pt;}
.yf7{bottom:701.951713pt;}
.y4{bottom:705.141280pt;}
.ye8{bottom:705.141413pt;}
.y5a{bottom:705.460747pt;}
.y9f{bottom:706.735913pt;}
.y179{bottom:710.261013pt;}
.y13a{bottom:714.736480pt;}
.y18f{bottom:715.701413pt;}
.y26{bottom:716.341547pt;}
.y1b4{bottom:716.660880pt;}
.y1b3{bottom:716.667113pt;}
.yf6{bottom:717.304047pt;}
.y125{bottom:718.261947pt;}
.y59{bottom:720.821147pt;}
.ye7{bottom:721.141813pt;}
.y3{bottom:721.461280pt;}
.y9e{bottom:722.099513pt;}
.y124{bottom:727.221013pt;}
.yc9{bottom:729.141413pt;}
.y169{bottom:731.701947pt;}
.y1b2{bottom:732.340613pt;}
.yf5{bottom:733.301547pt;}
.y57{bottom:736.495647pt;}
.y58{bottom:736.500747pt;}
.y4f{bottom:737.140880pt;}
.y9d{bottom:737.780713pt;}
.y2{bottom:737.781013pt;}
.y139{bottom:748.021813pt;}
.yf4{bottom:748.661947pt;}
.y18e{bottom:748.981280pt;}
.y56{bottom:751.861147pt;}
.y9c{bottom:753.462213pt;}
.y87{bottom:758.901147pt;}
.y1{bottom:772.661947pt;}
.y138{bottom:779.381147pt;}
.y137{bottom:780.342080pt;}
.yc6{bottom:780.661413pt;}
.y4e{bottom:780.980747pt;}
.y168{bottom:781.301547pt;}
.yc5{bottom:781.622347pt;}
.y54{bottom:781.940213pt;}
.y25{bottom:782.262480pt;}
.y55{bottom:782.901147pt;}
.y85{bottom:783.541280pt;}
.y86{bottom:784.500747pt;}
.y9a{bottom:785.140880pt;}
.y9b{bottom:785.781013pt;}
.h8f{height:15.992187pt;}
.h57{height:22.250000pt;}
.h8d{height:22.945312pt;}
.h72{height:25.031250pt;}
.h71{height:25.726562pt;}
.h6f{height:26.171875pt;}
.h8c{height:26.421875pt;}
.h84{height:27.117188pt;}
.h7a{height:27.546875pt;}
.h73{height:27.671875pt;}
.h35{height:27.812500pt;}
.h8a{height:28.218750pt;}
.h76{height:28.507812pt;}
.h89{height:28.890625pt;}
.h88{height:29.203125pt;}
.h83{height:29.562500pt;}
.h8b{height:29.898438pt;}
.h37{height:30.097656pt;}
.h75{height:30.234375pt;}
.h36{height:30.751953pt;}
.h85{height:30.966146pt;}
.h58{height:31.406250pt;}
.h51{height:31.984375pt;}
.h6d{height:33.352539pt;}
.h26{height:33.375000pt;}
.h74{height:34.006510pt;}
.h6a{height:34.023438pt;}
.h6e{height:34.265625pt;}
.h4b{height:34.919271pt;}
.h4d{height:35.314453pt;}
.h79{height:36.236979pt;}
.h56{height:36.640625pt;}
.h38{height:37.294922pt;}
.h22{height:37.546875pt;}
.h39{height:37.949219pt;}
.h23{height:38.296875pt;}
.h48{height:38.603516pt;}
.h59{height:38.699305pt;}
.h94{height:39.257812pt;}
.h95{height:39.912109pt;}
.h7f{height:40.546224pt;}
.h6b{height:40.566406pt;}
.h3c{height:41.200195pt;}
.h9{height:41.718750pt;}
.h3b{height:41.854167pt;}
.h78{height:42.414062pt;}
.h2{height:42.508138pt;}
.h4{height:42.529297pt;}
.hc{height:42.531030pt;}
.hb{height:42.533030pt;}
.ha{height:42.548364pt;}
.h47{height:43.000000pt;}
.h91{height:43.109375pt;}
.h3{height:43.162109pt;}
.h25{height:43.671875pt;}
.h6c{height:43.804688pt;}
.h3d{height:43.816081pt;}
.h10{height:43.837891pt;}
.h66{height:44.470052pt;}
.h3a{height:44.802083pt;}
.hd{height:45.015625pt;}
.h52{height:45.195312pt;}
.h4e{height:45.460938pt;}
.h2a{height:45.800781pt;}
.h80{height:46.778646pt;}
.h40{height:47.109375pt;}
.h21{height:47.976562pt;}
.h46{height:48.417969pt;}
.h24{height:48.671875pt;}
.h34{height:49.072266pt;}
.h53{height:49.367188pt;}
.h90{height:49.606695pt;}
.h29{height:49.726562pt;}
.h19{height:50.380859pt;}
.h7c{height:50.757812pt;}
.h44{height:51.009766pt;}
.h63{height:51.035156pt;}
.h41{height:51.137227pt;}
.h97{height:51.663737pt;}
.h98{height:51.684670pt;}
.h11{height:51.689453pt;}
.h14{height:51.690653pt;}
.h43{height:51.691186pt;}
.h13{height:51.696520pt;}
.h12{height:51.697053pt;}
.h42{height:51.701453pt;}
.h62{height:51.704120pt;}
.h15{height:51.709853pt;}
.h1c{height:51.710386pt;}
.h7d{height:51.711320pt;}
.h2e{height:51.715720pt;}
.h1d{height:51.716253pt;}
.h17{height:51.717453pt;}
.h96{height:51.730253pt;}
.h31{height:51.730786pt;}
.h30{height:51.757053pt;}
.h5c{height:52.148438pt;}
.h1a{height:52.343750pt;}
.h61{height:52.708333pt;}
.h45{height:52.843750pt;}
.h18{height:52.971680pt;}
.h16{height:52.998047pt;}
.h20{height:53.539062pt;}
.h2d{height:53.625651pt;}
.h2f{height:53.652344pt;}
.h1b{height:53.750000pt;}
.h93{height:54.234375pt;}
.h2c{height:54.306641pt;}
.h99{height:54.421875pt;}
.h50{height:54.960938pt;}
.h5e{height:55.625000pt;}
.h92{height:58.232422pt;}
.h2b{height:59.796875pt;}
.h5d{height:61.187500pt;}
.h81{height:63.273438pt;}
.h7{height:63.466797pt;}
.h67{height:63.605873pt;}
.h54{height:63.968750pt;}
.h8{height:66.738281pt;}
.h8e{height:66.750000pt;}
.h4c{height:67.859375pt;}
.h5{height:68.531250pt;}
.h6{height:68.531783pt;}
.h7b{height:68.835938pt;}
.h86{height:70.921875pt;}
.h87{height:74.398438pt;}
.h4a{height:84.828125pt;}
.h69{height:96.648438pt;}
.h82{height:101.515625pt;}
.h70{height:104.296875pt;}
.h4f{height:115.421875pt;}
.h55{height:136.976562pt;}
.h49{height:144.625000pt;}
.h77{height:145.320312pt;}
.h68{height:223.890625pt;}
.h5a{height:346.123047pt;}
.h5b{height:517.312500pt;}
.h1f{height:852.666667pt;}
.h1e{height:852.842747pt;}
.h65{height:854.000000pt;}
.h64{height:854.122747pt;}
.h1{height:854.666667pt;}
.h0{height:854.762747pt;}
.h33{height:855.333333pt;}
.h32{height:855.402747pt;}
.h27{height:855.722747pt;}
.h28{height:856.000000pt;}
.h7e{height:856.042747pt;}
.h60{height:856.666667pt;}
.h5f{height:856.682747pt;}
.he{height:857.322747pt;}
.hf{height:857.333333pt;}
.h3e{height:858.604080pt;}
.h3f{height:858.666667pt;}
.wd{width:569.322747pt;}
.we{width:569.333333pt;}
.wf{width:569.962747pt;}
.w10{width:570.000000pt;}
.w2{width:570.601413pt;}
.w3{width:570.666667pt;}
.w0{width:571.242747pt;}
.w4{width:571.243800pt;}
.w1{width:571.333333pt;}
.wb{width:571.882747pt;}
.wc{width:572.000000pt;}
.w7{width:572.524080pt;}
.w8{width:572.666667pt;}
.w5{width:573.802747pt;}
.w6{width:574.000000pt;}
.w9{width:576.362747pt;}
.wa{width:576.666667pt;}
.x0{left:0.000000pt;}
.x89{left:50.741547pt;}
.xb0{left:52.981280pt;}
.xad{left:53.940947pt;}
.x87{left:55.221013pt;}
.x5a{left:59.701947pt;}
.xcf{left:60.982213pt;}
.x2f{left:63.862080pt;}
.x13{left:64.821547pt;}
.x16{left:65.776080pt;}
.x41{left:66.741947pt;}
.xc{left:68.341547pt;}
.x4{left:69.621813pt;}
.x27{left:71.221400pt;}
.x30{left:75.060880pt;}
.x81{left:76.021813pt;}
.x86{left:76.981280pt;}
.xb5{left:77.940747pt;}
.xbf{left:79.862613pt;}
.x8a{left:81.781547pt;}
.x1c{left:83.381147pt;}
.xb{left:84.661413pt;}
.xaa{left:86.901147pt;}
.x88{left:88.821547pt;}
.xe7{left:89.782480pt;}
.x56{left:93.301013pt;}
.x5b{left:94.902080pt;}
.x6{left:96.181013pt;}
.x31{left:100.021813pt;}
.x1e{left:101.302067pt;}
.x28{left:105.141400pt;}
.xd{left:106.421680pt;}
.x5c{left:107.381147pt;}
.xd6{left:109.301547pt;}
.x93{left:110.261013pt;}
.x42{left:113.461680pt;}
.x29{left:115.701400pt;}
.x46{left:118.261947pt;}
.x4b{left:120.182347pt;}
.xe8{left:122.741547pt;}
.x11{left:123.701013pt;}
.xc0{left:124.982747pt;}
.x2a{left:127.221013pt;}
.x12{left:128.501280pt;}
.x32{left:129.460747pt;}
.x47{left:132.022747pt;}
.x20{left:133.941667pt;}
.x33{left:139.701413pt;}
.xe{left:141.301013pt;}
.x69{left:143.221413pt;}
.x3d{left:148.021813pt;}
.x40{left:148.982747pt;}
.xda{left:152.181947pt;}
.x18{left:153.141413pt;}
.xe9{left:154.102347pt;}
.xdb{left:156.342080pt;}
.xe0{left:157.941680pt;}
.xae{left:158.901147pt;}
.x76{left:162.741947pt;}
.x14{left:165.301013pt;}
.xbe{left:166.581280pt;}
.xaf{left:169.141813pt;}
.x1b{left:170.101413pt;}
.xe1{left:171.062347pt;}
.x77{left:172.021813pt;}
.xe3{left:173.621413pt;}
.xe2{left:175.862613pt;}
.x15{left:176.822080pt;}
.x19{left:178.741013pt;}
.x80{left:179.701947pt;}
.xc7{left:180.661413pt;}
.x17{left:181.607747pt;}
.xc2{left:183.862080pt;}
.x6f{left:185.461680pt;}
.x7d{left:186.421147pt;}
.x2e{left:189.301013pt;}
.x78{left:190.261947pt;}
.x50{left:192.822480pt;}
.xd9{left:195.060880pt;}
.xea{left:196.661947pt;}
.x4e{left:197.942213pt;}
.x21{left:199.222467pt;}
.x4c{left:202.742480pt;}
.x22{left:205.941667pt;}
.x3e{left:207.542747pt;}
.x6c{left:208.821547pt;}
.x9{left:209.781013pt;}
.x4f{left:211.701413pt;}
.x83{left:212.660880pt;}
.x3f{left:214.902080pt;}
.xc1{left:216.822480pt;}
.x39{left:218.101413pt;}
.xa7{left:219.381680pt;}
.xa{left:221.621413pt;}
.x55{left:223.541813pt;}
.x3c{left:224.820247pt;}
.x5{left:228.661413pt;}
.x85{left:229.620880pt;}
.x48{left:230.581813pt;}
.x26{left:232.821533pt;}
.xd7{left:235.382080pt;}
.x79{left:237.621813pt;}
.xdd{left:239.542213pt;}
.xb3{left:240.821013pt;}
.x3a{left:241.782080pt;}
.x94{left:244.661947pt;}
.x70{left:245.621413pt;}
.x7e{left:247.541813pt;}
.xa3{left:248.501280pt;}
.xd0{left:250.102347pt;}
.x3b{left:251.061813pt;}
.xde{left:252.022747pt;}
.x61{left:253.301547pt;}
.xe4{left:254.262480pt;}
.x6b{left:255.541280pt;}
.x51{left:258.741947pt;}
.x6d{left:260.020747pt;}
.x23{left:261.942600pt;}
.x62{left:263.861547pt;}
.x43{left:267.381680pt;}
.x52{left:271.541813pt;}
.x71{left:272.822080pt;}
.xb1{left:273.781547pt;}
.x7{left:276.661413pt;}
.x6a{left:279.541280pt;}
.x53{left:280.502213pt;}
.x82{left:282.101813pt;}
.xb2{left:283.701413pt;}
.x7f{left:285.301013pt;}
.x49{left:288.822480pt;}
.x44{left:290.101413pt;}
.x6e{left:291.381680pt;}
.x54{left:293.942213pt;}
.x72{left:297.460747pt;}
.x45{left:299.382613pt;}
.x73{left:300.342080pt;}
.xdf{left:301.301547pt;}
.x8{left:302.901147pt;}
.xb4{left:307.061280pt;}
.x4d{left:309.621813pt;}
.x95{left:319.541813pt;}
.xd5{left:320.822080pt;}
.x64{left:322.421680pt;}
.xc9{left:323.382613pt;}
.xc3{left:324.982213pt;}
.x68{left:325.941680pt;}
.x8b{left:328.181413pt;}
.x1{left:329.461680pt;}
.x7a{left:332.660880pt;}
.x74{left:334.581280pt;}
.xca{left:340.982747pt;}
.xc4{left:342.261547pt;}
.xb6{left:344.181947pt;}
.xcd{left:345.462213pt;}
.x96{left:347.061813pt;}
.x97{left:350.901147pt;}
.x8f{left:354.421147pt;}
.xd8{left:355.382080pt;}
.x7b{left:356.660880pt;}
.x1d{left:357.621813pt;}
.xbb{left:358.581280pt;}
.xbd{left:361.461147pt;}
.xcb{left:363.381680pt;}
.x90{left:364.341147pt;}
.x84{left:365.302080pt;}
.x9a{left:367.221013pt;}
.x91{left:368.822080pt;}
.x5e{left:371.061813pt;}
.xce{left:372.982213pt;}
.xbc{left:374.581813pt;}
.x2{left:377.781013pt;}
.x7c{left:380.341547pt;}
.xc5{left:381.302480pt;}
.x92{left:383.221413pt;}
.xa8{left:384.181013pt;}
.x65{left:386.420747pt;}
.x66{left:389.940747pt;}
.x5f{left:390.901680pt;}
.x5d{left:392.822080pt;}
.x67{left:393.781547pt;}
.x2b{left:395.701947pt;}
.x24{left:396.982200pt;}
.xdc{left:399.221947pt;}
.x75{left:400.181413pt;}
.x25{left:402.741933pt;}
.x9f{left:403.701413pt;}
.xcc{left:404.981680pt;}
.xc6{left:406.261947pt;}
.xe5{left:407.221413pt;}
.xb7{left:411.381680pt;}
.x2c{left:412.661947pt;}
.x8c{left:413.621413pt;}
.xe6{left:417.781547pt;}
.xab{left:421.301547pt;}
.xd2{left:422.262480pt;}
.xb8{left:424.500747pt;}
.x57{left:427.382080pt;}
.x36{left:429.942613pt;}
.xb9{left:434.101413pt;}
.x3{left:435.060880pt;}
.x9b{left:436.341147pt;}
.x8d{left:439.861147pt;}
.x98{left:442.421680pt;}
.xba{left:444.021280pt;}
.x9c{left:444.980747pt;}
.xf{left:447.862080pt;}
.x8e{left:449.781013pt;}
.xd3{left:450.741947pt;}
.x60{left:453.941147pt;}
.xc8{left:454.902213pt;}
.x99{left:455.861547pt;}
.x10{left:456.821013pt;}
.xd4{left:457.782080pt;}
.x2d{left:460.341147pt;}
.xa9{left:462.261547pt;}
.x4a{left:465.462213pt;}
.x9d{left:468.661413pt;}
.xa4{left:474.421147pt;}
.x9e{left:478.261947pt;}
.x63{left:479.221413pt;}
.xac{left:480.501680pt;}
.x34{left:481.782080pt;}
.xa0{left:484.661947pt;}
.x58{left:486.580880pt;}
.xa5{left:487.541813pt;}
.x37{left:489.462213pt;}
.xa6{left:490.741013pt;}
.x35{left:492.021280pt;}
.x59{left:493.620880pt;}
.x1f{left:494.902600pt;}
.x1a{left:496.500747pt;}
.xd1{left:497.461680pt;}
.xa1{left:499.701413pt;}
.x38{left:500.662347pt;}
.xa2{left:508.341147pt;}
}




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