
    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_295eda9f71a64f659781fea4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9e4d9f23ee5931ebc9de77c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3535a49fbe7cda054fc4102a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f3711cdabf2cf8d424266d74.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_813e18f844851789298bffc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_831c4f0c8b605e138100dd19.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d56a59d1b45397fb02d03c27.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_aab181dfd5340efca2b8376e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9b2cd9c904cff7403029871a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_76f7c6847f69b5a7dd8f2bdb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c31c9facf139b2c99650bc46.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5046f07ac7c1ab64d455c9f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6c5d4fb00c1ed3563b51aad3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_20ec2fc7b1f0033f54bb8df8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_094b4219d2f9608680d56558.woff2')format("woff");}.fff{font-family:fff;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1e4f5a8f69e5c29fd0d66645.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_12fe7407b1daab5256f9e5f6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_29b815d49d9de11f4a219c38.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_810d1010491fa3416d475355.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6d6568472f198ee3371e6bde.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_cc2d7508baaa4c0cd91cb039.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_463e29fac7d84dbdddc5a805.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ecf0ee2d5995a2821bf18c27.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a7e62490ab8ed83351427ec1.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_aee098fc5c6a99614e29f6ef.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_8fb1b70384b31c5e38cac42a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_3637b4f496f5c93802fb0b6c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c860003e68eda641b71e0a87.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_35e2f7918327df6115b3f440.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_045a23d8dcb975ab9b78dee7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_23aec0a307a301a0cc91f9ea.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_051b834d4adf020e35e86ced.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43{transform:matrix(0.058790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058790,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.082000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.123041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123041,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.133621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133621,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.176136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176136,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.188433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188433,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.188849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188849,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.189236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189236,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.195896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195896,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.196043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196043,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.205078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205078,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.207483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207483,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.216867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216867,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.217241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217241,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240876,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.267677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267677,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.287356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287356,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.289945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289945,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.291176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291176,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.307471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307471,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.319277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319277,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.320988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320988,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.331325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331325,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.335165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335165,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.345109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345109,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.352778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352778,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.354651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354651,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.356322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356322,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.358209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358209,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.363014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363014,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.364943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364943,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.373288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373288,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.376761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376761,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.377841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377841,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.459239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459239,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.460145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460145,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.512931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512931,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.538136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538136,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.600877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600877,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.618421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618421,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.638274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638274,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.645522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645522,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.819767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.819767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.819767,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.824074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824074,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.857143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857143,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(1.086957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.086957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.086957,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-32.370000px;}
