
    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_87493e2e469e78d692a3360a.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_c73f042cbdbf5d22e6441cdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.705078;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_b9ad868a9347499ef732e6d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911621;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_87687c79ea18e76ef45f4575.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_5d01d17f4ede7fd7afe4ef4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_71ec9602f30275c0dac833f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_8a65f2653c5e6ff79439e8a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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_36a39af8b2ef72d1f65704f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.991211;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_3a33b15d27f5d6529d8d6987.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884766;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_051c8a99d4e377628c02ee52.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979004;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_46965059c3ade913947e7a68.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.755859;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_b6671bf749d63514e262d96a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.585840;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_4b83c60fc88b585a9b4c99a2.woff2')format("woff");}.fff{font-family:fff;line-height:0.706543;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_ef90fc2ea927189cd404dd24.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.911621;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_da689af9087443632afcff44.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712402;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_7eb7c22113dbd0606ca814f9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.887971;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_e7d656f4164ab96cf508c3e5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908691;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_01c0cc5251bd6b30eba48661.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909668;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_9552f95b18466b31d136ed71.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.897461;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_dfb71988d7177f4c7399cc00.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906250;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_3d7b847de012fba2c14cfda4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.906250;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_ba06b9d69105c2af757e0bfe.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.906250;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_32ce2d8f22b3ef607d479b6d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.911621;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_e708e58f7da6530b6e412720.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.709961;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_b3e3c62bef8bf177642a1b5d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.906738;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_0ee056e1e834612d9dc4c99c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.892578;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_f636d69dc1268c8b84b9e09e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.984863;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_327ab95a75035dca55484c22.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.977539;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_e90b547a2eac7cc1fc7c7480.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.909668;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_febd0bcde86b9fc7cd9b6a8c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.673340;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_b1a1a451d831836914a67184.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.911621;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_3862d3b1c7f5fabfed3de98f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.522000;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_6d70c895bd2427871016673e.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.906000;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_4d486857d39a01a06a7395e3.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.053000;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_697457c39209fb291b287038.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.908691;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_81b8860990eed329e1a0be8e.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.908691;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_f744d6eaacd0c72363a42bab.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.159043;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;}
