
    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_bf664884e36dec69b46e6a03.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_952df344495736c619a73452.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_aa31b9375a2d799a7bf8f384.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_e16d8ae108effa74dc0bbfa5.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_3dc8bd03bd21355fa8e66fc5.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_3099c0a0db84d8d48d67ee92.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_c0c286fe67a017c26d508a88.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_9f86cac2558cae1c03c486ed.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_30122e8525a27f5f141aaac0.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_2edfea6617110ae300d5831c.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_e60ed3104778e622444203f0.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_2ae78c62792f34d6960f93e7.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_54e8ce50d2819c1890036678.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_a212ff075b315d7d5000a744.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_abbc0d0aee1791f92ed0f26e.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_2bd34a7d241f0f71cc52d564.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_0e12bdae23f8020aa8f52c35.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.098633;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_a744b86f6fcae3c0e9022f2a.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_031505f24b61ee5996c7649b.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_845e578f96fdaa1470eb83ca.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_f47789c908590f1638d4e4c9.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_733a04986847687656bc3439.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_b6a2a83e67f36f22d4f7e74e.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_426375b385932a1d2ce939be.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.018066;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_16ffe142dd4219c1d3f68f75.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_cd2ab9f9ed10bbb9cc6d286a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.919434;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_b70c2f68a89979de271e07d6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.699219;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_0e1c1adecf36953d229c1e9a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.363000;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_733d2cd8cf3dd003b32ca487.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_f38986716e14fe218234474a.woff2')format("woff");}.ff20{font-family:ff20;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;}
