
    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_d1316aa8785fc38edf136a67.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.092000;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_25c63d8af6861c7b465ef886.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_df5dea38f3c5d4140cf47cef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.648000;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_af4b86f45f6dec779deefc84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.715000;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_5f7bcdb9d8e535bbd4c2bdf1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e3993d65425e3f4ee02987c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.068000;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_9c9f7fe4ed4edf40c660c12d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970000;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_c2a1f3450cdd726115e6095c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_9ba6acd92acba04859227aeb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947000;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_1d5597cb75616bed24d69ce8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.286000;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_2f4b979c7f82e0203071174a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_ed5133d3151218dbf603e38a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.667000;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;}
.m6f{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m6e{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.ma{transform:matrix(0.236306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236306,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.238553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238553,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.239142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239142,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.239353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239353,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.241478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241478,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m7f{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.242703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242703,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m47{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.242817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242817,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.242867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242867,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.243069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243069,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.243078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243078,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.243086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243086,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.243128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243128,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.243186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243186,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.243242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243242,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.243256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243256,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.ma3{transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.243614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243614,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.243944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243944,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.243953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243953,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.244033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244033,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.244058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244058,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244111,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.244211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244211,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.244233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244233,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.244297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244297,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.244369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244369,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.244406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244406,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.244461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244461,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.244617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244617,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.244633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244633,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.244894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244894,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.244989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244989,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.mf{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);}
.m33{transform:matrix(0.245186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245186,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.245254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245254,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.245303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245303,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.245481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245481,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.245506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245506,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.245589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245589,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.245661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245661,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.245669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245669,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245819,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.245844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245844,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.246054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246054,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246164,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.246358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246358,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.246397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246397,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.246656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246656,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.247171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247171,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.247264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247264,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.247281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247281,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m9d{transform:matrix(0.247511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247511,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.247571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247571,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247578,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.247697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247697,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.247904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247904,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);}
.mc2{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);}
.mfb{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248033,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.m10c{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249428,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.mad{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);}
.m60{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);}
.me2{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);}
.m1a{transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m74{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);}
.mbd{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251122,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m3a{transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251822,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251869,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251872,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.me8{transform:matrix(0.251986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251986,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m39{transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.252104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252104,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m44{transform:matrix(0.252206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252206,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.252356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252356,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);}
.m98{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);}
.me{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);}
.m10b{transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.252836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252836,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.253668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253668,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.254357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254357,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.md5{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);}
.m12{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;}
.v5{vertical-align:-19.440000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v4{vertical-align:19.440000px;}
.ls35{letter-spacing:-2.940000px;}
.ls1d{letter-spacing:-2.376000px;}
.ls2c{letter-spacing:-1.470000px;}
.ls15{letter-spacing:-1.458000px;}
.ls29{letter-spacing:-1.350000px;}
.ls36{letter-spacing:-1.344000px;}
.ls2f{letter-spacing:-1.302000px;}
.ls9{letter-spacing:-1.296000px;}
.ls3{letter-spacing:-1.260000px;}
.lse{letter-spacing:-1.134000px;}
.ls2b{letter-spacing:-1.050000px;}
.lsd{letter-spacing:-0.972000px;}
.lsc{letter-spacing:-0.810000px;}
.ls2e{letter-spacing:-0.798000px;}
.lsa{letter-spacing:-0.756000px;}
.ls16{letter-spacing:-0.714000px;}
.lsf{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.546000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.420000px;}
.ls18{letter-spacing:-0.378000px;}
.ls30{letter-spacing:-0.336000px;}
.ls6{letter-spacing:-0.330000px;}
.ls26{letter-spacing:-0.324000px;}
.ls2a{letter-spacing:-0.294000px;}
.ls4{letter-spacing:-0.270000px;}
.ls28{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.210000px;}
.ls2d{letter-spacing:-0.168000px;}
.ls1a{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.099000px;}
.ls33{letter-spacing:-0.084000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.054000px;}
.ls39{letter-spacing:0.126000px;}
.ls22{letter-spacing:0.162000px;}
.ls19{letter-spacing:0.210000px;}
.ls17{letter-spacing:0.252000px;}
.ls25{letter-spacing:0.269060px;}
.ls1e{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.297000px;}
.ls32{letter-spacing:0.420000px;}
.ls21{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.630000px;}
.ls27{letter-spacing:0.864000px;}
.ls34{letter-spacing:0.882000px;}
.ls31{letter-spacing:1.050000px;}
.ls2{letter-spacing:2.100000px;}
.ls1f{letter-spacing:134.633880px;}
.ls23{letter-spacing:197.194800px;}
.ls13{letter-spacing:288.320400px;}
.ls14{letter-spacing:288.321000px;}
.ls12{letter-spacing:316.883400px;}
.ls11{letter-spacing:331.447200px;}
.ls10{letter-spacing:377.199000px;}
.ls38{letter-spacing:488.388600px;}
.ls24{letter-spacing:1529.746200px;}
.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;}
}
.ws1b0{word-spacing:-497.922600px;}
.ws124{word-spacing:-20.817000px;}
.ws6{word-spacing:-14.634000px;}
.wse9{word-spacing:-13.878000px;}
.wse8{word-spacing:-12.798000px;}
.wsd8{word-spacing:-12.528000px;}
.ws59{word-spacing:-12.366000px;}
.ws23{word-spacing:-12.258000px;}
.ws22{word-spacing:-11.988000px;}
.ws1ad{word-spacing:-11.448000px;}
.wsba{word-spacing:-11.394000px;}
.wsb{word-spacing:-11.298000px;}
.ws2{word-spacing:-10.794000px;}
.ws189{word-spacing:-10.668000px;}
.ws18a{word-spacing:-10.584000px;}
.ws1f{word-spacing:-10.248000px;}
.ws99{word-spacing:-10.206000px;}
.ws3{word-spacing:-10.007580px;}
.ws18b{word-spacing:-9.954000px;}
.wsb0{word-spacing:-9.786000px;}
.wsb1{word-spacing:-9.744000px;}
.ws1af{word-spacing:-9.660000px;}
.ws13e{word-spacing:-9.618000px;}
.wsd{word-spacing:-9.534000px;}
.wsb2{word-spacing:-9.408000px;}
.ws13f{word-spacing:-9.324000px;}
.ws142{word-spacing:-9.282000px;}
.ws13d{word-spacing:-9.240000px;}
.ws141{word-spacing:-9.198000px;}
.ws9e{word-spacing:-9.156000px;}
.ws140{word-spacing:-9.072000px;}
.wsb3{word-spacing:-9.030000px;}
.wsae{word-spacing:-8.820000px;}
.wsaf{word-spacing:-8.778000px;}
.wsa{word-spacing:-8.316000px;}
.ws18c{word-spacing:-8.190000px;}
.ws7{word-spacing:-8.019000px;}
.ws9{word-spacing:-7.920000px;}
.ws8{word-spacing:-7.689000px;}
.wsbb{word-spacing:-7.232220px;}
.ws188{word-spacing:-6.678000px;}
.ws4{word-spacing:-6.665820px;}
.ws7f{word-spacing:-2.052000px;}
.ws6e{word-spacing:-1.836000px;}
.wsd3{word-spacing:-1.566000px;}
.ws16b{word-spacing:-1.428000px;}
.ws2b{word-spacing:-1.350000px;}
.ws19{word-spacing:-1.242000px;}
.ws26{word-spacing:-1.188000px;}
.ws55{word-spacing:-1.134000px;}
.ws49{word-spacing:-1.080000px;}
.ws24{word-spacing:-1.050000px;}
.wsc8{word-spacing:-1.026000px;}
.ws16c{word-spacing:-1.008000px;}
.ws104{word-spacing:-0.972000px;}
.ws145{word-spacing:-0.966000px;}
.ws133{word-spacing:-0.918000px;}
.ws179{word-spacing:-0.882000px;}
.ws11f{word-spacing:-0.864000px;}
.ws17e{word-spacing:-0.798000px;}
.ws34{word-spacing:-0.756000px;}
.ws147{word-spacing:-0.672000px;}
.ws10b{word-spacing:-0.648000px;}
.ws146{word-spacing:-0.630000px;}
.ws18d{word-spacing:-0.588000px;}
.ws159{word-spacing:-0.546000px;}
.ws69{word-spacing:-0.540000px;}
.ws19c{word-spacing:-0.504000px;}
.ws103{word-spacing:-0.486000px;}
.ws1d{word-spacing:-0.420000px;}
.ws1b2{word-spacing:-0.378000px;}
.ws178{word-spacing:-0.336000px;}
.ws5d{word-spacing:-0.324000px;}
.ws127{word-spacing:-0.270000px;}
.ws3a{word-spacing:-0.216000px;}
.ws191{word-spacing:-0.210000px;}
.ws53{word-spacing:-0.162000px;}
.ws148{word-spacing:-0.126000px;}
.ws1c{word-spacing:-0.108000px;}
.ws19b{word-spacing:-0.084000px;}
.ws5{word-spacing:-0.054000px;}
.wsb7{word-spacing:-0.042000px;}
.ws100{word-spacing:-0.039000px;}
.wsc{word-spacing:0.000000px;}
.ws17c{word-spacing:0.042000px;}
.ws15b{word-spacing:0.084000px;}
.ws81{word-spacing:0.108000px;}
.ws173{word-spacing:0.126000px;}
.ws32{word-spacing:0.162000px;}
.ws164{word-spacing:0.168000px;}
.wsb6{word-spacing:0.210000px;}
.ws1a{word-spacing:0.270000px;}
.ws2f{word-spacing:0.324000px;}
.wse5{word-spacing:0.330000px;}
.ws17f{word-spacing:0.336000px;}
.wsd4{word-spacing:0.378000px;}
.ws14e{word-spacing:0.420000px;}
.ws15{word-spacing:0.432000px;}
.wsce{word-spacing:0.486000px;}
.wsc5{word-spacing:0.540000px;}
.ws198{word-spacing:0.588000px;}
.ws76{word-spacing:0.594000px;}
.wsc7{word-spacing:0.648000px;}
.ws17d{word-spacing:0.672000px;}
.ws9f{word-spacing:0.756000px;}
.ws199{word-spacing:0.798000px;}
.wsf{word-spacing:0.810000px;}
.ws51{word-spacing:0.864000px;}
.ws170{word-spacing:0.882000px;}
.wsd5{word-spacing:0.918000px;}
.ws14b{word-spacing:0.924000px;}
.ws151{word-spacing:0.966000px;}
.wsd1{word-spacing:0.972000px;}
.wsbc{word-spacing:1.026000px;}
.ws15a{word-spacing:1.050000px;}
.ws82{word-spacing:1.080000px;}
.ws110{word-spacing:1.134000px;}
.ws16{word-spacing:1.188000px;}
.ws15e{word-spacing:1.218000px;}
.ws14{word-spacing:1.242000px;}
.wsc4{word-spacing:1.296000px;}
.ws4c{word-spacing:1.350000px;}
.ws1a2{word-spacing:1.386000px;}
.ws7b{word-spacing:1.404000px;}
.ws17b{word-spacing:1.470000px;}
.ws118{word-spacing:1.512000px;}
.ws27{word-spacing:1.566000px;}
.ws61{word-spacing:1.620000px;}
.ws7c{word-spacing:1.674000px;}
.ws14f{word-spacing:1.722000px;}
.wsad{word-spacing:1.728000px;}
.ws152{word-spacing:1.764000px;}
.ws165{word-spacing:1.806000px;}
.wsa8{word-spacing:1.836000px;}
.ws40{word-spacing:1.890000px;}
.ws1b1{word-spacing:1.944000px;}
.ws15f{word-spacing:1.974000px;}
.ws18{word-spacing:1.998000px;}
.ws1a7{word-spacing:2.058000px;}
.ws91{word-spacing:2.106000px;}
.ws131{word-spacing:2.160000px;}
.wsd0{word-spacing:2.214000px;}
.wsc6{word-spacing:2.376000px;}
.wsa4{word-spacing:2.430000px;}
.ws161{word-spacing:2.436000px;}
.ws5f{word-spacing:2.538000px;}
.ws87{word-spacing:2.592000px;}
.ws5c{word-spacing:2.646000px;}
.ws68{word-spacing:2.808000px;}
.ws5a{word-spacing:2.851200px;}
.ws112{word-spacing:2.862000px;}
.ws10{word-spacing:2.916000px;}
.ws196{word-spacing:2.940000px;}
.ws77{word-spacing:2.970000px;}
.ws197{word-spacing:2.982000px;}
.ws107{word-spacing:3.024000px;}
.ws195{word-spacing:3.150000px;}
.ws3c{word-spacing:3.240000px;}
.ws126{word-spacing:3.294000px;}
.ws117{word-spacing:3.348000px;}
.ws150{word-spacing:3.444000px;}
.ws11{word-spacing:3.456000px;}
.ws7d{word-spacing:3.510000px;}
.ws2a{word-spacing:3.564000px;}
.ws156{word-spacing:3.570000px;}
.wsc3{word-spacing:3.618000px;}
.ws80{word-spacing:3.672000px;}
.wsd2{word-spacing:3.726000px;}
.wse1{word-spacing:3.780000px;}
.ws2c{word-spacing:3.834000px;}
.ws43{word-spacing:3.888000px;}
.ws1a1{word-spacing:3.948000px;}
.ws183{word-spacing:3.990000px;}
.ws25{word-spacing:4.050000px;}
.ws14a{word-spacing:4.074000px;}
.ws94{word-spacing:4.104000px;}
.ws1a6{word-spacing:4.116000px;}
.ws13a{word-spacing:4.158000px;}
.ws16f{word-spacing:4.200000px;}
.ws8c{word-spacing:4.212000px;}
.ws3d{word-spacing:4.266000px;}
.ws63{word-spacing:4.320000px;}
.wsdd{word-spacing:4.428000px;}
.ws79{word-spacing:4.482000px;}
.ws16e{word-spacing:4.494000px;}
.ws19a{word-spacing:4.578000px;}
.ws46{word-spacing:4.590000px;}
.wse{word-spacing:4.698000px;}
.ws8b{word-spacing:4.752000px;}
.ws84{word-spacing:4.806000px;}
.ws1a0{word-spacing:4.830000px;}
.ws11c{word-spacing:4.860000px;}
.ws193{word-spacing:4.872000px;}
.ws48{word-spacing:4.914000px;}
.ws181{word-spacing:4.956000px;}
.ws6c{word-spacing:4.968000px;}
.ws182{word-spacing:4.998000px;}
.ws12c{word-spacing:5.022000px;}
.wsa3{word-spacing:5.130000px;}
.ws42{word-spacing:5.238000px;}
.ws19f{word-spacing:5.250000px;}
.wsac{word-spacing:5.346000px;}
.ws1aa{word-spacing:5.418000px;}
.ws114{word-spacing:5.508000px;}
.wsdf{word-spacing:5.616000px;}
.ws17{word-spacing:5.778000px;}
.ws36{word-spacing:5.832000px;}
.ws129{word-spacing:5.940000px;}
.ws67{word-spacing:5.994000px;}
.wsbe{word-spacing:6.102000px;}
.ws4a{word-spacing:6.156000px;}
.ws65{word-spacing:6.264000px;}
.ws105{word-spacing:6.372000px;}
.ws10f{word-spacing:6.426000px;}
.ws19e{word-spacing:6.468000px;}
.ws8f{word-spacing:6.534000px;}
.ws4e{word-spacing:6.750000px;}
.ws137{word-spacing:6.804000px;}
.ws30{word-spacing:6.858000px;}
.ws180{word-spacing:6.930000px;}
.ws64{word-spacing:7.020000px;}
.ws8d{word-spacing:7.128000px;}
.ws174{word-spacing:7.182000px;}
.ws175{word-spacing:7.266000px;}
.ws44{word-spacing:7.290000px;}
.ws194{word-spacing:7.350000px;}
.ws116{word-spacing:7.398000px;}
.wsc0{word-spacing:7.506000px;}
.ws35{word-spacing:7.560000px;}
.ws167{word-spacing:7.686000px;}
.ws90{word-spacing:7.722000px;}
.ws52{word-spacing:7.776000px;}
.ws13{word-spacing:7.884000px;}
.wsa5{word-spacing:7.992000px;}
.wsa0{word-spacing:8.100000px;}
.ws16a{word-spacing:8.148000px;}
.wse4{word-spacing:8.154000px;}
.ws143{word-spacing:8.190000px;}
.wsa7{word-spacing:8.262000px;}
.ws37{word-spacing:8.316000px;}
.ws83{word-spacing:8.424000px;}
.ws93{word-spacing:8.478000px;}
.ws149{word-spacing:8.526000px;}
.ws92{word-spacing:8.532000px;}
.ws14d{word-spacing:8.610000px;}
.wse3{word-spacing:8.640000px;}
.wsa2{word-spacing:8.748000px;}
.ws168{word-spacing:8.778000px;}
.ws125{word-spacing:8.856000px;}
.ws7e{word-spacing:8.910000px;}
.ws47{word-spacing:8.964000px;}
.ws1a8{word-spacing:9.030000px;}
.wsca{word-spacing:9.072000px;}
.ws1a9{word-spacing:9.114000px;}
.ws6d{word-spacing:9.234000px;}
.ws169{word-spacing:9.282000px;}
.ws45{word-spacing:9.396000px;}
.ws14c{word-spacing:9.576000px;}
.ws29{word-spacing:9.612000px;}
.ws1e{word-spacing:9.702000px;}
.ws74{word-spacing:9.774000px;}
.wse2{word-spacing:9.936000px;}
.ws8a{word-spacing:9.990000px;}
.ws11e{word-spacing:10.044000px;}
.ws4f{word-spacing:10.152000px;}
.ws120{word-spacing:10.260000px;}
.ws4d{word-spacing:10.368000px;}
.wsbd{word-spacing:10.530000px;}
.ws18e{word-spacing:10.584000px;}
.ws108{word-spacing:10.746000px;}
.wsab{word-spacing:10.854000px;}
.ws2e{word-spacing:10.908000px;}
.ws33{word-spacing:11.124000px;}
.ws138{word-spacing:11.232000px;}
.ws38{word-spacing:11.286000px;}
.ws1b{word-spacing:11.340000px;}
.wsa9{word-spacing:11.394000px;}
.ws12{word-spacing:11.448000px;}
.ws16d{word-spacing:11.466000px;}
.ws139{word-spacing:11.502000px;}
.ws106{word-spacing:11.610000px;}
.ws5b{word-spacing:11.772000px;}
.ws56{word-spacing:11.880000px;}
.ws50{word-spacing:11.934000px;}
.ws2d{word-spacing:11.988000px;}
.ws8e{word-spacing:12.366000px;}
.ws6b{word-spacing:12.420000px;}
.ws15c{word-spacing:12.432000px;}
.ws15d{word-spacing:12.516000px;}
.ws192{word-spacing:12.600000px;}
.wsaa{word-spacing:12.636000px;}
.ws155{word-spacing:12.642000px;}
.ws144{word-spacing:13.020000px;}
.ws135{word-spacing:13.446000px;}
.ws89{word-spacing:13.500000px;}
.ws121{word-spacing:13.554000px;}
.ws19d{word-spacing:13.566000px;}
.ws11b{word-spacing:13.608000px;}
.ws122{word-spacing:13.878000px;}
.ws71{word-spacing:13.986000px;}
.ws66{word-spacing:14.094000px;}
.ws39{word-spacing:14.202000px;}
.ws12e{word-spacing:14.310000px;}
.ws72{word-spacing:14.472000px;}
.ws162{word-spacing:14.658000px;}
.ws86{word-spacing:14.850000px;}
.ws12d{word-spacing:14.958000px;}
.ws54{word-spacing:15.012000px;}
.ws163{word-spacing:15.204000px;}
.wsde{word-spacing:15.282000px;}
.ws85{word-spacing:15.336000px;}
.ws10d{word-spacing:15.660000px;}
.wscb{word-spacing:16.038000px;}
.ws115{word-spacing:16.200000px;}
.ws17a{word-spacing:16.422000px;}
.ws101{word-spacing:16.686000px;}
.wsa6{word-spacing:16.740000px;}
.wsa1{word-spacing:16.956000px;}
.ws109{word-spacing:17.010000px;}
.ws41{word-spacing:17.118000px;}
.ws78{word-spacing:17.226000px;}
.wscc{word-spacing:17.442000px;}
.ws73{word-spacing:17.766000px;}
.wsc9{word-spacing:17.874000px;}
.ws6f{word-spacing:17.928000px;}
.ws119{word-spacing:18.306000px;}
.ws6a{word-spacing:18.684000px;}
.wsbf{word-spacing:18.792000px;}
.ws111{word-spacing:19.062000px;}
.ws4b{word-spacing:19.116000px;}
.ws157{word-spacing:19.656000px;}
.ws3e{word-spacing:19.872000px;}
.ws62{word-spacing:19.926000px;}
.ws158{word-spacing:20.118000px;}
.ws113{word-spacing:20.142000px;}
.wscd{word-spacing:20.628000px;}
.ws31{word-spacing:20.682000px;}
.wse0{word-spacing:20.844000px;}
.ws11d{word-spacing:20.898000px;}
.ws10c{word-spacing:21.546000px;}
.ws70{word-spacing:21.978000px;}
.ws136{word-spacing:22.626000px;}
.ws5e{word-spacing:22.680000px;}
.ws134{word-spacing:22.842000px;}
.ws3b{word-spacing:23.004000px;}
.ws28{word-spacing:23.112000px;}
.ws12a{word-spacing:23.166000px;}
.wscf{word-spacing:23.220000px;}
.ws132{word-spacing:23.976000px;}
.ws12b{word-spacing:24.084000px;}
.ws88{word-spacing:24.354000px;}
.ws11a{word-spacing:24.894000px;}
.ws176{word-spacing:25.578000px;}
.ws166{word-spacing:26.082000px;}
.ws177{word-spacing:26.208000px;}
.ws96{word-spacing:26.244000px;}
.ws1a5{word-spacing:26.376000px;}
.ws95{word-spacing:26.460000px;}
.ws1a4{word-spacing:26.628000px;}
.ws160{word-spacing:27.258000px;}
.ws60{word-spacing:27.594000px;}
.ws12f{word-spacing:28.836000px;}
.wsc1{word-spacing:29.322000px;}
.ws3f{word-spacing:30.348000px;}
.ws123{word-spacing:30.672000px;}
.ws10a{word-spacing:31.320000px;}
.ws102{word-spacing:31.752000px;}
.ws1a3{word-spacing:32.130000px;}
.ws18f{word-spacing:32.886000px;}
.ws190{word-spacing:33.474000px;}
.ws128{word-spacing:34.992000px;}
.ws10e{word-spacing:35.478000px;}
.ws184{word-spacing:35.742000px;}
.ws75{word-spacing:35.748000px;}
.ws185{word-spacing:36.078000px;}
.wsc2{word-spacing:36.342000px;}
.ws130{word-spacing:36.990000px;}
.ws7a{word-spacing:43.146000px;}
.ws153{word-spacing:48.468000px;}
.ws154{word-spacing:49.308000px;}
.ws171{word-spacing:51.996000px;}
.ws172{word-spacing:52.458000px;}
.wsdc{word-spacing:65.670600px;}
.wsda{word-spacing:69.918600px;}
.wsdb{word-spacing:70.122600px;}
.wsd9{word-spacing:123.004200px;}
.wsf8{word-spacing:160.090200px;}
.wseb{word-spacing:180.250200px;}
.ws9b{word-spacing:224.363400px;}
.ws9d{word-spacing:234.443400px;}
.ws9c{word-spacing:244.523400px;}
.wsfb{word-spacing:250.445400px;}
.wsee{word-spacing:251.830800px;}
.wsf7{word-spacing:264.830400px;}
.wsf0{word-spacing:266.215800px;}
.wsea{word-spacing:282.113400px;}
.wsff{word-spacing:290.324400px;}
.wsf2{word-spacing:327.639600px;}
.wsed{word-spacing:329.025000px;}
.wsf1{word-spacing:340.045200px;}
.wsf3{word-spacing:340.045800px;}
.wsec{word-spacing:340.466400px;}
.wsfa{word-spacing:341.603400px;}
.wsf9{word-spacing:341.852400px;}
.wsf4{word-spacing:342.024600px;}
.wsf6{word-spacing:342.990600px;}
.wsf5{word-spacing:354.430800px;}
.wsef{word-spacing:354.851400px;}
.wsfe{word-spacing:356.236800px;}
.wsfd{word-spacing:380.344800px;}
.ws9a{word-spacing:572.291400px;}
.ws1ae{word-spacing:753.657600px;}
.wse6{word-spacing:1024.511400px;}
.ws97{word-spacing:1024.532400px;}
.wsb8{word-spacing:1024.679400px;}
.ws20{word-spacing:1025.246400px;}
.ws57{word-spacing:1025.351400px;}
.wsb4{word-spacing:1025.435400px;}
.wsd6{word-spacing:1026.149400px;}
.ws0{word-spacing:1026.989400px;}
.ws186{word-spacing:1028.102400px;}
.ws1ab{word-spacing:1028.207400px;}
.ws13b{word-spacing:1029.845400px;}
.wse7{word-spacing:1168.319400px;}
.ws98{word-spacing:1168.340400px;}
.wsb9{word-spacing:1168.487400px;}
.ws21{word-spacing:1169.054400px;}
.ws58{word-spacing:1169.159400px;}
.wsb5{word-spacing:1169.243400px;}
.wsd7{word-spacing:1169.957400px;}
.ws1{word-spacing:1170.797400px;}
.ws187{word-spacing:1171.910400px;}
.ws1ac{word-spacing:1172.015400px;}
.ws13c{word-spacing:1173.653400px;}
.wsfc{word-spacing:1540.539600px;}
._71{margin-left:-488.388600px;}
._f{margin-left:-31.254600px;}
._e{margin-left:-30.089400px;}
._c{margin-left:-23.949924px;}
._3b{margin-left:-20.628000px;}
._15{margin-left:-16.254000px;}
._7{margin-left:-10.878000px;}
._3{margin-left:-9.534480px;}
._5{margin-left:-7.439340px;}
._1{margin-left:-5.742000px;}
._a{margin-left:-4.340714px;}
._2{margin-left:-3.306660px;}
._0{margin-left:-1.986600px;}
._6{width:1.164600px;}
._9{width:2.526600px;}
._d{width:3.583145px;}
._13{width:5.289306px;}
._14{width:6.655801px;}
._4{width:8.865300px;}
._37{width:10.155314px;}
._b{width:11.404800px;}
._12{width:14.606376px;}
._11{width:18.658346px;}
._60{width:20.770231px;}
._10{width:22.257147px;}
._61{width:23.938706px;}
._23{width:32.466000px;}
._18{width:42.000000px;}
._70{width:64.024800px;}
._46{width:79.284600px;}
._41{width:83.737200px;}
._3c{width:87.376200px;}
._3d{width:94.384200px;}
._44{width:101.785200px;}
._45{width:103.284600px;}
._3f{width:105.816600px;}
._40{width:107.736600px;}
._6d{width:114.496200px;}
._47{width:118.284600px;}
._42{width:122.736600px;}
._6f{width:141.618914px;}
._58{width:169.624200px;}
._4c{width:189.784200px;}
._68{width:206.254800px;}
._67{width:229.957514px;}
._43{width:236.779800px;}
._3e{width:242.156400px;}
._6e{width:244.630200px;}
._28{width:254.057400px;}
._1c{width:262.460400px;}
._1f{width:272.540400px;}
._5b{width:274.318800px;}
._1b{width:277.023600px;}
._6c{width:278.818200px;}
._2b{width:282.620400px;}
._1e{width:287.103600px;}
._27{width:292.700400px;}
._65{width:294.664800px;}
._2a{width:297.184200px;}
._26{width:307.264200px;}
._1a{width:322.776600px;}
._25{width:342.936000px;}
._62{width:346.471800px;}
._55{width:351.512400px;}
._4e{width:352.944000px;}
._53{width:365.396400px;}
._4a{width:374.103000px;}
._5f{width:377.052000px;}
._49{width:389.035800px;}
._6b{width:397.216200px;}
._16{width:406.182600px;}
._6a{width:407.686800px;}
._69{width:411.832200px;}
._5d{width:447.222600px;}
._5c{width:463.177200px;}
._66{width:488.388600px;}
._22{width:500.095800px;}
._24{width:502.233480px;}
._57{width:518.184000px;}
._59{width:534.228600px;}
._5a{width:541.061400px;}
._21{width:588.974400px;}
._4d{width:601.932000px;}
._29{width:612.483000px;}
._54{width:631.837200px;}
._51{width:641.031600px;}
._36{width:642.399600px;}
._56{width:644.937600px;}
._17{width:659.974514px;}
._38{width:663.138000px;}
._2d{width:689.288400px;}
._32{width:717.229800px;}
._2e{width:749.852400px;}
._39{width:762.690000px;}
._52{width:766.079400px;}
._35{width:769.870514px;}
._19{width:773.792400px;}
._50{width:775.347600px;}
._4f{width:776.838000px;}
._2f{width:781.323000px;}
._33{width:796.514400px;}
._20{width:807.126600px;}
._34{width:808.988400px;}
._1d{width:812.527800px;}
._30{width:833.012400px;}
._2c{width:836.551800px;}
._31{width:840.572400px;}
._63{width:847.026600px;}
._4b{width:857.880000px;}
._64{width:908.760600px;}
._48{width:1173.074400px;}
._3a{width:1184.159400px;}
._5e{width:1525.965600px;}
._8{width:2060.008200px;}
.fc4{color:rgb(43,43,42);}
.fc3{color:rgb(126,127,127);}
.fc2{color:rgb(27,28,27);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(29,181,195);}
.fc0{color:rgb(112,111,112);}
.fs4{font-size:24.780000px;}
.fsb{font-size:31.860000px;}
.fs6{font-size:33.000000px;}
.fs3{font-size:38.940000px;}
.fsa{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.149650px;}
.y8b{bottom:104.812350px;}
.y2f{bottom:122.812350px;}
.y2e{bottom:140.812350px;}
.y173{bottom:142.312350px;}
.y138{bottom:152.812350px;}
.y172{bottom:154.312350px;}
.y2d{bottom:158.812350px;}
.yc8{bottom:162.366150px;}
.y171{bottom:166.312350px;}
.y137{bottom:169.312350px;}
.y2c{bottom:176.812350px;}
.y136{bottom:181.312350px;}
.y170{bottom:182.812350px;}
.yc7{bottom:183.281850px;}
.y135{bottom:193.312350px;}
.y2b{bottom:194.812350px;}
.y16f{bottom:199.312350px;}
.yc6{bottom:201.281850px;}
.y134{bottom:209.812350px;}
.y16e{bottom:211.312350px;}
.y2a{bottom:212.812350px;}
.y133{bottom:221.812350px;}
.y16d{bottom:223.312350px;}
.yc5{bottom:223.372050px;}
.y29{bottom:230.812350px;}
.y16c{bottom:235.312350px;}
.y132{bottom:239.812350px;}
.yc4{bottom:241.372050px;}
.y28{bottom:248.812350px;}
.y131{bottom:251.812350px;}
.y16b{bottom:253.312350px;}
.yc3{bottom:263.462100px;}
.y130{bottom:263.812350px;}
.y16a{bottom:265.312350px;}
.y27{bottom:266.812350px;}
.y169{bottom:277.312350px;}
.yc2{bottom:281.462100px;}
.y12f{bottom:281.812350px;}
.y26{bottom:284.812350px;}
.y12e{bottom:293.812350px;}
.y168{bottom:295.312350px;}
.y8a{bottom:302.812350px;}
.yc1{bottom:303.552150px;}
.y12d{bottom:305.812350px;}
.y167{bottom:307.312350px;}
.y166{bottom:319.312350px;}
.y25{bottom:320.812350px;}
.yc0{bottom:321.552150px;}
.y12c{bottom:323.812350px;}
.y165{bottom:331.312350px;}
.y12b{bottom:335.812350px;}
.y89{bottom:338.812350px;}
.ybf{bottom:343.642200px;}
.yc9{bottom:343.672350px;}
.y12a{bottom:347.812350px;}
.y164{bottom:349.312350px;}
.y88{bottom:356.812350px;}
.y163{bottom:361.312350px;}
.ybe{bottom:361.642200px;}
.y129{bottom:365.812350px;}
.y162{bottom:373.312350px;}
.y87{bottom:374.812350px;}
.y24{bottom:377.043150px;}
.y128{bottom:377.812350px;}
.ybd{bottom:383.732250px;}
.y161{bottom:385.312350px;}
.y127{bottom:389.812350px;}
.y86{bottom:392.812350px;}
.y23{bottom:393.543150px;}
.ybc{bottom:401.732250px;}
.y126{bottom:401.812350px;}
.y160{bottom:403.312350px;}
.y85{bottom:410.812350px;}
.y22{bottom:414.543150px;}
.y15f{bottom:415.312350px;}
.y125{bottom:419.812350px;}
.ybb{bottom:423.822300px;}
.y15e{bottom:427.312350px;}
.y58{bottom:427.553550px;}
.y84{bottom:428.812350px;}
.y124{bottom:431.812350px;}
.y57{bottom:441.053550px;}
.yba{bottom:441.822300px;}
.y123{bottom:443.812350px;}
.y15d{bottom:445.312350px;}
.y83{bottom:446.812350px;}
.y21{bottom:452.043150px;}
.y56{bottom:454.553550px;}
.y15c{bottom:457.312350px;}
.y122{bottom:461.812350px;}
.yb9{bottom:463.912500px;}
.y82{bottom:464.812350px;}
.y55{bottom:468.053550px;}
.y15b{bottom:469.312350px;}
.y20{bottom:470.043150px;}
.y121{bottom:473.812350px;}
.yd3{bottom:476.782950px;}
.y54{bottom:481.553550px;}
.y81{bottom:482.812350px;}
.yb8{bottom:486.002550px;}
.y15a{bottom:487.312350px;}
.y1f{bottom:488.043150px;}
.y120{bottom:491.812350px;}
.y53{bottom:495.053550px;}
.yd2{bottom:497.698800px;}
.y159{bottom:499.312350px;}
.y80{bottom:500.812350px;}
.y11f{bottom:503.812350px;}
.y1e{bottom:506.043150px;}
.yb7{bottom:508.092600px;}
.y52{bottom:508.553550px;}
.y158{bottom:511.312350px;}
.y11e{bottom:515.812350px;}
.y7f{bottom:518.812350px;}
.y1d2{bottom:518.873400px;}
.yd1{bottom:519.788850px;}
.y51{bottom:522.053550px;}
.y1d{bottom:524.043150px;}
.yb6{bottom:526.092600px;}
.y157{bottom:529.312350px;}
.yb5{bottom:530.182650px;}
.yf1{bottom:533.752500px;}
.y11d{bottom:533.812350px;}
.y50{bottom:535.553550px;}
.y7e{bottom:536.812350px;}
.y1d1{bottom:536.873400px;}
.y156{bottom:541.312350px;}
.yd0{bottom:541.879050px;}
.y1c{bottom:542.043150px;}
.y11c{bottom:545.812350px;}
.yf0{bottom:547.252500px;}
.yb4{bottom:548.182650px;}
.y4f{bottom:549.053550px;}
.y155{bottom:553.312350px;}
.y7d{bottom:554.812350px;}
.ya6{bottom:555.347850px;}
.y1d0{bottom:558.963450px;}
.y1b{bottom:560.043150px;}
.yef{bottom:560.752500px;}
.y4e{bottom:562.553550px;}
.y11b{bottom:563.812350px;}
.ycf{bottom:563.969100px;}
.yb3{bottom:570.272850px;}
.y154{bottom:571.312350px;}
.y7c{bottom:572.812350px;}
.yee{bottom:574.252500px;}
.y11a{bottom:575.812350px;}
.y4d{bottom:576.053550px;}
.ya5{bottom:577.438050px;}
.y1a{bottom:578.043150px;}
.y1cf{bottom:581.053650px;}
.y153{bottom:583.312350px;}
.yce{bottom:586.059150px;}
.yed{bottom:587.752500px;}
.y119{bottom:587.812350px;}
.yb2{bottom:588.272850px;}
.y4c{bottom:589.553550px;}
.y7b{bottom:590.812350px;}
.yf3{bottom:594.322500px;}
.y152{bottom:595.312350px;}
.y19{bottom:596.043150px;}
.ya4{bottom:599.528100px;}
.yae{bottom:600.543000px;}
.yec{bottom:601.252500px;}
.y1ce{bottom:603.143700px;}
.y4b{bottom:603.310050px;}
.y1be{bottom:605.574150px;}
.y19a{bottom:605.724150px;}
.y118{bottom:605.812350px;}
.yf2{bottom:607.822500px;}
.y7a{bottom:608.812350px;}
.yb1{bottom:610.362900px;}
.y151{bottom:613.312350px;}
.y18{bottom:614.043150px;}
.ycd{bottom:614.100150px;}
.yeb{bottom:614.752500px;}
.y1bd{bottom:617.574150px;}
.y199{bottom:617.724150px;}
.y117{bottom:617.812350px;}
.yad{bottom:618.543000px;}
.ya3{bottom:621.618150px;}
.y4a{bottom:624.379050px;}
.y1cd{bottom:625.233750px;}
.y150{bottom:625.312350px;}
.y79{bottom:626.812350px;}
.ycc{bottom:627.600150px;}
.yea{bottom:628.252500px;}
.y1bc{bottom:629.574150px;}
.ye9{bottom:631.699650px;}
.y17{bottom:632.043150px;}
.yb0{bottom:632.452950px;}
.y198{bottom:634.224150px;}
.y116{bottom:635.812350px;}
.yac{bottom:636.543000px;}
.y14f{bottom:637.312350px;}
.y49{bottom:637.879050px;}
.ya2{bottom:643.708350px;}
.y78{bottom:644.812350px;}
.ye8{bottom:645.199650px;}
.y197{bottom:646.224150px;}
.y1cc{bottom:647.323950px;}
.y115{bottom:647.812350px;}
.y1bb{bottom:649.074150px;}
.y14e{bottom:649.312350px;}
.y16{bottom:650.043150px;}
.yaf{bottom:650.452950px;}
.y48{bottom:651.379050px;}
.yab{bottom:654.543000px;}
.y114{bottom:659.812350px;}
.y1ba{bottom:661.074150px;}
.y77{bottom:662.812350px;}
.y196{bottom:663.774150px;}
.y47{bottom:664.879050px;}
.ya1{bottom:665.798400px;}
.ye7{bottom:666.115500px;}
.y14d{bottom:667.312350px;}
.y15{bottom:668.043150px;}
.y1cb{bottom:669.414000px;}
.y113{bottom:671.812350px;}
.yaa{bottom:672.543000px;}
.y1b9{bottom:673.074150px;}
.y195{bottom:675.774150px;}
.y46{bottom:678.379050px;}
.y14c{bottom:679.312350px;}
.y76{bottom:680.812350px;}
.y14{bottom:686.043150px;}
.ya0{bottom:687.888450px;}
.ye6{bottom:688.447200px;}
.y112{bottom:689.812350px;}
.y14b{bottom:691.312350px;}
.y1b8{bottom:691.374150px;}
.y1ca{bottom:691.504050px;}
.y45{bottom:691.879050px;}
.y194{bottom:693.324150px;}
.ya9{bottom:694.633050px;}
.y75{bottom:698.812350px;}
.ycb{bottom:698.812500px;}
.y111{bottom:701.812350px;}
.y14a{bottom:703.312350px;}
.y1b7{bottom:703.374150px;}
.y13{bottom:704.043150px;}
.y193{bottom:705.324150px;}
.y44{bottom:705.379050px;}
.y9f{bottom:709.978500px;}
.ye5{bottom:710.537250px;}
.yca{bottom:712.312500px;}
.y1c9{bottom:713.594100px;}
.y110{bottom:713.812350px;}
.y74{bottom:716.812350px;}
.y192{bottom:717.324150px;}
.y43{bottom:719.135400px;}
.y149{bottom:721.312350px;}
.y1b6{bottom:721.674150px;}
.y12{bottom:722.043150px;}
.ya8{bottom:722.673750px;}
.y10f{bottom:725.812350px;}
.y9e{bottom:732.068550px;}
.ye4{bottom:732.627300px;}
.y148{bottom:733.312350px;}
.y1b5{bottom:733.674150px;}
.y73{bottom:734.812350px;}
.y191{bottom:734.874150px;}
.y1c8{bottom:735.684150px;}
.y11{bottom:740.043150px;}
.y42{bottom:740.204550px;}
.y10e{bottom:743.812350px;}
.y147{bottom:745.312350px;}
.y1b4{bottom:745.674150px;}
.y190{bottom:746.874150px;}
.y72{bottom:752.812350px;}
.y41{bottom:753.704550px;}
.y9d{bottom:754.158750px;}
.ye3{bottom:754.717500px;}
.y10d{bottom:755.812350px;}
.y1b3{bottom:757.674150px;}
.y1c7{bottom:757.774350px;}
.y10{bottom:758.043150px;}
.y146{bottom:763.312350px;}
.y18f{bottom:764.424150px;}
.y40{bottom:767.204550px;}
.y10c{bottom:767.812350px;}
.y71{bottom:770.812350px;}
.y145{bottom:775.312350px;}
.y1b2{bottom:775.974000px;}
.yf{bottom:776.043150px;}
.y9c{bottom:776.248800px;}
.y18e{bottom:776.424150px;}
.ye2{bottom:776.807400px;}
.y1c6{bottom:779.864400px;}
.y10b{bottom:785.812350px;}
.y144{bottom:787.312350px;}
.y1b1{bottom:787.974000px;}
.y3f{bottom:788.204550px;}
.y18d{bottom:788.424150px;}
.y70{bottom:788.812350px;}
.ye{bottom:794.043150px;}
.y10a{bottom:797.812350px;}
.y9b{bottom:798.338850px;}
.ye1{bottom:798.897600px;}
.y143{bottom:799.312350px;}
.y3e{bottom:801.704550px;}
.y1c5{bottom:801.954450px;}
.y18c{bottom:805.974000px;}
.y1b0{bottom:806.274150px;}
.y6f{bottom:806.812350px;}
.y109{bottom:809.812350px;}
.y3d{bottom:815.461050px;}
.y142{bottom:817.312350px;}
.y18b{bottom:817.974000px;}
.y1af{bottom:818.274150px;}
.ya7{bottom:818.504550px;}
.y9a{bottom:820.428900px;}
.ye0{bottom:820.987650px;}
.y1c4{bottom:824.044500px;}
.y6e{bottom:824.812350px;}
.y108{bottom:827.812350px;}
.y141{bottom:829.312350px;}
.y18a{bottom:829.974000px;}
.y1ae{bottom:830.274150px;}
.y3c{bottom:836.529900px;}
.yd{bottom:837.976650px;}
.y107{bottom:839.812350px;}
.y140{bottom:841.312350px;}
.y189{bottom:841.974000px;}
.y99{bottom:842.519100px;}
.y6d{bottom:842.812350px;}
.ydf{bottom:843.077700px;}
.y1c3{bottom:846.134700px;}
.y1ad{bottom:848.574150px;}
.y3b{bottom:850.029900px;}
.yc{bottom:851.476650px;}
.y106{bottom:857.812350px;}
.y13f{bottom:859.312350px;}
.y188{bottom:859.524150px;}
.y1ac{bottom:860.574150px;}
.y6c{bottom:860.812350px;}
.y3a{bottom:863.529900px;}
.y98{bottom:864.609150px;}
.yde{bottom:865.409400px;}
.y1c2{bottom:868.224750px;}
.yb{bottom:868.756650px;}
.y105{bottom:869.812350px;}
.y13e{bottom:871.312350px;}
.y187{bottom:871.524150px;}
.y1ab{bottom:872.574150px;}
.y39{bottom:877.029900px;}
.y6b{bottom:878.812350px;}
.y104{bottom:881.812350px;}
.y13d{bottom:883.312350px;}
.y97{bottom:886.699200px;}
.ydd{bottom:887.741250px;}
.y186{bottom:889.074150px;}
.y9{bottom:889.860150px;}
.y38{bottom:890.529900px;}
.y1aa{bottom:890.874150px;}
.y13c{bottom:895.312350px;}
.ya{bottom:895.800150px;}
.y6a{bottom:896.812350px;}
.y103{bottom:899.812350px;}
.y185{bottom:901.074150px;}
.y1a9{bottom:902.874150px;}
.y37{bottom:904.029900px;}
.y96{bottom:908.789400px;}
.ydc{bottom:909.831150px;}
.y102{bottom:911.812350px;}
.y7{bottom:912.360150px;}
.y184{bottom:913.074150px;}
.y69{bottom:914.812350px;}
.y36{bottom:917.529900px;}
.y8{bottom:918.300150px;}
.y1a8{bottom:921.174150px;}
.y101{bottom:923.812350px;}
.y183{bottom:930.624150px;}
.y95{bottom:930.879300px;}
.y35{bottom:931.029900px;}
.ydb{bottom:931.921350px;}
.y68{bottom:932.812350px;}
.y1a7{bottom:933.174150px;}
.y5{bottom:934.860150px;}
.y13b{bottom:935.812350px;}
.y1c1{bottom:939.681450px;}
.y6{bottom:940.800150px;}
.y100{bottom:941.812350px;}
.y182{bottom:942.624150px;}
.y34{bottom:944.786550px;}
.y1a6{bottom:945.174150px;}
.y13a{bottom:947.812350px;}
.y67{bottom:950.812350px;}
.y94{bottom:952.969500px;}
.yff{bottom:953.812350px;}
.yda{bottom:954.253050px;}
.y1a5{bottom:957.174150px;}
.y181{bottom:960.174150px;}
.y1c0{bottom:961.771500px;}
.yfe{bottom:965.812350px;}
.y33{bottom:965.855550px;}
.y66{bottom:968.812350px;}
.y180{bottom:972.174150px;}
.y93{bottom:975.059550px;}
.y1a4{bottom:975.474150px;}
.yd9{bottom:976.584750px;}
.y1bf{bottom:976.771500px;}
.y4{bottom:976.999650px;}
.y139{bottom:977.812350px;}
.y32{bottom:979.355550px;}
.yfd{bottom:983.812350px;}
.y17f{bottom:984.174150px;}
.y65{bottom:986.812350px;}
.y1a3{bottom:987.474150px;}
.y31{bottom:993.111900px;}
.yfc{bottom:995.812350px;}
.y92{bottom:997.149600px;}
.yd8{bottom:998.916450px;}
.y1a2{bottom:999.474150px;}
.y17e{bottom:1001.724150px;}
.y64{bottom:1004.812350px;}
.yfb{bottom:1007.812350px;}
.y1a1{bottom:1011.474150px;}
.y17d{bottom:1013.724150px;}
.y30{bottom:1014.181050px;}
.y3{bottom:1014.499650px;}
.y91{bottom:1019.239800px;}
.yfa{bottom:1019.812350px;}
.yd7{bottom:1021.248150px;}
.y63{bottom:1022.812350px;}
.y17c{bottom:1025.724150px;}
.y1a0{bottom:1029.774150px;}
.yf9{bottom:1037.812350px;}
.y62{bottom:1040.812350px;}
.y90{bottom:1041.329700px;}
.y19f{bottom:1041.774150px;}
.y17b{bottom:1043.274150px;}
.yd6{bottom:1043.579700px;}
.yf8{bottom:1049.812350px;}
.y2{bottom:1051.999650px;}
.y19e{bottom:1053.774150px;}
.y17a{bottom:1055.274150px;}
.y61{bottom:1058.812350px;}
.yf7{bottom:1061.812350px;}
.y8f{bottom:1063.419900px;}
.yd5{bottom:1065.669900px;}
.y179{bottom:1067.274150px;}
.y19d{bottom:1072.074150px;}
.yf6{bottom:1073.812350px;}
.y60{bottom:1076.812350px;}
.y19c{bottom:1084.074150px;}
.y178{bottom:1084.824150px;}
.y8e{bottom:1085.509950px;}
.yd4{bottom:1088.001600px;}
.yf5{bottom:1091.812350px;}
.y5f{bottom:1094.812350px;}
.y19b{bottom:1096.074150px;}
.y177{bottom:1096.824150px;}
.yf4{bottom:1103.812350px;}
.y8d{bottom:1110.091650px;}
.y5e{bottom:1112.812350px;}
.y176{bottom:1114.374150px;}
.y175{bottom:1126.374150px;}
.y5d{bottom:1130.812350px;}
.y8c{bottom:1138.132500px;}
.y174{bottom:1138.374150px;}
.y5b{bottom:1175.303400px;}
.y5a{bottom:1188.803400px;}
.y5c{bottom:1202.272050px;}
.y59{bottom:1202.303400px;}
.h7{height:18.386760px;}
.hb{height:24.453000px;}
.h17{height:25.838460px;}
.h18{height:29.526000px;}
.hf{height:31.122000px;}
.h9{height:31.164000px;}
.h15{height:31.629000px;}
.h8{height:33.506760px;}
.h12{height:34.062000px;}
.h6{height:34.345080px;}
.h5{height:34.452000px;}
.h19{height:35.028600px;}
.hc{height:35.568000px;}
.h2{height:37.044000px;}
.ha{height:40.068000px;}
.he{height:43.794000px;}
.h16{height:45.278460px;}
.h11{height:47.628000px;}
.h4{height:58.212000px;}
.h10{height:63.504000px;}
.hd{height:71.442000px;}
.h3{height:111.132000px;}
.h13{height:892.914000px;}
.h14{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:53.149650px;}
.x1{left:74.409450px;}
.x9{left:82.518000px;}
.x16{left:93.534450px;}
.xb{left:95.653950px;}
.x10{left:104.623500px;}
.x11{left:112.039350px;}
.x19{left:222.295950px;}
.x12{left:310.040700px;}
.x1a{left:316.996200px;}
.xd{left:319.599900px;}
.x2{left:332.503950px;}
.x8{left:353.763450px;}
.xc{left:457.071600px;}
.x18{left:466.086600px;}
.x17{left:476.211600px;}
.x3{left:478.521450px;}
.x5{left:492.942750px;}
.x7{left:513.138750px;}
.x14{left:630.097500px;}
.x15{left:633.998400px;}
.xa{left:661.241850px;}
.x4{left:662.645250px;}
.x6{left:672.117600px;}
.x13{left:806.170350px;}
.xe{left:1202.272050px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v5{vertical-align:-17.280000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v4{vertical-align:17.280000pt;}
.ls35{letter-spacing:-2.613333pt;}
.ls1d{letter-spacing:-2.112000pt;}
.ls2c{letter-spacing:-1.306667pt;}
.ls15{letter-spacing:-1.296000pt;}
.ls29{letter-spacing:-1.200000pt;}
.ls36{letter-spacing:-1.194667pt;}
.ls2f{letter-spacing:-1.157333pt;}
.ls9{letter-spacing:-1.152000pt;}
.ls3{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-1.008000pt;}
.ls2b{letter-spacing:-0.933333pt;}
.lsd{letter-spacing:-0.864000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls2e{letter-spacing:-0.709333pt;}
.lsa{letter-spacing:-0.672000pt;}
.ls16{letter-spacing:-0.634667pt;}
.lsf{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.485333pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.373333pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls30{letter-spacing:-0.298667pt;}
.ls6{letter-spacing:-0.293333pt;}
.ls26{letter-spacing:-0.288000pt;}
.ls2a{letter-spacing:-0.261333pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.186667pt;}
.ls2d{letter-spacing:-0.149333pt;}
.ls1a{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.088000pt;}
.ls33{letter-spacing:-0.074667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.048000pt;}
.ls39{letter-spacing:0.112000pt;}
.ls22{letter-spacing:0.144000pt;}
.ls19{letter-spacing:0.186667pt;}
.ls17{letter-spacing:0.224000pt;}
.ls25{letter-spacing:0.239164pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.264000pt;}
.ls32{letter-spacing:0.373333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.560000pt;}
.ls27{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.784000pt;}
.ls31{letter-spacing:0.933333pt;}
.ls2{letter-spacing:1.866667pt;}
.ls1f{letter-spacing:119.674560pt;}
.ls23{letter-spacing:175.284267pt;}
.ls13{letter-spacing:256.284800pt;}
.ls14{letter-spacing:256.285333pt;}
.ls12{letter-spacing:281.674133pt;}
.ls11{letter-spacing:294.619733pt;}
.ls10{letter-spacing:335.288000pt;}
.ls38{letter-spacing:434.123200pt;}
.ls24{letter-spacing:1359.774400pt;}
.ws1b0{word-spacing:-442.597867pt;}
.ws124{word-spacing:-18.504000pt;}
.ws6{word-spacing:-13.008000pt;}
.wse9{word-spacing:-12.336000pt;}
.wse8{word-spacing:-11.376000pt;}
.wsd8{word-spacing:-11.136000pt;}
.ws59{word-spacing:-10.992000pt;}
.ws23{word-spacing:-10.896000pt;}
.ws22{word-spacing:-10.656000pt;}
.ws1ad{word-spacing:-10.176000pt;}
.wsba{word-spacing:-10.128000pt;}
.wsb{word-spacing:-10.042667pt;}
.ws2{word-spacing:-9.594667pt;}
.ws189{word-spacing:-9.482667pt;}
.ws18a{word-spacing:-9.408000pt;}
.ws1f{word-spacing:-9.109333pt;}
.ws99{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.895627pt;}
.ws18b{word-spacing:-8.848000pt;}
.wsb0{word-spacing:-8.698667pt;}
.wsb1{word-spacing:-8.661333pt;}
.ws1af{word-spacing:-8.586667pt;}
.ws13e{word-spacing:-8.549333pt;}
.wsd{word-spacing:-8.474667pt;}
.wsb2{word-spacing:-8.362667pt;}
.ws13f{word-spacing:-8.288000pt;}
.ws142{word-spacing:-8.250667pt;}
.ws13d{word-spacing:-8.213333pt;}
.ws141{word-spacing:-8.176000pt;}
.ws9e{word-spacing:-8.138667pt;}
.ws140{word-spacing:-8.064000pt;}
.wsb3{word-spacing:-8.026667pt;}
.wsae{word-spacing:-7.840000pt;}
.wsaf{word-spacing:-7.802667pt;}
.wsa{word-spacing:-7.392000pt;}
.ws18c{word-spacing:-7.280000pt;}
.ws7{word-spacing:-7.128000pt;}
.ws9{word-spacing:-7.040000pt;}
.ws8{word-spacing:-6.834667pt;}
.wsbb{word-spacing:-6.428640pt;}
.ws188{word-spacing:-5.936000pt;}
.ws4{word-spacing:-5.925173pt;}
.ws7f{word-spacing:-1.824000pt;}
.ws6e{word-spacing:-1.632000pt;}
.wsd3{word-spacing:-1.392000pt;}
.ws16b{word-spacing:-1.269333pt;}
.ws2b{word-spacing:-1.200000pt;}
.ws19{word-spacing:-1.104000pt;}
.ws26{word-spacing:-1.056000pt;}
.ws55{word-spacing:-1.008000pt;}
.ws49{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.933333pt;}
.wsc8{word-spacing:-0.912000pt;}
.ws16c{word-spacing:-0.896000pt;}
.ws104{word-spacing:-0.864000pt;}
.ws145{word-spacing:-0.858667pt;}
.ws133{word-spacing:-0.816000pt;}
.ws179{word-spacing:-0.784000pt;}
.ws11f{word-spacing:-0.768000pt;}
.ws17e{word-spacing:-0.709333pt;}
.ws34{word-spacing:-0.672000pt;}
.ws147{word-spacing:-0.597333pt;}
.ws10b{word-spacing:-0.576000pt;}
.ws146{word-spacing:-0.560000pt;}
.ws18d{word-spacing:-0.522667pt;}
.ws159{word-spacing:-0.485333pt;}
.ws69{word-spacing:-0.480000pt;}
.ws19c{word-spacing:-0.448000pt;}
.ws103{word-spacing:-0.432000pt;}
.ws1d{word-spacing:-0.373333pt;}
.ws1b2{word-spacing:-0.336000pt;}
.ws178{word-spacing:-0.298667pt;}
.ws5d{word-spacing:-0.288000pt;}
.ws127{word-spacing:-0.240000pt;}
.ws3a{word-spacing:-0.192000pt;}
.ws191{word-spacing:-0.186667pt;}
.ws53{word-spacing:-0.144000pt;}
.ws148{word-spacing:-0.112000pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws19b{word-spacing:-0.074667pt;}
.ws5{word-spacing:-0.048000pt;}
.wsb7{word-spacing:-0.037333pt;}
.ws100{word-spacing:-0.034667pt;}
.wsc{word-spacing:0.000000pt;}
.ws17c{word-spacing:0.037333pt;}
.ws15b{word-spacing:0.074667pt;}
.ws81{word-spacing:0.096000pt;}
.ws173{word-spacing:0.112000pt;}
.ws32{word-spacing:0.144000pt;}
.ws164{word-spacing:0.149333pt;}
.wsb6{word-spacing:0.186667pt;}
.ws1a{word-spacing:0.240000pt;}
.ws2f{word-spacing:0.288000pt;}
.wse5{word-spacing:0.293333pt;}
.ws17f{word-spacing:0.298667pt;}
.wsd4{word-spacing:0.336000pt;}
.ws14e{word-spacing:0.373333pt;}
.ws15{word-spacing:0.384000pt;}
.wsce{word-spacing:0.432000pt;}
.wsc5{word-spacing:0.480000pt;}
.ws198{word-spacing:0.522667pt;}
.ws76{word-spacing:0.528000pt;}
.wsc7{word-spacing:0.576000pt;}
.ws17d{word-spacing:0.597333pt;}
.ws9f{word-spacing:0.672000pt;}
.ws199{word-spacing:0.709333pt;}
.wsf{word-spacing:0.720000pt;}
.ws51{word-spacing:0.768000pt;}
.ws170{word-spacing:0.784000pt;}
.wsd5{word-spacing:0.816000pt;}
.ws14b{word-spacing:0.821333pt;}
.ws151{word-spacing:0.858667pt;}
.wsd1{word-spacing:0.864000pt;}
.wsbc{word-spacing:0.912000pt;}
.ws15a{word-spacing:0.933333pt;}
.ws82{word-spacing:0.960000pt;}
.ws110{word-spacing:1.008000pt;}
.ws16{word-spacing:1.056000pt;}
.ws15e{word-spacing:1.082667pt;}
.ws14{word-spacing:1.104000pt;}
.wsc4{word-spacing:1.152000pt;}
.ws4c{word-spacing:1.200000pt;}
.ws1a2{word-spacing:1.232000pt;}
.ws7b{word-spacing:1.248000pt;}
.ws17b{word-spacing:1.306667pt;}
.ws118{word-spacing:1.344000pt;}
.ws27{word-spacing:1.392000pt;}
.ws61{word-spacing:1.440000pt;}
.ws7c{word-spacing:1.488000pt;}
.ws14f{word-spacing:1.530667pt;}
.wsad{word-spacing:1.536000pt;}
.ws152{word-spacing:1.568000pt;}
.ws165{word-spacing:1.605333pt;}
.wsa8{word-spacing:1.632000pt;}
.ws40{word-spacing:1.680000pt;}
.ws1b1{word-spacing:1.728000pt;}
.ws15f{word-spacing:1.754667pt;}
.ws18{word-spacing:1.776000pt;}
.ws1a7{word-spacing:1.829333pt;}
.ws91{word-spacing:1.872000pt;}
.ws131{word-spacing:1.920000pt;}
.wsd0{word-spacing:1.968000pt;}
.wsc6{word-spacing:2.112000pt;}
.wsa4{word-spacing:2.160000pt;}
.ws161{word-spacing:2.165333pt;}
.ws5f{word-spacing:2.256000pt;}
.ws87{word-spacing:2.304000pt;}
.ws5c{word-spacing:2.352000pt;}
.ws68{word-spacing:2.496000pt;}
.ws5a{word-spacing:2.534400pt;}
.ws112{word-spacing:2.544000pt;}
.ws10{word-spacing:2.592000pt;}
.ws196{word-spacing:2.613333pt;}
.ws77{word-spacing:2.640000pt;}
.ws197{word-spacing:2.650667pt;}
.ws107{word-spacing:2.688000pt;}
.ws195{word-spacing:2.800000pt;}
.ws3c{word-spacing:2.880000pt;}
.ws126{word-spacing:2.928000pt;}
.ws117{word-spacing:2.976000pt;}
.ws150{word-spacing:3.061333pt;}
.ws11{word-spacing:3.072000pt;}
.ws7d{word-spacing:3.120000pt;}
.ws2a{word-spacing:3.168000pt;}
.ws156{word-spacing:3.173333pt;}
.wsc3{word-spacing:3.216000pt;}
.ws80{word-spacing:3.264000pt;}
.wsd2{word-spacing:3.312000pt;}
.wse1{word-spacing:3.360000pt;}
.ws2c{word-spacing:3.408000pt;}
.ws43{word-spacing:3.456000pt;}
.ws1a1{word-spacing:3.509333pt;}
.ws183{word-spacing:3.546667pt;}
.ws25{word-spacing:3.600000pt;}
.ws14a{word-spacing:3.621333pt;}
.ws94{word-spacing:3.648000pt;}
.ws1a6{word-spacing:3.658667pt;}
.ws13a{word-spacing:3.696000pt;}
.ws16f{word-spacing:3.733333pt;}
.ws8c{word-spacing:3.744000pt;}
.ws3d{word-spacing:3.792000pt;}
.ws63{word-spacing:3.840000pt;}
.wsdd{word-spacing:3.936000pt;}
.ws79{word-spacing:3.984000pt;}
.ws16e{word-spacing:3.994667pt;}
.ws19a{word-spacing:4.069333pt;}
.ws46{word-spacing:4.080000pt;}
.wse{word-spacing:4.176000pt;}
.ws8b{word-spacing:4.224000pt;}
.ws84{word-spacing:4.272000pt;}
.ws1a0{word-spacing:4.293333pt;}
.ws11c{word-spacing:4.320000pt;}
.ws193{word-spacing:4.330667pt;}
.ws48{word-spacing:4.368000pt;}
.ws181{word-spacing:4.405333pt;}
.ws6c{word-spacing:4.416000pt;}
.ws182{word-spacing:4.442667pt;}
.ws12c{word-spacing:4.464000pt;}
.wsa3{word-spacing:4.560000pt;}
.ws42{word-spacing:4.656000pt;}
.ws19f{word-spacing:4.666667pt;}
.wsac{word-spacing:4.752000pt;}
.ws1aa{word-spacing:4.816000pt;}
.ws114{word-spacing:4.896000pt;}
.wsdf{word-spacing:4.992000pt;}
.ws17{word-spacing:5.136000pt;}
.ws36{word-spacing:5.184000pt;}
.ws129{word-spacing:5.280000pt;}
.ws67{word-spacing:5.328000pt;}
.wsbe{word-spacing:5.424000pt;}
.ws4a{word-spacing:5.472000pt;}
.ws65{word-spacing:5.568000pt;}
.ws105{word-spacing:5.664000pt;}
.ws10f{word-spacing:5.712000pt;}
.ws19e{word-spacing:5.749333pt;}
.ws8f{word-spacing:5.808000pt;}
.ws4e{word-spacing:6.000000pt;}
.ws137{word-spacing:6.048000pt;}
.ws30{word-spacing:6.096000pt;}
.ws180{word-spacing:6.160000pt;}
.ws64{word-spacing:6.240000pt;}
.ws8d{word-spacing:6.336000pt;}
.ws174{word-spacing:6.384000pt;}
.ws175{word-spacing:6.458667pt;}
.ws44{word-spacing:6.480000pt;}
.ws194{word-spacing:6.533333pt;}
.ws116{word-spacing:6.576000pt;}
.wsc0{word-spacing:6.672000pt;}
.ws35{word-spacing:6.720000pt;}
.ws167{word-spacing:6.832000pt;}
.ws90{word-spacing:6.864000pt;}
.ws52{word-spacing:6.912000pt;}
.ws13{word-spacing:7.008000pt;}
.wsa5{word-spacing:7.104000pt;}
.wsa0{word-spacing:7.200000pt;}
.ws16a{word-spacing:7.242667pt;}
.wse4{word-spacing:7.248000pt;}
.ws143{word-spacing:7.280000pt;}
.wsa7{word-spacing:7.344000pt;}
.ws37{word-spacing:7.392000pt;}
.ws83{word-spacing:7.488000pt;}
.ws93{word-spacing:7.536000pt;}
.ws149{word-spacing:7.578667pt;}
.ws92{word-spacing:7.584000pt;}
.ws14d{word-spacing:7.653333pt;}
.wse3{word-spacing:7.680000pt;}
.wsa2{word-spacing:7.776000pt;}
.ws168{word-spacing:7.802667pt;}
.ws125{word-spacing:7.872000pt;}
.ws7e{word-spacing:7.920000pt;}
.ws47{word-spacing:7.968000pt;}
.ws1a8{word-spacing:8.026667pt;}
.wsca{word-spacing:8.064000pt;}
.ws1a9{word-spacing:8.101333pt;}
.ws6d{word-spacing:8.208000pt;}
.ws169{word-spacing:8.250667pt;}
.ws45{word-spacing:8.352000pt;}
.ws14c{word-spacing:8.512000pt;}
.ws29{word-spacing:8.544000pt;}
.ws1e{word-spacing:8.624000pt;}
.ws74{word-spacing:8.688000pt;}
.wse2{word-spacing:8.832000pt;}
.ws8a{word-spacing:8.880000pt;}
.ws11e{word-spacing:8.928000pt;}
.ws4f{word-spacing:9.024000pt;}
.ws120{word-spacing:9.120000pt;}
.ws4d{word-spacing:9.216000pt;}
.wsbd{word-spacing:9.360000pt;}
.ws18e{word-spacing:9.408000pt;}
.ws108{word-spacing:9.552000pt;}
.wsab{word-spacing:9.648000pt;}
.ws2e{word-spacing:9.696000pt;}
.ws33{word-spacing:9.888000pt;}
.ws138{word-spacing:9.984000pt;}
.ws38{word-spacing:10.032000pt;}
.ws1b{word-spacing:10.080000pt;}
.wsa9{word-spacing:10.128000pt;}
.ws12{word-spacing:10.176000pt;}
.ws16d{word-spacing:10.192000pt;}
.ws139{word-spacing:10.224000pt;}
.ws106{word-spacing:10.320000pt;}
.ws5b{word-spacing:10.464000pt;}
.ws56{word-spacing:10.560000pt;}
.ws50{word-spacing:10.608000pt;}
.ws2d{word-spacing:10.656000pt;}
.ws8e{word-spacing:10.992000pt;}
.ws6b{word-spacing:11.040000pt;}
.ws15c{word-spacing:11.050667pt;}
.ws15d{word-spacing:11.125333pt;}
.ws192{word-spacing:11.200000pt;}
.wsaa{word-spacing:11.232000pt;}
.ws155{word-spacing:11.237333pt;}
.ws144{word-spacing:11.573333pt;}
.ws135{word-spacing:11.952000pt;}
.ws89{word-spacing:12.000000pt;}
.ws121{word-spacing:12.048000pt;}
.ws19d{word-spacing:12.058667pt;}
.ws11b{word-spacing:12.096000pt;}
.ws122{word-spacing:12.336000pt;}
.ws71{word-spacing:12.432000pt;}
.ws66{word-spacing:12.528000pt;}
.ws39{word-spacing:12.624000pt;}
.ws12e{word-spacing:12.720000pt;}
.ws72{word-spacing:12.864000pt;}
.ws162{word-spacing:13.029333pt;}
.ws86{word-spacing:13.200000pt;}
.ws12d{word-spacing:13.296000pt;}
.ws54{word-spacing:13.344000pt;}
.ws163{word-spacing:13.514667pt;}
.wsde{word-spacing:13.584000pt;}
.ws85{word-spacing:13.632000pt;}
.ws10d{word-spacing:13.920000pt;}
.wscb{word-spacing:14.256000pt;}
.ws115{word-spacing:14.400000pt;}
.ws17a{word-spacing:14.597333pt;}
.ws101{word-spacing:14.832000pt;}
.wsa6{word-spacing:14.880000pt;}
.wsa1{word-spacing:15.072000pt;}
.ws109{word-spacing:15.120000pt;}
.ws41{word-spacing:15.216000pt;}
.ws78{word-spacing:15.312000pt;}
.wscc{word-spacing:15.504000pt;}
.ws73{word-spacing:15.792000pt;}
.wsc9{word-spacing:15.888000pt;}
.ws6f{word-spacing:15.936000pt;}
.ws119{word-spacing:16.272000pt;}
.ws6a{word-spacing:16.608000pt;}
.wsbf{word-spacing:16.704000pt;}
.ws111{word-spacing:16.944000pt;}
.ws4b{word-spacing:16.992000pt;}
.ws157{word-spacing:17.472000pt;}
.ws3e{word-spacing:17.664000pt;}
.ws62{word-spacing:17.712000pt;}
.ws158{word-spacing:17.882667pt;}
.ws113{word-spacing:17.904000pt;}
.wscd{word-spacing:18.336000pt;}
.ws31{word-spacing:18.384000pt;}
.wse0{word-spacing:18.528000pt;}
.ws11d{word-spacing:18.576000pt;}
.ws10c{word-spacing:19.152000pt;}
.ws70{word-spacing:19.536000pt;}
.ws136{word-spacing:20.112000pt;}
.ws5e{word-spacing:20.160000pt;}
.ws134{word-spacing:20.304000pt;}
.ws3b{word-spacing:20.448000pt;}
.ws28{word-spacing:20.544000pt;}
.ws12a{word-spacing:20.592000pt;}
.wscf{word-spacing:20.640000pt;}
.ws132{word-spacing:21.312000pt;}
.ws12b{word-spacing:21.408000pt;}
.ws88{word-spacing:21.648000pt;}
.ws11a{word-spacing:22.128000pt;}
.ws176{word-spacing:22.736000pt;}
.ws166{word-spacing:23.184000pt;}
.ws177{word-spacing:23.296000pt;}
.ws96{word-spacing:23.328000pt;}
.ws1a5{word-spacing:23.445333pt;}
.ws95{word-spacing:23.520000pt;}
.ws1a4{word-spacing:23.669333pt;}
.ws160{word-spacing:24.229333pt;}
.ws60{word-spacing:24.528000pt;}
.ws12f{word-spacing:25.632000pt;}
.wsc1{word-spacing:26.064000pt;}
.ws3f{word-spacing:26.976000pt;}
.ws123{word-spacing:27.264000pt;}
.ws10a{word-spacing:27.840000pt;}
.ws102{word-spacing:28.224000pt;}
.ws1a3{word-spacing:28.560000pt;}
.ws18f{word-spacing:29.232000pt;}
.ws190{word-spacing:29.754667pt;}
.ws128{word-spacing:31.104000pt;}
.ws10e{word-spacing:31.536000pt;}
.ws184{word-spacing:31.770667pt;}
.ws75{word-spacing:31.776000pt;}
.ws185{word-spacing:32.069333pt;}
.wsc2{word-spacing:32.304000pt;}
.ws130{word-spacing:32.880000pt;}
.ws7a{word-spacing:38.352000pt;}
.ws153{word-spacing:43.082667pt;}
.ws154{word-spacing:43.829333pt;}
.ws171{word-spacing:46.218667pt;}
.ws172{word-spacing:46.629333pt;}
.wsdc{word-spacing:58.373867pt;}
.wsda{word-spacing:62.149867pt;}
.wsdb{word-spacing:62.331200pt;}
.wsd9{word-spacing:109.337067pt;}
.wsf8{word-spacing:142.302400pt;}
.wseb{word-spacing:160.222400pt;}
.ws9b{word-spacing:199.434133pt;}
.ws9d{word-spacing:208.394133pt;}
.ws9c{word-spacing:217.354133pt;}
.wsfb{word-spacing:222.618133pt;}
.wsee{word-spacing:223.849600pt;}
.wsf7{word-spacing:235.404800pt;}
.wsf0{word-spacing:236.636267pt;}
.wsea{word-spacing:250.767467pt;}
.wsff{word-spacing:258.066133pt;}
.wsf2{word-spacing:291.235200pt;}
.wsed{word-spacing:292.466667pt;}
.wsf1{word-spacing:302.262400pt;}
.wsf3{word-spacing:302.262933pt;}
.wsec{word-spacing:302.636800pt;}
.wsfa{word-spacing:303.647467pt;}
.wsf9{word-spacing:303.868800pt;}
.wsf4{word-spacing:304.021867pt;}
.wsf6{word-spacing:304.880533pt;}
.wsf5{word-spacing:315.049600pt;}
.wsef{word-spacing:315.423467pt;}
.wsfe{word-spacing:316.654933pt;}
.wsfd{word-spacing:338.084267pt;}
.ws9a{word-spacing:508.703467pt;}
.ws1ae{word-spacing:669.917867pt;}
.wse6{word-spacing:910.676800pt;}
.ws97{word-spacing:910.695467pt;}
.wsb8{word-spacing:910.826133pt;}
.ws20{word-spacing:911.330133pt;}
.ws57{word-spacing:911.423467pt;}
.wsb4{word-spacing:911.498133pt;}
.wsd6{word-spacing:912.132800pt;}
.ws0{word-spacing:912.879467pt;}
.ws186{word-spacing:913.868800pt;}
.ws1ab{word-spacing:913.962133pt;}
.ws13b{word-spacing:915.418133pt;}
.wse7{word-spacing:1038.506133pt;}
.ws98{word-spacing:1038.524800pt;}
.wsb9{word-spacing:1038.655467pt;}
.ws21{word-spacing:1039.159467pt;}
.ws58{word-spacing:1039.252800pt;}
.wsb5{word-spacing:1039.327467pt;}
.wsd7{word-spacing:1039.962133pt;}
.ws1{word-spacing:1040.708800pt;}
.ws187{word-spacing:1041.698133pt;}
.ws1ac{word-spacing:1041.791467pt;}
.ws13c{word-spacing:1043.247467pt;}
.wsfc{word-spacing:1369.368533pt;}
._71{margin-left:-434.123200pt;}
._f{margin-left:-27.781867pt;}
._e{margin-left:-26.746133pt;}
._c{margin-left:-21.288821pt;}
._3b{margin-left:-18.336000pt;}
._15{margin-left:-14.448000pt;}
._7{margin-left:-9.669333pt;}
._3{margin-left:-8.475093pt;}
._5{margin-left:-6.612747pt;}
._1{margin-left:-5.104000pt;}
._a{margin-left:-3.858412pt;}
._2{margin-left:-2.939253pt;}
._0{margin-left:-1.765867pt;}
._6{width:1.035200pt;}
._9{width:2.245867pt;}
._d{width:3.185018pt;}
._13{width:4.701605pt;}
._14{width:5.916268pt;}
._4{width:7.880267pt;}
._37{width:9.026946pt;}
._b{width:10.137600pt;}
._12{width:12.983445pt;}
._11{width:16.585197pt;}
._60{width:18.462428pt;}
._10{width:19.784131pt;}
._61{width:21.278850pt;}
._23{width:28.858667pt;}
._18{width:37.333333pt;}
._70{width:56.910933pt;}
._46{width:70.475200pt;}
._41{width:74.433067pt;}
._3c{width:77.667733pt;}
._3d{width:83.897067pt;}
._44{width:90.475733pt;}
._45{width:91.808533pt;}
._3f{width:94.059200pt;}
._40{width:95.765867pt;}
._6d{width:101.774400pt;}
._47{width:105.141867pt;}
._42{width:109.099200pt;}
._6f{width:125.883479pt;}
._58{width:150.777067pt;}
._4c{width:168.697067pt;}
._68{width:183.337600pt;}
._67{width:204.406679pt;}
._43{width:210.470933pt;}
._3e{width:215.250133pt;}
._6e{width:217.449067pt;}
._28{width:225.828800pt;}
._1c{width:233.298133pt;}
._1f{width:242.258133pt;}
._5b{width:243.838933pt;}
._1b{width:246.243200pt;}
._6c{width:247.838400pt;}
._2b{width:251.218133pt;}
._1e{width:255.203200pt;}
._27{width:260.178133pt;}
._65{width:261.924267pt;}
._2a{width:264.163733pt;}
._26{width:273.123733pt;}
._1a{width:286.912533pt;}
._25{width:304.832000pt;}
._62{width:307.974933pt;}
._55{width:312.455467pt;}
._4e{width:313.728000pt;}
._53{width:324.796800pt;}
._4a{width:332.536000pt;}
._5f{width:335.157333pt;}
._49{width:345.809600pt;}
._6b{width:353.081067pt;}
._16{width:361.051200pt;}
._6a{width:362.388267pt;}
._69{width:366.073067pt;}
._5d{width:397.531200pt;}
._5c{width:411.713067pt;}
._66{width:434.123200pt;}
._22{width:444.529600pt;}
._24{width:446.429760pt;}
._57{width:460.608000pt;}
._59{width:474.869867pt;}
._5a{width:480.943467pt;}
._21{width:523.532800pt;}
._4d{width:535.050667pt;}
._29{width:544.429333pt;}
._54{width:561.633067pt;}
._51{width:569.805867pt;}
._36{width:571.021867pt;}
._56{width:573.277867pt;}
._17{width:586.644012pt;}
._38{width:589.456000pt;}
._2d{width:612.700800pt;}
._32{width:637.537600pt;}
._2e{width:666.535467pt;}
._39{width:677.946667pt;}
._52{width:680.959467pt;}
._35{width:684.329346pt;}
._19{width:687.815467pt;}
._50{width:689.197867pt;}
._4f{width:690.522667pt;}
._2f{width:694.509333pt;}
._33{width:708.012800pt;}
._20{width:717.445867pt;}
._34{width:719.100800pt;}
._1d{width:722.246933pt;}
._30{width:740.455467pt;}
._2c{width:743.601600pt;}
._31{width:747.175467pt;}
._63{width:752.912533pt;}
._4b{width:762.560000pt;}
._64{width:807.787200pt;}
._48{width:1042.732800pt;}
._3a{width:1052.586133pt;}
._5e{width:1356.413867pt;}
._8{width:1831.118400pt;}
.fs4{font-size:22.026667pt;}
.fsb{font-size:28.320000pt;}
.fs6{font-size:29.333333pt;}
.fs3{font-size:34.613333pt;}
.fsa{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.244133pt;}
.y8b{bottom:93.166533pt;}
.y2f{bottom:109.166533pt;}
.y2e{bottom:125.166533pt;}
.y173{bottom:126.499867pt;}
.y138{bottom:135.833200pt;}
.y172{bottom:137.166533pt;}
.y2d{bottom:141.166533pt;}
.yc8{bottom:144.325467pt;}
.y171{bottom:147.833200pt;}
.y137{bottom:150.499867pt;}
.y2c{bottom:157.166533pt;}
.y136{bottom:161.166533pt;}
.y170{bottom:162.499867pt;}
.yc7{bottom:162.917200pt;}
.y135{bottom:171.833200pt;}
.y2b{bottom:173.166533pt;}
.y16f{bottom:177.166533pt;}
.yc6{bottom:178.917200pt;}
.y134{bottom:186.499867pt;}
.y16e{bottom:187.833200pt;}
.y2a{bottom:189.166533pt;}
.y133{bottom:197.166533pt;}
.y16d{bottom:198.499867pt;}
.yc5{bottom:198.552933pt;}
.y29{bottom:205.166533pt;}
.y16c{bottom:209.166533pt;}
.y132{bottom:213.166533pt;}
.yc4{bottom:214.552933pt;}
.y28{bottom:221.166533pt;}
.y131{bottom:223.833200pt;}
.y16b{bottom:225.166533pt;}
.yc3{bottom:234.188533pt;}
.y130{bottom:234.499867pt;}
.y16a{bottom:235.833200pt;}
.y27{bottom:237.166533pt;}
.y169{bottom:246.499867pt;}
.yc2{bottom:250.188533pt;}
.y12f{bottom:250.499867pt;}
.y26{bottom:253.166533pt;}
.y12e{bottom:261.166533pt;}
.y168{bottom:262.499867pt;}
.y8a{bottom:269.166533pt;}
.yc1{bottom:269.824133pt;}
.y12d{bottom:271.833200pt;}
.y167{bottom:273.166533pt;}
.y166{bottom:283.833200pt;}
.y25{bottom:285.166533pt;}
.yc0{bottom:285.824133pt;}
.y12c{bottom:287.833200pt;}
.y165{bottom:294.499867pt;}
.y12b{bottom:298.499867pt;}
.y89{bottom:301.166533pt;}
.ybf{bottom:305.459733pt;}
.yc9{bottom:305.486533pt;}
.y12a{bottom:309.166533pt;}
.y164{bottom:310.499867pt;}
.y88{bottom:317.166533pt;}
.y163{bottom:321.166533pt;}
.ybe{bottom:321.459733pt;}
.y129{bottom:325.166533pt;}
.y162{bottom:331.833200pt;}
.y87{bottom:333.166533pt;}
.y24{bottom:335.149467pt;}
.y128{bottom:335.833200pt;}
.ybd{bottom:341.095333pt;}
.y161{bottom:342.499867pt;}
.y127{bottom:346.499867pt;}
.y86{bottom:349.166533pt;}
.y23{bottom:349.816133pt;}
.ybc{bottom:357.095333pt;}
.y126{bottom:357.166533pt;}
.y160{bottom:358.499867pt;}
.y85{bottom:365.166533pt;}
.y22{bottom:368.482800pt;}
.y15f{bottom:369.166533pt;}
.y125{bottom:373.166533pt;}
.ybb{bottom:376.730933pt;}
.y15e{bottom:379.833200pt;}
.y58{bottom:380.047600pt;}
.y84{bottom:381.166533pt;}
.y124{bottom:383.833200pt;}
.y57{bottom:392.047600pt;}
.yba{bottom:392.730933pt;}
.y123{bottom:394.499867pt;}
.y15d{bottom:395.833200pt;}
.y83{bottom:397.166533pt;}
.y21{bottom:401.816133pt;}
.y56{bottom:404.047600pt;}
.y15c{bottom:406.499867pt;}
.y122{bottom:410.499867pt;}
.yb9{bottom:412.366667pt;}
.y82{bottom:413.166533pt;}
.y55{bottom:416.047600pt;}
.y15b{bottom:417.166533pt;}
.y20{bottom:417.816133pt;}
.y121{bottom:421.166533pt;}
.yd3{bottom:423.807067pt;}
.y54{bottom:428.047600pt;}
.y81{bottom:429.166533pt;}
.yb8{bottom:432.002267pt;}
.y15a{bottom:433.166533pt;}
.y1f{bottom:433.816133pt;}
.y120{bottom:437.166533pt;}
.y53{bottom:440.047600pt;}
.yd2{bottom:442.398933pt;}
.y159{bottom:443.833200pt;}
.y80{bottom:445.166533pt;}
.y11f{bottom:447.833200pt;}
.y1e{bottom:449.816133pt;}
.yb7{bottom:451.637867pt;}
.y52{bottom:452.047600pt;}
.y158{bottom:454.499867pt;}
.y11e{bottom:458.499867pt;}
.y7f{bottom:461.166533pt;}
.y1d2{bottom:461.220800pt;}
.yd1{bottom:462.034533pt;}
.y51{bottom:464.047600pt;}
.y1d{bottom:465.816133pt;}
.yb6{bottom:467.637867pt;}
.y157{bottom:470.499867pt;}
.yb5{bottom:471.273467pt;}
.yf1{bottom:474.446667pt;}
.y11d{bottom:474.499867pt;}
.y50{bottom:476.047600pt;}
.y7e{bottom:477.166533pt;}
.y1d1{bottom:477.220800pt;}
.y156{bottom:481.166533pt;}
.yd0{bottom:481.670267pt;}
.y1c{bottom:481.816133pt;}
.y11c{bottom:485.166533pt;}
.yf0{bottom:486.446667pt;}
.yb4{bottom:487.273467pt;}
.y4f{bottom:488.047600pt;}
.y155{bottom:491.833200pt;}
.y7d{bottom:493.166533pt;}
.ya6{bottom:493.642533pt;}
.y1d0{bottom:496.856400pt;}
.y1b{bottom:497.816133pt;}
.yef{bottom:498.446667pt;}
.y4e{bottom:500.047600pt;}
.y11b{bottom:501.166533pt;}
.ycf{bottom:501.305867pt;}
.yb3{bottom:506.909200pt;}
.y154{bottom:507.833200pt;}
.y7c{bottom:509.166533pt;}
.yee{bottom:510.446667pt;}
.y11a{bottom:511.833200pt;}
.y4d{bottom:512.047600pt;}
.ya5{bottom:513.278267pt;}
.y1a{bottom:513.816133pt;}
.y1cf{bottom:516.492133pt;}
.y153{bottom:518.499867pt;}
.yce{bottom:520.941467pt;}
.yed{bottom:522.446667pt;}
.y119{bottom:522.499867pt;}
.yb2{bottom:522.909200pt;}
.y4c{bottom:524.047600pt;}
.y7b{bottom:525.166533pt;}
.yf3{bottom:528.286667pt;}
.y152{bottom:529.166533pt;}
.y19{bottom:529.816133pt;}
.ya4{bottom:532.913867pt;}
.yae{bottom:533.816000pt;}
.yec{bottom:534.446667pt;}
.y1ce{bottom:536.127733pt;}
.y4b{bottom:536.275600pt;}
.y1be{bottom:538.288133pt;}
.y19a{bottom:538.421467pt;}
.y118{bottom:538.499867pt;}
.yf2{bottom:540.286667pt;}
.y7a{bottom:541.166533pt;}
.yb1{bottom:542.544800pt;}
.y151{bottom:545.166533pt;}
.y18{bottom:545.816133pt;}
.ycd{bottom:545.866800pt;}
.yeb{bottom:546.446667pt;}
.y1bd{bottom:548.954800pt;}
.y199{bottom:549.088133pt;}
.y117{bottom:549.166533pt;}
.yad{bottom:549.816000pt;}
.ya3{bottom:552.549467pt;}
.y4a{bottom:555.003600pt;}
.y1cd{bottom:555.763333pt;}
.y150{bottom:555.833200pt;}
.y79{bottom:557.166533pt;}
.ycc{bottom:557.866800pt;}
.yea{bottom:558.446667pt;}
.y1bc{bottom:559.621467pt;}
.ye9{bottom:561.510800pt;}
.y17{bottom:561.816133pt;}
.yb0{bottom:562.180400pt;}
.y198{bottom:563.754800pt;}
.y116{bottom:565.166533pt;}
.yac{bottom:565.816000pt;}
.y14f{bottom:566.499867pt;}
.y49{bottom:567.003600pt;}
.ya2{bottom:572.185200pt;}
.y78{bottom:573.166533pt;}
.ye8{bottom:573.510800pt;}
.y197{bottom:574.421467pt;}
.y1cc{bottom:575.399067pt;}
.y115{bottom:575.833200pt;}
.y1bb{bottom:576.954800pt;}
.y14e{bottom:577.166533pt;}
.y16{bottom:577.816133pt;}
.yaf{bottom:578.180400pt;}
.y48{bottom:579.003600pt;}
.yab{bottom:581.816000pt;}
.y114{bottom:586.499867pt;}
.y1ba{bottom:587.621467pt;}
.y77{bottom:589.166533pt;}
.y196{bottom:590.021467pt;}
.y47{bottom:591.003600pt;}
.ya1{bottom:591.820800pt;}
.ye7{bottom:592.102667pt;}
.y14d{bottom:593.166533pt;}
.y15{bottom:593.816133pt;}
.y1cb{bottom:595.034667pt;}
.y113{bottom:597.166533pt;}
.yaa{bottom:597.816000pt;}
.y1b9{bottom:598.288133pt;}
.y195{bottom:600.688133pt;}
.y46{bottom:603.003600pt;}
.y14c{bottom:603.833200pt;}
.y76{bottom:605.166533pt;}
.y14{bottom:609.816133pt;}
.ya0{bottom:611.456400pt;}
.ye6{bottom:611.953067pt;}
.y112{bottom:613.166533pt;}
.y14b{bottom:614.499867pt;}
.y1b8{bottom:614.554800pt;}
.y1ca{bottom:614.670267pt;}
.y45{bottom:615.003600pt;}
.y194{bottom:616.288133pt;}
.ya9{bottom:617.451600pt;}
.y75{bottom:621.166533pt;}
.ycb{bottom:621.166667pt;}
.y111{bottom:623.833200pt;}
.y14a{bottom:625.166533pt;}
.y1b7{bottom:625.221467pt;}
.y13{bottom:625.816133pt;}
.y193{bottom:626.954800pt;}
.y44{bottom:627.003600pt;}
.y9f{bottom:631.092000pt;}
.ye5{bottom:631.588667pt;}
.yca{bottom:633.166667pt;}
.y1c9{bottom:634.305867pt;}
.y110{bottom:634.499867pt;}
.y74{bottom:637.166533pt;}
.y192{bottom:637.621467pt;}
.y43{bottom:639.231467pt;}
.y149{bottom:641.166533pt;}
.y1b6{bottom:641.488133pt;}
.y12{bottom:641.816133pt;}
.ya8{bottom:642.376667pt;}
.y10f{bottom:645.166533pt;}
.y9e{bottom:650.727600pt;}
.ye4{bottom:651.224267pt;}
.y148{bottom:651.833200pt;}
.y1b5{bottom:652.154800pt;}
.y73{bottom:653.166533pt;}
.y191{bottom:653.221467pt;}
.y1c8{bottom:653.941467pt;}
.y11{bottom:657.816133pt;}
.y42{bottom:657.959600pt;}
.y10e{bottom:661.166533pt;}
.y147{bottom:662.499867pt;}
.y1b4{bottom:662.821467pt;}
.y190{bottom:663.888133pt;}
.y72{bottom:669.166533pt;}
.y41{bottom:669.959600pt;}
.y9d{bottom:670.363333pt;}
.ye3{bottom:670.860000pt;}
.y10d{bottom:671.833200pt;}
.y1b3{bottom:673.488133pt;}
.y1c7{bottom:673.577200pt;}
.y10{bottom:673.816133pt;}
.y146{bottom:678.499867pt;}
.y18f{bottom:679.488133pt;}
.y40{bottom:681.959600pt;}
.y10c{bottom:682.499867pt;}
.y71{bottom:685.166533pt;}
.y145{bottom:689.166533pt;}
.y1b2{bottom:689.754667pt;}
.yf{bottom:689.816133pt;}
.y9c{bottom:689.998933pt;}
.y18e{bottom:690.154800pt;}
.ye2{bottom:690.495467pt;}
.y1c6{bottom:693.212800pt;}
.y10b{bottom:698.499867pt;}
.y144{bottom:699.833200pt;}
.y1b1{bottom:700.421333pt;}
.y3f{bottom:700.626267pt;}
.y18d{bottom:700.821467pt;}
.y70{bottom:701.166533pt;}
.ye{bottom:705.816133pt;}
.y10a{bottom:709.166533pt;}
.y9b{bottom:709.634533pt;}
.ye1{bottom:710.131200pt;}
.y143{bottom:710.499867pt;}
.y3e{bottom:712.626267pt;}
.y1c5{bottom:712.848400pt;}
.y18c{bottom:716.421333pt;}
.y1b0{bottom:716.688133pt;}
.y6f{bottom:717.166533pt;}
.y109{bottom:719.833200pt;}
.y3d{bottom:724.854267pt;}
.y142{bottom:726.499867pt;}
.y18b{bottom:727.088000pt;}
.y1af{bottom:727.354800pt;}
.ya7{bottom:727.559600pt;}
.y9a{bottom:729.270133pt;}
.ye0{bottom:729.766800pt;}
.y1c4{bottom:732.484000pt;}
.y6e{bottom:733.166533pt;}
.y108{bottom:735.833200pt;}
.y141{bottom:737.166533pt;}
.y18a{bottom:737.754667pt;}
.y1ae{bottom:738.021467pt;}
.y3c{bottom:743.582133pt;}
.yd{bottom:744.868133pt;}
.y107{bottom:746.499867pt;}
.y140{bottom:747.833200pt;}
.y189{bottom:748.421333pt;}
.y99{bottom:748.905867pt;}
.y6d{bottom:749.166533pt;}
.ydf{bottom:749.402400pt;}
.y1c3{bottom:752.119733pt;}
.y1ad{bottom:754.288133pt;}
.y3b{bottom:755.582133pt;}
.yc{bottom:756.868133pt;}
.y106{bottom:762.499867pt;}
.y13f{bottom:763.833200pt;}
.y188{bottom:764.021467pt;}
.y1ac{bottom:764.954800pt;}
.y6c{bottom:765.166533pt;}
.y3a{bottom:767.582133pt;}
.y98{bottom:768.541467pt;}
.yde{bottom:769.252800pt;}
.y1c2{bottom:771.755333pt;}
.yb{bottom:772.228133pt;}
.y105{bottom:773.166533pt;}
.y13e{bottom:774.499867pt;}
.y187{bottom:774.688133pt;}
.y1ab{bottom:775.621467pt;}
.y39{bottom:779.582133pt;}
.y6b{bottom:781.166533pt;}
.y104{bottom:783.833200pt;}
.y13d{bottom:785.166533pt;}
.y97{bottom:788.177067pt;}
.ydd{bottom:789.103333pt;}
.y186{bottom:790.288133pt;}
.y9{bottom:790.986800pt;}
.y38{bottom:791.582133pt;}
.y1aa{bottom:791.888133pt;}
.y13c{bottom:795.833200pt;}
.ya{bottom:796.266800pt;}
.y6a{bottom:797.166533pt;}
.y103{bottom:799.833200pt;}
.y185{bottom:800.954800pt;}
.y1a9{bottom:802.554800pt;}
.y37{bottom:803.582133pt;}
.y96{bottom:807.812800pt;}
.ydc{bottom:808.738800pt;}
.y102{bottom:810.499867pt;}
.y7{bottom:810.986800pt;}
.y184{bottom:811.621467pt;}
.y69{bottom:813.166533pt;}
.y36{bottom:815.582133pt;}
.y8{bottom:816.266800pt;}
.y1a8{bottom:818.821467pt;}
.y101{bottom:821.166533pt;}
.y183{bottom:827.221467pt;}
.y95{bottom:827.448267pt;}
.y35{bottom:827.582133pt;}
.ydb{bottom:828.374533pt;}
.y68{bottom:829.166533pt;}
.y1a7{bottom:829.488133pt;}
.y5{bottom:830.986800pt;}
.y13b{bottom:831.833200pt;}
.y1c1{bottom:835.272400pt;}
.y6{bottom:836.266800pt;}
.y100{bottom:837.166533pt;}
.y182{bottom:837.888133pt;}
.y34{bottom:839.810267pt;}
.y1a6{bottom:840.154800pt;}
.y13a{bottom:842.499867pt;}
.y67{bottom:845.166533pt;}
.y94{bottom:847.084000pt;}
.yff{bottom:847.833200pt;}
.yda{bottom:848.224933pt;}
.y1a5{bottom:850.821467pt;}
.y181{bottom:853.488133pt;}
.y1c0{bottom:854.908000pt;}
.yfe{bottom:858.499867pt;}
.y33{bottom:858.538267pt;}
.y66{bottom:861.166533pt;}
.y180{bottom:864.154800pt;}
.y93{bottom:866.719600pt;}
.y1a4{bottom:867.088133pt;}
.yd9{bottom:868.075333pt;}
.y1bf{bottom:868.241333pt;}
.y4{bottom:868.444133pt;}
.y139{bottom:869.166533pt;}
.y32{bottom:870.538267pt;}
.yfd{bottom:874.499867pt;}
.y17f{bottom:874.821467pt;}
.y65{bottom:877.166533pt;}
.y1a3{bottom:877.754800pt;}
.y31{bottom:882.766133pt;}
.yfc{bottom:885.166533pt;}
.y92{bottom:886.355200pt;}
.yd8{bottom:887.925733pt;}
.y1a2{bottom:888.421467pt;}
.y17e{bottom:890.421467pt;}
.y64{bottom:893.166533pt;}
.yfb{bottom:895.833200pt;}
.y1a1{bottom:899.088133pt;}
.y17d{bottom:901.088133pt;}
.y30{bottom:901.494267pt;}
.y3{bottom:901.777467pt;}
.y91{bottom:905.990933pt;}
.yfa{bottom:906.499867pt;}
.yd7{bottom:907.776133pt;}
.y63{bottom:909.166533pt;}
.y17c{bottom:911.754800pt;}
.y1a0{bottom:915.354800pt;}
.yf9{bottom:922.499867pt;}
.y62{bottom:925.166533pt;}
.y90{bottom:925.626400pt;}
.y19f{bottom:926.021467pt;}
.y17b{bottom:927.354800pt;}
.yd6{bottom:927.626400pt;}
.yf8{bottom:933.166533pt;}
.y2{bottom:935.110800pt;}
.y19e{bottom:936.688133pt;}
.y17a{bottom:938.021467pt;}
.y61{bottom:941.166533pt;}
.yf7{bottom:943.833200pt;}
.y8f{bottom:945.262133pt;}
.yd5{bottom:947.262133pt;}
.y179{bottom:948.688133pt;}
.y19d{bottom:952.954800pt;}
.yf6{bottom:954.499867pt;}
.y60{bottom:957.166533pt;}
.y19c{bottom:963.621467pt;}
.y178{bottom:964.288133pt;}
.y8e{bottom:964.897733pt;}
.yd4{bottom:967.112533pt;}
.yf5{bottom:970.499867pt;}
.y5f{bottom:973.166533pt;}
.y19b{bottom:974.288133pt;}
.y177{bottom:974.954800pt;}
.yf4{bottom:981.166533pt;}
.y8d{bottom:986.748133pt;}
.y5e{bottom:989.166533pt;}
.y176{bottom:990.554800pt;}
.y175{bottom:1001.221467pt;}
.y5d{bottom:1005.166533pt;}
.y8c{bottom:1011.673333pt;}
.y174{bottom:1011.888133pt;}
.y5b{bottom:1044.714133pt;}
.y5a{bottom:1056.714133pt;}
.y5c{bottom:1068.686267pt;}
.y59{bottom:1068.714133pt;}
.h7{height:16.343787pt;}
.hb{height:21.736000pt;}
.h17{height:22.967520pt;}
.h18{height:26.245333pt;}
.hf{height:27.664000pt;}
.h9{height:27.701333pt;}
.h15{height:28.114667pt;}
.h8{height:29.783787pt;}
.h12{height:30.277333pt;}
.h6{height:30.528960pt;}
.h5{height:30.624000pt;}
.h19{height:31.136533pt;}
.hc{height:31.616000pt;}
.h2{height:32.928000pt;}
.ha{height:35.616000pt;}
.he{height:38.928000pt;}
.h16{height:40.247520pt;}
.h11{height:42.336000pt;}
.h4{height:51.744000pt;}
.h10{height:56.448000pt;}
.hd{height:63.504000pt;}
.h3{height:98.784000pt;}
.h13{height:793.701333pt;}
.h14{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:47.244133pt;}
.x1{left:66.141733pt;}
.x9{left:73.349333pt;}
.x16{left:83.141733pt;}
.xb{left:85.025733pt;}
.x10{left:92.998667pt;}
.x11{left:99.590533pt;}
.x19{left:197.596400pt;}
.x12{left:275.591733pt;}
.x1a{left:281.774400pt;}
.xd{left:284.088800pt;}
.x2{left:295.559067pt;}
.x8{left:314.456400pt;}
.xc{left:406.285867pt;}
.x18{left:414.299200pt;}
.x17{left:423.299200pt;}
.x3{left:425.352400pt;}
.x5{left:438.171333pt;}
.x7{left:456.123333pt;}
.x14{left:560.086667pt;}
.x15{left:563.554133pt;}
.xa{left:587.770533pt;}
.x4{left:589.018000pt;}
.x6{left:597.437867pt;}
.x13{left:716.595867pt;}
.xe{left:1068.686267pt;}
}




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