
    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_b11d8ca66f7e88727c670b0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954000;font-style:normal;font-weight: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_135e9ac4b90485dbadff4c39.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916000;font-style:normal;font-weight: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_640cb278c48ced061c8082e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;font-style:normal;font-weight: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_528cada0608b3736f2f27ef5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;font-style:normal;font-weight: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_91c5ef7dbdaf16b294dbf142.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925000;font-style:normal;font-weight: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_ad13861cc5275d5ca2387943.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973000;font-style:normal;font-weight: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_155b3195d920708b75a5ae26.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;font-style:normal;font-weight: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_de02fb30662777ac7c25141e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.456000;font-style:normal;font-weight: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_7a6f3fac605ac5c3341c3ee4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.878906;font-style:normal;font-weight: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_cfb246dc432a93175d416222.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight: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_75bfa3631abbc0084c5428a9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.688965;font-style:normal;font-weight: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_4739f3012c0510f4078585da.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.681641;font-style:normal;font-weight: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_4bc234aeb37c8c7887c4ada3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.693000;font-style:normal;font-weight: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_cc889d1ef06034195b2f3f97.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.026000;font-style:normal;font-weight: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_26dc72ed9e4f16ddad68c293.woff2')format("woff");}.fff{font-family:fff;line-height:0.456000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m20{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242656,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.242753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242753,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.242772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242772,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.242947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242947,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243014,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.243197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243197,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.243392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243392,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243497,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.243583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243583,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.243681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243681,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.243742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243742,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.244131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244131,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.244236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244236,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.244281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244281,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.244306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244306,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.244581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244581,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.244778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244778,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.244908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244908,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.244981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244981,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.245004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245004,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.245011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245011,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.245097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245097,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245294,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.245572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245572,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.245742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245742,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.245767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245767,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.246283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246283,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246503,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.246514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246514,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246897,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247058,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247092,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247178,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247694,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247728,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248581,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249072,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250819,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.250846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250846,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250946,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251133,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251807,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.252157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252157,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.252704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252704,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.252918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252918,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.252979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252979,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.252986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252986,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.253757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253757,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.253807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253807,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.254093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254093,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-23.760000px;}
