
    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_441948ff765a638830b24b47.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_59daf89af514785bd15dd725.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_1cc1e23e26a0cee58fcd8fe1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912598;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_28044baf5a01697a33fabe33.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_dfafc78b78ccd192e5b26aa1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_b97da302dcf9eadd0d33f26f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_5d458d3239ceed8cfc6765f2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_024433153046a81e1f8ac85a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_abd3e99db89c9f5955263c38.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_2474559126a12f247ddcb660.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_ebc43fe347a100e6b2eef053.woff')format("woff");}.ffb{font-family:ffb;line-height:0.851562;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_566d2fb31594d17c36b125b3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2c373656f594f637a08306a3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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;}
.mb{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);}
.ma1{transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247623,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248386,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248832,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.mac{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,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);}
.m18{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251384,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251784,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251809,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v2{vertical-align:-23.976000px;}
.v3{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.978000px;}
.v1{vertical-align:23.976000px;}
.v5{vertical-align:32.399400px;}
.ls2d{letter-spacing:-8.580000px;}
.ls20{letter-spacing:-8.514000px;}
.ls36{letter-spacing:-2.442000px;}
.ls15{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.660000px;}
.ls28{letter-spacing:-0.462000px;}
.ls11{letter-spacing:-0.396000px;}
.ls14{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.264000px;}
.lsf{letter-spacing:-0.198000px;}
.ls16{letter-spacing:-0.153912px;}
.ls10{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.066000px;}
.ls7{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000300px;}
.ls18{letter-spacing:0.000600px;}
.ls33{letter-spacing:0.005232px;}
.ls22{letter-spacing:0.010800px;}
.ls29{letter-spacing:0.011400px;}
.ls24{letter-spacing:0.019175px;}
.lsc{letter-spacing:0.066000px;}
.ls2f{letter-spacing:0.081861px;}
.ls3{letter-spacing:0.132000px;}
.ls13{letter-spacing:0.151800px;}
.lsb{letter-spacing:0.165000px;}
.ls4{letter-spacing:0.198000px;}
.ls1a{letter-spacing:0.224400px;}
.lsa{letter-spacing:0.231000px;}
.ls23{letter-spacing:0.244231px;}
.ls6{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.330000px;}
.ls32{letter-spacing:0.331850px;}
.ls1e{letter-spacing:0.341400px;}
.ls12{letter-spacing:0.396000px;}
.ls3d{letter-spacing:0.429000px;}
.ls19{letter-spacing:0.440400px;}
.ls35{letter-spacing:0.461584px;}
.ls34{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.528000px;}
.ls17{letter-spacing:0.594000px;}
.ls2a{letter-spacing:0.611400px;}
.ls39{letter-spacing:0.627000px;}
.ls2e{letter-spacing:0.660000px;}
.ls3a{letter-spacing:0.726000px;}
.ls26{letter-spacing:0.792000px;}
.ls3e{letter-spacing:0.858000px;}
.ls40{letter-spacing:0.891000px;}
.ls3b{letter-spacing:0.924000px;}
.ls30{letter-spacing:1.111800px;}
.ls37{letter-spacing:1.254000px;}
.ls1b{letter-spacing:1.424400px;}
.ls21{letter-spacing:1.975200px;}
.ls1f{letter-spacing:2.086200px;}
.ls1c{letter-spacing:2.482800px;}
.ls1d{letter-spacing:2.901000px;}
.ls25{letter-spacing:3.534885px;}
.ls31{letter-spacing:3.588584px;}
.ls2c{letter-spacing:4.284950px;}
.ls3c{letter-spacing:4.718614px;}
.ls38{letter-spacing:5.825347px;}
.ls0{letter-spacing:13.200000px;}
.ls1{letter-spacing:35.220000px;}
.ls2{letter-spacing:35.220600px;}
.ls2b{letter-spacing:85.432200px;}
.ls27{letter-spacing:125.401200px;}
.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;}
}
.wsdd{word-spacing:-66.924000px;}
.wsde{word-spacing:-66.726000px;}
.wsbd{word-spacing:-66.528000px;}
.wscc{word-spacing:-66.462000px;}
.wsaa{word-spacing:-66.396000px;}
.wsb1{word-spacing:-66.198000px;}
.wsbe{word-spacing:-66.066000px;}
.ws87{word-spacing:-66.000000px;}
.wsbc{word-spacing:-65.934000px;}
.wsb3{word-spacing:-65.868000px;}
.wsc9{word-spacing:-65.802000px;}
.wscb{word-spacing:-65.670000px;}
.ws1{word-spacing:-22.500000px;}
.ws15{word-spacing:-19.500000px;}
.ws58{word-spacing:-18.000000px;}
.wsdc{word-spacing:-17.424000px;}
.wsc6{word-spacing:-17.160000px;}
.ws19{word-spacing:-17.028000px;}
.ws73{word-spacing:-16.896000px;}
.wsc2{word-spacing:-16.830000px;}
.ws17{word-spacing:-16.764000px;}
.ws16{word-spacing:-16.731000px;}
.ws49{word-spacing:-16.724400px;}
.ws1a{word-spacing:-16.698000px;}
.ws2f{word-spacing:-16.651800px;}
.ws5{word-spacing:-16.632000px;}
.ws4b{word-spacing:-16.566000px;}
.ws0{word-spacing:-16.500000px;}
.ws18{word-spacing:-16.434000px;}
.ws4c{word-spacing:-16.368000px;}
.wsb2{word-spacing:-16.302000px;}
.ws4{word-spacing:-16.236000px;}
.wsca{word-spacing:-16.170000px;}
.wsb8{word-spacing:-16.104000px;}
.ws14{word-spacing:-15.000000px;}
.ws90{word-spacing:-13.992000px;}
.ws98{word-spacing:-13.596000px;}
.ws66{word-spacing:-13.500000px;}
.wsa0{word-spacing:-13.332000px;}
.ws95{word-spacing:-13.134000px;}
.ws9a{word-spacing:-13.068000px;}
.ws99{word-spacing:-12.606000px;}
.wsa9{word-spacing:-12.408000px;}
.wsa1{word-spacing:-12.078000px;}
.wsa5{word-spacing:-11.880000px;}
.ws9b{word-spacing:-11.748000px;}
.ws9c{word-spacing:-10.758000px;}
.ws2{word-spacing:-10.494000px;}
.wsa4{word-spacing:-10.362000px;}
.ws9f{word-spacing:-10.164000px;}
.ws8f{word-spacing:-10.098000px;}
.ws3{word-spacing:-9.619500px;}
.ws30{word-spacing:-9.465588px;}
.wsab{word-spacing:-8.976000px;}
.wsa{word-spacing:-8.250000px;}
.wsa2{word-spacing:-8.052000px;}
.ws4a{word-spacing:-7.986000px;}
.ws74{word-spacing:-7.920000px;}
.wsd7{word-spacing:-7.260000px;}
.wse8{word-spacing:-6.996000px;}
.wse9{word-spacing:-6.930000px;}
.ws97{word-spacing:-6.864000px;}
.ws91{word-spacing:-6.750000px;}
.ws9e{word-spacing:-6.666000px;}
.ws1d{word-spacing:-6.336000px;}
.wsb4{word-spacing:-6.270000px;}
.ws93{word-spacing:-6.006000px;}
.wse1{word-spacing:-5.610000px;}
.wsd2{word-spacing:-5.082000px;}
.wsa8{word-spacing:-4.884000px;}
.ws62{word-spacing:-4.686000px;}
.wscd{word-spacing:-4.488000px;}
.wse0{word-spacing:-4.422000px;}
.wsb9{word-spacing:-4.356000px;}
.wsd0{word-spacing:-4.092000px;}
.ws8{word-spacing:-3.960000px;}
.wsd3{word-spacing:-3.894000px;}
.wsa6{word-spacing:-3.828000px;}
.wsae{word-spacing:-3.696000px;}
.ws79{word-spacing:-3.630000px;}
.wsc4{word-spacing:-3.432000px;}
.wsb{word-spacing:-3.366000px;}
.ws11{word-spacing:-3.300000px;}
.ws2d{word-spacing:-3.234000px;}
.ws51{word-spacing:-3.168000px;}
.ws20{word-spacing:-3.102000px;}
.ws80{word-spacing:-3.036000px;}
.ws32{word-spacing:-2.970000px;}
.ws7f{word-spacing:-2.904000px;}
.ws6e{word-spacing:-2.838000px;}
.ws46{word-spacing:-2.706000px;}
.ws6c{word-spacing:-2.640000px;}
.wsc8{word-spacing:-2.574000px;}
.ws54{word-spacing:-2.442000px;}
.ws9d{word-spacing:-2.376000px;}
.wsea{word-spacing:-2.310000px;}
.ws83{word-spacing:-2.244000px;}
.ws6a{word-spacing:-2.178000px;}
.ws75{word-spacing:-2.112000px;}
.ws45{word-spacing:-2.046000px;}
.ws36{word-spacing:-1.980000px;}
.ws1f{word-spacing:-1.848000px;}
.ws39{word-spacing:-1.782000px;}
.wsba{word-spacing:-1.716000px;}
.wsbb{word-spacing:-1.650000px;}
.ws3b{word-spacing:-1.584000px;}
.ws8b{word-spacing:-1.518000px;}
.ws57{word-spacing:-1.452000px;}
.ws7b{word-spacing:-1.386000px;}
.ws53{word-spacing:-1.320000px;}
.ws7{word-spacing:-1.296000px;}
.ws78{word-spacing:-1.254000px;}
.ws9{word-spacing:-1.188000px;}
.ws8e{word-spacing:-1.122000px;}
.ws56{word-spacing:-1.056000px;}
.ws52{word-spacing:-0.990000px;}
.ws7e{word-spacing:-0.924000px;}
.wsf{word-spacing:-0.858000px;}
.ws3c{word-spacing:-0.792000px;}
.ws81{word-spacing:-0.726000px;}
.ws40{word-spacing:-0.660000px;}
.ws94{word-spacing:-0.594000px;}
.ws2b{word-spacing:-0.528000px;}
.wsc0{word-spacing:-0.462000px;}
.ws1c{word-spacing:-0.396000px;}
.ws12{word-spacing:-0.330000px;}
.ws24{word-spacing:-0.264000px;}
.ws29{word-spacing:-0.198000px;}
.wsd{word-spacing:-0.132000px;}
.ws1b{word-spacing:-0.120000px;}
.ws35{word-spacing:-0.066000px;}
.ws6{word-spacing:0.000000px;}
.ws3f{word-spacing:0.066000px;}
.ws21{word-spacing:0.132000px;}
.ws38{word-spacing:0.198000px;}
.wsc{word-spacing:0.264000px;}
.ws34{word-spacing:0.330000px;}
.ws27{word-spacing:0.396000px;}
.ws4d{word-spacing:0.462000px;}
.ws76{word-spacing:0.528000px;}
.ws43{word-spacing:0.594000px;}
.ws1e{word-spacing:0.660000px;}
.wsb5{word-spacing:0.726000px;}
.ws3d{word-spacing:0.792000px;}
.wsdf{word-spacing:0.858000px;}
.ws3a{word-spacing:0.924000px;}
.ws6d{word-spacing:0.990000px;}
.ws5f{word-spacing:1.056000px;}
.ws47{word-spacing:1.122000px;}
.ws28{word-spacing:1.188000px;}
.ws3e{word-spacing:1.254000px;}
.ws31{word-spacing:1.320000px;}
.ws26{word-spacing:1.386000px;}
.ws4e{word-spacing:1.452000px;}
.ws86{word-spacing:1.518000px;}
.ws64{word-spacing:1.584000px;}
.ws8c{word-spacing:1.650000px;}
.ws8d{word-spacing:1.716000px;}
.ws63{word-spacing:1.782000px;}
.wsc1{word-spacing:1.848000px;}
.ws23{word-spacing:1.914000px;}
.ws59{word-spacing:1.980000px;}
.ws25{word-spacing:2.046000px;}
.ws55{word-spacing:2.112000px;}
.wseb{word-spacing:2.178000px;}
.ws5a{word-spacing:2.244000px;}
.ws42{word-spacing:2.310000px;}
.wsd1{word-spacing:2.376000px;}
.ws33{word-spacing:2.442000px;}
.ws50{word-spacing:2.508000px;}
.ws22{word-spacing:2.574000px;}
.ws13{word-spacing:2.640000px;}
.ws84{word-spacing:2.706000px;}
.ws4f{word-spacing:2.772000px;}
.wsb6{word-spacing:2.838000px;}
.ws6b{word-spacing:2.904000px;}
.ws7c{word-spacing:2.970000px;}
.wsb7{word-spacing:3.036000px;}
.wsad{word-spacing:3.102000px;}
.wsa7{word-spacing:3.168000px;}
.ws10{word-spacing:3.234000px;}
.wse{word-spacing:3.300000px;}
.ws7d{word-spacing:3.366000px;}
.ws2e{word-spacing:3.564000px;}
.ws82{word-spacing:3.630000px;}
.ws6f{word-spacing:3.762000px;}
.ws37{word-spacing:3.828000px;}
.ws77{word-spacing:3.894000px;}
.ws96{word-spacing:3.960000px;}
.ws60{word-spacing:4.092000px;}
.wsd6{word-spacing:4.158000px;}
.wsd9{word-spacing:4.290000px;}
.wsaf{word-spacing:4.554000px;}
.ws92{word-spacing:4.620000px;}
.wsac{word-spacing:4.818000px;}
.ws48{word-spacing:4.884000px;}
.ws44{word-spacing:4.950000px;}
.wscf{word-spacing:5.016000px;}
.ws2a{word-spacing:5.082000px;}
.wsc5{word-spacing:5.280000px;}
.wsa3{word-spacing:5.346000px;}
.ws2c{word-spacing:5.544000px;}
.wsdb{word-spacing:5.940000px;}
.wsd5{word-spacing:6.006000px;}
.ws41{word-spacing:6.138000px;}
.wsce{word-spacing:6.270000px;}
.ws85{word-spacing:6.402000px;}
.wsb0{word-spacing:6.534000px;}
.ws7a{word-spacing:6.600000px;}
.wsc3{word-spacing:6.666000px;}
.wsc7{word-spacing:6.798000px;}
.wse5{word-spacing:6.996000px;}
.wsda{word-spacing:7.128000px;}
.wsd4{word-spacing:7.194000px;}
.wse7{word-spacing:7.326000px;}
.wse3{word-spacing:7.524000px;}
.ws61{word-spacing:8.052000px;}
.wse4{word-spacing:8.184000px;}
.wse2{word-spacing:8.712000px;}
.wsec{word-spacing:8.910000px;}
.wse6{word-spacing:8.976000px;}
.wsd8{word-spacing:9.240000px;}
.wsbf{word-spacing:12.408000px;}
.ws70{word-spacing:79.051800px;}
.ws5c{word-spacing:119.020800px;}
.ws72{word-spacing:200.551800px;}
.ws71{word-spacing:215.680800px;}
.ws5e{word-spacing:240.520800px;}
.ws5d{word-spacing:330.484800px;}
.ws89{word-spacing:356.790000px;}
.ws68{word-spacing:427.224000px;}
.ws8a{word-spacing:446.700000px;}
.ws69{word-spacing:463.188000px;}
.ws67{word-spacing:478.200000px;}
.ws65{word-spacing:666.463200px;}
.ws5b{word-spacing:913.077600px;}
.ws88{word-spacing:954.765600px;}
._b{margin-left:-13.602600px;}
._a{margin-left:-10.830600px;}
._8{margin-left:-9.143513px;}
._4{margin-left:-8.042400px;}
._1{margin-left:-6.078600px;}
._3{margin-left:-4.375800px;}
._0{margin-left:-2.448600px;}
._2{margin-left:-1.247400px;}
._5{width:1.711200px;}
._7{width:3.359783px;}
._6{width:4.777200px;}
._9{width:6.179810px;}
._48{width:7.284190px;}
._c{width:8.439000px;}
._d{width:9.490026px;}
._46{width:11.381400px;}
._3f{width:15.193800px;}
._3e{width:36.036000px;}
._47{width:42.504000px;}
._40{width:44.022000px;}
._36{width:52.448400px;}
._30{width:60.724200px;}
._35{width:70.141800px;}
._1e{width:72.873600px;}
._32{width:94.460400px;}
._31{width:100.111800px;}
._2b{width:101.740800px;}
._16{width:103.766400px;}
._2f{width:136.300800px;}
._20{width:162.999600px;}
._2d{width:176.575800px;}
._1a{width:178.338000px;}
._10{width:179.538600px;}
._26{width:183.484200px;}
._39{width:185.936400px;}
._18{width:197.289600px;}
._37{width:204.629400px;}
._33{width:229.180800px;}
._34{width:266.032200px;}
._3c{width:283.240200px;}
._24{width:290.736000px;}
._1c{width:296.244000px;}
._3b{width:304.015800px;}
._1f{width:305.778000px;}
._2c{width:338.068200px;}
._44{width:344.370000px;}
._19{width:353.754000px;}
._1d{width:399.792000px;}
._12{width:404.032800px;}
._e{width:409.614000px;}
._17{width:428.712600px;}
._14{width:430.098600px;}
._22{width:447.903600px;}
._42{width:451.302000px;}
._38{width:452.944800px;}
._2e{width:464.954400px;}
._2a{width:467.901000px;}
._23{width:471.933600px;}
._3a{width:477.496200px;}
._29{width:509.706000px;}
._21{width:515.700000px;}
._f{width:522.566400px;}
._3d{width:533.944800px;}
._1b{width:538.029600px;}
._25{width:539.760000px;}
._13{width:543.102000px;}
._15{width:549.566400px;}
._28{width:551.367600px;}
._45{width:560.601000px;}
._11{width:582.614400px;}
._27{width:650.700000px;}
._43{width:745.170000px;}
._41{width:863.808000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:86.354850px;}
.yf9{bottom:126.977400px;}
.yf7{bottom:127.105050px;}
.y123{bottom:127.536150px;}
.y86{bottom:127.558950px;}
.y2a{bottom:127.559100px;}
.y1c9{bottom:127.838550px;}
.y174{bottom:128.156700px;}
.y1c5{bottom:128.192250px;}
.y9e{bottom:128.792850px;}
.y16d{bottom:132.403650px;}
.y356{bottom:133.053600px;}
.y1c3{bottom:146.724300px;}
.yf8{bottom:146.777400px;}
.yf6{bottom:146.905050px;}
.y30d{bottom:147.108150px;}
.y122{bottom:147.336150px;}
.y121{bottom:147.359100px;}
.yf2{bottom:147.516300px;}
.y2b2{bottom:147.533850px;}
.y85{bottom:147.579900px;}
.y1c8{bottom:147.638700px;}
.y19a{bottom:147.678750px;}
.y55{bottom:147.726450px;}
.y173{bottom:147.956700px;}
.y1c4{bottom:147.992250px;}
.yc8{bottom:148.016400px;}
.y212{bottom:148.294050px;}
.y289{bottom:148.436250px;}
.y261{bottom:148.488600px;}
.y9d{bottom:148.592850px;}
.y114{bottom:148.916850px;}
.y239{bottom:149.203200px;}
.y1e7{bottom:149.609100px;}
.y16c{bottom:150.159150px;}
.y355{bottom:165.105750px;}
.y1c2{bottom:165.889500px;}
.y29{bottom:166.358400px;}
.yf5{bottom:166.705050px;}
.y120{bottom:167.159100px;}
.y1c7{bottom:167.438550px;}
.yf1{bottom:167.473650px;}
.y84{bottom:167.600850px;}
.y54{bottom:167.893650px;}
.y16b{bottom:168.023400px;}
.y9c{bottom:168.392850px;}
.yc7{bottom:168.473400px;}
.y211{bottom:169.029000px;}
.y288{bottom:169.313400px;}
.y260{bottom:169.418400px;}
.y113{bottom:170.274600px;}
.y238{bottom:170.847450px;}
.y1e6{bottom:171.659250px;}
.y199{bottom:174.176250px;}
.y30c{bottom:175.161300px;}
.y2b1{bottom:176.012550px;}
.y1c1{bottom:185.054700px;}
.y354{bottom:185.644350px;}
.y16a{bottom:185.887650px;}
.yf4{bottom:186.505050px;}
.y11f{bottom:186.959100px;}
.y1c6{bottom:187.238550px;}
.yf0{bottom:187.430850px;}
.y83{bottom:187.621800px;}
.y53{bottom:188.060850px;}
.y28{bottom:188.149950px;}
.y237{bottom:192.491700px;}
.y2b0{bottom:195.987150px;}
.yc6{bottom:197.434500px;}
.y287{bottom:198.694500px;}
.y25f{bottom:198.852000px;}
.y1e5{bottom:202.213050px;}
.y30b{bottom:203.214150px;}
.y169{bottom:203.751900px;}
.y353{bottom:206.183100px;}
.yf3{bottom:206.305050px;}
.y11e{bottom:206.759100px;}
.y210{bottom:206.771850px;}
.yef{bottom:207.388050px;}
.y82{bottom:207.642750px;}
.y52{bottom:208.228050px;}
.y112{bottom:208.640250px;}
.y27{bottom:209.941350px;}
.y1c0{bottom:210.597900px;}
.y198{bottom:211.303650px;}
.y236{bottom:214.135950px;}
.y2c6{bottom:215.961900px;}
.y286{bottom:219.571500px;}
.y25e{bottom:219.781650px;}
.y2af{bottom:224.465850px;}
.y168{bottom:227.271600px;}
.yee{bottom:227.345250px;}
.y20f{bottom:227.506800px;}
.y81{bottom:227.663700px;}
.y51{bottom:228.395250px;}
.y111{bottom:229.998000px;}
.y332{bottom:230.226600px;}
.y30a{bottom:231.267300px;}
.y197{bottom:231.423300px;}
.y26{bottom:231.732900px;}
.y352{bottom:233.099700px;}
.y2c5{bottom:235.936650px;}
.yc5{bottom:236.699550px;}
.y285{bottom:240.448650px;}
.y25d{bottom:240.711300px;}
.y235{bottom:244.284000px;}
.y2ae{bottom:244.440450px;}
.y1e4{bottom:244.871100px;}
.y1bf{bottom:246.770850px;}
.yed{bottom:247.302450px;}
.y80{bottom:247.684650px;}
.y20e{bottom:248.241900px;}
.y50{bottom:248.562450px;}
.y331{bottom:248.976600px;}
.y165{bottom:250.682550px;}
.y309{bottom:250.816350px;}
.y110{bottom:251.355900px;}
.y196{bottom:251.542950px;}
.y13c{bottom:251.714550px;}
.y25{bottom:253.524450px;}
.yc4{bottom:257.156700px;}
.y167{bottom:258.782550px;}
.y25c{bottom:261.641100px;}
.y2ad{bottom:264.415200px;}
.y1be{bottom:265.936050px;}
.y163{bottom:266.882550px;}
.yec{bottom:267.259800px;}
.y7f{bottom:267.705600px;}
.y4f{bottom:268.729650px;}
.y20d{bottom:268.976850px;}
.y284{bottom:269.829600px;}
.y10f{bottom:272.713650px;}
.y1e3{bottom:273.298950px;}
.y166{bottom:274.982550px;}
.y24{bottom:275.316000px;}
.y351{bottom:276.140700px;}
.y330{bottom:276.230550px;}
.yc3{bottom:277.613850px;}
.y13b{bottom:277.892550px;}
.y308{bottom:278.869350px;}
.y164{bottom:283.082550px;}
.y2ac{bottom:284.389950px;}
.y234{bottom:286.536150px;}
.yeb{bottom:287.217000px;}
.y7e{bottom:287.726550px;}
.y195{bottom:288.670350px;}
.y283{bottom:290.706750px;}
.y25b{bottom:291.074700px;}
.y1bd{bottom:291.479250px;}
.y32f{bottom:294.980550px;}
.y4e{bottom:295.274850px;}
.y350{bottom:296.679450px;}
.y23{bottom:297.107550px;}
.y10e{bottom:300.449400px;}
.y20c{bottom:306.719700px;}
.y307{bottom:306.922350px;}
.yea{bottom:307.174200px;}
.y7d{bottom:307.747500px;}
.y233{bottom:308.180400px;}
.y194{bottom:308.789850px;}
.y25a{bottom:312.004350px;}
.y1e2{bottom:312.356850px;}
.y2ab{bottom:312.868500px;}
.y13a{bottom:314.700300px;}
.yc2{bottom:315.078900px;}
.y34f{bottom:317.218050px;}
.y172{bottom:318.112200px;}
.y22{bottom:318.898950px;}
.y282{bottom:320.087700px;}
.y32e{bottom:322.234350px;}
.y4d{bottom:323.946150px;}
.y306{bottom:326.471550px;}
.ye9{bottom:327.131400px;}
.y20b{bottom:327.454650px;}
.y1bc{bottom:327.652200px;}
.y7c{bottom:327.768450px;}
.y193{bottom:328.909500px;}
.y232{bottom:329.824650px;}
.y2aa{bottom:332.843250px;}
.y259{bottom:332.934000px;}
.yc1{bottom:335.535900px;}
.y171{bottom:337.912050px;}
.y10d{bottom:338.814900px;}
.y21{bottom:340.690500px;}
.y1e1{bottom:340.784850px;}
.y139{bottom:340.878300px;}
.y281{bottom:340.964850px;}
.y32d{bottom:340.984350px;}
.y1bb{bottom:346.817400px;}
.ye8{bottom:347.088600px;}
.y7b{bottom:347.789400px;}
.y20a{bottom:348.189600px;}
.y34e{bottom:349.270050px;}
.y2e6{bottom:349.903950px;}
.y2c4{bottom:352.817850px;}
.y305{bottom:354.524550px;}
.y192{bottom:355.407000px;}
.yc0{bottom:355.993050px;}
.y170{bottom:357.712200px;}
.y10c{bottom:360.172800px;}
.y2a9{bottom:361.321950px;}
.y258{bottom:362.367600px;}
.y20{bottom:362.482050px;}
.y4c{bottom:364.721100px;}
.ye7{bottom:367.045800px;}
.y7a{bottom:367.810350px;}
.y32c{bottom:368.238300px;}
.y231{bottom:368.476800px;}
.y2e5{bottom:369.704100px;}
.y34d{bottom:369.808800px;}
.y280{bottom:370.345950px;}
.y1ba{bottom:372.360600px;}
.y304{bottom:374.073600px;}
.ybf{bottom:376.450200px;}
.y16f{bottom:377.512200px;}
.y138{bottom:377.686200px;}
.y1e0{bottom:379.842750px;}
.y2a8{bottom:381.296550px;}
.y10b{bottom:381.530550px;}
.y257{bottom:383.297400px;}
.y1f{bottom:384.273450px;}
.y4b{bottom:384.888300px;}
.y209{bottom:385.932600px;}
.ye6{bottom:387.003000px;}
.y79{bottom:387.831300px;}
.y2e4{bottom:389.503950px;}
.y230{bottom:390.120900px;}
.y27f{bottom:391.223100px;}
.y191{bottom:392.534400px;}
.y32b{bottom:395.492250px;}
.y34c{bottom:396.725400px;}
.ybe{bottom:396.907350px;}
.y16e{bottom:397.312200px;}
.y137{bottom:397.486200px;}
.y2a7{bottom:401.271300px;}
.y1df{bottom:401.892900px;}
.y303{bottom:402.126600px;}
.y10a{bottom:402.888300px;}
.y256{bottom:404.227050px;}
.y4a{bottom:405.055500px;}
.y1e{bottom:406.065000px;}
.y208{bottom:406.667550px;}
.ye5{bottom:406.960350px;}
.y78{bottom:407.852250px;}
.y1b9{bottom:408.533550px;}
.y2e3{bottom:409.304100px;}
.y22f{bottom:411.765150px;}
.y27e{bottom:412.100100px;}
.y190{bottom:419.031900px;}
.y2a6{bottom:421.245900px;}
.y302{bottom:421.675800px;}
.y32a{bottom:422.746200px;}
.y136{bottom:423.664200px;}
.y109{bottom:424.246050px;}
.ye4{bottom:426.917550px;}
.y207{bottom:427.402500px;}
.y1b8{bottom:427.698750px;}
.y1d{bottom:427.856550px;}
.y77{bottom:427.873200px;}
.y2e2{bottom:429.103950px;}
.y1de{bottom:430.320900px;}
.y22e{bottom:433.409400px;}
.y255{bottom:433.660650px;}
.ybd{bottom:434.372400px;}
.y34b{bottom:439.766400px;}
.y2a5{bottom:441.220650px;}
.y27d{bottom:441.481200px;}
.y329{bottom:441.496200px;}
.y49{bottom:442.230600px;}
.y1b7{bottom:446.863950px;}
.ye3{bottom:446.874750px;}
.y76{bottom:447.894150px;}
.y206{bottom:448.137450px;}
.y2e1{bottom:448.903950px;}
.y1c{bottom:449.648100px;}
.y2c3{bottom:449.724600px;}
.y301{bottom:449.728800px;}
.y162{bottom:450.708600px;}
.y108{bottom:451.981800px;}
.y254{bottom:454.590300px;}
.ybc{bottom:454.829550px;}
.y22d{bottom:455.053650px;}
.y18f{bottom:456.159450px;}
.y34a{bottom:460.305150px;}
.y135{bottom:460.472100px;}
.y2a4{bottom:461.195400px;}
.y27c{bottom:462.358350px;}
.y48{bottom:462.397950px;}
.ye2{bottom:466.831950px;}
.y75{bottom:467.915100px;}
.y2e0{bottom:468.704100px;}
.y328{bottom:468.750150px;}
.y300{bottom:469.277850px;}
.y1dd{bottom:469.378650px;}
.y2c2{bottom:469.699200px;}
.y161{bottom:470.767200px;}
.ybb{bottom:475.286700px;}
.y18e{bottom:476.278950px;}
.y22c{bottom:476.697900px;}
.y134{bottom:480.271950px;}
.y349{bottom:480.843750px;}
.y47{bottom:482.565150px;}
.y253{bottom:484.023900px;}
.y205{bottom:485.880300px;}
.ye1{bottom:486.789150px;}
.y327{bottom:487.500150px;}
.y74{bottom:487.936050px;}
.y2df{bottom:488.503950px;}
.y2a3{bottom:489.673950px;}
.y107{bottom:490.347450px;}
.y160{bottom:490.825800px;}
.y1dc{bottom:491.428800px;}
.y27b{bottom:491.739300px;}
.y1b{bottom:493.941900px;}
.yba{bottom:495.743700px;}
.y1b6{bottom:495.792900px;}
.y18d{bottom:496.398600px;}
.y2ff{bottom:497.331000px;}
.y2c1{bottom:498.177900px;}
.y22b{bottom:498.342000px;}
.y133{bottom:500.071950px;}
.y348{bottom:501.382500px;}
.y46{bottom:502.732350px;}
.y252{bottom:504.953700px;}
.y204{bottom:506.615400px;}
.ye0{bottom:506.746350px;}
.y73{bottom:507.957000px;}
.y2a2{bottom:509.648700px;}
.y15f{bottom:510.884250px;}
.y106{bottom:511.705350px;}
.y27a{bottom:512.616450px;}
.y1db{bottom:513.478800px;}
.y326{bottom:514.754100px;}
.y1a{bottom:515.733450px;}
.yb9{bottom:516.200850px;}
.y2fe{bottom:516.880050px;}
.y2c0{bottom:518.152650px;}
.y132{bottom:519.872100px;}
.y22a{bottom:519.986250px;}
.y1b5{bottom:521.336100px;}
.y347{bottom:521.921100px;}
.y18c{bottom:522.896100px;}
.y45{bottom:522.899550px;}
.ydf{bottom:526.703550px;}
.y72{bottom:527.977950px;}
.y2a1{bottom:529.623300px;}
.y15e{bottom:530.942850px;}
.y105{bottom:533.063100px;}
.y251{bottom:534.387300px;}
.y1da{bottom:535.528800px;}
.yb8{bottom:536.658000px;}
.y19{bottom:537.524850px;}
.y2bf{bottom:538.127250px;}
.y131{bottom:539.671950px;}
.y229{bottom:541.630500px;}
.y279{bottom:541.997400px;}
.y325{bottom:542.008050px;}
.y346{bottom:542.459850px;}
.y203{bottom:544.358250px;}
.y2fd{bottom:544.933050px;}
.y71{bottom:547.998900px;}
.y15d{bottom:551.001450px;}
.yde{bottom:553.038750px;}
.y250{bottom:555.316950px;}
.y1b4{bottom:557.509200px;}
.y1d9{bottom:557.578800px;}
.y2a0{bottom:558.102000px;}
.y18{bottom:559.316400px;}
.y2de{bottom:559.327650px;}
.y130{bottom:559.472100px;}
.y18b{bottom:560.023500px;}
.y44{bottom:560.074650px;}
.y104{bottom:560.798700px;}
.y278{bottom:562.874550px;}
.y228{bottom:563.274750px;}
.y2fc{bottom:564.482100px;}
.y202{bottom:565.093200px;}
.y2be{bottom:566.605950px;}
.y70{bottom:568.019700px;}
.y324{bottom:569.262000px;}
.y15c{bottom:571.060050px;}
.yb7{bottom:574.123050px;}
.y345{bottom:574.511850px;}
.y24f{bottom:576.246600px;}
.y2dd{bottom:579.127650px;}
.y12f{bottom:579.271950px;}
.y1d8{bottom:579.628950px;}
.y18a{bottom:580.143150px;}
.y43{bottom:580.241850px;}
.y17{bottom:581.107950px;}
.y1b3{bottom:583.052250px;}
.y227{bottom:584.919000px;}
.y29f{bottom:586.580550px;}
.y323{bottom:588.012000px;}
.y6f{bottom:588.040800px;}
.ydd{bottom:590.003850px;}
.y15b{bottom:591.118500px;}
.y277{bottom:592.255650px;}
.y2fb{bottom:592.535250px;}
.yb6{bottom:594.580200px;}
.y344{bottom:595.050450px;}
.y2dc{bottom:598.927650px;}
.y12e{bottom:599.071950px;}
.y103{bottom:599.164500px;}
.y189{bottom:600.262650px;}
.y42{bottom:600.409050px;}
.y1d7{bottom:601.678950px;}
.y201{bottom:602.836050px;}
.y24e{bottom:605.680200px;}
.y29e{bottom:606.555300px;}
.y226{bottom:606.563250px;}
.y6e{bottom:608.061750px;}
.ydc{bottom:609.961050px;}
.y15a{bottom:611.177100px;}
.y2fa{bottom:612.084300px;}
.y276{bottom:613.132650px;}
.y16{bottom:614.412900px;}
.yb5{bottom:615.037350px;}
.y2bd{bottom:615.059250px;}
.y322{bottom:615.265950px;}
.y343{bottom:615.589200px;}
.y12d{bottom:618.872100px;}
.y1b2{bottom:619.225350px;}
.y102{bottom:620.522250px;}
.y41{bottom:620.576250px;}
.y200{bottom:623.571150px;}
.y1d6{bottom:623.728950px;}
.y29d{bottom:626.530050px;}
.y24d{bottom:626.610000px;}
.y2db{bottom:627.231600px;}
.y6d{bottom:628.082550px;}
.y225{bottom:628.207350px;}
.ydb{bottom:629.918250px;}
.y275{bottom:634.009800px;}
.y2bc{bottom:635.034000px;}
.yb4{bottom:635.494500px;}
.y159{bottom:637.613700px;}
.y1b1{bottom:638.390550px;}
.y12c{bottom:638.671950px;}
.y2f9{bottom:640.137300px;}
.y40{bottom:640.743600px;}
.y15{bottom:641.698800px;}
.y101{bottom:641.880000px;}
.y342{bottom:642.505800px;}
.y321{bottom:642.519900px;}
.y1ff{bottom:644.306100px;}
.y1d5{bottom:645.778950px;}
.y2da{bottom:647.031600px;}
.y24c{bottom:647.539650px;}
.y6c{bottom:648.103500px;}
.y188{bottom:650.146050px;}
.y29c{bottom:655.008600px;}
.yb3{bottom:655.951650px;}
.y14{bottom:657.995850px;}
.y12b{bottom:658.472100px;}
.y2f8{bottom:659.686350px;}
.y3f{bottom:660.910650px;}
.y9b{bottom:661.047450px;}
.y320{bottom:661.269900px;}
.y274{bottom:663.390900px;}
.y1b0{bottom:663.933600px;}
.y1fe{bottom:665.041050px;}
.y2d9{bottom:666.831600px;}
.y224{bottom:666.859500px;}
.yda{bottom:666.883350px;}
.y1d4{bottom:667.828950px;}
.y6b{bottom:668.124450px;}
.y158{bottom:674.680050px;}
.y29b{bottom:674.983350px;}
.yb2{bottom:676.408650px;}
.y187{bottom:676.643550px;}
.y24b{bottom:676.973250px;}
.y12a{bottom:678.271950px;}
.y9a{bottom:680.847450px;}
.y3e{bottom:681.078000px;}
.y2bb{bottom:683.487300px;}
.y273{bottom:684.267900px;}
.y13{bottom:685.281900px;}
.y341{bottom:685.546800px;}
.yd9{bottom:686.840550px;}
.y2f7{bottom:687.739500px;}
.y6a{bottom:688.145400px;}
.y223{bottom:688.503750px;}
.y31f{bottom:688.523850px;}
.y1d3{bottom:689.878950px;}
.y100{bottom:693.001500px;}
.y157{bottom:694.738650px;}
.y29a{bottom:694.958100px;}
.y2d8{bottom:695.135550px;}
.yb1{bottom:696.865800px;}
.y24a{bottom:697.902900px;}
.y129{bottom:698.071950px;}
.y1af{bottom:700.106700px;}
.y99{bottom:700.647450px;}
.y12{bottom:701.578800px;}
.y1fd{bottom:702.783900px;}
.y2ba{bottom:703.461900px;}
.y340{bottom:706.085550px;}
.yd8{bottom:706.797750px;}
.y2f6{bottom:707.288550px;}
.y222{bottom:710.148000px;}
.y1d2{bottom:711.928950px;}
.y272{bottom:713.649000px;}
.y186{bottom:713.771100px;}
.y156{bottom:714.797250px;}
.y2d7{bottom:714.935550px;}
.y31e{bottom:715.777800px;}
.y128{bottom:717.872100px;}
.y3d{bottom:718.253100px;}
.y249{bottom:718.832550px;}
.y1ae{bottom:719.271900px;}
.y98{bottom:720.447450px;}
.yff{bottom:720.737250px;}
.y299{bottom:723.436650px;}
.y1fc{bottom:723.518850px;}
.y69{bottom:725.174250px;}
.y33f{bottom:726.624150px;}
.y11{bottom:728.864850px;}
.y2b9{bottom:731.940600px;}
.yd7{bottom:733.132950px;}
.y1d1{bottom:733.979100px;}
.yb0{bottom:734.330850px;}
.y271{bottom:734.526150px;}
.y31d{bottom:734.527800px;}
.y2f5{bottom:735.341550px;}
.y127{bottom:737.671950px;}
.y3c{bottom:738.420300px;}
.y1ad{bottom:738.437100px;}
.y97{bottom:740.247450px;}
.y185{bottom:740.268600px;}
.y2d6{bottom:743.239500px;}
.y298{bottom:743.411400px;}
.y10{bottom:745.161900px;}
.y68{bottom:745.195200px;}
.y248{bottom:748.266300px;}
.y221{bottom:748.800000px;}
.y155{bottom:751.863750px;}
.y2b8{bottom:751.915350px;}
.yaf{bottom:754.788000px;}
.y270{bottom:755.403150px;}
.y1d0{bottom:756.029100px;}
.y126{bottom:757.472100px;}
.y1ac{bottom:757.602150px;}
.y3b{bottom:758.587500px;}
.y33e{bottom:758.676300px;}
.yfe{bottom:759.102900px;}
.y96{bottom:760.047450px;}
.y1fb{bottom:761.261700px;}
.y31c{bottom:761.781600px;}
.y2d5{bottom:763.039500px;}
.y2f4{bottom:763.394550px;}
.y67{bottom:765.216150px;}
.y362{bottom:766.562550px;}
.y247{bottom:769.195950px;}
.yd6{bottom:770.098050px;}
.y220{bottom:770.444250px;}
.y297{bottom:771.889950px;}
.y154{bottom:771.922350px;}
.yf{bottom:772.447950px;}
.yae{bottom:775.245150px;}
.y1ab{bottom:776.767350px;}
.y125{bottom:777.271950px;}
.y184{bottom:777.396000px;}
.y1cf{bottom:778.079100px;}
.y3a{bottom:778.754700px;}
.y33d{bottom:779.214900px;}
.y95{bottom:779.847450px;}
.y2b7{bottom:780.393900px;}
.y31b{bottom:780.531600px;}
.y1fa{bottom:781.996800px;}
.y2d4{bottom:782.839350px;}
.y2f3{bottom:782.943750px;}
.y26f{bottom:784.784250px;}
.y66{bottom:785.237100px;}
.yfd{bottom:786.838650px;}
.y296{bottom:791.864700px;}
.y153{bottom:791.980800px;}
.y21f{bottom:792.088500px;}
.yad{bottom:795.702150px;}
.y1aa{bottom:795.932550px;}
.yd5{bottom:796.433250px;}
.y183{bottom:797.515650px;}
.y361{bottom:797.875800px;}
.y246{bottom:798.629550px;}
.y39{bottom:798.921900px;}
.y94{bottom:799.647450px;}
.y33c{bottom:799.753650px;}
.y1ce{bottom:800.129100px;}
.y2b6{bottom:800.368650px;}
.ye{bottom:801.500850px;}
.y2d3{bottom:802.639500px;}
.y1f9{bottom:802.731750px;}
.y124{bottom:803.449950px;}
.y65{bottom:805.258050px;}
.y26e{bottom:805.661250px;}
.y31a{bottom:807.785550px;}
.y2f2{bottom:810.996750px;}
.y21e{bottom:813.732750px;}
.y1a9{bottom:815.097750px;}
.yac{bottom:816.159300px;}
.y360{bottom:817.675800px;}
.y152{bottom:818.417400px;}
.y38{bottom:819.089100px;}
.y93{bottom:819.447450px;}
.y245{bottom:819.559200px;}
.y295{bottom:820.343250px;}
.y1cd{bottom:822.179100px;}
.y1f8{bottom:823.466700px;}
.y182{bottom:824.013000px;}
.yd{bottom:825.092250px;}
.yfc{bottom:825.204300px;}
.y64{bottom:825.279000px;}
.y319{bottom:826.535550px;}
.y26d{bottom:826.538400px;}
.y33b{bottom:826.670250px;}
.y2f1{bottom:830.545800px;}
.y2d2{bottom:830.943450px;}
.yd4{bottom:833.398350px;}
.y1a8{bottom:834.262950px;}
.y21d{bottom:835.377000px;}
.yab{bottom:836.616450px;}
.y37{bottom:839.256450px;}
.y35f{bottom:843.853800px;}
.y1cc{bottom:844.229250px;}
.y63{bottom:845.299950px;}
.yfb{bottom:846.562200px;}
.y92{bottom:847.751400px;}
.y294{bottom:848.821950px;}
.y244{bottom:848.992800px;}
.y144{bottom:849.124050px;}
.y2d1{bottom:850.743300px;}
.yd3{bottom:853.355550px;}
.y1a7{bottom:853.428150px;}
.y318{bottom:853.789650px;}
.y151{bottom:855.483750px;}
.y26c{bottom:855.919500px;}
.y21c{bottom:857.021250px;}
.yaa{bottom:857.073600px;}
.y2f0{bottom:858.598800px;}
.y36{bottom:859.423650px;}
.y181{bottom:861.140550px;}
.y1f7{bottom:861.209700px;}
.y33a{bottom:864.216750px;}
.y62{bottom:865.320900px;}
.y1cb{bottom:866.279250px;}
.y143{bottom:866.988300px;}
.y293{bottom:868.796700px;}
.y243{bottom:869.922600px;}
.y2d0{bottom:870.543300px;}
.y317{bottom:872.539650px;}
.y1a6{bottom:872.593350px;}
.yd2{bottom:873.312900px;}
.yfa{bottom:874.297800px;}
.y150{bottom:875.542350px;}
.y26b{bottom:876.796500px;}
.ya9{bottom:877.530750px;}
.y91{bottom:877.855350px;}
.y2ef{bottom:878.147850px;}
.y21b{bottom:878.665500px;}
.y35{bottom:879.590850px;}
.y180{bottom:881.260050px;}
.y1f6{bottom:881.944650px;}
.y339{bottom:884.755350px;}
.y142{bottom:884.852550px;}
.y61{bottom:885.341850px;}
.y35e{bottom:886.156200px;}
.y2b5{bottom:888.771300px;}
.y1a5{bottom:891.758400px;}
.y1ca{bottom:894.707100px;}
.y292{bottom:897.275250px;}
.y26a{bottom:897.673500px;}
.ya8{bottom:897.987900px;}
.y2cf{bottom:898.847400px;}
.y242{bottom:899.356200px;}
.yd1{bottom:899.647950px;}
.yc{bottom:899.707350px;}
.y34{bottom:899.758050px;}
.y316{bottom:899.793450px;}
.y21a{bottom:900.309750px;}
.y17f{bottom:901.379550px;}
.y14f{bottom:901.978950px;}
.y141{bottom:902.716950px;}
.y60{bottom:905.362800px;}
.y2ee{bottom:906.201000px;}
.y1a4{bottom:910.923450px;}
.y338{bottom:911.672100px;}
.y291{bottom:917.250000px;}
.y35d{bottom:917.469600px;}
.y90{bottom:918.263100px;}
.ya7{bottom:918.445050px;}
.y315{bottom:918.543450px;}
.y269{bottom:918.550650px;}
.y2ce{bottom:918.647250px;}
.y1f5{bottom:919.687500px;}
.y33{bottom:919.925250px;}
.y241{bottom:920.285850px;}
.y140{bottom:920.581200px;}
.y11a{bottom:920.689950px;}
.y17e{bottom:921.499200px;}
.y219{bottom:921.954000px;}
.y2ed{bottom:925.750050px;}
.yb{bottom:928.698900px;}
.y1a3{bottom:930.088650px;}
.yd0{bottom:936.613050px;}
.y290{bottom:937.224600px;}
.y35c{bottom:937.269600px;}
.y8f{bottom:938.063100px;}
.y13f{bottom:938.445450px;}
.y2cd{bottom:938.447250px;}
.y119{bottom:938.554200px;}
.ya6{bottom:938.902200px;}
.y14e{bottom:939.045300px;}
.y32{bottom:940.092450px;}
.y1ed{bottom:940.381200px;}
.y1f4{bottom:940.422600px;}
.y17d{bottom:941.618700px;}
.y5f{bottom:942.391500px;}
.y218{bottom:943.598100px;}
.y314{bottom:945.797400px;}
.y268{bottom:947.931750px;}
.y1a2{bottom:949.253850px;}
.y240{bottom:949.719600px;}
.y2ec{bottom:953.803050px;}
.y337{bottom:954.713100px;}
.y118{bottom:956.309850px;}
.ycf{bottom:956.570250px;}
.y8e{bottom:957.863100px;}
.y1ec{bottom:958.245450px;}
.y2cc{bottom:958.247250px;}
.y14d{bottom:959.103900px;}
.ya5{bottom:959.359350px;}
.y31{bottom:960.259650px;}
.y1f3{bottom:961.157550px;}
.y17c{bottom:961.738350px;}
.y5e{bottom:962.412450px;}
.y35b{bottom:963.447450px;}
.y313{bottom:964.547400px;}
.y217{bottom:965.242350px;}
.y28f{bottom:965.703300px;}
.y1a1{bottom:968.419050px;}
.y267{bottom:968.808900px;}
.y23f{bottom:970.649250px;}
.y2eb{bottom:973.352250px;}
.y13e{bottom:974.173950px;}
.y117{bottom:974.282850px;}
.y1eb{bottom:976.109850px;}
.yce{bottom:976.527450px;}
.y8d{bottom:977.663250px;}
.y14c{bottom:979.162500px;}
.ya4{bottom:979.816350px;}
.y30{bottom:980.426850px;}
.y17b{bottom:981.858000px;}
.y5d{bottom:982.433400px;}
.y28e{bottom:985.678050px;}
.y2cb{bottom:986.551350px;}
.y336{bottom:986.765100px;}
.y1a0{bottom:987.584250px;}
.y266{bottom:989.685900px;}
.y312{bottom:991.801350px;}
.y116{bottom:991.929600px;}
.y1ea{bottom:993.974100px;}
.y216{bottom:995.390550px;}
.y8c{bottom:997.463250px;}
.y1f2{bottom:998.900400px;}
.y14b{bottom:999.220950px;}
.y13d{bottom:1000.029450px;}
.y23e{bottom:1000.082850px;}
.ya3{bottom:1000.273650px;}
.y17a{bottom:1001.977500px;}
.y5c{bottom:1002.454500px;}
.y2b4{bottom:1005.652650px;}
.y35a{bottom:1005.749850px;}
.y2ca{bottom:1006.351350px;}
.y19f{bottom:1006.749450px;}
.y335{bottom:1007.303700px;}
.y115{bottom:1008.129600px;}
.y2f{bottom:1009.098000px;}
.y2ea{bottom:1009.909200px;}
.y311{bottom:1010.551350px;}
.y265{bottom:1010.563050px;}
.y1e9{bottom:1011.729600px;}
.ycd{bottom:1013.492550px;}
.y28d{bottom:1014.156600px;}
.y8b{bottom:1017.263100px;}
.y1f1{bottom:1019.635350px;}
.y1e8{bottom:1019.829600px;}
.ya2{bottom:1020.730650px;}
.y23d{bottom:1021.012500px;}
.y179{bottom:1022.097000px;}
.y5b{bottom:1022.475450px;}
.y2b3{bottom:1025.627400px;}
.y14a{bottom:1025.657550px;}
.y19e{bottom:1025.914650px;}
.y2c9{bottom:1026.151350px;}
.y2e9{bottom:1030.508250px;}
.ycc{bottom:1033.449750px;}
.y28c{bottom:1034.131350px;}
.y334{bottom:1034.220300px;}
.y8a{bottom:1037.063100px;}
.y359{bottom:1037.063250px;}
.y215{bottom:1037.642700px;}
.y310{bottom:1037.805300px;}
.y264{bottom:1039.944000px;}
.y1f0{bottom:1040.370450px;}
.ya1{bottom:1041.187800px;}
.y178{bottom:1042.216650px;}
.y5a{bottom:1042.496400px;}
.y11d{bottom:1043.159250px;}
.y19d{bottom:1045.079700px;}
.ya{bottom:1049.643600px;}
.y23c{bottom:1050.446100px;}
.y2e8{bottom:1051.107300px;}
.ycb{bottom:1053.406950px;}
.y28b{bottom:1054.105950px;}
.y2c8{bottom:1054.455300px;}
.y30f{bottom:1056.555300px;}
.y89{bottom:1056.863100px;}
.y358{bottom:1056.863250px;}
.y214{bottom:1059.286950px;}
.y263{bottom:1060.821150px;}
.y1ef{bottom:1061.105400px;}
.ya0{bottom:1061.644950px;}
.y177{bottom:1062.336150px;}
.y59{bottom:1062.517350px;}
.y149{bottom:1062.724050px;}
.y147{bottom:1062.959100px;}
.y11c{bottom:1062.959250px;}
.y19c{bottom:1064.244900px;}
.y2e{bottom:1066.881000px;}
.y23b{bottom:1071.375750px;}
.y2e7{bottom:1071.706350px;}
.y333{bottom:1071.766800px;}
.yca{bottom:1073.364150px;}
.y2c7{bottom:1074.255300px;}
.y88{bottom:1076.663250px;}
.y9{bottom:1080.451500px;}
.y213{bottom:1080.931050px;}
.y262{bottom:1081.698150px;}
.y1ee{bottom:1081.840350px;}
.y9f{bottom:1082.102100px;}
.y176{bottom:1082.455800px;}
.y58{bottom:1082.538300px;}
.y28a{bottom:1082.584500px;}
.y146{bottom:1082.759100px;}
.y11b{bottom:1082.759250px;}
.y148{bottom:1082.782500px;}
.y19b{bottom:1083.410100px;}
.y30e{bottom:1083.809250px;}
.y2d{bottom:1085.248200px;}
.y23a{bottom:1100.809500px;}
.yc9{bottom:1101.825300px;}
.y145{bottom:1102.559100px;}
.y57{bottom:1102.559250px;}
.y175{bottom:1102.575300px;}
.y87{bottom:1102.841100px;}
.y357{bottom:1102.841250px;}
.y2c{bottom:1103.615400px;}
.y8{bottom:1105.155450px;}
.y7{bottom:1142.615250px;}
.y2b{bottom:1143.779550px;}
.y56{bottom:1143.795600px;}
.y6{bottom:1160.770500px;}
.y3{bottom:1180.554450px;}
.y5{bottom:1180.570650px;}
.y2{bottom:1200.354450px;}
.y4{bottom:1200.370650px;}
.ha{height:26.735446px;}
.h18{height:36.597656px;}
.h13{height:36.649908px;}
.h15{height:36.650508px;}
.h14{height:37.084908px;}
.h17{height:37.085508px;}
.h4{height:37.494141px;}
.h3{height:37.520508px;}
.h11{height:37.625977px;}
.hb{height:41.689453px;}
.hd{height:44.730469px;}
.h1c{height:45.826172px;}
.h2{height:45.858398px;}
.h5{height:45.987305px;}
.h1d{height:48.694658px;}
.he{height:48.713446px;}
.h1e{height:48.714046px;}
.h10{height:48.796875px;}
.h1a{height:52.851562px;}
.hc{height:52.863281px;}
.h9{height:53.141341px;}
.h8{height:53.141941px;}
.hf{height:54.348633px;}
.h7{height:60.996094px;}
.h6{height:62.709961px;}
.h12{height:68.997056px;}
.h19{height:68.997656px;}
.h1b{height:70.025977px;}
.h16{height:70.026577px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299150px;}
.x29{left:107.362200px;}
.x2d{left:108.425100px;}
.x21{left:110.551200px;}
.x14{left:113.121300px;}
.x24{left:114.399150px;}
.xa{left:129.616500px;}
.xc{left:131.473500px;}
.x12{left:147.140400px;}
.x2{left:157.786800px;}
.x10{left:164.510550px;}
.xe{left:169.101000px;}
.xb{left:171.139350px;}
.x7{left:200.595600px;}
.x2b{left:216.947100px;}
.x1f{left:221.527350px;}
.x2a{left:231.372600px;}
.x1c{left:241.008300px;}
.x8{left:251.375400px;}
.x26{left:252.460800px;}
.xd{left:256.219050px;}
.x16{left:262.455150px;}
.x11{left:273.831150px;}
.xf{left:277.738500px;}
.x19{left:281.059950px;}
.x15{left:284.594700px;}
.x1a{left:298.210500px;}
.x13{left:313.409400px;}
.x18{left:323.605050px;}
.x1b{left:325.458000px;}
.x1d{left:327.677700px;}
.x25{left:329.123550px;}
.x17{left:332.100750px;}
.x9{left:364.822800px;}
.x20{left:368.581200px;}
.x2c{left:372.706200px;}
.x1e{left:376.831200px;}
.x22{left:386.929200px;}
.x27{left:395.433000px;}
.x2e{left:397.351200px;}
.x1{left:434.081700px;}
.x28{left:555.307050px;}
.x23{left:558.070800px;}
.x3{left:581.049000px;}
.x5{left:648.426600px;}
.x4{left:675.843450px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v3{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.536000pt;}
.v1{vertical-align:21.312000pt;}
.v5{vertical-align:28.799467pt;}
.ls2d{letter-spacing:-7.626667pt;}
.ls20{letter-spacing:-7.568000pt;}
.ls36{letter-spacing:-2.170667pt;}
.ls15{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.586667pt;}
.ls28{letter-spacing:-0.410667pt;}
.ls11{letter-spacing:-0.352000pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.234667pt;}
.lsf{letter-spacing:-0.176000pt;}
.ls16{letter-spacing:-0.136811pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000267pt;}
.ls18{letter-spacing:0.000533pt;}
.ls33{letter-spacing:0.004650pt;}
.ls22{letter-spacing:0.009600pt;}
.ls29{letter-spacing:0.010133pt;}
.ls24{letter-spacing:0.017045pt;}
.lsc{letter-spacing:0.058667pt;}
.ls2f{letter-spacing:0.072766pt;}
.ls3{letter-spacing:0.117333pt;}
.ls13{letter-spacing:0.134933pt;}
.lsb{letter-spacing:0.146667pt;}
.ls4{letter-spacing:0.176000pt;}
.ls1a{letter-spacing:0.199467pt;}
.lsa{letter-spacing:0.205333pt;}
.ls23{letter-spacing:0.217094pt;}
.ls6{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.293333pt;}
.ls32{letter-spacing:0.294977pt;}
.ls1e{letter-spacing:0.303467pt;}
.ls12{letter-spacing:0.352000pt;}
.ls3d{letter-spacing:0.381333pt;}
.ls19{letter-spacing:0.391467pt;}
.ls35{letter-spacing:0.410297pt;}
.ls34{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.469333pt;}
.ls17{letter-spacing:0.528000pt;}
.ls2a{letter-spacing:0.543467pt;}
.ls39{letter-spacing:0.557333pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls3a{letter-spacing:0.645333pt;}
.ls26{letter-spacing:0.704000pt;}
.ls3e{letter-spacing:0.762667pt;}
.ls40{letter-spacing:0.792000pt;}
.ls3b{letter-spacing:0.821333pt;}
.ls30{letter-spacing:0.988267pt;}
.ls37{letter-spacing:1.114667pt;}
.ls1b{letter-spacing:1.266133pt;}
.ls21{letter-spacing:1.755733pt;}
.ls1f{letter-spacing:1.854400pt;}
.ls1c{letter-spacing:2.206933pt;}
.ls1d{letter-spacing:2.578667pt;}
.ls25{letter-spacing:3.142120pt;}
.ls31{letter-spacing:3.189852pt;}
.ls2c{letter-spacing:3.808845pt;}
.ls3c{letter-spacing:4.194323pt;}
.ls38{letter-spacing:5.178086pt;}
.ls0{letter-spacing:11.733333pt;}
.ls1{letter-spacing:31.306667pt;}
.ls2{letter-spacing:31.307200pt;}
.ls2b{letter-spacing:75.939733pt;}
.ls27{letter-spacing:111.467733pt;}
.wsdd{word-spacing:-59.488000pt;}
.wsde{word-spacing:-59.312000pt;}
.wsbd{word-spacing:-59.136000pt;}
.wscc{word-spacing:-59.077333pt;}
.wsaa{word-spacing:-59.018667pt;}
.wsb1{word-spacing:-58.842667pt;}
.wsbe{word-spacing:-58.725333pt;}
.ws87{word-spacing:-58.666667pt;}
.wsbc{word-spacing:-58.608000pt;}
.wsb3{word-spacing:-58.549333pt;}
.wsc9{word-spacing:-58.490667pt;}
.wscb{word-spacing:-58.373333pt;}
.ws1{word-spacing:-20.000000pt;}
.ws15{word-spacing:-17.333333pt;}
.ws58{word-spacing:-16.000000pt;}
.wsdc{word-spacing:-15.488000pt;}
.wsc6{word-spacing:-15.253333pt;}
.ws19{word-spacing:-15.136000pt;}
.ws73{word-spacing:-15.018667pt;}
.wsc2{word-spacing:-14.960000pt;}
.ws17{word-spacing:-14.901333pt;}
.ws16{word-spacing:-14.872000pt;}
.ws49{word-spacing:-14.866133pt;}
.ws1a{word-spacing:-14.842667pt;}
.ws2f{word-spacing:-14.801600pt;}
.ws5{word-spacing:-14.784000pt;}
.ws4b{word-spacing:-14.725333pt;}
.ws0{word-spacing:-14.666667pt;}
.ws18{word-spacing:-14.608000pt;}
.ws4c{word-spacing:-14.549333pt;}
.wsb2{word-spacing:-14.490667pt;}
.ws4{word-spacing:-14.432000pt;}
.wsca{word-spacing:-14.373333pt;}
.wsb8{word-spacing:-14.314667pt;}
.ws14{word-spacing:-13.333333pt;}
.ws90{word-spacing:-12.437333pt;}
.ws98{word-spacing:-12.085333pt;}
.ws66{word-spacing:-12.000000pt;}
.wsa0{word-spacing:-11.850667pt;}
.ws95{word-spacing:-11.674667pt;}
.ws9a{word-spacing:-11.616000pt;}
.ws99{word-spacing:-11.205333pt;}
.wsa9{word-spacing:-11.029333pt;}
.wsa1{word-spacing:-10.736000pt;}
.wsa5{word-spacing:-10.560000pt;}
.ws9b{word-spacing:-10.442667pt;}
.ws9c{word-spacing:-9.562667pt;}
.ws2{word-spacing:-9.328000pt;}
.wsa4{word-spacing:-9.210667pt;}
.ws9f{word-spacing:-9.034667pt;}
.ws8f{word-spacing:-8.976000pt;}
.ws3{word-spacing:-8.550667pt;}
.ws30{word-spacing:-8.413856pt;}
.wsab{word-spacing:-7.978667pt;}
.wsa{word-spacing:-7.333333pt;}
.wsa2{word-spacing:-7.157333pt;}
.ws4a{word-spacing:-7.098667pt;}
.ws74{word-spacing:-7.040000pt;}
.wsd7{word-spacing:-6.453333pt;}
.wse8{word-spacing:-6.218667pt;}
.wse9{word-spacing:-6.160000pt;}
.ws97{word-spacing:-6.101333pt;}
.ws91{word-spacing:-6.000000pt;}
.ws9e{word-spacing:-5.925333pt;}
.ws1d{word-spacing:-5.632000pt;}
.wsb4{word-spacing:-5.573333pt;}
.ws93{word-spacing:-5.338667pt;}
.wse1{word-spacing:-4.986667pt;}
.wsd2{word-spacing:-4.517333pt;}
.wsa8{word-spacing:-4.341333pt;}
.ws62{word-spacing:-4.165333pt;}
.wscd{word-spacing:-3.989333pt;}
.wse0{word-spacing:-3.930667pt;}
.wsb9{word-spacing:-3.872000pt;}
.wsd0{word-spacing:-3.637333pt;}
.ws8{word-spacing:-3.520000pt;}
.wsd3{word-spacing:-3.461333pt;}
.wsa6{word-spacing:-3.402667pt;}
.wsae{word-spacing:-3.285333pt;}
.ws79{word-spacing:-3.226667pt;}
.wsc4{word-spacing:-3.050667pt;}
.wsb{word-spacing:-2.992000pt;}
.ws11{word-spacing:-2.933333pt;}
.ws2d{word-spacing:-2.874667pt;}
.ws51{word-spacing:-2.816000pt;}
.ws20{word-spacing:-2.757333pt;}
.ws80{word-spacing:-2.698667pt;}
.ws32{word-spacing:-2.640000pt;}
.ws7f{word-spacing:-2.581333pt;}
.ws6e{word-spacing:-2.522667pt;}
.ws46{word-spacing:-2.405333pt;}
.ws6c{word-spacing:-2.346667pt;}
.wsc8{word-spacing:-2.288000pt;}
.ws54{word-spacing:-2.170667pt;}
.ws9d{word-spacing:-2.112000pt;}
.wsea{word-spacing:-2.053333pt;}
.ws83{word-spacing:-1.994667pt;}
.ws6a{word-spacing:-1.936000pt;}
.ws75{word-spacing:-1.877333pt;}
.ws45{word-spacing:-1.818667pt;}
.ws36{word-spacing:-1.760000pt;}
.ws1f{word-spacing:-1.642667pt;}
.ws39{word-spacing:-1.584000pt;}
.wsba{word-spacing:-1.525333pt;}
.wsbb{word-spacing:-1.466667pt;}
.ws3b{word-spacing:-1.408000pt;}
.ws8b{word-spacing:-1.349333pt;}
.ws57{word-spacing:-1.290667pt;}
.ws7b{word-spacing:-1.232000pt;}
.ws53{word-spacing:-1.173333pt;}
.ws7{word-spacing:-1.152000pt;}
.ws78{word-spacing:-1.114667pt;}
.ws9{word-spacing:-1.056000pt;}
.ws8e{word-spacing:-0.997333pt;}
.ws56{word-spacing:-0.938667pt;}
.ws52{word-spacing:-0.880000pt;}
.ws7e{word-spacing:-0.821333pt;}
.wsf{word-spacing:-0.762667pt;}
.ws3c{word-spacing:-0.704000pt;}
.ws81{word-spacing:-0.645333pt;}
.ws40{word-spacing:-0.586667pt;}
.ws94{word-spacing:-0.528000pt;}
.ws2b{word-spacing:-0.469333pt;}
.wsc0{word-spacing:-0.410667pt;}
.ws1c{word-spacing:-0.352000pt;}
.ws12{word-spacing:-0.293333pt;}
.ws24{word-spacing:-0.234667pt;}
.ws29{word-spacing:-0.176000pt;}
.wsd{word-spacing:-0.117333pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws35{word-spacing:-0.058667pt;}
.ws6{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.058667pt;}
.ws21{word-spacing:0.117333pt;}
.ws38{word-spacing:0.176000pt;}
.wsc{word-spacing:0.234667pt;}
.ws34{word-spacing:0.293333pt;}
.ws27{word-spacing:0.352000pt;}
.ws4d{word-spacing:0.410667pt;}
.ws76{word-spacing:0.469333pt;}
.ws43{word-spacing:0.528000pt;}
.ws1e{word-spacing:0.586667pt;}
.wsb5{word-spacing:0.645333pt;}
.ws3d{word-spacing:0.704000pt;}
.wsdf{word-spacing:0.762667pt;}
.ws3a{word-spacing:0.821333pt;}
.ws6d{word-spacing:0.880000pt;}
.ws5f{word-spacing:0.938667pt;}
.ws47{word-spacing:0.997333pt;}
.ws28{word-spacing:1.056000pt;}
.ws3e{word-spacing:1.114667pt;}
.ws31{word-spacing:1.173333pt;}
.ws26{word-spacing:1.232000pt;}
.ws4e{word-spacing:1.290667pt;}
.ws86{word-spacing:1.349333pt;}
.ws64{word-spacing:1.408000pt;}
.ws8c{word-spacing:1.466667pt;}
.ws8d{word-spacing:1.525333pt;}
.ws63{word-spacing:1.584000pt;}
.wsc1{word-spacing:1.642667pt;}
.ws23{word-spacing:1.701333pt;}
.ws59{word-spacing:1.760000pt;}
.ws25{word-spacing:1.818667pt;}
.ws55{word-spacing:1.877333pt;}
.wseb{word-spacing:1.936000pt;}
.ws5a{word-spacing:1.994667pt;}
.ws42{word-spacing:2.053333pt;}
.wsd1{word-spacing:2.112000pt;}
.ws33{word-spacing:2.170667pt;}
.ws50{word-spacing:2.229333pt;}
.ws22{word-spacing:2.288000pt;}
.ws13{word-spacing:2.346667pt;}
.ws84{word-spacing:2.405333pt;}
.ws4f{word-spacing:2.464000pt;}
.wsb6{word-spacing:2.522667pt;}
.ws6b{word-spacing:2.581333pt;}
.ws7c{word-spacing:2.640000pt;}
.wsb7{word-spacing:2.698667pt;}
.wsad{word-spacing:2.757333pt;}
.wsa7{word-spacing:2.816000pt;}
.ws10{word-spacing:2.874667pt;}
.wse{word-spacing:2.933333pt;}
.ws7d{word-spacing:2.992000pt;}
.ws2e{word-spacing:3.168000pt;}
.ws82{word-spacing:3.226667pt;}
.ws6f{word-spacing:3.344000pt;}
.ws37{word-spacing:3.402667pt;}
.ws77{word-spacing:3.461333pt;}
.ws96{word-spacing:3.520000pt;}
.ws60{word-spacing:3.637333pt;}
.wsd6{word-spacing:3.696000pt;}
.wsd9{word-spacing:3.813333pt;}
.wsaf{word-spacing:4.048000pt;}
.ws92{word-spacing:4.106667pt;}
.wsac{word-spacing:4.282667pt;}
.ws48{word-spacing:4.341333pt;}
.ws44{word-spacing:4.400000pt;}
.wscf{word-spacing:4.458667pt;}
.ws2a{word-spacing:4.517333pt;}
.wsc5{word-spacing:4.693333pt;}
.wsa3{word-spacing:4.752000pt;}
.ws2c{word-spacing:4.928000pt;}
.wsdb{word-spacing:5.280000pt;}
.wsd5{word-spacing:5.338667pt;}
.ws41{word-spacing:5.456000pt;}
.wsce{word-spacing:5.573333pt;}
.ws85{word-spacing:5.690667pt;}
.wsb0{word-spacing:5.808000pt;}
.ws7a{word-spacing:5.866667pt;}
.wsc3{word-spacing:5.925333pt;}
.wsc7{word-spacing:6.042667pt;}
.wse5{word-spacing:6.218667pt;}
.wsda{word-spacing:6.336000pt;}
.wsd4{word-spacing:6.394667pt;}
.wse7{word-spacing:6.512000pt;}
.wse3{word-spacing:6.688000pt;}
.ws61{word-spacing:7.157333pt;}
.wse4{word-spacing:7.274667pt;}
.wse2{word-spacing:7.744000pt;}
.wsec{word-spacing:7.920000pt;}
.wse6{word-spacing:7.978667pt;}
.wsd8{word-spacing:8.213333pt;}
.wsbf{word-spacing:11.029333pt;}
.ws70{word-spacing:70.268267pt;}
.ws5c{word-spacing:105.796267pt;}
.ws72{word-spacing:178.268267pt;}
.ws71{word-spacing:191.716267pt;}
.ws5e{word-spacing:213.796267pt;}
.ws5d{word-spacing:293.764267pt;}
.ws89{word-spacing:317.146667pt;}
.ws68{word-spacing:379.754667pt;}
.ws8a{word-spacing:397.066667pt;}
.ws69{word-spacing:411.722667pt;}
.ws67{word-spacing:425.066667pt;}
.ws65{word-spacing:592.411733pt;}
.ws5b{word-spacing:811.624533pt;}
.ws88{word-spacing:848.680533pt;}
._b{margin-left:-12.091200pt;}
._a{margin-left:-9.627200pt;}
._8{margin-left:-8.127567pt;}
._4{margin-left:-7.148800pt;}
._1{margin-left:-5.403200pt;}
._3{margin-left:-3.889600pt;}
._0{margin-left:-2.176533pt;}
._2{margin-left:-1.108800pt;}
._5{width:1.521067pt;}
._7{width:2.986473pt;}
._6{width:4.246400pt;}
._9{width:5.493164pt;}
._48{width:6.474836pt;}
._c{width:7.501333pt;}
._d{width:8.435579pt;}
._46{width:10.116800pt;}
._3f{width:13.505600pt;}
._3e{width:32.032000pt;}
._47{width:37.781333pt;}
._40{width:39.130667pt;}
._36{width:46.620800pt;}
._30{width:53.977067pt;}
._35{width:62.348267pt;}
._1e{width:64.776533pt;}
._32{width:83.964800pt;}
._31{width:88.988267pt;}
._2b{width:90.436267pt;}
._16{width:92.236800pt;}
._2f{width:121.156267pt;}
._20{width:144.888533pt;}
._2d{width:156.956267pt;}
._1a{width:158.522667pt;}
._10{width:159.589867pt;}
._26{width:163.097067pt;}
._39{width:165.276800pt;}
._18{width:175.368533pt;}
._37{width:181.892800pt;}
._33{width:203.716267pt;}
._34{width:236.473067pt;}
._3c{width:251.769067pt;}
._24{width:258.432000pt;}
._1c{width:263.328000pt;}
._3b{width:270.236267pt;}
._1f{width:271.802667pt;}
._2c{width:300.505067pt;}
._44{width:306.106667pt;}
._19{width:314.448000pt;}
._1d{width:355.370667pt;}
._12{width:359.140267pt;}
._e{width:364.101333pt;}
._17{width:381.077867pt;}
._14{width:382.309867pt;}
._22{width:398.136533pt;}
._42{width:401.157333pt;}
._38{width:402.617600pt;}
._2e{width:413.292800pt;}
._2a{width:415.912000pt;}
._23{width:419.496533pt;}
._3a{width:424.441067pt;}
._29{width:453.072000pt;}
._21{width:458.400000pt;}
._f{width:464.503467pt;}
._3d{width:474.617600pt;}
._1b{width:478.248533pt;}
._25{width:479.786667pt;}
._13{width:482.757333pt;}
._15{width:488.503467pt;}
._28{width:490.104533pt;}
._45{width:498.312000pt;}
._11{width:517.879467pt;}
._27{width:578.400000pt;}
._43{width:662.373333pt;}
._41{width:767.829333pt;}
.fs5{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.759867pt;}
.yf9{bottom:112.868800pt;}
.yf7{bottom:112.982267pt;}
.y123{bottom:113.365467pt;}
.y86{bottom:113.385733pt;}
.y2a{bottom:113.385867pt;}
.y1c9{bottom:113.634267pt;}
.y174{bottom:113.917067pt;}
.y1c5{bottom:113.948667pt;}
.y9e{bottom:114.482533pt;}
.y16d{bottom:117.692133pt;}
.y356{bottom:118.269867pt;}
.y1c3{bottom:130.421600pt;}
.yf8{bottom:130.468800pt;}
.yf6{bottom:130.582267pt;}
.y30d{bottom:130.762800pt;}
.y122{bottom:130.965467pt;}
.y121{bottom:130.985867pt;}
.yf2{bottom:131.125600pt;}
.y2b2{bottom:131.141200pt;}
.y85{bottom:131.182133pt;}
.y1c8{bottom:131.234400pt;}
.y19a{bottom:131.270000pt;}
.y55{bottom:131.312400pt;}
.y173{bottom:131.517067pt;}
.y1c4{bottom:131.548667pt;}
.yc8{bottom:131.570133pt;}
.y212{bottom:131.816933pt;}
.y289{bottom:131.943333pt;}
.y261{bottom:131.989867pt;}
.y9d{bottom:132.082533pt;}
.y114{bottom:132.370533pt;}
.y239{bottom:132.625067pt;}
.y1e7{bottom:132.985867pt;}
.y16c{bottom:133.474800pt;}
.y355{bottom:146.760667pt;}
.y1c2{bottom:147.457333pt;}
.y29{bottom:147.874133pt;}
.yf5{bottom:148.182267pt;}
.y120{bottom:148.585867pt;}
.y1c7{bottom:148.834267pt;}
.yf1{bottom:148.865467pt;}
.y84{bottom:148.978533pt;}
.y54{bottom:149.238800pt;}
.y16b{bottom:149.354133pt;}
.y9c{bottom:149.682533pt;}
.yc7{bottom:149.754133pt;}
.y211{bottom:150.248000pt;}
.y288{bottom:150.500800pt;}
.y260{bottom:150.594133pt;}
.y113{bottom:151.355200pt;}
.y238{bottom:151.864400pt;}
.y1e6{bottom:152.586000pt;}
.y199{bottom:154.823333pt;}
.y30c{bottom:155.698933pt;}
.y2b1{bottom:156.455600pt;}
.y1c1{bottom:164.493067pt;}
.y354{bottom:165.017200pt;}
.y16a{bottom:165.233467pt;}
.yf4{bottom:165.782267pt;}
.y11f{bottom:166.185867pt;}
.y1c6{bottom:166.434267pt;}
.yf0{bottom:166.605200pt;}
.y83{bottom:166.774933pt;}
.y53{bottom:167.165200pt;}
.y28{bottom:167.244400pt;}
.y237{bottom:171.103733pt;}
.y2b0{bottom:174.210800pt;}
.yc6{bottom:175.497333pt;}
.y287{bottom:176.617333pt;}
.y25f{bottom:176.757333pt;}
.y1e5{bottom:179.744933pt;}
.y30b{bottom:180.634800pt;}
.y169{bottom:181.112800pt;}
.y353{bottom:183.273867pt;}
.yf3{bottom:183.382267pt;}
.y11e{bottom:183.785867pt;}
.y210{bottom:183.797200pt;}
.yef{bottom:184.344933pt;}
.y82{bottom:184.571333pt;}
.y52{bottom:185.091600pt;}
.y112{bottom:185.458000pt;}
.y27{bottom:186.614533pt;}
.y1c0{bottom:187.198133pt;}
.y198{bottom:187.825467pt;}
.y236{bottom:190.343067pt;}
.y2c6{bottom:191.966133pt;}
.y286{bottom:195.174667pt;}
.y25e{bottom:195.361467pt;}
.y2af{bottom:199.525200pt;}
.y168{bottom:202.019200pt;}
.yee{bottom:202.084667pt;}
.y20f{bottom:202.228267pt;}
.y81{bottom:202.367733pt;}
.y51{bottom:203.018000pt;}
.y111{bottom:204.442667pt;}
.y332{bottom:204.645867pt;}
.y30a{bottom:205.570933pt;}
.y197{bottom:205.709600pt;}
.y26{bottom:205.984800pt;}
.y352{bottom:207.199733pt;}
.y2c5{bottom:209.721467pt;}
.yc5{bottom:210.399600pt;}
.y285{bottom:213.732133pt;}
.y25d{bottom:213.965600pt;}
.y235{bottom:217.141333pt;}
.y2ae{bottom:217.280400pt;}
.y1e4{bottom:217.663200pt;}
.y1bf{bottom:219.351867pt;}
.yed{bottom:219.824400pt;}
.y80{bottom:220.164133pt;}
.y20e{bottom:220.659467pt;}
.y50{bottom:220.944400pt;}
.y331{bottom:221.312533pt;}
.y165{bottom:222.828933pt;}
.y309{bottom:222.947867pt;}
.y110{bottom:223.427467pt;}
.y196{bottom:223.593733pt;}
.y13c{bottom:223.746267pt;}
.y25{bottom:225.355067pt;}
.yc4{bottom:228.583733pt;}
.y167{bottom:230.028933pt;}
.y25c{bottom:232.569867pt;}
.y2ad{bottom:235.035733pt;}
.y1be{bottom:236.387600pt;}
.y163{bottom:237.228933pt;}
.yec{bottom:237.564267pt;}
.y7f{bottom:237.960533pt;}
.y4f{bottom:238.870800pt;}
.y20d{bottom:239.090533pt;}
.y284{bottom:239.848533pt;}
.y10f{bottom:242.412133pt;}
.y1e3{bottom:242.932400pt;}
.y166{bottom:244.428933pt;}
.y24{bottom:244.725333pt;}
.y351{bottom:245.458400pt;}
.y330{bottom:245.538267pt;}
.yc3{bottom:246.767867pt;}
.y13b{bottom:247.015600pt;}
.y308{bottom:247.883867pt;}
.y164{bottom:251.628933pt;}
.y2ac{bottom:252.791067pt;}
.y234{bottom:254.698800pt;}
.yeb{bottom:255.304000pt;}
.y7e{bottom:255.756933pt;}
.y195{bottom:256.595867pt;}
.y283{bottom:258.406000pt;}
.y25b{bottom:258.733067pt;}
.y1bd{bottom:259.092667pt;}
.y32f{bottom:262.204933pt;}
.y4e{bottom:262.466533pt;}
.y350{bottom:263.715067pt;}
.y23{bottom:264.095600pt;}
.y10e{bottom:267.066133pt;}
.y20c{bottom:272.639733pt;}
.y307{bottom:272.819867pt;}
.yea{bottom:273.043733pt;}
.y7d{bottom:273.553333pt;}
.y233{bottom:273.938133pt;}
.y194{bottom:274.479867pt;}
.y25a{bottom:277.337200pt;}
.y1e2{bottom:277.650533pt;}
.y2ab{bottom:278.105333pt;}
.y13a{bottom:279.733600pt;}
.yc2{bottom:280.070133pt;}
.y34f{bottom:281.971600pt;}
.y172{bottom:282.766400pt;}
.y22{bottom:283.465733pt;}
.y282{bottom:284.522400pt;}
.y32e{bottom:286.430533pt;}
.y4d{bottom:287.952133pt;}
.y306{bottom:290.196933pt;}
.ye9{bottom:290.783467pt;}
.y20b{bottom:291.070800pt;}
.y1bc{bottom:291.246400pt;}
.y7c{bottom:291.349733pt;}
.y193{bottom:292.364000pt;}
.y232{bottom:293.177467pt;}
.y2aa{bottom:295.860667pt;}
.y259{bottom:295.941333pt;}
.yc1{bottom:298.254133pt;}
.y171{bottom:300.366267pt;}
.y10d{bottom:301.168800pt;}
.y21{bottom:302.836000pt;}
.y1e1{bottom:302.919867pt;}
.y139{bottom:303.002933pt;}
.y281{bottom:303.079867pt;}
.y32d{bottom:303.097200pt;}
.y1bb{bottom:308.282133pt;}
.ye8{bottom:308.523200pt;}
.y7b{bottom:309.146133pt;}
.y20a{bottom:309.501867pt;}
.y34e{bottom:310.462267pt;}
.y2e6{bottom:311.025733pt;}
.y2c4{bottom:313.615867pt;}
.y305{bottom:315.132933pt;}
.y192{bottom:315.917333pt;}
.yc0{bottom:316.438267pt;}
.y170{bottom:317.966400pt;}
.y10c{bottom:320.153600pt;}
.y2a9{bottom:321.175067pt;}
.y258{bottom:322.104533pt;}
.y20{bottom:322.206267pt;}
.y4c{bottom:324.196533pt;}
.ye7{bottom:326.262933pt;}
.y7a{bottom:326.942533pt;}
.y32c{bottom:327.322933pt;}
.y231{bottom:327.534933pt;}
.y2e5{bottom:328.625867pt;}
.y34d{bottom:328.718933pt;}
.y280{bottom:329.196400pt;}
.y1ba{bottom:330.987200pt;}
.y304{bottom:332.509867pt;}
.ybf{bottom:334.622400pt;}
.y16f{bottom:335.566400pt;}
.y138{bottom:335.721067pt;}
.y1e0{bottom:337.638000pt;}
.y2a8{bottom:338.930267pt;}
.y10b{bottom:339.138267pt;}
.y257{bottom:340.708800pt;}
.y1f{bottom:341.576400pt;}
.y4b{bottom:342.122933pt;}
.y209{bottom:343.051200pt;}
.ye6{bottom:344.002667pt;}
.y79{bottom:344.738933pt;}
.y2e4{bottom:346.225733pt;}
.y230{bottom:346.774133pt;}
.y27f{bottom:347.753867pt;}
.y191{bottom:348.919467pt;}
.y32b{bottom:351.548667pt;}
.y34c{bottom:352.644800pt;}
.ybe{bottom:352.806533pt;}
.y16e{bottom:353.166400pt;}
.y137{bottom:353.321067pt;}
.y2a7{bottom:356.685600pt;}
.y1df{bottom:357.238133pt;}
.y303{bottom:357.445867pt;}
.y10a{bottom:358.122933pt;}
.y256{bottom:359.312933pt;}
.y4a{bottom:360.049333pt;}
.y1e{bottom:360.946667pt;}
.y208{bottom:361.482267pt;}
.ye5{bottom:361.742533pt;}
.y78{bottom:362.535333pt;}
.y1b9{bottom:363.140933pt;}
.y2e3{bottom:363.825867pt;}
.y22f{bottom:366.013467pt;}
.y27e{bottom:366.311200pt;}
.y190{bottom:372.472800pt;}
.y2a6{bottom:374.440800pt;}
.y302{bottom:374.822933pt;}
.y32a{bottom:375.774400pt;}
.y136{bottom:376.590400pt;}
.y109{bottom:377.107600pt;}
.ye4{bottom:379.482267pt;}
.y207{bottom:379.913333pt;}
.y1b8{bottom:380.176667pt;}
.y1d{bottom:380.316933pt;}
.y77{bottom:380.331733pt;}
.y2e2{bottom:381.425733pt;}
.y1de{bottom:382.507467pt;}
.y22e{bottom:385.252800pt;}
.y255{bottom:385.476133pt;}
.ybd{bottom:386.108800pt;}
.y34b{bottom:390.903467pt;}
.y2a5{bottom:392.196133pt;}
.y27d{bottom:392.427733pt;}
.y329{bottom:392.441067pt;}
.y49{bottom:393.093867pt;}
.y1b7{bottom:397.212400pt;}
.ye3{bottom:397.222000pt;}
.y76{bottom:398.128133pt;}
.y206{bottom:398.344400pt;}
.y2e1{bottom:399.025733pt;}
.y1c{bottom:399.687200pt;}
.y2c3{bottom:399.755200pt;}
.y301{bottom:399.758933pt;}
.y162{bottom:400.629867pt;}
.y108{bottom:401.761600pt;}
.y254{bottom:404.080267pt;}
.ybc{bottom:404.292933pt;}
.y22d{bottom:404.492133pt;}
.y18f{bottom:405.475067pt;}
.y34a{bottom:409.160133pt;}
.y135{bottom:409.308533pt;}
.y2a4{bottom:409.951467pt;}
.y27c{bottom:410.985200pt;}
.y48{bottom:411.020400pt;}
.ye2{bottom:414.961733pt;}
.y75{bottom:415.924533pt;}
.y2e0{bottom:416.625867pt;}
.y328{bottom:416.666800pt;}
.y300{bottom:417.135867pt;}
.y1dd{bottom:417.225467pt;}
.y2c2{bottom:417.510400pt;}
.y161{bottom:418.459733pt;}
.ybb{bottom:422.477067pt;}
.y18e{bottom:423.359067pt;}
.y22c{bottom:423.731467pt;}
.y134{bottom:426.908400pt;}
.y349{bottom:427.416667pt;}
.y47{bottom:428.946800pt;}
.y253{bottom:430.243467pt;}
.y205{bottom:431.893600pt;}
.ye1{bottom:432.701467pt;}
.y327{bottom:433.333467pt;}
.y74{bottom:433.720933pt;}
.y2df{bottom:434.225733pt;}
.y2a3{bottom:435.265733pt;}
.y107{bottom:435.864400pt;}
.y160{bottom:436.289600pt;}
.y1dc{bottom:436.825600pt;}
.y27b{bottom:437.101600pt;}
.y1b{bottom:439.059467pt;}
.yba{bottom:440.661067pt;}
.y1b6{bottom:440.704800pt;}
.y18d{bottom:441.243200pt;}
.y2ff{bottom:442.072000pt;}
.y2c1{bottom:442.824800pt;}
.y22b{bottom:442.970667pt;}
.y133{bottom:444.508400pt;}
.y348{bottom:445.673333pt;}
.y46{bottom:446.873200pt;}
.y252{bottom:448.847733pt;}
.y204{bottom:450.324800pt;}
.ye0{bottom:450.441200pt;}
.y73{bottom:451.517333pt;}
.y2a2{bottom:453.021067pt;}
.y15f{bottom:454.119333pt;}
.y106{bottom:454.849200pt;}
.y27a{bottom:455.659067pt;}
.y1db{bottom:456.425600pt;}
.y326{bottom:457.559200pt;}
.y1a{bottom:458.429733pt;}
.yb9{bottom:458.845200pt;}
.y2fe{bottom:459.448933pt;}
.y2c0{bottom:460.580133pt;}
.y132{bottom:462.108533pt;}
.y22a{bottom:462.210000pt;}
.y1b5{bottom:463.409867pt;}
.y347{bottom:463.929867pt;}
.y18c{bottom:464.796533pt;}
.y45{bottom:464.799600pt;}
.ydf{bottom:468.180933pt;}
.y72{bottom:469.313733pt;}
.y2a1{bottom:470.776267pt;}
.y15e{bottom:471.949200pt;}
.y105{bottom:473.833867pt;}
.y251{bottom:475.010933pt;}
.y1da{bottom:476.025600pt;}
.yb8{bottom:477.029333pt;}
.y19{bottom:477.799867pt;}
.y2bf{bottom:478.335333pt;}
.y131{bottom:479.708400pt;}
.y229{bottom:481.449333pt;}
.y279{bottom:481.775467pt;}
.y325{bottom:481.784933pt;}
.y346{bottom:482.186533pt;}
.y203{bottom:483.874000pt;}
.y2fd{bottom:484.384933pt;}
.y71{bottom:487.110133pt;}
.y15d{bottom:489.779067pt;}
.yde{bottom:491.590000pt;}
.y250{bottom:493.615067pt;}
.y1b4{bottom:495.563733pt;}
.y1d9{bottom:495.625600pt;}
.y2a0{bottom:496.090667pt;}
.y18{bottom:497.170133pt;}
.y2de{bottom:497.180133pt;}
.y130{bottom:497.308533pt;}
.y18b{bottom:497.798667pt;}
.y44{bottom:497.844133pt;}
.y104{bottom:498.487733pt;}
.y278{bottom:500.332933pt;}
.y228{bottom:500.688667pt;}
.y2fc{bottom:501.761867pt;}
.y202{bottom:502.305067pt;}
.y2be{bottom:503.649733pt;}
.y70{bottom:504.906400pt;}
.y324{bottom:506.010667pt;}
.y15c{bottom:507.608933pt;}
.yb7{bottom:510.331600pt;}
.y345{bottom:510.677200pt;}
.y24f{bottom:512.219200pt;}
.y2dd{bottom:514.780133pt;}
.y12f{bottom:514.908400pt;}
.y1d8{bottom:515.225733pt;}
.y18a{bottom:515.682800pt;}
.y43{bottom:515.770533pt;}
.y17{bottom:516.540400pt;}
.y1b3{bottom:518.268667pt;}
.y227{bottom:519.928000pt;}
.y29f{bottom:521.404933pt;}
.y323{bottom:522.677333pt;}
.y6f{bottom:522.702933pt;}
.ydd{bottom:524.447867pt;}
.y15b{bottom:525.438667pt;}
.y277{bottom:526.449467pt;}
.y2fb{bottom:526.698000pt;}
.yb6{bottom:528.515733pt;}
.y344{bottom:528.933733pt;}
.y2dc{bottom:532.380133pt;}
.y12e{bottom:532.508400pt;}
.y103{bottom:532.590667pt;}
.y189{bottom:533.566800pt;}
.y42{bottom:533.696933pt;}
.y1d7{bottom:534.825733pt;}
.y201{bottom:535.854267pt;}
.y24e{bottom:538.382400pt;}
.y29e{bottom:539.160267pt;}
.y226{bottom:539.167333pt;}
.y6e{bottom:540.499333pt;}
.ydc{bottom:542.187600pt;}
.y15a{bottom:543.268533pt;}
.y2fa{bottom:544.074933pt;}
.y276{bottom:545.006800pt;}
.y16{bottom:546.144800pt;}
.yb5{bottom:546.699867pt;}
.y2bd{bottom:546.719333pt;}
.y322{bottom:546.903067pt;}
.y343{bottom:547.190400pt;}
.y12d{bottom:550.108533pt;}
.y1b2{bottom:550.422533pt;}
.y102{bottom:551.575333pt;}
.y41{bottom:551.623333pt;}
.y200{bottom:554.285467pt;}
.y1d6{bottom:554.425733pt;}
.y29d{bottom:556.915600pt;}
.y24d{bottom:556.986667pt;}
.y2db{bottom:557.539200pt;}
.y6d{bottom:558.295600pt;}
.y225{bottom:558.406533pt;}
.ydb{bottom:559.927333pt;}
.y275{bottom:563.564267pt;}
.y2bc{bottom:564.474667pt;}
.yb4{bottom:564.884000pt;}
.y159{bottom:566.767733pt;}
.y1b1{bottom:567.458267pt;}
.y12c{bottom:567.708400pt;}
.y2f9{bottom:569.010933pt;}
.y40{bottom:569.549867pt;}
.y15{bottom:570.398933pt;}
.y101{bottom:570.560000pt;}
.y342{bottom:571.116267pt;}
.y321{bottom:571.128800pt;}
.y1ff{bottom:572.716533pt;}
.y1d5{bottom:574.025733pt;}
.y2da{bottom:575.139200pt;}
.y24c{bottom:575.590800pt;}
.y6c{bottom:576.092000pt;}
.y188{bottom:577.907600pt;}
.y29c{bottom:582.229867pt;}
.yb3{bottom:583.068133pt;}
.y14{bottom:584.885200pt;}
.y12b{bottom:585.308533pt;}
.y2f8{bottom:586.387867pt;}
.y3f{bottom:587.476133pt;}
.y9b{bottom:587.597733pt;}
.y320{bottom:587.795467pt;}
.y274{bottom:589.680800pt;}
.y1b0{bottom:590.163200pt;}
.y1fe{bottom:591.147600pt;}
.y2d9{bottom:592.739200pt;}
.y224{bottom:592.764000pt;}
.yda{bottom:592.785200pt;}
.y1d4{bottom:593.625733pt;}
.y6b{bottom:593.888400pt;}
.y158{bottom:599.715600pt;}
.y29b{bottom:599.985200pt;}
.yb2{bottom:601.252133pt;}
.y187{bottom:601.460933pt;}
.y24b{bottom:601.754000pt;}
.y12a{bottom:602.908400pt;}
.y9a{bottom:605.197733pt;}
.y3e{bottom:605.402667pt;}
.y2bb{bottom:607.544267pt;}
.y273{bottom:608.238133pt;}
.y13{bottom:609.139467pt;}
.y341{bottom:609.374933pt;}
.yd9{bottom:610.524933pt;}
.y2f7{bottom:611.324000pt;}
.y6a{bottom:611.684800pt;}
.y223{bottom:612.003333pt;}
.y31f{bottom:612.021200pt;}
.y1d3{bottom:613.225733pt;}
.y100{bottom:616.001333pt;}
.y157{bottom:617.545467pt;}
.y29a{bottom:617.740533pt;}
.y2d8{bottom:617.898267pt;}
.yb1{bottom:619.436267pt;}
.y24a{bottom:620.358133pt;}
.y129{bottom:620.508400pt;}
.y1af{bottom:622.317067pt;}
.y99{bottom:622.797733pt;}
.y12{bottom:623.625600pt;}
.y1fd{bottom:624.696800pt;}
.y2ba{bottom:625.299467pt;}
.y340{bottom:627.631600pt;}
.yd8{bottom:628.264667pt;}
.y2f6{bottom:628.700933pt;}
.y222{bottom:631.242667pt;}
.y1d2{bottom:632.825733pt;}
.y272{bottom:634.354667pt;}
.y186{bottom:634.463200pt;}
.y156{bottom:635.375333pt;}
.y2d7{bottom:635.498267pt;}
.y31e{bottom:636.246933pt;}
.y128{bottom:638.108533pt;}
.y3d{bottom:638.447200pt;}
.y249{bottom:638.962267pt;}
.y1ae{bottom:639.352800pt;}
.y98{bottom:640.397733pt;}
.yff{bottom:640.655333pt;}
.y299{bottom:643.054800pt;}
.y1fc{bottom:643.127867pt;}
.y69{bottom:644.599333pt;}
.y33f{bottom:645.888133pt;}
.y11{bottom:647.879867pt;}
.y2b9{bottom:650.613867pt;}
.yd7{bottom:651.673733pt;}
.y1d1{bottom:652.425867pt;}
.yb0{bottom:652.738533pt;}
.y271{bottom:652.912133pt;}
.y31d{bottom:652.913600pt;}
.y2f5{bottom:653.636933pt;}
.y127{bottom:655.708400pt;}
.y3c{bottom:656.373600pt;}
.y1ad{bottom:656.388533pt;}
.y97{bottom:657.997733pt;}
.y185{bottom:658.016533pt;}
.y2d6{bottom:660.657333pt;}
.y298{bottom:660.810133pt;}
.y10{bottom:662.366133pt;}
.y68{bottom:662.395733pt;}
.y248{bottom:665.125600pt;}
.y221{bottom:665.600000pt;}
.y155{bottom:668.323333pt;}
.y2b8{bottom:668.369200pt;}
.yaf{bottom:670.922667pt;}
.y270{bottom:671.469467pt;}
.y1d0{bottom:672.025867pt;}
.y126{bottom:673.308533pt;}
.y1ac{bottom:673.424133pt;}
.y3b{bottom:674.300000pt;}
.y33e{bottom:674.378933pt;}
.yfe{bottom:674.758133pt;}
.y96{bottom:675.597733pt;}
.y1fb{bottom:676.677067pt;}
.y31c{bottom:677.139200pt;}
.y2d5{bottom:678.257333pt;}
.y2f4{bottom:678.572933pt;}
.y67{bottom:680.192133pt;}
.y362{bottom:681.388933pt;}
.y247{bottom:683.729733pt;}
.yd6{bottom:684.531600pt;}
.y220{bottom:684.839333pt;}
.y297{bottom:686.124400pt;}
.y154{bottom:686.153200pt;}
.yf{bottom:686.620400pt;}
.yae{bottom:689.106800pt;}
.y1ab{bottom:690.459867pt;}
.y125{bottom:690.908400pt;}
.y184{bottom:691.018667pt;}
.y1cf{bottom:691.625867pt;}
.y3a{bottom:692.226400pt;}
.y33d{bottom:692.635467pt;}
.y95{bottom:693.197733pt;}
.y2b7{bottom:693.683467pt;}
.y31b{bottom:693.805867pt;}
.y1fa{bottom:695.108267pt;}
.y2d4{bottom:695.857200pt;}
.y2f3{bottom:695.950000pt;}
.y26f{bottom:697.586000pt;}
.y66{bottom:697.988533pt;}
.yfd{bottom:699.412133pt;}
.y296{bottom:703.879733pt;}
.y153{bottom:703.982933pt;}
.y21f{bottom:704.078667pt;}
.yad{bottom:707.290800pt;}
.y1aa{bottom:707.495600pt;}
.yd5{bottom:707.940667pt;}
.y183{bottom:708.902800pt;}
.y361{bottom:709.222933pt;}
.y246{bottom:709.892933pt;}
.y39{bottom:710.152800pt;}
.y94{bottom:710.797733pt;}
.y33c{bottom:710.892133pt;}
.y1ce{bottom:711.225867pt;}
.y2b6{bottom:711.438800pt;}
.ye{bottom:712.445200pt;}
.y2d3{bottom:713.457333pt;}
.y1f9{bottom:713.539333pt;}
.y124{bottom:714.177733pt;}
.y65{bottom:715.784933pt;}
.y26e{bottom:716.143333pt;}
.y31a{bottom:718.031600pt;}
.y2f2{bottom:720.886000pt;}
.y21e{bottom:723.318000pt;}
.y1a9{bottom:724.531333pt;}
.yac{bottom:725.474933pt;}
.y360{bottom:726.822933pt;}
.y152{bottom:727.482133pt;}
.y38{bottom:728.079200pt;}
.y93{bottom:728.397733pt;}
.y245{bottom:728.497067pt;}
.y295{bottom:729.194000pt;}
.y1cd{bottom:730.825867pt;}
.y1f8{bottom:731.970400pt;}
.y182{bottom:732.456000pt;}
.yd{bottom:733.415333pt;}
.yfc{bottom:733.514933pt;}
.y64{bottom:733.581333pt;}
.y319{bottom:734.698267pt;}
.y26d{bottom:734.700800pt;}
.y33b{bottom:734.818000pt;}
.y2f1{bottom:738.262933pt;}
.y2d2{bottom:738.616400pt;}
.yd4{bottom:740.798533pt;}
.y1a8{bottom:741.567067pt;}
.y21d{bottom:742.557333pt;}
.yab{bottom:743.659067pt;}
.y37{bottom:746.005733pt;}
.y35f{bottom:750.092267pt;}
.y1cc{bottom:750.426000pt;}
.y63{bottom:751.377733pt;}
.yfb{bottom:752.499733pt;}
.y92{bottom:753.556800pt;}
.y294{bottom:754.508400pt;}
.y244{bottom:754.660267pt;}
.y144{bottom:754.776933pt;}
.y2d1{bottom:756.216267pt;}
.yd3{bottom:758.538267pt;}
.y1a7{bottom:758.602800pt;}
.y318{bottom:758.924133pt;}
.y151{bottom:760.430000pt;}
.y26c{bottom:760.817333pt;}
.y21c{bottom:761.796667pt;}
.yaa{bottom:761.843200pt;}
.y2f0{bottom:763.198933pt;}
.y36{bottom:763.932133pt;}
.y181{bottom:765.458267pt;}
.y1f7{bottom:765.519733pt;}
.y33a{bottom:768.192667pt;}
.y62{bottom:769.174133pt;}
.y1cb{bottom:770.026000pt;}
.y143{bottom:770.656267pt;}
.y293{bottom:772.263733pt;}
.y243{bottom:773.264533pt;}
.y2d0{bottom:773.816267pt;}
.y317{bottom:775.590800pt;}
.y1a6{bottom:775.638533pt;}
.yd2{bottom:776.278133pt;}
.yfa{bottom:777.153600pt;}
.y150{bottom:778.259867pt;}
.y26b{bottom:779.374667pt;}
.ya9{bottom:780.027333pt;}
.y91{bottom:780.315867pt;}
.y2ef{bottom:780.575867pt;}
.y21b{bottom:781.036000pt;}
.y35{bottom:781.858533pt;}
.y180{bottom:783.342267pt;}
.y1f6{bottom:783.950800pt;}
.y339{bottom:786.449200pt;}
.y142{bottom:786.535600pt;}
.y61{bottom:786.970533pt;}
.y35e{bottom:787.694400pt;}
.y2b5{bottom:790.018933pt;}
.y1a5{bottom:792.674133pt;}
.y1ca{bottom:795.295200pt;}
.y292{bottom:797.578000pt;}
.y26a{bottom:797.932000pt;}
.ya8{bottom:798.211467pt;}
.y2cf{bottom:798.975467pt;}
.y242{bottom:799.427733pt;}
.yd1{bottom:799.687067pt;}
.yc{bottom:799.739867pt;}
.y34{bottom:799.784933pt;}
.y316{bottom:799.816400pt;}
.y21a{bottom:800.275333pt;}
.y17f{bottom:801.226267pt;}
.y14f{bottom:801.759067pt;}
.y141{bottom:802.415067pt;}
.y60{bottom:804.766933pt;}
.y2ee{bottom:805.512000pt;}
.y1a4{bottom:809.709733pt;}
.y338{bottom:810.375200pt;}
.y291{bottom:815.333333pt;}
.y35d{bottom:815.528533pt;}
.y90{bottom:816.233867pt;}
.ya7{bottom:816.395600pt;}
.y315{bottom:816.483067pt;}
.y269{bottom:816.489467pt;}
.y2ce{bottom:816.575333pt;}
.y1f5{bottom:817.500000pt;}
.y33{bottom:817.711333pt;}
.y241{bottom:818.031867pt;}
.y140{bottom:818.294400pt;}
.y11a{bottom:818.391067pt;}
.y17e{bottom:819.110400pt;}
.y219{bottom:819.514667pt;}
.y2ed{bottom:822.888933pt;}
.yb{bottom:825.510133pt;}
.y1a3{bottom:826.745467pt;}
.yd0{bottom:832.544933pt;}
.y290{bottom:833.088533pt;}
.y35c{bottom:833.128533pt;}
.y8f{bottom:833.833867pt;}
.y13f{bottom:834.173733pt;}
.y2cd{bottom:834.175333pt;}
.y119{bottom:834.270400pt;}
.ya6{bottom:834.579733pt;}
.y14e{bottom:834.706933pt;}
.y32{bottom:835.637733pt;}
.y1ed{bottom:835.894400pt;}
.y1f4{bottom:835.931200pt;}
.y17d{bottom:836.994400pt;}
.y5f{bottom:837.681333pt;}
.y218{bottom:838.753867pt;}
.y314{bottom:840.708800pt;}
.y268{bottom:842.606000pt;}
.y1a2{bottom:843.781200pt;}
.y240{bottom:844.195200pt;}
.y2ec{bottom:847.824933pt;}
.y337{bottom:848.633867pt;}
.y118{bottom:850.053200pt;}
.ycf{bottom:850.284667pt;}
.y8e{bottom:851.433867pt;}
.y1ec{bottom:851.773733pt;}
.y2cc{bottom:851.775333pt;}
.y14d{bottom:852.536800pt;}
.ya5{bottom:852.763867pt;}
.y31{bottom:853.564133pt;}
.y1f3{bottom:854.362267pt;}
.y17c{bottom:854.878533pt;}
.y5e{bottom:855.477733pt;}
.y35b{bottom:856.397733pt;}
.y313{bottom:857.375467pt;}
.y217{bottom:857.993200pt;}
.y28f{bottom:858.402933pt;}
.y1a1{bottom:860.816933pt;}
.y267{bottom:861.163467pt;}
.y23f{bottom:862.799333pt;}
.y2eb{bottom:865.202000pt;}
.y13e{bottom:865.932400pt;}
.y117{bottom:866.029200pt;}
.y1eb{bottom:867.653200pt;}
.yce{bottom:868.024400pt;}
.y8d{bottom:869.034000pt;}
.y14c{bottom:870.366667pt;}
.ya4{bottom:870.947867pt;}
.y30{bottom:871.490533pt;}
.y17b{bottom:872.762667pt;}
.y5d{bottom:873.274133pt;}
.y28e{bottom:876.158267pt;}
.y2cb{bottom:876.934533pt;}
.y336{bottom:877.124533pt;}
.y1a0{bottom:877.852667pt;}
.y266{bottom:879.720800pt;}
.y312{bottom:881.601200pt;}
.y116{bottom:881.715200pt;}
.y1ea{bottom:883.532533pt;}
.y216{bottom:884.791600pt;}
.y8c{bottom:886.634000pt;}
.y1f2{bottom:887.911467pt;}
.y14b{bottom:888.196400pt;}
.y13d{bottom:888.915067pt;}
.y23e{bottom:888.962533pt;}
.ya3{bottom:889.132133pt;}
.y17a{bottom:890.646667pt;}
.y5c{bottom:891.070667pt;}
.y2b4{bottom:893.913467pt;}
.y35a{bottom:893.999867pt;}
.y2ca{bottom:894.534533pt;}
.y19f{bottom:894.888400pt;}
.y335{bottom:895.381067pt;}
.y115{bottom:896.115200pt;}
.y2f{bottom:896.976000pt;}
.y2ea{bottom:897.697067pt;}
.y311{bottom:898.267867pt;}
.y265{bottom:898.278267pt;}
.y1e9{bottom:899.315200pt;}
.ycd{bottom:900.882267pt;}
.y28d{bottom:901.472533pt;}
.y8b{bottom:904.233867pt;}
.y1f1{bottom:906.342533pt;}
.y1e8{bottom:906.515200pt;}
.ya2{bottom:907.316133pt;}
.y23d{bottom:907.566667pt;}
.y179{bottom:908.530667pt;}
.y5b{bottom:908.867067pt;}
.y2b3{bottom:911.668800pt;}
.y14a{bottom:911.695600pt;}
.y19e{bottom:911.924133pt;}
.y2c9{bottom:912.134533pt;}
.y2e9{bottom:916.007333pt;}
.ycc{bottom:918.622000pt;}
.y28c{bottom:919.227867pt;}
.y334{bottom:919.306933pt;}
.y8a{bottom:921.833867pt;}
.y359{bottom:921.834000pt;}
.y215{bottom:922.349067pt;}
.y310{bottom:922.493600pt;}
.y264{bottom:924.394667pt;}
.y1f0{bottom:924.773733pt;}
.ya1{bottom:925.500267pt;}
.y178{bottom:926.414800pt;}
.y5a{bottom:926.663467pt;}
.y11d{bottom:927.252667pt;}
.y19d{bottom:928.959733pt;}
.ya{bottom:933.016533pt;}
.y23c{bottom:933.729867pt;}
.y2e8{bottom:934.317600pt;}
.ycb{bottom:936.361733pt;}
.y28b{bottom:936.983067pt;}
.y2c8{bottom:937.293600pt;}
.y30f{bottom:939.160267pt;}
.y89{bottom:939.433867pt;}
.y358{bottom:939.434000pt;}
.y214{bottom:941.588400pt;}
.y263{bottom:942.952133pt;}
.y1ef{bottom:943.204800pt;}
.ya0{bottom:943.684400pt;}
.y177{bottom:944.298800pt;}
.y59{bottom:944.459867pt;}
.y149{bottom:944.643600pt;}
.y147{bottom:944.852533pt;}
.y11c{bottom:944.852667pt;}
.y19c{bottom:945.995467pt;}
.y2e{bottom:948.338667pt;}
.y23b{bottom:952.334000pt;}
.y2e7{bottom:952.627867pt;}
.y333{bottom:952.681600pt;}
.yca{bottom:954.101467pt;}
.y2c7{bottom:954.893600pt;}
.y88{bottom:957.034000pt;}
.y9{bottom:960.401333pt;}
.y213{bottom:960.827600pt;}
.y262{bottom:961.509467pt;}
.y1ee{bottom:961.635867pt;}
.y9f{bottom:961.868533pt;}
.y176{bottom:962.182933pt;}
.y58{bottom:962.256267pt;}
.y28a{bottom:962.297333pt;}
.y146{bottom:962.452533pt;}
.y11b{bottom:962.452667pt;}
.y148{bottom:962.473333pt;}
.y19b{bottom:963.031200pt;}
.y30e{bottom:963.386000pt;}
.y2d{bottom:964.665067pt;}
.y23a{bottom:978.497333pt;}
.yc9{bottom:979.400267pt;}
.y145{bottom:980.052533pt;}
.y57{bottom:980.052667pt;}
.y175{bottom:980.066933pt;}
.y87{bottom:980.303200pt;}
.y357{bottom:980.303333pt;}
.y2c{bottom:980.991467pt;}
.y8{bottom:982.360400pt;}
.y7{bottom:1015.658000pt;}
.y2b{bottom:1016.692933pt;}
.y56{bottom:1016.707200pt;}
.y6{bottom:1031.796000pt;}
.y3{bottom:1049.381733pt;}
.y5{bottom:1049.396133pt;}
.y2{bottom:1066.981733pt;}
.y4{bottom:1066.996133pt;}
.ha{height:23.764841pt;}
.h18{height:32.531250pt;}
.h13{height:32.577696pt;}
.h15{height:32.578229pt;}
.h14{height:32.964362pt;}
.h17{height:32.964896pt;}
.h4{height:33.328125pt;}
.h3{height:33.351562pt;}
.h11{height:33.445312pt;}
.hb{height:37.057292pt;}
.hd{height:39.760417pt;}
.h1c{height:40.734375pt;}
.h2{height:40.763021pt;}
.h5{height:40.877604pt;}
.h1d{height:43.284141pt;}
.he{height:43.300841pt;}
.h1e{height:43.301374pt;}
.h10{height:43.375000pt;}
.h1a{height:46.979167pt;}
.hc{height:46.989583pt;}
.h9{height:47.236748pt;}
.h8{height:47.237281pt;}
.hf{height:48.309896pt;}
.h7{height:54.218750pt;}
.h6{height:55.742188pt;}
.h12{height:61.330717pt;}
.h19{height:61.331250pt;}
.h1b{height:62.245313pt;}
.h16{height:62.245846pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488133pt;}
.x29{left:95.433067pt;}
.x2d{left:96.377867pt;}
.x21{left:98.267733pt;}
.x14{left:100.552267pt;}
.x24{left:101.688133pt;}
.xa{left:115.214667pt;}
.xc{left:116.865333pt;}
.x12{left:130.791467pt;}
.x2{left:140.254933pt;}
.x10{left:146.231600pt;}
.xe{left:150.312000pt;}
.xb{left:152.123867pt;}
.x7{left:178.307200pt;}
.x2b{left:192.841867pt;}
.x1f{left:196.913200pt;}
.x2a{left:205.664533pt;}
.x1c{left:214.229600pt;}
.x8{left:223.444800pt;}
.x26{left:224.409600pt;}
.xd{left:227.750267pt;}
.x16{left:233.293467pt;}
.x11{left:243.405467pt;}
.xf{left:246.878667pt;}
.x19{left:249.831067pt;}
.x15{left:252.973067pt;}
.x1a{left:265.076000pt;}
.x13{left:278.586133pt;}
.x18{left:287.648933pt;}
.x1b{left:289.296000pt;}
.x1d{left:291.269067pt;}
.x25{left:292.554267pt;}
.x17{left:295.200667pt;}
.x9{left:324.286933pt;}
.x20{left:327.627733pt;}
.x2c{left:331.294400pt;}
.x1e{left:334.961067pt;}
.x22{left:343.937067pt;}
.x27{left:351.496000pt;}
.x2e{left:353.201067pt;}
.x1{left:385.850400pt;}
.x28{left:493.606267pt;}
.x23{left:496.062933pt;}
.x3{left:516.488000pt;}
.x5{left:576.379200pt;}
.x4{left:600.749733pt;}
}




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