
    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_ec600af3dcb38a4372f3c27e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;font-style:normal;font-weight: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_aa7c118049cc1c27a3a9a933.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;font-style:normal;font-weight: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_77e8afc4299a666c0cecb1b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight: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_54b1944e65d09c33b94f1775.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;font-style:normal;font-weight: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_edb8d9329b4d3e60f05c7fff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;font-style:normal;font-weight: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_47e1e27ef562383362d040cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight: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_a69bbe9dc6924c4391bf3522.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113281;font-style:normal;font-weight: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_6bea6fd5e14cda11c1d29c69.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight: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_1ecddaae6608907c45decd00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904297;font-style:normal;font-weight: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_489d76e21111b719548c0a14.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;font-style:normal;font-weight: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_fa0183b2af8fb8d90924ea4a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.133301;font-style:normal;font-weight: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_f2b94df9a2a47154e5f15fae.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;font-style:normal;font-weight: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_e40080a0dedf3496eda2207a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.970215;font-style:normal;font-weight: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_81b843dbb3cea57209859dd4.woff2')format("woff");}.fff{font-family:fff;line-height:1.133301;font-style:normal;font-weight: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_8262832e32093d0af3e55612.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.106934;font-style:normal;font-weight: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_e40080a0dedf3496eda2207a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.970215;font-style:normal;font-weight: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_ae1e88224866517cd65439c8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.133301;font-style:normal;font-weight: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_90ef9ffaa5bee4cbe7c3834d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.106934;font-style:normal;font-weight: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_5cd2c1fd31795116c5f3346b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.970215;font-style:normal;font-weight: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_fd892442e444926d8c62cf78.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.133301;font-style:normal;font-weight: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_9c3c89142fd04ce97d907ca2.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.106934;font-style:normal;font-weight: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_5cd2c1fd31795116c5f3346b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.970215;font-style:normal;font-weight: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_e49214099e0aec4f4a2e3bad.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.133301;font-style:normal;font-weight: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_acb3d518f8b6e5db8c27c9c2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.106934;font-style:normal;font-weight: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_5cd2c1fd31795116c5f3346b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.970215;font-style:normal;font-weight: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_46e8530c01ba59c92870c6d1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.133301;font-style:normal;font-weight: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_8262832e32093d0af3e55612.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.106934;font-style:normal;font-weight: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_5cd2c1fd31795116c5f3346b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.970215;font-style:normal;font-weight: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_b8f52df0206a2c7d5a7958c8.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.133301;font-style:normal;font-weight: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_d2bc7f66824f054235f7e1f8.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.106934;font-style:normal;font-weight: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_9b4d62fb0b28a4a92535daa3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.937988;font-style:normal;font-weight: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_5cd2c1fd31795116c5f3346b.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.970215;font-style:normal;font-weight: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_6092cb4dfd6dfecc04ca5331.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.133301;font-style:normal;font-weight: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_4e8796e8cfc9386fcfbe7cf9.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.106934;font-style:normal;font-weight: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_5cd2c1fd31795116c5f3346b.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.970215;font-style:normal;font-weight: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_f3810c750a0d340942289536.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.133301;font-style:normal;font-weight: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_b6bc67117df3d3045a95301f.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.106934;font-style:normal;font-weight: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_b7902f675b708fb68d57730f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.970215;font-style:normal;font-weight: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_ad2b8ea199329aee038e4fa8.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.133301;font-style:normal;font-weight: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_8e9c4ae17b6cfc47e0acd2a8.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.106934;font-style:normal;font-weight: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_b7902f675b708fb68d57730f.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.970215;font-style:normal;font-weight: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_5923a0ba497381475f536703.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.133301;font-style:normal;font-weight: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_9e973ada0e8b77918e66b66a.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.106934;font-style:normal;font-weight: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_b7902f675b708fb68d57730f.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.970215;font-style:normal;font-weight: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_6be2e6d70f9a5811d630abf7.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.133301;font-style:normal;font-weight: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_a13185b43e99a42032164654.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.106934;font-style:normal;font-weight: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_b7902f675b708fb68d57730f.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.970215;font-style:normal;font-weight: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_4b3dcd5b495c8baf47dd97df.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.133301;font-style:normal;font-weight: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_babac0ba8eabcaaa05a16741.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.106934;font-style:normal;font-weight: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_b7902f675b708fb68d57730f.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.970215;font-style:normal;font-weight: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_f8cc3c76c288d213ecb67249.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.133301;font-style:normal;font-weight: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_633f780d526544f256773c5e.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.106934;font-style:normal;font-weight: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_12c035f391962e43d0f060ef.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.106934;font-style:normal;font-weight: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_7f43cd29bbde9ed3c09dfa57.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.970215;font-style:normal;font-weight: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_f19b63c313daed725adfafe4.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.133301;font-style:normal;font-weight: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_34ce550f4691352949d27743.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.106934;font-style:normal;font-weight: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_9b4d62fb0b28a4a92535daa3.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.937988;font-style:normal;font-weight: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_7f43cd29bbde9ed3c09dfa57.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.970215;font-style:normal;font-weight: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_56b4942634f79a4a0cf82017.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.133301;font-style:normal;font-weight: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_76d3ae6559698c3deda76d23.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.106934;font-style:normal;font-weight: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_9b4d62fb0b28a4a92535daa3.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_7f43cd29bbde9ed3c09dfa57.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m24{transform:matrix(-0.003724,-0.250047,0.249972,-0.003723,0,0);-ms-transform:matrix(-0.003724,-0.250047,0.249972,-0.003723,0,0);-webkit-transform:matrix(-0.003724,-0.250047,0.249972,-0.003723,0,0);}