.v2{vertical-align:-15.120000px;}
.v5{vertical-align:-14.040000px;}
.v7{vertical-align:-6.300000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.300000px;}
.v6{vertical-align:14.040000px;}
.v3{vertical-align:15.120000px;}
.v4{vertical-align:34.506000px;}
.ls41{letter-spacing:-3.150000px;}
.ls1c{letter-spacing:-2.538000px;}
.ls31{letter-spacing:-2.058000px;}
.ls1a{letter-spacing:-1.620000px;}
.ls17{letter-spacing:-1.458000px;}
.ls45{letter-spacing:-1.302000px;}
.ls4{letter-spacing:-1.260000px;}
.ls26{letter-spacing:-1.242000px;}
.ls39{letter-spacing:-1.080000px;}
.ls42{letter-spacing:-1.008000px;}
.ls2c{letter-spacing:-0.972000px;}
.ls19{letter-spacing:-0.918000px;}
.ls1e{letter-spacing:-0.756000px;}
.ls43{letter-spacing:-0.714000px;}
.ls16{letter-spacing:-0.702000px;}
.ls3f{letter-spacing:-0.672000px;}
.ls2d{letter-spacing:-0.648000px;}
.ls33{letter-spacing:-0.585000px;}
.ls7{letter-spacing:-0.546000px;}
.ls18{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.420000px;}
.ls44{letter-spacing:-0.378000px;}
.ls32{letter-spacing:-0.336000px;}
.ls5{letter-spacing:-0.330000px;}
.ls3d{letter-spacing:-0.294000px;}
.ls15{letter-spacing:-0.270000px;}
.ls3e{letter-spacing:-0.252000px;}
.ls3c{letter-spacing:-0.168000px;}
.ls22{letter-spacing:-0.162000px;}
.ls23{letter-spacing:-0.159300px;}
.ls2e{letter-spacing:-0.126000px;}
.ls6{letter-spacing:-0.099000px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000120px;}
.ls0{letter-spacing:0.000240px;}
.ls36{letter-spacing:0.053374px;}
.ls37{letter-spacing:0.053968px;}
.ls35{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.297000px;}
.ls3b{letter-spacing:0.540000px;}
.ls40{letter-spacing:0.546000px;}
.ls3a{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.932690px;}
.lsb{letter-spacing:0.933285px;}
.ls11{letter-spacing:0.952539px;}
.ls12{letter-spacing:0.953144px;}
.ls9{letter-spacing:1.167431px;}
.ls8{letter-spacing:1.200111px;}
.ls14{letter-spacing:1.207357px;}
.ls1d{letter-spacing:1.218499px;}
.ls3{letter-spacing:2.100000px;}
.ls38{letter-spacing:2.170996px;}
.lsf{letter-spacing:2.791911px;}
.ls10{letter-spacing:3.512053px;}
.ls13{letter-spacing:3.897674px;}
.lsd{letter-spacing:4.645743px;}
.ls34{letter-spacing:5.319540px;}
.lsc{letter-spacing:6.673075px;}
.lse{letter-spacing:9.889356px;}
.ls25{letter-spacing:13.122000px;}
.ls2f{letter-spacing:20.754478px;}
.ls21{letter-spacing:97.333125px;}
.ls1f{letter-spacing:131.056875px;}
.ls2a{letter-spacing:160.326600px;}
.ls28{letter-spacing:180.714180px;}
.ls20{letter-spacing:211.896000px;}
.ls29{letter-spacing:220.025580px;}
.ls27{letter-spacing:227.541000px;}
.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;}
}
.ws92{word-spacing:-211.896000px;}
.ws91{word-spacing:-131.056875px;}
.ws93{word-spacing:-97.333125px;}
.ws75{word-spacing:-54.000000px;}
.wsf8{word-spacing:-20.817000px;}
.wsce{word-spacing:-13.878000px;}
.ws4{word-spacing:-13.122000px;}
.wsa5{word-spacing:-12.366000px;}
.ws26{word-spacing:-12.258000px;}
.wsa3{word-spacing:-12.096000px;}
.ws27{word-spacing:-11.988000px;}
.wsa4{word-spacing:-11.718000px;}
.ws76{word-spacing:-11.502000px;}
.wsa2{word-spacing:-11.394000px;}
.ws7b{word-spacing:-11.124000px;}
.ws1{word-spacing:-10.794000px;}
.ws118{word-spacing:-10.458000px;}
.ws116{word-spacing:-10.374000px;}
.ws24{word-spacing:-10.248000px;}
.wsa9{word-spacing:-10.206000px;}
.ws115{word-spacing:-10.164000px;}
.ws2{word-spacing:-10.007580px;}
.wse9{word-spacing:-9.786000px;}
.ws28{word-spacing:-9.720000px;}
.ws112{word-spacing:-9.618000px;}
.wsa{word-spacing:-9.534000px;}
.ws111{word-spacing:-9.450000px;}
.wsac{word-spacing:-9.408000px;}
.ws113{word-spacing:-9.324000px;}
.ws150{word-spacing:-9.240000px;}
.ws14f{word-spacing:-9.198000px;}
.ws114{word-spacing:-8.946000px;}
.wsaf{word-spacing:-8.931000px;}
.wsdd{word-spacing:-8.346000px;}
.ws8{word-spacing:-8.316000px;}
.ws5{word-spacing:-8.019000px;}
.ws7{word-spacing:-7.920000px;}
.ws6{word-spacing:-7.689000px;}
.ws3{word-spacing:-6.665820px;}
.ws117{word-spacing:-6.468000px;}
.wsab{word-spacing:-5.625060px;}
.wsbe{word-spacing:-5.508000px;}
.wsb0{word-spacing:-5.223270px;}
.ws1e{word-spacing:-5.022000px;}
.wsd{word-spacing:-4.644000px;}
.wscb{word-spacing:-4.284000px;}
.wscc{word-spacing:-3.978000px;}
.ws13{word-spacing:-3.240000px;}
.ws14{word-spacing:-3.186000px;}
.wsa7{word-spacing:-2.932200px;}
.ws11{word-spacing:-2.106000px;}
.wsde{word-spacing:-1.782000px;}
.ws9c{word-spacing:-1.512000px;}
.ws71{word-spacing:-1.458000px;}
.ws10c{word-spacing:-1.404000px;}
.ws5d{word-spacing:-1.296000px;}
.ws30{word-spacing:-1.242000px;}
.ws8e{word-spacing:-1.188000px;}
.ws2b{word-spacing:-1.134000px;}
.ws168{word-spacing:-1.092000px;}
.ws29{word-spacing:-1.050000px;}
.ws5a{word-spacing:-1.026000px;}
.ws18c{word-spacing:-1.008000px;}
.wsc{word-spacing:-0.972000px;}
.ws121{word-spacing:-0.966000px;}
.ws131{word-spacing:-0.924000px;}
.ws53{word-spacing:-0.918000px;}
.ws151{word-spacing:-0.882000px;}
.ws1a{word-spacing:-0.864000px;}
.ws142{word-spacing:-0.840000px;}
.ws2e{word-spacing:-0.810000px;}
.ws18a{word-spacing:-0.714000px;}
.ws96{word-spacing:-0.702000px;}
.ws14c{word-spacing:-0.672000px;}
.wsb2{word-spacing:-0.648000px;}
.ws18b{word-spacing:-0.630000px;}
.ws41{word-spacing:-0.594000px;}
.ws148{word-spacing:-0.546000px;}
.ws34{word-spacing:-0.540000px;}
.ws9b{word-spacing:-0.486000px;}
.ws139{word-spacing:-0.462000px;}
.ws6e{word-spacing:-0.432000px;}
.ws185{word-spacing:-0.336000px;}
.ws107{word-spacing:-0.324000px;}
.ws17d{word-spacing:-0.294000px;}
.wsba{word-spacing:-0.270000px;}
.ws3a{word-spacing:-0.216000px;}
.ws159{word-spacing:-0.210000px;}
.ws140{word-spacing:-0.168000px;}
.wsc1{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.054000px;}
.wsd1{word-spacing:-0.042000px;}
.ws77{word-spacing:-0.031860px;}
.wsad{word-spacing:-0.024780px;}
.ws9{word-spacing:0.000000px;}
.ws70{word-spacing:0.054000px;}
.ws153{word-spacing:0.084000px;}
.ws18{word-spacing:0.108000px;}
.ws179{word-spacing:0.126000px;}
.ws95{word-spacing:0.159300px;}
.ws20{word-spacing:0.162000px;}
.ws169{word-spacing:0.210000px;}
.ws56{word-spacing:0.216000px;}
.ws128{word-spacing:0.252000px;}
.ws31{word-spacing:0.270000px;}
.ws186{word-spacing:0.294000px;}
.ws58{word-spacing:0.324000px;}
.wse7{word-spacing:0.330000px;}
.wsc4{word-spacing:0.378000px;}
.ws129{word-spacing:0.420000px;}
.ws8b{word-spacing:0.432000px;}
.wsfe{word-spacing:0.540000px;}
.ws135{word-spacing:0.546000px;}
.ws89{word-spacing:0.594000px;}
.ws4a{word-spacing:0.648000px;}
.ws2d{word-spacing:0.702000px;}
.ws14b{word-spacing:0.714000px;}
.ws14d{word-spacing:0.756000px;}
.ws155{word-spacing:0.798000px;}
.ws39{word-spacing:0.810000px;}
.wsbc{word-spacing:0.864000px;}
.ws2a{word-spacing:0.918000px;}
.ws11f{word-spacing:0.924000px;}
.ws11e{word-spacing:0.966000px;}
.ws59{word-spacing:0.972000px;}
.ws147{word-spacing:1.008000px;}
.ws6d{word-spacing:1.080000px;}
.ws163{word-spacing:1.134000px;}
.ws3c{word-spacing:1.188000px;}
.ws154{word-spacing:1.218000px;}
.ws35{word-spacing:1.242000px;}
.ws5b{word-spacing:1.296000px;}
.ws14e{word-spacing:1.302000px;}
.wsb5{word-spacing:1.350000px;}
.wsca{word-spacing:1.404000px;}
.ws174{word-spacing:1.428000px;}
.ws2f{word-spacing:1.458000px;}
.wsc6{word-spacing:1.512000px;}
.ws137{word-spacing:1.554000px;}
.ws57{word-spacing:1.620000px;}
.ws6b{word-spacing:1.674000px;}
.ws18e{word-spacing:1.722000px;}
.ws84{word-spacing:1.782000px;}
.ws161{word-spacing:1.890000px;}
.ws162{word-spacing:1.932000px;}
.ws15{word-spacing:1.944000px;}
.wse5{word-spacing:1.998000px;}
.ws156{word-spacing:2.016000px;}
.ws32{word-spacing:2.052000px;}
.ws5c{word-spacing:2.106000px;}
.wsc7{word-spacing:2.214000px;}
.ws4d{word-spacing:2.268000px;}
.ws103{word-spacing:2.376000px;}
.ws8a{word-spacing:2.430000px;}
.ws157{word-spacing:2.436000px;}
.ws18d{word-spacing:2.520000px;}
.wsb{word-spacing:2.538000px;}
.ws146{word-spacing:2.562000px;}
.ws82{word-spacing:2.592000px;}
.ws15a{word-spacing:2.604000px;}
.wsf0{word-spacing:2.646000px;}
.wsfd{word-spacing:2.700000px;}
.ws120{word-spacing:2.772000px;}
.ws94{word-spacing:2.862000px;}
.ws13b{word-spacing:2.898000px;}
.wse2{word-spacing:3.024000px;}
.ws15e{word-spacing:3.066000px;}
.ws61{word-spacing:3.078000px;}
.ws17a{word-spacing:3.108000px;}
.ws4f{word-spacing:3.132000px;}
.ws22{word-spacing:3.186000px;}
.ws12a{word-spacing:3.192000px;}
.ws7f{word-spacing:3.294000px;}
.ws7d{word-spacing:3.348000px;}
.wsa6{word-spacing:3.375000px;}
.ws136{word-spacing:3.402000px;}
.ws5e{word-spacing:3.564000px;}
.ws8d{word-spacing:3.618000px;}
.ws60{word-spacing:3.672000px;}
.ws4e{word-spacing:3.726000px;}
.ws63{word-spacing:3.780000px;}
.ws164{word-spacing:3.822000px;}
.wsff{word-spacing:3.834000px;}
.ws138{word-spacing:3.906000px;}
.wsef{word-spacing:3.942000px;}
.ws160{word-spacing:3.990000px;}
.ws17b{word-spacing:4.032000px;}
.ws100{word-spacing:4.050000px;}
.ws1f{word-spacing:4.104000px;}
.ws65{word-spacing:4.158000px;}
.ws182{word-spacing:4.200000px;}
.wsed{word-spacing:4.212000px;}
.ws88{word-spacing:4.266000px;}
.ws177{word-spacing:4.284000px;}
.ws10e{word-spacing:4.320000px;}
.ws171{word-spacing:4.368000px;}
.ws87{word-spacing:4.374000px;}
.ws6c{word-spacing:4.428000px;}
.wsbb{word-spacing:4.482000px;}
.wsc3{word-spacing:4.536000px;}
.wsf{word-spacing:4.590000px;}
.ws10{word-spacing:4.644000px;}
.ws8f{word-spacing:4.698000px;}
.ws181{word-spacing:4.788000px;}
.ws11c{word-spacing:4.806000px;}
.ws173{word-spacing:4.830000px;}
.wsf4{word-spacing:4.860000px;}
.ws122{word-spacing:4.872000px;}
.ws48{word-spacing:4.914000px;}
.ws1d{word-spacing:5.022000px;}
.ws16c{word-spacing:5.166000px;}
.ws47{word-spacing:5.184000px;}
.ws11d{word-spacing:5.208000px;}
.wsf5{word-spacing:5.238000px;}
.ws172{word-spacing:5.250000px;}
.ws102{word-spacing:5.292000px;}
.ws15b{word-spacing:5.334000px;}
.ws4c{word-spacing:5.346000px;}
.ws12b{word-spacing:5.376000px;}
.ws10f{word-spacing:5.400000px;}
.wsf9{word-spacing:5.454000px;}
.ws125{word-spacing:5.544000px;}
.ws126{word-spacing:5.586000px;}
.ws54{word-spacing:5.616000px;}
.wse0{word-spacing:5.670000px;}
.ws127{word-spacing:5.754000px;}
.ws37{word-spacing:5.832000px;}
.ws83{word-spacing:5.994000px;}
.wsf1{word-spacing:6.102000px;}
.wse1{word-spacing:6.156000px;}
.wse6{word-spacing:6.210000px;}
.ws98{word-spacing:6.264000px;}
.ws109{word-spacing:6.372000px;}
.ws44{word-spacing:6.426000px;}
.ws43{word-spacing:6.534000px;}
.ws15f{word-spacing:6.678000px;}
.ws188{word-spacing:6.720000px;}
.ws13f{word-spacing:6.804000px;}
.ws178{word-spacing:6.846000px;}
.ws64{word-spacing:6.858000px;}
.ws42{word-spacing:6.966000px;}
.ws189{word-spacing:6.972000px;}
.ws19{word-spacing:7.020000px;}
.wsfb{word-spacing:7.074000px;}
.ws124{word-spacing:7.098000px;}
.wsfa{word-spacing:7.128000px;}
.ws67{word-spacing:7.236000px;}
.ws149{word-spacing:7.266000px;}
.ws13e{word-spacing:7.308000px;}
.wseb{word-spacing:7.344000px;}
.ws7e{word-spacing:7.398000px;}
.wsb7{word-spacing:7.452000px;}
.ws17e{word-spacing:7.518000px;}
.ws187{word-spacing:7.602000px;}
.ws12e{word-spacing:7.812000px;}
.ws80{word-spacing:7.938000px;}
.ws8c{word-spacing:7.992000px;}
.ws16f{word-spacing:8.022000px;}
.ws21{word-spacing:8.046000px;}
.ws55{word-spacing:8.208000px;}
.ws17f{word-spacing:8.232000px;}
.ws38{word-spacing:8.370000px;}
.wsc9{word-spacing:8.424000px;}
.wsbf{word-spacing:8.478000px;}
.ws170{word-spacing:8.526000px;}
.ws13a{word-spacing:8.652000px;}
.ws9e{word-spacing:8.694000px;}
.ws104{word-spacing:8.748000px;}
.ws49{word-spacing:8.802000px;}
.ws158{word-spacing:8.820000px;}
.ws143{word-spacing:8.862000px;}
.ws144{word-spacing:8.946000px;}
.wse{word-spacing:8.964000px;}
.ws1c{word-spacing:9.072000px;}
.wsb9{word-spacing:9.558000px;}
.ws132{word-spacing:9.660000px;}
.ws23{word-spacing:9.702000px;}
.ws9d{word-spacing:9.828000px;}
.ws12d{word-spacing:10.080000px;}
.ws4b{word-spacing:10.152000px;}
.ws17c{word-spacing:10.164000px;}
.ws165{word-spacing:10.248000px;}
.wsf2{word-spacing:10.260000px;}
.wsee{word-spacing:10.476000px;}
.ws33{word-spacing:10.584000px;}
.ws3b{word-spacing:10.692000px;}
.ws86{word-spacing:10.962000px;}
.ws12c{word-spacing:11.004000px;}
.wsb6{word-spacing:11.016000px;}
.wsdf{word-spacing:11.178000px;}
.wsfc{word-spacing:11.232000px;}
.ws108{word-spacing:11.340000px;}
.ws119{word-spacing:11.502000px;}
.ws10d{word-spacing:11.718000px;}
.ws16{word-spacing:11.772000px;}
.ws10a{word-spacing:11.826000px;}
.wsea{word-spacing:11.934000px;}
.ws123{word-spacing:12.138000px;}
.ws10b{word-spacing:12.258000px;}
.ws3e{word-spacing:12.474000px;}
.ws14a{word-spacing:12.516000px;}
.ws3f{word-spacing:12.528000px;}
.ws36{word-spacing:12.690000px;}
.ws106{word-spacing:12.906000px;}
.wsb1{word-spacing:12.960000px;}
.ws17{word-spacing:13.014000px;}
.ws66{word-spacing:13.068000px;}
.ws45{word-spacing:13.122000px;}
.wsbd{word-spacing:13.500000px;}
.ws6f{word-spacing:13.662000px;}
.wsb3{word-spacing:13.824000px;}
.ws16d{word-spacing:13.944000px;}
.ws3d{word-spacing:14.040000px;}
.ws16e{word-spacing:14.070000px;}
.ws1b{word-spacing:14.148000px;}
.wsf3{word-spacing:14.310000px;}
.ws12f{word-spacing:14.784000px;}
.ws11b{word-spacing:14.850000px;}
.ws130{word-spacing:14.910000px;}
.wsc0{word-spacing:15.390000px;}
.ws68{word-spacing:15.606000px;}
.ws105{word-spacing:15.822000px;}
.ws12{word-spacing:15.984000px;}
.wsf6{word-spacing:16.092000px;}
.ws141{word-spacing:16.128000px;}
.ws46{word-spacing:16.146000px;}
.ws6a{word-spacing:16.308000px;}
.ws13c{word-spacing:16.422000px;}
.ws13d{word-spacing:16.548000px;}
.ws9f{word-spacing:16.578000px;}
.ws51{word-spacing:16.686000px;}
.ws134{word-spacing:17.598000px;}
.wsa0{word-spacing:17.766000px;}
.ws5f{word-spacing:18.144000px;}
.ws7c{word-spacing:18.468000px;}
.ws97{word-spacing:18.630000px;}
.ws16a{word-spacing:18.648000px;}
.ws16b{word-spacing:18.816000px;}
.wsc8{word-spacing:19.062000px;}
.ws166{word-spacing:19.320000px;}
.ws90{word-spacing:19.548000px;}
.ws167{word-spacing:19.908000px;}
.wsec{word-spacing:19.980000px;}
.ws52{word-spacing:20.142000px;}
.wse3{word-spacing:21.006000px;}
.ws133{word-spacing:21.168000px;}
.wsb4{word-spacing:22.086000px;}
.ws183{word-spacing:22.176000px;}
.ws184{word-spacing:22.386000px;}
.wse4{word-spacing:22.680000px;}
.ws69{word-spacing:22.842000px;}
.ws101{word-spacing:23.598000px;}
.ws50{word-spacing:23.814000px;}
.ws81{word-spacing:24.570000px;}
.ws175{word-spacing:24.948000px;}
.ws176{word-spacing:25.158000px;}
.wsb8{word-spacing:25.380000px;}
.ws99{word-spacing:25.488000px;}
.ws40{word-spacing:25.596000px;}
.ws152{word-spacing:25.746000px;}
.wsa8{word-spacing:26.238600px;}
.ws11a{word-spacing:26.514000px;}
.wsc5{word-spacing:27.216000px;}
.ws180{word-spacing:27.468000px;}
.ws85{word-spacing:28.080000px;}
.ws15c{word-spacing:28.812000px;}
.ws9a{word-spacing:29.052000px;}
.ws15d{word-spacing:29.064000px;}
.ws145{word-spacing:29.862000px;}
.ws62{word-spacing:33.264000px;}
.ws72{word-spacing:34.722000px;}
.ws73{word-spacing:35.478000px;}
.wsc2{word-spacing:38.232000px;}
.ws78{word-spacing:88.576200px;}
.ws79{word-spacing:104.581800px;}
.ws7a{word-spacing:138.942000px;}
.wsaa{word-spacing:238.546200px;}
.wscf{word-spacing:250.842600px;}
.wsd3{word-spacing:290.792400px;}
.wsd0{word-spacing:295.097400px;}
.wsd8{word-spacing:305.177400px;}
.wsd6{word-spacing:315.741000px;}
.wsd4{word-spacing:323.890200px;}
.wsae{word-spacing:325.282200px;}
.wsdc{word-spacing:330.126000px;}
.wsd2{word-spacing:422.580000px;}
.wsd5{word-spacing:432.660000px;}
.wsda{word-spacing:463.443000px;}
.wsdb{word-spacing:526.653000px;}
.wsd7{word-spacing:662.016000px;}
.wsd9{word-spacing:689.253000px;}
.ws110{word-spacing:1168.319400px;}
.wsa1{word-spacing:1168.340400px;}
.wse8{word-spacing:1168.487400px;}
.ws25{word-spacing:1169.054400px;}
.ws74{word-spacing:1169.159400px;}
.wscd{word-spacing:1169.243400px;}
.wsf7{word-spacing:1169.957400px;}
.ws0{word-spacing:1170.797400px;}
._13{margin-left:-34.236000px;}
._19{margin-left:-24.687480px;}
._14{margin-left:-16.560960px;}
._17{margin-left:-14.256738px;}
._e{margin-left:-13.230000px;}
._3{margin-left:-9.534480px;}
._11{margin-left:-7.364515px;}
._6{margin-left:-5.783400px;}
._4{margin-left:-3.948000px;}
._5{margin-left:-2.366520px;}
._1{margin-left:-1.134000px;}
._2{width:1.260000px;}
._b{width:3.088320px;}
._f{width:4.168800px;}
._a{width:5.574377px;}
._d{width:6.632019px;}
._12{width:7.873436px;}
._7{width:9.699000px;}
._c{width:11.658760px;}
._16{width:13.427316px;}
._2f{width:14.809408px;}
._10{width:16.358520px;}
._18{width:20.578213px;}
._15{width:115.117200px;}
._21{width:162.205200px;}
._20{width:170.501700px;}
._1f{width:182.365200px;}
._1c{width:194.421600px;}
._1e{width:200.365200px;}
._1b{width:205.130400px;}
._1d{width:208.648200px;}
._23{width:291.060600px;}
._22{width:296.991600px;}
._1a{width:304.606800px;}
._27{width:337.729200px;}
._2e{width:346.924200px;}
._2d{width:347.996880px;}
._24{width:395.182200px;}
._26{width:407.233800px;}
._2c{width:432.181200px;}
._29{width:446.499000px;}
._25{width:456.579000px;}
._2a{width:548.259000px;}
._28{width:562.644000px;}
._2b{width:584.169000px;}
._9{width:708.018000px;}
._0{width:709.761000px;}
._8{width:2198.061600px;}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(43,43,42);}
.fc3{color:rgb(126,127,127);}
.fc2{color:rgb(27,28,27);}
.fc1{color:rgb(101,193,97);}
.fc0{color:rgb(112,111,112);}
.fse{font-size:23.010000px;}
.fs4{font-size:24.780000px;}
.fsa{font-size:31.860000px;}
.fs6{font-size:33.000000px;}
.fs3{font-size:38.940000px;}
.fsd{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fsb{font-size:43.125000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:56.920998px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:1.263750px;}
.ya2{bottom:2.809500px;}
.y99{bottom:3.605081px;}
.y9b{bottom:3.609300px;}
.y9a{bottom:6.000000px;}
.y98{bottom:12.046800px;}
.ya1{bottom:13.501500px;}
.ya5{bottom:21.095250px;}
.y1{bottom:53.149650px;}
.yc4{bottom:86.812350px;}
.yb5{bottom:104.811000px;}
.y93{bottom:104.812350px;}
.y111{bottom:107.812350px;}
.y110{bottom:119.812350px;}
.yb4{bottom:121.821000px;}
.y92{bottom:122.812350px;}
.yb3{bottom:131.811000px;}
.y10f{bottom:131.812350px;}
.y125{bottom:137.812350px;}
.y91{bottom:140.812350px;}
.yb2{bottom:145.311000px;}
.y10e{bottom:149.812350px;}
.yb1{bottom:158.811000px;}
.y90{bottom:158.812350px;}
.y2e{bottom:161.676150px;}
.y10d{bottom:161.812350px;}
.y10c{bottom:173.812350px;}
.y8f{bottom:176.812350px;}
.y2d{bottom:178.176150px;}
.yb0{bottom:179.726850px;}
.y124{bottom:179.812350px;}
.y10b{bottom:191.812350px;}
.y8e{bottom:194.812350px;}
.y16b{bottom:196.374150px;}
.y2c{bottom:199.176150px;}
.yaf{bottom:201.816900px;}
.y10a{bottom:203.812350px;}
.y16a{bottom:208.374150px;}
.y8d{bottom:212.812350px;}
.y109{bottom:215.812350px;}
.y169{bottom:220.374150px;}
.y123{bottom:221.812350px;}
.yae{bottom:224.148600px;}
.y197{bottom:226.374150px;}
.y8c{bottom:230.812350px;}
.y108{bottom:233.812350px;}
.y2b{bottom:236.676150px;}
.y168{bottom:238.374150px;}
.y107{bottom:245.812350px;}
.yad{bottom:246.238800px;}
.y8b{bottom:248.812350px;}
.y167{bottom:250.374150px;}
.y122{bottom:251.812350px;}
.y2a{bottom:254.676150px;}
.y196{bottom:256.374150px;}
.y106{bottom:257.812350px;}
.y166{bottom:262.374150px;}
.y121{bottom:263.812350px;}
.yac{bottom:264.238800px;}
.y8a{bottom:266.812350px;}
.y195{bottom:268.374150px;}
.y29{bottom:272.676150px;}
.y105{bottom:275.812350px;}
.y165{bottom:280.374150px;}
.y120{bottom:281.812350px;}
.y89{bottom:284.812350px;}
.yab{bottom:286.328850px;}
.y104{bottom:287.812350px;}
.y28{bottom:290.676150px;}
.y164{bottom:292.374150px;}
.y11f{bottom:293.812350px;}
.y194{bottom:298.374150px;}
.y103{bottom:299.812350px;}
.y88{bottom:302.812350px;}
.y163{bottom:304.374150px;}
.y11e{bottom:305.812350px;}
.yaa{bottom:308.418900px;}
.y27{bottom:308.676150px;}
.y193{bottom:310.374150px;}
.y102{bottom:317.812350px;}
.y87{bottom:320.812350px;}
.y162{bottom:322.374150px;}
.y11d{bottom:323.812350px;}
.y26{bottom:326.676150px;}
.y101{bottom:329.812350px;}
.y161{bottom:334.374150px;}
.y11c{bottom:335.812350px;}
.ya9{bottom:336.459750px;}
.y86{bottom:338.812350px;}
.y192{bottom:340.374150px;}
.y100{bottom:341.812350px;}
.y25{bottom:344.676150px;}
.y160{bottom:346.374150px;}
.y11b{bottom:347.812350px;}
.y191{bottom:352.374150px;}
.y85{bottom:356.812350px;}
.y15f{bottom:358.374150px;}
.yff{bottom:359.812350px;}
.y24{bottom:362.676150px;}
.y190{bottom:370.374150px;}
.yfe{bottom:371.812350px;}
.y84{bottom:374.812350px;}
.y15e{bottom:376.374150px;}
.y11a{bottom:377.812350px;}
.y23{bottom:380.676150px;}
.y18f{bottom:382.374150px;}
.yfd{bottom:383.812350px;}
.y15d{bottom:388.374150px;}
.y119{bottom:389.812350px;}
.y83{bottom:392.812350px;}
.y18e{bottom:394.374150px;}
.y22{bottom:398.676150px;}
.yfc{bottom:401.812350px;}
.ycc{bottom:401.970000px;}
.y15c{bottom:406.374150px;}
.y82{bottom:410.812350px;}
.y18d{bottom:412.374150px;}
.yfb{bottom:413.812350px;}
.ycb{bottom:415.470000px;}
.y21{bottom:416.676150px;}
.y15b{bottom:418.374150px;}
.y18c{bottom:424.374150px;}
.yfa{bottom:425.812350px;}
.y81{bottom:428.812350px;}
.yca{bottom:428.970000px;}
.y15a{bottom:430.374150px;}
.y118{bottom:431.812350px;}
.y20{bottom:434.676150px;}
.y18b{bottom:436.374150px;}
.y56{bottom:441.053550px;}
.y159{bottom:442.374150px;}
.yc9{bottom:442.470000px;}
.yf9{bottom:443.812350px;}
.y80{bottom:446.812350px;}
.y1f{bottom:452.676150px;}
.y18a{bottom:454.374150px;}
.y55{bottom:454.553550px;}
.yf8{bottom:455.812350px;}
.yc8{bottom:455.970000px;}
.y158{bottom:460.374150px;}
.y7f{bottom:464.812350px;}
.y189{bottom:466.374150px;}
.yf7{bottom:467.812350px;}
.y54{bottom:468.053550px;}
.y157{bottom:472.374150px;}
.y1e{bottom:475.609650px;}
.y188{bottom:478.374150px;}
.y53{bottom:481.553550px;}
.y7e{bottom:482.812350px;}
.y156{bottom:484.374150px;}
.yf6{bottom:485.812350px;}
.y187{bottom:490.374150px;}
.y1d{bottom:493.609650px;}
.y52{bottom:495.053550px;}
.y155{bottom:496.374150px;}
.yf5{bottom:497.812350px;}
.y7d{bottom:500.812350px;}
.y186{bottom:508.374150px;}
.y51{bottom:508.553550px;}
.yf4{bottom:509.812350px;}
.y1c{bottom:511.609650px;}
.y154{bottom:514.374150px;}
.yc3{bottom:518.014650px;}
.y7c{bottom:518.812350px;}
.y185{bottom:520.374150px;}
.y117{bottom:521.812350px;}
.y50{bottom:522.053550px;}
.y153{bottom:526.374150px;}
.yf3{bottom:527.812350px;}
.y1b{bottom:529.609650px;}
.yc2{bottom:531.514650px;}
.y184{bottom:532.374150px;}
.y4f{bottom:535.553550px;}
.y7b{bottom:536.812350px;}
.y152{bottom:538.374150px;}
.yf2{bottom:539.812350px;}
.yd3{bottom:540.862500px;}
.y183{bottom:544.374150px;}
.y1a{bottom:547.609650px;}
.y4e{bottom:549.053550px;}
.yf1{bottom:551.812350px;}
.yc1{bottom:552.430500px;}
.yd2{bottom:554.362500px;}
.y7a{bottom:554.812350px;}
.y151{bottom:556.374150px;}
.y182{bottom:562.374150px;}
.y4d{bottom:562.553550px;}
.y116{bottom:563.812350px;}
.y19{bottom:565.609650px;}
.yd1{bottom:567.862500px;}
.y150{bottom:568.374150px;}
.yf0{bottom:569.812350px;}
.y79{bottom:572.812350px;}
.y181{bottom:574.374150px;}
.yc0{bottom:574.762200px;}
.y4c{bottom:576.053550px;}
.y14f{bottom:580.374150px;}
.yd0{bottom:581.362500px;}
.yef{bottom:581.812350px;}
.y18{bottom:583.609650px;}
.y180{bottom:586.374150px;}
.y4b{bottom:589.553550px;}
.y78{bottom:590.812350px;}
.y14e{bottom:592.374150px;}
.yee{bottom:593.812350px;}
.ycf{bottom:594.862500px;}
.ybf{bottom:597.335550px;}
.y17{bottom:601.609650px;}
.y4a{bottom:603.053550px;}
.y17f{bottom:604.374150px;}
.y115{bottom:605.812350px;}
.yce{bottom:608.362500px;}
.y77{bottom:608.812350px;}
.y14d{bottom:610.374150px;}
.yed{bottom:611.812350px;}
.y17e{bottom:616.374150px;}
.y49{bottom:616.810050px;}
.y114{bottom:617.812350px;}
.ybe{bottom:619.425600px;}
.ycd{bottom:621.862500px;}
.y14c{bottom:622.374150px;}
.yec{bottom:623.812350px;}
.y16{bottom:624.543150px;}
.y76{bottom:626.812350px;}
.y14b{bottom:634.374150px;}
.yeb{bottom:635.812350px;}
.y48{bottom:637.879050px;}
.ybd{bottom:641.757300px;}
.y15{bottom:642.543150px;}
.y75{bottom:644.812350px;}
.y17d{bottom:646.374150px;}
.yea{bottom:647.812350px;}
.y47{bottom:651.379050px;}
.y14a{bottom:652.374150px;}
.y113{bottom:653.812350px;}
.y17c{bottom:658.374150px;}
.y14{bottom:660.543150px;}
.y74{bottom:662.812350px;}
.ybc{bottom:664.089000px;}
.y149{bottom:664.374150px;}
.y46{bottom:664.879050px;}
.ye9{bottom:665.812350px;}
.y17b{bottom:670.374150px;}
.y148{bottom:676.374150px;}
.ye8{bottom:677.812350px;}
.y45{bottom:678.379050px;}
.y13{bottom:678.543150px;}
.y73{bottom:680.812350px;}
.ybb{bottom:686.179050px;}
.y147{bottom:688.374150px;}
.ye7{bottom:689.812350px;}
.y44{bottom:691.879050px;}
.y72{bottom:698.812350px;}
.y17a{bottom:700.374150px;}
.y43{bottom:705.379050px;}
.y146{bottom:706.374150px;}
.ye6{bottom:707.812350px;}
.yba{bottom:708.269100px;}
.y179{bottom:712.374150px;}
.y71{bottom:716.812350px;}
.y145{bottom:718.374150px;}
.y42{bottom:718.879050px;}
.ye5{bottom:719.812350px;}
.y12{bottom:722.476650px;}
.yb9{bottom:730.359150px;}
.y144{bottom:730.374150px;}
.ye4{bottom:731.812350px;}
.y41{bottom:732.379050px;}
.y70{bottom:734.812350px;}
.y11{bottom:735.976650px;}
.y178{bottom:742.374150px;}
.y40{bottom:746.135400px;}
.y143{bottom:748.374150px;}
.y10{bottom:749.476650px;}
.ye3{bottom:749.812350px;}
.y6f{bottom:752.812350px;}
.y177{bottom:754.374150px;}
.yb8{bottom:758.400000px;}
.y142{bottom:760.374150px;}
.ye2{bottom:761.812350px;}
.yf{bottom:762.976650px;}
.y176{bottom:766.374150px;}
.y3f{bottom:767.204550px;}
.ya8{bottom:768.787500px;}
.y6e{bottom:770.812350px;}
.y141{bottom:772.374150px;}
.ye1{bottom:773.812350px;}
.yc7{bottom:774.952500px;}
.ye{bottom:776.476650px;}
.y3e{bottom:780.704550px;}
.y140{bottom:784.374150px;}
.yc6{bottom:788.452500px;}
.y6d{bottom:788.812350px;}
.ye0{bottom:791.812350px;}
.yd{bottom:793.756650px;}
.y3d{bottom:794.204550px;}
.y175{bottom:796.374150px;}
.yc5{bottom:801.952500px;}
.y13f{bottom:802.374150px;}
.ydf{bottom:803.812350px;}
.yd9{bottom:805.732500px;}
.ya0{bottom:806.212500px;}
.y9f{bottom:806.214000px;}
.y6c{bottom:806.812350px;}
.y174{bottom:808.374150px;}
.yb7{bottom:812.212500px;}
.y13e{bottom:814.374150px;}
.yb{bottom:814.860150px;}
.y3c{bottom:815.204550px;}
.yde{bottom:815.812350px;}
.ya7{bottom:815.964000px;}
.yd8{bottom:819.232500px;}
.ya4{bottom:819.714000px;}
.y173{bottom:820.374150px;}
.yc{bottom:820.800150px;}
.y6b{bottom:824.812350px;}
.yb6{bottom:825.712500px;}
.ya3{bottom:825.948300px;}
.y13d{bottom:826.374150px;}
.y112{bottom:827.812350px;}
.y3b{bottom:828.704550px;}
.yd7{bottom:832.732500px;}
.ydd{bottom:833.812350px;}
.y9{bottom:837.360150px;}
.y13c{bottom:838.374150px;}
.y3a{bottom:842.461050px;}
.y6a{bottom:842.812350px;}
.ya{bottom:843.300150px;}
.ydc{bottom:845.812350px;}
.yd6{bottom:846.232500px;}
.y172{bottom:850.374150px;}
.y13b{bottom:856.374150px;}
.ydb{bottom:857.812350px;}
.yd5{bottom:859.732500px;}
.y7{bottom:859.860150px;}
.y69{bottom:860.812350px;}
.y171{bottom:862.374150px;}
.y39{bottom:863.529900px;}
.y8{bottom:865.800150px;}
.y13a{bottom:868.374150px;}
.yda{bottom:869.812350px;}
.yd4{bottom:873.232500px;}
.y38{bottom:877.029900px;}
.y68{bottom:878.812350px;}
.y139{bottom:880.374150px;}
.y37{bottom:890.529900px;}
.y138{bottom:892.374150px;}
.y67{bottom:896.812350px;}
.y6{bottom:901.999650px;}
.y36{bottom:904.029900px;}
.y170{bottom:904.374150px;}
.y137{bottom:910.374150px;}
.y66{bottom:914.812350px;}
.y16f{bottom:916.374150px;}
.y35{bottom:917.529900px;}
.y136{bottom:922.374150px;}
.y34{bottom:931.029900px;}
.y65{bottom:932.812350px;}
.y135{bottom:934.374150px;}
.y5{bottom:939.499650px;}
.y33{bottom:944.786550px;}
.y134{bottom:946.374150px;}
.y64{bottom:950.812350px;}
.y133{bottom:958.374150px;}
.y32{bottom:965.855550px;}
.y63{bottom:968.812350px;}
.y132{bottom:976.374150px;}
.y4{bottom:976.999650px;}
.y31{bottom:979.355550px;}
.y62{bottom:986.812350px;}
.y131{bottom:988.374150px;}
.y30{bottom:993.111900px;}
.y130{bottom:1000.374150px;}
.y9e{bottom:1002.787500px;}
.y61{bottom:1004.812350px;}
.y12f{bottom:1012.374150px;}
.y2f{bottom:1014.181050px;}
.y3{bottom:1014.499650px;}
.y16e{bottom:1018.374150px;}
.y60{bottom:1022.812350px;}
.y12e{bottom:1030.374150px;}
.y5f{bottom:1040.812350px;}
.y12d{bottom:1042.374150px;}
.y97{bottom:1050.714000px;}
.y2{bottom:1051.999650px;}
.y9d{bottom:1054.323300px;}
.y12c{bottom:1054.374150px;}
.y9c{bottom:1056.714000px;}
.y5e{bottom:1058.812350px;}
.y16d{bottom:1060.374150px;}
.y12b{bottom:1072.374150px;}
.y5d{bottom:1076.812350px;}
.y12a{bottom:1084.374150px;}
.y5c{bottom:1094.812350px;}
.y129{bottom:1096.374150px;}
.y128{bottom:1108.374150px;}
.y94{bottom:1112.812350px;}
.y16c{bottom:1114.374150px;}
.y96{bottom:1117.672350px;}
.y127{bottom:1126.374150px;}
.y5b{bottom:1130.812350px;}
.y95{bottom:1135.672350px;}
.y126{bottom:1138.374150px;}
.y59{bottom:1175.303400px;}
.y58{bottom:1188.803400px;}
.y5a{bottom:1202.272050px;}
.y57{bottom:1202.303400px;}
.h24{height:16.475160px;}
.h6{height:18.386760px;}
.h11{height:22.811760px;}
.h12{height:23.998500px;}
.ha{height:24.453000px;}
.h23{height:27.924000px;}
.h18{height:28.742981px;}
.h5{height:28.971360px;}
.h15{height:29.206238px;}
.h1d{height:29.238750px;}
.h26{height:29.904000px;}
.h13{height:29.943237px;}
.h21{height:30.072000px;}
.h25{height:31.038600px;}
.hc{height:31.122000px;}
.h8{height:31.164000px;}
.h2{height:31.248000px;}
.h20{height:32.862480px;}
.h22{height:32.863080px;}
.h7{height:33.506760px;}
.h1a{height:34.500000px;}
.hb{height:35.568000px;}
.h19{height:35.991211px;}
.h16{height:36.571289px;}
.h1c{height:36.612000px;}
.h14{height:37.494141px;}
.h17{height:37.938067px;}
.he{height:38.664000px;}
.h9{height:40.068000px;}
.h1f{height:40.176000px;}
.h10{height:47.460938px;}
.h4{height:49.104000px;}
.h1e{height:50.004000px;}
.hf{height:53.568000px;}
.hd{height:60.264000px;}
.h1b{height:71.118000px;}
.h3{height:93.744000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:82.500000px;}
.w2{width:112.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:39.281700px;}
.x15{left:47.953650px;}
.x1f{left:50.529150px;}
.x16{left:56.484900px;}
.x13{left:60.609900px;}
.x1{left:74.409450px;}
.x24{left:76.687950px;}
.x9{left:82.518000px;}
.x14{left:93.794588px;}
.xb{left:95.653950px;}
.x28{left:173.557200px;}
.x27{left:195.171900px;}
.x29{left:270.095550px;}
.x2{left:323.149650px;}
.x3{left:424.833000px;}
.x4{left:427.646400px;}
.x8{left:442.157550px;}
.xc{left:457.071600px;}
.x2b{left:466.071600px;}
.x2a{left:476.196600px;}
.xd{left:478.331100px;}
.x10{left:479.756850px;}
.x11{left:489.046500px;}
.x6{left:497.778750px;}
.x1a{left:519.999450px;}
.x1b{left:522.412350px;}
.x25{left:538.579650px;}
.x26{left:540.694800px;}
.x1c{left:555.281100px;}
.x1d{left:564.337350px;}
.x12{left:573.040500px;}
.x17{left:576.228600px;}
.x1e{left:588.040500px;}
.x19{left:601.869150px;}
.x21{left:605.712900px;}
.x18{left:612.134850px;}
.x23{left:627.322200px;}
.x5{left:656.263050px;}
.x20{left:657.744150px;}
.xa{left:661.241850px;}
.x7{left:664.149150px;}
.xe{left:814.656900px;}
.xf{left:818.503950px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v2{vertical-align:-13.440000pt;}
.v5{vertical-align:-12.480000pt;}
.v7{vertical-align:-5.600000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.600000pt;}
.v6{vertical-align:12.480000pt;}
.v3{vertical-align:13.440000pt;}
.v4{vertical-align:30.672000pt;}
.ls41{letter-spacing:-2.800000pt;}
.ls1c{letter-spacing:-2.256000pt;}
.ls31{letter-spacing:-1.829333pt;}
.ls1a{letter-spacing:-1.440000pt;}
.ls17{letter-spacing:-1.296000pt;}
.ls45{letter-spacing:-1.157333pt;}
.ls4{letter-spacing:-1.120000pt;}
.ls26{letter-spacing:-1.104000pt;}
.ls39{letter-spacing:-0.960000pt;}
.ls42{letter-spacing:-0.896000pt;}
.ls2c{letter-spacing:-0.864000pt;}
.ls19{letter-spacing:-0.816000pt;}
.ls1e{letter-spacing:-0.672000pt;}
.ls43{letter-spacing:-0.634667pt;}
.ls16{letter-spacing:-0.624000pt;}
.ls3f{letter-spacing:-0.597333pt;}
.ls2d{letter-spacing:-0.576000pt;}
.ls33{letter-spacing:-0.520000pt;}
.ls7{letter-spacing:-0.485333pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.373333pt;}
.ls44{letter-spacing:-0.336000pt;}
.ls32{letter-spacing:-0.298667pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls3d{letter-spacing:-0.261333pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls3e{letter-spacing:-0.224000pt;}
.ls3c{letter-spacing:-0.149333pt;}
.ls22{letter-spacing:-0.144000pt;}
.ls23{letter-spacing:-0.141600pt;}
.ls2e{letter-spacing:-0.112000pt;}
.ls6{letter-spacing:-0.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000107pt;}
.ls0{letter-spacing:0.000213pt;}
.ls36{letter-spacing:0.047443pt;}
.ls37{letter-spacing:0.047971pt;}
.ls35{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.264000pt;}
.ls3b{letter-spacing:0.480000pt;}
.ls40{letter-spacing:0.485333pt;}
.ls3a{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.829058pt;}
.lsb{letter-spacing:0.829587pt;}
.ls11{letter-spacing:0.846702pt;}
.ls12{letter-spacing:0.847239pt;}
.ls9{letter-spacing:1.037716pt;}
.ls8{letter-spacing:1.066765pt;}
.ls14{letter-spacing:1.073206pt;}
.ls1d{letter-spacing:1.083110pt;}
.ls3{letter-spacing:1.866667pt;}
.ls38{letter-spacing:1.929774pt;}
.lsf{letter-spacing:2.481699pt;}
.ls10{letter-spacing:3.121825pt;}
.ls13{letter-spacing:3.464599pt;}
.lsd{letter-spacing:4.129550pt;}
.ls34{letter-spacing:4.728480pt;}
.lsc{letter-spacing:5.931623pt;}
.lse{letter-spacing:8.790539pt;}
.ls25{letter-spacing:11.664000pt;}
.ls2f{letter-spacing:18.448425pt;}
.ls21{letter-spacing:86.518333pt;}
.ls1f{letter-spacing:116.495000pt;}
.ls2a{letter-spacing:142.512533pt;}
.ls28{letter-spacing:160.634827pt;}
.ls20{letter-spacing:188.352000pt;}
.ls29{letter-spacing:195.578293pt;}
.ls27{letter-spacing:202.258667pt;}
.ws92{word-spacing:-188.352000pt;}
.ws91{word-spacing:-116.495000pt;}
.ws93{word-spacing:-86.518333pt;}
.ws75{word-spacing:-48.000000pt;}
.wsf8{word-spacing:-18.504000pt;}
.wsce{word-spacing:-12.336000pt;}
.ws4{word-spacing:-11.664000pt;}
.wsa5{word-spacing:-10.992000pt;}
.ws26{word-spacing:-10.896000pt;}
.wsa3{word-spacing:-10.752000pt;}
.ws27{word-spacing:-10.656000pt;}
.wsa4{word-spacing:-10.416000pt;}
.ws76{word-spacing:-10.224000pt;}
.wsa2{word-spacing:-10.128000pt;}
.ws7b{word-spacing:-9.888000pt;}
.ws1{word-spacing:-9.594667pt;}
.ws118{word-spacing:-9.296000pt;}
.ws116{word-spacing:-9.221333pt;}
.ws24{word-spacing:-9.109333pt;}
.wsa9{word-spacing:-9.072000pt;}
.ws115{word-spacing:-9.034667pt;}
.ws2{word-spacing:-8.895627pt;}
.wse9{word-spacing:-8.698667pt;}
.ws28{word-spacing:-8.640000pt;}
.ws112{word-spacing:-8.549333pt;}
.wsa{word-spacing:-8.474667pt;}
.ws111{word-spacing:-8.400000pt;}
.wsac{word-spacing:-8.362667pt;}
.ws113{word-spacing:-8.288000pt;}
.ws150{word-spacing:-8.213333pt;}
.ws14f{word-spacing:-8.176000pt;}
.ws114{word-spacing:-7.952000pt;}
.wsaf{word-spacing:-7.938667pt;}
.wsdd{word-spacing:-7.418667pt;}
.ws8{word-spacing:-7.392000pt;}
.ws5{word-spacing:-7.128000pt;}
.ws7{word-spacing:-7.040000pt;}
.ws6{word-spacing:-6.834667pt;}
.ws3{word-spacing:-5.925173pt;}
.ws117{word-spacing:-5.749333pt;}
.wsab{word-spacing:-5.000053pt;}
.wsbe{word-spacing:-4.896000pt;}
.wsb0{word-spacing:-4.642907pt;}
.ws1e{word-spacing:-4.464000pt;}
.wsd{word-spacing:-4.128000pt;}
.wscb{word-spacing:-3.808000pt;}
.wscc{word-spacing:-3.536000pt;}
.ws13{word-spacing:-2.880000pt;}
.ws14{word-spacing:-2.832000pt;}
.wsa7{word-spacing:-2.606400pt;}
.ws11{word-spacing:-1.872000pt;}
.wsde{word-spacing:-1.584000pt;}
.ws9c{word-spacing:-1.344000pt;}
.ws71{word-spacing:-1.296000pt;}
.ws10c{word-spacing:-1.248000pt;}
.ws5d{word-spacing:-1.152000pt;}
.ws30{word-spacing:-1.104000pt;}
.ws8e{word-spacing:-1.056000pt;}
.ws2b{word-spacing:-1.008000pt;}
.ws168{word-spacing:-0.970667pt;}
.ws29{word-spacing:-0.933333pt;}
.ws5a{word-spacing:-0.912000pt;}
.ws18c{word-spacing:-0.896000pt;}
.wsc{word-spacing:-0.864000pt;}
.ws121{word-spacing:-0.858667pt;}
.ws131{word-spacing:-0.821333pt;}
.ws53{word-spacing:-0.816000pt;}
.ws151{word-spacing:-0.784000pt;}
.ws1a{word-spacing:-0.768000pt;}
.ws142{word-spacing:-0.746667pt;}
.ws2e{word-spacing:-0.720000pt;}
.ws18a{word-spacing:-0.634667pt;}
.ws96{word-spacing:-0.624000pt;}
.ws14c{word-spacing:-0.597333pt;}
.wsb2{word-spacing:-0.576000pt;}
.ws18b{word-spacing:-0.560000pt;}
.ws41{word-spacing:-0.528000pt;}
.ws148{word-spacing:-0.485333pt;}
.ws34{word-spacing:-0.480000pt;}
.ws9b{word-spacing:-0.432000pt;}
.ws139{word-spacing:-0.410667pt;}
.ws6e{word-spacing:-0.384000pt;}
.ws185{word-spacing:-0.298667pt;}
.ws107{word-spacing:-0.288000pt;}
.ws17d{word-spacing:-0.261333pt;}
.wsba{word-spacing:-0.240000pt;}
.ws3a{word-spacing:-0.192000pt;}
.ws159{word-spacing:-0.186667pt;}
.ws140{word-spacing:-0.149333pt;}
.wsc1{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.048000pt;}
.wsd1{word-spacing:-0.037333pt;}
.ws77{word-spacing:-0.028320pt;}
.wsad{word-spacing:-0.022027pt;}
.ws9{word-spacing:0.000000pt;}
.ws70{word-spacing:0.048000pt;}
.ws153{word-spacing:0.074667pt;}
.ws18{word-spacing:0.096000pt;}
.ws179{word-spacing:0.112000pt;}
.ws95{word-spacing:0.141600pt;}
.ws20{word-spacing:0.144000pt;}
.ws169{word-spacing:0.186667pt;}
.ws56{word-spacing:0.192000pt;}
.ws128{word-spacing:0.224000pt;}
.ws31{word-spacing:0.240000pt;}
.ws186{word-spacing:0.261333pt;}
.ws58{word-spacing:0.288000pt;}
.wse7{word-spacing:0.293333pt;}
.wsc4{word-spacing:0.336000pt;}
.ws129{word-spacing:0.373333pt;}
.ws8b{word-spacing:0.384000pt;}
.wsfe{word-spacing:0.480000pt;}
.ws135{word-spacing:0.485333pt;}
.ws89{word-spacing:0.528000pt;}
.ws4a{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.624000pt;}
.ws14b{word-spacing:0.634667pt;}
.ws14d{word-spacing:0.672000pt;}
.ws155{word-spacing:0.709333pt;}
.ws39{word-spacing:0.720000pt;}
.wsbc{word-spacing:0.768000pt;}
.ws2a{word-spacing:0.816000pt;}
.ws11f{word-spacing:0.821333pt;}
.ws11e{word-spacing:0.858667pt;}
.ws59{word-spacing:0.864000pt;}
.ws147{word-spacing:0.896000pt;}
.ws6d{word-spacing:0.960000pt;}
.ws163{word-spacing:1.008000pt;}
.ws3c{word-spacing:1.056000pt;}
.ws154{word-spacing:1.082667pt;}
.ws35{word-spacing:1.104000pt;}
.ws5b{word-spacing:1.152000pt;}
.ws14e{word-spacing:1.157333pt;}
.wsb5{word-spacing:1.200000pt;}
.wsca{word-spacing:1.248000pt;}
.ws174{word-spacing:1.269333pt;}
.ws2f{word-spacing:1.296000pt;}
.wsc6{word-spacing:1.344000pt;}
.ws137{word-spacing:1.381333pt;}
.ws57{word-spacing:1.440000pt;}
.ws6b{word-spacing:1.488000pt;}
.ws18e{word-spacing:1.530667pt;}
.ws84{word-spacing:1.584000pt;}
.ws161{word-spacing:1.680000pt;}
.ws162{word-spacing:1.717333pt;}
.ws15{word-spacing:1.728000pt;}
.wse5{word-spacing:1.776000pt;}
.ws156{word-spacing:1.792000pt;}
.ws32{word-spacing:1.824000pt;}
.ws5c{word-spacing:1.872000pt;}
.wsc7{word-spacing:1.968000pt;}
.ws4d{word-spacing:2.016000pt;}
.ws103{word-spacing:2.112000pt;}
.ws8a{word-spacing:2.160000pt;}
.ws157{word-spacing:2.165333pt;}
.ws18d{word-spacing:2.240000pt;}
.wsb{word-spacing:2.256000pt;}
.ws146{word-spacing:2.277333pt;}
.ws82{word-spacing:2.304000pt;}
.ws15a{word-spacing:2.314667pt;}
.wsf0{word-spacing:2.352000pt;}
.wsfd{word-spacing:2.400000pt;}
.ws120{word-spacing:2.464000pt;}
.ws94{word-spacing:2.544000pt;}
.ws13b{word-spacing:2.576000pt;}
.wse2{word-spacing:2.688000pt;}
.ws15e{word-spacing:2.725333pt;}
.ws61{word-spacing:2.736000pt;}
.ws17a{word-spacing:2.762667pt;}
.ws4f{word-spacing:2.784000pt;}
.ws22{word-spacing:2.832000pt;}
.ws12a{word-spacing:2.837333pt;}
.ws7f{word-spacing:2.928000pt;}
.ws7d{word-spacing:2.976000pt;}
.wsa6{word-spacing:3.000000pt;}
.ws136{word-spacing:3.024000pt;}
.ws5e{word-spacing:3.168000pt;}
.ws8d{word-spacing:3.216000pt;}
.ws60{word-spacing:3.264000pt;}
.ws4e{word-spacing:3.312000pt;}
.ws63{word-spacing:3.360000pt;}
.ws164{word-spacing:3.397333pt;}
.wsff{word-spacing:3.408000pt;}
.ws138{word-spacing:3.472000pt;}
.wsef{word-spacing:3.504000pt;}
.ws160{word-spacing:3.546667pt;}
.ws17b{word-spacing:3.584000pt;}
.ws100{word-spacing:3.600000pt;}
.ws1f{word-spacing:3.648000pt;}
.ws65{word-spacing:3.696000pt;}
.ws182{word-spacing:3.733333pt;}
.wsed{word-spacing:3.744000pt;}
.ws88{word-spacing:3.792000pt;}
.ws177{word-spacing:3.808000pt;}
.ws10e{word-spacing:3.840000pt;}
.ws171{word-spacing:3.882667pt;}
.ws87{word-spacing:3.888000pt;}
.ws6c{word-spacing:3.936000pt;}
.wsbb{word-spacing:3.984000pt;}
.wsc3{word-spacing:4.032000pt;}
.wsf{word-spacing:4.080000pt;}
.ws10{word-spacing:4.128000pt;}
.ws8f{word-spacing:4.176000pt;}
.ws181{word-spacing:4.256000pt;}
.ws11c{word-spacing:4.272000pt;}
.ws173{word-spacing:4.293333pt;}
.wsf4{word-spacing:4.320000pt;}
.ws122{word-spacing:4.330667pt;}
.ws48{word-spacing:4.368000pt;}
.ws1d{word-spacing:4.464000pt;}
.ws16c{word-spacing:4.592000pt;}
.ws47{word-spacing:4.608000pt;}
.ws11d{word-spacing:4.629333pt;}
.wsf5{word-spacing:4.656000pt;}
.ws172{word-spacing:4.666667pt;}
.ws102{word-spacing:4.704000pt;}
.ws15b{word-spacing:4.741333pt;}
.ws4c{word-spacing:4.752000pt;}
.ws12b{word-spacing:4.778667pt;}
.ws10f{word-spacing:4.800000pt;}
.wsf9{word-spacing:4.848000pt;}
.ws125{word-spacing:4.928000pt;}
.ws126{word-spacing:4.965333pt;}
.ws54{word-spacing:4.992000pt;}
.wse0{word-spacing:5.040000pt;}
.ws127{word-spacing:5.114667pt;}
.ws37{word-spacing:5.184000pt;}
.ws83{word-spacing:5.328000pt;}
.wsf1{word-spacing:5.424000pt;}
.wse1{word-spacing:5.472000pt;}
.wse6{word-spacing:5.520000pt;}
.ws98{word-spacing:5.568000pt;}
.ws109{word-spacing:5.664000pt;}
.ws44{word-spacing:5.712000pt;}
.ws43{word-spacing:5.808000pt;}
.ws15f{word-spacing:5.936000pt;}
.ws188{word-spacing:5.973333pt;}
.ws13f{word-spacing:6.048000pt;}
.ws178{word-spacing:6.085333pt;}
.ws64{word-spacing:6.096000pt;}
.ws42{word-spacing:6.192000pt;}
.ws189{word-spacing:6.197333pt;}
.ws19{word-spacing:6.240000pt;}
.wsfb{word-spacing:6.288000pt;}
.ws124{word-spacing:6.309333pt;}
.wsfa{word-spacing:6.336000pt;}
.ws67{word-spacing:6.432000pt;}
.ws149{word-spacing:6.458667pt;}
.ws13e{word-spacing:6.496000pt;}
.wseb{word-spacing:6.528000pt;}
.ws7e{word-spacing:6.576000pt;}
.wsb7{word-spacing:6.624000pt;}
.ws17e{word-spacing:6.682667pt;}
.ws187{word-spacing:6.757333pt;}
.ws12e{word-spacing:6.944000pt;}
.ws80{word-spacing:7.056000pt;}
.ws8c{word-spacing:7.104000pt;}
.ws16f{word-spacing:7.130667pt;}
.ws21{word-spacing:7.152000pt;}
.ws55{word-spacing:7.296000pt;}
.ws17f{word-spacing:7.317333pt;}
.ws38{word-spacing:7.440000pt;}
.wsc9{word-spacing:7.488000pt;}
.wsbf{word-spacing:7.536000pt;}
.ws170{word-spacing:7.578667pt;}
.ws13a{word-spacing:7.690667pt;}
.ws9e{word-spacing:7.728000pt;}
.ws104{word-spacing:7.776000pt;}
.ws49{word-spacing:7.824000pt;}
.ws158{word-spacing:7.840000pt;}
.ws143{word-spacing:7.877333pt;}
.ws144{word-spacing:7.952000pt;}
.wse{word-spacing:7.968000pt;}
.ws1c{word-spacing:8.064000pt;}
.wsb9{word-spacing:8.496000pt;}
.ws132{word-spacing:8.586667pt;}
.ws23{word-spacing:8.624000pt;}
.ws9d{word-spacing:8.736000pt;}
.ws12d{word-spacing:8.960000pt;}
.ws4b{word-spacing:9.024000pt;}
.ws17c{word-spacing:9.034667pt;}
.ws165{word-spacing:9.109333pt;}
.wsf2{word-spacing:9.120000pt;}
.wsee{word-spacing:9.312000pt;}
.ws33{word-spacing:9.408000pt;}
.ws3b{word-spacing:9.504000pt;}
.ws86{word-spacing:9.744000pt;}
.ws12c{word-spacing:9.781333pt;}
.wsb6{word-spacing:9.792000pt;}
.wsdf{word-spacing:9.936000pt;}
.wsfc{word-spacing:9.984000pt;}
.ws108{word-spacing:10.080000pt;}
.ws119{word-spacing:10.224000pt;}
.ws10d{word-spacing:10.416000pt;}
.ws16{word-spacing:10.464000pt;}
.ws10a{word-spacing:10.512000pt;}
.wsea{word-spacing:10.608000pt;}
.ws123{word-spacing:10.789333pt;}
.ws10b{word-spacing:10.896000pt;}
.ws3e{word-spacing:11.088000pt;}
.ws14a{word-spacing:11.125333pt;}
.ws3f{word-spacing:11.136000pt;}
.ws36{word-spacing:11.280000pt;}
.ws106{word-spacing:11.472000pt;}
.wsb1{word-spacing:11.520000pt;}
.ws17{word-spacing:11.568000pt;}
.ws66{word-spacing:11.616000pt;}
.ws45{word-spacing:11.664000pt;}
.wsbd{word-spacing:12.000000pt;}
.ws6f{word-spacing:12.144000pt;}
.wsb3{word-spacing:12.288000pt;}
.ws16d{word-spacing:12.394667pt;}
.ws3d{word-spacing:12.480000pt;}
.ws16e{word-spacing:12.506667pt;}
.ws1b{word-spacing:12.576000pt;}
.wsf3{word-spacing:12.720000pt;}
.ws12f{word-spacing:13.141333pt;}
.ws11b{word-spacing:13.200000pt;}
.ws130{word-spacing:13.253333pt;}
.wsc0{word-spacing:13.680000pt;}
.ws68{word-spacing:13.872000pt;}
.ws105{word-spacing:14.064000pt;}
.ws12{word-spacing:14.208000pt;}
.wsf6{word-spacing:14.304000pt;}
.ws141{word-spacing:14.336000pt;}
.ws46{word-spacing:14.352000pt;}
.ws6a{word-spacing:14.496000pt;}
.ws13c{word-spacing:14.597333pt;}
.ws13d{word-spacing:14.709333pt;}
.ws9f{word-spacing:14.736000pt;}
.ws51{word-spacing:14.832000pt;}
.ws134{word-spacing:15.642667pt;}
.wsa0{word-spacing:15.792000pt;}
.ws5f{word-spacing:16.128000pt;}
.ws7c{word-spacing:16.416000pt;}
.ws97{word-spacing:16.560000pt;}
.ws16a{word-spacing:16.576000pt;}
.ws16b{word-spacing:16.725333pt;}
.wsc8{word-spacing:16.944000pt;}
.ws166{word-spacing:17.173333pt;}
.ws90{word-spacing:17.376000pt;}
.ws167{word-spacing:17.696000pt;}
.wsec{word-spacing:17.760000pt;}
.ws52{word-spacing:17.904000pt;}
.wse3{word-spacing:18.672000pt;}
.ws133{word-spacing:18.816000pt;}
.wsb4{word-spacing:19.632000pt;}
.ws183{word-spacing:19.712000pt;}
.ws184{word-spacing:19.898667pt;}
.wse4{word-spacing:20.160000pt;}
.ws69{word-spacing:20.304000pt;}
.ws101{word-spacing:20.976000pt;}
.ws50{word-spacing:21.168000pt;}
.ws81{word-spacing:21.840000pt;}
.ws175{word-spacing:22.176000pt;}
.ws176{word-spacing:22.362667pt;}
.wsb8{word-spacing:22.560000pt;}
.ws99{word-spacing:22.656000pt;}
.ws40{word-spacing:22.752000pt;}
.ws152{word-spacing:22.885333pt;}
.wsa8{word-spacing:23.323200pt;}
.ws11a{word-spacing:23.568000pt;}
.wsc5{word-spacing:24.192000pt;}
.ws180{word-spacing:24.416000pt;}
.ws85{word-spacing:24.960000pt;}
.ws15c{word-spacing:25.610667pt;}
.ws9a{word-spacing:25.824000pt;}
.ws15d{word-spacing:25.834667pt;}
.ws145{word-spacing:26.544000pt;}
.ws62{word-spacing:29.568000pt;}
.ws72{word-spacing:30.864000pt;}
.ws73{word-spacing:31.536000pt;}
.wsc2{word-spacing:33.984000pt;}
.ws78{word-spacing:78.734400pt;}
.ws79{word-spacing:92.961600pt;}
.ws7a{word-spacing:123.504000pt;}
.wsaa{word-spacing:212.041067pt;}
.wscf{word-spacing:222.971200pt;}
.wsd3{word-spacing:258.482133pt;}
.wsd0{word-spacing:262.308800pt;}
.wsd8{word-spacing:271.268800pt;}
.wsd6{word-spacing:280.658667pt;}
.wsd4{word-spacing:287.902400pt;}
.wsae{word-spacing:289.139733pt;}
.wsdc{word-spacing:293.445333pt;}
.wsd2{word-spacing:375.626667pt;}
.wsd5{word-spacing:384.586667pt;}
.wsda{word-spacing:411.949333pt;}
.wsdb{word-spacing:468.136000pt;}
.wsd7{word-spacing:588.458667pt;}
.wsd9{word-spacing:612.669333pt;}
.ws110{word-spacing:1038.506133pt;}
.wsa1{word-spacing:1038.524800pt;}
.wse8{word-spacing:1038.655467pt;}
.ws25{word-spacing:1039.159467pt;}
.ws74{word-spacing:1039.252800pt;}
.wscd{word-spacing:1039.327467pt;}
.wsf7{word-spacing:1039.962133pt;}
.ws0{word-spacing:1040.708800pt;}
._13{margin-left:-30.432000pt;}
._19{margin-left:-21.944427pt;}
._14{margin-left:-14.720853pt;}
._17{margin-left:-12.672656pt;}
._e{margin-left:-11.760000pt;}
._3{margin-left:-8.475093pt;}
._11{margin-left:-6.546236pt;}
._6{margin-left:-5.140800pt;}
._4{margin-left:-3.509333pt;}
._5{margin-left:-2.103573pt;}
._1{margin-left:-1.008000pt;}
._2{width:1.120000pt;}
._b{width:2.745173pt;}
._f{width:3.705600pt;}
._a{width:4.955002pt;}
._d{width:5.895128pt;}
._12{width:6.998609pt;}
._7{width:8.621333pt;}
._c{width:10.363342pt;}
._16{width:11.935392pt;}
._2f{width:13.163918pt;}
._10{width:14.540907pt;}
._18{width:18.291745pt;}
._15{width:102.326400pt;}
._21{width:144.182400pt;}
._20{width:151.557067pt;}
._1f{width:162.102400pt;}
._1c{width:172.819200pt;}
._1e{width:178.102400pt;}
._1b{width:182.338133pt;}
._1d{width:185.465067pt;}
._23{width:258.720533pt;}
._22{width:263.992533pt;}
._1a{width:270.761600pt;}
._27{width:300.203733pt;}
._2e{width:308.377067pt;}
._2d{width:309.330560pt;}
._24{width:351.273067pt;}
._26{width:361.985600pt;}
._2c{width:384.161067pt;}
._29{width:396.888000pt;}
._25{width:405.848000pt;}
._2a{width:487.341333pt;}
._28{width:500.128000pt;}
._2b{width:519.261333pt;}
._9{width:629.349333pt;}
._0{width:630.898667pt;}
._8{width:1953.832533pt;}
.fse{font-size:20.453333pt;}
.fs4{font-size:22.026667pt;}
.fsa{font-size:28.320000pt;}
.fs6{font-size:29.333333pt;}
.fs3{font-size:34.613333pt;}
.fsd{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fsb{font-size:38.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:50.596443pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:1.123333pt;}
.ya2{bottom:2.497333pt;}
.y99{bottom:3.204517pt;}
.y9b{bottom:3.208267pt;}
.y9a{bottom:5.333333pt;}
.y98{bottom:10.708267pt;}
.ya1{bottom:12.001333pt;}
.ya5{bottom:18.751333pt;}
.y1{bottom:47.244133pt;}
.yc4{bottom:77.166533pt;}
.yb5{bottom:93.165333pt;}
.y93{bottom:93.166533pt;}
.y111{bottom:95.833200pt;}
.y110{bottom:106.499867pt;}
.yb4{bottom:108.285333pt;}
.y92{bottom:109.166533pt;}
.yb3{bottom:117.165333pt;}
.y10f{bottom:117.166533pt;}
.y125{bottom:122.499867pt;}
.y91{bottom:125.166533pt;}
.yb2{bottom:129.165333pt;}
.y10e{bottom:133.166533pt;}
.yb1{bottom:141.165333pt;}
.y90{bottom:141.166533pt;}
.y2e{bottom:143.712133pt;}
.y10d{bottom:143.833200pt;}
.y10c{bottom:154.499867pt;}
.y8f{bottom:157.166533pt;}
.y2d{bottom:158.378800pt;}
.yb0{bottom:159.757200pt;}
.y124{bottom:159.833200pt;}
.y10b{bottom:170.499867pt;}
.y8e{bottom:173.166533pt;}
.y16b{bottom:174.554800pt;}
.y2c{bottom:177.045467pt;}
.yaf{bottom:179.392800pt;}
.y10a{bottom:181.166533pt;}
.y16a{bottom:185.221467pt;}
.y8d{bottom:189.166533pt;}
.y109{bottom:191.833200pt;}
.y169{bottom:195.888133pt;}
.y123{bottom:197.166533pt;}
.yae{bottom:199.243200pt;}
.y197{bottom:201.221467pt;}
.y8c{bottom:205.166533pt;}
.y108{bottom:207.833200pt;}
.y2b{bottom:210.378800pt;}
.y168{bottom:211.888133pt;}
.y107{bottom:218.499867pt;}
.yad{bottom:218.878933pt;}
.y8b{bottom:221.166533pt;}
.y167{bottom:222.554800pt;}
.y122{bottom:223.833200pt;}
.y2a{bottom:226.378800pt;}
.y196{bottom:227.888133pt;}
.y106{bottom:229.166533pt;}
.y166{bottom:233.221467pt;}
.y121{bottom:234.499867pt;}
.yac{bottom:234.878933pt;}
.y8a{bottom:237.166533pt;}
.y195{bottom:238.554800pt;}
.y29{bottom:242.378800pt;}
.y105{bottom:245.166533pt;}
.y165{bottom:249.221467pt;}
.y120{bottom:250.499867pt;}
.y89{bottom:253.166533pt;}
.yab{bottom:254.514533pt;}
.y104{bottom:255.833200pt;}
.y28{bottom:258.378800pt;}
.y164{bottom:259.888133pt;}
.y11f{bottom:261.166533pt;}
.y194{bottom:265.221467pt;}
.y103{bottom:266.499867pt;}
.y88{bottom:269.166533pt;}
.y163{bottom:270.554800pt;}
.y11e{bottom:271.833200pt;}
.yaa{bottom:274.150133pt;}
.y27{bottom:274.378800pt;}
.y193{bottom:275.888133pt;}
.y102{bottom:282.499867pt;}
.y87{bottom:285.166533pt;}
.y162{bottom:286.554800pt;}
.y11d{bottom:287.833200pt;}
.y26{bottom:290.378800pt;}
.y101{bottom:293.166533pt;}
.y161{bottom:297.221467pt;}
.y11c{bottom:298.499867pt;}
.ya9{bottom:299.075333pt;}
.y86{bottom:301.166533pt;}
.y192{bottom:302.554800pt;}
.y100{bottom:303.833200pt;}
.y25{bottom:306.378800pt;}
.y160{bottom:307.888133pt;}
.y11b{bottom:309.166533pt;}
.y191{bottom:313.221467pt;}
.y85{bottom:317.166533pt;}
.y15f{bottom:318.554800pt;}
.yff{bottom:319.833200pt;}
.y24{bottom:322.378800pt;}
.y190{bottom:329.221467pt;}
.yfe{bottom:330.499867pt;}
.y84{bottom:333.166533pt;}
.y15e{bottom:334.554800pt;}
.y11a{bottom:335.833200pt;}
.y23{bottom:338.378800pt;}
.y18f{bottom:339.888133pt;}
.yfd{bottom:341.166533pt;}
.y15d{bottom:345.221467pt;}
.y119{bottom:346.499867pt;}
.y83{bottom:349.166533pt;}
.y18e{bottom:350.554800pt;}
.y22{bottom:354.378800pt;}
.yfc{bottom:357.166533pt;}
.ycc{bottom:357.306667pt;}
.y15c{bottom:361.221467pt;}
.y82{bottom:365.166533pt;}
.y18d{bottom:366.554800pt;}
.yfb{bottom:367.833200pt;}
.ycb{bottom:369.306667pt;}
.y21{bottom:370.378800pt;}
.y15b{bottom:371.888133pt;}
.y18c{bottom:377.221467pt;}
.yfa{bottom:378.499867pt;}
.y81{bottom:381.166533pt;}
.yca{bottom:381.306667pt;}
.y15a{bottom:382.554800pt;}
.y118{bottom:383.833200pt;}
.y20{bottom:386.378800pt;}
.y18b{bottom:387.888133pt;}
.y56{bottom:392.047600pt;}
.y159{bottom:393.221467pt;}
.yc9{bottom:393.306667pt;}
.yf9{bottom:394.499867pt;}
.y80{bottom:397.166533pt;}
.y1f{bottom:402.378800pt;}
.y18a{bottom:403.888133pt;}
.y55{bottom:404.047600pt;}
.yf8{bottom:405.166533pt;}
.yc8{bottom:405.306667pt;}
.y158{bottom:409.221467pt;}
.y7f{bottom:413.166533pt;}
.y189{bottom:414.554800pt;}
.yf7{bottom:415.833200pt;}
.y54{bottom:416.047600pt;}
.y157{bottom:419.888133pt;}
.y1e{bottom:422.764133pt;}
.y188{bottom:425.221467pt;}
.y53{bottom:428.047600pt;}
.y7e{bottom:429.166533pt;}
.y156{bottom:430.554800pt;}
.yf6{bottom:431.833200pt;}
.y187{bottom:435.888133pt;}
.y1d{bottom:438.764133pt;}
.y52{bottom:440.047600pt;}
.y155{bottom:441.221467pt;}
.yf5{bottom:442.499867pt;}
.y7d{bottom:445.166533pt;}
.y186{bottom:451.888133pt;}
.y51{bottom:452.047600pt;}
.yf4{bottom:453.166533pt;}
.y1c{bottom:454.764133pt;}
.y154{bottom:457.221467pt;}
.yc3{bottom:460.457467pt;}
.y7c{bottom:461.166533pt;}
.y185{bottom:462.554800pt;}
.y117{bottom:463.833200pt;}
.y50{bottom:464.047600pt;}
.y153{bottom:467.888133pt;}
.yf3{bottom:469.166533pt;}
.y1b{bottom:470.764133pt;}
.yc2{bottom:472.457467pt;}
.y184{bottom:473.221467pt;}
.y4f{bottom:476.047600pt;}
.y7b{bottom:477.166533pt;}
.y152{bottom:478.554800pt;}
.yf2{bottom:479.833200pt;}
.yd3{bottom:480.766667pt;}
.y183{bottom:483.888133pt;}
.y1a{bottom:486.764133pt;}
.y4e{bottom:488.047600pt;}
.yf1{bottom:490.499867pt;}
.yc1{bottom:491.049333pt;}
.yd2{bottom:492.766667pt;}
.y7a{bottom:493.166533pt;}
.y151{bottom:494.554800pt;}
.y182{bottom:499.888133pt;}
.y4d{bottom:500.047600pt;}
.y116{bottom:501.166533pt;}
.y19{bottom:502.764133pt;}
.yd1{bottom:504.766667pt;}
.y150{bottom:505.221467pt;}
.yf0{bottom:506.499867pt;}
.y79{bottom:509.166533pt;}
.y181{bottom:510.554800pt;}
.yc0{bottom:510.899733pt;}
.y4c{bottom:512.047600pt;}
.y14f{bottom:515.888133pt;}
.yd0{bottom:516.766667pt;}
.yef{bottom:517.166533pt;}
.y18{bottom:518.764133pt;}
.y180{bottom:521.221467pt;}
.y4b{bottom:524.047600pt;}
.y78{bottom:525.166533pt;}
.y14e{bottom:526.554800pt;}
.yee{bottom:527.833200pt;}
.ycf{bottom:528.766667pt;}
.ybf{bottom:530.964933pt;}
.y17{bottom:534.764133pt;}
.y4a{bottom:536.047600pt;}
.y17f{bottom:537.221467pt;}
.y115{bottom:538.499867pt;}
.yce{bottom:540.766667pt;}
.y77{bottom:541.166533pt;}
.y14d{bottom:542.554800pt;}
.yed{bottom:543.833200pt;}
.y17e{bottom:547.888133pt;}
.y49{bottom:548.275600pt;}
.y114{bottom:549.166533pt;}
.ybe{bottom:550.600533pt;}
.ycd{bottom:552.766667pt;}
.y14c{bottom:553.221467pt;}
.yec{bottom:554.499867pt;}
.y16{bottom:555.149467pt;}
.y76{bottom:557.166533pt;}
.y14b{bottom:563.888133pt;}
.yeb{bottom:565.166533pt;}
.y48{bottom:567.003600pt;}
.ybd{bottom:570.450933pt;}
.y15{bottom:571.149467pt;}
.y75{bottom:573.166533pt;}
.y17d{bottom:574.554800pt;}
.yea{bottom:575.833200pt;}
.y47{bottom:579.003600pt;}
.y14a{bottom:579.888133pt;}
.y113{bottom:581.166533pt;}
.y17c{bottom:585.221467pt;}
.y14{bottom:587.149467pt;}
.y74{bottom:589.166533pt;}
.ybc{bottom:590.301333pt;}
.y149{bottom:590.554800pt;}
.y46{bottom:591.003600pt;}
.ye9{bottom:591.833200pt;}
.y17b{bottom:595.888133pt;}
.y148{bottom:601.221467pt;}
.ye8{bottom:602.499867pt;}
.y45{bottom:603.003600pt;}
.y13{bottom:603.149467pt;}
.y73{bottom:605.166533pt;}
.ybb{bottom:609.936933pt;}
.y147{bottom:611.888133pt;}
.ye7{bottom:613.166533pt;}
.y44{bottom:615.003600pt;}
.y72{bottom:621.166533pt;}
.y17a{bottom:622.554800pt;}
.y43{bottom:627.003600pt;}
.y146{bottom:627.888133pt;}
.ye6{bottom:629.166533pt;}
.yba{bottom:629.572533pt;}
.y179{bottom:633.221467pt;}
.y71{bottom:637.166533pt;}
.y145{bottom:638.554800pt;}
.y42{bottom:639.003600pt;}
.ye5{bottom:639.833200pt;}
.y12{bottom:642.201467pt;}
.yb9{bottom:649.208133pt;}
.y144{bottom:649.221467pt;}
.ye4{bottom:650.499867pt;}
.y41{bottom:651.003600pt;}
.y70{bottom:653.166533pt;}
.y11{bottom:654.201467pt;}
.y178{bottom:659.888133pt;}
.y40{bottom:663.231467pt;}
.y143{bottom:665.221467pt;}
.y10{bottom:666.201467pt;}
.ye3{bottom:666.499867pt;}
.y6f{bottom:669.166533pt;}
.y177{bottom:670.554800pt;}
.yb8{bottom:674.133333pt;}
.y142{bottom:675.888133pt;}
.ye2{bottom:677.166533pt;}
.yf{bottom:678.201467pt;}
.y176{bottom:681.221467pt;}
.y3f{bottom:681.959600pt;}
.ya8{bottom:683.366667pt;}
.y6e{bottom:685.166533pt;}
.y141{bottom:686.554800pt;}
.ye1{bottom:687.833200pt;}
.yc7{bottom:688.846667pt;}
.ye{bottom:690.201467pt;}
.y3e{bottom:693.959600pt;}
.y140{bottom:697.221467pt;}
.yc6{bottom:700.846667pt;}
.y6d{bottom:701.166533pt;}
.ye0{bottom:703.833200pt;}
.yd{bottom:705.561467pt;}
.y3d{bottom:705.959600pt;}
.y175{bottom:707.888133pt;}
.yc5{bottom:712.846667pt;}
.y13f{bottom:713.221467pt;}
.ydf{bottom:714.499867pt;}
.yd9{bottom:716.206667pt;}
.ya0{bottom:716.633333pt;}
.y9f{bottom:716.634667pt;}
.y6c{bottom:717.166533pt;}
.y174{bottom:718.554800pt;}
.yb7{bottom:721.966667pt;}
.y13e{bottom:723.888133pt;}
.yb{bottom:724.320133pt;}
.y3c{bottom:724.626267pt;}
.yde{bottom:725.166533pt;}
.ya7{bottom:725.301333pt;}
.yd8{bottom:728.206667pt;}
.ya4{bottom:728.634667pt;}
.y173{bottom:729.221467pt;}
.yc{bottom:729.600133pt;}
.y6b{bottom:733.166533pt;}
.yb6{bottom:733.966667pt;}
.ya3{bottom:734.176267pt;}
.y13d{bottom:734.554800pt;}
.y112{bottom:735.833200pt;}
.y3b{bottom:736.626267pt;}
.yd7{bottom:740.206667pt;}
.ydd{bottom:741.166533pt;}
.y9{bottom:744.320133pt;}
.y13c{bottom:745.221467pt;}
.y3a{bottom:748.854267pt;}
.y6a{bottom:749.166533pt;}
.ya{bottom:749.600133pt;}
.ydc{bottom:751.833200pt;}
.yd6{bottom:752.206667pt;}
.y172{bottom:755.888133pt;}
.y13b{bottom:761.221467pt;}
.ydb{bottom:762.499867pt;}
.yd5{bottom:764.206667pt;}
.y7{bottom:764.320133pt;}
.y69{bottom:765.166533pt;}
.y171{bottom:766.554800pt;}
.y39{bottom:767.582133pt;}
.y8{bottom:769.600133pt;}
.y13a{bottom:771.888133pt;}
.yda{bottom:773.166533pt;}
.yd4{bottom:776.206667pt;}
.y38{bottom:779.582133pt;}
.y68{bottom:781.166533pt;}
.y139{bottom:782.554800pt;}
.y37{bottom:791.582133pt;}
.y138{bottom:793.221467pt;}
.y67{bottom:797.166533pt;}
.y6{bottom:801.777467pt;}
.y36{bottom:803.582133pt;}
.y170{bottom:803.888133pt;}
.y137{bottom:809.221467pt;}
.y66{bottom:813.166533pt;}
.y16f{bottom:814.554800pt;}
.y35{bottom:815.582133pt;}
.y136{bottom:819.888133pt;}
.y34{bottom:827.582133pt;}
.y65{bottom:829.166533pt;}
.y135{bottom:830.554800pt;}
.y5{bottom:835.110800pt;}
.y33{bottom:839.810267pt;}
.y134{bottom:841.221467pt;}
.y64{bottom:845.166533pt;}
.y133{bottom:851.888133pt;}
.y32{bottom:858.538267pt;}
.y63{bottom:861.166533pt;}
.y132{bottom:867.888133pt;}
.y4{bottom:868.444133pt;}
.y31{bottom:870.538267pt;}
.y62{bottom:877.166533pt;}
.y131{bottom:878.554800pt;}
.y30{bottom:882.766133pt;}
.y130{bottom:889.221467pt;}
.y9e{bottom:891.366667pt;}
.y61{bottom:893.166533pt;}
.y12f{bottom:899.888133pt;}
.y2f{bottom:901.494267pt;}
.y3{bottom:901.777467pt;}
.y16e{bottom:905.221467pt;}
.y60{bottom:909.166533pt;}
.y12e{bottom:915.888133pt;}
.y5f{bottom:925.166533pt;}
.y12d{bottom:926.554800pt;}
.y97{bottom:933.968000pt;}
.y2{bottom:935.110800pt;}
.y9d{bottom:937.176267pt;}
.y12c{bottom:937.221467pt;}
.y9c{bottom:939.301333pt;}
.y5e{bottom:941.166533pt;}
.y16d{bottom:942.554800pt;}
.y12b{bottom:953.221467pt;}
.y5d{bottom:957.166533pt;}
.y12a{bottom:963.888133pt;}
.y5c{bottom:973.166533pt;}
.y129{bottom:974.554800pt;}
.y128{bottom:985.221467pt;}
.y94{bottom:989.166533pt;}
.y16c{bottom:990.554800pt;}
.y96{bottom:993.486533pt;}
.y127{bottom:1001.221467pt;}
.y5b{bottom:1005.166533pt;}
.y95{bottom:1009.486533pt;}
.y126{bottom:1011.888133pt;}
.y59{bottom:1044.714133pt;}
.y58{bottom:1056.714133pt;}
.y5a{bottom:1068.686267pt;}
.y57{bottom:1068.714133pt;}
.h24{height:14.644587pt;}
.h6{height:16.343787pt;}
.h11{height:20.277120pt;}
.h12{height:21.332000pt;}
.ha{height:21.736000pt;}
.h23{height:24.821333pt;}
.h18{height:25.549316pt;}
.h5{height:25.752320pt;}
.h15{height:25.961100pt;}
.h1d{height:25.990000pt;}
.h26{height:26.581333pt;}
.h13{height:26.616211pt;}
.h21{height:26.730667pt;}
.h25{height:27.589867pt;}
.hc{height:27.664000pt;}
.h8{height:27.701333pt;}
.h2{height:27.776000pt;}
.h20{height:29.211093pt;}
.h22{height:29.211627pt;}
.h7{height:29.783787pt;}
.h1a{height:30.666667pt;}
.hb{height:31.616000pt;}
.h19{height:31.992188pt;}
.h16{height:32.507812pt;}
.h1c{height:32.544000pt;}
.h14{height:33.328125pt;}
.h17{height:33.722727pt;}
.he{height:34.368000pt;}
.h9{height:35.616000pt;}
.h1f{height:35.712000pt;}
.h10{height:42.187500pt;}
.h4{height:43.648000pt;}
.h1e{height:44.448000pt;}
.hf{height:47.616000pt;}
.hd{height:53.568000pt;}
.h1b{height:63.216000pt;}
.h3{height:83.328000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:73.333333pt;}
.w2{width:100.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:34.917067pt;}
.x15{left:42.625467pt;}
.x1f{left:44.914800pt;}
.x16{left:50.208800pt;}
.x13{left:53.875467pt;}
.x1{left:66.141733pt;}
.x24{left:68.167067pt;}
.x9{left:73.349333pt;}
.x14{left:83.372967pt;}
.xb{left:85.025733pt;}
.x28{left:154.273067pt;}
.x27{left:173.486133pt;}
.x29{left:240.084933pt;}
.x2{left:287.244133pt;}
.x3{left:377.629333pt;}
.x4{left:380.130133pt;}
.x8{left:393.028933pt;}
.xc{left:406.285867pt;}
.x2b{left:414.285867pt;}
.x2a{left:423.285867pt;}
.xd{left:425.183200pt;}
.x10{left:426.450533pt;}
.x11{left:434.708000pt;}
.x6{left:442.470000pt;}
.x1a{left:462.221733pt;}
.x1b{left:464.366533pt;}
.x25{left:478.737467pt;}
.x26{left:480.617600pt;}
.x1c{left:493.583200pt;}
.x1d{left:501.633200pt;}
.x12{left:509.369333pt;}
.x17{left:512.203200pt;}
.x1e{left:522.702667pt;}
.x19{left:534.994800pt;}
.x21{left:538.411467pt;}
.x18{left:544.119867pt;}
.x23{left:557.619733pt;}
.x5{left:583.344933pt;}
.x20{left:584.661467pt;}
.xa{left:587.770533pt;}
.x7{left:590.354800pt;}
.xe{left:724.139467pt;}
.xf{left:727.559067pt;}
}




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