
    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_9f2aabacf842138b66fb8532.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2e78b68d340c484391bcf47c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.027000;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_dabed81976f1d80bd7a504d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;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_e804d2be513a4119ca7bfac0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_110923f398a34511c3d57050.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_eb47d09f0ef37469f87e4744.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731000;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_eb47d09f0ef37469f87e4744.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eb47d09f0ef37469f87e4744.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.731000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_da9046844c41294e40cf4234.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_97f613292a7dbae5e368119b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.884000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bd09630743c4f9f51f567fab.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.fff{font-family:fff;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_30754b04c4e9bdf4e6a8d136.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.818000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.994000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_192f8234d3409bf0f6a05a84.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.450000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_85fd48fcf9efaca19f0a18e4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_70795c22dbfe16283e0aa346.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.770000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_1da4b95f9b2409211721703c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.855000;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:ff21;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.855000;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:ff22;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.994000;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:ff23;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.853000;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:ff24;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.993000;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:ff25;src:url('chunks/assets/font_5eaa674ac349cbc6f0f39e28.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.450000;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:ff26;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.855000;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:ff27;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.994000;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:ff28;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.853000;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:ff29;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.993000;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:ff2a;src:url('chunks/assets/font_4ac568ad027f90c42ba02b72.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.450000;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:ff2b;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.855000;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:ff2c;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.993000;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:ff2d;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.993000;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:ff2e;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.853000;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:ff2f;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.993000;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:ff30;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.855000;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:ff31;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.994000;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:ff32;src:url('chunks/assets/font_0c8d2ce8bfa7446681908527.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.450000;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:ff33;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.993000;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:ff34;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.853000;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:ff35;src:url('chunks/assets/font_21dab826f6bea9b786662ed6.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.890036;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:ff36;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.855000;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:ff37;src:url('chunks/assets/font_aa7a5cf53322626d6f3feeb9.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.853000;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:ff38;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.993000;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:ff39;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.994000;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:ff3a;src:url('chunks/assets/font_0c8d2ce8bfa7446681908527.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.450000;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:ff3b;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.855000;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:ff3c;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.994000;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:ff3d;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.993000;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:ff3e;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.853000;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:ff3f;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.853000;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:ff40;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.994000;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:ff41;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.993000;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:ff42;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.855000;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:ff43;src:url('chunks/assets/font_0c8d2ce8bfa7446681908527.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.450000;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:ff44;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.853000;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:ff45;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.994000;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:ff46;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.993000;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:ff47;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.855000;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:ff48;src:url('chunks/assets/font_0c8d2ce8bfa7446681908527.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.450000;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:ff49;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.853000;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:ff4a;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.994000;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:ff4b;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.993000;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:ff4c;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.855000;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:ff4d;src:url('chunks/assets/font_0c8d2ce8bfa7446681908527.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.450000;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:ff4e;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.853000;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:ff4f;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.994000;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:ff50;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.993000;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:ff51;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.855000;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:ff52;src:url('chunks/assets/font_0c8d2ce8bfa7446681908527.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.450000;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:ff53;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.853000;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:ff54;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.994000;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:ff55;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.993000;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:ff56;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.855000;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:ff57;src:url('chunks/assets/font_0c8d2ce8bfa7446681908527.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.450000;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:ff58;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.853000;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:ff59;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.994000;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:ff5a;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.993000;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:ff5b;src:url('chunks/assets/font_36eb70ba6c49857f871729b3.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.855000;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:ff5c;src:url('chunks/assets/font_0c8d2ce8bfa7446681908527.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:1.450000;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:ff5d;src:url('chunks/assets/font_77254c80bf392778bf41ea96.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.994000;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:ff5e;src:url('chunks/assets/font_ed2454d7fd28c00de2da3853.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.853000;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:ff5f;src:url('chunks/assets/font_09f6c2493b8c8985bbf4b7c3.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.993000;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:ff60;src:url('chunks/assets/font_fab05e85a916c246c6c1e410.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.090000;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:ff61;src:url('chunks/assets/font_8fd6778c109f0e4084d26782.woff2')format("woff");}.ff61{font-family:ff61;line-height:1.027000;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:ff62;src:url('chunks/assets/font_ca49bd693b889d4348dbbc72.woff2')format("woff");}.ff62{font-family:ff62;line-height:1.005000;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:ff63;src:url('chunks/assets/font_8314e65adc1fdd3c9445c450.woff2')format("woff");}.ff63{font-family:ff63;line-height:1.004000;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:ff64;src:url('chunks/assets/font_4c906bb18564df42e963d9c6.woff2')format("woff");}.ff64{font-family:ff64;line-height:1.005000;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;}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m6{transform:matrix(0.306724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306724,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.312374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312374,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.327125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327125,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);}
.va{vertical-align:-45.564094px;}
.v3{vertical-align:-18.034800px;}
.v2{vertical-align:-16.971000px;}
.v8{vertical-align:-10.150200px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.834600px;}
.v1{vertical-align:17.199000px;}
.v5{vertical-align:21.869400px;}
.v7{vertical-align:25.972800px;}
.v4{vertical-align:39.747401px;}
.v9{vertical-align:63.612600px;}
.ls8e{letter-spacing:-3.824955px;}
.ls93{letter-spacing:-3.722956px;}
.ls87{letter-spacing:-3.108000px;}
.ls7c{letter-spacing:-3.066000px;}
.ls94{letter-spacing:-1.835978px;}
.ls7e{letter-spacing:-1.680000px;}
.ls80{letter-spacing:-1.638000px;}
.ls86{letter-spacing:-1.554000px;}
.ls73{letter-spacing:-1.530000px;}
.ls7a{letter-spacing:-1.470000px;}
.ls7b{letter-spacing:-1.428000px;}
.ls82{letter-spacing:-1.386000px;}
.ls92{letter-spacing:-1.376984px;}
.ls75{letter-spacing:-1.350000px;}
.ls84{letter-spacing:-1.344000px;}
.ls88{letter-spacing:-1.260000px;}
.ls8f{letter-spacing:-1.224000px;}
.ls96{letter-spacing:-1.223986px;}
.ls85{letter-spacing:-1.176000px;}
.ls8c{letter-spacing:-1.172986px;}
.ls89{letter-spacing:-1.134000px;}
.ls90{letter-spacing:-1.121987px;}
.ls83{letter-spacing:-1.092000px;}
.ls3d{letter-spacing:-1.083502px;}
.ls8a{letter-spacing:-1.050000px;}
.ls72{letter-spacing:-0.969000px;}
.ls98{letter-spacing:-0.917989px;}
.ls91{letter-spacing:-0.764991px;}
.ls7d{letter-spacing:-0.714000px;}
.ls81{letter-spacing:-0.672000px;}
.ls7f{letter-spacing:-0.630000px;}
.lsb{letter-spacing:-0.612000px;}
.ls79{letter-spacing:-0.588000px;}
.ls78{letter-spacing:-0.576240px;}
.ls8d{letter-spacing:-0.560993px;}
.ls77{letter-spacing:-0.546000px;}
.lse{letter-spacing:-0.514637px;}
.ls2{letter-spacing:-0.480000px;}
.ls76{letter-spacing:-0.420000px;}
.ls74{letter-spacing:-0.357000px;}
.ls1{letter-spacing:-0.306000px;}
.lsc{letter-spacing:-0.204000px;}
.ls6d{letter-spacing:-0.118932px;}
.ls95{letter-spacing:-0.050999px;}
.ls0{letter-spacing:0.000000px;}
.ls5f{letter-spacing:0.000101px;}
.ls6f{letter-spacing:0.000330px;}
.ls2d{letter-spacing:0.000701px;}
.ls48{letter-spacing:0.000881px;}
.ls56{letter-spacing:0.002278px;}
.ls1c{letter-spacing:0.002400px;}
.ls61{letter-spacing:0.002501px;}
.ls64{letter-spacing:0.002681px;}
.ls3b{letter-spacing:0.002878px;}
.ls37{letter-spacing:0.003103px;}
.ls58{letter-spacing:0.003281px;}
.ls6a{letter-spacing:0.003377px;}
.ls5b{letter-spacing:0.003478px;}
.ls71{letter-spacing:0.004200px;}
.ls5d{letter-spacing:0.005904px;}
.ls12{letter-spacing:0.007879px;}
.ls40{letter-spacing:0.009765px;}
.ls34{letter-spacing:0.010279px;}
.ls4d{letter-spacing:0.012432px;}
.ls5a{letter-spacing:0.019164px;}
.ls43{letter-spacing:0.019762px;}
.ls4a{letter-spacing:0.019985px;}
.ls46{letter-spacing:0.020585px;}
.ls68{letter-spacing:0.021511px;}
.ls31{letter-spacing:0.022236px;}
.ls15{letter-spacing:0.022836px;}
.ls13{letter-spacing:0.024362px;}
.ls50{letter-spacing:0.025788px;}
.ls41{letter-spacing:0.026542px;}
.ls4b{letter-spacing:0.027118px;}
.ls65{letter-spacing:0.032369px;}
.ls6e{letter-spacing:0.037067px;}
.ls1f{letter-spacing:0.040070px;}
.ls1d{letter-spacing:0.048600px;}
.ls22{letter-spacing:0.057026px;}
.ls19{letter-spacing:0.076241px;}
.ls3f{letter-spacing:0.081900px;}
.ls3{letter-spacing:0.125726px;}
.ls3e{letter-spacing:0.153000px;}
.ls8b{letter-spacing:0.168000px;}
.ls9{letter-spacing:0.450307px;}
.lsa{letter-spacing:0.482472px;}
.lsd{letter-spacing:0.589799px;}
.ls6{letter-spacing:0.622565px;}
.ls2b{letter-spacing:0.778403px;}
.ls97{letter-spacing:1.019988px;}
.ls5{letter-spacing:1.131538px;}
.ls4{letter-spacing:1.162969px;}
.ls45{letter-spacing:1.297338px;}
.ls20{letter-spacing:1.445605px;}
.lsf{letter-spacing:1.511746px;}
.ls21{letter-spacing:2.038674px;}
.ls3c{letter-spacing:2.281056px;}
.ls66{letter-spacing:2.955924px;}
.ls30{letter-spacing:2.956524px;}
.ls25{letter-spacing:2.996663px;}
.ls32{letter-spacing:3.000260px;}
.ls54{letter-spacing:3.007524px;}
.ls4e{letter-spacing:3.010524px;}
.ls24{letter-spacing:3.022399px;}
.ls33{letter-spacing:3.737485px;}
.ls2a{letter-spacing:3.763742px;}
.ls59{letter-spacing:4.251762px;}
.ls60{letter-spacing:4.254162px;}
.ls47{letter-spacing:4.271296px;}
.ls52{letter-spacing:4.271896px;}
.ls57{letter-spacing:4.325296px;}
.ls2e{letter-spacing:4.409502px;}
.ls23{letter-spacing:4.465902px;}
.ls14{letter-spacing:12.501366px;}
.ls1b{letter-spacing:12.503766px;}
.ls17{letter-spacing:12.659861px;}
.ls39{letter-spacing:12.716887px;}
.ls29{letter-spacing:13.857415px;}
.ls28{letter-spacing:14.997943px;}
.ls55{letter-spacing:15.622448px;}
.ls2c{letter-spacing:15.624848px;}
.ls6c{letter-spacing:15.675848px;}
.ls67{letter-spacing:15.676448px;}
.ls36{letter-spacing:15.678848px;}
.ls27{letter-spacing:15.796313px;}
.ls11{letter-spacing:15.853339px;}
.ls3a{letter-spacing:16.372285px;}
.ls51{letter-spacing:16.409555px;}
.ls44{letter-spacing:16.410155px;}
.ls5e{letter-spacing:16.424088px;}
.ls69{letter-spacing:16.426488px;}
.ls63{letter-spacing:16.463555px;}
.ls53{letter-spacing:16.932760px;}
.ls4c{letter-spacing:16.933360px;}
.ls49{letter-spacing:16.935160px;}
.ls62{letter-spacing:16.986760px;}
.ls6b{letter-spacing:16.987360px;}
.ls18{letter-spacing:16.993867px;}
.ls16{letter-spacing:17.046702px;}
.ls38{letter-spacing:17.078426px;}
.ls2f{letter-spacing:17.134226px;}
.ls10{letter-spacing:19.503029px;}
.ls42{letter-spacing:19.560685px;}
.ls35{letter-spacing:19.611685px;}
.ls4f{letter-spacing:19.612285px;}
.ls5c{letter-spacing:19.614085px;}
.ls26{letter-spacing:19.668085px;}
.ls1a{letter-spacing:20.288502px;}
.ls1e{letter-spacing:20.928689px;}
.ls8{letter-spacing:98.136187px;}
.ls7{letter-spacing:98.137165px;}
.ls70{letter-spacing:199.920000px;}
.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;}
}
.ws8b{word-spacing:-15.910366px;}
.ws85{word-spacing:-15.853339px;}
.ws2{word-spacing:-15.240000px;}
.ws2d{word-spacing:-12.750000px;}
.ws89{word-spacing:-12.716887px;}
.wsa8{word-spacing:-12.699000px;}
.wsf0{word-spacing:-12.545852px;}
.ws82{word-spacing:-12.495000px;}
.wse5{word-spacing:-12.392854px;}
.wsea{word-spacing:-11.984859px;}
.wse9{word-spacing:-11.831861px;}
.wse6{word-spacing:-11.780861px;}
.wse8{word-spacing:-11.730000px;}
.wsef{word-spacing:-11.627863px;}
.wse4{word-spacing:-11.525864px;}
.wseb{word-spacing:-11.372866px;}
.wsee{word-spacing:-11.321867px;}
.wsed{word-spacing:-10.913872px;}
.ws1{word-spacing:-10.668000px;}
.ws3{word-spacing:-10.500000px;}
.wsce{word-spacing:-10.290000px;}
.wscf{word-spacing:-10.080000px;}
.wsd8{word-spacing:-9.912000px;}
.wsd0{word-spacing:-9.870000px;}
.wsd1{word-spacing:-9.744000px;}
.wse3{word-spacing:-9.450000px;}
.wsdc{word-spacing:-9.408000px;}
.wse2{word-spacing:-9.366000px;}
.wsde{word-spacing:-9.324000px;}
.wsd6{word-spacing:-9.240000px;}
.wsd5{word-spacing:-9.198000px;}
.wsdd{word-spacing:-9.156000px;}
.wse7{word-spacing:-9.128893px;}
.wsdb{word-spacing:-9.114000px;}
.wse1{word-spacing:-9.072000px;}
.wsec{word-spacing:-9.026894px;}
.wsdf{word-spacing:-8.946000px;}
.wsda{word-spacing:-8.862000px;}
.wsd9{word-spacing:-8.820000px;}
.wsa9{word-spacing:-7.552182px;}
.wsd7{word-spacing:-7.434000px;}
.wsa{word-spacing:-7.433250px;}
.wse0{word-spacing:-7.392000px;}
.ws97{word-spacing:-7.314318px;}
.ws86{word-spacing:-7.284585px;}
.ws61{word-spacing:-3.876000px;}
.ws7d{word-spacing:-2.754000px;}
.ws21{word-spacing:-2.550000px;}
.wsc4{word-spacing:-2.397000px;}
.ws3f{word-spacing:-2.346000px;}
.ws87{word-spacing:-2.338082px;}
.ws70{word-spacing:-2.295000px;}
.wscb{word-spacing:-2.244000px;}
.ws11{word-spacing:-2.193000px;}
.ws92{word-spacing:-2.142000px;}
.wsd4{word-spacing:-2.100000px;}
.ws3d{word-spacing:-2.091000px;}
.ws38{word-spacing:-2.040000px;}
.ws7{word-spacing:-1.989000px;}
.wsbe{word-spacing:-1.938000px;}
.ws5{word-spacing:-1.887000px;}
.ws57{word-spacing:-1.836000px;}
.ws7b{word-spacing:-1.785000px;}
.wsc2{word-spacing:-1.734000px;}
.ws80{word-spacing:-1.683000px;}
.ws12{word-spacing:-1.632000px;}
.ws13{word-spacing:-1.581000px;}
.ws14{word-spacing:-1.530000px;}
.ws4c{word-spacing:-1.511746px;}
.wsb0{word-spacing:-1.479000px;}
.ws46{word-spacing:-1.428000px;}
.ws72{word-spacing:-1.377000px;}
.ws47{word-spacing:-1.326000px;}
.ws60{word-spacing:-1.275000px;}
.wsb2{word-spacing:-1.224000px;}
.wsd{word-spacing:-1.194401px;}
.ws3a{word-spacing:-1.173000px;}
.ws4d{word-spacing:-1.122000px;}
.ws39{word-spacing:-1.071000px;}
.wscc{word-spacing:-1.020000px;}
.wsf5{word-spacing:-1.019988px;}
.ws18{word-spacing:-0.816000px;}
.ws6a{word-spacing:-0.714000px;}
.wsc0{word-spacing:-0.663000px;}
.ws2e{word-spacing:-0.655332px;}
.ws49{word-spacing:-0.622565px;}
.ws6{word-spacing:-0.561000px;}
.ws9e{word-spacing:-0.510000px;}
.ws37{word-spacing:-0.459000px;}
.ws4b{word-spacing:-0.450307px;}
.ws90{word-spacing:-0.408000px;}
.ws6f{word-spacing:-0.357000px;}
.ws6c{word-spacing:-0.255000px;}
.ws55{word-spacing:-0.204000px;}
.ws10{word-spacing:-0.157158px;}
.ws1f{word-spacing:-0.153000px;}
.ws91{word-spacing:-0.102000px;}
.ws83{word-spacing:-0.057026px;}
.ws98{word-spacing:-0.051000px;}
.ws88{word-spacing:-0.037067px;}
.ws0{word-spacing:0.000000px;}
.ws95{word-spacing:0.051000px;}
.ws77{word-spacing:0.102000px;}
.wsa0{word-spacing:0.118932px;}
.ws1b{word-spacing:0.204000px;}
.ws2b{word-spacing:0.255000px;}
.ws26{word-spacing:0.306000px;}
.ws28{word-spacing:0.357000px;}
.ws24{word-spacing:0.408000px;}
.wsd2{word-spacing:0.420000px;}
.ws78{word-spacing:0.459000px;}
.ws69{word-spacing:0.510000px;}
.ws4a{word-spacing:0.514637px;}
.wsd3{word-spacing:0.546000px;}
.ws3c{word-spacing:0.561000px;}
.wsf4{word-spacing:0.588000px;}
.ws5e{word-spacing:0.612000px;}
.wsac{word-spacing:0.663000px;}
.ws1e{word-spacing:0.714000px;}
.ws29{word-spacing:0.765000px;}
.ws19{word-spacing:0.816000px;}
.ws3e{word-spacing:0.867000px;}
.ws79{word-spacing:0.918000px;}
.ws76{word-spacing:0.969000px;}
.ws94{word-spacing:1.020000px;}
.ws8a{word-spacing:1.026475px;}
.wsae{word-spacing:1.122000px;}
.ws8f{word-spacing:1.173000px;}
.wsc6{word-spacing:1.224000px;}
.ws1c{word-spacing:1.275000px;}
.ws8d{word-spacing:1.326000px;}
.ws65{word-spacing:1.377000px;}
.wsb3{word-spacing:1.479000px;}
.ws44{word-spacing:1.530000px;}
.ws3b{word-spacing:1.581000px;}
.ws6d{word-spacing:1.632000px;}
.ws2a{word-spacing:1.683000px;}
.ws56{word-spacing:1.734000px;}
.ws7c{word-spacing:1.887000px;}
.ws23{word-spacing:1.938000px;}
.wsa2{word-spacing:1.989000px;}
.wsca{word-spacing:2.193000px;}
.ws5c{word-spacing:2.244000px;}
.ws15{word-spacing:2.346000px;}
.ws50{word-spacing:2.397000px;}
.ws45{word-spacing:2.448000px;}
.ws7a{word-spacing:2.499000px;}
.ws68{word-spacing:2.550000px;}
.ws96{word-spacing:2.601000px;}
.ws93{word-spacing:2.652000px;}
.wsb1{word-spacing:2.703000px;}
.ws5d{word-spacing:2.754000px;}
.ws22{word-spacing:2.805000px;}
.ws48{word-spacing:2.856000px;}
.ws20{word-spacing:3.009000px;}
.ws9d{word-spacing:3.060000px;}
.ws41{word-spacing:3.111000px;}
.ws42{word-spacing:3.162000px;}
.ws66{word-spacing:3.213000px;}
.ws25{word-spacing:3.264000px;}
.ws62{word-spacing:3.315000px;}
.wsc8{word-spacing:3.366000px;}
.ws2c{word-spacing:3.417000px;}
.ws5a{word-spacing:3.468000px;}
.wsaf{word-spacing:3.519000px;}
.ws59{word-spacing:3.570000px;}
.ws8{word-spacing:3.672000px;}
.ws64{word-spacing:3.723000px;}
.ws9c{word-spacing:3.774000px;}
.ws73{word-spacing:3.876000px;}
.ws9{word-spacing:3.927000px;}
.ws63{word-spacing:4.029000px;}
.ws74{word-spacing:4.080000px;}
.ws6e{word-spacing:4.131000px;}
.ws7f{word-spacing:4.182000px;}
.wscd{word-spacing:4.284000px;}
.ws53{word-spacing:4.437000px;}
.wsad{word-spacing:4.488000px;}
.ws1a{word-spacing:4.590000px;}
.ws71{word-spacing:4.692000px;}
.ws40{word-spacing:4.743000px;}
.ws5f{word-spacing:4.896000px;}
.ws67{word-spacing:4.947000px;}
.ws5b{word-spacing:4.998000px;}
.ws17{word-spacing:5.049000px;}
.ws8c{word-spacing:5.202000px;}
.ws7e{word-spacing:5.253000px;}
.ws51{word-spacing:5.508000px;}
.ws43{word-spacing:5.559000px;}
.ws27{word-spacing:5.661000px;}
.wsc1{word-spacing:5.814000px;}
.wsc3{word-spacing:6.018000px;}
.ws8e{word-spacing:6.069000px;}
.ws9a{word-spacing:6.116022px;}
.ws99{word-spacing:6.153089px;}
.ws9b{word-spacing:6.190156px;}
.ws54{word-spacing:6.222000px;}
.ws16{word-spacing:6.273000px;}
.ws6b{word-spacing:6.324000px;}
.wsa1{word-spacing:6.477000px;}
.wsc9{word-spacing:6.579000px;}
.ws75{word-spacing:6.630000px;}
.ws58{word-spacing:6.987000px;}
.wsbf{word-spacing:7.089000px;}
.ws1d{word-spacing:7.242000px;}
.ws81{word-spacing:7.293000px;}
.ws4f{word-spacing:8.517000px;}
.wsc5{word-spacing:9.231000px;}
.ws9f{word-spacing:9.486000px;}
.wsc7{word-spacing:9.741000px;}
.ws4{word-spacing:9.894000px;}
.ws4e{word-spacing:10.455000px;}
.ws52{word-spacing:11.526000px;}
.wsb6{word-spacing:12.087000px;}
.wsb5{word-spacing:12.393000px;}
.wsb4{word-spacing:13.974000px;}
.ws84{word-spacing:15.739286px;}
.wsf{word-spacing:91.063362px;}
.wsb{word-spacing:91.096628px;}
.wsc{word-spacing:91.159033px;}
.wse{word-spacing:91.169120px;}
.ws35{word-spacing:93.309140px;}
.ws36{word-spacing:95.337182px;}
.ws34{word-spacing:95.341023px;}
.ws33{word-spacing:95.498966px;}
.ws30{word-spacing:95.811715px;}
.ws2f{word-spacing:96.826012px;}
.ws32{word-spacing:96.837260px;}
.ws31{word-spacing:96.912053px;}
.wsaa{word-spacing:192.367224px;}
.wsf2{word-spacing:194.130000px;}
.wsf1{word-spacing:207.045000px;}
.wsab{word-spacing:211.192677px;}
.wsf3{word-spacing:273.064500px;}
.wsbc{word-spacing:282.150000px;}
.wsb7{word-spacing:300.240000px;}
.wsb9{word-spacing:304.110000px;}
.wsbd{word-spacing:358.965000px;}
.wsba{word-spacing:362.835000px;}
.wsbb{word-spacing:371.880000px;}
.wsa4{word-spacing:529.380000px;}
.wsa7{word-spacing:651.735000px;}
.wsa6{word-spacing:664.650000px;}
.wsa5{word-spacing:677.565000px;}
.wsa3{word-spacing:805.392000px;}
.wsb8{word-spacing:1174.230000px;}
._6{margin-left:-15.796313px;}
._b{margin-left:-12.087000px;}
._2f{margin-left:-10.500000px;}
._3{margin-left:-5.772000px;}
._a{margin-left:-4.692000px;}
._7{margin-left:-3.260100px;}
._1{margin-left:-2.100000px;}
._0{margin-left:-1.008000px;}
._2{width:1.794000px;}
._30{width:2.856000px;}
._5{width:3.927000px;}
._8{width:5.291073px;}
._9{width:8.744712px;}
._31{width:78.182080px;}
._4{width:93.260703px;}
._1b{width:156.375000px;}
._32{width:173.385000px;}
._13{width:184.950000px;}
._16{width:197.865000px;}
._33{width:201.552000px;}
._15{width:207.501870px;}
._1d{width:209.051100px;}
._21{width:212.313000px;}
._18{width:215.883000px;}
._40{width:217.446000px;}
._10{width:219.143130px;}
._22{width:228.786000px;}
._3d{width:232.065000px;}
._17{width:233.331870px;}
._27{width:262.125000px;}
._3e{width:267.870000px;}
._28{width:271.575000px;}
._39{width:273.105000px;}
._38{width:274.455000px;}
._3b{width:280.890000px;}
._2b{width:289.125000px;}
._20{width:294.423000px;}
._2c{width:298.530000px;}
._3a{width:308.180100px;}
._3c{width:316.620000px;}
._12{width:319.005000px;}
._37{width:329.310000px;}
._14{width:340.965000px;}
._41{width:358.060500px;}
._34{width:365.400000px;}
._3f{width:385.515000px;}
._36{width:388.440000px;}
._24{width:400.590000px;}
._1f{width:441.252000px;}
._35{width:457.065000px;}
._26{width:471.015000px;}
._11{width:496.890000px;}
._2a{width:524.970000px;}
._43{width:528.435000px;}
._42{width:597.060000px;}
._1a{width:634.305000px;}
._1e{width:789.123000px;}
._e{width:822.375000px;}
._c{width:847.575000px;}
._d{width:848.925000px;}
._f{width:876.330000px;}
._29{width:963.405000px;}
._1c{width:977.940000px;}
._25{width:989.955000px;}
._2e{width:1017.360000px;}
._23{width:1021.545000px;}
._19{width:1206.405000px;}
._2d{width:1422.720000px;}
.fc4{color:rgb(16,15,13);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(180,28,46);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:24.486000px;}
.fs11{font-size:26.235000px;}
.fsa{font-size:29.733000px;}
.fsb{font-size:31.431600px;}
.fs6{font-size:31.482000px;}
.fsd{font-size:32.164800px;}
.fsc{font-size:32.766600px;}
.fsf{font-size:37.066800px;}
.fs9{font-size:39.000000px;}
.fs13{font-size:41.160000px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs14{font-size:50.999400px;}
.fs7{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fse{font-size:57.026400px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y179{bottom:-0.016950px;}
.y0{bottom:0.000000px;}
.y16b{bottom:0.011550px;}
.y11b{bottom:0.044850px;}
.y11f{bottom:0.194850px;}
.y14a{bottom:0.196350px;}
.y153{bottom:0.634990px;}
.y155{bottom:0.635850px;}
.y8c{bottom:1.672800px;}
.y89{bottom:1.674600px;}
.y1a1{bottom:2.095350px;}
.y1a5{bottom:2.095500px;}
.y1ae{bottom:2.096850px;}
.y1b2{bottom:2.097000px;}
.y172{bottom:2.196000px;}
.y142{bottom:2.227350px;}
.y140{bottom:2.230520px;}
.y8e{bottom:2.554650px;}
.y124{bottom:2.594700px;}
.yd0{bottom:2.613000px;}
.yc2{bottom:2.661000px;}
.y143{bottom:3.186000px;}
.y138{bottom:3.344700px;}
.y132{bottom:4.544550px;}
.y150{bottom:5.144700px;}
.y1e7{bottom:6.194700px;}
.y16f{bottom:6.704700px;}
.y13d{bottom:7.694700px;}
.y16c{bottom:11.391750px;}
.y86{bottom:13.063650px;}
.yc7{bottom:13.446000px;}
.y1a7{bottom:13.475700px;}
.y1b4{bottom:13.477200px;}
.yaf{bottom:13.536000px;}
.y152{bottom:15.080250px;}
.y13f{bottom:15.092700px;}
.y175{bottom:15.886350px;}
.y17b{bottom:15.886500px;}
.y167{bottom:15.914700px;}
.y154{bottom:16.538700px;}
.y19d{bottom:17.984700px;}
.y1aa{bottom:17.986200px;}
.yb1{bottom:32.907000px;}
.y177{bottom:34.124850px;}
.y169{bottom:34.126200px;}
.y19f{bottom:36.209700px;}
.y1a3{bottom:36.210000px;}
.y1ac{bottom:36.211200px;}
.y1b0{bottom:36.211500px;}
.y5d{bottom:42.026550px;}
.y87{bottom:46.616700px;}
.yb3{bottom:52.618200px;}
.y5{bottom:66.525004px;}
.yb5{bottom:71.989350px;}
.yc6{bottom:74.550000px;}
.y259{bottom:76.654200px;}
.y1ed{bottom:76.973700px;}
.y5c{bottom:78.035700px;}
.y216{bottom:79.979700px;}
.y2e6{bottom:87.404700px;}
.yc8{bottom:87.996000px;}
.y5b{bottom:90.788700px;}
.yb7{bottom:91.700250px;}
.y258{bottom:94.657200px;}
.y1ec{bottom:94.976700px;}
.y4{bottom:97.125005px;}
.y29f{bottom:97.457700px;}
.y215{bottom:97.982700px;}
.y2e5{bottom:100.907700px;}
.y29e{bottom:110.960700px;}
.yb9{bottom:111.412650px;}
.y102{bottom:112.040700px;}
.y164{bottom:112.181700px;}
.yc9{bottom:112.530000px;}
.y257{bottom:112.660200px;}
.y117{bottom:112.720200px;}
.y1eb{bottom:112.979700px;}
.y8a{bottom:114.069750px;}
.y2e4{bottom:114.410700px;}
.y214{bottom:115.985700px;}
.y85{bottom:119.550000px;}
.y363{bottom:123.181148px;}
.y29d{bottom:124.463700px;}
.y2e3{bottom:127.913700px;}
.y101{bottom:130.043700px;}
.y163{bottom:130.184700px;}
.y256{bottom:130.663200px;}
.y116{bottom:130.723200px;}
.ybb{bottom:130.782300px;}
.y1ea{bottom:130.982700px;}
.y213{bottom:133.940700px;}
.y57{bottom:135.834150px;}
.yca{bottom:137.065950px;}
.y29c{bottom:137.966700px;}
.y21{bottom:139.264499px;}
.y2e2{bottom:141.416700px;}
.y362{bottom:143.937904px;}
.y100{bottom:148.046700px;}
.y162{bottom:148.187700px;}
.y255{bottom:148.666200px;}
.y115{bottom:148.726200px;}
.y1e9{bottom:148.985700px;}
.ybd{bottom:150.153450px;}
.y29b{bottom:151.469700px;}
.y56{bottom:151.578150px;}
.y212{bottom:151.943700px;}
.y2e1{bottom:154.919700px;}
.y1e6{bottom:160.806000px;}
.ycb{bottom:161.916900px;}
.y361{bottom:164.694659px;}
.y29a{bottom:164.972700px;}
.yff{bottom:166.049700px;}
.y161{bottom:166.190700px;}
.y254{bottom:166.669200px;}
.y114{bottom:166.729200px;}
.y19a{bottom:166.741200px;}
.y1e5{bottom:166.922700px;}
.y1e8{bottom:166.988700px;}
.y55{bottom:167.322150px;}
.y2e0{bottom:168.422700px;}
.ybf{bottom:169.863000px;}
.y211{bottom:169.946700px;}
.y299{bottom:178.475700px;}
.y8d{bottom:181.518450px;}
.y2df{bottom:181.925700px;}
.y54{bottom:183.066150px;}
.yfe{bottom:184.052700px;}
.y160{bottom:184.190700px;}
.y253{bottom:184.672200px;}
.y113{bottom:184.732200px;}
.y199{bottom:184.744200px;}
.y1e4{bottom:184.925700px;}
.y360{bottom:185.451415px;}
.ycf{bottom:185.820600px;}
.ycc{bottom:186.451650px;}
.y210{bottom:187.949700px;}
.yc1{bottom:189.235500px;}
.y298{bottom:191.978700px;}
.y2de{bottom:195.428700px;}
.y18{bottom:196.933500px;}
.y88{bottom:198.388500px;}
.y53{bottom:198.810150px;}
.yfd{bottom:202.055700px;}
.y252{bottom:202.675200px;}
.y112{bottom:202.735200px;}
.y198{bottom:202.747200px;}
.y1e3{bottom:202.928700px;}
.y297{bottom:205.481700px;}
.y20f{bottom:205.952700px;}
.y35f{bottom:206.208171px;}
.y2dd{bottom:208.931700px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.ycd{bottom:211.304250px;}
.y52{bottom:214.554150px;}
.yc5{bottom:216.216750px;}
.y296{bottom:218.984700px;}
.yfc{bottom:220.058700px;}
.y15f{bottom:220.181700px;}
.y251{bottom:220.678200px;}
.y111{bottom:220.738200px;}
.y197{bottom:220.750200px;}
.y1e2{bottom:220.931700px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y2dc{bottom:222.434700px;}
.y20e{bottom:223.955700px;}
.y35e{bottom:226.964927px;}
.y51{bottom:230.298150px;}
.y295{bottom:232.487700px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yce{bottom:235.837350px;}
.y320{bottom:235.931700px;}
.y2db{bottom:235.937700px;}
.yfb{bottom:238.061700px;}
.y15e{bottom:238.184700px;}
.y250{bottom:238.681200px;}
.y110{bottom:238.741200px;}
.y196{bottom:238.753200px;}
.y1e1{bottom:238.934700px;}
.yc4{bottom:241.050000px;}
.y294{bottom:245.990700px;}
.y50{bottom:246.042150px;}
.y35d{bottom:247.721683px;}
.y31f{bottom:249.434700px;}
.y2da{bottom:249.440700px;}
.yfa{bottom:256.064700px;}
.y15d{bottom:256.187700px;}
.y24f{bottom:256.684200px;}
.y10f{bottom:256.744200px;}
.y195{bottom:256.753200px;}
.y1e0{bottom:256.937700px;}
.y84{bottom:257.154000px;}
.yc3{bottom:257.550000px;}
.y293{bottom:259.493700px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y20d{bottom:259.961700px;}
.y4f{bottom:261.786150px;}
.y34e{bottom:262.805700px;}
.y2d9{bottom:262.922700px;}
.y31e{bottom:262.937700px;}
.y8b{bottom:265.839000px;}
.y35c{bottom:268.478438px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y292{bottom:272.996700px;}
.yf9{bottom:274.067700px;}
.y15b{bottom:274.147500px;}
.y15a{bottom:274.187700px;}
.y15c{bottom:274.190700px;}
.y10e{bottom:274.747200px;}
.y1df{bottom:274.940700px;}
.y34d{bottom:276.308700px;}
.y2d8{bottom:276.425700px;}
.y31d{bottom:276.440700px;}
.y4e{bottom:277.530150px;}
.y20c{bottom:277.964700px;}
.y83{bottom:282.708000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y291{bottom:286.499700px;}
.y35b{bottom:289.235194px;}
.y34c{bottom:289.811700px;}
.y2d7{bottom:289.928700px;}
.y31c{bottom:289.934700px;}
.yf8{bottom:292.070700px;}
.y159{bottom:292.183200px;}
.y24e{bottom:292.690200px;}
.y194{bottom:292.747200px;}
.y10d{bottom:292.750200px;}
.y1de{bottom:292.943700px;}
.y4d{bottom:293.274150px;}
.y20b{bottom:295.967700px;}
.y82{bottom:299.208000px;}
.y290{bottom:300.002700px;}
.yae{bottom:302.550000px;}
.y34b{bottom:303.314700px;}
.y2d6{bottom:303.431700px;}
.y31b{bottom:303.437700px;}
.y4c{bottom:309.018150px;}
.y35a{bottom:309.991950px;}
.yf7{bottom:310.073700px;}
.y158{bottom:310.186200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y24d{bottom:310.693200px;}
.y193{bottom:310.750200px;}
.y10c{bottom:310.753200px;}
.y28f{bottom:313.505700px;}
.y20a{bottom:313.970700px;}
.yb0{bottom:316.086000px;}
.y34a{bottom:316.817700px;}
.y2d5{bottom:316.934700px;}
.y31a{bottom:316.940700px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y4b{bottom:324.762150px;}
.y28e{bottom:327.008700px;}
.yf6{bottom:328.076700px;}
.y24c{bottom:328.696200px;}
.y192{bottom:328.747200px;}
.y10b{bottom:328.748700px;}
.y1dd{bottom:328.949700px;}
.y349{bottom:330.320700px;}
.y319{bottom:330.431700px;}
.y2d4{bottom:330.437700px;}
.y359{bottom:330.744450px;}
.y209{bottom:331.973700px;}
.y14f{bottom:332.034000px;}
.y157{bottom:332.655000px;}
.yb2{bottom:335.457000px;}
.y151{bottom:337.178700px;}
.y156{bottom:337.190700px;}
.y4a{bottom:340.506150px;}
.y28d{bottom:340.511700px;}
.y348{bottom:343.823700px;}
.y318{bottom:343.934700px;}
.y2d3{bottom:343.940700px;}
.yf5{bottom:346.079700px;}
.y24b{bottom:346.699200px;}
.y81{bottom:346.734450px;}
.y191{bottom:346.750200px;}
.y1dc{bottom:346.952700px;}
.yf{bottom:348.133500px;}
.y208{bottom:349.976700px;}
.y28c{bottom:354.014700px;}
.yb4{bottom:355.168200px;}
.y49{bottom:356.250150px;}
.y347{bottom:357.326700px;}
.y2d2{bottom:357.401700px;}
.y317{bottom:357.437700px;}
.y14e{bottom:358.181700px;}
.yf4{bottom:364.082700px;}
.y24a{bottom:364.702200px;}
.y80{bottom:364.737450px;}
.y190{bottom:364.750200px;}
.y10a{bottom:364.753200px;}
.y1db{bottom:364.955700px;}
.y28b{bottom:367.517700px;}
.y207{bottom:367.979700px;}
.y358{bottom:369.373050px;}
.y346{bottom:370.829700px;}
.y2d1{bottom:370.904700px;}
.y316{bottom:370.940700px;}
.y48{bottom:371.994150px;}
.yb6{bottom:374.539350px;}
.y14d{bottom:376.184700px;}
.y28a{bottom:381.020700px;}
.yf3{bottom:382.085700px;}
.y249{bottom:382.705200px;}
.y7f{bottom:382.740450px;}
.y18f{bottom:382.750200px;}
.y1da{bottom:382.958700px;}
.y345{bottom:384.332700px;}
.y315{bottom:384.404700px;}
.y2d0{bottom:384.407700px;}
.y357{bottom:385.868550px;}
.y206{bottom:385.982700px;}
.ye{bottom:386.785499px;}
.y47{bottom:391.344150px;}
.y14c{bottom:394.187700px;}
.yb8{bottom:394.250250px;}
.y289{bottom:394.523700px;}
.y344{bottom:397.835700px;}
.y314{bottom:397.907700px;}
.y2cf{bottom:397.910700px;}
.y356{bottom:399.371550px;}
.yf2{bottom:400.088700px;}
.y109{bottom:400.648200px;}
.y248{bottom:400.708200px;}
.y7e{bottom:400.743450px;}
.y18e{bottom:400.750200px;}
.y1d9{bottom:400.961700px;}
.y205{bottom:403.985700px;}
.y288{bottom:408.026700px;}
.yd{bottom:408.044999px;}
.y343{bottom:411.338700px;}
.y313{bottom:411.410700px;}
.y2ce{bottom:411.413700px;}
.y149{bottom:412.000500px;}
.y148{bottom:412.187700px;}
.y14b{bottom:412.190700px;}
.y355{bottom:412.874550px;}
.yba{bottom:413.962650px;}
.yf1{bottom:418.091700px;}
.y108{bottom:418.651200px;}
.y247{bottom:418.711200px;}
.y7d{bottom:418.746450px;}
.y18d{bottom:418.750200px;}
.y1d8{bottom:418.964700px;}
.y287{bottom:421.529700px;}
.y204{bottom:421.982700px;}
.y342{bottom:424.841700px;}
.y312{bottom:424.913700px;}
.y2cd{bottom:424.916700px;}
.y354{bottom:426.377550px;}
.y146{bottom:427.599000px;}
.y145{bottom:430.187700px;}
.y147{bottom:430.190700px;}
.ybc{bottom:433.332300px;}
.y286{bottom:435.032700px;}
.yf0{bottom:436.094700px;}
.y246{bottom:436.714200px;}
.y7c{bottom:436.749450px;}
.y18c{bottom:436.750200px;}
.y1d7{bottom:436.967700px;}
.y341{bottom:438.344700px;}
.y311{bottom:438.416700px;}
.y2cc{bottom:438.419700px;}
.y203{bottom:439.985700px;}
.y353{bottom:444.133050px;}
.yad{bottom:447.885450px;}
.y144{bottom:448.191450px;}
.y285{bottom:448.535700px;}
.y340{bottom:451.847700px;}
.y310{bottom:451.919700px;}
.y2cb{bottom:451.922700px;}
.ybe{bottom:452.703450px;}
.yef{bottom:454.097700px;}
.y107{bottom:454.657200px;}
.y245{bottom:454.717200px;}
.y7b{bottom:454.749450px;}
.y18b{bottom:454.750200px;}
.y1d6{bottom:454.970700px;}
.y352{bottom:457.636050px;}
.y202{bottom:457.988700px;}
.y13c{bottom:461.496000px;}
.y284{bottom:462.038700px;}
.y141{bottom:463.723350px;}
.y33f{bottom:465.350700px;}
.y30f{bottom:465.422700px;}
.y2ca{bottom:465.425700px;}
.y3d{bottom:465.773400px;}
.y13b{bottom:469.176450px;}
.y13e{bottom:469.190700px;}
.y351{bottom:471.139050px;}
.yc0{bottom:472.413000px;}
.y106{bottom:472.660200px;}
.y244{bottom:472.720200px;}
.y18a{bottom:472.747200px;}
.y7a{bottom:472.752450px;}
.y1d5{bottom:472.973700px;}
.yac{bottom:473.439450px;}
.y283{bottom:475.541700px;}
.y33e{bottom:478.853700px;}
.y30e{bottom:478.925700px;}
.y2c9{bottom:478.928700px;}
.y3c{bottom:483.776400px;}
.y350{bottom:484.642050px;}
.y282{bottom:489.044700px;}
.yab{bottom:489.939450px;}
.yee{bottom:490.103700px;}
.y105{bottom:490.663200px;}
.y189{bottom:490.750200px;}
.y79{bottom:490.752450px;}
.y33d{bottom:492.356700px;}
.y30d{bottom:492.428700px;}
.y2c8{bottom:492.431700px;}
.y174{bottom:497.239500px;}
.y3b{bottom:501.779400px;}
.y34f{bottom:502.397550px;}
.y281{bottom:502.547700px;}
.yc{bottom:502.864502px;}
.y218{bottom:503.824200px;}
.y33c{bottom:505.859700px;}
.y30c{bottom:505.931700px;}
.y2c7{bottom:505.934700px;}
.yed{bottom:508.106700px;}
.y104{bottom:508.666200px;}
.y243{bottom:508.726200px;}
.y188{bottom:508.750200px;}
.y1d4{bottom:508.979700px;}
.y173{bottom:512.859450px;}
.y176{bottom:513.125850px;}
.y17a{bottom:513.126000px;}
.y280{bottom:516.050700px;}
.y33b{bottom:519.362700px;}
.y30b{bottom:519.434700px;}
.y2c6{bottom:519.437700px;}
.y3a{bottom:519.782400px;}
.yb{bottom:520.864502px;}
.y225{bottom:523.260450px;}
.yec{bottom:526.109700px;}
.y178{bottom:526.126050px;}
.y13a{bottom:526.181700px;}
.yaa{bottom:526.669200px;}
.y78{bottom:526.722450px;}
.y242{bottom:526.729200px;}
.y187{bottom:526.750200px;}
.y1d3{bottom:526.982700px;}
.y27f{bottom:529.553700px;}
.y33a{bottom:532.865700px;}
.y30a{bottom:532.937700px;}
.y2c5{bottom:532.940700px;}
.y39{bottom:537.785400px;}
.ya{bottom:538.864499px;}
.y27e{bottom:543.056700px;}
.y224{bottom:543.701700px;}
.yeb{bottom:544.112700px;}
.ya9{bottom:544.672200px;}
.y77{bottom:544.725450px;}
.y241{bottom:544.732200px;}
.y186{bottom:544.750200px;}
.y1d2{bottom:544.985700px;}
.y339{bottom:546.368700px;}
.y2c4{bottom:546.419700px;}
.y309{bottom:546.440700px;}
.y38{bottom:555.788400px;}
.y27d{bottom:556.559700px;}
.y9{bottom:556.864499px;}
.y184{bottom:558.217500px;}
.y338{bottom:559.871700px;}
.y308{bottom:559.919700px;}
.y2c3{bottom:559.922700px;}
.yea{bottom:562.115700px;}
.y139{bottom:562.187700px;}
.ya8{bottom:562.675200px;}
.y76{bottom:562.728450px;}
.y240{bottom:562.735200px;}
.y185{bottom:562.753200px;}
.y1d1{bottom:562.988700px;}
.y223{bottom:564.142950px;}
.y27c{bottom:570.062700px;}
.y337{bottom:573.374700px;}
.y307{bottom:573.422700px;}
.y2c2{bottom:573.425700px;}
.y37{bottom:573.791400px;}
.y135{bottom:575.655000px;}
.y137{bottom:576.843000px;}
.ye9{bottom:580.118700px;}
.y134{bottom:580.187700px;}
.y136{bottom:580.190700px;}
.ya7{bottom:580.678200px;}
.y183{bottom:580.716450px;}
.y75{bottom:580.731450px;}
.y23f{bottom:580.738200px;}
.y27b{bottom:583.550700px;}
.y222{bottom:584.584200px;}
.y336{bottom:586.877700px;}
.y306{bottom:586.925700px;}
.y2c1{bottom:586.928700px;}
.y36{bottom:591.789750px;}
.y131{bottom:593.655000px;}
.y27a{bottom:597.053700px;}
.ye8{bottom:598.121700px;}
.y130{bottom:598.166700px;}
.y133{bottom:598.190700px;}
.ya6{bottom:598.681200px;}
.y182{bottom:598.719450px;}
.y23e{bottom:598.741200px;}
.y335{bottom:600.380700px;}
.y305{bottom:600.428700px;}
.y2c0{bottom:600.431700px;}
.y221{bottom:605.025450px;}
.y1f7{bottom:608.824200px;}
.y279{bottom:610.556700px;}
.y334{bottom:613.883700px;}
.y304{bottom:613.931700px;}
.y2bf{bottom:613.934700px;}
.ye7{bottom:616.124700px;}
.ya5{bottom:616.684200px;}
.y74{bottom:616.737450px;}
.y23d{bottom:616.744200px;}
.y16e{bottom:620.166000px;}
.y171{bottom:622.362000px;}
.y1cb{bottom:622.753500px;}
.y16d{bottom:623.859450px;}
.y278{bottom:624.059700px;}
.y220{bottom:625.466700px;}
.y170{bottom:626.870700px;}
.y333{bottom:627.386700px;}
.y303{bottom:627.434700px;}
.y2be{bottom:627.437700px;}
.y35{bottom:627.794250px;}
.y201{bottom:628.256700px;}
.y276{bottom:634.066200px;}
.ye6{bottom:634.127700px;}
.y12f{bottom:634.172700px;}
.ya4{bottom:634.687200px;}
.y73{bottom:634.740450px;}
.y23c{bottom:634.747200px;}
.y275{bottom:637.547850px;}
.y277{bottom:637.562700px;}
.y1ca{bottom:639.421950px;}
.y1cc{bottom:640.738200px;}
.y1ce{bottom:640.738350px;}
.y1d0{bottom:640.738650px;}
.y332{bottom:640.889700px;}
.y302{bottom:640.937700px;}
.y2bd{bottom:640.940700px;}
.y8{bottom:645.510000px;}
.y21f{bottom:645.907950px;}
.y200{bottom:648.697950px;}
.y274{bottom:651.050850px;}
.ye5{bottom:652.130700px;}
.y12e{bottom:652.175700px;}
.ya3{bottom:652.690200px;}
.y181{bottom:652.715700px;}
.y72{bottom:652.743450px;}
.y23b{bottom:652.750200px;}
.y1cd{bottom:653.738550px;}
.y1cf{bottom:653.738700px;}
.y2bc{bottom:654.251700px;}
.y331{bottom:654.392700px;}
.y301{bottom:654.440700px;}
.y34{bottom:658.547250px;}
.y273{bottom:664.553850px;}
.y21c{bottom:666.345450px;}
.y21e{bottom:666.349200px;}
.y7{bottom:666.771000px;}
.y2bb{bottom:667.754700px;}
.y330{bottom:667.895700px;}
.y300{bottom:667.931700px;}
.y1ff{bottom:669.139200px;}
.y21d{bottom:670.095450px;}
.ye4{bottom:670.133700px;}
.y12d{bottom:670.178700px;}
.ya2{bottom:670.693200px;}
.y71{bottom:670.746450px;}
.y23a{bottom:670.753200px;}
.y1c4{bottom:673.752000px;}
.y272{bottom:678.056850px;}
.y2ba{bottom:681.257700px;}
.y32f{bottom:681.398700px;}
.y2ff{bottom:681.434700px;}
.y21a{bottom:686.786700px;}
.ye3{bottom:688.136700px;}
.y12c{bottom:688.181700px;}
.ya1{bottom:688.696200px;}
.y180{bottom:688.721700px;}
.y70{bottom:688.749450px;}
.y239{bottom:688.753200px;}
.y33{bottom:689.303250px;}
.y1fe{bottom:689.580450px;}
.y1c3{bottom:690.421950px;}
.y21b{bottom:690.532950px;}
.y271{bottom:691.559850px;}
.y1c5{bottom:691.738200px;}
.y1c7{bottom:691.738350px;}
.y1c9{bottom:691.738650px;}
.y2b9{bottom:694.760700px;}
.y32e{bottom:694.901700px;}
.y2fe{bottom:694.937700px;}
.y1c6{bottom:704.738550px;}
.y1c8{bottom:704.738700px;}
.y270{bottom:705.062850px;}
.y12b{bottom:706.184700px;}
.y6f{bottom:706.698450px;}
.ya0{bottom:706.699200px;}
.y219{bottom:707.224200px;}
.y2b8{bottom:708.263700px;}
.y32d{bottom:708.404700px;}
.y2fd{bottom:708.440700px;}
.y1fd{bottom:710.021700px;}
.y32{bottom:710.303250px;}
.y373{bottom:713.379600px;}
.y46{bottom:713.572800px;}
.y26f{bottom:718.541850px;}
.y2b7{bottom:721.766700px;}
.y32c{bottom:721.907700px;}
.y2fc{bottom:721.922700px;}
.ye2{bottom:724.142700px;}
.y12a{bottom:724.187700px;}
.y6e{bottom:724.701450px;}
.y9f{bottom:724.702200px;}
.y17f{bottom:724.727700px;}
.y238{bottom:724.732200px;}
.y6{bottom:726.298500px;}
.y45{bottom:726.319800px;}
.y217{bottom:729.253200px;}
.y1fc{bottom:730.462950px;}
.y31{bottom:731.303250px;}
.y2b6{bottom:735.269700px;}
.y32b{bottom:735.410700px;}
.y2fb{bottom:735.425700px;}
.y372{bottom:736.007100px;}
.ye1{bottom:742.145700px;}
.y129{bottom:742.190700px;}
.y6d{bottom:742.704450px;}
.y9e{bottom:742.705200px;}
.y237{bottom:742.735200px;}
.y26e{bottom:745.537350px;}
.y1bd{bottom:748.753500px;}
.y2b5{bottom:748.772700px;}
.y32a{bottom:748.913700px;}
.y2fa{bottom:748.928700px;}
.y1fb{bottom:750.904200px;}
.y44{bottom:751.824300px;}
.y30{bottom:752.303250px;}
.y3{bottom:752.599495px;}
.y371{bottom:756.448350px;}
.y26d{bottom:759.040350px;}
.ye0{bottom:760.148700px;}
.y128{bottom:760.190700px;}
.y6c{bottom:760.707450px;}
.y9d{bottom:760.708200px;}
.y236{bottom:760.738200px;}
.y2b4{bottom:762.275700px;}
.y329{bottom:762.416700px;}
.y2f9{bottom:762.431700px;}
.y43{bottom:764.571300px;}
.y1bc{bottom:765.421950px;}
.y1be{bottom:766.738200px;}
.y1c0{bottom:766.738350px;}
.y1c2{bottom:766.738650px;}
.y1fa{bottom:771.345450px;}
.y26c{bottom:772.543350px;}
.y2f{bottom:773.303250px;}
.y2b3{bottom:775.778700px;}
.y328{bottom:775.919700px;}
.y2f8{bottom:775.934700px;}
.y370{bottom:776.889600px;}
.ydf{bottom:778.151700px;}
.y6b{bottom:778.710450px;}
.y9c{bottom:778.711200px;}
.y17e{bottom:778.723950px;}
.y235{bottom:778.741200px;}
.y42{bottom:779.449800px;}
.y1bf{bottom:779.738550px;}
.y1c1{bottom:779.738700px;}
.y227{bottom:781.699200px;}
.y26b{bottom:786.046350px;}
.y2b2{bottom:789.281700px;}
.y327{bottom:789.422700px;}
.y2f7{bottom:789.437700px;}
.y1f9{bottom:791.786700px;}
.y2e{bottom:794.303250px;}
.yde{bottom:796.154700px;}
.y127{bottom:796.184700px;}
.y6a{bottom:796.713450px;}
.y9b{bottom:796.714200px;}
.y234{bottom:796.744200px;}
.y36f{bottom:797.330850px;}
.y26a{bottom:799.549350px;}
.y1b6{bottom:799.753500px;}
.y231{bottom:801.135450px;}
.y2b1{bottom:802.784700px;}
.y326{bottom:802.925700px;}
.y2f6{bottom:802.940700px;}
.y41{bottom:804.954300px;}
.y1f8{bottom:812.224200px;}
.y269{bottom:813.052350px;}
.ydd{bottom:814.157700px;}
.y126{bottom:814.187700px;}
.y69{bottom:814.716450px;}
.y9a{bottom:814.717200px;}
.y17d{bottom:814.729950px;}
.y233{bottom:814.747200px;}
.y2d{bottom:815.303250px;}
.y2b0{bottom:816.287700px;}
.y2f5{bottom:816.392700px;}
.y1b5{bottom:816.421950px;}
.y325{bottom:816.428700px;}
.y1b7{bottom:817.738200px;}
.y1b9{bottom:817.738350px;}
.y1bb{bottom:817.738650px;}
.y36e{bottom:817.772100px;}
.y40{bottom:819.832800px;}
.y230{bottom:821.576700px;}
.y268{bottom:826.555350px;}
.y123{bottom:829.599000px;}
.y2af{bottom:829.790700px;}
.y2f4{bottom:829.895700px;}
.y324{bottom:829.931700px;}
.y1b8{bottom:830.738550px;}
.y1ba{bottom:830.738700px;}
.ydc{bottom:832.160700px;}
.y122{bottom:832.187700px;}
.y125{bottom:832.190700px;}
.y3f{bottom:832.579800px;}
.y99{bottom:832.720200px;}
.y232{bottom:832.750200px;}
.y1f6{bottom:834.254700px;}
.y2c{bottom:836.303250px;}
.y36d{bottom:838.213350px;}
.y267{bottom:840.058350px;}
.y22f{bottom:842.017950px;}
.y2ae{bottom:843.293700px;}
.y2f3{bottom:843.398700px;}
.y323{bottom:843.434700px;}
.y3e{bottom:845.326800px;}
.ydb{bottom:850.163700px;}
.y121{bottom:850.187700px;}
.y68{bottom:850.722450px;}
.y98{bottom:850.723200px;}
.y17c{bottom:850.735950px;}
.y1f5{bottom:850.753200px;}
.y2ad{bottom:856.796700px;}
.y2f2{bottom:856.901700px;}
.y322{bottom:856.937700px;}
.y2b{bottom:857.303250px;}
.y36c{bottom:858.654600px;}
.y22e{bottom:862.459200px;}
.y266{bottom:867.053850px;}
.y11e{bottom:868.002000px;}
.yda{bottom:868.166700px;}
.y11d{bottom:868.187700px;}
.y120{bottom:868.190700px;}
.y67{bottom:868.725450px;}
.y97{bottom:868.726200px;}
.y2ac{bottom:870.299700px;}
.y2f1{bottom:870.404700px;}
.y321{bottom:870.440700px;}
.y5a{bottom:870.619200px;}
.y1a9{bottom:874.752000px;}
.y2a{bottom:878.303250px;}
.y36b{bottom:879.095850px;}
.y2{bottom:879.369000px;}
.y265{bottom:880.556850px;}
.y22d{bottom:882.900450px;}
.y2ab{bottom:883.802700px;}
.y2f0{bottom:883.907700px;}
.y59{bottom:885.497700px;}
.y11a{bottom:886.147500px;}
.yd9{bottom:886.169700px;}
.y119{bottom:886.182450px;}
.y11c{bottom:886.190700px;}
.y66{bottom:886.728450px;}
.y103{bottom:886.729200px;}
.y1a8{bottom:891.421950px;}
.y1ab{bottom:892.738200px;}
.y1af{bottom:892.738350px;}
.y1b3{bottom:892.738650px;}
.y264{bottom:894.059850px;}
.y2aa{bottom:897.305700px;}
.y2ef{bottom:897.410700px;}
.y29{bottom:899.303250px;}
.y36a{bottom:899.537100px;}
.y58{bottom:900.376200px;}
.y1ef{bottom:901.511700px;}
.y22c{bottom:903.341700px;}
.yd8{bottom:904.172700px;}
.y118{bottom:904.185450px;}
.y65{bottom:904.731450px;}
.y96{bottom:904.732200px;}
.y1ad{bottom:905.738550px;}
.y1b1{bottom:905.738700px;}
.y263{bottom:907.562850px;}
.y2a9{bottom:910.808700px;}
.y2ee{bottom:910.913700px;}
.y369{bottom:919.978350px;}
.y1f4{bottom:920.962950px;}
.yd7{bottom:922.175700px;}
.y64{bottom:922.734450px;}
.y95{bottom:922.735200px;}
.y22b{bottom:923.782950px;}
.y2a8{bottom:924.311700px;}
.y2ed{bottom:924.416700px;}
.y19c{bottom:925.753500px;}
.y166{bottom:929.016000px;}
.y27{bottom:933.059100px;}
.y262{bottom:934.565850px;}
.y28{bottom:937.554600px;}
.y2a7{bottom:937.814700px;}
.y2ec{bottom:937.919700px;}
.yd6{bottom:940.178700px;}
.y368{bottom:940.419600px;}
.y63{bottom:940.737450px;}
.y94{bottom:940.738200px;}
.y1f3{bottom:941.404200px;}
.y19b{bottom:942.412950px;}
.y19e{bottom:943.738200px;}
.y1a2{bottom:943.738350px;}
.y1a6{bottom:943.738650px;}
.y22a{bottom:944.224200px;}
.y165{bottom:944.845950px;}
.y168{bottom:944.930700px;}
.y261{bottom:947.312850px;}
.y260{bottom:950.809350px;}
.y2a6{bottom:951.317700px;}
.y2eb{bottom:951.422700px;}
.y1a0{bottom:956.738550px;}
.y1a4{bottom:956.738700px;}
.y16a{bottom:957.930750px;}
.yd5{bottom:958.181700px;}
.y62{bottom:958.740450px;}
.y93{bottom:958.741200px;}
.y367{bottom:960.860850px;}
.y1f2{bottom:961.845450px;}
.y25f{bottom:962.188800px;}
.y26{bottom:962.326950px;}
.y229{bottom:964.663950px;}
.y2a5{bottom:964.820700px;}
.y2ea{bottom:964.925700px;}
.y1{bottom:966.726000px;}
.yd4{bottom:976.184700px;}
.y61{bottom:976.743450px;}
.y92{bottom:976.744200px;}
.y25d{bottom:977.064750px;}
.y2a4{bottom:978.323700px;}
.y2e9{bottom:978.428700px;}
.y25e{bottom:980.561250px;}
.y366{bottom:981.302100px;}
.y1f1{bottom:982.286700px;}
.y228{bottom:986.224200px;}
.y2a3{bottom:991.826700px;}
.y2e8{bottom:991.931700px;}
.y25c{bottom:991.942200px;}
.y25{bottom:992.314950px;}
.yd3{bottom:994.187700px;}
.y60{bottom:994.746450px;}
.y91{bottom:994.747200px;}
.y1f0{bottom:1002.724200px;}
.y2a2{bottom:1005.329700px;}
.y2e7{bottom:1005.434700px;}
.y226{bottom:1008.254700px;}
.y365{bottom:1010.852100px;}
.yd2{bottom:1012.190700px;}
.y5f{bottom:1012.749450px;}
.y90{bottom:1012.750200px;}
.y2a1{bottom:1018.832700px;}
.y25b{bottom:1018.937700px;}
.y1ee{bottom:1024.753200px;}
.y24{bottom:1026.814950px;}
.y364{bottom:1028.852100px;}
.yd1{bottom:1030.190700px;}
.y5e{bottom:1030.752450px;}
.y8f{bottom:1030.753200px;}
.y2a0{bottom:1032.335700px;}
.y25a{bottom:1032.440700px;}
.y23{bottom:1113.057450px;}
.y22{bottom:1128.061950px;}
.h37{height:3.763742px;}
.h24{height:6.450000px;}
.h1c{height:8.812500px;}
.h22{height:9.600000px;}
.h2a{height:10.800000px;}
.h3c{height:10.950000px;}
.h2b{height:11.100000px;}
.h29{height:12.150000px;}
.h27{height:13.048500px;}
.h3a{height:14.100000px;}
.h32{height:14.398500px;}
.h42{height:15.000000px;}
.h46{height:16.651500px;}
.h3e{height:16.950000px;}
.h39{height:17.550000px;}
.h35{height:18.020568px;}
.h4f{height:18.854220px;}
.h4e{height:19.148052px;}
.h34{height:19.650000px;}
.h2c{height:20.100000px;}
.h4c{height:20.515770px;}
.h1b{height:22.599320px;}
.h20{height:23.126491px;}
.h1e{height:23.559185px;}
.hf{height:24.241140px;}
.h30{height:25.057157px;}
.h3f{height:26.688096px;}
.h2e{height:27.911300px;}
.h36{height:28.170768px;}
.h16{height:30.498000px;}
.h7{height:32.130000px;}
.h48{height:32.340000px;}
.h58{height:32.364000px;}
.h56{height:32.376000px;}
.h50{height:32.388000px;}
.h54{height:32.412000px;}
.h52{height:32.424000px;}
.h59{height:32.472000px;}
.h57{height:32.484000px;}
.h53{height:32.496000px;}
.h55{height:32.532000px;}
.ha{height:32.844000px;}
.h5a{height:32.880000px;}
.h51{height:33.096000px;}
.h5b{height:33.627720px;}
.hb{height:34.314000px;}
.h4b{height:34.380000px;}
.h49{height:35.190000px;}
.h14{height:36.960000px;}
.h15{height:37.536000px;}
.h25{height:38.093635px;}
.h23{height:38.549846px;}
.h19{height:39.216000px;}
.h5d{height:39.269538px;}
.h13{height:39.270000px;}
.h26{height:39.282000px;}
.h43{height:39.294000px;}
.h3b{height:39.300000px;}
.h5e{height:39.371537px;}
.h4d{height:39.390000px;}
.h4a{height:39.462000px;}
.h18{height:39.889410px;}
.h17{height:40.093410px;}
.h41{height:40.801500px;}
.h3d{height:41.250000px;}
.he{height:41.580000px;}
.h5c{height:41.666510px;}
.h47{height:41.667000px;}
.h21{height:41.688000px;}
.h45{height:42.898500px;}
.h44{height:42.900000px;}
.h28{height:43.340064px;}
.h2d{height:43.511143px;}
.h12{height:44.118000px;}
.h6{height:45.900000px;}
.h11{height:46.200000px;}
.h3{height:48.195000px;}
.h10{height:49.020000px;}
.h33{height:51.029957px;}
.h2{height:55.080000px;}
.hc{height:58.824000px;}
.h40{height:59.093808px;}
.h31{height:64.810279px;}
.h2f{height:65.380543px;}
.h38{height:67.376342px;}
.h5{height:78.030000px;}
.hd{height:78.540000px;}
.h4{height:119.055004px;}
.h1a{height:188.656500px;}
.h1f{height:192.720000px;}
.h1d{height:196.390500px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:5.761500px;}
.w9{width:5.986500px;}
.w15{width:6.330000px;}
.w11{width:6.958500px;}
.we{width:7.275000px;}
.w8{width:8.940000px;}
.w14{width:9.270000px;}
.wd{width:9.808500px;}
.wc{width:10.695000px;}
.wb{width:11.475000px;}
.w19{width:29.040000px;}
.w20{width:35.655000px;}
.wa{width:37.470000px;}
.w10{width:49.605000px;}
.w13{width:138.165000px;}
.w12{width:167.520000px;}
.w18{width:216.478500px;}
.w17{width:217.800000px;}
.wf{width:220.215000px;}
.w16{width:228.150000px;}
.w5{width:382.677000px;}
.w7{width:382.906500px;}
.w1f{width:456.195000px;}
.w1e{width:469.845000px;}
.w1b{width:472.455000px;}
.w1a{width:476.895000px;}
.w1c{width:481.245000px;}
.w1d{width:484.995000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:914.173500px;}
.w4{width:914.250000px;}
.x52{left:-1.146000px;}
.x0{left:0.000000px;}
.xf{left:1.354650px;}
.x13{left:3.187200px;}
.x11{left:10.195800px;}
.x45{left:30.188850px;}
.x22{left:43.896750px;}
.x46{left:62.238000px;}
.x2f{left:67.045800px;}
.x5{left:74.409450px;}
.xe{left:78.661500px;}
.x30{left:80.086350px;}
.x37{left:81.570900px;}
.x4d{left:88.933800px;}
.x4f{left:90.188850px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6f{left:111.167700px;}
.x71{left:112.558050px;}
.x39{left:113.849100px;}
.x5d{left:119.676150px;}
.x5f{left:121.080000px;}
.x54{left:124.123500px;}
.x56{left:125.527350px;}
.x32{left:127.255500px;}
.x69{left:128.335200px;}
.x40{left:141.439350px;}
.x48{left:146.572500px;}
.x34{left:159.534150px;}
.x4a{left:168.482550px;}
.x24{left:182.770800px;}
.x26{left:191.626650px;}
.x4{left:203.484001px;}
.x4c{left:210.778350px;}
.x51{left:213.740700px;}
.x28{left:217.978650px;}
.x43{left:224.869800px;}
.x72{left:237.932850px;}
.x74{left:239.323200px;}
.x60{left:255.526650px;}
.x62{left:256.930500px;}
.x65{left:262.567350px;}
.x58{left:264.415050px;}
.x5a{left:265.818900px;}
.x7{left:270.000000px;}
.x6c{left:271.448550px;}
.x6{left:273.097050px;}
.x12{left:275.734500px;}
.x82{left:276.997950px;}
.x10{left:278.503050px;}
.x3f{left:279.598200px;}
.x7a{left:281.567100px;}
.xd{left:282.750000px;}
.x2c{left:284.127000px;}
.x44{left:286.459200px;}
.x2d{left:291.086100px;}
.x53{left:298.989000px;}
.x7c{left:302.076150px;}
.x2e{left:303.106500px;}
.x1a{left:308.886000px;}
.x1b{left:320.361300px;}
.x21{left:326.593800px;}
.x47{left:341.431350px;}
.x8{left:342.511650px;}
.x9{left:346.773450px;}
.x23{left:355.889550px;}
.x4e{left:358.069500px;}
.x80{left:370.753500px;}
.x31{left:377.450850px;}
.x50{left:378.859800px;}
.x70{left:380.425200px;}
.x5e{left:388.933650px;}
.x81{left:390.878400px;}
.x55{left:393.380550px;}
.x68{left:396.202350px;}
.xb{left:400.350000px;}
.x33{left:403.924650px;}
.x7e{left:407.616750px;}
.x41{left:410.278650px;}
.x57{left:414.184200px;}
.x6a{left:416.992050px;}
.x49{left:425.549700px;}
.x42{left:431.082300px;}
.x35{left:437.520000px;}
.x76{left:452.920350px;}
.x3{left:454.959000px;}
.x18{left:459.186000px;}
.x4b{left:460.946700px;}
.x36{left:465.052500px;}
.x6e{left:466.576500px;}
.x64{left:469.177650px;}
.x5c{left:473.625150px;}
.x67{left:477.973800px;}
.x6d{left:481.725150px;}
.x25{left:494.736000px;}
.x19{left:496.656750px;}
.x27{left:503.619450px;}
.x73{left:507.189750px;}
.x61{left:524.783700px;}
.x75{left:527.980050px;}
.x29{left:529.670100px;}
.x66{left:531.825000px;}
.x59{left:533.672550px;}
.x16{left:535.935000px;}
.x6b{left:539.302350px;}
.x17{left:541.920750px;}
.x63{left:545.587350px;}
.x38{left:553.306050px;}
.x5b{left:554.476350px;}
.xa{left:559.795200px;}
.x79{left:563.472300px;}
.x7b{left:573.477150px;}
.x7f{left:585.143400px;}
.x3a{left:603.216900px;}
.x3d{left:608.778000px;}
.x1d{left:633.051000px;}
.x1e{left:642.860850px;}
.x3b{left:644.467500px;}
.x3c{left:653.737650px;}
.x2a{left:667.713000px;}
.x2b{left:717.317250px;}
.x7d{left:773.330850px;}
.x77{left:774.825000px;}
.xc{left:779.525700px;}
.x14{left:794.454000px;}
.x15{left:803.394150px;}
.x1c{left:805.621050px;}
.x78{left:810.480900px;}
.x1f{left:820.081500px;}
.x3e{left:824.178750px;}
.x20{left:827.356650px;}
@media print{
.va{vertical-align:-40.501417pt;}
.v3{vertical-align:-16.030933pt;}
.v2{vertical-align:-15.085333pt;}
.v8{vertical-align:-9.022400pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.408533pt;}
.v1{vertical-align:15.288000pt;}
.v5{vertical-align:19.439467pt;}
.v7{vertical-align:23.086933pt;}
.v4{vertical-align:35.331023pt;}
.v9{vertical-align:56.544533pt;}
.ls8e{letter-spacing:-3.399960pt;}
.ls93{letter-spacing:-3.309294pt;}
.ls87{letter-spacing:-2.762667pt;}
.ls7c{letter-spacing:-2.725333pt;}
.ls94{letter-spacing:-1.631981pt;}
.ls7e{letter-spacing:-1.493333pt;}
.ls80{letter-spacing:-1.456000pt;}
.ls86{letter-spacing:-1.381333pt;}
.ls73{letter-spacing:-1.360000pt;}
.ls7a{letter-spacing:-1.306667pt;}
.ls7b{letter-spacing:-1.269333pt;}
.ls82{letter-spacing:-1.232000pt;}
.ls92{letter-spacing:-1.223986pt;}
.ls75{letter-spacing:-1.200000pt;}
.ls84{letter-spacing:-1.194667pt;}
.ls88{letter-spacing:-1.120000pt;}
.ls8f{letter-spacing:-1.088000pt;}
.ls96{letter-spacing:-1.087987pt;}
.ls85{letter-spacing:-1.045333pt;}
.ls8c{letter-spacing:-1.042654pt;}
.ls89{letter-spacing:-1.008000pt;}
.ls90{letter-spacing:-0.997322pt;}
.ls83{letter-spacing:-0.970667pt;}
.ls3d{letter-spacing:-0.963113pt;}
.ls8a{letter-spacing:-0.933333pt;}
.ls72{letter-spacing:-0.861333pt;}
.ls98{letter-spacing:-0.815990pt;}
.ls91{letter-spacing:-0.679992pt;}
.ls7d{letter-spacing:-0.634667pt;}
.ls81{letter-spacing:-0.597333pt;}
.ls7f{letter-spacing:-0.560000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls79{letter-spacing:-0.522667pt;}
.ls78{letter-spacing:-0.512213pt;}
.ls8d{letter-spacing:-0.498661pt;}
.ls77{letter-spacing:-0.485333pt;}
.lse{letter-spacing:-0.457455pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls76{letter-spacing:-0.373333pt;}
.ls74{letter-spacing:-0.317333pt;}
.ls1{letter-spacing:-0.272000pt;}
.lsc{letter-spacing:-0.181333pt;}
.ls6d{letter-spacing:-0.105717pt;}
.ls95{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5f{letter-spacing:0.000090pt;}
.ls6f{letter-spacing:0.000293pt;}
.ls2d{letter-spacing:0.000623pt;}
.ls48{letter-spacing:0.000783pt;}
.ls56{letter-spacing:0.002025pt;}
.ls1c{letter-spacing:0.002133pt;}
.ls61{letter-spacing:0.002223pt;}
.ls64{letter-spacing:0.002383pt;}
.ls3b{letter-spacing:0.002558pt;}
.ls37{letter-spacing:0.002758pt;}
.ls58{letter-spacing:0.002916pt;}
.ls6a{letter-spacing:0.003002pt;}
.ls5b{letter-spacing:0.003091pt;}
.ls71{letter-spacing:0.003733pt;}
.ls5d{letter-spacing:0.005248pt;}
.ls12{letter-spacing:0.007004pt;}
.ls40{letter-spacing:0.008680pt;}
.ls34{letter-spacing:0.009137pt;}
.ls4d{letter-spacing:0.011051pt;}
.ls5a{letter-spacing:0.017035pt;}
.ls43{letter-spacing:0.017566pt;}
.ls4a{letter-spacing:0.017764pt;}
.ls46{letter-spacing:0.018298pt;}
.ls68{letter-spacing:0.019121pt;}
.ls31{letter-spacing:0.019765pt;}
.ls15{letter-spacing:0.020299pt;}
.ls13{letter-spacing:0.021655pt;}
.ls50{letter-spacing:0.022923pt;}
.ls41{letter-spacing:0.023593pt;}
.ls4b{letter-spacing:0.024105pt;}
.ls65{letter-spacing:0.028772pt;}
.ls6e{letter-spacing:0.032948pt;}
.ls1f{letter-spacing:0.035618pt;}
.ls1d{letter-spacing:0.043200pt;}
.ls22{letter-spacing:0.050690pt;}
.ls19{letter-spacing:0.067770pt;}
.ls3f{letter-spacing:0.072800pt;}
.ls3{letter-spacing:0.111757pt;}
.ls3e{letter-spacing:0.136000pt;}
.ls8b{letter-spacing:0.149333pt;}
.ls9{letter-spacing:0.400273pt;}
.lsa{letter-spacing:0.428864pt;}
.lsd{letter-spacing:0.524266pt;}
.ls6{letter-spacing:0.553391pt;}
.ls2b{letter-spacing:0.691914pt;}
.ls97{letter-spacing:0.906656pt;}
.ls5{letter-spacing:1.005811pt;}
.ls4{letter-spacing:1.033750pt;}
.ls45{letter-spacing:1.153189pt;}
.ls20{letter-spacing:1.284982pt;}
.lsf{letter-spacing:1.343774pt;}
.ls21{letter-spacing:1.812155pt;}
.ls3c{letter-spacing:2.027605pt;}
.ls66{letter-spacing:2.627488pt;}
.ls30{letter-spacing:2.628021pt;}
.ls25{letter-spacing:2.663700pt;}
.ls32{letter-spacing:2.666898pt;}
.ls54{letter-spacing:2.673355pt;}
.ls4e{letter-spacing:2.676021pt;}
.ls24{letter-spacing:2.686577pt;}
.ls33{letter-spacing:3.322209pt;}
.ls2a{letter-spacing:3.345549pt;}
.ls59{letter-spacing:3.779344pt;}
.ls60{letter-spacing:3.781477pt;}
.ls47{letter-spacing:3.796707pt;}
.ls52{letter-spacing:3.797241pt;}
.ls57{letter-spacing:3.844707pt;}
.ls2e{letter-spacing:3.919557pt;}
.ls23{letter-spacing:3.969691pt;}
.ls14{letter-spacing:11.112325pt;}
.ls1b{letter-spacing:11.114459pt;}
.ls17{letter-spacing:11.253210pt;}
.ls39{letter-spacing:11.303900pt;}
.ls29{letter-spacing:12.317702pt;}
.ls28{letter-spacing:13.331505pt;}
.ls55{letter-spacing:13.886621pt;}
.ls2c{letter-spacing:13.888754pt;}
.ls6c{letter-spacing:13.934087pt;}
.ls67{letter-spacing:13.934621pt;}
.ls36{letter-spacing:13.936754pt;}
.ls27{letter-spacing:14.041167pt;}
.ls11{letter-spacing:14.091857pt;}
.ls3a{letter-spacing:14.553142pt;}
.ls51{letter-spacing:14.586271pt;}
.ls44{letter-spacing:14.586804pt;}
.ls5e{letter-spacing:14.599189pt;}
.ls69{letter-spacing:14.601323pt;}
.ls63{letter-spacing:14.634271pt;}
.ls53{letter-spacing:15.051342pt;}
.ls4c{letter-spacing:15.051875pt;}
.ls49{letter-spacing:15.053475pt;}
.ls62{letter-spacing:15.099342pt;}
.ls6b{letter-spacing:15.099875pt;}
.ls18{letter-spacing:15.105660pt;}
.ls16{letter-spacing:15.152624pt;}
.ls38{letter-spacing:15.180823pt;}
.ls2f{letter-spacing:15.230423pt;}
.ls10{letter-spacing:17.336026pt;}
.ls42{letter-spacing:17.387276pt;}
.ls35{letter-spacing:17.432609pt;}
.ls4f{letter-spacing:17.433142pt;}
.ls5c{letter-spacing:17.434742pt;}
.ls26{letter-spacing:17.482742pt;}
.ls1a{letter-spacing:18.034224pt;}
.ls1e{letter-spacing:18.603279pt;}
.ls8{letter-spacing:87.232166pt;}
.ls7{letter-spacing:87.233036pt;}
.ls70{letter-spacing:177.706667pt;}
.ws8b{word-spacing:-14.142547pt;}
.ws85{word-spacing:-14.091857pt;}
.ws2{word-spacing:-13.546667pt;}
.ws2d{word-spacing:-11.333333pt;}
.ws89{word-spacing:-11.303900pt;}
.wsa8{word-spacing:-11.288000pt;}
.wsf0{word-spacing:-11.151869pt;}
.ws82{word-spacing:-11.106667pt;}
.wse5{word-spacing:-11.015870pt;}
.wsea{word-spacing:-10.653208pt;}
.wse9{word-spacing:-10.517210pt;}
.wse6{word-spacing:-10.471877pt;}
.wse8{word-spacing:-10.426667pt;}
.wsef{word-spacing:-10.335878pt;}
.wse4{word-spacing:-10.245213pt;}
.wseb{word-spacing:-10.109214pt;}
.wsee{word-spacing:-10.063882pt;}
.wsed{word-spacing:-9.701219pt;}
.ws1{word-spacing:-9.482667pt;}
.ws3{word-spacing:-9.333333pt;}
.wsce{word-spacing:-9.146667pt;}
.wscf{word-spacing:-8.960000pt;}
.wsd8{word-spacing:-8.810667pt;}
.wsd0{word-spacing:-8.773333pt;}
.wsd1{word-spacing:-8.661333pt;}
.wse3{word-spacing:-8.400000pt;}
.wsdc{word-spacing:-8.362667pt;}
.wse2{word-spacing:-8.325333pt;}
.wsde{word-spacing:-8.288000pt;}
.wsd6{word-spacing:-8.213333pt;}
.wsd5{word-spacing:-8.176000pt;}
.wsdd{word-spacing:-8.138667pt;}
.wse7{word-spacing:-8.114571pt;}
.wsdb{word-spacing:-8.101333pt;}
.wse1{word-spacing:-8.064000pt;}
.wsec{word-spacing:-8.023906pt;}
.wsdf{word-spacing:-7.952000pt;}
.wsda{word-spacing:-7.877333pt;}
.wsd9{word-spacing:-7.840000pt;}
.wsa9{word-spacing:-6.713051pt;}
.wsd7{word-spacing:-6.608000pt;}
.wsa{word-spacing:-6.607333pt;}
.wse0{word-spacing:-6.570667pt;}
.ws97{word-spacing:-6.501616pt;}
.ws86{word-spacing:-6.475187pt;}
.ws61{word-spacing:-3.445333pt;}
.ws7d{word-spacing:-2.448000pt;}
.ws21{word-spacing:-2.266667pt;}
.wsc4{word-spacing:-2.130667pt;}
.ws3f{word-spacing:-2.085333pt;}
.ws87{word-spacing:-2.078295pt;}
.ws70{word-spacing:-2.040000pt;}
.wscb{word-spacing:-1.994667pt;}
.ws11{word-spacing:-1.949333pt;}
.ws92{word-spacing:-1.904000pt;}
.wsd4{word-spacing:-1.866667pt;}
.ws3d{word-spacing:-1.858667pt;}
.ws38{word-spacing:-1.813333pt;}
.ws7{word-spacing:-1.768000pt;}
.wsbe{word-spacing:-1.722667pt;}
.ws5{word-spacing:-1.677333pt;}
.ws57{word-spacing:-1.632000pt;}
.ws7b{word-spacing:-1.586667pt;}
.wsc2{word-spacing:-1.541333pt;}
.ws80{word-spacing:-1.496000pt;}
.ws12{word-spacing:-1.450667pt;}
.ws13{word-spacing:-1.405333pt;}
.ws14{word-spacing:-1.360000pt;}
.ws4c{word-spacing:-1.343774pt;}
.wsb0{word-spacing:-1.314667pt;}
.ws46{word-spacing:-1.269333pt;}
.ws72{word-spacing:-1.224000pt;}
.ws47{word-spacing:-1.178667pt;}
.ws60{word-spacing:-1.133333pt;}
.wsb2{word-spacing:-1.088000pt;}
.wsd{word-spacing:-1.061690pt;}
.ws3a{word-spacing:-1.042667pt;}
.ws4d{word-spacing:-0.997333pt;}
.ws39{word-spacing:-0.952000pt;}
.wscc{word-spacing:-0.906667pt;}
.wsf5{word-spacing:-0.906656pt;}
.ws18{word-spacing:-0.725333pt;}
.ws6a{word-spacing:-0.634667pt;}
.wsc0{word-spacing:-0.589333pt;}
.ws2e{word-spacing:-0.582517pt;}
.ws49{word-spacing:-0.553391pt;}
.ws6{word-spacing:-0.498667pt;}
.ws9e{word-spacing:-0.453333pt;}
.ws37{word-spacing:-0.408000pt;}
.ws4b{word-spacing:-0.400273pt;}
.ws90{word-spacing:-0.362667pt;}
.ws6f{word-spacing:-0.317333pt;}
.ws6c{word-spacing:-0.226667pt;}
.ws55{word-spacing:-0.181333pt;}
.ws10{word-spacing:-0.139696pt;}
.ws1f{word-spacing:-0.136000pt;}
.ws91{word-spacing:-0.090667pt;}
.ws83{word-spacing:-0.050690pt;}
.ws98{word-spacing:-0.045333pt;}
.ws88{word-spacing:-0.032948pt;}
.ws0{word-spacing:0.000000pt;}
.ws95{word-spacing:0.045333pt;}
.ws77{word-spacing:0.090667pt;}
.wsa0{word-spacing:0.105717pt;}
.ws1b{word-spacing:0.181333pt;}
.ws2b{word-spacing:0.226667pt;}
.ws26{word-spacing:0.272000pt;}
.ws28{word-spacing:0.317333pt;}
.ws24{word-spacing:0.362667pt;}
.wsd2{word-spacing:0.373333pt;}
.ws78{word-spacing:0.408000pt;}
.ws69{word-spacing:0.453333pt;}
.ws4a{word-spacing:0.457455pt;}
.wsd3{word-spacing:0.485333pt;}
.ws3c{word-spacing:0.498667pt;}
.wsf4{word-spacing:0.522667pt;}
.ws5e{word-spacing:0.544000pt;}
.wsac{word-spacing:0.589333pt;}
.ws1e{word-spacing:0.634667pt;}
.ws29{word-spacing:0.680000pt;}
.ws19{word-spacing:0.725333pt;}
.ws3e{word-spacing:0.770667pt;}
.ws79{word-spacing:0.816000pt;}
.ws76{word-spacing:0.861333pt;}
.ws94{word-spacing:0.906667pt;}
.ws8a{word-spacing:0.912422pt;}
.wsae{word-spacing:0.997333pt;}
.ws8f{word-spacing:1.042667pt;}
.wsc6{word-spacing:1.088000pt;}
.ws1c{word-spacing:1.133333pt;}
.ws8d{word-spacing:1.178667pt;}
.ws65{word-spacing:1.224000pt;}
.wsb3{word-spacing:1.314667pt;}
.ws44{word-spacing:1.360000pt;}
.ws3b{word-spacing:1.405333pt;}
.ws6d{word-spacing:1.450667pt;}
.ws2a{word-spacing:1.496000pt;}
.ws56{word-spacing:1.541333pt;}
.ws7c{word-spacing:1.677333pt;}
.ws23{word-spacing:1.722667pt;}
.wsa2{word-spacing:1.768000pt;}
.wsca{word-spacing:1.949333pt;}
.ws5c{word-spacing:1.994667pt;}
.ws15{word-spacing:2.085333pt;}
.ws50{word-spacing:2.130667pt;}
.ws45{word-spacing:2.176000pt;}
.ws7a{word-spacing:2.221333pt;}
.ws68{word-spacing:2.266667pt;}
.ws96{word-spacing:2.312000pt;}
.ws93{word-spacing:2.357333pt;}
.wsb1{word-spacing:2.402667pt;}
.ws5d{word-spacing:2.448000pt;}
.ws22{word-spacing:2.493333pt;}
.ws48{word-spacing:2.538667pt;}
.ws20{word-spacing:2.674667pt;}
.ws9d{word-spacing:2.720000pt;}
.ws41{word-spacing:2.765333pt;}
.ws42{word-spacing:2.810667pt;}
.ws66{word-spacing:2.856000pt;}
.ws25{word-spacing:2.901333pt;}
.ws62{word-spacing:2.946667pt;}
.wsc8{word-spacing:2.992000pt;}
.ws2c{word-spacing:3.037333pt;}
.ws5a{word-spacing:3.082667pt;}
.wsaf{word-spacing:3.128000pt;}
.ws59{word-spacing:3.173333pt;}
.ws8{word-spacing:3.264000pt;}
.ws64{word-spacing:3.309333pt;}
.ws9c{word-spacing:3.354667pt;}
.ws73{word-spacing:3.445333pt;}
.ws9{word-spacing:3.490667pt;}
.ws63{word-spacing:3.581333pt;}
.ws74{word-spacing:3.626667pt;}
.ws6e{word-spacing:3.672000pt;}
.ws7f{word-spacing:3.717333pt;}
.wscd{word-spacing:3.808000pt;}
.ws53{word-spacing:3.944000pt;}
.wsad{word-spacing:3.989333pt;}
.ws1a{word-spacing:4.080000pt;}
.ws71{word-spacing:4.170667pt;}
.ws40{word-spacing:4.216000pt;}
.ws5f{word-spacing:4.352000pt;}
.ws67{word-spacing:4.397333pt;}
.ws5b{word-spacing:4.442667pt;}
.ws17{word-spacing:4.488000pt;}
.ws8c{word-spacing:4.624000pt;}
.ws7e{word-spacing:4.669333pt;}
.ws51{word-spacing:4.896000pt;}
.ws43{word-spacing:4.941333pt;}
.ws27{word-spacing:5.032000pt;}
.wsc1{word-spacing:5.168000pt;}
.wsc3{word-spacing:5.349333pt;}
.ws8e{word-spacing:5.394667pt;}
.ws9a{word-spacing:5.436464pt;}
.ws99{word-spacing:5.469412pt;}
.ws9b{word-spacing:5.502361pt;}
.ws54{word-spacing:5.530667pt;}
.ws16{word-spacing:5.576000pt;}
.ws6b{word-spacing:5.621333pt;}
.wsa1{word-spacing:5.757333pt;}
.wsc9{word-spacing:5.848000pt;}
.ws75{word-spacing:5.893333pt;}
.ws58{word-spacing:6.210667pt;}
.wsbf{word-spacing:6.301333pt;}
.ws1d{word-spacing:6.437333pt;}
.ws81{word-spacing:6.482667pt;}
.ws4f{word-spacing:7.570667pt;}
.wsc5{word-spacing:8.205333pt;}
.ws9f{word-spacing:8.432000pt;}
.wsc7{word-spacing:8.658667pt;}
.ws4{word-spacing:8.794667pt;}
.ws4e{word-spacing:9.293333pt;}
.ws52{word-spacing:10.245333pt;}
.wsb6{word-spacing:10.744000pt;}
.wsb5{word-spacing:11.016000pt;}
.wsb4{word-spacing:12.421333pt;}
.ws84{word-spacing:13.990477pt;}
.wsf{word-spacing:80.945211pt;}
.wsb{word-spacing:80.974780pt;}
.wsc{word-spacing:81.030251pt;}
.wse{word-spacing:81.039218pt;}
.ws35{word-spacing:82.941458pt;}
.ws36{word-spacing:84.744162pt;}
.ws34{word-spacing:84.747576pt;}
.ws33{word-spacing:84.887970pt;}
.ws30{word-spacing:85.165969pt;}
.ws2f{word-spacing:86.067566pt;}
.ws32{word-spacing:86.077564pt;}
.ws31{word-spacing:86.144047pt;}
.wsaa{word-spacing:170.993088pt;}
.wsf2{word-spacing:172.560000pt;}
.wsf1{word-spacing:184.040000pt;}
.wsab{word-spacing:187.726824pt;}
.wsf3{word-spacing:242.724000pt;}
.wsbc{word-spacing:250.800000pt;}
.wsb7{word-spacing:266.880000pt;}
.wsb9{word-spacing:270.320000pt;}
.wsbd{word-spacing:319.080000pt;}
.wsba{word-spacing:322.520000pt;}
.wsbb{word-spacing:330.560000pt;}
.wsa4{word-spacing:470.560000pt;}
.wsa7{word-spacing:579.320000pt;}
.wsa6{word-spacing:590.800000pt;}
.wsa5{word-spacing:602.280000pt;}
.wsa3{word-spacing:715.904000pt;}
.wsb8{word-spacing:1043.760000pt;}
._6{margin-left:-14.041167pt;}
._b{margin-left:-10.744000pt;}
._2f{margin-left:-9.333333pt;}
._3{margin-left:-5.130667pt;}
._a{margin-left:-4.170667pt;}
._7{margin-left:-2.897867pt;}
._1{margin-left:-1.866667pt;}
._0{margin-left:-0.896000pt;}
._2{width:1.594667pt;}
._30{width:2.538667pt;}
._5{width:3.490667pt;}
._8{width:4.703176pt;}
._9{width:7.773077pt;}
._31{width:69.495182pt;}
._4{width:82.898402pt;}
._1b{width:139.000000pt;}
._32{width:154.120000pt;}
._13{width:164.400000pt;}
._16{width:175.880000pt;}
._33{width:179.157333pt;}
._15{width:184.446107pt;}
._1d{width:185.823200pt;}
._21{width:188.722667pt;}
._18{width:191.896000pt;}
._40{width:193.285333pt;}
._10{width:194.793893pt;}
._22{width:203.365333pt;}
._3d{width:206.280000pt;}
._17{width:207.406107pt;}
._27{width:233.000000pt;}
._3e{width:238.106667pt;}
._28{width:241.400000pt;}
._39{width:242.760000pt;}
._38{width:243.960000pt;}
._3b{width:249.680000pt;}
._2b{width:257.000000pt;}
._20{width:261.709333pt;}
._2c{width:265.360000pt;}
._3a{width:273.937867pt;}
._3c{width:281.440000pt;}
._12{width:283.560000pt;}
._37{width:292.720000pt;}
._14{width:303.080000pt;}
._41{width:318.276000pt;}
._34{width:324.800000pt;}
._3f{width:342.680000pt;}
._36{width:345.280000pt;}
._24{width:356.080000pt;}
._1f{width:392.224000pt;}
._35{width:406.280000pt;}
._26{width:418.680000pt;}
._11{width:441.680000pt;}
._2a{width:466.640000pt;}
._43{width:469.720000pt;}
._42{width:530.720000pt;}
._1a{width:563.826667pt;}
._1e{width:701.442667pt;}
._e{width:731.000000pt;}
._c{width:753.400000pt;}
._d{width:754.600000pt;}
._f{width:778.960000pt;}
._29{width:856.360000pt;}
._1c{width:869.280000pt;}
._25{width:879.960000pt;}
._2e{width:904.320000pt;}
._23{width:908.040000pt;}
._19{width:1072.360000pt;}
._2d{width:1264.640000pt;}
.fs12{font-size:21.765333pt;}
.fs11{font-size:23.320000pt;}
.fsa{font-size:26.429333pt;}
.fsb{font-size:27.939200pt;}
.fs6{font-size:27.984000pt;}
.fsd{font-size:28.590933pt;}
.fsc{font-size:29.125867pt;}
.fsf{font-size:32.948267pt;}
.fs9{font-size:34.666667pt;}
.fs13{font-size:36.586667pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs14{font-size:45.332800pt;}
.fs7{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fse{font-size:50.690133pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y179{bottom:-0.015067pt;}
.y0{bottom:0.000000pt;}
.y16b{bottom:0.010267pt;}
.y11b{bottom:0.039867pt;}
.y11f{bottom:0.173200pt;}
.y14a{bottom:0.174533pt;}
.y153{bottom:0.564436pt;}
.y155{bottom:0.565200pt;}
.y8c{bottom:1.486933pt;}
.y89{bottom:1.488533pt;}
.y1a1{bottom:1.862533pt;}
.y1a5{bottom:1.862667pt;}
.y1ae{bottom:1.863867pt;}
.y1b2{bottom:1.864000pt;}
.y172{bottom:1.952000pt;}
.y142{bottom:1.979867pt;}
.y140{bottom:1.982685pt;}
.y8e{bottom:2.270800pt;}
.y124{bottom:2.306400pt;}
.yd0{bottom:2.322667pt;}
.yc2{bottom:2.365333pt;}
.y143{bottom:2.832000pt;}
.y138{bottom:2.973067pt;}
.y132{bottom:4.039600pt;}
.y150{bottom:4.573067pt;}
.y1e7{bottom:5.506400pt;}
.y16f{bottom:5.959733pt;}
.y13d{bottom:6.839733pt;}
.y16c{bottom:10.126000pt;}
.y86{bottom:11.612133pt;}
.yc7{bottom:11.952000pt;}
.y1a7{bottom:11.978400pt;}
.y1b4{bottom:11.979733pt;}
.yaf{bottom:12.032000pt;}
.y152{bottom:13.404667pt;}
.y13f{bottom:13.415733pt;}
.y175{bottom:14.121200pt;}
.y17b{bottom:14.121333pt;}
.y167{bottom:14.146400pt;}
.y154{bottom:14.701067pt;}
.y19d{bottom:15.986400pt;}
.y1aa{bottom:15.987733pt;}
.yb1{bottom:29.250667pt;}
.y177{bottom:30.333200pt;}
.y169{bottom:30.334400pt;}
.y19f{bottom:32.186400pt;}
.y1a3{bottom:32.186667pt;}
.y1ac{bottom:32.187733pt;}
.y1b0{bottom:32.188000pt;}
.y5d{bottom:37.356933pt;}
.y87{bottom:41.437067pt;}
.yb3{bottom:46.771733pt;}
.y5{bottom:59.133337pt;}
.yb5{bottom:63.990533pt;}
.yc6{bottom:66.266667pt;}
.y259{bottom:68.137067pt;}
.y1ed{bottom:68.421067pt;}
.y5c{bottom:69.365067pt;}
.y216{bottom:71.093067pt;}
.y2e6{bottom:77.693067pt;}
.yc8{bottom:78.218667pt;}
.y5b{bottom:80.701067pt;}
.yb7{bottom:81.511333pt;}
.y258{bottom:84.139733pt;}
.y1ec{bottom:84.423733pt;}
.y4{bottom:86.333337pt;}
.y29f{bottom:86.629067pt;}
.y215{bottom:87.095733pt;}
.y2e5{bottom:89.695733pt;}
.y29e{bottom:98.631733pt;}
.yb9{bottom:99.033467pt;}
.y102{bottom:99.591733pt;}
.y164{bottom:99.717067pt;}
.yc9{bottom:100.026667pt;}
.y257{bottom:100.142400pt;}
.y117{bottom:100.195733pt;}
.y1eb{bottom:100.426400pt;}
.y8a{bottom:101.395333pt;}
.y2e4{bottom:101.698400pt;}
.y214{bottom:103.098400pt;}
.y85{bottom:106.266667pt;}
.y363{bottom:109.494354pt;}
.y29d{bottom:110.634400pt;}
.y2e3{bottom:113.701067pt;}
.y101{bottom:115.594400pt;}
.y163{bottom:115.719733pt;}
.y256{bottom:116.145067pt;}
.y116{bottom:116.198400pt;}
.ybb{bottom:116.250933pt;}
.y1ea{bottom:116.429067pt;}
.y213{bottom:119.058400pt;}
.y57{bottom:120.741467pt;}
.yca{bottom:121.836400pt;}
.y29c{bottom:122.637067pt;}
.y21{bottom:123.790666pt;}
.y2e2{bottom:125.703733pt;}
.y362{bottom:127.944803pt;}
.y100{bottom:131.597067pt;}
.y162{bottom:131.722400pt;}
.y255{bottom:132.147733pt;}
.y115{bottom:132.201067pt;}
.y1e9{bottom:132.431733pt;}
.ybd{bottom:133.469733pt;}
.y29b{bottom:134.639733pt;}
.y56{bottom:134.736133pt;}
.y212{bottom:135.061067pt;}
.y2e1{bottom:137.706400pt;}
.y1e6{bottom:142.938667pt;}
.ycb{bottom:143.926133pt;}
.y361{bottom:146.395253pt;}
.y29a{bottom:146.642400pt;}
.yff{bottom:147.599733pt;}
.y161{bottom:147.725067pt;}
.y254{bottom:148.150400pt;}
.y114{bottom:148.203733pt;}
.y19a{bottom:148.214400pt;}
.y1e5{bottom:148.375733pt;}
.y1e8{bottom:148.434400pt;}
.y55{bottom:148.730800pt;}
.y2e0{bottom:149.709067pt;}
.ybf{bottom:150.989333pt;}
.y211{bottom:151.063733pt;}
.y299{bottom:158.645067pt;}
.y8d{bottom:161.349733pt;}
.y2df{bottom:161.711733pt;}
.y54{bottom:162.725467pt;}
.yfe{bottom:163.602400pt;}
.y160{bottom:163.725067pt;}
.y253{bottom:164.153067pt;}
.y113{bottom:164.206400pt;}
.y199{bottom:164.217067pt;}
.y1e4{bottom:164.378400pt;}
.y360{bottom:164.845702pt;}
.ycf{bottom:165.173867pt;}
.ycc{bottom:165.734800pt;}
.y210{bottom:167.066400pt;}
.yc1{bottom:168.209333pt;}
.y298{bottom:170.647733pt;}
.y2de{bottom:173.714400pt;}
.y18{bottom:175.052000pt;}
.y88{bottom:176.345333pt;}
.y53{bottom:176.720133pt;}
.yfd{bottom:179.605067pt;}
.y252{bottom:180.155733pt;}
.y112{bottom:180.209067pt;}
.y198{bottom:180.219733pt;}
.y1e3{bottom:180.381067pt;}
.y297{bottom:182.650400pt;}
.y20f{bottom:183.069067pt;}
.y35f{bottom:183.296152pt;}
.y2dd{bottom:185.717067pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.ycd{bottom:187.826000pt;}
.y52{bottom:190.714800pt;}
.yc5{bottom:192.192667pt;}
.y296{bottom:194.653067pt;}
.yfc{bottom:195.607733pt;}
.y15f{bottom:195.717067pt;}
.y251{bottom:196.158400pt;}
.y111{bottom:196.211733pt;}
.y197{bottom:196.222400pt;}
.y1e2{bottom:196.383733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y2dc{bottom:197.719733pt;}
.y20e{bottom:199.071733pt;}
.y35e{bottom:201.746602pt;}
.y51{bottom:204.709467pt;}
.y295{bottom:206.655733pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yce{bottom:209.633200pt;}
.y320{bottom:209.717067pt;}
.y2db{bottom:209.722400pt;}
.yfb{bottom:211.610400pt;}
.y15e{bottom:211.719733pt;}
.y250{bottom:212.161067pt;}
.y110{bottom:212.214400pt;}
.y196{bottom:212.225067pt;}
.y1e1{bottom:212.386400pt;}
.yc4{bottom:214.266667pt;}
.y294{bottom:218.658400pt;}
.y50{bottom:218.704133pt;}
.y35d{bottom:220.197051pt;}
.y31f{bottom:221.719733pt;}
.y2da{bottom:221.725067pt;}
.yfa{bottom:227.613067pt;}
.y15d{bottom:227.722400pt;}
.y24f{bottom:228.163733pt;}
.y10f{bottom:228.217067pt;}
.y195{bottom:228.225067pt;}
.y1e0{bottom:228.389067pt;}
.y84{bottom:228.581333pt;}
.yc3{bottom:228.933333pt;}
.y293{bottom:230.661067pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y20d{bottom:231.077067pt;}
.y4f{bottom:232.698800pt;}
.y34e{bottom:233.605067pt;}
.y2d9{bottom:233.709067pt;}
.y31e{bottom:233.722400pt;}
.y8b{bottom:236.301333pt;}
.y35c{bottom:238.647501pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y292{bottom:242.663733pt;}
.yf9{bottom:243.615733pt;}
.y15b{bottom:243.686667pt;}
.y15a{bottom:243.722400pt;}
.y15c{bottom:243.725067pt;}
.y10e{bottom:244.219733pt;}
.y1df{bottom:244.391733pt;}
.y34d{bottom:245.607733pt;}
.y2d8{bottom:245.711733pt;}
.y31d{bottom:245.725067pt;}
.y4e{bottom:246.693467pt;}
.y20c{bottom:247.079733pt;}
.y83{bottom:251.296000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y291{bottom:254.666400pt;}
.y35b{bottom:257.097950pt;}
.y34c{bottom:257.610400pt;}
.y2d7{bottom:257.714400pt;}
.y31c{bottom:257.719733pt;}
.yf8{bottom:259.618400pt;}
.y159{bottom:259.718400pt;}
.y24e{bottom:260.169067pt;}
.y194{bottom:260.219733pt;}
.y10d{bottom:260.222400pt;}
.y1de{bottom:260.394400pt;}
.y4d{bottom:260.688133pt;}
.y20b{bottom:263.082400pt;}
.y82{bottom:265.962667pt;}
.y290{bottom:266.669067pt;}
.yae{bottom:268.933333pt;}
.y34b{bottom:269.613067pt;}
.y2d6{bottom:269.717067pt;}
.y31b{bottom:269.722400pt;}
.y4c{bottom:274.682800pt;}
.y35a{bottom:275.548400pt;}
.yf7{bottom:275.621067pt;}
.y158{bottom:275.721067pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y24d{bottom:276.171733pt;}
.y193{bottom:276.222400pt;}
.y10c{bottom:276.225067pt;}
.y28f{bottom:278.671733pt;}
.y20a{bottom:279.085067pt;}
.yb0{bottom:280.965333pt;}
.y34a{bottom:281.615733pt;}
.y2d5{bottom:281.719733pt;}
.y31a{bottom:281.725067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y4b{bottom:288.677467pt;}
.y28e{bottom:290.674400pt;}
.yf6{bottom:291.623733pt;}
.y24c{bottom:292.174400pt;}
.y192{bottom:292.219733pt;}
.y10b{bottom:292.221067pt;}
.y1dd{bottom:292.399733pt;}
.y349{bottom:293.618400pt;}
.y319{bottom:293.717067pt;}
.y2d4{bottom:293.722400pt;}
.y359{bottom:293.995067pt;}
.y209{bottom:295.087733pt;}
.y14f{bottom:295.141333pt;}
.y157{bottom:295.693333pt;}
.yb2{bottom:298.184000pt;}
.y151{bottom:299.714400pt;}
.y156{bottom:299.725067pt;}
.y4a{bottom:302.672133pt;}
.y28d{bottom:302.677067pt;}
.y348{bottom:305.621067pt;}
.y318{bottom:305.719733pt;}
.y2d3{bottom:305.725067pt;}
.yf5{bottom:307.626400pt;}
.y24b{bottom:308.177067pt;}
.y81{bottom:308.208400pt;}
.y191{bottom:308.222400pt;}
.y1dc{bottom:308.402400pt;}
.yf{bottom:309.452000pt;}
.y208{bottom:311.090400pt;}
.y28c{bottom:314.679733pt;}
.yb4{bottom:315.705067pt;}
.y49{bottom:316.666800pt;}
.y347{bottom:317.623733pt;}
.y2d2{bottom:317.690400pt;}
.y317{bottom:317.722400pt;}
.y14e{bottom:318.383733pt;}
.yf4{bottom:323.629067pt;}
.y24a{bottom:324.179733pt;}
.y80{bottom:324.211067pt;}
.y190{bottom:324.222400pt;}
.y10a{bottom:324.225067pt;}
.y1db{bottom:324.405067pt;}
.y28b{bottom:326.682400pt;}
.y207{bottom:327.093067pt;}
.y358{bottom:328.331600pt;}
.y346{bottom:329.626400pt;}
.y2d1{bottom:329.693067pt;}
.y316{bottom:329.725067pt;}
.y48{bottom:330.661467pt;}
.yb6{bottom:332.923867pt;}
.y14d{bottom:334.386400pt;}
.y28a{bottom:338.685067pt;}
.yf3{bottom:339.631733pt;}
.y249{bottom:340.182400pt;}
.y7f{bottom:340.213733pt;}
.y18f{bottom:340.222400pt;}
.y1da{bottom:340.407733pt;}
.y345{bottom:341.629067pt;}
.y315{bottom:341.693067pt;}
.y2d0{bottom:341.695733pt;}
.y357{bottom:342.994267pt;}
.y206{bottom:343.095733pt;}
.ye{bottom:343.809333pt;}
.y47{bottom:347.861467pt;}
.y14c{bottom:350.389067pt;}
.yb8{bottom:350.444667pt;}
.y289{bottom:350.687733pt;}
.y344{bottom:353.631733pt;}
.y314{bottom:353.695733pt;}
.y2cf{bottom:353.698400pt;}
.y356{bottom:354.996933pt;}
.yf2{bottom:355.634400pt;}
.y109{bottom:356.131733pt;}
.y248{bottom:356.185067pt;}
.y7e{bottom:356.216400pt;}
.y18e{bottom:356.222400pt;}
.y1d9{bottom:356.410400pt;}
.y205{bottom:359.098400pt;}
.y288{bottom:362.690400pt;}
.yd{bottom:362.706666pt;}
.y343{bottom:365.634400pt;}
.y313{bottom:365.698400pt;}
.y2ce{bottom:365.701067pt;}
.y149{bottom:366.222667pt;}
.y148{bottom:366.389067pt;}
.y14b{bottom:366.391733pt;}
.y355{bottom:366.999600pt;}
.yba{bottom:367.966800pt;}
.yf1{bottom:371.637067pt;}
.y108{bottom:372.134400pt;}
.y247{bottom:372.187733pt;}
.y7d{bottom:372.219067pt;}
.y18d{bottom:372.222400pt;}
.y1d8{bottom:372.413067pt;}
.y287{bottom:374.693067pt;}
.y204{bottom:375.095733pt;}
.y342{bottom:377.637067pt;}
.y312{bottom:377.701067pt;}
.y2cd{bottom:377.703733pt;}
.y354{bottom:379.002267pt;}
.y146{bottom:380.088000pt;}
.y145{bottom:382.389067pt;}
.y147{bottom:382.391733pt;}
.ybc{bottom:385.184267pt;}
.y286{bottom:386.695733pt;}
.yf0{bottom:387.639733pt;}
.y246{bottom:388.190400pt;}
.y7c{bottom:388.221733pt;}
.y18c{bottom:388.222400pt;}
.y1d7{bottom:388.415733pt;}
.y341{bottom:389.639733pt;}
.y311{bottom:389.703733pt;}
.y2cc{bottom:389.706400pt;}
.y203{bottom:391.098400pt;}
.y353{bottom:394.784933pt;}
.yad{bottom:398.120400pt;}
.y144{bottom:398.392400pt;}
.y285{bottom:398.698400pt;}
.y340{bottom:401.642400pt;}
.y310{bottom:401.706400pt;}
.y2cb{bottom:401.709067pt;}
.ybe{bottom:402.403067pt;}
.yef{bottom:403.642400pt;}
.y107{bottom:404.139733pt;}
.y245{bottom:404.193067pt;}
.y7b{bottom:404.221733pt;}
.y18b{bottom:404.222400pt;}
.y1d6{bottom:404.418400pt;}
.y352{bottom:406.787600pt;}
.y202{bottom:407.101067pt;}
.y13c{bottom:410.218667pt;}
.y284{bottom:410.701067pt;}
.y141{bottom:412.198533pt;}
.y33f{bottom:413.645067pt;}
.y30f{bottom:413.709067pt;}
.y2ca{bottom:413.711733pt;}
.y3d{bottom:414.020800pt;}
.y13b{bottom:417.045733pt;}
.y13e{bottom:417.058400pt;}
.y351{bottom:418.790267pt;}
.yc0{bottom:419.922667pt;}
.y106{bottom:420.142400pt;}
.y244{bottom:420.195733pt;}
.y18a{bottom:420.219733pt;}
.y7a{bottom:420.224400pt;}
.y1d5{bottom:420.421067pt;}
.yac{bottom:420.835067pt;}
.y283{bottom:422.703733pt;}
.y33e{bottom:425.647733pt;}
.y30e{bottom:425.711733pt;}
.y2c9{bottom:425.714400pt;}
.y3c{bottom:430.023467pt;}
.y350{bottom:430.792933pt;}
.y282{bottom:434.706400pt;}
.yab{bottom:435.501733pt;}
.yee{bottom:435.647733pt;}
.y105{bottom:436.145067pt;}
.y189{bottom:436.222400pt;}
.y79{bottom:436.224400pt;}
.y33d{bottom:437.650400pt;}
.y30d{bottom:437.714400pt;}
.y2c8{bottom:437.717067pt;}
.y174{bottom:441.990667pt;}
.y3b{bottom:446.026133pt;}
.y34f{bottom:446.575600pt;}
.y281{bottom:446.709067pt;}
.yc{bottom:446.990669pt;}
.y218{bottom:447.843733pt;}
.y33c{bottom:449.653067pt;}
.y30c{bottom:449.717067pt;}
.y2c7{bottom:449.719733pt;}
.yed{bottom:451.650400pt;}
.y104{bottom:452.147733pt;}
.y243{bottom:452.201067pt;}
.y188{bottom:452.222400pt;}
.y1d4{bottom:452.426400pt;}
.y173{bottom:455.875067pt;}
.y176{bottom:456.111867pt;}
.y17a{bottom:456.112000pt;}
.y280{bottom:458.711733pt;}
.y33b{bottom:461.655733pt;}
.y30b{bottom:461.719733pt;}
.y2c6{bottom:461.722400pt;}
.y3a{bottom:462.028800pt;}
.yb{bottom:462.990669pt;}
.y225{bottom:465.120400pt;}
.yec{bottom:467.653067pt;}
.y178{bottom:467.667600pt;}
.y13a{bottom:467.717067pt;}
.yaa{bottom:468.150400pt;}
.y78{bottom:468.197733pt;}
.y242{bottom:468.203733pt;}
.y187{bottom:468.222400pt;}
.y1d3{bottom:468.429067pt;}
.y27f{bottom:470.714400pt;}
.y33a{bottom:473.658400pt;}
.y30a{bottom:473.722400pt;}
.y2c5{bottom:473.725067pt;}
.y39{bottom:478.031467pt;}
.ya{bottom:478.990666pt;}
.y27e{bottom:482.717067pt;}
.y224{bottom:483.290400pt;}
.yeb{bottom:483.655733pt;}
.ya9{bottom:484.153067pt;}
.y77{bottom:484.200400pt;}
.y241{bottom:484.206400pt;}
.y186{bottom:484.222400pt;}
.y1d2{bottom:484.431733pt;}
.y339{bottom:485.661067pt;}
.y2c4{bottom:485.706400pt;}
.y309{bottom:485.725067pt;}
.y38{bottom:494.034133pt;}
.y27d{bottom:494.719733pt;}
.y9{bottom:494.990666pt;}
.y184{bottom:496.193333pt;}
.y338{bottom:497.663733pt;}
.y308{bottom:497.706400pt;}
.y2c3{bottom:497.709067pt;}
.yea{bottom:499.658400pt;}
.y139{bottom:499.722400pt;}
.ya8{bottom:500.155733pt;}
.y76{bottom:500.203067pt;}
.y240{bottom:500.209067pt;}
.y185{bottom:500.225067pt;}
.y1d1{bottom:500.434400pt;}
.y223{bottom:501.460400pt;}
.y27c{bottom:506.722400pt;}
.y337{bottom:509.666400pt;}
.y307{bottom:509.709067pt;}
.y2c2{bottom:509.711733pt;}
.y37{bottom:510.036800pt;}
.y135{bottom:511.693333pt;}
.y137{bottom:512.749333pt;}
.ye9{bottom:515.661067pt;}
.y134{bottom:515.722400pt;}
.y136{bottom:515.725067pt;}
.ya7{bottom:516.158400pt;}
.y183{bottom:516.192400pt;}
.y75{bottom:516.205733pt;}
.y23f{bottom:516.211733pt;}
.y27b{bottom:518.711733pt;}
.y222{bottom:519.630400pt;}
.y336{bottom:521.669067pt;}
.y306{bottom:521.711733pt;}
.y2c1{bottom:521.714400pt;}
.y36{bottom:526.035333pt;}
.y131{bottom:527.693333pt;}
.y27a{bottom:530.714400pt;}
.ye8{bottom:531.663733pt;}
.y130{bottom:531.703733pt;}
.y133{bottom:531.725067pt;}
.ya6{bottom:532.161067pt;}
.y182{bottom:532.195067pt;}
.y23e{bottom:532.214400pt;}
.y335{bottom:533.671733pt;}
.y305{bottom:533.714400pt;}
.y2c0{bottom:533.717067pt;}
.y221{bottom:537.800400pt;}
.y1f7{bottom:541.177067pt;}
.y279{bottom:542.717067pt;}
.y334{bottom:545.674400pt;}
.y304{bottom:545.717067pt;}
.y2bf{bottom:545.719733pt;}
.ye7{bottom:547.666400pt;}
.ya5{bottom:548.163733pt;}
.y74{bottom:548.211067pt;}
.y23d{bottom:548.217067pt;}
.y16e{bottom:551.258667pt;}
.y171{bottom:553.210667pt;}
.y1cb{bottom:553.558667pt;}
.y16d{bottom:554.541733pt;}
.y278{bottom:554.719733pt;}
.y220{bottom:555.970400pt;}
.y170{bottom:557.218400pt;}
.y333{bottom:557.677067pt;}
.y303{bottom:557.719733pt;}
.y2be{bottom:557.722400pt;}
.y35{bottom:558.039333pt;}
.y201{bottom:558.450400pt;}
.y276{bottom:563.614400pt;}
.ye6{bottom:563.669067pt;}
.y12f{bottom:563.709067pt;}
.ya4{bottom:564.166400pt;}
.y73{bottom:564.213733pt;}
.y23c{bottom:564.219733pt;}
.y275{bottom:566.709200pt;}
.y277{bottom:566.722400pt;}
.y1ca{bottom:568.375067pt;}
.y1cc{bottom:569.545067pt;}
.y1ce{bottom:569.545200pt;}
.y1d0{bottom:569.545467pt;}
.y332{bottom:569.679733pt;}
.y302{bottom:569.722400pt;}
.y2bd{bottom:569.725067pt;}
.y8{bottom:573.786667pt;}
.y21f{bottom:574.140400pt;}
.y200{bottom:576.620400pt;}
.y274{bottom:578.711867pt;}
.ye5{bottom:579.671733pt;}
.y12e{bottom:579.711733pt;}
.ya3{bottom:580.169067pt;}
.y181{bottom:580.191733pt;}
.y72{bottom:580.216400pt;}
.y23b{bottom:580.222400pt;}
.y1cd{bottom:581.100933pt;}
.y1cf{bottom:581.101067pt;}
.y2bc{bottom:581.557067pt;}
.y331{bottom:581.682400pt;}
.y301{bottom:581.725067pt;}
.y34{bottom:585.375333pt;}
.y273{bottom:590.714533pt;}
.y21c{bottom:592.307067pt;}
.y21e{bottom:592.310400pt;}
.y7{bottom:592.685334pt;}
.y2bb{bottom:593.559733pt;}
.y330{bottom:593.685067pt;}
.y300{bottom:593.717067pt;}
.y1ff{bottom:594.790400pt;}
.y21d{bottom:595.640400pt;}
.ye4{bottom:595.674400pt;}
.y12d{bottom:595.714400pt;}
.ya2{bottom:596.171733pt;}
.y71{bottom:596.219067pt;}
.y23a{bottom:596.225067pt;}
.y1c4{bottom:598.890667pt;}
.y272{bottom:602.717200pt;}
.y2ba{bottom:605.562400pt;}
.y32f{bottom:605.687733pt;}
.y2ff{bottom:605.719733pt;}
.y21a{bottom:610.477067pt;}
.ye3{bottom:611.677067pt;}
.y12c{bottom:611.717067pt;}
.ya1{bottom:612.174400pt;}
.y180{bottom:612.197067pt;}
.y70{bottom:612.221733pt;}
.y239{bottom:612.225067pt;}
.y33{bottom:612.714000pt;}
.y1fe{bottom:612.960400pt;}
.y1c3{bottom:613.708400pt;}
.y21b{bottom:613.807067pt;}
.y271{bottom:614.719867pt;}
.y1c5{bottom:614.878400pt;}
.y1c7{bottom:614.878533pt;}
.y1c9{bottom:614.878800pt;}
.y2b9{bottom:617.565067pt;}
.y32e{bottom:617.690400pt;}
.y2fe{bottom:617.722400pt;}
.y1c6{bottom:626.434267pt;}
.y1c8{bottom:626.434400pt;}
.y270{bottom:626.722533pt;}
.y12b{bottom:627.719733pt;}
.y6f{bottom:628.176400pt;}
.ya0{bottom:628.177067pt;}
.y219{bottom:628.643733pt;}
.y2b8{bottom:629.567733pt;}
.y32d{bottom:629.693067pt;}
.y2fd{bottom:629.725067pt;}
.y1fd{bottom:631.130400pt;}
.y32{bottom:631.380667pt;}
.y373{bottom:634.115200pt;}
.y46{bottom:634.286933pt;}
.y26f{bottom:638.703867pt;}
.y2b7{bottom:641.570400pt;}
.y32c{bottom:641.695733pt;}
.y2fc{bottom:641.709067pt;}
.ye2{bottom:643.682400pt;}
.y12a{bottom:643.722400pt;}
.y6e{bottom:644.179067pt;}
.y9f{bottom:644.179733pt;}
.y17f{bottom:644.202400pt;}
.y238{bottom:644.206400pt;}
.y6{bottom:645.598667pt;}
.y45{bottom:645.617600pt;}
.y217{bottom:648.225067pt;}
.y1fc{bottom:649.300400pt;}
.y31{bottom:650.047333pt;}
.y2b6{bottom:653.573067pt;}
.y32b{bottom:653.698400pt;}
.y2fb{bottom:653.711733pt;}
.y372{bottom:654.228533pt;}
.ye1{bottom:659.685067pt;}
.y129{bottom:659.725067pt;}
.y6d{bottom:660.181733pt;}
.y9e{bottom:660.182400pt;}
.y237{bottom:660.209067pt;}
.y26e{bottom:662.699867pt;}
.y1bd{bottom:665.558667pt;}
.y2b5{bottom:665.575733pt;}
.y32a{bottom:665.701067pt;}
.y2fa{bottom:665.714400pt;}
.y1fb{bottom:667.470400pt;}
.y44{bottom:668.288267pt;}
.y30{bottom:668.714000pt;}
.y3{bottom:668.977329pt;}
.y371{bottom:672.398533pt;}
.y26d{bottom:674.702533pt;}
.ye0{bottom:675.687733pt;}
.y128{bottom:675.725067pt;}
.y6c{bottom:676.184400pt;}
.y9d{bottom:676.185067pt;}
.y236{bottom:676.211733pt;}
.y2b4{bottom:677.578400pt;}
.y329{bottom:677.703733pt;}
.y2f9{bottom:677.717067pt;}
.y43{bottom:679.618933pt;}
.y1bc{bottom:680.375067pt;}
.y1be{bottom:681.545067pt;}
.y1c0{bottom:681.545200pt;}
.y1c2{bottom:681.545467pt;}
.y1fa{bottom:685.640400pt;}
.y26c{bottom:686.705200pt;}
.y2f{bottom:687.380667pt;}
.y2b3{bottom:689.581067pt;}
.y328{bottom:689.706400pt;}
.y2f8{bottom:689.719733pt;}
.y370{bottom:690.568533pt;}
.ydf{bottom:691.690400pt;}
.y6b{bottom:692.187067pt;}
.y9c{bottom:692.187733pt;}
.y17e{bottom:692.199067pt;}
.y235{bottom:692.214400pt;}
.y42{bottom:692.844267pt;}
.y1bf{bottom:693.100933pt;}
.y1c1{bottom:693.101067pt;}
.y227{bottom:694.843733pt;}
.y26b{bottom:698.707867pt;}
.y2b2{bottom:701.583733pt;}
.y327{bottom:701.709067pt;}
.y2f7{bottom:701.722400pt;}
.y1f9{bottom:703.810400pt;}
.y2e{bottom:706.047333pt;}
.yde{bottom:707.693067pt;}
.y127{bottom:707.719733pt;}
.y6a{bottom:708.189733pt;}
.y9b{bottom:708.190400pt;}
.y234{bottom:708.217067pt;}
.y36f{bottom:708.738533pt;}
.y26a{bottom:710.710533pt;}
.y1b6{bottom:710.892000pt;}
.y231{bottom:712.120400pt;}
.y2b1{bottom:713.586400pt;}
.y326{bottom:713.711733pt;}
.y2f6{bottom:713.725067pt;}
.y41{bottom:715.514933pt;}
.y1f8{bottom:721.977067pt;}
.y269{bottom:722.713200pt;}
.ydd{bottom:723.695733pt;}
.y126{bottom:723.722400pt;}
.y69{bottom:724.192400pt;}
.y9a{bottom:724.193067pt;}
.y17d{bottom:724.204400pt;}
.y233{bottom:724.219733pt;}
.y2d{bottom:724.714000pt;}
.y2b0{bottom:725.589067pt;}
.y2f5{bottom:725.682400pt;}
.y1b5{bottom:725.708400pt;}
.y325{bottom:725.714400pt;}
.y1b7{bottom:726.878400pt;}
.y1b9{bottom:726.878533pt;}
.y1bb{bottom:726.878800pt;}
.y36e{bottom:726.908533pt;}
.y40{bottom:728.740267pt;}
.y230{bottom:730.290400pt;}
.y268{bottom:734.715867pt;}
.y123{bottom:737.421333pt;}
.y2af{bottom:737.591733pt;}
.y2f4{bottom:737.685067pt;}
.y324{bottom:737.717067pt;}
.y1b8{bottom:738.434267pt;}
.y1ba{bottom:738.434400pt;}
.ydc{bottom:739.698400pt;}
.y122{bottom:739.722400pt;}
.y125{bottom:739.725067pt;}
.y3f{bottom:740.070933pt;}
.y99{bottom:740.195733pt;}
.y232{bottom:740.222400pt;}
.y1f6{bottom:741.559733pt;}
.y2c{bottom:743.380667pt;}
.y36d{bottom:745.078533pt;}
.y267{bottom:746.718533pt;}
.y22f{bottom:748.460400pt;}
.y2ae{bottom:749.594400pt;}
.y2f3{bottom:749.687733pt;}
.y323{bottom:749.719733pt;}
.y3e{bottom:751.401600pt;}
.ydb{bottom:755.701067pt;}
.y121{bottom:755.722400pt;}
.y68{bottom:756.197733pt;}
.y98{bottom:756.198400pt;}
.y17c{bottom:756.209733pt;}
.y1f5{bottom:756.225067pt;}
.y2ad{bottom:761.597067pt;}
.y2f2{bottom:761.690400pt;}
.y322{bottom:761.722400pt;}
.y2b{bottom:762.047333pt;}
.y36c{bottom:763.248533pt;}
.y22e{bottom:766.630400pt;}
.y266{bottom:770.714533pt;}
.y11e{bottom:771.557333pt;}
.yda{bottom:771.703733pt;}
.y11d{bottom:771.722400pt;}
.y120{bottom:771.725067pt;}
.y67{bottom:772.200400pt;}
.y97{bottom:772.201067pt;}
.y2ac{bottom:773.599733pt;}
.y2f1{bottom:773.693067pt;}
.y321{bottom:773.725067pt;}
.y5a{bottom:773.883733pt;}
.y1a9{bottom:777.557333pt;}
.y2a{bottom:780.714000pt;}
.y36b{bottom:781.418533pt;}
.y2{bottom:781.661334pt;}
.y265{bottom:782.717200pt;}
.y22d{bottom:784.800400pt;}
.y2ab{bottom:785.602400pt;}
.y2f0{bottom:785.695733pt;}
.y59{bottom:787.109067pt;}
.y11a{bottom:787.686667pt;}
.yd9{bottom:787.706400pt;}
.y119{bottom:787.717733pt;}
.y11c{bottom:787.725067pt;}
.y66{bottom:788.203067pt;}
.y103{bottom:788.203733pt;}
.y1a8{bottom:792.375067pt;}
.y1ab{bottom:793.545067pt;}
.y1af{bottom:793.545200pt;}
.y1b3{bottom:793.545467pt;}
.y264{bottom:794.719867pt;}
.y2aa{bottom:797.605067pt;}
.y2ef{bottom:797.698400pt;}
.y29{bottom:799.380667pt;}
.y36a{bottom:799.588533pt;}
.y58{bottom:800.334400pt;}
.y1ef{bottom:801.343733pt;}
.y22c{bottom:802.970400pt;}
.yd8{bottom:803.709067pt;}
.y118{bottom:803.720400pt;}
.y65{bottom:804.205733pt;}
.y96{bottom:804.206400pt;}
.y1ad{bottom:805.100933pt;}
.y1b1{bottom:805.101067pt;}
.y263{bottom:806.722533pt;}
.y2a9{bottom:809.607733pt;}
.y2ee{bottom:809.701067pt;}
.y369{bottom:817.758533pt;}
.y1f4{bottom:818.633733pt;}
.yd7{bottom:819.711733pt;}
.y64{bottom:820.208400pt;}
.y95{bottom:820.209067pt;}
.y22b{bottom:821.140400pt;}
.y2a8{bottom:821.610400pt;}
.y2ed{bottom:821.703733pt;}
.y19c{bottom:822.892000pt;}
.y166{bottom:825.792000pt;}
.y27{bottom:829.385867pt;}
.y262{bottom:830.725200pt;}
.y28{bottom:833.381867pt;}
.y2a7{bottom:833.613067pt;}
.y2ec{bottom:833.706400pt;}
.yd6{bottom:835.714400pt;}
.y368{bottom:835.928533pt;}
.y63{bottom:836.211067pt;}
.y94{bottom:836.211733pt;}
.y1f3{bottom:836.803733pt;}
.y19b{bottom:837.700400pt;}
.y19e{bottom:838.878400pt;}
.y1a2{bottom:838.878533pt;}
.y1a6{bottom:838.878800pt;}
.y22a{bottom:839.310400pt;}
.y165{bottom:839.863067pt;}
.y168{bottom:839.938400pt;}
.y261{bottom:842.055867pt;}
.y260{bottom:845.163867pt;}
.y2a6{bottom:845.615733pt;}
.y2eb{bottom:845.709067pt;}
.y1a0{bottom:850.434267pt;}
.y1a4{bottom:850.434400pt;}
.y16a{bottom:851.494000pt;}
.yd5{bottom:851.717067pt;}
.y62{bottom:852.213733pt;}
.y93{bottom:852.214400pt;}
.y367{bottom:854.098533pt;}
.y1f2{bottom:854.973733pt;}
.y25f{bottom:855.278933pt;}
.y26{bottom:855.401733pt;}
.y229{bottom:857.479067pt;}
.y2a5{bottom:857.618400pt;}
.y2ea{bottom:857.711733pt;}
.y1{bottom:859.312000pt;}
.yd4{bottom:867.719733pt;}
.y61{bottom:868.216400pt;}
.y92{bottom:868.217067pt;}
.y25d{bottom:868.502000pt;}
.y2a4{bottom:869.621067pt;}
.y2e9{bottom:869.714400pt;}
.y25e{bottom:871.610000pt;}
.y366{bottom:872.268533pt;}
.y1f1{bottom:873.143733pt;}
.y228{bottom:876.643733pt;}
.y2a3{bottom:881.623733pt;}
.y2e8{bottom:881.717067pt;}
.y25c{bottom:881.726400pt;}
.y25{bottom:882.057733pt;}
.yd3{bottom:883.722400pt;}
.y60{bottom:884.219067pt;}
.y91{bottom:884.219733pt;}
.y1f0{bottom:891.310400pt;}
.y2a2{bottom:893.626400pt;}
.y2e7{bottom:893.719733pt;}
.y226{bottom:896.226400pt;}
.y365{bottom:898.535200pt;}
.yd2{bottom:899.725067pt;}
.y5f{bottom:900.221733pt;}
.y90{bottom:900.222400pt;}
.y2a1{bottom:905.629067pt;}
.y25b{bottom:905.722400pt;}
.y1ee{bottom:910.891733pt;}
.y24{bottom:912.724400pt;}
.y364{bottom:914.535200pt;}
.yd1{bottom:915.725067pt;}
.y5e{bottom:916.224400pt;}
.y8f{bottom:916.225067pt;}
.y2a0{bottom:917.631733pt;}
.y25a{bottom:917.725067pt;}
.y23{bottom:989.384400pt;}
.y22{bottom:1002.721733pt;}
.h37{height:3.345549pt;}
.h24{height:5.733333pt;}
.h1c{height:7.833333pt;}
.h22{height:8.533333pt;}
.h2a{height:9.600000pt;}
.h3c{height:9.733333pt;}
.h2b{height:9.866667pt;}
.h29{height:10.800000pt;}
.h27{height:11.598667pt;}
.h3a{height:12.533333pt;}
.h32{height:12.798667pt;}
.h42{height:13.333333pt;}
.h46{height:14.801333pt;}
.h3e{height:15.066667pt;}
.h39{height:15.600000pt;}
.h35{height:16.018283pt;}
.h4f{height:16.759307pt;}
.h4e{height:17.020491pt;}
.h34{height:17.466667pt;}
.h2c{height:17.866667pt;}
.h4c{height:18.236240pt;}
.h1b{height:20.088285pt;}
.h20{height:20.556881pt;}
.h1e{height:20.941498pt;}
.hf{height:21.547680pt;}
.h30{height:22.273028pt;}
.h3f{height:23.722752pt;}
.h2e{height:24.810045pt;}
.h36{height:25.040683pt;}
.h16{height:27.109333pt;}
.h7{height:28.560000pt;}
.h48{height:28.746667pt;}
.h58{height:28.768000pt;}
.h56{height:28.778667pt;}
.h50{height:28.789333pt;}
.h54{height:28.810667pt;}
.h52{height:28.821333pt;}
.h59{height:28.864000pt;}
.h57{height:28.874667pt;}
.h53{height:28.885333pt;}
.h55{height:28.917333pt;}
.ha{height:29.194667pt;}
.h5a{height:29.226667pt;}
.h51{height:29.418667pt;}
.h5b{height:29.891307pt;}
.hb{height:30.501333pt;}
.h4b{height:30.560000pt;}
.h49{height:31.280000pt;}
.h14{height:32.853333pt;}
.h15{height:33.365333pt;}
.h25{height:33.861009pt;}
.h23{height:34.266530pt;}
.h19{height:34.858667pt;}
.h5d{height:34.906256pt;}
.h13{height:34.906667pt;}
.h26{height:34.917333pt;}
.h43{height:34.928000pt;}
.h3b{height:34.933333pt;}
.h5e{height:34.996922pt;}
.h4d{height:35.013333pt;}
.h4a{height:35.077333pt;}
.h18{height:35.457253pt;}
.h17{height:35.638587pt;}
.h41{height:36.268000pt;}
.h3d{height:36.666667pt;}
.he{height:36.960000pt;}
.h5c{height:37.036898pt;}
.h47{height:37.037333pt;}
.h21{height:37.056000pt;}
.h45{height:38.132000pt;}
.h44{height:38.133333pt;}
.h28{height:38.524501pt;}
.h2d{height:38.676572pt;}
.h12{height:39.216000pt;}
.h6{height:40.800000pt;}
.h11{height:41.066667pt;}
.h3{height:42.840000pt;}
.h10{height:43.573333pt;}
.h33{height:45.359962pt;}
.h2{height:48.960000pt;}
.hc{height:52.288000pt;}
.h40{height:52.527829pt;}
.h31{height:57.609137pt;}
.h2f{height:58.116038pt;}
.h38{height:59.890082pt;}
.h5{height:69.360000pt;}
.hd{height:69.813333pt;}
.h4{height:105.826671pt;}
.h1a{height:167.694667pt;}
.h1f{height:171.306667pt;}
.h1d{height:174.569333pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:5.121333pt;}
.w9{width:5.321333pt;}
.w15{width:5.626667pt;}
.w11{width:6.185333pt;}
.we{width:6.466667pt;}
.w8{width:7.946667pt;}
.w14{width:8.240000pt;}
.wd{width:8.718667pt;}
.wc{width:9.506667pt;}
.wb{width:10.200000pt;}
.w19{width:25.813333pt;}
.w20{width:31.693333pt;}
.wa{width:33.306667pt;}
.w10{width:44.093333pt;}
.w13{width:122.813333pt;}
.w12{width:148.906667pt;}
.w18{width:192.425333pt;}
.w17{width:193.600000pt;}
.wf{width:195.746667pt;}
.w16{width:202.800000pt;}
.w5{width:340.157333pt;}
.w7{width:340.361333pt;}
.w1f{width:405.506667pt;}
.w1e{width:417.640000pt;}
.w1b{width:419.960000pt;}
.w1a{width:423.906667pt;}
.w1c{width:427.773333pt;}
.w1d{width:431.106667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:812.598667pt;}
.w4{width:812.666667pt;}
.x52{left:-1.018667pt;}
.x0{left:0.000000pt;}
.xf{left:1.204133pt;}
.x13{left:2.833067pt;}
.x11{left:9.062933pt;}
.x45{left:26.834533pt;}
.x22{left:39.019333pt;}
.x46{left:55.322667pt;}
.x2f{left:59.596267pt;}
.x5{left:66.141733pt;}
.xe{left:69.921333pt;}
.x30{left:71.187867pt;}
.x37{left:72.507467pt;}
.x4d{left:79.052267pt;}
.x4f{left:80.167867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6f{left:98.815733pt;}
.x71{left:100.051600pt;}
.x39{left:101.199200pt;}
.x5d{left:106.378800pt;}
.x5f{left:107.626667pt;}
.x54{left:110.332000pt;}
.x56{left:111.579867pt;}
.x32{left:113.116000pt;}
.x69{left:114.075733pt;}
.x40{left:125.723867pt;}
.x48{left:130.286667pt;}
.x34{left:141.808133pt;}
.x4a{left:149.762267pt;}
.x24{left:162.462933pt;}
.x26{left:170.334800pt;}
.x4{left:180.874667pt;}
.x4c{left:187.358533pt;}
.x51{left:189.991733pt;}
.x28{left:193.758800pt;}
.x43{left:199.884267pt;}
.x72{left:211.495867pt;}
.x74{left:212.731733pt;}
.x60{left:227.134800pt;}
.x62{left:228.382667pt;}
.x65{left:233.393200pt;}
.x58{left:235.035600pt;}
.x5a{left:236.283467pt;}
.x7{left:240.000000pt;}
.x6c{left:241.287600pt;}
.x6{left:242.752933pt;}
.x12{left:245.097333pt;}
.x82{left:246.220400pt;}
.x10{left:247.558267pt;}
.x3f{left:248.531733pt;}
.x7a{left:250.281867pt;}
.xd{left:251.333333pt;}
.x2c{left:252.557333pt;}
.x44{left:254.630400pt;}
.x2d{left:258.743200pt;}
.x53{left:265.768000pt;}
.x7c{left:268.512133pt;}
.x2e{left:269.428000pt;}
.x1a{left:274.565333pt;}
.x1b{left:284.765600pt;}
.x21{left:290.305600pt;}
.x47{left:303.494533pt;}
.x8{left:304.454800pt;}
.x9{left:308.243067pt;}
.x23{left:316.346267pt;}
.x4e{left:318.284000pt;}
.x80{left:329.558667pt;}
.x31{left:335.511867pt;}
.x50{left:336.764267pt;}
.x70{left:338.155733pt;}
.x5e{left:345.718800pt;}
.x81{left:347.447467pt;}
.x55{left:349.671600pt;}
.x68{left:352.179867pt;}
.xb{left:355.866667pt;}
.x33{left:359.044133pt;}
.x7e{left:362.326000pt;}
.x41{left:364.692133pt;}
.x57{left:368.163733pt;}
.x6a{left:370.659600pt;}
.x49{left:378.266400pt;}
.x42{left:383.184267pt;}
.x35{left:388.906667pt;}
.x76{left:402.595867pt;}
.x3{left:404.408000pt;}
.x18{left:408.165333pt;}
.x4b{left:409.730400pt;}
.x36{left:413.380000pt;}
.x6e{left:414.734667pt;}
.x64{left:417.046800pt;}
.x5c{left:421.000133pt;}
.x67{left:424.865600pt;}
.x6d{left:428.200133pt;}
.x25{left:439.765333pt;}
.x19{left:441.472667pt;}
.x27{left:447.661733pt;}
.x73{left:450.835333pt;}
.x61{left:466.474400pt;}
.x75{left:469.315600pt;}
.x29{left:470.817867pt;}
.x66{left:472.733333pt;}
.x59{left:474.375600pt;}
.x16{left:476.386667pt;}
.x6b{left:479.379867pt;}
.x17{left:481.707333pt;}
.x63{left:484.966533pt;}
.x38{left:491.827600pt;}
.x5b{left:492.867867pt;}
.xa{left:497.595733pt;}
.x79{left:500.864267pt;}
.x7b{left:509.757467pt;}
.x7f{left:520.127467pt;}
.x3a{left:536.192800pt;}
.x3d{left:541.136000pt;}
.x1d{left:562.712000pt;}
.x1e{left:571.431867pt;}
.x3b{left:572.860000pt;}
.x3c{left:581.100133pt;}
.x2a{left:593.522667pt;}
.x2b{left:637.615333pt;}
.x7d{left:687.405200pt;}
.x77{left:688.733333pt;}
.xc{left:692.911733pt;}
.x14{left:706.181333pt;}
.x15{left:714.128133pt;}
.x1c{left:716.107600pt;}
.x78{left:720.427467pt;}
.x1f{left:728.961333pt;}
.x3e{left:732.603333pt;}
.x20{left:735.428133pt;}
}




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