.m2{transform:matrix(0.000000,-0.250075,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250075,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250075,0.250000,0.000000,0,0);}
.m4a{transform:matrix(0.000000,-0.250085,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250085,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250085,0.250000,0.000000,0,0);}
.m6d{transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);}
.m49{transform:matrix(0.000000,-0.250108,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250108,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250108,0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.033291,-0.247849,0.247775,0.033281,0,0);-ms-transform:matrix(0.033291,-0.247849,0.247775,0.033281,0,0);-webkit-transform:matrix(0.033291,-0.247849,0.247775,0.033281,0,0);}
.m68{transform:matrix(0.033533,-0.247796,0.247742,0.033526,0,0);-ms-transform:matrix(0.033533,-0.247796,0.247742,0.033526,0,0);-webkit-transform:matrix(0.033533,-0.247796,0.247742,0.033526,0,0);}
.m2f{transform:matrix(0.064727,-0.241564,0.241481,0.064705,0,0);-ms-transform:matrix(0.064727,-0.241564,0.241481,0.064705,0,0);-webkit-transform:matrix(0.064727,-0.241564,0.241481,0.064705,0,0);}
.m34{transform:matrix(0.095138,0.231271,-0.231202,0.095109,0,0);-ms-transform:matrix(0.095138,0.231271,-0.231202,0.095109,0,0);-webkit-transform:matrix(0.095138,0.231271,-0.231202,0.095109,0,0);}
.m2e{transform:matrix(0.095347,0.231196,-0.231117,0.095315,0,0);-ms-transform:matrix(0.095347,0.231196,-0.231117,0.095315,0,0);-webkit-transform:matrix(0.095347,0.231196,-0.231117,0.095315,0,0);}
.m3b{transform:matrix(0.098079,-0.230039,0.229970,0.098050,0,0);-ms-transform:matrix(0.098079,-0.230039,0.229970,0.098050,0,0);-webkit-transform:matrix(0.098079,-0.230039,0.229970,0.098050,0,0);}
.m30{transform:matrix(0.125042,0.216580,-0.216506,0.125000,0,0);-ms-transform:matrix(0.125042,0.216580,-0.216506,0.125000,0,0);-webkit-transform:matrix(0.125042,0.216580,-0.216506,0.125000,0,0);}
.m5{transform:matrix(0.125045,0.216584,-0.216506,0.125000,0,0);-ms-transform:matrix(0.125045,0.216584,-0.216506,0.125000,0,0);-webkit-transform:matrix(0.125045,0.216584,-0.216506,0.125000,0,0);}
.m32{transform:matrix(0.145400,0.203473,-0.203404,0.145351,0,0);-ms-transform:matrix(0.145400,0.203473,-0.203404,0.145351,0,0);-webkit-transform:matrix(0.145400,0.203473,-0.203404,0.145351,0,0);}
.m4b{transform:matrix(0.157549,0.194205,-0.194147,0.157502,0,0);-ms-transform:matrix(0.157549,0.194205,-0.194147,0.157502,0,0);-webkit-transform:matrix(0.157549,0.194205,-0.194147,0.157502,0,0);}
.m72{transform:matrix(0.158570,0.193373,-0.193315,0.158523,0,0);-ms-transform:matrix(0.158570,0.193373,-0.193315,0.158523,0,0);-webkit-transform:matrix(0.158570,0.193373,-0.193315,0.158523,0,0);}
.m71{transform:matrix(0.166959,-0.186191,0.186128,0.166902,0,0);-ms-transform:matrix(0.166959,-0.186191,0.186128,0.166902,0,0);-webkit-transform:matrix(0.166959,-0.186191,0.186128,0.166902,0,0);}
.m67{transform:matrix(0.169211,-0.184134,0.184078,0.169160,0,0);-ms-transform:matrix(0.169211,-0.184134,0.184078,0.169160,0,0);-webkit-transform:matrix(0.169211,-0.184134,0.184078,0.169160,0,0);}
.m27{transform:matrix(0.176830,0.176830,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176830,0.176830,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176830,0.176830,-0.176777,0.176777,0,0);}
.m4d{transform:matrix(0.176830,-0.176830,0.176777,0.176777,0,0);-ms-transform:matrix(0.176830,-0.176830,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176830,-0.176830,0.176777,0.176777,0,0);}
.m36{transform:matrix(0.176837,-0.176837,0.176777,0.176777,0,0);-ms-transform:matrix(0.176837,-0.176837,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176837,-0.176837,0.176777,0.176777,0,0);}
.m8{transform:matrix(0.176839,0.176839,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176839,0.176839,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176839,0.176839,-0.176777,0.176777,0,0);}
.m59{transform:matrix(0.176839,-0.176839,0.176777,0.176777,0,0);-ms-transform:matrix(0.176839,-0.176839,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176839,-0.176839,0.176777,0.176777,0,0);}
.m3a{transform:matrix(0.176840,0.176840,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176840,0.176840,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176840,0.176840,-0.176777,0.176777,0,0);}
.m4{transform:matrix(0.176840,-0.176840,0.176777,0.176777,0,0);-ms-transform:matrix(0.176840,-0.176840,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176840,-0.176840,0.176777,0.176777,0,0);}
.m4c{transform:matrix(0.176853,-0.176853,0.176777,0.176777,0,0);-ms-transform:matrix(0.176853,-0.176853,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176853,-0.176853,0.176777,0.176777,0,0);}
.m57{transform:matrix(0.193690,-0.158199,0.158145,0.193624,0,0);-ms-transform:matrix(0.193690,-0.158199,0.158145,0.193624,0,0);-webkit-transform:matrix(0.193690,-0.158199,0.158145,0.193624,0,0);}
.m3c{transform:matrix(0.196559,-0.154603,0.154557,0.196500,0,0);-ms-transform:matrix(0.196559,-0.154603,0.154557,0.196500,0,0);-webkit-transform:matrix(0.196559,-0.154603,0.154557,0.196500,0,0);}
.m44{transform:matrix(0.197997,0.152736,-0.152698,0.197948,0,0);-ms-transform:matrix(0.197997,0.152736,-0.152698,0.197948,0,0);-webkit-transform:matrix(0.197997,0.152736,-0.152698,0.197948,0,0);}
.m43{transform:matrix(0.206687,0.140802,-0.140752,0.206613,0,0);-ms-transform:matrix(0.206687,0.140802,-0.140752,0.206613,0,0);-webkit-transform:matrix(0.206687,0.140802,-0.140752,0.206613,0,0);}
.m6c{transform:matrix(0.216571,0.125037,-0.125000,0.216506,0,0);-ms-transform:matrix(0.216571,0.125037,-0.125000,0.216506,0,0);-webkit-transform:matrix(0.216571,0.125037,-0.125000,0.216506,0,0);}
.m42{transform:matrix(0.216580,0.125042,-0.125000,0.216506,0,0);-ms-transform:matrix(0.216580,0.125042,-0.125000,0.216506,0,0);-webkit-transform:matrix(0.216580,0.125042,-0.125000,0.216506,0,0);}
.m58{transform:matrix(0.216580,-0.125042,0.125000,0.216506,0,0);-ms-transform:matrix(0.216580,-0.125042,0.125000,0.216506,0,0);-webkit-transform:matrix(0.216580,-0.125042,0.125000,0.216506,0,0);}
.m3d{transform:matrix(0.216582,0.125044,-0.125000,0.216506,0,0);-ms-transform:matrix(0.216582,0.125044,-0.125000,0.216506,0,0);-webkit-transform:matrix(0.216582,0.125044,-0.125000,0.216506,0,0);}
.m26{transform:matrix(0.216584,0.125045,-0.125000,0.216506,0,0);-ms-transform:matrix(0.216584,0.125045,-0.125000,0.216506,0,0);-webkit-transform:matrix(0.216584,0.125045,-0.125000,0.216506,0,0);}
.mb{transform:matrix(0.216584,-0.125045,0.125000,0.216506,0,0);-ms-transform:matrix(0.216584,-0.125045,0.125000,0.216506,0,0);-webkit-transform:matrix(0.216584,-0.125045,0.125000,0.216506,0,0);}
.m6{transform:matrix(0.225896,-0.107313,0.107274,0.225815,0,0);-ms-transform:matrix(0.225896,-0.107313,0.107274,0.225815,0,0);-webkit-transform:matrix(0.225896,-0.107313,0.107274,0.225815,0,0);}
.m5f{transform:matrix(0.229419,0.099521,-0.099491,0.229350,0,0);-ms-transform:matrix(0.229419,0.099521,-0.099491,0.229350,0,0);-webkit-transform:matrix(0.229419,0.099521,-0.099491,0.229350,0,0);}
.m33{transform:matrix(0.229929,0.098337,-0.098307,0.229860,0,0);-ms-transform:matrix(0.229929,0.098337,-0.098307,0.229860,0,0);-webkit-transform:matrix(0.229929,0.098337,-0.098307,0.229860,0,0);}
.m3f{transform:matrix(0.231602,-0.094370,0.094336,0.231518,0,0);-ms-transform:matrix(0.231602,-0.094370,0.094336,0.231518,0,0);-webkit-transform:matrix(0.231602,-0.094370,0.094336,0.231518,0,0);}
.m4e{transform:matrix(0.232626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232626,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.233329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233329,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.237248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237248,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237264,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.237341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237341,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.237373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237373,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.237404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237404,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.237904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237904,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.239067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239067,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.239106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239106,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.239223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239223,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.239262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239262,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.239301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239301,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.239886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239886,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.241554,0.064724,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241554,0.064724,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241554,0.064724,-0.064705,0.241481,0,0);}
.m66{transform:matrix(0.241987,-0.063086,0.063067,0.241914,0,0);-ms-transform:matrix(0.241987,-0.063086,0.063067,0.241914,0,0);-webkit-transform:matrix(0.241987,-0.063086,0.063067,0.241914,0,0);}
.me{transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.242409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242409,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.242564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242564,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.242594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242594,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.242641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242641,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.242946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242946,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.242998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242998,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.243174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243174,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.243223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243223,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.243680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243680,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.243893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243893,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.244044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244044,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.244074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244074,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.244154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244154,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.244187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244187,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.244553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244553,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.244608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244608,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.244720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244720,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.244799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244799,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.244823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244823,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.244873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244873,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244882,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.244886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244886,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245029,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245039,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.245079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245079,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245083,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245157,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.245194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245194,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245273,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245279,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248290,0.029975,-0.029964,0.248198,0,0);-ms-transform:matrix(0.248290,0.029975,-0.029964,0.248198,0,0);-webkit-transform:matrix(0.248290,0.029975,-0.029964,0.248198,0,0);}
.m18{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249614,0.015011,-0.015007,0.249549,0,0);-ms-transform:matrix(0.249614,0.015011,-0.015007,0.249549,0,0);-webkit-transform:matrix(0.249614,0.015011,-0.015007,0.249549,0,0);}
.m70{transform:matrix(0.249836,0.010927,-0.010923,0.249761,0,0);-ms-transform:matrix(0.249836,0.010927,-0.010923,0.249761,0,0);-webkit-transform:matrix(0.249836,0.010927,-0.010923,0.249761,0,0);}
.ma{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m85{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250030,0.004740,-0.004738,0.249955,0,0);-ms-transform:matrix(0.250030,0.004740,-0.004738,0.249955,0,0);-webkit-transform:matrix(0.250030,0.004740,-0.004738,0.249955,0,0);}
.m87{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250062,0.002535,-0.002534,0.249987,0,0);-ms-transform:matrix(0.250062,0.002535,-0.002534,0.249987,0,0);-webkit-transform:matrix(0.250062,0.002535,-0.002534,0.249987,0,0);}
.m3{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250086,-0.000827,0.000826,0.249999,0,0);-ms-transform:matrix(0.250086,-0.000827,0.000826,0.249999,0,0);-webkit-transform:matrix(0.250086,-0.000827,0.000826,0.249999,0,0);}
.m3e{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-89.931822px;}
.v5{vertical-align:-71.770142px;}
.v6{vertical-align:-50.265688px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:65.588822px;}
.v3{vertical-align:79.869830px;}
.v2{vertical-align:83.701010px;}
.ls4{letter-spacing:-0.336240px;}
.ls5{letter-spacing:-0.167760px;}
.ls6{letter-spacing:-0.131760px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.065880px;}
.ls1{letter-spacing:0.100872px;}
.ls0{letter-spacing:0.168120px;}
.ls2{letter-spacing:0.197640px;}
.ls8{letter-spacing:16.277283px;}
.lse{letter-spacing:64.511712px;}
.ls15{letter-spacing:89.058816px;}
.ls17{letter-spacing:89.256383px;}
.ls1e{letter-spacing:89.627688px;}
.lsf{letter-spacing:89.690276px;}
.ls1f{letter-spacing:89.696203px;}
.ls13{letter-spacing:89.711933px;}
.ls18{letter-spacing:89.712796px;}
.ls12{letter-spacing:89.713391px;}
.ls11{letter-spacing:89.713612px;}
.ls14{letter-spacing:89.714060px;}
.ls23{letter-spacing:89.714242px;}
.ls20{letter-spacing:89.714556px;}
.ls1c{letter-spacing:89.715168px;}
.ls22{letter-spacing:89.717420px;}
.ls24{letter-spacing:89.717476px;}
.ls1d{letter-spacing:89.718385px;}
.ls21{letter-spacing:89.719387px;}
.ls19{letter-spacing:89.719752px;}
.ls10{letter-spacing:89.757521px;}
.ls1a{letter-spacing:89.775385px;}
.ls1b{letter-spacing:89.812197px;}
.ls16{letter-spacing:89.967708px;}
.lsa{letter-spacing:145.898262px;}
.lsc{letter-spacing:150.398262px;}
.lsd{letter-spacing:168.398262px;}
.ls9{letter-spacing:190.898262px;}
.lsb{letter-spacing:213.398262px;}
.ls25{letter-spacing:285.133313px;}
.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:-57.160800px;}
.ws32{word-spacing:-30.269520px;}
.wsb{word-spacing:-29.999925px;}
.ws1{word-spacing:-29.358000px;}
.ws3{word-spacing:-23.189760px;}
.ws2{word-spacing:-23.058000px;}
.ws6b{word-spacing:-21.985435px;}
.ws15{word-spacing:-15.996438px;}
.ws17{word-spacing:-15.996114px;}
.ws16{word-spacing:-15.995988px;}
.ws31{word-spacing:-13.996728px;}
.ws43{word-spacing:-13.996620px;}
.ws58{word-spacing:-13.995999px;}
.ws69{word-spacing:-13.995648px;}
.ws1b{word-spacing:-13.995585px;}
.ws6a{word-spacing:-13.995468px;}
.ws3b{word-spacing:-13.995288px;}
.ws21{word-spacing:-13.995144px;}
.ws20{word-spacing:-13.995072px;}
.ws5e{word-spacing:-13.995000px;}
.ws4c{word-spacing:-13.994712px;}
.ws4d{word-spacing:-13.994541px;}
.ws23{word-spacing:-13.994199px;}
.ws3c{word-spacing:-13.994046px;}
.ws33{word-spacing:-13.993992px;}
.ws2f{word-spacing:-13.993920px;}
.ws5b{word-spacing:-13.993884px;}
.ws4b{word-spacing:-13.993857px;}
.ws4e{word-spacing:-13.993848px;}
.ws44{word-spacing:-13.993344px;}
.ws57{word-spacing:-13.993272px;}
.ws54{word-spacing:-13.993083px;}
.ws50{word-spacing:-13.993002px;}
.ws35{word-spacing:-13.992732px;}
.ws25{word-spacing:-13.992390px;}
.ws22{word-spacing:-13.992372px;}
.ws2b{word-spacing:-13.992354px;}
.ws37{word-spacing:-13.992192px;}
.ws59{word-spacing:-13.992120px;}
.ws27{word-spacing:-13.991994px;}
.ws5d{word-spacing:-13.991958px;}
.ws40{word-spacing:-13.991904px;}
.ws1e{word-spacing:-13.991868px;}
.ws55{word-spacing:-13.991004px;}
.ws34{word-spacing:-13.990860px;}
.ws2e{word-spacing:-13.990572px;}
.wsf{word-spacing:-13.351417px;}
.wsa{word-spacing:-13.351333px;}
.wsd{word-spacing:-13.351108px;}
.ws11{word-spacing:-13.350877px;}
.ws10{word-spacing:-13.349662px;}
.ws12{word-spacing:-13.349572px;}
.wse{word-spacing:-13.349527px;}
.ws14{word-spacing:-13.343073px;}
.wsc{word-spacing:-13.342713px;}
.ws67{word-spacing:-9.496143px;}
.ws68{word-spacing:-9.495864px;}
.ws1a{word-spacing:-9.495585px;}
.ws60{word-spacing:-9.495504px;}
.ws66{word-spacing:-9.495396px;}
.ws2d{word-spacing:-9.493992px;}
.ws63{word-spacing:-9.493038px;}
.ws42{word-spacing:-9.492732px;}
.ws1c{word-spacing:-9.492624px;}
.ws3e{word-spacing:-9.492588px;}
.ws26{word-spacing:-9.492192px;}
.ws2a{word-spacing:-9.491904px;}
.ws29{word-spacing:-9.491508px;}
.ws5f{word-spacing:-9.489420px;}
.ws30{word-spacing:-4.993920px;}
.ws51{word-spacing:-4.992192px;}
.ws5c{word-spacing:-4.991994px;}
.ws24{word-spacing:-4.991868px;}
.ws56{word-spacing:-4.991508px;}
.ws3f{word-spacing:-0.496278px;}
.ws39{word-spacing:-0.495324px;}
.ws1d{word-spacing:-0.492192px;}
.ws9{word-spacing:-0.197640px;}
.ws6{word-spacing:-0.168120px;}
.ws8{word-spacing:-0.131760px;}
.ws18{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:0.167760px;}
.ws5{word-spacing:0.168120px;}
.ws19{word-spacing:4.007268px;}
.ws65{word-spacing:4.007349px;}
.ws3a{word-spacing:8.503992px;}
.ws53{word-spacing:8.504388px;}
.ws38{word-spacing:8.505504px;}
.ws61{word-spacing:8.506683px;}
.ws4f{word-spacing:8.510580px;}
.ws13{word-spacing:9.148538px;}
.ws62{word-spacing:13.005432px;}
.ws52{word-spacing:13.006116px;}
.ws64{word-spacing:13.008132px;}
.ws2c{word-spacing:16.203042px;}
.ws36{word-spacing:16.203132px;}
.ws28{word-spacing:16.203492px;}
.ws49{word-spacing:16.203924px;}
.ws45{word-spacing:16.203987px;}
.ws3d{word-spacing:16.204122px;}
.ws46{word-spacing:16.204608px;}
.ws48{word-spacing:16.205166px;}
.ws47{word-spacing:16.205256px;}
.ws1f{word-spacing:16.205328px;}
.ws5a{word-spacing:16.205436px;}
.ws41{word-spacing:16.205454px;}
.ws4a{word-spacing:23.062536px;}
._b{margin-left:-6.314185px;}
._6{margin-left:-3.323437px;}
._8{margin-left:-2.103673px;}
._4{margin-left:-1.020320px;}
._0{width:1.126404px;}
._1a{width:15.345686px;}
._11{width:16.348299px;}
._e{width:19.962895px;}
._f{width:21.528827px;}
._9{width:25.125272px;}
._a{width:26.233799px;}
._10{width:29.285046px;}
._14{width:30.722287px;}
._13{width:32.555520px;}
._c{width:33.573996px;}
._d{width:34.980156px;}
._22{width:36.807515px;}
._7{width:38.777112px;}
._16{width:42.347212px;}
._5{width:43.644335px;}
._1c{width:47.777292px;}
._18{width:52.277328px;}
._1b{width:53.332056px;}
._17{width:59.502716px;}
._12{width:80.403282px;}
._19{width:85.957056px;}
._1d{width:89.715535px;}
._15{width:104.795851px;}
._23{width:119.967782px;}
._1e{width:238.442046px;}
._1f{width:267.901060px;}
._24{width:388.722439px;}
._20{width:414.750417px;}
._21{width:1429.440695px;}
._1{width:1610.521920px;}
._2{width:1814.649480px;}
._3{width:1977.373440px;}
.fc3{color:rgb(128,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:45.000000px;}
.fsf{font-size:49.059360px;}
.fs7{font-size:59.999850px;}
.fsc{font-size:60.000000px;}
.fs3{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs2a{font-size:69.384000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:78.120000px;}
.fs8{font-size:79.369800px;}
.fs27{font-size:79.369841px;}
.fs1a{font-size:79.369925px;}
.fs25{font-size:79.369999px;}
.fs22{font-size:79.370008px;}
.fsb{font-size:79.370012px;}
.fs9{font-size:79.370049px;}
.fs12{font-size:79.370058px;}
.fs14{font-size:79.370073px;}
.fs18{font-size:79.370088px;}
.fs1b{font-size:79.370098px;}
.fs11{font-size:79.370128px;}
.fs26{font-size:79.370130px;}
.fs23{font-size:79.370141px;}
.fs20{font-size:79.370144px;}
.fs1c{font-size:79.370148px;}
.fs1f{font-size:79.370151px;}
.fsa{font-size:79.370152px;}
.fs1d{font-size:79.370177px;}
.fs1e{font-size:79.370180px;}
.fs13{font-size:79.370185px;}
.fs15{font-size:79.370193px;}
.fs16{font-size:79.370199px;}
.fs10{font-size:79.370201px;}
.fs29{font-size:79.370234px;}
.fs28{font-size:79.370257px;}
.fs21{font-size:79.370277px;}
.fs19{font-size:79.370304px;}
.fs24{font-size:79.370315px;}
.fs17{font-size:79.370334px;}
.fs4{font-size:83.880000px;}
.fsd{font-size:84.000000px;}
.fse{font-size:108.000000px;}
.fs0{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y23c{bottom:14.150820px;}
.ydc{bottom:17.404050px;}
.y238{bottom:32.118330px;}
.yd8{bottom:32.262570px;}
.y237{bottom:32.528250px;}
.y239{bottom:33.953700px;}
.y236{bottom:34.363650px;}
.yd5{bottom:35.659950px;}
.yd6{bottom:35.730300px;}
.yd9{bottom:36.069900px;}
.y212{bottom:39.229723px;}
.ydb{bottom:43.870950px;}
.y174{bottom:46.051650px;}
.y23b{bottom:47.586750px;}
.ycc{bottom:72.230400px;}
.ycb{bottom:74.551560px;}
.y119{bottom:74.621400px;}
.y22c{bottom:74.683350px;}
.y22b{bottom:74.753850px;}
.y1ff{bottom:80.291400px;}
.y148{bottom:92.448180px;}
.yd2{bottom:92.980530px;}
.y162{bottom:94.097940px;}
.yfc{bottom:94.316970px;}
.y1e8{bottom:94.401600px;}
.y12e{bottom:94.574070px;}
.y54{bottom:94.623000px;}
.y200{bottom:95.018370px;}
.y1ae{bottom:95.393850px;}
.y20a{bottom:95.906250px;}
.y1c1{bottom:95.939850px;}
.y11a{bottom:96.513990px;}
.y18b{bottom:96.822480px;}
.y1d2{bottom:97.133700px;}
.y19d{bottom:97.284270px;}
.y172{bottom:97.969080px;}
.y230{bottom:98.975940px;}
.y7c{bottom:100.248000px;}
.yc7{bottom:105.995100px;}
.y233{bottom:106.127850px;}
.y232{bottom:106.337700px;}
.yc8{bottom:106.341750px;}
.y231{bottom:106.474650px;}
.yda{bottom:107.764500px;}
.y53{bottom:126.123000px;}
.y7b{bottom:131.748000px;}
.ycf{bottom:134.310750px;}
.y147{bottom:134.380920px;}
.y12d{bottom:134.381250px;}
.yce{bottom:134.381670px;}
.yca{bottom:134.381820px;}
.y228{bottom:134.443350px;}
.y229{bottom:134.513700px;}
.yd3{bottom:135.586650px;}
.yd1{bottom:135.657150px;}
.y234{bottom:135.719100px;}
.y22e{bottom:135.789570px;}
.y227{bottom:136.060350px;}
.y22d{bottom:136.130610px;}
.yd0{bottom:136.144500px;}
.yfb{bottom:136.215540px;}
.y52{bottom:157.623000px;}
.y7a{bottom:163.248000px;}
.y1e{bottom:164.700000px;}
.y213{bottom:170.202989px;}
.y215{bottom:173.211899px;}
.yc9{bottom:173.748000px;}
.y145{bottom:179.908500px;}
.yd7{bottom:179.908740px;}
.y22f{bottom:180.041190px;}
.y22a{bottom:180.041280px;}
.y146{bottom:180.438750px;}
.y173{bottom:180.438990px;}
.ycd{bottom:180.439500px;}
.y30{bottom:183.086700px;}
.y1d{bottom:187.917390px;}
.y51{bottom:189.123000px;}
.y79{bottom:194.748000px;}
.yc5{bottom:207.136500px;}
.yd4{bottom:207.136950px;}
.y235{bottom:207.269250px;}
.yc6{bottom:207.596850px;}
.y23a{bottom:209.132700px;}
.y1c{bottom:209.789550px;}
.y96{bottom:211.623000px;}
.y2f{bottom:211.639088px;}
.y50{bottom:220.623000px;}
.y214{bottom:222.061232px;}
.y3a{bottom:225.123000px;}
.y78{bottom:225.659288px;}
.y95{bottom:232.998000px;}
.y1b{bottom:246.600000px;}
.y4f{bottom:252.123000px;}
.y39{bottom:256.623000px;}
.y1a{bottom:265.294170px;}
.y68{bottom:267.873000px;}
.y2e{bottom:271.276688px;}
.y94{bottom:275.748000px;}
.y4e{bottom:283.623000px;}
.y19{bottom:285.272280px;}
.y38{bottom:287.521687px;}
.y1fb{bottom:291.045000px;}
.y93{bottom:297.123000px;}
.y67{bottom:298.784288px;}
.y18{bottom:305.349210px;}
.y209{bottom:311.993742px;}
.y4d{bottom:315.123000px;}
.y92{bottom:318.498000px;}
.y17{bottom:325.426140px;}
.yf5{bottom:337.699500px;}
.y211{bottom:339.759503px;}
.y91{bottom:339.873000px;}
.y208{bottom:343.147182px;}
.y16{bottom:345.503070px;}
.y4c{bottom:346.623000px;}
.yf4{bottom:350.082124px;}
.y37{bottom:352.248000px;}
.y1f8{bottom:355.800000px;}
.y2d{bottom:356.776688px;}
.y1fa{bottom:358.264500px;}
.y90{bottom:361.248000px;}
.y15{bottom:365.580000px;}
.y77{bottom:370.248000px;}
.y66{bottom:370.784288px;}
.y182{bottom:370.924500px;}
.y207{bottom:376.172361px;}
.y4b{bottom:378.123000px;}
.y36{bottom:383.748000px;}
.y181{bottom:384.508500px;}
.yf3{bottom:396.084463px;}
.y76{bottom:401.748000px;}
.y205{bottom:402.086203px;}
.y8f{bottom:403.998000px;}
.y14{bottom:405.362520px;}
.y4a{bottom:409.034288px;}
.y206{bottom:411.707609px;}
.y13b{bottom:412.036196px;}
.y35{bottom:414.646687px;}
.y2c{bottom:415.878000px;}
.y204{bottom:421.329213px;}
.yb5{bottom:425.079832px;}
.y8e{bottom:425.373000px;}
.y1b5{bottom:425.880000px;}
.y1a7{bottom:426.639000px;}
.yae{bottom:430.342500px;}
.y75{bottom:433.248000px;}
.y168{bottom:434.835937px;}
.y20f{bottom:435.688621px;}
.y1b8{bottom:439.496154px;}
.y2b{bottom:442.264200px;}
.y65{bottom:443.373000px;}
.y226{bottom:443.624013px;}
.y1cb{bottom:444.984000px;}
.y8d{bottom:446.748000px;}
.y13d{bottom:447.172500px;}
.yf2{bottom:448.225064px;}
.y13{bottom:449.735040px;}
.y184{bottom:450.376500px;}
.yf1{bottom:451.714954px;}
.y224{bottom:453.245419px;}
.y225{bottom:462.867023px;}
.y74{bottom:464.748000px;}
.y19b{bottom:465.225000px;}
.yf0{bottom:466.837679px;}
.y8c{bottom:468.123000px;}
.y34{bottom:469.248000px;}
.yb0{bottom:471.674554px;}
.yad{bottom:471.675000px;}
.y64{bottom:474.284288px;}
.y1fc{bottom:475.816500px;}
.yaf{bottom:477.172500px;}
.y49{bottom:481.034288px;}
.yef{bottom:484.060529px;}
.y13a{bottom:486.613702px;}
.y8b{bottom:489.498000px;}
.y223{bottom:489.696793px;}
.y1cc{bottom:492.307500px;}
.y12{bottom:494.107560px;}
.y73{bottom:496.248000px;}
.y6c{bottom:501.284288px;}
.y210{bottom:501.352248px;}
.y2a{bottom:501.901688px;}
.y169{bottom:507.163254px;}
.y112{bottom:507.580500px;}
.y8a{bottom:510.873000px;}
.yee{bottom:512.495157px;}
.y1e3{bottom:512.572425px;}
.y139{bottom:514.251000px;}
.y1cf{bottom:517.542000px;}
.y155{bottom:518.232798px;}
.y222{bottom:518.917579px;}
.y167{bottom:520.698385px;}
.yb4{bottom:521.985000px;}
.yed{bottom:522.271333px;}
.y72{bottom:527.748000px;}
.y1f9{bottom:528.544500px;}
.y1ca{bottom:532.087500px;}
.y89{bottom:532.248000px;}
.y11{bottom:532.356840px;}
.y19a{bottom:533.001000px;}
.yec{bottom:539.349333px;}
.y63{bottom:546.284288px;}
.y15b{bottom:546.762000px;}
.y10f{bottom:551.817000px;}
.y221{bottom:551.822314px;}
.y88{bottom:553.623000px;}
.y48{bottom:554.748000px;}
.yb6{bottom:556.104000px;}
.yb3{bottom:558.343017px;}
.y183{bottom:559.101000px;}
.y71{bottom:559.248000px;}
.y156{bottom:561.556500px;}
.yeb{bottom:563.124557px;}
.y114{bottom:566.404500px;}
.y1e2{bottom:567.336000px;}
.y110{bottom:570.322500px;}
.y10{bottom:570.690000px;}
.yb1{bottom:570.738000px;}
.y1b6{bottom:570.871500px;}
.y6a{bottom:572.159288px;}
.y87{bottom:574.998000px;}
.y220{bottom:577.697464px;}
.y1ce{bottom:578.874000px;}
.y1b9{bottom:579.255000px;}
.y185{bottom:580.666500px;}
.ye3{bottom:580.988369px;}
.y128{bottom:584.053500px;}
.y13c{bottom:584.080953px;}
.y1a6{bottom:585.016500px;}
.y47{bottom:587.373000px;}
.y29{bottom:587.401687px;}
.y127{bottom:590.344500px;}
.y1db{bottom:590.618603px;}
.y70{bottom:590.748000px;}
.y158{bottom:590.944500px;}
.y203{bottom:591.439331px;}
.yea{bottom:592.399512px;}
.y111{bottom:593.647500px;}
.yb2{bottom:596.249636px;}
.y86{bottom:596.373000px;}
.y126{bottom:598.513500px;}
.ye9{bottom:599.881902px;}
.y1e9{bottom:603.543000px;}
.y21f{bottom:603.632141px;}
.yf{bottom:608.497650px;}
.y20e{bottom:612.679505px;}
.y85{bottom:617.748000px;}
.y1e4{bottom:618.084653px;}
.y1b4{bottom:618.388500px;}
.y62{bottom:618.873000px;}
.y46{bottom:619.998000px;}
.y6f{bottom:621.659288px;}
.y16a{bottom:624.310500px;}
.y21e{bottom:627.754608px;}
.ye4{bottom:633.241500px;}
.y1a3{bottom:640.407000px;}
.y1ed{bottom:641.932500px;}
.ye{bottom:644.764860px;}
.y1cd{bottom:647.341500px;}
.y61{bottom:650.373000px;}
.ye8{bottom:651.040500px;}
.y21d{bottom:651.877074px;}
.y45{bottom:652.623000px;}
.y124{bottom:654.865500px;}
.y84{bottom:660.498000px;}
.y18d{bottom:663.420000px;}
.y1da{bottom:664.019596px;}
.yc4{bottom:671.662500px;}
.yac{bottom:671.728373px;}
.y1bc{bottom:671.749369px;}
.y1bd{bottom:671.749500px;}
.y28{bottom:672.901687px;}
.y10e{bottom:674.796000px;}
.ye6{bottom:678.414466px;}
.y187{bottom:678.699000px;}
.y21c{bottom:679.683490px;}
.yd{bottom:681.032070px;}
.y60{bottom:681.284288px;}
.y83{bottom:681.873000px;}
.y125{bottom:683.989500px;}
.ye5{bottom:688.725000px;}
.y6e{bottom:694.248000px;}
.y44{bottom:695.373000px;}
.y1d9{bottom:695.631000px;}
.y1a8{bottom:695.760000px;}
.y109{bottom:698.848500px;}
.y190{bottom:699.627000px;}
.y161{bottom:700.723854px;}
.y159{bottom:700.797000px;}
.ybe{bottom:702.268500px;}
.y1ec{bottom:704.403000px;}
.y21b{bottom:707.430378px;}
.y154{bottom:707.619261px;}
.yb8{bottom:708.865500px;}
.y19c{bottom:709.060500px;}
.y1dc{bottom:710.923500px;}
.y82{bottom:713.373000px;}
.y191{bottom:716.541000px;}
.y198{bottom:716.543066px;}
.ya7{bottom:716.963992px;}
.yc{bottom:717.299280px;}
.y6d{bottom:725.159288px;}
.y122{bottom:725.787439px;}
.y123{bottom:725.875500px;}
.y1b3{bottom:727.870623px;}
.y21a{bottom:731.493317px;}
.y153{bottom:732.656662px;}
.y144{bottom:735.085415px;}
.y15a{bottom:736.879500px;}
.y138{bottom:738.199190px;}
.y157{bottom:741.373500px;}
.y199{bottom:743.011500px;}
.y81{bottom:744.284288px;}
.y43{bottom:748.248000px;}
.y1df{bottom:749.580329px;}
.yc1{bottom:749.946000px;}
.y186{bottom:750.762133px;}
.y5f{bottom:753.284288px;}
.yb{bottom:753.488370px;}
.y219{bottom:755.615784px;}
.ya9{bottom:756.222000px;}
.y18e{bottom:756.756000px;}
.y27{bottom:758.401687px;}
.y202{bottom:759.580680px;}
.y164{bottom:762.283500px;}
.y15f{bottom:763.065000px;}
.y1e0{bottom:764.342715px;}
.y18a{bottom:764.383990px;}
.y1b7{bottom:766.906500px;}
.y141{bottom:767.011500px;}
.y1de{bottom:774.609000px;}
.y1ee{bottom:774.829500px;}
.y12f{bottom:777.072000px;}
.y1a5{bottom:777.855000px;}
.y217{bottom:779.738250px;}
.y42{bottom:779.819100px;}
.y180{bottom:781.319883px;}
.y1bb{bottom:782.437500px;}
.y1ba{bottom:782.437720px;}
.y189{bottom:783.627000px;}
.y170{bottom:783.808500px;}
.yb9{bottom:785.400000px;}
.y218{bottom:789.359854px;}
.ya{bottom:789.755580px;}
.y113{bottom:790.516500px;}
.y13f{bottom:792.927000px;}
.y16f{bottom:795.428141px;}
.y10d{bottom:797.945335px;}
.y10b{bottom:798.172729px;}
.y216{bottom:798.981260px;}
.y132{bottom:799.630881px;}
.ya5{bottom:801.975000px;}
.y17c{bottom:804.910500px;}
.y1a4{bottom:806.718000px;}
.y1a9{bottom:811.354375px;}
.y1aa{bottom:811.354500px;}
.y41{bottom:813.498000px;}
.y80{bottom:816.284288px;}
.y10c{bottom:817.188344px;}
.y26{bottom:818.014088px;}
.y140{bottom:822.109093px;}
.y14c{bottom:823.344568px;}
.y1eb{bottom:823.350000px;}
.y5e{bottom:825.873000px;}
.y9{bottom:826.022790px;}
.y130{bottom:826.028880px;}
.y150{bottom:826.342500px;}
.y16e{bottom:827.221500px;}
.y165{bottom:832.834500px;}
.ybd{bottom:835.777500px;}
.y149{bottom:840.097500px;}
.y171{bottom:843.582000px;}
.yba{bottom:844.852500px;}
.y40{bottom:845.069100px;}
.y160{bottom:845.289000px;}
.y1a2{bottom:847.482476px;}
.y10a{bottom:850.632000px;}
.y25{bottom:851.764088px;}
.ya8{bottom:852.178500px;}
.y1e1{bottom:855.876000px;}
.y1c5{bottom:855.990000px;}
.y5d{bottom:857.373000px;}
.y8{bottom:862.290000px;}
.yf6{bottom:868.425000px;}
.y1ea{bottom:870.610500px;}
.y163{bottom:872.785500px;}
.ye7{bottom:874.249500px;}
.y14d{bottom:874.372500px;}
.ya6{bottom:876.823500px;}
.y3f{bottom:878.819100px;}
.y17a{bottom:878.941500px;}
.y1d0{bottom:879.085500px;}
.y108{bottom:879.877500px;}
.y1d8{bottom:881.926500px;}
.y1c6{bottom:883.836696px;}
.y24{bottom:885.514088px;}
.y1dd{bottom:885.636000px;}
.y5c{bottom:888.873000px;}
.y17b{bottom:891.664479px;}
.y15d{bottom:894.021083px;}
.y14a{bottom:894.409460px;}
.y7{bottom:899.100000px;}
.y131{bottom:899.867002px;}
.y16b{bottom:901.134000px;}
.y133{bottom:902.615975px;}
.y18c{bottom:907.884000px;}
.y13e{bottom:910.659000px;}
.y3e{bottom:912.498000px;}
.y20b{bottom:916.041000px;}
.y152{bottom:918.492517px;}
.y23{bottom:919.264088px;}
.y5b{bottom:920.373000px;}
.y6{bottom:923.760000px;}
.y11b{bottom:927.447000px;}
.y135{bottom:930.066000px;}
.y166{bottom:935.308115px;}
.y97{bottom:937.321500px;}
.y201{bottom:938.695500px;}
.y5{bottom:940.320000px;}
.y195{bottom:941.553330px;}
.y1f0{bottom:942.612155px;}
.y3d{bottom:944.069100px;}
.y16c{bottom:944.581684px;}
.y14b{bottom:946.828500px;}
.y1fd{bottom:951.405271px;}
.y5a{bottom:951.873000px;}
.y1e5{bottom:957.761602px;}
.y15c{bottom:960.681000px;}
.y120{bottom:965.929500px;}
.y20c{bottom:966.129495px;}
.y11c{bottom:967.977982px;}
.yaa{bottom:968.502000px;}
.y188{bottom:969.384940px;}
.y142{bottom:970.777500px;}
.yde{bottom:970.791818px;}
.y12a{bottom:972.791704px;}
.y1d6{bottom:973.365877px;}
.y175{bottom:973.501500px;}
.yc3{bottom:973.739037px;}
.ya4{bottom:973.884000px;}
.y3c{bottom:977.159288px;}
.y22{bottom:978.852075px;}
.ya0{bottom:979.291500px;}
.y3{bottom:982.075500px;}
.y4{bottom:982.080000px;}
.y59{bottom:982.784288px;}
.y7f{bottom:983.373000px;}
.y1c3{bottom:985.083000px;}
.y106{bottom:988.568585px;}
.y1c0{bottom:992.366783px;}
.y1b1{bottom:995.491500px;}
.y12c{bottom:998.335500px;}
.y17e{bottom:1001.717103px;}
.y1a1{bottom:1004.418000px;}
.y1b0{bottom:1005.514500px;}
.y1ad{bottom:1006.197000px;}
.y1c8{bottom:1006.339500px;}
.y136{bottom:1008.297000px;}
.ya3{bottom:1008.976500px;}
.ya2{bottom:1009.583778px;}
.y1f1{bottom:1011.456329px;}
.y1ab{bottom:1011.681891px;}
.y115{bottom:1011.733963px;}
.y1c9{bottom:1011.832500px;}
.yf8{bottom:1012.147500px;}
.y7e{bottom:1014.873000px;}
.y151{bottom:1017.222000px;}
.y33{bottom:1018.208062px;}
.y129{bottom:1018.333500px;}
.y17d{bottom:1018.795500px;}
.y1d4{bottom:1021.810500px;}
.y105{bottom:1023.831000px;}
.y1d7{bottom:1023.894000px;}
.y1a0{bottom:1027.251000px;}
.y1ef{bottom:1027.807500px;}
.ydf{bottom:1035.647263px;}
.ye0{bottom:1036.221000px;}
.yff{bottom:1036.233056px;}
.yc2{bottom:1037.295000px;}
.y3b{bottom:1039.623000px;}
.y16d{bottom:1040.373000px;}
.y118{bottom:1040.527500px;}
.y2{bottom:1040.665320px;}
.y100{bottom:1041.537142px;}
.y21{bottom:1042.977075px;}
.y7d{bottom:1045.784288px;}
.yfa{bottom:1047.661500px;}
.ya1{bottom:1048.114244px;}
.y14e{bottom:1049.427000px;}
.y1f3{bottom:1050.459442px;}
.y179{bottom:1052.440500px;}
.y58{bottom:1054.783688px;}
.y15e{bottom:1055.676000px;}
.y121{bottom:1063.753969px;}
.y137{bottom:1068.915288px;}
.y32{bottom:1069.958063px;}
.y196{bottom:1076.399644px;}
.y6b{bottom:1077.283688px;}
.y1bf{bottom:1077.291080px;}
.y1b2{bottom:1077.292199px;}
.y9b{bottom:1078.443000px;}
.y9c{bottom:1078.966500px;}
.ye2{bottom:1079.538170px;}
.y1fe{bottom:1079.947500px;}
.y11e{bottom:1079.974500px;}
.y101{bottom:1082.435606px;}
.ye1{bottom:1087.170916px;}
.yc0{bottom:1087.921500px;}
.y11f{bottom:1088.976000px;}
.y1f6{bottom:1090.242000px;}
.yfe{bottom:1090.660500px;}
.y134{bottom:1090.789500px;}
.y143{bottom:1090.803000px;}
.y9e{bottom:1091.514000px;}
.y1d5{bottom:1092.594000px;}
.y1ac{bottom:1096.258548px;}
.y19f{bottom:1096.260049px;}
.y1f5{bottom:1099.681500px;}
.y12b{bottom:1104.826650px;}
.yfd{bottom:1106.215500px;}
.y14f{bottom:1106.698500px;}
.y1be{bottom:1106.884507px;}
.y20{bottom:1107.101475px;}
.y1e7{bottom:1108.030500px;}
.y177{bottom:1108.270500px;}
.ybb{bottom:1109.237272px;}
.ydd{bottom:1111.561500px;}
.y31{bottom:1111.622400px;}
.y1{bottom:1114.470000px;}
.y9f{bottom:1114.836000px;}
.y1c4{bottom:1116.151500px;}
.y1af{bottom:1120.525500px;}
.y1e6{bottom:1123.456775px;}
.y57{bottom:1127.372400px;}
.y1c7{bottom:1128.115114px;}
.y1d3{bottom:1129.137000px;}
.y19e{bottom:1131.190500px;}
.yf7{bottom:1133.352000px;}
.y193{bottom:1133.634000px;}
.y116{bottom:1134.040047px;}
.y1f7{bottom:1135.801500px;}
.y197{bottom:1136.836373px;}
.y1f2{bottom:1137.403106px;}
.yb7{bottom:1137.772500px;}
.y9a{bottom:1137.810000px;}
.y11d{bottom:1140.037500px;}
.y99{bottom:1144.032000px;}
.y102{bottom:1144.305000px;}
.y117{bottom:1144.786500px;}
.y69{bottom:1149.283688px;}
.y17f{bottom:1151.580000px;}
.y1d1{bottom:1152.364500px;}
.y194{bottom:1155.659318px;}
.y20d{bottom:1157.987731px;}
.y178{bottom:1158.468000px;}
.y56{bottom:1158.872400px;}
.y107{bottom:1160.517000px;}
.y104{bottom:1166.736000px;}
.y1c2{bottom:1167.408000px;}
.y9d{bottom:1170.507000px;}
.y192{bottom:1171.639496px;}
.y1f{bottom:1178.471475px;}
.yf9{bottom:1183.527000px;}
.ybc{bottom:1184.289950px;}
.y103{bottom:1186.951500px;}
.ybf{bottom:1188.223990px;}
.y55{bottom:1190.372400px;}
.yab{bottom:1190.412000px;}
.y176{bottom:1194.159000px;}
.y18f{bottom:1197.153000px;}
.y1f4{bottom:1198.374000px;}
.y98{bottom:1201.533000px;}
.h4{height:29.992676px;}
.h1a{height:36.315425px;}
.h5{height:40.070215px;}
.ha{height:43.909277px;}
.hb{height:47.988281px;}
.h3d{height:51.360422px;}
.h10{height:51.679688px;}
.hf{height:52.277344px;}
.he{height:52.417969px;}
.h17{height:53.789062px;}
.h9{height:53.913516px;}
.hd{height:54.169786px;}
.h7{height:58.590000px;}
.h3{height:59.352891px;}
.h31{height:61.154297px;}
.h6{height:63.729141px;}
.hc{height:65.003906px;}
.h8{height:68.643984px;}
.h12{height:73.440318px;}
.h3a{height:73.440356px;}
.h2a{height:73.440433px;}
.h2d{height:73.440476px;}
.h38{height:73.440502px;}
.h15{height:73.440514px;}
.h13{height:73.440548px;}
.h1f{height:73.440571px;}
.h28{height:73.440584px;}
.h2b{height:73.440593px;}
.h1c{height:73.440621px;}
.h39{height:73.440623px;}
.h36{height:73.440633px;}
.h33{height:73.440636px;}
.h2c{height:73.440640px;}
.h14{height:73.440643px;}
.h2e{height:73.440667px;}
.h32{height:73.440669px;}
.h1e{height:73.440674px;}
.h21{height:73.440681px;}
.h22{height:73.440688px;}
.h1b{height:73.440689px;}
.h3c{height:73.440719px;}
.h34{height:73.440759px;}
.h37{height:73.440795px;}
.h23{height:73.440812px;}
.h3b{height:73.441141px;}
.h24{height:73.441962px;}
.h29{height:73.442388px;}
.h30{height:73.442399px;}
.h2f{height:73.443218px;}
.h35{height:73.444287px;}
.h1d{height:73.445527px;}
.h26{height:73.454131px;}
.h20{height:74.349896px;}
.h18{height:75.304688px;}
.h19{height:96.820312px;}
.h2{height:137.582578px;}
.h16{height:139.029139px;}
.h27{height:153.312219px;}
.h25{height:157.141328px;}
.h11{height:1262.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.914000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:894.000000px;}
.w5{width:1785.750000px;}
.w4{width:1785.825000px;}
.x0{left:0.000000px;}
.x53{left:44.645700px;}
.x11{left:59.796000px;}
.x12{left:72.293625px;}
.x6e{left:83.121750px;}
.x14{left:86.796000px;}
.x10f{left:89.291400px;}
.x52{left:91.572000px;}
.x4c{left:93.413250px;}
.x13{left:100.489387px;}
.x75{left:102.548100px;}
.x7d{left:106.049947px;}
.x26{left:107.398500px;}
.x56{left:111.172650px;}
.x94{left:112.630500px;}
.x15{left:113.796000px;}
.xe2{left:114.897000px;}
.x96{left:116.772150px;}
.x98{left:118.980906px;}
.x16{left:121.934700px;}
.xa0{left:123.345000px;}
.x17{left:124.539750px;}
.x6d{left:126.320250px;}
.x5{left:127.620000px;}
.xd6{left:130.635364px;}
.x6f{left:134.151150px;}
.x81{left:138.771600px;}
.xaf{left:142.881450px;}
.x5c{left:144.120300px;}
.x29{left:145.382628px;}
.x5d{left:148.315350px;}
.xe0{left:152.393059px;}
.xa8{left:153.822000px;}
.x4b{left:155.867880px;}
.xe9{left:157.767829px;}
.x1a{left:160.983000px;}
.x21{left:162.694500px;}
.x20{left:165.160500px;}
.x4a{left:168.378000px;}
.xd5{left:170.057806px;}
.xa7{left:171.727080px;}
.x19{left:174.006000px;}
.x5a{left:176.967000px;}
.xa2{left:178.149156px;}
.x64{left:179.965645px;}
.x58{left:182.876669px;}
.xb4{left:185.571990px;}
.x9f{left:187.856160px;}
.xda{left:190.772640px;}
.x2a{left:193.023000px;}
.x63{left:194.283759px;}
.x1e{left:195.492849px;}
.x60{left:197.526412px;}
.x8a{left:201.760274px;}
.x5b{left:203.812644px;}
.x8e{left:205.695743px;}
.xcf{left:210.393000px;}
.xd4{left:212.220000px;}
.xc5{left:215.742000px;}
.xb9{left:216.783516px;}
.x2{left:219.163159px;}
.x28{left:221.695500px;}
.xdf{left:223.848896px;}
.xc{left:225.891900px;}
.xef{left:227.597257px;}
.xc8{left:230.857500px;}
.x54{left:236.224500px;}
.x55{left:238.286527px;}
.x88{left:241.189206px;}
.xbc{left:246.418500px;}
.xbb{left:247.522448px;}
.xd1{left:248.986500px;}
.xd{left:250.201620px;}
.x2b{left:252.576939px;}
.xac{left:254.589000px;}
.x1b{left:257.085000px;}
.xdb{left:258.718500px;}
.xe8{left:261.553764px;}
.xa{left:262.620000px;}
.xc1{left:268.333500px;}
.xb{left:269.455050px;}
.xe1{left:271.332000px;}
.x3{left:272.614285px;}
.xa1{left:273.780000px;}
.xcd{left:276.879000px;}
.x95{left:278.537987px;}
.xe4{left:280.297500px;}
.x8b{left:281.385000px;}
.xbe{left:285.739321px;}
.x22{left:287.280000px;}
.xc6{left:291.420906px;}
.xbd{left:292.683000px;}
.x6c{left:294.073500px;}
.x70{left:300.504100px;}
.x27{left:301.822500px;}
.x71{left:303.222118px;}
.x5f{left:305.000860px;}
.x1c{left:308.785500px;}
.xf1{left:309.898581px;}
.xed{left:311.127226px;}
.x59{left:312.313500px;}
.xb5{left:313.584000px;}
.xdc{left:315.945000px;}
.x65{left:317.665500px;}
.x7c{left:319.644000px;}
.x57{left:321.347849px;}
.xbf{left:325.440000px;}
.x9{left:326.508030px;}
.x2c{left:328.127663px;}
.xe{left:329.768190px;}
.x7{left:332.820000px;}
.x6b{left:334.119000px;}
.xe7{left:336.891777px;}
.x23{left:338.310000px;}
.xf{left:340.934850px;}
.xdd{left:342.442500px;}
.xc7{left:349.891500px;}
.x67{left:352.830000px;}
.x61{left:360.669647px;}
.x8{left:362.052180px;}
.xc9{left:363.654000px;}
.xb7{left:364.696604px;}
.x5e{left:372.598531px;}
.xc0{left:376.468500px;}
.xae{left:379.779000px;}
.xde{left:384.124500px;}
.xb6{left:386.170500px;}
.x62{left:388.008574px;}
.x4d{left:389.364750px;}
.xe3{left:390.663000px;}
.x8c{left:392.353500px;}
.xd3{left:397.992663px;}
.x10{left:402.535125px;}
.x42{left:404.118000px;}
.xa9{left:405.478500px;}
.x8d{left:407.649000px;}
.x6a{left:409.015500px;}
.x89{left:411.246939px;}
.xd2{left:414.834000px;}
.xba{left:416.956136px;}
.xaa{left:421.729500px;}
.x2f{left:422.842500px;}
.xb8{left:424.278000px;}
.x18{left:431.935500px;}
.x1f{left:435.342000px;}
.x1{left:446.490000px;}
.x25{left:450.655500px;}
.x97{left:458.793000px;}
.xce{left:460.626000px;}
.x74{left:463.314000px;}
.x1d{left:466.915500px;}
.x7e{left:468.232500px;}
.xb1{left:472.885500px;}
.xad{left:484.530000px;}
.x4e{left:486.827700px;}
.x3e{left:489.375000px;}
.x2e{left:492.737162px;}
.x69{left:494.822317px;}
.x49{left:499.366500px;}
.xab{left:506.593500px;}
.x6{left:511.830000px;}
.x24{left:517.462500px;}
.xb0{left:519.678000px;}
.x7f{left:522.241367px;}
.x44{left:526.455810px;}
.xc2{left:527.608841px;}
.x72{left:529.605000px;}
.x32{left:531.883500px;}
.x2d{left:535.377000px;}
.xf0{left:537.509341px;}
.x31{left:539.959500px;}
.x4f{left:544.282500px;}
.x73{left:548.589000px;}
.x80{left:550.300500px;}
.xa5{left:554.448000px;}
.xcc{left:557.806500px;}
.x46{left:570.025500px;}
.x7b{left:576.771000px;}
.x87{left:579.690000px;}
.xcb{left:584.094889px;}
.x68{left:585.495000px;}
.xa3{left:590.957020px;}
.x93{left:593.148547px;}
.x35{left:595.671240px;}
.xd8{left:610.863529px;}
.x99{left:611.866500px;}
.x43{left:617.475900px;}
.x4{left:620.460000px;}
.xca{left:623.262695px;}
.xee{left:625.119512px;}
.xd0{left:626.316000px;}
.xc3{left:630.922526px;}
.x40{left:633.234750px;}
.x92{left:637.990500px;}
.x86{left:639.013500px;}
.xe6{left:642.561000px;}
.x30{left:643.768500px;}
.x33{left:645.273000px;}
.xd9{left:646.732500px;}
.xb2{left:653.626500px;}
.xb3{left:659.362159px;}
.x7a{left:665.208000px;}
.x34{left:668.229127px;}
.xd7{left:670.727804px;}
.xec{left:678.030000px;}
.x9e{left:680.159092px;}
.x51{left:683.026500px;}
.x79{left:685.341000px;}
.x84{left:688.432500px;}
.x76{left:689.631226px;}
.x3b{left:691.155000px;}
.xe5{left:692.701500px;}
.x85{left:693.784802px;}
.x3d{left:694.863000px;}
.x45{left:700.753500px;}
.x77{left:702.684384px;}
.x3c{left:709.216987px;}
.x37{left:719.353500px;}
.x9d{left:720.787500px;}
.x9b{left:722.025000px;}
.x39{left:723.937500px;}
.xa6{left:734.766000px;}
.x50{left:737.314500px;}
.xa4{left:741.426000px;}
.x8f{left:745.827000px;}
.x90{left:751.861500px;}
.x38{left:754.963554px;}
.x48{left:769.867500px;}
.x83{left:773.234373px;}
.x41{left:775.797150px;}
.x3f{left:777.999000px;}
.x9a{left:779.280561px;}
.xea{left:788.063849px;}
.x91{left:791.526000px;}
.x78{left:798.993000px;}
.xeb{left:805.018200px;}
.x66{left:807.862500px;}
.x47{left:811.880400px;}
.x3a{left:815.425500px;}
.x9c{left:818.515500px;}
.x82{left:829.414500px;}
.x36{left:832.878000px;}
.xc4{left:858.733500px;}
.xf3{left:941.141879px;}
.xf2{left:961.790528px;}
.xfa{left:979.985261px;}
.xf7{left:985.487175px;}
.x109{left:987.490350px;}
.x10d{left:1023.757200px;}
.xf8{left:1058.649860px;}
.x105{left:1063.836750px;}
.x103{left:1090.956150px;}
.xf4{left:1096.993807px;}
.x10a{left:1294.606650px;}
.x104{left:1305.172950px;}
.xf5{left:1341.675027px;}
.xff{left:1379.073120px;}
.x108{left:1383.788850px;}
.xfb{left:1393.342500px;}
.x101{left:1420.537500px;}
.x10e{left:1439.744100px;}
.x102{left:1513.308150px;}
.x107{left:1529.284200px;}
.x100{left:1570.455000px;}
.x10b{left:1575.744150px;}
.xf6{left:1579.060177px;}
.xf9{left:1624.862108px;}
.x10c{left:1635.945000px;}
.xfc{left:1663.948500px;}
.x106{left:1669.875000px;}
.xfe{left:1707.137220px;}
.xfd{left:1727.490000px;}
@media print{
.v4{vertical-align:-79.939397pt;}
.v5{vertical-align:-63.795681pt;}
.v6{vertical-align:-44.680612pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:58.301175pt;}
.v3{vertical-align:70.995404pt;}
.v2{vertical-align:74.400898pt;}
.ls4{letter-spacing:-0.298880pt;}
.ls5{letter-spacing:-0.149120pt;}
.ls6{letter-spacing:-0.117120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.058560pt;}
.ls1{letter-spacing:0.089664pt;}
.ls0{letter-spacing:0.149440pt;}
.ls2{letter-spacing:0.175680pt;}
.ls8{letter-spacing:14.468696pt;}
.lse{letter-spacing:57.343744pt;}
.ls15{letter-spacing:79.163392pt;}
.ls17{letter-spacing:79.339007pt;}
.ls1e{letter-spacing:79.669056pt;}
.lsf{letter-spacing:79.724690pt;}
.ls1f{letter-spacing:79.729958pt;}
.ls13{letter-spacing:79.743940pt;}
.ls18{letter-spacing:79.744707pt;}
.ls12{letter-spacing:79.745237pt;}
.ls11{letter-spacing:79.745433pt;}
.ls14{letter-spacing:79.745831pt;}
.ls23{letter-spacing:79.745993pt;}
.ls20{letter-spacing:79.746272pt;}
.ls1c{letter-spacing:79.746816pt;}
.ls22{letter-spacing:79.748817pt;}
.ls24{letter-spacing:79.748868pt;}
.ls1d{letter-spacing:79.749676pt;}
.ls21{letter-spacing:79.750566pt;}
.ls19{letter-spacing:79.750891pt;}
.ls10{letter-spacing:79.784463pt;}
.ls1a{letter-spacing:79.800342pt;}
.ls1b{letter-spacing:79.833064pt;}
.ls16{letter-spacing:79.971296pt;}
.lsa{letter-spacing:129.687344pt;}
.lsc{letter-spacing:133.687344pt;}
.lsd{letter-spacing:149.687344pt;}
.ls9{letter-spacing:169.687344pt;}
.lsb{letter-spacing:189.687344pt;}
.ls25{letter-spacing:253.451834pt;}
.ws0{word-spacing:-50.809600pt;}
.ws32{word-spacing:-26.906240pt;}
.wsb{word-spacing:-26.666600pt;}
.ws1{word-spacing:-26.096000pt;}
.ws3{word-spacing:-20.613120pt;}
.ws2{word-spacing:-20.496000pt;}
.ws6b{word-spacing:-19.542609pt;}
.ws15{word-spacing:-14.219056pt;}
.ws17{word-spacing:-14.218768pt;}
.ws16{word-spacing:-14.218656pt;}
.ws31{word-spacing:-12.441536pt;}
.ws43{word-spacing:-12.441440pt;}
.ws58{word-spacing:-12.440888pt;}
.ws69{word-spacing:-12.440576pt;}
.ws1b{word-spacing:-12.440520pt;}
.ws6a{word-spacing:-12.440416pt;}
.ws3b{word-spacing:-12.440256pt;}
.ws21{word-spacing:-12.440128pt;}
.ws20{word-spacing:-12.440064pt;}
.ws5e{word-spacing:-12.440000pt;}
.ws4c{word-spacing:-12.439744pt;}
.ws4d{word-spacing:-12.439592pt;}
.ws23{word-spacing:-12.439288pt;}
.ws3c{word-spacing:-12.439152pt;}
.ws33{word-spacing:-12.439104pt;}
.ws2f{word-spacing:-12.439040pt;}
.ws5b{word-spacing:-12.439008pt;}
.ws4b{word-spacing:-12.438984pt;}
.ws4e{word-spacing:-12.438976pt;}
.ws44{word-spacing:-12.438528pt;}
.ws57{word-spacing:-12.438464pt;}
.ws54{word-spacing:-12.438296pt;}
.ws50{word-spacing:-12.438224pt;}
.ws35{word-spacing:-12.437984pt;}
.ws25{word-spacing:-12.437680pt;}
.ws22{word-spacing:-12.437664pt;}
.ws2b{word-spacing:-12.437648pt;}
.ws37{word-spacing:-12.437504pt;}
.ws59{word-spacing:-12.437440pt;}
.ws27{word-spacing:-12.437328pt;}
.ws5d{word-spacing:-12.437296pt;}
.ws40{word-spacing:-12.437248pt;}
.ws1e{word-spacing:-12.437216pt;}
.ws55{word-spacing:-12.436448pt;}
.ws34{word-spacing:-12.436320pt;}
.ws2e{word-spacing:-12.436064pt;}
.wsf{word-spacing:-11.867926pt;}
.wsa{word-spacing:-11.867852pt;}
.wsd{word-spacing:-11.867652pt;}
.ws11{word-spacing:-11.867446pt;}
.ws10{word-spacing:-11.866366pt;}
.ws12{word-spacing:-11.866286pt;}
.wse{word-spacing:-11.866246pt;}
.ws14{word-spacing:-11.860510pt;}
.wsc{word-spacing:-11.860190pt;}
.ws67{word-spacing:-8.441016pt;}
.ws68{word-spacing:-8.440768pt;}
.ws1a{word-spacing:-8.440520pt;}
.ws60{word-spacing:-8.440448pt;}
.ws66{word-spacing:-8.440352pt;}
.ws2d{word-spacing:-8.439104pt;}
.ws63{word-spacing:-8.438256pt;}
.ws42{word-spacing:-8.437984pt;}
.ws1c{word-spacing:-8.437888pt;}
.ws3e{word-spacing:-8.437856pt;}
.ws26{word-spacing:-8.437504pt;}
.ws2a{word-spacing:-8.437248pt;}
.ws29{word-spacing:-8.436896pt;}
.ws5f{word-spacing:-8.435040pt;}
.ws30{word-spacing:-4.439040pt;}
.ws51{word-spacing:-4.437504pt;}
.ws5c{word-spacing:-4.437328pt;}
.ws24{word-spacing:-4.437216pt;}
.ws56{word-spacing:-4.436896pt;}
.ws3f{word-spacing:-0.441136pt;}
.ws39{word-spacing:-0.440288pt;}
.ws1d{word-spacing:-0.437504pt;}
.ws9{word-spacing:-0.175680pt;}
.ws6{word-spacing:-0.149440pt;}
.ws8{word-spacing:-0.117120pt;}
.ws18{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:0.149120pt;}
.ws5{word-spacing:0.149440pt;}
.ws19{word-spacing:3.562016pt;}
.ws65{word-spacing:3.562088pt;}
.ws3a{word-spacing:7.559104pt;}
.ws53{word-spacing:7.559456pt;}
.ws38{word-spacing:7.560448pt;}
.ws61{word-spacing:7.561496pt;}
.ws4f{word-spacing:7.564960pt;}
.ws13{word-spacing:8.132034pt;}
.ws62{word-spacing:11.560384pt;}
.ws52{word-spacing:11.560992pt;}
.ws64{word-spacing:11.562784pt;}
.ws2c{word-spacing:14.402704pt;}
.ws36{word-spacing:14.402784pt;}
.ws28{word-spacing:14.403104pt;}
.ws49{word-spacing:14.403488pt;}
.ws45{word-spacing:14.403544pt;}
.ws3d{word-spacing:14.403664pt;}
.ws46{word-spacing:14.404096pt;}
.ws48{word-spacing:14.404592pt;}
.ws47{word-spacing:14.404672pt;}
.ws1f{word-spacing:14.404736pt;}
.ws5a{word-spacing:14.404832pt;}
.ws41{word-spacing:14.404848pt;}
.ws4a{word-spacing:20.500032pt;}
._b{margin-left:-5.612608pt;}
._6{margin-left:-2.954166pt;}
._8{margin-left:-1.869932pt;}
._4{margin-left:-0.906951pt;}
._0{width:1.001248pt;}
._1a{width:13.640610pt;}
._11{width:14.531821pt;}
._e{width:17.744796pt;}
._f{width:19.136735pt;}
._9{width:22.333576pt;}
._a{width:23.318932pt;}
._10{width:26.031152pt;}
._14{width:27.308700pt;}
._13{width:28.938240pt;}
._c{width:29.843552pt;}
._d{width:31.093472pt;}
._22{width:32.717791pt;}
._7{width:34.468544pt;}
._16{width:37.641966pt;}
._5{width:38.794965pt;}
._1c{width:42.468704pt;}
._18{width:46.468736pt;}
._1b{width:47.406272pt;}
._17{width:52.891303pt;}
._12{width:71.469584pt;}
._19{width:76.406272pt;}
._1d{width:79.747142pt;}
._15{width:93.151868pt;}
._23{width:106.638028pt;}
._1e{width:211.948485pt;}
._1f{width:238.134276pt;}
._24{width:345.531057pt;}
._20{width:368.667037pt;}
._21{width:1270.613952pt;}
._1{width:1431.575040pt;}
._2{width:1613.021760pt;}
._3{width:1757.665280pt;}
.fs2{font-size:40.000000pt;}
.fsf{font-size:43.608320pt;}
.fs7{font-size:53.333200pt;}
.fsc{font-size:53.333333pt;}
.fs3{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs2a{font-size:61.674667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.440000pt;}
.fs8{font-size:70.550933pt;}
.fs27{font-size:70.550970pt;}
.fs1a{font-size:70.551044pt;}
.fs25{font-size:70.551110pt;}
.fs22{font-size:70.551118pt;}
.fsb{font-size:70.551122pt;}
.fs9{font-size:70.551155pt;}
.fs12{font-size:70.551163pt;}
.fs14{font-size:70.551176pt;}
.fs18{font-size:70.551189pt;}
.fs1b{font-size:70.551198pt;}
.fs11{font-size:70.551225pt;}
.fs26{font-size:70.551227pt;}
.fs23{font-size:70.551236pt;}
.fs20{font-size:70.551239pt;}
.fs1c{font-size:70.551242pt;}
.fs1f{font-size:70.551245pt;}
.fsa{font-size:70.551246pt;}
.fs1d{font-size:70.551269pt;}
.fs1e{font-size:70.551271pt;}
.fs13{font-size:70.551276pt;}
.fs15{font-size:70.551282pt;}
.fs16{font-size:70.551288pt;}
.fs10{font-size:70.551290pt;}
.fs29{font-size:70.551319pt;}
.fs28{font-size:70.551340pt;}
.fs21{font-size:70.551357pt;}
.fs19{font-size:70.551381pt;}
.fs24{font-size:70.551391pt;}
.fs17{font-size:70.551408pt;}
.fs4{font-size:74.560000pt;}
.fsd{font-size:74.666667pt;}
.fse{font-size:96.000000pt;}
.fs0{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y23c{bottom:12.578507pt;}
.ydc{bottom:15.470267pt;}
.y238{bottom:28.549627pt;}
.yd8{bottom:28.677840pt;}
.y237{bottom:28.914000pt;}
.y239{bottom:30.181067pt;}
.y236{bottom:30.545467pt;}
.yd5{bottom:31.697733pt;}
.yd6{bottom:31.760267pt;}
.yd9{bottom:32.062133pt;}
.y212{bottom:34.870865pt;}
.ydb{bottom:38.996400pt;}
.y174{bottom:40.934800pt;}
.y23b{bottom:42.299333pt;}
.ycc{bottom:64.204800pt;}
.ycb{bottom:66.268053pt;}
.y119{bottom:66.330133pt;}
.y22c{bottom:66.385200pt;}
.y22b{bottom:66.447867pt;}
.y1ff{bottom:71.370133pt;}
.y148{bottom:82.176160pt;}
.yd2{bottom:82.649360pt;}
.y162{bottom:83.642613pt;}
.yfc{bottom:83.837307pt;}
.y1e8{bottom:83.912533pt;}
.y12e{bottom:84.065840pt;}
.y54{bottom:84.109333pt;}
.y200{bottom:84.460773pt;}
.y1ae{bottom:84.794533pt;}
.y20a{bottom:85.250000pt;}
.y1c1{bottom:85.279867pt;}
.y11a{bottom:85.790213pt;}
.y18b{bottom:86.064427pt;}
.y1d2{bottom:86.341067pt;}
.y19d{bottom:86.474907pt;}
.y172{bottom:87.083627pt;}
.y230{bottom:87.978613pt;}
.y7c{bottom:89.109333pt;}
.yc7{bottom:94.217867pt;}
.y233{bottom:94.335867pt;}
.y232{bottom:94.522400pt;}
.yc8{bottom:94.526000pt;}
.y231{bottom:94.644133pt;}
.yda{bottom:95.790667pt;}
.y53{bottom:112.109333pt;}
.y7b{bottom:117.109333pt;}
.ycf{bottom:119.387333pt;}
.y147{bottom:119.449707pt;}
.y12d{bottom:119.450000pt;}
.yce{bottom:119.450373pt;}
.yca{bottom:119.450507pt;}
.y228{bottom:119.505200pt;}
.y229{bottom:119.567733pt;}
.yd3{bottom:120.521467pt;}
.yd1{bottom:120.584133pt;}
.y234{bottom:120.639200pt;}
.y22e{bottom:120.701840pt;}
.y227{bottom:120.942533pt;}
.y22d{bottom:121.004987pt;}
.yd0{bottom:121.017333pt;}
.yfb{bottom:121.080480pt;}
.y52{bottom:140.109333pt;}
.y7a{bottom:145.109333pt;}
.y1e{bottom:146.400000pt;}
.y213{bottom:151.291546pt;}
.y215{bottom:153.966132pt;}
.yc9{bottom:154.442667pt;}
.y145{bottom:159.918667pt;}
.yd7{bottom:159.918880pt;}
.y22f{bottom:160.036613pt;}
.y22a{bottom:160.036693pt;}
.y146{bottom:160.390000pt;}
.y173{bottom:160.390213pt;}
.ycd{bottom:160.390667pt;}
.y30{bottom:162.743733pt;}
.y1d{bottom:167.037680pt;}
.y51{bottom:168.109333pt;}
.y79{bottom:173.109333pt;}
.yc5{bottom:184.121333pt;}
.yd4{bottom:184.121733pt;}
.y235{bottom:184.239333pt;}
.yc6{bottom:184.530533pt;}
.y23a{bottom:185.895733pt;}
.y1c{bottom:186.479600pt;}
.y96{bottom:188.109333pt;}
.y2f{bottom:188.123633pt;}
.y50{bottom:196.109333pt;}
.y214{bottom:197.387762pt;}
.y3a{bottom:200.109333pt;}
.y78{bottom:200.586033pt;}
.y95{bottom:207.109333pt;}
.y1b{bottom:219.200000pt;}
.y4f{bottom:224.109333pt;}
.y39{bottom:228.109333pt;}
.y1a{bottom:235.817040pt;}
.y68{bottom:238.109333pt;}
.y2e{bottom:241.134833pt;}
.y94{bottom:245.109333pt;}
.y4e{bottom:252.109333pt;}
.y19{bottom:253.575360pt;}
.y38{bottom:255.574833pt;}
.y1fb{bottom:258.706667pt;}
.y93{bottom:264.109333pt;}
.y67{bottom:265.586033pt;}
.y18{bottom:271.421520pt;}
.y209{bottom:277.327771pt;}
.y4d{bottom:280.109333pt;}
.y92{bottom:283.109333pt;}
.y17{bottom:289.267680pt;}
.yf5{bottom:300.177333pt;}
.y211{bottom:302.008447pt;}
.y91{bottom:302.109333pt;}
.y208{bottom:305.019717pt;}
.y16{bottom:307.113840pt;}
.y4c{bottom:308.109333pt;}
.yf4{bottom:311.184110pt;}
.y37{bottom:313.109333pt;}
.y1f8{bottom:316.266667pt;}
.y2d{bottom:317.134833pt;}
.y1fa{bottom:318.457333pt;}
.y90{bottom:321.109333pt;}
.y15{bottom:324.960000pt;}
.y77{bottom:329.109333pt;}
.y66{bottom:329.586033pt;}
.y182{bottom:329.710667pt;}
.y207{bottom:334.375432pt;}
.y4b{bottom:336.109333pt;}
.y36{bottom:341.109333pt;}
.y181{bottom:341.785333pt;}
.yf3{bottom:352.075078pt;}
.y76{bottom:357.109333pt;}
.y205{bottom:357.409959pt;}
.y8f{bottom:359.109333pt;}
.y14{bottom:360.322240pt;}
.y4a{bottom:363.586033pt;}
.y206{bottom:365.962319pt;}
.y13b{bottom:366.254397pt;}
.y35{bottom:368.574833pt;}
.y2c{bottom:369.669333pt;}
.y204{bottom:374.514856pt;}
.yb5{bottom:377.848739pt;}
.y8e{bottom:378.109333pt;}
.y1b5{bottom:378.560000pt;}
.y1a7{bottom:379.234667pt;}
.yae{bottom:382.526667pt;}
.y75{bottom:385.109333pt;}
.y168{bottom:386.520833pt;}
.y20f{bottom:387.278774pt;}
.y1b8{bottom:390.663248pt;}
.y2b{bottom:393.123733pt;}
.y65{bottom:394.109333pt;}
.y226{bottom:394.332456pt;}
.y1cb{bottom:395.541333pt;}
.y8d{bottom:397.109333pt;}
.y13d{bottom:397.486667pt;}
.yf2{bottom:398.422279pt;}
.y13{bottom:399.764480pt;}
.y184{bottom:400.334667pt;}
.yf1{bottom:401.524404pt;}
.y224{bottom:402.884817pt;}
.y225{bottom:411.437354pt;}
.y74{bottom:413.109333pt;}
.y19b{bottom:413.533333pt;}
.yf0{bottom:414.966826pt;}
.y8c{bottom:416.109333pt;}
.y34{bottom:417.109333pt;}
.yb0{bottom:419.266270pt;}
.yad{bottom:419.266667pt;}
.y64{bottom:421.586033pt;}
.y1fc{bottom:422.948000pt;}
.yaf{bottom:424.153333pt;}
.y49{bottom:427.586033pt;}
.yef{bottom:430.276026pt;}
.y13a{bottom:432.545513pt;}
.y8b{bottom:435.109333pt;}
.y223{bottom:435.286039pt;}
.y1cc{bottom:437.606667pt;}
.y12{bottom:439.206720pt;}
.y73{bottom:441.109333pt;}
.y6c{bottom:445.586033pt;}
.y210{bottom:445.646443pt;}
.y2a{bottom:446.134833pt;}
.y169{bottom:450.811782pt;}
.y112{bottom:451.182667pt;}
.y8a{bottom:454.109333pt;}
.yee{bottom:455.551250pt;}
.y1e3{bottom:455.619934pt;}
.y139{bottom:457.112000pt;}
.y1cf{bottom:460.037333pt;}
.y155{bottom:460.651376pt;}
.y222{bottom:461.260070pt;}
.y167{bottom:462.843009pt;}
.yb4{bottom:463.986667pt;}
.yed{bottom:464.241185pt;}
.y72{bottom:469.109333pt;}
.y1f9{bottom:469.817333pt;}
.y1ca{bottom:472.966667pt;}
.y89{bottom:473.109333pt;}
.y11{bottom:473.206080pt;}
.y19a{bottom:473.778667pt;}
.yec{bottom:479.421630pt;}
.y63{bottom:485.586033pt;}
.y15b{bottom:486.010667pt;}
.y10f{bottom:490.504000pt;}
.y221{bottom:490.508723pt;}
.y88{bottom:492.109333pt;}
.y48{bottom:493.109333pt;}
.yb6{bottom:494.314667pt;}
.yb3{bottom:496.304904pt;}
.y183{bottom:496.978667pt;}
.y71{bottom:497.109333pt;}
.y156{bottom:499.161333pt;}
.yeb{bottom:500.555162pt;}
.y114{bottom:503.470667pt;}
.y1e2{bottom:504.298667pt;}
.y110{bottom:506.953333pt;}
.y10{bottom:507.280000pt;}
.yb1{bottom:507.322667pt;}
.y1b6{bottom:507.441333pt;}
.y6a{bottom:508.586033pt;}
.y87{bottom:511.109333pt;}
.y220{bottom:513.508857pt;}
.y1ce{bottom:514.554667pt;}
.y1b9{bottom:514.893333pt;}
.y185{bottom:516.148000pt;}
.ye3{bottom:516.434105pt;}
.y128{bottom:519.158667pt;}
.y13c{bottom:519.183069pt;}
.y1a6{bottom:520.014667pt;}
.y47{bottom:522.109333pt;}
.y29{bottom:522.134833pt;}
.y127{bottom:524.750667pt;}
.y1db{bottom:524.994314pt;}
.y70{bottom:525.109333pt;}
.y158{bottom:525.284000pt;}
.y203{bottom:525.723849pt;}
.yea{bottom:526.577344pt;}
.y111{bottom:527.686667pt;}
.yb2{bottom:529.999677pt;}
.y86{bottom:530.109333pt;}
.y126{bottom:532.012000pt;}
.ye9{bottom:533.228357pt;}
.y1e9{bottom:536.482667pt;}
.y21f{bottom:536.561903pt;}
.yf{bottom:540.886800pt;}
.y20e{bottom:544.604004pt;}
.y85{bottom:549.109333pt;}
.y1e4{bottom:549.408581pt;}
.y1b4{bottom:549.678667pt;}
.y62{bottom:550.109333pt;}
.y46{bottom:551.109333pt;}
.y6f{bottom:552.586033pt;}
.y16a{bottom:554.942667pt;}
.y21e{bottom:558.004096pt;}
.ye4{bottom:562.881333pt;}
.y1a3{bottom:569.250667pt;}
.y1ed{bottom:570.606667pt;}
.ye{bottom:573.124320pt;}
.y1cd{bottom:575.414667pt;}
.y61{bottom:578.109333pt;}
.ye8{bottom:578.702667pt;}
.y21d{bottom:579.446288pt;}
.y45{bottom:580.109333pt;}
.y124{bottom:582.102667pt;}
.y84{bottom:587.109333pt;}
.y18d{bottom:589.706667pt;}
.y1da{bottom:590.239641pt;}
.yc4{bottom:597.033333pt;}
.yac{bottom:597.091887pt;}
.y1bc{bottom:597.110550pt;}
.y1bd{bottom:597.110667pt;}
.y28{bottom:598.134833pt;}
.y10e{bottom:599.818667pt;}
.ye6{bottom:603.035081pt;}
.y187{bottom:603.288000pt;}
.y21c{bottom:604.163102pt;}
.yd{bottom:605.361840pt;}
.y60{bottom:605.586033pt;}
.y83{bottom:606.109333pt;}
.y125{bottom:607.990667pt;}
.ye5{bottom:612.200000pt;}
.y6e{bottom:617.109333pt;}
.y44{bottom:618.109333pt;}
.y1d9{bottom:618.338667pt;}
.y1a8{bottom:618.453333pt;}
.y109{bottom:621.198667pt;}
.y190{bottom:621.890667pt;}
.y161{bottom:622.865648pt;}
.y159{bottom:622.930667pt;}
.ybe{bottom:624.238667pt;}
.y1ec{bottom:626.136000pt;}
.y21b{bottom:628.827003pt;}
.y154{bottom:628.994898pt;}
.yb8{bottom:630.102667pt;}
.y19c{bottom:630.276000pt;}
.y1dc{bottom:631.932000pt;}
.y82{bottom:634.109333pt;}
.y191{bottom:636.925333pt;}
.y198{bottom:636.927170pt;}
.ya7{bottom:637.301326pt;}
.yc{bottom:637.599360pt;}
.y6d{bottom:644.586033pt;}
.y122{bottom:645.144391pt;}
.y123{bottom:645.222667pt;}
.y1b3{bottom:646.996109pt;}
.y21a{bottom:650.216282pt;}
.y153{bottom:651.250367pt;}
.y144{bottom:653.409257pt;}
.y15a{bottom:655.004000pt;}
.y138{bottom:656.177057pt;}
.y157{bottom:658.998667pt;}
.y199{bottom:660.454667pt;}
.y81{bottom:661.586033pt;}
.y43{bottom:665.109333pt;}
.y1df{bottom:666.293626pt;}
.yc1{bottom:666.618667pt;}
.y186{bottom:667.344118pt;}
.y5f{bottom:669.586033pt;}
.yb{bottom:669.767440pt;}
.y219{bottom:671.658475pt;}
.ya9{bottom:672.197333pt;}
.y18e{bottom:672.672000pt;}
.y27{bottom:674.134833pt;}
.y202{bottom:675.182827pt;}
.y164{bottom:677.585333pt;}
.y15f{bottom:678.280000pt;}
.y1e0{bottom:679.415746pt;}
.y18a{bottom:679.452436pt;}
.y1b7{bottom:681.694667pt;}
.y141{bottom:681.788000pt;}
.y1de{bottom:688.541333pt;}
.y1ee{bottom:688.737333pt;}
.y12f{bottom:690.730667pt;}
.y1a5{bottom:691.426667pt;}
.y217{bottom:693.100667pt;}
.y42{bottom:693.172533pt;}
.y180{bottom:694.506563pt;}
.y1bb{bottom:695.500000pt;}
.y1ba{bottom:695.500195pt;}
.y189{bottom:696.557333pt;}
.y170{bottom:696.718667pt;}
.yb9{bottom:698.133333pt;}
.y218{bottom:701.653204pt;}
.ya{bottom:702.004960pt;}
.y113{bottom:702.681333pt;}
.y13f{bottom:704.824000pt;}
.y16f{bottom:707.047236pt;}
.y10d{bottom:709.284742pt;}
.y10b{bottom:709.486870pt;}
.y216{bottom:710.205564pt;}
.y132{bottom:710.783006pt;}
.ya5{bottom:712.866667pt;}
.y17c{bottom:715.476000pt;}
.y1a4{bottom:717.082667pt;}
.y1a9{bottom:721.203889pt;}
.y1aa{bottom:721.204000pt;}
.y41{bottom:723.109333pt;}
.y80{bottom:725.586033pt;}
.y10c{bottom:726.389639pt;}
.y26{bottom:727.123633pt;}
.y140{bottom:730.763638pt;}
.y14c{bottom:731.861838pt;}
.y1eb{bottom:731.866667pt;}
.y5e{bottom:734.109333pt;}
.y9{bottom:734.242480pt;}
.y130{bottom:734.247893pt;}
.y150{bottom:734.526667pt;}
.y16e{bottom:735.308000pt;}
.y165{bottom:740.297333pt;}
.ybd{bottom:742.913333pt;}
.y149{bottom:746.753333pt;}
.y171{bottom:749.850667pt;}
.yba{bottom:750.980000pt;}
.y40{bottom:751.172533pt;}
.y160{bottom:751.368000pt;}
.y1a2{bottom:753.317756pt;}
.y10a{bottom:756.117333pt;}
.y25{bottom:757.123633pt;}
.ya8{bottom:757.492000pt;}
.y1e1{bottom:760.778667pt;}
.y1c5{bottom:760.880000pt;}
.y5d{bottom:762.109333pt;}
.y8{bottom:766.480000pt;}
.yf6{bottom:771.933333pt;}
.y1ea{bottom:773.876000pt;}
.y163{bottom:775.809333pt;}
.ye7{bottom:777.110667pt;}
.y14d{bottom:777.220000pt;}
.ya6{bottom:779.398667pt;}
.y3f{bottom:781.172533pt;}
.y17a{bottom:781.281333pt;}
.y1d0{bottom:781.409333pt;}
.y108{bottom:782.113333pt;}
.y1d8{bottom:783.934667pt;}
.y1c6{bottom:785.632619pt;}
.y24{bottom:787.123633pt;}
.y1dd{bottom:787.232000pt;}
.y5c{bottom:790.109333pt;}
.y17b{bottom:792.590648pt;}
.y15d{bottom:794.685407pt;}
.y14a{bottom:795.030632pt;}
.y7{bottom:799.200000pt;}
.y131{bottom:799.881779pt;}
.y16b{bottom:801.008000pt;}
.y133{bottom:802.325311pt;}
.y18c{bottom:807.008000pt;}
.y13e{bottom:809.474667pt;}
.y3e{bottom:811.109333pt;}
.y20b{bottom:814.258667pt;}
.y152{bottom:816.437793pt;}
.y23{bottom:817.123633pt;}
.y5b{bottom:818.109333pt;}
.y6{bottom:821.120000pt;}
.y11b{bottom:824.397333pt;}
.y135{bottom:826.725333pt;}
.y166{bottom:831.384991pt;}
.y97{bottom:833.174667pt;}
.y201{bottom:834.396000pt;}
.y5{bottom:835.840000pt;}
.y195{bottom:836.936293pt;}
.y1f0{bottom:837.877471pt;}
.y3d{bottom:839.172533pt;}
.y16c{bottom:839.628164pt;}
.y14b{bottom:841.625333pt;}
.y1fd{bottom:845.693575pt;}
.y5a{bottom:846.109333pt;}
.y1e5{bottom:851.343646pt;}
.y15c{bottom:853.938667pt;}
.y120{bottom:858.604000pt;}
.y20c{bottom:858.781773pt;}
.y11c{bottom:860.424873pt;}
.yaa{bottom:860.890667pt;}
.y188{bottom:861.675502pt;}
.y142{bottom:862.913333pt;}
.yde{bottom:862.926060pt;}
.y12a{bottom:864.703737pt;}
.y1d6{bottom:865.214113pt;}
.y175{bottom:865.334667pt;}
.yc3{bottom:865.545811pt;}
.ya4{bottom:865.674667pt;}
.y3c{bottom:868.586033pt;}
.y22{bottom:870.090733pt;}
.ya0{bottom:870.481333pt;}
.y3{bottom:872.956000pt;}
.y4{bottom:872.960000pt;}
.y59{bottom:873.586033pt;}
.y7f{bottom:874.109333pt;}
.y1c3{bottom:875.629333pt;}
.y106{bottom:878.727631pt;}
.y1c0{bottom:882.103808pt;}
.y1b1{bottom:884.881333pt;}
.y12c{bottom:887.409333pt;}
.y17e{bottom:890.415203pt;}
.y1a1{bottom:892.816000pt;}
.y1b0{bottom:893.790667pt;}
.y1ad{bottom:894.397333pt;}
.y1c8{bottom:894.524000pt;}
.y136{bottom:896.264000pt;}
.ya3{bottom:896.868000pt;}
.ya2{bottom:897.407803pt;}
.y1f1{bottom:899.072293pt;}
.y1ab{bottom:899.272792pt;}
.y115{bottom:899.319078pt;}
.y1c9{bottom:899.406667pt;}
.yf8{bottom:899.686667pt;}
.y7e{bottom:902.109333pt;}
.y151{bottom:904.197333pt;}
.y33{bottom:905.073833pt;}
.y129{bottom:905.185333pt;}
.y17d{bottom:905.596000pt;}
.y1d4{bottom:908.276000pt;}
.y105{bottom:910.072000pt;}
.y1d7{bottom:910.128000pt;}
.y1a0{bottom:913.112000pt;}
.y1ef{bottom:913.606667pt;}
.ydf{bottom:920.575345pt;}
.ye0{bottom:921.085333pt;}
.yff{bottom:921.096050pt;}
.yc2{bottom:922.040000pt;}
.y3b{bottom:924.109333pt;}
.y16d{bottom:924.776000pt;}
.y118{bottom:924.913333pt;}
.y2{bottom:925.035840pt;}
.y100{bottom:925.810793pt;}
.y21{bottom:927.090733pt;}
.y7d{bottom:929.586033pt;}
.yfa{bottom:931.254667pt;}
.ya1{bottom:931.657106pt;}
.y14e{bottom:932.824000pt;}
.y1f3{bottom:933.741727pt;}
.y179{bottom:935.502667pt;}
.y58{bottom:937.585500pt;}
.y15e{bottom:938.378667pt;}
.y121{bottom:945.559084pt;}
.y137{bottom:950.146923pt;}
.y32{bottom:951.073833pt;}
.y196{bottom:956.799683pt;}
.y6b{bottom:957.585500pt;}
.y1bf{bottom:957.592072pt;}
.y1b2{bottom:957.593065pt;}
.y9b{bottom:958.616000pt;}
.y9c{bottom:959.081333pt;}
.ye2{bottom:959.589484pt;}
.y1fe{bottom:959.953333pt;}
.y11e{bottom:959.977333pt;}
.y101{bottom:962.164983pt;}
.ye1{bottom:966.374148pt;}
.yc0{bottom:967.041333pt;}
.y11f{bottom:967.978667pt;}
.y1f6{bottom:969.104000pt;}
.yfe{bottom:969.476000pt;}
.y134{bottom:969.590667pt;}
.y143{bottom:969.602667pt;}
.y9e{bottom:970.234667pt;}
.y1d5{bottom:971.194667pt;}
.y1ac{bottom:974.452043pt;}
.y19f{bottom:974.453377pt;}
.y1f5{bottom:977.494667pt;}
.y12b{bottom:982.068133pt;}
.yfd{bottom:983.302667pt;}
.y14f{bottom:983.732000pt;}
.y1be{bottom:983.897340pt;}
.y20{bottom:984.090200pt;}
.y1e7{bottom:984.916000pt;}
.y177{bottom:985.129333pt;}
.ybb{bottom:985.988686pt;}
.ydd{bottom:988.054667pt;}
.y31{bottom:988.108800pt;}
.y1{bottom:990.640000pt;}
.y9f{bottom:990.965333pt;}
.y1c4{bottom:992.134667pt;}
.y1af{bottom:996.022667pt;}
.y1e6{bottom:998.628244pt;}
.y57{bottom:1002.108800pt;}
.y1c7{bottom:1002.768990pt;}
.y1d3{bottom:1003.677333pt;}
.y19e{bottom:1005.502667pt;}
.yf7{bottom:1007.424000pt;}
.y193{bottom:1007.674667pt;}
.y116{bottom:1008.035597pt;}
.y1f7{bottom:1009.601333pt;}
.y197{bottom:1010.521220pt;}
.y1f2{bottom:1011.024983pt;}
.yb7{bottom:1011.353333pt;}
.y9a{bottom:1011.386667pt;}
.y11d{bottom:1013.366667pt;}
.y99{bottom:1016.917333pt;}
.y102{bottom:1017.160000pt;}
.y117{bottom:1017.588000pt;}
.y69{bottom:1021.585500pt;}
.y17f{bottom:1023.626667pt;}
.y1d1{bottom:1024.324000pt;}
.y194{bottom:1027.252727pt;}
.y20d{bottom:1029.322428pt;}
.y178{bottom:1029.749333pt;}
.y56{bottom:1030.108800pt;}
.y107{bottom:1031.570667pt;}
.y104{bottom:1037.098667pt;}
.y1c2{bottom:1037.696000pt;}
.y9d{bottom:1040.450667pt;}
.y192{bottom:1041.457330pt;}
.y1f{bottom:1047.530200pt;}
.yf9{bottom:1052.024000pt;}
.ybc{bottom:1052.702178pt;}
.y103{bottom:1055.068000pt;}
.ybf{bottom:1056.199102pt;}
.y55{bottom:1058.108800pt;}
.yab{bottom:1058.144000pt;}
.y176{bottom:1061.474667pt;}
.y18f{bottom:1064.136000pt;}
.y1f4{bottom:1065.221333pt;}
.y98{bottom:1068.029333pt;}
.h4{height:26.660156pt;}
.h1a{height:32.280378pt;}
.h5{height:35.617969pt;}
.ha{height:39.030469pt;}
.hb{height:42.656250pt;}
.h3d{height:45.653708pt;}
.h10{height:45.937500pt;}
.hf{height:46.468750pt;}
.he{height:46.593750pt;}
.h17{height:47.812500pt;}
.h9{height:47.923125pt;}
.hd{height:48.150921pt;}
.h7{height:52.080000pt;}
.h3{height:52.758125pt;}
.h31{height:54.359375pt;}
.h6{height:56.648125pt;}
.hc{height:57.781250pt;}
.h8{height:61.016875pt;}
.h12{height:65.280283pt;}
.h3a{height:65.280316pt;}
.h2a{height:65.280385pt;}
.h2d{height:65.280423pt;}
.h38{height:65.280446pt;}
.h15{height:65.280457pt;}
.h13{height:65.280488pt;}
.h1f{height:65.280507pt;}
.h28{height:65.280519pt;}
.h2b{height:65.280527pt;}
.h1c{height:65.280552pt;}
.h39{height:65.280554pt;}
.h36{height:65.280563pt;}
.h33{height:65.280565pt;}
.h2c{height:65.280569pt;}
.h14{height:65.280572pt;}
.h2e{height:65.280593pt;}
.h32{height:65.280595pt;}
.h1e{height:65.280599pt;}
.h21{height:65.280606pt;}
.h22{height:65.280611pt;}
.h1b{height:65.280612pt;}
.h3c{height:65.280639pt;}
.h34{height:65.280675pt;}
.h37{height:65.280706pt;}
.h23{height:65.280722pt;}
.h3b{height:65.281014pt;}
.h24{height:65.281744pt;}
.h29{height:65.282122pt;}
.h30{height:65.282133pt;}
.h2f{height:65.282861pt;}
.h35{height:65.283810pt;}
.h1d{height:65.284913pt;}
.h26{height:65.292561pt;}
.h20{height:66.088796pt;}
.h18{height:66.937500pt;}
.h19{height:86.062500pt;}
.h2{height:122.295625pt;}
.h16{height:123.581457pt;}
.h27{height:136.277528pt;}
.h25{height:139.681180pt;}
.h11{height:1122.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.701333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:794.666667pt;}
.w5{width:1587.333333pt;}
.w4{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x53{left:39.685067pt;}
.x11{left:53.152000pt;}
.x12{left:64.261000pt;}
.x6e{left:73.886000pt;}
.x14{left:77.152000pt;}
.x10f{left:79.370133pt;}
.x52{left:81.397333pt;}
.x4c{left:83.034000pt;}
.x13{left:89.323900pt;}
.x75{left:91.153867pt;}
.x7d{left:94.266620pt;}
.x26{left:95.465333pt;}
.x56{left:98.820133pt;}
.x94{left:100.116000pt;}
.x15{left:101.152000pt;}
.xe2{left:102.130667pt;}
.x96{left:103.797467pt;}
.x98{left:105.760806pt;}
.x16{left:108.386400pt;}
.xa0{left:109.640000pt;}
.x17{left:110.702000pt;}
.x6d{left:112.284667pt;}
.x5{left:113.440000pt;}
.xd6{left:116.120323pt;}
.x6f{left:119.245467pt;}
.x81{left:123.352533pt;}
.xaf{left:127.005733pt;}
.x5c{left:128.106933pt;}
.x29{left:129.229003pt;}
.x5d{left:131.835867pt;}
.xe0{left:135.460497pt;}
.xa8{left:136.730667pt;}
.x4b{left:138.549227pt;}
.xe9{left:140.238071pt;}
.x1a{left:143.096000pt;}
.x21{left:144.617333pt;}
.x20{left:146.809333pt;}
.x4a{left:149.669333pt;}
.xd5{left:151.162494pt;}
.xa7{left:152.646293pt;}
.x19{left:154.672000pt;}
.x5a{left:157.304000pt;}
.xa2{left:158.354805pt;}
.x64{left:159.969462pt;}
.x58{left:162.557039pt;}
.xb4{left:164.952880pt;}
.x9f{left:166.983253pt;}
.xda{left:169.575680pt;}
.x2a{left:171.576000pt;}
.x63{left:172.696674pt;}
.x1e{left:173.771421pt;}
.x60{left:175.579033pt;}
.x8a{left:179.342465pt;}
.x5b{left:181.166795pt;}
.x8e{left:182.840661pt;}
.xcf{left:187.016000pt;}
.xd4{left:188.640000pt;}
.xc5{left:191.770667pt;}
.xb9{left:192.696459pt;}
.x2{left:194.811697pt;}
.x28{left:197.062667pt;}
.xdf{left:198.976796pt;}
.xc{left:200.792800pt;}
.xef{left:202.308673pt;}
.xc8{left:205.206667pt;}
.x54{left:209.977333pt;}
.x55{left:211.810247pt;}
.x88{left:214.390405pt;}
.xbc{left:219.038667pt;}
.xbb{left:220.019953pt;}
.xd1{left:221.321333pt;}
.xd{left:222.401440pt;}
.x2b{left:224.512835pt;}
.xac{left:226.301333pt;}
.x1b{left:228.520000pt;}
.xdb{left:229.972000pt;}
.xe8{left:232.492235pt;}
.xa{left:233.440000pt;}
.xc1{left:238.518667pt;}
.xb{left:239.515600pt;}
.xe1{left:241.184000pt;}
.x3{left:242.323809pt;}
.xa1{left:243.360000pt;}
.xcd{left:246.114667pt;}
.x95{left:247.589321pt;}
.xe4{left:249.153333pt;}
.x8b{left:250.120000pt;}
.xbe{left:253.990508pt;}
.x22{left:255.360000pt;}
.xc6{left:259.040805pt;}
.xbd{left:260.162667pt;}
.x6c{left:261.398667pt;}
.x70{left:267.114755pt;}
.x27{left:268.286667pt;}
.x71{left:269.530772pt;}
.x5f{left:271.111875pt;}
.x1c{left:274.476000pt;}
.xf1{left:275.465405pt;}
.xed{left:276.557534pt;}
.x59{left:277.612000pt;}
.xb5{left:278.741333pt;}
.xdc{left:280.840000pt;}
.x65{left:282.369333pt;}
.x7c{left:284.128000pt;}
.x57{left:285.642532pt;}
.xbf{left:289.280000pt;}
.x9{left:290.229360pt;}
.x2c{left:291.669033pt;}
.xe{left:293.127280pt;}
.x7{left:295.840000pt;}
.x6b{left:296.994667pt;}
.xe7{left:299.459357pt;}
.x23{left:300.720000pt;}
.xf{left:303.053200pt;}
.xdd{left:304.393333pt;}
.xc7{left:311.014667pt;}
.x67{left:313.626667pt;}
.x61{left:320.595242pt;}
.x8{left:321.824160pt;}
.xc9{left:323.248000pt;}
.xb7{left:324.174759pt;}
.x5e{left:331.198694pt;}
.xc0{left:334.638667pt;}
.xae{left:337.581333pt;}
.xde{left:341.444000pt;}
.xb6{left:343.262667pt;}
.x62{left:344.896511pt;}
.x4d{left:346.102000pt;}
.xe3{left:347.256000pt;}
.x8c{left:348.758667pt;}
.xd3{left:353.771256pt;}
.x10{left:357.809000pt;}
.x42{left:359.216000pt;}
.xa9{left:360.425333pt;}
.x8d{left:362.354667pt;}
.x6a{left:363.569333pt;}
.x89{left:365.552835pt;}
.xd2{left:368.741333pt;}
.xba{left:370.627676pt;}
.xaa{left:374.870667pt;}
.x2f{left:375.860000pt;}
.xb8{left:377.136000pt;}
.x18{left:383.942667pt;}
.x1f{left:386.970667pt;}
.x1{left:396.880000pt;}
.x25{left:400.582667pt;}
.x97{left:407.816000pt;}
.xce{left:409.445333pt;}
.x74{left:411.834667pt;}
.x1d{left:415.036000pt;}
.x7e{left:416.206667pt;}
.xb1{left:420.342667pt;}
.xad{left:430.693333pt;}
.x4e{left:432.735733pt;}
.x3e{left:435.000000pt;}
.x2e{left:437.988589pt;}
.x69{left:439.842059pt;}
.x49{left:443.881333pt;}
.xab{left:450.305333pt;}
.x6{left:454.960000pt;}
.x24{left:459.966667pt;}
.xb0{left:461.936000pt;}
.x7f{left:464.214549pt;}
.x44{left:467.960720pt;}
.xc2{left:468.985637pt;}
.x72{left:470.760000pt;}
.x32{left:472.785333pt;}
.x2d{left:475.890667pt;}
.xf0{left:477.786081pt;}
.x31{left:479.964000pt;}
.x4f{left:483.806667pt;}
.x73{left:487.634667pt;}
.x80{left:489.156000pt;}
.xa5{left:492.842667pt;}
.xcc{left:495.828000pt;}
.x46{left:506.689333pt;}
.x7b{left:512.685333pt;}
.x87{left:515.280000pt;}
.xcb{left:519.195457pt;}
.x68{left:520.440000pt;}
.xa3{left:525.295129pt;}
.x93{left:527.243153pt;}
.x35{left:529.485547pt;}
.xd8{left:542.989804pt;}
.x99{left:543.881333pt;}
.x43{left:548.867467pt;}
.x4{left:551.520000pt;}
.xca{left:554.011284pt;}
.xee{left:555.661788pt;}
.xd0{left:556.725333pt;}
.xc3{left:560.820023pt;}
.x40{left:562.875333pt;}
.x92{left:567.102667pt;}
.x86{left:568.012000pt;}
.xe6{left:571.165333pt;}
.x30{left:572.238667pt;}
.x33{left:573.576000pt;}
.xd9{left:574.873333pt;}
.xb2{left:581.001333pt;}
.xb3{left:586.099697pt;}
.x7a{left:591.296000pt;}
.x34{left:593.981446pt;}
.xd7{left:596.202492pt;}
.xec{left:602.693333pt;}
.x9e{left:604.585859pt;}
.x51{left:607.134667pt;}
.x79{left:609.192000pt;}
.x84{left:611.940000pt;}
.x76{left:613.005535pt;}
.x3b{left:614.360000pt;}
.xe5{left:615.734667pt;}
.x85{left:616.697602pt;}
.x3d{left:617.656000pt;}
.x45{left:622.892000pt;}
.x77{left:624.608341pt;}
.x3c{left:630.415100pt;}
.x37{left:639.425333pt;}
.x9d{left:640.700000pt;}
.x9b{left:641.800000pt;}
.x39{left:643.500000pt;}
.xa6{left:653.125333pt;}
.x50{left:655.390667pt;}
.xa4{left:659.045333pt;}
.x8f{left:662.957333pt;}
.x90{left:668.321333pt;}
.x38{left:671.078715pt;}
.x48{left:684.326667pt;}
.x83{left:687.319443pt;}
.x41{left:689.597467pt;}
.x3f{left:691.554667pt;}
.x9a{left:692.693832pt;}
.xea{left:700.501199pt;}
.x91{left:703.578667pt;}
.x78{left:710.216000pt;}
.xeb{left:715.571733pt;}
.x66{left:718.100000pt;}
.x47{left:721.671467pt;}
.x3a{left:724.822667pt;}
.x9c{left:727.569333pt;}
.x82{left:737.257333pt;}
.x36{left:740.336000pt;}
.xc4{left:763.318667pt;}
.xf3{left:836.570559pt;}
.xf2{left:854.924914pt;}
.xfa{left:871.098010pt;}
.xf7{left:875.988600pt;}
.x109{left:877.769200pt;}
.x10d{left:910.006400pt;}
.xf8{left:941.022098pt;}
.x105{left:945.632667pt;}
.x103{left:969.738800pt;}
.xf4{left:975.105607pt;}
.x10a{left:1150.761467pt;}
.x104{left:1160.153733pt;}
.xf5{left:1192.600024pt;}
.xff{left:1225.842773pt;}
.x108{left:1230.034533pt;}
.xfb{left:1238.526667pt;}
.x101{left:1262.700000pt;}
.x10e{left:1279.772533pt;}
.x102{left:1345.162800pt;}
.x107{left:1359.363733pt;}
.x100{left:1395.960000pt;}
.x10b{left:1400.661467pt;}
.xf6{left:1403.609047pt;}
.xf9{left:1444.321874pt;}
.x10c{left:1454.173333pt;}
.xfc{left:1479.065333pt;}
.x106{left:1484.333333pt;}
.xfe{left:1517.455307pt;}
.xfd{left:1535.546667pt;}
}




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