
    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_8c9ec3f1f78c8df915587666.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_b80631276af2d1c7b1388df5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_5f95fff6fc5e2fbe0217fa94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_6b64bdaf364dbc89e52b6216.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_6d4ebaf40be0b67bf45cecec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_f8a7c0a6ec4f49918a751213.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ed1f3cd3c124d3038cec98a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862305;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_2753dc3355e0ad2fef1742d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.702148;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_1586aaba759caa5eb8982813.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_4d501db21511f1a1fe0e7dec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ae1ea1a56e269fbbd3f15e27.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_b745b54b3f4fb4b0fbf9b04b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_42826163142385014e596c76.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_c598af4e294fb4dad61c29c7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.853027;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_b9bbb171fb1da9c41702352e.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_db79af1891ae3f80d5e8025e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_43f2a51897bb92131e6a668b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.903809;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_3831b502f2f52055adb6c2b2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.760742;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_9f3e8bb707143ca8d7334a63.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.038574;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_8457f273fdb1eb0a0b45703b.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_c7b6a7415f4d211f608d5e37.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.171387;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_eec48d238362f372329402dc.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006348;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_5282348cdb518a67693f4561.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.926758;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_723145e6f21e83a6da50a027.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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_bca83f89f164ac1ef8907d0d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;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_f6b4c3cc4593f0d9546f4e72.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.106934;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_a2ac57b532735726f709906f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.740234;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_2636b6e2bb06a381b223bbbf.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.730957;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_d17a9c80180edfb944770a82.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.958008;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_de6f11d16ad1eca950d23ee2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.940918;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;}