.v2{vertical-align:-4.318200px;}
.v1{vertical-align:-2.910000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.626500px;}
.ls76{letter-spacing:-20.560350px;}
.ls70{letter-spacing:-18.733275px;}
.ls8c{letter-spacing:-17.040375px;}
.ls1f{letter-spacing:-13.560750px;}
.ls83{letter-spacing:-12.793350px;}
.lsbe{letter-spacing:-12.144975px;}
.lsc7{letter-spacing:-11.385525px;}
.ls88{letter-spacing:-10.370025px;}
.ls60{letter-spacing:-9.177825px;}
.ls93{letter-spacing:-8.887725px;}
.ls2e{letter-spacing:-8.501700px;}
.ls81{letter-spacing:-8.146575px;}
.lsa7{letter-spacing:-7.879500px;}
.ls71{letter-spacing:-7.764750px;}
.lsd0{letter-spacing:-7.588275px;}
.ls9a{letter-spacing:-7.444800px;}
.lsa2{letter-spacing:-7.405425px;}
.ls94{letter-spacing:-6.670350px;}
.ls99{letter-spacing:-6.619800px;}
.ls82{letter-spacing:-6.442875px;}
.ls8b{letter-spacing:-6.090000px;}
.ls58{letter-spacing:-6.075600px;}
.ls26{letter-spacing:-5.929200px;}
.ls84{letter-spacing:-5.787675px;}
.ls53{letter-spacing:-5.316150px;}
.ls1e{letter-spacing:-5.251125px;}
.ls28{letter-spacing:-5.188050px;}
.ls4e{letter-spacing:-5.082975px;}
.ls90{letter-spacing:-4.798200px;}
.ls8a{letter-spacing:-4.634625px;}
.lsab{letter-spacing:-4.594800px;}
.ls56{letter-spacing:-4.556700px;}
.ls1d{letter-spacing:-4.502400px;}
.ls22{letter-spacing:-4.446900px;}
.ls20{letter-spacing:-3.870300px;}
.ls17{letter-spacing:-3.748650px;}
.ls8d{letter-spacing:-3.705750px;}
.lsc0{letter-spacing:-3.357900px;}
.lsd2{letter-spacing:-3.247200px;}
.ls9c{letter-spacing:-3.173400px;}
.lsb8{letter-spacing:-3.067875px;}
.ls4c{letter-spacing:-3.037800px;}
.ls19{letter-spacing:-2.999925px;}
.ls23{letter-spacing:-2.964600px;}
.ls6d{letter-spacing:-2.773125px;}
.lsa4{letter-spacing:-2.768400px;}
.ls87{letter-spacing:-2.629575px;}
.ls75{letter-spacing:-2.583900px;}
.lsb2{letter-spacing:-2.502900px;}
.lsbb{letter-spacing:-2.355525px;}
.ls57{letter-spacing:-2.278350px;}
.lsc4{letter-spacing:-2.277000px;}
.ls1a{letter-spacing:-2.251200px;}
.ls34{letter-spacing:-2.223450px;}
.ls5f{letter-spacing:-2.131800px;}
.ls65{letter-spacing:-2.115000px;}
.lsb1{letter-spacing:-2.092500px;}
.ls66{letter-spacing:-2.064075px;}
.lsc3{letter-spacing:-1.623600px;}
.lsa9{letter-spacing:-1.593675px;}
.ls8f{letter-spacing:-1.591200px;}
.lsbc{letter-spacing:-1.572525px;}
.ls92{letter-spacing:-1.544400px;}
.ls5a{letter-spacing:-1.518900px;}
.ls25{letter-spacing:-1.482300px;}
.ls48{letter-spacing:-1.399950px;}
.lsae{letter-spacing:-1.395000px;}
.ls6c{letter-spacing:-1.383375px;}
.ls8e{letter-spacing:-1.166400px;}
.ls89{letter-spacing:-1.001925px;}
.lsbd{letter-spacing:-0.789525px;}
.lscf{letter-spacing:-0.780000px;}
.ls4f{letter-spacing:-0.774900px;}
.ls52{letter-spacing:-0.759450px;}
.ls1b{letter-spacing:-0.748725px;}
.ls24{letter-spacing:-0.741150px;}
.ls29{letter-spacing:-0.734550px;}
.ls4b{letter-spacing:-0.705000px;}
.ls49{letter-spacing:-0.703800px;}
.lsaf{letter-spacing:-0.697500px;}
.lsc6{letter-spacing:-0.533250px;}
.lsc8{letter-spacing:-0.515475px;}
.lsa0{letter-spacing:-0.474300px;}
.ls18{letter-spacing:0.000000px;}
.ls86{letter-spacing:0.495225px;}
.ls2b{letter-spacing:0.674325px;}
.lsb3{letter-spacing:0.689325px;}
.lsad{letter-spacing:0.697500px;}
.ls27{letter-spacing:0.697950px;}
.ls91{letter-spacing:0.698625px;}
.ls37{letter-spacing:0.705000px;}
.ls21{letter-spacing:0.719100px;}
.ls5b{letter-spacing:0.726750px;}
.lsc{letter-spacing:0.741150px;}
.ls13{letter-spacing:0.748725px;}
.ls38{letter-spacing:0.759450px;}
.ls6{letter-spacing:0.771150px;}
.ls59{letter-spacing:0.774900px;}
.ls3{letter-spacing:0.780900px;}
.lsb6{letter-spacing:0.789525px;}
.ls16{letter-spacing:0.861000px;}
.ls1c{letter-spacing:0.876750px;}
.ls30{letter-spacing:0.921375px;}
.ls2f{letter-spacing:0.936000px;}
.lsb9{letter-spacing:1.110000px;}
.ls31{letter-spacing:1.342575px;}
.ls62{letter-spacing:1.350000px;}
.ls2c{letter-spacing:1.379025px;}
.ls61{letter-spacing:1.397250px;}
.ls36{letter-spacing:1.399950px;}
.ls4a{letter-spacing:1.419600px;}
.ls5e{letter-spacing:1.451250px;}
.lse{letter-spacing:1.482300px;}
.ls2d{letter-spacing:1.497450px;}
.ls63{letter-spacing:1.502850px;}
.ls3a{letter-spacing:1.518900px;}
.lsce{letter-spacing:1.540500px;}
.ls7{letter-spacing:1.549575px;}
.ls0{letter-spacing:1.561800px;}
.lsb5{letter-spacing:1.572525px;}
.ls78{letter-spacing:1.670850px;}
.ls32{letter-spacing:1.726200px;}
.ls9f{letter-spacing:1.730550px;}
.lsd3{letter-spacing:1.986450px;}
.ls64{letter-spacing:2.085600px;}
.ls7d{letter-spacing:2.092500px;}
.lsf{letter-spacing:2.223450px;}
.ls39{letter-spacing:2.278350px;}
.ls9{letter-spacing:2.320725px;}
.ls1{letter-spacing:2.332425px;}
.ls77{letter-spacing:2.338875px;}
.lsb7{letter-spacing:2.355525px;}
.ls54{letter-spacing:2.360700px;}
.ls69{letter-spacing:2.381625px;}
.lscc{letter-spacing:2.442000px;}
.ls51{letter-spacing:2.516475px;}
.ls14{letter-spacing:2.589300px;}
.ls74{letter-spacing:2.752200px;}
.lsac{letter-spacing:2.843550px;}
.lsba{letter-spacing:2.930400px;}
.lsa1{letter-spacing:2.964300px;}
.ls10{letter-spacing:2.964600px;}
.lsa3{letter-spacing:2.998050px;}
.ls79{letter-spacing:3.025800px;}
.ls3b{letter-spacing:3.037800px;}
.lsa5{letter-spacing:3.056625px;}
.ls4d{letter-spacing:3.071250px;}
.ls8{letter-spacing:3.099150px;}
.ls2{letter-spacing:3.113325px;}
.lsbf{letter-spacing:3.145050px;}
.ls35{letter-spacing:3.452400px;}
.lsb0{letter-spacing:3.487500px;}
.lscb{letter-spacing:3.616200px;}
.lsc2{letter-spacing:3.669600px;}
.lsd{letter-spacing:3.705750px;}
.lsc5{letter-spacing:3.796875px;}
.ls3d{letter-spacing:3.797250px;}
.ls6a{letter-spacing:3.804075px;}
.lsa{letter-spacing:3.870300px;}
.ls5{letter-spacing:3.894225px;}
.ls5c{letter-spacing:4.160250px;}
.ls11{letter-spacing:4.446900px;}
.lsc1{letter-spacing:4.554900px;}
.ls3e{letter-spacing:4.556700px;}
.lsb{letter-spacing:4.641450px;}
.ls73{letter-spacing:4.831200px;}
.lsca{letter-spacing:4.989600px;}
.lsa8{letter-spacing:5.017725px;}
.ls15{letter-spacing:5.178600px;}
.ls12{letter-spacing:5.188050px;}
.ls40{letter-spacing:5.316150px;}
.lsd1{letter-spacing:5.438400px;}
.ls95{letter-spacing:5.663700px;}
.ls68{letter-spacing:5.855100px;}
.ls7a{letter-spacing:5.929200px;}
.ls33{letter-spacing:6.041700px;}
.ls44{letter-spacing:6.075600px;}
.lscd{letter-spacing:6.195150px;}
.lsc9{letter-spacing:6.287250px;}
.ls7b{letter-spacing:6.670350px;}
.ls67{letter-spacing:6.739725px;}
.ls6b{letter-spacing:6.835050px;}
.ls3f{letter-spacing:6.933750px;}
.ls4{letter-spacing:7.007550px;}
.lsa6{letter-spacing:7.270200px;}
.ls7c{letter-spacing:7.405425px;}
.ls2a{letter-spacing:7.502625px;}
.lsaa{letter-spacing:7.529850px;}
.ls3c{letter-spacing:7.588275px;}
.ls85{letter-spacing:7.890750px;}
.ls7e{letter-spacing:8.146575px;}
.ls9e{letter-spacing:8.207325px;}
.ls45{letter-spacing:9.107175px;}
.ls80{letter-spacing:9.628875px;}
.ls9b{letter-spacing:10.011600px;}
.ls96{letter-spacing:10.370025px;}
.ls41{letter-spacing:10.626075px;}
.ls7f{letter-spacing:11.852325px;}
.ls46{letter-spacing:13.663875px;}
.ls55{letter-spacing:13.715625px;}
.ls6e{letter-spacing:14.423325px;}
.ls98{letter-spacing:14.520150px;}
.ls72{letter-spacing:15.369525px;}
.ls6f{letter-spacing:17.679000px;}
.ls5d{letter-spacing:21.005625px;}
.ls43{letter-spacing:21.258375px;}
.ls50{letter-spacing:21.821850px;}
.ls42{letter-spacing:23.536725px;}
.ls47{letter-spacing:31.125000px;}
.lsb4{letter-spacing:56.002800px;}
.ls97{letter-spacing:103.808400px;}
.ls9d{letter-spacing:109.050150px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._34{margin-left:-168.387768px;}
._32{margin-left:-116.275864px;}
._33{margin-left:-107.799843px;}
._2c{margin-left:-27.876765px;}
._30{margin-left:-23.497705px;}
._29{margin-left:-22.167225px;}
._27{margin-left:-17.758255px;}
._2d{margin-left:-16.540584px;}
._2e{margin-left:-14.151399px;}
._2b{margin-left:-12.389920px;}
._3c{margin-left:-11.036720px;}
._2a{margin-left:-9.897750px;}
._31{margin-left:-8.403750px;}
._12{margin-left:-7.211746px;}
._a{margin-left:-5.398050px;}
._16{margin-left:-4.054650px;}
._13{margin-left:-3.052021px;}
._3{margin-left:-1.969800px;}
._e{width:1.864411px;}
._9{width:3.102525px;}
._8{width:4.567725px;}
._0{width:5.829000px;}
._6{width:7.035300px;}
._1{width:8.416875px;}
._15{width:9.811621px;}
._2{width:10.974600px;}
._10{width:12.396600px;}
._4{width:13.460250px;}
._c{width:15.190200px;}
._5{width:17.159250px;}
._11{width:19.031400px;}
._18{width:20.627775px;}
._22{width:21.846600px;}
._25{width:23.207159px;}
._19{width:24.664500px;}
._17{width:25.752841px;}
._7{width:27.619200px;}
._23{width:28.943925px;}
._2f{width:30.174190px;}
._24{width:31.952250px;}
._1f{width:33.822975px;}
._26{width:35.799059px;}
._20{width:38.441250px;}
._14{width:40.576350px;}
._3b{width:46.998750px;}
._38{width:54.454139px;}
._1c{width:58.109100px;}
._1b{width:59.747250px;}
._21{width:82.158750px;}
._1d{width:92.208750px;}
._1a{width:111.624450px;}
._35{width:125.109551px;}
._36{width:128.677169px;}
._b{width:136.813275px;}
._28{width:171.872250px;}
._39{width:205.523325px;}
._3a{width:245.808464px;}
._3d{width:248.538600px;}
._1e{width:269.913750px;}
._f{width:580.598247px;}
._d{width:588.714081px;}
._37{width:777.239798px;}
._3e{width:1134.862425px;}
.fc0{color:transparent;}
.fs3e{font-size:20.250000px;}
.fs3d{font-size:32.250000px;}
.fs3b{font-size:36.000000px;}
.fs10{font-size:38.250000px;}
.fs26{font-size:40.500000px;}
.fs3c{font-size:41.250000px;}
.fs3f{font-size:42.000000px;}
.fs30{font-size:42.750000px;}
.fs2a{font-size:43.500000px;}
.fs38{font-size:44.250000px;}
.fs2{font-size:46.500000px;}
.fs9{font-size:47.250000px;}
.fs11{font-size:48.000000px;}
.fsf{font-size:48.750000px;}
.fs1{font-size:50.250000px;}
.fse{font-size:51.000000px;}
.fs2c{font-size:51.750000px;}
.fs0{font-size:52.500000px;}
.fs19{font-size:53.250000px;}
.fs33{font-size:54.000000px;}
.fs27{font-size:54.750000px;}
.fs42{font-size:55.500000px;}
.fs1a{font-size:56.250000px;}
.fs20{font-size:57.000000px;}
.fs17{font-size:57.750000px;}
.fs43{font-size:58.500000px;}
.fs25{font-size:59.250000px;}
.fs1b{font-size:60.000000px;}
.fs8{font-size:60.750000px;}
.fs18{font-size:61.500000px;}
.fsd{font-size:62.250000px;}
.fs12{font-size:63.000000px;}
.fs22{font-size:63.750000px;}
.fs13{font-size:64.500000px;}
.fs16{font-size:65.250000px;}
.fs21{font-size:66.000000px;}
.fs7{font-size:66.750000px;}
.fs15{font-size:67.500000px;}
.fs14{font-size:68.250000px;}
.fs34{font-size:69.000000px;}
.fs2f{font-size:69.750000px;}
.fsb{font-size:70.500000px;}
.fs40{font-size:71.250000px;}
.fs1f{font-size:71.914800px;}
.fs1c{font-size:72.000000px;}
.fs6{font-size:72.750000px;}
.fsc{font-size:74.250000px;}
.fs32{font-size:75.750000px;}
.fsa{font-size:76.500000px;}
.fs39{font-size:77.250000px;}
.fs3a{font-size:79.500000px;}
.fs35{font-size:83.250000px;}
.fs41{font-size:84.000000px;}
.fs31{font-size:85.500000px;}
.fs1e{font-size:86.250000px;}
.fs1d{font-size:93.750000px;}
.fs29{font-size:96.000000px;}
.fs2b{font-size:100.500000px;}
.fs5{font-size:102.750000px;}
.fs28{font-size:104.250000px;}
.fs2e{font-size:108.000000px;}
.fs3{font-size:108.750000px;}
.fs4{font-size:110.250000px;}
.fs44{font-size:113.808000px;}
.fs36{font-size:114.000000px;}
.fs37{font-size:119.250000px;}
.fs2d{font-size:169.500000px;}
.fs23{font-size:239.250000px;}
.fs24{font-size:328.500000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:77.400900px;}
.yc6{bottom:115.199850px;}
.y5a{bottom:117.360638px;}
.y35{bottom:118.441350px;}
.y128{bottom:120.252937px;}
.y119{bottom:120.254925px;}
.y34{bottom:132.480300px;}
.y59{bottom:135.357825px;}
.y118{bottom:137.887612px;}
.y127{bottom:138.250125px;}
.y17a{bottom:141.118800px;}
.yc5{bottom:146.159850px;}
.y33{bottom:147.240900px;}
.y58{bottom:153.355013px;}
.y117{bottom:155.520300px;}
.y126{bottom:155.882812px;}
.y179{bottom:158.760150px;}
.yc4{bottom:159.121050px;}
.y31{bottom:160.916175px;}
.y32{bottom:160.920600px;}
.yc3{bottom:163.081050px;}
.yc2{bottom:163.082400px;}
.y178{bottom:166.674600px;}
.y115{bottom:173.516175px;}
.y116{bottom:173.520750px;}
.y125{bottom:173.880000px;}
.y124{bottom:173.897288px;}
.y30{bottom:174.961050px;}
.y177{bottom:176.759100px;}
.y176{bottom:184.680937px;}
.y2f{bottom:189.720150px;}
.y114{bottom:190.799550px;}
.y123{bottom:191.529975px;}
.y57{bottom:193.313325px;}
.yc1{bottom:194.394150px;}
.y175{bottom:202.500000px;}
.y174{bottom:202.501500px;}
.y2e{bottom:204.120000px;}
.y122{bottom:209.527163px;}
.y56{bottom:211.310512px;}
.yc0{bottom:212.026463px;}
.y173{bottom:212.399250px;}
.y172{bottom:212.407012px;}
.y2d{bottom:217.801200px;}
.y113{bottom:226.434300px;}
.y121{bottom:227.177138px;}
.y55{bottom:228.958388px;}
.ybf{bottom:229.674338px;}
.y171{bottom:230.399700px;}
.y170{bottom:230.414475px;}
.y2c{bottom:232.560300px;}
.y112{bottom:244.081050px;}
.y120{bottom:244.809825px;}
.y2a{bottom:246.596475px;}
.y2b{bottom:246.600750px;}
.y54{bottom:246.955575px;}
.ybe{bottom:247.703963px;}
.y16f{bottom:248.046787px;}
.y29{bottom:260.641350px;}
.y11f{bottom:262.807013px;}
.y53{bottom:264.603450px;}
.y16e{bottom:265.679100px;}
.ybd{bottom:265.709775px;}
.y91{bottom:267.128288px;}
.y111{bottom:279.719550px;}
.y11e{bottom:280.439700px;}
.y52{bottom:282.069075px;}
.y16d{bottom:283.325438px;}
.ybc{bottom:283.342088px;}
.y90{bottom:284.760600px;}
.y8f{bottom:284.767988px;}
.y28{bottom:285.487763px;}
.y110{bottom:297.365925px;}
.y11d{bottom:298.440300px;}
.y51{bottom:299.884013px;}
.y16c{bottom:300.599812px;}
.ybb{bottom:301.347900px;}
.y8e{bottom:302.400300px;}
.y8d{bottom:302.407688px;}
.y27{bottom:303.120450px;}
.y26{bottom:303.123863px;}
.y10f{bottom:315.363112px;}
.y50{bottom:317.911425px;}
.y16b{bottom:318.232125px;}
.yba{bottom:318.980212px;}
.y8b{bottom:320.038238px;}
.y8c{bottom:320.040000px;}
.y25{bottom:321.121050px;}
.y10e{bottom:333.360300px;}
.y10d{bottom:333.367313px;}
.y4f{bottom:335.726362px;}
.y16a{bottom:335.880000px;}
.y169{bottom:335.889412px;}
.yb9{bottom:336.612525px;}
.y10c{bottom:351.000000px;}
.y10b{bottom:351.007012px;}
.y168{bottom:353.521725px;}
.y4e{bottom:353.541300px;}
.yb8{bottom:354.244838px;}
.y24{bottom:357.840600px;}
.y11c{bottom:361.800600px;}
.y10a{bottom:368.639700px;}
.y167{bottom:371.527537px;}
.yb7{bottom:372.608588px;}
.y8a{bottom:379.440300px;}
.y166{bottom:389.159850px;}
.yb6{bottom:390.228825px;}
.y4d{bottom:393.499613px;}
.y89{bottom:397.435538px;}
.y23{bottom:397.452075px;}
.y165{bottom:406.436400px;}
.yb5{bottom:408.234638px;}
.y11b{bottom:410.759362px;}
.y4c{bottom:411.132300px;}
.y22{bottom:415.084763px;}
.y87{bottom:415.437450px;}
.y88{bottom:415.441350px;}
.y164{bottom:424.800150px;}
.yb4{bottom:426.236400px;}
.y4b{bottom:428.764987px;}
.y11a{bottom:429.121050px;}
.y21{bottom:432.899700px;}
.y85{bottom:433.788975px;}
.y86{bottom:433.801200px;}
.y163{bottom:442.441875px;}
.yb3{bottom:444.594937px;}
.y4a{bottom:446.944425px;}
.y109{bottom:447.120000px;}
.y20{bottom:451.094700px;}
.y84{bottom:451.794787px;}
.y162{bottom:460.074187px;}
.yb2{bottom:462.600750px;}
.y107{bottom:462.964538px;}
.y108{bottom:465.120450px;}
.y49{bottom:465.123862px;}
.y1f{bottom:469.091888px;}
.y82{bottom:469.795388px;}
.y83{bottom:469.800600px;}
.y161{bottom:478.080000px;}
.y106{bottom:481.319850px;}
.y48{bottom:483.121050px;}
.y1e{bottom:487.453575px;}
.y81{bottom:487.797300px;}
.y160{bottom:496.078800px;}
.y15f{bottom:496.086712px;}
.yb1{bottom:496.441350px;}
.y103{bottom:499.673025px;}
.y104{bottom:499.679550px;}
.y47{bottom:501.120000px;}
.y46{bottom:501.126525px;}
.y105{bottom:501.840150px;}
.y1d{bottom:505.086262px;}
.y80{bottom:506.161050px;}
.y15e{bottom:514.079400px;}
.y15d{bottom:514.086787px;}
.y102{bottom:517.320900px;}
.y45{bottom:519.488213px;}
.y1c{bottom:523.265700px;}
.yb0{bottom:530.280450px;}
.y15c{bottom:531.719100px;}
.y7f{bottom:534.960600px;}
.y1b{bottom:541.445138px;}
.y101{bottom:545.759550px;}
.yaf{bottom:548.274038px;}
.y15b{bottom:549.719550px;}
.y7e{bottom:553.140750px;}
.yff{bottom:555.120000px;}
.y100{bottom:555.840150px;}
.y1a{bottom:559.442325px;}
.y44{bottom:559.811025px;}
.yae{bottom:566.279850px;}
.y15a{bottom:568.079400px;}
.y159{bottom:568.087313px;}
.y7d{bottom:570.060300px;}
.yfe{bottom:573.120450px;}
.y19{bottom:577.804012px;}
.y43{bottom:578.172712px;}
.yad{bottom:584.280450px;}
.y157{bottom:586.072987px;}
.y158{bottom:586.080000px;}
.yfd{bottom:587.520300px;}
.yfb{bottom:592.920600px;}
.y18{bottom:595.806975px;}
.y42{bottom:596.169900px;}
.yf9{bottom:600.120450px;}
.y7c{bottom:601.548675px;}
.yac{bottom:602.274038px;}
.yfc{bottom:603.360300px;}
.y156{bottom:604.072275px;}
.yfa{bottom:606.600150px;}
.yf8{bottom:610.201050px;}
.y17{bottom:613.804162px;}
.y41{bottom:614.531588px;}
.y7b{bottom:619.554488px;}
.yab{bottom:620.279850px;}
.yaa{bottom:620.640750px;}
.y154{bottom:621.713287px;}
.y155{bottom:621.720150px;}
.y16{bottom:631.983600px;}
.y40{bottom:632.528775px;}
.y7a{bottom:637.560300px;}
.y153{bottom:639.719100px;}
.ya9{bottom:644.040000px;}
.ya8{bottom:647.279850px;}
.y15{bottom:650.163037px;}
.yd9{bottom:650.163862px;}
.y3f{bottom:650.890463px;}
.yf7{bottom:651.239850px;}
.y78{bottom:655.914787px;}
.y79{bottom:655.920000px;}
.y152{bottom:658.078800px;}
.y151{bottom:658.086337px;}
.y12f{bottom:662.765025px;}
.yd8{bottom:668.161050px;}
.yd7{bottom:668.170687px;}
.y14{bottom:668.524725px;}
.y3e{bottom:668.887650px;}
.yf6{bottom:672.483488px;}
.y76{bottom:673.916700px;}
.y77{bottom:673.920600px;}
.ya7{bottom:674.640750px;}
.y150{bottom:675.720150px;}
.y12e{bottom:680.039400px;}
.yd6{bottom:685.803375px;}
.y13{bottom:686.521912px;}
.y3d{bottom:686.884838px;}
.yf5{bottom:690.845175px;}
.y74{bottom:692.276400px;}
.y75{bottom:692.280450px;}
.y14f{bottom:693.719100px;}
.y14e{bottom:693.726750px;}
.y12c{bottom:698.388675px;}
.y12d{bottom:698.399250px;}
.y12{bottom:704.519100px;}
.y3c{bottom:705.246525px;}
.yf4{bottom:708.842363px;}
.y73{bottom:710.640150px;}
.y72{bottom:710.649038px;}
.y14c{bottom:711.534975px;}
.y14d{bottom:711.540000px;}
.y12b{bottom:716.394488px;}
.y11{bottom:722.516287px;}
.y3b{bottom:723.243713px;}
.yf3{bottom:726.839550px;}
.y14b{bottom:729.354038px;}
.y12a{bottom:734.400300px;}
.y10{bottom:740.877975px;}
.y3a{bottom:741.240900px;}
.y39{bottom:741.242475px;}
.yf2{bottom:745.201050px;}
.yf1{bottom:745.204237px;}
.y14a{bottom:747.359850px;}
.yd5{bottom:756.000000px;}
.yf{bottom:759.239662px;}
.y38{bottom:759.604162px;}
.yf0{bottom:763.201425px;}
.y149{bottom:764.987325px;}
.y71{bottom:771.124912px;}
.ye{bottom:777.601350px;}
.yef{bottom:781.380862px;}
.y148{bottom:782.993138px;}
.yd4{bottom:783.362663px;}
.y70{bottom:789.488663px;}
.y37{bottom:795.959212px;}
.yee{bottom:799.560300px;}
.yed{bottom:799.563562px;}
.ya6{bottom:799.928437px;}
.y147{bottom:800.998950px;}
.y146{bottom:801.004575px;}
.yd3{bottom:801.359850px;}
.y6f{bottom:807.120975px;}
.y36{bottom:814.320900px;}
.yd{bottom:814.680150px;}
.ya4{bottom:817.556850px;}
.ya5{bottom:817.560750px;}
.yec{bottom:817.567762px;}
.y145{bottom:818.458950px;}
.y144{bottom:818.462100px;}
.yeb{bottom:835.200450px;}
.ya2{bottom:835.916700px;}
.ya3{bottom:835.920600px;}
.y142{bottom:836.633888px;}
.y143{bottom:836.639100px;}
.yd2{bottom:837.360900px;}
.yea{bottom:853.911038px;}
.ya1{bottom:854.280450px;}
.ya0{bottom:854.282250px;}
.y140{bottom:854.634337px;}
.y141{bottom:854.639700px;}
.y6e{bottom:867.954788px;}
.ye9{bottom:871.558913px;}
.y13f{bottom:872.640150px;}
.yd1{bottom:873.365063px;}
.y9f{bottom:879.118912px;}
.y6d{bottom:885.960600px;}
.yc{bottom:889.557150px;}
.ye8{bottom:889.920600px;}
.ye7{bottom:889.921312px;}
.y13d{bottom:891.349987px;}
.y13e{bottom:891.359250px;}
.yd0{bottom:891.726750px;}
.y9e{bottom:897.840600px;}
.y6c{bottom:904.320300px;}
.ye6{bottom:908.105063px;}
.y13c{bottom:909.355800px;}
.ycf{bottom:909.359438px;}
.yb{bottom:910.800150px;}
.y9d{bottom:915.841200px;}
.y6a{bottom:922.670887px;}
.y6b{bottom:922.680150px;}
.ye5{bottom:925.923413px;}
.y13b{bottom:927.719550px;}
.yce{bottom:927.721125px;}
.ya{bottom:931.320300px;}
.y8{bottom:932.392050px;}
.y9{bottom:932.399850px;}
.y9c{bottom:934.201050px;}
.y69{bottom:940.676700px;}
.ye3{bottom:943.918762px;}
.ye4{bottom:943.920600px;}
.ycd{bottom:945.718313px;}
.y13a{bottom:945.720150px;}
.y9a{bottom:952.547587px;}
.y9b{bottom:952.560750px;}
.y67{bottom:959.035237px;}
.y68{bottom:959.040450px;}
.ye2{bottom:962.280450px;}
.y7{bottom:962.280600px;}
.ye1{bottom:962.281162px;}
.y138{bottom:964.073362px;}
.y139{bottom:964.080000px;}
.ycc{bottom:964.083525px;}
.y99{bottom:970.911337px;}
.y65{bottom:977.037150px;}
.y66{bottom:977.041050px;}
.ye0{bottom:980.460600px;}
.ydf{bottom:980.465812px;}
.ycb{bottom:982.080712px;}
.y137{bottom:982.795050px;}
.y6{bottom:983.880000px;}
.y98{bottom:988.917150px;}
.y64{bottom:995.400900px;}
.yde{bottom:998.645250px;}
.y136{bottom:1001.158800px;}
.y5{bottom:1004.041050px;}
.y4{bottom:1005.120450px;}
.y97{bottom:1007.280900px;}
.y63{bottom:1015.560300px;}
.y61{bottom:1016.099625px;}
.y62{bottom:1016.100750px;}
.y135{bottom:1019.159400px;}
.ydd{bottom:1020.241875px;}
.y5f{bottom:1033.555537px;}
.y60{bottom:1033.560750px;}
.y134{bottom:1037.519100px;}
.ydc{bottom:1038.603562px;}
.y96{bottom:1041.480900px;}
.y3{bottom:1049.769300px;}
.y5e{bottom:1051.561350px;}
.y133{bottom:1054.807838px;}
.ydb{bottom:1056.596550px;}
.y131{bottom:1073.155350px;}
.y132{bottom:1073.159400px;}
.yda{bottom:1074.958237px;}
.y95{bottom:1075.320038px;}
.y2{bottom:1083.060300px;}
.y5d{bottom:1086.840600px;}
.y130{bottom:1091.519100px;}
.yca{bottom:1093.330050px;}
.y94{bottom:1093.683788px;}
.y93{bottom:1111.689600px;}
.yc9{bottom:1112.048063px;}
.y129{bottom:1127.520300px;}
.yc8{bottom:1129.680750px;}
.y5c{bottom:1130.040000px;}
.y5b{bottom:1130.400900px;}
.y92{bottom:1130.411288px;}
.y1{bottom:1172.159850px;}
.h6f{height:21.120117px;}
.h6d{height:33.635742px;}
.h6b{height:37.546875px;}
.h18{height:38.548828px;}
.h6c{height:40.484619px;}
.h3a{height:42.240234px;}
.h5e{height:42.671631px;}
.h43{height:42.692871px;}
.h62{height:43.428955px;}
.h70{height:43.804688px;}
.h54{height:44.586914px;}
.h33{height:46.696289px;}
.h19{height:47.437500px;}
.h14{height:47.619141px;}
.h16{height:48.178711px;}
.h4{height:48.498047px;}
.hc{height:49.280273px;}
.h17{height:49.317627px;}
.h15{height:50.053711px;}
.h3{height:50.642578px;}
.h2{height:51.500244px;}
.h56{height:52.409180px;}
.h5{height:52.910156px;}
.h67{height:53.191406px;}
.h47{height:53.973633px;}
.h3b{height:54.755859px;}
.h25{height:55.538086px;}
.h5a{height:56.320312px;}
.h7f{height:56.650269px;}
.h28{height:56.678467px;}
.h40{height:57.102539px;}
.h80{height:57.385986px;}
.h7a{height:57.814453px;}
.h78{height:57.884766px;}
.h81{height:58.121704px;}
.h6a{height:58.150635px;}
.h27{height:58.666992px;}
.h29{height:58.886719px;}
.h2e{height:59.449219px;}
.h13{height:59.593140px;}
.hf{height:59.622803px;}
.h55{height:59.639603px;}
.h65{height:59.648903px;}
.h58{height:60.038086px;}
.h22{height:60.231445px;}
.h60{height:60.328857px;}
.h24{height:60.358887px;}
.h75{height:60.468750px;}
.h48{height:61.064575px;}
.h12{height:61.094971px;}
.h45{height:61.099321px;}
.h3d{height:61.102021px;}
.h38{height:61.110571px;}
.h4c{height:61.111171px;}
.h4b{height:61.115821px;}
.h3c{height:61.116421px;}
.h7e{height:61.121071px;}
.h7b{height:61.121521px;}
.h4a{height:61.122421px;}
.h31{height:61.143271px;}
.h3f{height:61.147621px;}
.h23{height:61.224609px;}
.h39{height:61.795898px;}
.h1a{height:61.800293px;}
.h3e{height:61.831055px;}
.h4f{height:61.980469px;}
.h6e{height:62.536011px;}
.h46{height:62.567139px;}
.h32{height:63.271729px;}
.h1b{height:63.303223px;}
.hb{height:63.360352px;}
.h1e{height:63.492188px;}
.h79{height:64.007446px;}
.h21{height:64.039307px;}
.h30{height:64.248047px;}
.h49{height:64.485352px;}
.h36{height:64.743164px;}
.h52{height:64.775391px;}
.h20{height:64.924805px;}
.h5b{height:65.226562px;}
.h26{height:65.511475px;}
.h35{height:66.214600px;}
.h1f{height:66.247559px;}
.h2f{height:66.515625px;}
.h7c{height:66.983643px;}
.h71{height:67.271484px;}
.h68{height:67.545803px;}
.h7d{height:67.719727px;}
.h69{height:68.249303px;}
.h66{height:68.265203px;}
.h1d{height:68.783203px;}
.ha{height:69.618164px;}
.h53{height:70.294922px;}
.h2d{height:70.580443px;}
.h10{height:71.050781px;}
.h9{height:71.400146px;}
.hd{height:71.416946px;}
.h72{height:71.806641px;}
.h5c{height:71.964844px;}
.h1c{height:73.529297px;}
.h11{height:74.830078px;}
.h2a{height:75.093750px;}
.h73{height:76.341797px;}
.he{height:77.097656px;}
.h59{height:79.004883px;}
.h63{height:80.569336px;}
.h74{height:82.400391px;}
.h64{height:82.916016px;}
.h5d{height:86.827148px;}
.h57{height:89.173828px;}
.h2c{height:89.956055px;}
.h2b{height:92.010498px;}
.h42{height:100.125000px;}
.h8{height:100.843506px;}
.h44{height:104.818359px;}
.h6{height:106.732178px;}
.h7{height:108.204346px;}
.h41{height:108.729492px;}
.h82{height:111.640758px;}
.h4e{height:112.640625px;}
.h5f{height:118.898438px;}
.h61{height:124.374023px;}
.h4d{height:176.783203px;}
.h34{height:249.530273px;}
.h37{height:322.404785px;}
.h76{height:1262.880000px;}
.h77{height:1263.000000px;}
.h1{height:1267.500000px;}
.h0{height:1267.561500px;}
.h50{height:1270.440000px;}
.h51{height:1270.500000px;}
.w6{width:847.440000px;}
.w7{width:847.500000px;}
.w3{width:849.000000px;}
.w2{width:849.239693px;}
.w1{width:852.000000px;}
.w0{width:852.119692px;}
.w4{width:866.880000px;}
.w5{width:867.000000px;}
.x0{left:0.000000px;}
.x18{left:61.196317px;}
.x19{left:62.640143px;}
.x8{left:64.800593px;}
.xaa{left:71.280450px;}
.xd9{left:72.359850px;}
.x9{left:79.200443px;}
.x70{left:80.279843px;}
.x2c{left:81.359243px;}
.x1f{left:84.239843px;}
.xad{left:89.279250px;}
.xf{left:90.719543px;}
.x15{left:92.519243px;}
.x42{left:95.759093px;}
.x35{left:97.560292px;}
.x2e{left:99.359842px;}
.xf1{left:106.200450px;}
.x43{left:110.880592px;}
.xb{left:112.321793px;}
.xac{left:113.759550px;}
.xce{left:115.560750px;}
.x71{left:117.719543px;}
.x10{left:119.159242px;}
.x16{left:120.948368px;}
.x2d{left:123.840142px;}
.x51{left:125.280443px;}
.x44{left:127.800142px;}
.x61{left:135.359242px;}
.xe3{left:136.440300px;}
.x57{left:138.599093px;}
.xa5{left:139.680143px;}
.x72{left:141.840593px;}
.x52{left:143.279243px;}
.xa{left:144.719543px;}
.x45{left:145.800593px;}
.x62{left:149.040593px;}
.x58{left:151.919543px;}
.x67{left:153.359843px;}
.xe5{left:155.159400px;}
.x5d{left:157.679092px;}
.xf2{left:162.359250px;}
.x63{left:163.440293px;}
.x11{left:165.968543px;}
.x59{left:167.039393px;}
.x46{left:168.120443px;}
.xc{left:172.439693px;}
.x47{left:174.600143px;}
.xe6{left:175.679550px;}
.xd4{left:176.760750px;}
.x64{left:177.840142px;}
.xf3{left:178.919550px;}
.x5a{left:180.000593px;}
.x5e{left:183.240443px;}
.x53{left:185.399242px;}
.x68{left:190.079392px;}
.x17{left:191.160443px;}
.x48{left:192.959993px;}
.xd5{left:196.920000px;}
.xa6{left:198.360293px;}
.xe7{left:200.159850px;}
.xef{left:201.600150px;}
.x73{left:203.040593px;}
.x3b{left:204.479242px;}
.x69{left:208.439242px;}
.x1{left:211.679092px;}
.x76{left:213.480293px;}
.xf0{left:216.000000px;}
.x74{left:219.239843px;}
.x2f{left:222.479693px;}
.xf4{left:223.560750px;}
.x49{left:227.880143px;}
.x1a{left:229.320293px;}
.xcc{left:233.639700px;}
.x6c{left:235.079993px;}
.xdc{left:236.159400px;}
.x75{left:237.599693px;}
.x36{left:238.679092px;}
.xf5{left:240.839550px;}
.x4a{left:242.639092px;}
.x1b{left:246.239843px;}
.x21{left:248.759542px;}
.xd2{left:250.920000px;}
.xdd{left:255.959400px;}
.xf6{left:257.399700px;}
.xe4{left:258.840150px;}
.x37{left:260.280442px;}
.x1c{left:263.520292px;}
.x6a{left:266.039993px;}
.x65{left:267.480293px;}
.xa7{left:269.999993px;}
.x22{left:271.440293px;}
.x6f{left:273.959992px;}
.x2{left:275.039392px;}
.x54{left:276.840592px;}
.x3c{left:277.919992px;}
.x1d{left:280.439692px;}
.x12{left:284.759092px;}
.xf7{left:286.199400px;}
.xd1{left:288.720750px;}
.x55{left:289.800142px;}
.x30{left:291.240442px;}
.xe8{left:292.319850px;}
.x20{left:294.119392px;}
.x3d{left:296.279843px;}
.x1e{left:298.799542px;}
.x4b{left:300.239843px;}
.x56{left:303.479692px;}
.x4c{left:307.080443px;}
.xda{left:310.320450px;}
.x66{left:312.119992px;}
.x4d{left:313.560293px;}
.xf8{left:315.359850px;}
.x31{left:316.800142px;}
.x9e{left:322.559692px;}
.x40{left:328.319242px;}
.xa8{left:330.120442px;}
.x6d{left:331.199842px;}
.x6b{left:334.080443px;}
.x3e{left:335.159842px;}
.x32{left:337.679692px;}
.x9f{left:338.759092px;}
.xae{left:340.919550px;}
.x41{left:342.359842px;}
.x4e{left:345.960592px;}
.xe1{left:349.920600px;}
.x6e{left:350.999993px;}
.x5f{left:353.160442px;}
.xde{left:354.239850px;}
.xe9{left:356.039400px;}
.x3{left:357.120442px;}
.x33{left:360.360293px;}
.xe2{left:368.639700px;}
.x60{left:370.800142px;}
.x4{left:372.599693px;}
.xdf{left:374.760150px;}
.x34{left:376.559692px;}
.x38{left:380.160442px;}
.x5b{left:382.680142px;}
.x23{left:385.199842px;}
.x50{left:389.519243px;}
.xea{left:390.600150px;}
.x3f{left:393.479242px;}
.x39{left:394.560293px;}
.x5c{left:397.439242px;}
.x4f{left:398.879543px;}
.x3a{left:410.039393px;}
.xa9{left:427.319842px;}
.x24{left:433.079393px;}
.x25{left:434.160442px;}
.xaf{left:443.163300px;}
.xe0{left:444.239400px;}
.xed{left:445.320300px;}
.x2a{left:451.098893px;}
.x77{left:452.882767px;}
.xf9{left:456.839550px;}
.xcd{left:460.079400px;}
.xb0{left:461.179950px;}
.xec{left:462.600750px;}
.xd0{left:465.479700px;}
.xc2{left:467.999400px;}
.x79{left:470.879992px;}
.xeb{left:474.479250px;}
.xb2{left:476.280450px;}
.x10f{left:478.078875px;}
.xfa{left:479.159400px;}
.x108{left:480.241687px;}
.x10d{left:482.399250px;}
.xc3{left:486.000000px;}
.xbd{left:489.600750px;}
.xb3{left:492.840600px;}
.x9d{left:494.640142px;}
.x78{left:495.719542px;}
.x13{left:497.519243px;}
.xa0{left:498.959393px;}
.xcf{left:502.919550px;}
.xbe{left:504.359850px;}
.xd{left:507.240442px;}
.x8e{left:509.399243px;}
.x7e{left:514.440292px;}
.x102{left:520.560750px;}
.x27{left:522.719542px;}
.xee{left:524.159850px;}
.xa1{left:525.239243px;}
.xc4{left:526.320300px;}
.x7f{left:528.840142px;}
.xd6{left:530.639700px;}
.x8f{left:535.679093px;}
.x111{left:538.200450px;}
.xb4{left:541.440300px;}
.x5{left:545.400292px;}
.x26{left:547.199842px;}
.x90{left:550.800592px;}
.x112{left:553.320300px;}
.xd7{left:555.840150px;}
.x80{left:557.280442px;}
.xb5{left:562.680750px;}
.xbf{left:564.839550px;}
.x115{left:566.640750px;}
.xc5{left:569.160450px;}
.x109{left:570.600750px;}
.x100{left:575.279250px;}
.x91{left:576.360293px;}
.x10c{left:578.520750px;}
.x6{left:581.399842px;}
.x84{left:582.840142px;}
.xb6{left:584.639700px;}
.x99{left:587.159392px;}
.x92{left:590.760143px;}
.xc0{left:591.839550px;}
.x113{left:594.720150px;}
.x10e{left:596.519700px;}
.xab{left:598.680150px;}
.xc6{left:600.120450px;}
.x85{left:601.559092px;}
.xa2{left:602.999392px;}
.xb7{left:605.159850px;}
.xfc{left:608.399700px;}
.x7{left:611.639692px;}
.xcb{left:614.159400px;}
.x93{left:615.960593px;}
.x110{left:618.480300px;}
.x8a{left:620.639093px;}
.xdb{left:624.600750px;}
.xd3{left:627.120450px;}
.xb8{left:629.279250px;}
.xe{left:630.719542px;}
.x107{left:632.520750px;}
.x8b{left:635.759092px;}
.xfb{left:637.199400px;}
.x116{left:638.280450px;}
.x14{left:640.079993px;}
.xc7{left:642.240450px;}
.x86{left:643.679093px;}
.xc1{left:645.480300px;}
.xa3{left:651.599093px;}
.xb1{left:654.120450px;}
.x94{left:656.999392px;}
.x28{left:662.399842px;}
.x106{left:663.840150px;}
.x87{left:666.359842px;}
.x95{left:671.039992px;}
.x103{left:675.720150px;}
.xfe{left:676.799550px;}
.xc8{left:681.840600px;}
.x29{left:683.999392px;}
.x101{left:686.159850px;}
.x10a{left:687.239400px;}
.x104{left:694.080000px;}
.xff{left:695.159400px;}
.x96{left:697.319843px;}
.x8c{left:699.480292px;}
.x105{left:700.559700px;}
.xb9{left:708.479700px;}
.x97{left:711.360293px;}
.x7b{left:714.239243px;}
.x8d{left:716.040593px;}
.x81{left:720.359842px;}
.xc9{left:721.800150px;}
.xba{left:728.640750px;}
.xca{left:731.160450px;}
.x2b{left:734.759542px;}
.x88{left:738.360293px;}
.x10b{left:739.800600px;}
.x7c{left:742.320443px;}
.x82{left:743.399842px;}
.x9a{left:748.800142px;}
.xbb{left:752.760150px;}
.x89{left:753.839542px;}
.xd8{left:756.000000px;}
.x83{left:759.599093px;}
.x9b{left:762.120442px;}
.xbc{left:763.920000px;}
.xfd{left:767.520750px;}
.x98{left:769.679693px;}
.x7a{left:773.280442px;}
.x114{left:775.439250px;}
.x7d{left:777.240442px;}
.x9c{left:779.039992px;}
.xa4{left:781.200443px;}
@media print{
.v4{vertical-align:-28.773333pt;}
.v2{vertical-align:-3.838400pt;}
.v1{vertical-align:-2.586667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.668000pt;}
.ls76{letter-spacing:-18.275867pt;}
.ls70{letter-spacing:-16.651800pt;}
.ls8c{letter-spacing:-15.147000pt;}
.ls1f{letter-spacing:-12.054000pt;}
.ls83{letter-spacing:-11.371867pt;}
.lsbe{letter-spacing:-10.795533pt;}
.lsc7{letter-spacing:-10.120467pt;}
.ls88{letter-spacing:-9.217800pt;}
.ls60{letter-spacing:-8.158067pt;}
.ls93{letter-spacing:-7.900200pt;}
.ls2e{letter-spacing:-7.557067pt;}
.ls81{letter-spacing:-7.241400pt;}
.lsa7{letter-spacing:-7.004000pt;}
.ls71{letter-spacing:-6.902000pt;}
.lsd0{letter-spacing:-6.745133pt;}
.ls9a{letter-spacing:-6.617600pt;}
.lsa2{letter-spacing:-6.582600pt;}
.ls94{letter-spacing:-5.929200pt;}
.ls99{letter-spacing:-5.884267pt;}
.ls82{letter-spacing:-5.727000pt;}
.ls8b{letter-spacing:-5.413333pt;}
.ls58{letter-spacing:-5.400533pt;}
.ls26{letter-spacing:-5.270400pt;}
.ls84{letter-spacing:-5.144600pt;}
.ls53{letter-spacing:-4.725467pt;}
.ls1e{letter-spacing:-4.667667pt;}
.ls28{letter-spacing:-4.611600pt;}
.ls4e{letter-spacing:-4.518200pt;}
.ls90{letter-spacing:-4.265067pt;}
.ls8a{letter-spacing:-4.119667pt;}
.lsab{letter-spacing:-4.084267pt;}
.ls56{letter-spacing:-4.050400pt;}
.ls1d{letter-spacing:-4.002133pt;}
.ls22{letter-spacing:-3.952800pt;}
.ls20{letter-spacing:-3.440267pt;}
.ls17{letter-spacing:-3.332133pt;}
.ls8d{letter-spacing:-3.294000pt;}
.lsc0{letter-spacing:-2.984800pt;}
.lsd2{letter-spacing:-2.886400pt;}
.ls9c{letter-spacing:-2.820800pt;}
.lsb8{letter-spacing:-2.727000pt;}
.ls4c{letter-spacing:-2.700267pt;}
.ls19{letter-spacing:-2.666600pt;}
.ls23{letter-spacing:-2.635200pt;}
.ls6d{letter-spacing:-2.465000pt;}
.lsa4{letter-spacing:-2.460800pt;}
.ls87{letter-spacing:-2.337400pt;}
.ls75{letter-spacing:-2.296800pt;}
.lsb2{letter-spacing:-2.224800pt;}
.lsbb{letter-spacing:-2.093800pt;}
.ls57{letter-spacing:-2.025200pt;}
.lsc4{letter-spacing:-2.024000pt;}
.ls1a{letter-spacing:-2.001067pt;}
.ls34{letter-spacing:-1.976400pt;}
.ls5f{letter-spacing:-1.894933pt;}
.ls65{letter-spacing:-1.880000pt;}
.lsb1{letter-spacing:-1.860000pt;}
.ls66{letter-spacing:-1.834733pt;}
.lsc3{letter-spacing:-1.443200pt;}
.lsa9{letter-spacing:-1.416600pt;}
.ls8f{letter-spacing:-1.414400pt;}
.lsbc{letter-spacing:-1.397800pt;}
.ls92{letter-spacing:-1.372800pt;}
.ls5a{letter-spacing:-1.350133pt;}
.ls25{letter-spacing:-1.317600pt;}
.ls48{letter-spacing:-1.244400pt;}
.lsae{letter-spacing:-1.240000pt;}
.ls6c{letter-spacing:-1.229667pt;}
.ls8e{letter-spacing:-1.036800pt;}
.ls89{letter-spacing:-0.890600pt;}
.lsbd{letter-spacing:-0.701800pt;}
.lscf{letter-spacing:-0.693333pt;}
.ls4f{letter-spacing:-0.688800pt;}
.ls52{letter-spacing:-0.675067pt;}
.ls1b{letter-spacing:-0.665533pt;}
.ls24{letter-spacing:-0.658800pt;}
.ls29{letter-spacing:-0.652933pt;}
.ls4b{letter-spacing:-0.626667pt;}
.ls49{letter-spacing:-0.625600pt;}
.lsaf{letter-spacing:-0.620000pt;}
.lsc6{letter-spacing:-0.474000pt;}
.lsc8{letter-spacing:-0.458200pt;}
.lsa0{letter-spacing:-0.421600pt;}
.ls18{letter-spacing:0.000000pt;}
.ls86{letter-spacing:0.440200pt;}
.ls2b{letter-spacing:0.599400pt;}
.lsb3{letter-spacing:0.612733pt;}
.lsad{letter-spacing:0.620000pt;}
.ls27{letter-spacing:0.620400pt;}
.ls91{letter-spacing:0.621000pt;}
.ls37{letter-spacing:0.626667pt;}
.ls21{letter-spacing:0.639200pt;}
.ls5b{letter-spacing:0.646000pt;}
.lsc{letter-spacing:0.658800pt;}
.ls13{letter-spacing:0.665533pt;}
.ls38{letter-spacing:0.675067pt;}
.ls6{letter-spacing:0.685467pt;}
.ls59{letter-spacing:0.688800pt;}
.ls3{letter-spacing:0.694133pt;}
.lsb6{letter-spacing:0.701800pt;}
.ls16{letter-spacing:0.765333pt;}
.ls1c{letter-spacing:0.779333pt;}
.ls30{letter-spacing:0.819000pt;}
.ls2f{letter-spacing:0.832000pt;}
.lsb9{letter-spacing:0.986667pt;}
.ls31{letter-spacing:1.193400pt;}
.ls62{letter-spacing:1.200000pt;}
.ls2c{letter-spacing:1.225800pt;}
.ls61{letter-spacing:1.242000pt;}
.ls36{letter-spacing:1.244400pt;}
.ls4a{letter-spacing:1.261867pt;}
.ls5e{letter-spacing:1.290000pt;}
.lse{letter-spacing:1.317600pt;}
.ls2d{letter-spacing:1.331067pt;}
.ls63{letter-spacing:1.335867pt;}
.ls3a{letter-spacing:1.350133pt;}
.lsce{letter-spacing:1.369333pt;}
.ls7{letter-spacing:1.377400pt;}
.ls0{letter-spacing:1.388267pt;}
.lsb5{letter-spacing:1.397800pt;}
.ls78{letter-spacing:1.485200pt;}
.ls32{letter-spacing:1.534400pt;}
.ls9f{letter-spacing:1.538267pt;}
.lsd3{letter-spacing:1.765733pt;}
.ls64{letter-spacing:1.853867pt;}
.ls7d{letter-spacing:1.860000pt;}
.lsf{letter-spacing:1.976400pt;}
.ls39{letter-spacing:2.025200pt;}
.ls9{letter-spacing:2.062867pt;}
.ls1{letter-spacing:2.073267pt;}
.ls77{letter-spacing:2.079000pt;}
.lsb7{letter-spacing:2.093800pt;}
.ls54{letter-spacing:2.098400pt;}
.ls69{letter-spacing:2.117000pt;}
.lscc{letter-spacing:2.170667pt;}
.ls51{letter-spacing:2.236867pt;}
.ls14{letter-spacing:2.301600pt;}
.ls74{letter-spacing:2.446400pt;}
.lsac{letter-spacing:2.527600pt;}
.lsba{letter-spacing:2.604800pt;}
.lsa1{letter-spacing:2.634933pt;}
.ls10{letter-spacing:2.635200pt;}
.lsa3{letter-spacing:2.664933pt;}
.ls79{letter-spacing:2.689600pt;}
.ls3b{letter-spacing:2.700267pt;}
.lsa5{letter-spacing:2.717000pt;}
.ls4d{letter-spacing:2.730000pt;}
.ls8{letter-spacing:2.754800pt;}
.ls2{letter-spacing:2.767400pt;}
.lsbf{letter-spacing:2.795600pt;}
.ls35{letter-spacing:3.068800pt;}
.lsb0{letter-spacing:3.100000pt;}
.lscb{letter-spacing:3.214400pt;}
.lsc2{letter-spacing:3.261867pt;}
.lsd{letter-spacing:3.294000pt;}
.lsc5{letter-spacing:3.375000pt;}
.ls3d{letter-spacing:3.375333pt;}
.ls6a{letter-spacing:3.381400pt;}
.lsa{letter-spacing:3.440267pt;}
.ls5{letter-spacing:3.461533pt;}
.ls5c{letter-spacing:3.698000pt;}
.ls11{letter-spacing:3.952800pt;}
.lsc1{letter-spacing:4.048800pt;}
.ls3e{letter-spacing:4.050400pt;}
.lsb{letter-spacing:4.125733pt;}
.ls73{letter-spacing:4.294400pt;}
.lsca{letter-spacing:4.435200pt;}
.lsa8{letter-spacing:4.460200pt;}
.ls15{letter-spacing:4.603200pt;}
.ls12{letter-spacing:4.611600pt;}
.ls40{letter-spacing:4.725467pt;}
.lsd1{letter-spacing:4.834133pt;}
.ls95{letter-spacing:5.034400pt;}
.ls68{letter-spacing:5.204533pt;}
.ls7a{letter-spacing:5.270400pt;}
.ls33{letter-spacing:5.370400pt;}
.ls44{letter-spacing:5.400533pt;}
.lscd{letter-spacing:5.506800pt;}
.lsc9{letter-spacing:5.588667pt;}
.ls7b{letter-spacing:5.929200pt;}
.ls67{letter-spacing:5.990867pt;}
.ls6b{letter-spacing:6.075600pt;}
.ls3f{letter-spacing:6.163333pt;}
.ls4{letter-spacing:6.228933pt;}
.lsa6{letter-spacing:6.462400pt;}
.ls7c{letter-spacing:6.582600pt;}
.ls2a{letter-spacing:6.669000pt;}
.lsaa{letter-spacing:6.693200pt;}
.ls3c{letter-spacing:6.745133pt;}
.ls85{letter-spacing:7.014000pt;}
.ls7e{letter-spacing:7.241400pt;}
.ls9e{letter-spacing:7.295400pt;}
.ls45{letter-spacing:8.095267pt;}
.ls80{letter-spacing:8.559000pt;}
.ls9b{letter-spacing:8.899200pt;}
.ls96{letter-spacing:9.217800pt;}
.ls41{letter-spacing:9.445400pt;}
.ls7f{letter-spacing:10.535400pt;}
.ls46{letter-spacing:12.145667pt;}
.ls55{letter-spacing:12.191667pt;}
.ls6e{letter-spacing:12.820733pt;}
.ls98{letter-spacing:12.906800pt;}
.ls72{letter-spacing:13.661800pt;}
.ls6f{letter-spacing:15.714667pt;}
.ls5d{letter-spacing:18.671667pt;}
.ls43{letter-spacing:18.896333pt;}
.ls50{letter-spacing:19.397200pt;}
.ls42{letter-spacing:20.921533pt;}
.ls47{letter-spacing:27.666667pt;}
.lsb4{letter-spacing:49.780267pt;}
.ls97{letter-spacing:92.274133pt;}
.ls9d{letter-spacing:96.933467pt;}
.ws0{word-spacing:0.000000pt;}
._34{margin-left:-149.678016pt;}
._32{margin-left:-103.356324pt;}
._33{margin-left:-95.822083pt;}
._2c{margin-left:-24.779346pt;}
._30{margin-left:-20.886849pt;}
._29{margin-left:-19.704200pt;}
._27{margin-left:-15.785115pt;}
._2d{margin-left:-14.702741pt;}
._2e{margin-left:-12.579021pt;}
._2b{margin-left:-11.013262pt;}
._3c{margin-left:-9.810418pt;}
._2a{margin-left:-8.798000pt;}
._31{margin-left:-7.470000pt;}
._12{margin-left:-6.410441pt;}
._a{margin-left:-4.798267pt;}
._16{margin-left:-3.604133pt;}
._13{margin-left:-2.712908pt;}
._3{margin-left:-1.750933pt;}
._e{width:1.657254pt;}
._9{width:2.757800pt;}
._8{width:4.060200pt;}
._0{width:5.181333pt;}
._6{width:6.253600pt;}
._1{width:7.481667pt;}
._15{width:8.721441pt;}
._2{width:9.755200pt;}
._10{width:11.019200pt;}
._4{width:11.964667pt;}
._c{width:13.502400pt;}
._5{width:15.252667pt;}
._11{width:16.916800pt;}
._18{width:18.335800pt;}
._22{width:19.419200pt;}
._25{width:20.628586pt;}
._19{width:21.924000pt;}
._17{width:22.891414pt;}
._7{width:24.550400pt;}
._23{width:25.727933pt;}
._2f{width:26.821502pt;}
._24{width:28.402000pt;}
._1f{width:30.064867pt;}
._26{width:31.821386pt;}
._20{width:34.170000pt;}
._14{width:36.067867pt;}
._3b{width:41.776667pt;}
._38{width:48.403679pt;}
._1c{width:51.652533pt;}
._1b{width:53.108667pt;}
._21{width:73.030000pt;}
._1d{width:81.963333pt;}
._1a{width:99.221733pt;}
._35{width:111.208489pt;}
._36{width:114.379706pt;}
._b{width:121.611800pt;}
._28{width:152.775333pt;}
._39{width:182.687400pt;}
._3a{width:218.496413pt;}
._3d{width:220.923200pt;}
._1e{width:239.923333pt;}
._f{width:516.087330pt;}
._d{width:523.301406pt;}
._37{width:690.879821pt;}
._3e{width:1008.766600pt;}
.fs3e{font-size:18.000000pt;}
.fs3d{font-size:28.666667pt;}
.fs3b{font-size:32.000000pt;}
.fs10{font-size:34.000000pt;}
.fs26{font-size:36.000000pt;}
.fs3c{font-size:36.666667pt;}
.fs3f{font-size:37.333333pt;}
.fs30{font-size:38.000000pt;}
.fs2a{font-size:38.666667pt;}
.fs38{font-size:39.333333pt;}
.fs2{font-size:41.333333pt;}
.fs9{font-size:42.000000pt;}
.fs11{font-size:42.666667pt;}
.fsf{font-size:43.333333pt;}
.fs1{font-size:44.666667pt;}
.fse{font-size:45.333333pt;}
.fs2c{font-size:46.000000pt;}
.fs0{font-size:46.666667pt;}
.fs19{font-size:47.333333pt;}
.fs33{font-size:48.000000pt;}
.fs27{font-size:48.666667pt;}
.fs42{font-size:49.333333pt;}
.fs1a{font-size:50.000000pt;}
.fs20{font-size:50.666667pt;}
.fs17{font-size:51.333333pt;}
.fs43{font-size:52.000000pt;}
.fs25{font-size:52.666667pt;}
.fs1b{font-size:53.333333pt;}
.fs8{font-size:54.000000pt;}
.fs18{font-size:54.666667pt;}
.fsd{font-size:55.333333pt;}
.fs12{font-size:56.000000pt;}
.fs22{font-size:56.666667pt;}
.fs13{font-size:57.333333pt;}
.fs16{font-size:58.000000pt;}
.fs21{font-size:58.666667pt;}
.fs7{font-size:59.333333pt;}
.fs15{font-size:60.000000pt;}
.fs14{font-size:60.666667pt;}
.fs34{font-size:61.333333pt;}
.fs2f{font-size:62.000000pt;}
.fsb{font-size:62.666667pt;}
.fs40{font-size:63.333333pt;}
.fs1f{font-size:63.924267pt;}
.fs1c{font-size:64.000000pt;}
.fs6{font-size:64.666667pt;}
.fsc{font-size:66.000000pt;}
.fs32{font-size:67.333333pt;}
.fsa{font-size:68.000000pt;}
.fs39{font-size:68.666667pt;}
.fs3a{font-size:70.666667pt;}
.fs35{font-size:74.000000pt;}
.fs41{font-size:74.666667pt;}
.fs31{font-size:76.000000pt;}
.fs1e{font-size:76.666667pt;}
.fs1d{font-size:83.333333pt;}
.fs29{font-size:85.333333pt;}
.fs2b{font-size:89.333333pt;}
.fs5{font-size:91.333333pt;}
.fs28{font-size:92.666667pt;}
.fs2e{font-size:96.000000pt;}
.fs3{font-size:96.666667pt;}
.fs4{font-size:98.000000pt;}
.fs44{font-size:101.162667pt;}
.fs36{font-size:101.333333pt;}
.fs37{font-size:106.000000pt;}
.fs2d{font-size:150.666667pt;}
.fs23{font-size:212.666667pt;}
.fs24{font-size:292.000000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:68.800800pt;}
.yc6{bottom:102.399867pt;}
.y5a{bottom:104.320567pt;}
.y35{bottom:105.281200pt;}
.y128{bottom:106.891500pt;}
.y119{bottom:106.893267pt;}
.y34{bottom:117.760267pt;}
.y59{bottom:120.318067pt;}
.y118{bottom:122.566767pt;}
.y127{bottom:122.889000pt;}
.y17a{bottom:125.438933pt;}
.yc5{bottom:129.919867pt;}
.y33{bottom:130.880800pt;}
.y58{bottom:136.315567pt;}
.y117{bottom:138.240267pt;}
.y126{bottom:138.562500pt;}
.y179{bottom:141.120133pt;}
.yc4{bottom:141.440933pt;}
.y31{bottom:143.036600pt;}
.y32{bottom:143.040533pt;}
.yc3{bottom:144.960933pt;}
.yc2{bottom:144.962133pt;}
.y178{bottom:148.155200pt;}
.y115{bottom:154.236600pt;}
.y116{bottom:154.240667pt;}
.y125{bottom:154.560000pt;}
.y124{bottom:154.575367pt;}
.y30{bottom:155.520933pt;}
.y177{bottom:157.119200pt;}
.y176{bottom:164.160833pt;}
.y2f{bottom:168.640133pt;}
.y114{bottom:169.599600pt;}
.y123{bottom:170.248867pt;}
.y57{bottom:171.834067pt;}
.yc1{bottom:172.794800pt;}
.y175{bottom:180.000000pt;}
.y174{bottom:180.001333pt;}
.y2e{bottom:181.440000pt;}
.y122{bottom:186.246367pt;}
.y56{bottom:187.831567pt;}
.yc0{bottom:188.467967pt;}
.y173{bottom:188.799333pt;}
.y172{bottom:188.806233pt;}
.y2d{bottom:193.601067pt;}
.y113{bottom:201.274933pt;}
.y121{bottom:201.935233pt;}
.y55{bottom:203.518567pt;}
.ybf{bottom:204.154967pt;}
.y171{bottom:204.799733pt;}
.y170{bottom:204.812867pt;}
.y2c{bottom:206.720267pt;}
.y112{bottom:216.960933pt;}
.y120{bottom:217.608733pt;}
.y2a{bottom:219.196867pt;}
.y2b{bottom:219.200667pt;}
.y54{bottom:219.516067pt;}
.ybe{bottom:220.181300pt;}
.y16f{bottom:220.486033pt;}
.y29{bottom:231.681200pt;}
.y11f{bottom:233.606233pt;}
.y53{bottom:235.203067pt;}
.y16e{bottom:236.159200pt;}
.ybd{bottom:236.186467pt;}
.y91{bottom:237.447367pt;}
.y111{bottom:248.639600pt;}
.y11e{bottom:249.279733pt;}
.y52{bottom:250.728067pt;}
.y16d{bottom:251.844833pt;}
.ybc{bottom:251.859633pt;}
.y90{bottom:253.120533pt;}
.y8f{bottom:253.127100pt;}
.y28{bottom:253.766900pt;}
.y110{bottom:264.325267pt;}
.y11d{bottom:265.280267pt;}
.y51{bottom:266.563567pt;}
.y16c{bottom:267.199833pt;}
.ybb{bottom:267.864800pt;}
.y8e{bottom:268.800267pt;}
.y8d{bottom:268.806833pt;}
.y27{bottom:269.440400pt;}
.y26{bottom:269.443433pt;}
.y10f{bottom:280.322767pt;}
.y50{bottom:282.587933pt;}
.y16b{bottom:282.873000pt;}
.yba{bottom:283.537967pt;}
.y8b{bottom:284.478433pt;}
.y8c{bottom:284.480000pt;}
.y25{bottom:285.440933pt;}
.y10e{bottom:296.320267pt;}
.y10d{bottom:296.326500pt;}
.y4f{bottom:298.423433pt;}
.y16a{bottom:298.560000pt;}
.y169{bottom:298.568367pt;}
.yb9{bottom:299.211133pt;}
.y10c{bottom:312.000000pt;}
.y10b{bottom:312.006233pt;}
.y168{bottom:314.241533pt;}
.y4e{bottom:314.258933pt;}
.yb8{bottom:314.884300pt;}
.y24{bottom:318.080533pt;}
.y11c{bottom:321.600533pt;}
.y10a{bottom:327.679733pt;}
.y167{bottom:330.246700pt;}
.yb7{bottom:331.207633pt;}
.y8a{bottom:337.280267pt;}
.y166{bottom:345.919867pt;}
.yb6{bottom:346.870067pt;}
.y4d{bottom:349.777433pt;}
.y89{bottom:353.276033pt;}
.y23{bottom:353.290733pt;}
.y165{bottom:361.276800pt;}
.yb5{bottom:362.875233pt;}
.y11b{bottom:365.119433pt;}
.y4c{bottom:365.450933pt;}
.y22{bottom:368.964233pt;}
.y87{bottom:369.277733pt;}
.y88{bottom:369.281200pt;}
.y164{bottom:377.600133pt;}
.yb4{bottom:378.876800pt;}
.y4b{bottom:381.124433pt;}
.y11a{bottom:381.440933pt;}
.y21{bottom:384.799733pt;}
.y85{bottom:385.590200pt;}
.y86{bottom:385.601067pt;}
.y163{bottom:393.281667pt;}
.yb3{bottom:395.195500pt;}
.y4a{bottom:397.283933pt;}
.y109{bottom:397.440000pt;}
.y20{bottom:400.973067pt;}
.y84{bottom:401.595367pt;}
.y162{bottom:408.954833pt;}
.yb2{bottom:411.200667pt;}
.y107{bottom:411.524033pt;}
.y108{bottom:413.440400pt;}
.y49{bottom:413.443433pt;}
.y1f{bottom:416.970567pt;}
.y82{bottom:417.595900pt;}
.y83{bottom:417.600533pt;}
.y161{bottom:424.960000pt;}
.y106{bottom:427.839867pt;}
.y48{bottom:429.440933pt;}
.y1e{bottom:433.292067pt;}
.y81{bottom:433.597600pt;}
.y160{bottom:440.958933pt;}
.y15f{bottom:440.965967pt;}
.yb1{bottom:441.281200pt;}
.y103{bottom:444.153800pt;}
.y104{bottom:444.159600pt;}
.y47{bottom:445.440000pt;}
.y46{bottom:445.445800pt;}
.y105{bottom:446.080133pt;}
.y1d{bottom:448.965567pt;}
.y80{bottom:449.920933pt;}
.y15e{bottom:456.959467pt;}
.y15d{bottom:456.966033pt;}
.y102{bottom:459.840800pt;}
.y45{bottom:461.767300pt;}
.y1c{bottom:465.125067pt;}
.yb0{bottom:471.360400pt;}
.y15c{bottom:472.639200pt;}
.y7f{bottom:475.520533pt;}
.y1b{bottom:481.284567pt;}
.y101{bottom:485.119600pt;}
.yaf{bottom:487.354700pt;}
.y15b{bottom:488.639600pt;}
.y7e{bottom:491.680667pt;}
.yff{bottom:493.440000pt;}
.y100{bottom:494.080133pt;}
.y1a{bottom:497.282067pt;}
.y44{bottom:497.609800pt;}
.yae{bottom:503.359867pt;}
.y15a{bottom:504.959467pt;}
.y159{bottom:504.966500pt;}
.y7d{bottom:506.720267pt;}
.yfe{bottom:509.440400pt;}
.y19{bottom:513.603567pt;}
.y43{bottom:513.931300pt;}
.yad{bottom:519.360400pt;}
.y157{bottom:520.953767pt;}
.y158{bottom:520.960000pt;}
.yfd{bottom:522.240267pt;}
.yfb{bottom:527.040533pt;}
.y18{bottom:529.606200pt;}
.y42{bottom:529.928800pt;}
.yf9{bottom:533.440400pt;}
.y7c{bottom:534.709933pt;}
.yac{bottom:535.354700pt;}
.yfc{bottom:536.320267pt;}
.y156{bottom:536.953133pt;}
.yfa{bottom:539.200133pt;}
.yf8{bottom:542.400933pt;}
.y17{bottom:545.603700pt;}
.y41{bottom:546.250300pt;}
.y7b{bottom:550.715100pt;}
.yab{bottom:551.359867pt;}
.yaa{bottom:551.680667pt;}
.y154{bottom:552.634033pt;}
.y155{bottom:552.640133pt;}
.y16{bottom:561.763200pt;}
.y40{bottom:562.247800pt;}
.y7a{bottom:566.720267pt;}
.y153{bottom:568.639200pt;}
.ya9{bottom:572.480000pt;}
.ya8{bottom:575.359867pt;}
.y15{bottom:577.922700pt;}
.yd9{bottom:577.923433pt;}
.y3f{bottom:578.569300pt;}
.yf7{bottom:578.879867pt;}
.y78{bottom:583.035367pt;}
.y79{bottom:583.040000pt;}
.y152{bottom:584.958933pt;}
.y151{bottom:584.965633pt;}
.y12f{bottom:589.124467pt;}
.yd8{bottom:593.920933pt;}
.yd7{bottom:593.929500pt;}
.y14{bottom:594.244200pt;}
.y3e{bottom:594.566800pt;}
.yf6{bottom:597.763100pt;}
.y76{bottom:599.037067pt;}
.y77{bottom:599.040533pt;}
.ya7{bottom:599.680667pt;}
.y150{bottom:600.640133pt;}
.y12e{bottom:604.479467pt;}
.yd6{bottom:609.603000pt;}
.y13{bottom:610.241700pt;}
.y3d{bottom:610.564300pt;}
.yf5{bottom:614.084600pt;}
.y74{bottom:615.356800pt;}
.y75{bottom:615.360400pt;}
.y14f{bottom:616.639200pt;}
.y14e{bottom:616.646000pt;}
.y12c{bottom:620.789933pt;}
.y12d{bottom:620.799333pt;}
.y12{bottom:626.239200pt;}
.y3c{bottom:626.885800pt;}
.yf4{bottom:630.082100pt;}
.y73{bottom:631.680133pt;}
.y72{bottom:631.688033pt;}
.y14c{bottom:632.475533pt;}
.y14d{bottom:632.480000pt;}
.y12b{bottom:636.795100pt;}
.y11{bottom:642.236700pt;}
.y3b{bottom:642.883300pt;}
.yf3{bottom:646.079600pt;}
.y14b{bottom:648.314700pt;}
.y12a{bottom:652.800267pt;}
.y10{bottom:658.558200pt;}
.y3a{bottom:658.880800pt;}
.y39{bottom:658.882200pt;}
.yf2{bottom:662.400933pt;}
.yf1{bottom:662.403767pt;}
.y14a{bottom:664.319867pt;}
.yd5{bottom:672.000000pt;}
.yf{bottom:674.879700pt;}
.y38{bottom:675.203700pt;}
.yf0{bottom:678.401267pt;}
.y149{bottom:679.988733pt;}
.y71{bottom:685.444367pt;}
.ye{bottom:691.201200pt;}
.yef{bottom:694.560767pt;}
.y148{bottom:695.993900pt;}
.yd4{bottom:696.322367pt;}
.y70{bottom:701.767700pt;}
.y37{bottom:707.519300pt;}
.yee{bottom:710.720267pt;}
.yed{bottom:710.723167pt;}
.ya6{bottom:711.047500pt;}
.y147{bottom:711.999067pt;}
.y146{bottom:712.004067pt;}
.yd3{bottom:712.319867pt;}
.y6f{bottom:717.440867pt;}
.y36{bottom:723.840800pt;}
.yd{bottom:724.160133pt;}
.ya4{bottom:726.717200pt;}
.ya5{bottom:726.720667pt;}
.yec{bottom:726.726900pt;}
.y145{bottom:727.519067pt;}
.y144{bottom:727.521867pt;}
.yeb{bottom:742.400400pt;}
.ya2{bottom:743.037067pt;}
.ya3{bottom:743.040533pt;}
.y142{bottom:743.674567pt;}
.y143{bottom:743.679200pt;}
.yd2{bottom:744.320800pt;}
.yea{bottom:759.032033pt;}
.ya1{bottom:759.360400pt;}
.ya0{bottom:759.362000pt;}
.y140{bottom:759.674967pt;}
.y141{bottom:759.679733pt;}
.y6e{bottom:771.515367pt;}
.ye9{bottom:774.719033pt;}
.y13f{bottom:775.680133pt;}
.yd1{bottom:776.324500pt;}
.y9f{bottom:781.439033pt;}
.y6d{bottom:787.520533pt;}
.yc{bottom:790.717467pt;}
.ye8{bottom:791.040533pt;}
.ye7{bottom:791.041167pt;}
.y13d{bottom:792.311100pt;}
.y13e{bottom:792.319333pt;}
.yd0{bottom:792.646000pt;}
.y9e{bottom:798.080533pt;}
.y6c{bottom:803.840267pt;}
.ye6{bottom:807.204500pt;}
.y13c{bottom:808.316267pt;}
.ycf{bottom:808.319500pt;}
.yb{bottom:809.600133pt;}
.y9d{bottom:814.081067pt;}
.y6a{bottom:820.151900pt;}
.y6b{bottom:820.160133pt;}
.ye5{bottom:823.043033pt;}
.y13b{bottom:824.639600pt;}
.yce{bottom:824.641000pt;}
.ya{bottom:827.840267pt;}
.y8{bottom:828.792933pt;}
.y9{bottom:828.799867pt;}
.y9c{bottom:830.400933pt;}
.y69{bottom:836.157067pt;}
.ye3{bottom:839.038900pt;}
.ye4{bottom:839.040533pt;}
.ycd{bottom:840.638500pt;}
.y13a{bottom:840.640133pt;}
.y9a{bottom:846.708967pt;}
.y9b{bottom:846.720667pt;}
.y67{bottom:852.475767pt;}
.y68{bottom:852.480400pt;}
.ye2{bottom:855.360400pt;}
.y7{bottom:855.360533pt;}
.ye1{bottom:855.361033pt;}
.y138{bottom:856.954100pt;}
.y139{bottom:856.960000pt;}
.ycc{bottom:856.963133pt;}
.y99{bottom:863.032300pt;}
.y65{bottom:868.477467pt;}
.y66{bottom:868.480933pt;}
.ye0{bottom:871.520533pt;}
.ydf{bottom:871.525167pt;}
.ycb{bottom:872.960633pt;}
.y137{bottom:873.595600pt;}
.y6{bottom:874.560000pt;}
.y98{bottom:879.037467pt;}
.y64{bottom:884.800800pt;}
.yde{bottom:887.684667pt;}
.y136{bottom:889.918933pt;}
.y5{bottom:892.480933pt;}
.y4{bottom:893.440400pt;}
.y97{bottom:895.360800pt;}
.y63{bottom:902.720267pt;}
.y61{bottom:903.199667pt;}
.y62{bottom:903.200667pt;}
.y135{bottom:905.919467pt;}
.ydd{bottom:906.881667pt;}
.y5f{bottom:918.716033pt;}
.y60{bottom:918.720667pt;}
.y134{bottom:922.239200pt;}
.ydc{bottom:923.203167pt;}
.y96{bottom:925.760800pt;}
.y3{bottom:933.128267pt;}
.y5e{bottom:934.721200pt;}
.y133{bottom:937.606967pt;}
.ydb{bottom:939.196933pt;}
.y131{bottom:953.915867pt;}
.y132{bottom:953.919467pt;}
.yda{bottom:955.518433pt;}
.y95{bottom:955.840033pt;}
.y2{bottom:962.720267pt;}
.y5d{bottom:966.080533pt;}
.y130{bottom:970.239200pt;}
.yca{bottom:971.848933pt;}
.y94{bottom:972.163367pt;}
.y93{bottom:988.168533pt;}
.yc9{bottom:988.487167pt;}
.y129{bottom:1002.240267pt;}
.yc8{bottom:1004.160667pt;}
.y5c{bottom:1004.480000pt;}
.y5b{bottom:1004.800800pt;}
.y92{bottom:1004.810033pt;}
.y1{bottom:1041.919867pt;}
.h6f{height:18.773437pt;}
.h6d{height:29.898438pt;}
.h6b{height:33.375000pt;}
.h18{height:34.265625pt;}
.h6c{height:35.986328pt;}
.h3a{height:37.546875pt;}
.h5e{height:37.930339pt;}
.h43{height:37.949219pt;}
.h62{height:38.603516pt;}
.h70{height:38.937500pt;}
.h54{height:39.632812pt;}
.h33{height:41.507812pt;}
.h19{height:42.166667pt;}
.h14{height:42.328125pt;}
.h16{height:42.825521pt;}
.h4{height:43.109375pt;}
.hc{height:43.804688pt;}
.h17{height:43.837891pt;}
.h15{height:44.492188pt;}
.h3{height:45.015625pt;}
.h2{height:45.777995pt;}
.h56{height:46.585938pt;}
.h5{height:47.031250pt;}
.h67{height:47.281250pt;}
.h47{height:47.976562pt;}
.h3b{height:48.671875pt;}
.h25{height:49.367188pt;}
.h5a{height:50.062500pt;}
.h7f{height:50.355794pt;}
.h28{height:50.380859pt;}
.h40{height:50.757812pt;}
.h80{height:51.009766pt;}
.h7a{height:51.390625pt;}
.h78{height:51.453125pt;}
.h81{height:51.663737pt;}
.h6a{height:51.689453pt;}
.h27{height:52.148438pt;}
.h29{height:52.343750pt;}
.h2e{height:52.843750pt;}
.h13{height:52.971680pt;}
.hf{height:52.998047pt;}
.h55{height:53.012980pt;}
.h65{height:53.021247pt;}
.h58{height:53.367188pt;}
.h22{height:53.539062pt;}
.h60{height:53.625651pt;}
.h24{height:53.652344pt;}
.h75{height:53.750000pt;}
.h48{height:54.279622pt;}
.h12{height:54.306641pt;}
.h45{height:54.310507pt;}
.h3d{height:54.312907pt;}
.h38{height:54.320507pt;}
.h4c{height:54.321041pt;}
.h4b{height:54.325174pt;}
.h3c{height:54.325707pt;}
.h7e{height:54.329841pt;}
.h7b{height:54.330241pt;}
.h4a{height:54.331041pt;}
.h31{height:54.349574pt;}
.h3f{height:54.353441pt;}
.h23{height:54.421875pt;}
.h39{height:54.929688pt;}
.h1a{height:54.933594pt;}
.h3e{height:54.960938pt;}
.h4f{height:55.093750pt;}
.h6e{height:55.587565pt;}
.h46{height:55.615234pt;}
.h32{height:56.241536pt;}
.h1b{height:56.269531pt;}
.hb{height:56.320312pt;}
.h1e{height:56.437500pt;}
.h79{height:56.895508pt;}
.h21{height:56.923828pt;}
.h30{height:57.109375pt;}
.h49{height:57.320313pt;}
.h36{height:57.549479pt;}
.h52{height:57.578125pt;}
.h20{height:57.710938pt;}
.h5b{height:57.979167pt;}
.h26{height:58.232422pt;}
.h35{height:58.857422pt;}
.h1f{height:58.886719pt;}
.h2f{height:59.125000pt;}
.h7c{height:59.541016pt;}
.h71{height:59.796875pt;}
.h68{height:60.040714pt;}
.h7d{height:60.195312pt;}
.h69{height:60.666047pt;}
.h66{height:60.680180pt;}
.h1d{height:61.140625pt;}
.ha{height:61.882812pt;}
.h53{height:62.484375pt;}
.h2d{height:62.738172pt;}
.h10{height:63.156250pt;}
.h9{height:63.466797pt;}
.hd{height:63.481730pt;}
.h72{height:63.828125pt;}
.h5c{height:63.968750pt;}
.h1c{height:65.359375pt;}
.h11{height:66.515625pt;}
.h2a{height:66.750000pt;}
.h73{height:67.859375pt;}
.he{height:68.531250pt;}
.h59{height:70.226562pt;}
.h63{height:71.617188pt;}
.h74{height:73.244792pt;}
.h64{height:73.703125pt;}
.h5d{height:77.179688pt;}
.h57{height:79.265625pt;}
.h2c{height:79.960938pt;}
.h2b{height:81.787109pt;}
.h42{height:89.000000pt;}
.h8{height:89.638672pt;}
.h44{height:93.171875pt;}
.h6{height:94.873047pt;}
.h7{height:96.181641pt;}
.h41{height:96.648438pt;}
.h82{height:99.236229pt;}
.h4e{height:100.125000pt;}
.h5f{height:105.687500pt;}
.h61{height:110.554688pt;}
.h4d{height:157.140625pt;}
.h34{height:221.804688pt;}
.h37{height:286.582031pt;}
.h76{height:1122.560000pt;}
.h77{height:1122.666667pt;}
.h1{height:1126.666667pt;}
.h0{height:1126.721333pt;}
.h50{height:1129.280000pt;}
.h51{height:1129.333333pt;}
.w6{width:753.280000pt;}
.w7{width:753.333333pt;}
.w3{width:754.666667pt;}
.w2{width:754.879727pt;}
.w1{width:757.333333pt;}
.w0{width:757.439727pt;}
.w4{width:770.560000pt;}
.w5{width:770.666667pt;}
.x0{left:0.000000pt;}
.x18{left:54.396727pt;}
.x19{left:55.680127pt;}
.x8{left:57.600527pt;}
.xaa{left:63.360400pt;}
.xd9{left:64.319867pt;}
.x9{left:70.400393pt;}
.x70{left:71.359860pt;}
.x2c{left:72.319327pt;}
.x1f{left:74.879860pt;}
.xad{left:79.359333pt;}
.xf{left:80.639593pt;}
.x15{left:82.239327pt;}
.x42{left:85.119193pt;}
.x35{left:86.720260pt;}
.x2e{left:88.319860pt;}
.xf1{left:94.400400pt;}
.x43{left:98.560527pt;}
.xb{left:99.841593pt;}
.xac{left:101.119600pt;}
.xce{left:102.720667pt;}
.x71{left:104.639593pt;}
.x10{left:105.919327pt;}
.x16{left:107.509660pt;}
.x2d{left:110.080127pt;}
.x51{left:111.360393pt;}
.x44{left:113.600127pt;}
.x61{left:120.319327pt;}
.xe3{left:121.280267pt;}
.x57{left:123.199193pt;}
.xa5{left:124.160127pt;}
.x72{left:126.080527pt;}
.x52{left:127.359327pt;}
.xa{left:128.639593pt;}
.x45{left:129.600527pt;}
.x62{left:132.480527pt;}
.x58{left:135.039593pt;}
.x67{left:136.319860pt;}
.xe5{left:137.919467pt;}
.x5d{left:140.159193pt;}
.xf2{left:144.319333pt;}
.x63{left:145.280260pt;}
.x11{left:147.527593pt;}
.x59{left:148.479460pt;}
.x46{left:149.440393pt;}
.xc{left:153.279727pt;}
.x47{left:155.200127pt;}
.xe6{left:156.159600pt;}
.xd4{left:157.120667pt;}
.x64{left:158.080127pt;}
.xf3{left:159.039600pt;}
.x5a{left:160.000527pt;}
.x5e{left:162.880393pt;}
.x53{left:164.799327pt;}
.x68{left:168.959460pt;}
.x17{left:169.920393pt;}
.x48{left:171.519993pt;}
.xd5{left:175.040000pt;}
.xa6{left:176.320260pt;}
.xe7{left:177.919867pt;}
.xef{left:179.200133pt;}
.x73{left:180.480527pt;}
.x3b{left:181.759327pt;}
.x69{left:185.279327pt;}
.x1{left:188.159193pt;}
.x76{left:189.760260pt;}
.xf0{left:192.000000pt;}
.x74{left:194.879860pt;}
.x2f{left:197.759727pt;}
.xf4{left:198.720667pt;}
.x49{left:202.560127pt;}
.x1a{left:203.840260pt;}
.xcc{left:207.679733pt;}
.x6c{left:208.959993pt;}
.xdc{left:209.919467pt;}
.x75{left:211.199727pt;}
.x36{left:212.159193pt;}
.xf5{left:214.079600pt;}
.x4a{left:215.679193pt;}
.x1b{left:218.879860pt;}
.x21{left:221.119593pt;}
.xd2{left:223.040000pt;}
.xdd{left:227.519467pt;}
.xf6{left:228.799733pt;}
.xe4{left:230.080133pt;}
.x37{left:231.360393pt;}
.x1c{left:234.240260pt;}
.x6a{left:236.479993pt;}
.x65{left:237.760260pt;}
.xa7{left:239.999993pt;}
.x22{left:241.280260pt;}
.x6f{left:243.519993pt;}
.x2{left:244.479460pt;}
.x54{left:246.080527pt;}
.x3c{left:247.039993pt;}
.x1d{left:249.279727pt;}
.x12{left:253.119193pt;}
.xf7{left:254.399467pt;}
.xd1{left:256.640667pt;}
.x55{left:257.600127pt;}
.x30{left:258.880393pt;}
.xe8{left:259.839867pt;}
.x20{left:261.439460pt;}
.x3d{left:263.359860pt;}
.x1e{left:265.599593pt;}
.x4b{left:266.879860pt;}
.x56{left:269.759727pt;}
.x4c{left:272.960393pt;}
.xda{left:275.840400pt;}
.x66{left:277.439993pt;}
.x4d{left:278.720260pt;}
.xf8{left:280.319867pt;}
.x31{left:281.600127pt;}
.x9e{left:286.719727pt;}
.x40{left:291.839327pt;}
.xa8{left:293.440393pt;}
.x6d{left:294.399860pt;}
.x6b{left:296.960393pt;}
.x3e{left:297.919860pt;}
.x32{left:300.159727pt;}
.x9f{left:301.119193pt;}
.xae{left:303.039600pt;}
.x41{left:304.319860pt;}
.x4e{left:307.520527pt;}
.xe1{left:311.040533pt;}
.x6e{left:311.999993pt;}
.x5f{left:313.920393pt;}
.xde{left:314.879867pt;}
.xe9{left:316.479467pt;}
.x3{left:317.440393pt;}
.x33{left:320.320260pt;}
.xe2{left:327.679733pt;}
.x60{left:329.600127pt;}
.x4{left:331.199727pt;}
.xdf{left:333.120133pt;}
.x34{left:334.719727pt;}
.x38{left:337.920393pt;}
.x5b{left:340.160127pt;}
.x23{left:342.399860pt;}
.x50{left:346.239327pt;}
.xea{left:347.200133pt;}
.x3f{left:349.759327pt;}
.x39{left:350.720260pt;}
.x5c{left:353.279327pt;}
.x4f{left:354.559593pt;}
.x3a{left:364.479460pt;}
.xa9{left:379.839860pt;}
.x24{left:384.959460pt;}
.x25{left:385.920393pt;}
.xaf{left:393.922933pt;}
.xe0{left:394.879467pt;}
.xed{left:395.840267pt;}
.x2a{left:400.976793pt;}
.x77{left:402.562460pt;}
.xf9{left:406.079600pt;}
.xcd{left:408.959467pt;}
.xb0{left:409.937733pt;}
.xec{left:411.200667pt;}
.xd0{left:413.759733pt;}
.xc2{left:415.999467pt;}
.x79{left:418.559993pt;}
.xeb{left:421.759333pt;}
.xb2{left:423.360400pt;}
.x10f{left:424.959000pt;}
.xfa{left:425.919467pt;}
.x108{left:426.881500pt;}
.x10d{left:428.799333pt;}
.xc3{left:432.000000pt;}
.xbd{left:435.200667pt;}
.xb3{left:438.080533pt;}
.x9d{left:439.680127pt;}
.x78{left:440.639593pt;}
.x13{left:442.239327pt;}
.xa0{left:443.519460pt;}
.xcf{left:447.039600pt;}
.xbe{left:448.319867pt;}
.xd{left:450.880393pt;}
.x8e{left:452.799327pt;}
.x7e{left:457.280260pt;}
.x102{left:462.720667pt;}
.x27{left:464.639593pt;}
.xee{left:465.919867pt;}
.xa1{left:466.879327pt;}
.xc4{left:467.840267pt;}
.x7f{left:470.080127pt;}
.xd6{left:471.679733pt;}
.x8f{left:476.159193pt;}
.x111{left:478.400400pt;}
.xb4{left:481.280267pt;}
.x5{left:484.800260pt;}
.x26{left:486.399860pt;}
.x90{left:489.600527pt;}
.x112{left:491.840267pt;}
.xd7{left:494.080133pt;}
.x80{left:495.360393pt;}
.xb5{left:500.160667pt;}
.xbf{left:502.079600pt;}
.x115{left:503.680667pt;}
.xc5{left:505.920400pt;}
.x109{left:507.200667pt;}
.x100{left:511.359333pt;}
.x91{left:512.320260pt;}
.x10c{left:514.240667pt;}
.x6{left:516.799860pt;}
.x84{left:518.080127pt;}
.xb6{left:519.679733pt;}
.x99{left:521.919460pt;}
.x92{left:525.120127pt;}
.xc0{left:526.079600pt;}
.x113{left:528.640133pt;}
.x10e{left:530.239733pt;}
.xab{left:532.160133pt;}
.xc6{left:533.440400pt;}
.x85{left:534.719193pt;}
.xa2{left:535.999460pt;}
.xb7{left:537.919867pt;}
.xfc{left:540.799733pt;}
.x7{left:543.679727pt;}
.xcb{left:545.919467pt;}
.x93{left:547.520527pt;}
.x110{left:549.760267pt;}
.x8a{left:551.679193pt;}
.xdb{left:555.200667pt;}
.xd3{left:557.440400pt;}
.xb8{left:559.359333pt;}
.xe{left:560.639593pt;}
.x107{left:562.240667pt;}
.x8b{left:565.119193pt;}
.xfb{left:566.399467pt;}
.x116{left:567.360400pt;}
.x14{left:568.959993pt;}
.xc7{left:570.880400pt;}
.x86{left:572.159193pt;}
.xc1{left:573.760267pt;}
.xa3{left:579.199193pt;}
.xb1{left:581.440400pt;}
.x94{left:583.999460pt;}
.x28{left:588.799860pt;}
.x106{left:590.080133pt;}
.x87{left:592.319860pt;}
.x95{left:596.479993pt;}
.x103{left:600.640133pt;}
.xfe{left:601.599600pt;}
.xc8{left:606.080533pt;}
.x29{left:607.999460pt;}
.x101{left:609.919867pt;}
.x10a{left:610.879467pt;}
.x104{left:616.960000pt;}
.xff{left:617.919467pt;}
.x96{left:619.839860pt;}
.x8c{left:621.760260pt;}
.x105{left:622.719733pt;}
.xb9{left:629.759733pt;}
.x97{left:632.320260pt;}
.x7b{left:634.879327pt;}
.x8d{left:636.480527pt;}
.x81{left:640.319860pt;}
.xc9{left:641.600133pt;}
.xba{left:647.680667pt;}
.xca{left:649.920400pt;}
.x2b{left:653.119593pt;}
.x88{left:656.320260pt;}
.x10b{left:657.600533pt;}
.x7c{left:659.840393pt;}
.x82{left:660.799860pt;}
.x9a{left:665.600127pt;}
.xbb{left:669.120133pt;}
.x89{left:670.079593pt;}
.xd8{left:672.000000pt;}
.x83{left:675.199193pt;}
.x9b{left:677.440393pt;}
.xbc{left:679.040000pt;}
.xfd{left:682.240667pt;}
.x98{left:684.159727pt;}
.x7a{left:687.360393pt;}
.x114{left:689.279333pt;}
.x7d{left:690.880393pt;}
.x9c{left:692.479993pt;}
.xa4{left:694.400393pt;}
}




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