.ma{transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.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);}
.m8{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,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);}
.v7{vertical-align:-37.798488px;}
.v3{vertical-align:-30.600000px;}
.vc{vertical-align:-25.558416px;}
.v4{vertical-align:-18.720000px;}
.va{vertical-align:-12.960324px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v8{vertical-align:25.200396px;}
.v6{vertical-align:27.000000px;}
.v2{vertical-align:30.600000px;}
.vb{vertical-align:35.279712px;}
.v9{vertical-align:38.160720px;}
.v5{vertical-align:41.037948px;}
.vd{vertical-align:50.400792px;}
.lsf{letter-spacing:-5.840100px;}
.ls10{letter-spacing:-4.851900px;}
.ls26{letter-spacing:-4.355208px;}
.lsd{letter-spacing:-4.260600px;}
.ls92{letter-spacing:-3.598848px;}
.ls4{letter-spacing:-3.595500px;}
.ls43{letter-spacing:-3.321792px;}
.ls28{letter-spacing:-3.297996px;}
.ls18{letter-spacing:-3.246120px;}
.ls9a{letter-spacing:-3.241008px;}
.ls99{letter-spacing:-3.097872px;}
.ls6{letter-spacing:-2.952072px;}
.ls2f{letter-spacing:-2.946384px;}
.ls2a{letter-spacing:-2.931552px;}
.ls96{letter-spacing:-2.888280px;}
.ls5{letter-spacing:-2.884500px;}
.ls86{letter-spacing:-2.883168px;}
.ls83{letter-spacing:-2.878056px;}
.ls3d{letter-spacing:-2.735928px;}
.ls3b{letter-spacing:-2.582352px;}
.ls38{letter-spacing:-2.576664px;}
.ls27{letter-spacing:-2.565108px;}
.ls8b{letter-spacing:-2.525328px;}
.ls1f{letter-spacing:-2.520216px;}
.lsb{letter-spacing:-2.519100px;}
.ls4e{letter-spacing:-2.518488px;}
.ls15{letter-spacing:-2.515500px;}
.ls6e{letter-spacing:-2.513700px;}
.ls25{letter-spacing:-2.221632px;}
.ls5f{letter-spacing:-2.218320px;}
.ls35{letter-spacing:-2.212632px;}
.ls32{letter-spacing:-2.206944px;}
.ls3e{letter-spacing:-2.201256px;}
.ls97{letter-spacing:-2.172600px;}
.ls88{letter-spacing:-2.167488px;}
.ls7f{letter-spacing:-2.164968px;}
.ls1e{letter-spacing:-2.162376px;}
.ls89{letter-spacing:-2.157264px;}
.ls11{letter-spacing:-2.156544px;}
.ls85{letter-spacing:-2.147040px;}
.ls42{letter-spacing:-1.956672px;}
.ls31{letter-spacing:-1.848600px;}
.ls8{letter-spacing:-1.842912px;}
.ls30{letter-spacing:-1.837224px;}
.ls29{letter-spacing:-1.832220px;}
.ls44{letter-spacing:-1.825848px;}
.ls4b{letter-spacing:-1.805076px;}
.ls1b{letter-spacing:-1.804536px;}
.ls22{letter-spacing:-1.799424px;}
.ls98{letter-spacing:-1.789200px;}
.ls78{letter-spacing:-1.626768px;}
.ls46{letter-spacing:-1.569888px;}
.ls3c{letter-spacing:-1.478880px;}
.ls2b{letter-spacing:-1.473192px;}
.ls23{letter-spacing:-1.451808px;}
.ls21{letter-spacing:-1.446696px;}
.ls1d{letter-spacing:-1.441584px;}
.ls7e{letter-spacing:-1.436292px;}
.ls14{letter-spacing:-1.435500px;}
.ls9c{letter-spacing:-1.431360px;}
.ls8e{letter-spacing:-1.426248px;}
.ls40{letter-spacing:-1.177416px;}
.ls24{letter-spacing:-1.115604px;}
.ls36{letter-spacing:-1.114848px;}
.ls7{letter-spacing:-1.109160px;}
.ls2c{letter-spacing:-1.103472px;}
.ls1a{letter-spacing:-1.093968px;}
.ls7c{letter-spacing:-1.086696px;}
.ls12{letter-spacing:-1.085184px;}
.ls8a{letter-spacing:-1.083744px;}
.ls84{letter-spacing:-1.078632px;}
.ls16{letter-spacing:-1.075500px;}
.ls93{letter-spacing:-1.073520px;}
.ls90{letter-spacing:-1.068408px;}
.ls45{letter-spacing:-0.784944px;}
.ls2d{letter-spacing:-0.745128px;}
.ls3{letter-spacing:-0.739440px;}
.ls47{letter-spacing:-0.733752px;}
.ls49{letter-spacing:-0.731268px;}
.ls19{letter-spacing:-0.731016px;}
.ls1c{letter-spacing:-0.725904px;}
.ls7d{letter-spacing:-0.720252px;}
.lsc{letter-spacing:-0.719316px;}
.ls8d{letter-spacing:-0.715680px;}
.ls53{letter-spacing:-0.715500px;}
.ls87{letter-spacing:-0.710568px;}
.ls81{letter-spacing:-0.585864px;}
.ls82{letter-spacing:-0.568800px;}
.ls3f{letter-spacing:-0.392472px;}
.ls33{letter-spacing:-0.375408px;}
.ls2e{letter-spacing:-0.369720px;}
.ls60{letter-spacing:-0.366444px;}
.ls66{letter-spacing:-0.362232px;}
.ls56{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.358020px;}
.ls52{letter-spacing:-0.355500px;}
.ls4d{letter-spacing:-0.354312px;}
.ls91{letter-spacing:-0.352728px;}
.ls55{letter-spacing:-0.351000px;}
.ls77{letter-spacing:-0.341172px;}
.ls39{letter-spacing:-0.093600px;}
.ls51{letter-spacing:-0.086400px;}
.ls1{letter-spacing:-0.072000px;}
.ls7a{letter-spacing:-0.028800px;}
.ls34{letter-spacing:-0.011376px;}
.ls20{letter-spacing:-0.010224px;}
.ls64{letter-spacing:-0.008424px;}
.ls3a{letter-spacing:-0.006588px;}
.ls2{letter-spacing:-0.005688px;}
.ls4c{letter-spacing:-0.004788px;}
.ls9{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls69{letter-spacing:0.004212px;}
.ls4f{letter-spacing:0.004500px;}
.ls63{letter-spacing:0.008424px;}
.ls61{letter-spacing:0.021060px;}
.ls65{letter-spacing:0.353808px;}
.ls62{letter-spacing:0.358020px;}
.ls80{letter-spacing:0.358344px;}
.ls54{letter-spacing:0.364500px;}
.ls6d{letter-spacing:0.386784px;}
.ls41{letter-spacing:0.392472px;}
.ls48{letter-spacing:0.398160px;}
.ls4a{letter-spacing:1.461816px;}
.ls9b{letter-spacing:7.202808px;}
.ls37{letter-spacing:8.469432px;}
.ls17{letter-spacing:9.499392px;}
.ls95{letter-spacing:10.085976px;}
.ls79{letter-spacing:10.164456px;}
.ls9d{letter-spacing:10.443816px;}
.ls94{letter-spacing:11.164608px;}
.ls8c{letter-spacing:11.522448px;}
.ls13{letter-spacing:15.482880px;}
.lse{letter-spacing:20.857500px;}
.ls50{letter-spacing:105.840000px;}
.ls8f{letter-spacing:115.546536px;}
.ls6f{letter-spacing:148.675176px;}
.ls68{letter-spacing:149.033196px;}
.ls7b{letter-spacing:149.766084px;}
.ls57{letter-spacing:154.074960px;}
.ls67{letter-spacing:164.499660px;}
.ls59{letter-spacing:340.552836px;}
.ls71{letter-spacing:349.191648px;}
.ls5a{letter-spacing:510.111108px;}
.ls72{letter-spacing:518.749920px;}
.ls5b{letter-spacing:519.470172px;}
.ls6b{letter-spacing:519.832404px;}
.ls73{letter-spacing:528.113196px;}
.ls6a{letter-spacing:530.989992px;}
.ls58{letter-spacing:531.352224px;}
.ls70{letter-spacing:539.633016px;}
.ls6c{letter-spacing:542.872044px;}
.ls5d{letter-spacing:543.230064px;}
.ls75{letter-spacing:551.510856px;}
.ls5c{letter-spacing:609.830208px;}
.ls74{letter-spacing:618.473232px;}
.ls5e{letter-spacing:621.712260px;}
.ls76{letter-spacing:630.351072px;}
.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;}
}
.ws10{word-spacing:-23.012100px;}
.ws1b{word-spacing:-16.529292px;}
.ws1f{word-spacing:-14.498712px;}
.ws24{word-spacing:-14.333760px;}
.ws1c{word-spacing:-14.328072px;}
.ws25{word-spacing:-14.322384px;}
.ws23{word-spacing:-14.106240px;}
.ws1{word-spacing:-14.025960px;}
.ws1d{word-spacing:-13.713768px;}
.ws21{word-spacing:-13.321296px;}
.ws7{word-spacing:-12.933360px;}
.ws1e{word-spacing:-12.928824px;}
.ws22{word-spacing:-12.536352px;}
.ws69{word-spacing:-12.222792px;}
.ws20{word-spacing:-12.149568px;}
.ws28{word-spacing:-11.869452px;}
.ws68{word-spacing:-11.854728px;}
.ws2a{word-spacing:-11.519928px;}
.ws6{word-spacing:-11.491776px;}
.ws8{word-spacing:-11.486664px;}
.ws6c{word-spacing:-10.806768px;}
.ws6d{word-spacing:-10.760760px;}
.ws5d{word-spacing:-10.449972px;}
.ws61{word-spacing:-10.445760px;}
.ws2{word-spacing:-10.441548px;}
.ws34{word-spacing:-10.079316px;}
.ws5{word-spacing:-9.687240px;}
.ws9{word-spacing:-9.604728px;}
.ws5e{word-spacing:-9.009468px;}
.wsa{word-spacing:-8.824140px;}
.ws19{word-spacing:-8.480808px;}
.ws67{word-spacing:-1.840320px;}
.ws15{word-spacing:-1.479492px;}
.ws16{word-spacing:-1.465776px;}
.ws26{word-spacing:-1.126224px;}
.wsb{word-spacing:-0.711000px;}
.wse{word-spacing:-0.366444px;}
.ws13{word-spacing:-0.360000px;}
.ws3{word-spacing:-0.044280px;}
.ws4{word-spacing:-0.027000px;}
.ws18{word-spacing:-0.011376px;}
.ws6a{word-spacing:-0.010224px;}
.ws27{word-spacing:-0.006588px;}
.wsd{word-spacing:-0.005688px;}
.ws0{word-spacing:0.000000px;}
.ws46{word-spacing:0.004212px;}
.ws17{word-spacing:0.012636px;}
.ws2b{word-spacing:0.014364px;}
.ws12{word-spacing:0.178200px;}
.ws6b{word-spacing:0.357840px;}
.ws1a{word-spacing:0.358344px;}
.ws54{word-spacing:0.362232px;}
.ws6e{word-spacing:0.362952px;}
.wsc{word-spacing:0.364032px;}
.ws66{word-spacing:0.369720px;}
.ws11{word-spacing:0.445500px;}
.ws6f{word-spacing:0.720792px;}
.ws14{word-spacing:0.725904px;}
.ws65{word-spacing:1.082484px;}
.wsf{word-spacing:2.106000px;}
.ws62{word-spacing:25.558416px;}
.ws64{word-spacing:27.723384px;}
.ws51{word-spacing:46.917468px;}
.ws3c{word-spacing:48.362184px;}
.ws59{word-spacing:48.598056px;}
.ws4b{word-spacing:48.956076px;}
.ws45{word-spacing:50.396580px;}
.ws4a{word-spacing:50.514516px;}
.ws4f{word-spacing:50.518728px;}
.ws58{word-spacing:50.522940px;}
.ws43{word-spacing:51.470640px;}
.ws57{word-spacing:51.542244px;}
.ws53{word-spacing:51.837084px;}
.ws3d{word-spacing:53.635608px;}
.ws50{word-spacing:55.787940px;}
.ws4c{word-spacing:55.796364px;}
.ws3a{word-spacing:57.236868px;}
.ws3e{word-spacing:58.778460px;}
.ws44{word-spacing:58.782672px;}
.ws39{word-spacing:58.799520px;}
.ws37{word-spacing:58.803732px;}
.ws4d{word-spacing:59.490288px;}
.ws40{word-spacing:64.068732px;}
.ws38{word-spacing:64.077156px;}
.ws5a{word-spacing:65.976768px;}
.ws41{word-spacing:65.980980px;}
.ws4e{word-spacing:66.330576px;}
.ws5f{word-spacing:71.983080px;}
.ws52{word-spacing:72.762732px;}
.ws5b{word-spacing:72.763416px;}
.ws3b{word-spacing:72.783360px;}
.ws42{word-spacing:72.789552px;}
.ws3f{word-spacing:72.795996px;}
.ws36{word-spacing:105.114672px;}
.ws49{word-spacing:105.822288px;}
.ws60{word-spacing:106.951104px;}
.ws2f{word-spacing:116.275500px;}
.ws5c{word-spacing:119.254356px;}
.ws48{word-spacing:158.809248px;}
.ws56{word-spacing:158.817672px;}
.ws2e{word-spacing:159.475500px;}
.ws35{word-spacing:273.257712px;}
.ws63{word-spacing:287.056224px;}
.ws29{word-spacing:503.994456px;}
.ws33{word-spacing:518.046516px;}
.ws47{word-spacing:528.479640px;}
.ws55{word-spacing:529.920144px;}
.ws2c{word-spacing:726.093000px;}
.ws32{word-spacing:1388.083500px;}
.ws2d{word-spacing:1812.537000px;}
.ws30{word-spacing:1837.017000px;}
.ws31{word-spacing:1857.172500px;}
._72{margin-left:-1739.613960px;}
._90{margin-left:-486.844596px;}
._cf{margin-left:-443.300328px;}
._84{margin-left:-418.071060px;}
._89{margin-left:-416.480868px;}
._82{margin-left:-414.785304px;}
._80{margin-left:-396.753552px;}
._8d{margin-left:-352.031040px;}
._93{margin-left:-278.245296px;}
._99{margin-left:-277.174908px;}
._7a{margin-left:-261.173016px;}
._75{margin-left:-239.839992px;}
._9f{margin-left:-120.581136px;}
._10{margin-left:-26.579700px;}
._d{margin-left:-25.104600px;}
._e{margin-left:-23.935500px;}
._f{margin-left:-21.959100px;}
._14{margin-left:-18.005760px;}
._13{margin-left:-16.585668px;}
._c4{margin-left:-13.836960px;}
._15{margin-left:-12.774384px;}
._c3{margin-left:-10.949400px;}
._21{margin-left:-9.512136px;}
._1f{margin-left:-8.458056px;}
._20{margin-left:-7.169760px;}
._7{margin-left:-3.724236px;}
._6{margin-left:-2.264904px;}
._1{margin-left:-1.086408px;}
._3{width:1.103472px;}
._4{width:2.264112px;}
._8{width:3.891672px;}
._17{width:6.055848px;}
._b{width:7.210944px;}
._16{width:8.308800px;}
._2{width:9.572904px;}
._a{width:10.676376px;}
._0{width:11.785536px;}
._9{width:13.270104px;}
._2d{width:14.430096px;}
._1d{width:15.500160px;}
._11{width:16.500528px;}
._12{width:17.991936px;}
._18{width:19.196208px;}
._22{width:20.512836px;}
._1a{width:21.822948px;}
._5{width:23.089500px;}
._c{width:24.370524px;}
._24{width:25.755264px;}
._2a{width:27.171576px;}
._19{width:28.343304px;}
._1e{width:29.452464px;}
._23{width:30.521808px;}
._1b{width:31.625280px;}
._1c{width:32.842512px;}
._2b{width:33.866352px;}
._29{width:35.168256px;}
._26{width:36.789984px;}
._25{width:37.899144px;}
._27{width:39.355272px;}
._28{width:40.885344px;}
._cd{width:42.140628px;}
._ce{width:43.281756px;}
._d0{width:45.083304px;}
._2c{width:46.357200px;}
._b5{width:47.528208px;}
._78{width:50.417064px;}
._74{width:51.487956px;}
._ac{width:60.496668px;}
._71{width:62.253000px;}
._c9{width:65.875680px;}
._9b{width:66.962376px;}
._81{width:69.781716px;}
._95{width:71.211708px;}
._76{width:72.421128px;}
._7e{width:74.526840px;}
._c7{width:81.058392px;}
._ca{width:82.469664px;}
._48{width:89.946000px;}
._c8{width:91.071864px;}
._c6{width:93.035664px;}
._94{width:100.068696px;}
._cb{width:101.391696px;}
._a8{width:106.930044px;}
._56{width:108.152352px;}
._5b{width:109.308816px;}
._67{width:111.673152px;}
._59{width:115.190676px;}
._be{width:117.009360px;}
._cc{width:118.506924px;}
._77{width:119.515500px;}
._b3{width:120.581136px;}
._79{width:121.692816px;}
._4d{width:127.440000px;}
._68{width:128.828556px;}
._60{width:132.559956px;}
._b0{width:136.809972px;}
._c5{width:138.574800px;}
._73{width:149.918832px;}
._4a{width:170.640000px;}
._5a{width:172.028556px;}
._5e{width:178.289928px;}
._37{width:184.682736px;}
._6c{width:188.189856px;}
._3e{width:190.914156px;}
._2f{width:196.561764px;}
._86{width:200.150028px;}
._8f{width:207.348336px;}
._40{width:208.823832px;}
._88{width:210.979080px;}
._32{width:214.564644px;}
._8b{width:216.715824px;}
._62{width:218.068632px;}
._46{width:219.367008px;}
._39{width:220.688496px;}
._a5{width:223.568748px;}
._bb{width:224.651232px;}
._b8{width:226.449756px;}
._7f{width:231.828480px;}
._35{width:232.936200px;}
._a4{width:238.677192px;}
._3a{width:244.815228px;}
._b4{width:248.756508px;}
._43{width:258.489756px;}
._3d{width:262.818108px;}
._97{width:269.626968px;}
._42{width:271.503540px;}
._ab{width:276.475680px;}
._3c{width:280.811412px;}
._8c{width:285.476724px;}
._c1{width:286.554996px;}
._7c{width:289.069560px;}
._92{width:290.876508px;}
._a6{width:292.329648px;}
._66{width:293.635908px;}
._3f{width:295.577604px;}
._7d{width:298.437048px;}
._b9{width:302.408964px;}
._a2{width:305.635356px;}
._49{width:308.056356px;}
._38{width:311.021460px;}
._a3{width:312.850512px;}
._33{width:316.484568px;}
._9d{width:317.513196px;}
._a9{width:318.608316px;}
._b2{width:322.929828px;}
._44{width:324.387000px;}
._af{width:327.238704px;}
._45{width:328.775040px;}
._a0{width:330.465096px;}
._34{width:340.601724px;}
._47{width:345.676680px;}
._51{width:347.218920px;}
._bf{width:356.083056px;}
._36{width:358.887096px;}
._5c{width:378.419760px;}
._9c{width:395.995392px;}
._ad{width:406.436940px;}
._4e{width:407.520000px;}
._57{width:409.483224px;}
._83{width:417.615588px;}
._b6{width:426.124116px;}
._30{width:442.428120px;}
._6e{width:445.075920px;}
._6b{width:458.418420px;}
._2e{width:463.669920px;}
._31{width:474.476436px;}
._41{width:482.386212px;}
._4b{width:494.280000px;}
._3b{width:500.389092px;}
._98{width:517.335552px;}
._9a{width:526.335732px;}
._c2{width:535.413240px;}
._a7{width:537.855264px;}
._7b{width:538.929612px;}
._a1{width:539.944848px;}
._bd{width:545.963976px;}
._b1{width:547.913052px;}
._aa{width:551.906784px;}
._4f{width:555.668892px;}
._96{width:559.367568px;}
._c0{width:567.298476px;}
._87{width:586.125072px;}
._8a{width:595.816884px;}
._69{width:598.715964px;}
._52{width:605.193372px;}
._8e{width:606.254220px;}
._9e{width:612.083628px;}
._ba{width:614.880396px;}
._53{width:616.765428px;}
._85{width:618.136272px;}
._ae{width:620.364420px;}
._b7{width:626.206464px;}
._65{width:637.467408px;}
._91{width:663.495300px;}
._bc{width:671.322060px;}
._64{width:692.767224px;}
._4c{width:802.102464px;}
._55{width:1023.697908px;}
._6d{width:1031.210028px;}
._70{width:1077.108408px;}
._6a{width:1200.496500px;}
._5f{width:1260.631908px;}
._63{width:1312.483500px;}
._54{width:1322.563500px;}
._50{width:1417.301316px;}
._6f{width:1700.911908px;}
._58{width:1778.328000px;}
._5d{width:1798.128000px;}
._61{width:1812.892500px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:4.680000px;}
.fsc{font-size:27.000000px;}
.fs10{font-size:36.360000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.120000px;}
.fsb{font-size:44.280000px;}
.fs6{font-size:45.000000px;}
.fsd{font-size:47.880000px;}
.fse{font-size:51.120000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:65.880000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.519850px;}
.y43{bottom:2.699850px;}
.y46{bottom:3.239850px;}
.y3b{bottom:5.399850px;}
.y6{bottom:50.595005px;}
.y5e{bottom:66.167850px;}
.y60{bottom:73.817448px;}
.y5c{bottom:74.178000px;}
.y5{bottom:75.795004px;}
.y5b{bottom:76.697355px;}
.y5a{bottom:87.137850px;}
.y4{bottom:100.995005px;}
.y29{bottom:116.387850px;}
.y348{bottom:118.457040px;}
.y248{bottom:120.527652px;}
.y1e4{bottom:120.707850px;}
.y1a3{bottom:120.795582px;}
.y24e{bottom:123.587418px;}
.y250{bottom:123.587742px;}
.y2f2{bottom:124.028940px;}
.y8c{bottom:124.033206px;}
.yfe{bottom:124.035366px;}
.y11a{bottom:124.037742px;}
.yb3{bottom:126.196014px;}
.y310{bottom:126.644448px;}
.y247{bottom:126.827751px;}
.y189{bottom:128.085798px;}
.yd4{bottom:129.704718px;}
.y2b6{bottom:129.885258px;}
.y31{bottom:131.597094px;}
.y28{bottom:131.597850px;}
.y347{bottom:133.127202px;}
.y1a0{bottom:134.115798px;}
.y1e3{bottom:134.117850px;}
.y23{bottom:139.264499px;}
.y30f{bottom:141.314610px;}
.y1a2{bottom:141.315753px;}
.y24d{bottom:143.657526px;}
.y24f{bottom:143.657850px;}
.y2f1{bottom:144.099048px;}
.y8b{bottom:144.103314px;}
.yfd{bottom:144.105474px;}
.y162{bottom:144.107634px;}
.y119{bottom:144.107850px;}
.yb2{bottom:146.266122px;}
.y346{bottom:147.797364px;}
.y188{bottom:148.155906px;}
.y19f{bottom:148.515708px;}
.y27{bottom:149.687850px;}
.yd3{bottom:149.774826px;}
.y2b5{bottom:149.955366px;}
.y30{bottom:151.667202px;}
.y246{bottom:152.117652px;}
.y212{bottom:152.747850px;}
.y1e2{bottom:153.917850px;}
.y245{bottom:158.417751px;}
.y30e{bottom:160.484610px;}
.y1a1{bottom:161.746149px;}
.y24c{bottom:163.727634px;}
.y2f0{bottom:164.169156px;}
.y8a{bottom:164.173422px;}
.yfc{bottom:164.175582px;}
.y118{bottom:164.177742px;}
.yb1{bottom:166.336230px;}
.y345{bottom:166.967364px;}
.y187{bottom:168.226014px;}
.y29c{bottom:169.757310px;}
.y143{bottom:169.843854px;}
.yd2{bottom:169.844934px;}
.y2b4{bottom:170.025474px;}
.y2f{bottom:171.737310px;}
.y211{bottom:172.457850px;}
.y1e1{bottom:173.627850px;}
.y30d{bottom:175.154772px;}
.y344{bottom:181.637526px;}
.y19e{bottom:182.265123px;}
.y244{bottom:183.707652px;}
.y24b{bottom:183.797742px;}
.y2ef{bottom:184.239264px;}
.y89{bottom:184.243530px;}
.yfb{bottom:184.245690px;}
.y117{bottom:184.247850px;}
.yb0{bottom:186.406338px;}
.y186{bottom:188.296122px;}
.y19c{bottom:188.385384px;}
.y30c{bottom:189.824934px;}
.y29b{bottom:189.827418px;}
.y142{bottom:189.913962px;}
.yd1{bottom:189.915042px;}
.y243{bottom:190.007751px;}
.y2b3{bottom:190.095582px;}
.y2e{bottom:191.807418px;}
.y26{bottom:192.077742px;}
.y210{bottom:192.257850px;}
.y1e0{bottom:193.337850px;}
.y343{bottom:196.307688px;}
.y1a{bottom:196.933500px;}
.y19b{bottom:202.785294px;}
.y24a{bottom:203.867850px;}
.y2ee{bottom:204.309372px;}
.y88{bottom:204.313638px;}
.yfa{bottom:204.315798px;}
.y116{bottom:204.317634px;}
.y30b{bottom:204.495096px;}
.yaf{bottom:206.476446px;}
.y185{bottom:208.366230px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y29a{bottom:209.897526px;}
.y141{bottom:209.984070px;}
.yd0{bottom:209.985150px;}
.y2b2{bottom:210.165690px;}
.y342{bottom:210.977850px;}
.y2d{bottom:211.877526px;}
.y20f{bottom:211.967850px;}
.y25{bottom:212.147850px;}
.y1df{bottom:213.137850px;}
.y242{bottom:215.297652px;}
.y19a{bottom:217.185204px;}
.y241{bottom:221.597751px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y19d{bottom:223.215690px;}
.y30a{bottom:223.665096px;}
.y2ed{bottom:224.379480px;}
.y87{bottom:224.383746px;}
.yf9{bottom:224.385906px;}
.y115{bottom:224.387742px;}
.yae{bottom:226.546554px;}
.y184{bottom:228.436338px;}
.y299{bottom:229.967634px;}
.y140{bottom:230.054178px;}
.ycf{bottom:230.055258px;}
.y341{bottom:230.147850px;}
.y2b1{bottom:230.235798px;}
.y20e{bottom:231.677850px;}
.y2c{bottom:231.947634px;}
.y1de{bottom:232.847850px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y309{bottom:238.335258px;}
.y199{bottom:243.734664px;}
.y2ec{bottom:244.449588px;}
.y86{bottom:244.453854px;}
.yf8{bottom:244.456014px;}
.y114{bottom:244.457850px;}
.y340{bottom:244.808328px;}
.yad{bottom:246.616662px;}
.y240{bottom:246.887652px;}
.y183{bottom:248.506446px;}
.y298{bottom:250.037742px;}
.y13f{bottom:250.124286px;}
.yce{bottom:250.125366px;}
.y2b0{bottom:250.305906px;}
.y20d{bottom:251.477850px;}
.y283{bottom:251.567652px;}
.y2b{bottom:252.017742px;}
.y1dd{bottom:252.557850px;}
.y308{bottom:253.005420px;}
.y23f{bottom:253.187751px;}
.y282{bottom:257.867751px;}
.y33f{bottom:259.478490px;}
.y377{bottom:259.482192px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y198{bottom:264.254835px;}
.y2eb{bottom:264.519696px;}
.y85{bottom:264.523962px;}
.yf7{bottom:264.526122px;}
.y161{bottom:264.527634px;}
.y20c{bottom:264.887850px;}
.y3a5{bottom:265.156554px;}
.yac{bottom:266.686770px;}
.y182{bottom:268.576554px;}
.y24{bottom:268.937850px;}
.y238{bottom:269.027949px;}
.y297{bottom:270.107850px;}
.y13e{bottom:270.194394px;}
.ycd{bottom:270.195474px;}
.y2af{bottom:270.376014px;}
.y2a{bottom:272.087850px;}
.y307{bottom:272.175420px;}
.y1dc{bottom:272.357850px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y33e{bottom:274.148652px;}
.y376{bottom:274.152354px;}
.y195{bottom:274.425744px;}
.y23e{bottom:278.477652px;}
.y3a4{bottom:279.826716px;}
.y281{bottom:283.157652px;}
.y2ea{bottom:284.589804px;}
.y84{bottom:284.594070px;}
.yf6{bottom:284.596230px;}
.y113{bottom:284.596770px;}
.y160{bottom:284.597742px;}
.y197{bottom:284.685231px;}
.y20b{bottom:284.687850px;}
.y23d{bottom:284.777751px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yab{bottom:286.756878px;}
.y306{bottom:286.845582px;}
.y181{bottom:288.646662px;}
.y33d{bottom:288.818814px;}
.y375{bottom:288.822516px;}
.y280{bottom:289.457751px;}
.y13d{bottom:290.264502px;}
.ycc{bottom:290.265582px;}
.y2ae{bottom:290.446122px;}
.y1db{bottom:292.067850px;}
.y3a3{bottom:294.496878px;}
.y20a{bottom:298.097850px;}
.y305{bottom:301.515744px;}
.y2e9{bottom:304.659912px;}
.y83{bottom:304.664178px;}
.yf5{bottom:304.666338px;}
.y112{bottom:304.666878px;}
.y15f{bottom:304.667850px;}
.y196{bottom:305.205402px;}
.yaa{bottom:306.826986px;}
.y33c{bottom:307.988814px;}
.y374{bottom:307.992516px;}
.y180{bottom:308.716770px;}
.y23c{bottom:310.067652px;}
.y296{bottom:310.247310px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y13c{bottom:310.334610px;}
.ycb{bottom:310.335690px;}
.y2ad{bottom:310.516230px;}
.y1da{bottom:311.777850px;}
.y3a2{bottom:313.666878px;}
.y27f{bottom:314.747652px;}
.y304{bottom:316.185906px;}
.y23b{bottom:316.367751px;}
.y209{bottom:317.897850px;}
.y27e{bottom:321.047751px;}
.y33b{bottom:322.658976px;}
.y373{bottom:322.662678px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y2e8{bottom:324.730020px;}
.y82{bottom:324.734286px;}
.yf4{bottom:324.736446px;}
.y111{bottom:324.736986px;}
.y15e{bottom:324.737634px;}
.y194{bottom:325.725573px;}
.ya9{bottom:326.897094px;}
.y3a1{bottom:328.337040px;}
.y17f{bottom:328.786878px;}
.y295{bottom:330.317418px;}
.y13b{bottom:330.404718px;}
.yca{bottom:330.405798px;}
.y2ac{bottom:330.586338px;}
.y1d9{bottom:331.577850px;}
.y303{bottom:335.355906px;}
.y33a{bottom:337.329138px;}
.y208{bottom:337.607850px;}
.y23a{bottom:341.657652px;}
.y372{bottom:341.832678px;}
.y3a0{bottom:343.007202px;}
.y2e7{bottom:344.800128px;}
.y81{bottom:344.804394px;}
.yf3{bottom:344.806554px;}
.y110{bottom:344.807094px;}
.y15d{bottom:344.807742px;}
.y192{bottom:346.155969px;}
.y27d{bottom:346.337652px;}
.ya8{bottom:346.967202px;}
.y239{bottom:347.957670px;}
.y11{bottom:348.133500px;}
.y17e{bottom:348.856986px;}
.y302{bottom:350.026068px;}
.y13a{bottom:350.474826px;}
.yc9{bottom:350.475906px;}
.y2ab{bottom:350.656446px;}
.y1d8{bottom:351.287850px;}
.y339{bottom:351.999300px;}
.y27c{bottom:352.637751px;}
.y371{bottom:356.502840px;}
.y207{bottom:357.317850px;}
.y39f{bottom:357.677364px;}
.y1d7{bottom:358.037850px;}
.y59{bottom:358.307850px;}
.y301{bottom:364.696230px;}
.y2e6{bottom:364.870236px;}
.y80{bottom:364.874502px;}
.yf2{bottom:364.876662px;}
.y10f{bottom:364.877202px;}
.y15c{bottom:364.877850px;}
.y338{bottom:366.669462px;}
.y193{bottom:366.676140px;}
.ya7{bottom:367.037310px;}
.y17d{bottom:368.927094px;}
.y294{bottom:370.457634px;}
.y139{bottom:370.544934px;}
.yc8{bottom:370.546014px;}
.y2aa{bottom:370.726554px;}
.y206{bottom:370.817850px;}
.y370{bottom:371.173002px;}
.y237{bottom:373.247571px;}
.y39e{bottom:376.847364px;}
.y27b{bottom:377.927652px;}
.y236{bottom:379.547670px;}
.y300{bottom:383.866230px;}
.y27a{bottom:384.227751px;}
.y2e5{bottom:384.940344px;}
.y7f{bottom:384.944610px;}
.yf1{bottom:384.946770px;}
.y10e{bottom:384.947310px;}
.y337{bottom:385.839462px;}
.y36f{bottom:385.843164px;}
.y10{bottom:386.785499px;}
.ya6{bottom:387.107418px;}
.y191{bottom:387.196311px;}
.y17c{bottom:388.997202px;}
.y1e5{bottom:390.077850px;}
.y293{bottom:390.527742px;}
.y205{bottom:390.527850px;}
.y138{bottom:390.615042px;}
.yc7{bottom:390.616122px;}
.y2a9{bottom:390.796662px;}
.y39d{bottom:391.517526px;}
.y233{bottom:395.387949px;}
.y2ff{bottom:398.536392px;}
.y273{bottom:399.978048px;}
.y336{bottom:400.509624px;}
.y58{bottom:404.388084px;}
.y235{bottom:404.837571px;}
.y2e4{bottom:405.010452px;}
.y36e{bottom:405.013164px;}
.y7e{bottom:405.014718px;}
.y15b{bottom:405.016122px;}
.yf0{bottom:405.016878px;}
.y10d{bottom:405.017418px;}
.ya5{bottom:407.177526px;}
.y18f{bottom:407.626707px;}
.yf{bottom:408.044999px;}
.y17b{bottom:409.067310px;}
.y279{bottom:409.517652px;}
.y204{bottom:410.327850px;}
.y292{bottom:410.597850px;}
.y137{bottom:410.685150px;}
.yc6{bottom:410.686230px;}
.y39c{bottom:410.687526px;}
.y2a8{bottom:410.866770px;}
.y234{bottom:411.137670px;}
.y2fe{bottom:413.206554px;}
.y335{bottom:415.179786px;}
.y278{bottom:415.817751px;}
.y36d{bottom:419.683326px;}
.y57{bottom:419.688300px;}
.y2e3{bottom:425.080560px;}
.y7d{bottom:425.084826px;}
.y15a{bottom:425.086230px;}
.yef{bottom:425.086986px;}
.y10c{bottom:425.087526px;}
.y39b{bottom:425.357688px;}
.ya4{bottom:427.247634px;}
.y2fd{bottom:427.876716px;}
.y190{bottom:428.146878px;}
.y17a{bottom:429.137418px;}
.y334{bottom:429.849948px;}
.y203{bottom:430.037850px;}
.y291{bottom:430.667634px;}
.y136{bottom:430.755258px;}
.yc5{bottom:430.756338px;}
.y2a7{bottom:430.936878px;}
.y36c{bottom:434.353488px;}
.y56{bottom:434.988516px;}
.y232{bottom:436.427571px;}
.y277{bottom:441.107652px;}
.y2fc{bottom:442.546878px;}
.y231{bottom:442.727670px;}
.y39a{bottom:444.527688px;}
.y2e2{bottom:445.150668px;}
.y7c{bottom:445.154934px;}
.y159{bottom:445.156338px;}
.yee{bottom:445.157094px;}
.y1be{bottom:447.045150px;}
.ya3{bottom:447.317742px;}
.y276{bottom:447.407751px;}
.y18e{bottom:448.667049px;}
.y333{bottom:449.019948px;}
.y1d6{bottom:449.206446px;}
.y179{bottom:449.207526px;}
.y202{bottom:449.747850px;}
.y55{bottom:450.197994px;}
.y290{bottom:450.737742px;}
.y135{bottom:450.825366px;}
.yc4{bottom:450.826446px;}
.y2a6{bottom:451.006986px;}
.y36b{bottom:453.523488px;}
.y2fb{bottom:457.217040px;}
.y18d{bottom:458.837958px;}
.y399{bottom:459.188862px;}
.y332{bottom:463.690110px;}
.y2e1{bottom:465.220776px;}
.y7b{bottom:465.225042px;}
.y158{bottom:465.226446px;}
.yed{bottom:465.227202px;}
.y10b{bottom:465.227742px;}
.y54{bottom:465.498210px;}
.y1bd{bottom:467.115258px;}
.ya2{bottom:467.387850px;}
.y230{bottom:468.017571px;}
.y36a{bottom:468.193650px;}
.y1d5{bottom:469.276554px;}
.y178{bottom:469.277634px;}
.y201{bottom:469.547850px;}
.y28f{bottom:470.807850px;}
.y134{bottom:470.895474px;}
.yc3{bottom:470.896554px;}
.y2a5{bottom:471.077094px;}
.y275{bottom:472.697652px;}
.y398{bottom:473.859024px;}
.y22f{bottom:474.317670px;}
.y2fa{bottom:476.387040px;}
.y331{bottom:478.360272px;}
.y274{bottom:478.998327px;}
.y53{bottom:480.798426px;}
.y369{bottom:482.863812px;}
.ye{bottom:484.864502px;}
.y2e0{bottom:485.290884px;}
.y7a{bottom:485.295150px;}
.y157{bottom:485.296554px;}
.yec{bottom:485.297310px;}
.y10a{bottom:485.297850px;}
.y1bc{bottom:487.185366px;}
.y200{bottom:489.257850px;}
.y1d4{bottom:489.346662px;}
.y177{bottom:489.347742px;}
.y18c{bottom:489.617616px;}
.y28d{bottom:490.877202px;}
.y28e{bottom:490.877850px;}
.y133{bottom:490.965582px;}
.yc2{bottom:490.966662px;}
.y2f9{bottom:491.057202px;}
.y2a4{bottom:491.147202px;}
.y397{bottom:493.029024px;}
.y330{bottom:493.030434px;}
.y52{bottom:496.007904px;}
.y368{bottom:497.533974px;}
.y22e{bottom:499.607571px;}
.yd{bottom:502.864502px;}
.ya1{bottom:503.747850px;}
.y18b{bottom:504.017526px;}
.y272{bottom:504.288228px;}
.y2df{bottom:505.360992px;}
.y79{bottom:505.365258px;}
.y156{bottom:505.366662px;}
.yeb{bottom:505.367418px;}
.y109{bottom:505.367742px;}
.y2f8{bottom:505.727364px;}
.y22d{bottom:505.907670px;}
.y1bb{bottom:507.255474px;}
.y396{bottom:507.699186px;}
.y1ff{bottom:508.967850px;}
.y1d3{bottom:509.416770px;}
.y176{bottom:509.417850px;}
.y271{bottom:510.588327px;}
.y28c{bottom:510.947310px;}
.y132{bottom:511.035690px;}
.yc1{bottom:511.036770px;}
.y2a3{bottom:511.217310px;}
.y51{bottom:511.308120px;}
.y32f{bottom:512.200434px;}
.y367{bottom:512.204136px;}
.yc{bottom:520.864502px;}
.y226{bottom:521.747949px;}
.y395{bottom:522.369348px;}
.y2f7{bottom:524.897364px;}
.y2de{bottom:525.431100px;}
.y78{bottom:525.435366px;}
.y155{bottom:525.436770px;}
.yea{bottom:525.437526px;}
.y108{bottom:525.437850px;}
.y26e{bottom:526.338048px;}
.y50{bottom:526.608336px;}
.y32e{bottom:526.870596px;}
.y1ba{bottom:527.325582px;}
.y1fe{bottom:528.767850px;}
.y1d2{bottom:529.486878px;}
.y1a4{bottom:529.937850px;}
.y28b{bottom:531.017418px;}
.y131{bottom:531.105798px;}
.yc0{bottom:531.106878px;}
.y22c{bottom:531.197571px;}
.y2a2{bottom:531.287418px;}
.y366{bottom:531.374136px;}
.y270{bottom:535.878228px;}
.y394{bottom:537.039510px;}
.y22b{bottom:537.497670px;}
.yb{bottom:538.864499px;}
.y2f6{bottom:539.567526px;}
.y32d{bottom:541.540758px;}
.y4f{bottom:541.817814px;}
.y26f{bottom:542.178327px;}
.ya0{bottom:542.357850px;}
.y2dd{bottom:545.501208px;}
.y77{bottom:545.505474px;}
.y154{bottom:545.506878px;}
.y107{bottom:545.507742px;}
.y175{bottom:545.777850px;}
.y365{bottom:546.044298px;}
.y1b9{bottom:547.395690px;}
.y1fd{bottom:548.477850px;}
.y1d1{bottom:549.556986px;}
.y28a{bottom:551.087526px;}
.y130{bottom:551.175906px;}
.ybf{bottom:551.176986px;}
.y2a1{bottom:551.357526px;}
.y2f5{bottom:554.237688px;}
.y393{bottom:556.209510px;}
.y32c{bottom:556.210920px;}
.ya{bottom:556.864499px;}
.y4e{bottom:557.118030px;}
.y364{bottom:560.714460px;}
.y1fc{bottom:561.977850px;}
.y22a{bottom:562.787571px;}
.y2dc{bottom:565.571316px;}
.y76{bottom:565.575582px;}
.y153{bottom:565.576986px;}
.ye9{bottom:565.577742px;}
.y106{bottom:565.577850px;}
.y1b8{bottom:567.465798px;}
.y26d{bottom:567.468228px;}
.y2f4{bottom:568.907850px;}
.y229{bottom:569.087670px;}
.y1d0{bottom:569.627094px;}
.y392{bottom:570.879672px;}
.y289{bottom:571.157634px;}
.y12f{bottom:571.246014px;}
.ybe{bottom:571.247094px;}
.y2a0{bottom:571.427634px;}
.y4d{bottom:572.418246px;}
.y26c{bottom:573.768327px;}
.y32b{bottom:575.380920px;}
.y363{bottom:575.384622px;}
.y1fb{bottom:581.687850px;}
.y18a{bottom:583.847850px;}
.y391{bottom:585.549834px;}
.y2db{bottom:585.641424px;}
.y75{bottom:585.645690px;}
.y152{bottom:585.647094px;}
.y105{bottom:585.647742px;}
.ye8{bottom:585.647850px;}
.y1b7{bottom:587.535906px;}
.y4c{bottom:587.627724px;}
.y1cf{bottom:589.697202px;}
.y32a{bottom:590.051082px;}
.y288{bottom:591.227742px;}
.y12e{bottom:591.316122px;}
.ybd{bottom:591.317202px;}
.y29f{bottom:591.497742px;}
.y228{bottom:594.377571px;}
.y362{bottom:594.554622px;}
.y1fa{bottom:595.187850px;}
.y26b{bottom:599.058228px;}
.y227{bottom:600.677670px;}
.y4b{bottom:602.927940px;}
.y390{bottom:604.719834px;}
.y329{bottom:604.721244px;}
.y26a{bottom:605.358327px;}
.y2da{bottom:605.711532px;}
.y74{bottom:605.715798px;}
.y151{bottom:605.717202px;}
.ye7{bottom:605.717742px;}
.y104{bottom:605.717850px;}
.y1b6{bottom:607.606014px;}
.y174{bottom:607.876230px;}
.y361{bottom:609.224784px;}
.y1ce{bottom:609.767310px;}
.y287{bottom:611.297850px;}
.y12d{bottom:611.386230px;}
.ybc{bottom:611.387310px;}
.y29e{bottom:611.567850px;}
.y1f9{bottom:614.897850px;}
.y4a{bottom:618.228156px;}
.y38f{bottom:619.389996px;}
.y2f3{bottom:622.637850px;}
.y328{bottom:623.891244px;}
.y360{bottom:623.894946px;}
.y9f{bottom:625.781640px;}
.y73{bottom:625.785906px;}
.y150{bottom:625.787310px;}
.y103{bottom:625.787742px;}
.ye6{bottom:625.787850px;}
.y225{bottom:625.967571px;}
.y1b5{bottom:627.676122px;}
.y173{bottom:627.946338px;}
.y1cd{bottom:629.837418px;}
.y269{bottom:630.648228px;}
.y286{bottom:631.367634px;}
.y12c{bottom:631.456338px;}
.ybb{bottom:631.457418px;}
.y224{bottom:632.267670px;}
.y49{bottom:633.437634px;}
.y38e{bottom:634.060158px;}
.y1f8{bottom:634.607850px;}
.y268{bottom:636.948327px;}
.y327{bottom:638.561406px;}
.y35f{bottom:638.565108px;}
.y9{bottom:645.510000px;}
.y9e{bottom:645.851748px;}
.y72{bottom:645.856014px;}
.y14f{bottom:645.857418px;}
.ye5{bottom:645.857742px;}
.y102{bottom:645.857850px;}
.y1b4{bottom:647.746230px;}
.y172{bottom:648.016446px;}
.y1f7{bottom:648.107850px;}
.y38d{bottom:648.730320px;}
.y48{bottom:648.737850px;}
.y1cc{bottom:649.907526px;}
.y285{bottom:651.437742px;}
.y12b{bottom:651.526446px;}
.yba{bottom:651.527526px;}
.y261{bottom:652.698048px;}
.y326{bottom:653.231568px;}
.y35e{bottom:653.235270px;}
.y223{bottom:657.557571px;}
.y267{bottom:662.238228px;}
.y38c{bottom:663.400482px;}
.y222{bottom:663.857670px;}
.y9d{bottom:665.921856px;}
.y71{bottom:665.926122px;}
.y14e{bottom:665.927526px;}
.y101{bottom:665.927742px;}
.ye4{bottom:665.927850px;}
.y8{bottom:666.771000px;}
.y1b3{bottom:667.816338px;}
.y1f6{bottom:667.817850px;}
.y35d{bottom:667.905432px;}
.y171{bottom:668.086554px;}
.y29d{bottom:668.357850px;}
.y266{bottom:668.538327px;}
.y1cb{bottom:669.977634px;}
.y284{bottom:671.507850px;}
.y12a{bottom:671.596554px;}
.yb9{bottom:671.597634px;}
.y325{bottom:672.401568px;}
.y45{bottom:673.038000px;}
.y47{bottom:676.277850px;}
.y38b{bottom:682.570482px;}
.y9c{bottom:685.991964px;}
.y70{bottom:685.996230px;}
.ye3{bottom:685.997742px;}
.y100{bottom:685.997850px;}
.y324{bottom:687.071730px;}
.y35c{bottom:687.075432px;}
.y1f5{bottom:687.617850px;}
.y1b2{bottom:687.886446px;}
.y170{bottom:688.156662px;}
.y221{bottom:689.147571px;}
.y1ca{bottom:690.047742px;}
.y129{bottom:691.666662px;}
.yb8{bottom:691.667742px;}
.y265{bottom:693.828228px;}
.y220{bottom:695.447670px;}
.y38a{bottom:697.240644px;}
.y264{bottom:700.128327px;}
.y323{bottom:701.741892px;}
.y35b{bottom:701.745594px;}
.y9b{bottom:706.062072px;}
.y6f{bottom:706.066338px;}
.yff{bottom:706.067634px;}
.y14d{bottom:706.067742px;}
.ye2{bottom:706.067850px;}
.y1f4{bottom:707.327850px;}
.y1b1{bottom:707.956554px;}
.y16f{bottom:708.226770px;}
.y1c7{bottom:710.117418px;}
.y1c9{bottom:710.117850px;}
.y219{bottom:711.287949px;}
.y128{bottom:711.736770px;}
.yb7{bottom:711.737850px;}
.y389{bottom:711.910806px;}
.y35a{bottom:716.415756px;}
.y1c8{bottom:716.507850px;}
.y2d9{bottom:719.205645px;}
.y21f{bottom:720.737571px;}
.y1f3{bottom:720.827850px;}
.y322{bottom:720.911892px;}
.y263{bottom:725.418228px;}
.y9a{bottom:726.132180px;}
.y6e{bottom:726.136446px;}
.ye1{bottom:726.137742px;}
.y14c{bottom:726.137850px;}
.y7{bottom:726.298500px;}
.y388{bottom:726.580968px;}
.y21e{bottom:727.037670px;}
.y1b0{bottom:728.026662px;}
.y16e{bottom:728.296878px;}
.y1c6{bottom:730.187526px;}
.y44{bottom:730.997850px;}
.y359{bottom:731.085918px;}
.y262{bottom:731.718327px;}
.y127{bottom:731.806878px;}
.y321{bottom:735.582054px;}
.y42{bottom:735.678000px;}
.y2d8{bottom:738.195447px;}
.y1f2{bottom:740.537850px;}
.y41{bottom:742.967850px;}
.y2d7{bottom:744.495546px;}
.y2d2{bottom:744.586104px;}
.y387{bottom:745.750968px;}
.y99{bottom:746.202288px;}
.y6d{bottom:746.206554px;}
.y14b{bottom:746.207742px;}
.ye0{bottom:746.207850px;}
.y1af{bottom:748.096770px;}
.yb6{bottom:748.098678px;}
.y16d{bottom:748.366986px;}
.y320{bottom:750.252216px;}
.y358{bottom:750.255918px;}
.y1c5{bottom:750.257634px;}
.y126{bottom:751.876986px;}
.y21d{bottom:752.327571px;}
.y3{bottom:752.599495px;}
.y40{bottom:755.027850px;}
.y260{bottom:757.008228px;}
.y2d1{bottom:757.186302px;}
.y21c{bottom:758.627670px;}
.y1f1{bottom:760.247850px;}
.y386{bottom:760.421130px;}
.y25f{bottom:763.308327px;}
.y31f{bottom:764.922378px;}
.y357{bottom:764.926080px;}
.y98{bottom:766.272396px;}
.y6c{bottom:766.276662px;}
.ydf{bottom:766.277742px;}
.y14a{bottom:766.277850px;}
.yb5{bottom:766.278264px;}
.y1ae{bottom:768.166878px;}
.y16c{bottom:768.437094px;}
.y2d6{bottom:769.785447px;}
.y2d0{bottom:769.786500px;}
.y1c4{bottom:770.327742px;}
.y125{bottom:771.947094px;}
.y385{bottom:775.091292px;}
.y356{bottom:779.596242px;}
.y1f0{bottom:780.047850px;}
.y3e{bottom:780.317850px;}
.y2d5{bottom:782.385645px;}
.y2cf{bottom:782.386698px;}
.y21b{bottom:783.917571px;}
.y31e{bottom:784.092378px;}
.yb4{bottom:784.457850px;}
.y97{bottom:786.342504px;}
.y6b{bottom:786.346770px;}
.y149{bottom:786.347742px;}
.yde{bottom:786.347850px;}
.y3f{bottom:787.967850px;}
.y1ad{bottom:788.236986px;}
.y16b{bottom:788.507202px;}
.y25e{bottom:788.598228px;}
.y384{bottom:789.761454px;}
.y21a{bottom:790.217670px;}
.y1c3{bottom:790.397850px;}
.y124{bottom:792.017202px;}
.y25d{bottom:794.898327px;}
.y2ce{bottom:794.986896px;}
.y31d{bottom:798.762540px;}
.y355{bottom:798.766242px;}
.y1ef{bottom:799.757850px;}
.y2d4{bottom:801.375447px;}
.y96{bottom:806.412612px;}
.y6a{bottom:806.416878px;}
.ydd{bottom:806.417634px;}
.y148{bottom:806.417850px;}
.y2d3{bottom:807.675546px;}
.y2cd{bottom:807.677652px;}
.y1ac{bottom:808.307094px;}
.y16a{bottom:808.577310px;}
.y383{bottom:808.931454px;}
.y123{bottom:812.087310px;}
.y31c{bottom:813.432702px;}
.y354{bottom:813.436404px;}
.y218{bottom:815.507571px;}
.y3d{bottom:819.017850px;}
.y1ee{bottom:819.467850px;}
.y25c{bottom:820.188228px;}
.y217{bottom:821.807670px;}
.y382{bottom:823.601616px;}
.y216{bottom:825.047751px;}
.y95{bottom:826.482720px;}
.y69{bottom:826.486986px;}
.ydc{bottom:826.487742px;}
.y25b{bottom:826.488327px;}
.y1c2{bottom:826.758264px;}
.y31b{bottom:828.102864px;}
.y353{bottom:828.106566px;}
.y1ab{bottom:828.377202px;}
.y169{bottom:828.647418px;}
.y214{bottom:831.347850px;}
.y122{bottom:832.157418px;}
.y2cc{bottom:832.967553px;}
.y3a{bottom:834.678000px;}
.y2cb{bottom:839.267652px;}
.y1ed{bottom:839.267850px;}
.y39{bottom:840.076950px;}
.y3c{bottom:840.077850px;}
.y254{bottom:842.238048px;}
.y381{bottom:842.771616px;}
.y352{bottom:842.776728px;}
.y1c1{bottom:844.937850px;}
.y2c7{bottom:845.657256px;}
.y94{bottom:846.552828px;}
.y68{bottom:846.557094px;}
.ydb{bottom:846.557850px;}
.y215{bottom:847.097571px;}
.y31a{bottom:847.272864px;}
.y1aa{bottom:848.447310px;}
.y168{bottom:848.717526px;}
.y25a{bottom:851.778228px;}
.y121{bottom:852.227526px;}
.y380{bottom:857.441778px;}
.y259{bottom:858.078327px;}
.y2c6{bottom:858.257454px;}
.y1ec{bottom:858.977850px;}
.y38{bottom:861.047850px;}
.y319{bottom:861.943026px;}
.y351{bottom:861.946728px;}
.y2ca{bottom:864.557553px;}
.y93{bottom:866.622936px;}
.y67{bottom:866.627202px;}
.y147{bottom:866.627742px;}
.y1a9{bottom:868.517418px;}
.y167{bottom:868.787634px;}
.y2c5{bottom:870.857652px;}
.y249{bottom:871.757850px;}
.y37f{bottom:872.111940px;}
.y120{bottom:872.297634px;}
.y318{bottom:876.613188px;}
.y350{bottom:876.616890px;}
.y2c9{bottom:877.157751px;}
.y1eb{bottom:878.687850px;}
.y2{bottom:879.369000px;}
.y258{bottom:883.368228px;}
.y2c4{bottom:883.457850px;}
.y92{bottom:886.693044px;}
.yda{bottom:886.693620px;}
.y66{bottom:886.697310px;}
.y146{bottom:886.697850px;}
.y1a8{bottom:888.587526px;}
.y166{bottom:888.857742px;}
.y257{bottom:889.668327px;}
.y37e{bottom:891.281940px;}
.y34f{bottom:891.287052px;}
.y11f{bottom:892.367742px;}
.y317{bottom:895.783188px;}
.y2c8{bottom:896.147553px;}
.y1ea{bottom:898.487850px;}
.y2c3{bottom:902.447652px;}
.y1c0{bottom:903.617850px;}
.y37d{bottom:905.952102px;}
.y34e{bottom:905.957214px;}
.y91{bottom:906.763152px;}
.yd9{bottom:906.763728px;}
.y65{bottom:906.767418px;}
.y145{bottom:906.767592px;}
.y1a7{bottom:908.657634px;}
.y165{bottom:908.927850px;}
.y316{bottom:910.453350px;}
.y11e{bottom:912.437850px;}
.y256{bottom:914.958228px;}
.y1e9{bottom:918.197850px;}
.y37c{bottom:920.622264px;}
.y255{bottom:921.258327px;}
.y315{bottom:925.123512px;}
.y34d{bottom:925.127214px;}
.y37{bottom:926.567652px;}
.y90{bottom:926.833260px;}
.yd8{bottom:926.833836px;}
.y64{bottom:926.837526px;}
.y144{bottom:926.837700px;}
.y2bb{bottom:927.737553px;}
.y2c2{bottom:928.367247px;}
.y1a6{bottom:928.727742px;}
.y1e8{bottom:931.697850px;}
.y2bf{bottom:934.036599px;}
.y36{bottom:939.167850px;}
.y37b{bottom:939.792264px;}
.y314{bottom:939.793674px;}
.y34c{bottom:939.797376px;}
.y2c1{bottom:940.336698px;}
.y2b8{bottom:940.337751px;}
.y164{bottom:945.287850px;}
.y253{bottom:946.548228px;}
.y2be{bottom:946.636797px;}
.y2b7{bottom:946.637850px;}
.y8f{bottom:946.903368px;}
.yd7{bottom:946.903944px;}
.y63{bottom:946.907634px;}
.y1a5{bottom:948.797850px;}
.y11d{bottom:948.798678px;}
.y252{bottom:949.697751px;}
.y2bd{bottom:950.417067px;}
.y1e7{bottom:951.407850px;}
.y2c0{bottom:952.936896px;}
.y2ba{bottom:952.937949px;}
.y37a{bottom:954.462426px;}
.y34b{bottom:954.467538px;}
.y251{bottom:955.997850px;}
.y1e6{bottom:958.157850px;}
.y313{bottom:958.963674px;}
.y2bc{bottom:963.017265px;}
.y35{bottom:963.287850px;}
.y2b9{bottom:965.538147px;}
.y1{bottom:966.726000px;}
.y8e{bottom:966.973476px;}
.yd6{bottom:966.974052px;}
.y62{bottom:966.977742px;}
.y11c{bottom:966.978264px;}
.y379{bottom:969.132588px;}
.y34a{bottom:969.137700px;}
.y312{bottom:973.633836px;}
.y163{bottom:983.897850px;}
.y11b{bottom:985.157850px;}
.y8d{bottom:987.043584px;}
.yd5{bottom:987.044160px;}
.y1bf{bottom:987.045384px;}
.y61{bottom:987.047850px;}
.y378{bottom:988.302588px;}
.y311{bottom:988.303998px;}
.y349{bottom:988.307700px;}
.y213{bottom:990.197700px;}
.y34{bottom:1000.637304px;}
.y33{bottom:1013.237502px;}
.y32{bottom:1025.837700px;}
.y5f{bottom:1032.767700px;}
.h18{height:11.880000px;}
.h13{height:12.780000px;}
.h14{height:14.670000px;}
.h12{height:18.720703px;}
.h1d{height:24.482637px;}
.hf{height:24.660000px;}
.h26{height:26.790480px;}
.hc{height:29.163164px;}
.h24{height:31.000320px;}
.hb{height:31.311035px;}
.h7{height:32.130000px;}
.h11{height:32.755957px;}
.h15{height:33.244805px;}
.h17{height:33.478594px;}
.hd{height:33.852305px;}
.h1b{height:35.278770px;}
.h16{height:35.644219px;}
.h29{height:35.680171px;}
.h1a{height:38.521758px;}
.ha{height:39.604922px;}
.h19{height:45.710684px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.027344px;}
.h25{height:54.361256px;}
.h21{height:54.363560px;}
.h22{height:54.363884px;}
.h2{height:55.080000px;}
.h20{height:56.200716px;}
.h1f{height:57.951035px;}
.h1e{height:58.311035px;}
.he{height:59.761230px;}
.h10{height:63.355957px;}
.h5{height:64.260000px;}
.h27{height:64.442876px;}
.h23{height:67.323884px;}
.h1c{height:74.516542px;}
.h28{height:79.563956px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:12.420000px;}
.w5{width:25.380000px;}
.w7{width:41.760000px;}
.w4{width:74.520000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:20.250000px;}
.x16{left:39.870000px;}
.xe{left:64.080000px;}
.x5{left:89.280000px;}
.x2c{left:91.530000px;}
.x44{left:92.880000px;}
.x6b{left:94.051872px;}
.x45{left:95.310000px;}
.x13{left:96.840000px;}
.x51{left:98.280315px;}
.x7{left:99.449941px;}
.x1{left:102.045000px;}
.x6{left:104.310000px;}
.x2{left:106.297500px;}
.x1a{left:109.350708px;}
.x38{left:112.499046px;}
.x3f{left:114.117390px;}
.x3c{left:116.188200px;}
.x21{left:118.889888px;}
.x55{left:120.961080px;}
.x4b{left:122.220468px;}
.x52{left:125.190783px;}
.x32{left:127.887678px;}
.x14{left:132.300000px;}
.x24{left:134.010000px;}
.x22{left:135.450000px;}
.x27{left:136.710000px;}
.x25{left:139.590287px;}
.x23{left:141.030287px;}
.x28{left:142.830360px;}
.x67{left:153.901233px;}
.x66{left:155.520747px;}
.x69{left:157.952124px;}
.x6a{left:162.272583px;}
.x68{left:175.141296px;}
.x9{left:183.240000px;}
.x4d{left:185.130000px;}
.x56{left:188.910000px;}
.x4{left:203.484001px;}
.x39{left:206.729280px;}
.x40{left:213.747291px;}
.x58{left:217.169685px;}
.x57{left:219.150000px;}
.x3e{left:223.828425px;}
.x20{left:226.530000px;}
.x3d{left:229.858911px;}
.x3a{left:232.829865px;}
.x37{left:236.788344px;}
.x35{left:238.137363px;}
.x26{left:240.210000px;}
.x2a{left:242.370000px;}
.x3b{left:244.079271px;}
.x2b{left:245.700000px;}
.x36{left:248.758344px;}
.xa{left:252.180000px;}
.x42{left:266.220000px;}
.x33{left:269.458065px;}
.x34{left:273.147219px;}
.xc{left:305.099865px;}
.x59{left:346.140072px;}
.x5a{left:354.960000px;}
.x5b{left:360.179721px;}
.x5c{left:399.689334px;}
.xb{left:401.760000px;}
.x2e{left:412.469640px;}
.x8{left:416.610000px;}
.x2d{left:423.179199px;}
.x19{left:431.640000px;}
.x29{left:435.870369px;}
.x49{left:438.570099px;}
.x50{left:443.249433px;}
.x10{left:446.040000px;}
.x4e{left:448.650689px;}
.x5d{left:450.719820px;}
.x3{left:454.959000px;}
.x1e{left:461.340000px;}
.x1c{left:462.870000px;}
.x1f{left:466.920287px;}
.x1d{left:468.450287px;}
.x4c{left:470.970909px;}
.x53{left:475.651296px;}
.x4a{left:476.730819px;}
.x43{left:479.610000px;}
.x5f{left:497.609910px;}
.x17{left:503.640000px;}
.x5e{left:508.949667px;}
.x4f{left:512.550000px;}
.x54{left:516.330000px;}
.x2f{left:518.578902px;}
.x46{left:528.029820px;}
.x15{left:536.220000px;}
.x61{left:544.050369px;}
.x65{left:550.350468px;}
.x1b{left:553.500000px;}
.x60{left:566.460315px;}
.x47{left:577.079613px;}
.x30{left:618.748650px;}
.x31{left:624.688164px;}
.x62{left:627.750180px;}
.xd{left:635.220000px;}
.x48{left:645.930018px;}
.x63{left:660.240495px;}
.x64{left:670.230306px;}
.x11{left:684.360000px;}
.x41{left:690.210000px;}
.x18{left:694.169820px;}
.xf{left:709.650000px;}
@media print{
.v7{vertical-align:-33.598656pt;}
.v3{vertical-align:-27.200000pt;}
.vc{vertical-align:-22.718592pt;}
.v4{vertical-align:-16.640000pt;}
.va{vertical-align:-11.520288pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v8{vertical-align:22.400352pt;}
.v6{vertical-align:24.000000pt;}
.v2{vertical-align:27.200000pt;}
.vb{vertical-align:31.359744pt;}
.v9{vertical-align:33.920640pt;}
.v5{vertical-align:36.478176pt;}
.vd{vertical-align:44.800704pt;}
.lsf{letter-spacing:-5.191200pt;}
.ls10{letter-spacing:-4.312800pt;}
.ls26{letter-spacing:-3.871296pt;}
.lsd{letter-spacing:-3.787200pt;}
.ls92{letter-spacing:-3.198976pt;}
.ls4{letter-spacing:-3.196000pt;}
.ls43{letter-spacing:-2.952704pt;}
.ls28{letter-spacing:-2.931552pt;}
.ls18{letter-spacing:-2.885440pt;}
.ls9a{letter-spacing:-2.880896pt;}
.ls99{letter-spacing:-2.753664pt;}
.ls6{letter-spacing:-2.624064pt;}
.ls2f{letter-spacing:-2.619008pt;}
.ls2a{letter-spacing:-2.605824pt;}
.ls96{letter-spacing:-2.567360pt;}
.ls5{letter-spacing:-2.564000pt;}
.ls86{letter-spacing:-2.562816pt;}
.ls83{letter-spacing:-2.558272pt;}
.ls3d{letter-spacing:-2.431936pt;}
.ls3b{letter-spacing:-2.295424pt;}
.ls38{letter-spacing:-2.290368pt;}
.ls27{letter-spacing:-2.280096pt;}
.ls8b{letter-spacing:-2.244736pt;}
.ls1f{letter-spacing:-2.240192pt;}
.lsb{letter-spacing:-2.239200pt;}
.ls4e{letter-spacing:-2.238656pt;}
.ls15{letter-spacing:-2.236000pt;}
.ls6e{letter-spacing:-2.234400pt;}
.ls25{letter-spacing:-1.974784pt;}
.ls5f{letter-spacing:-1.971840pt;}
.ls35{letter-spacing:-1.966784pt;}
.ls32{letter-spacing:-1.961728pt;}
.ls3e{letter-spacing:-1.956672pt;}
.ls97{letter-spacing:-1.931200pt;}
.ls88{letter-spacing:-1.926656pt;}
.ls7f{letter-spacing:-1.924416pt;}
.ls1e{letter-spacing:-1.922112pt;}
.ls89{letter-spacing:-1.917568pt;}
.ls11{letter-spacing:-1.916928pt;}
.ls85{letter-spacing:-1.908480pt;}
.ls42{letter-spacing:-1.739264pt;}
.ls31{letter-spacing:-1.643200pt;}
.ls8{letter-spacing:-1.638144pt;}
.ls30{letter-spacing:-1.633088pt;}
.ls29{letter-spacing:-1.628640pt;}
.ls44{letter-spacing:-1.622976pt;}
.ls4b{letter-spacing:-1.604512pt;}
.ls1b{letter-spacing:-1.604032pt;}
.ls22{letter-spacing:-1.599488pt;}
.ls98{letter-spacing:-1.590400pt;}
.ls78{letter-spacing:-1.446016pt;}
.ls46{letter-spacing:-1.395456pt;}
.ls3c{letter-spacing:-1.314560pt;}
.ls2b{letter-spacing:-1.309504pt;}
.ls23{letter-spacing:-1.290496pt;}
.ls21{letter-spacing:-1.285952pt;}
.ls1d{letter-spacing:-1.281408pt;}
.ls7e{letter-spacing:-1.276704pt;}
.ls14{letter-spacing:-1.276000pt;}
.ls9c{letter-spacing:-1.272320pt;}
.ls8e{letter-spacing:-1.267776pt;}
.ls40{letter-spacing:-1.046592pt;}
.ls24{letter-spacing:-0.991648pt;}
.ls36{letter-spacing:-0.990976pt;}
.ls7{letter-spacing:-0.985920pt;}
.ls2c{letter-spacing:-0.980864pt;}
.ls1a{letter-spacing:-0.972416pt;}
.ls7c{letter-spacing:-0.965952pt;}
.ls12{letter-spacing:-0.964608pt;}
.ls8a{letter-spacing:-0.963328pt;}
.ls84{letter-spacing:-0.958784pt;}
.ls16{letter-spacing:-0.956000pt;}
.ls93{letter-spacing:-0.954240pt;}
.ls90{letter-spacing:-0.949696pt;}
.ls45{letter-spacing:-0.697728pt;}
.ls2d{letter-spacing:-0.662336pt;}
.ls3{letter-spacing:-0.657280pt;}
.ls47{letter-spacing:-0.652224pt;}
.ls49{letter-spacing:-0.650016pt;}
.ls19{letter-spacing:-0.649792pt;}
.ls1c{letter-spacing:-0.645248pt;}
.ls7d{letter-spacing:-0.640224pt;}
.lsc{letter-spacing:-0.639392pt;}
.ls8d{letter-spacing:-0.636160pt;}
.ls53{letter-spacing:-0.636000pt;}
.ls87{letter-spacing:-0.631616pt;}
.ls81{letter-spacing:-0.520768pt;}
.ls82{letter-spacing:-0.505600pt;}
.ls3f{letter-spacing:-0.348864pt;}
.ls33{letter-spacing:-0.333696pt;}
.ls2e{letter-spacing:-0.328640pt;}
.ls60{letter-spacing:-0.325728pt;}
.ls66{letter-spacing:-0.321984pt;}
.ls56{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.318240pt;}
.ls52{letter-spacing:-0.316000pt;}
.ls4d{letter-spacing:-0.314944pt;}
.ls91{letter-spacing:-0.313536pt;}
.ls55{letter-spacing:-0.312000pt;}
.ls77{letter-spacing:-0.303264pt;}
.ls39{letter-spacing:-0.083200pt;}
.ls51{letter-spacing:-0.076800pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls7a{letter-spacing:-0.025600pt;}
.ls34{letter-spacing:-0.010112pt;}
.ls20{letter-spacing:-0.009088pt;}
.ls64{letter-spacing:-0.007488pt;}
.ls3a{letter-spacing:-0.005856pt;}
.ls2{letter-spacing:-0.005056pt;}
.ls4c{letter-spacing:-0.004256pt;}
.ls9{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls69{letter-spacing:0.003744pt;}
.ls4f{letter-spacing:0.004000pt;}
.ls63{letter-spacing:0.007488pt;}
.ls61{letter-spacing:0.018720pt;}
.ls65{letter-spacing:0.314496pt;}
.ls62{letter-spacing:0.318240pt;}
.ls80{letter-spacing:0.318528pt;}
.ls54{letter-spacing:0.324000pt;}
.ls6d{letter-spacing:0.343808pt;}
.ls41{letter-spacing:0.348864pt;}
.ls48{letter-spacing:0.353920pt;}
.ls4a{letter-spacing:1.299392pt;}
.ls9b{letter-spacing:6.402496pt;}
.ls37{letter-spacing:7.528384pt;}
.ls17{letter-spacing:8.443904pt;}
.ls95{letter-spacing:8.965312pt;}
.ls79{letter-spacing:9.035072pt;}
.ls9d{letter-spacing:9.283392pt;}
.ls94{letter-spacing:9.924096pt;}
.ls8c{letter-spacing:10.242176pt;}
.ls13{letter-spacing:13.762560pt;}
.lse{letter-spacing:18.540000pt;}
.ls50{letter-spacing:94.080000pt;}
.ls8f{letter-spacing:102.708032pt;}
.ls6f{letter-spacing:132.155712pt;}
.ls68{letter-spacing:132.473952pt;}
.ls7b{letter-spacing:133.125408pt;}
.ls57{letter-spacing:136.955520pt;}
.ls67{letter-spacing:146.221920pt;}
.ls59{letter-spacing:302.713632pt;}
.ls71{letter-spacing:310.392576pt;}
.ls5a{letter-spacing:453.432096pt;}
.ls72{letter-spacing:461.111040pt;}
.ls5b{letter-spacing:461.751264pt;}
.ls6b{letter-spacing:462.073248pt;}
.ls73{letter-spacing:469.433952pt;}
.ls6a{letter-spacing:471.991104pt;}
.ls58{letter-spacing:472.313088pt;}
.ls70{letter-spacing:479.673792pt;}
.ls6c{letter-spacing:482.552928pt;}
.ls5d{letter-spacing:482.871168pt;}
.ls75{letter-spacing:490.231872pt;}
.ls5c{letter-spacing:542.071296pt;}
.ls74{letter-spacing:549.753984pt;}
.ls5e{letter-spacing:552.633120pt;}
.ls76{letter-spacing:560.312064pt;}
.ws10{word-spacing:-20.455200pt;}
.ws1b{word-spacing:-14.692704pt;}
.ws1f{word-spacing:-12.887744pt;}
.ws24{word-spacing:-12.741120pt;}
.ws1c{word-spacing:-12.736064pt;}
.ws25{word-spacing:-12.731008pt;}
.ws23{word-spacing:-12.538880pt;}
.ws1{word-spacing:-12.467520pt;}
.ws1d{word-spacing:-12.190016pt;}
.ws21{word-spacing:-11.841152pt;}
.ws7{word-spacing:-11.496320pt;}
.ws1e{word-spacing:-11.492288pt;}
.ws22{word-spacing:-11.143424pt;}
.ws69{word-spacing:-10.864704pt;}
.ws20{word-spacing:-10.799616pt;}
.ws28{word-spacing:-10.550624pt;}
.ws68{word-spacing:-10.537536pt;}
.ws2a{word-spacing:-10.239936pt;}
.ws6{word-spacing:-10.214912pt;}
.ws8{word-spacing:-10.210368pt;}
.ws6c{word-spacing:-9.606016pt;}
.ws6d{word-spacing:-9.565120pt;}
.ws5d{word-spacing:-9.288864pt;}
.ws61{word-spacing:-9.285120pt;}
.ws2{word-spacing:-9.281376pt;}
.ws34{word-spacing:-8.959392pt;}
.ws5{word-spacing:-8.610880pt;}
.ws9{word-spacing:-8.537536pt;}
.ws5e{word-spacing:-8.008416pt;}
.wsa{word-spacing:-7.843680pt;}
.ws19{word-spacing:-7.538496pt;}
.ws67{word-spacing:-1.635840pt;}
.ws15{word-spacing:-1.315104pt;}
.ws16{word-spacing:-1.302912pt;}
.ws26{word-spacing:-1.001088pt;}
.wsb{word-spacing:-0.632000pt;}
.wse{word-spacing:-0.325728pt;}
.ws13{word-spacing:-0.320000pt;}
.ws3{word-spacing:-0.039360pt;}
.ws4{word-spacing:-0.024000pt;}
.ws18{word-spacing:-0.010112pt;}
.ws6a{word-spacing:-0.009088pt;}
.ws27{word-spacing:-0.005856pt;}
.wsd{word-spacing:-0.005056pt;}
.ws0{word-spacing:0.000000pt;}
.ws46{word-spacing:0.003744pt;}
.ws17{word-spacing:0.011232pt;}
.ws2b{word-spacing:0.012768pt;}
.ws12{word-spacing:0.158400pt;}
.ws6b{word-spacing:0.318080pt;}
.ws1a{word-spacing:0.318528pt;}
.ws54{word-spacing:0.321984pt;}
.ws6e{word-spacing:0.322624pt;}
.wsc{word-spacing:0.323584pt;}
.ws66{word-spacing:0.328640pt;}
.ws11{word-spacing:0.396000pt;}
.ws6f{word-spacing:0.640704pt;}
.ws14{word-spacing:0.645248pt;}
.ws65{word-spacing:0.962208pt;}
.wsf{word-spacing:1.872000pt;}
.ws62{word-spacing:22.718592pt;}
.ws64{word-spacing:24.643008pt;}
.ws51{word-spacing:41.704416pt;}
.ws3c{word-spacing:42.988608pt;}
.ws59{word-spacing:43.198272pt;}
.ws4b{word-spacing:43.516512pt;}
.ws45{word-spacing:44.796960pt;}
.ws4a{word-spacing:44.901792pt;}
.ws4f{word-spacing:44.905536pt;}
.ws58{word-spacing:44.909280pt;}
.ws43{word-spacing:45.751680pt;}
.ws57{word-spacing:45.815328pt;}
.ws53{word-spacing:46.077408pt;}
.ws3d{word-spacing:47.676096pt;}
.ws50{word-spacing:49.589280pt;}
.ws4c{word-spacing:49.596768pt;}
.ws3a{word-spacing:50.877216pt;}
.ws3e{word-spacing:52.247520pt;}
.ws44{word-spacing:52.251264pt;}
.ws39{word-spacing:52.266240pt;}
.ws37{word-spacing:52.269984pt;}
.ws4d{word-spacing:52.880256pt;}
.ws40{word-spacing:56.949984pt;}
.ws38{word-spacing:56.957472pt;}
.ws5a{word-spacing:58.646016pt;}
.ws41{word-spacing:58.649760pt;}
.ws4e{word-spacing:58.960512pt;}
.ws5f{word-spacing:63.984960pt;}
.ws52{word-spacing:64.677984pt;}
.ws5b{word-spacing:64.678592pt;}
.ws3b{word-spacing:64.696320pt;}
.ws42{word-spacing:64.701824pt;}
.ws3f{word-spacing:64.707552pt;}
.ws36{word-spacing:93.435264pt;}
.ws49{word-spacing:94.064256pt;}
.ws60{word-spacing:95.067648pt;}
.ws2f{word-spacing:103.356000pt;}
.ws5c{word-spacing:106.003872pt;}
.ws48{word-spacing:141.163776pt;}
.ws56{word-spacing:141.171264pt;}
.ws2e{word-spacing:141.756000pt;}
.ws35{word-spacing:242.895744pt;}
.ws63{word-spacing:255.161088pt;}
.ws29{word-spacing:447.995072pt;}
.ws33{word-spacing:460.485792pt;}
.ws47{word-spacing:469.759680pt;}
.ws55{word-spacing:471.040128pt;}
.ws2c{word-spacing:645.416000pt;}
.ws32{word-spacing:1233.852000pt;}
.ws2d{word-spacing:1611.144000pt;}
.ws30{word-spacing:1632.904000pt;}
.ws31{word-spacing:1650.820000pt;}
._72{margin-left:-1546.323520pt;}
._90{margin-left:-432.750752pt;}
._cf{margin-left:-394.044736pt;}
._84{margin-left:-371.618720pt;}
._89{margin-left:-370.205216pt;}
._82{margin-left:-368.698048pt;}
._80{margin-left:-352.669824pt;}
._8d{margin-left:-312.916480pt;}
._93{margin-left:-247.329152pt;}
._99{margin-left:-246.377696pt;}
._7a{margin-left:-232.153792pt;}
._75{margin-left:-213.191104pt;}
._9f{margin-left:-107.183232pt;}
._10{margin-left:-23.626400pt;}
._d{margin-left:-22.315200pt;}
._e{margin-left:-21.276000pt;}
._f{margin-left:-19.519200pt;}
._14{margin-left:-16.005120pt;}
._13{margin-left:-14.742816pt;}
._c4{margin-left:-12.299520pt;}
._15{margin-left:-11.355008pt;}
._c3{margin-left:-9.732800pt;}
._21{margin-left:-8.455232pt;}
._1f{margin-left:-7.518272pt;}
._20{margin-left:-6.373120pt;}
._7{margin-left:-3.310432pt;}
._6{margin-left:-2.013248pt;}
._1{margin-left:-0.965696pt;}
._3{width:0.980864pt;}
._4{width:2.012544pt;}
._8{width:3.459264pt;}
._17{width:5.382976pt;}
._b{width:6.409728pt;}
._16{width:7.385600pt;}
._2{width:8.509248pt;}
._a{width:9.490112pt;}
._0{width:10.476032pt;}
._9{width:11.795648pt;}
._2d{width:12.826752pt;}
._1d{width:13.777920pt;}
._11{width:14.667136pt;}
._12{width:15.992832pt;}
._18{width:17.063296pt;}
._22{width:18.233632pt;}
._1a{width:19.398176pt;}
._5{width:20.524000pt;}
._c{width:21.662688pt;}
._24{width:22.893568pt;}
._2a{width:24.152512pt;}
._19{width:25.194048pt;}
._1e{width:26.179968pt;}
._23{width:27.130496pt;}
._1b{width:28.111360pt;}
._1c{width:29.193344pt;}
._2b{width:30.103424pt;}
._29{width:31.260672pt;}
._26{width:32.702208pt;}
._25{width:33.688128pt;}
._27{width:34.982464pt;}
._28{width:36.342528pt;}
._cd{width:37.458336pt;}
._ce{width:38.472672pt;}
._d0{width:40.074048pt;}
._2c{width:41.206400pt;}
._b5{width:42.247296pt;}
._78{width:44.815168pt;}
._74{width:45.767072pt;}
._ac{width:53.774816pt;}
._71{width:55.336000pt;}
._c9{width:58.556160pt;}
._9b{width:59.522112pt;}
._81{width:62.028192pt;}
._95{width:63.299296pt;}
._76{width:64.374336pt;}
._7e{width:66.246080pt;}
._c7{width:72.051904pt;}
._ca{width:73.306368pt;}
._48{width:79.952000pt;}
._c8{width:80.952768pt;}
._c6{width:82.698368pt;}
._94{width:88.949952pt;}
._cb{width:90.125952pt;}
._a8{width:95.048928pt;}
._56{width:96.135424pt;}
._5b{width:97.163392pt;}
._67{width:99.265024pt;}
._59{width:102.391712pt;}
._be{width:104.008320pt;}
._cc{width:105.339488pt;}
._77{width:106.236000pt;}
._b3{width:107.183232pt;}
._79{width:108.171392pt;}
._4d{width:113.280000pt;}
._68{width:114.514272pt;}
._60{width:117.831072pt;}
._b0{width:121.608864pt;}
._c5{width:123.177600pt;}
._73{width:133.261184pt;}
._4a{width:151.680000pt;}
._5a{width:152.914272pt;}
._5e{width:158.479936pt;}
._37{width:164.162432pt;}
._6c{width:167.279872pt;}
._3e{width:169.701472pt;}
._2f{width:174.721568pt;}
._86{width:177.911136pt;}
._8f{width:184.309632pt;}
._40{width:185.621184pt;}
._88{width:187.536960pt;}
._32{width:190.724128pt;}
._8b{width:192.636288pt;}
._62{width:193.838784pt;}
._46{width:194.992896pt;}
._39{width:196.167552pt;}
._a5{width:198.727776pt;}
._bb{width:199.689984pt;}
._b8{width:201.288672pt;}
._7f{width:206.069760pt;}
._35{width:207.054400pt;}
._a4{width:212.157504pt;}
._3a{width:217.613536pt;}
._b4{width:221.116896pt;}
._43{width:229.768672pt;}
._3d{width:233.616096pt;}
._97{width:239.668416pt;}
._42{width:241.336480pt;}
._ab{width:245.756160pt;}
._3c{width:249.610144pt;}
._8c{width:253.757088pt;}
._c1{width:254.715552pt;}
._7c{width:256.950720pt;}
._92{width:258.556896pt;}
._a6{width:259.848576pt;}
._66{width:261.009696pt;}
._3f{width:262.735648pt;}
._7d{width:265.277376pt;}
._b9{width:268.807968pt;}
._a2{width:271.675872pt;}
._49{width:273.827872pt;}
._38{width:276.463520pt;}
._a3{width:278.089344pt;}
._33{width:281.319616pt;}
._9d{width:282.233952pt;}
._a9{width:283.207392pt;}
._b2{width:287.048736pt;}
._44{width:288.344000pt;}
._af{width:290.878848pt;}
._45{width:292.244480pt;}
._a0{width:293.746752pt;}
._34{width:302.757088pt;}
._47{width:307.268160pt;}
._51{width:308.639040pt;}
._bf{width:316.518272pt;}
._36{width:319.010752pt;}
._5c{width:336.373120pt;}
._9c{width:351.995904pt;}
._ad{width:361.277280pt;}
._4e{width:362.240000pt;}
._57{width:363.985088pt;}
._83{width:371.213856pt;}
._b6{width:378.776992pt;}
._30{width:393.269440pt;}
._6e{width:395.623040pt;}
._6b{width:407.483040pt;}
._2e{width:412.151040pt;}
._31{width:421.756832pt;}
._41{width:428.787744pt;}
._4b{width:439.360000pt;}
._3b{width:444.790304pt;}
._98{width:459.853824pt;}
._9a{width:467.853984pt;}
._c2{width:475.922880pt;}
._a7{width:478.093568pt;}
._7b{width:479.048544pt;}
._a1{width:479.950976pt;}
._bd{width:485.301312pt;}
._b1{width:487.033824pt;}
._aa{width:490.583808pt;}
._4f{width:493.927904pt;}
._96{width:497.215616pt;}
._c0{width:504.265312pt;}
._87{width:521.000064pt;}
._8a{width:529.615008pt;}
._69{width:532.191968pt;}
._52{width:537.949664pt;}
._8e{width:538.892640pt;}
._9e{width:544.074336pt;}
._ba{width:546.560352pt;}
._53{width:548.235936pt;}
._85{width:549.454464pt;}
._ae{width:551.435040pt;}
._b7{width:556.627968pt;}
._65{width:566.637696pt;}
._91{width:589.773600pt;}
._bc{width:596.730720pt;}
._64{width:615.793088pt;}
._4c{width:712.979968pt;}
._55{width:909.953696pt;}
._6d{width:916.631136pt;}
._70{width:957.429696pt;}
._6a{width:1067.108000pt;}
._5f{width:1120.561696pt;}
._63{width:1166.652000pt;}
._54{width:1175.612000pt;}
._50{width:1259.823392pt;}
._6f{width:1511.921696pt;}
._58{width:1580.736000pt;}
._5d{width:1598.336000pt;}
._61{width:1611.460000pt;}
.fs9{font-size:4.160000pt;}
.fsc{font-size:24.000000pt;}
.fs10{font-size:32.320000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.440000pt;}
.fsb{font-size:39.360000pt;}
.fs6{font-size:40.000000pt;}
.fsd{font-size:42.560000pt;}
.fse{font-size:45.440000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:58.560000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.239867pt;}
.y43{bottom:2.399867pt;}
.y46{bottom:2.879867pt;}
.y3b{bottom:4.799867pt;}
.y6{bottom:44.973338pt;}
.y5e{bottom:58.815867pt;}
.y60{bottom:65.615509pt;}
.y5c{bottom:65.936000pt;}
.y5{bottom:67.373337pt;}
.y5b{bottom:68.175427pt;}
.y5a{bottom:77.455867pt;}
.y4{bottom:89.773337pt;}
.y29{bottom:103.455867pt;}
.y348{bottom:105.295147pt;}
.y248{bottom:107.135691pt;}
.y1e4{bottom:107.295867pt;}
.y1a3{bottom:107.373851pt;}
.y24e{bottom:109.855483pt;}
.y250{bottom:109.855771pt;}
.y2f2{bottom:110.247947pt;}
.y8c{bottom:110.251739pt;}
.yfe{bottom:110.253659pt;}
.y11a{bottom:110.255771pt;}
.yb3{bottom:112.174235pt;}
.y310{bottom:112.572843pt;}
.y247{bottom:112.735779pt;}
.y189{bottom:113.854043pt;}
.yd4{bottom:115.293083pt;}
.y2b6{bottom:115.453563pt;}
.y31{bottom:116.975195pt;}
.y28{bottom:116.975867pt;}
.y347{bottom:118.335291pt;}
.y1a0{bottom:119.214043pt;}
.y1e3{bottom:119.215867pt;}
.y23{bottom:123.790666pt;}
.y30f{bottom:125.612987pt;}
.y1a2{bottom:125.614003pt;}
.y24d{bottom:127.695579pt;}
.y24f{bottom:127.695867pt;}
.y2f1{bottom:128.088043pt;}
.y8b{bottom:128.091835pt;}
.yfd{bottom:128.093755pt;}
.y162{bottom:128.095675pt;}
.y119{bottom:128.095867pt;}
.yb2{bottom:130.014331pt;}
.y346{bottom:131.375435pt;}
.y188{bottom:131.694139pt;}
.y19f{bottom:132.013963pt;}
.y27{bottom:133.055867pt;}
.yd3{bottom:133.133179pt;}
.y2b5{bottom:133.293659pt;}
.y30{bottom:134.815291pt;}
.y246{bottom:135.215691pt;}
.y212{bottom:135.775867pt;}
.y1e2{bottom:136.815867pt;}
.y245{bottom:140.815779pt;}
.y30e{bottom:142.652987pt;}
.y1a1{bottom:143.774355pt;}
.y24c{bottom:145.535675pt;}
.y2f0{bottom:145.928139pt;}
.y8a{bottom:145.931931pt;}
.yfc{bottom:145.933851pt;}
.y118{bottom:145.935771pt;}
.yb1{bottom:147.854427pt;}
.y345{bottom:148.415435pt;}
.y187{bottom:149.534235pt;}
.y29c{bottom:150.895387pt;}
.y143{bottom:150.972315pt;}
.yd2{bottom:150.973275pt;}
.y2b4{bottom:151.133755pt;}
.y2f{bottom:152.655387pt;}
.y211{bottom:153.295867pt;}
.y1e1{bottom:154.335867pt;}
.y30d{bottom:155.693131pt;}
.y344{bottom:161.455579pt;}
.y19e{bottom:162.013443pt;}
.y244{bottom:163.295691pt;}
.y24b{bottom:163.375771pt;}
.y2ef{bottom:163.768235pt;}
.y89{bottom:163.772027pt;}
.yfb{bottom:163.773947pt;}
.y117{bottom:163.775867pt;}
.yb0{bottom:165.694523pt;}
.y186{bottom:167.374331pt;}
.y19c{bottom:167.453675pt;}
.y30c{bottom:168.733275pt;}
.y29b{bottom:168.735483pt;}
.y142{bottom:168.812411pt;}
.yd1{bottom:168.813371pt;}
.y243{bottom:168.895779pt;}
.y2b3{bottom:168.973851pt;}
.y2e{bottom:170.495483pt;}
.y26{bottom:170.735771pt;}
.y210{bottom:170.895867pt;}
.y1e0{bottom:171.855867pt;}
.y343{bottom:174.495723pt;}
.y1a{bottom:175.052000pt;}
.y19b{bottom:180.253595pt;}
.y24a{bottom:181.215867pt;}
.y2ee{bottom:181.608331pt;}
.y88{bottom:181.612123pt;}
.yfa{bottom:181.614043pt;}
.y116{bottom:181.615675pt;}
.y30b{bottom:181.773419pt;}
.yaf{bottom:183.534619pt;}
.y185{bottom:185.214427pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y29a{bottom:186.575579pt;}
.y141{bottom:186.652507pt;}
.yd0{bottom:186.653467pt;}
.y2b2{bottom:186.813947pt;}
.y342{bottom:187.535867pt;}
.y2d{bottom:188.335579pt;}
.y20f{bottom:188.415867pt;}
.y25{bottom:188.575867pt;}
.y1df{bottom:189.455867pt;}
.y242{bottom:191.375691pt;}
.y19a{bottom:193.053515pt;}
.y241{bottom:196.975779pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y19d{bottom:198.413947pt;}
.y30a{bottom:198.813419pt;}
.y2ed{bottom:199.448427pt;}
.y87{bottom:199.452219pt;}
.yf9{bottom:199.454139pt;}
.y115{bottom:199.455771pt;}
.yae{bottom:201.374715pt;}
.y184{bottom:203.054523pt;}
.y299{bottom:204.415675pt;}
.y140{bottom:204.492603pt;}
.ycf{bottom:204.493563pt;}
.y341{bottom:204.575867pt;}
.y2b1{bottom:204.654043pt;}
.y20e{bottom:205.935867pt;}
.y2c{bottom:206.175675pt;}
.y1de{bottom:206.975867pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y309{bottom:211.853563pt;}
.y199{bottom:216.653035pt;}
.y2ec{bottom:217.288523pt;}
.y86{bottom:217.292315pt;}
.yf8{bottom:217.294235pt;}
.y114{bottom:217.295867pt;}
.y340{bottom:217.607403pt;}
.yad{bottom:219.214811pt;}
.y240{bottom:219.455691pt;}
.y183{bottom:220.894619pt;}
.y298{bottom:222.255771pt;}
.y13f{bottom:222.332699pt;}
.yce{bottom:222.333659pt;}
.y2b0{bottom:222.494139pt;}
.y20d{bottom:223.535867pt;}
.y283{bottom:223.615691pt;}
.y2b{bottom:224.015771pt;}
.y1dd{bottom:224.495867pt;}
.y308{bottom:224.893707pt;}
.y23f{bottom:225.055779pt;}
.y282{bottom:229.215779pt;}
.y33f{bottom:230.647547pt;}
.y377{bottom:230.650837pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y198{bottom:234.893187pt;}
.y2eb{bottom:235.128619pt;}
.y85{bottom:235.132411pt;}
.yf7{bottom:235.134331pt;}
.y161{bottom:235.135675pt;}
.y20c{bottom:235.455867pt;}
.y3a5{bottom:235.694715pt;}
.yac{bottom:237.054907pt;}
.y182{bottom:238.734715pt;}
.y24{bottom:239.055867pt;}
.y238{bottom:239.135955pt;}
.y297{bottom:240.095867pt;}
.y13e{bottom:240.172795pt;}
.ycd{bottom:240.173755pt;}
.y2af{bottom:240.334235pt;}
.y2a{bottom:241.855867pt;}
.y307{bottom:241.933707pt;}
.y1dc{bottom:242.095867pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y33e{bottom:243.687691pt;}
.y376{bottom:243.690981pt;}
.y195{bottom:243.933995pt;}
.y23e{bottom:247.535691pt;}
.y3a4{bottom:248.734859pt;}
.y281{bottom:251.695691pt;}
.y2ea{bottom:252.968715pt;}
.y84{bottom:252.972507pt;}
.yf6{bottom:252.974427pt;}
.y113{bottom:252.974907pt;}
.y160{bottom:252.975771pt;}
.y197{bottom:253.053539pt;}
.y20b{bottom:253.055867pt;}
.y23d{bottom:253.135779pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yab{bottom:254.895003pt;}
.y306{bottom:254.973851pt;}
.y181{bottom:256.574811pt;}
.y33d{bottom:256.727835pt;}
.y375{bottom:256.731125pt;}
.y280{bottom:257.295779pt;}
.y13d{bottom:258.012891pt;}
.ycc{bottom:258.013851pt;}
.y2ae{bottom:258.174331pt;}
.y1db{bottom:259.615867pt;}
.y3a3{bottom:261.775003pt;}
.y20a{bottom:264.975867pt;}
.y305{bottom:268.013995pt;}
.y2e9{bottom:270.808811pt;}
.y83{bottom:270.812603pt;}
.yf5{bottom:270.814523pt;}
.y112{bottom:270.815003pt;}
.y15f{bottom:270.815867pt;}
.y196{bottom:271.293691pt;}
.yaa{bottom:272.735099pt;}
.y33c{bottom:273.767835pt;}
.y374{bottom:273.771125pt;}
.y180{bottom:274.414907pt;}
.y23c{bottom:275.615691pt;}
.y296{bottom:275.775387pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y13c{bottom:275.852987pt;}
.ycb{bottom:275.853947pt;}
.y2ad{bottom:276.014427pt;}
.y1da{bottom:277.135867pt;}
.y3a2{bottom:278.815003pt;}
.y27f{bottom:279.775691pt;}
.y304{bottom:281.054139pt;}
.y23b{bottom:281.215779pt;}
.y209{bottom:282.575867pt;}
.y27e{bottom:285.375779pt;}
.y33b{bottom:286.807979pt;}
.y373{bottom:286.811269pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y2e8{bottom:288.648907pt;}
.y82{bottom:288.652699pt;}
.yf4{bottom:288.654619pt;}
.y111{bottom:288.655099pt;}
.y15e{bottom:288.655675pt;}
.y194{bottom:289.533843pt;}
.ya9{bottom:290.575195pt;}
.y3a1{bottom:291.855147pt;}
.y17f{bottom:292.255003pt;}
.y295{bottom:293.615483pt;}
.y13b{bottom:293.693083pt;}
.yca{bottom:293.694043pt;}
.y2ac{bottom:293.854523pt;}
.y1d9{bottom:294.735867pt;}
.y303{bottom:298.094139pt;}
.y33a{bottom:299.848123pt;}
.y208{bottom:300.095867pt;}
.y23a{bottom:303.695691pt;}
.y372{bottom:303.851269pt;}
.y3a0{bottom:304.895291pt;}
.y2e7{bottom:306.489003pt;}
.y81{bottom:306.492795pt;}
.yf3{bottom:306.494715pt;}
.y110{bottom:306.495195pt;}
.y15d{bottom:306.495771pt;}
.y192{bottom:307.694195pt;}
.y27d{bottom:307.855691pt;}
.ya8{bottom:308.415291pt;}
.y239{bottom:309.295707pt;}
.y11{bottom:309.452000pt;}
.y17e{bottom:310.095099pt;}
.y302{bottom:311.134283pt;}
.y13a{bottom:311.533179pt;}
.yc9{bottom:311.534139pt;}
.y2ab{bottom:311.694619pt;}
.y1d8{bottom:312.255867pt;}
.y339{bottom:312.888267pt;}
.y27c{bottom:313.455779pt;}
.y371{bottom:316.891413pt;}
.y207{bottom:317.615867pt;}
.y39f{bottom:317.935435pt;}
.y1d7{bottom:318.255867pt;}
.y59{bottom:318.495867pt;}
.y301{bottom:324.174427pt;}
.y2e6{bottom:324.329099pt;}
.y80{bottom:324.332891pt;}
.yf2{bottom:324.334811pt;}
.y10f{bottom:324.335291pt;}
.y15c{bottom:324.335867pt;}
.y338{bottom:325.928411pt;}
.y193{bottom:325.934347pt;}
.ya7{bottom:326.255387pt;}
.y17d{bottom:327.935195pt;}
.y294{bottom:329.295675pt;}
.y139{bottom:329.373275pt;}
.yc8{bottom:329.374235pt;}
.y2aa{bottom:329.534715pt;}
.y206{bottom:329.615867pt;}
.y370{bottom:329.931557pt;}
.y237{bottom:331.775619pt;}
.y39e{bottom:334.975435pt;}
.y27b{bottom:335.935691pt;}
.y236{bottom:337.375707pt;}
.y300{bottom:341.214427pt;}
.y27a{bottom:341.535779pt;}
.y2e5{bottom:342.169195pt;}
.y7f{bottom:342.172987pt;}
.yf1{bottom:342.174907pt;}
.y10e{bottom:342.175387pt;}
.y337{bottom:342.968411pt;}
.y36f{bottom:342.971701pt;}
.y10{bottom:343.809333pt;}
.ya6{bottom:344.095483pt;}
.y191{bottom:344.174499pt;}
.y17c{bottom:345.775291pt;}
.y1e5{bottom:346.735867pt;}
.y293{bottom:347.135771pt;}
.y205{bottom:347.135867pt;}
.y138{bottom:347.213371pt;}
.yc7{bottom:347.214331pt;}
.y2a9{bottom:347.374811pt;}
.y39d{bottom:348.015579pt;}
.y233{bottom:351.455955pt;}
.y2ff{bottom:354.254571pt;}
.y273{bottom:355.536043pt;}
.y336{bottom:356.008555pt;}
.y58{bottom:359.456075pt;}
.y235{bottom:359.855619pt;}
.y2e4{bottom:360.009291pt;}
.y36e{bottom:360.011701pt;}
.y7e{bottom:360.013083pt;}
.y15b{bottom:360.014331pt;}
.yf0{bottom:360.015003pt;}
.y10d{bottom:360.015483pt;}
.ya5{bottom:361.935579pt;}
.y18f{bottom:362.334851pt;}
.yf{bottom:362.706666pt;}
.y17b{bottom:363.615387pt;}
.y279{bottom:364.015691pt;}
.y204{bottom:364.735867pt;}
.y292{bottom:364.975867pt;}
.y137{bottom:365.053467pt;}
.yc6{bottom:365.054427pt;}
.y39c{bottom:365.055579pt;}
.y2a8{bottom:365.214907pt;}
.y234{bottom:365.455707pt;}
.y2fe{bottom:367.294715pt;}
.y335{bottom:369.048699pt;}
.y278{bottom:369.615779pt;}
.y36d{bottom:373.051845pt;}
.y57{bottom:373.056267pt;}
.y2e3{bottom:377.849387pt;}
.y7d{bottom:377.853179pt;}
.y15a{bottom:377.854427pt;}
.yef{bottom:377.855099pt;}
.y10c{bottom:377.855579pt;}
.y39b{bottom:378.095723pt;}
.ya4{bottom:379.775675pt;}
.y2fd{bottom:380.334859pt;}
.y190{bottom:380.575003pt;}
.y17a{bottom:381.455483pt;}
.y334{bottom:382.088843pt;}
.y203{bottom:382.255867pt;}
.y291{bottom:382.815675pt;}
.y136{bottom:382.893563pt;}
.yc5{bottom:382.894523pt;}
.y2a7{bottom:383.055003pt;}
.y36c{bottom:386.091989pt;}
.y56{bottom:386.656459pt;}
.y232{bottom:387.935619pt;}
.y277{bottom:392.095691pt;}
.y2fc{bottom:393.375003pt;}
.y231{bottom:393.535707pt;}
.y39a{bottom:395.135723pt;}
.y2e2{bottom:395.689483pt;}
.y7c{bottom:395.693275pt;}
.y159{bottom:395.694523pt;}
.yee{bottom:395.695195pt;}
.y1be{bottom:397.373467pt;}
.ya3{bottom:397.615771pt;}
.y276{bottom:397.695779pt;}
.y18e{bottom:398.815155pt;}
.y333{bottom:399.128843pt;}
.y1d6{bottom:399.294619pt;}
.y179{bottom:399.295579pt;}
.y202{bottom:399.775867pt;}
.y55{bottom:400.175995pt;}
.y290{bottom:400.655771pt;}
.y135{bottom:400.733659pt;}
.yc4{bottom:400.734619pt;}
.y2a6{bottom:400.895099pt;}
.y36b{bottom:403.131989pt;}
.y2fb{bottom:406.415147pt;}
.y18d{bottom:407.855963pt;}
.y399{bottom:408.167877pt;}
.y332{bottom:412.168987pt;}
.y2e1{bottom:413.529579pt;}
.y7b{bottom:413.533371pt;}
.y158{bottom:413.534619pt;}
.yed{bottom:413.535291pt;}
.y10b{bottom:413.535771pt;}
.y54{bottom:413.776187pt;}
.y1bd{bottom:415.213563pt;}
.ya2{bottom:415.455867pt;}
.y230{bottom:416.015619pt;}
.y36a{bottom:416.172133pt;}
.y1d5{bottom:417.134715pt;}
.y178{bottom:417.135675pt;}
.y201{bottom:417.375867pt;}
.y28f{bottom:418.495867pt;}
.y134{bottom:418.573755pt;}
.yc3{bottom:418.574715pt;}
.y2a5{bottom:418.735195pt;}
.y275{bottom:420.175691pt;}
.y398{bottom:421.208021pt;}
.y22f{bottom:421.615707pt;}
.y2fa{bottom:423.455147pt;}
.y331{bottom:425.209131pt;}
.y274{bottom:425.776291pt;}
.y53{bottom:427.376379pt;}
.y369{bottom:429.212277pt;}
.ye{bottom:430.990669pt;}
.y2e0{bottom:431.369675pt;}
.y7a{bottom:431.373467pt;}
.y157{bottom:431.374715pt;}
.yec{bottom:431.375387pt;}
.y10a{bottom:431.375867pt;}
.y1bc{bottom:433.053659pt;}
.y200{bottom:434.895867pt;}
.y1d4{bottom:434.974811pt;}
.y177{bottom:434.975771pt;}
.y18c{bottom:435.215659pt;}
.y28d{bottom:436.335291pt;}
.y28e{bottom:436.335867pt;}
.y133{bottom:436.413851pt;}
.yc2{bottom:436.414811pt;}
.y2f9{bottom:436.495291pt;}
.y2a4{bottom:436.575291pt;}
.y397{bottom:438.248021pt;}
.y330{bottom:438.249275pt;}
.y52{bottom:440.895915pt;}
.y368{bottom:442.252421pt;}
.y22e{bottom:444.095619pt;}
.yd{bottom:446.990669pt;}
.ya1{bottom:447.775867pt;}
.y18b{bottom:448.015579pt;}
.y272{bottom:448.256203pt;}
.y2df{bottom:449.209771pt;}
.y79{bottom:449.213563pt;}
.y156{bottom:449.214811pt;}
.yeb{bottom:449.215483pt;}
.y109{bottom:449.215771pt;}
.y2f8{bottom:449.535435pt;}
.y22d{bottom:449.695707pt;}
.y1bb{bottom:450.893755pt;}
.y396{bottom:451.288165pt;}
.y1ff{bottom:452.415867pt;}
.y1d3{bottom:452.814907pt;}
.y176{bottom:452.815867pt;}
.y271{bottom:453.856291pt;}
.y28c{bottom:454.175387pt;}
.y132{bottom:454.253947pt;}
.yc1{bottom:454.254907pt;}
.y2a3{bottom:454.415387pt;}
.y51{bottom:454.496107pt;}
.y32f{bottom:455.289275pt;}
.y367{bottom:455.292565pt;}
.yc{bottom:462.990669pt;}
.y226{bottom:463.775955pt;}
.y395{bottom:464.328309pt;}
.y2f7{bottom:466.575435pt;}
.y2de{bottom:467.049867pt;}
.y78{bottom:467.053659pt;}
.y155{bottom:467.054907pt;}
.yea{bottom:467.055579pt;}
.y108{bottom:467.055867pt;}
.y26e{bottom:467.856043pt;}
.y50{bottom:468.096299pt;}
.y32e{bottom:468.329419pt;}
.y1ba{bottom:468.733851pt;}
.y1fe{bottom:470.015867pt;}
.y1d2{bottom:470.655003pt;}
.y1a4{bottom:471.055867pt;}
.y28b{bottom:472.015483pt;}
.y131{bottom:472.094043pt;}
.yc0{bottom:472.095003pt;}
.y22c{bottom:472.175619pt;}
.y2a2{bottom:472.255483pt;}
.y366{bottom:472.332565pt;}
.y270{bottom:476.336203pt;}
.y394{bottom:477.368453pt;}
.y22b{bottom:477.775707pt;}
.yb{bottom:478.990666pt;}
.y2f6{bottom:479.615579pt;}
.y32d{bottom:481.369563pt;}
.y4f{bottom:481.615835pt;}
.y26f{bottom:481.936291pt;}
.ya0{bottom:482.095867pt;}
.y2dd{bottom:484.889963pt;}
.y77{bottom:484.893755pt;}
.y154{bottom:484.895003pt;}
.y107{bottom:484.895771pt;}
.y175{bottom:485.135867pt;}
.y365{bottom:485.372709pt;}
.y1b9{bottom:486.573947pt;}
.y1fd{bottom:487.535867pt;}
.y1d1{bottom:488.495099pt;}
.y28a{bottom:489.855579pt;}
.y130{bottom:489.934139pt;}
.ybf{bottom:489.935099pt;}
.y2a1{bottom:490.095579pt;}
.y2f5{bottom:492.655723pt;}
.y393{bottom:494.408453pt;}
.y32c{bottom:494.409707pt;}
.ya{bottom:494.990666pt;}
.y4e{bottom:495.216027pt;}
.y364{bottom:498.412853pt;}
.y1fc{bottom:499.535867pt;}
.y22a{bottom:500.255619pt;}
.y2dc{bottom:502.730059pt;}
.y76{bottom:502.733851pt;}
.y153{bottom:502.735099pt;}
.ye9{bottom:502.735771pt;}
.y106{bottom:502.735867pt;}
.y1b8{bottom:504.414043pt;}
.y26d{bottom:504.416203pt;}
.y2f4{bottom:505.695867pt;}
.y229{bottom:505.855707pt;}
.y1d0{bottom:506.335195pt;}
.y392{bottom:507.448597pt;}
.y289{bottom:507.695675pt;}
.y12f{bottom:507.774235pt;}
.ybe{bottom:507.775195pt;}
.y2a0{bottom:507.935675pt;}
.y4d{bottom:508.816219pt;}
.y26c{bottom:510.016291pt;}
.y32b{bottom:511.449707pt;}
.y363{bottom:511.452997pt;}
.y1fb{bottom:517.055867pt;}
.y18a{bottom:518.975867pt;}
.y391{bottom:520.488741pt;}
.y2db{bottom:520.570155pt;}
.y75{bottom:520.573947pt;}
.y152{bottom:520.575195pt;}
.y105{bottom:520.575771pt;}
.ye8{bottom:520.575867pt;}
.y1b7{bottom:522.254139pt;}
.y4c{bottom:522.335755pt;}
.y1cf{bottom:524.175291pt;}
.y32a{bottom:524.489851pt;}
.y288{bottom:525.535771pt;}
.y12e{bottom:525.614331pt;}
.ybd{bottom:525.615291pt;}
.y29f{bottom:525.775771pt;}
.y228{bottom:528.335619pt;}
.y362{bottom:528.492997pt;}
.y1fa{bottom:529.055867pt;}
.y26b{bottom:532.496203pt;}
.y227{bottom:533.935707pt;}
.y4b{bottom:535.935947pt;}
.y390{bottom:537.528741pt;}
.y329{bottom:537.529995pt;}
.y26a{bottom:538.096291pt;}
.y2da{bottom:538.410251pt;}
.y74{bottom:538.414043pt;}
.y151{bottom:538.415291pt;}
.ye7{bottom:538.415771pt;}
.y104{bottom:538.415867pt;}
.y1b6{bottom:540.094235pt;}
.y174{bottom:540.334427pt;}
.y361{bottom:541.533141pt;}
.y1ce{bottom:542.015387pt;}
.y287{bottom:543.375867pt;}
.y12d{bottom:543.454427pt;}
.ybc{bottom:543.455387pt;}
.y29e{bottom:543.615867pt;}
.y1f9{bottom:546.575867pt;}
.y4a{bottom:549.536139pt;}
.y38f{bottom:550.568885pt;}
.y2f3{bottom:553.455867pt;}
.y328{bottom:554.569995pt;}
.y360{bottom:554.573285pt;}
.y9f{bottom:556.250347pt;}
.y73{bottom:556.254139pt;}
.y150{bottom:556.255387pt;}
.y103{bottom:556.255771pt;}
.ye6{bottom:556.255867pt;}
.y225{bottom:556.415619pt;}
.y1b5{bottom:557.934331pt;}
.y173{bottom:558.174523pt;}
.y1cd{bottom:559.855483pt;}
.y269{bottom:560.576203pt;}
.y286{bottom:561.215675pt;}
.y12c{bottom:561.294523pt;}
.ybb{bottom:561.295483pt;}
.y224{bottom:562.015707pt;}
.y49{bottom:563.055675pt;}
.y38e{bottom:563.609029pt;}
.y1f8{bottom:564.095867pt;}
.y268{bottom:566.176291pt;}
.y327{bottom:567.610139pt;}
.y35f{bottom:567.613429pt;}
.y9{bottom:573.786667pt;}
.y9e{bottom:574.090443pt;}
.y72{bottom:574.094235pt;}
.y14f{bottom:574.095483pt;}
.ye5{bottom:574.095771pt;}
.y102{bottom:574.095867pt;}
.y1b4{bottom:575.774427pt;}
.y172{bottom:576.014619pt;}
.y1f7{bottom:576.095867pt;}
.y38d{bottom:576.649173pt;}
.y48{bottom:576.655867pt;}
.y1cc{bottom:577.695579pt;}
.y285{bottom:579.055771pt;}
.y12b{bottom:579.134619pt;}
.yba{bottom:579.135579pt;}
.y261{bottom:580.176043pt;}
.y326{bottom:580.650283pt;}
.y35e{bottom:580.653573pt;}
.y223{bottom:584.495619pt;}
.y267{bottom:588.656203pt;}
.y38c{bottom:589.689317pt;}
.y222{bottom:590.095707pt;}
.y9d{bottom:591.930539pt;}
.y71{bottom:591.934331pt;}
.y14e{bottom:591.935579pt;}
.y101{bottom:591.935771pt;}
.ye4{bottom:591.935867pt;}
.y8{bottom:592.685334pt;}
.y1b3{bottom:593.614523pt;}
.y1f6{bottom:593.615867pt;}
.y35d{bottom:593.693717pt;}
.y171{bottom:593.854715pt;}
.y29d{bottom:594.095867pt;}
.y266{bottom:594.256291pt;}
.y1cb{bottom:595.535675pt;}
.y284{bottom:596.895867pt;}
.y12a{bottom:596.974715pt;}
.yb9{bottom:596.975675pt;}
.y325{bottom:597.690283pt;}
.y45{bottom:598.256000pt;}
.y47{bottom:601.135867pt;}
.y38b{bottom:606.729317pt;}
.y9c{bottom:609.770635pt;}
.y70{bottom:609.774427pt;}
.ye3{bottom:609.775771pt;}
.y100{bottom:609.775867pt;}
.y324{bottom:610.730427pt;}
.y35c{bottom:610.733717pt;}
.y1f5{bottom:611.215867pt;}
.y1b2{bottom:611.454619pt;}
.y170{bottom:611.694811pt;}
.y221{bottom:612.575619pt;}
.y1ca{bottom:613.375771pt;}
.y129{bottom:614.814811pt;}
.yb8{bottom:614.815771pt;}
.y265{bottom:616.736203pt;}
.y220{bottom:618.175707pt;}
.y38a{bottom:619.769461pt;}
.y264{bottom:622.336291pt;}
.y323{bottom:623.770571pt;}
.y35b{bottom:623.773861pt;}
.y9b{bottom:627.610731pt;}
.y6f{bottom:627.614523pt;}
.yff{bottom:627.615675pt;}
.y14d{bottom:627.615771pt;}
.ye2{bottom:627.615867pt;}
.y1f4{bottom:628.735867pt;}
.y1b1{bottom:629.294715pt;}
.y16f{bottom:629.534907pt;}
.y1c7{bottom:631.215483pt;}
.y1c9{bottom:631.215867pt;}
.y219{bottom:632.255955pt;}
.y128{bottom:632.654907pt;}
.yb7{bottom:632.655867pt;}
.y389{bottom:632.809605pt;}
.y35a{bottom:636.814005pt;}
.y1c8{bottom:636.895867pt;}
.y2d9{bottom:639.293907pt;}
.y21f{bottom:640.655619pt;}
.y1f3{bottom:640.735867pt;}
.y322{bottom:640.810571pt;}
.y263{bottom:644.816203pt;}
.y9a{bottom:645.450827pt;}
.y6e{bottom:645.454619pt;}
.ye1{bottom:645.455771pt;}
.y14c{bottom:645.455867pt;}
.y7{bottom:645.598667pt;}
.y388{bottom:645.849749pt;}
.y21e{bottom:646.255707pt;}
.y1b0{bottom:647.134811pt;}
.y16e{bottom:647.375003pt;}
.y1c6{bottom:649.055579pt;}
.y44{bottom:649.775867pt;}
.y359{bottom:649.854149pt;}
.y262{bottom:650.416291pt;}
.y127{bottom:650.495003pt;}
.y321{bottom:653.850715pt;}
.y42{bottom:653.936000pt;}
.y2d8{bottom:656.173731pt;}
.y1f2{bottom:658.255867pt;}
.y41{bottom:660.415867pt;}
.y2d7{bottom:661.773819pt;}
.y2d2{bottom:661.854315pt;}
.y387{bottom:662.889749pt;}
.y99{bottom:663.290923pt;}
.y6d{bottom:663.294715pt;}
.y14b{bottom:663.295771pt;}
.ye0{bottom:663.295867pt;}
.y1af{bottom:664.974907pt;}
.yb6{bottom:664.976603pt;}
.y16d{bottom:665.215099pt;}
.y320{bottom:666.890859pt;}
.y358{bottom:666.894149pt;}
.y1c5{bottom:666.895675pt;}
.y126{bottom:668.335099pt;}
.y21d{bottom:668.735619pt;}
.y3{bottom:668.977329pt;}
.y40{bottom:671.135867pt;}
.y260{bottom:672.896203pt;}
.y2d1{bottom:673.054491pt;}
.y21c{bottom:674.335707pt;}
.y1f1{bottom:675.775867pt;}
.y386{bottom:675.929893pt;}
.y25f{bottom:678.496291pt;}
.y31f{bottom:679.931003pt;}
.y357{bottom:679.934293pt;}
.y98{bottom:681.131019pt;}
.y6c{bottom:681.134811pt;}
.ydf{bottom:681.135771pt;}
.y14a{bottom:681.135867pt;}
.yb5{bottom:681.136235pt;}
.y1ae{bottom:682.815003pt;}
.y16c{bottom:683.055195pt;}
.y2d6{bottom:684.253731pt;}
.y2d0{bottom:684.254667pt;}
.y1c4{bottom:684.735771pt;}
.y125{bottom:686.175195pt;}
.y385{bottom:688.970037pt;}
.y356{bottom:692.974437pt;}
.y1f0{bottom:693.375867pt;}
.y3e{bottom:693.615867pt;}
.y2d5{bottom:695.453907pt;}
.y2cf{bottom:695.454843pt;}
.y21b{bottom:696.815619pt;}
.y31e{bottom:696.971003pt;}
.yb4{bottom:697.295867pt;}
.y97{bottom:698.971115pt;}
.y6b{bottom:698.974907pt;}
.y149{bottom:698.975771pt;}
.yde{bottom:698.975867pt;}
.y3f{bottom:700.415867pt;}
.y1ad{bottom:700.655099pt;}
.y16b{bottom:700.895291pt;}
.y25e{bottom:700.976203pt;}
.y384{bottom:702.010181pt;}
.y21a{bottom:702.415707pt;}
.y1c3{bottom:702.575867pt;}
.y124{bottom:704.015291pt;}
.y25d{bottom:706.576291pt;}
.y2ce{bottom:706.655019pt;}
.y31d{bottom:710.011147pt;}
.y355{bottom:710.014437pt;}
.y1ef{bottom:710.895867pt;}
.y2d4{bottom:712.333731pt;}
.y96{bottom:716.811211pt;}
.y6a{bottom:716.815003pt;}
.ydd{bottom:716.815675pt;}
.y148{bottom:716.815867pt;}
.y2d3{bottom:717.933819pt;}
.y2cd{bottom:717.935691pt;}
.y1ac{bottom:718.495195pt;}
.y16a{bottom:718.735387pt;}
.y383{bottom:719.050181pt;}
.y123{bottom:721.855387pt;}
.y31c{bottom:723.051291pt;}
.y354{bottom:723.054581pt;}
.y218{bottom:724.895619pt;}
.y3d{bottom:728.015867pt;}
.y1ee{bottom:728.415867pt;}
.y25c{bottom:729.056203pt;}
.y217{bottom:730.495707pt;}
.y382{bottom:732.090325pt;}
.y216{bottom:733.375779pt;}
.y95{bottom:734.651307pt;}
.y69{bottom:734.655099pt;}
.ydc{bottom:734.655771pt;}
.y25b{bottom:734.656291pt;}
.y1c2{bottom:734.896235pt;}
.y31b{bottom:736.091435pt;}
.y353{bottom:736.094725pt;}
.y1ab{bottom:736.335291pt;}
.y169{bottom:736.575483pt;}
.y214{bottom:738.975867pt;}
.y122{bottom:739.695483pt;}
.y2cc{bottom:740.415603pt;}
.y3a{bottom:741.936000pt;}
.y2cb{bottom:746.015691pt;}
.y1ed{bottom:746.015867pt;}
.y39{bottom:746.735067pt;}
.y3c{bottom:746.735867pt;}
.y254{bottom:748.656043pt;}
.y381{bottom:749.130325pt;}
.y352{bottom:749.134869pt;}
.y1c1{bottom:751.055867pt;}
.y2c7{bottom:751.695339pt;}
.y94{bottom:752.491403pt;}
.y68{bottom:752.495195pt;}
.ydb{bottom:752.495867pt;}
.y215{bottom:752.975619pt;}
.y31a{bottom:753.131435pt;}
.y1aa{bottom:754.175387pt;}
.y168{bottom:754.415579pt;}
.y25a{bottom:757.136203pt;}
.y121{bottom:757.535579pt;}
.y380{bottom:762.170469pt;}
.y259{bottom:762.736291pt;}
.y2c6{bottom:762.895515pt;}
.y1ec{bottom:763.535867pt;}
.y38{bottom:765.375867pt;}
.y319{bottom:766.171579pt;}
.y351{bottom:766.174869pt;}
.y2ca{bottom:768.495603pt;}
.y93{bottom:770.331499pt;}
.y67{bottom:770.335291pt;}
.y147{bottom:770.335771pt;}
.y1a9{bottom:772.015483pt;}
.y167{bottom:772.255675pt;}
.y2c5{bottom:774.095691pt;}
.y249{bottom:774.895867pt;}
.y37f{bottom:775.210613pt;}
.y120{bottom:775.375675pt;}
.y318{bottom:779.211723pt;}
.y350{bottom:779.215013pt;}
.y2c9{bottom:779.695779pt;}
.y1eb{bottom:781.055867pt;}
.y2{bottom:781.661334pt;}
.y258{bottom:785.216203pt;}
.y2c4{bottom:785.295867pt;}
.y92{bottom:788.171595pt;}
.yda{bottom:788.172107pt;}
.y66{bottom:788.175387pt;}
.y146{bottom:788.175867pt;}
.y1a8{bottom:789.855579pt;}
.y166{bottom:790.095771pt;}
.y257{bottom:790.816291pt;}
.y37e{bottom:792.250613pt;}
.y34f{bottom:792.255157pt;}
.y11f{bottom:793.215771pt;}
.y317{bottom:796.251723pt;}
.y2c8{bottom:796.575603pt;}
.y1ea{bottom:798.655867pt;}
.y2c3{bottom:802.175691pt;}
.y1c0{bottom:803.215867pt;}
.y37d{bottom:805.290757pt;}
.y34e{bottom:805.295301pt;}
.y91{bottom:806.011691pt;}
.yd9{bottom:806.012203pt;}
.y65{bottom:806.015483pt;}
.y145{bottom:806.015637pt;}
.y1a7{bottom:807.695675pt;}
.y165{bottom:807.935867pt;}
.y316{bottom:809.291867pt;}
.y11e{bottom:811.055867pt;}
.y256{bottom:813.296203pt;}
.y1e9{bottom:816.175867pt;}
.y37c{bottom:818.330901pt;}
.y255{bottom:818.896291pt;}
.y315{bottom:822.332011pt;}
.y34d{bottom:822.335301pt;}
.y37{bottom:823.615691pt;}
.y90{bottom:823.851787pt;}
.yd8{bottom:823.852299pt;}
.y64{bottom:823.855579pt;}
.y144{bottom:823.855733pt;}
.y2bb{bottom:824.655603pt;}
.y2c2{bottom:825.215331pt;}
.y1a6{bottom:825.535771pt;}
.y1e8{bottom:828.175867pt;}
.y2bf{bottom:830.254755pt;}
.y36{bottom:834.815867pt;}
.y37b{bottom:835.370901pt;}
.y314{bottom:835.372155pt;}
.y34c{bottom:835.375445pt;}
.y2c1{bottom:835.854843pt;}
.y2b8{bottom:835.855779pt;}
.y164{bottom:840.255867pt;}
.y253{bottom:841.376203pt;}
.y2be{bottom:841.454931pt;}
.y2b7{bottom:841.455867pt;}
.y8f{bottom:841.691883pt;}
.yd7{bottom:841.692395pt;}
.y63{bottom:841.695675pt;}
.y1a5{bottom:843.375867pt;}
.y11d{bottom:843.376603pt;}
.y252{bottom:844.175779pt;}
.y2bd{bottom:844.815171pt;}
.y1e7{bottom:845.695867pt;}
.y2c0{bottom:847.055019pt;}
.y2ba{bottom:847.055955pt;}
.y37a{bottom:848.411045pt;}
.y34b{bottom:848.415589pt;}
.y251{bottom:849.775867pt;}
.y1e6{bottom:851.695867pt;}
.y313{bottom:852.412155pt;}
.y2bc{bottom:856.015347pt;}
.y35{bottom:856.255867pt;}
.y2b9{bottom:858.256131pt;}
.y1{bottom:859.312000pt;}
.y8e{bottom:859.531979pt;}
.yd6{bottom:859.532491pt;}
.y62{bottom:859.535771pt;}
.y11c{bottom:859.536235pt;}
.y379{bottom:861.451189pt;}
.y34a{bottom:861.455733pt;}
.y312{bottom:865.452299pt;}
.y163{bottom:874.575867pt;}
.y11b{bottom:875.695867pt;}
.y8d{bottom:877.372075pt;}
.yd5{bottom:877.372587pt;}
.y1bf{bottom:877.373675pt;}
.y61{bottom:877.375867pt;}
.y378{bottom:878.491189pt;}
.y311{bottom:878.492443pt;}
.y349{bottom:878.495733pt;}
.y213{bottom:880.175733pt;}
.y34{bottom:889.455381pt;}
.y33{bottom:900.655557pt;}
.y32{bottom:911.855733pt;}
.y5f{bottom:918.015733pt;}
.h18{height:10.560000pt;}
.h13{height:11.360000pt;}
.h14{height:13.040000pt;}
.h12{height:16.640625pt;}
.h1d{height:21.762344pt;}
.hf{height:21.920000pt;}
.h26{height:23.813760pt;}
.hc{height:25.922812pt;}
.h24{height:27.555840pt;}
.hb{height:27.832031pt;}
.h7{height:28.560000pt;}
.h11{height:29.116406pt;}
.h15{height:29.550937pt;}
.h17{height:29.758750pt;}
.hd{height:30.090937pt;}
.h1b{height:31.358906pt;}
.h16{height:31.683750pt;}
.h29{height:31.715707pt;}
.h1a{height:34.241563pt;}
.ha{height:35.204375pt;}
.h19{height:40.631719pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:44.468750pt;}
.h25{height:48.321117pt;}
.h21{height:48.323165pt;}
.h22{height:48.323452pt;}
.h2{height:48.960000pt;}
.h20{height:49.956192pt;}
.h1f{height:51.512031pt;}
.h1e{height:51.832031pt;}
.he{height:53.121094pt;}
.h10{height:56.316406pt;}
.h5{height:57.120000pt;}
.h27{height:57.282557pt;}
.h23{height:59.843452pt;}
.h1c{height:66.236926pt;}
.h28{height:70.723516pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:11.040000pt;}
.w5{width:22.560000pt;}
.w7{width:37.120000pt;}
.w4{width:66.240000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:18.000000pt;}
.x16{left:35.440000pt;}
.xe{left:56.960000pt;}
.x5{left:79.360000pt;}
.x2c{left:81.360000pt;}
.x44{left:82.560000pt;}
.x6b{left:83.601664pt;}
.x45{left:84.720000pt;}
.x13{left:86.080000pt;}
.x51{left:87.360280pt;}
.x7{left:88.399947pt;}
.x1{left:90.706667pt;}
.x6{left:92.720000pt;}
.x2{left:94.486667pt;}
.x1a{left:97.200629pt;}
.x38{left:99.999152pt;}
.x3f{left:101.437680pt;}
.x3c{left:103.278400pt;}
.x21{left:105.679900pt;}
.x55{left:107.520960pt;}
.x4b{left:108.640416pt;}
.x52{left:111.280696pt;}
.x32{left:113.677936pt;}
.x14{left:117.600000pt;}
.x24{left:119.120000pt;}
.x22{left:120.400000pt;}
.x27{left:121.520000pt;}
.x25{left:124.080256pt;}
.x23{left:125.360256pt;}
.x28{left:126.960320pt;}
.x67{left:136.801096pt;}
.x66{left:138.240664pt;}
.x69{left:140.401888pt;}
.x6a{left:144.242296pt;}
.x68{left:155.681152pt;}
.x9{left:162.880000pt;}
.x4d{left:164.560000pt;}
.x56{left:167.920000pt;}
.x4{left:180.874667pt;}
.x39{left:183.759360pt;}
.x40{left:189.997592pt;}
.x58{left:193.039720pt;}
.x57{left:194.800000pt;}
.x3e{left:198.958600pt;}
.x20{left:201.360000pt;}
.x3d{left:204.319032pt;}
.x3a{left:206.959880pt;}
.x37{left:210.478528pt;}
.x35{left:211.677656pt;}
.x26{left:213.520000pt;}
.x2a{left:215.440000pt;}
.x3b{left:216.959352pt;}
.x2b{left:218.400000pt;}
.x36{left:221.118528pt;}
.xa{left:224.160000pt;}
.x42{left:236.640000pt;}
.x33{left:239.518280pt;}
.x34{left:242.797528pt;}
.xc{left:271.199880pt;}
.x59{left:307.680064pt;}
.x5a{left:315.520000pt;}
.x5b{left:320.159752pt;}
.x5c{left:355.279408pt;}
.xb{left:357.120000pt;}
.x2e{left:366.639680pt;}
.x8{left:370.320000pt;}
.x2d{left:376.159288pt;}
.x19{left:383.680000pt;}
.x29{left:387.440328pt;}
.x49{left:389.840088pt;}
.x50{left:393.999496pt;}
.x10{left:396.480000pt;}
.x4e{left:398.800612pt;}
.x5d{left:400.639840pt;}
.x3{left:404.408000pt;}
.x1e{left:410.080000pt;}
.x1c{left:411.440000pt;}
.x1f{left:415.040256pt;}
.x1d{left:416.400256pt;}
.x4c{left:418.640808pt;}
.x53{left:422.801152pt;}
.x4a{left:423.760728pt;}
.x43{left:426.320000pt;}
.x5f{left:442.319920pt;}
.x17{left:447.680000pt;}
.x5e{left:452.399704pt;}
.x4f{left:455.600000pt;}
.x54{left:458.960000pt;}
.x2f{left:460.959024pt;}
.x46{left:469.359840pt;}
.x15{left:476.640000pt;}
.x61{left:483.600328pt;}
.x65{left:489.200416pt;}
.x1b{left:492.000000pt;}
.x60{left:503.520280pt;}
.x47{left:512.959656pt;}
.x30{left:549.998800pt;}
.x31{left:555.278368pt;}
.x62{left:558.000160pt;}
.xd{left:564.640000pt;}
.x48{left:574.160016pt;}
.x63{left:586.880440pt;}
.x64{left:595.760272pt;}
.x11{left:608.320000pt;}
.x41{left:613.520000pt;}
.x18{left:617.039840pt;}
.xf{left:630.800000pt;}
}




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