.m3{transform:matrix(0.237868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237868,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,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);}
.m5{transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.267822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267822,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v3{vertical-align:47.519880px;}
.ls31{letter-spacing:-0.941184px;}
.ls30{letter-spacing:-0.629280px;}
.ls3f{letter-spacing:-0.601920px;}
.ls35{letter-spacing:-0.576000px;}
.ls40{letter-spacing:-0.508896px;}
.ls3d{letter-spacing:-0.481536px;}
.ls42{letter-spacing:-0.448704px;}
.ls21{letter-spacing:-0.432000px;}
.ls88{letter-spacing:-0.404467px;}
.ls2c{letter-spacing:-0.399168px;}
.ls2e{letter-spacing:-0.393984px;}
.ls2a{letter-spacing:-0.381024px;}
.ls78{letter-spacing:-0.379188px;}
.ls3e{letter-spacing:-0.361152px;}
.ls27{letter-spacing:-0.338688px;}
.ls28{letter-spacing:-0.320544px;}
.ls5{letter-spacing:-0.317952px;}
.ls3b{letter-spacing:-0.311904px;}
.ls83{letter-spacing:-0.303350px;}
.ls29{letter-spacing:-0.302400px;}
.ls38{letter-spacing:-0.266112px;}
.ls24{letter-spacing:-0.260064px;}
.ls25{letter-spacing:-0.241920px;}
.ls80{letter-spacing:-0.239647px;}
.ls36{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.186048px;}
.ls4{letter-spacing:-0.158976px;}
.ls23{letter-spacing:-0.157248px;}
.ls75{letter-spacing:-0.151068px;}
.ls22{letter-spacing:-0.145152px;}
.ls81{letter-spacing:-0.135800px;}
.ls84{letter-spacing:-0.101117px;}
.ls2d{letter-spacing:-0.096768px;}
.ls7e{letter-spacing:-0.083927px;}
.ls3a{letter-spacing:-0.060192px;}
.ls87{letter-spacing:-0.050558px;}
.ls79{letter-spacing:-0.049294px;}
.ls7a{letter-spacing:-0.037919px;}
.ls5e{letter-spacing:-0.035498px;}
.ls62{letter-spacing:-0.030427px;}
.ls5d{letter-spacing:-0.026757px;}
.ls7c{letter-spacing:-0.026543px;}
.ls61{letter-spacing:-0.025356px;}
.ls32{letter-spacing:-0.021600px;}
.ls5c{letter-spacing:-0.021434px;}
.ls63{letter-spacing:-0.020284px;}
.ls82{letter-spacing:-0.019971px;}
.ls65{letter-spacing:-0.016845px;}
.ls64{letter-spacing:-0.015213px;}
.ls67{letter-spacing:-0.014739px;}
.lsb{letter-spacing:-0.014400px;}
.ls52{letter-spacing:-0.012078px;}
.ls4d{letter-spacing:-0.011902px;}
.ls48{letter-spacing:-0.010724px;}
.ls6a{letter-spacing:-0.010528px;}
.ls60{letter-spacing:-0.010142px;}
.ls69{letter-spacing:-0.008422px;}
.ls66{letter-spacing:-0.006317px;}
.ls5f{letter-spacing:-0.005071px;}
.ls68{letter-spacing:-0.004211px;}
.ls3{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000476px;}
.ls4e{letter-spacing:0.000483px;}
.ls16{letter-spacing:0.000576px;}
.ls19{letter-spacing:0.001440px;}
.lse{letter-spacing:0.007200px;}
.ls46{letter-spacing:0.010724px;}
.ls4c{letter-spacing:0.011902px;}
.ls51{letter-spacing:0.012078px;}
.ls9{letter-spacing:0.014400px;}
.ls85{letter-spacing:0.019971px;}
.ls7b{letter-spacing:0.026543px;}
.ls0{letter-spacing:0.028800px;}
.ls39{letter-spacing:0.038304px;}
.ls1e{letter-spacing:0.060624px;}
.ls33{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.092880px;}
.ls6f{letter-spacing:0.101117px;}
.ls8{letter-spacing:0.107568px;}
.ls7d{letter-spacing:0.113756px;}
.lsd{letter-spacing:0.116928px;}
.ls6c{letter-spacing:0.125890px;}
.ls6b{letter-spacing:0.126396px;}
.ls7f{letter-spacing:0.134283px;}
.ls34{letter-spacing:0.144000px;}
.ls6e{letter-spacing:0.151675px;}
.ls7{letter-spacing:0.155376px;}
.ls18{letter-spacing:0.161568px;}
.ls1{letter-spacing:0.167184px;}
.ls76{letter-spacing:0.167854px;}
.ls6d{letter-spacing:0.202233px;}
.ls77{letter-spacing:0.218210px;}
.ls11{letter-spacing:0.273600px;}
.ls12{letter-spacing:0.274176px;}
.ls13{letter-spacing:0.274320px;}
.ls6{letter-spacing:0.274896px;}
.ls14{letter-spacing:0.275616px;}
.ls1a{letter-spacing:0.317376px;}
.lsa{letter-spacing:0.359136px;}
.ls37{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.367488px;}
.ls8d{letter-spacing:0.394355px;}
.ls86{letter-spacing:0.455025px;}
.ls89{letter-spacing:0.606700px;}
.ls5a{letter-spacing:3.231703px;}
.ls5b{letter-spacing:3.274475px;}
.ls56{letter-spacing:3.556513px;}
.ls59{letter-spacing:3.561728px;}
.ls55{letter-spacing:3.566943px;}
.ls57{letter-spacing:3.577373px;}
.ls54{letter-spacing:3.582588px;}
.ls53{letter-spacing:3.593017px;}
.ls58{letter-spacing:3.603447px;}
.ls41{letter-spacing:3.736800px;}
.ls72{letter-spacing:6.062791px;}
.ls17{letter-spacing:6.628032px;}
.ls74{letter-spacing:6.673705px;}
.ls71{letter-spacing:6.800101px;}
.ls73{letter-spacing:6.985482px;}
.ls8b{letter-spacing:7.224791px;}
.ls8c{letter-spacing:7.229847px;}
.ls8a{letter-spacing:7.497806px;}
.ls70{letter-spacing:10.718375px;}
.ls3c{letter-spacing:11.139984px;}
.ls1f{letter-spacing:14.818320px;}
.ls20{letter-spacing:14.818464px;}
.ls43{letter-spacing:15.575328px;}
.ls15{letter-spacing:16.011792px;}
.ls1d{letter-spacing:18.401040px;}
.ls47{letter-spacing:25.309683px;}
.ls44{letter-spacing:25.682400px;}
.ls1b{letter-spacing:26.167680px;}
.lsc{letter-spacing:27.937152px;}
.ls49{letter-spacing:28.087592px;}
.ls50{letter-spacing:28.502933px;}
.lsf{letter-spacing:34.825968px;}
.ls45{letter-spacing:48.036384px;}
.ls4b{letter-spacing:52.901789px;}
.ls4f{letter-spacing:53.684067px;}
.ls26{letter-spacing:70.306704px;}
.ls1c{letter-spacing:71.206128px;}
.ls2b{letter-spacing:75.890304px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-36.511488px;}
.ws1{word-spacing:-33.501456px;}
.ws2{word-spacing:-33.334128px;}
.wsb{word-spacing:-23.586048px;}
.ws4{word-spacing:-23.577696px;}
.wsa{word-spacing:-23.494176px;}
.ws7{word-spacing:-23.335488px;}
.ws5{word-spacing:-20.030400px;}
.ws9{word-spacing:-20.023200px;}
.ws6{word-spacing:-20.016000px;}
.ws8{word-spacing:-20.001600px;}
.ws12{word-spacing:-16.813440px;}
.ws18{word-spacing:-16.716672px;}
.ws11{word-spacing:-16.668288px;}
.ws20{word-spacing:-16.656192px;}
.ws1f{word-spacing:-16.632000px;}
.ws21{word-spacing:-16.571520px;}
.ws15{word-spacing:-16.553376px;}
.ws16{word-spacing:-16.511040px;}
.ws14{word-spacing:-16.492896px;}
.ws13{word-spacing:-16.474752px;}
.ws1e{word-spacing:-16.416000px;}
.ws17{word-spacing:-16.414272px;}
.ws31{word-spacing:-16.015939px;}
.ws25{word-spacing:-15.212160px;}
.wsf{word-spacing:-15.120000px;}
.ws30{word-spacing:-15.108970px;}
.ws2e{word-spacing:-15.096893px;}
.ws2f{word-spacing:-15.084815px;}
.ws1a{word-spacing:-15.026112px;}
.ws2c{word-spacing:-14.888804px;}
.ws2b{word-spacing:-14.876903px;}
.ws2d{word-spacing:-14.865001px;}
.ws22{word-spacing:-14.851008px;}
.ws19{word-spacing:-14.818176px;}
.ws27{word-spacing:-14.763456px;}
.ws26{word-spacing:-14.730624px;}
.ws24{word-spacing:-14.703264px;}
.ws40{word-spacing:-14.661928px;}
.ws23{word-spacing:-14.610240px;}
.ws41{word-spacing:-14.449582px;}
.ws1c{word-spacing:-14.270976px;}
.ws3d{word-spacing:-14.257461px;}
.ws3e{word-spacing:-14.206902px;}
.ws3a{word-spacing:-14.055227px;}
.ws3c{word-spacing:-13.954110px;}
.ws3f{word-spacing:-13.751877px;}
.wsc{word-spacing:-13.486176px;}
.ws28{word-spacing:-13.416277px;}
.ws2a{word-spacing:-13.405553px;}
.ws29{word-spacing:-13.394828px;}
.wsd{word-spacing:-13.372128px;}
.wse{word-spacing:-13.210560px;}
.ws32{word-spacing:-13.154467px;}
.ws3b{word-spacing:-11.083659px;}
.ws36{word-spacing:-10.709072px;}
.ws35{word-spacing:-10.658716px;}
.ws39{word-spacing:-10.406935px;}
.ws38{word-spacing:-9.453151px;}
.ws37{word-spacing:-9.441776px;}
.ws34{word-spacing:-5.459752px;}
.ws33{word-spacing:-5.457647px;}
.ws10{word-spacing:-0.047520px;}
.ws3{word-spacing:0.000000px;}
.ws43{word-spacing:256.986331px;}
.ws42{word-spacing:430.032356px;}
.ws1b{word-spacing:691.400640px;}
.ws1d{word-spacing:925.740000px;}
._3c{margin-left:-25.339769px;}
._3d{margin-left:-23.853030px;}
._18{margin-left:-19.377216px;}
._14{margin-left:-15.998832px;}
._15{margin-left:-11.828448px;}
._13{margin-left:-10.615536px;}
._16{margin-left:-7.518096px;}
._21{margin-left:-5.281920px;}
._a{margin-left:-4.145040px;}
._17{margin-left:-3.073536px;}
._1{margin-left:-1.114560px;}
._0{width:1.087344px;}
._10{width:2.243520px;}
._1c{width:3.927744px;}
._9{width:5.018400px;}
._20{width:6.636096px;}
._e{width:7.901568px;}
._22{width:9.550944px;}
._8{width:10.652256px;}
._c{width:11.826144px;}
._1d{width:13.096800px;}
._1e{width:14.332176px;}
._2{width:15.456816px;}
._3{width:16.491888px;}
._b{width:17.536896px;}
._1b{width:18.914400px;}
._3e{width:19.925096px;}
._7{width:21.038400px;}
._2f{width:22.054464px;}
._12{width:23.090400px;}
._1f{width:24.098400px;}
._11{width:25.218864px;}
._6{width:26.253360px;}
._5{width:28.056960px;}
._19{width:29.257920px;}
._23{width:30.977280px;}
._4{width:32.306400px;}
._d{width:33.566400px;}
._1a{width:35.200800px;}
._27{width:36.741600px;}
._f{width:38.498400px;}
._2e{width:39.945600px;}
._2d{width:41.968800px;}
._29{width:47.491200px;}
._32{width:49.255200px;}
._28{width:51.408000px;}
._30{width:52.416000px;}
._2a{width:57.031200px;}
._35{width:58.183200px;}
._33{width:62.410176px;}
._25{width:63.993024px;}
._24{width:72.530064px;}
._26{width:75.830400px;}
._31{width:83.493072px;}
._39{width:84.655728px;}
._2c{width:86.280912px;}
._38{width:134.042400px;}
._3b{width:135.284544px;}
._42{width:149.673792px;}
._41{width:158.083016px;}
._2b{width:192.669264px;}
._40{width:211.897918px;}
._36{width:268.200000px;}
._37{width:300.168000px;}
._44{width:364.810883px;}
._3f{width:373.310169px;}
._3a{width:509.531904px;}
._34{width:529.560000px;}
._43{width:1388.898374px;}
.fc9{color:rgb(10,2,3);}
.fc8{color:rgb(42,124,192);}
.fc7{color:rgb(128,130,133);}
.fc6{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(154,0,64);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:21.055735px;}
.fs19{font-size:30.541516px;}
.fs1f{font-size:32.457722px;}
.fs1d{font-size:37.918778px;}
.fs9{font-size:38.880000px;}
.fs1e{font-size:39.941113px;}
.fsb{font-size:41.760000px;}
.fs1b{font-size:41.963448px;}
.fs7{font-size:47.520000px;}
.fs11{font-size:47.525041px;}
.fs1c{font-size:50.558371px;}
.fs17{font-size:50.711128px;}
.fs10{font-size:52.148291px;}
.fs16{font-size:53.513621px;}
.fs15{font-size:53.585455px;}
.fsc{font-size:53.622210px;}
.fs14{font-size:54.208257px;}
.fsa{font-size:54.720000px;}
.fs13{font-size:55.597771px;}
.fsd{font-size:59.507610px;}
.fse{font-size:60.387570px;}
.fs8{font-size:60.480000px;}
.fsf{font-size:71.970498px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs5{font-size:119.520000px;}
.fs18{font-size:119.771111px;}
.fs2{font-size:132.480000px;}
.fs12{font-size:135.029896px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:155.520000px;}
.fs4{font-size:185.760000px;}
.y30e{bottom:-59.564186px;}
.y0{bottom:0.000000px;}
.y355{bottom:2.907020px;}
.y353{bottom:3.137699px;}
.y13e{bottom:3.420000px;}
.y13b{bottom:3.780000px;}
.y54{bottom:4.139955px;}
.y214{bottom:4.140000px;}
.y1bc{bottom:5.940000px;}
.y138{bottom:6.659970px;}
.y1ec{bottom:6.660000px;}
.y1e0{bottom:7.020000px;}
.y1e5{bottom:7.740000px;}
.y1e9{bottom:8.459970px;}
.y161{bottom:8.820000px;}
.y157{bottom:10.260000px;}
.y142{bottom:10.620000px;}
.y1df{bottom:10.980000px;}
.y199{bottom:11.339970px;}
.y34f{bottom:11.408377px;}
.y1d3{bottom:12.060000px;}
.y19b{bottom:12.420000px;}
.y16f{bottom:12.600000px;}
.y120{bottom:12.780000px;}
.y1b4{bottom:13.140000px;}
.y1e8{bottom:13.859970px;}
.y183{bottom:13.860000px;}
.y352{bottom:13.878193px;}
.y127{bottom:14.220000px;}
.y1b1{bottom:15.300000px;}
.y1dd{bottom:15.660000px;}
.y34e{bottom:16.199121px;}
.y149{bottom:16.380000px;}
.y12e{bottom:16.740000px;}
.y14d{bottom:17.100000px;}
.y151{bottom:17.460000px;}
.y180{bottom:17.820000px;}
.y1b9{bottom:19.619970px;}
.y1d4{bottom:20.340000px;}
.y1db{bottom:20.700000px;}
.y34d{bottom:20.989865px;}
.y133{bottom:21.420000px;}
.y347{bottom:22.035651px;}
.y136{bottom:23.939970px;}
.y1eb{bottom:23.940000px;}
.y19d{bottom:25.380000px;}
.y121{bottom:25.740000px;}
.y34c{bottom:25.780608px;}
.y141{bottom:27.900000px;}
.y165{bottom:29.160000px;}
.y346{bottom:29.221468px;}
.y1d0{bottom:29.340000px;}
.y145{bottom:29.700000px;}
.y14e{bottom:30.060000px;}
.y152{bottom:30.420000px;}
.y34b{bottom:30.571352px;}
.y182{bottom:31.140000px;}
.y126{bottom:31.500000px;}
.y143{bottom:31.860000px;}
.y139{bottom:32.579970px;}
.y148{bottom:33.660000px;}
.y12d{bottom:34.020000px;}
.y14c{bottom:34.380000px;}
.y150{bottom:34.740000px;}
.y34a{bottom:35.362096px;}
.y345{bottom:36.407883px;}
.y1b8{bottom:36.899970px;}
.y14a{bottom:37.980000px;}
.y363{bottom:38.253714px;}
.y19e{bottom:38.340000px;}
.y11f{bottom:38.700000px;}
.y1b5{bottom:39.060000px;}
.y1b3{bottom:39.420000px;}
.y128{bottom:40.140000px;}
.y349{bottom:40.153439px;}
.y135{bottom:41.219970px;}
.y1e6{bottom:41.579970px;}
.y12a{bottom:42.300000px;}
.y1d5{bottom:42.660000px;}
.y123{bottom:44.460000px;}
.y140{bottom:44.820000px;}
.y348{bottom:44.944182px;}
.y1d2{bottom:46.620000px;}
.y1d8{bottom:46.980000px;}
.y1a3{bottom:47.340000px;}
.y209{bottom:47.700000px;}
.y1e2{bottom:48.779970px;}
.y125{bottom:48.780000px;}
.y1ba{bottom:50.219970px;}
.y12c{bottom:50.940000px;}
.y362{bottom:51.004961px;}
.y53{bottom:52.335045px;}
.y166{bottom:53.280000px;}
.y20f{bottom:53.460000px;}
.y211{bottom:53.820000px;}
.y1b7{bottom:54.179970px;}
.y20d{bottom:54.540000px;}
.y1cf{bottom:55.620000px;}
.y130{bottom:55.980000px;}
.y52{bottom:56.835000px;}
.y137{bottom:58.499970px;}
.y1b0{bottom:62.460000px;}
.y361{bottom:63.756209px;}
.y1d7{bottom:64.620000px;}
.y197{bottom:64.800045px;}
.y1a4{bottom:64.980000px;}
.y124{bottom:66.060000px;}
.y12b{bottom:68.220000px;}
.y190{bottom:70.200045px;}
.y2b7{bottom:70.875000px;}
.y132{bottom:72.900000px;}
.y1ab{bottom:73.260000px;}
.y360{bottom:76.507457px;}
.y18a{bottom:76.680000px;}
.y167{bottom:77.760000px;}
.y196{bottom:80.280045px;}
.y1ce{bottom:81.900000px;}
.y30f{bottom:82.755030px;}
.y31b{bottom:86.116564px;}
.y1af{bottom:87.660000px;}
.y163{bottom:88.200000px;}
.y131{bottom:90.180000px;}
.y1c8{bottom:90.540000px;}
.y2e5{bottom:90.582330px;}
.y35f{bottom:91.154925px;}
.y284{bottom:92.355045px;}
.y18c{bottom:93.240000px;}
.y2b6{bottom:93.537240px;}
.y20c{bottom:95.580000px;}
.y31a{bottom:98.692940px;}
.y1a7{bottom:99.180000px;}
.y1da{bottom:99.540000px;}
.y2b8{bottom:99.753585px;}
.y168{bottom:102.240000px;}
.y2e4{bottom:103.803750px;}
.y1cd{bottom:108.180000px;}
.y2b5{bottom:108.819570px;}
.y11a{bottom:109.035000px;}
.y1ae{bottom:109.980000px;}
.y17e{bottom:110.160045px;}
.y319{bottom:111.268718px;}
.y1b6{bottom:112.095030px;}
.y19{bottom:113.715000px;}
.y38{bottom:115.515000px;}
.y1aa{bottom:116.460000px;}
.y1cb{bottom:116.820000px;}
.y195{bottom:117.000039px;}
.yc2{bottom:117.315000px;}
.y1e1{bottom:117.495030px;}
.y18b{bottom:118.440000px;}
.y2e3{bottom:120.763419px;}
.y103{bottom:122.715000px;}
.y318{bottom:123.844495px;}
.y2b4{bottom:124.370011px;}
.y23a{bottom:124.515000px;}
.y134{bottom:125.055030px;}
.y1d9{bottom:125.820000px;}
.y119{bottom:126.315000px;}
.y169{bottom:126.360000px;}
.y8d{bottom:127.755000px;}
.yea{bottom:130.635000px;}
.y269{bottom:131.715000px;}
.y17d{bottom:132.120039px;}
.y194{bottom:132.480039px;}
.y1ca{bottom:134.100000px;}
.y1cc{bottom:134.460000px;}
.y1ad{bottom:134.820000px;}
.yd7{bottom:135.675000px;}
.y317{bottom:136.420273px;}
.y2e2{bottom:138.020626px;}
.y2b3{bottom:139.652341px;}
.y18{bottom:139.995000px;}
.y1a9{bottom:142.740000px;}
.y189{bottom:143.280000px;}
.y249{bottom:143.955000px;}
.y177{bottom:144.000045px;}
.y239{bottom:145.035000px;}
.y1e7{bottom:145.215030px;}
.y187{bottom:146.475000px;}
.y155{bottom:147.915000px;}
.y1c5{bottom:148.275000px;}
.yc1{bottom:148.635000px;}
.y118{bottom:148.995000px;}
.y316{bottom:148.996050px;}
.y198{bottom:149.175030px;}
.y37{bottom:149.355000px;}
.y16a{bottom:150.840000px;}
.y50{bottom:151.155000px;}
.y1c9{bottom:151.380000px;}
.y70{bottom:153.315000px;}
.y102{bottom:153.675000px;}
.y30d{bottom:154.313400px;}
.y2b2{bottom:155.202781px;}
.y268{bottom:155.475000px;}
.y1ac{bottom:157.140000px;}
.y8c{bottom:158.715000px;}
.y1a8{bottom:160.020000px;}
.y31c{bottom:160.525442px;}
.y315{bottom:161.572426px;}
.y242{bottom:161.595000px;}
.ye9{bottom:161.955000px;}
.y2e1{bottom:163.311360px;}
.y117{bottom:163.395000px;}
.y238{bottom:165.915000px;}
.yd6{bottom:166.635000px;}
.y17f{bottom:168.255000px;}
.y1c4{bottom:169.155000px;}
.y193{bottom:169.200045px;}
.y2b1{bottom:170.485111px;}
.y1e3{bottom:172.935000px;}
.y97{bottom:173.835000px;}
.y314{bottom:174.148204px;}
.y17{bottom:175.275000px;}
.y16b{bottom:175.320000px;}
.y175{bottom:177.075000px;}
.yc0{bottom:179.595000px;}
.y17c{bottom:180.360045px;}
.y2e0{bottom:180.568567px;}
.y18e{bottom:181.035000px;}
.y4f{bottom:182.115000px;}
.y6f{bottom:184.635000px;}
.y192{bottom:184.680045px;}
.y2b0{bottom:186.035552px;}
.y237{bottom:186.435000px;}
.y313{bottom:186.723981px;}
.y207{bottom:187.155000px;}
.y178{bottom:188.640045px;}
.y8b{bottom:189.675000px;}
.y241{bottom:192.555000px;}
.ye8{bottom:192.915000px;}
.y267{bottom:194.355000px;}
.y36{bottom:195.435000px;}
.y154{bottom:196.875000px;}
.y1b2{bottom:197.415000px;}
.y96{bottom:197.595000px;}
.y2df{bottom:197.825774px;}
.yd5{bottom:197.955000px;}
.y350{bottom:198.959250px;}
.y1e4{bottom:199.215000px;}
.y312{bottom:199.300357px;}
.y16c{bottom:199.440000px;}
.y2af{bottom:201.317882px;}
.y12f{bottom:202.455000px;}
.y101{bottom:202.635000px;}
.y18f{bottom:206.280030px;}
.y236{bottom:207.315000px;}
.ybf{bottom:210.555000px;}
.y15f{bottom:210.915000px;}
.y311{bottom:211.876135px;}
.y2de{bottom:214.785443px;}
.y6e{bottom:215.595000px;}
.y21b{bottom:215.955000px;}
.y2ae{bottom:216.600212px;}
.y16{bottom:216.675000px;}
.y266{bottom:218.115000px;}
.y283{bottom:218.475000px;}
.y8a{bottom:220.635000px;}
.y4e{bottom:222.075000px;}
.y240{bottom:223.515000px;}
.y16d{bottom:223.920000px;}
.y310{bottom:224.451912px;}
.y1dc{bottom:225.495000px;}
.y191{bottom:226.440030px;}
.y35{bottom:226.755000px;}
.y235{bottom:227.835000px;}
.y219{bottom:228.555000px;}
.y17b{bottom:228.600030px;}
.yd4{bottom:228.915000px;}
.y1c3{bottom:231.075000px;}
.y2dd{bottom:232.042650px;}
.y2ad{bottom:232.150653px;}
.y153{bottom:232.335000px;}
.y100{bottom:233.955000px;}
.y206{bottom:236.115000px;}
.y164{bottom:240.840000px;}
.ybe{bottom:241.515000px;}
.ye7{bottom:241.875000px;}
.y95{bottom:246.555000px;}
.y30c{bottom:246.645479px;}
.y2ac{bottom:247.432983px;}
.y16e{bottom:248.400000px;}
.y234{bottom:248.715000px;}
.y1de{bottom:248.895000px;}
.y176{bottom:251.640030px;}
.y89{bottom:251.955000px;}
.y17a{bottom:254.880030px;}
.y2dc{bottom:257.333384px;}
.y34{bottom:257.715000px;}
.y15{bottom:258.795000px;}
.y282{bottom:260.235000px;}
.y1a6{bottom:260.415000px;}
.y4d{bottom:262.395000px;}
.y2ab{bottom:262.983424px;}
.y30b{bottom:264.157874px;}
.y6d{bottom:264.555000px;}
.yff{bottom:264.915000px;}
.y179{bottom:264.960030px;}
.y233{bottom:269.235000px;}
.y1c2{bottom:272.475000px;}
.ybd{bottom:272.835000px;}
.y94{bottom:277.515000px;}
.yd3{bottom:277.875000px;}
.y2aa{bottom:278.265753px;}
.yad{bottom:279.675000px;}
.y265{bottom:280.755000px;}
.y30a{bottom:281.368332px;}
.y344{bottom:282.841161px;}
.y281{bottom:283.995000px;}
.y205{bottom:285.075000px;}
.y33{bottom:288.675000px;}
.y232{bottom:290.115000px;}
.y248{bottom:290.835000px;}
.y2db{bottom:291.550260px;}
.y1c1{bottom:293.355000px;}
.y116{bottom:293.715000px;}
.y2a9{bottom:293.816194px;}
.y14f{bottom:294.615000px;}
.y6c{bottom:295.515000px;}
.y309{bottom:298.880727px;}
.y1ea{bottom:298.935000px;}
.y14{bottom:299.115000px;}
.y88{bottom:300.915000px;}
.y4c{bottom:302.355000px;}
.yac{bottom:303.435000px;}
.ybc{bottom:303.795000px;}
.ye6{bottom:304.155000px;}
.y264{bottom:304.515000px;}
.y93{bottom:308.835000px;}
.y2a8{bottom:309.098524px;}
.y231{bottom:310.635000px;}
.y343{bottom:312.784058px;}
.yfe{bottom:313.875000px;}
.y204{bottom:316.035000px;}
.y308{bottom:316.091184px;}
.y32{bottom:319.635000px;}
.y15e{bottom:321.795000px;}
.y280{bottom:322.515000px;}
.y2a7{bottom:324.648965px;}
.y115{bottom:325.035000px;}
.y2da{bottom:325.767135px;}
.y129{bottom:325.935000px;}
.y6b{bottom:326.835000px;}
.yab{bottom:327.195000px;}
.y263{bottom:328.275000px;}
.y230{bottom:331.515000px;}
.y87{bottom:331.875000px;}
.y307{bottom:333.603580px;}
.ybb{bottom:334.755000px;}
.ye5{bottom:335.115000px;}
.y35e{bottom:339.197086px;}
.y218{bottom:339.795000px;}
.y2a6{bottom:339.931295px;}
.yd2{bottom:340.155000px;}
.y13{bottom:340.515000px;}
.y4b{bottom:342.315000px;}
.yfd{bottom:344.835000px;}
.y27f{bottom:346.635000px;}
.y203{bottom:347.355000px;}
.y306{bottom:350.814037px;}
.y31{bottom:350.955000px;}
.y2d9{bottom:351.355408px;}
.y22f{bottom:352.035000px;}
.y15d{bottom:352.755000px;}
.y2a5{bottom:355.481736px;}
.y114{bottom:355.995000px;}
.y6a{bottom:357.795000px;}
.y14b{bottom:357.975000px;}
.y35d{bottom:359.065472px;}
.y86{bottom:362.835000px;}
.yba{bottom:365.715000px;}
.y305{bottom:368.326432px;}
.y33c{bottom:369.079339px;}
.y27e{bottom:370.395000px;}
.y217{bottom:370.755000px;}
.y2a4{bottom:370.764066px;}
.yd1{bottom:371.115000px;}
.y22e{bottom:372.915000px;}
.yaa{bottom:374.715000px;}
.yfc{bottom:376.155000px;}
.y2d8{bottom:376.943680px;}
.y202{bottom:378.315000px;}
.y342{bottom:380.307626px;}
.y33b{bottom:381.655116px;}
.y12{bottom:381.915000px;}
.y4a{bottom:382.275000px;}
.ye4{bottom:384.075000px;}
.y304{bottom:385.536890px;}
.y2a3{bottom:386.314507px;}
.y113{bottom:386.955000px;}
.y69{bottom:388.755000px;}
.y247{bottom:389.115000px;}
.y262{bottom:390.915000px;}
.y341{bottom:392.883404px;}
.y22d{bottom:393.435000px;}
.y1c0{bottom:394.155000px;}
.y33a{bottom:394.231492px;}
.y30{bottom:396.675000px;}
.yb9{bottom:397.035000px;}
.ya9{bottom:398.475000px;}
.y2a2{bottom:401.596836px;}
.y216{bottom:401.715000px;}
.y15c{bottom:402.075000px;}
.y35c{bottom:402.545671px;}
.y2d7{bottom:402.829490px;}
.y303{bottom:403.049285px;}
.y340{bottom:405.459780px;}
.y339{bottom:406.807270px;}
.yfb{bottom:407.115000px;}
.y85{bottom:412.155000px;}
.y22c{bottom:414.315000px;}
.y261{bottom:414.675000px;}
.ye3{bottom:415.035000px;}
.y201{bottom:416.835000px;}
.y2a1{bottom:417.147277px;}
.y33f{bottom:418.035557px;}
.y338{bottom:419.383047px;}
.y68{bottom:419.715000px;}
.yd0{bottom:420.075000px;}
.y2d6{bottom:420.086697px;}
.y147{bottom:420.255000px;}
.y302{bottom:420.259743px;}
.ya8{bottom:422.235000px;}
.y49{bottom:422.595000px;}
.y122{bottom:422.775000px;}
.y11{bottom:423.315000px;}
.y1bf{bottom:425.115000px;}
.y2f{bottom:427.995000px;}
.y33e{bottom:430.611335px;}
.y337{bottom:431.958825px;}
.y2a0{bottom:432.429607px;}
.y15b{bottom:433.035000px;}
.y22b{bottom:434.835000px;}
.y112{bottom:435.915000px;}
.y2d5{bottom:437.343904px;}
.y200{bottom:437.715000px;}
.y301{bottom:437.772138px;}
.y21a{bottom:438.075000px;}
.y260{bottom:438.435000px;}
.y84{bottom:443.115000px;}
.y33d{bottom:443.187112px;}
.y1a5{bottom:444.015000px;}
.y336{bottom:444.534602px;}
.ya7{bottom:445.995000px;}
.y35b{bottom:446.152267px;}
.y29f{bottom:447.980048px;}
.y92{bottom:451.035000px;}
.y2d4{bottom:454.303573px;}
.y300{bottom:454.982595px;}
.y20b{bottom:455.535000px;}
.y22a{bottom:455.715000px;}
.yfa{bottom:456.075000px;}
.y27d{bottom:456.795000px;}
.y335{bottom:457.110978px;}
.y1ff{bottom:458.235000px;}
.y2e{bottom:458.955000px;}
.y25f{bottom:462.195000px;}
.y48{bottom:462.555000px;}
.y29e{bottom:463.262378px;}
.y15a{bottom:463.995000px;}
.y10{bottom:464.715000px;}
.y111{bottom:467.235000px;}
.y35a{bottom:468.018762px;}
.y67{bottom:469.035000px;}
.ya6{bottom:470.115000px;}
.y2d3{bottom:471.560780px;}
.y2ff{bottom:472.494991px;}
.y83{bottom:474.075000px;}
.y229{bottom:476.235000px;}
.y320{bottom:476.727707px;}
.y23f{bottom:476.955000px;}
.ye2{bottom:477.315000px;}
.y29d{bottom:478.812819px;}
.y1fe{bottom:479.115000px;}
.y27c{bottom:480.555000px;}
.y91{bottom:481.995000px;}
.y25e{bottom:485.955000px;}
.yf9{bottom:487.035000px;}
.y2d2{bottom:488.520449px;}
.y2fe{bottom:489.705448px;}
.y2d{bottom:489.915000px;}
.y321{bottom:492.896392px;}
.ya5{bottom:493.875000px;}
.y29c{bottom:494.095149px;}
.y186{bottom:495.315000px;}
.y228{bottom:497.115000px;}
.y110{bottom:498.195000px;}
.y212{bottom:498.375000px;}
.y146{bottom:498.735000px;}
.y1fd{bottom:499.635000px;}
.y66{bottom:499.995000px;}
.y47{bottom:502.515000px;}
.y82{bottom:505.035000px;}
.y2d1{bottom:505.777656px;}
.yf{bottom:506.115000px;}
.y1a2{bottom:506.295000px;}
.y2fd{bottom:507.217843px;}
.yb8{bottom:507.915000px;}
.y29b{bottom:509.645590px;}
.y90{bottom:512.955000px;}
.y11e{bottom:516.735000px;}
.ya4{bottom:517.635000px;}
.yf8{bottom:517.995000px;}
.y27b{bottom:519.435000px;}
.y1fc{bottom:520.515000px;}
.y2c{bottom:520.875000px;}
.y2d0{bottom:522.737324px;}
.y25d{bottom:524.835000px;}
.y29a{bottom:524.927919px;}
.ye1{bottom:526.275000px;}
.y2fc{bottom:526.843804px;}
.y65{bottom:530.955000px;}
.ycf{bottom:531.315000px;}
.y359{bottom:533.365457px;}
.y1be{bottom:535.995000px;}
.y227{bottom:538.515000px;}
.y299{bottom:540.478360px;}
.y334{bottom:540.660761px;}
.y1fb{bottom:541.035000px;}
.y20e{bottom:541.215000px;}
.ya3{bottom:541.395000px;}
.y46{bottom:542.475000px;}
.y27a{bottom:543.195000px;}
.y215{bottom:543.915000px;}
.y159{bottom:544.275000px;}
.y2fb{bottom:546.771702px;}
.y10f{bottom:547.155000px;}
.ye{bottom:547.515000px;}
.y2cf{bottom:548.028059px;}
.y25c{bottom:548.595000px;}
.yf7{bottom:549.315000px;}
.y2b{bottom:552.195000px;}
.y333{bottom:553.236538px;}
.y81{bottom:553.995000px;}
.y358{bottom:555.231953px;}
.y298{bottom:555.760690px;}
.yb7{bottom:557.235000px;}
.y226{bottom:559.035000px;}
.y144{bottom:561.015000px;}
.y64{bottom:561.915000px;}
.yce{bottom:562.275000px;}
.ya2{bottom:565.155000px;}
.y2ce{bottom:565.582804px;}
.y332{bottom:565.812316px;}
.y2fa{bottom:566.699600px;}
.y297{bottom:571.311131px;}
.y25b{bottom:572.355000px;}
.ye0{bottom:575.235000px;}
.y13a{bottom:577.935000px;}
.y10e{bottom:578.115000px;}
.y331{bottom:578.388093px;}
.y225{bottom:579.915000px;}
.yf6{bottom:580.275000px;}
.y279{bottom:582.075000px;}
.y1fa{bottom:582.435000px;}
.y2cd{bottom:582.542472px;}
.y45{bottom:582.795000px;}
.y2a{bottom:583.155000px;}
.y210{bottom:584.055000px;}
.y160{bottom:585.135000px;}
.y80{bottom:585.315000px;}
.y296{bottom:586.593461px;}
.y2f9{bottom:586.627498px;}
.yb6{bottom:588.195000px;}
.y174{bottom:590.355000px;}
.y330{bottom:590.964469px;}
.yd{bottom:591.075000px;}
.y63{bottom:593.235000px;}
.y1a1{bottom:594.855000px;}
.y25a{bottom:596.115000px;}
.y357{bottom:598.838548px;}
.y2cc{bottom:599.799679px;}
.y224{bottom:600.435000px;}
.y295{bottom:602.143902px;}
.y1f9{bottom:603.315000px;}
.y32f{bottom:603.540247px;}
.y278{bottom:605.835000px;}
.ydf{bottom:606.195000px;}
.y2f8{bottom:606.555396px;}
.y10d{bottom:609.435000px;}
.ycd{bottom:611.235000px;}
.y162{bottom:613.755000px;}
.y29{bottom:614.115000px;}
.y32e{bottom:616.116024px;}
.y7f{bottom:616.275000px;}
.y2cb{bottom:616.759348px;}
.y294{bottom:617.426232px;}
.yb5{bottom:619.155000px;}
.y185{bottom:619.515000px;}
.y259{bottom:619.875000px;}
.y356{bottom:620.578647px;}
.y173{bottom:621.315000px;}
.y44{bottom:622.755000px;}
.y13f{bottom:623.295000px;}
.y1f8{bottom:623.835000px;}
.y62{bottom:624.195000px;}
.y2f7{bottom:626.483294px;}
.y208{bottom:626.535000px;}
.yf5{bottom:629.235000px;}
.y293{bottom:632.976673px;}
.y1bd{bottom:634.275000px;}
.y23e{bottom:637.155000px;}
.yde{bottom:637.515000px;}
.y10c{bottom:640.395000px;}
.y223{bottom:641.835000px;}
.ycc{bottom:642.195000px;}
.y2ca{bottom:642.347620px;}
.yc{bottom:644.355000px;}
.y1f7{bottom:644.715000px;}
.y28{bottom:645.075000px;}
.ya1{bottom:645.435000px;}
.y2f6{bottom:646.411192px;}
.y7e{bottom:647.235000px;}
.y292{bottom:648.259002px;}
.yb4{bottom:650.115000px;}
.y184{bottom:650.475000px;}
.y31f{bottom:651.445890px;}
.y172{bottom:652.275000px;}
.y61{bottom:655.155000px;}
.y1a0{bottom:657.135000px;}
.y258{bottom:658.755000px;}
.y2c9{bottom:659.604827px;}
.yf4{bottom:660.195000px;}
.y43{bottom:662.715000px;}
.y291{bottom:663.809443px;}
.y1f6{bottom:665.235000px;}
.y2f5{bottom:666.339090px;}
.y20a{bottom:667.935000px;}
.y23d{bottom:668.115000px;}
.y11d{bottom:668.475000px;}
.y1d6{bottom:669.735000px;}
.y10b{bottom:671.355000px;}
.ycb{bottom:673.515000px;}
.y2c8{bottom:676.862034px;}
.y7d{bottom:678.195000px;}
.y290{bottom:679.091773px;}
.y257{bottom:682.515000px;}
.y222{bottom:683.235000px;}
.y171{bottom:683.595000px;}
.y18d{bottom:685.575000px;}
.y8f{bottom:686.115000px;}
.ydd{bottom:686.475000px;}
.y2f4{bottom:686.568926px;}
.y13c{bottom:689.895000px;}
.y27{bottom:691.155000px;}
.yf3{bottom:691.515000px;}
.y32d{bottom:691.577274px;}
.y277{bottom:692.235000px;}
.y2c7{bottom:693.821703px;}
.ya0{bottom:694.395000px;}
.y28f{bottom:694.642214px;}
.yb{bottom:697.995000px;}
.yb3{bottom:699.435000px;}
.y42{bottom:702.675000px;}
.y60{bottom:704.115000px;}
.y32c{bottom:704.153650px;}
.yca{bottom:704.475000px;}
.y256{bottom:706.275000px;}
.y1f5{bottom:706.635000px;}
.y13d{bottom:707.895000px;}
.y246{bottom:709.515000px;}
.y28e{bottom:709.924544px;}
.y2c6{bottom:711.078910px;}
.y213{bottom:715.815000px;}
.y276{bottom:715.995000px;}
.y32b{bottom:716.729427px;}
.ydc{bottom:717.435000px;}
.y19f{bottom:719.415000px;}
.y188{bottom:719.955000px;}
.y10a{bottom:720.315000px;}
.y2f3{bottom:721.291779px;}
.y170{bottom:722.115000px;}
.y26{bottom:722.475000px;}
.y221{bottom:724.635000px;}
.y9f{bottom:725.355000px;}
.y28d{bottom:725.474985px;}
.y7c{bottom:727.515000px;}
.y2c5{bottom:728.038579px;}
.y32a{bottom:729.305205px;}
.yb2{bottom:730.395000px;}
.y156{bottom:732.015000px;}
.y5f{bottom:735.435000px;}
.y1f4{bottom:737.595000px;}
.y2f2{bottom:738.804174px;}
.y275{bottom:739.755000px;}
.yf2{bottom:740.475000px;}
.y28c{bottom:740.757315px;}
.y329{bottom:741.880982px;}
.y41{bottom:742.995000px;}
.y351{bottom:744.446657px;}
.y181{bottom:744.975000px;}
.y2c4{bottom:745.295786px;}
.y220{bottom:745.515000px;}
.y11c{bottom:748.395000px;}
.ya{bottom:749.835000px;}
.y109{bottom:751.635000px;}
.y25{bottom:753.435000px;}
.y255{bottom:754.155000px;}
.y328{bottom:754.457358px;}
.y28b{bottom:756.307756px;}
.y2f1{bottom:756.316570px;}
.y7b{bottom:758.475000px;}
.yb1{bottom:761.355000px;}
.y21f{bottom:766.035000px;}
.y5e{bottom:766.395000px;}
.y327{bottom:767.033136px;}
.y1f3{bottom:768.915000px;}
.y2c3{bottom:770.586520px;}
.yf1{bottom:771.435000px;}
.y28a{bottom:771.590085px;}
.y2f0{bottom:773.527027px;}
.y9e{bottom:774.315000px;}
.y254{bottom:777.915000px;}
.y274{bottom:778.635000px;}
.y23c{bottom:779.355000px;}
.y326{bottom:779.608913px;}
.y19c{bottom:781.695000px;}
.y108{bottom:782.595000px;}
.y40{bottom:782.955000px;}
.y24{bottom:784.395000px;}
.y21e{bottom:786.915000px;}
.y289{bottom:787.140526px;}
.y2c2{bottom:787.843727px;}
.y7a{bottom:789.435000px;}
.y2ef{bottom:791.039422px;}
.y325{bottom:792.184691px;}
.yb0{bottom:792.315000px;}
.y9{bottom:794.835000px;}
.y5d{bottom:797.355000px;}
.ydb{bottom:797.715000px;}
.y1f2{bottom:799.875000px;}
.y253{bottom:801.675000px;}
.yf0{bottom:802.395000px;}
.y288{bottom:802.422856px;}
.y324{bottom:804.761067px;}
.y2c1{bottom:805.100934px;}
.y9d{bottom:805.635000px;}
.y21d{bottom:807.435000px;}
.y2ee{bottom:808.249880px;}
.y23b{bottom:810.315000px;}
.y107{bottom:813.555000px;}
.yc9{bottom:815.715000px;}
.y323{bottom:817.336844px;}
.y287{bottom:817.973297px;}
.y79{bottom:820.395000px;}
.y2c0{bottom:822.060603px;}
.y3f{bottom:822.915000px;}
.y2ed{bottom:825.762275px;}
.y273{bottom:826.155000px;}
.y1d1{bottom:827.415000px;}
.y5c{bottom:828.315000px;}
.yda{bottom:828.675000px;}
.y322{bottom:829.912622px;}
.y23{bottom:830.475000px;}
.y1f1{bottom:830.835000px;}
.y286{bottom:833.255627px;}
.yef{bottom:833.715000px;}
.y8{bottom:838.755000px;}
.y2bf{bottom:839.317810px;}
.y252{bottom:840.555000px;}
.yaf{bottom:841.635000px;}
.y2ec{bottom:842.972733px;}
.y19a{bottom:845.415000px;}
.yc8{bottom:846.675000px;}
.y285{bottom:848.806068px;}
.y21c{bottom:848.835000px;}
.y272{bottom:849.915000px;}
.y245{bottom:851.715000px;}
.y9c{bottom:854.595000px;}
.y2be{bottom:856.277478px;}
.y5b{bottom:859.635000px;}
.y2eb{bottom:860.485128px;}
.y22{bottom:861.435000px;}
.y1f0{bottom:861.795000px;}
.y106{bottom:862.515000px;}
.y3e{bottom:862.875000px;}
.y251{bottom:864.315000px;}
.yee{bottom:864.675000px;}
.y31e{bottom:866.141013px;}
.y78{bottom:869.715000px;}
.y2bd{bottom:873.534685px;}
.y271{bottom:873.675000px;}
.yc7{bottom:877.635000px;}
.y2ea{bottom:877.695585px;}
.y7{bottom:880.155000px;}
.y244{bottom:882.675000px;}
.y9b{bottom:885.555000px;}
.y1bb{bottom:887.895000px;}
.y250{bottom:888.075000px;}
.y2bc{bottom:890.494354px;}
.y5a{bottom:890.595000px;}
.y21{bottom:892.395000px;}
.y1ef{bottom:893.115000px;}
.y2e9{bottom:895.207981px;}
.yed{bottom:895.635000px;}
.y270{bottom:897.435000px;}
.y1c7{bottom:897.615000px;}
.y77{bottom:900.675000px;}
.y3d{bottom:903.195000px;}
.y158{bottom:903.555000px;}
.y2bb{bottom:907.751561px;}
.y8e{bottom:908.595000px;}
.y105{bottom:911.835000px;}
.y243{bottom:913.635000px;}
.y2e8{bottom:920.872698px;}
.y6{bottom:921.555000px;}
.y20{bottom:923.715000px;}
.y1ee{bottom:924.075000px;}
.y354{bottom:924.573000px;}
.y2ba{bottom:924.711230px;}
.y31d{bottom:926.176463px;}
.yd9{bottom:926.595000px;}
.y76{bottom:931.635000px;}
.y9a{bottom:934.515000px;}
.y24f{bottom:935.595000px;}
.y26f{bottom:936.315000px;}
.y2e7{bottom:938.385093px;}
.y59{bottom:939.555000px;}
.y2b9{bottom:941.968437px;}
.y3c{bottom:943.155000px;}
.y104{bottom:943.515000px;}
.yec{bottom:944.595000px;}
.yae{bottom:952.515000px;}
.y1f{bottom:954.675000px;}
.y1ed{bottom:955.035000px;}
.y2e6{bottom:955.897488px;}
.yc6{bottom:957.915000px;}
.y26e{bottom:960.075000px;}
.y75{bottom:962.595000px;}
.y5{bottom:962.955000px;}
.y58{bottom:970.515000px;}
.y24e{bottom:974.475000px;}
.yeb{bottom:975.915000px;}
.y3b{bottom:983.115000px;}
.y99{bottom:983.835000px;}
.yc5{bottom:988.875000px;}
.y74{bottom:993.915000px;}
.y24d{bottom:998.235000px;}
.y1e{bottom:1000.755000px;}
.y57{bottom:1001.835000px;}
.y4{bottom:1003.995000px;}
.yd8{bottom:1006.875000px;}
.y26d{bottom:1007.595000px;}
.y98{bottom:1014.795000px;}
.yc4{bottom:1019.835000px;}
.y24c{bottom:1021.995000px;}
.y3a{bottom:1023.075000px;}
.y73{bottom:1024.875000px;}
.y1d{bottom:1031.715000px;}
.y56{bottom:1032.795000px;}
.y11b{bottom:1037.835000px;}
.y3{bottom:1041.795000px;}
.y24b{bottom:1045.755000px;}
.y26c{bottom:1046.475000px;}
.y72{bottom:1055.835000px;}
.y1c{bottom:1062.675000px;}
.y39{bottom:1063.035000px;}
.y55{bottom:1063.755000px;}
.yc3{bottom:1068.795000px;}
.y24a{bottom:1069.515000px;}
.y26b{bottom:1070.235000px;}
.y1c6{bottom:1072.575000px;}
.y2{bottom:1080.315000px;}
.y71{bottom:1086.795000px;}
.y1b{bottom:1093.995000px;}
.y26a{bottom:1094.355000px;}
.y1a{bottom:1115.235000px;}
.y1{bottom:1118.115000px;}
.y51{bottom:1192.635000px;}
.h63{height:11.628425px;}
.h1b{height:17.280000px;}
.h19{height:17.640000px;}
.h5f{height:19.606097px;}
.h36{height:19.800000px;}
.hc{height:20.879985px;}
.h21{height:22.680000px;}
.h3c{height:23.400000px;}
.h67{height:23.915382px;}
.h20{height:24.120000px;}
.h3f{height:24.840000px;}
.h2f{height:25.199970px;}
.h41{height:26.279970px;}
.h42{height:26.280000px;}
.h5e{height:28.438804px;}
.h62{height:28.439084px;}
.h64{height:31.472586px;}
.h28{height:31.680000px;}
.h11{height:33.003281px;}
.h61{height:33.697352px;}
.h1a{height:35.280000px;}
.h4b{height:37.258010px;}
.h33{height:37.437188px;}
.h2b{height:37.513125px;}
.h43{height:37.800000px;}
.h55{height:38.753329px;}
.h5c{height:38.850469px;}
.h47{height:41.040000px;}
.h4d{height:41.318272px;}
.h3b{height:41.400000px;}
.h2e{height:41.461875px;}
.h4f{height:41.958746px;}
.h54{height:42.523265px;}
.h2c{height:43.920000px;}
.h29{height:45.000000px;}
.h65{height:45.324790px;}
.h5b{height:47.219786px;}
.h4a{height:47.626367px;}
.h24{height:49.055625px;}
.h10{height:49.289063px;}
.h26{height:49.359375px;}
.h23{height:49.402969px;}
.h5a{height:49.829333px;}
.h59{height:49.896222px;}
.hb{height:49.992188px;}
.h58{height:50.476146px;}
.h3e{height:51.120000px;}
.h57{height:51.769994px;}
.hd{height:52.417969px;}
.h13{height:53.280000px;}
.h52{height:53.310178px;}
.h50{height:53.635249px;}
.h40{height:53.999970px;}
.h12{height:54.219375px;}
.h14{height:54.603281px;}
.h30{height:61.200000px;}
.h1d{height:61.560000px;}
.h34{height:62.280000px;}
.h1f{height:62.640000px;}
.h2{height:64.546875px;}
.h3a{height:64.800000px;}
.ha{height:65.003906px;}
.h1c{height:65.880000px;}
.he{height:67.080938px;}
.h38{height:69.480000px;}
.h9{height:75.404531px;}
.h18{height:75.959970px;}
.h1e{height:77.760000px;}
.h44{height:82.800000px;}
.h46{height:83.880000px;}
.h48{height:84.240000px;}
.h35{height:84.599970px;}
.h31{height:87.840000px;}
.h15{height:90.720000px;}
.h16{height:95.040000px;}
.h27{height:96.808943px;}
.h3d{height:106.559970px;}
.h8{height:107.147813px;}
.h7{height:108.000000px;}
.h5d{height:111.525150px;}
.h4{height:118.766250px;}
.h17{height:122.040000px;}
.h56{height:125.733404px;}
.h3{height:129.093750px;}
.h5{height:139.421250px;}
.h39{height:156.600000px;}
.h6{height:166.530938px;}
.h45{height:169.560000px;}
.h37{height:174.240000px;}
.h32{height:182.880000px;}
.h2a{height:218.880000px;}
.h2d{height:288.360000px;}
.h22{height:306.720000px;}
.h25{height:400.680000px;}
.h60{height:822.180150px;}
.h51{height:932.429100px;}
.h49{height:940.499955px;}
.h66{height:976.049925px;}
.h53{height:1007.474970px;}
.h4c{height:1043.726400px;}
.h4e{height:1059.160200px;}
.hf{height:1256.175000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:10.080000px;}
.w3{width:19.800000px;}
.w31{width:47.880000px;}
.w28{width:51.120000px;}
.w10{width:55.440000px;}
.w12{width:57.240000px;}
.w11{width:60.120000px;}
.w2e{width:61.560000px;}
.w1f{width:63.000000px;}
.wf{width:64.080000px;}
.wd{width:64.800000px;}
.w1e{width:68.400000px;}
.w29{width:73.440000px;}
.we{width:75.600000px;}
.w27{width:78.840000px;}
.w30{width:84.960000px;}
.w26{width:91.080000px;}
.wb{width:97.560000px;}
.w8{width:104.760000px;}
.w7{width:118.080000px;}
.w20{width:126.720000px;}
.w5{width:132.840000px;}
.w2f{width:144.000000px;}
.w2a{width:146.160000px;}
.w21{width:147.960000px;}
.w25{width:170.640000px;}
.w38{width:182.948100px;}
.w32{width:184.680000px;}
.w22{width:185.400000px;}
.w2d{width:206.280000px;}
.wa{width:207.000000px;}
.w24{width:270.720000px;}
.w6{width:274.320000px;}
.w2c{width:317.520000px;}
.w19{width:327.240000px;}
.w1d{width:334.080000px;}
.wc{width:381.240000px;}
.w1a{width:385.560000px;}
.w2b{width:438.120000px;}
.w37{width:465.731400px;}
.w14{width:522.360000px;}
.w33{width:523.800000px;}
.w15{width:524.160000px;}
.w1c{width:562.320000px;}
.w18{width:619.920000px;}
.w9{width:635.040000px;}
.w23{width:658.440000px;}
.w17{width:659.160000px;}
.w16{width:673.200000px;}
.w13{width:683.640000px;}
.w39{width:688.500000px;}
.w1b{width:707.760000px;}
.w34{width:712.425000px;}
.w35{width:712.575000px;}
.w36{width:712.740150px;}
.w4{width:879.255000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x64{left:-64.005012px;}
.x0{left:0.000000px;}
.x5e{left:4.320144px;}
.x1f{left:7.026120px;}
.x32{left:9.568800px;}
.x30{left:11.160000px;}
.x2f{left:12.573792px;}
.x17{left:13.680000px;}
.x56{left:16.557480px;}
.x22{left:17.669952px;}
.x27{left:19.908936px;}
.x55{left:21.626280px;}
.x59{left:22.812480px;}
.x50{left:24.485760px;}
.x1d{left:25.887708px;}
.x1a{left:27.815400px;}
.x37{left:29.842560px;}
.x58{left:31.154760px;}
.x2c{left:32.155128px;}
.x26{left:33.660144px;}
.x57{left:36.360612px;}
.x21{left:38.237796px;}
.x1b{left:39.907692px;}
.x52{left:40.916520px;}
.x5c{left:42.201684px;}
.x23{left:44.445096px;}
.x28{left:46.072476px;}
.x25{left:47.848680px;}
.x48{left:49.147200px;}
.x24{left:50.352480px;}
.x69{left:52.718040px;}
.x53{left:56.795184px;}
.x5a{left:63.427680px;}
.x39{left:68.293512px;}
.x66{left:77.137200px;}
.x77{left:85.936217px;}
.x45{left:89.309700px;}
.x49{left:91.980000px;}
.x13{left:100.260144px;}
.x6b{left:101.534034px;}
.x2a{left:103.192344px;}
.x18{left:113.580000px;}
.x29{left:117.360000px;}
.x38{left:118.800000px;}
.x6c{left:123.075883px;}
.x1{left:127.260144px;}
.x7{left:129.290040px;}
.x3f{left:130.547550px;}
.x4d{left:133.610508px;}
.x8{left:135.749628px;}
.x63{left:138.240000px;}
.x41{left:141.840000px;}
.x6d{left:144.648236px;}
.x14{left:148.560048px;}
.x3c{left:151.984050px;}
.xd{left:154.260144px;}
.x44{left:158.426700px;}
.x40{left:163.643700px;}
.x4c{left:168.840000px;}
.x2e{left:173.943000px;}
.x5f{left:178.560000px;}
.xe{left:180.359964px;}
.x6e{left:188.040289px;}
.x3a{left:189.180000px;}
.x10{left:191.085192px;}
.x6a{left:198.192740px;}
.x6f{left:200.640275px;}
.x76{left:205.859250px;}
.x11{left:208.260144px;}
.x4a{left:210.645000px;}
.x68{left:223.200000px;}
.x9{left:224.957916px;}
.x3e{left:228.893850px;}
.x16{left:233.460180px;}
.x47{left:237.960000px;}
.x75{left:246.001038px;}
.x3d{left:247.552650px;}
.x60{left:252.000000px;}
.x42{left:259.424280px;}
.x12{left:260.460180px;}
.x1c{left:263.520000px;}
.x43{left:271.980000px;}
.x73{left:275.502090px;}
.x54{left:276.840000px;}
.xa{left:292.356072px;}
.x46{left:296.002500px;}
.x2{left:300.547476px;}
.x2b{left:325.080000px;}
.x19{left:343.260108px;}
.x71{left:363.991591px;}
.x3b{left:374.602650px;}
.x74{left:383.366392px;}
.xc{left:392.817960px;}
.x4b{left:397.699050px;}
.x2d{left:423.360000px;}
.x4{left:426.441960px;}
.x15{left:436.320000px;}
.xf{left:441.360000px;}
.x70{left:443.113831px;}
.x6{left:445.934880px;}
.x65{left:455.760000px;}
.x4e{left:462.960000px;}
.x31{left:489.240000px;}
.x5d{left:490.680000px;}
.x72{left:504.627020px;}
.x67{left:518.760000px;}
.x5{left:528.447960px;}
.x4f{left:532.080000px;}
.x1e{left:539.280000px;}
.x33{left:565.560000px;}
.x5b{left:580.545000px;}
.x51{left:595.800000px;}
.x3{left:621.507960px;}
.x34{left:630.360000px;}
.x20{left:658.800000px;}
.x62{left:674.385480px;}
.x35{left:686.520000px;}
.x61{left:720.285120px;}
.x36{left:747.360000px;}
.xb{left:764.610120px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v3{vertical-align:42.239893pt;}
.ls31{letter-spacing:-0.836608pt;}
.ls30{letter-spacing:-0.559360pt;}
.ls3f{letter-spacing:-0.535040pt;}
.ls35{letter-spacing:-0.512000pt;}
.ls40{letter-spacing:-0.452352pt;}
.ls3d{letter-spacing:-0.428032pt;}
.ls42{letter-spacing:-0.398848pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls88{letter-spacing:-0.359526pt;}
.ls2c{letter-spacing:-0.354816pt;}
.ls2e{letter-spacing:-0.350208pt;}
.ls2a{letter-spacing:-0.338688pt;}
.ls78{letter-spacing:-0.337056pt;}
.ls3e{letter-spacing:-0.321024pt;}
.ls27{letter-spacing:-0.301056pt;}
.ls28{letter-spacing:-0.284928pt;}
.ls5{letter-spacing:-0.282624pt;}
.ls3b{letter-spacing:-0.277248pt;}
.ls83{letter-spacing:-0.269645pt;}
.ls29{letter-spacing:-0.268800pt;}
.ls38{letter-spacing:-0.236544pt;}
.ls24{letter-spacing:-0.231168pt;}
.ls25{letter-spacing:-0.215040pt;}
.ls80{letter-spacing:-0.213019pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.165376pt;}
.ls4{letter-spacing:-0.141312pt;}
.ls23{letter-spacing:-0.139776pt;}
.ls75{letter-spacing:-0.134283pt;}
.ls22{letter-spacing:-0.129024pt;}
.ls81{letter-spacing:-0.120711pt;}
.ls84{letter-spacing:-0.089882pt;}
.ls2d{letter-spacing:-0.086016pt;}
.ls7e{letter-spacing:-0.074602pt;}
.ls3a{letter-spacing:-0.053504pt;}
.ls87{letter-spacing:-0.044941pt;}
.ls79{letter-spacing:-0.043817pt;}
.ls7a{letter-spacing:-0.033706pt;}
.ls5e{letter-spacing:-0.031554pt;}
.ls62{letter-spacing:-0.027046pt;}
.ls5d{letter-spacing:-0.023784pt;}
.ls7c{letter-spacing:-0.023594pt;}
.ls61{letter-spacing:-0.022538pt;}
.ls32{letter-spacing:-0.019200pt;}
.ls5c{letter-spacing:-0.019053pt;}
.ls63{letter-spacing:-0.018031pt;}
.ls82{letter-spacing:-0.017752pt;}
.ls65{letter-spacing:-0.014973pt;}
.ls64{letter-spacing:-0.013523pt;}
.ls67{letter-spacing:-0.013101pt;}
.lsb{letter-spacing:-0.012800pt;}
.ls52{letter-spacing:-0.010736pt;}
.ls4d{letter-spacing:-0.010579pt;}
.ls48{letter-spacing:-0.009533pt;}
.ls6a{letter-spacing:-0.009358pt;}
.ls60{letter-spacing:-0.009015pt;}
.ls69{letter-spacing:-0.007486pt;}
.ls66{letter-spacing:-0.005615pt;}
.ls5f{letter-spacing:-0.004508pt;}
.ls68{letter-spacing:-0.003743pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000423pt;}
.ls4e{letter-spacing:0.000429pt;}
.ls16{letter-spacing:0.000512pt;}
.ls19{letter-spacing:0.001280pt;}
.lse{letter-spacing:0.006400pt;}
.ls46{letter-spacing:0.009533pt;}
.ls4c{letter-spacing:0.010579pt;}
.ls51{letter-spacing:0.010736pt;}
.ls9{letter-spacing:0.012800pt;}
.ls85{letter-spacing:0.017752pt;}
.ls7b{letter-spacing:0.023594pt;}
.ls0{letter-spacing:0.025600pt;}
.ls39{letter-spacing:0.034048pt;}
.ls1e{letter-spacing:0.053888pt;}
.ls33{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.082560pt;}
.ls6f{letter-spacing:0.089882pt;}
.ls8{letter-spacing:0.095616pt;}
.ls7d{letter-spacing:0.101117pt;}
.lsd{letter-spacing:0.103936pt;}
.ls6c{letter-spacing:0.111903pt;}
.ls6b{letter-spacing:0.112352pt;}
.ls7f{letter-spacing:0.119363pt;}
.ls34{letter-spacing:0.128000pt;}
.ls6e{letter-spacing:0.134822pt;}
.ls7{letter-spacing:0.138112pt;}
.ls18{letter-spacing:0.143616pt;}
.ls1{letter-spacing:0.148608pt;}
.ls76{letter-spacing:0.149203pt;}
.ls6d{letter-spacing:0.179763pt;}
.ls77{letter-spacing:0.193964pt;}
.ls11{letter-spacing:0.243200pt;}
.ls12{letter-spacing:0.243712pt;}
.ls13{letter-spacing:0.243840pt;}
.ls6{letter-spacing:0.244352pt;}
.ls14{letter-spacing:0.244992pt;}
.ls1a{letter-spacing:0.282112pt;}
.lsa{letter-spacing:0.319232pt;}
.ls37{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.326656pt;}
.ls8d{letter-spacing:0.350538pt;}
.ls86{letter-spacing:0.404467pt;}
.ls89{letter-spacing:0.539289pt;}
.ls5a{letter-spacing:2.872625pt;}
.ls5b{letter-spacing:2.910645pt;}
.ls56{letter-spacing:3.161345pt;}
.ls59{letter-spacing:3.165981pt;}
.ls55{letter-spacing:3.170616pt;}
.ls57{letter-spacing:3.179887pt;}
.ls54{letter-spacing:3.184522pt;}
.ls53{letter-spacing:3.193793pt;}
.ls58{letter-spacing:3.203064pt;}
.ls41{letter-spacing:3.321600pt;}
.ls72{letter-spacing:5.389148pt;}
.ls17{letter-spacing:5.891584pt;}
.ls74{letter-spacing:5.932182pt;}
.ls71{letter-spacing:6.044534pt;}
.ls73{letter-spacing:6.209317pt;}
.ls8b{letter-spacing:6.422037pt;}
.ls8c{letter-spacing:6.426531pt;}
.ls8a{letter-spacing:6.664717pt;}
.ls70{letter-spacing:9.527444pt;}
.ls3c{letter-spacing:9.902208pt;}
.ls1f{letter-spacing:13.171840pt;}
.ls20{letter-spacing:13.171968pt;}
.ls43{letter-spacing:13.844736pt;}
.ls15{letter-spacing:14.232704pt;}
.ls1d{letter-spacing:16.356480pt;}
.ls47{letter-spacing:22.497496pt;}
.ls44{letter-spacing:22.828800pt;}
.ls1b{letter-spacing:23.260160pt;}
.lsc{letter-spacing:24.833024pt;}
.ls49{letter-spacing:24.966748pt;}
.ls50{letter-spacing:25.335940pt;}
.lsf{letter-spacing:30.956416pt;}
.ls45{letter-spacing:42.699008pt;}
.ls4b{letter-spacing:47.023813pt;}
.ls4f{letter-spacing:47.719170pt;}
.ls26{letter-spacing:62.494848pt;}
.ls1c{letter-spacing:63.294336pt;}
.ls2b{letter-spacing:67.458048pt;}
.ws0{word-spacing:-32.454656pt;}
.ws1{word-spacing:-29.779072pt;}
.ws2{word-spacing:-29.630336pt;}
.wsb{word-spacing:-20.965376pt;}
.ws4{word-spacing:-20.957952pt;}
.wsa{word-spacing:-20.883712pt;}
.ws7{word-spacing:-20.742656pt;}
.ws5{word-spacing:-17.804800pt;}
.ws9{word-spacing:-17.798400pt;}
.ws6{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.779200pt;}
.ws12{word-spacing:-14.945280pt;}
.ws18{word-spacing:-14.859264pt;}
.ws11{word-spacing:-14.816256pt;}
.ws20{word-spacing:-14.805504pt;}
.ws1f{word-spacing:-14.784000pt;}
.ws21{word-spacing:-14.730240pt;}
.ws15{word-spacing:-14.714112pt;}
.ws16{word-spacing:-14.676480pt;}
.ws14{word-spacing:-14.660352pt;}
.ws13{word-spacing:-14.644224pt;}
.ws1e{word-spacing:-14.592000pt;}
.ws17{word-spacing:-14.590464pt;}
.ws31{word-spacing:-14.236390pt;}
.ws25{word-spacing:-13.521920pt;}
.wsf{word-spacing:-13.440000pt;}
.ws30{word-spacing:-13.430196pt;}
.ws2e{word-spacing:-13.419460pt;}
.ws2f{word-spacing:-13.408724pt;}
.ws1a{word-spacing:-13.356544pt;}
.ws2c{word-spacing:-13.234492pt;}
.ws2b{word-spacing:-13.223913pt;}
.ws2d{word-spacing:-13.213334pt;}
.ws22{word-spacing:-13.200896pt;}
.ws19{word-spacing:-13.171712pt;}
.ws27{word-spacing:-13.123072pt;}
.ws26{word-spacing:-13.093888pt;}
.ws24{word-spacing:-13.069568pt;}
.ws40{word-spacing:-13.032825pt;}
.ws23{word-spacing:-12.986880pt;}
.ws41{word-spacing:-12.844073pt;}
.ws1c{word-spacing:-12.685312pt;}
.ws3d{word-spacing:-12.673298pt;}
.ws3e{word-spacing:-12.628358pt;}
.ws3a{word-spacing:-12.493535pt;}
.ws3c{word-spacing:-12.403654pt;}
.ws3f{word-spacing:-12.223891pt;}
.wsc{word-spacing:-11.987712pt;}
.ws28{word-spacing:-11.925580pt;}
.ws2a{word-spacing:-11.916047pt;}
.ws29{word-spacing:-11.906514pt;}
.wsd{word-spacing:-11.886336pt;}
.wse{word-spacing:-11.742720pt;}
.ws32{word-spacing:-11.692859pt;}
.ws3b{word-spacing:-9.852141pt;}
.ws36{word-spacing:-9.519175pt;}
.ws35{word-spacing:-9.474414pt;}
.ws39{word-spacing:-9.250609pt;}
.ws38{word-spacing:-8.402801pt;}
.ws37{word-spacing:-8.392690pt;}
.ws34{word-spacing:-4.853113pt;}
.ws33{word-spacing:-4.851241pt;}
.ws10{word-spacing:-0.042240pt;}
.ws3{word-spacing:0.000000pt;}
.ws43{word-spacing:228.432294pt;}
.ws42{word-spacing:382.250983pt;}
.ws1b{word-spacing:614.578347pt;}
.ws1d{word-spacing:822.880000pt;}
._3c{margin-left:-22.524239pt;}
._3d{margin-left:-21.202694pt;}
._18{margin-left:-17.224192pt;}
._14{margin-left:-14.221184pt;}
._15{margin-left:-10.514176pt;}
._13{margin-left:-9.436032pt;}
._16{margin-left:-6.682752pt;}
._21{margin-left:-4.695040pt;}
._a{margin-left:-3.684480pt;}
._17{margin-left:-2.732032pt;}
._1{margin-left:-0.990720pt;}
._0{width:0.966528pt;}
._10{width:1.994240pt;}
._1c{width:3.491328pt;}
._9{width:4.460800pt;}
._20{width:5.898752pt;}
._e{width:7.023616pt;}
._22{width:8.489728pt;}
._8{width:9.468672pt;}
._c{width:10.512128pt;}
._1d{width:11.641600pt;}
._1e{width:12.739712pt;}
._2{width:13.739392pt;}
._3{width:14.659456pt;}
._b{width:15.588352pt;}
._1b{width:16.812800pt;}
._3e{width:17.711196pt;}
._7{width:18.700800pt;}
._2f{width:19.603968pt;}
._12{width:20.524800pt;}
._1f{width:21.420800pt;}
._11{width:22.416768pt;}
._6{width:23.336320pt;}
._5{width:24.939520pt;}
._19{width:26.007040pt;}
._23{width:27.535360pt;}
._4{width:28.716800pt;}
._d{width:29.836800pt;}
._1a{width:31.289600pt;}
._27{width:32.659200pt;}
._f{width:34.220800pt;}
._2e{width:35.507200pt;}
._2d{width:37.305600pt;}
._29{width:42.214400pt;}
._32{width:43.782400pt;}
._28{width:45.696000pt;}
._30{width:46.592000pt;}
._2a{width:50.694400pt;}
._35{width:51.718400pt;}
._33{width:55.475712pt;}
._25{width:56.882688pt;}
._24{width:64.471168pt;}
._26{width:67.404800pt;}
._31{width:74.216064pt;}
._39{width:75.249536pt;}
._2c{width:76.694144pt;}
._38{width:119.148800pt;}
._3b{width:120.252928pt;}
._42{width:133.043371pt;}
._41{width:140.518236pt;}
._2b{width:171.261568pt;}
._40{width:188.353705pt;}
._36{width:238.400000pt;}
._37{width:266.816000pt;}
._44{width:324.276340pt;}
._3f{width:331.831261pt;}
._3a{width:452.917248pt;}
._34{width:470.720000pt;}
._43{width:1234.576332pt;}
.fs1a{font-size:18.716209pt;}
.fs19{font-size:27.148014pt;}
.fs1f{font-size:28.851308pt;}
.fs1d{font-size:33.705581pt;}
.fs9{font-size:34.560000pt;}
.fs1e{font-size:35.503212pt;}
.fsb{font-size:37.120000pt;}
.fs1b{font-size:37.300843pt;}
.fs7{font-size:42.240000pt;}
.fs11{font-size:42.244481pt;}
.fs1c{font-size:44.940774pt;}
.fs17{font-size:45.076558pt;}
.fs10{font-size:46.354037pt;}
.fs16{font-size:47.567663pt;}
.fs15{font-size:47.631515pt;}
.fsc{font-size:47.664187pt;}
.fs14{font-size:48.185118pt;}
.fsa{font-size:48.640000pt;}
.fs13{font-size:49.420241pt;}
.fsd{font-size:52.895653pt;}
.fse{font-size:53.677840pt;}
.fs8{font-size:53.760000pt;}
.fsf{font-size:63.973776pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs5{font-size:106.240000pt;}
.fs18{font-size:106.463209pt;}
.fs2{font-size:117.760000pt;}
.fs12{font-size:120.026574pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:138.240000pt;}
.fs4{font-size:165.120000pt;}
.y30e{bottom:-52.945943pt;}
.y0{bottom:0.000000pt;}
.y355{bottom:2.584018pt;}
.y353{bottom:2.789066pt;}
.y13e{bottom:3.040000pt;}
.y13b{bottom:3.360000pt;}
.y54{bottom:3.679960pt;}
.y214{bottom:3.680000pt;}
.y1bc{bottom:5.280000pt;}
.y138{bottom:5.919973pt;}
.y1ec{bottom:5.920000pt;}
.y1e0{bottom:6.240000pt;}
.y1e5{bottom:6.880000pt;}
.y1e9{bottom:7.519973pt;}
.y161{bottom:7.840000pt;}
.y157{bottom:9.120000pt;}
.y142{bottom:9.440000pt;}
.y1df{bottom:9.760000pt;}
.y199{bottom:10.079973pt;}
.y34f{bottom:10.140779pt;}
.y1d3{bottom:10.720000pt;}
.y19b{bottom:11.040000pt;}
.y16f{bottom:11.200000pt;}
.y120{bottom:11.360000pt;}
.y1b4{bottom:11.680000pt;}
.y1e8{bottom:12.319973pt;}
.y183{bottom:12.320000pt;}
.y352{bottom:12.336171pt;}
.y127{bottom:12.640000pt;}
.y1b1{bottom:13.600000pt;}
.y1dd{bottom:13.920000pt;}
.y34e{bottom:14.399218pt;}
.y149{bottom:14.560000pt;}
.y12e{bottom:14.880000pt;}
.y14d{bottom:15.200000pt;}
.y151{bottom:15.520000pt;}
.y180{bottom:15.840000pt;}
.y1b9{bottom:17.439973pt;}
.y1d4{bottom:18.080000pt;}
.y1db{bottom:18.400000pt;}
.y34d{bottom:18.657657pt;}
.y133{bottom:19.040000pt;}
.y347{bottom:19.587245pt;}
.y136{bottom:21.279973pt;}
.y1eb{bottom:21.280000pt;}
.y19d{bottom:22.560000pt;}
.y121{bottom:22.880000pt;}
.y34c{bottom:22.916096pt;}
.y141{bottom:24.800000pt;}
.y165{bottom:25.920000pt;}
.y346{bottom:25.974638pt;}
.y1d0{bottom:26.080000pt;}
.y145{bottom:26.400000pt;}
.y14e{bottom:26.720000pt;}
.y152{bottom:27.040000pt;}
.y34b{bottom:27.174535pt;}
.y182{bottom:27.680000pt;}
.y126{bottom:28.000000pt;}
.y143{bottom:28.320000pt;}
.y139{bottom:28.959973pt;}
.y148{bottom:29.920000pt;}
.y12d{bottom:30.240000pt;}
.y14c{bottom:30.560000pt;}
.y150{bottom:30.880000pt;}
.y34a{bottom:31.432974pt;}
.y345{bottom:32.362562pt;}
.y1b8{bottom:32.799973pt;}
.y14a{bottom:33.760000pt;}
.y363{bottom:34.003301pt;}
.y19e{bottom:34.080000pt;}
.y11f{bottom:34.400000pt;}
.y1b5{bottom:34.720000pt;}
.y1b3{bottom:35.040000pt;}
.y128{bottom:35.680000pt;}
.y349{bottom:35.691945pt;}
.y135{bottom:36.639973pt;}
.y1e6{bottom:36.959973pt;}
.y12a{bottom:37.600000pt;}
.y1d5{bottom:37.920000pt;}
.y123{bottom:39.520000pt;}
.y140{bottom:39.840000pt;}
.y348{bottom:39.950384pt;}
.y1d2{bottom:41.440000pt;}
.y1d8{bottom:41.760000pt;}
.y1a3{bottom:42.080000pt;}
.y209{bottom:42.400000pt;}
.y1e2{bottom:43.359973pt;}
.y125{bottom:43.360000pt;}
.y1ba{bottom:44.639973pt;}
.y12c{bottom:45.280000pt;}
.y362{bottom:45.337743pt;}
.y53{bottom:46.520040pt;}
.y166{bottom:47.360000pt;}
.y20f{bottom:47.520000pt;}
.y211{bottom:47.840000pt;}
.y1b7{bottom:48.159973pt;}
.y20d{bottom:48.480000pt;}
.y1cf{bottom:49.440000pt;}
.y130{bottom:49.760000pt;}
.y52{bottom:50.520000pt;}
.y137{bottom:51.999973pt;}
.y1b0{bottom:55.520000pt;}
.y361{bottom:56.672186pt;}
.y1d7{bottom:57.440000pt;}
.y197{bottom:57.600040pt;}
.y1a4{bottom:57.760000pt;}
.y124{bottom:58.720000pt;}
.y12b{bottom:60.640000pt;}
.y190{bottom:62.400040pt;}
.y2b7{bottom:63.000000pt;}
.y132{bottom:64.800000pt;}
.y1ab{bottom:65.120000pt;}
.y360{bottom:68.006629pt;}
.y18a{bottom:68.160000pt;}
.y167{bottom:69.120000pt;}
.y196{bottom:71.360040pt;}
.y1ce{bottom:72.800000pt;}
.y30f{bottom:73.560027pt;}
.y31b{bottom:76.548057pt;}
.y1af{bottom:77.920000pt;}
.y163{bottom:78.400000pt;}
.y131{bottom:80.160000pt;}
.y1c8{bottom:80.480000pt;}
.y2e5{bottom:80.517627pt;}
.y35f{bottom:81.026600pt;}
.y284{bottom:82.093373pt;}
.y18c{bottom:82.880000pt;}
.y2b6{bottom:83.144213pt;}
.y20c{bottom:84.960000pt;}
.y31a{bottom:87.727058pt;}
.y1a7{bottom:88.160000pt;}
.y1da{bottom:88.480000pt;}
.y2b8{bottom:88.669853pt;}
.y168{bottom:90.880000pt;}
.y2e4{bottom:92.270000pt;}
.y1cd{bottom:96.160000pt;}
.y2b5{bottom:96.728507pt;}
.y11a{bottom:96.920000pt;}
.y1ae{bottom:97.760000pt;}
.y17e{bottom:97.920040pt;}
.y319{bottom:98.905527pt;}
.y1b6{bottom:99.640027pt;}
.y19{bottom:101.080000pt;}
.y38{bottom:102.680000pt;}
.y1aa{bottom:103.520000pt;}
.y1cb{bottom:103.840000pt;}
.y195{bottom:104.000035pt;}
.yc2{bottom:104.280000pt;}
.y1e1{bottom:104.440027pt;}
.y18b{bottom:105.280000pt;}
.y2e3{bottom:107.345261pt;}
.y103{bottom:109.080000pt;}
.y318{bottom:110.083996pt;}
.y2b4{bottom:110.551121pt;}
.y23a{bottom:110.680000pt;}
.y134{bottom:111.160027pt;}
.y1d9{bottom:111.840000pt;}
.y119{bottom:112.280000pt;}
.y169{bottom:112.320000pt;}
.y8d{bottom:113.560000pt;}
.yea{bottom:116.120000pt;}
.y269{bottom:117.080000pt;}
.y17d{bottom:117.440035pt;}
.y194{bottom:117.760035pt;}
.y1ca{bottom:119.200000pt;}
.y1cc{bottom:119.520000pt;}
.y1ad{bottom:119.840000pt;}
.yd7{bottom:120.600000pt;}
.y317{bottom:121.262465pt;}
.y2e2{bottom:122.685001pt;}
.y2b3{bottom:124.135414pt;}
.y18{bottom:124.440000pt;}
.y1a9{bottom:126.880000pt;}
.y189{bottom:127.360000pt;}
.y249{bottom:127.960000pt;}
.y177{bottom:128.000040pt;}
.y239{bottom:128.920000pt;}
.y1e7{bottom:129.080027pt;}
.y187{bottom:130.200000pt;}
.y155{bottom:131.480000pt;}
.y1c5{bottom:131.800000pt;}
.yc1{bottom:132.120000pt;}
.y118{bottom:132.440000pt;}
.y316{bottom:132.440933pt;}
.y198{bottom:132.600027pt;}
.y37{bottom:132.760000pt;}
.y16a{bottom:134.080000pt;}
.y50{bottom:134.360000pt;}
.y1c9{bottom:134.560000pt;}
.y70{bottom:136.280000pt;}
.y102{bottom:136.600000pt;}
.y30d{bottom:137.167467pt;}
.y2b2{bottom:137.958028pt;}
.y268{bottom:138.200000pt;}
.y1ac{bottom:139.680000pt;}
.y8c{bottom:141.080000pt;}
.y1a8{bottom:142.240000pt;}
.y31c{bottom:142.689282pt;}
.y315{bottom:143.619934pt;}
.y242{bottom:143.640000pt;}
.ye9{bottom:143.960000pt;}
.y2e1{bottom:145.165653pt;}
.y117{bottom:145.240000pt;}
.y238{bottom:147.480000pt;}
.yd6{bottom:148.120000pt;}
.y17f{bottom:149.560000pt;}
.y1c4{bottom:150.360000pt;}
.y193{bottom:150.400040pt;}
.y2b1{bottom:151.542321pt;}
.y1e3{bottom:153.720000pt;}
.y97{bottom:154.520000pt;}
.y314{bottom:154.798403pt;}
.y17{bottom:155.800000pt;}
.y16b{bottom:155.840000pt;}
.y175{bottom:157.400000pt;}
.yc0{bottom:159.640000pt;}
.y17c{bottom:160.320040pt;}
.y2e0{bottom:160.505393pt;}
.y18e{bottom:160.920000pt;}
.y4f{bottom:161.880000pt;}
.y6f{bottom:164.120000pt;}
.y192{bottom:164.160040pt;}
.y2b0{bottom:165.364935pt;}
.y237{bottom:165.720000pt;}
.y313{bottom:165.976872pt;}
.y207{bottom:166.360000pt;}
.y178{bottom:167.680040pt;}
.y8b{bottom:168.600000pt;}
.y241{bottom:171.160000pt;}
.ye8{bottom:171.480000pt;}
.y267{bottom:172.760000pt;}
.y36{bottom:173.720000pt;}
.y154{bottom:175.000000pt;}
.y1b2{bottom:175.480000pt;}
.y96{bottom:175.640000pt;}
.y2df{bottom:175.845132pt;}
.yd5{bottom:175.960000pt;}
.y350{bottom:176.852667pt;}
.y1e4{bottom:177.080000pt;}
.y312{bottom:177.155873pt;}
.y16c{bottom:177.280000pt;}
.y2af{bottom:178.949229pt;}
.y12f{bottom:179.960000pt;}
.y101{bottom:180.120000pt;}
.y18f{bottom:183.360027pt;}
.y236{bottom:184.280000pt;}
.ybf{bottom:187.160000pt;}
.y15f{bottom:187.480000pt;}
.y311{bottom:188.334342pt;}
.y2de{bottom:190.920393pt;}
.y6e{bottom:191.640000pt;}
.y21b{bottom:191.960000pt;}
.y2ae{bottom:192.533522pt;}
.y16{bottom:192.600000pt;}
.y266{bottom:193.880000pt;}
.y283{bottom:194.200000pt;}
.y8a{bottom:196.120000pt;}
.y4e{bottom:197.400000pt;}
.y240{bottom:198.680000pt;}
.y16d{bottom:199.040000pt;}
.y310{bottom:199.512811pt;}
.y1dc{bottom:200.440000pt;}
.y191{bottom:201.280027pt;}
.y35{bottom:201.560000pt;}
.y235{bottom:202.520000pt;}
.y219{bottom:203.160000pt;}
.y17b{bottom:203.200027pt;}
.yd4{bottom:203.480000pt;}
.y1c3{bottom:205.400000pt;}
.y2dd{bottom:206.260133pt;}
.y2ad{bottom:206.356136pt;}
.y153{bottom:206.520000pt;}
.y100{bottom:207.960000pt;}
.y206{bottom:209.880000pt;}
.y164{bottom:214.080000pt;}
.ybe{bottom:214.680000pt;}
.ye7{bottom:215.000000pt;}
.y95{bottom:219.160000pt;}
.y30c{bottom:219.240426pt;}
.y2ac{bottom:219.940429pt;}
.y16e{bottom:220.800000pt;}
.y234{bottom:221.080000pt;}
.y1de{bottom:221.240000pt;}
.y176{bottom:223.680027pt;}
.y89{bottom:223.960000pt;}
.y17a{bottom:226.560027pt;}
.y2dc{bottom:228.740786pt;}
.y34{bottom:229.080000pt;}
.y15{bottom:230.040000pt;}
.y282{bottom:231.320000pt;}
.y1a6{bottom:231.480000pt;}
.y4d{bottom:233.240000pt;}
.y2ab{bottom:233.763043pt;}
.y30b{bottom:234.806999pt;}
.y6d{bottom:235.160000pt;}
.yff{bottom:235.480000pt;}
.y179{bottom:235.520027pt;}
.y233{bottom:239.320000pt;}
.y1c2{bottom:242.200000pt;}
.ybd{bottom:242.520000pt;}
.y94{bottom:246.680000pt;}
.yd3{bottom:247.000000pt;}
.y2aa{bottom:247.347336pt;}
.yad{bottom:248.600000pt;}
.y265{bottom:249.560000pt;}
.y30a{bottom:250.105184pt;}
.y344{bottom:251.414365pt;}
.y281{bottom:252.440000pt;}
.y205{bottom:253.400000pt;}
.y33{bottom:256.600000pt;}
.y232{bottom:257.880000pt;}
.y248{bottom:258.520000pt;}
.y2db{bottom:259.155786pt;}
.y1c1{bottom:260.760000pt;}
.y116{bottom:261.080000pt;}
.y2a9{bottom:261.169951pt;}
.y14f{bottom:261.880000pt;}
.y6c{bottom:262.680000pt;}
.y309{bottom:265.671757pt;}
.y1ea{bottom:265.720000pt;}
.y14{bottom:265.880000pt;}
.y88{bottom:267.480000pt;}
.y4c{bottom:268.760000pt;}
.yac{bottom:269.720000pt;}
.ybc{bottom:270.040000pt;}
.ye6{bottom:270.360000pt;}
.y264{bottom:270.680000pt;}
.y93{bottom:274.520000pt;}
.y2a8{bottom:274.754244pt;}
.y231{bottom:276.120000pt;}
.y343{bottom:278.030274pt;}
.yfe{bottom:279.000000pt;}
.y204{bottom:280.920000pt;}
.y308{bottom:280.969942pt;}
.y32{bottom:284.120000pt;}
.y15e{bottom:286.040000pt;}
.y280{bottom:286.680000pt;}
.y2a7{bottom:288.576858pt;}
.y115{bottom:288.920000pt;}
.y2da{bottom:289.570787pt;}
.y129{bottom:289.720000pt;}
.y6b{bottom:290.520000pt;}
.yab{bottom:290.840000pt;}
.y263{bottom:291.800000pt;}
.y230{bottom:294.680000pt;}
.y87{bottom:295.000000pt;}
.y307{bottom:296.536515pt;}
.ybb{bottom:297.560000pt;}
.ye5{bottom:297.880000pt;}
.y35e{bottom:301.508521pt;}
.y218{bottom:302.040000pt;}
.y2a6{bottom:302.161151pt;}
.yd2{bottom:302.360000pt;}
.y13{bottom:302.680000pt;}
.y4b{bottom:304.280000pt;}
.yfd{bottom:306.520000pt;}
.y27f{bottom:308.120000pt;}
.y203{bottom:308.760000pt;}
.y306{bottom:311.834700pt;}
.y31{bottom:311.960000pt;}
.y2d9{bottom:312.315918pt;}
.y22f{bottom:312.920000pt;}
.y15d{bottom:313.560000pt;}
.y2a5{bottom:315.983765pt;}
.y114{bottom:316.440000pt;}
.y6a{bottom:318.040000pt;}
.y14b{bottom:318.200000pt;}
.y35d{bottom:319.169309pt;}
.y86{bottom:322.520000pt;}
.yba{bottom:325.080000pt;}
.y305{bottom:327.401273pt;}
.y33c{bottom:328.070523pt;}
.y27e{bottom:329.240000pt;}
.y217{bottom:329.560000pt;}
.y2a4{bottom:329.568058pt;}
.yd1{bottom:329.880000pt;}
.y22e{bottom:331.480000pt;}
.yaa{bottom:333.080000pt;}
.yfc{bottom:334.360000pt;}
.y2d8{bottom:335.061049pt;}
.y202{bottom:336.280000pt;}
.y342{bottom:338.051223pt;}
.y33b{bottom:339.248992pt;}
.y12{bottom:339.480000pt;}
.y4a{bottom:339.800000pt;}
.ye4{bottom:341.400000pt;}
.y304{bottom:342.699458pt;}
.y2a3{bottom:343.390673pt;}
.y113{bottom:343.960000pt;}
.y69{bottom:345.560000pt;}
.y247{bottom:345.880000pt;}
.y262{bottom:347.480000pt;}
.y341{bottom:349.229692pt;}
.y22d{bottom:349.720000pt;}
.y1c0{bottom:350.360000pt;}
.y33a{bottom:350.427993pt;}
.y30{bottom:352.600000pt;}
.yb9{bottom:352.920000pt;}
.ya9{bottom:354.200000pt;}
.y2a2{bottom:356.974966pt;}
.y216{bottom:357.080000pt;}
.y15c{bottom:357.400000pt;}
.y35c{bottom:357.818375pt;}
.y2d7{bottom:358.070658pt;}
.y303{bottom:358.266031pt;}
.y340{bottom:360.408693pt;}
.y339{bottom:361.606462pt;}
.yfb{bottom:361.880000pt;}
.y85{bottom:366.360000pt;}
.y22c{bottom:368.280000pt;}
.y261{bottom:368.600000pt;}
.ye3{bottom:368.920000pt;}
.y201{bottom:370.520000pt;}
.y2a1{bottom:370.797580pt;}
.y33f{bottom:371.587162pt;}
.y338{bottom:372.784931pt;}
.y68{bottom:373.080000pt;}
.yd0{bottom:373.400000pt;}
.y2d6{bottom:373.410397pt;}
.y147{bottom:373.560000pt;}
.y302{bottom:373.564216pt;}
.ya8{bottom:375.320000pt;}
.y49{bottom:375.640000pt;}
.y122{bottom:375.800000pt;}
.y11{bottom:376.280000pt;}
.y1bf{bottom:377.880000pt;}
.y2f{bottom:380.440000pt;}
.y33e{bottom:382.765631pt;}
.y337{bottom:383.963400pt;}
.y2a0{bottom:384.381873pt;}
.y15b{bottom:384.920000pt;}
.y22b{bottom:386.520000pt;}
.y112{bottom:387.480000pt;}
.y2d5{bottom:388.750137pt;}
.y200{bottom:389.080000pt;}
.y301{bottom:389.130789pt;}
.y21a{bottom:389.400000pt;}
.y260{bottom:389.720000pt;}
.y84{bottom:393.880000pt;}
.y33d{bottom:393.944100pt;}
.y1a5{bottom:394.680000pt;}
.y336{bottom:395.141869pt;}
.ya7{bottom:396.440000pt;}
.y35b{bottom:396.579793pt;}
.y29f{bottom:398.204487pt;}
.y92{bottom:400.920000pt;}
.y2d4{bottom:403.825398pt;}
.y300{bottom:404.428974pt;}
.y20b{bottom:404.920000pt;}
.y22a{bottom:405.080000pt;}
.yfa{bottom:405.400000pt;}
.y27d{bottom:406.040000pt;}
.y335{bottom:406.320870pt;}
.y1ff{bottom:407.320000pt;}
.y2e{bottom:407.960000pt;}
.y25f{bottom:410.840000pt;}
.y48{bottom:411.160000pt;}
.y29e{bottom:411.788780pt;}
.y15a{bottom:412.440000pt;}
.y10{bottom:413.080000pt;}
.y111{bottom:415.320000pt;}
.y35a{bottom:416.016678pt;}
.y67{bottom:416.920000pt;}
.ya6{bottom:417.880000pt;}
.y2d3{bottom:419.165138pt;}
.y2ff{bottom:419.995547pt;}
.y83{bottom:421.400000pt;}
.y229{bottom:423.320000pt;}
.y320{bottom:423.757961pt;}
.y23f{bottom:423.960000pt;}
.ye2{bottom:424.280000pt;}
.y29d{bottom:425.611395pt;}
.y1fe{bottom:425.880000pt;}
.y27c{bottom:427.160000pt;}
.y91{bottom:428.440000pt;}
.y25e{bottom:431.960000pt;}
.yf9{bottom:432.920000pt;}
.y2d2{bottom:434.240399pt;}
.y2fe{bottom:435.293732pt;}
.y2d{bottom:435.480000pt;}
.y321{bottom:438.130126pt;}
.ya5{bottom:439.000000pt;}
.y29c{bottom:439.195688pt;}
.y186{bottom:440.280000pt;}
.y228{bottom:441.880000pt;}
.y110{bottom:442.840000pt;}
.y212{bottom:443.000000pt;}
.y146{bottom:443.320000pt;}
.y1fd{bottom:444.120000pt;}
.y66{bottom:444.440000pt;}
.y47{bottom:446.680000pt;}
.y82{bottom:448.920000pt;}
.y2d1{bottom:449.580138pt;}
.yf{bottom:449.880000pt;}
.y1a2{bottom:450.040000pt;}
.y2fd{bottom:450.860305pt;}
.yb8{bottom:451.480000pt;}
.y29b{bottom:453.018302pt;}
.y90{bottom:455.960000pt;}
.y11e{bottom:459.320000pt;}
.ya4{bottom:460.120000pt;}
.yf8{bottom:460.440000pt;}
.y27b{bottom:461.720000pt;}
.y1fc{bottom:462.680000pt;}
.y2c{bottom:463.000000pt;}
.y2d0{bottom:464.655399pt;}
.y25d{bottom:466.520000pt;}
.y29a{bottom:466.602595pt;}
.ye1{bottom:467.800000pt;}
.y2fc{bottom:468.305603pt;}
.y65{bottom:471.960000pt;}
.ycf{bottom:472.280000pt;}
.y359{bottom:474.102628pt;}
.y1be{bottom:476.440000pt;}
.y227{bottom:478.680000pt;}
.y299{bottom:480.425209pt;}
.y334{bottom:480.587343pt;}
.y1fb{bottom:480.920000pt;}
.y20e{bottom:481.080000pt;}
.ya3{bottom:481.240000pt;}
.y46{bottom:482.200000pt;}
.y27a{bottom:482.840000pt;}
.y215{bottom:483.480000pt;}
.y159{bottom:483.800000pt;}
.y2fb{bottom:486.019290pt;}
.y10f{bottom:486.360000pt;}
.ye{bottom:486.680000pt;}
.y2cf{bottom:487.136052pt;}
.y25c{bottom:487.640000pt;}
.yf7{bottom:488.280000pt;}
.y2b{bottom:490.840000pt;}
.y333{bottom:491.765812pt;}
.y81{bottom:492.440000pt;}
.y358{bottom:493.539513pt;}
.y298{bottom:494.009502pt;}
.yb7{bottom:495.320000pt;}
.y226{bottom:496.920000pt;}
.y144{bottom:498.680000pt;}
.y64{bottom:499.480000pt;}
.yce{bottom:499.800000pt;}
.ya2{bottom:502.360000pt;}
.y2ce{bottom:502.740270pt;}
.y332{bottom:502.944281pt;}
.y2fa{bottom:503.732978pt;}
.y297{bottom:507.832117pt;}
.y25b{bottom:508.760000pt;}
.ye0{bottom:511.320000pt;}
.y13a{bottom:513.720000pt;}
.y10e{bottom:513.880000pt;}
.y331{bottom:514.122750pt;}
.y225{bottom:515.480000pt;}
.yf6{bottom:515.800000pt;}
.y279{bottom:517.400000pt;}
.y1fa{bottom:517.720000pt;}
.y2cd{bottom:517.815531pt;}
.y45{bottom:518.040000pt;}
.y2a{bottom:518.360000pt;}
.y210{bottom:519.160000pt;}
.y160{bottom:520.120000pt;}
.y80{bottom:520.280000pt;}
.y296{bottom:521.416410pt;}
.y2f9{bottom:521.446665pt;}
.yb6{bottom:522.840000pt;}
.y174{bottom:524.760000pt;}
.y330{bottom:525.301751pt;}
.yd{bottom:525.400000pt;}
.y63{bottom:527.320000pt;}
.y1a1{bottom:528.760000pt;}
.y25a{bottom:529.880000pt;}
.y357{bottom:532.300931pt;}
.y2cc{bottom:533.155271pt;}
.y224{bottom:533.720000pt;}
.y295{bottom:535.239024pt;}
.y1f9{bottom:536.280000pt;}
.y32f{bottom:536.480219pt;}
.y278{bottom:538.520000pt;}
.ydf{bottom:538.840000pt;}
.y2f8{bottom:539.160352pt;}
.y10d{bottom:541.720000pt;}
.ycd{bottom:543.320000pt;}
.y162{bottom:545.560000pt;}
.y29{bottom:545.880000pt;}
.y32e{bottom:547.658688pt;}
.y7f{bottom:547.800000pt;}
.y2cb{bottom:548.230532pt;}
.y294{bottom:548.823317pt;}
.yb5{bottom:550.360000pt;}
.y185{bottom:550.680000pt;}
.y259{bottom:551.000000pt;}
.y356{bottom:551.625464pt;}
.y173{bottom:552.280000pt;}
.y44{bottom:553.560000pt;}
.y13f{bottom:554.040000pt;}
.y1f8{bottom:554.520000pt;}
.y62{bottom:554.840000pt;}
.y2f7{bottom:556.874039pt;}
.y208{bottom:556.920000pt;}
.yf5{bottom:559.320000pt;}
.y293{bottom:562.645931pt;}
.y1bd{bottom:563.800000pt;}
.y23e{bottom:566.360000pt;}
.yde{bottom:566.680000pt;}
.y10c{bottom:569.240000pt;}
.y223{bottom:570.520000pt;}
.ycc{bottom:570.840000pt;}
.y2ca{bottom:570.975663pt;}
.yc{bottom:572.760000pt;}
.y1f7{bottom:573.080000pt;}
.y28{bottom:573.400000pt;}
.ya1{bottom:573.720000pt;}
.y2f6{bottom:574.587726pt;}
.y7e{bottom:575.320000pt;}
.y292{bottom:576.230224pt;}
.yb4{bottom:577.880000pt;}
.y184{bottom:578.200000pt;}
.y31f{bottom:579.063013pt;}
.y172{bottom:579.800000pt;}
.y61{bottom:582.360000pt;}
.y1a0{bottom:584.120000pt;}
.y258{bottom:585.560000pt;}
.y2c9{bottom:586.315402pt;}
.yf4{bottom:586.840000pt;}
.y43{bottom:589.080000pt;}
.y291{bottom:590.052839pt;}
.y1f6{bottom:591.320000pt;}
.y2f5{bottom:592.301414pt;}
.y20a{bottom:593.720000pt;}
.y23d{bottom:593.880000pt;}
.y11d{bottom:594.200000pt;}
.y1d6{bottom:595.320000pt;}
.y10b{bottom:596.760000pt;}
.ycb{bottom:598.680000pt;}
.y2c8{bottom:601.655142pt;}
.y7d{bottom:602.840000pt;}
.y290{bottom:603.637132pt;}
.y257{bottom:606.680000pt;}
.y222{bottom:607.320000pt;}
.y171{bottom:607.640000pt;}
.y18d{bottom:609.400000pt;}
.y8f{bottom:609.880000pt;}
.ydd{bottom:610.200000pt;}
.y2f4{bottom:610.283490pt;}
.y13c{bottom:613.240000pt;}
.y27{bottom:614.360000pt;}
.yf3{bottom:614.680000pt;}
.y32d{bottom:614.735354pt;}
.y277{bottom:615.320000pt;}
.y2c7{bottom:616.730403pt;}
.ya0{bottom:617.240000pt;}
.y28f{bottom:617.459746pt;}
.yb{bottom:620.440000pt;}
.yb3{bottom:621.720000pt;}
.y42{bottom:624.600000pt;}
.y60{bottom:625.880000pt;}
.y32c{bottom:625.914355pt;}
.yca{bottom:626.200000pt;}
.y256{bottom:627.800000pt;}
.y1f5{bottom:628.120000pt;}
.y13d{bottom:629.240000pt;}
.y246{bottom:630.680000pt;}
.y28e{bottom:631.044039pt;}
.y2c6{bottom:632.070142pt;}
.y213{bottom:636.280000pt;}
.y276{bottom:636.440000pt;}
.y32b{bottom:637.092824pt;}
.ydc{bottom:637.720000pt;}
.y19f{bottom:639.480000pt;}
.y188{bottom:639.960000pt;}
.y10a{bottom:640.280000pt;}
.y2f3{bottom:641.148248pt;}
.y170{bottom:641.880000pt;}
.y26{bottom:642.200000pt;}
.y221{bottom:644.120000pt;}
.y9f{bottom:644.760000pt;}
.y28d{bottom:644.866653pt;}
.y7c{bottom:646.680000pt;}
.y2c5{bottom:647.145403pt;}
.y32a{bottom:648.271293pt;}
.yb2{bottom:649.240000pt;}
.y156{bottom:650.680000pt;}
.y5f{bottom:653.720000pt;}
.y1f4{bottom:655.640000pt;}
.y2f2{bottom:656.714822pt;}
.y275{bottom:657.560000pt;}
.yf2{bottom:658.200000pt;}
.y28c{bottom:658.450946pt;}
.y329{bottom:659.449762pt;}
.y41{bottom:660.440000pt;}
.y351{bottom:661.730362pt;}
.y181{bottom:662.200000pt;}
.y2c4{bottom:662.485143pt;}
.y220{bottom:662.680000pt;}
.y11c{bottom:665.240000pt;}
.ya{bottom:666.520000pt;}
.y109{bottom:668.120000pt;}
.y25{bottom:669.720000pt;}
.y255{bottom:670.360000pt;}
.y328{bottom:670.628763pt;}
.y28b{bottom:672.273561pt;}
.y2f1{bottom:672.281395pt;}
.y7b{bottom:674.200000pt;}
.yb1{bottom:676.760000pt;}
.y21f{bottom:680.920000pt;}
.y5e{bottom:681.240000pt;}
.y327{bottom:681.807232pt;}
.y1f3{bottom:683.480000pt;}
.y2c3{bottom:684.965796pt;}
.yf1{bottom:685.720000pt;}
.y28a{bottom:685.857854pt;}
.y2f0{bottom:687.579580pt;}
.y9e{bottom:688.280000pt;}
.y254{bottom:691.480000pt;}
.y274{bottom:692.120000pt;}
.y23c{bottom:692.760000pt;}
.y326{bottom:692.985701pt;}
.y19c{bottom:694.840000pt;}
.y108{bottom:695.640000pt;}
.y40{bottom:695.960000pt;}
.y24{bottom:697.240000pt;}
.y21e{bottom:699.480000pt;}
.y289{bottom:699.680468pt;}
.y2c2{bottom:700.305535pt;}
.y7a{bottom:701.720000pt;}
.y2ef{bottom:703.146153pt;}
.y325{bottom:704.164169pt;}
.yb0{bottom:704.280000pt;}
.y9{bottom:706.520000pt;}
.y5d{bottom:708.760000pt;}
.ydb{bottom:709.080000pt;}
.y1f2{bottom:711.000000pt;}
.y253{bottom:712.600000pt;}
.yf0{bottom:713.240000pt;}
.y288{bottom:713.264761pt;}
.y324{bottom:715.343170pt;}
.y2c1{bottom:715.645275pt;}
.y9d{bottom:716.120000pt;}
.y21d{bottom:717.720000pt;}
.y2ee{bottom:718.444338pt;}
.y23b{bottom:720.280000pt;}
.y107{bottom:723.160000pt;}
.yc9{bottom:725.080000pt;}
.y323{bottom:726.521639pt;}
.y287{bottom:727.087375pt;}
.y79{bottom:729.240000pt;}
.y2c0{bottom:730.720536pt;}
.y3f{bottom:731.480000pt;}
.y2ed{bottom:734.010911pt;}
.y273{bottom:734.360000pt;}
.y1d1{bottom:735.480000pt;}
.y5c{bottom:736.280000pt;}
.yda{bottom:736.600000pt;}
.y322{bottom:737.700108pt;}
.y23{bottom:738.200000pt;}
.y1f1{bottom:738.520000pt;}
.y286{bottom:740.671668pt;}
.yef{bottom:741.080000pt;}
.y8{bottom:745.560000pt;}
.y2bf{bottom:746.060275pt;}
.y252{bottom:747.160000pt;}
.yaf{bottom:748.120000pt;}
.y2ec{bottom:749.309096pt;}
.y19a{bottom:751.480000pt;}
.yc8{bottom:752.600000pt;}
.y285{bottom:754.494283pt;}
.y21c{bottom:754.520000pt;}
.y272{bottom:755.480000pt;}
.y245{bottom:757.080000pt;}
.y9c{bottom:759.640000pt;}
.y2be{bottom:761.135536pt;}
.y5b{bottom:764.120000pt;}
.y2eb{bottom:764.875669pt;}
.y22{bottom:765.720000pt;}
.y1f0{bottom:766.040000pt;}
.y106{bottom:766.680000pt;}
.y3e{bottom:767.000000pt;}
.y251{bottom:768.280000pt;}
.yee{bottom:768.600000pt;}
.y31e{bottom:769.903123pt;}
.y78{bottom:773.080000pt;}
.y2bd{bottom:776.475276pt;}
.y271{bottom:776.600000pt;}
.yc7{bottom:780.120000pt;}
.y2ea{bottom:780.173854pt;}
.y7{bottom:782.360000pt;}
.y244{bottom:784.600000pt;}
.y9b{bottom:787.160000pt;}
.y1bb{bottom:789.240000pt;}
.y250{bottom:789.400000pt;}
.y2bc{bottom:791.550537pt;}
.y5a{bottom:791.640000pt;}
.y21{bottom:793.240000pt;}
.y1ef{bottom:793.880000pt;}
.y2e9{bottom:795.740427pt;}
.yed{bottom:796.120000pt;}
.y270{bottom:797.720000pt;}
.y1c7{bottom:797.880000pt;}
.y77{bottom:800.600000pt;}
.y3d{bottom:802.840000pt;}
.y158{bottom:803.160000pt;}
.y2bb{bottom:806.890277pt;}
.y8e{bottom:807.640000pt;}
.y105{bottom:810.520000pt;}
.y243{bottom:812.120000pt;}
.y2e8{bottom:818.553509pt;}
.y6{bottom:819.160000pt;}
.y20{bottom:821.080000pt;}
.y1ee{bottom:821.400000pt;}
.y354{bottom:821.842667pt;}
.y2ba{bottom:821.965538pt;}
.y31d{bottom:823.267967pt;}
.yd9{bottom:823.640000pt;}
.y76{bottom:828.120000pt;}
.y9a{bottom:830.680000pt;}
.y24f{bottom:831.640000pt;}
.y26f{bottom:832.280000pt;}
.y2e7{bottom:834.120083pt;}
.y59{bottom:835.160000pt;}
.y2b9{bottom:837.305277pt;}
.y3c{bottom:838.360000pt;}
.y104{bottom:838.680000pt;}
.yec{bottom:839.640000pt;}
.yae{bottom:846.680000pt;}
.y1f{bottom:848.600000pt;}
.y1ed{bottom:848.920000pt;}
.y2e6{bottom:849.686656pt;}
.yc6{bottom:851.480000pt;}
.y26e{bottom:853.400000pt;}
.y75{bottom:855.640000pt;}
.y5{bottom:855.960000pt;}
.y58{bottom:862.680000pt;}
.y24e{bottom:866.200000pt;}
.yeb{bottom:867.480000pt;}
.y3b{bottom:873.880000pt;}
.y99{bottom:874.520000pt;}
.yc5{bottom:879.000000pt;}
.y74{bottom:883.480000pt;}
.y24d{bottom:887.320000pt;}
.y1e{bottom:889.560000pt;}
.y57{bottom:890.520000pt;}
.y4{bottom:892.440000pt;}
.yd8{bottom:895.000000pt;}
.y26d{bottom:895.640000pt;}
.y98{bottom:902.040000pt;}
.yc4{bottom:906.520000pt;}
.y24c{bottom:908.440000pt;}
.y3a{bottom:909.400000pt;}
.y73{bottom:911.000000pt;}
.y1d{bottom:917.080000pt;}
.y56{bottom:918.040000pt;}
.y11b{bottom:922.520000pt;}
.y3{bottom:926.040000pt;}
.y24b{bottom:929.560000pt;}
.y26c{bottom:930.200000pt;}
.y72{bottom:938.520000pt;}
.y1c{bottom:944.600000pt;}
.y39{bottom:944.920000pt;}
.y55{bottom:945.560000pt;}
.yc3{bottom:950.040000pt;}
.y24a{bottom:950.680000pt;}
.y26b{bottom:951.320000pt;}
.y1c6{bottom:953.400000pt;}
.y2{bottom:960.280000pt;}
.y71{bottom:966.040000pt;}
.y1b{bottom:972.440000pt;}
.y26a{bottom:972.760000pt;}
.y1a{bottom:991.320000pt;}
.y1{bottom:993.880000pt;}
.y51{bottom:1060.120000pt;}
.h63{height:10.336377pt;}
.h1b{height:15.360000pt;}
.h19{height:15.680000pt;}
.h5f{height:17.427642pt;}
.h36{height:17.600000pt;}
.hc{height:18.559987pt;}
.h21{height:20.160000pt;}
.h3c{height:20.800000pt;}
.h67{height:21.258117pt;}
.h20{height:21.440000pt;}
.h3f{height:22.080000pt;}
.h2f{height:22.399973pt;}
.h41{height:23.359973pt;}
.h42{height:23.360000pt;}
.h5e{height:25.278937pt;}
.h62{height:25.279186pt;}
.h64{height:27.975632pt;}
.h28{height:28.160000pt;}
.h11{height:29.336250pt;}
.h61{height:29.953202pt;}
.h1a{height:31.360000pt;}
.h4b{height:33.118231pt;}
.h33{height:33.277500pt;}
.h2b{height:33.345000pt;}
.h43{height:33.600000pt;}
.h55{height:34.447404pt;}
.h5c{height:34.533750pt;}
.h47{height:36.480000pt;}
.h4d{height:36.727353pt;}
.h3b{height:36.800000pt;}
.h2e{height:36.855000pt;}
.h4f{height:37.296663pt;}
.h54{height:37.798458pt;}
.h2c{height:39.040000pt;}
.h29{height:40.000000pt;}
.h65{height:40.288702pt;}
.h5b{height:41.973143pt;}
.h4a{height:42.334549pt;}
.h24{height:43.605000pt;}
.h10{height:43.812500pt;}
.h26{height:43.875000pt;}
.h23{height:43.913750pt;}
.h5a{height:44.292741pt;}
.h59{height:44.352197pt;}
.hb{height:44.437500pt;}
.h58{height:44.867685pt;}
.h3e{height:45.440000pt;}
.h57{height:46.017773pt;}
.hd{height:46.593750pt;}
.h13{height:47.360000pt;}
.h52{height:47.386825pt;}
.h50{height:47.675777pt;}
.h40{height:47.999973pt;}
.h12{height:48.195000pt;}
.h14{height:48.536250pt;}
.h30{height:54.400000pt;}
.h1d{height:54.720000pt;}
.h34{height:55.360000pt;}
.h1f{height:55.680000pt;}
.h2{height:57.375000pt;}
.h3a{height:57.600000pt;}
.ha{height:57.781250pt;}
.h1c{height:58.560000pt;}
.he{height:59.627500pt;}
.h38{height:61.760000pt;}
.h9{height:67.026250pt;}
.h18{height:67.519973pt;}
.h1e{height:69.120000pt;}
.h44{height:73.600000pt;}
.h46{height:74.560000pt;}
.h48{height:74.880000pt;}
.h35{height:75.199973pt;}
.h31{height:78.080000pt;}
.h15{height:80.640000pt;}
.h16{height:84.480000pt;}
.h27{height:86.052393pt;}
.h3d{height:94.719973pt;}
.h8{height:95.242500pt;}
.h7{height:96.000000pt;}
.h5d{height:99.133467pt;}
.h4{height:105.570000pt;}
.h17{height:108.480000pt;}
.h56{height:111.763026pt;}
.h3{height:114.750000pt;}
.h5{height:123.930000pt;}
.h39{height:139.200000pt;}
.h6{height:148.027500pt;}
.h45{height:150.720000pt;}
.h37{height:154.880000pt;}
.h32{height:162.560000pt;}
.h2a{height:194.560000pt;}
.h2d{height:256.320000pt;}
.h22{height:272.640000pt;}
.h25{height:356.160000pt;}
.h60{height:730.826800pt;}
.h51{height:828.825867pt;}
.h49{height:835.999960pt;}
.h66{height:867.599933pt;}
.h53{height:895.533307pt;}
.h4c{height:927.756800pt;}
.h4e{height:941.475733pt;}
.hf{height:1116.600000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.960000pt;}
.w3{width:17.600000pt;}
.w31{width:42.560000pt;}
.w28{width:45.440000pt;}
.w10{width:49.280000pt;}
.w12{width:50.880000pt;}
.w11{width:53.440000pt;}
.w2e{width:54.720000pt;}
.w1f{width:56.000000pt;}
.wf{width:56.960000pt;}
.wd{width:57.600000pt;}
.w1e{width:60.800000pt;}
.w29{width:65.280000pt;}
.we{width:67.200000pt;}
.w27{width:70.080000pt;}
.w30{width:75.520000pt;}
.w26{width:80.960000pt;}
.wb{width:86.720000pt;}
.w8{width:93.120000pt;}
.w7{width:104.960000pt;}
.w20{width:112.640000pt;}
.w5{width:118.080000pt;}
.w2f{width:128.000000pt;}
.w2a{width:129.920000pt;}
.w21{width:131.520000pt;}
.w25{width:151.680000pt;}
.w38{width:162.620533pt;}
.w32{width:164.160000pt;}
.w22{width:164.800000pt;}
.w2d{width:183.360000pt;}
.wa{width:184.000000pt;}
.w24{width:240.640000pt;}
.w6{width:243.840000pt;}
.w2c{width:282.240000pt;}
.w19{width:290.880000pt;}
.w1d{width:296.960000pt;}
.wc{width:338.880000pt;}
.w1a{width:342.720000pt;}
.w2b{width:389.440000pt;}
.w37{width:413.983467pt;}
.w14{width:464.320000pt;}
.w33{width:465.600000pt;}
.w15{width:465.920000pt;}
.w1c{width:499.840000pt;}
.w18{width:551.040000pt;}
.w9{width:564.480000pt;}
.w23{width:585.280000pt;}
.w17{width:585.920000pt;}
.w16{width:598.400000pt;}
.w13{width:607.680000pt;}
.w39{width:612.000000pt;}
.w1b{width:629.120000pt;}
.w34{width:633.266667pt;}
.w35{width:633.400000pt;}
.w36{width:633.546800pt;}
.w4{width:781.560000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x64{left:-56.893344pt;}
.x0{left:0.000000pt;}
.x5e{left:3.840128pt;}
.x1f{left:6.245440pt;}
.x32{left:8.505600pt;}
.x30{left:9.920000pt;}
.x2f{left:11.176704pt;}
.x17{left:12.160000pt;}
.x56{left:14.717760pt;}
.x22{left:15.706624pt;}
.x27{left:17.696832pt;}
.x55{left:19.223360pt;}
.x59{left:20.277760pt;}
.x50{left:21.765120pt;}
.x1d{left:23.011296pt;}
.x1a{left:24.724800pt;}
.x37{left:26.526720pt;}
.x58{left:27.693120pt;}
.x2c{left:28.582336pt;}
.x26{left:29.920128pt;}
.x57{left:32.320544pt;}
.x21{left:33.989152pt;}
.x1b{left:35.473504pt;}
.x52{left:36.370240pt;}
.x5c{left:37.512608pt;}
.x23{left:39.506752pt;}
.x28{left:40.953312pt;}
.x25{left:42.532160pt;}
.x48{left:43.686400pt;}
.x24{left:44.757760pt;}
.x69{left:46.860480pt;}
.x53{left:50.484608pt;}
.x5a{left:56.380160pt;}
.x39{left:60.705344pt;}
.x66{left:68.566400pt;}
.x77{left:76.387749pt;}
.x45{left:79.386400pt;}
.x49{left:81.760000pt;}
.x13{left:89.120128pt;}
.x6b{left:90.252475pt;}
.x2a{left:91.726528pt;}
.x18{left:100.960000pt;}
.x29{left:104.320000pt;}
.x38{left:105.600000pt;}
.x6c{left:109.400785pt;}
.x1{left:113.120128pt;}
.x7{left:114.924480pt;}
.x3f{left:116.042267pt;}
.x4d{left:118.764896pt;}
.x8{left:120.666336pt;}
.x63{left:122.880000pt;}
.x41{left:126.080000pt;}
.x6d{left:128.576210pt;}
.x14{left:132.053376pt;}
.x3c{left:135.096933pt;}
.xd{left:137.120128pt;}
.x44{left:140.823733pt;}
.x40{left:145.461067pt;}
.x4c{left:150.080000pt;}
.x2e{left:154.616000pt;}
.x5f{left:158.720000pt;}
.xe{left:160.319968pt;}
.x6e{left:167.146924pt;}
.x3a{left:168.160000pt;}
.x10{left:169.853504pt;}
.x6a{left:176.171325pt;}
.x6f{left:178.346911pt;}
.x76{left:182.986000pt;}
.x11{left:185.120128pt;}
.x4a{left:187.240000pt;}
.x68{left:198.400000pt;}
.x9{left:199.962592pt;}
.x3e{left:203.461200pt;}
.x16{left:207.520160pt;}
.x47{left:211.520000pt;}
.x75{left:218.667589pt;}
.x3d{left:220.046800pt;}
.x60{left:224.000000pt;}
.x42{left:230.599360pt;}
.x12{left:231.520160pt;}
.x1c{left:234.240000pt;}
.x43{left:241.760000pt;}
.x73{left:244.890747pt;}
.x54{left:246.080000pt;}
.xa{left:259.872064pt;}
.x46{left:263.113333pt;}
.x2{left:267.153312pt;}
.x2b{left:288.960000pt;}
.x19{left:305.120096pt;}
.x71{left:323.548081pt;}
.x3b{left:332.980133pt;}
.x74{left:340.770126pt;}
.xc{left:349.171520pt;}
.x4b{left:353.510267pt;}
.x2d{left:376.320000pt;}
.x4{left:379.059520pt;}
.x15{left:387.840000pt;}
.xf{left:392.320000pt;}
.x70{left:393.878961pt;}
.x6{left:396.386560pt;}
.x65{left:405.120000pt;}
.x4e{left:411.520000pt;}
.x31{left:434.880000pt;}
.x5d{left:436.160000pt;}
.x72{left:448.557351pt;}
.x67{left:461.120000pt;}
.x5{left:469.731520pt;}
.x4f{left:472.960000pt;}
.x1e{left:479.360000pt;}
.x33{left:502.720000pt;}
.x5b{left:516.040000pt;}
.x51{left:529.600000pt;}
.x3{left:552.451520pt;}
.x34{left:560.320000pt;}
.x20{left:585.600000pt;}
.x62{left:599.453760pt;}
.x35{left:610.240000pt;}
.x61{left:640.253440pt;}
.x36{left:664.320000pt;}
.xb{left:679.653440pt;}
}




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