
    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_7459b15f3002255ba075b4ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_b89ca00dcdd4e98f24a271dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_1d325d18a88a07714078cb44.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_f325c7106a41d1ed1fae03c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_f6c9297216a7382c3608befc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_efbd99796f7b93447cf19779.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7bc693d1f818dca8ed0cacbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_0b4d8d7314b855309b2127d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.m27{transform:matrix(0.000000,-0.343633,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.343633,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.343633,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,-0.343359,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.343359,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.343359,0.250000,0.000000,0,0);}
.m2f{transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);}
.m33{transform:matrix(0.000000,-0.250170,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250170,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250170,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249339,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249339,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249339,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249346,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249346,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249346,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249563,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249563,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249563,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249747,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249747,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249747,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.249772,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249772,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249772,0.250000,0.000000,0,0);}
.m35{transform:matrix(0.000000,-0.249823,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249823,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249823,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.249903,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249903,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249903,0.250000,0.000000,0,0);}
.m31{transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);}
.m29{transform:matrix(0.000000,-0.250082,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250082,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250082,0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.000000,-0.250213,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250213,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250213,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.250372,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250372,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250372,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250584,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250584,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250584,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.238251,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.238251,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.238251,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.238826,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.238826,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.238826,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.249570,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249570,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249570,0.250000,0.000000,0,0);}
.m2b{transform:matrix(0.000000,-0.249855,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249855,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249855,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.000000,-0.226361,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.226361,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.226361,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.237767,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.237767,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.237767,0.250000,0.000000,0,0);}
.m21{transform:matrix(0.000000,-0.225965,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.225965,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.225965,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.225980,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.225980,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.225980,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.226792,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.226792,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.226792,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,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);}
.m2e{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m34{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);}
.m16{transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.261697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261697,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.262329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262329,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.262863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262863,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.276107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276107,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.276573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276573,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.276591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276591,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v10{vertical-align:-51.080290px;}
.v3{vertical-align:-46.582108px;}
.v2{vertical-align:-30.744623px;}
.v7{vertical-align:-29.458747px;}
.vb{vertical-align:-18.887964px;}
.vc{vertical-align:-15.489174px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:7.383537px;}
.v4{vertical-align:8.872196px;}
.va{vertical-align:15.561471px;}
.v8{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.vd{vertical-align:27.480000px;}
.ve{vertical-align:38.452280px;}
.v6{vertical-align:41.654116px;}
.v5{vertical-align:42.881933px;}
.vf{vertical-align:66.948062px;}
.ls8c{letter-spacing:-4.036204px;}
.ls53{letter-spacing:-2.054315px;}
.ls8e{letter-spacing:-1.927739px;}
.ls89{letter-spacing:-1.835065px;}
.ls8a{letter-spacing:-1.834781px;}
.ls86{letter-spacing:-1.638062px;}
.ls8b{letter-spacing:-1.566288px;}
.ls88{letter-spacing:-1.409330px;}
.ls3e{letter-spacing:-1.208149px;}
.ls65{letter-spacing:-1.189782px;}
.ls2c{letter-spacing:-1.155234px;}
.ls30{letter-spacing:-1.142472px;}
.ls31{letter-spacing:-1.047208px;}
.ls4a{letter-spacing:-1.033634px;}
.ls22{letter-spacing:-1.024251px;}
.ls23{letter-spacing:-1.002602px;}
.ls1f{letter-spacing:-0.905982px;}
.ls7{letter-spacing:-0.894000px;}
.ls50{letter-spacing:-0.887771px;}
.ls12{letter-spacing:-0.882000px;}
.lse{letter-spacing:-0.852000px;}
.ls54{letter-spacing:-0.836270px;}
.ls24{letter-spacing:-0.813134px;}
.ls41{letter-spacing:-0.793303px;}
.ls39{letter-spacing:-0.787938px;}
.ls1b{letter-spacing:-0.756000px;}
.ls4e{letter-spacing:-0.737982px;}
.lsa{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.702000px;}
.ls4b{letter-spacing:-0.599154px;}
.ls73{letter-spacing:-0.590400px;}
.ls14{letter-spacing:-0.587400px;}
.ls3f{letter-spacing:-0.549489px;}
.ls2d{letter-spacing:-0.511688px;}
.ls32{letter-spacing:-0.509514px;}
.ls49{letter-spacing:-0.487208px;}
.ls2e{letter-spacing:-0.482946px;}
.ls8{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.460800px;}
.ls7c{letter-spacing:-0.406200px;}
.ls56{letter-spacing:-0.403591px;}
.ls51{letter-spacing:-0.401773px;}
.ls4f{letter-spacing:-0.383605px;}
.ls34{letter-spacing:-0.353420px;}
.ls48{letter-spacing:-0.344762px;}
.ls7d{letter-spacing:-0.310800px;}
.ls67{letter-spacing:-0.306313px;}
.ls15{letter-spacing:-0.292200px;}
.lsb{letter-spacing:-0.216000px;}
.ls58{letter-spacing:-0.211800px;}
.ls44{letter-spacing:-0.205200px;}
.ls3c{letter-spacing:-0.201012px;}
.ls1d{letter-spacing:-0.193200px;}
.ls46{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.175800px;}
.ls11{letter-spacing:-0.164400px;}
.ls4{letter-spacing:-0.132600px;}
.ls57{letter-spacing:-0.121200px;}
.lsc{letter-spacing:-0.115200px;}
.ls82{letter-spacing:-0.107400px;}
.ls68{letter-spacing:-0.100800px;}
.ls5f{letter-spacing:-0.069600px;}
.ls5e{letter-spacing:-0.058320px;}
.ls3a{letter-spacing:-0.051128px;}
.ls7b{letter-spacing:-0.048960px;}
.ls7e{letter-spacing:-0.037440px;}
.ls18{letter-spacing:-0.025920px;}
.lsd{letter-spacing:-0.023040px;}
.ls0{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.018720px;}
.ls10{letter-spacing:0.020160px;}
.ls33{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.060600px;}
.ls59{letter-spacing:0.065280px;}
.ls5b{letter-spacing:0.077760px;}
.ls5d{letter-spacing:0.078000px;}
.lsf{letter-spacing:0.089400px;}
.ls2b{letter-spacing:0.091200px;}
.ls85{letter-spacing:0.092740px;}
.ls29{letter-spacing:0.099799px;}
.ls28{letter-spacing:0.109440px;}
.ls3d{letter-spacing:0.111712px;}
.ls5{letter-spacing:0.129600px;}
.ls1a{letter-spacing:0.132600px;}
.ls60{letter-spacing:0.174000px;}
.ls79{letter-spacing:0.177600px;}
.ls80{letter-spacing:0.178560px;}
.ls83{letter-spacing:0.180000px;}
.ls77{letter-spacing:0.208200px;}
.ls1e{letter-spacing:0.212660px;}
.ls1{letter-spacing:0.247800px;}
.ls21{letter-spacing:0.254389px;}
.ls3{letter-spacing:0.256200px;}
.ls74{letter-spacing:0.259200px;}
.ls78{letter-spacing:0.267000px;}
.ls81{letter-spacing:0.279360px;}
.ls19{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.347161px;}
.ls6d{letter-spacing:0.348610px;}
.ls71{letter-spacing:0.348681px;}
.ls62{letter-spacing:0.358560px;}
.ls9{letter-spacing:0.371400px;}
.ls16{letter-spacing:0.391680px;}
.ls47{letter-spacing:0.447600px;}
.ls42{letter-spacing:0.454875px;}
.ls20{letter-spacing:0.499852px;}
.ls43{letter-spacing:0.520377px;}
.ls36{letter-spacing:0.625909px;}
.ls38{letter-spacing:0.633852px;}
.ls4d{letter-spacing:0.683182px;}
.ls2f{letter-spacing:0.684174px;}
.ls75{letter-spacing:0.697362px;}
.ls8d{letter-spacing:0.722902px;}
.ls6c{letter-spacing:0.750818px;}
.ls37{letter-spacing:0.764191px;}
.ls84{letter-spacing:0.771149px;}
.ls6b{letter-spacing:0.772594px;}
.ls5c{letter-spacing:0.797760px;}
.ls55{letter-spacing:0.803546px;}
.ls76{letter-spacing:0.854425px;}
.ls3b{letter-spacing:0.868482px;}
.ls25{letter-spacing:0.894240px;}
.ls52{letter-spacing:0.925351px;}
.ls6a{letter-spacing:0.929626px;}
.ls4c{letter-spacing:0.946225px;}
.ls66{letter-spacing:1.330191px;}
.ls35{letter-spacing:1.536426px;}
.ls87{letter-spacing:1.829590px;}
.ls7f{letter-spacing:1.937829px;}
.ls5a{letter-spacing:5.189760px;}
.ls63{letter-spacing:6.953927px;}
.ls69{letter-spacing:7.013909px;}
.ls64{letter-spacing:8.494778px;}
.ls7a{letter-spacing:12.389760px;}
.ls6e{letter-spacing:47.834307px;}
.ls72{letter-spacing:47.844093px;}
.ls2{letter-spacing:59.345280px;}
.ls2a{letter-spacing:97.628622px;}
.ls27{letter-spacing:103.116883px;}
.ls45{letter-spacing:111.863476px;}
.ls6f{letter-spacing:200.069914px;}
.ls70{letter-spacing:202.177223px;}
.ls26{letter-spacing:730.643572px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.ws1e{word-spacing:-15.621120px;}
.wsa{word-spacing:-15.341640px;}
.ws12{word-spacing:-15.258240px;}
.ws6{word-spacing:-15.226440px;}
.ws5e{word-spacing:-15.102840px;}
.ws4{word-spacing:-15.099840px;}
.wsf{word-spacing:-15.059640px;}
.wse{word-spacing:-15.030840px;}
.wsc{word-spacing:-14.990400px;}
.ws0{word-spacing:-14.970240px;}
.ws11{word-spacing:-14.944320px;}
.ws63{word-spacing:-14.932800px;}
.ws62{word-spacing:-14.921280px;}
.wsb{word-spacing:-14.855040px;}
.ws6a{word-spacing:-14.854569px;}
.ws7{word-spacing:-14.837640px;}
.wsd{word-spacing:-14.805840px;}
.ws5{word-spacing:-14.794440px;}
.ws16{word-spacing:-14.777040px;}
.ws15{word-spacing:-14.754240px;}
.ws61{word-spacing:-14.659440px;}
.ws5f{word-spacing:-14.564040px;}
.ws9{word-spacing:-14.506440px;}
.ws55{word-spacing:-14.379840px;}
.ws14{word-spacing:-14.214240px;}
.ws60{word-spacing:-14.118240px;}
.ws8{word-spacing:-14.076240px;}
.ws66{word-spacing:-13.990855px;}
.ws1d{word-spacing:-13.505760px;}
.ws50{word-spacing:-13.447440px;}
.ws51{word-spacing:-13.436160px;}
.ws3f{word-spacing:-13.319160px;}
.ws40{word-spacing:-12.826677px;}
.ws1{word-spacing:-12.204000px;}
.ws3a{word-spacing:-11.394133px;}
.ws38{word-spacing:-11.295019px;}
.ws5c{word-spacing:-11.169240px;}
.ws5b{word-spacing:-11.110440px;}
.ws5d{word-spacing:-11.079840px;}
.ws41{word-spacing:-11.049856px;}
.ws53{word-spacing:-10.902240px;}
.ws3e{word-spacing:-10.697040px;}
.ws1b{word-spacing:-10.588419px;}
.ws19{word-spacing:-10.535747px;}
.ws20{word-spacing:-10.277817px;}
.ws4d{word-spacing:-10.251360px;}
.ws10{word-spacing:-9.437760px;}
.ws2a{word-spacing:-9.347871px;}
.ws29{word-spacing:-9.248072px;}
.ws42{word-spacing:-9.234480px;}
.ws13{word-spacing:-9.145560px;}
.ws27{word-spacing:-9.063186px;}
.ws2b{word-spacing:-9.057942px;}
.ws23{word-spacing:-9.010273px;}
.ws2e{word-spacing:-8.971988px;}
.ws4f{word-spacing:-8.864880px;}
.ws35{word-spacing:-8.786880px;}
.ws31{word-spacing:-8.172000px;}
.ws30{word-spacing:-8.136000px;}
.ws24{word-spacing:-7.594720px;}
.ws44{word-spacing:-7.028665px;}
.ws4e{word-spacing:-6.834240px;}
.ws2{word-spacing:0.000000px;}
.ws33{word-spacing:8.939057px;}
.ws2f{word-spacing:11.047311px;}
.ws34{word-spacing:12.057209px;}
.ws28{word-spacing:12.923401px;}
.ws45{word-spacing:13.654395px;}
.ws43{word-spacing:15.722950px;}
.ws36{word-spacing:16.302842px;}
.ws1c{word-spacing:17.762387px;}
.ws46{word-spacing:17.794647px;}
.ws49{word-spacing:17.882328px;}
.ws48{word-spacing:17.889635px;}
.ws25{word-spacing:18.223137px;}
.ws18{word-spacing:18.536204px;}
.ws17{word-spacing:18.684932px;}
.ws4a{word-spacing:19.037620px;}
.ws4c{word-spacing:19.381287px;}
.ws1a{word-spacing:19.964716px;}
.ws59{word-spacing:30.943096px;}
.ws37{word-spacing:35.111872px;}
.ws39{word-spacing:35.143278px;}
.ws5a{word-spacing:37.825598px;}
.ws1f{word-spacing:43.888762px;}
.ws69{word-spacing:45.978359px;}
.ws26{word-spacing:55.908712px;}
.ws22{word-spacing:56.331459px;}
.ws67{word-spacing:69.137540px;}
.ws65{word-spacing:71.215312px;}
.ws2d{word-spacing:72.259840px;}
.ws64{word-spacing:72.793900px;}
.ws2c{word-spacing:73.133558px;}
.ws21{word-spacing:75.796139px;}
.ws3d{word-spacing:90.944618px;}
.ws3b{word-spacing:100.097930px;}
.ws3c{word-spacing:111.303541px;}
.ws68{word-spacing:118.934498px;}
.ws6b{word-spacing:120.094336px;}
.ws57{word-spacing:150.153098px;}
.ws6c{word-spacing:155.305236px;}
.ws6d{word-spacing:156.124159px;}
.ws58{word-spacing:160.083099px;}
.ws4b{word-spacing:164.320976px;}
.ws47{word-spacing:166.782367px;}
.ws52{word-spacing:169.840663px;}
.ws32{word-spacing:174.814905px;}
.ws54{word-spacing:178.738494px;}
.ws56{word-spacing:192.848151px;}
._18{margin-left:-4.453491px;}
._4{margin-left:-3.429069px;}
._3{margin-left:-2.318400px;}
._0{margin-left:-1.179613px;}
._1{width:1.771302px;}
._2{width:3.015156px;}
._8{width:4.531258px;}
._d{width:6.173255px;}
._c{width:7.336093px;}
._7{width:8.717140px;}
._6{width:9.838080px;}
._15{width:11.028151px;}
._11{width:12.198720px;}
._5{width:13.434013px;}
._24{width:14.724895px;}
._16{width:16.202173px;}
._14{width:17.354880px;}
._12{width:19.151280px;}
._a{width:20.268378px;}
._9{width:21.528000px;}
._f{width:23.056825px;}
._e{width:24.177600px;}
._17{width:26.070493px;}
._13{width:27.622080px;}
._1c{width:28.745456px;}
._1b{width:30.577465px;}
._19{width:33.070938px;}
._1a{width:34.709760px;}
._25{width:36.791956px;}
._29{width:38.055265px;}
._28{width:40.322071px;}
._27{width:41.664960px;}
._22{width:54.818282px;}
._23{width:59.463375px;}
._1e{width:65.233693px;}
._1f{width:66.423840px;}
._1d{width:69.949440px;}
._26{width:76.571948px;}
._2a{width:85.355335px;}
._2c{width:94.496777px;}
._2b{width:104.673234px;}
._20{width:108.959418px;}
._21{width:110.620800px;}
._b{width:136.950493px;}
._10{width:849.185760px;}
.fc8{color:rgb(112,48,160);}
.fc7{color:rgb(68,114,196);}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(83,129,53);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs37{font-size:25.289252px;}
.fs49{font-size:25.430069px;}
.fs3b{font-size:25.725204px;}
.fs44{font-size:26.523118px;}
.fs19{font-size:27.319136px;}
.fs4b{font-size:27.622461px;}
.fs4e{font-size:28.189570px;}
.fs59{font-size:29.041028px;}
.fs55{font-size:29.668775px;}
.fsd{font-size:29.749660px;}
.fs26{font-size:29.887322px;}
.fs5c{font-size:29.900789px;}
.fs28{font-size:29.965733px;}
.fs17{font-size:30.014857px;}
.fs1a{font-size:30.067371px;}
.fs4c{font-size:30.152986px;}
.fs1c{font-size:30.186657px;}
.fs1f{font-size:30.217231px;}
.fs52{font-size:30.240000px;}
.fs48{font-size:30.253258px;}
.fsa{font-size:30.261151px;}
.fs6{font-size:30.528929px;}
.fs4f{font-size:31.025616px;}
.fs5d{font-size:31.284100px;}
.fs60{font-size:31.290500px;}
.fs42{font-size:32.080354px;}
.fs27{font-size:32.273337px;}
.fs45{font-size:32.368346px;}
.fs18{font-size:32.411053px;}
.fs23{font-size:32.582527px;}
.fs1d{font-size:32.601388px;}
.fs20{font-size:33.266444px;}
.fs4d{font-size:33.360204px;}
.fs4a{font-size:33.412566px;}
.fs32{font-size:33.510461px;}
.fs2a{font-size:33.525408px;}
.fs13{font-size:33.643490px;}
.fs2c{font-size:34.011375px;}
.fs5f{font-size:34.287513px;}
.fs50{font-size:34.325650px;}
.fs62{font-size:34.325745px;}
.fs41{font-size:34.646569px;}
.fs43{font-size:35.363175px;}
.fs39{font-size:35.753933px;}
.fs47{font-size:35.808875px;}
.fs29{font-size:36.000000px;}
.fs31{font-size:36.861472px;}
.fs14{font-size:36.970563px;}
.fs2e{font-size:37.281706px;}
.fs46{font-size:37.536514px;}
.fs25{font-size:37.572371px;}
.fsc{font-size:37.898371px;}
.fse{font-size:37.998817px;}
.fsf{font-size:38.087839px;}
.fs10{font-size:38.188788px;}
.fs35{font-size:38.369648px;}
.fs22{font-size:38.436851px;}
.fsb{font-size:38.474581px;}
.fs9{font-size:38.564502px;}
.fs16{font-size:38.700288px;}
.fs2d{font-size:38.880000px;}
.fs8{font-size:39.008888px;}
.fs5{font-size:39.100058px;}
.fs40{font-size:39.747685px;}
.fs3e{font-size:39.806821px;}
.fs56{font-size:40.131127px;}
.fs1e{font-size:40.149939px;}
.fs33{font-size:40.629565px;}
.fs34{font-size:40.645336px;}
.fs53{font-size:40.748138px;}
.fs36{font-size:40.986091px;}
.fs38{font-size:41.023438px;}
.fs2f{font-size:41.049798px;}
.fs30{font-size:41.065733px;}
.fs5a{font-size:41.099616px;}
.fs3a{font-size:41.422772px;}
.fs3c{font-size:41.460517px;}
.fs24{font-size:41.534173px;}
.fs3{font-size:41.760000px;}
.fs21{font-size:42.406217px;}
.fs15{font-size:42.885360px;}
.fs57{font-size:44.088446px;}
.fs58{font-size:44.164486px;}
.fs54{font-size:44.774449px;}
.fs5b{font-size:45.160656px;}
.fs51{font-size:45.360000px;}
.fs3f{font-size:46.139125px;}
.fs3d{font-size:48.240000px;}
.fs5e{font-size:50.130689px;}
.fs61{font-size:50.140944px;}
.fs64{font-size:50.326817px;}
.fs7{font-size:50.346736px;}
.fs2b{font-size:50.896757px;}
.fs6c{font-size:53.433701px;}
.fs67{font-size:53.441984px;}
.fs2{font-size:54.000000px;}
.fs6f{font-size:54.825104px;}
.fs71{font-size:54.863981px;}
.fs63{font-size:55.164897px;}
.fs6e{font-size:58.678001px;}
.fs68{font-size:58.726971px;}
.fs69{font-size:58.728736px;}
.fs6b{font-size:58.734825px;}
.fs4{font-size:59.760000px;}
.fs66{font-size:60.556708px;}
.fs65{font-size:60.608304px;}
.fs0{font-size:66.240000px;}
.fs6d{font-size:68.111946px;}
.fs6a{font-size:68.122504px;}
.fs11{font-size:69.120000px;}
.fs70{font-size:70.006050px;}
.fs1b{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fs1{font-size:84.240000px;}
.y32c{bottom:-12.810000px;}
.y0{bottom:0.000000px;}
.y12d{bottom:1.005000px;}
.y125{bottom:1.185000px;}
.y12a{bottom:1.365000px;}
.y13b{bottom:2.085000px;}
.y235{bottom:3.165000px;}
.y182{bottom:3.345000px;}
.y227{bottom:5.559183px;}
.y116{bottom:6.264550px;}
.ye5{bottom:6.276077px;}
.y10b{bottom:6.284742px;}
.y17c{bottom:6.405000px;}
.y1e4{bottom:6.585000px;}
.y1e2{bottom:6.660000px;}
.y1ec{bottom:6.810000px;}
.y32b{bottom:7.350000px;}
.y1e6{bottom:7.530000px;}
.y200{bottom:7.560000px;}
.y122{bottom:8.029189px;}
.yf8{bottom:8.063451px;}
.y103{bottom:8.084948px;}
.y1af{bottom:8.591472px;}
.y1b9{bottom:8.656009px;}
.y22e{bottom:9.156334px;}
.y263{bottom:9.534944px;}
.y26e{bottom:9.536894px;}
.y30f{bottom:9.969418px;}
.y31f{bottom:9.987612px;}
.y326{bottom:10.050000px;}
.y160{bottom:11.183566px;}
.y16e{bottom:11.184476px;}
.y329{bottom:11.445000px;}
.y220{bottom:11.488384px;}
.y1fe{bottom:11.520000px;}
.y23d{bottom:11.587478px;}
.y17a{bottom:11.850000px;}
.yf0{bottom:12.420000px;}
.yfb{bottom:12.525000px;}
.y114{bottom:12.750000px;}
.ye3{bottom:12.780000px;}
.yc9{bottom:12.784759px;}
.y1d8{bottom:12.814019px;}
.yd0{bottom:12.832126px;}
.y133{bottom:12.865981px;}
.y1df{bottom:12.923098px;}
.y139{bottom:13.052479px;}
.y1ea{bottom:13.605000px;}
.y117{bottom:14.254092px;}
.y10c{bottom:14.318415px;}
.ye6{bottom:14.428100px;}
.ybf{bottom:14.582188px;}
.yb6{bottom:14.716077px;}
.y333{bottom:15.242443px;}
.y30b{bottom:15.269260px;}
.y225{bottom:15.405000px;}
.y223{bottom:15.585000px;}
.y107{bottom:15.765000px;}
.y18c{bottom:16.700440px;}
.y1cc{bottom:17.411086px;}
.y11d{bottom:17.440278px;}
.yf2{bottom:17.514699px;}
.yfd{bottom:17.594210px;}
.y234{bottom:17.745000px;}
.y178{bottom:18.046726px;}
.y181{bottom:18.105000px;}
.y16a{bottom:18.154986px;}
.y262{bottom:18.580735px;}
.y26d{bottom:18.584536px;}
.y1a9{bottom:18.616416px;}
.y1b2{bottom:18.832186px;}
.y109{bottom:19.230000px;}
.y151{bottom:20.369063px;}
.y1e9{bottom:20.445000px;}
.y15a{bottom:20.577428px;}
.y205{bottom:20.700000px;}
.y1d0{bottom:22.425215px;}
.y12f{bottom:22.796668px;}
.y1da{bottom:22.861530px;}
.y320{bottom:22.906301px;}
.y310{bottom:22.918738px;}
.y136{bottom:23.127117px;}
.y228{bottom:24.329565px;}
.yc3{bottom:24.827040px;}
.ycc{bottom:24.969142px;}
.y18d{bottom:26.087704px;}
.y11b{bottom:26.529022px;}
.y112{bottom:26.614534px;}
.yee{bottom:26.906936px;}
.yb9{bottom:26.915041px;}
.yb0{bottom:27.048930px;}
.y1c7{bottom:27.276120px;}
.y32e{bottom:27.442673px;}
.y25b{bottom:28.004186px;}
.y266{bottom:28.009915px;}
.y21f{bottom:28.981397px;}
.y23c{bottom:29.231379px;}
.y1fd{bottom:29.700000px;}
.y202{bottom:29.880000px;}
.y1b0{bottom:30.262619px;}
.y30a{bottom:31.632243px;}
.y328{bottom:31.785000px;}
.y233{bottom:32.505000px;}
.y14b{bottom:34.038905px;}
.y153{bottom:34.143087px;}
.yfe{bottom:35.722303px;}
.y218{bottom:37.382384px;}
.y260{bottom:37.445697px;}
.y237{bottom:37.704830px;}
.y11e{bottom:39.827187px;}
.y16f{bottom:39.979907px;}
.yf3{bottom:39.997137px;}
.y161{bottom:40.088167px;}
.y1d1{bottom:40.599998px;}
.y1aa{bottom:42.694057px;}
.y319{bottom:42.741109px;}
.y324{bottom:42.753734px;}
.y130{bottom:42.760683px;}
.y1b3{bottom:43.076817px;}
.y229{bottom:43.100040px;}
.yed{bottom:44.116840px;}
.yc4{bottom:44.497389px;}
.y22d{bottom:44.517986px;}
.y123{bottom:45.196342px;}
.yc0{bottom:45.206513px;}
.yf9{bottom:45.389203px;}
.y1d9{bottom:45.563078px;}
.yb7{bottom:45.608180px;}
.y105{bottom:45.699419px;}
.y1e0{bottom:45.944854px;}
.yba{bottom:46.947071px;}
.y231{bottom:47.085000px;}
.y17e{bottom:47.265000px;}
.y152{bottom:47.395322px;}
.y165{bottom:47.797395px;}
.y261{bottom:47.811336px;}
.y305{bottom:48.568546px;}
.y1ba{bottom:48.907830px;}
.yca{bottom:49.660397px;}
.yd1{bottom:49.849865px;}
.y1cd{bottom:50.097860px;}
.y335{bottom:50.517811px;}
.y118{bottom:50.606416px;}
.y10d{bottom:50.769538px;}
.yeb{bottom:50.771756px;}
.y26a{bottom:50.837521px;}
.ye7{bottom:51.327039px;}
.yb1{bottom:52.370692px;}
.y137{bottom:53.583975px;}
.y1d6{bottom:53.743980px;}
.yff{bottom:53.849766px;}
.y1db{bottom:53.853059px;}
.y316{bottom:54.222499px;}
.y221{bottom:54.532725px;}
.y23e{bottom:55.003103px;}
.y154{bottom:57.121099px;}
.y16b{bottom:57.157821px;}
.y10{bottom:57.456000px;}
.y1c8{bottom:57.990070px;}
.y32f{bottom:58.501111px;}
.y1d2{bottom:58.816139px;}
.y168{bottom:60.306468px;}
.y219{bottom:60.481749px;}
.y306{bottom:61.907413px;}
.y22a{bottom:61.980440px;}
.y111{bottom:62.155201px;}
.y11f{bottom:62.197941px;}
.yf4{bottom:62.463351px;}
.y131{bottom:62.723640px;}
.y195{bottom:63.113776px;}
.y166{bottom:63.129425px;}
.y192{bottom:63.226853px;}
.yc5{bottom:64.166553px;}
.y26b{bottom:64.616700px;}
.y264{bottom:64.980359px;}
.y26f{bottom:64.993652px;}
.y14c{bottom:65.051253px;}
.y25c{bottom:65.734110px;}
.y267{bottom:65.747557px;}
.y23b{bottom:65.861823px;}
.y1ab{bottom:66.771699px;}
.ybb{bottom:66.966827px;}
.y311{bottom:66.995774px;}
.y1b4{bottom:67.320775px;}
.y22f{bottom:68.738550px;}
.y238{bottom:68.804557px;}
.yb5{bottom:70.380997px;}
.y162{bottom:70.947823px;}
.y318{bottom:70.959514px;}
.y150{bottom:71.833645px;}
.y100{bottom:71.976601px;}
.y334{bottom:74.015898px;}
.ycd{bottom:74.303100px;}
.y177{bottom:75.724924px;}
.y26c{bottom:76.115317px;}
.y1d3{bottom:76.991376px;}
.y1{bottom:77.616000px;}
.yb2{bottom:77.694685px;}
.y176{bottom:77.788239px;}
.y155{bottom:80.181406px;}
.y22b{bottom:80.728745px;}
.y110{bottom:81.297726px;}
.y321{bottom:81.685330px;}
.y132{bottom:82.813574px;}
.y30c{bottom:83.229944px;}
.y21a{bottom:83.571066px;}
.yc6{bottom:83.823876px;}
.y138{bottom:84.013996px;}
.y120{bottom:84.585471px;}
.y1dc{bottom:84.849587px;}
.yf5{bottom:84.946413px;}
.y193{bottom:85.845050px;}
.y30e{bottom:85.951647px;}
.y18e{bottom:85.958127px;}
.y119{bottom:86.944238px;}
.y25f{bottom:87.050331px;}
.ybc{bottom:87.066917px;}
.y10e{bottom:87.224488px;}
.ye8{bottom:88.336880px;}
.y1c9{bottom:88.704019px;}
.y330{bottom:89.559550px;}
.y101{bottom:90.105951px;}
.y31b{bottom:90.369608px;}
.y1ac{bottom:90.846667px;}
.y104{bottom:91.011476px;}
.y1b5{bottom:91.566752px;}
.y174{bottom:91.921217px;}
.y158{bottom:92.617688px;}
.y1b7{bottom:93.908578px;}
.yf7{bottom:94.849444px;}
.y173{bottom:94.859712px;}
.y1d4{bottom:95.221152px;}
.y14d{bottom:96.172162px;}
.y15c{bottom:97.730528px;}
.yce{bottom:98.993171px;}
.y22c{bottom:99.496448px;}
.y239{bottom:99.897527px;}
.y163{bottom:101.810208px;}
.y170{bottom:102.019451px;}
.yb3{bottom:102.949502px;}
.y156{bottom:103.263601px;}
.y25d{bottom:103.444404px;}
.y268{bottom:103.465566px;}
.yc7{bottom:103.493040px;}
.y1ce{bottom:103.500200px;}
.yea{bottom:104.902933px;}
.y21b{bottom:106.777621px;}
.y121{bottom:106.973001px;}
.y21d{bottom:106.995350px;}
.ybd{bottom:107.100062px;}
.yf6{bottom:107.504357px;}
.y102{bottom:108.235301px;}
.y31d{bottom:108.869509px;}
.y312{bottom:111.072810px;}
.y1d5{bottom:113.505468px;}
.y307{bottom:113.958732px;}
.yec{bottom:114.052385px;}
.y175{bottom:114.182819px;}
.y1ad{bottom:115.005170px;}
.y1b6{bottom:115.812729px;}
.y1dd{bottom:115.850660px;}
.y30d{bottom:116.831641px;}
.y280{bottom:116.856000px;}
.y172{bottom:117.221386px;}
.y1ca{bottom:119.392394px;}
.y216{bottom:120.276000px;}
.y331{bottom:120.768593px;}
.y2eb{bottom:122.616000px;}
.y62{bottom:123.156000px;}
.yc8{bottom:123.256939px;}
.y11a{bottom:123.275954px;}
.y10f{bottom:123.673313px;}
.ycf{bottom:123.683242px;}
.ye9{bottom:125.342870px;}
.y1d7{bottom:125.672287px;}
.y21e{bottom:125.830578px;}
.y1de{bottom:125.890444px;}
.y15b{bottom:125.929939px;}
.y1a7{bottom:126.216000px;}
.y157{bottom:126.350172px;}
.ybe{bottom:127.194573px;}
.y14e{bottom:127.286943px;}
.y167{bottom:127.456082px;}
.y169{bottom:127.783592px;}
.yb4{bottom:128.265685px;}
.y1ae{bottom:128.477797px;}
.y1b8{bottom:128.914843px;}
.y315{bottom:129.164104px;}
.y1cb{bottom:129.265649px;}
.y190{bottom:129.425811px;}
.y21c{bottom:129.866938px;}
.y298{bottom:130.176000px;}
.y23a{bottom:130.987119px;}
.y164{bottom:132.778124px;}
.y171{bottom:133.096537px;}
.y73{bottom:135.396000px;}
.y259{bottom:136.656000px;}
.yc2{bottom:137.194691px;}
.ycb{bottom:137.715728px;}
.y51{bottom:137.916000px;}
.y322{bottom:140.431333px;}
.y25e{bottom:141.179038px;}
.y269{bottom:141.207919px;}
.yb8{bottom:141.459333px;}
.yad{bottom:141.696000px;}
.y2aa{bottom:142.596000px;}
.y2ea{bottom:142.776000px;}
.yaf{bottom:142.798223px;}
.y159{bottom:143.352115px;}
.y14f{bottom:143.667290px;}
.y194{bottom:145.718301px;}
.y18f{bottom:145.831378px;}
.ye1{bottom:146.916000px;}
.y215{bottom:147.636000px;}
.y15e{bottom:151.127797px;}
.y16c{bottom:151.236967px;}
.y332{bottom:151.822012px;}
.y1c3{bottom:152.300197px;}
.y308{bottom:153.612440px;}
.y313{bottom:155.173091px;}
.y31c{bottom:158.256000px;}
.y191{bottom:158.835215px;}
.y1bc{bottom:162.054716px;}
.y61{bottom:162.390000px;}
.y1a6{bottom:162.750000px;}
.y2e9{bottom:162.930000px;}
.y149{bottom:163.470000px;}
.y2d9{bottom:163.650000px;}
.y72{bottom:165.630000px;}
.y258{bottom:166.890000px;}
.y50{bottom:168.150000px;}
.y1fb{bottom:169.050000px;}
.y297{bottom:169.590000px;}
.y31{bottom:170.670000px;}
.yac{bottom:171.930000px;}
.y86{bottom:174.630000px;}
.y214{bottom:174.990000px;}
.y27f{bottom:177.150000px;}
.y317{bottom:179.408182px;}
.y2cb{bottom:183.810000px;}
.y1bd{bottom:185.098398px;}
.y1c4{bottom:185.427202px;}
.ye0{bottom:186.510000px;}
.y309{bottom:186.915506px;}
.y96{bottom:192.630000px;}
.y1c5{bottom:192.770492px;}
.y71{bottom:195.870000px;}
.y257{bottom:197.130000px;}
.y4f{bottom:198.390000px;}
.y323{bottom:199.181005px;}
.y314{bottom:199.251351px;}
.y1a5{bottom:199.290000px;}
.y30{bottom:200.730000px;}
.y60{bottom:201.630000px;}
.yab{bottom:202.170000px;}
.y213{bottom:202.530000px;}
.y148{bottom:202.890000px;}
.y18a{bottom:203.430000px;}
.y2a9{bottom:203.790000px;}
.y2ca{bottom:203.970000px;}
.y27e{bottom:207.390000px;}
.y1fa{bottom:208.110000px;}
.y1be{bottom:208.123813px;}
.y296{bottom:210.450000px;}
.y85{bottom:213.870000px;}
.y2f8{bottom:218.910000px;}
.y95{bottom:222.870000px;}
.y1c6{bottom:223.468001px;}
.y2a8{bottom:223.950000px;}
.y2c9{bottom:224.130000px;}
.ydf{bottom:225.930000px;}
.y70{bottom:226.110000px;}
.y1a4{bottom:226.650000px;}
.y256{bottom:227.190000px;}
.y4e{bottom:228.630000px;}
.y147{bottom:230.070000px;}
.y2f{bottom:230.970000px;}
.y1bf{bottom:231.140095px;}
.y1c1{bottom:231.468899px;}
.y5f{bottom:231.870000px;}
.yaa{bottom:232.410000px;}
.y27d{bottom:237.630000px;}
.y295{bottom:240.690000px;}
.y1f9{bottom:241.410000px;}
.y189{bottom:243.030000px;}
.y84{bottom:244.110000px;}
.y2e8{bottom:244.290000px;}
.y2d8{bottom:245.190000px;}
.y2f7{bottom:252.570000px;}
.y94{bottom:253.110000px;}
.y1c0{bottom:254.183777px;}
.y1a3{bottom:254.190000px;}
.y6f{bottom:256.350000px;}
.y212{bottom:257.430000px;}
.y146{bottom:257.610000px;}
.y4d{bottom:258.870000px;}
.y1f8{bottom:261.030000px;}
.y2e{bottom:261.210000px;}
.y5e{bottom:262.110000px;}
.ya9{bottom:262.650000px;}
.y1c2{bottom:264.157499px;}
.y2a7{bottom:264.270000px;}
.yde{bottom:265.350000px;}
.y255{bottom:266.430000px;}
.y27c{bottom:267.870000px;}
.y188{bottom:270.210000px;}
.y294{bottom:270.930000px;}
.y83{bottom:274.395000px;}
.y207{bottom:276.195000px;}
.y1a2{bottom:281.595000px;}
.y93{bottom:283.395000px;}
.y211{bottom:285.015000px;}
.y145{bottom:285.195000px;}
.y2e7{bottom:285.375000px;}
.y2c8{bottom:285.555000px;}
.y2f6{bottom:286.275000px;}
.y6e{bottom:286.455000px;}
.y4c{bottom:289.155000px;}
.y2d{bottom:291.315000px;}
.y5d{bottom:292.395000px;}
.ya8{bottom:292.755000px;}
.y187{bottom:297.795000px;}
.y27b{bottom:298.155000px;}
.y293{bottom:301.035000px;}
.y208{bottom:302.475000px;}
.y82{bottom:304.455000px;}
.y2c7{bottom:305.535000px;}
.y254{bottom:305.715000px;}
.y1a1{bottom:309.135000px;}
.y210{bottom:312.375000px;}
.y144{bottom:312.555000px;}
.y92{bottom:313.455000px;}
.y2a6{bottom:315.435000px;}
.y4b{bottom:319.395000px;}
.ydd{bottom:320.115000px;}
.y2c{bottom:321.555000px;}
.ya7{bottom:322.995000px;}
.y186{bottom:325.155000px;}
.y6d{bottom:325.695000px;}
.y2d7{bottom:326.595000px;}
.y204{bottom:328.575000px;}
.y292{bottom:331.275000px;}
.y5c{bottom:331.455000px;}
.y81{bottom:334.695000px;}
.y1a0{bottom:336.675000px;}
.y27a{bottom:337.395000px;}
.y20f{bottom:339.915000px;}
.y143{bottom:340.095000px;}
.y303{bottom:342.435000px;}
.y91{bottom:343.695000px;}
.y253{bottom:346.575000px;}
.y2c6{bottom:346.755000px;}
.ydc{bottom:347.655000px;}
.y4a{bottom:349.455000px;}
.y2b{bottom:351.795000px;}
.y185{bottom:352.695000px;}
.ya6{bottom:353.235000px;}
.y2f5{bottom:353.775000px;}
.y2a5{bottom:354.675000px;}
.y206{bottom:354.855000px;}
.y291{bottom:361.515000px;}
.y19f{bottom:364.035000px;}
.y6c{bottom:364.935000px;}
.y2c5{bottom:366.915000px;}
.y142{bottom:367.455000px;}
.y5b{bottom:370.695000px;}
.y80{bottom:373.935000px;}
.ydb{bottom:375.195000px;}
.y302{bottom:375.555000px;}
.y49{bottom:379.695000px;}
.y201{bottom:381.135000px;}
.y2a{bottom:382.035000px;}
.ya5{bottom:383.475000px;}
.y2e6{bottom:387.075000px;}
.y2f4{bottom:387.615000px;}
.y184{bottom:389.235000px;}
.y18b{bottom:389.285131px;}
.y19e{bottom:391.575000px;}
.y290{bottom:391.755000px;}
.y2a4{bottom:393.915000px;}
.y20e{bottom:394.815000px;}
.y141{bottom:394.995000px;}
.y301{bottom:395.175000px;}
.y279{bottom:397.695000px;}
.y252{bottom:401.475000px;}
.yda{bottom:402.555000px;}
.y6b{bottom:404.175000px;}
.y203{bottom:407.415000px;}
.y2c4{bottom:407.955000px;}
.y48{bottom:409.935000px;}
.y29{bottom:412.275000px;}
.y7f{bottom:413.175000px;}
.ya4{bottom:413.715000px;}
.y300{bottom:414.795000px;}
.y19d{bottom:418.935000px;}
.y2f3{bottom:421.275000px;}
.y28f{bottom:421.995000px;}
.y20d{bottom:422.355000px;}
.y140{bottom:422.535000px;}
.y2a3{bottom:424.155000px;}
.y278{bottom:427.935000px;}
.y2c3{bottom:428.115000px;}
.y251{bottom:428.835000px;}
.yd9{bottom:430.095000px;}
.y1fc{bottom:433.695000px;}
.y6a{bottom:434.415000px;}
.y2ff{bottom:434.595000px;}
.y47{bottom:440.175000px;}
.y28{bottom:442.515000px;}
.ya3{bottom:443.955000px;}
.y19c{bottom:446.475000px;}
.y2c2{bottom:448.275000px;}
.y20c{bottom:449.715000px;}
.y13f{bottom:449.895000px;}
.y28e{bottom:452.235000px;}
.y7e{bottom:452.415000px;}
.y2a2{bottom:454.395000px;}
.y2f2{bottom:455.115000px;}
.y250{bottom:456.375000px;}
.yd8{bottom:457.455000px;}
.y277{bottom:458.175000px;}
.y1ff{bottom:459.975000px;}
.y69{bottom:464.655000px;}
.y2e5{bottom:468.435000px;}
.y2d6{bottom:469.335000px;}
.y46{bottom:470.415000px;}
.y27{bottom:472.575000px;}
.ya2{bottom:474.015000px;}
.y2fe{bottom:474.195000px;}
.y20b{bottom:477.255000px;}
.y13e{bottom:477.435000px;}
.y28d{bottom:482.295000px;}
.y7d{bottom:482.655000px;}
.y24f{bottom:483.735000px;}
.yd7{bottom:484.995000px;}
.y276{bottom:488.415000px;}
.y2f1{bottom:488.775000px;}
.y2c1{bottom:489.495000px;}
.y2a1{bottom:493.635000px;}
.y2fd{bottom:493.995000px;}
.y90{bottom:494.715000px;}
.y45{bottom:500.655000px;}
.y19b{bottom:501.375000px;}
.y26{bottom:503.715000px;}
.ya1{bottom:504.255000px;}
.y2c0{bottom:509.655000px;}
.y24e{bottom:511.275000px;}
.yd6{bottom:512.355000px;}
.y7c{bottom:512.715000px;}
.y1f7{bottom:513.615000px;}
.y20a{bottom:516.855000px;}
.y13d{bottom:517.035000px;}
.y275{bottom:518.655000px;}
.y28c{bottom:524.595000px;}
.y8f{bottom:524.955000px;}
.y19a{bottom:528.915000px;}
.y2f0{bottom:529.635000px;}
.y2e4{bottom:529.815000px;}
.y2d5{bottom:530.535000px;}
.y5a{bottom:530.715000px;}
.y217{bottom:531.210000px;}
.y15d{bottom:531.360000px;}
.y236{bottom:531.825000px;}
.y2a0{bottom:532.695000px;}
.y2fc{bottom:533.415000px;}
.ya0{bottom:534.495000px;}
.y25{bottom:534.855000px;}
.y24d{bottom:538.635000px;}
.y44{bottom:539.715000px;}
.yd5{bottom:539.895000px;}
.y1f6{bottom:540.975000px;}
.y68{bottom:542.955000px;}
.y274{bottom:548.715000px;}
.y2ef{bottom:549.795000px;}
.y2bf{bottom:550.695000px;}
.y16d{bottom:551.469131px;}
.y15f{bottom:551.686561px;}
.y2fb{bottom:553.215000px;}
.y28b{bottom:554.835000px;}
.y199{bottom:556.305000px;}
.y59{bottom:560.985000px;}
.y8e{bottom:564.225000px;}
.y9f{bottom:564.765000px;}
.y24{bottom:565.845000px;}
.y24c{bottom:566.205000px;}
.yd4{bottom:567.465000px;}
.y43{bottom:569.985000px;}
.y2be{bottom:570.885000px;}
.y2fa{bottom:573.045000px;}
.y7b{bottom:573.225000px;}
.y29f{bottom:573.765000px;}
.y1f5{bottom:578.985000px;}
.y67{bottom:582.225000px;}
.y198{bottom:583.845000px;}
.y28a{bottom:585.105000px;}
.y273{bottom:587.985000px;}
.y2bd{bottom:591.045000px;}
.y58{bottom:591.225000px;}
.y8d{bottom:594.465000px;}
.yd3{bottom:594.825000px;}
.y23{bottom:596.985000px;}
.y42{bottom:600.225000px;}
.y29e{bottom:600.945000px;}
.y7a{bottom:603.465000px;}
.y9e{bottom:605.625000px;}
.y24b{bottom:605.805000px;}
.y197{bottom:611.205000px;}
.y2d4{bottom:612.105000px;}
.y66{bottom:612.465000px;}
.y289{bottom:615.345000px;}
.y1f4{bottom:618.225000px;}
.y265{bottom:620.145000px;}
.y25a{bottom:620.160000px;}
.y32d{bottom:621.195000px;}
.y57{bottom:621.465000px;}
.y31e{bottom:621.750000px;}
.y31a{bottom:623.145000px;}
.y8c{bottom:624.705000px;}
.y22{bottom:627.225000px;}
.y29d{bottom:628.485000px;}
.y41{bottom:630.465000px;}
.y2ee{bottom:631.365000px;}
.y2bc{bottom:632.265000px;}
.yd2{bottom:632.805000px;}
.y79{bottom:633.705000px;}
.y65{bottom:642.705000px;}
.y9d{bottom:645.225000px;}
.y288{bottom:645.405000px;}
.y1f3{bottom:648.465000px;}
.y135{bottom:648.555000px;}
.y12e{bottom:648.930000px;}
.y196{bottom:649.185000px;}
.y56{bottom:651.705000px;}
.y2e3{bottom:652.245000px;}
.y2bb{bottom:652.425000px;}
.yf1{bottom:654.705000px;}
.y8b{bottom:654.945000px;}
.yfc{bottom:655.080000px;}
.y11c{bottom:655.260000px;}
.y29c{bottom:655.845000px;}
.y21{bottom:657.465000px;}
.y40{bottom:660.705000px;}
.y78{bottom:663.945000px;}
.y222{bottom:664.920000px;}
.y1cf{bottom:664.980000px;}
.y9c{bottom:672.405000px;}
.y2d3{bottom:673.305000px;}
.y23f{bottom:673.560000px;}
.y287{bottom:675.645000px;}
.y1f2{bottom:678.705000px;}
.y55{bottom:681.945000px;}
.y17b{bottom:682.740000px;}
.y29b{bottom:683.385000px;}
.y20{bottom:687.705000px;}
.y3f{bottom:690.945000px;}
.y2e2{bottom:692.565000px;}
.y2d2{bottom:693.465000px;}
.y8a{bottom:694.185000px;}
.y9b{bottom:699.945000px;}
.yc{bottom:701.385000px;}
.y77{bottom:703.185000px;}
.y286{bottom:705.885000px;}
.y1f1{bottom:708.945000px;}
.y29a{bottom:710.925000px;}
.y14a{bottom:710.940000px;}
.y54{bottom:712.185000px;}
.y2ba{bottom:713.625000px;}
.y1f{bottom:717.945000px;}
.y226{bottom:719.835000px;}
.y3e{bottom:721.185000px;}
.y9a{bottom:727.305000px;}
.yb{bottom:731.625000px;}
.y89{bottom:733.245000px;}
.y2b9{bottom:733.785000px;}
.y13a{bottom:734.400000px;}
.y285{bottom:736.125000px;}
.y134{bottom:736.380000px;}
.y1f0{bottom:739.185000px;}
.y64{bottom:742.245000px;}
.y230{bottom:742.500000px;}
.y17d{bottom:746.640000px;}
.y270{bottom:747.900000px;}
.y1e{bottom:748.185000px;}
.y299{bottom:750.525000px;}
.y3d{bottom:751.245000px;}
.y2e1{bottom:753.945000px;}
.y2d1{bottom:754.665000px;}
.y99{bottom:754.845000px;}
.y128{bottom:759.060000px;}
.y183{bottom:760.245000px;}
.ya{bottom:761.865000px;}
.y272{bottom:762.300000px;}
.y180{bottom:764.745000px;}
.y284{bottom:766.365000px;}
.y106{bottom:767.700000px;}
.y1ef{bottom:769.245000px;}
.y88{bottom:772.485000px;}
.y271{bottom:773.460000px;}
.y2e0{bottom:774.105000px;}
.y2b8{bottom:774.825000px;}
.y232{bottom:775.005000px;}
.y127{bottom:777.420000px;}
.y1d{bottom:778.245000px;}
.y17f{bottom:779.325000px;}
.y327{bottom:780.480000px;}
.y3c{bottom:781.485000px;}
.y98{bottom:782.205000px;}
.y12b{bottom:783.720000px;}
.y53{bottom:790.485000px;}
.y2b7{bottom:794.985000px;}
.y129{bottom:796.500000px;}
.y283{bottom:796.605000px;}
.y126{bottom:796.680000px;}
.y1ee{bottom:799.485000px;}
.y1e8{bottom:800.100000px;}
.y1c{bottom:808.485000px;}
.y1e3{bottom:810.000000px;}
.y3b{bottom:811.725000px;}
.y1e7{bottom:813.705000px;}
.yfa{bottom:813.960000px;}
.y224{bottom:814.320000px;}
.y2b6{bottom:815.145000px;}
.y124{bottom:819.900000px;}
.y12c{bottom:820.080000px;}
.y97{bottom:820.185000px;}
.y24a{bottom:820.545000px;}
.y63{bottom:820.725000px;}
.y10a{bottom:822.165000px;}
.y115{bottom:822.540000px;}
.y282{bottom:826.665000px;}
.y52{bottom:829.725000px;}
.y304{bottom:834.405000px;}
.y2df{bottom:835.305000px;}
.yc1{bottom:835.980000px;}
.y2d0{bottom:836.205000px;}
.y1bb{bottom:838.035000px;}
.y1b{bottom:838.770000px;}
.y76{bottom:842.010000px;}
.y249{bottom:850.830000px;}
.y3a{bottom:851.010000px;}
.y9{bottom:852.450000px;}
.y2de{bottom:855.510000px;}
.y2b5{bottom:856.410000px;}
.y281{bottom:856.950000px;}
.y1ed{bottom:860.010000px;}
.y179{bottom:860.940000px;}
.y1a{bottom:869.010000px;}
.y75{bottom:872.250000px;}
.y2b4{bottom:876.570000px;}
.y248{bottom:880.890000px;}
.y39{bottom:881.250000px;}
.y8{bottom:882.690000px;}
.y209{bottom:890.250000px;}
.y2b3{bottom:896.730000px;}
.y2cf{bottom:897.450000px;}
.y19{bottom:899.250000px;}
.y247{bottom:911.130000px;}
.y38{bottom:911.490000px;}
.y7{bottom:912.930000px;}
.y2dd{bottom:916.890000px;}
.y2ce{bottom:917.610000px;}
.y87{bottom:920.490000px;}
.y18{bottom:929.490000px;}
.y113{bottom:932.760000px;}
.y2ed{bottom:936.870000px;}
.y2b2{bottom:937.770000px;}
.y246{bottom:941.370000px;}
.y37{bottom:941.730000px;}
.y74{bottom:950.730000px;}
.y108{bottom:951.840000px;}
.y2b1{bottom:957.930000px;}
.y17{bottom:959.730000px;}
.y1eb{bottom:964.620000px;}
.y245{bottom:971.610000px;}
.y36{bottom:971.790000px;}
.y6{bottom:973.410000px;}
.y2b0{bottom:978.090000px;}
.y13c{bottom:980.790000px;}
.y16{bottom:989.790000px;}
.yae{bottom:991.980000px;}
.y1a8{bottom:993.945000px;}
.y1b1{bottom:994.095000px;}
.ye4{bottom:996.150000px;}
.y2dc{bottom:998.250000px;}
.y2cd{bottom:999.150000px;}
.y244{bottom:1001.850000px;}
.y5{bottom:1003.650000px;}
.y35{bottom:1011.030000px;}
.y2db{bottom:1018.410000px;}
.y2af{bottom:1019.130000px;}
.y2cc{bottom:1019.310000px;}
.y15{bottom:1020.030000px;}
.y4{bottom:1033.710000px;}
.y2ae{bottom:1039.290000px;}
.y243{bottom:1041.090000px;}
.y34{bottom:1041.270000px;}
.y14{bottom:1050.270000px;}
.y325{bottom:1055.880000px;}
.y32a{bottom:1058.760000px;}
.y2ad{bottom:1059.450000px;}
.y242{bottom:1071.150000px;}
.y33{bottom:1071.510000px;}
.y2da{bottom:1079.610000px;}
.y13{bottom:1080.510000px;}
.y3{bottom:1097.970000px;}
.y2ec{bottom:1099.770000px;}
.y2ac{bottom:1100.670000px;}
.y241{bottom:1101.390000px;}
.y32{bottom:1101.750000px;}
.y2f9{bottom:1101.930000px;}
.y12{bottom:1110.750000px;}
.ye2{bottom:1120.680000px;}
.y2ab{bottom:1120.830000px;}
.yef{bottom:1121.040000px;}
.y1e5{bottom:1121.220000px;}
.y1e1{bottom:1127.340000px;}
.y2{bottom:1136.520000px;}
.y11{bottom:1141.020000px;}
.y240{bottom:1142.460000px;}
.yf{bottom:1192.558500px;}
.ye{bottom:1208.758500px;}
.yd{bottom:1224.958500px;}
.h3b{height:9.900000px;}
.h3c{height:10.080000px;}
.h41{height:10.980000px;}
.h9a{height:14.580000px;}
.h99{height:14.760000px;}
.h9b{height:14.940000px;}
.h33{height:16.995610px;}
.h2d{height:17.050393px;}
.h8e{height:17.820000px;}
.h77{height:22.140000px;}
.h5b{height:22.860000px;}
.h76{height:23.040000px;}
.h4e{height:23.127684px;}
.h7a{height:23.220000px;}
.h55{height:23.345114px;}
.h7c{height:25.380000px;}
.h7e{height:25.560000px;}
.hab{height:25.920000px;}
.h51{height:26.375899px;}
.h6d{height:26.522767px;}
.h58{height:26.830584px;}
.h5a{height:28.260000px;}
.h23{height:28.493005px;}
.h1f{height:28.800000px;}
.h6f{height:28.809363px;}
.h18{height:29.160000px;}
.h73{height:29.400840px;}
.h79{height:30.077578px;}
.h89{height:30.288885px;}
.h82{height:30.943605px;}
.h14{height:31.027966px;}
.h38{height:31.171543px;}
.h8d{height:31.185588px;}
.h3a{height:31.253324px;}
.h21{height:31.304558px;}
.h24{height:31.359328px;}
.h71{height:31.448622px;}
.h27{height:31.483740px;}
.h2a{height:31.515628px;}
.h6c{height:31.553203px;}
.h10{height:31.561435px;}
.hc{height:31.840719px;}
.h84{height:31.860000px;}
.h83{height:32.040000px;}
.h74{height:32.358748px;}
.h2b{height:32.400000px;}
.h90{height:32.628339px;}
.h94{height:32.635014px;}
.h65{height:33.458807px;}
.h68{height:33.759173px;}
.h52{height:33.759437px;}
.h34{height:33.982557px;}
.h2e{height:34.695862px;}
.h72{height:34.793650px;}
.h6e{height:34.848262px;}
.h49{height:34.950364px;}
.h3e{height:34.965953px;}
.h1b{height:35.089108px;}
.h40{height:35.472801px;}
.h2c{height:35.640000px;}
.h92{height:35.760805px;}
.h75{height:35.800581px;}
.h98{height:35.800679px;}
.h64{height:36.135289px;}
.h54{height:37.290235px;}
.h6a{height:37.347538px;}
.h48{height:38.445364px;}
.h1c{height:38.559142px;}
.h5{height:38.759766px;}
.h44{height:38.883654px;}
.h69{height:39.149411px;}
.h36{height:39.186809px;}
.h13{height:39.526816px;}
.h15{height:39.631579px;}
.h16{height:39.724426px;}
.h17{height:39.829712px;}
.h4d{height:40.018344px;}
.h32{height:40.088435px;}
.h11{height:40.127786px;}
.hf{height:40.221570px;}
.h1e{height:40.363191px;}
.he{height:40.685052px;}
.hb{height:40.780139px;}
.h61{height:41.455593px;}
.h5f{height:41.517270px;}
.h86{height:41.855511px;}
.h29{height:41.875132px;}
.h4a{height:42.375366px;}
.h4b{height:42.391816px;}
.h80{height:42.499035px;}
.h4f{height:42.747213px;}
.h53{height:42.786164px;}
.h45{height:42.813657px;}
.h47{height:42.830276px;}
.h8b{height:42.865615px;}
.h56{height:43.202657px;}
.h66{height:43.224254px;}
.h59{height:43.242023px;}
.h31{height:44.228359px;}
.h1d{height:44.728091px;}
.h78{height:45.116367px;}
.h87{height:45.982871px;}
.h88{height:46.062178px;}
.h81{height:46.698351px;}
.h8c{height:47.101153px;}
.had{height:47.520000px;}
.h5d{height:47.980898px;}
.h60{height:48.121665px;}
.h7{height:50.585625px;}
.h57{height:50.589833px;}
.h7b{height:51.660000px;}
.h7d{height:51.840000px;}
.h50{height:51.870193px;}
.h91{height:52.284742px;}
.h95{height:52.295438px;}
.h9e{height:52.489298px;}
.hd{height:52.510073px;}
.ha9{height:55.729681px;}
.ha2{height:55.738320px;}
.haf{height:57.180870px;}
.hb1{height:57.221418px;}
.h9d{height:57.535264px;}
.h5c{height:58.680000px;}
.h9{height:59.439023px;}
.h42{height:59.551172px;}
.h8{height:61.189805px;}
.haa{height:61.199322px;}
.ha3{height:61.250396px;}
.ha5{height:61.252237px;}
.ha7{height:61.258587px;}
.ha0{height:63.158754px;}
.h9f{height:63.212567px;}
.h46{height:64.518711px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.hac{height:68.084282px;}
.h6{height:69.086250px;}
.ha6{height:71.049643px;}
.hb0{height:73.014122px;}
.h97{height:73.336443px;}
.h25{height:74.004654px;}
.h19{height:74.152664px;}
.h28{height:75.656345px;}
.h39{height:76.658059px;}
.h22{height:76.685649px;}
.h30{height:85.761642px;}
.h3{height:86.255508px;}
.h62{height:90.638561px;}
.h96{height:90.747719px;}
.h3d{height:103.488662px;}
.h3f{height:104.988780px;}
.h85{height:120.557807px;}
.ha4{height:128.198458px;}
.h37{height:131.609848px;}
.h20{height:132.171452px;}
.h26{height:132.728475px;}
.h35{height:140.724337px;}
.h2f{height:141.172500px;}
.h63{height:142.518465px;}
.h67{height:143.011500px;}
.h1a{height:143.235000px;}
.h70{height:143.988417px;}
.h7f{height:151.500000px;}
.h8a{height:152.805000px;}
.h12{height:157.499363px;}
.h8f{height:158.381823px;}
.h93{height:158.414223px;}
.ha{height:164.622134px;}
.h43{height:171.341410px;}
.h4c{height:175.470000px;}
.hae{height:181.014208px;}
.h5e{height:187.434869px;}
.h9c{height:216.060000px;}
.ha8{height:227.522248px;}
.ha1{height:227.535000px;}
.h6b{height:285.855000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:21.352017px;}
.wc{width:22.505767px;}
.wa{width:23.082239px;}
.w19{width:25.312296px;}
.w1a{width:25.334150px;}
.we{width:25.379291px;}
.w18{width:25.421565px;}
.w1b{width:25.552689px;}
.w39{width:31.500000px;}
.w41{width:34.020000px;}
.w1d{width:35.100000px;}
.w24{width:35.460000px;}
.w25{width:35.640000px;}
.w9{width:36.000000px;}
.w1c{width:36.900000px;}
.w5{width:42.840000px;}
.w37{width:50.940000px;}
.w42{width:52.920000px;}
.w11{width:55.260000px;}
.w12{width:55.440000px;}
.w43{width:59.400000px;}
.w31{width:74.016000px;}
.w2d{width:80.100000px;}
.w34{width:81.000000px;}
.w15{width:84.960000px;}
.w2f{width:87.660000px;}
.w36{width:88.740000px;}
.wf{width:93.175500px;}
.w10{width:95.610002px;}
.w32{width:96.840000px;}
.w2c{width:97.236000px;}
.w7{width:97.300500px;}
.w33{width:97.416000px;}
.w2b{width:97.920000px;}
.w14{width:100.113000px;}
.w8{width:100.675500px;}
.w13{width:101.050289px;}
.w3b{width:101.700000px;}
.w3e{width:104.220000px;}
.w3d{width:109.800000px;}
.w21{width:112.124215px;}
.w35{width:112.536000px;}
.w2e{width:113.616000px;}
.w20{width:115.731080px;}
.w1e{width:120.960000px;}
.w4a{width:131.400000px;}
.w38{width:143.623500px;}
.w3c{width:144.748500px;}
.w3a{width:146.998500px;}
.w30{width:148.536000px;}
.w47{width:149.934248px;}
.w40{width:157.650000px;}
.w3f{width:161.908896px;}
.wd{width:164.415000px;}
.w48{width:165.060000px;}
.w4b{width:192.930000px;}
.w2a{width:201.270000px;}
.w28{width:223.275000px;}
.w26{width:233.820000px;}
.w46{width:251.217280px;}
.w27{width:259.380000px;}
.w23{width:260.310000px;}
.w4{width:264.900000px;}
.w3{width:265.080000px;}
.w6{width:265.095000px;}
.w22{width:270.045000px;}
.w49{width:274.860000px;}
.w29{width:275.250000px;}
.w44{width:277.680000px;}
.w1f{width:283.419435px;}
.w16{width:312.915000px;}
.w45{width:371.010000px;}
.w17{width:482.789378px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x50{left:2.622470px;}
.x52{left:5.454373px;}
.x7c{left:7.560000px;}
.x3b{left:8.710834px;}
.x4e{left:9.819692px;}
.x1b{left:11.370000px;}
.x26{left:13.323408px;}
.x77{left:14.685000px;}
.x65{left:15.903310px;}
.x22{left:17.221806px;}
.x16{left:19.673408px;}
.xd{left:21.681747px;}
.x3f{left:22.883514px;}
.x29{left:24.461328px;}
.x6a{left:25.689171px;}
.x1e{left:26.704199px;}
.x28{left:28.540944px;}
.xa{left:30.111558px;}
.x3c{left:31.719333px;}
.x92{left:32.761670px;}
.x9{left:34.119420px;}
.x14{left:36.250299px;}
.x8{left:38.126725px;}
.x13{left:40.143108px;}
.x1d{left:42.087894px;}
.x71{left:43.304807px;}
.x46{left:45.068258px;}
.x94{left:48.170294px;}
.x69{left:50.045817px;}
.xc{left:51.085348px;}
.x15{left:52.780093px;}
.x8e{left:55.705114px;}
.x3{left:57.139500px;}
.x20{left:58.748592px;}
.x49{left:62.562884px;}
.x25{left:65.360589px;}
.x7{left:67.261502px;}
.x48{left:68.952911px;}
.x62{left:71.004618px;}
.x2a{left:72.855227px;}
.x84{left:74.142670px;}
.x68{left:76.921247px;}
.x64{left:80.015342px;}
.x9d{left:81.202694px;}
.x70{left:82.600999px;}
.x8c{left:84.345000px;}
.x8b{left:86.325000px;}
.x67{left:88.179615px;}
.x30{left:90.576996px;}
.xa2{left:93.360702px;}
.xb{left:95.518569px;}
.x54{left:98.542939px;}
.x4a{left:100.930197px;}
.x87{left:102.212728px;}
.x61{left:103.785000px;}
.x4d{left:105.417816px;}
.x53{left:113.276120px;}
.x4b{left:117.062913px;}
.x47{left:118.105146px;}
.x88{left:121.413472px;}
.x9f{left:125.640000px;}
.x97{left:126.651000px;}
.x2{left:127.656000px;}
.x9e{left:133.219060px;}
.xa1{left:134.449500px;}
.x55{left:139.018209px;}
.x9a{left:142.894684px;}
.x12{left:147.312987px;}
.x19{left:152.969659px;}
.x4{left:154.649987px;}
.x73{left:157.216950px;}
.x1a{left:160.020000px;}
.x10{left:163.275418px;}
.x6d{left:166.913539px;}
.x5{left:170.129987px;}
.xf{left:171.156452px;}
.x17{left:173.537907px;}
.x63{left:175.305000px;}
.x6b{left:179.048487px;}
.x11{left:183.996525px;}
.x18{left:186.218427px;}
.x45{left:187.794626px;}
.x6c{left:191.274220px;}
.x21{left:195.210562px;}
.x5e{left:198.000000px;}
.x5d{left:199.489809px;}
.xe{left:200.493264px;}
.x3e{left:205.455000px;}
.x34{left:209.160000px;}
.x59{left:210.398555px;}
.x72{left:211.553493px;}
.x42{left:213.285000px;}
.x4c{left:214.785000px;}
.x58{left:215.962197px;}
.x7f{left:218.910000px;}
.x98{left:220.660588px;}
.x1f{left:222.806405px;}
.x40{left:226.440000px;}
.x6e{left:229.434244px;}
.x79{left:231.090000px;}
.x35{left:239.580000px;}
.x5c{left:248.278672px;}
.x43{left:250.354883px;}
.x44{left:263.973978px;}
.x85{left:266.760000px;}
.x36{left:272.880000px;}
.x56{left:280.139857px;}
.x6{left:281.355000px;}
.x91{left:284.475000px;}
.x5b{left:287.551976px;}
.x83{left:292.365000px;}
.x7a{left:293.655000px;}
.x86{left:301.185000px;}
.x9b{left:304.189505px;}
.x3a{left:305.235000px;}
.x38{left:311.940000px;}
.x4f{left:313.765018px;}
.x8f{left:322.920000px;}
.x5a{left:328.801238px;}
.x3d{left:338.760000px;}
.x39{left:342.360000px;}
.x95{left:352.440000px;}
.x51{left:354.349557px;}
.x37{left:376.020000px;}
.x80{left:390.495000px;}
.x7d{left:391.575000px;}
.xa0{left:399.960000px;}
.x99{left:404.340000px;}
.x9c{left:410.025000px;}
.x2b{left:433.260000px;}
.x93{left:435.720000px;}
.x23{left:436.860000px;}
.x96{left:446.474987px;}
.x31{left:447.840000px;}
.x8d{left:454.875000px;}
.x74{left:464.040000px;}
.x1c{left:471.480000px;}
.x2f{left:478.050000px;}
.x90{left:482.220000px;}
.x57{left:488.487058px;}
.x89{left:496.440000px;}
.x66{left:505.530000px;}
.x8a{left:507.524987px;}
.x6f{left:510.765000px;}
.x75{left:515.880000px;}
.x2c{left:519.870808px;}
.x76{left:527.144987px;}
.x24{left:529.755000px;}
.x78{left:538.124987px;}
.x2d{left:553.811015px;}
.x5f{left:554.940000px;}
.x60{left:566.024987px;}
.x7b{left:569.805000px;}
.x2e{left:587.748806px;}
.x33{left:617.145000px;}
.x27{left:624.435000px;}
.x32{left:656.914272px;}
.x81{left:682.350000px;}
.x7e{left:683.430000px;}
.x41{left:748.769987px;}
.x1{left:757.230000px;}
.x82{left:771.450000px;}
@media print{
.v10{vertical-align:-45.404702pt;}
.v3{vertical-align:-41.406319pt;}
.v2{vertical-align:-27.328554pt;}
.v7{vertical-align:-26.185553pt;}
.vb{vertical-align:-16.789302pt;}
.vc{vertical-align:-13.768155pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:6.563144pt;}
.v4{vertical-align:7.886396pt;}
.va{vertical-align:13.832418pt;}
.v8{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.vd{vertical-align:24.426667pt;}
.ve{vertical-align:34.179805pt;}
.v6{vertical-align:37.025880pt;}
.v5{vertical-align:38.117274pt;}
.vf{vertical-align:59.509389pt;}
.ls8c{letter-spacing:-3.587737pt;}
.ls53{letter-spacing:-1.826058pt;}
.ls8e{letter-spacing:-1.713546pt;}
.ls89{letter-spacing:-1.631169pt;}
.ls8a{letter-spacing:-1.630916pt;}
.ls86{letter-spacing:-1.456055pt;}
.ls8b{letter-spacing:-1.392256pt;}
.ls88{letter-spacing:-1.252738pt;}
.ls3e{letter-spacing:-1.073910pt;}
.ls65{letter-spacing:-1.057584pt;}
.ls2c{letter-spacing:-1.026875pt;}
.ls30{letter-spacing:-1.015530pt;}
.ls31{letter-spacing:-0.930852pt;}
.ls4a{letter-spacing:-0.918785pt;}
.ls22{letter-spacing:-0.910445pt;}
.ls23{letter-spacing:-0.891202pt;}
.ls1f{letter-spacing:-0.805318pt;}
.ls7{letter-spacing:-0.794667pt;}
.ls50{letter-spacing:-0.789130pt;}
.ls12{letter-spacing:-0.784000pt;}
.lse{letter-spacing:-0.757333pt;}
.ls54{letter-spacing:-0.743351pt;}
.ls24{letter-spacing:-0.722786pt;}
.ls41{letter-spacing:-0.705158pt;}
.ls39{letter-spacing:-0.700389pt;}
.ls1b{letter-spacing:-0.672000pt;}
.ls4e{letter-spacing:-0.655984pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.624000pt;}
.ls4b{letter-spacing:-0.532581pt;}
.ls73{letter-spacing:-0.524800pt;}
.ls14{letter-spacing:-0.522133pt;}
.ls3f{letter-spacing:-0.488435pt;}
.ls2d{letter-spacing:-0.454834pt;}
.ls32{letter-spacing:-0.452901pt;}
.ls49{letter-spacing:-0.433073pt;}
.ls2e{letter-spacing:-0.429286pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.409600pt;}
.ls7c{letter-spacing:-0.361067pt;}
.ls56{letter-spacing:-0.358748pt;}
.ls51{letter-spacing:-0.357132pt;}
.ls4f{letter-spacing:-0.340982pt;}
.ls34{letter-spacing:-0.314151pt;}
.ls48{letter-spacing:-0.306455pt;}
.ls7d{letter-spacing:-0.276267pt;}
.ls67{letter-spacing:-0.272279pt;}
.ls15{letter-spacing:-0.259733pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls58{letter-spacing:-0.188267pt;}
.ls44{letter-spacing:-0.182400pt;}
.ls3c{letter-spacing:-0.178677pt;}
.ls1d{letter-spacing:-0.171733pt;}
.ls46{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.156267pt;}
.ls11{letter-spacing:-0.146133pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls57{letter-spacing:-0.107733pt;}
.lsc{letter-spacing:-0.102400pt;}
.ls82{letter-spacing:-0.095467pt;}
.ls68{letter-spacing:-0.089600pt;}
.ls5f{letter-spacing:-0.061867pt;}
.ls5e{letter-spacing:-0.051840pt;}
.ls3a{letter-spacing:-0.045447pt;}
.ls7b{letter-spacing:-0.043520pt;}
.ls7e{letter-spacing:-0.033280pt;}
.ls18{letter-spacing:-0.023040pt;}
.lsd{letter-spacing:-0.020480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.016640pt;}
.ls10{letter-spacing:0.017920pt;}
.ls33{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.053867pt;}
.ls59{letter-spacing:0.058027pt;}
.ls5b{letter-spacing:0.069120pt;}
.ls5d{letter-spacing:0.069333pt;}
.lsf{letter-spacing:0.079467pt;}
.ls2b{letter-spacing:0.081067pt;}
.ls85{letter-spacing:0.082435pt;}
.ls29{letter-spacing:0.088711pt;}
.ls28{letter-spacing:0.097280pt;}
.ls3d{letter-spacing:0.099300pt;}
.ls5{letter-spacing:0.115200pt;}
.ls1a{letter-spacing:0.117867pt;}
.ls60{letter-spacing:0.154667pt;}
.ls79{letter-spacing:0.157867pt;}
.ls80{letter-spacing:0.158720pt;}
.ls83{letter-spacing:0.160000pt;}
.ls77{letter-spacing:0.185067pt;}
.ls1e{letter-spacing:0.189031pt;}
.ls1{letter-spacing:0.220267pt;}
.ls21{letter-spacing:0.226124pt;}
.ls3{letter-spacing:0.227733pt;}
.ls74{letter-spacing:0.230400pt;}
.ls78{letter-spacing:0.237333pt;}
.ls81{letter-spacing:0.248320pt;}
.ls19{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.308587pt;}
.ls6d{letter-spacing:0.309875pt;}
.ls71{letter-spacing:0.309939pt;}
.ls62{letter-spacing:0.318720pt;}
.ls9{letter-spacing:0.330133pt;}
.ls16{letter-spacing:0.348160pt;}
.ls47{letter-spacing:0.397867pt;}
.ls42{letter-spacing:0.404334pt;}
.ls20{letter-spacing:0.444313pt;}
.ls43{letter-spacing:0.462558pt;}
.ls36{letter-spacing:0.556363pt;}
.ls38{letter-spacing:0.563424pt;}
.ls4d{letter-spacing:0.607273pt;}
.ls2f{letter-spacing:0.608155pt;}
.ls75{letter-spacing:0.619877pt;}
.ls8d{letter-spacing:0.642580pt;}
.ls6c{letter-spacing:0.667394pt;}
.ls37{letter-spacing:0.679281pt;}
.ls84{letter-spacing:0.685466pt;}
.ls6b{letter-spacing:0.686750pt;}
.ls5c{letter-spacing:0.709120pt;}
.ls55{letter-spacing:0.714263pt;}
.ls76{letter-spacing:0.759489pt;}
.ls3b{letter-spacing:0.771984pt;}
.ls25{letter-spacing:0.794880pt;}
.ls52{letter-spacing:0.822534pt;}
.ls6a{letter-spacing:0.826334pt;}
.ls4c{letter-spacing:0.841089pt;}
.ls66{letter-spacing:1.182392pt;}
.ls35{letter-spacing:1.365712pt;}
.ls87{letter-spacing:1.626302pt;}
.ls7f{letter-spacing:1.722514pt;}
.ls5a{letter-spacing:4.613120pt;}
.ls63{letter-spacing:6.181269pt;}
.ls69{letter-spacing:6.234586pt;}
.ls64{letter-spacing:7.550914pt;}
.ls7a{letter-spacing:11.013120pt;}
.ls6e{letter-spacing:42.519384pt;}
.ls72{letter-spacing:42.528082pt;}
.ls2{letter-spacing:52.751360pt;}
.ls2a{letter-spacing:86.780997pt;}
.ls27{letter-spacing:91.659451pt;}
.ls45{letter-spacing:99.434201pt;}
.ls6f{letter-spacing:177.839923pt;}
.ls70{letter-spacing:179.713087pt;}
.ls26{letter-spacing:649.460953pt;}
.ws3{word-spacing:-58.880000pt;}
.ws1e{word-spacing:-13.885440pt;}
.wsa{word-spacing:-13.637013pt;}
.ws12{word-spacing:-13.562880pt;}
.ws6{word-spacing:-13.534613pt;}
.ws5e{word-spacing:-13.424747pt;}
.ws4{word-spacing:-13.422080pt;}
.wsf{word-spacing:-13.386347pt;}
.wse{word-spacing:-13.360747pt;}
.wsc{word-spacing:-13.324800pt;}
.ws0{word-spacing:-13.306880pt;}
.ws11{word-spacing:-13.283840pt;}
.ws63{word-spacing:-13.273600pt;}
.ws62{word-spacing:-13.263360pt;}
.wsb{word-spacing:-13.204480pt;}
.ws6a{word-spacing:-13.204061pt;}
.ws7{word-spacing:-13.189013pt;}
.wsd{word-spacing:-13.160747pt;}
.ws5{word-spacing:-13.150613pt;}
.ws16{word-spacing:-13.135147pt;}
.ws15{word-spacing:-13.114880pt;}
.ws61{word-spacing:-13.030613pt;}
.ws5f{word-spacing:-12.945813pt;}
.ws9{word-spacing:-12.894613pt;}
.ws55{word-spacing:-12.782080pt;}
.ws14{word-spacing:-12.634880pt;}
.ws60{word-spacing:-12.549547pt;}
.ws8{word-spacing:-12.512213pt;}
.ws66{word-spacing:-12.436316pt;}
.ws1d{word-spacing:-12.005120pt;}
.ws50{word-spacing:-11.953280pt;}
.ws51{word-spacing:-11.943253pt;}
.ws3f{word-spacing:-11.839253pt;}
.ws40{word-spacing:-11.401490pt;}
.ws1{word-spacing:-10.848000pt;}
.ws3a{word-spacing:-10.128119pt;}
.ws38{word-spacing:-10.040017pt;}
.ws5c{word-spacing:-9.928213pt;}
.ws5b{word-spacing:-9.875947pt;}
.ws5d{word-spacing:-9.848747pt;}
.ws41{word-spacing:-9.822095pt;}
.ws53{word-spacing:-9.690880pt;}
.ws3e{word-spacing:-9.508480pt;}
.ws1b{word-spacing:-9.411928pt;}
.ws19{word-spacing:-9.365108pt;}
.ws20{word-spacing:-9.135837pt;}
.ws4d{word-spacing:-9.112320pt;}
.ws10{word-spacing:-8.389120pt;}
.ws2a{word-spacing:-8.309219pt;}
.ws29{word-spacing:-8.220508pt;}
.ws42{word-spacing:-8.208427pt;}
.ws13{word-spacing:-8.129387pt;}
.ws27{word-spacing:-8.056165pt;}
.ws2b{word-spacing:-8.051504pt;}
.ws23{word-spacing:-8.009131pt;}
.ws2e{word-spacing:-7.975100pt;}
.ws4f{word-spacing:-7.879893pt;}
.ws35{word-spacing:-7.810560pt;}
.ws31{word-spacing:-7.264000pt;}
.ws30{word-spacing:-7.232000pt;}
.ws24{word-spacing:-6.750862pt;}
.ws44{word-spacing:-6.247702pt;}
.ws4e{word-spacing:-6.074880pt;}
.ws2{word-spacing:0.000000pt;}
.ws33{word-spacing:7.945828pt;}
.ws2f{word-spacing:9.819832pt;}
.ws34{word-spacing:10.717519pt;}
.ws28{word-spacing:11.487467pt;}
.ws45{word-spacing:12.137240pt;}
.ws43{word-spacing:13.975956pt;}
.ws36{word-spacing:14.491415pt;}
.ws1c{word-spacing:15.788788pt;}
.ws46{word-spacing:15.817464pt;}
.ws49{word-spacing:15.895403pt;}
.ws48{word-spacing:15.901898pt;}
.ws25{word-spacing:16.198344pt;}
.ws18{word-spacing:16.476625pt;}
.ws17{word-spacing:16.608828pt;}
.ws4a{word-spacing:16.922329pt;}
.ws4c{word-spacing:17.227811pt;}
.ws1a{word-spacing:17.746414pt;}
.ws59{word-spacing:27.504974pt;}
.ws37{word-spacing:31.210553pt;}
.ws39{word-spacing:31.238469pt;}
.ws5a{word-spacing:33.622754pt;}
.ws1f{word-spacing:39.012233pt;}
.ws69{word-spacing:40.869653pt;}
.ws26{word-spacing:49.696633pt;}
.ws22{word-spacing:50.072408pt;}
.ws67{word-spacing:61.455591pt;}
.ws65{word-spacing:63.302499pt;}
.ws2d{word-spacing:64.230969pt;}
.ws64{word-spacing:64.705689pt;}
.ws2c{word-spacing:65.007607pt;}
.ws21{word-spacing:67.374346pt;}
.ws3d{word-spacing:80.839660pt;}
.ws3b{word-spacing:88.975938pt;}
.ws3c{word-spacing:98.936481pt;}
.ws68{word-spacing:105.719554pt;}
.ws6b{word-spacing:106.750521pt;}
.ws57{word-spacing:133.469420pt;}
.ws6c{word-spacing:138.049099pt;}
.ws6d{word-spacing:138.777030pt;}
.ws58{word-spacing:142.296088pt;}
.ws4b{word-spacing:146.063090pt;}
.ws47{word-spacing:148.250993pt;}
.ws52{word-spacing:150.969478pt;}
.ws32{word-spacing:155.391026pt;}
.ws54{word-spacing:158.878661pt;}
.ws56{word-spacing:171.420579pt;}
._18{margin-left:-3.958659pt;}
._4{margin-left:-3.048061pt;}
._3{margin-left:-2.060800pt;}
._0{margin-left:-1.048545pt;}
._1{width:1.574490pt;}
._2{width:2.680139pt;}
._8{width:4.027785pt;}
._d{width:5.487337pt;}
._c{width:6.520971pt;}
._7{width:7.748569pt;}
._6{width:8.744960pt;}
._15{width:9.802801pt;}
._11{width:10.843307pt;}
._5{width:11.941345pt;}
._24{width:13.088795pt;}
._16{width:14.401931pt;}
._14{width:15.426560pt;}
._12{width:17.023360pt;}
._a{width:18.016336pt;}
._9{width:19.136000pt;}
._f{width:20.494956pt;}
._e{width:21.491200pt;}
._17{width:23.173771pt;}
._13{width:24.552960pt;}
._1c{width:25.551517pt;}
._1b{width:27.179969pt;}
._19{width:29.396390pt;}
._1a{width:30.853120pt;}
._25{width:32.703961pt;}
._29{width:33.826902pt;}
._28{width:35.841841pt;}
._27{width:37.035520pt;}
._22{width:48.727362pt;}
._23{width:52.856334pt;}
._1e{width:57.985505pt;}
._1f{width:59.043413pt;}
._1d{width:62.177280pt;}
._26{width:68.063954pt;}
._2a{width:75.871409pt;}
._2c{width:83.997135pt;}
._2b{width:93.042875pt;}
._20{width:96.852816pt;}
._21{width:98.329600pt;}
._b{width:121.733771pt;}
._10{width:754.831787pt;}
.fs37{font-size:22.479335pt;}
.fs49{font-size:22.604505pt;}
.fs3b{font-size:22.866848pt;}
.fs44{font-size:23.576105pt;}
.fs19{font-size:24.283676pt;}
.fs4b{font-size:24.553298pt;}
.fs4e{font-size:25.057395pt;}
.fs59{font-size:25.814247pt;}
.fs55{font-size:26.372244pt;}
.fsd{font-size:26.444143pt;}
.fs26{font-size:26.566508pt;}
.fs5c{font-size:26.578479pt;}
.fs28{font-size:26.636207pt;}
.fs17{font-size:26.679873pt;}
.fs1a{font-size:26.726552pt;}
.fs4c{font-size:26.802654pt;}
.fs1c{font-size:26.832584pt;}
.fs1f{font-size:26.859761pt;}
.fs52{font-size:26.880000pt;}
.fs48{font-size:26.891785pt;}
.fsa{font-size:26.898801pt;}
.fs6{font-size:27.136826pt;}
.fs4f{font-size:27.578325pt;}
.fs5d{font-size:27.808089pt;}
.fs60{font-size:27.813778pt;}
.fs42{font-size:28.515871pt;}
.fs27{font-size:28.687411pt;}
.fs45{font-size:28.771863pt;}
.fs18{font-size:28.809825pt;}
.fs23{font-size:28.962246pt;}
.fs1d{font-size:28.979012pt;}
.fs20{font-size:29.570173pt;}
.fs4d{font-size:29.653514pt;}
.fs4a{font-size:29.700059pt;}
.fs32{font-size:29.787076pt;}
.fs2a{font-size:29.800363pt;}
.fs13{font-size:29.905324pt;}
.fs2c{font-size:30.232333pt;}
.fs5f{font-size:30.477790pt;}
.fs50{font-size:30.511689pt;}
.fs62{font-size:30.511773pt;}
.fs41{font-size:30.796950pt;}
.fs43{font-size:31.433933pt;}
.fs39{font-size:31.781274pt;}
.fs47{font-size:31.830112pt;}
.fs29{font-size:32.000000pt;}
.fs31{font-size:32.765753pt;}
.fs14{font-size:32.862723pt;}
.fs2e{font-size:33.139294pt;}
.fs46{font-size:33.365790pt;}
.fs25{font-size:33.397664pt;}
.fsc{font-size:33.687440pt;}
.fse{font-size:33.776727pt;}
.fsf{font-size:33.855857pt;}
.fs10{font-size:33.945589pt;}
.fs35{font-size:34.106354pt;}
.fs22{font-size:34.166090pt;}
.fsb{font-size:34.199628pt;}
.fs9{font-size:34.279557pt;}
.fs16{font-size:34.400256pt;}
.fs2d{font-size:34.560000pt;}
.fs8{font-size:34.674568pt;}
.fs5{font-size:34.755607pt;}
.fs40{font-size:35.331275pt;}
.fs3e{font-size:35.383841pt;}
.fs56{font-size:35.672113pt;}
.fs1e{font-size:35.688835pt;}
.fs33{font-size:36.115169pt;}
.fs34{font-size:36.129188pt;}
.fs53{font-size:36.220567pt;}
.fs36{font-size:36.432081pt;}
.fs38{font-size:36.465279pt;}
.fs2f{font-size:36.488710pt;}
.fs30{font-size:36.502874pt;}
.fs5a{font-size:36.532992pt;}
.fs3a{font-size:36.820242pt;}
.fs3c{font-size:36.853793pt;}
.fs24{font-size:36.919265pt;}
.fs3{font-size:37.120000pt;}
.fs21{font-size:37.694415pt;}
.fs15{font-size:38.120320pt;}
.fs57{font-size:39.189729pt;}
.fs58{font-size:39.257321pt;}
.fs54{font-size:39.799510pt;}
.fs5b{font-size:40.142805pt;}
.fs51{font-size:40.320000pt;}
.fs3f{font-size:41.012555pt;}
.fs3d{font-size:42.880000pt;}
.fs5e{font-size:44.560613pt;}
.fs61{font-size:44.569728pt;}
.fs64{font-size:44.734949pt;}
.fs7{font-size:44.752654pt;}
.fs2b{font-size:45.241562pt;}
.fs6c{font-size:47.496623pt;}
.fs67{font-size:47.503986pt;}
.fs2{font-size:48.000000pt;}
.fs6f{font-size:48.733425pt;}
.fs71{font-size:48.767984pt;}
.fs63{font-size:49.035464pt;}
.fs6e{font-size:52.158224pt;}
.fs68{font-size:52.201752pt;}
.fs69{font-size:52.203321pt;}
.fs6b{font-size:52.208734pt;}
.fs4{font-size:53.120000pt;}
.fs66{font-size:53.828185pt;}
.fs65{font-size:53.874048pt;}
.fs0{font-size:58.880000pt;}
.fs6d{font-size:60.543952pt;}
.fs6a{font-size:60.553337pt;}
.fs11{font-size:61.440000pt;}
.fs70{font-size:62.227600pt;}
.fs1b{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fs1{font-size:74.880000pt;}
.y32c{bottom:-11.386667pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:0.893333pt;}
.y125{bottom:1.053333pt;}
.y12a{bottom:1.213333pt;}
.y13b{bottom:1.853333pt;}
.y235{bottom:2.813333pt;}
.y182{bottom:2.973333pt;}
.y227{bottom:4.941496pt;}
.y116{bottom:5.568488pt;}
.ye5{bottom:5.578735pt;}
.y10b{bottom:5.586438pt;}
.y17c{bottom:5.693333pt;}
.y1e4{bottom:5.853333pt;}
.y1e2{bottom:5.920000pt;}
.y1ec{bottom:6.053333pt;}
.y32b{bottom:6.533333pt;}
.y1e6{bottom:6.693333pt;}
.y200{bottom:6.720000pt;}
.y122{bottom:7.137057pt;}
.yf8{bottom:7.167512pt;}
.y103{bottom:7.186621pt;}
.y1af{bottom:7.636864pt;}
.y1b9{bottom:7.694230pt;}
.y22e{bottom:8.138963pt;}
.y263{bottom:8.475506pt;}
.y26e{bottom:8.477239pt;}
.y30f{bottom:8.861705pt;}
.y31f{bottom:8.877877pt;}
.y326{bottom:8.933333pt;}
.y160{bottom:9.940948pt;}
.y16e{bottom:9.941756pt;}
.y329{bottom:10.173333pt;}
.y220{bottom:10.211897pt;}
.y1fe{bottom:10.240000pt;}
.y23d{bottom:10.299980pt;}
.y17a{bottom:10.533333pt;}
.yf0{bottom:11.040000pt;}
.yfb{bottom:11.133333pt;}
.y114{bottom:11.333333pt;}
.ye3{bottom:11.360000pt;}
.yc9{bottom:11.364231pt;}
.y1d8{bottom:11.390239pt;}
.yd0{bottom:11.406335pt;}
.y133{bottom:11.436427pt;}
.y1df{bottom:11.487198pt;}
.y139{bottom:11.602204pt;}
.y1ea{bottom:12.093333pt;}
.y117{bottom:12.670304pt;}
.y10c{bottom:12.727480pt;}
.ye6{bottom:12.824978pt;}
.ybf{bottom:12.961945pt;}
.yb6{bottom:13.080958pt;}
.y333{bottom:13.548838pt;}
.y30b{bottom:13.572676pt;}
.y225{bottom:13.693333pt;}
.y223{bottom:13.853333pt;}
.y107{bottom:14.013333pt;}
.y18c{bottom:14.844836pt;}
.y1cc{bottom:15.476521pt;}
.y11d{bottom:15.502469pt;}
.yf2{bottom:15.568621pt;}
.yfd{bottom:15.639298pt;}
.y234{bottom:15.773333pt;}
.y178{bottom:16.041534pt;}
.y181{bottom:16.093333pt;}
.y16a{bottom:16.137766pt;}
.y262{bottom:16.516209pt;}
.y26d{bottom:16.519588pt;}
.y1a9{bottom:16.547925pt;}
.y1b2{bottom:16.739721pt;}
.y109{bottom:17.093333pt;}
.y151{bottom:18.105833pt;}
.y1e9{bottom:18.173333pt;}
.y15a{bottom:18.291047pt;}
.y205{bottom:18.400000pt;}
.y1d0{bottom:19.933525pt;}
.y12f{bottom:20.263705pt;}
.y1da{bottom:20.321360pt;}
.y320{bottom:20.361157pt;}
.y310{bottom:20.372211pt;}
.y136{bottom:20.557437pt;}
.y228{bottom:21.626280pt;}
.yc3{bottom:22.068480pt;}
.ycc{bottom:22.194793pt;}
.y18d{bottom:23.189070pt;}
.y11b{bottom:23.581353pt;}
.y112{bottom:23.657363pt;}
.yee{bottom:23.917277pt;}
.yb9{bottom:23.924481pt;}
.yb0{bottom:24.043493pt;}
.y1c7{bottom:24.245440pt;}
.y32e{bottom:24.393487pt;}
.y25b{bottom:24.892610pt;}
.y266{bottom:24.897702pt;}
.y21f{bottom:25.761241pt;}
.y23c{bottom:25.983448pt;}
.y1fd{bottom:26.400000pt;}
.y202{bottom:26.560000pt;}
.y1b0{bottom:26.900106pt;}
.y30a{bottom:28.117549pt;}
.y328{bottom:28.253333pt;}
.y233{bottom:28.893333pt;}
.y14b{bottom:30.256804pt;}
.y153{bottom:30.349411pt;}
.yfe{bottom:31.753158pt;}
.y218{bottom:33.228786pt;}
.y260{bottom:33.285064pt;}
.y237{bottom:33.515404pt;}
.y11e{bottom:35.401944pt;}
.y16f{bottom:35.537695pt;}
.yf3{bottom:35.553011pt;}
.y161{bottom:35.633927pt;}
.y1d1{bottom:36.088887pt;}
.y1aa{bottom:37.950273pt;}
.y319{bottom:37.992097pt;}
.y324{bottom:38.003319pt;}
.y130{bottom:38.009496pt;}
.y1b3{bottom:38.290504pt;}
.y229{bottom:38.311146pt;}
.yed{bottom:39.214968pt;}
.yc4{bottom:39.553235pt;}
.y22d{bottom:39.571544pt;}
.y123{bottom:40.174526pt;}
.yc0{bottom:40.183567pt;}
.yf9{bottom:40.345958pt;}
.y1d9{bottom:40.500514pt;}
.yb7{bottom:40.540605pt;}
.y105{bottom:40.621706pt;}
.y1e0{bottom:40.839870pt;}
.yba{bottom:41.730730pt;}
.y231{bottom:41.853333pt;}
.y17e{bottom:42.013333pt;}
.y152{bottom:42.129175pt;}
.y165{bottom:42.486574pt;}
.y261{bottom:42.498966pt;}
.y305{bottom:43.172041pt;}
.y1ba{bottom:43.473627pt;}
.yca{bottom:44.142575pt;}
.yd1{bottom:44.310991pt;}
.y1cd{bottom:44.531431pt;}
.y335{bottom:44.904721pt;}
.y118{bottom:44.983481pt;}
.y10d{bottom:45.128478pt;}
.yeb{bottom:45.130450pt;}
.y26a{bottom:45.188908pt;}
.ye7{bottom:45.624035pt;}
.yb1{bottom:46.551726pt;}
.y137{bottom:47.630200pt;}
.y1d6{bottom:47.772427pt;}
.yff{bottom:47.866459pt;}
.y1db{bottom:47.869386pt;}
.y316{bottom:48.197777pt;}
.y221{bottom:48.473533pt;}
.y23e{bottom:48.891647pt;}
.y154{bottom:50.774310pt;}
.y16b{bottom:50.806952pt;}
.y10{bottom:51.072000pt;}
.y1c8{bottom:51.546729pt;}
.y32f{bottom:52.000988pt;}
.y1d2{bottom:52.281013pt;}
.y168{bottom:53.605750pt;}
.y219{bottom:53.761555pt;}
.y306{bottom:55.028812pt;}
.y22a{bottom:55.093724pt;}
.y111{bottom:55.249068pt;}
.y11f{bottom:55.287058pt;}
.yf4{bottom:55.522979pt;}
.y131{bottom:55.754347pt;}
.y195{bottom:56.101135pt;}
.y166{bottom:56.115045pt;}
.y192{bottom:56.201647pt;}
.yc5{bottom:57.036936pt;}
.y26b{bottom:57.437067pt;}
.y264{bottom:57.760319pt;}
.y26f{bottom:57.772135pt;}
.y14c{bottom:57.823336pt;}
.y25c{bottom:58.430320pt;}
.y267{bottom:58.442273pt;}
.y23b{bottom:58.543843pt;}
.y1ab{bottom:59.352621pt;}
.ybb{bottom:59.526069pt;}
.y311{bottom:59.551799pt;}
.y1b4{bottom:59.840689pt;}
.y22f{bottom:61.100933pt;}
.y238{bottom:61.159606pt;}
.yb5{bottom:62.560886pt;}
.y162{bottom:63.064732pt;}
.y318{bottom:63.075124pt;}
.y150{bottom:63.852129pt;}
.y100{bottom:63.979201pt;}
.y334{bottom:65.791909pt;}
.ycd{bottom:66.047200pt;}
.y177{bottom:67.311044pt;}
.y26c{bottom:67.658060pt;}
.y1d3{bottom:68.436779pt;}
.y1{bottom:68.992000pt;}
.yb2{bottom:69.061942pt;}
.y176{bottom:69.145101pt;}
.y155{bottom:71.272361pt;}
.y22b{bottom:71.758884pt;}
.y110{bottom:72.264645pt;}
.y321{bottom:72.609182pt;}
.y132{bottom:73.612066pt;}
.y30c{bottom:73.982172pt;}
.y21a{bottom:74.285392pt;}
.yc6{bottom:74.510112pt;}
.y138{bottom:74.679108pt;}
.y120{bottom:75.187085pt;}
.y1dc{bottom:75.421855pt;}
.yf5{bottom:75.507923pt;}
.y193{bottom:76.306711pt;}
.y30e{bottom:76.401464pt;}
.y18e{bottom:76.407224pt;}
.y119{bottom:77.283767pt;}
.y25f{bottom:77.378072pt;}
.ybc{bottom:77.392815pt;}
.y10e{bottom:77.532879pt;}
.ye8{bottom:78.521671pt;}
.y1c9{bottom:78.848017pt;}
.y330{bottom:79.608489pt;}
.y101{bottom:80.094179pt;}
.y31b{bottom:80.328540pt;}
.y1ac{bottom:80.752593pt;}
.y104{bottom:80.899089pt;}
.y1b5{bottom:81.392669pt;}
.y174{bottom:81.707749pt;}
.y158{bottom:82.326834pt;}
.y1b7{bottom:83.474292pt;}
.yf7{bottom:84.310617pt;}
.y173{bottom:84.319744pt;}
.y1d4{bottom:84.641024pt;}
.y14d{bottom:85.486366pt;}
.y15c{bottom:86.871580pt;}
.yce{bottom:87.993930pt;}
.y22c{bottom:88.441287pt;}
.y239{bottom:88.797802pt;}
.y163{bottom:90.497963pt;}
.y170{bottom:90.683956pt;}
.yb3{bottom:91.510669pt;}
.y156{bottom:91.789867pt;}
.y25d{bottom:91.950581pt;}
.y268{bottom:91.969392pt;}
.yc7{bottom:91.993813pt;}
.y1ce{bottom:92.000178pt;}
.yea{bottom:93.247052pt;}
.y21b{bottom:94.913441pt;}
.y121{bottom:95.087112pt;}
.y21d{bottom:95.106978pt;}
.ybd{bottom:95.200055pt;}
.yf6{bottom:95.559428pt;}
.y102{bottom:96.209157pt;}
.y31d{bottom:96.772897pt;}
.y312{bottom:98.731387pt;}
.y1d5{bottom:100.893749pt;}
.y307{bottom:101.296651pt;}
.yec{bottom:101.379898pt;}
.y175{bottom:101.495839pt;}
.y1ad{bottom:102.226818pt;}
.y1b6{bottom:102.944648pt;}
.y1dd{bottom:102.978364pt;}
.y30d{bottom:103.850348pt;}
.y280{bottom:103.872000pt;}
.y172{bottom:104.196788pt;}
.y1ca{bottom:106.126573pt;}
.y216{bottom:106.912000pt;}
.y331{bottom:107.349861pt;}
.y2eb{bottom:108.992000pt;}
.y62{bottom:109.472000pt;}
.yc8{bottom:109.561723pt;}
.y11a{bottom:109.578626pt;}
.y10f{bottom:109.931834pt;}
.ycf{bottom:109.940660pt;}
.ye9{bottom:111.415885pt;}
.y1d7{bottom:111.708699pt;}
.y21e{bottom:111.849403pt;}
.y1de{bottom:111.902617pt;}
.y15b{bottom:111.937724pt;}
.y1a7{bottom:112.192000pt;}
.y157{bottom:112.311264pt;}
.ybe{bottom:113.061843pt;}
.y14e{bottom:113.143949pt;}
.y167{bottom:113.294295pt;}
.y169{bottom:113.585416pt;}
.yb4{bottom:114.013943pt;}
.y1ae{bottom:114.202486pt;}
.y1b8{bottom:114.590972pt;}
.y315{bottom:114.812537pt;}
.y1cb{bottom:114.902799pt;}
.y190{bottom:115.045165pt;}
.y21c{bottom:115.437278pt;}
.y298{bottom:115.712000pt;}
.y23a{bottom:116.432994pt;}
.y164{bottom:118.024999pt;}
.y171{bottom:118.308033pt;}
.y73{bottom:120.352000pt;}
.y259{bottom:121.472000pt;}
.yc2{bottom:121.950836pt;}
.ycb{bottom:122.413981pt;}
.y51{bottom:122.592000pt;}
.y322{bottom:124.827851pt;}
.y25e{bottom:125.492479pt;}
.y269{bottom:125.518150pt;}
.yb8{bottom:125.741629pt;}
.yad{bottom:125.952000pt;}
.y2aa{bottom:126.752000pt;}
.y2ea{bottom:126.912000pt;}
.yaf{bottom:126.931754pt;}
.y159{bottom:127.424102pt;}
.y14f{bottom:127.704258pt;}
.y194{bottom:129.527378pt;}
.y18f{bottom:129.627891pt;}
.ye1{bottom:130.592000pt;}
.y215{bottom:131.232000pt;}
.y15e{bottom:134.335820pt;}
.y16c{bottom:134.432860pt;}
.y332{bottom:134.952900pt;}
.y1c3{bottom:135.377953pt;}
.y308{bottom:136.544391pt;}
.y313{bottom:137.931636pt;}
.y31c{bottom:140.672000pt;}
.y191{bottom:141.186858pt;}
.y1bc{bottom:144.048637pt;}
.y61{bottom:144.346667pt;}
.y1a6{bottom:144.666667pt;}
.y2e9{bottom:144.826667pt;}
.y149{bottom:145.306667pt;}
.y2d9{bottom:145.466667pt;}
.y72{bottom:147.226667pt;}
.y258{bottom:148.346667pt;}
.y50{bottom:149.466667pt;}
.y1fb{bottom:150.266667pt;}
.y297{bottom:150.746667pt;}
.y31{bottom:151.706667pt;}
.yac{bottom:152.826667pt;}
.y86{bottom:155.226667pt;}
.y214{bottom:155.546667pt;}
.y27f{bottom:157.466667pt;}
.y317{bottom:159.473939pt;}
.y2cb{bottom:163.386667pt;}
.y1bd{bottom:164.531910pt;}
.y1c4{bottom:164.824180pt;}
.ye0{bottom:165.786667pt;}
.y309{bottom:166.147116pt;}
.y96{bottom:171.226667pt;}
.y1c5{bottom:171.351549pt;}
.y71{bottom:174.106667pt;}
.y257{bottom:175.226667pt;}
.y4f{bottom:176.346667pt;}
.y323{bottom:177.049782pt;}
.y314{bottom:177.112312pt;}
.y1a5{bottom:177.146667pt;}
.y30{bottom:178.426667pt;}
.y60{bottom:179.226667pt;}
.yab{bottom:179.706667pt;}
.y213{bottom:180.026667pt;}
.y148{bottom:180.346667pt;}
.y18a{bottom:180.826667pt;}
.y2a9{bottom:181.146667pt;}
.y2ca{bottom:181.306667pt;}
.y27e{bottom:184.346667pt;}
.y1fa{bottom:184.986667pt;}
.y1be{bottom:184.998945pt;}
.y296{bottom:187.066667pt;}
.y85{bottom:190.106667pt;}
.y2f8{bottom:194.586667pt;}
.y95{bottom:198.106667pt;}
.y1c6{bottom:198.638223pt;}
.y2a8{bottom:199.066667pt;}
.y2c9{bottom:199.226667pt;}
.ydf{bottom:200.826667pt;}
.y70{bottom:200.986667pt;}
.y1a4{bottom:201.466667pt;}
.y256{bottom:201.946667pt;}
.y4e{bottom:203.226667pt;}
.y147{bottom:204.506667pt;}
.y2f{bottom:205.306667pt;}
.y1bf{bottom:205.457862pt;}
.y1c1{bottom:205.750133pt;}
.y5f{bottom:206.106667pt;}
.yaa{bottom:206.586667pt;}
.y27d{bottom:211.226667pt;}
.y295{bottom:213.946667pt;}
.y1f9{bottom:214.586667pt;}
.y189{bottom:216.026667pt;}
.y84{bottom:216.986667pt;}
.y2e8{bottom:217.146667pt;}
.y2d8{bottom:217.946667pt;}
.y2f7{bottom:224.506667pt;}
.y94{bottom:224.986667pt;}
.y1c0{bottom:225.941135pt;}
.y1a3{bottom:225.946667pt;}
.y6f{bottom:227.866667pt;}
.y212{bottom:228.826667pt;}
.y146{bottom:228.986667pt;}
.y4d{bottom:230.106667pt;}
.y1f8{bottom:232.026667pt;}
.y2e{bottom:232.186667pt;}
.y5e{bottom:232.986667pt;}
.ya9{bottom:233.466667pt;}
.y1c2{bottom:234.806666pt;}
.y2a7{bottom:234.906667pt;}
.yde{bottom:235.866667pt;}
.y255{bottom:236.826667pt;}
.y27c{bottom:238.106667pt;}
.y188{bottom:240.186667pt;}
.y294{bottom:240.826667pt;}
.y83{bottom:243.906667pt;}
.y207{bottom:245.506667pt;}
.y1a2{bottom:250.306667pt;}
.y93{bottom:251.906667pt;}
.y211{bottom:253.346667pt;}
.y145{bottom:253.506667pt;}
.y2e7{bottom:253.666667pt;}
.y2c8{bottom:253.826667pt;}
.y2f6{bottom:254.466667pt;}
.y6e{bottom:254.626667pt;}
.y4c{bottom:257.026667pt;}
.y2d{bottom:258.946667pt;}
.y5d{bottom:259.906667pt;}
.ya8{bottom:260.226667pt;}
.y187{bottom:264.706667pt;}
.y27b{bottom:265.026667pt;}
.y293{bottom:267.586667pt;}
.y208{bottom:268.866667pt;}
.y82{bottom:270.626667pt;}
.y2c7{bottom:271.586667pt;}
.y254{bottom:271.746667pt;}
.y1a1{bottom:274.786667pt;}
.y210{bottom:277.666667pt;}
.y144{bottom:277.826667pt;}
.y92{bottom:278.626667pt;}
.y2a6{bottom:280.386667pt;}
.y4b{bottom:283.906667pt;}
.ydd{bottom:284.546667pt;}
.y2c{bottom:285.826667pt;}
.ya7{bottom:287.106667pt;}
.y186{bottom:289.026667pt;}
.y6d{bottom:289.506667pt;}
.y2d7{bottom:290.306667pt;}
.y204{bottom:292.066667pt;}
.y292{bottom:294.466667pt;}
.y5c{bottom:294.626667pt;}
.y81{bottom:297.506667pt;}
.y1a0{bottom:299.266667pt;}
.y27a{bottom:299.906667pt;}
.y20f{bottom:302.146667pt;}
.y143{bottom:302.306667pt;}
.y303{bottom:304.386667pt;}
.y91{bottom:305.506667pt;}
.y253{bottom:308.066667pt;}
.y2c6{bottom:308.226667pt;}
.ydc{bottom:309.026667pt;}
.y4a{bottom:310.626667pt;}
.y2b{bottom:312.706667pt;}
.y185{bottom:313.506667pt;}
.ya6{bottom:313.986667pt;}
.y2f5{bottom:314.466667pt;}
.y2a5{bottom:315.266667pt;}
.y206{bottom:315.426667pt;}
.y291{bottom:321.346667pt;}
.y19f{bottom:323.586667pt;}
.y6c{bottom:324.386667pt;}
.y2c5{bottom:326.146667pt;}
.y142{bottom:326.626667pt;}
.y5b{bottom:329.506667pt;}
.y80{bottom:332.386667pt;}
.ydb{bottom:333.506667pt;}
.y302{bottom:333.826667pt;}
.y49{bottom:337.506667pt;}
.y201{bottom:338.786667pt;}
.y2a{bottom:339.586667pt;}
.ya5{bottom:340.866667pt;}
.y2e6{bottom:344.066667pt;}
.y2f4{bottom:344.546667pt;}
.y184{bottom:345.986667pt;}
.y18b{bottom:346.031228pt;}
.y19e{bottom:348.066667pt;}
.y290{bottom:348.226667pt;}
.y2a4{bottom:350.146667pt;}
.y20e{bottom:350.946667pt;}
.y141{bottom:351.106667pt;}
.y301{bottom:351.266667pt;}
.y279{bottom:353.506667pt;}
.y252{bottom:356.866667pt;}
.yda{bottom:357.826667pt;}
.y6b{bottom:359.266667pt;}
.y203{bottom:362.146667pt;}
.y2c4{bottom:362.626667pt;}
.y48{bottom:364.386667pt;}
.y29{bottom:366.466667pt;}
.y7f{bottom:367.266667pt;}
.ya4{bottom:367.746667pt;}
.y300{bottom:368.706667pt;}
.y19d{bottom:372.386667pt;}
.y2f3{bottom:374.466667pt;}
.y28f{bottom:375.106667pt;}
.y20d{bottom:375.426667pt;}
.y140{bottom:375.586667pt;}
.y2a3{bottom:377.026667pt;}
.y278{bottom:380.386667pt;}
.y2c3{bottom:380.546667pt;}
.y251{bottom:381.186667pt;}
.yd9{bottom:382.306667pt;}
.y1fc{bottom:385.506667pt;}
.y6a{bottom:386.146667pt;}
.y2ff{bottom:386.306667pt;}
.y47{bottom:391.266667pt;}
.y28{bottom:393.346667pt;}
.ya3{bottom:394.626667pt;}
.y19c{bottom:396.866667pt;}
.y2c2{bottom:398.466667pt;}
.y20c{bottom:399.746667pt;}
.y13f{bottom:399.906667pt;}
.y28e{bottom:401.986667pt;}
.y7e{bottom:402.146667pt;}
.y2a2{bottom:403.906667pt;}
.y2f2{bottom:404.546667pt;}
.y250{bottom:405.666667pt;}
.yd8{bottom:406.626667pt;}
.y277{bottom:407.266667pt;}
.y1ff{bottom:408.866667pt;}
.y69{bottom:413.026667pt;}
.y2e5{bottom:416.386667pt;}
.y2d6{bottom:417.186667pt;}
.y46{bottom:418.146667pt;}
.y27{bottom:420.066667pt;}
.ya2{bottom:421.346667pt;}
.y2fe{bottom:421.506667pt;}
.y20b{bottom:424.226667pt;}
.y13e{bottom:424.386667pt;}
.y28d{bottom:428.706667pt;}
.y7d{bottom:429.026667pt;}
.y24f{bottom:429.986667pt;}
.yd7{bottom:431.106667pt;}
.y276{bottom:434.146667pt;}
.y2f1{bottom:434.466667pt;}
.y2c1{bottom:435.106667pt;}
.y2a1{bottom:438.786667pt;}
.y2fd{bottom:439.106667pt;}
.y90{bottom:439.746667pt;}
.y45{bottom:445.026667pt;}
.y19b{bottom:445.666667pt;}
.y26{bottom:447.746667pt;}
.ya1{bottom:448.226667pt;}
.y2c0{bottom:453.026667pt;}
.y24e{bottom:454.466667pt;}
.yd6{bottom:455.426667pt;}
.y7c{bottom:455.746667pt;}
.y1f7{bottom:456.546667pt;}
.y20a{bottom:459.426667pt;}
.y13d{bottom:459.586667pt;}
.y275{bottom:461.026667pt;}
.y28c{bottom:466.306667pt;}
.y8f{bottom:466.626667pt;}
.y19a{bottom:470.146667pt;}
.y2f0{bottom:470.786667pt;}
.y2e4{bottom:470.946667pt;}
.y2d5{bottom:471.586667pt;}
.y5a{bottom:471.746667pt;}
.y217{bottom:472.186667pt;}
.y15d{bottom:472.320000pt;}
.y236{bottom:472.733333pt;}
.y2a0{bottom:473.506667pt;}
.y2fc{bottom:474.146667pt;}
.ya0{bottom:475.106667pt;}
.y25{bottom:475.426667pt;}
.y24d{bottom:478.786667pt;}
.y44{bottom:479.746667pt;}
.yd5{bottom:479.906667pt;}
.y1f6{bottom:480.866667pt;}
.y68{bottom:482.626667pt;}
.y274{bottom:487.746667pt;}
.y2ef{bottom:488.706667pt;}
.y2bf{bottom:489.506667pt;}
.y16d{bottom:490.194783pt;}
.y15f{bottom:490.388055pt;}
.y2fb{bottom:491.746667pt;}
.y28b{bottom:493.186667pt;}
.y199{bottom:494.493333pt;}
.y59{bottom:498.653333pt;}
.y8e{bottom:501.533333pt;}
.y9f{bottom:502.013333pt;}
.y24{bottom:502.973333pt;}
.y24c{bottom:503.293333pt;}
.yd4{bottom:504.413333pt;}
.y43{bottom:506.653333pt;}
.y2be{bottom:507.453333pt;}
.y2fa{bottom:509.373333pt;}
.y7b{bottom:509.533333pt;}
.y29f{bottom:510.013333pt;}
.y1f5{bottom:514.653333pt;}
.y67{bottom:517.533333pt;}
.y198{bottom:518.973333pt;}
.y28a{bottom:520.093333pt;}
.y273{bottom:522.653333pt;}
.y2bd{bottom:525.373333pt;}
.y58{bottom:525.533333pt;}
.y8d{bottom:528.413333pt;}
.yd3{bottom:528.733333pt;}
.y23{bottom:530.653333pt;}
.y42{bottom:533.533333pt;}
.y29e{bottom:534.173333pt;}
.y7a{bottom:536.413333pt;}
.y9e{bottom:538.333333pt;}
.y24b{bottom:538.493333pt;}
.y197{bottom:543.293333pt;}
.y2d4{bottom:544.093333pt;}
.y66{bottom:544.413333pt;}
.y289{bottom:546.973333pt;}
.y1f4{bottom:549.533333pt;}
.y265{bottom:551.240000pt;}
.y25a{bottom:551.253333pt;}
.y32d{bottom:552.173333pt;}
.y57{bottom:552.413333pt;}
.y31e{bottom:552.666667pt;}
.y31a{bottom:553.906667pt;}
.y8c{bottom:555.293333pt;}
.y22{bottom:557.533333pt;}
.y29d{bottom:558.653333pt;}
.y41{bottom:560.413333pt;}
.y2ee{bottom:561.213333pt;}
.y2bc{bottom:562.013333pt;}
.yd2{bottom:562.493333pt;}
.y79{bottom:563.293333pt;}
.y65{bottom:571.293333pt;}
.y9d{bottom:573.533333pt;}
.y288{bottom:573.693333pt;}
.y1f3{bottom:576.413333pt;}
.y135{bottom:576.493333pt;}
.y12e{bottom:576.826667pt;}
.y196{bottom:577.053333pt;}
.y56{bottom:579.293333pt;}
.y2e3{bottom:579.773333pt;}
.y2bb{bottom:579.933333pt;}
.yf1{bottom:581.960000pt;}
.y8b{bottom:582.173333pt;}
.yfc{bottom:582.293333pt;}
.y11c{bottom:582.453333pt;}
.y29c{bottom:582.973333pt;}
.y21{bottom:584.413333pt;}
.y40{bottom:587.293333pt;}
.y78{bottom:590.173333pt;}
.y222{bottom:591.040000pt;}
.y1cf{bottom:591.093333pt;}
.y9c{bottom:597.693333pt;}
.y2d3{bottom:598.493333pt;}
.y23f{bottom:598.720000pt;}
.y287{bottom:600.573333pt;}
.y1f2{bottom:603.293333pt;}
.y55{bottom:606.173333pt;}
.y17b{bottom:606.880000pt;}
.y29b{bottom:607.453333pt;}
.y20{bottom:611.293333pt;}
.y3f{bottom:614.173333pt;}
.y2e2{bottom:615.613333pt;}
.y2d2{bottom:616.413333pt;}
.y8a{bottom:617.053333pt;}
.y9b{bottom:622.173333pt;}
.yc{bottom:623.453333pt;}
.y77{bottom:625.053333pt;}
.y286{bottom:627.453333pt;}
.y1f1{bottom:630.173333pt;}
.y29a{bottom:631.933333pt;}
.y14a{bottom:631.946667pt;}
.y54{bottom:633.053333pt;}
.y2ba{bottom:634.333333pt;}
.y1f{bottom:638.173333pt;}
.y226{bottom:639.853333pt;}
.y3e{bottom:641.053333pt;}
.y9a{bottom:646.493333pt;}
.yb{bottom:650.333333pt;}
.y89{bottom:651.773333pt;}
.y2b9{bottom:652.253333pt;}
.y13a{bottom:652.800000pt;}
.y285{bottom:654.333333pt;}
.y134{bottom:654.560000pt;}
.y1f0{bottom:657.053333pt;}
.y64{bottom:659.773333pt;}
.y230{bottom:660.000000pt;}
.y17d{bottom:663.680000pt;}
.y270{bottom:664.800000pt;}
.y1e{bottom:665.053333pt;}
.y299{bottom:667.133333pt;}
.y3d{bottom:667.773333pt;}
.y2e1{bottom:670.173333pt;}
.y2d1{bottom:670.813333pt;}
.y99{bottom:670.973333pt;}
.y128{bottom:674.720000pt;}
.y183{bottom:675.773333pt;}
.ya{bottom:677.213333pt;}
.y272{bottom:677.600000pt;}
.y180{bottom:679.773333pt;}
.y284{bottom:681.213333pt;}
.y106{bottom:682.400000pt;}
.y1ef{bottom:683.773333pt;}
.y88{bottom:686.653333pt;}
.y271{bottom:687.520000pt;}
.y2e0{bottom:688.093333pt;}
.y2b8{bottom:688.733333pt;}
.y232{bottom:688.893333pt;}
.y127{bottom:691.040000pt;}
.y1d{bottom:691.773333pt;}
.y17f{bottom:692.733333pt;}
.y327{bottom:693.760000pt;}
.y3c{bottom:694.653333pt;}
.y98{bottom:695.293333pt;}
.y12b{bottom:696.640000pt;}
.y53{bottom:702.653333pt;}
.y2b7{bottom:706.653333pt;}
.y129{bottom:708.000000pt;}
.y283{bottom:708.093333pt;}
.y126{bottom:708.160000pt;}
.y1ee{bottom:710.653333pt;}
.y1e8{bottom:711.200000pt;}
.y1c{bottom:718.653333pt;}
.y1e3{bottom:720.000000pt;}
.y3b{bottom:721.533333pt;}
.y1e7{bottom:723.293333pt;}
.yfa{bottom:723.520000pt;}
.y224{bottom:723.840000pt;}
.y2b6{bottom:724.573333pt;}
.y124{bottom:728.800000pt;}
.y12c{bottom:728.960000pt;}
.y97{bottom:729.053333pt;}
.y24a{bottom:729.373333pt;}
.y63{bottom:729.533333pt;}
.y10a{bottom:730.813333pt;}
.y115{bottom:731.146667pt;}
.y282{bottom:734.813333pt;}
.y52{bottom:737.533333pt;}
.y304{bottom:741.693333pt;}
.y2df{bottom:742.493333pt;}
.yc1{bottom:743.093333pt;}
.y2d0{bottom:743.293333pt;}
.y1bb{bottom:744.920000pt;}
.y1b{bottom:745.573333pt;}
.y76{bottom:748.453333pt;}
.y249{bottom:756.293333pt;}
.y3a{bottom:756.453333pt;}
.y9{bottom:757.733333pt;}
.y2de{bottom:760.453333pt;}
.y2b5{bottom:761.253333pt;}
.y281{bottom:761.733333pt;}
.y1ed{bottom:764.453333pt;}
.y179{bottom:765.280000pt;}
.y1a{bottom:772.453333pt;}
.y75{bottom:775.333333pt;}
.y2b4{bottom:779.173333pt;}
.y248{bottom:783.013333pt;}
.y39{bottom:783.333333pt;}
.y8{bottom:784.613333pt;}
.y209{bottom:791.333333pt;}
.y2b3{bottom:797.093333pt;}
.y2cf{bottom:797.733333pt;}
.y19{bottom:799.333333pt;}
.y247{bottom:809.893333pt;}
.y38{bottom:810.213333pt;}
.y7{bottom:811.493333pt;}
.y2dd{bottom:815.013333pt;}
.y2ce{bottom:815.653333pt;}
.y87{bottom:818.213333pt;}
.y18{bottom:826.213333pt;}
.y113{bottom:829.120000pt;}
.y2ed{bottom:832.773333pt;}
.y2b2{bottom:833.573333pt;}
.y246{bottom:836.773333pt;}
.y37{bottom:837.093333pt;}
.y74{bottom:845.093333pt;}
.y108{bottom:846.080000pt;}
.y2b1{bottom:851.493333pt;}
.y17{bottom:853.093333pt;}
.y1eb{bottom:857.440000pt;}
.y245{bottom:863.653333pt;}
.y36{bottom:863.813333pt;}
.y6{bottom:865.253333pt;}
.y2b0{bottom:869.413333pt;}
.y13c{bottom:871.813333pt;}
.y16{bottom:879.813333pt;}
.yae{bottom:881.760000pt;}
.y1a8{bottom:883.506667pt;}
.y1b1{bottom:883.640000pt;}
.ye4{bottom:885.466667pt;}
.y2dc{bottom:887.333333pt;}
.y2cd{bottom:888.133333pt;}
.y244{bottom:890.533333pt;}
.y5{bottom:892.133333pt;}
.y35{bottom:898.693333pt;}
.y2db{bottom:905.253333pt;}
.y2af{bottom:905.893333pt;}
.y2cc{bottom:906.053333pt;}
.y15{bottom:906.693333pt;}
.y4{bottom:918.853333pt;}
.y2ae{bottom:923.813333pt;}
.y243{bottom:925.413333pt;}
.y34{bottom:925.573333pt;}
.y14{bottom:933.573333pt;}
.y325{bottom:938.560000pt;}
.y32a{bottom:941.120000pt;}
.y2ad{bottom:941.733333pt;}
.y242{bottom:952.133333pt;}
.y33{bottom:952.453333pt;}
.y2da{bottom:959.653333pt;}
.y13{bottom:960.453333pt;}
.y3{bottom:975.973333pt;}
.y2ec{bottom:977.573333pt;}
.y2ac{bottom:978.373333pt;}
.y241{bottom:979.013333pt;}
.y32{bottom:979.333333pt;}
.y2f9{bottom:979.493333pt;}
.y12{bottom:987.333333pt;}
.ye2{bottom:996.160000pt;}
.y2ab{bottom:996.293333pt;}
.yef{bottom:996.480000pt;}
.y1e5{bottom:996.640000pt;}
.y1e1{bottom:1002.080000pt;}
.y2{bottom:1010.240000pt;}
.y11{bottom:1014.240000pt;}
.y240{bottom:1015.520000pt;}
.yf{bottom:1060.052000pt;}
.ye{bottom:1074.452000pt;}
.yd{bottom:1088.852000pt;}
.h3b{height:8.800000pt;}
.h3c{height:8.960000pt;}
.h41{height:9.760000pt;}
.h9a{height:12.960000pt;}
.h99{height:13.120000pt;}
.h9b{height:13.280000pt;}
.h33{height:15.107209pt;}
.h2d{height:15.155905pt;}
.h8e{height:15.840000pt;}
.h77{height:19.680000pt;}
.h5b{height:20.320000pt;}
.h76{height:20.480000pt;}
.h4e{height:20.557941pt;}
.h7a{height:20.640000pt;}
.h55{height:20.751213pt;}
.h7c{height:22.560000pt;}
.h7e{height:22.720000pt;}
.hab{height:23.040000pt;}
.h51{height:23.445244pt;}
.h6d{height:23.575793pt;}
.h58{height:23.849408pt;}
.h5a{height:25.120000pt;}
.h23{height:25.327116pt;}
.h1f{height:25.600000pt;}
.h6f{height:25.608323pt;}
.h18{height:25.920000pt;}
.h73{height:26.134080pt;}
.h79{height:26.735625pt;}
.h89{height:26.923453pt;}
.h82{height:27.505426pt;}
.h14{height:27.580414pt;}
.h38{height:27.708038pt;}
.h8d{height:27.720523pt;}
.h3a{height:27.780732pt;}
.h21{height:27.826274pt;}
.h24{height:27.874959pt;}
.h71{height:27.954331pt;}
.h27{height:27.985547pt;}
.h2a{height:28.013891pt;}
.h6c{height:28.047291pt;}
.h10{height:28.054609pt;}
.hc{height:28.302861pt;}
.h84{height:28.320000pt;}
.h83{height:28.480000pt;}
.h74{height:28.763331pt;}
.h2b{height:28.800000pt;}
.h90{height:29.002968pt;}
.h94{height:29.008901pt;}
.h65{height:29.741162pt;}
.h68{height:30.008154pt;}
.h52{height:30.008388pt;}
.h34{height:30.206718pt;}
.h2e{height:30.840766pt;}
.h72{height:30.927689pt;}
.h6e{height:30.976233pt;}
.h49{height:31.066990pt;}
.h3e{height:31.080847pt;}
.h1b{height:31.190319pt;}
.h40{height:31.531379pt;}
.h2c{height:31.680000pt;}
.h92{height:31.787382pt;}
.h75{height:31.822738pt;}
.h98{height:31.822826pt;}
.h64{height:32.120257pt;}
.h54{height:33.146875pt;}
.h6a{height:33.197812pt;}
.h48{height:34.173656pt;}
.h1c{height:34.274793pt;}
.h5{height:34.453125pt;}
.h44{height:34.563248pt;}
.h69{height:34.799476pt;}
.h36{height:34.832719pt;}
.h13{height:35.134948pt;}
.h15{height:35.228070pt;}
.h16{height:35.310600pt;}
.h17{height:35.404189pt;}
.h4d{height:35.571861pt;}
.h32{height:35.634164pt;}
.h11{height:35.669143pt;}
.hf{height:35.752507pt;}
.h1e{height:35.878392pt;}
.he{height:36.164490pt;}
.hb{height:36.249012pt;}
.h61{height:36.849416pt;}
.h5f{height:36.904240pt;}
.h86{height:37.204899pt;}
.h29{height:37.222339pt;}
.h4a{height:37.666992pt;}
.h4b{height:37.681614pt;}
.h80{height:37.776920pt;}
.h4f{height:37.997522pt;}
.h53{height:38.032146pt;}
.h45{height:38.056584pt;}
.h47{height:38.071357pt;}
.h8b{height:38.102769pt;}
.h56{height:38.402361pt;}
.h66{height:38.421559pt;}
.h59{height:38.437354pt;}
.h31{height:39.314097pt;}
.h1d{height:39.758303pt;}
.h78{height:40.103437pt;}
.h87{height:40.873663pt;}
.h88{height:40.944159pt;}
.h81{height:41.509645pt;}
.h8c{height:41.867691pt;}
.had{height:42.240000pt;}
.h5d{height:42.649687pt;}
.h60{height:42.774813pt;}
.h7{height:44.965000pt;}
.h57{height:44.968740pt;}
.h7b{height:45.920000pt;}
.h7d{height:46.080000pt;}
.h50{height:46.106838pt;}
.h91{height:46.475327pt;}
.h95{height:46.484834pt;}
.h9e{height:46.657153pt;}
.hd{height:46.675620pt;}
.ha9{height:49.537494pt;}
.ha2{height:49.545173pt;}
.haf{height:50.827440pt;}
.hb1{height:50.863483pt;}
.h9d{height:51.142457pt;}
.h5c{height:52.160000pt;}
.h9{height:52.834688pt;}
.h42{height:52.934375pt;}
.h8{height:54.390938pt;}
.haa{height:54.399397pt;}
.ha3{height:54.444796pt;}
.ha5{height:54.446433pt;}
.ha7{height:54.452078pt;}
.ha0{height:56.141115pt;}
.h9f{height:56.188949pt;}
.h46{height:57.349966pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.hac{height:60.519362pt;}
.h6{height:61.410000pt;}
.ha6{height:63.155238pt;}
.hb0{height:64.901442pt;}
.h97{height:65.187950pt;}
.h25{height:65.781915pt;}
.h19{height:65.913479pt;}
.h28{height:67.250084pt;}
.h39{height:68.140497pt;}
.h22{height:68.165021pt;}
.h30{height:76.232571pt;}
.h3{height:76.671562pt;}
.h62{height:80.567610pt;}
.h96{height:80.664639pt;}
.h3d{height:91.989922pt;}
.h3f{height:93.323360pt;}
.h85{height:107.162496pt;}
.ha4{height:113.954185pt;}
.h37{height:116.986531pt;}
.h20{height:117.485735pt;}
.h26{height:117.980866pt;}
.h35{height:125.088300pt;}
.h2f{height:125.486667pt;}
.h63{height:126.683080pt;}
.h67{height:127.121333pt;}
.h1a{height:127.320000pt;}
.h70{height:127.989704pt;}
.h7f{height:134.666667pt;}
.h8a{height:135.826667pt;}
.h12{height:139.999434pt;}
.h8f{height:140.783843pt;}
.h93{height:140.812643pt;}
.ha{height:146.330786pt;}
.h43{height:152.303475pt;}
.h4c{height:155.973333pt;}
.hae{height:160.901519pt;}
.h5e{height:166.608772pt;}
.h9c{height:192.053333pt;}
.ha8{height:202.241998pt;}
.ha1{height:202.253333pt;}
.h6b{height:254.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:18.979571pt;}
.wc{width:20.005126pt;}
.wa{width:20.517546pt;}
.w19{width:22.499818pt;}
.w1a{width:22.519244pt;}
.we{width:22.559370pt;}
.w18{width:22.596947pt;}
.w1b{width:22.713501pt;}
.w39{width:28.000000pt;}
.w41{width:30.240000pt;}
.w1d{width:31.200000pt;}
.w24{width:31.520000pt;}
.w25{width:31.680000pt;}
.w9{width:32.000000pt;}
.w1c{width:32.800000pt;}
.w5{width:38.080000pt;}
.w37{width:45.280000pt;}
.w42{width:47.040000pt;}
.w11{width:49.120000pt;}
.w12{width:49.280000pt;}
.w43{width:52.800000pt;}
.w31{width:65.792000pt;}
.w2d{width:71.200000pt;}
.w34{width:72.000000pt;}
.w15{width:75.520000pt;}
.w2f{width:77.920000pt;}
.w36{width:78.880000pt;}
.wf{width:82.822667pt;}
.w10{width:84.986669pt;}
.w32{width:86.080000pt;}
.w2c{width:86.432000pt;}
.w7{width:86.489333pt;}
.w33{width:86.592000pt;}
.w2b{width:87.040000pt;}
.w14{width:88.989333pt;}
.w8{width:89.489333pt;}
.w13{width:89.822479pt;}
.w3b{width:90.400000pt;}
.w3e{width:92.640000pt;}
.w3d{width:97.600000pt;}
.w21{width:99.665969pt;}
.w35{width:100.032000pt;}
.w2e{width:100.992000pt;}
.w20{width:102.872071pt;}
.w1e{width:107.520000pt;}
.w4a{width:116.800000pt;}
.w38{width:127.665333pt;}
.w3c{width:128.665333pt;}
.w3a{width:130.665333pt;}
.w30{width:132.032000pt;}
.w47{width:133.274887pt;}
.w40{width:140.133333pt;}
.w3f{width:143.919019pt;}
.wd{width:146.146667pt;}
.w48{width:146.720000pt;}
.w4b{width:171.493333pt;}
.w2a{width:178.906667pt;}
.w28{width:198.466667pt;}
.w26{width:207.840000pt;}
.w46{width:223.304249pt;}
.w27{width:230.560000pt;}
.w23{width:231.386667pt;}
.w4{width:235.466667pt;}
.w3{width:235.626667pt;}
.w6{width:235.640000pt;}
.w22{width:240.040000pt;}
.w49{width:244.320000pt;}
.w29{width:244.666667pt;}
.w44{width:246.826667pt;}
.w1f{width:251.928386pt;}
.w16{width:278.146667pt;}
.w45{width:329.786667pt;}
.w17{width:429.146114pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x50{left:2.331084pt;}
.x52{left:4.848331pt;}
.x7c{left:6.720000pt;}
.x3b{left:7.742964pt;}
.x4e{left:8.728615pt;}
.x1b{left:10.106667pt;}
.x26{left:11.843030pt;}
.x77{left:13.053333pt;}
.x65{left:14.136275pt;}
.x22{left:15.308272pt;}
.x16{left:17.487473pt;}
.xd{left:19.272664pt;}
.x3f{left:20.340901pt;}
.x29{left:21.743403pt;}
.x6a{left:22.834818pt;}
.x1e{left:23.737065pt;}
.x28{left:25.369728pt;}
.xa{left:26.765829pt;}
.x3c{left:28.194963pt;}
.x92{left:29.121485pt;}
.x9{left:30.328373pt;}
.x14{left:32.222488pt;}
.x8{left:33.890422pt;}
.x13{left:35.682762pt;}
.x1d{left:37.411461pt;}
.x71{left:38.493162pt;}
.x46{left:40.060674pt;}
.x94{left:42.818039pt;}
.x69{left:44.485171pt;}
.xc{left:45.409198pt;}
.x15{left:46.915638pt;}
.x8e{left:49.515657pt;}
.x3{left:50.790667pt;}
.x20{left:52.220971pt;}
.x49{left:55.611452pt;}
.x25{left:58.098301pt;}
.x7{left:59.788002pt;}
.x48{left:61.291476pt;}
.x62{left:63.115216pt;}
.x2a{left:64.760202pt;}
.x84{left:65.904595pt;}
.x68{left:68.374442pt;}
.x64{left:71.124748pt;}
.x9d{left:72.180173pt;}
.x70{left:73.423110pt;}
.x8c{left:74.973333pt;}
.x8b{left:76.733333pt;}
.x67{left:78.381880pt;}
.x30{left:80.512885pt;}
.xa2{left:82.987291pt;}
.xb{left:84.905394pt;}
.x54{left:87.593724pt;}
.x4a{left:89.715730pt;}
.x87{left:90.855758pt;}
.x61{left:92.253333pt;}
.x4d{left:93.704726pt;}
.x53{left:100.689884pt;}
.x4b{left:104.055922pt;}
.x47{left:104.982352pt;}
.x88{left:107.923086pt;}
.x9f{left:111.680000pt;}
.x97{left:112.578667pt;}
.x2{left:113.472000pt;}
.x9e{left:118.416942pt;}
.xa1{left:119.510667pt;}
.x55{left:123.571741pt;}
.x9a{left:127.017497pt;}
.x12{left:130.944877pt;}
.x19{left:135.973031pt;}
.x4{left:137.466655pt;}
.x73{left:139.748400pt;}
.x1a{left:142.240000pt;}
.x10{left:145.133705pt;}
.x6d{left:148.367590pt;}
.x5{left:151.226655pt;}
.xf{left:152.139068pt;}
.x17{left:154.255917pt;}
.x63{left:155.826667pt;}
.x6b{left:159.154211pt;}
.x11{left:163.552467pt;}
.x18{left:165.527491pt;}
.x45{left:166.928557pt;}
.x6c{left:170.021529pt;}
.x21{left:173.520499pt;}
.x5e{left:176.000000pt;}
.x5d{left:177.324275pt;}
.xe{left:178.216235pt;}
.x3e{left:182.626667pt;}
.x34{left:185.920000pt;}
.x59{left:187.020938pt;}
.x72{left:188.047549pt;}
.x42{left:189.586667pt;}
.x4c{left:190.920000pt;}
.x58{left:191.966397pt;}
.x7f{left:194.586667pt;}
.x98{left:196.142744pt;}
.x1f{left:198.050138pt;}
.x40{left:201.280000pt;}
.x6e{left:203.941550pt;}
.x79{left:205.413333pt;}
.x35{left:212.960000pt;}
.x5c{left:220.692153pt;}
.x43{left:222.537673pt;}
.x44{left:234.643536pt;}
.x85{left:237.120000pt;}
.x36{left:242.560000pt;}
.x56{left:249.013206pt;}
.x6{left:250.093333pt;}
.x91{left:252.866667pt;}
.x5b{left:255.601757pt;}
.x83{left:259.880000pt;}
.x7a{left:261.026667pt;}
.x86{left:267.720000pt;}
.x9b{left:270.390671pt;}
.x3a{left:271.320000pt;}
.x38{left:277.280000pt;}
.x4f{left:278.902238pt;}
.x8f{left:287.040000pt;}
.x5a{left:292.267767pt;}
.x3d{left:301.120000pt;}
.x39{left:304.320000pt;}
.x95{left:313.280000pt;}
.x51{left:314.977384pt;}
.x37{left:334.240000pt;}
.x80{left:347.106667pt;}
.x7d{left:348.066667pt;}
.xa0{left:355.520000pt;}
.x99{left:359.413333pt;}
.x9c{left:364.466667pt;}
.x2b{left:385.120000pt;}
.x93{left:387.306667pt;}
.x23{left:388.320000pt;}
.x96{left:396.866655pt;}
.x31{left:398.080000pt;}
.x8d{left:404.333333pt;}
.x74{left:412.480000pt;}
.x1c{left:419.093333pt;}
.x2f{left:424.933333pt;}
.x90{left:428.640000pt;}
.x57{left:434.210718pt;}
.x89{left:441.280000pt;}
.x66{left:449.360000pt;}
.x8a{left:451.133322pt;}
.x6f{left:454.013333pt;}
.x75{left:458.560000pt;}
.x2c{left:462.107385pt;}
.x76{left:468.573322pt;}
.x24{left:470.893333pt;}
.x78{left:478.333322pt;}
.x2d{left:492.276458pt;}
.x5f{left:493.280000pt;}
.x60{left:503.133322pt;}
.x7b{left:506.493333pt;}
.x2e{left:522.443383pt;}
.x33{left:548.573333pt;}
.x27{left:555.053333pt;}
.x32{left:583.923798pt;}
.x81{left:606.533333pt;}
.x7e{left:607.493333pt;}
.x41{left:665.573322pt;}
.x1{left:673.093333pt;}
.x82{left:685.733333pt;}
}




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