.mc{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);}
.m8{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);}
.md{transform:matrix(0.244604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244604,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m9{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);}
.m6{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);}
.ma{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);}
.m4{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);}
.m2{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);}
.m5{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);}
.mb{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);}
.m7{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);}
.v2{vertical-align:-18.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v4{vertical-align:28.799820px;}
.v3{vertical-align:41.037948px;}
.ls83{letter-spacing:-4.324752px;}
.ls7e{letter-spacing:-4.319640px;}
.ls11{letter-spacing:-4.220100px;}
.ls94{letter-spacing:-3.972024px;}
.ls84{letter-spacing:-3.966912px;}
.ls69{letter-spacing:-3.961800px;}
.ls88{letter-spacing:-3.603960px;}
.ls68{letter-spacing:-3.598848px;}
.ls6{letter-spacing:-3.595500px;}
.ls25{letter-spacing:-3.297996px;}
.ls19{letter-spacing:-3.246120px;}
.ls6d{letter-spacing:-3.241008px;}
.ls77{letter-spacing:-3.235896px;}
.lsb{letter-spacing:-2.952072px;}
.ls31{letter-spacing:-2.946384px;}
.ls27{letter-spacing:-2.931552px;}
.ls39{letter-spacing:-2.912256px;}
.ls8d{letter-spacing:-2.893392px;}
.ls70{letter-spacing:-2.883168px;}
.ls91{letter-spacing:-2.878056px;}
.ls86{letter-spacing:-2.872944px;}
.ls7b{letter-spacing:-2.867832px;}
.ls38{letter-spacing:-2.838312px;}
.ls60{letter-spacing:-2.781432px;}
.ls3a{letter-spacing:-2.713176px;}
.ls28{letter-spacing:-2.582352px;}
.ls36{letter-spacing:-2.576664px;}
.ls24{letter-spacing:-2.565108px;}
.ls6b{letter-spacing:-2.525328px;}
.ls76{letter-spacing:-2.520216px;}
.lse{letter-spacing:-2.519100px;}
.ls48{letter-spacing:-2.518488px;}
.ls79{letter-spacing:-2.515104px;}
.ls4a{letter-spacing:-2.354832px;}
.ls47{letter-spacing:-2.349144px;}
.ls74{letter-spacing:-2.336184px;}
.ls23{letter-spacing:-2.226420px;}
.ls4f{letter-spacing:-2.218320px;}
.ls5{letter-spacing:-2.212632px;}
.ls37{letter-spacing:-2.206944px;}
.ls8b{letter-spacing:-2.172600px;}
.ls7c{letter-spacing:-2.167488px;}
.ls73{letter-spacing:-2.162376px;}
.ls80{letter-spacing:-2.157264px;}
.ls13{letter-spacing:-2.156544px;}
.ls89{letter-spacing:-2.152152px;}
.ls87{letter-spacing:-2.147040px;}
.ls45{letter-spacing:-2.104560px;}
.ls46{letter-spacing:-2.070432px;}
.ls5b{letter-spacing:-2.053368px;}
.ls5c{letter-spacing:-1.996488px;}
.ls5d{letter-spacing:-1.985112px;}
.ls3b{letter-spacing:-1.956672px;}
.ls34{letter-spacing:-1.848600px;}
.ls2d{letter-spacing:-1.842912px;}
.ls33{letter-spacing:-1.837224px;}
.ls26{letter-spacing:-1.832220px;}
.ls58{letter-spacing:-1.825848px;}
.ls5a{letter-spacing:-1.805076px;}
.ls21{letter-spacing:-1.804536px;}
.ls1f{letter-spacing:-1.799424px;}
.ls12{letter-spacing:-1.797120px;}
.ls22{letter-spacing:-1.794312px;}
.ls15{letter-spacing:-1.790208px;}
.ls6a{letter-spacing:-1.789200px;}
.ls65{letter-spacing:-1.751904px;}
.ls64{letter-spacing:-1.729152px;}
.ls50{letter-spacing:-1.706400px;}
.ls63{letter-spacing:-1.689336px;}
.ls51{letter-spacing:-1.638144px;}
.ls44{letter-spacing:-1.569888px;}
.ls43{letter-spacing:-1.564200px;}
.ls2e{letter-spacing:-1.478880px;}
.ls29{letter-spacing:-1.473192px;}
.ls72{letter-spacing:-1.451808px;}
.ls1a{letter-spacing:-1.446696px;}
.ls71{letter-spacing:-1.441584px;}
.ls5f{letter-spacing:-1.441188px;}
.ls1c{letter-spacing:-1.436472px;}
.ls17{letter-spacing:-1.435500px;}
.ls78{letter-spacing:-1.426248px;}
.lsa{letter-spacing:-1.114848px;}
.ls4{letter-spacing:-1.109160px;}
.ls2c{letter-spacing:-1.103472px;}
.ls14{letter-spacing:-1.085184px;}
.ls1d{letter-spacing:-1.083744px;}
.ls6e{letter-spacing:-1.078632px;}
.ls16{letter-spacing:-1.075500px;}
.ls82{letter-spacing:-1.073520px;}
.ls1e{letter-spacing:-1.068408px;}
.ls3e{letter-spacing:-0.972648px;}
.ls3d{letter-spacing:-0.927144px;}
.ls9{letter-spacing:-0.745128px;}
.ls2b{letter-spacing:-0.739440px;}
.ls32{letter-spacing:-0.733752px;}
.ls75{letter-spacing:-0.725904px;}
.lsf{letter-spacing:-0.719316px;}
.ls6f{letter-spacing:-0.715680px;}
.ls1b{letter-spacing:-0.710568px;}
.ls8{letter-spacing:-0.375408px;}
.ls2a{letter-spacing:-0.369720px;}
.lsd{letter-spacing:-0.366444px;}
.ls59{letter-spacing:-0.364032px;}
.ls7d{letter-spacing:-0.352728px;}
.ls56{letter-spacing:-0.349524px;}
.ls20{letter-spacing:-0.347616px;}
.ls61{letter-spacing:-0.273024px;}
.ls4d{letter-spacing:-0.199080px;}
.ls4e{letter-spacing:-0.187704px;}
.ls62{letter-spacing:-0.119448px;}
.ls30{letter-spacing:-0.079056px;}
.ls3{letter-spacing:-0.072000px;}
.ls4c{letter-spacing:-0.057600px;}
.ls2f{letter-spacing:-0.050400px;}
.ls66{letter-spacing:-0.043200px;}
.ls67{letter-spacing:-0.028800px;}
.ls3c{letter-spacing:-0.011376px;}
.ls52{letter-spacing:-0.009576px;}
.ls35{letter-spacing:-0.006588px;}
.ls7{letter-spacing:-0.005688px;}
.ls49{letter-spacing:-0.004788px;}
.lsc{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.004788px;}
.ls90{letter-spacing:0.005112px;}
.ls54{letter-spacing:0.005688px;}
.ls42{letter-spacing:0.006588px;}
.ls5e{letter-spacing:0.354312px;}
.ls4b{letter-spacing:0.386784px;}
.ls40{letter-spacing:0.392472px;}
.ls55{letter-spacing:0.727776px;}
.ls3f{letter-spacing:1.569888px;}
.ls8f{letter-spacing:4.682592px;}
.ls7a{letter-spacing:5.403384px;}
.ls85{letter-spacing:6.124176px;}
.ls8c{letter-spacing:6.487128px;}
.ls81{letter-spacing:7.202808px;}
.ls6c{letter-spacing:7.923600px;}
.ls92{letter-spacing:8.286552px;}
.ls41{letter-spacing:8.469432px;}
.ls95{letter-spacing:8.644392px;}
.ls18{letter-spacing:9.499392px;}
.ls93{letter-spacing:10.085976px;}
.ls8a{letter-spacing:11.164608px;}
.ls96{letter-spacing:11.522448px;}
.ls10{letter-spacing:11.631600px;}
.ls7f{letter-spacing:15.484248px;}
.ls2{letter-spacing:20.520864px;}
.ls8e{letter-spacing:23.044896px;}
.ls57{letter-spacing:44.161632px;}
.ls1{letter-spacing:689.399100px;}
.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;}
}
.ws34{word-spacing:-44.218512px;}
.ws59{word-spacing:-25.575336px;}
.ws10{word-spacing:-18.816300px;}
.ws1a{word-spacing:-14.333760px;}
.ws21{word-spacing:-14.328072px;}
.ws61{word-spacing:-13.695048px;}
.ws57{word-spacing:-13.337208px;}
.ws7{word-spacing:-12.933360px;}
.ws2b{word-spacing:-12.602016px;}
.ws5f{word-spacing:-12.258576px;}
.ws2e{word-spacing:-11.869452px;}
.ws6{word-spacing:-11.496888px;}
.ws42{word-spacing:-11.491776px;}
.ws5c{word-spacing:-11.486664px;}
.ws44{word-spacing:-11.481552px;}
.ws8{word-spacing:-11.139048px;}
.ws43{word-spacing:-11.133936px;}
.ws5d{word-spacing:-10.786320px;}
.ws54{word-spacing:-10.776096px;}
.ws53{word-spacing:-10.760760px;}
.ws9{word-spacing:-10.656360px;}
.ws5e{word-spacing:-10.459152px;}
.ws2{word-spacing:-10.441548px;}
.ws47{word-spacing:-10.096200px;}
.ws1{word-spacing:-10.079316px;}
.ws5{word-spacing:-9.687240px;}
.ws51{word-spacing:-9.375408px;}
.ws5b{word-spacing:-9.017568px;}
.wsa{word-spacing:-8.824140px;}
.ws45{word-spacing:-8.608608px;}
.ws58{word-spacing:-2.177712px;}
.ws11{word-spacing:-1.887300px;}
.ws60{word-spacing:-1.824984px;}
.ws40{word-spacing:-1.632456px;}
.ws1c{word-spacing:-1.575576px;}
.ws4f{word-spacing:-1.462032px;}
.ws4c{word-spacing:-1.456920px;}
.ws52{word-spacing:-1.451808px;}
.ws5a{word-spacing:-1.099080px;}
.ws46{word-spacing:-1.093968px;}
.ws49{word-spacing:-1.088856px;}
.ws50{word-spacing:-1.083744px;}
.ws4d{word-spacing:-0.915048px;}
.ws56{word-spacing:-0.741240px;}
.ws1b{word-spacing:-0.733752px;}
.ws4b{word-spacing:-0.731016px;}
.ws18{word-spacing:-0.728064px;}
.ws13{word-spacing:-0.725904px;}
.ws1d{word-spacing:-0.722376px;}
.ws29{word-spacing:-0.500544px;}
.ws48{word-spacing:-0.373176px;}
.ws32{word-spacing:-0.369720px;}
.ws4e{word-spacing:-0.368064px;}
.ws16{word-spacing:-0.364032px;}
.ws3f{word-spacing:-0.362232px;}
.wsb{word-spacing:-0.358344px;}
.ws1f{word-spacing:-0.352656px;}
.ws35{word-spacing:-0.047880px;}
.ws3{word-spacing:-0.044280px;}
.ws4{word-spacing:-0.027000px;}
.ws1e{word-spacing:-0.019764px;}
.ws12{word-spacing:-0.009000px;}
.wsf{word-spacing:-0.004212px;}
.ws0{word-spacing:0.000000px;}
.ws4a{word-spacing:0.005112px;}
.wsc{word-spacing:0.005688px;}
.ws14{word-spacing:0.008424px;}
.ws33{word-spacing:0.009576px;}
.wsd{word-spacing:0.011376px;}
.ws20{word-spacing:0.187704px;}
.ws3a{word-spacing:0.359100px;}
.ws55{word-spacing:0.362952px;}
.ws19{word-spacing:0.364032px;}
.ws17{word-spacing:0.369720px;}
.ws38{word-spacing:0.373464px;}
.wse{word-spacing:0.375408px;}
.ws2a{word-spacing:0.378252px;}
.ws41{word-spacing:0.381096px;}
.ws39{word-spacing:0.732564px;}
.ws15{word-spacing:0.745128px;}
.ws28{word-spacing:110.540556px;}
.ws3d{word-spacing:119.154168px;}
.ws3e{word-spacing:119.513268px;}
.ws24{word-spacing:130.688460px;}
.ws25{word-spacing:142.567488px;}
.ws26{word-spacing:154.810404px;}
.ws27{word-spacing:166.689432px;}
.ws37{word-spacing:172.382364px;}
.ws36{word-spacing:172.449396px;}
.ws22{word-spacing:176.409072px;}
.ws3c{word-spacing:227.166660px;}
.ws23{word-spacing:235.411596px;}
.ws3b{word-spacing:239.409576px;}
.ws2d{word-spacing:358.558956px;}
.ws2f{word-spacing:409.670856px;}
.ws30{word-spacing:411.116832px;}
.ws31{word-spacing:413.257068px;}
.ws2c{word-spacing:413.999208px;}
._3c{margin-left:-1530.771480px;}
._5f{margin-left:-750.099780px;}
._e{margin-left:-730.732104px;}
._63{margin-left:-719.328456px;}
._73{margin-left:-695.801340px;}
._50{margin-left:-570.554784px;}
._72{margin-left:-549.418320px;}
._54{margin-left:-539.104248px;}
._58{margin-left:-155.902068px;}
._3d{margin-left:-44.519976px;}
._74{margin-left:-24.849432px;}
._75{margin-left:-23.760576px;}
._11{margin-left:-20.699136px;}
._10{margin-left:-19.205100px;}
._12{margin-left:-18.066636px;}
._f{margin-left:-17.018100px;}
._13{margin-left:-15.058728px;}
._16{margin-left:-12.774384px;}
._71{margin-left:-11.675232px;}
._6d{margin-left:-10.096200px;}
._28{margin-left:-8.844840px;}
._29{margin-left:-7.741368px;}
._6f{margin-left:-6.627816px;}
._70{margin-left:-5.332176px;}
._19{margin-left:-3.841992px;}
._7{margin-left:-2.261736px;}
._1{margin-left:-1.092096px;}
._2{width:1.205856px;}
._4{width:2.673360px;}
._17{width:4.096944px;}
._6e{width:5.306976px;}
._1a{width:6.680808px;}
._18{width:7.723296px;}
._0{width:8.833464px;}
._3{width:10.244088px;}
._6{width:11.416932px;}
._15{width:12.442644px;}
._2e{width:13.461408px;}
._2d{width:14.709168px;}
._1d{width:15.829704px;}
._1f{width:16.938864px;}
._b{width:18.042336px;}
._a{width:19.128744px;}
._1b{width:20.266344px;}
._1c{width:21.688344px;}
._5{width:23.089500px;}
._c{width:24.282072px;}
._2c{width:25.305912px;}
._14{width:26.595972px;}
._21{width:27.771048px;}
._24{width:28.785852px;}
._1e{width:29.799432px;}
._20{width:30.800520px;}
._22{width:32.484168px;}
._26{width:34.247448px;}
._27{width:35.305416px;}
._2a{width:36.869616px;}
._9{width:37.910520px;}
._8{width:38.996928px;}
._23{width:40.180032px;}
._d{width:41.214708px;}
._2b{width:42.716880px;}
._6b{width:45.100152px;}
._6c{width:46.101240px;}
._25{width:50.065776px;}
._40{width:67.937652px;}
._4f{width:82.703844px;}
._36{width:91.101276px;}
._41{width:107.998128px;}
._3f{width:113.772456px;}
._42{width:134.226792px;}
._37{width:143.062092px;}
._5e{width:151.923240px;}
._62{width:165.592980px;}
._35{width:178.558884px;}
._4a{width:180.759528px;}
._44{width:184.318848px;}
._48{width:191.784060px;}
._38{width:196.217028px;}
._46{width:197.595972px;}
._31{width:205.085124px;}
._34{width:209.173356px;}
._30{width:214.535916px;}
._32{width:219.237732px;}
._49{width:221.085900px;}
._33{width:231.475860px;}
._65{width:237.963600px;}
._4e{width:241.923276px;}
._67{width:251.992440px;}
._53{width:255.952116px;}
._3e{width:267.103368px;}
._4b{width:272.504232px;}
._52{width:274.668408px;}
._5c{width:286.916112px;}
._5a{width:296.645328px;}
._61{width:298.795140px;}
._3a{width:307.437480px;}
._56{width:311.033268px;}
._43{width:316.319940px;}
._39{width:318.474540px;}
._45{width:324.358272px;}
._2f{width:332.134704px;}
._47{width:383.394312px;}
._3b{width:389.680236px;}
._69{width:444.963204px;}
._57{width:448.922880px;}
._4c{width:495.342540px;}
._64{width:552.961332px;}
._59{width:559.075608px;}
._6a{width:567.090000px;}
._4d{width:572.003208px;}
._60{width:581.038164px;}
._51{width:766.075212px;}
._68{width:781.764876px;}
._55{width:786.237480px;}
._66{width:798.698196px;}
._5d{width:804.479148px;}
._5b{width:833.096556px;}
.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;}
.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:102.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:2.519850px;}
.y223{bottom:3.239700px;}
.y43{bottom:3.239850px;}
.y3a{bottom:5.399850px;}
.y6{bottom:35.925007px;}
.y5c{bottom:66.167850px;}
.y5{bottom:66.525004px;}
.y5e{bottom:73.817448px;}
.y59{bottom:74.178000px;}
.y5b{bottom:76.697850px;}
.y58{bottom:87.137850px;}
.y4{bottom:97.125005px;}
.y29{bottom:116.387850px;}
.y155{bottom:117.737850px;}
.y34c{bottom:118.451058px;}
.y314{bottom:118.454286px;}
.y2dc{bottom:118.991856px;}
.y25b{bottom:120.527850px;}
.y1e3{bottom:120.796833px;}
.y1f7{bottom:122.866014px;}
.y208{bottom:122.866986px;}
.y384{bottom:122.953800px;}
.y283{bottom:124.028940px;}
.y8a{bottom:124.033206px;}
.y11e{bottom:124.037742px;}
.yaf{bottom:124.037850px;}
.y31{bottom:125.387094px;}
.yd8{bottom:125.923704px;}
.y19e{bottom:125.925150px;}
.yf3{bottom:125.925474px;}
.y175{bottom:126.196986px;}
.yae{bottom:128.087094px;}
.y1e2{bottom:131.057517px;}
.y28{bottom:131.597850px;}
.y34b{bottom:133.121220px;}
.y313{bottom:133.124448px;}
.y383{bottom:137.623962px;}
.y2db{bottom:138.161856px;}
.y23{bottom:139.264499px;}
.y25a{bottom:139.785465px;}
.y1f6{bottom:142.936122px;}
.y207{bottom:142.937094px;}
.y282{bottom:144.099048px;}
.y89{bottom:144.103314px;}
.y11d{bottom:144.107850px;}
.y30{bottom:145.457202px;}
.yd7{bottom:145.993812px;}
.y19d{bottom:145.995258px;}
.yf2{bottom:145.995582px;}
.y174{bottom:146.267094px;}
.y34a{bottom:147.791382px;}
.y312{bottom:147.794610px;}
.yad{bottom:148.157202px;}
.y27{bottom:149.687850px;}
.y382{bottom:152.294124px;}
.y2da{bottom:152.832018px;}
.y259{bottom:160.305636px;}
.y1e1{bottom:161.747400px;}
.y349{bottom:162.461544px;}
.y1f5{bottom:163.006230px;}
.y206{bottom:163.007202px;}
.y281{bottom:164.169156px;}
.y88{bottom:164.173422px;}
.y11c{bottom:164.177742px;}
.y2a7{bottom:164.444178px;}
.y2f{bottom:165.527310px;}
.yd6{bottom:166.063920px;}
.y19c{bottom:166.065366px;}
.yf1{bottom:166.065690px;}
.y173{bottom:166.337202px;}
.y381{bottom:166.964286px;}
.y311{bottom:166.964610px;}
.y2d9{bottom:167.502180px;}
.yac{bottom:168.227310px;}
.y348{bottom:177.131706px;}
.y258{bottom:180.736032px;}
.y380{bottom:181.634448px;}
.y310{bottom:181.634772px;}
.y2d8{bottom:182.172342px;}
.y1e0{bottom:182.267571px;}
.y1f4{bottom:183.076338px;}
.y205{bottom:183.077310px;}
.y280{bottom:184.239264px;}
.y87{bottom:184.243530px;}
.y11b{bottom:184.247850px;}
.y2a6{bottom:184.514286px;}
.y2e{bottom:185.597418px;}
.y26{bottom:185.867742px;}
.yd5{bottom:186.134028px;}
.y19b{bottom:186.135474px;}
.yf0{bottom:186.135798px;}
.y172{bottom:186.407310px;}
.yab{bottom:188.297418px;}
.y347{bottom:196.301706px;}
.y30f{bottom:196.304934px;}
.y1a{bottom:196.933500px;}
.y37f{bottom:200.804448px;}
.y257{bottom:201.256203px;}
.y2d7{bottom:201.342342px;}
.y1dd{bottom:202.787742px;}
.y1f3{bottom:203.146446px;}
.y204{bottom:203.147418px;}
.y27f{bottom:204.309372px;}
.y86{bottom:204.313638px;}
.y11a{bottom:204.317742px;}
.y2a5{bottom:204.584394px;}
.y2d{bottom:205.667526px;}
.y25{bottom:205.937850px;}
.yd4{bottom:206.204136px;}
.y19a{bottom:206.205582px;}
.yef{bottom:206.205906px;}
.y1d9{bottom:206.476554px;}
.y171{bottom:206.477418px;}
.yaa{bottom:208.367526px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y346{bottom:210.971868px;}
.y37e{bottom:215.474610px;}
.y30e{bottom:215.474934px;}
.y2d6{bottom:216.012504px;}
.y256{bottom:221.776374px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1f2{bottom:223.216554px;}
.y203{bottom:223.217526px;}
.y1df{bottom:223.218138px;}
.y27e{bottom:224.379480px;}
.y85{bottom:224.383746px;}
.y119{bottom:224.387850px;}
.y2a4{bottom:224.654502px;}
.y2c{bottom:225.737634px;}
.yd3{bottom:226.274244px;}
.y199{bottom:226.275690px;}
.yee{bottom:226.276014px;}
.y1d8{bottom:226.546662px;}
.y170{bottom:226.547526px;}
.ya9{bottom:228.437634px;}
.y345{bottom:230.141868px;}
.y37d{bottom:230.144772px;}
.y30d{bottom:230.145096px;}
.y2d5{bottom:230.682666px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y255{bottom:242.206770px;}
.y1f1{bottom:243.286662px;}
.y202{bottom:243.287634px;}
.y1de{bottom:243.738309px;}
.y27d{bottom:244.449588px;}
.y84{bottom:244.453854px;}
.y2a3{bottom:244.724610px;}
.y344{bottom:244.812030px;}
.y30c{bottom:244.815258px;}
.y2b{bottom:245.807742px;}
.yd2{bottom:246.344352px;}
.y198{bottom:246.345798px;}
.yed{bottom:246.346122px;}
.y1d7{bottom:246.616770px;}
.y16f{bottom:246.617634px;}
.ya8{bottom:248.507742px;}
.y37c{bottom:249.314772px;}
.y2d4{bottom:249.852666px;}
.y343{bottom:259.482192px;}
.y30b{bottom:259.485420px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y24{bottom:262.637850px;}
.y254{bottom:262.726941px;}
.y1f0{bottom:263.356770px;}
.y201{bottom:263.357742px;}
.y37b{bottom:263.984934px;}
.y1dc{bottom:264.257283px;}
.y27c{bottom:264.519696px;}
.y118{bottom:264.522126px;}
.y2d3{bottom:264.522828px;}
.y83{bottom:264.523962px;}
.y2a2{bottom:264.794718px;}
.y2a{bottom:265.877850px;}
.yd1{bottom:266.414460px;}
.y197{bottom:266.415906px;}
.yec{bottom:266.416230px;}
.y1d6{bottom:266.686878px;}
.y16e{bottom:266.687742px;}
.ya7{bottom:268.577850px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1db{bottom:274.428192px;}
.y342{bottom:278.652192px;}
.y37a{bottom:278.655096px;}
.y30a{bottom:278.655420px;}
.y2d2{bottom:279.192990px;}
.y253{bottom:283.247112px;}
.y1ef{bottom:283.426878px;}
.y200{bottom:283.427850px;}
.y27b{bottom:284.589804px;}
.y117{bottom:284.592234px;}
.y82{bottom:284.594070px;}
.y2a1{bottom:284.864826px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yd0{bottom:286.484568px;}
.y196{bottom:286.486014px;}
.yeb{bottom:286.486338px;}
.y1d5{bottom:286.756986px;}
.y16d{bottom:286.757850px;}
.y341{bottom:293.322354px;}
.y379{bottom:293.325258px;}
.y309{bottom:293.325582px;}
.y2d1{bottom:298.362990px;}
.y1ee{bottom:303.496986px;}
.y252{bottom:303.677508px;}
.y27a{bottom:304.659912px;}
.y116{bottom:304.662342px;}
.y81{bottom:304.664178px;}
.y2a0{bottom:304.934934px;}
.ya6{bottom:304.937850px;}
.y1da{bottom:305.207850px;}
.ycf{bottom:306.554676px;}
.y195{bottom:306.556122px;}
.yea{bottom:306.556446px;}
.y1d4{bottom:306.827094px;}
.y340{bottom:307.992516px;}
.y378{bottom:307.995420px;}
.y308{bottom:307.995744px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y2d0{bottom:313.033152px;}
.y1ff{bottom:319.787850px;}
.y33f{bottom:322.662678px;}
.y377{bottom:322.665582px;}
.y307{bottom:322.665906px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y16c{bottom:323.117850px;}
.y1ed{bottom:323.567094px;}
.y251{bottom:324.197679px;}
.y279{bottom:324.730020px;}
.y115{bottom:324.732450px;}
.y80{bottom:324.734286px;}
.y29f{bottom:325.005042px;}
.yce{bottom:326.624784px;}
.y194{bottom:326.626230px;}
.ye9{bottom:326.626554px;}
.y1d3{bottom:326.897202px;}
.y2cf{bottom:327.703314px;}
.y1e4{bottom:331.127850px;}
.y33e{bottom:337.332840px;}
.y376{bottom:341.835582px;}
.y306{bottom:341.835906px;}
.y1ec{bottom:343.637202px;}
.y250{bottom:344.717850px;}
.y278{bottom:344.800128px;}
.y114{bottom:344.802558px;}
.y7f{bottom:344.804394px;}
.y29e{bottom:345.075150px;}
.ycd{bottom:346.694892px;}
.y193{bottom:346.696338px;}
.ye8{bottom:346.696662px;}
.y2ce{bottom:346.873314px;}
.y1d2{bottom:346.967310px;}
.y11{bottom:348.133500px;}
.y57{bottom:352.007850px;}
.y33d{bottom:356.502840px;}
.y375{bottom:356.505744px;}
.y305{bottom:356.506068px;}
.y2cd{bottom:361.543476px;}
.y1eb{bottom:363.707310px;}
.y277{bottom:364.870236px;}
.y113{bottom:364.872666px;}
.y7e{bottom:364.874502px;}
.y29d{bottom:365.145258px;}
.ycc{bottom:366.765000px;}
.y192{bottom:366.766446px;}
.ye7{bottom:366.766770px;}
.ya5{bottom:367.035798px;}
.y1d1{bottom:367.037418px;}
.y25c{bottom:370.637850px;}
.y33c{bottom:371.173002px;}
.y374{bottom:371.175906px;}
.y304{bottom:371.176230px;}
.y2cc{bottom:380.713476px;}
.y1fe{bottom:381.884736px;}
.y1ea{bottom:383.777418px;}
.y276{bottom:384.940344px;}
.y112{bottom:384.942774px;}
.y7d{bottom:384.944610px;}
.y29c{bottom:385.215366px;}
.y16b{bottom:385.216662px;}
.y33b{bottom:385.843164px;}
.y373{bottom:385.846068px;}
.y303{bottom:385.846392px;}
.y10{bottom:386.785499px;}
.ycb{bottom:386.835108px;}
.y191{bottom:386.836554px;}
.ye6{bottom:386.836878px;}
.ya4{bottom:387.105906px;}
.y1b7{bottom:387.106446px;}
.y1d0{bottom:387.107526px;}
.y2cb{bottom:395.383638px;}
.y56{bottom:398.178606px;}
.y33a{bottom:400.513326px;}
.y1fd{bottom:401.954844px;}
.y1e9{bottom:403.847526px;}
.y275{bottom:405.010452px;}
.y111{bottom:405.012882px;}
.y7c{bottom:405.014718px;}
.y372{bottom:405.016068px;}
.y302{bottom:405.016392px;}
.y154{bottom:405.017742px;}
.y29b{bottom:405.285474px;}
.y16a{bottom:405.286770px;}
.yca{bottom:406.905216px;}
.y137{bottom:406.905582px;}
.y190{bottom:406.906662px;}
.ye5{bottom:406.906986px;}
.ya3{bottom:407.176014px;}
.y1b6{bottom:407.176554px;}
.y1cf{bottom:407.177634px;}
.yf{bottom:408.044999px;}
.y2ca{bottom:410.053800px;}
.y55{bottom:413.388084px;}
.y339{bottom:415.183488px;}
.y39f{bottom:419.683326px;}
.y371{bottom:419.686230px;}
.y301{bottom:419.686554px;}
.y1fc{bottom:422.024952px;}
.y1e8{bottom:423.917634px;}
.y3c4{bottom:424.179330px;}
.y274{bottom:425.080560px;}
.y110{bottom:425.082990px;}
.y7b{bottom:425.084826px;}
.y153{bottom:425.087850px;}
.y29a{bottom:425.355582px;}
.y24f{bottom:425.356554px;}
.y169{bottom:425.356878px;}
.yc9{bottom:426.975324px;}
.y136{bottom:426.975690px;}
.y18f{bottom:426.976770px;}
.ye4{bottom:426.977094px;}
.ya2{bottom:427.246122px;}
.y1b5{bottom:427.246662px;}
.y1ce{bottom:427.247742px;}
.y54{bottom:428.688300px;}
.y2c9{bottom:429.223800px;}
.y338{bottom:434.353488px;}
.y370{bottom:434.356392px;}
.y300{bottom:434.356716px;}
.y3c3{bottom:438.849492px;}
.y1fb{bottom:442.095060px;}
.y2c8{bottom:443.893962px;}
.y1e7{bottom:443.987742px;}
.y53{bottom:443.988516px;}
.y273{bottom:445.150668px;}
.y10f{bottom:445.153098px;}
.y7a{bottom:445.154934px;}
.y299{bottom:445.425690px;}
.y24e{bottom:445.426662px;}
.y168{bottom:445.426986px;}
.yc8{bottom:447.045432px;}
.y135{bottom:447.045798px;}
.y18e{bottom:447.046878px;}
.ye3{bottom:447.047202px;}
.ya1{bottom:447.316230px;}
.y1b4{bottom:447.316770px;}
.y1cd{bottom:447.317850px;}
.y337{bottom:449.023650px;}
.y36f{bottom:449.026554px;}
.y2ff{bottom:449.026878px;}
.y3c2{bottom:453.519654px;}
.y2c7{bottom:458.564124px;}
.y52{bottom:459.197994px;}
.y1fa{bottom:462.165168px;}
.y336{bottom:463.693812px;}
.y1e6{bottom:464.057850px;}
.y272{bottom:465.220776px;}
.y10e{bottom:465.223206px;}
.y152{bottom:465.223224px;}
.y79{bottom:465.225042px;}
.y298{bottom:465.495798px;}
.y24d{bottom:465.496770px;}
.y167{bottom:465.497094px;}
.yc7{bottom:467.115540px;}
.y134{bottom:467.115906px;}
.y18d{bottom:467.116986px;}
.ye2{bottom:467.117310px;}
.ya0{bottom:467.386338px;}
.y1b3{bottom:467.386878px;}
.y3c1{bottom:468.189816px;}
.y36e{bottom:468.196554px;}
.y2fe{bottom:468.196878px;}
.y51{bottom:474.498210px;}
.y2c6{bottom:477.734124px;}
.y335{bottom:478.363974px;}
.y1f9{bottom:482.235276px;}
.y3c0{bottom:482.859978px;}
.y39e{bottom:482.863812px;}
.y36d{bottom:482.866716px;}
.y2fd{bottom:482.867040px;}
.y1cc{bottom:483.677850px;}
.ye{bottom:484.864502px;}
.y271{bottom:485.290884px;}
.y10d{bottom:485.293314px;}
.y151{bottom:485.293332px;}
.y78{bottom:485.295150px;}
.y297{bottom:485.565906px;}
.y24c{bottom:485.566878px;}
.y166{bottom:485.567202px;}
.yc6{bottom:487.185648px;}
.y133{bottom:487.186014px;}
.y18c{bottom:487.187094px;}
.ye1{bottom:487.187418px;}
.y9f{bottom:487.456446px;}
.y1b2{bottom:487.456986px;}
.y50{bottom:489.798426px;}
.y2c5{bottom:492.404286px;}
.y334{bottom:497.533974px;}
.y36c{bottom:497.536878px;}
.y2fc{bottom:497.537202px;}
.y1e5{bottom:500.417850px;}
.y3bf{bottom:502.029978px;}
.y1f8{bottom:502.305384px;}
.yd{bottom:502.864502px;}
.y4f{bottom:505.007904px;}
.y270{bottom:505.360992px;}
.y10c{bottom:505.363422px;}
.y150{bottom:505.363440px;}
.y77{bottom:505.365258px;}
.y296{bottom:505.636014px;}
.y24b{bottom:505.636986px;}
.y165{bottom:505.637310px;}
.y2c4{bottom:507.074448px;}
.yc5{bottom:507.255756px;}
.y132{bottom:507.256122px;}
.y18b{bottom:507.257202px;}
.ye0{bottom:507.257526px;}
.y9e{bottom:507.526554px;}
.y1b1{bottom:507.527094px;}
.y333{bottom:512.204136px;}
.y3be{bottom:516.700140px;}
.y36b{bottom:516.706878px;}
.y2fb{bottom:516.707202px;}
.y4e{bottom:520.308120px;}
.yc{bottom:520.864502px;}
.y2c3{bottom:521.744610px;}
.y26f{bottom:525.431100px;}
.y10b{bottom:525.433530px;}
.y14f{bottom:525.433548px;}
.y76{bottom:525.435366px;}
.y295{bottom:525.706122px;}
.y24a{bottom:525.707094px;}
.y164{bottom:525.707418px;}
.y332{bottom:526.874298px;}
.yc4{bottom:527.325864px;}
.y131{bottom:527.326230px;}
.y18a{bottom:527.327310px;}
.ydf{bottom:527.327634px;}
.y9d{bottom:527.596662px;}
.y1b0{bottom:527.597202px;}
.y3bd{bottom:531.370302px;}
.y39d{bottom:531.374136px;}
.y36a{bottom:531.377040px;}
.y2fa{bottom:531.377364px;}
.y4d{bottom:535.608336px;}
.yb{bottom:538.864499px;}
.y2c2{bottom:540.914610px;}
.y331{bottom:541.544460px;}
.y26e{bottom:545.501208px;}
.y10a{bottom:545.503638px;}
.y14e{bottom:545.503656px;}
.y75{bottom:545.505474px;}
.y1cb{bottom:545.776014px;}
.y294{bottom:545.776230px;}
.y249{bottom:545.777202px;}
.y163{bottom:545.777526px;}
.y3bc{bottom:546.040464px;}
.y39c{bottom:546.044298px;}
.y369{bottom:546.047202px;}
.y2f9{bottom:546.047526px;}
.yc3{bottom:547.395972px;}
.y130{bottom:547.396338px;}
.y189{bottom:547.397418px;}
.yde{bottom:547.397742px;}
.y9c{bottom:547.666770px;}
.y1af{bottom:547.667310px;}
.y235{bottom:548.116815px;}
.y4c{bottom:550.817814px;}
.y220{bottom:554.414277px;}
.y2c1{bottom:555.584772px;}
.ya{bottom:556.864499px;}
.y330{bottom:560.714460px;}
.y368{bottom:560.717364px;}
.y3bb{bottom:565.210464px;}
.y2f8{bottom:565.217526px;}
.y26d{bottom:565.571316px;}
.y109{bottom:565.573746px;}
.y14d{bottom:565.573764px;}
.y74{bottom:565.575582px;}
.y1ca{bottom:565.846122px;}
.y293{bottom:565.846338px;}
.y248{bottom:565.847310px;}
.y162{bottom:565.847634px;}
.y4b{bottom:566.118030px;}
.yc2{bottom:567.466080px;}
.y12f{bottom:567.466446px;}
.y188{bottom:567.467526px;}
.ydd{bottom:567.467850px;}
.y9b{bottom:567.736878px;}
.y1ae{bottom:567.737418px;}
.y234{bottom:568.636986px;}
.y2c0{bottom:570.254934px;}
.y21e{bottom:574.934448px;}
.y32f{bottom:575.384622px;}
.y367{bottom:575.387526px;}
.y3ba{bottom:579.880626px;}
.y39b{bottom:579.884460px;}
.y2f7{bottom:579.887688px;}
.y4a{bottom:581.418246px;}
.y2bf{bottom:584.925096px;}
.y26c{bottom:585.641424px;}
.y108{bottom:585.643854px;}
.y14c{bottom:585.643872px;}
.y73{bottom:585.645690px;}
.y1c9{bottom:585.916230px;}
.y292{bottom:585.916446px;}
.y247{bottom:585.917418px;}
.y161{bottom:585.917742px;}
.yc1{bottom:587.536188px;}
.y12e{bottom:587.536554px;}
.y187{bottom:587.537634px;}
.y9a{bottom:587.806986px;}
.y1ad{bottom:587.807526px;}
.y233{bottom:589.157157px;}
.y32e{bottom:590.054784px;}
.y3b9{bottom:594.550788px;}
.y39a{bottom:594.554622px;}
.y366{bottom:594.557526px;}
.y2f6{bottom:594.557850px;}
.y21f{bottom:595.454619px;}
.y49{bottom:596.627724px;}
.y2be{bottom:599.595258px;}
.ydc{bottom:603.827850px;}
.y32d{bottom:604.724946px;}
.y26b{bottom:605.711532px;}
.y107{bottom:605.713962px;}
.y14b{bottom:605.713980px;}
.y72{bottom:605.715798px;}
.y1c8{bottom:605.986338px;}
.y291{bottom:605.986554px;}
.y246{bottom:605.987526px;}
.y160{bottom:605.987850px;}
.yc0{bottom:607.606296px;}
.y12d{bottom:607.606662px;}
.y186{bottom:607.607742px;}
.y99{bottom:607.877094px;}
.y1ac{bottom:607.877634px;}
.y2f5{bottom:609.218598px;}
.y399{bottom:609.224784px;}
.y365{bottom:609.227688px;}
.y232{bottom:609.587553px;}
.y48{bottom:611.927940px;}
.y3b8{bottom:613.720788px;}
.y2bd{bottom:614.265420px;}
.y21d{bottom:615.885015px;}
.y32c{bottom:619.395108px;}
.y398{bottom:623.894946px;}
.y364{bottom:623.897850px;}
.y26a{bottom:625.781640px;}
.y106{bottom:625.784070px;}
.y14a{bottom:625.784088px;}
.y71{bottom:625.785906px;}
.y1c7{bottom:626.056446px;}
.y290{bottom:626.056662px;}
.y245{bottom:626.057634px;}
.y47{bottom:627.228156px;}
.ybf{bottom:627.676404px;}
.y12c{bottom:627.676770px;}
.y185{bottom:627.677850px;}
.y98{bottom:627.947202px;}
.y1ab{bottom:627.947742px;}
.y2f4{bottom:628.388598px;}
.y3b7{bottom:628.390950px;}
.y231{bottom:630.107724px;}
.y2bc{bottom:633.435420px;}
.y21c{bottom:636.405186px;}
.y363{bottom:638.558718px;}
.y32b{bottom:638.565108px;}
.y46{bottom:642.437634px;}
.y2f3{bottom:643.058760px;}
.y3b6{bottom:643.061112px;}
.y9{bottom:645.510000px;}
.y269{bottom:645.851748px;}
.y105{bottom:645.854178px;}
.y149{bottom:645.854196px;}
.y70{bottom:645.856014px;}
.y1c6{bottom:646.126554px;}
.y28f{bottom:646.126770px;}
.y244{bottom:646.127742px;}
.ybe{bottom:647.746512px;}
.y12b{bottom:647.746878px;}
.y97{bottom:648.017310px;}
.y1aa{bottom:648.017850px;}
.y2bb{bottom:648.105582px;}
.y22f{bottom:650.627895px;}
.y32a{bottom:653.235270px;}
.y219{bottom:656.925357px;}
.y362{bottom:657.728718px;}
.y2f2{bottom:657.728922px;}
.y3b5{bottom:657.731274px;}
.y397{bottom:657.735108px;}
.y45{bottom:657.737850px;}
.y22e{bottom:657.827850px;}
.y2ba{bottom:662.775744px;}
.y15f{bottom:662.777850px;}
.y184{bottom:664.037850px;}
.y230{bottom:665.027805px;}
.y268{bottom:665.921856px;}
.y104{bottom:665.924286px;}
.y148{bottom:665.924304px;}
.y6f{bottom:665.926122px;}
.ydb{bottom:665.927634px;}
.y1c5{bottom:666.196662px;}
.y28e{bottom:666.196878px;}
.y243{bottom:666.197850px;}
.y8{bottom:666.771000px;}
.ybd{bottom:667.816620px;}
.y12a{bottom:667.816986px;}
.y329{bottom:667.905432px;}
.y96{bottom:668.087418px;}
.y361{bottom:672.398880px;}
.y2f1{bottom:672.399084px;}
.y396{bottom:672.405270px;}
.y3b4{bottom:676.901274px;}
.y21b{bottom:677.355753px;}
.y2b9{bottom:681.945744px;}
.y42{bottom:682.038000px;}
.y44{bottom:685.277850px;}
.y267{bottom:685.991964px;}
.y103{bottom:685.994394px;}
.y147{bottom:685.994412px;}
.y6e{bottom:685.996230px;}
.yda{bottom:685.997742px;}
.y1c4{bottom:686.266770px;}
.y28d{bottom:686.266986px;}
.y360{bottom:687.069042px;}
.y328{bottom:687.075432px;}
.ybc{bottom:687.886728px;}
.y129{bottom:687.887094px;}
.y95{bottom:688.157526px;}
.y237{bottom:690.947940px;}
.y2f0{bottom:691.569084px;}
.y3b3{bottom:691.571436px;}
.y2b8{bottom:696.615906px;}
.y21a{bottom:697.875924px;}
.y35f{bottom:701.739204px;}
.y327{bottom:701.745594px;}
.y1a9{bottom:704.807850px;}
.y236{bottom:705.347850px;}
.y266{bottom:706.062072px;}
.y102{bottom:706.064502px;}
.y146{bottom:706.064520px;}
.y6d{bottom:706.066338px;}
.yd9{bottom:706.067850px;}
.y2ef{bottom:706.239246px;}
.y3b2{bottom:706.241598px;}
.y395{bottom:706.245432px;}
.y1c3{bottom:706.336878px;}
.y28c{bottom:706.337094px;}
.ybb{bottom:707.956836px;}
.y128{bottom:707.957202px;}
.y94{bottom:708.227634px;}
.y2b7{bottom:711.286068px;}
.y326{bottom:716.415756px;}
.y218{bottom:718.394898px;}
.y35e{bottom:720.909204px;}
.y2ee{bottom:720.909408px;}
.y3b1{bottom:720.911760px;}
.y394{bottom:720.915594px;}
.y242{bottom:722.987850px;}
.y2b6{bottom:725.956230px;}
.y265{bottom:726.132180px;}
.y101{bottom:726.134610px;}
.y145{bottom:726.134628px;}
.y183{bottom:726.135942px;}
.y6c{bottom:726.136446px;}
.y7{bottom:726.298500px;}
.y1c2{bottom:726.406986px;}
.y28b{bottom:726.407202px;}
.yba{bottom:728.026944px;}
.y127{bottom:728.027310px;}
.y93{bottom:728.297742px;}
.y325{bottom:731.085918px;}
.y35d{bottom:735.579366px;}
.y2ed{bottom:735.579570px;}
.y393{bottom:735.585756px;}
.y217{bottom:738.825294px;}
.y41{bottom:739.997850px;}
.y3b0{bottom:740.081760px;}
.y2b5{bottom:745.126230px;}
.y324{bottom:745.756080px;}
.y264{bottom:746.202288px;}
.y100{bottom:746.204718px;}
.y144{bottom:746.204736px;}
.y182{bottom:746.206050px;}
.y6b{bottom:746.206554px;}
.y15e{bottom:746.207526px;}
.y1c1{bottom:746.477094px;}
.y28a{bottom:746.477310px;}
.yb9{bottom:748.097052px;}
.y126{bottom:748.097418px;}
.y92{bottom:748.367850px;}
.y214{bottom:749.085978px;}
.y35c{bottom:750.249528px;}
.y40{bottom:751.967850px;}
.y3{bottom:752.599495px;}
.y2ec{bottom:754.749570px;}
.y3af{bottom:754.751922px;}
.y392{bottom:754.755756px;}
.y216{bottom:759.345465px;}
.y2b4{bottom:759.796392px;}
.y3f{bottom:764.027850px;}
.y35b{bottom:764.919690px;}
.y323{bottom:764.926080px;}
.y263{bottom:766.272396px;}
.yff{bottom:766.274826px;}
.y143{bottom:766.274844px;}
.y181{bottom:766.276158px;}
.y6a{bottom:766.276662px;}
.y15d{bottom:766.277634px;}
.y1c0{bottom:766.547202px;}
.y289{bottom:766.547418px;}
.yb8{bottom:768.167160px;}
.y125{bottom:768.167526px;}
.y2eb{bottom:769.419732px;}
.y3ae{bottom:769.422084px;}
.y391{bottom:769.425918px;}
.y2b3{bottom:774.466554px;}
.y3e{bottom:775.997850px;}
.y35a{bottom:779.589852px;}
.y322{bottom:779.596242px;}
.y215{bottom:779.865636px;}
.y2ea{bottom:784.089894px;}
.y3ad{bottom:784.092246px;}
.y390{bottom:784.096080px;}
.y91{bottom:784.727850px;}
.y262{bottom:786.342504px;}
.yfe{bottom:786.344934px;}
.y142{bottom:786.344952px;}
.y180{bottom:786.346266px;}
.y69{bottom:786.346770px;}
.y15c{bottom:786.347742px;}
.y1bf{bottom:786.617310px;}
.y288{bottom:786.617526px;}
.y1a8{bottom:788.236986px;}
.yb7{bottom:788.237268px;}
.y124{bottom:788.237634px;}
.y2b2{bottom:789.136716px;}
.y321{bottom:794.266404px;}
.y359{bottom:798.759852px;}
.y2e9{bottom:798.760056px;}
.y213{bottom:800.296032px;}
.y3c{bottom:801.377850px;}
.y3ac{bottom:803.262246px;}
.y38f{bottom:803.266080px;}
.y2b1{bottom:803.806878px;}
.y261{bottom:806.412612px;}
.y241{bottom:806.414034px;}
.yfd{bottom:806.415042px;}
.y141{bottom:806.415060px;}
.y17f{bottom:806.416374px;}
.y68{bottom:806.416878px;}
.y15b{bottom:806.417850px;}
.y1be{bottom:806.687418px;}
.y287{bottom:806.687634px;}
.y1a7{bottom:808.307094px;}
.yb6{bottom:808.307376px;}
.y123{bottom:808.307742px;}
.y3d{bottom:808.937850px;}
.y358{bottom:813.430014px;}
.y2e8{bottom:813.430218px;}
.y320{bottom:813.436404px;}
.y3ab{bottom:817.932408px;}
.y38e{bottom:817.936242px;}
.y212{bottom:820.816203px;}
.y2b0{bottom:822.976878px;}
.y90{bottom:823.337700px;}
.y260{bottom:826.482720px;}
.y240{bottom:826.484142px;}
.yfc{bottom:826.485150px;}
.y140{bottom:826.485168px;}
.y17e{bottom:826.486482px;}
.y22d{bottom:826.486536px;}
.y67{bottom:826.486986px;}
.y15a{bottom:826.487526px;}
.y224{bottom:826.487850px;}
.y1bd{bottom:826.757526px;}
.y286{bottom:826.757742px;}
.y357{bottom:828.100176px;}
.y2e7{bottom:828.100380px;}
.y31f{bottom:828.106566px;}
.y1a6{bottom:828.377202px;}
.yb5{bottom:828.377484px;}
.y122{bottom:828.377850px;}
.y20f{bottom:831.076887px;}
.y3aa{bottom:832.602570px;}
.y38d{bottom:832.606404px;}
.y2af{bottom:837.647040px;}
.y3b{bottom:840.077850px;}
.y211{bottom:841.336374px;}
.y31e{bottom:842.776728px;}
.y25f{bottom:846.552828px;}
.y23f{bottom:846.554250px;}
.yfb{bottom:846.555258px;}
.y13f{bottom:846.555276px;}
.y17d{bottom:846.556590px;}
.y22c{bottom:846.556644px;}
.y66{bottom:846.557094px;}
.y159{bottom:846.557634px;}
.y1bc{bottom:846.827634px;}
.y285{bottom:846.827850px;}
.y356{bottom:847.270176px;}
.y2e6{bottom:847.270380px;}
.y3a9{bottom:847.272732px;}
.y38c{bottom:847.276566px;}
.y1a5{bottom:848.447310px;}
.yb4{bottom:848.447592px;}
.y2ae{bottom:852.317202px;}
.y39{bottom:855.648000px;}
.y38{bottom:861.047850px;}
.y210{bottom:861.766770px;}
.y355{bottom:861.940338px;}
.y2e5{bottom:861.940542px;}
.y31d{bottom:861.946728px;}
.y121{bottom:864.737850px;}
.y3a8{bottom:866.442732px;}
.y38b{bottom:866.446566px;}
.y25e{bottom:866.622936px;}
.y23e{bottom:866.624358px;}
.yfa{bottom:866.625366px;}
.y13e{bottom:866.625384px;}
.y17c{bottom:866.626698px;}
.y22b{bottom:866.626752px;}
.y65{bottom:866.627202px;}
.y158{bottom:866.627742px;}
.y1bb{bottom:866.897742px;}
.y2ad{bottom:866.987364px;}
.y1a4{bottom:868.517418px;}
.yb3{bottom:868.517700px;}
.y354{bottom:876.610500px;}
.y2e4{bottom:876.610704px;}
.y31c{bottom:876.616890px;}
.y2{bottom:879.369000px;}
.y3a7{bottom:881.112894px;}
.y38a{bottom:881.116728px;}
.y20e{bottom:882.286941px;}
.y2ac{bottom:886.157364px;}
.y25d{bottom:886.693044px;}
.y23d{bottom:886.694466px;}
.yf9{bottom:886.695474px;}
.y13d{bottom:886.695492px;}
.y17b{bottom:886.696806px;}
.y22a{bottom:886.696860px;}
.y64{bottom:886.697310px;}
.y157{bottom:886.697850px;}
.y1ba{bottom:886.967850px;}
.y1a3{bottom:888.587526px;}
.y353{bottom:891.280662px;}
.y2e3{bottom:891.280866px;}
.y31b{bottom:891.287052px;}
.y3a6{bottom:895.783056px;}
.y389{bottom:895.786890px;}
.y2ab{bottom:900.827526px;}
.y20d{bottom:902.807112px;}
.y284{bottom:903.617850px;}
.yb2{bottom:904.877850px;}
.y31a{bottom:905.957214px;}
.y8f{bottom:906.763152px;}
.y23c{bottom:906.764574px;}
.yf8{bottom:906.765582px;}
.y13c{bottom:906.765600px;}
.y17a{bottom:906.766914px;}
.y229{bottom:906.766968px;}
.y63{bottom:906.767418px;}
.y156{bottom:906.767634px;}
.y1a2{bottom:908.657634px;}
.y352{bottom:910.450662px;}
.y2e2{bottom:910.450866px;}
.y3a5{bottom:910.453218px;}
.y388{bottom:910.457052px;}
.y20a{bottom:913.067796px;}
.y2aa{bottom:915.497688px;}
.y20c{bottom:923.237508px;}
.y1b9{bottom:923.687850px;}
.y351{bottom:925.120824px;}
.y2e1{bottom:925.121028px;}
.y319{bottom:925.127214px;}
.y37{bottom:926.567652px;}
.y8e{bottom:926.833260px;}
.y23b{bottom:926.834682px;}
.yf7{bottom:926.835690px;}
.y13b{bottom:926.835708px;}
.y179{bottom:926.837022px;}
.y228{bottom:926.837076px;}
.y62{bottom:926.837526px;}
.y120{bottom:926.837742px;}
.y1a1{bottom:928.727742px;}
.y3a4{bottom:929.623218px;}
.y2a9{bottom:930.167850px;}
.y36{bottom:939.167850px;}
.y2e0{bottom:939.791190px;}
.y318{bottom:939.797376px;}
.y20b{bottom:943.757679px;}
.y350{bottom:944.290824px;}
.y3a3{bottom:944.293380px;}
.y387{bottom:944.297214px;}
.y8d{bottom:946.903368px;}
.y23a{bottom:946.904790px;}
.yf6{bottom:946.905798px;}
.y13a{bottom:946.905816px;}
.y178{bottom:946.907130px;}
.y227{bottom:946.907184px;}
.y61{bottom:946.907634px;}
.y11f{bottom:946.907850px;}
.y1a0{bottom:948.797850px;}
.y2df{bottom:954.461352px;}
.y317{bottom:954.467538px;}
.y34f{bottom:958.960986px;}
.y3a2{bottom:958.963542px;}
.y386{bottom:958.967376px;}
.y35{bottom:963.287850px;}
.y209{bottom:964.277850px;}
.y1{bottom:966.726000px;}
.y8c{bottom:966.973476px;}
.y239{bottom:966.974898px;}
.yf5{bottom:966.975906px;}
.y139{bottom:966.975924px;}
.y177{bottom:966.977238px;}
.y226{bottom:966.977292px;}
.y60{bottom:966.977742px;}
.yb1{bottom:966.978120px;}
.y316{bottom:969.137700px;}
.y34e{bottom:973.631148px;}
.y2de{bottom:973.631352px;}
.y3a1{bottom:973.633704px;}
.y385{bottom:973.637538px;}
.y2a8{bottom:983.897850px;}
.y19f{bottom:985.157850px;}
.y222{bottom:986.958000px;}
.y8b{bottom:987.043584px;}
.y238{bottom:987.045006px;}
.yf4{bottom:987.046014px;}
.y138{bottom:987.046032px;}
.y1b8{bottom:987.046824px;}
.y176{bottom:987.047346px;}
.y225{bottom:987.047400px;}
.y5f{bottom:987.047850px;}
.yb0{bottom:987.048228px;}
.y34d{bottom:988.301310px;}
.y2dd{bottom:988.301514px;}
.y3a0{bottom:988.303866px;}
.y315{bottom:988.307700px;}
.y221{bottom:990.197700px;}
.y34{bottom:1000.637304px;}
.y33{bottom:1013.237502px;}
.y32{bottom:1025.837700px;}
.y5d{bottom:1032.767700px;}
.h17{height:11.880000px;}
.h1c{height:12.240000px;}
.h13{height:14.670000px;}
.h12{height:18.720703px;}
.hf{height:24.660000px;}
.hc{height:29.163164px;}
.hb{height:31.311035px;}
.h7{height:32.130000px;}
.h11{height:32.755957px;}
.h14{height:33.244805px;}
.h16{height:33.478594px;}
.hd{height:33.852305px;}
.h1f{height:35.644219px;}
.h1a{height:36.868535px;}
.h19{height:38.521758px;}
.ha{height:39.604922px;}
.h1d{height:39.882656px;}
.h15{height:45.354023px;}
.h18{height:45.710684px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.027344px;}
.h10{height:50.760000px;}
.h2{height:55.080000px;}
.he{height:59.761230px;}
.h1e{height:62.278414px;}
.h1b{height:74.516542px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:90.090000px;}
.w7{width:390.780000px;}
.w6{width:487.980000px;}
.w4{width:620.100000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:88.200000px;}
.x5{left:89.280000px;}
.x2f{left:90.630000px;}
.x22{left:91.800000px;}
.x15{left:96.840000px;}
.x2e{left:98.641044px;}
.x7{left:99.810266px;}
.x1{left:102.045000px;}
.x6{left:104.310000px;}
.x2{left:106.297500px;}
.x3a{left:112.948425px;}
.x26{left:116.189748px;}
.x23{left:120.060684px;}
.x1e{left:121.139594px;}
.x16{left:132.300000px;}
.x2a{left:135.449991px;}
.x25{left:147.690000px;}
.x2d{left:149.401026px;}
.x39{left:163.709604px;}
.x9{left:183.240000px;}
.x30{left:191.520000px;}
.x4{left:203.484001px;}
.x29{left:205.919262px;}
.x27{left:207.900297px;}
.x28{left:211.589451px;}
.xe{left:216.270000px;}
.x1b{left:219.240000px;}
.xf{left:221.310000px;}
.x1d{left:227.520000px;}
.x24{left:229.050000px;}
.xa{left:252.180000px;}
.x2b{left:282.780342px;}
.xc{left:305.099865px;}
.x31{left:330.390000px;}
.x34{left:348.120000px;}
.x32{left:350.730000px;}
.x10{left:365.760000px;}
.x11{left:376.830000px;}
.x18{left:386.100000px;}
.xb{left:401.760000px;}
.x8{left:416.610000px;}
.x1a{left:431.640000px;}
.x1c{left:447.750614px;}
.x3{left:454.959000px;}
.x17{left:486.090000px;}
.x33{left:505.440000px;}
.x2c{left:530.459991px;}
.x21{left:545.130000px;}
.x36{left:548.999964px;}
.x12{left:551.250000px;}
.x20{left:553.860000px;}
.x13{left:556.110000px;}
.x1f{left:559.890000px;}
.xd{left:612.900000px;}
.x37{left:632.519442px;}
.x38{left:638.189631px;}
.x14{left:644.310000px;}
.x35{left:668.430000px;}
.x19{left:694.169892px;}
@media print{
.v2{vertical-align:-16.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v4{vertical-align:25.599840pt;}
.v3{vertical-align:36.478176pt;}
.ls83{letter-spacing:-3.844224pt;}
.ls7e{letter-spacing:-3.839680pt;}
.ls11{letter-spacing:-3.751200pt;}
.ls94{letter-spacing:-3.530688pt;}
.ls84{letter-spacing:-3.526144pt;}
.ls69{letter-spacing:-3.521600pt;}
.ls88{letter-spacing:-3.203520pt;}
.ls68{letter-spacing:-3.198976pt;}
.ls6{letter-spacing:-3.196000pt;}
.ls25{letter-spacing:-2.931552pt;}
.ls19{letter-spacing:-2.885440pt;}
.ls6d{letter-spacing:-2.880896pt;}
.ls77{letter-spacing:-2.876352pt;}
.lsb{letter-spacing:-2.624064pt;}
.ls31{letter-spacing:-2.619008pt;}
.ls27{letter-spacing:-2.605824pt;}
.ls39{letter-spacing:-2.588672pt;}
.ls8d{letter-spacing:-2.571904pt;}
.ls70{letter-spacing:-2.562816pt;}
.ls91{letter-spacing:-2.558272pt;}
.ls86{letter-spacing:-2.553728pt;}
.ls7b{letter-spacing:-2.549184pt;}
.ls38{letter-spacing:-2.522944pt;}
.ls60{letter-spacing:-2.472384pt;}
.ls3a{letter-spacing:-2.411712pt;}
.ls28{letter-spacing:-2.295424pt;}
.ls36{letter-spacing:-2.290368pt;}
.ls24{letter-spacing:-2.280096pt;}
.ls6b{letter-spacing:-2.244736pt;}
.ls76{letter-spacing:-2.240192pt;}
.lse{letter-spacing:-2.239200pt;}
.ls48{letter-spacing:-2.238656pt;}
.ls79{letter-spacing:-2.235648pt;}
.ls4a{letter-spacing:-2.093184pt;}
.ls47{letter-spacing:-2.088128pt;}
.ls74{letter-spacing:-2.076608pt;}
.ls23{letter-spacing:-1.979040pt;}
.ls4f{letter-spacing:-1.971840pt;}
.ls5{letter-spacing:-1.966784pt;}
.ls37{letter-spacing:-1.961728pt;}
.ls8b{letter-spacing:-1.931200pt;}
.ls7c{letter-spacing:-1.926656pt;}
.ls73{letter-spacing:-1.922112pt;}
.ls80{letter-spacing:-1.917568pt;}
.ls13{letter-spacing:-1.916928pt;}
.ls89{letter-spacing:-1.913024pt;}
.ls87{letter-spacing:-1.908480pt;}
.ls45{letter-spacing:-1.870720pt;}
.ls46{letter-spacing:-1.840384pt;}
.ls5b{letter-spacing:-1.825216pt;}
.ls5c{letter-spacing:-1.774656pt;}
.ls5d{letter-spacing:-1.764544pt;}
.ls3b{letter-spacing:-1.739264pt;}
.ls34{letter-spacing:-1.643200pt;}
.ls2d{letter-spacing:-1.638144pt;}
.ls33{letter-spacing:-1.633088pt;}
.ls26{letter-spacing:-1.628640pt;}
.ls58{letter-spacing:-1.622976pt;}
.ls5a{letter-spacing:-1.604512pt;}
.ls21{letter-spacing:-1.604032pt;}
.ls1f{letter-spacing:-1.599488pt;}
.ls12{letter-spacing:-1.597440pt;}
.ls22{letter-spacing:-1.594944pt;}
.ls15{letter-spacing:-1.591296pt;}
.ls6a{letter-spacing:-1.590400pt;}
.ls65{letter-spacing:-1.557248pt;}
.ls64{letter-spacing:-1.537024pt;}
.ls50{letter-spacing:-1.516800pt;}
.ls63{letter-spacing:-1.501632pt;}
.ls51{letter-spacing:-1.456128pt;}
.ls44{letter-spacing:-1.395456pt;}
.ls43{letter-spacing:-1.390400pt;}
.ls2e{letter-spacing:-1.314560pt;}
.ls29{letter-spacing:-1.309504pt;}
.ls72{letter-spacing:-1.290496pt;}
.ls1a{letter-spacing:-1.285952pt;}
.ls71{letter-spacing:-1.281408pt;}
.ls5f{letter-spacing:-1.281056pt;}
.ls1c{letter-spacing:-1.276864pt;}
.ls17{letter-spacing:-1.276000pt;}
.ls78{letter-spacing:-1.267776pt;}
.lsa{letter-spacing:-0.990976pt;}
.ls4{letter-spacing:-0.985920pt;}
.ls2c{letter-spacing:-0.980864pt;}
.ls14{letter-spacing:-0.964608pt;}
.ls1d{letter-spacing:-0.963328pt;}
.ls6e{letter-spacing:-0.958784pt;}
.ls16{letter-spacing:-0.956000pt;}
.ls82{letter-spacing:-0.954240pt;}
.ls1e{letter-spacing:-0.949696pt;}
.ls3e{letter-spacing:-0.864576pt;}
.ls3d{letter-spacing:-0.824128pt;}
.ls9{letter-spacing:-0.662336pt;}
.ls2b{letter-spacing:-0.657280pt;}
.ls32{letter-spacing:-0.652224pt;}
.ls75{letter-spacing:-0.645248pt;}
.lsf{letter-spacing:-0.639392pt;}
.ls6f{letter-spacing:-0.636160pt;}
.ls1b{letter-spacing:-0.631616pt;}
.ls8{letter-spacing:-0.333696pt;}
.ls2a{letter-spacing:-0.328640pt;}
.lsd{letter-spacing:-0.325728pt;}
.ls59{letter-spacing:-0.323584pt;}
.ls7d{letter-spacing:-0.313536pt;}
.ls56{letter-spacing:-0.310688pt;}
.ls20{letter-spacing:-0.308992pt;}
.ls61{letter-spacing:-0.242688pt;}
.ls4d{letter-spacing:-0.176960pt;}
.ls4e{letter-spacing:-0.166848pt;}
.ls62{letter-spacing:-0.106176pt;}
.ls30{letter-spacing:-0.070272pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls4c{letter-spacing:-0.051200pt;}
.ls2f{letter-spacing:-0.044800pt;}
.ls66{letter-spacing:-0.038400pt;}
.ls67{letter-spacing:-0.025600pt;}
.ls3c{letter-spacing:-0.010112pt;}
.ls52{letter-spacing:-0.008512pt;}
.ls35{letter-spacing:-0.005856pt;}
.ls7{letter-spacing:-0.005056pt;}
.ls49{letter-spacing:-0.004256pt;}
.lsc{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.004256pt;}
.ls90{letter-spacing:0.004544pt;}
.ls54{letter-spacing:0.005056pt;}
.ls42{letter-spacing:0.005856pt;}
.ls5e{letter-spacing:0.314944pt;}
.ls4b{letter-spacing:0.343808pt;}
.ls40{letter-spacing:0.348864pt;}
.ls55{letter-spacing:0.646912pt;}
.ls3f{letter-spacing:1.395456pt;}
.ls8f{letter-spacing:4.162304pt;}
.ls7a{letter-spacing:4.803008pt;}
.ls85{letter-spacing:5.443712pt;}
.ls8c{letter-spacing:5.766336pt;}
.ls81{letter-spacing:6.402496pt;}
.ls6c{letter-spacing:7.043200pt;}
.ls92{letter-spacing:7.365824pt;}
.ls41{letter-spacing:7.528384pt;}
.ls95{letter-spacing:7.683904pt;}
.ls18{letter-spacing:8.443904pt;}
.ls93{letter-spacing:8.965312pt;}
.ls8a{letter-spacing:9.924096pt;}
.ls96{letter-spacing:10.242176pt;}
.ls10{letter-spacing:10.339200pt;}
.ls7f{letter-spacing:13.763776pt;}
.ls2{letter-spacing:18.240768pt;}
.ls8e{letter-spacing:20.484352pt;}
.ls57{letter-spacing:39.254784pt;}
.ls1{letter-spacing:612.799200pt;}
.ws34{word-spacing:-39.305344pt;}
.ws59{word-spacing:-22.733632pt;}
.ws10{word-spacing:-16.725600pt;}
.ws1a{word-spacing:-12.741120pt;}
.ws21{word-spacing:-12.736064pt;}
.ws61{word-spacing:-12.173376pt;}
.ws57{word-spacing:-11.855296pt;}
.ws7{word-spacing:-11.496320pt;}
.ws2b{word-spacing:-11.201792pt;}
.ws5f{word-spacing:-10.896512pt;}
.ws2e{word-spacing:-10.550624pt;}
.ws6{word-spacing:-10.219456pt;}
.ws42{word-spacing:-10.214912pt;}
.ws5c{word-spacing:-10.210368pt;}
.ws44{word-spacing:-10.205824pt;}
.ws8{word-spacing:-9.901376pt;}
.ws43{word-spacing:-9.896832pt;}
.ws5d{word-spacing:-9.587840pt;}
.ws54{word-spacing:-9.578752pt;}
.ws53{word-spacing:-9.565120pt;}
.ws9{word-spacing:-9.472320pt;}
.ws5e{word-spacing:-9.297024pt;}
.ws2{word-spacing:-9.281376pt;}
.ws47{word-spacing:-8.974400pt;}
.ws1{word-spacing:-8.959392pt;}
.ws5{word-spacing:-8.610880pt;}
.ws51{word-spacing:-8.333696pt;}
.ws5b{word-spacing:-8.015616pt;}
.wsa{word-spacing:-7.843680pt;}
.ws45{word-spacing:-7.652096pt;}
.ws58{word-spacing:-1.935744pt;}
.ws11{word-spacing:-1.677600pt;}
.ws60{word-spacing:-1.622208pt;}
.ws40{word-spacing:-1.451072pt;}
.ws1c{word-spacing:-1.400512pt;}
.ws4f{word-spacing:-1.299584pt;}
.ws4c{word-spacing:-1.295040pt;}
.ws52{word-spacing:-1.290496pt;}
.ws5a{word-spacing:-0.976960pt;}
.ws46{word-spacing:-0.972416pt;}
.ws49{word-spacing:-0.967872pt;}
.ws50{word-spacing:-0.963328pt;}
.ws4d{word-spacing:-0.813376pt;}
.ws56{word-spacing:-0.658880pt;}
.ws1b{word-spacing:-0.652224pt;}
.ws4b{word-spacing:-0.649792pt;}
.ws18{word-spacing:-0.647168pt;}
.ws13{word-spacing:-0.645248pt;}
.ws1d{word-spacing:-0.642112pt;}
.ws29{word-spacing:-0.444928pt;}
.ws48{word-spacing:-0.331712pt;}
.ws32{word-spacing:-0.328640pt;}
.ws4e{word-spacing:-0.327168pt;}
.ws16{word-spacing:-0.323584pt;}
.ws3f{word-spacing:-0.321984pt;}
.wsb{word-spacing:-0.318528pt;}
.ws1f{word-spacing:-0.313472pt;}
.ws35{word-spacing:-0.042560pt;}
.ws3{word-spacing:-0.039360pt;}
.ws4{word-spacing:-0.024000pt;}
.ws1e{word-spacing:-0.017568pt;}
.ws12{word-spacing:-0.008000pt;}
.wsf{word-spacing:-0.003744pt;}
.ws0{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.004544pt;}
.wsc{word-spacing:0.005056pt;}
.ws14{word-spacing:0.007488pt;}
.ws33{word-spacing:0.008512pt;}
.wsd{word-spacing:0.010112pt;}
.ws20{word-spacing:0.166848pt;}
.ws3a{word-spacing:0.319200pt;}
.ws55{word-spacing:0.322624pt;}
.ws19{word-spacing:0.323584pt;}
.ws17{word-spacing:0.328640pt;}
.ws38{word-spacing:0.331968pt;}
.wse{word-spacing:0.333696pt;}
.ws2a{word-spacing:0.336224pt;}
.ws41{word-spacing:0.338752pt;}
.ws39{word-spacing:0.651168pt;}
.ws15{word-spacing:0.662336pt;}
.ws28{word-spacing:98.258272pt;}
.ws3d{word-spacing:105.914816pt;}
.ws3e{word-spacing:106.234016pt;}
.ws24{word-spacing:116.167520pt;}
.ws25{word-spacing:126.726656pt;}
.ws26{word-spacing:137.609248pt;}
.ws27{word-spacing:148.168384pt;}
.ws37{word-spacing:153.228768pt;}
.ws36{word-spacing:153.288352pt;}
.ws22{word-spacing:156.808064pt;}
.ws3c{word-spacing:201.925920pt;}
.ws23{word-spacing:209.254752pt;}
.ws3b{word-spacing:212.808512pt;}
.ws2d{word-spacing:318.719072pt;}
.ws2f{word-spacing:364.151872pt;}
.ws30{word-spacing:365.437184pt;}
.ws31{word-spacing:367.339616pt;}
.ws2c{word-spacing:367.999296pt;}
._3c{margin-left:-1360.685760pt;}
._5f{margin-left:-666.755360pt;}
._e{margin-left:-649.539648pt;}
._63{margin-left:-639.403072pt;}
._73{margin-left:-618.490080pt;}
._50{margin-left:-507.159808pt;}
._72{margin-left:-488.371840pt;}
._54{margin-left:-479.203776pt;}
._58{margin-left:-138.579616pt;}
._3d{margin-left:-39.573312pt;}
._74{margin-left:-22.088384pt;}
._75{margin-left:-21.120512pt;}
._11{margin-left:-18.399232pt;}
._10{margin-left:-17.071200pt;}
._12{margin-left:-16.059232pt;}
._f{margin-left:-15.127200pt;}
._13{margin-left:-13.385536pt;}
._16{margin-left:-11.355008pt;}
._71{margin-left:-10.377984pt;}
._6d{margin-left:-8.974400pt;}
._28{margin-left:-7.862080pt;}
._29{margin-left:-6.881216pt;}
._6f{margin-left:-5.891392pt;}
._70{margin-left:-4.739712pt;}
._19{margin-left:-3.415104pt;}
._7{margin-left:-2.010432pt;}
._1{margin-left:-0.970752pt;}
._2{width:1.071872pt;}
._4{width:2.376320pt;}
._17{width:3.641728pt;}
._6e{width:4.717312pt;}
._1a{width:5.938496pt;}
._18{width:6.865152pt;}
._0{width:7.851968pt;}
._3{width:9.105856pt;}
._6{width:10.148384pt;}
._15{width:11.060128pt;}
._2e{width:11.965696pt;}
._2d{width:13.074816pt;}
._1d{width:14.070848pt;}
._1f{width:15.056768pt;}
._b{width:16.037632pt;}
._a{width:17.003328pt;}
._1b{width:18.014528pt;}
._1c{width:19.278528pt;}
._5{width:20.524000pt;}
._c{width:21.584064pt;}
._2c{width:22.494144pt;}
._14{width:23.640864pt;}
._21{width:24.685376pt;}
._24{width:25.587424pt;}
._1e{width:26.488384pt;}
._20{width:27.378240pt;}
._22{width:28.874816pt;}
._26{width:30.442176pt;}
._27{width:31.382592pt;}
._2a{width:32.772992pt;}
._9{width:33.698240pt;}
._8{width:34.663936pt;}
._23{width:35.715584pt;}
._d{width:36.635296pt;}
._2b{width:37.970560pt;}
._6b{width:40.089024pt;}
._6c{width:40.978880pt;}
._25{width:44.502912pt;}
._40{width:60.389024pt;}
._4f{width:73.514528pt;}
._36{width:80.978912pt;}
._41{width:95.998336pt;}
._3f{width:101.131072pt;}
._42{width:119.312704pt;}
._37{width:127.166304pt;}
._5e{width:135.042880pt;}
._62{width:147.193760pt;}
._35{width:158.719008pt;}
._4a{width:160.675136pt;}
._44{width:163.838976pt;}
._48{width:170.474720pt;}
._38{width:174.415136pt;}
._46{width:175.640864pt;}
._31{width:182.297888pt;}
._34{width:185.931872pt;}
._30{width:190.698592pt;}
._32{width:194.877984pt;}
._49{width:196.520800pt;}
._33{width:205.756320pt;}
._65{width:211.523200pt;}
._4e{width:215.042912pt;}
._67{width:223.993280pt;}
._53{width:227.512992pt;}
._3e{width:237.425216pt;}
._4b{width:242.225984pt;}
._52{width:244.149696pt;}
._5c{width:255.036544pt;}
._5a{width:263.684736pt;}
._61{width:265.595680pt;}
._3a{width:273.277760pt;}
._56{width:276.474016pt;}
._43{width:281.173280pt;}
._39{width:283.088480pt;}
._45{width:288.318464pt;}
._2f{width:295.230848pt;}
._47{width:340.794944pt;}
._3b{width:346.382432pt;}
._69{width:395.522848pt;}
._57{width:399.042560pt;}
._4c{width:440.304480pt;}
._64{width:491.521184pt;}
._59{width:496.956096pt;}
._6a{width:504.080000pt;}
._4d{width:508.447296pt;}
._60{width:516.478368pt;}
._51{width:680.955744pt;}
._68{width:694.902112pt;}
._55{width:698.877760pt;}
._66{width:709.953952pt;}
._5d{width:715.092576pt;}
._5b{width:740.530272pt;}
.fs9{font-size:4.160000pt;}
.fsc{font-size:24.000000pt;}
.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:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.239867pt;}
.y223{bottom:2.879733pt;}
.y43{bottom:2.879867pt;}
.y3a{bottom:4.799867pt;}
.y6{bottom:31.933340pt;}
.y5c{bottom:58.815867pt;}
.y5{bottom:59.133337pt;}
.y5e{bottom:65.615509pt;}
.y59{bottom:65.936000pt;}
.y5b{bottom:68.175867pt;}
.y58{bottom:77.455867pt;}
.y4{bottom:86.333337pt;}
.y29{bottom:103.455867pt;}
.y155{bottom:104.655867pt;}
.y34c{bottom:105.289829pt;}
.y314{bottom:105.292699pt;}
.y2dc{bottom:105.770539pt;}
.y25b{bottom:107.135867pt;}
.y1e3{bottom:107.374963pt;}
.y1f7{bottom:109.214235pt;}
.y208{bottom:109.215099pt;}
.y384{bottom:109.292267pt;}
.y283{bottom:110.247947pt;}
.y8a{bottom:110.251739pt;}
.y11e{bottom:110.255771pt;}
.yaf{bottom:110.255867pt;}
.y31{bottom:111.455195pt;}
.yd8{bottom:111.932181pt;}
.y19e{bottom:111.933467pt;}
.yf3{bottom:111.933755pt;}
.y175{bottom:112.175099pt;}
.yae{bottom:113.855195pt;}
.y1e2{bottom:116.495571pt;}
.y28{bottom:116.975867pt;}
.y34b{bottom:118.329973pt;}
.y313{bottom:118.332843pt;}
.y383{bottom:122.332411pt;}
.y2db{bottom:122.810539pt;}
.y23{bottom:123.790666pt;}
.y25a{bottom:124.253747pt;}
.y1f6{bottom:127.054331pt;}
.y207{bottom:127.055195pt;}
.y282{bottom:128.088043pt;}
.y89{bottom:128.091835pt;}
.y11d{bottom:128.095867pt;}
.y30{bottom:129.295291pt;}
.yd7{bottom:129.772277pt;}
.y19d{bottom:129.773563pt;}
.yf2{bottom:129.773851pt;}
.y174{bottom:130.015195pt;}
.y34a{bottom:131.370117pt;}
.y312{bottom:131.372987pt;}
.yad{bottom:131.695291pt;}
.y27{bottom:133.055867pt;}
.y382{bottom:135.372555pt;}
.y2da{bottom:135.850683pt;}
.y259{bottom:142.493899pt;}
.y1e1{bottom:143.775467pt;}
.y349{bottom:144.410261pt;}
.y1f5{bottom:144.894427pt;}
.y206{bottom:144.895291pt;}
.y281{bottom:145.928139pt;}
.y88{bottom:145.931931pt;}
.y11c{bottom:145.935771pt;}
.y2a7{bottom:146.172603pt;}
.y2f{bottom:147.135387pt;}
.yd6{bottom:147.612373pt;}
.y19c{bottom:147.613659pt;}
.yf1{bottom:147.613947pt;}
.y173{bottom:147.855291pt;}
.y381{bottom:148.412699pt;}
.y311{bottom:148.412987pt;}
.y2d9{bottom:148.890827pt;}
.yac{bottom:149.535387pt;}
.y348{bottom:157.450405pt;}
.y258{bottom:160.654251pt;}
.y380{bottom:161.452843pt;}
.y310{bottom:161.453131pt;}
.y2d8{bottom:161.930971pt;}
.y1e0{bottom:162.015619pt;}
.y1f4{bottom:162.734523pt;}
.y205{bottom:162.735387pt;}
.y280{bottom:163.768235pt;}
.y87{bottom:163.772027pt;}
.y11b{bottom:163.775867pt;}
.y2a6{bottom:164.012699pt;}
.y2e{bottom:164.975483pt;}
.y26{bottom:165.215771pt;}
.yd5{bottom:165.452469pt;}
.y19b{bottom:165.453755pt;}
.yf0{bottom:165.454043pt;}
.y172{bottom:165.695387pt;}
.yab{bottom:167.375483pt;}
.y347{bottom:174.490405pt;}
.y30f{bottom:174.493275pt;}
.y1a{bottom:175.052000pt;}
.y37f{bottom:178.492843pt;}
.y257{bottom:178.894403pt;}
.y2d7{bottom:178.970971pt;}
.y1dd{bottom:180.255771pt;}
.y1f3{bottom:180.574619pt;}
.y204{bottom:180.575483pt;}
.y27f{bottom:181.608331pt;}
.y86{bottom:181.612123pt;}
.y11a{bottom:181.615771pt;}
.y2a5{bottom:181.852795pt;}
.y2d{bottom:182.815579pt;}
.y25{bottom:183.055867pt;}
.yd4{bottom:183.292565pt;}
.y19a{bottom:183.293851pt;}
.yef{bottom:183.294139pt;}
.y1d9{bottom:183.534715pt;}
.y171{bottom:183.535483pt;}
.yaa{bottom:185.215579pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y346{bottom:187.530549pt;}
.y37e{bottom:191.532987pt;}
.y30e{bottom:191.533275pt;}
.y2d6{bottom:192.011115pt;}
.y256{bottom:197.134555pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1f2{bottom:198.414715pt;}
.y203{bottom:198.415579pt;}
.y1df{bottom:198.416123pt;}
.y27e{bottom:199.448427pt;}
.y85{bottom:199.452219pt;}
.y119{bottom:199.455867pt;}
.y2a4{bottom:199.692891pt;}
.y2c{bottom:200.655675pt;}
.yd3{bottom:201.132661pt;}
.y199{bottom:201.133947pt;}
.yee{bottom:201.134235pt;}
.y1d8{bottom:201.374811pt;}
.y170{bottom:201.375579pt;}
.ya9{bottom:203.055675pt;}
.y345{bottom:204.570549pt;}
.y37d{bottom:204.573131pt;}
.y30d{bottom:204.573419pt;}
.y2d5{bottom:205.051259pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y255{bottom:215.294907pt;}
.y1f1{bottom:216.254811pt;}
.y202{bottom:216.255675pt;}
.y1de{bottom:216.656275pt;}
.y27d{bottom:217.288523pt;}
.y84{bottom:217.292315pt;}
.y2a3{bottom:217.532987pt;}
.y344{bottom:217.610693pt;}
.y30c{bottom:217.613563pt;}
.y2b{bottom:218.495771pt;}
.yd2{bottom:218.972757pt;}
.y198{bottom:218.974043pt;}
.yed{bottom:218.974331pt;}
.y1d7{bottom:219.214907pt;}
.y16f{bottom:219.215675pt;}
.ya8{bottom:220.895771pt;}
.y37c{bottom:221.613131pt;}
.y2d4{bottom:222.091259pt;}
.y343{bottom:230.650837pt;}
.y30b{bottom:230.653707pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y24{bottom:233.455867pt;}
.y254{bottom:233.535059pt;}
.y1f0{bottom:234.094907pt;}
.y201{bottom:234.095771pt;}
.y37b{bottom:234.653275pt;}
.y1dc{bottom:234.895363pt;}
.y27c{bottom:235.128619pt;}
.y118{bottom:235.130779pt;}
.y2d3{bottom:235.131403pt;}
.y83{bottom:235.132411pt;}
.y2a2{bottom:235.373083pt;}
.y2a{bottom:236.335867pt;}
.yd1{bottom:236.812853pt;}
.y197{bottom:236.814139pt;}
.yec{bottom:236.814427pt;}
.y1d6{bottom:237.055003pt;}
.y16e{bottom:237.055771pt;}
.ya7{bottom:238.735867pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1db{bottom:243.936171pt;}
.y342{bottom:247.690837pt;}
.y37a{bottom:247.693419pt;}
.y30a{bottom:247.693707pt;}
.y2d2{bottom:248.171547pt;}
.y253{bottom:251.775211pt;}
.y1ef{bottom:251.935003pt;}
.y200{bottom:251.935867pt;}
.y27b{bottom:252.968715pt;}
.y117{bottom:252.970875pt;}
.y82{bottom:252.972507pt;}
.y2a1{bottom:253.213179pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yd0{bottom:254.652949pt;}
.y196{bottom:254.654235pt;}
.yeb{bottom:254.654523pt;}
.y1d5{bottom:254.895099pt;}
.y16d{bottom:254.895867pt;}
.y341{bottom:260.730981pt;}
.y379{bottom:260.733563pt;}
.y309{bottom:260.733851pt;}
.y2d1{bottom:265.211547pt;}
.y1ee{bottom:269.775099pt;}
.y252{bottom:269.935563pt;}
.y27a{bottom:270.808811pt;}
.y116{bottom:270.810971pt;}
.y81{bottom:270.812603pt;}
.y2a0{bottom:271.053275pt;}
.ya6{bottom:271.055867pt;}
.y1da{bottom:271.295867pt;}
.ycf{bottom:272.493045pt;}
.y195{bottom:272.494331pt;}
.yea{bottom:272.494619pt;}
.y1d4{bottom:272.735195pt;}
.y340{bottom:273.771125pt;}
.y378{bottom:273.773707pt;}
.y308{bottom:273.773995pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y2d0{bottom:278.251691pt;}
.y1ff{bottom:284.255867pt;}
.y33f{bottom:286.811269pt;}
.y377{bottom:286.813851pt;}
.y307{bottom:286.814139pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y16c{bottom:287.215867pt;}
.y1ed{bottom:287.615195pt;}
.y251{bottom:288.175715pt;}
.y279{bottom:288.648907pt;}
.y115{bottom:288.651067pt;}
.y80{bottom:288.652699pt;}
.y29f{bottom:288.893371pt;}
.yce{bottom:290.333141pt;}
.y194{bottom:290.334427pt;}
.ye9{bottom:290.334715pt;}
.y1d3{bottom:290.575291pt;}
.y2cf{bottom:291.291835pt;}
.y1e4{bottom:294.335867pt;}
.y33e{bottom:299.851413pt;}
.y376{bottom:303.853851pt;}
.y306{bottom:303.854139pt;}
.y1ec{bottom:305.455291pt;}
.y250{bottom:306.415867pt;}
.y278{bottom:306.489003pt;}
.y114{bottom:306.491163pt;}
.y7f{bottom:306.492795pt;}
.y29e{bottom:306.733467pt;}
.ycd{bottom:308.173237pt;}
.y193{bottom:308.174523pt;}
.ye8{bottom:308.174811pt;}
.y2ce{bottom:308.331835pt;}
.y1d2{bottom:308.415387pt;}
.y11{bottom:309.452000pt;}
.y57{bottom:312.895867pt;}
.y33d{bottom:316.891413pt;}
.y375{bottom:316.893995pt;}
.y305{bottom:316.894283pt;}
.y2cd{bottom:321.371979pt;}
.y1eb{bottom:323.295387pt;}
.y277{bottom:324.329099pt;}
.y113{bottom:324.331259pt;}
.y7e{bottom:324.332891pt;}
.y29d{bottom:324.573563pt;}
.ycc{bottom:326.013333pt;}
.y192{bottom:326.014619pt;}
.ye7{bottom:326.014907pt;}
.ya5{bottom:326.254043pt;}
.y1d1{bottom:326.255483pt;}
.y25c{bottom:329.455867pt;}
.y33c{bottom:329.931557pt;}
.y374{bottom:329.934139pt;}
.y304{bottom:329.934427pt;}
.y2cc{bottom:338.411979pt;}
.y1fe{bottom:339.453099pt;}
.y1ea{bottom:341.135483pt;}
.y276{bottom:342.169195pt;}
.y112{bottom:342.171355pt;}
.y7d{bottom:342.172987pt;}
.y29c{bottom:342.413659pt;}
.y16b{bottom:342.414811pt;}
.y33b{bottom:342.971701pt;}
.y373{bottom:342.974283pt;}
.y303{bottom:342.974571pt;}
.y10{bottom:343.809333pt;}
.ycb{bottom:343.853429pt;}
.y191{bottom:343.854715pt;}
.ye6{bottom:343.855003pt;}
.ya4{bottom:344.094139pt;}
.y1b7{bottom:344.094619pt;}
.y1d0{bottom:344.095579pt;}
.y2cb{bottom:351.452123pt;}
.y56{bottom:353.936539pt;}
.y33a{bottom:356.011845pt;}
.y1fd{bottom:357.293195pt;}
.y1e9{bottom:358.975579pt;}
.y275{bottom:360.009291pt;}
.y111{bottom:360.011451pt;}
.y7c{bottom:360.013083pt;}
.y372{bottom:360.014283pt;}
.y302{bottom:360.014571pt;}
.y154{bottom:360.015771pt;}
.y29b{bottom:360.253755pt;}
.y16a{bottom:360.254907pt;}
.yca{bottom:361.693525pt;}
.y137{bottom:361.693851pt;}
.y190{bottom:361.694811pt;}
.ye5{bottom:361.695099pt;}
.ya3{bottom:361.934235pt;}
.y1b6{bottom:361.934715pt;}
.y1cf{bottom:361.935675pt;}
.yf{bottom:362.706666pt;}
.y2ca{bottom:364.492267pt;}
.y55{bottom:367.456075pt;}
.y339{bottom:369.051989pt;}
.y39f{bottom:373.051845pt;}
.y371{bottom:373.054427pt;}
.y301{bottom:373.054715pt;}
.y1fc{bottom:375.133291pt;}
.y1e8{bottom:376.815675pt;}
.y3c4{bottom:377.048293pt;}
.y274{bottom:377.849387pt;}
.y110{bottom:377.851547pt;}
.y7b{bottom:377.853179pt;}
.y153{bottom:377.855867pt;}
.y29a{bottom:378.093851pt;}
.y24f{bottom:378.094715pt;}
.y169{bottom:378.095003pt;}
.yc9{bottom:379.533621pt;}
.y136{bottom:379.533947pt;}
.y18f{bottom:379.534907pt;}
.ye4{bottom:379.535195pt;}
.ya2{bottom:379.774331pt;}
.y1b5{bottom:379.774811pt;}
.y1ce{bottom:379.775771pt;}
.y54{bottom:381.056267pt;}
.y2c9{bottom:381.532267pt;}
.y338{bottom:386.091989pt;}
.y370{bottom:386.094571pt;}
.y300{bottom:386.094859pt;}
.y3c3{bottom:390.088437pt;}
.y1fb{bottom:392.973387pt;}
.y2c8{bottom:394.572411pt;}
.y1e7{bottom:394.655771pt;}
.y53{bottom:394.656459pt;}
.y273{bottom:395.689483pt;}
.y10f{bottom:395.691643pt;}
.y7a{bottom:395.693275pt;}
.y299{bottom:395.933947pt;}
.y24e{bottom:395.934811pt;}
.y168{bottom:395.935099pt;}
.yc8{bottom:397.373717pt;}
.y135{bottom:397.374043pt;}
.y18e{bottom:397.375003pt;}
.ye3{bottom:397.375291pt;}
.ya1{bottom:397.614427pt;}
.y1b4{bottom:397.614907pt;}
.y1cd{bottom:397.615867pt;}
.y337{bottom:399.132133pt;}
.y36f{bottom:399.134715pt;}
.y2ff{bottom:399.135003pt;}
.y3c2{bottom:403.128581pt;}
.y2c7{bottom:407.612555pt;}
.y52{bottom:408.175995pt;}
.y1fa{bottom:410.813483pt;}
.y336{bottom:412.172277pt;}
.y1e6{bottom:412.495867pt;}
.y272{bottom:413.529579pt;}
.y10e{bottom:413.531739pt;}
.y152{bottom:413.531755pt;}
.y79{bottom:413.533371pt;}
.y298{bottom:413.774043pt;}
.y24d{bottom:413.774907pt;}
.y167{bottom:413.775195pt;}
.yc7{bottom:415.213813pt;}
.y134{bottom:415.214139pt;}
.y18d{bottom:415.215099pt;}
.ye2{bottom:415.215387pt;}
.ya0{bottom:415.454523pt;}
.y1b3{bottom:415.455003pt;}
.y3c1{bottom:416.168725pt;}
.y36e{bottom:416.174715pt;}
.y2fe{bottom:416.175003pt;}
.y51{bottom:421.776187pt;}
.y2c6{bottom:424.652555pt;}
.y335{bottom:425.212421pt;}
.y1f9{bottom:428.653579pt;}
.y3c0{bottom:429.208869pt;}
.y39e{bottom:429.212277pt;}
.y36d{bottom:429.214859pt;}
.y2fd{bottom:429.215147pt;}
.y1cc{bottom:429.935867pt;}
.ye{bottom:430.990669pt;}
.y271{bottom:431.369675pt;}
.y10d{bottom:431.371835pt;}
.y151{bottom:431.371851pt;}
.y78{bottom:431.373467pt;}
.y297{bottom:431.614139pt;}
.y24c{bottom:431.615003pt;}
.y166{bottom:431.615291pt;}
.yc6{bottom:433.053909pt;}
.y133{bottom:433.054235pt;}
.y18c{bottom:433.055195pt;}
.ye1{bottom:433.055483pt;}
.y9f{bottom:433.294619pt;}
.y1b2{bottom:433.295099pt;}
.y50{bottom:435.376379pt;}
.y2c5{bottom:437.692699pt;}
.y334{bottom:442.252421pt;}
.y36c{bottom:442.255003pt;}
.y2fc{bottom:442.255291pt;}
.y1e5{bottom:444.815867pt;}
.y3bf{bottom:446.248869pt;}
.y1f8{bottom:446.493675pt;}
.yd{bottom:446.990669pt;}
.y4f{bottom:448.895915pt;}
.y270{bottom:449.209771pt;}
.y10c{bottom:449.211931pt;}
.y150{bottom:449.211947pt;}
.y77{bottom:449.213563pt;}
.y296{bottom:449.454235pt;}
.y24b{bottom:449.455099pt;}
.y165{bottom:449.455387pt;}
.y2c4{bottom:450.732843pt;}
.yc5{bottom:450.894005pt;}
.y132{bottom:450.894331pt;}
.y18b{bottom:450.895291pt;}
.ye0{bottom:450.895579pt;}
.y9e{bottom:451.134715pt;}
.y1b1{bottom:451.135195pt;}
.y333{bottom:455.292565pt;}
.y3be{bottom:459.289013pt;}
.y36b{bottom:459.295003pt;}
.y2fb{bottom:459.295291pt;}
.y4e{bottom:462.496107pt;}
.yc{bottom:462.990669pt;}
.y2c3{bottom:463.772987pt;}
.y26f{bottom:467.049867pt;}
.y10b{bottom:467.052027pt;}
.y14f{bottom:467.052043pt;}
.y76{bottom:467.053659pt;}
.y295{bottom:467.294331pt;}
.y24a{bottom:467.295195pt;}
.y164{bottom:467.295483pt;}
.y332{bottom:468.332709pt;}
.yc4{bottom:468.734101pt;}
.y131{bottom:468.734427pt;}
.y18a{bottom:468.735387pt;}
.ydf{bottom:468.735675pt;}
.y9d{bottom:468.974811pt;}
.y1b0{bottom:468.975291pt;}
.y3bd{bottom:472.329157pt;}
.y39d{bottom:472.332565pt;}
.y36a{bottom:472.335147pt;}
.y2fa{bottom:472.335435pt;}
.y4d{bottom:476.096299pt;}
.yb{bottom:478.990666pt;}
.y2c2{bottom:480.812987pt;}
.y331{bottom:481.372853pt;}
.y26e{bottom:484.889963pt;}
.y10a{bottom:484.892123pt;}
.y14e{bottom:484.892139pt;}
.y75{bottom:484.893755pt;}
.y1cb{bottom:485.134235pt;}
.y294{bottom:485.134427pt;}
.y249{bottom:485.135291pt;}
.y163{bottom:485.135579pt;}
.y3bc{bottom:485.369301pt;}
.y39c{bottom:485.372709pt;}
.y369{bottom:485.375291pt;}
.y2f9{bottom:485.375579pt;}
.yc3{bottom:486.574197pt;}
.y130{bottom:486.574523pt;}
.y189{bottom:486.575483pt;}
.yde{bottom:486.575771pt;}
.y9c{bottom:486.814907pt;}
.y1af{bottom:486.815387pt;}
.y235{bottom:487.214947pt;}
.y4c{bottom:489.615835pt;}
.y220{bottom:492.812691pt;}
.y2c1{bottom:493.853131pt;}
.ya{bottom:494.990666pt;}
.y330{bottom:498.412853pt;}
.y368{bottom:498.415435pt;}
.y3bb{bottom:502.409301pt;}
.y2f8{bottom:502.415579pt;}
.y26d{bottom:502.730059pt;}
.y109{bottom:502.732219pt;}
.y14d{bottom:502.732235pt;}
.y74{bottom:502.733851pt;}
.y1ca{bottom:502.974331pt;}
.y293{bottom:502.974523pt;}
.y248{bottom:502.975387pt;}
.y162{bottom:502.975675pt;}
.y4b{bottom:503.216027pt;}
.yc2{bottom:504.414293pt;}
.y12f{bottom:504.414619pt;}
.y188{bottom:504.415579pt;}
.ydd{bottom:504.415867pt;}
.y9b{bottom:504.655003pt;}
.y1ae{bottom:504.655483pt;}
.y234{bottom:505.455099pt;}
.y2c0{bottom:506.893275pt;}
.y21e{bottom:511.052843pt;}
.y32f{bottom:511.452997pt;}
.y367{bottom:511.455579pt;}
.y3ba{bottom:515.449445pt;}
.y39b{bottom:515.452853pt;}
.y2f7{bottom:515.455723pt;}
.y4a{bottom:516.816219pt;}
.y2bf{bottom:519.933419pt;}
.y26c{bottom:520.570155pt;}
.y108{bottom:520.572315pt;}
.y14c{bottom:520.572331pt;}
.y73{bottom:520.573947pt;}
.y1c9{bottom:520.814427pt;}
.y292{bottom:520.814619pt;}
.y247{bottom:520.815483pt;}
.y161{bottom:520.815771pt;}
.yc1{bottom:522.254389pt;}
.y12e{bottom:522.254715pt;}
.y187{bottom:522.255675pt;}
.y9a{bottom:522.495099pt;}
.y1ad{bottom:522.495579pt;}
.y233{bottom:523.695251pt;}
.y32e{bottom:524.493141pt;}
.y3b9{bottom:528.489589pt;}
.y39a{bottom:528.492997pt;}
.y366{bottom:528.495579pt;}
.y2f6{bottom:528.495867pt;}
.y21f{bottom:529.292995pt;}
.y49{bottom:530.335755pt;}
.y2be{bottom:532.973563pt;}
.ydc{bottom:536.735867pt;}
.y32d{bottom:537.533285pt;}
.y26b{bottom:538.410251pt;}
.y107{bottom:538.412411pt;}
.y14b{bottom:538.412427pt;}
.y72{bottom:538.414043pt;}
.y1c8{bottom:538.654523pt;}
.y291{bottom:538.654715pt;}
.y246{bottom:538.655579pt;}
.y160{bottom:538.655867pt;}
.yc0{bottom:540.094485pt;}
.y12d{bottom:540.094811pt;}
.y186{bottom:540.095771pt;}
.y99{bottom:540.335195pt;}
.y1ac{bottom:540.335675pt;}
.y2f5{bottom:541.527643pt;}
.y399{bottom:541.533141pt;}
.y365{bottom:541.535723pt;}
.y232{bottom:541.855603pt;}
.y48{bottom:543.935947pt;}
.y3b8{bottom:545.529589pt;}
.y2bd{bottom:546.013707pt;}
.y21d{bottom:547.453347pt;}
.y32c{bottom:550.573429pt;}
.y398{bottom:554.573285pt;}
.y364{bottom:554.575867pt;}
.y26a{bottom:556.250347pt;}
.y106{bottom:556.252507pt;}
.y14a{bottom:556.252523pt;}
.y71{bottom:556.254139pt;}
.y1c7{bottom:556.494619pt;}
.y290{bottom:556.494811pt;}
.y245{bottom:556.495675pt;}
.y47{bottom:557.536139pt;}
.ybf{bottom:557.934581pt;}
.y12c{bottom:557.934907pt;}
.y185{bottom:557.935867pt;}
.y98{bottom:558.175291pt;}
.y1ab{bottom:558.175771pt;}
.y2f4{bottom:558.567643pt;}
.y3b7{bottom:558.569733pt;}
.y231{bottom:560.095755pt;}
.y2bc{bottom:563.053707pt;}
.y21c{bottom:565.693499pt;}
.y363{bottom:567.607749pt;}
.y32b{bottom:567.613429pt;}
.y46{bottom:571.055675pt;}
.y2f3{bottom:571.607787pt;}
.y3b6{bottom:571.609877pt;}
.y9{bottom:573.786667pt;}
.y269{bottom:574.090443pt;}
.y105{bottom:574.092603pt;}
.y149{bottom:574.092619pt;}
.y70{bottom:574.094235pt;}
.y1c6{bottom:574.334715pt;}
.y28f{bottom:574.334907pt;}
.y244{bottom:574.335771pt;}
.ybe{bottom:575.774677pt;}
.y12b{bottom:575.775003pt;}
.y97{bottom:576.015387pt;}
.y1aa{bottom:576.015867pt;}
.y2bb{bottom:576.093851pt;}
.y22f{bottom:578.335907pt;}
.y32a{bottom:580.653573pt;}
.y219{bottom:583.933651pt;}
.y362{bottom:584.647749pt;}
.y2f2{bottom:584.647931pt;}
.y3b5{bottom:584.650021pt;}
.y397{bottom:584.653429pt;}
.y45{bottom:584.655867pt;}
.y22e{bottom:584.735867pt;}
.y2ba{bottom:589.133995pt;}
.y15f{bottom:589.135867pt;}
.y184{bottom:590.255867pt;}
.y230{bottom:591.135827pt;}
.y268{bottom:591.930539pt;}
.y104{bottom:591.932699pt;}
.y148{bottom:591.932715pt;}
.y6f{bottom:591.934331pt;}
.ydb{bottom:591.935675pt;}
.y1c5{bottom:592.174811pt;}
.y28e{bottom:592.175003pt;}
.y243{bottom:592.175867pt;}
.y8{bottom:592.685334pt;}
.ybd{bottom:593.614773pt;}
.y12a{bottom:593.615099pt;}
.y329{bottom:593.693717pt;}
.y96{bottom:593.855483pt;}
.y361{bottom:597.687893pt;}
.y2f1{bottom:597.688075pt;}
.y396{bottom:597.693573pt;}
.y3b4{bottom:601.690021pt;}
.y21b{bottom:602.094003pt;}
.y2b9{bottom:606.173995pt;}
.y42{bottom:606.256000pt;}
.y44{bottom:609.135867pt;}
.y267{bottom:609.770635pt;}
.y103{bottom:609.772795pt;}
.y147{bottom:609.772811pt;}
.y6e{bottom:609.774427pt;}
.yda{bottom:609.775771pt;}
.y1c4{bottom:610.014907pt;}
.y28d{bottom:610.015099pt;}
.y360{bottom:610.728037pt;}
.y328{bottom:610.733717pt;}
.ybc{bottom:611.454869pt;}
.y129{bottom:611.455195pt;}
.y95{bottom:611.695579pt;}
.y237{bottom:614.175947pt;}
.y2f0{bottom:614.728075pt;}
.y3b3{bottom:614.730165pt;}
.y2b8{bottom:619.214139pt;}
.y21a{bottom:620.334155pt;}
.y35f{bottom:623.768181pt;}
.y327{bottom:623.773861pt;}
.y1a9{bottom:626.495867pt;}
.y236{bottom:626.975867pt;}
.y266{bottom:627.610731pt;}
.y102{bottom:627.612891pt;}
.y146{bottom:627.612907pt;}
.y6d{bottom:627.614523pt;}
.yd9{bottom:627.615867pt;}
.y2ef{bottom:627.768219pt;}
.y3b2{bottom:627.770309pt;}
.y395{bottom:627.773717pt;}
.y1c3{bottom:627.855003pt;}
.y28c{bottom:627.855195pt;}
.ybb{bottom:629.294965pt;}
.y128{bottom:629.295291pt;}
.y94{bottom:629.535675pt;}
.y2b7{bottom:632.254283pt;}
.y326{bottom:636.814005pt;}
.y218{bottom:638.573243pt;}
.y35e{bottom:640.808181pt;}
.y2ee{bottom:640.808363pt;}
.y3b1{bottom:640.810453pt;}
.y394{bottom:640.813861pt;}
.y242{bottom:642.655867pt;}
.y2b6{bottom:645.294427pt;}
.y265{bottom:645.450827pt;}
.y101{bottom:645.452987pt;}
.y145{bottom:645.453003pt;}
.y183{bottom:645.454171pt;}
.y6c{bottom:645.454619pt;}
.y7{bottom:645.598667pt;}
.y1c2{bottom:645.695099pt;}
.y28b{bottom:645.695291pt;}
.yba{bottom:647.135061pt;}
.y127{bottom:647.135387pt;}
.y93{bottom:647.375771pt;}
.y325{bottom:649.854149pt;}
.y35d{bottom:653.848325pt;}
.y2ed{bottom:653.848507pt;}
.y393{bottom:653.854005pt;}
.y217{bottom:656.733595pt;}
.y41{bottom:657.775867pt;}
.y3b0{bottom:657.850453pt;}
.y2b5{bottom:662.334427pt;}
.y324{bottom:662.894293pt;}
.y264{bottom:663.290923pt;}
.y100{bottom:663.293083pt;}
.y144{bottom:663.293099pt;}
.y182{bottom:663.294267pt;}
.y6b{bottom:663.294715pt;}
.y15e{bottom:663.295579pt;}
.y1c1{bottom:663.535195pt;}
.y28a{bottom:663.535387pt;}
.yb9{bottom:664.975157pt;}
.y126{bottom:664.975483pt;}
.y92{bottom:665.215867pt;}
.y214{bottom:665.854203pt;}
.y35c{bottom:666.888469pt;}
.y40{bottom:668.415867pt;}
.y3{bottom:668.977329pt;}
.y2ec{bottom:670.888507pt;}
.y3af{bottom:670.890597pt;}
.y392{bottom:670.894005pt;}
.y216{bottom:674.973747pt;}
.y2b4{bottom:675.374571pt;}
.y3f{bottom:679.135867pt;}
.y35b{bottom:679.928613pt;}
.y323{bottom:679.934293pt;}
.y263{bottom:681.131019pt;}
.yff{bottom:681.133179pt;}
.y143{bottom:681.133195pt;}
.y181{bottom:681.134363pt;}
.y6a{bottom:681.134811pt;}
.y15d{bottom:681.135675pt;}
.y1c0{bottom:681.375291pt;}
.y289{bottom:681.375483pt;}
.yb8{bottom:682.815253pt;}
.y125{bottom:682.815579pt;}
.y2eb{bottom:683.928651pt;}
.y3ae{bottom:683.930741pt;}
.y391{bottom:683.934149pt;}
.y2b3{bottom:688.414715pt;}
.y3e{bottom:689.775867pt;}
.y35a{bottom:692.968757pt;}
.y322{bottom:692.974437pt;}
.y215{bottom:693.213899pt;}
.y2ea{bottom:696.968795pt;}
.y3ad{bottom:696.970885pt;}
.y390{bottom:696.974293pt;}
.y91{bottom:697.535867pt;}
.y262{bottom:698.971115pt;}
.yfe{bottom:698.973275pt;}
.y142{bottom:698.973291pt;}
.y180{bottom:698.974459pt;}
.y69{bottom:698.974907pt;}
.y15c{bottom:698.975771pt;}
.y1bf{bottom:699.215387pt;}
.y288{bottom:699.215579pt;}
.y1a8{bottom:700.655099pt;}
.yb7{bottom:700.655349pt;}
.y124{bottom:700.655675pt;}
.y2b2{bottom:701.454859pt;}
.y321{bottom:706.014581pt;}
.y359{bottom:710.008757pt;}
.y2e9{bottom:710.008939pt;}
.y213{bottom:711.374251pt;}
.y3c{bottom:712.335867pt;}
.y3ac{bottom:714.010885pt;}
.y38f{bottom:714.014293pt;}
.y2b1{bottom:714.495003pt;}
.y261{bottom:716.811211pt;}
.y241{bottom:716.812475pt;}
.yfd{bottom:716.813371pt;}
.y141{bottom:716.813387pt;}
.y17f{bottom:716.814555pt;}
.y68{bottom:716.815003pt;}
.y15b{bottom:716.815867pt;}
.y1be{bottom:717.055483pt;}
.y287{bottom:717.055675pt;}
.y1a7{bottom:718.495195pt;}
.yb6{bottom:718.495445pt;}
.y123{bottom:718.495771pt;}
.y3d{bottom:719.055867pt;}
.y358{bottom:723.048901pt;}
.y2e8{bottom:723.049083pt;}
.y320{bottom:723.054581pt;}
.y3ab{bottom:727.051029pt;}
.y38e{bottom:727.054437pt;}
.y212{bottom:729.614403pt;}
.y2b0{bottom:731.535003pt;}
.y90{bottom:731.855733pt;}
.y260{bottom:734.651307pt;}
.y240{bottom:734.652571pt;}
.yfc{bottom:734.653467pt;}
.y140{bottom:734.653483pt;}
.y17e{bottom:734.654651pt;}
.y22d{bottom:734.654699pt;}
.y67{bottom:734.655099pt;}
.y15a{bottom:734.655579pt;}
.y224{bottom:734.655867pt;}
.y1bd{bottom:734.895579pt;}
.y286{bottom:734.895771pt;}
.y357{bottom:736.089045pt;}
.y2e7{bottom:736.089227pt;}
.y31f{bottom:736.094725pt;}
.y1a6{bottom:736.335291pt;}
.yb5{bottom:736.335541pt;}
.y122{bottom:736.335867pt;}
.y20f{bottom:738.735011pt;}
.y3aa{bottom:740.091173pt;}
.y38d{bottom:740.094581pt;}
.y2af{bottom:744.575147pt;}
.y3b{bottom:746.735867pt;}
.y211{bottom:747.854555pt;}
.y31e{bottom:749.134869pt;}
.y25f{bottom:752.491403pt;}
.y23f{bottom:752.492667pt;}
.yfb{bottom:752.493563pt;}
.y13f{bottom:752.493579pt;}
.y17d{bottom:752.494747pt;}
.y22c{bottom:752.494795pt;}
.y66{bottom:752.495195pt;}
.y159{bottom:752.495675pt;}
.y1bc{bottom:752.735675pt;}
.y285{bottom:752.735867pt;}
.y356{bottom:753.129045pt;}
.y2e6{bottom:753.129227pt;}
.y3a9{bottom:753.131317pt;}
.y38c{bottom:753.134725pt;}
.y1a5{bottom:754.175387pt;}
.yb4{bottom:754.175637pt;}
.y2ae{bottom:757.615291pt;}
.y39{bottom:760.576000pt;}
.y38{bottom:765.375867pt;}
.y210{bottom:766.014907pt;}
.y355{bottom:766.169189pt;}
.y2e5{bottom:766.169371pt;}
.y31d{bottom:766.174869pt;}
.y121{bottom:768.655867pt;}
.y3a8{bottom:770.171317pt;}
.y38b{bottom:770.174725pt;}
.y25e{bottom:770.331499pt;}
.y23e{bottom:770.332763pt;}
.yfa{bottom:770.333659pt;}
.y13e{bottom:770.333675pt;}
.y17c{bottom:770.334843pt;}
.y22b{bottom:770.334891pt;}
.y65{bottom:770.335291pt;}
.y158{bottom:770.335771pt;}
.y1bb{bottom:770.575771pt;}
.y2ad{bottom:770.655435pt;}
.y1a4{bottom:772.015483pt;}
.yb3{bottom:772.015733pt;}
.y354{bottom:779.209333pt;}
.y2e4{bottom:779.209515pt;}
.y31c{bottom:779.215013pt;}
.y2{bottom:781.661334pt;}
.y3a7{bottom:783.211461pt;}
.y38a{bottom:783.214869pt;}
.y20e{bottom:784.255059pt;}
.y2ac{bottom:787.695435pt;}
.y25d{bottom:788.171595pt;}
.y23d{bottom:788.172859pt;}
.yf9{bottom:788.173755pt;}
.y13d{bottom:788.173771pt;}
.y17b{bottom:788.174939pt;}
.y22a{bottom:788.174987pt;}
.y64{bottom:788.175387pt;}
.y157{bottom:788.175867pt;}
.y1ba{bottom:788.415867pt;}
.y1a3{bottom:789.855579pt;}
.y353{bottom:792.249477pt;}
.y2e3{bottom:792.249659pt;}
.y31b{bottom:792.255157pt;}
.y3a6{bottom:796.251605pt;}
.y389{bottom:796.255013pt;}
.y2ab{bottom:800.735579pt;}
.y20d{bottom:802.495211pt;}
.y284{bottom:803.215867pt;}
.yb2{bottom:804.335867pt;}
.y31a{bottom:805.295301pt;}
.y8f{bottom:806.011691pt;}
.y23c{bottom:806.012955pt;}
.yf8{bottom:806.013851pt;}
.y13c{bottom:806.013867pt;}
.y17a{bottom:806.015035pt;}
.y229{bottom:806.015083pt;}
.y63{bottom:806.015483pt;}
.y156{bottom:806.015675pt;}
.y1a2{bottom:807.695675pt;}
.y352{bottom:809.289477pt;}
.y2e2{bottom:809.289659pt;}
.y3a5{bottom:809.291749pt;}
.y388{bottom:809.295157pt;}
.y20a{bottom:811.615819pt;}
.y2aa{bottom:813.775723pt;}
.y20c{bottom:820.655563pt;}
.y1b9{bottom:821.055867pt;}
.y351{bottom:822.329621pt;}
.y2e1{bottom:822.329803pt;}
.y319{bottom:822.335301pt;}
.y37{bottom:823.615691pt;}
.y8e{bottom:823.851787pt;}
.y23b{bottom:823.853051pt;}
.yf7{bottom:823.853947pt;}
.y13b{bottom:823.853963pt;}
.y179{bottom:823.855131pt;}
.y228{bottom:823.855179pt;}
.y62{bottom:823.855579pt;}
.y120{bottom:823.855771pt;}
.y1a1{bottom:825.535771pt;}
.y3a4{bottom:826.331749pt;}
.y2a9{bottom:826.815867pt;}
.y36{bottom:834.815867pt;}
.y2e0{bottom:835.369947pt;}
.y318{bottom:835.375445pt;}
.y20b{bottom:838.895715pt;}
.y350{bottom:839.369621pt;}
.y3a3{bottom:839.371893pt;}
.y387{bottom:839.375301pt;}
.y8d{bottom:841.691883pt;}
.y23a{bottom:841.693147pt;}
.yf6{bottom:841.694043pt;}
.y13a{bottom:841.694059pt;}
.y178{bottom:841.695227pt;}
.y227{bottom:841.695275pt;}
.y61{bottom:841.695675pt;}
.y11f{bottom:841.695867pt;}
.y1a0{bottom:843.375867pt;}
.y2df{bottom:848.410091pt;}
.y317{bottom:848.415589pt;}
.y34f{bottom:852.409765pt;}
.y3a2{bottom:852.412037pt;}
.y386{bottom:852.415445pt;}
.y35{bottom:856.255867pt;}
.y209{bottom:857.135867pt;}
.y1{bottom:859.312000pt;}
.y8c{bottom:859.531979pt;}
.y239{bottom:859.533243pt;}
.yf5{bottom:859.534139pt;}
.y139{bottom:859.534155pt;}
.y177{bottom:859.535323pt;}
.y226{bottom:859.535371pt;}
.y60{bottom:859.535771pt;}
.yb1{bottom:859.536107pt;}
.y316{bottom:861.455733pt;}
.y34e{bottom:865.449909pt;}
.y2de{bottom:865.450091pt;}
.y3a1{bottom:865.452181pt;}
.y385{bottom:865.455589pt;}
.y2a8{bottom:874.575867pt;}
.y19f{bottom:875.695867pt;}
.y222{bottom:877.296000pt;}
.y8b{bottom:877.372075pt;}
.y238{bottom:877.373339pt;}
.yf4{bottom:877.374235pt;}
.y138{bottom:877.374251pt;}
.y1b8{bottom:877.374955pt;}
.y176{bottom:877.375419pt;}
.y225{bottom:877.375467pt;}
.y5f{bottom:877.375867pt;}
.yb0{bottom:877.376203pt;}
.y34d{bottom:878.490053pt;}
.y2dd{bottom:878.490235pt;}
.y3a0{bottom:878.492325pt;}
.y315{bottom:878.495733pt;}
.y221{bottom:880.175733pt;}
.y34{bottom:889.455381pt;}
.y33{bottom:900.655557pt;}
.y32{bottom:911.855733pt;}
.y5d{bottom:918.015733pt;}
.h17{height:10.560000pt;}
.h1c{height:10.880000pt;}
.h13{height:13.040000pt;}
.h12{height:16.640625pt;}
.hf{height:21.920000pt;}
.hc{height:25.922812pt;}
.hb{height:27.832031pt;}
.h7{height:28.560000pt;}
.h11{height:29.116406pt;}
.h14{height:29.550937pt;}
.h16{height:29.758750pt;}
.hd{height:30.090937pt;}
.h1f{height:31.683750pt;}
.h1a{height:32.772031pt;}
.h19{height:34.241563pt;}
.ha{height:35.204375pt;}
.h1d{height:35.451250pt;}
.h15{height:40.314687pt;}
.h18{height:40.631719pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:44.468750pt;}
.h10{height:45.120000pt;}
.h2{height:48.960000pt;}
.he{height:53.121094pt;}
.h1e{height:55.358590pt;}
.h1b{height:66.236926pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:80.080000pt;}
.w7{width:347.360000pt;}
.w6{width:433.760000pt;}
.w4{width:551.200000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:78.400000pt;}
.x5{left:79.360000pt;}
.x2f{left:80.560000pt;}
.x22{left:81.600000pt;}
.x15{left:86.080000pt;}
.x2e{left:87.680928pt;}
.x7{left:88.720237pt;}
.x1{left:90.706667pt;}
.x6{left:92.720000pt;}
.x2{left:94.486667pt;}
.x3a{left:100.398600pt;}
.x26{left:103.279776pt;}
.x23{left:106.720608pt;}
.x1e{left:107.679639pt;}
.x16{left:117.600000pt;}
.x2a{left:120.399992pt;}
.x25{left:131.280000pt;}
.x2d{left:132.800912pt;}
.x39{left:145.519648pt;}
.x9{left:162.880000pt;}
.x30{left:170.240000pt;}
.x4{left:180.874667pt;}
.x29{left:183.039344pt;}
.x27{left:184.800264pt;}
.x28{left:188.079512pt;}
.xe{left:192.240000pt;}
.x1b{left:194.880000pt;}
.xf{left:196.720000pt;}
.x1d{left:202.240000pt;}
.x24{left:203.600000pt;}
.xa{left:224.160000pt;}
.x2b{left:251.360304pt;}
.xc{left:271.199880pt;}
.x31{left:293.680000pt;}
.x34{left:309.440000pt;}
.x32{left:311.760000pt;}
.x10{left:325.120000pt;}
.x11{left:334.960000pt;}
.x18{left:343.200000pt;}
.xb{left:357.120000pt;}
.x8{left:370.320000pt;}
.x1a{left:383.680000pt;}
.x1c{left:398.000546pt;}
.x3{left:404.408000pt;}
.x17{left:432.080000pt;}
.x33{left:449.280000pt;}
.x2c{left:471.519992pt;}
.x21{left:484.560000pt;}
.x36{left:487.999968pt;}
.x12{left:490.000000pt;}
.x20{left:492.320000pt;}
.x13{left:494.320000pt;}
.x1f{left:497.680000pt;}
.xd{left:544.800000pt;}
.x37{left:562.239504pt;}
.x38{left:567.279672pt;}
.x14{left:572.720000pt;}
.x35{left:594.160000pt;}
.x19{left:617.039904pt;}
}




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