
    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_c2960c4caf9884b9a81c9524.woff')format("woff");}.ff1{font-family:ff1;line-height:0.984000;font-style:normal;font-weight: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_eeb0a8251af9f7b3cded0aae.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_26af1fb57f1f1148e9cd65af.woff')format("woff");}.ff3{font-family:ff3;line-height:0.984000;font-style:normal;font-weight: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_1d7d9fe17bc807b62cedfc87.woff')format("woff");}.ff4{font-family:ff4;line-height:0.990000;font-style:normal;font-weight: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_deb5a51cd3e5aee0756793fe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999000;font-style:normal;font-weight: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_156a7a6017220bb9c522cf2e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.747000;font-style:normal;font-weight: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_ee8622a82ebcbb95560d3b00.woff')format("woff");}.ff7{font-family:ff7;line-height:0.940000;font-style:normal;font-weight: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_a9cad2f528b5c3c94f27e6ac.woff')format("woff");}.ff8{font-family:ff8;line-height:0.943000;font-style:normal;font-weight: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_36a1b79bf7b4f6c893f3ffd7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.747000;font-style:normal;font-weight: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_9cca59402afeec4af124068b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.150000;font-style:normal;font-weight: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_3e843e7aef4e4e2dc415459b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.915000;font-style:normal;font-weight: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_6f9891aacfa83a310575fea8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.131000;font-style:normal;font-weight: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_92195580117a031bc4a3e027.woff')format("woff");}.ffd{font-family:ffd;line-height:0.984000;font-style:normal;font-weight: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_ed7c8002cf0a38fbba697e2d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.137000;font-style:normal;font-weight: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_d67e91a2fd49c25c5ddbfea5.woff')format("woff");}.fff{font-family:fff;line-height:1.045000;font-style:normal;font-weight: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_b3efe7cfffa3ee2c1ef0be72.woff')format("woff");}.ff10{font-family:ff10;line-height:0.999000;font-style:normal;font-weight: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_a4183a1f0c95dc3beafa65e6.woff')format("woff");}.ff11{font-family:ff11;line-height:0.984000;font-style:normal;font-weight: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_146f6e2a2ded2874d85286ab.woff')format("woff");}.ff12{font-family:ff12;line-height:1.045000;font-style:normal;font-weight: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_fd33588f91793855a233f6ac.woff')format("woff");}.ff13{font-family:ff13;line-height:1.028000;font-style:normal;font-weight: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_146f6e2a2ded2874d85286ab.woff')format("woff");}.ff14{font-family:ff14;line-height:1.045000;font-style:normal;font-weight: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_a4183a1f0c95dc3beafa65e6.woff')format("woff");}.ff15{font-family:ff15;line-height:0.984000;font-style:normal;font-weight: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_b3efe7cfffa3ee2c1ef0be72.woff')format("woff");}.ff16{font-family:ff16;line-height:0.999000;font-style:normal;font-weight: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_c05311ace2cca415e44d2211.woff')format("woff");}.ff17{font-family:ff17;line-height:0.940000;font-style:normal;font-weight: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_f27c14b10f1ed45134abc7c1.woff')format("woff");}.ff18{font-family:ff18;line-height:0.940000;font-style:normal;font-weight: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_b3efe7cfffa3ee2c1ef0be72.woff')format("woff");}.ff19{font-family:ff19;line-height:0.999000;font-style:normal;font-weight: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_a4183a1f0c95dc3beafa65e6.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.984000;font-style:normal;font-weight: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_146f6e2a2ded2874d85286ab.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.045000;font-style:normal;font-weight: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_bf547745417f5d0e9bcf0916.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.730000;font-style:normal;font-weight: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_e4f9d1287a5005bf65172e66.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.733000;font-style:normal;font-weight: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_146f6e2a2ded2874d85286ab.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.045000;font-style:normal;font-weight: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_a4183a1f0c95dc3beafa65e6.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.984000;font-style:normal;font-weight: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_b3efe7cfffa3ee2c1ef0be72.woff')format("woff");}.ff20{font-family:ff20;line-height:0.999000;font-style:normal;font-weight: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_9c0e370cdf248243374c5971.woff')format("woff");}.ff21{font-family:ff21;line-height:0.697400;font-style:normal;font-weight: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_f27c14b10f1ed45134abc7c1.woff')format("woff");}.ff22{font-family:ff22;line-height:0.940000;font-style:normal;font-weight: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_554391e4248e435577425242.woff')format("woff");}.ff23{font-family:ff23;line-height:0.692000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m40{transform:matrix(0.237646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237646,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.245124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245124,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.246187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246187,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246579,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.246726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246726,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247602,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248076,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248224,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248351,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248483,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m4{transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);}
.mb0{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);}
.m63{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m94{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);}
.m68{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m8{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m27{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250633,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250901,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251772,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252116,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252707,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252786,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253498,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.254726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254726,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-39.540000px;}
.v6{vertical-align:-36.600000px;}
.v7{vertical-align:-27.540000px;}
.v5{vertical-align:-21.378000px;}
.v4{vertical-align:-12.600000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.160000px;}
.v2{vertical-align:9.600000px;}
.v3{vertical-align:12.000000px;}
.v1{vertical-align:18.000000px;}
.va{vertical-align:35.039400px;}
.vb{vertical-align:36.492600px;}
.ls4e{letter-spacing:-7.536000px;}
.ls1d{letter-spacing:-1.638000px;}
.ls83{letter-spacing:-1.467320px;}
.ls5a{letter-spacing:-1.386000px;}
.ls5e{letter-spacing:-1.260000px;}
.ls1a{letter-spacing:-1.008000px;}
.ls60{letter-spacing:-0.969000px;}
.ls64{letter-spacing:-0.912000px;}
.ls5b{letter-spacing:-0.882000px;}
.ls7e{letter-spacing:-0.855000px;}
.ls41{letter-spacing:-0.819000px;}
.ls5f{letter-spacing:-0.792000px;}
.ls5c{letter-spacing:-0.756000px;}
.ls7c{letter-spacing:-0.741000px;}
.ls2c{letter-spacing:-0.693000px;}
.ls40{letter-spacing:-0.684000px;}
.ls82{letter-spacing:-0.677225px;}
.ls59{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.630000px;}
.ls3f{letter-spacing:-0.570000px;}
.ls30{letter-spacing:-0.567000px;}
.ls7f{letter-spacing:-0.507919px;}
.ls1b{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.456000px;}
.ls21{letter-spacing:-0.441000px;}
.ls61{letter-spacing:-0.399000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls65{letter-spacing:-0.342000px;}
.ls80{letter-spacing:-0.338612px;}
.ls20{letter-spacing:-0.315000px;}
.ls7d{letter-spacing:-0.285000px;}
.ls1e{letter-spacing:-0.252000px;}
.ls84{letter-spacing:-0.225742px;}
.ls22{letter-spacing:-0.189000px;}
.ls63{letter-spacing:-0.171000px;}
.ls4{letter-spacing:-0.168000px;}
.ls1c{letter-spacing:-0.126000px;}
.ls62{letter-spacing:-0.114000px;}
.ls5d{letter-spacing:-0.063000px;}
.ls18{letter-spacing:-0.057000px;}
.ls81{letter-spacing:-0.056435px;}
.ls2{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.000089px;}
.ls0{letter-spacing:0.010200px;}
.ls6d{letter-spacing:0.056435px;}
.ls76{letter-spacing:0.057000px;}
.lsb{letter-spacing:0.063000px;}
.ls7{letter-spacing:0.126000px;}
.ls71{letter-spacing:0.169306px;}
.ls8{letter-spacing:0.189000px;}
.ls70{letter-spacing:0.197524px;}
.ls73{letter-spacing:0.199500px;}
.ls57{letter-spacing:0.209475px;}
.ls6e{letter-spacing:0.225742px;}
.ls53{letter-spacing:0.228000px;}
.ls23{letter-spacing:0.250426px;}
.ls16{letter-spacing:0.252000px;}
.ls34{letter-spacing:0.285000px;}
.ls9{letter-spacing:0.315000px;}
.ls3{letter-spacing:0.336000px;}
.ls50{letter-spacing:0.340200px;}
.ls7b{letter-spacing:0.370500px;}
.ls78{letter-spacing:0.374893px;}
.lsa{letter-spacing:0.378000px;}
.ls77{letter-spacing:0.378759px;}
.ls2f{letter-spacing:0.396900px;}
.ls33{letter-spacing:0.399000px;}
.ls32{letter-spacing:0.401850px;}
.ls24{letter-spacing:0.409500px;}
.lsf{letter-spacing:0.441000px;}
.ls69{letter-spacing:0.451483px;}
.ls31{letter-spacing:0.456000px;}
.ls14{letter-spacing:0.462000px;}
.ls6f{letter-spacing:0.469830px;}
.ls68{letter-spacing:0.474062px;}
.ls55{letter-spacing:0.495900px;}
.ls54{letter-spacing:0.496768px;}
.ls4f{letter-spacing:0.504000px;}
.ls56{letter-spacing:0.513000px;}
.lsc{letter-spacing:0.567000px;}
.ls10{letter-spacing:0.594000px;}
.ls6b{letter-spacing:0.620789px;}
.ls28{letter-spacing:0.630000px;}
.ls6a{letter-spacing:0.643370px;}
.ls29{letter-spacing:0.644155px;}
.ls6{letter-spacing:0.693000px;}
.ls75{letter-spacing:0.712500px;}
.ls51{letter-spacing:0.724500px;}
.ls52{letter-spacing:0.726000px;}
.ls74{letter-spacing:0.741000px;}
.ls13{letter-spacing:0.756000px;}
.ls79{letter-spacing:0.769500px;}
.ls26{letter-spacing:0.819000px;}
.ls5{letter-spacing:0.882000px;}
.lse{letter-spacing:0.945000px;}
.ls35{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.039500px;}
.ls6c{letter-spacing:1.045477px;}
.ls25{letter-spacing:1.071000px;}
.ls15{letter-spacing:1.134000px;}
.ls3d{letter-spacing:1.165500px;}
.ls3c{letter-spacing:1.197000px;}
.ls3a{letter-spacing:1.228500px;}
.ls38{letter-spacing:1.260000px;}
.ls2e{letter-spacing:1.323000px;}
.ls12{letter-spacing:1.417500px;}
.ls36{letter-spacing:1.449000px;}
.ls67{letter-spacing:1.466325px;}
.ls66{letter-spacing:1.466824px;}
.ls37{letter-spacing:1.512000px;}
.ls3b{letter-spacing:1.543500px;}
.ls39{letter-spacing:1.575000px;}
.ls2a{letter-spacing:1.638000px;}
.ls2b{letter-spacing:1.701000px;}
.ls27{letter-spacing:1.890000px;}
.ls7a{letter-spacing:2.417400px;}
.ls1{letter-spacing:3.000000px;}
.ls3e{letter-spacing:3.986659px;}
.ls17{letter-spacing:4.197461px;}
.ls11{letter-spacing:4.714820px;}
.ls48{letter-spacing:229.260000px;}
.ls49{letter-spacing:243.300000px;}
.ls4b{letter-spacing:249.660000px;}
.ls4a{letter-spacing:268.980000px;}
.ls4c{letter-spacing:315.360000px;}
.ls46{letter-spacing:347.880000px;}
.ls45{letter-spacing:351.660000px;}
.ls4d{letter-spacing:445.560000px;}
.ls58{letter-spacing:507.181200px;}
.ls43{letter-spacing:590.700000px;}
.ls47{letter-spacing:591.060000px;}
.ls44{letter-spacing:768.600000px;}
.ls42{letter-spacing:1920.840000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 rgb(0,173,239),0 0.015em rgb(0,173,239),0.015em 0 rgb(0,173,239),0 -0.015em  rgb(0,173,239);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,173,239);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9a{word-spacing:-462.240000px;}
.ws96{word-spacing:-379.680000px;}
.ws9f{word-spacing:-315.360000px;}
.ws9e{word-spacing:-268.980000px;}
.ws98{word-spacing:-259.980000px;}
.ws97{word-spacing:-234.300000px;}
.ws99{word-spacing:-207.780000px;}
.ws53{word-spacing:-17.640000px;}
.ws56{word-spacing:-17.388000px;}
.ws1f{word-spacing:-17.094000px;}
.ws20{word-spacing:-16.962000px;}
.ws74{word-spacing:-16.758000px;}
.ws57{word-spacing:-16.695000px;}
.ws19{word-spacing:-16.632000px;}
.ws1d{word-spacing:-16.317000px;}
.ws52{word-spacing:-16.191000px;}
.ws22{word-spacing:-16.002000px;}
.ws51{word-spacing:-15.813000px;}
.ws1b{word-spacing:-15.750000px;}
.ws1c{word-spacing:-15.435000px;}
.ws1a{word-spacing:-15.372000px;}
.ws21{word-spacing:-15.309000px;}
.wsa0{word-spacing:-15.120000px;}
.ws6f{word-spacing:-15.000000px;}
.wsd1{word-spacing:-14.962500px;}
.ws75{word-spacing:-14.931000px;}
.wsd0{word-spacing:-14.763000px;}
.wsd2{word-spacing:-14.649000px;}
.wsa1{word-spacing:-14.364000px;}
.ws73{word-spacing:-14.250000px;}
.ws8{word-spacing:-14.178000px;}
.wsc7{word-spacing:-14.108850px;}
.wscf{word-spacing:-13.883108px;}
.ws76{word-spacing:-13.800000px;}
.wsc9{word-spacing:-13.770238px;}
.ws81{word-spacing:-13.740000px;}
.wsc6{word-spacing:-13.600931px;}
.wsa{word-spacing:-13.500000px;}
.ws71{word-spacing:-13.395000px;}
.ws5{word-spacing:-13.344000px;}
.wsa4{word-spacing:-13.338000px;}
.wsa2{word-spacing:-13.281000px;}
.ws87{word-spacing:-13.260000px;}
.ws7a{word-spacing:-12.780000px;}
.wscc{word-spacing:-12.641530px;}
.ws54{word-spacing:-12.348000px;}
.wsc5{word-spacing:-12.153825px;}
.ws78{word-spacing:-11.880000px;}
.ws1e{word-spacing:-11.812500px;}
.ws4{word-spacing:-11.676000px;}
.wscd{word-spacing:-11.627227px;}
.ws9{word-spacing:-11.508000px;}
.wsd3{word-spacing:-11.457000px;}
.ws55{word-spacing:-11.421900px;}
.wscb{word-spacing:-11.225120px;}
.wsa3{word-spacing:-11.183400px;}
.ws72{word-spacing:-11.089350px;}
.ws3{word-spacing:-11.088000px;}
.wsca{word-spacing:-11.055812px;}
.wsce{word-spacing:-11.051580px;}
.ws2{word-spacing:-11.004000px;}
.wsa5{word-spacing:-10.896975px;}
.ws70{word-spacing:-10.687500px;}
.wsc8{word-spacing:-10.581750px;}
.ws84{word-spacing:-10.200000px;}
.ws7{word-spacing:-10.008000px;}
.ws7b{word-spacing:-9.540000px;}
.ws7f{word-spacing:-9.480000px;}
.ws82{word-spacing:-9.240000px;}
.ws85{word-spacing:-8.880000px;}
.ws6{word-spacing:-8.757000px;}
.ws7e{word-spacing:-8.580000px;}
.ws65{word-spacing:-7.875000px;}
.ws79{word-spacing:-6.480000px;}
.ws7c{word-spacing:-4.320000px;}
.ws83{word-spacing:-4.200000px;}
.wsab{word-spacing:-4.092000px;}
.ws2b{word-spacing:-4.032000px;}
.ws31{word-spacing:-3.969000px;}
.ws50{word-spacing:-3.906000px;}
.ws3b{word-spacing:-3.843000px;}
.ws8b{word-spacing:-3.648000px;}
.ws12{word-spacing:-3.591000px;}
.wsdb{word-spacing:-3.555430px;}
.wsbf{word-spacing:-3.534000px;}
.ws93{word-spacing:-3.528000px;}
.ws23{word-spacing:-3.477000px;}
.ws8f{word-spacing:-3.465000px;}
.wsaa{word-spacing:-3.402000px;}
.ws0{word-spacing:-3.300000px;}
.ws45{word-spacing:-3.276000px;}
.ws3d{word-spacing:-3.087000px;}
.ws49{word-spacing:-3.024000px;}
.ws80{word-spacing:-3.000000px;}
.wse0{word-spacing:-2.934641px;}
.wsb0{word-spacing:-2.898000px;}
.wsd6{word-spacing:-2.850000px;}
.ws8c{word-spacing:-2.793000px;}
.wse1{word-spacing:-2.765335px;}
.wse7{word-spacing:-2.736000px;}
.wsac{word-spacing:-2.583000px;}
.ws77{word-spacing:-2.520000px;}
.ws40{word-spacing:-2.457000px;}
.ws16{word-spacing:-2.394000px;}
.ws24{word-spacing:-2.337000px;}
.wsc0{word-spacing:-2.280000px;}
.wsde{word-spacing:-2.257416px;}
.wsb2{word-spacing:-2.205000px;}
.wsda{word-spacing:-2.109000px;}
.ws7d{word-spacing:-2.100000px;}
.wsb4{word-spacing:-1.890000px;}
.wsd{word-spacing:-1.806000px;}
.wse3{word-spacing:-1.805933px;}
.wsc2{word-spacing:-1.767000px;}
.ws8e{word-spacing:-1.710000px;}
.ws5d{word-spacing:-1.701000px;}
.ws28{word-spacing:-1.653000px;}
.wsb8{word-spacing:-1.575000px;}
.ws4c{word-spacing:-1.449000px;}
.wsc4{word-spacing:-1.368000px;}
.ws5e{word-spacing:-1.323000px;}
.ws11{word-spacing:-1.311000px;}
.ws63{word-spacing:-1.197000px;}
.ws8d{word-spacing:-1.140000px;}
.ws41{word-spacing:-1.134000px;}
.ws47{word-spacing:-1.071000px;}
.ws27{word-spacing:-1.026000px;}
.ws4b{word-spacing:-1.008000px;}
.wsd9{word-spacing:-0.969000px;}
.ws4d{word-spacing:-0.945000px;}
.ws86{word-spacing:-0.900000px;}
.ws2d{word-spacing:-0.882000px;}
.wsb9{word-spacing:-0.819000px;}
.ws44{word-spacing:-0.756000px;}
.ws38{word-spacing:-0.630000px;}
.wsc3{word-spacing:-0.627000px;}
.wse9{word-spacing:-0.570000px;}
.wse6{word-spacing:-0.513000px;}
.ws8a{word-spacing:-0.456000px;}
.ws46{word-spacing:-0.441000px;}
.wseb{word-spacing:-0.399000px;}
.ws48{word-spacing:-0.378000px;}
.wsb{word-spacing:-0.336000px;}
.ws2e{word-spacing:-0.315000px;}
.ws3c{word-spacing:-0.252000px;}
.wsbd{word-spacing:-0.189000px;}
.wsdd{word-spacing:-0.169306px;}
.ws39{word-spacing:-0.126000px;}
.wse8{word-spacing:-0.114000px;}
.ws6d{word-spacing:-0.063000px;}
.ws6e{word-spacing:-0.047250px;}
.ws1{word-spacing:0.000000px;}
.wsc1{word-spacing:0.057000px;}
.wsbc{word-spacing:0.063000px;}
.ws34{word-spacing:0.126000px;}
.wse{word-spacing:0.168000px;}
.ws10{word-spacing:0.171000px;}
.ws3a{word-spacing:0.252000px;}
.ws37{word-spacing:0.315000px;}
.ws4e{word-spacing:0.330000px;}
.ws6b{word-spacing:0.378000px;}
.wsae{word-spacing:0.441000px;}
.wsec{word-spacing:0.456000px;}
.ws32{word-spacing:0.504000px;}
.wsdc{word-spacing:0.507919px;}
.ws33{word-spacing:0.567000px;}
.ws5f{word-spacing:0.630000px;}
.ws36{word-spacing:0.693000px;}
.ws25{word-spacing:0.741000px;}
.ws5b{word-spacing:0.756000px;}
.wsbb{word-spacing:0.792000px;}
.wsd8{word-spacing:0.798000px;}
.ws95{word-spacing:0.819000px;}
.ws60{word-spacing:0.882000px;}
.wsd7{word-spacing:0.912000px;}
.wsb7{word-spacing:0.945000px;}
.ws13{word-spacing:0.969000px;}
.ws2a{word-spacing:1.008000px;}
.ws3e{word-spacing:1.071000px;}
.wsd4{word-spacing:1.083000px;}
.ws5c{word-spacing:1.134000px;}
.ws6c{word-spacing:1.197000px;}
.ws4a{word-spacing:1.260000px;}
.ws61{word-spacing:1.323000px;}
.ws5a{word-spacing:1.386000px;}
.wsf{word-spacing:1.425000px;}
.ws91{word-spacing:1.449000px;}
.wsb3{word-spacing:1.512000px;}
.wsba{word-spacing:1.575000px;}
.ws35{word-spacing:1.638000px;}
.wsaf{word-spacing:1.701000px;}
.ws9c{word-spacing:1.728000px;}
.wsad{word-spacing:1.764000px;}
.wse5{word-spacing:1.862368px;}
.wsbe{word-spacing:1.995000px;}
.wsd5{word-spacing:2.052000px;}
.ws14{word-spacing:2.109000px;}
.ws3f{word-spacing:2.142000px;}
.ws43{word-spacing:2.205000px;}
.wsea{word-spacing:2.394000px;}
.ws4f{word-spacing:2.457000px;}
.ws94{word-spacing:2.520000px;}
.wse2{word-spacing:2.596028px;}
.ws62{word-spacing:2.709000px;}
.ws17{word-spacing:2.736000px;}
.ws30{word-spacing:2.772000px;}
.ws64{word-spacing:2.835000px;}
.ws29{word-spacing:2.850000px;}
.wsc{word-spacing:2.898000px;}
.ws90{word-spacing:2.961000px;}
.ws66{word-spacing:3.213000px;}
.ws15{word-spacing:3.249000px;}
.wsb6{word-spacing:3.276000px;}
.wsb1{word-spacing:3.402000px;}
.ws88{word-spacing:3.477000px;}
.wsdf{word-spacing:3.498995px;}
.ws89{word-spacing:3.534000px;}
.wse4{word-spacing:3.555430px;}
.ws26{word-spacing:3.591000px;}
.ws92{word-spacing:3.717000px;}
.ws2c{word-spacing:3.843000px;}
.ws2f{word-spacing:3.906000px;}
.ws42{word-spacing:3.969000px;}
.wsb5{word-spacing:4.092000px;}
.ws69{word-spacing:21.213600px;}
.ws6a{word-spacing:55.678200px;}
.ws68{word-spacing:62.782200px;}
.ws67{word-spacing:115.695600px;}
.ws9b{word-spacing:248.100000px;}
.wsa8{word-spacing:450.843600px;}
.wsa7{word-spacing:453.532200px;}
.wsa9{word-spacing:454.764000px;}
.ws59{word-spacing:456.204000px;}
.wsa6{word-spacing:457.357200px;}
.ws58{word-spacing:628.950000px;}
.ws9d{word-spacing:861.252000px;}
.ws18{word-spacing:2147.802600px;}
._2{margin-left:-1105.500000px;}
._35{margin-left:-128.100000px;}
._8{margin-left:-16.684800px;}
._38{margin-left:-14.445000px;}
._9{margin-left:-11.682000px;}
._c{margin-left:-8.646000px;}
._d{margin-left:-7.560000px;}
._4{margin-left:-6.426000px;}
._7{margin-left:-4.440000px;}
._5{margin-left:-2.902200px;}
._0{margin-left:-1.800000px;}
._3{width:1.344000px;}
._b{width:2.658000px;}
._a{width:3.784800px;}
._43{width:4.845113px;}
._e{width:5.986087px;}
._42{width:7.052269px;}
._1{width:8.400000px;}
._34{width:10.701000px;}
._f{width:11.736143px;}
._33{width:12.988800px;}
._1e{width:22.893600px;}
._32{width:27.060000px;}
._12{width:28.269600px;}
._31{width:42.060000px;}
._16{width:48.924600px;}
._14{width:51.566400px;}
._2a{width:55.773600px;}
._2c{width:64.108200px;}
._25{width:67.596600px;}
._1a{width:69.022200px;}
._21{width:76.126200px;}
._23{width:77.997600px;}
._2f{width:87.070200px;}
._13{width:94.284600px;}
._2e{width:105.082800px;}
._19{width:121.012200px;}
._6{width:127.465200px;}
._1f{width:131.628600px;}
._11{width:132.876600px;}
._2d{width:143.662200px;}
._27{width:182.386800px;}
._24{width:185.004600px;}
._10{width:193.773600px;}
._2b{width:238.380600px;}
._26{width:269.476200px;}
._1c{width:272.172600px;}
._28{width:284.602800px;}
._18{width:317.532600px;}
._17{width:320.290800px;}
._20{width:342.412200px;}
._1d{width:344.220600px;}
._3b{width:345.987600px;}
._3c{width:354.124200px;}
._3a{width:369.707400px;}
._1b{width:385.978800px;}
._22{width:391.450800px;}
._29{width:417.130800px;}
._15{width:437.626800px;}
._30{width:446.410800px;}
._39{width:458.268000px;}
._3e{width:488.187600px;}
._40{width:521.651400px;}
._3f{width:524.941200px;}
._3d{width:526.090200px;}
._36{width:547.620000px;}
._41{width:778.644600px;}
._37{width:1311.353400px;}
.fc5{color:rgb(14,138,74);}
.fc3{color:rgb(35,80,169);}
.fc2{color:rgb(16,154,149);}
.fc1{color:transparent;}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:31.500000px;}
.fs5{font-size:33.600000px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs12{font-size:42.327000px;}
.fs10{font-size:42.750000px;}
.fsf{font-size:44.100000px;}
.fsd{font-size:47.250000px;}
.fs4{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs11{font-size:56.435400px;}
.fsb{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fse{font-size:66.000000px;}
.fs9{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs2{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:53.145300px;}
.y31{bottom:53.318100px;}
.y30{bottom:53.318250px;}
.y15c{bottom:126.028350px;}
.ycd{bottom:126.047400px;}
.y92{bottom:126.047550px;}
.y186{bottom:127.122750px;}
.y15b{bottom:139.243650px;}
.y185{bottom:142.109400px;}
.ycc{bottom:143.985150px;}
.y91{bottom:143.985300px;}
.yc{bottom:148.818900px;}
.y15a{bottom:152.458950px;}
.y184{bottom:157.096050px;}
.yb{bottom:160.818900px;}
.y143{bottom:161.922900px;}
.y90{bottom:161.923050px;}
.y52{bottom:165.318900px;}
.y159{bottom:165.674250px;}
.y183{bottom:172.082550px;}
.y56{bottom:172.818900px;}
.ya{bottom:173.418900px;}
.y142{bottom:179.860650px;}
.y8f{bottom:179.860800px;}
.y51{bottom:181.818900px;}
.y55{bottom:184.818900px;}
.y9{bottom:185.418900px;}
.y182{bottom:187.069200px;}
.y54{bottom:196.818900px;}
.y8{bottom:197.418900px;}
.ycb{bottom:197.798400px;}
.y8e{bottom:197.798550px;}
.y50{bottom:198.318900px;}
.y181{bottom:202.055850px;}
.y53{bottom:208.818900px;}
.y7{bottom:209.418900px;}
.y4f{bottom:214.818900px;}
.y8d{bottom:215.736300px;}
.y180{bottom:217.042500px;}
.y6{bottom:229.922850px;}
.y4e{bottom:231.318900px;}
.y17f{bottom:232.029150px;}
.y8c{bottom:233.674050px;}
.y5{bottom:242.522850px;}
.y17e{bottom:247.015800px;}
.y4d{bottom:247.818900px;}
.y95{bottom:251.611650px;}
.y8b{bottom:251.611800px;}
.y17d{bottom:262.002450px;}
.y157{bottom:262.846200px;}
.y4{bottom:263.626800px;}
.y4c{bottom:264.318900px;}
.y141{bottom:269.549400px;}
.y8a{bottom:269.549550px;}
.y3{bottom:276.226800px;}
.y17c{bottom:276.989100px;}
.y4b{bottom:280.818900px;}
.y96{bottom:284.337300px;}
.y140{bottom:287.487150px;}
.y89{bottom:287.487300px;}
.y17b{bottom:291.975750px;}
.y4a{bottom:297.318900px;}
.y88{bottom:305.425050px;}
.y17a{bottom:306.962400px;}
.y49{bottom:313.818900px;}
.y179{bottom:321.949050px;}
.y13f{bottom:323.362650px;}
.y87{bottom:323.362800px;}
.y178{bottom:336.935700px;}
.y13e{bottom:341.300400px;}
.y86{bottom:341.300550px;}
.y48{bottom:347.949750px;}
.y177{bottom:351.922350px;}
.y47{bottom:359.199750px;}
.y13d{bottom:359.238150px;}
.y85{bottom:359.238300px;}
.y176{bottom:366.909000px;}
.y151{bottom:368.440650px;}
.y46{bottom:370.449750px;}
.y119{bottom:374.973900px;}
.y84{bottom:377.176050px;}
.y175{bottom:381.895650px;}
.y118{bottom:389.314050px;}
.y11a{bottom:389.373900px;}
.y13c{bottom:395.113650px;}
.y83{bottom:395.113800px;}
.y174{bottom:396.882300px;}
.y150{bottom:399.910650px;}
.y116{bottom:402.923850px;}
.y173{bottom:411.868950px;}
.y13b{bottom:413.051400px;}
.y82{bottom:413.051550px;}
.y115{bottom:417.264000px;}
.y117{bottom:417.323850px;}
.y172{bottom:426.855600px;}
.y113{bottom:430.873650px;}
.y149{bottom:430.989150px;}
.y81{bottom:430.989300px;}
.y171{bottom:441.842250px;}
.y158{bottom:443.182200px;}
.y112{bottom:445.213800px;}
.y114{bottom:445.273800px;}
.y80{bottom:448.927050px;}
.y13{bottom:452.519100px;}
.y170{bottom:456.828900px;}
.y110{bottom:458.823600px;}
.y13a{bottom:461.493600px;}
.y7f{bottom:466.864800px;}
.y12{bottom:468.771000px;}
.y16f{bottom:471.815400px;}
.y10f{bottom:473.163750px;}
.y111{bottom:473.223750px;}
.y139{bottom:476.375550px;}
.y7e{bottom:484.802550px;}
.y10c{bottom:486.773550px;}
.y16e{bottom:486.802050px;}
.y10e{bottom:486.833400px;}
.y138{bottom:491.257350px;}
.y1dd{bottom:494.080650px;}
.y11{bottom:497.778900px;}
.y10b{bottom:501.173550px;}
.y10d{bottom:501.233400px;}
.y16d{bottom:501.788700px;}
.y7d{bottom:502.740300px;}
.y1dc{bottom:508.962600px;}
.y10{bottom:514.030950px;}
.y10a{bottom:514.783350px;}
.y16c{bottom:516.775350px;}
.y137{bottom:518.044800px;}
.y7c{bottom:520.678050px;}
.y1db{bottom:523.844550px;}
.y108{bottom:528.393150px;}
.yf{bottom:530.282850px;}
.y16b{bottom:531.762000px;}
.y148{bottom:538.615650px;}
.y7b{bottom:538.615800px;}
.y107{bottom:542.733300px;}
.y109{bottom:542.793300px;}
.y136{bottom:544.832250px;}
.ye{bottom:546.534900px;}
.y16a{bottom:546.748650px;}
.y104{bottom:556.343100px;}
.y106{bottom:556.403100px;}
.y147{bottom:556.553400px;}
.y7a{bottom:556.553550px;}
.y135{bottom:559.714050px;}
.yd{bottom:562.786800px;}
.y1b3{bottom:568.298700px;}
.y1da{bottom:568.490100px;}
.y103{bottom:570.743250px;}
.y105{bottom:570.803100px;}
.y45{bottom:571.142700px;}
.y146{bottom:574.491150px;}
.y79{bottom:574.491300px;}
.y1b2{bottom:583.033200px;}
.y1d9{bottom:583.372050px;}
.y102{bottom:584.352900px;}
.y134{bottom:586.501500px;}
.y14f{bottom:589.600650px;}
.y145{bottom:592.428900px;}
.y78{bottom:592.429050px;}
.y1b1{bottom:597.767850px;}
.y100{bottom:597.962700px;}
.y1d8{bottom:598.254000px;}
.y133{bottom:601.383300px;}
.y44{bottom:608.654550px;}
.y144{bottom:610.366650px;}
.y77{bottom:610.366800px;}
.yff{bottom:612.362850px;}
.y101{bottom:612.422700px;}
.y1b0{bottom:612.502350px;}
.y1d7{bottom:613.135800px;}
.y132{bottom:616.265250px;}
.y43{bottom:625.154550px;}
.yfe{bottom:625.972650px;}
.y1af{bottom:627.236850px;}
.y1d6{bottom:628.017750px;}
.y76{bottom:628.304550px;}
.y131{bottom:631.147200px;}
.yca{bottom:633.114300px;}
.yfd{bottom:639.582450px;}
.y1ae{bottom:641.971500px;}
.y42{bottom:642.162450px;}
.y1d5{bottom:642.899700px;}
.yc9{bottom:645.870150px;}
.y75{bottom:646.242300px;}
.yfc{bottom:653.192250px;}
.y1ad{bottom:656.706000px;}
.y2f{bottom:656.707650px;}
.y1d4{bottom:657.781500px;}
.y41{bottom:658.662450px;}
.y74{bottom:664.180050px;}
.yfa{bottom:666.901200px;}
.y1ac{bottom:671.440500px;}
.y2e{bottom:671.707650px;}
.y1d3{bottom:672.663450px;}
.y40{bottom:675.670350px;}
.y130{bottom:676.156050px;}
.yf9{bottom:681.301200px;}
.y169{bottom:682.117650px;}
.y73{bottom:682.117800px;}
.yc7{bottom:686.154300px;}
.y1ab{bottom:686.175000px;}
.y1d2{bottom:687.545250px;}
.y12f{bottom:692.313600px;}
.y3f{bottom:692.678250px;}
.yf8{bottom:695.701200px;}
.yfb{bottom:695.761200px;}
.y72{bottom:700.055550px;}
.y1aa{bottom:700.909650px;}
.y1d1{bottom:702.427200px;}
.yc6{bottom:703.206300px;}
.y2d{bottom:703.715400px;}
.ya0{bottom:703.824300px;}
.y12e{bottom:708.471000px;}
.yf7{bottom:709.311150px;}
.y1a9{bottom:715.644150px;}
.y2c{bottom:716.315400px;}
.y1d0{bottom:717.309150px;}
.y71{bottom:717.993300px;}
.yc5{bottom:719.466300px;}
.yf5{bottom:722.920800px;}
.y3e{bottom:724.567950px;}
.y12d{bottom:724.628550px;}
.y1a8{bottom:730.378650px;}
.y2b{bottom:732.104400px;}
.y1cf{bottom:732.190950px;}
.y14e{bottom:735.010650px;}
.y9f{bottom:735.513300px;}
.ya6{bottom:735.524700px;}
.y70{bottom:735.931050px;}
.yc4{bottom:736.938300px;}
.yf4{bottom:737.320800px;}
.yf6{bottom:737.380800px;}
.y3d{bottom:741.067950px;}
.y1a7{bottom:745.113300px;}
.y1ce{bottom:747.072900px;}
.y2a{bottom:748.956450px;}
.ya7{bottom:750.065700px;}
.yf2{bottom:750.930750px;}
.y12c{bottom:753.541950px;}
.y6f{bottom:753.868800px;}
.yc3{bottom:753.870300px;}
.y3c{bottom:757.567950px;}
.y1a6{bottom:759.847800px;}
.y29{bottom:761.556450px;}
.y1cd{bottom:761.954700px;}
.yf1{bottom:765.270750px;}
.yf3{bottom:765.330750px;}
.y12b{bottom:769.699350px;}
.ya5{bottom:769.711800px;}
.yc2{bottom:770.634300px;}
.y6e{bottom:771.806550px;}
.y1a5{bottom:774.582300px;}
.y1cc{bottom:776.836650px;}
.y28{bottom:777.345300px;}
.yef{bottom:778.880700px;}
.yc1{bottom:787.410300px;}
.y3b{bottom:789.457800px;}
.y1a4{bottom:789.464100px;}
.y93{bottom:789.744300px;}
.ya1{bottom:790.984800px;}
.y1cb{bottom:791.718600px;}
.yee{bottom:793.220700px;}
.yf0{bottom:793.280700px;}
.y27{bottom:794.197350px;}
.ya2{bottom:794.890800px;}
.y12a{bottom:798.612750px;}
.y9e{bottom:803.563800px;}
.yc0{bottom:804.162300px;}
.y1a3{bottom:804.346050px;}
.y3a{bottom:805.957800px;}
.y1ca{bottom:806.600400px;}
.y26{bottom:806.797350px;}
.yec{bottom:806.830650px;}
.y6d{bottom:807.682050px;}
.y129{bottom:814.770300px;}
.y152{bottom:818.365650px;}
.y1a2{bottom:819.228000px;}
.yeb{bottom:821.170650px;}
.yed{bottom:821.230650px;}
.ybf{bottom:821.286300px;}
.y1c9{bottom:821.482200px;}
.y39{bottom:822.457800px;}
.y25{bottom:822.586350px;}
.y168{bottom:825.619650px;}
.y165{bottom:825.619800px;}
.y1a1{bottom:834.109800px;}
.ye9{bottom:834.780600px;}
.y1c8{bottom:836.364150px;}
.ya8{bottom:836.953200px;}
.ybe{bottom:837.558300px;}
.y38{bottom:838.957800px;}
.y24{bottom:839.438250px;}
.y167{bottom:843.557400px;}
.y164{bottom:843.557550px;}
.y128{bottom:843.683550px;}
.y156{bottom:844.109850px;}
.y1a0{bottom:848.991750px;}
.y14d{bottom:848.995650px;}
.ye8{bottom:849.180600px;}
.yea{bottom:849.240450px;}
.y1c7{bottom:851.246100px;}
.y23{bottom:852.038250px;}
.ya3{bottom:853.071300px;}
.ybd{bottom:854.406300px;}
.yac{bottom:855.832200px;}
.y37{bottom:855.965550px;}
.y127{bottom:859.841100px;}
.y166{bottom:861.495150px;}
.y163{bottom:861.495300px;}
.ye7{bottom:862.790400px;}
.y19f{bottom:863.873700px;}
.y1c6{bottom:866.127900px;}
.y22{bottom:867.827250px;}
.ybc{bottom:871.194300px;}
.y9d{bottom:871.204800px;}
.y36{bottom:872.973450px;}
.ye6{bottom:876.400200px;}
.y19e{bottom:878.755500px;}
.y162{bottom:879.433050px;}
.y1c5{bottom:881.009850px;}
.y21{bottom:884.679150px;}
.ybb{bottom:888.702300px;}
.y126{bottom:888.754500px;}
.y35{bottom:889.981350px;}
.ye4{bottom:890.010000px;}
.y19d{bottom:893.637450px;}
.y1c4{bottom:895.744500px;}
.y20{bottom:897.279300px;}
.y161{bottom:897.370800px;}
.ye3{bottom:904.410000px;}
.ye5{bottom:904.469850px;}
.y125{bottom:904.912050px;}
.yba{bottom:905.298300px;}
.y19c{bottom:908.519400px;}
.y1c3{bottom:910.479000px;}
.y1f{bottom:913.068300px;}
.y160{bottom:915.308550px;}
.yab{bottom:915.755700px;}
.y6c{bottom:917.149650px;}
.y66{bottom:917.247600px;}
.ye1{bottom:918.019800px;}
.y9c{bottom:921.226800px;}
.yb9{bottom:922.062300px;}
.y19b{bottom:923.401200px;}
.y1c2{bottom:925.213500px;}
.y1e{bottom:925.668300px;}
.y6b{bottom:929.149650px;}
.ye0{bottom:932.359950px;}
.ye2{bottom:932.419800px;}
.y15f{bottom:933.246300px;}
.y65{bottom:933.747600px;}
.y124{bottom:933.825300px;}
.y19a{bottom:938.283150px;}
.yb8{bottom:938.982300px;}
.y1c1{bottom:939.948000px;}
.y6a{bottom:941.149650px;}
.y1d{bottom:941.457300px;}
.ydd{bottom:945.969750px;}
.y123{bottom:949.982850px;}
.y64{bottom:950.247750px;}
.y15e{bottom:951.184050px;}
.y69{bottom:953.149650px;}
.y199{bottom:953.165100px;}
.y1c0{bottom:954.682650px;}
.yb7{bottom:955.782300px;}
.y1c{bottom:958.309350px;}
.ya9{bottom:959.855700px;}
.ydc{bottom:960.369750px;}
.ydf{bottom:960.429600px;}
.y68{bottom:965.149650px;}
.y122{bottom:966.140400px;}
.y63{bottom:966.747750px;}
.y198{bottom:968.046900px;}
.y15d{bottom:969.121800px;}
.y1bf{bottom:969.417150px;}
.ya4{bottom:970.450800px;}
.y1b{bottom:970.909200px;}
.y9b{bottom:972.361800px;}
.y14b{bottom:972.370650px;}
.yc8{bottom:972.810300px;}
.ydb{bottom:974.769750px;}
.yde{bottom:974.829600px;}
.y67{bottom:977.149650px;}
.yad{bottom:979.942200px;}
.y197{bottom:982.928700px;}
.y62{bottom:983.247750px;}
.y155{bottom:983.786700px;}
.y1be{bottom:984.151650px;}
.y1a{bottom:986.698200px;}
.yd9{bottom:988.379550px;}
.y34{bottom:989.007900px;}
.yb6{bottom:989.418300px;}
.y14c{bottom:989.665650px;}
.y121{bottom:995.053650px;}
.y196{bottom:997.810650px;}
.y1bd{bottom:998.886150px;}
.y61{bottom:999.747750px;}
.yd8{bottom:1002.719700px;}
.yda{bottom:1002.779550px;}
.y19{bottom:1003.550100px;}
.yb5{bottom:1006.206300px;}
.y120{bottom:1011.211200px;}
.y18d{bottom:1011.336300px;}
.y195{bottom:1012.692600px;}
.y1bc{bottom:1013.620800px;}
.y60{bottom:1016.247750px;}
.yd5{bottom:1016.329500px;}
.y33{bottom:1019.007900px;}
.yaa{bottom:1021.354200px;}
.yb4{bottom:1022.514300px;}
.y194{bottom:1027.574400px;}
.y1bb{bottom:1028.355300px;}
.yd4{bottom:1030.729500px;}
.y2{bottom:1030.783500px;}
.yd7{bottom:1030.789350px;}
.y18c{bottom:1031.540250px;}
.y5f{bottom:1032.747750px;}
.y18{bottom:1033.158000px;}
.y1{bottom:1039.245750px;}
.yb3{bottom:1039.722300px;}
.y11f{bottom:1040.124600px;}
.y193{bottom:1042.456350px;}
.y1ba{bottom:1043.089800px;}
.y18b{bottom:1045.090050px;}
.yd3{bottom:1045.129500px;}
.yd6{bottom:1045.189350px;}
.y32{bottom:1049.007900px;}
.y5e{bottom:1049.247750px;}
.y9a{bottom:1056.246300px;}
.y11e{bottom:1056.282000px;}
.yb2{bottom:1056.534300px;}
.y192{bottom:1057.338300px;}
.y1b9{bottom:1057.824300px;}
.y18a{bottom:1058.700000px;}
.ycf{bottom:1061.928150px;}
.y17{bottom:1062.765900px;}
.y5d{bottom:1065.747750px;}
.yd2{bottom:1067.236200px;}
.y191{bottom:1072.220100px;}
.y1b8{bottom:1072.558950px;}
.yb1{bottom:1073.850300px;}
.yae{bottom:1074.746700px;}
.y189{bottom:1075.498650px;}
.yd0{bottom:1076.328300px;}
.y5c{bottom:1082.247750px;}
.y11d{bottom:1085.195400px;}
.y190{bottom:1087.102050px;}
.y1b7{bottom:1087.293450px;}
.yd1{bottom:1087.440150px;}
.y99{bottom:1090.570800px;}
.yb0{bottom:1090.758300px;}
.y16{bottom:1092.373800px;}
.y5b{bottom:1098.747750px;}
.y11c{bottom:1101.352950px;}
.y18f{bottom:1101.983850px;}
.y1b6{bottom:1102.028100px;}
.y154{bottom:1102.510650px;}
.yaf{bottom:1106.802300px;}
.y153{bottom:1112.650650px;}
.y5a{bottom:1115.247750px;}
.y1b5{bottom:1116.762600px;}
.y18e{bottom:1116.865800px;}
.y188{bottom:1119.085350px;}
.y14a{bottom:1121.815650px;}
.y15{bottom:1121.981700px;}
.y97{bottom:1123.725000px;}
.y98{bottom:1125.609300px;}
.y11b{bottom:1130.266350px;}
.y1b4{bottom:1131.497100px;}
.y59{bottom:1131.747750px;}
.y187{bottom:1131.841350px;}
.yce{bottom:1132.082850px;}
.y14{bottom:1134.581700px;}
.y58{bottom:1202.244000px;}
.y94{bottom:1202.244150px;}
.hc{height:28.296000px;}
.h1d{height:30.702000px;}
.h5{height:30.828000px;}
.h6{height:31.080000px;}
.h1b{height:31.531500px;}
.h16{height:31.920000px;}
.h4{height:33.012000px;}
.h2f{height:34.242543px;}
.h25{height:34.584750px;}
.h1c{height:35.088000px;}
.h7{height:37.728000px;}
.h21{height:37.967400px;}
.h22{height:37.968000px;}
.h14{height:38.610000px;}
.ha{height:38.892000px;}
.h8{height:38.934000px;}
.hf{height:40.086000px;}
.h9{height:40.110000px;}
.h2d{height:40.351311px;}
.h12{height:40.755000px;}
.h15{height:41.040000px;}
.h1e{height:41.244000px;}
.h2c{height:42.890904px;}
.hb{height:42.900000px;}
.h11{height:43.320000px;}
.h26{height:43.860000px;}
.h28{height:44.820000px;}
.h17{height:45.045000px;}
.h23{height:45.600000px;}
.h2e{height:45.656239px;}
.h20{height:45.840000px;}
.h24{height:46.113000px;}
.h13{height:46.872000px;}
.h1f{height:47.190000px;}
.h18{height:47.880000px;}
.h27{height:49.020000px;}
.h10{height:49.476000px;}
.h1a{height:50.160000px;}
.h19{height:50.967000px;}
.h2b{height:54.684000px;}
.he{height:57.300000px;}
.h29{height:70.127400px;}
.h2a{height:71.580600px;}
.h2{height:74.868000px;}
.hd{height:91.680000px;}
.h3{height:214.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:74.409450px;}
.x1e{left:83.475900px;}
.x66{left:85.746900px;}
.x1f{left:87.217650px;}
.x36{left:91.799700px;}
.x4{left:97.157400px;}
.x3a{left:100.128900px;}
.x47{left:101.185950px;}
.x4b{left:102.405450px;}
.x48{left:103.674450px;}
.x4d{left:105.630450px;}
.x67{left:106.861650px;}
.x4e{left:108.300450px;}
.x5{left:109.913250px;}
.x7{left:116.929200px;}
.x4f{left:118.620450px;}
.x61{left:120.981150px;}
.x31{left:122.248200px;}
.x22{left:125.277900px;}
.x8{left:129.685050px;}
.x68{left:132.018750px;}
.x1c{left:136.995600px;}
.x46{left:142.441050px;}
.x4a{left:144.081000px;}
.x49{left:154.731300px;}
.x62{left:158.606250px;}
.x1b{left:160.566450px;}
.x23{left:166.019850px;}
.x18{left:170.825700px;}
.x54{left:172.137300px;}
.x20{left:175.159200px;}
.x1a{left:181.139850px;}
.x1d{left:185.945700px;}
.x30{left:191.086200px;}
.x63{left:197.535000px;}
.x21{left:205.938750px;}
.x19{left:218.196600px;}
.x4c{left:232.080450px;}
.x2f{left:235.154700px;}
.x53{left:238.095450px;}
.x29{left:243.827700px;}
.x40{left:245.338500px;}
.x39{left:246.748200px;}
.x2{left:267.023700px;}
.x38{left:271.507200px;}
.x33{left:273.817200px;}
.x17{left:275.314950px;}
.x45{left:309.638700px;}
.x32{left:314.125200px;}
.x64{left:317.193750px;}
.x37{left:326.695200px;}
.xe{left:342.898650px;}
.x2e{left:357.332700px;}
.x2d{left:359.726700px;}
.x65{left:361.611750px;}
.x34{left:369.535200px;}
.x35{left:380.066700px;}
.x16{left:381.194400px;}
.x52{left:388.350450px;}
.x55{left:393.754950px;}
.x2a{left:395.552700px;}
.x2b{left:401.390700px;}
.x2c{left:403.868700px;}
.x28{left:442.631700px;}
.x44{left:449.433000px;}
.x50{left:454.530450px;}
.x24{left:457.086600px;}
.x3e{left:463.735650px;}
.x58{left:466.845150px;}
.x69{left:468.781800px;}
.x25{left:469.842450px;}
.x85{left:471.154050px;}
.x57{left:474.094500px;}
.x10{left:478.964700px;}
.x7b{left:484.906350px;}
.x86{left:486.461700px;}
.x3d{left:490.787400px;}
.x59{left:499.372350px;}
.x6a{left:503.635050px;}
.xc{left:513.440250px;}
.x73{left:516.361950px;}
.x60{left:517.748250px;}
.x7c{left:523.819800px;}
.x6b{left:537.100950px;}
.x87{left:538.592250px;}
.x3c{left:541.391100px;}
.x3b{left:544.245900px;}
.xd{left:549.010500px;}
.x26{left:550.507350px;}
.x5a{left:552.039600px;}
.x15{left:557.005200px;}
.x88{left:565.654200px;}
.x41{left:576.992100px;}
.x7d{left:579.395850px;}
.x5b{left:581.445600px;}
.x11{left:582.567600px;}
.x89{left:583.728300px;}
.x3f{left:588.199500px;}
.x74{left:598.564050px;}
.x6c{left:606.658800px;}
.x7e{left:623.815350px;}
.x5c{left:625.378500px;}
.x42{left:628.015650px;}
.x75{left:637.861050px;}
.x51{left:641.085450px;}
.x6d{left:642.511200px;}
.x8a{left:644.732250px;}
.x5d{left:651.258300px;}
.x76{left:653.101500px;}
.x84{left:654.711150px;}
.x7f{left:658.197000px;}
.x77{left:668.875350px;}
.x8c{left:678.099900px;}
.xb{left:680.985600px;}
.x78{left:682.226850px;}
.x6e{left:683.617650px;}
.x80{left:686.766750px;}
.x1{left:691.382700px;}
.x5e{left:693.638250px;}
.x81{left:698.198100px;}
.x5f{left:699.744450px;}
.xa{left:704.640300px;}
.x12{left:714.360450px;}
.x8b{left:716.889600px;}
.x6f{left:717.903000px;}
.x79{left:720.967650px;}
.x82{left:725.132850px;}
.x9{left:740.429550px;}
.x14{left:745.725000px;}
.x56{left:753.877950px;}
.x43{left:759.826650px;}
.x70{left:760.936200px;}
.x13{left:762.944550px;}
.x83{left:770.462850px;}
.xf{left:771.839550px;}
.x7a{left:779.278050px;}
.x27{left:783.778050px;}
.x6{left:794.302350px;}
.x71{left:798.211650px;}
.x72{left:813.903750px;}
@media print{
.v9{vertical-align:-35.146667pt;}
.v6{vertical-align:-32.533333pt;}
.v7{vertical-align:-24.480000pt;}
.v5{vertical-align:-19.002667pt;}
.v4{vertical-align:-11.200000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.586667pt;}
.v2{vertical-align:8.533333pt;}
.v3{vertical-align:10.666667pt;}
.v1{vertical-align:16.000000pt;}
.va{vertical-align:31.146133pt;}
.vb{vertical-align:32.437867pt;}
.ls4e{letter-spacing:-6.698667pt;}
.ls1d{letter-spacing:-1.456000pt;}
.ls83{letter-spacing:-1.304285pt;}
.ls5a{letter-spacing:-1.232000pt;}
.ls5e{letter-spacing:-1.120000pt;}
.ls1a{letter-spacing:-0.896000pt;}
.ls60{letter-spacing:-0.861333pt;}
.ls64{letter-spacing:-0.810667pt;}
.ls5b{letter-spacing:-0.784000pt;}
.ls7e{letter-spacing:-0.760000pt;}
.ls41{letter-spacing:-0.728000pt;}
.ls5f{letter-spacing:-0.704000pt;}
.ls5c{letter-spacing:-0.672000pt;}
.ls7c{letter-spacing:-0.658667pt;}
.ls2c{letter-spacing:-0.616000pt;}
.ls40{letter-spacing:-0.608000pt;}
.ls82{letter-spacing:-0.601978pt;}
.ls59{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.560000pt;}
.ls3f{letter-spacing:-0.506667pt;}
.ls30{letter-spacing:-0.504000pt;}
.ls7f{letter-spacing:-0.451483pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.405333pt;}
.ls21{letter-spacing:-0.392000pt;}
.ls61{letter-spacing:-0.354667pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls65{letter-spacing:-0.304000pt;}
.ls80{letter-spacing:-0.300989pt;}
.ls20{letter-spacing:-0.280000pt;}
.ls7d{letter-spacing:-0.253333pt;}
.ls1e{letter-spacing:-0.224000pt;}
.ls84{letter-spacing:-0.200659pt;}
.ls22{letter-spacing:-0.168000pt;}
.ls63{letter-spacing:-0.152000pt;}
.ls4{letter-spacing:-0.149333pt;}
.ls1c{letter-spacing:-0.112000pt;}
.ls62{letter-spacing:-0.101333pt;}
.ls5d{letter-spacing:-0.056000pt;}
.ls18{letter-spacing:-0.050667pt;}
.ls81{letter-spacing:-0.050165pt;}
.ls2{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.000079pt;}
.ls0{letter-spacing:0.009067pt;}
.ls6d{letter-spacing:0.050165pt;}
.ls76{letter-spacing:0.050667pt;}
.lsb{letter-spacing:0.056000pt;}
.ls7{letter-spacing:0.112000pt;}
.ls71{letter-spacing:0.150494pt;}
.ls8{letter-spacing:0.168000pt;}
.ls70{letter-spacing:0.175577pt;}
.ls73{letter-spacing:0.177333pt;}
.ls57{letter-spacing:0.186200pt;}
.ls6e{letter-spacing:0.200659pt;}
.ls53{letter-spacing:0.202667pt;}
.ls23{letter-spacing:0.222601pt;}
.ls16{letter-spacing:0.224000pt;}
.ls34{letter-spacing:0.253333pt;}
.ls9{letter-spacing:0.280000pt;}
.ls3{letter-spacing:0.298667pt;}
.ls50{letter-spacing:0.302400pt;}
.ls7b{letter-spacing:0.329333pt;}
.ls78{letter-spacing:0.333238pt;}
.lsa{letter-spacing:0.336000pt;}
.ls77{letter-spacing:0.336675pt;}
.ls2f{letter-spacing:0.352800pt;}
.ls33{letter-spacing:0.354667pt;}
.ls32{letter-spacing:0.357200pt;}
.ls24{letter-spacing:0.364000pt;}
.lsf{letter-spacing:0.392000pt;}
.ls69{letter-spacing:0.401318pt;}
.ls31{letter-spacing:0.405333pt;}
.ls14{letter-spacing:0.410667pt;}
.ls6f{letter-spacing:0.417626pt;}
.ls68{letter-spacing:0.421389pt;}
.ls55{letter-spacing:0.440800pt;}
.ls54{letter-spacing:0.441571pt;}
.ls4f{letter-spacing:0.448000pt;}
.ls56{letter-spacing:0.456000pt;}
.lsc{letter-spacing:0.504000pt;}
.ls10{letter-spacing:0.528000pt;}
.ls6b{letter-spacing:0.551813pt;}
.ls28{letter-spacing:0.560000pt;}
.ls6a{letter-spacing:0.571885pt;}
.ls29{letter-spacing:0.572582pt;}
.ls6{letter-spacing:0.616000pt;}
.ls75{letter-spacing:0.633333pt;}
.ls51{letter-spacing:0.644000pt;}
.ls52{letter-spacing:0.645333pt;}
.ls74{letter-spacing:0.658667pt;}
.ls13{letter-spacing:0.672000pt;}
.ls79{letter-spacing:0.684000pt;}
.ls26{letter-spacing:0.728000pt;}
.ls5{letter-spacing:0.784000pt;}
.lse{letter-spacing:0.840000pt;}
.ls35{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.924000pt;}
.ls6c{letter-spacing:0.929313pt;}
.ls25{letter-spacing:0.952000pt;}
.ls15{letter-spacing:1.008000pt;}
.ls3d{letter-spacing:1.036000pt;}
.ls3c{letter-spacing:1.064000pt;}
.ls3a{letter-spacing:1.092000pt;}
.ls38{letter-spacing:1.120000pt;}
.ls2e{letter-spacing:1.176000pt;}
.ls12{letter-spacing:1.260000pt;}
.ls36{letter-spacing:1.288000pt;}
.ls67{letter-spacing:1.303400pt;}
.ls66{letter-spacing:1.303843pt;}
.ls37{letter-spacing:1.344000pt;}
.ls3b{letter-spacing:1.372000pt;}
.ls39{letter-spacing:1.400000pt;}
.ls2a{letter-spacing:1.456000pt;}
.ls2b{letter-spacing:1.512000pt;}
.ls27{letter-spacing:1.680000pt;}
.ls7a{letter-spacing:2.148800pt;}
.ls1{letter-spacing:2.666667pt;}
.ls3e{letter-spacing:3.543697pt;}
.ls17{letter-spacing:3.731077pt;}
.ls11{letter-spacing:4.190951pt;}
.ls48{letter-spacing:203.786667pt;}
.ls49{letter-spacing:216.266667pt;}
.ls4b{letter-spacing:221.920000pt;}
.ls4a{letter-spacing:239.093333pt;}
.ls4c{letter-spacing:280.320000pt;}
.ls46{letter-spacing:309.226667pt;}
.ls45{letter-spacing:312.586667pt;}
.ls4d{letter-spacing:396.053333pt;}
.ls58{letter-spacing:450.827733pt;}
.ls43{letter-spacing:525.066667pt;}
.ls47{letter-spacing:525.386667pt;}
.ls44{letter-spacing:683.200000pt;}
.ls42{letter-spacing:1707.413333pt;}
.ws9a{word-spacing:-410.880000pt;}
.ws96{word-spacing:-337.493333pt;}
.ws9f{word-spacing:-280.320000pt;}
.ws9e{word-spacing:-239.093333pt;}
.ws98{word-spacing:-231.093333pt;}
.ws97{word-spacing:-208.266667pt;}
.ws99{word-spacing:-184.693333pt;}
.ws53{word-spacing:-15.680000pt;}
.ws56{word-spacing:-15.456000pt;}
.ws1f{word-spacing:-15.194667pt;}
.ws20{word-spacing:-15.077333pt;}
.ws74{word-spacing:-14.896000pt;}
.ws57{word-spacing:-14.840000pt;}
.ws19{word-spacing:-14.784000pt;}
.ws1d{word-spacing:-14.504000pt;}
.ws52{word-spacing:-14.392000pt;}
.ws22{word-spacing:-14.224000pt;}
.ws51{word-spacing:-14.056000pt;}
.ws1b{word-spacing:-14.000000pt;}
.ws1c{word-spacing:-13.720000pt;}
.ws1a{word-spacing:-13.664000pt;}
.ws21{word-spacing:-13.608000pt;}
.wsa0{word-spacing:-13.440000pt;}
.ws6f{word-spacing:-13.333333pt;}
.wsd1{word-spacing:-13.300000pt;}
.ws75{word-spacing:-13.272000pt;}
.wsd0{word-spacing:-13.122667pt;}
.wsd2{word-spacing:-13.021333pt;}
.wsa1{word-spacing:-12.768000pt;}
.ws73{word-spacing:-12.666667pt;}
.ws8{word-spacing:-12.602667pt;}
.wsc7{word-spacing:-12.541200pt;}
.wscf{word-spacing:-12.340541pt;}
.ws76{word-spacing:-12.266667pt;}
.wsc9{word-spacing:-12.240211pt;}
.ws81{word-spacing:-12.213333pt;}
.wsc6{word-spacing:-12.089717pt;}
.wsa{word-spacing:-12.000000pt;}
.ws71{word-spacing:-11.906667pt;}
.ws5{word-spacing:-11.861333pt;}
.wsa4{word-spacing:-11.856000pt;}
.wsa2{word-spacing:-11.805333pt;}
.ws87{word-spacing:-11.786667pt;}
.ws7a{word-spacing:-11.360000pt;}
.wscc{word-spacing:-11.236915pt;}
.ws54{word-spacing:-10.976000pt;}
.wsc5{word-spacing:-10.803400pt;}
.ws78{word-spacing:-10.560000pt;}
.ws1e{word-spacing:-10.500000pt;}
.ws4{word-spacing:-10.378667pt;}
.wscd{word-spacing:-10.335313pt;}
.ws9{word-spacing:-10.229333pt;}
.wsd3{word-spacing:-10.184000pt;}
.ws55{word-spacing:-10.152800pt;}
.wscb{word-spacing:-9.977885pt;}
.wsa3{word-spacing:-9.940800pt;}
.ws72{word-spacing:-9.857200pt;}
.ws3{word-spacing:-9.856000pt;}
.wsca{word-spacing:-9.827389pt;}
.wsce{word-spacing:-9.823626pt;}
.ws2{word-spacing:-9.781333pt;}
.wsa5{word-spacing:-9.686200pt;}
.ws70{word-spacing:-9.500000pt;}
.wsc8{word-spacing:-9.406000pt;}
.ws84{word-spacing:-9.066667pt;}
.ws7{word-spacing:-8.896000pt;}
.ws7b{word-spacing:-8.480000pt;}
.ws7f{word-spacing:-8.426667pt;}
.ws82{word-spacing:-8.213333pt;}
.ws85{word-spacing:-7.893333pt;}
.ws6{word-spacing:-7.784000pt;}
.ws7e{word-spacing:-7.626667pt;}
.ws65{word-spacing:-7.000000pt;}
.ws79{word-spacing:-5.760000pt;}
.ws7c{word-spacing:-3.840000pt;}
.ws83{word-spacing:-3.733333pt;}
.wsab{word-spacing:-3.637333pt;}
.ws2b{word-spacing:-3.584000pt;}
.ws31{word-spacing:-3.528000pt;}
.ws50{word-spacing:-3.472000pt;}
.ws3b{word-spacing:-3.416000pt;}
.ws8b{word-spacing:-3.242667pt;}
.ws12{word-spacing:-3.192000pt;}
.wsdb{word-spacing:-3.160382pt;}
.wsbf{word-spacing:-3.141333pt;}
.ws93{word-spacing:-3.136000pt;}
.ws23{word-spacing:-3.090667pt;}
.ws8f{word-spacing:-3.080000pt;}
.wsaa{word-spacing:-3.024000pt;}
.ws0{word-spacing:-2.933333pt;}
.ws45{word-spacing:-2.912000pt;}
.ws3d{word-spacing:-2.744000pt;}
.ws49{word-spacing:-2.688000pt;}
.ws80{word-spacing:-2.666667pt;}
.wse0{word-spacing:-2.608570pt;}
.wsb0{word-spacing:-2.576000pt;}
.wsd6{word-spacing:-2.533333pt;}
.ws8c{word-spacing:-2.482667pt;}
.wse1{word-spacing:-2.458075pt;}
.wse7{word-spacing:-2.432000pt;}
.wsac{word-spacing:-2.296000pt;}
.ws77{word-spacing:-2.240000pt;}
.ws40{word-spacing:-2.184000pt;}
.ws16{word-spacing:-2.128000pt;}
.ws24{word-spacing:-2.077333pt;}
.wsc0{word-spacing:-2.026667pt;}
.wsde{word-spacing:-2.006592pt;}
.wsb2{word-spacing:-1.960000pt;}
.wsda{word-spacing:-1.874667pt;}
.ws7d{word-spacing:-1.866667pt;}
.wsb4{word-spacing:-1.680000pt;}
.wsd{word-spacing:-1.605333pt;}
.wse3{word-spacing:-1.605274pt;}
.wsc2{word-spacing:-1.570667pt;}
.ws8e{word-spacing:-1.520000pt;}
.ws5d{word-spacing:-1.512000pt;}
.ws28{word-spacing:-1.469333pt;}
.wsb8{word-spacing:-1.400000pt;}
.ws4c{word-spacing:-1.288000pt;}
.wsc4{word-spacing:-1.216000pt;}
.ws5e{word-spacing:-1.176000pt;}
.ws11{word-spacing:-1.165333pt;}
.ws63{word-spacing:-1.064000pt;}
.ws8d{word-spacing:-1.013333pt;}
.ws41{word-spacing:-1.008000pt;}
.ws47{word-spacing:-0.952000pt;}
.ws27{word-spacing:-0.912000pt;}
.ws4b{word-spacing:-0.896000pt;}
.wsd9{word-spacing:-0.861333pt;}
.ws4d{word-spacing:-0.840000pt;}
.ws86{word-spacing:-0.800000pt;}
.ws2d{word-spacing:-0.784000pt;}
.wsb9{word-spacing:-0.728000pt;}
.ws44{word-spacing:-0.672000pt;}
.ws38{word-spacing:-0.560000pt;}
.wsc3{word-spacing:-0.557333pt;}
.wse9{word-spacing:-0.506667pt;}
.wse6{word-spacing:-0.456000pt;}
.ws8a{word-spacing:-0.405333pt;}
.ws46{word-spacing:-0.392000pt;}
.wseb{word-spacing:-0.354667pt;}
.ws48{word-spacing:-0.336000pt;}
.wsb{word-spacing:-0.298667pt;}
.ws2e{word-spacing:-0.280000pt;}
.ws3c{word-spacing:-0.224000pt;}
.wsbd{word-spacing:-0.168000pt;}
.wsdd{word-spacing:-0.150494pt;}
.ws39{word-spacing:-0.112000pt;}
.wse8{word-spacing:-0.101333pt;}
.ws6d{word-spacing:-0.056000pt;}
.ws6e{word-spacing:-0.042000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc1{word-spacing:0.050667pt;}
.wsbc{word-spacing:0.056000pt;}
.ws34{word-spacing:0.112000pt;}
.wse{word-spacing:0.149333pt;}
.ws10{word-spacing:0.152000pt;}
.ws3a{word-spacing:0.224000pt;}
.ws37{word-spacing:0.280000pt;}
.ws4e{word-spacing:0.293333pt;}
.ws6b{word-spacing:0.336000pt;}
.wsae{word-spacing:0.392000pt;}
.wsec{word-spacing:0.405333pt;}
.ws32{word-spacing:0.448000pt;}
.wsdc{word-spacing:0.451483pt;}
.ws33{word-spacing:0.504000pt;}
.ws5f{word-spacing:0.560000pt;}
.ws36{word-spacing:0.616000pt;}
.ws25{word-spacing:0.658667pt;}
.ws5b{word-spacing:0.672000pt;}
.wsbb{word-spacing:0.704000pt;}
.wsd8{word-spacing:0.709333pt;}
.ws95{word-spacing:0.728000pt;}
.ws60{word-spacing:0.784000pt;}
.wsd7{word-spacing:0.810667pt;}
.wsb7{word-spacing:0.840000pt;}
.ws13{word-spacing:0.861333pt;}
.ws2a{word-spacing:0.896000pt;}
.ws3e{word-spacing:0.952000pt;}
.wsd4{word-spacing:0.962667pt;}
.ws5c{word-spacing:1.008000pt;}
.ws6c{word-spacing:1.064000pt;}
.ws4a{word-spacing:1.120000pt;}
.ws61{word-spacing:1.176000pt;}
.ws5a{word-spacing:1.232000pt;}
.wsf{word-spacing:1.266667pt;}
.ws91{word-spacing:1.288000pt;}
.wsb3{word-spacing:1.344000pt;}
.wsba{word-spacing:1.400000pt;}
.ws35{word-spacing:1.456000pt;}
.wsaf{word-spacing:1.512000pt;}
.ws9c{word-spacing:1.536000pt;}
.wsad{word-spacing:1.568000pt;}
.wse5{word-spacing:1.655438pt;}
.wsbe{word-spacing:1.773333pt;}
.wsd5{word-spacing:1.824000pt;}
.ws14{word-spacing:1.874667pt;}
.ws3f{word-spacing:1.904000pt;}
.ws43{word-spacing:1.960000pt;}
.wsea{word-spacing:2.128000pt;}
.ws4f{word-spacing:2.184000pt;}
.ws94{word-spacing:2.240000pt;}
.wse2{word-spacing:2.307581pt;}
.ws62{word-spacing:2.408000pt;}
.ws17{word-spacing:2.432000pt;}
.ws30{word-spacing:2.464000pt;}
.ws64{word-spacing:2.520000pt;}
.ws29{word-spacing:2.533333pt;}
.wsc{word-spacing:2.576000pt;}
.ws90{word-spacing:2.632000pt;}
.ws66{word-spacing:2.856000pt;}
.ws15{word-spacing:2.888000pt;}
.wsb6{word-spacing:2.912000pt;}
.wsb1{word-spacing:3.024000pt;}
.ws88{word-spacing:3.090667pt;}
.wsdf{word-spacing:3.110218pt;}
.ws89{word-spacing:3.141333pt;}
.wse4{word-spacing:3.160382pt;}
.ws26{word-spacing:3.192000pt;}
.ws92{word-spacing:3.304000pt;}
.ws2c{word-spacing:3.416000pt;}
.ws2f{word-spacing:3.472000pt;}
.ws42{word-spacing:3.528000pt;}
.wsb5{word-spacing:3.637333pt;}
.ws69{word-spacing:18.856533pt;}
.ws6a{word-spacing:49.491733pt;}
.ws68{word-spacing:55.806400pt;}
.ws67{word-spacing:102.840533pt;}
.ws9b{word-spacing:220.533333pt;}
.wsa8{word-spacing:400.749867pt;}
.wsa7{word-spacing:403.139733pt;}
.wsa9{word-spacing:404.234667pt;}
.ws59{word-spacing:405.514667pt;}
.wsa6{word-spacing:406.539733pt;}
.ws58{word-spacing:559.066667pt;}
.ws9d{word-spacing:765.557333pt;}
.ws18{word-spacing:1909.157867pt;}
._2{margin-left:-982.666667pt;}
._35{margin-left:-113.866667pt;}
._8{margin-left:-14.830933pt;}
._38{margin-left:-12.840000pt;}
._9{margin-left:-10.384000pt;}
._c{margin-left:-7.685333pt;}
._d{margin-left:-6.720000pt;}
._4{margin-left:-5.712000pt;}
._7{margin-left:-3.946667pt;}
._5{margin-left:-2.579733pt;}
._0{margin-left:-1.600000pt;}
._3{width:1.194667pt;}
._b{width:2.362667pt;}
._a{width:3.364267pt;}
._43{width:4.306767pt;}
._e{width:5.320966pt;}
._42{width:6.268683pt;}
._1{width:7.466667pt;}
._34{width:9.512000pt;}
._f{width:10.432127pt;}
._33{width:11.545600pt;}
._1e{width:20.349867pt;}
._32{width:24.053333pt;}
._12{width:25.128533pt;}
._31{width:37.386667pt;}
._16{width:43.488533pt;}
._14{width:45.836800pt;}
._2a{width:49.576533pt;}
._2c{width:56.985067pt;}
._25{width:60.085867pt;}
._1a{width:61.353067pt;}
._21{width:67.667733pt;}
._23{width:69.331200pt;}
._2f{width:77.395733pt;}
._13{width:83.808533pt;}
._2e{width:93.406933pt;}
._19{width:107.566400pt;}
._6{width:113.302400pt;}
._1f{width:117.003200pt;}
._11{width:118.112533pt;}
._2d{width:127.699733pt;}
._27{width:162.121600pt;}
._24{width:164.448533pt;}
._10{width:172.243200pt;}
._2b{width:211.893867pt;}
._26{width:239.534400pt;}
._1c{width:241.931200pt;}
._28{width:252.980267pt;}
._18{width:282.251200pt;}
._17{width:284.702933pt;}
._20{width:304.366400pt;}
._1d{width:305.973867pt;}
._3b{width:307.544533pt;}
._3c{width:314.777067pt;}
._3a{width:328.628800pt;}
._1b{width:343.092267pt;}
._22{width:347.956267pt;}
._29{width:370.782933pt;}
._15{width:389.001600pt;}
._30{width:396.809600pt;}
._39{width:407.349333pt;}
._3e{width:433.944533pt;}
._40{width:463.690133pt;}
._3f{width:466.614400pt;}
._3d{width:467.635733pt;}
._36{width:486.773333pt;}
._41{width:692.128533pt;}
._37{width:1165.647467pt;}
.fs6{font-size:28.000000pt;}
.fs5{font-size:29.866667pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs12{font-size:37.624000pt;}
.fs10{font-size:38.000000pt;}
.fsf{font-size:39.200000pt;}
.fsd{font-size:42.000000pt;}
.fs4{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs11{font-size:50.164800pt;}
.fsb{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fse{font-size:58.666667pt;}
.fs9{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs2{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:47.240267pt;}
.y31{bottom:47.393867pt;}
.y30{bottom:47.394000pt;}
.y15c{bottom:112.025200pt;}
.ycd{bottom:112.042133pt;}
.y92{bottom:112.042267pt;}
.y186{bottom:112.998000pt;}
.y15b{bottom:123.772133pt;}
.y185{bottom:126.319467pt;}
.ycc{bottom:127.986800pt;}
.y91{bottom:127.986933pt;}
.yc{bottom:132.283467pt;}
.y15a{bottom:135.519067pt;}
.y184{bottom:139.640933pt;}
.yb{bottom:142.950133pt;}
.y143{bottom:143.931467pt;}
.y90{bottom:143.931600pt;}
.y52{bottom:146.950133pt;}
.y159{bottom:147.266000pt;}
.y183{bottom:152.962267pt;}
.y56{bottom:153.616800pt;}
.ya{bottom:154.150133pt;}
.y142{bottom:159.876133pt;}
.y8f{bottom:159.876267pt;}
.y51{bottom:161.616800pt;}
.y55{bottom:164.283467pt;}
.y9{bottom:164.816800pt;}
.y182{bottom:166.283733pt;}
.y54{bottom:174.950133pt;}
.y8{bottom:175.483467pt;}
.ycb{bottom:175.820800pt;}
.y8e{bottom:175.820933pt;}
.y50{bottom:176.283467pt;}
.y181{bottom:179.605200pt;}
.y53{bottom:185.616800pt;}
.y7{bottom:186.150133pt;}
.y4f{bottom:190.950133pt;}
.y8d{bottom:191.765600pt;}
.y180{bottom:192.926667pt;}
.y6{bottom:204.375867pt;}
.y4e{bottom:205.616800pt;}
.y17f{bottom:206.248133pt;}
.y8c{bottom:207.710267pt;}
.y5{bottom:215.575867pt;}
.y17e{bottom:219.569600pt;}
.y4d{bottom:220.283467pt;}
.y95{bottom:223.654800pt;}
.y8b{bottom:223.654933pt;}
.y17d{bottom:232.891067pt;}
.y157{bottom:233.641067pt;}
.y4{bottom:234.334933pt;}
.y4c{bottom:234.950133pt;}
.y141{bottom:239.599467pt;}
.y8a{bottom:239.599600pt;}
.y3{bottom:245.534933pt;}
.y17c{bottom:246.212533pt;}
.y4b{bottom:249.616800pt;}
.y96{bottom:252.744267pt;}
.y140{bottom:255.544133pt;}
.y89{bottom:255.544267pt;}
.y17b{bottom:259.534000pt;}
.y4a{bottom:264.283467pt;}
.y88{bottom:271.488933pt;}
.y17a{bottom:272.855467pt;}
.y49{bottom:278.950133pt;}
.y179{bottom:286.176933pt;}
.y13f{bottom:287.433467pt;}
.y87{bottom:287.433600pt;}
.y178{bottom:299.498400pt;}
.y13e{bottom:303.378133pt;}
.y86{bottom:303.378267pt;}
.y48{bottom:309.288667pt;}
.y177{bottom:312.819867pt;}
.y47{bottom:319.288667pt;}
.y13d{bottom:319.322800pt;}
.y85{bottom:319.322933pt;}
.y176{bottom:326.141333pt;}
.y151{bottom:327.502800pt;}
.y46{bottom:329.288667pt;}
.y119{bottom:333.310133pt;}
.y84{bottom:335.267600pt;}
.y175{bottom:339.462800pt;}
.y118{bottom:346.056933pt;}
.y11a{bottom:346.110133pt;}
.y13c{bottom:351.212133pt;}
.y83{bottom:351.212267pt;}
.y174{bottom:352.784267pt;}
.y150{bottom:355.476133pt;}
.y116{bottom:358.154533pt;}
.y173{bottom:366.105733pt;}
.y13b{bottom:367.156800pt;}
.y82{bottom:367.156933pt;}
.y115{bottom:370.901333pt;}
.y117{bottom:370.954533pt;}
.y172{bottom:379.427200pt;}
.y113{bottom:382.998800pt;}
.y149{bottom:383.101467pt;}
.y81{bottom:383.101600pt;}
.y171{bottom:392.748667pt;}
.y158{bottom:393.939733pt;}
.y112{bottom:395.745600pt;}
.y114{bottom:395.798933pt;}
.y80{bottom:399.046267pt;}
.y13{bottom:402.239200pt;}
.y170{bottom:406.070133pt;}
.y110{bottom:407.843200pt;}
.y13a{bottom:410.216533pt;}
.y7f{bottom:414.990933pt;}
.y12{bottom:416.685333pt;}
.y16f{bottom:419.391467pt;}
.y10f{bottom:420.590000pt;}
.y111{bottom:420.643333pt;}
.y139{bottom:423.444933pt;}
.y7e{bottom:430.935600pt;}
.y10c{bottom:432.687600pt;}
.y16e{bottom:432.712933pt;}
.y10e{bottom:432.740800pt;}
.y138{bottom:436.673200pt;}
.y1dd{bottom:439.182800pt;}
.y11{bottom:442.470133pt;}
.y10b{bottom:445.487600pt;}
.y10d{bottom:445.540800pt;}
.y16d{bottom:446.034400pt;}
.y7d{bottom:446.880267pt;}
.y1dc{bottom:452.411200pt;}
.y10{bottom:456.916400pt;}
.y10a{bottom:457.585200pt;}
.y16c{bottom:459.355867pt;}
.y137{bottom:460.484267pt;}
.y7c{bottom:462.824933pt;}
.y1db{bottom:465.639600pt;}
.y108{bottom:469.682800pt;}
.yf{bottom:471.362533pt;}
.y16b{bottom:472.677333pt;}
.y148{bottom:478.769467pt;}
.y7b{bottom:478.769600pt;}
.y107{bottom:482.429600pt;}
.y109{bottom:482.482933pt;}
.y136{bottom:484.295333pt;}
.ye{bottom:485.808800pt;}
.y16a{bottom:485.998800pt;}
.y104{bottom:494.527200pt;}
.y106{bottom:494.580533pt;}
.y147{bottom:494.714133pt;}
.y7a{bottom:494.714267pt;}
.y135{bottom:497.523600pt;}
.yd{bottom:500.254933pt;}
.y1b3{bottom:505.154400pt;}
.y1da{bottom:505.324533pt;}
.y103{bottom:507.327333pt;}
.y105{bottom:507.380533pt;}
.y45{bottom:507.682400pt;}
.y146{bottom:510.658800pt;}
.y79{bottom:510.658933pt;}
.y1b2{bottom:518.251733pt;}
.y1d9{bottom:518.552933pt;}
.y102{bottom:519.424800pt;}
.y134{bottom:521.334667pt;}
.y14f{bottom:524.089467pt;}
.y145{bottom:526.603467pt;}
.y78{bottom:526.603600pt;}
.y1b1{bottom:531.349200pt;}
.y100{bottom:531.522400pt;}
.y1d8{bottom:531.781333pt;}
.y133{bottom:534.562933pt;}
.y44{bottom:541.026267pt;}
.y144{bottom:542.548133pt;}
.y77{bottom:542.548267pt;}
.yff{bottom:544.322533pt;}
.y101{bottom:544.375733pt;}
.y1b0{bottom:544.446533pt;}
.y1d7{bottom:545.009600pt;}
.y132{bottom:547.791333pt;}
.y43{bottom:555.692933pt;}
.yfe{bottom:556.420133pt;}
.y1af{bottom:557.543867pt;}
.y1d6{bottom:558.238000pt;}
.y76{bottom:558.492933pt;}
.y131{bottom:561.019733pt;}
.yca{bottom:562.768267pt;}
.yfd{bottom:568.517733pt;}
.y1ae{bottom:570.641333pt;}
.y42{bottom:570.811067pt;}
.y1d5{bottom:571.466400pt;}
.yc9{bottom:574.106800pt;}
.y75{bottom:574.437600pt;}
.yfc{bottom:580.615333pt;}
.y1ad{bottom:583.738667pt;}
.y2f{bottom:583.740133pt;}
.y1d4{bottom:584.694667pt;}
.y41{bottom:585.477733pt;}
.y74{bottom:590.382267pt;}
.yfa{bottom:592.801067pt;}
.y1ac{bottom:596.836000pt;}
.y2e{bottom:597.073467pt;}
.y1d3{bottom:597.923067pt;}
.y40{bottom:600.595867pt;}
.y130{bottom:601.027600pt;}
.yf9{bottom:605.601067pt;}
.y169{bottom:606.326800pt;}
.y73{bottom:606.326933pt;}
.yc7{bottom:609.914933pt;}
.y1ab{bottom:609.933333pt;}
.y1d2{bottom:611.151333pt;}
.y12f{bottom:615.389867pt;}
.y3f{bottom:615.714000pt;}
.yf8{bottom:618.401067pt;}
.yfb{bottom:618.454400pt;}
.y72{bottom:622.271600pt;}
.y1aa{bottom:623.030800pt;}
.y1d1{bottom:624.379733pt;}
.yc6{bottom:625.072267pt;}
.y2d{bottom:625.524800pt;}
.ya0{bottom:625.621600pt;}
.y12e{bottom:629.752000pt;}
.yf7{bottom:630.498800pt;}
.y1a9{bottom:636.128133pt;}
.y2c{bottom:636.724800pt;}
.y1d0{bottom:637.608133pt;}
.y71{bottom:638.216267pt;}
.yc5{bottom:639.525600pt;}
.yf5{bottom:642.596267pt;}
.y3e{bottom:644.060400pt;}
.y12d{bottom:644.114267pt;}
.y1a8{bottom:649.225467pt;}
.y2b{bottom:650.759467pt;}
.y1cf{bottom:650.836400pt;}
.y14e{bottom:653.342800pt;}
.y9f{bottom:653.789600pt;}
.ya6{bottom:653.799733pt;}
.y70{bottom:654.160933pt;}
.yc4{bottom:655.056267pt;}
.yf4{bottom:655.396267pt;}
.yf6{bottom:655.449600pt;}
.y3d{bottom:658.727067pt;}
.y1a7{bottom:662.322933pt;}
.y1ce{bottom:664.064800pt;}
.y2a{bottom:665.739067pt;}
.ya7{bottom:666.725067pt;}
.yf2{bottom:667.494000pt;}
.y12c{bottom:669.815067pt;}
.y6f{bottom:670.105600pt;}
.yc3{bottom:670.106933pt;}
.y3c{bottom:673.393733pt;}
.y1a6{bottom:675.420267pt;}
.y29{bottom:676.939067pt;}
.y1cd{bottom:677.293067pt;}
.yf1{bottom:680.240667pt;}
.yf3{bottom:680.294000pt;}
.y12b{bottom:684.177200pt;}
.ya5{bottom:684.188267pt;}
.yc2{bottom:685.008267pt;}
.y6e{bottom:686.050267pt;}
.y1a5{bottom:688.517600pt;}
.y1cc{bottom:690.521467pt;}
.y28{bottom:690.973600pt;}
.yef{bottom:692.338400pt;}
.yc1{bottom:699.920267pt;}
.y3b{bottom:701.740267pt;}
.y1a4{bottom:701.745867pt;}
.y93{bottom:701.994933pt;}
.ya1{bottom:703.097600pt;}
.y1cb{bottom:703.749867pt;}
.yee{bottom:705.085067pt;}
.yf0{bottom:705.138400pt;}
.y27{bottom:705.953200pt;}
.ya2{bottom:706.569600pt;}
.y12a{bottom:709.878000pt;}
.y9e{bottom:714.278933pt;}
.yc0{bottom:714.810933pt;}
.y1a3{bottom:714.974267pt;}
.y3a{bottom:716.406933pt;}
.y1ca{bottom:716.978133pt;}
.y26{bottom:717.153200pt;}
.yec{bottom:717.182800pt;}
.y6d{bottom:717.939600pt;}
.y129{bottom:724.240267pt;}
.y152{bottom:727.436133pt;}
.y1a2{bottom:728.202667pt;}
.yeb{bottom:729.929467pt;}
.yed{bottom:729.982800pt;}
.ybf{bottom:730.032267pt;}
.y1c9{bottom:730.206400pt;}
.y39{bottom:731.073600pt;}
.y25{bottom:731.187867pt;}
.y168{bottom:733.884133pt;}
.y165{bottom:733.884267pt;}
.y1a1{bottom:741.430933pt;}
.ye9{bottom:742.027200pt;}
.y1c8{bottom:743.434800pt;}
.ya8{bottom:743.958400pt;}
.ybe{bottom:744.496267pt;}
.y38{bottom:745.740267pt;}
.y24{bottom:746.167333pt;}
.y167{bottom:749.828800pt;}
.y164{bottom:749.828933pt;}
.y128{bottom:749.940933pt;}
.y156{bottom:750.319867pt;}
.y1a0{bottom:754.659333pt;}
.y14d{bottom:754.662800pt;}
.ye8{bottom:754.827200pt;}
.yea{bottom:754.880400pt;}
.y1c7{bottom:756.663200pt;}
.y23{bottom:757.367333pt;}
.ya3{bottom:758.285600pt;}
.ybd{bottom:759.472267pt;}
.yac{bottom:760.739733pt;}
.y37{bottom:760.858267pt;}
.y127{bottom:764.303200pt;}
.y166{bottom:765.773467pt;}
.y163{bottom:765.773600pt;}
.ye7{bottom:766.924800pt;}
.y19f{bottom:767.887733pt;}
.y1c6{bottom:769.891467pt;}
.y22{bottom:771.402000pt;}
.ybc{bottom:774.394933pt;}
.y9d{bottom:774.404267pt;}
.y36{bottom:775.976400pt;}
.ye6{bottom:779.022400pt;}
.y19e{bottom:781.116000pt;}
.y162{bottom:781.718267pt;}
.y1c5{bottom:783.119867pt;}
.y21{bottom:786.381467pt;}
.ybb{bottom:789.957600pt;}
.y126{bottom:790.004000pt;}
.y35{bottom:791.094533pt;}
.ye4{bottom:791.120000pt;}
.y19d{bottom:794.344400pt;}
.y1c4{bottom:796.217333pt;}
.y20{bottom:797.581600pt;}
.y161{bottom:797.662933pt;}
.ye3{bottom:803.920000pt;}
.ye5{bottom:803.973200pt;}
.y125{bottom:804.366267pt;}
.yba{bottom:804.709600pt;}
.y19c{bottom:807.572800pt;}
.y1c3{bottom:809.314667pt;}
.y1f{bottom:811.616267pt;}
.y160{bottom:813.607600pt;}
.yab{bottom:814.005067pt;}
.y6c{bottom:815.244133pt;}
.y66{bottom:815.331200pt;}
.ye1{bottom:816.017600pt;}
.y9c{bottom:818.868267pt;}
.yb9{bottom:819.610933pt;}
.y19b{bottom:820.801067pt;}
.y1c2{bottom:822.412000pt;}
.y1e{bottom:822.816267pt;}
.y6b{bottom:825.910800pt;}
.ye0{bottom:828.764400pt;}
.ye2{bottom:828.817600pt;}
.y15f{bottom:829.552267pt;}
.y65{bottom:829.997867pt;}
.y124{bottom:830.066933pt;}
.y19a{bottom:834.029467pt;}
.yb8{bottom:834.650933pt;}
.y1c1{bottom:835.509333pt;}
.y6a{bottom:836.577467pt;}
.y1d{bottom:836.850933pt;}
.ydd{bottom:840.862000pt;}
.y123{bottom:844.429200pt;}
.y64{bottom:844.664667pt;}
.y15e{bottom:845.496933pt;}
.y69{bottom:847.244133pt;}
.y199{bottom:847.257867pt;}
.y1c0{bottom:848.606800pt;}
.yb7{bottom:849.584267pt;}
.y1c{bottom:851.830533pt;}
.ya9{bottom:853.205067pt;}
.ydc{bottom:853.662000pt;}
.ydf{bottom:853.715200pt;}
.y68{bottom:857.910800pt;}
.y122{bottom:858.791467pt;}
.y63{bottom:859.331333pt;}
.y198{bottom:860.486133pt;}
.y15d{bottom:861.441600pt;}
.y1bf{bottom:861.704133pt;}
.ya4{bottom:862.622933pt;}
.y1b{bottom:863.030400pt;}
.y9b{bottom:864.321600pt;}
.y14b{bottom:864.329467pt;}
.yc8{bottom:864.720267pt;}
.ydb{bottom:866.462000pt;}
.yde{bottom:866.515200pt;}
.y67{bottom:868.577467pt;}
.yad{bottom:871.059733pt;}
.y197{bottom:873.714400pt;}
.y62{bottom:873.998000pt;}
.y155{bottom:874.477067pt;}
.y1be{bottom:874.801467pt;}
.y1a{bottom:877.065067pt;}
.yd9{bottom:878.559600pt;}
.y34{bottom:879.118133pt;}
.yb6{bottom:879.482933pt;}
.y14c{bottom:879.702800pt;}
.y121{bottom:884.492133pt;}
.y196{bottom:886.942800pt;}
.y1bd{bottom:887.898800pt;}
.y61{bottom:888.664667pt;}
.yd8{bottom:891.306400pt;}
.yda{bottom:891.359600pt;}
.y19{bottom:892.044533pt;}
.yb5{bottom:894.405600pt;}
.y120{bottom:898.854400pt;}
.y18d{bottom:898.965600pt;}
.y195{bottom:900.171200pt;}
.y1bc{bottom:900.996267pt;}
.y60{bottom:903.331333pt;}
.yd5{bottom:903.404000pt;}
.y33{bottom:905.784800pt;}
.yaa{bottom:907.870400pt;}
.yb4{bottom:908.901600pt;}
.y194{bottom:913.399467pt;}
.y1bb{bottom:914.093600pt;}
.yd4{bottom:916.204000pt;}
.y2{bottom:916.252000pt;}
.yd7{bottom:916.257200pt;}
.y18c{bottom:916.924667pt;}
.y5f{bottom:917.998000pt;}
.y18{bottom:918.362667pt;}
.y1{bottom:923.774000pt;}
.yb3{bottom:924.197600pt;}
.y11f{bottom:924.555200pt;}
.y193{bottom:926.627867pt;}
.y1ba{bottom:927.190933pt;}
.y18b{bottom:928.968933pt;}
.yd3{bottom:929.004000pt;}
.yd6{bottom:929.057200pt;}
.y32{bottom:932.451467pt;}
.y5e{bottom:932.664667pt;}
.y9a{bottom:938.885600pt;}
.y11e{bottom:938.917333pt;}
.yb2{bottom:939.141600pt;}
.y192{bottom:939.856267pt;}
.y1b9{bottom:940.288267pt;}
.y18a{bottom:941.066667pt;}
.ycf{bottom:943.936133pt;}
.y17{bottom:944.680800pt;}
.y5d{bottom:947.331333pt;}
.yd2{bottom:948.654400pt;}
.y191{bottom:953.084533pt;}
.y1b8{bottom:953.385733pt;}
.yb1{bottom:954.533600pt;}
.yae{bottom:955.330400pt;}
.y189{bottom:955.998800pt;}
.yd0{bottom:956.736267pt;}
.y5c{bottom:961.998000pt;}
.y11d{bottom:964.618133pt;}
.y190{bottom:966.312933pt;}
.y1b7{bottom:966.483067pt;}
.yd1{bottom:966.613467pt;}
.y99{bottom:969.396267pt;}
.yb0{bottom:969.562933pt;}
.y16{bottom:970.998933pt;}
.y5b{bottom:976.664667pt;}
.y11c{bottom:978.980400pt;}
.y18f{bottom:979.541200pt;}
.y1b6{bottom:979.580533pt;}
.y154{bottom:980.009467pt;}
.yaf{bottom:983.824267pt;}
.y153{bottom:989.022800pt;}
.y5a{bottom:991.331333pt;}
.y1b5{bottom:992.677867pt;}
.y18e{bottom:992.769600pt;}
.y188{bottom:994.742533pt;}
.y14a{bottom:997.169467pt;}
.y15{bottom:997.317067pt;}
.y97{bottom:998.866667pt;}
.y98{bottom:1000.541600pt;}
.y11b{bottom:1004.681200pt;}
.y1b4{bottom:1005.775200pt;}
.y59{bottom:1005.998000pt;}
.y187{bottom:1006.081200pt;}
.yce{bottom:1006.295867pt;}
.y14{bottom:1008.517067pt;}
.y58{bottom:1068.661333pt;}
.y94{bottom:1068.661467pt;}
.hc{height:25.152000pt;}
.h1d{height:27.290667pt;}
.h5{height:27.402667pt;}
.h6{height:27.626667pt;}
.h1b{height:28.028000pt;}
.h16{height:28.373333pt;}
.h4{height:29.344000pt;}
.h2f{height:30.437816pt;}
.h25{height:30.742000pt;}
.h1c{height:31.189333pt;}
.h7{height:33.536000pt;}
.h21{height:33.748800pt;}
.h22{height:33.749333pt;}
.h14{height:34.320000pt;}
.ha{height:34.570667pt;}
.h8{height:34.608000pt;}
.hf{height:35.632000pt;}
.h9{height:35.653333pt;}
.h2d{height:35.867832pt;}
.h12{height:36.226667pt;}
.h15{height:36.480000pt;}
.h1e{height:36.661333pt;}
.h2c{height:38.125248pt;}
.hb{height:38.133333pt;}
.h11{height:38.506667pt;}
.h26{height:38.986667pt;}
.h28{height:39.840000pt;}
.h17{height:40.040000pt;}
.h23{height:40.533333pt;}
.h2e{height:40.583323pt;}
.h20{height:40.746667pt;}
.h24{height:40.989333pt;}
.h13{height:41.664000pt;}
.h1f{height:41.946667pt;}
.h18{height:42.560000pt;}
.h27{height:43.573333pt;}
.h10{height:43.978667pt;}
.h1a{height:44.586667pt;}
.h19{height:45.304000pt;}
.h2b{height:48.608000pt;}
.he{height:50.933333pt;}
.h29{height:62.335467pt;}
.h2a{height:63.627200pt;}
.h2{height:66.549333pt;}
.hd{height:81.493333pt;}
.h3{height:190.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:66.141733pt;}
.x1e{left:74.200800pt;}
.x66{left:76.219467pt;}
.x1f{left:77.526800pt;}
.x36{left:81.599733pt;}
.x4{left:86.362133pt;}
.x3a{left:89.003467pt;}
.x47{left:89.943067pt;}
.x4b{left:91.027067pt;}
.x48{left:92.155067pt;}
.x4d{left:93.893733pt;}
.x67{left:94.988133pt;}
.x4e{left:96.267067pt;}
.x5{left:97.700667pt;}
.x7{left:103.937067pt;}
.x4f{left:105.440400pt;}
.x61{left:107.538800pt;}
.x31{left:108.665067pt;}
.x22{left:111.358133pt;}
.x8{left:115.275600pt;}
.x68{left:117.350000pt;}
.x1c{left:121.773867pt;}
.x46{left:126.614267pt;}
.x4a{left:128.072000pt;}
.x49{left:137.538933pt;}
.x62{left:140.983333pt;}
.x1b{left:142.725733pt;}
.x23{left:147.573200pt;}
.x18{left:151.845067pt;}
.x54{left:153.010933pt;}
.x20{left:155.697067pt;}
.x1a{left:161.013200pt;}
.x1d{left:165.285067pt;}
.x30{left:169.854400pt;}
.x63{left:175.586667pt;}
.x21{left:183.056667pt;}
.x19{left:193.952533pt;}
.x4c{left:206.293733pt;}
.x2f{left:209.026400pt;}
.x53{left:211.640400pt;}
.x29{left:216.735733pt;}
.x40{left:218.078667pt;}
.x39{left:219.331733pt;}
.x2{left:237.354400pt;}
.x38{left:241.339733pt;}
.x33{left:243.393067pt;}
.x17{left:244.724400pt;}
.x45{left:275.234400pt;}
.x32{left:279.222400pt;}
.x64{left:281.950000pt;}
.x37{left:290.395733pt;}
.xe{left:304.798800pt;}
.x2e{left:317.629067pt;}
.x2d{left:319.757067pt;}
.x65{left:321.432667pt;}
.x34{left:328.475733pt;}
.x35{left:337.837067pt;}
.x16{left:338.839467pt;}
.x52{left:345.200400pt;}
.x55{left:350.004400pt;}
.x2a{left:351.602400pt;}
.x2b{left:356.791733pt;}
.x2c{left:358.994400pt;}
.x28{left:393.450400pt;}
.x44{left:399.496000pt;}
.x50{left:404.027067pt;}
.x24{left:406.299200pt;}
.x3e{left:412.209467pt;}
.x58{left:414.973467pt;}
.x69{left:416.694933pt;}
.x25{left:417.637733pt;}
.x85{left:418.803600pt;}
.x57{left:421.417333pt;}
.x10{left:425.746400pt;}
.x7b{left:431.027867pt;}
.x86{left:432.410400pt;}
.x3d{left:436.255467pt;}
.x59{left:443.886533pt;}
.x6a{left:447.675600pt;}
.xc{left:456.391333pt;}
.x73{left:458.988400pt;}
.x60{left:460.220667pt;}
.x7c{left:465.617600pt;}
.x6b{left:477.423067pt;}
.x87{left:478.748667pt;}
.x3c{left:481.236533pt;}
.x3b{left:483.774133pt;}
.xd{left:488.009333pt;}
.x26{left:489.339867pt;}
.x5a{left:490.701867pt;}
.x15{left:495.115733pt;}
.x88{left:502.803733pt;}
.x41{left:512.881867pt;}
.x7d{left:515.018533pt;}
.x5b{left:516.840533pt;}
.x11{left:517.837867pt;}
.x89{left:518.869600pt;}
.x3f{left:522.844000pt;}
.x74{left:532.056933pt;}
.x6c{left:539.252267pt;}
.x7e{left:554.502533pt;}
.x5c{left:555.892000pt;}
.x42{left:558.236133pt;}
.x75{left:566.987600pt;}
.x51{left:569.853733pt;}
.x6d{left:571.121067pt;}
.x8a{left:573.095333pt;}
.x5d{left:578.896267pt;}
.x76{left:580.534667pt;}
.x84{left:581.965467pt;}
.x7f{left:585.064000pt;}
.x77{left:594.555867pt;}
.x8c{left:602.755467pt;}
.xb{left:605.320533pt;}
.x78{left:606.423867pt;}
.x6e{left:607.660133pt;}
.x80{left:610.459333pt;}
.x1{left:614.562400pt;}
.x5e{left:616.567333pt;}
.x81{left:620.620533pt;}
.x5f{left:621.995067pt;}
.xa{left:626.346933pt;}
.x12{left:634.987067pt;}
.x8b{left:637.235200pt;}
.x6f{left:638.136000pt;}
.x79{left:640.860133pt;}
.x82{left:644.562533pt;}
.x9{left:658.159600pt;}
.x14{left:662.866667pt;}
.x56{left:670.113733pt;}
.x43{left:675.401467pt;}
.x70{left:676.387733pt;}
.x13{left:678.172933pt;}
.x83{left:684.855867pt;}
.xf{left:686.079600pt;}
.x7a{left:692.691600pt;}
.x27{left:696.691600pt;}
.x6{left:706.046533pt;}
.x71{left:709.521467pt;}
.x72{left:723.470000pt;}
}




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