
    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_de9baf2e977d76b708c2bc59.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.210000;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_0d9d8f9849eb784bd8a57e0b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_03e57241d2eded9670aee8f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_4a082e84e26138b6f4ca42e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_53c1c722616adbb0e9fdb591.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728000;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_53c7475ed7ba47a99428bfcc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_e2244d74e67ad6bc4b3ca7eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100000;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_60b551b446369f71d7b65fdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948000;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_f753c5c1bd3a93cbec4d3659.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d961d4b90ea16fb06215860.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.016113;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_a655b0261138d875e889b639.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_ba1914027e1db6e29bc6830e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.736000;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_3f38195762976f479305c18f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.734000;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_3f38195762976f479305c18f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.734000;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_3f38195762976f479305c18f.woff2')format("woff");}.fff{font-family:fff;line-height:0.734000;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_3f38195762976f479305c18f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.734000;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_3f38195762976f479305c18f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.734000;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_3f38195762976f479305c18f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.734000;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_0b7a5ee144ad4c23aa0fa5c0.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.210000;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_418e38055e22c574f4d0a67c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005371;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_da5b4100f104ff2e926dc169.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.733000;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_0b7a5ee144ad4c23aa0fa5c0.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.210000;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_7fc6635060c33088786b88eb.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.005371;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_f436b9e6068726d01eeb594a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.005371;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_bd1379c92a96086547ab21db.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_0b7a5ee144ad4c23aa0fa5c0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.210000;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_04050a18e358428f04fa276a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.005371;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_0b7a5ee144ad4c23aa0fa5c0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.210000;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_23943eae2b702a9ea2a3ee49.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.005371;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_8ed8ecb5bdeeabd7347c87ae.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.588000px;}
.ls2d{letter-spacing:-6.720000px;}
.ls4d{letter-spacing:-5.568000px;}
.ls1f{letter-spacing:-4.950000px;}
.ls34{letter-spacing:-4.920000px;}
.ls3e{letter-spacing:-4.560000px;}
.ls57{letter-spacing:-4.350000px;}
.ls36{letter-spacing:-4.020000px;}
.ls3f{letter-spacing:-3.840000px;}
.ls1d{letter-spacing:-3.600000px;}
.lsb{letter-spacing:-3.456000px;}
.ls38{letter-spacing:-3.360000px;}
.ls50{letter-spacing:-3.264000px;}
.ls49{letter-spacing:-3.168000px;}
.ls1c{letter-spacing:-3.000000px;}
.ls70{letter-spacing:-2.970000px;}
.ls2c{letter-spacing:-2.940000px;}
.ls53{letter-spacing:-2.880000px;}
.ls42{letter-spacing:-2.784000px;}
.ls3c{letter-spacing:-2.760000px;}
.ls20{letter-spacing:-2.550000px;}
.ls46{letter-spacing:-2.496000px;}
.ls52{letter-spacing:-2.304000px;}
.ls6b{letter-spacing:-2.214000px;}
.ls5{letter-spacing:-2.160000px;}
.ls58{letter-spacing:-2.016000px;}
.ls1b{letter-spacing:-1.950000px;}
.ls45{letter-spacing:-1.920000px;}
.ls41{letter-spacing:-1.728000px;}
.ls55{letter-spacing:-1.632000px;}
.ls16{letter-spacing:-1.620000px;}
.ls6f{letter-spacing:-1.584000px;}
.ls54{letter-spacing:-1.560000px;}
.ls51{letter-spacing:-1.536000px;}
.ls4b{letter-spacing:-1.500000px;}
.ls22{letter-spacing:-1.440000px;}
.ls67{letter-spacing:-1.404000px;}
.ls4{letter-spacing:-1.350000px;}
.ls4f{letter-spacing:-1.344000px;}
.ls68{letter-spacing:-1.296000px;}
.ls4a{letter-spacing:-1.248000px;}
.ls48{letter-spacing:-1.200000px;}
.lsd{letter-spacing:-1.188000px;}
.ls4c{letter-spacing:-1.152000px;}
.ls18{letter-spacing:-1.080000px;}
.ls4e{letter-spacing:-1.056000px;}
.ls1e{letter-spacing:-1.050000px;}
.lsf{letter-spacing:-1.026000px;}
.ls64{letter-spacing:-0.972000px;}
.ls25{letter-spacing:-0.960000px;}
.ls6d{letter-spacing:-0.918000px;}
.ls12{letter-spacing:-0.864000px;}
.ls62{letter-spacing:-0.810000px;}
.ls23{letter-spacing:-0.780000px;}
.ls40{letter-spacing:-0.768000px;}
.ls5e{letter-spacing:-0.756000px;}
.ls5a{letter-spacing:-0.720000px;}
.ls6c{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.648000px;}
.ls3b{letter-spacing:-0.624000px;}
.ls24{letter-spacing:-0.600000px;}
.ls66{letter-spacing:-0.594000px;}
.ls47{letter-spacing:-0.570000px;}
.ls5f{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.486000px;}
.ls2f{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.384000px;}
.ls17{letter-spacing:-0.378000px;}
.ls2a{letter-spacing:-0.336000px;}
.ls6a{letter-spacing:-0.324000px;}
.ls37{letter-spacing:-0.288000px;}
.ls65{letter-spacing:-0.270000px;}
.ls29{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.192000px;}
.ls60{letter-spacing:-0.162000px;}
.ls2b{letter-spacing:-0.144000px;}
.ls5c{letter-spacing:-0.108000px;}
.ls63{letter-spacing:-0.054000px;}
.ls3d{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.054000px;}
.ls33{letter-spacing:0.096000px;}
.lsa{letter-spacing:0.108000px;}
.ls3a{letter-spacing:0.144000px;}
.ls61{letter-spacing:0.162000px;}
.ls35{letter-spacing:0.192000px;}
.lse{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.240000px;}
.ls39{letter-spacing:0.241800px;}
.ls3{letter-spacing:0.270000px;}
.ls1a{letter-spacing:0.285000px;}
.ls2e{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.324000px;}
.ls56{letter-spacing:0.342000px;}
.ls8{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.480000px;}
.ls32{letter-spacing:0.528000px;}
.ls59{letter-spacing:0.570000px;}
.ls69{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.594000px;}
.ls15{letter-spacing:0.648000px;}
.ls44{letter-spacing:0.672000px;}
.ls5b{letter-spacing:0.702000px;}
.ls5d{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.810000px;}
.ls9{letter-spacing:0.864000px;}
.ls43{letter-spacing:0.960000px;}
.ls13{letter-spacing:1.026000px;}
.ls6e{letter-spacing:1.620000px;}
.ls1{letter-spacing:70.999800px;}
.ls2{letter-spacing:1525.544400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6e{word-spacing:-60.000000px;}
.ws6a{word-spacing:-48.576000px;}
.ws7b{word-spacing:-37.650000px;}
.ws21{word-spacing:-34.200000px;}
.ws7c{word-spacing:-25.650000px;}
.ws72{word-spacing:-25.632000px;}
.wsa2{word-spacing:-24.480000px;}
.ws9e{word-spacing:-24.288000px;}
.ws68{word-spacing:-24.000000px;}
.ws7a{word-spacing:-23.808000px;}
.ws69{word-spacing:-23.712000px;}
.ws22{word-spacing:-23.700000px;}
.ws65{word-spacing:-23.328000px;}
.ws67{word-spacing:-23.232000px;}
.wsa0{word-spacing:-23.040000px;}
.ws61{word-spacing:-22.656000px;}
.wsa6{word-spacing:-15.660000px;}
.ws6c{word-spacing:-15.600000px;}
.ws58{word-spacing:-15.000000px;}
.ws82{word-spacing:-14.796000px;}
.ws5d{word-spacing:-14.400000px;}
.wsa8{word-spacing:-14.202000px;}
.ws86{word-spacing:-14.094000px;}
.ws8c{word-spacing:-14.040000px;}
.ws8a{word-spacing:-13.986000px;}
.ws84{word-spacing:-13.932000px;}
.ws85{word-spacing:-13.878000px;}
.ws98{word-spacing:-13.824000px;}
.ws8b{word-spacing:-13.770000px;}
.ws87{word-spacing:-13.662000px;}
.ws83{word-spacing:-13.554000px;}
.ws8d{word-spacing:-13.509000px;}
.wsa9{word-spacing:-13.500000px;}
.ws9b{word-spacing:-13.446000px;}
.ws99{word-spacing:-13.392000px;}
.wsa5{word-spacing:-13.338000px;}
.ws89{word-spacing:-13.230000px;}
.ws88{word-spacing:-13.014000px;}
.ws20{word-spacing:-12.939000px;}
.ws1{word-spacing:-12.906000px;}
.ws44{word-spacing:-12.840000px;}
.ws2e{word-spacing:-12.660000px;}
.ws2c{word-spacing:-12.480000px;}
.ws6d{word-spacing:-12.369000px;}
.ws30{word-spacing:-12.240000px;}
.ws2d{word-spacing:-12.144000px;}
.ws45{word-spacing:-12.096000px;}
.ws43{word-spacing:-11.856000px;}
.ws47{word-spacing:-11.760000px;}
.ws48{word-spacing:-11.712000px;}
.ws32{word-spacing:-11.580000px;}
.ws46{word-spacing:-11.040000px;}
.ws31{word-spacing:-10.680000px;}
.ws2f{word-spacing:-8.880000px;}
.ws5a{word-spacing:-1.536000px;}
.ws3f{word-spacing:-1.152000px;}
.ws49{word-spacing:-1.104000px;}
.ws19{word-spacing:-1.026000px;}
.ws3c{word-spacing:-1.008000px;}
.ws42{word-spacing:-0.960000px;}
.ws4a{word-spacing:-0.912000px;}
.ws3a{word-spacing:-0.816000px;}
.ws1e{word-spacing:-0.810000px;}
.ws33{word-spacing:-0.768000px;}
.ws37{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.702000px;}
.ws41{word-spacing:-0.672000px;}
.ws92{word-spacing:-0.648000px;}
.ws38{word-spacing:-0.624000px;}
.ws1d{word-spacing:-0.594000px;}
.ws34{word-spacing:-0.576000px;}
.ws8e{word-spacing:-0.540000px;}
.ws36{word-spacing:-0.528000px;}
.ws94{word-spacing:-0.486000px;}
.ws2b{word-spacing:-0.480000px;}
.ws8f{word-spacing:-0.432000px;}
.ws96{word-spacing:-0.378000px;}
.ws79{word-spacing:-0.342000px;}
.ws1a{word-spacing:-0.324000px;}
.ws54{word-spacing:-0.312000px;}
.ws1f{word-spacing:-0.285000px;}
.ws2a{word-spacing:-0.240000px;}
.ws75{word-spacing:-0.234000px;}
.ws10{word-spacing:-0.162000px;}
.ws60{word-spacing:-0.120000px;}
.ws9f{word-spacing:-0.108000px;}
.ws59{word-spacing:-0.096000px;}
.ws62{word-spacing:-0.067200px;}
.ws51{word-spacing:-0.060000px;}
.ws91{word-spacing:-0.054000px;}
.ws4e{word-spacing:-0.030811px;}
.ws0{word-spacing:0.000000px;}
.ws4b{word-spacing:0.048000px;}
.ws97{word-spacing:0.054000px;}
.wsa1{word-spacing:0.108000px;}
.wsa3{word-spacing:0.162000px;}
.ws53{word-spacing:0.192000px;}
.ws90{word-spacing:0.216000px;}
.ws3e{word-spacing:0.240000px;}
.ws40{word-spacing:0.288000px;}
.ws3d{word-spacing:0.336000px;}
.wsa7{word-spacing:0.378000px;}
.ws35{word-spacing:0.384000px;}
.ws95{word-spacing:0.432000px;}
.ws3b{word-spacing:0.480000px;}
.ws93{word-spacing:0.540000px;}
.ws29{word-spacing:0.600000px;}
.ws63{word-spacing:0.672000px;}
.ws9a{word-spacing:0.756000px;}
.ws5c{word-spacing:0.768000px;}
.ws28{word-spacing:0.780000px;}
.wsc{word-spacing:0.810000px;}
.ws73{word-spacing:0.864000px;}
.ws39{word-spacing:0.960000px;}
.ws4f{word-spacing:1.026000px;}
.ws25{word-spacing:1.050000px;}
.ws64{word-spacing:1.056000px;}
.ws5e{word-spacing:1.152000px;}
.ws57{word-spacing:1.200000px;}
.ws5b{word-spacing:1.248000px;}
.ws76{word-spacing:1.344000px;}
.ws26{word-spacing:1.350000px;}
.ws6f{word-spacing:1.440000px;}
.ws71{word-spacing:1.500000px;}
.ws6b{word-spacing:1.536000px;}
.ws74{word-spacing:1.560000px;}
.ws78{word-spacing:1.632000px;}
.wsa4{word-spacing:1.674000px;}
.ws50{word-spacing:1.728000px;}
.ws55{word-spacing:1.920000px;}
.ws7e{word-spacing:1.950000px;}
.ws7f{word-spacing:2.016000px;}
.ws77{word-spacing:2.304000px;}
.ws56{word-spacing:2.496000px;}
.ws27{word-spacing:2.550000px;}
.wsaa{word-spacing:2.700000px;}
.ws52{word-spacing:2.784000px;}
.ws70{word-spacing:2.880000px;}
.ws23{word-spacing:3.000000px;}
.ws66{word-spacing:3.264000px;}
.ws24{word-spacing:3.600000px;}
.ws7d{word-spacing:4.350000px;}
.ws5f{word-spacing:5.568000px;}
.ws16{word-spacing:71.874000px;}
.ws12{word-spacing:72.036000px;}
.wse{word-spacing:74.466000px;}
.ws6{word-spacing:74.952000px;}
.ws15{word-spacing:708.696000px;}
.ws80{word-spacing:763.975800px;}
.ws9c{word-spacing:763.976400px;}
.wsab{word-spacing:794.702400px;}
.ws2{word-spacing:851.094000px;}
.ws81{word-spacing:862.800600px;}
.ws3{word-spacing:866.592000px;}
.ws4d{word-spacing:999.901200px;}
.ws9d{word-spacing:1075.128600px;}
.ws4{word-spacing:1205.496000px;}
.wsa{word-spacing:1296.432000px;}
.ws1c{word-spacing:1333.530000px;}
.ws17{word-spacing:1338.390000px;}
.ws14{word-spacing:1366.794000px;}
.ws18{word-spacing:1373.274000px;}
.ws8{word-spacing:1379.376000px;}
.ws13{word-spacing:1487.646000px;}
.ws11{word-spacing:1502.766000px;}
.ws4c{word-spacing:1573.777800px;}
.wsb{word-spacing:1660.608000px;}
.wsf{word-spacing:1701.216000px;}
.ws5{word-spacing:1744.794000px;}
.wsd{word-spacing:1764.180000px;}
.ws7{word-spacing:1944.216000px;}
.ws1b{word-spacing:2062.800000px;}
._17{margin-left:-2531.378400px;}
._16{margin-left:-889.296600px;}
._9{margin-left:-72.681600px;}
._19{margin-left:-42.581078px;}
._18{margin-left:-35.710181px;}
._1b{margin-left:-19.120200px;}
._15{margin-left:-13.200300px;}
._14{margin-left:-11.585400px;}
._1d{margin-left:-10.218300px;}
._1a{margin-left:-8.688000px;}
._12{margin-left:-7.338000px;}
._13{margin-left:-5.856000px;}
._1c{margin-left:-4.838400px;}
._1{margin-left:-3.825000px;}
._0{margin-left:-2.107500px;}
._a{margin-left:-1.013700px;}
._3{width:1.431000px;}
._5{width:3.133500px;}
._8{width:4.233000px;}
._11{width:5.769000px;}
._1e{width:7.725600px;}
._10{width:22.638300px;}
._1f{width:26.347500px;}
._b{width:36.936000px;}
._4{width:38.232000px;}
._2{width:49.950000px;}
._24{width:66.069300px;}
._7{width:72.360000px;}
._6{width:74.142000px;}
._9f{width:98.896500px;}
._6b{width:120.782700px;}
._76{width:155.053500px;}
._21{width:165.750000px;}
._4c{width:169.446900px;}
._32{width:199.359000px;}
._41{width:208.259700px;}
._95{width:218.507100px;}
._97{width:221.295300px;}
._6a{width:223.415700px;}
._9d{width:242.625300px;}
._9c{width:253.981200px;}
._51{width:256.584300px;}
._a1{width:260.594100px;}
._30{width:272.293800px;}
._4d{width:274.222800px;}
._55{width:283.768800px;}
._42{width:296.166300px;}
._37{width:305.614800px;}
._69{width:311.696700px;}
._94{width:316.662900px;}
._88{width:318.377100px;}
._73{width:327.984600px;}
._8d{width:331.037100px;}
._ad{width:332.252100px;}
._78{width:339.691800px;}
._2e{width:348.816300px;}
._4b{width:354.068100px;}
._2c{width:362.856300px;}
._7a{width:364.063800px;}
._ab{width:373.831200px;}
._66{width:383.012100px;}
._3d{width:385.675800px;}
._b4{width:396.193200px;}
._63{width:399.846300px;}
._b3{width:401.937600px;}
._ac{width:403.706400px;}
._4a{width:405.076500px;}
._92{width:409.119600px;}
._91{width:411.146700px;}
._84{width:414.318300px;}
._57{width:416.922600px;}
._52{width:418.018800px;}
._61{width:422.432100px;}
._af{width:429.018600px;}
._7c{width:430.341600px;}
._8a{width:432.099600px;}
._2b{width:433.489800px;}
._70{width:434.582100px;}
._46{width:436.746000px;}
._40{width:442.737600px;}
._2d{width:446.206800px;}
._58{width:447.407100px;}
._b0{width:448.944600px;}
._33{width:451.714800px;}
._2f{width:457.395600px;}
._47{width:466.015500px;}
._90{width:467.686200px;}
._54{width:470.330100px;}
._a0{width:473.057700px;}
._34{width:475.608300px;}
._22{width:476.619600px;}
._a6{width:480.511500px;}
._29{width:481.940100px;}
._4e{width:486.354300px;}
._8b{width:488.796600px;}
._3f{width:491.161800px;}
._6f{width:492.650700px;}
._85{width:493.980600px;}
._9e{width:495.872700px;}
._b2{width:501.219600px;}
._7e{width:505.592100px;}
._27{width:509.037600px;}
._83{width:511.303800px;}
._7b{width:512.491800px;}
._80{width:514.448100px;}
._44{width:516.865800px;}
._36{width:518.067600px;}
._5a{width:519.609300px;}
._74{width:520.699800px;}
._53{width:521.751300px;}
._50{width:524.335500px;}
._a4{width:528.810600px;}
._65{width:530.355600px;}
._20{width:531.483600px;}
._4f{width:532.848300px;}
._b1{width:535.184100px;}
._26{width:537.072600px;}
._59{width:538.451100px;}
._79{width:539.880600px;}
._28{width:540.906600px;}
._99{width:542.505600px;}
._72{width:543.838800px;}
._5e{width:547.929600px;}
._a2{width:549.656100px;}
._7d{width:550.925100px;}
._45{width:552.480600px;}
._23{width:553.814100px;}
._5d{width:555.702600px;}
._5f{width:556.717800px;}
._3c{width:559.023600px;}
._62{width:561.070200px;}
._49{width:564.074100px;}
._38{width:565.262100px;}
._8c{width:566.826600px;}
._31{width:569.204100px;}
._9a{width:572.124600px;}
._2a{width:573.130800px;}
._43{width:574.173600px;}
._3a{width:575.925600px;}
._67{width:577.659000px;}
._68{width:579.248100px;}
._48{width:580.353600px;}
._60{width:582.528300px;}
._87{width:584.436000px;}
._6d{width:586.038900px;}
._6e{width:589.631400px;}
._25{width:591.898800px;}
._75{width:594.204600px;}
._77{width:596.420100px;}
._8f{width:598.472700px;}
._ae{width:599.714100px;}
._56{width:602.574600px;}
._bf{width:604.020300px;}
._3e{width:605.641800px;}
._a7{width:609.002100px;}
._96{width:610.513200px;}
._98{width:615.832200px;}
._82{width:618.722100px;}
._5c{width:622.446600px;}
._a8{width:623.715600px;}
._86{width:625.728300px;}
._b5{width:630.723300px;}
._71{width:632.132700px;}
._81{width:633.450300px;}
._3b{width:639.928800px;}
._39{width:641.469300px;}
._35{width:643.258800px;}
._64{width:645.722100px;}
._b6{width:649.826100px;}
._a9{width:651.176100px;}
._5b{width:655.305600px;}
._9b{width:656.953200px;}
._7f{width:659.870100px;}
._8e{width:667.617600px;}
._be{width:670.776600px;}
._aa{width:672.614100px;}
._89{width:680.334600px;}
._c0{width:697.642200px;}
._93{width:702.555600px;}
._bc{width:734.550600px;}
._ba{width:737.574600px;}
._b9{width:740.652600px;}
._bd{width:759.525600px;}
._b8{width:764.844600px;}
._b7{width:767.598600px;}
._c{width:774.112500px;}
._bb{width:783.879600px;}
._6c{width:788.054400px;}
._a3{width:891.600300px;}
._a5{width:895.407300px;}
._d{width:1296.275100px;}
._e{width:1694.553600px;}
._f{width:1870.680900px;}
.fc11{color:rgb(0,0,0);}
.fc0{color:rgb(46,57,52);}
.fc1{color:rgb(255,255,255);}
.fc10{color:rgb(236,0,140);}
.fc3{color:rgb(79,178,228);}
.fc2{color:rgb(38,88,168);}
.fca{color:rgb(241,91,65);}
.fcc{color:rgb(68,73,70);}
.fce{color:rgb(19,24,25);}
.fcd{color:rgb(19,24,25);}
.fc4{color:rgb(84,193,173);}
.fcf{color:transparent;}
.fc5{color:rgb(130,196,73);}
.fc6{color:rgb(79,187,118);}
.fc7{color:rgb(250,168,25);}
.fc8{color:rgb(248,156,87);}
.fc9{color:rgb(198,106,62);}
.fcb{color:rgb(86,87,166);}
.fsa{font-size:30.811200px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:67.200000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs6{font-size:78.000000px;}
.fs3{font-size:96.000000px;}
.fs5{font-size:150.000000px;}
.fsb{font-size:192.000000px;}
.fs4{font-size:288.000000px;}
.ybd{bottom:-5.378400px;}
.y0{bottom:0.000000px;}
.yb9{bottom:0.001650px;}
.yb2{bottom:0.001800px;}
.yc1{bottom:0.002550px;}
.yc6{bottom:0.062700px;}
.yd7{bottom:0.076650px;}
.yd4{bottom:0.077250px;}
.yda{bottom:0.078150px;}
.yb6{bottom:0.078900px;}
.ybf{bottom:0.080250px;}
.yc9{bottom:0.086550px;}
.yd1{bottom:0.087000px;}
.ycf{bottom:0.087150px;}
.ycc{bottom:0.124500px;}
.yaf{bottom:0.129900px;}
.yc3{bottom:0.132600px;}
.yac{bottom:0.133350px;}
.y21f{bottom:27.841200px;}
.y135{bottom:30.696750px;}
.y24f{bottom:34.066200px;}
.y1c{bottom:41.291400px;}
.y21e{bottom:50.967150px;}
.y134{bottom:51.696750px;}
.y24e{bottom:55.066200px;}
.y133{bottom:72.696750px;}
.y21d{bottom:74.093100px;}
.y24d{bottom:76.066200px;}
.y210{bottom:83.540100px;}
.ya8{bottom:85.039350px;}
.y9d{bottom:87.219750px;}
.y1aa{bottom:90.640950px;}
.y24c{bottom:93.166200px;}
.y132{bottom:93.696750px;}
.y21c{bottom:97.219050px;}
.y22e{bottom:98.622300px;}
.y9c{bottom:99.969750px;}
.y14f{bottom:101.646150px;}
.y235{bottom:103.739400px;}
.y1ba{bottom:105.614400px;}
.y1a9{bottom:111.640950px;}
.ya7{bottom:112.642350px;}
.y9b{bottom:112.719750px;}
.y94{bottom:114.219750px;}
.y22d{bottom:119.622300px;}
.y21b{bottom:120.345000px;}
.y57{bottom:121.122300px;}
.y14e{bottom:122.646150px;}
.y1f4{bottom:124.656750px;}
.y234{bottom:124.739400px;}
.y9a{bottom:125.469750px;}
.y261{bottom:125.799750px;}
.yf5{bottom:126.614400px;}
.y93{bottom:126.969750px;}
.y258{bottom:127.122300px;}
.y20f{bottom:128.731500px;}
.y25a{bottom:129.404700px;}
.y362{bottom:129.488100px;}
.y33f{bottom:130.605600px;}
.y31d{bottom:131.013750px;}
.y1a8{bottom:132.640950px;}
.y99{bottom:138.219750px;}
.y2b3{bottom:139.062300px;}
.y92{bottom:139.719750px;}
.y22c{bottom:140.622300px;}
.y56{bottom:142.122300px;}
.y70{bottom:142.396950px;}
.y2fd{bottom:143.448750px;}
.y21a{bottom:143.470950px;}
.y14d{bottom:143.646150px;}
.y1f3{bottom:145.656750px;}
.y233{bottom:145.739400px;}
.yf4{bottom:147.614400px;}
.y257{bottom:148.122300px;}
.y160{bottom:149.648850px;}
.y20e{bottom:149.731500px;}
.y259{bottom:150.156750px;}
.y385{bottom:151.278150px;}
.y2dc{bottom:151.723350px;}
.y90{bottom:152.469750px;}
.y20b{bottom:153.614400px;}
.y1a7{bottom:153.640950px;}
.y3c5{bottom:153.674850px;}
.y360{bottom:154.893450px;}
.y31c{bottom:155.993850px;}
.y33e{bottom:156.010950px;}
.y2b2{bottom:157.062300px;}
.y2b4{bottom:157.132350px;}
.y6f{bottom:158.896950px;}
.y2fc{bottom:161.448750px;}
.y2fe{bottom:161.518800px;}
.y22b{bottom:161.622300px;}
.y55{bottom:163.122300px;}
.y14c{bottom:164.646150px;}
.y8f{bottom:165.219750px;}
.y260{bottom:166.299750px;}
.y19d{bottom:166.396800px;}
.y219{bottom:166.597050px;}
.y1f2{bottom:166.656750px;}
.y232{bottom:166.739400px;}
.yf3{bottom:168.614400px;}
.y256{bottom:169.122300px;}
.y1b{bottom:170.078850px;}
.y15f{bottom:170.648850px;}
.y20d{bottom:170.731500px;}
.y3c4{bottom:171.604800px;}
.y35f{bottom:172.893450px;}
.y361{bottom:172.963500px;}
.y20a{bottom:174.614400px;}
.y1a6{bottom:174.640950px;}
.y384{bottom:176.683500px;}
.y2da{bottom:177.128700px;}
.y8e{bottom:177.969750px;}
.y6e{bottom:179.648850px;}
.y31b{bottom:180.974100px;}
.y33d{bottom:181.416300px;}
.y2b1{bottom:182.467650px;}
.y22a{bottom:182.622300px;}
.y54{bottom:184.122300px;}
.y14b{bottom:185.646150px;}
.y2fa{bottom:186.854100px;}
.y19c{bottom:187.396800px;}
.y218{bottom:187.597050px;}
.y1cf{bottom:187.656750px;}
.y231{bottom:187.739400px;}
.yf2{bottom:189.614400px;}
.y255{bottom:190.122300px;}
.y8d{bottom:190.719750px;}
.y1a{bottom:191.078850px;}
.y15e{bottom:191.648850px;}
.y20c{bottom:191.731500px;}
.y2d9{bottom:195.128700px;}
.y2db{bottom:195.198750px;}
.y209{bottom:195.614400px;}
.y1a5{bottom:195.640950px;}
.ya6{bottom:196.819650px;}
.y3c3{bottom:197.010150px;}
.y6d{bottom:200.400900px;}
.y383{bottom:202.088850px;}
.y8c{bottom:203.469750px;}
.y229{bottom:203.622300px;}
.y2f9{bottom:204.854100px;}
.y2fb{bottom:204.924150px;}
.y53{bottom:205.122300px;}
.y31a{bottom:205.954200px;}
.y14a{bottom:206.646150px;}
.y25f{bottom:206.799750px;}
.y33c{bottom:206.821650px;}
.y34{bottom:207.484350px;}
.y2b0{bottom:207.873000px;}
.y19b{bottom:208.396800px;}
.y1ce{bottom:208.656750px;}
.y230{bottom:208.739400px;}
.yf1{bottom:210.614400px;}
.y217{bottom:210.723000px;}
.y254{bottom:211.122300px;}
.y19{bottom:212.078850px;}
.y15d{bottom:212.648850px;}
.y16f{bottom:212.731500px;}
.y8b{bottom:216.219750px;}
.y208{bottom:216.614400px;}
.y1a4{bottom:216.640950px;}
.y35e{bottom:217.432650px;}
.y3c2{bottom:220.165500px;}
.y2d8{bottom:220.534050px;}
.y228{bottom:224.622300px;}
.y52{bottom:226.122300px;}
.y382{bottom:227.494200px;}
.y33{bottom:228.484350px;}
.y95{bottom:228.969750px;}
.y19a{bottom:229.396800px;}
.y1cd{bottom:229.656750px;}
.y22f{bottom:229.739400px;}
.y2f8{bottom:230.259450px;}
.y319{bottom:230.934450px;}
.yf0{bottom:231.614400px;}
.y253{bottom:232.122300px;}
.y33a{bottom:232.227150px;}
.y18{bottom:233.078850px;}
.y2af{bottom:233.278350px;}
.y15c{bottom:233.648850px;}
.y16e{bottom:233.731500px;}
.y216{bottom:233.848950px;}
.yd3{bottom:236.371500px;}
.yd2{bottom:236.448750px;}
.y207{bottom:237.614400px;}
.y1a3{bottom:237.640950px;}
.y3c1{bottom:238.095450px;}
.y8a{bottom:241.719750px;}
.y149{bottom:244.654050px;}
.y227{bottom:245.622300px;}
.y2d7{bottom:245.939400px;}
.y51{bottom:247.122300px;}
.y25e{bottom:247.299750px;}
.y1b9{bottom:248.622300px;}
.y32{bottom:249.484350px;}
.y339{bottom:250.227150px;}
.y33b{bottom:250.297200px;}
.y199{bottom:250.396800px;}
.y380{bottom:250.649550px;}
.y1cc{bottom:250.656750px;}
.y1f1{bottom:250.739400px;}
.yef{bottom:252.614400px;}
.y252{bottom:253.122300px;}
.y89{bottom:254.469750px;}
.y15b{bottom:254.648850px;}
.y16d{bottom:254.731500px;}
.y2f7{bottom:255.664800px;}
.y318{bottom:255.914550px;}
.y215{bottom:256.974900px;}
.y24b{bottom:258.402000px;}
.y1a2{bottom:258.640950px;}
.y2ae{bottom:258.683700px;}
.y3c0{bottom:261.250800px;}
.y148{bottom:265.654050px;}
.y226{bottom:266.622300px;}
.y88{bottom:267.219750px;}
.y50{bottom:268.122300px;}
.y37f{bottom:268.579500px;}
.y381{bottom:268.649550px;}
.y31{bottom:270.484350px;}
.ydb{bottom:270.717300px;}
.y2d6{bottom:271.344750px;}
.y198{bottom:271.396800px;}
.y1cb{bottom:271.656750px;}
.y1f0{bottom:271.739400px;}
.yee{bottom:273.614400px;}
.y251{bottom:274.122300px;}
.y17{bottom:275.078850px;}
.y206{bottom:275.622300px;}
.y338{bottom:275.632500px;}
.y15a{bottom:275.648850px;}
.y16c{bottom:275.731500px;}
.y3bf{bottom:279.180600px;}
.y1a1{bottom:279.640950px;}
.y87{bottom:279.969750px;}
.y214{bottom:280.101000px;}
.y317{bottom:280.894650px;}
.ya5{bottom:280.996950px;}
.y2f6{bottom:281.070150px;}
.y2ad{bottom:284.089050px;}
.y35d{bottom:284.855700px;}
.y25d{bottom:287.799750px;}
.y4f{bottom:289.122300px;}
.y30{bottom:291.484350px;}
.y37d{bottom:291.734850px;}
.y197{bottom:292.396800px;}
.y1ca{bottom:292.656750px;}
.y86{bottom:292.719750px;}
.y1ef{bottom:292.739400px;}
.yed{bottom:294.614400px;}
.y250{bottom:295.122300px;}
.y1b8{bottom:295.134000px;}
.y16{bottom:296.078850px;}
.y131{bottom:296.139000px;}
.y205{bottom:296.622300px;}
.y159{bottom:296.648850px;}
.y16b{bottom:296.731500px;}
.y2d5{bottom:296.750100px;}
.y12b{bottom:300.640950px;}
.y337{bottom:301.037850px;}
.y213{bottom:303.226950px;}
.y3be{bottom:304.585950px;}
.y85{bottom:305.469750px;}
.y35c{bottom:305.855700px;}
.y316{bottom:305.874900px;}
.y2f4{bottom:306.475500px;}
.y39d{bottom:307.344600px;}
.y1c6{bottom:308.634000px;}
.y2ac{bottom:309.494400px;}
.y37c{bottom:309.664800px;}
.y37e{bottom:309.734850px;}
.y4e{bottom:310.122300px;}
.y147{bottom:312.165750px;}
.y2f{bottom:312.484350px;}
.y225{bottom:313.134000px;}
.y196{bottom:313.396800px;}
.y1c9{bottom:313.656750px;}
.y1ee{bottom:313.739400px;}
.y1da{bottom:314.270850px;}
.yec{bottom:315.614400px;}
.y24a{bottom:316.134000px;}
.y158{bottom:317.648850px;}
.y16a{bottom:317.731500px;}
.y84{bottom:318.219750px;}
.y1b7{bottom:320.634000px;}
.y12a{bottom:321.640950px;}
.y2d4{bottom:322.155450px;}
.y2f3{bottom:324.475500px;}
.y2f5{bottom:324.545550px;}
.y212{bottom:326.352900px;}
.y336{bottom:326.443200px;}
.yab{bottom:327.340500px;}
.yaa{bottom:327.473850px;}
.y3bd{bottom:327.741300px;}
.y25c{bottom:328.299750px;}
.yd0{bottom:328.984500px;}
.yba{bottom:329.071500px;}
.y315{bottom:330.855000px;}
.y4d{bottom:331.122300px;}
.y39c{bottom:332.750100px;}
.y1c5{bottom:334.134000px;}
.y195{bottom:334.396800px;}
.y1c8{bottom:334.656750px;}
.y1ed{bottom:334.739400px;}
.y3ac{bottom:334.805550px;}
.y2ab{bottom:334.899900px;}
.y37b{bottom:335.070150px;}
.y1d9{bottom:335.270850px;}
.yeb{bottom:336.614400px;}
.y146{bottom:337.665750px;}
.y15{bottom:338.078850px;}
.y224{bottom:338.634000px;}
.y157{bottom:338.648850px;}
.y169{bottom:338.731500px;}
.y91{bottom:341.436000px;}
.y249{bottom:341.634000px;}
.y129{bottom:342.640950px;}
.y204{bottom:343.134000px;}
.y211{bottom:343.452900px;}
.y3bc{bottom:345.671250px;}
.y1b6{bottom:346.134000px;}
.y2d3{bottom:347.560800px;}
.y2f2{bottom:349.880850px;}
.y4c{bottom:352.122300px;}
.y2e{bottom:354.484350px;}
.y194{bottom:355.396800px;}
.y1c7{bottom:355.656750px;}
.y1ec{bottom:355.739400px;}
.y1d8{bottom:356.270850px;}
.yea{bottom:357.614400px;}
.y39b{bottom:358.155300px;}
.y180{bottom:358.889850px;}
.y14{bottom:359.078850px;}
.y1c4{bottom:359.634000px;}
.y156{bottom:359.648850px;}
.y168{bottom:359.731500px;}
.y3ab{bottom:360.210900px;}
.y2a9{bottom:360.305100px;}
.y37a{bottom:360.475500px;}
.y145{bottom:363.165750px;}
.y128{bottom:363.640950px;}
.y223{bottom:364.134000px;}
.ya4{bottom:365.174250px;}
.y248{bottom:367.134000px;}
.y203{bottom:368.634000px;}
.y25b{bottom:368.799750px;}
.y335{bottom:370.982400px;}
.y3bb{bottom:371.076600px;}
.y1b5{bottom:371.634000px;}
.y35b{bottom:372.871200px;}
.y2d1{bottom:372.966150px;}
.y4b{bottom:373.122300px;}
.y314{bottom:374.969100px;}
.y2f0{bottom:375.286200px;}
.y2d{bottom:375.484350px;}
.y193{bottom:376.396800px;}
.y6c{bottom:376.656750px;}
.y1eb{bottom:376.739400px;}
.y1d7{bottom:377.270850px;}
.y2a8{bottom:378.305100px;}
.y2aa{bottom:378.375300px;}
.ye9{bottom:378.614400px;}
.y13{bottom:380.078850px;}
.y155{bottom:380.648850px;}
.y167{bottom:380.731500px;}
.y39a{bottom:383.560800px;}
.y17f{bottom:384.389850px;}
.y127{bottom:384.640950px;}
.y1c3{bottom:385.134000px;}
.y377{bottom:385.880700px;}
.y379{bottom:385.950900px;}
.y144{bottom:388.665750px;}
.y222{bottom:389.634000px;}
.y2d0{bottom:390.966150px;}
.y2d2{bottom:391.036350px;}
.y247{bottom:392.634000px;}
.y2ef{bottom:393.286200px;}
.y2f1{bottom:393.356250px;}
.y4a{bottom:394.122300px;}
.y202{bottom:394.134000px;}
.y3ba{bottom:396.481950px;}
.y1b4{bottom:397.134000px;}
.y192{bottom:397.396800px;}
.y6b{bottom:397.656750px;}
.y1ea{bottom:397.739400px;}
.y35a{bottom:397.851450px;}
.y1d6{bottom:398.270850px;}
.ye8{bottom:399.614400px;}
.y12{bottom:401.078850px;}
.y154{bottom:401.648850px;}
.y166{bottom:401.731500px;}
.y2a6{bottom:403.710600px;}
.y376{bottom:403.880700px;}
.y378{bottom:403.950900px;}
.y3aa{bottom:404.750100px;}
.y126{bottom:405.640950px;}
.y399{bottom:408.966000px;}
.y17e{bottom:409.889850px;}
.y1c2{bottom:410.634000px;}
.y28b{bottom:412.215450px;}
.ycb{bottom:412.750500px;}
.yca{bottom:412.875000px;}
.y143{bottom:414.165750px;}
.y49{bottom:415.122300px;}
.y221{bottom:415.134000px;}
.y2cf{bottom:416.371500px;}
.y2c{bottom:417.484350px;}
.y246{bottom:418.134000px;}
.y191{bottom:418.396800px;}
.y6a{bottom:418.656750px;}
.y2ed{bottom:418.691550px;}
.y1e9{bottom:418.739400px;}
.y1d5{bottom:419.270850px;}
.y201{bottom:419.634000px;}
.y3b9{bottom:419.637300px;}
.ye7{bottom:420.614400px;}
.y2a5{bottom:421.710600px;}
.y2a7{bottom:421.780650px;}
.y11{bottom:422.078850px;}
.y1b3{bottom:422.634000px;}
.y153{bottom:422.648850px;}
.y165{bottom:422.731500px;}
.y358{bottom:422.831550px;}
.y125{bottom:426.640950px;}
.y375{bottom:429.286200px;}
.y3b{bottom:429.921750px;}
.y28a{bottom:430.145400px;}
.y28c{bottom:430.215450px;}
.y115{bottom:431.634000px;}
.y398{bottom:434.371500px;}
.yc0{bottom:434.400000px;}
.yb3{bottom:434.402550px;}
.y17d{bottom:435.389850px;}
.y48{bottom:436.122300px;}
.y1c1{bottom:436.134000px;}
.y2ec{bottom:436.691550px;}
.y2ee{bottom:436.761600px;}
.y3b8{bottom:437.567100px;}
.y334{bottom:438.405450px;}
.y2b{bottom:438.484350px;}
.y190{bottom:439.396800px;}
.y69{bottom:439.656750px;}
.y142{bottom:439.665750px;}
.y1e8{bottom:439.739400px;}
.y1d4{bottom:440.270850px;}
.y220{bottom:440.634000px;}
.y357{bottom:440.831550px;}
.y359{bottom:440.901600px;}
.ye6{bottom:441.614400px;}
.y2ce{bottom:441.776850px;}
.y313{bottom:442.392150px;}
.y10{bottom:443.078850px;}
.y245{bottom:443.634000px;}
.y152{bottom:443.648850px;}
.y164{bottom:443.731500px;}
.y200{bottom:445.134000px;}
.y2a3{bottom:447.115950px;}
.y124{bottom:447.640950px;}
.y1b2{bottom:448.134000px;}
.ya3{bottom:449.351550px;}
.y288{bottom:453.300750px;}
.y374{bottom:454.691550px;}
.y114{bottom:457.134000px;}
.y2a{bottom:459.484350px;}
.y397{bottom:459.776850px;}
.y18f{bottom:460.396800px;}
.y68{bottom:460.656750px;}
.y1e7{bottom:460.739400px;}
.y17c{bottom:460.889850px;}
.y1d3{bottom:461.270850px;}
.y1c0{bottom:461.634000px;}
.y2eb{bottom:462.096900px;}
.ye5{bottom:462.614400px;}
.y355{bottom:463.561650px;}
.y151{bottom:464.648850px;}
.y163{bottom:464.731500px;}
.y2a2{bottom:465.115950px;}
.y141{bottom:465.165750px;}
.y2a4{bottom:465.186000px;}
.y1e4{bottom:466.134000px;}
.yb8{bottom:466.852500px;}
.yb7{bottom:466.854150px;}
.y2cd{bottom:467.182200px;}
.y3d6{bottom:468.188100px;}
.y123{bottom:468.640950px;}
.y244{bottom:469.134000px;}
.y3a{bottom:470.421750px;}
.y1ff{bottom:470.634000px;}
.y287{bottom:471.230550px;}
.y289{bottom:471.300750px;}
.y3a9{bottom:472.173150px;}
.y1b1{bottom:473.634000px;}
.yce{bottom:476.220000px;}
.ycd{bottom:476.307150px;}
.y373{bottom:480.096900px;}
.y29{bottom:480.484350px;}
.y354{bottom:481.491600px;}
.y356{bottom:481.561650px;}
.y67{bottom:481.656750px;}
.y1e6{bottom:481.739400px;}
.y3b7{bottom:482.106300px;}
.y1d2{bottom:482.270850px;}
.y47{bottom:482.634000px;}
.ye4{bottom:483.614400px;}
.yf{bottom:485.078850px;}
.y396{bottom:485.182200px;}
.y150{bottom:485.648850px;}
.y162{bottom:485.731500px;}
.y17b{bottom:486.389850px;}
.y1bf{bottom:487.134000px;}
.y2ea{bottom:487.502250px;}
.y122{bottom:489.640950px;}
.y2a0{bottom:490.521300px;}
.y140{bottom:490.665750px;}
.y1e3{bottom:491.634000px;}
.y2cc{bottom:492.587550px;}
.y3d5{bottom:493.593450px;}
.y285{bottom:494.386050px;}
.y243{bottom:494.634000px;}
.y1fe{bottom:496.134000px;}
.y18e{bottom:498.404700px;}
.y1b0{bottom:499.134000px;}
.y28{bottom:501.484350px;}
.y66{bottom:502.656750px;}
.y1e5{bottom:502.739400px;}
.y1d1{bottom:503.270850px;}
.y352{bottom:504.221700px;}
.ye3{bottom:504.614400px;}
.y333{bottom:505.420950px;}
.y372{bottom:505.502250px;}
.ye{bottom:506.078850px;}
.y1bb{bottom:506.648850px;}
.y46{bottom:508.134000px;}
.y29f{bottom:508.521300px;}
.y2a1{bottom:508.591350px;}
.y312{bottom:509.407500px;}
.y394{bottom:510.587550px;}
.y121{bottom:510.640950px;}
.y39{bottom:510.921750px;}
.y17a{bottom:511.889850px;}
.y284{bottom:512.315850px;}
.y286{bottom:512.386050px;}
.y1be{bottom:512.634000px;}
.y2e9{bottom:512.907600px;}
.y13f{bottom:516.165750px;}
.y1e2{bottom:517.134000px;}
.y2cb{bottom:517.992900px;}
.y3d4{bottom:518.998650px;}
.y242{bottom:520.134000px;}
.y1fd{bottom:521.634000px;}
.y351{bottom:522.151650px;}
.y353{bottom:522.221700px;}
.y27{bottom:522.484350px;}
.y111{bottom:522.593250px;}
.y65{bottom:523.656750px;}
.y161{bottom:523.739400px;}
.y1d0{bottom:524.270850px;}
.y1af{bottom:524.634000px;}
.yb5{bottom:525.990000px;}
.yb4{bottom:526.068900px;}
.y105{bottom:526.585350px;}
.y98{bottom:526.690500px;}
.y23f{bottom:526.906200px;}
.yc2{bottom:527.554500px;}
.y1a0{bottom:527.648850px;}
.ya9{bottom:527.687100px;}
.y393{bottom:528.587550px;}
.y395{bottom:528.657600px;}
.y332{bottom:530.401050px;}
.y371{bottom:530.907600px;}
.ybc{bottom:533.065500px;}
.ya2{bottom:533.528700px;}
.y45{bottom:533.634000px;}
.y29e{bottom:533.926500px;}
.y311{bottom:534.812850px;}
.y179{bottom:537.389850px;}
.y282{bottom:537.721200px;}
.yc8{bottom:538.020000px;}
.yc7{bottom:538.106550px;}
.y1bd{bottom:538.134000px;}
.y2e8{bottom:538.312800px;}
.y3a8{bottom:539.188500px;}
.y97{bottom:539.440500px;}
.y18d{bottom:540.404700px;}
.ye2{bottom:542.622300px;}
.y1e1{bottom:542.634000px;}
.y2ca{bottom:543.398100px;}
.y26{bottom:543.484350px;}
.y110{bottom:543.593250px;}
.y3d3{bottom:544.404000px;}
.y64{bottom:544.656750px;}
.y241{bottom:545.634000px;}
.y350{bottom:547.131750px;}
.y1fc{bottom:547.134000px;}
.y104{bottom:547.585350px;}
.y23e{bottom:547.906200px;}
.yd{bottom:548.078850px;}
.y120{bottom:548.648850px;}
.y3b6{bottom:549.529350px;}
.y1ae{bottom:550.134000px;}
.y38{bottom:551.421750px;}
.y96{bottom:552.190500px;}
.y391{bottom:553.992900px;}
.y331{bottom:555.381300px;}
.y281{bottom:555.721200px;}
.y283{bottom:555.791400px;}
.y370{bottom:556.312950px;}
.y44{bottom:559.134000px;}
.y29d{bottom:559.332000px;}
.ybe{bottom:559.545000px;}
.ybb{bottom:559.625250px;}
.y310{bottom:560.218200px;}
.y18c{bottom:561.404700px;}
.y178{bottom:562.889850px;}
.y1bc{bottom:563.634000px;}
.y2e7{bottom:563.718150px;}
.y25{bottom:564.484350px;}
.y10f{bottom:564.593250px;}
.y3a7{bottom:564.593850px;}
.y81{bottom:564.940500px;}
.y63{bottom:565.656750px;}
.yb1{bottom:566.968500px;}
.yb0{bottom:566.970300px;}
.y1e0{bottom:568.134000px;}
.y103{bottom:568.585350px;}
.y2c9{bottom:568.803450px;}
.y23d{bottom:568.906200px;}
.yc{bottom:569.078850px;}
.y19f{bottom:569.648850px;}
.y3d2{bottom:569.809350px;}
.y390{bottom:571.992900px;}
.y392{bottom:572.062950px;}
.y34f{bottom:572.112000px;}
.y1fb{bottom:572.634000px;}
.y13e{bottom:573.177600px;}
.yc5{bottom:574.263000px;}
.yc4{bottom:574.325700px;}
.y1ad{bottom:575.634000px;}
.y80{bottom:577.690500px;}
.y36e{bottom:579.468300px;}
.y330{bottom:580.361400px;}
.y27e{bottom:581.126550px;}
.y280{bottom:581.196750px;}
.y18b{bottom:582.404700px;}
.y43{bottom:584.634000px;}
.y29c{bottom:584.737350px;}
.yd9{bottom:584.821500px;}
.yd8{bottom:584.899650px;}
.y24{bottom:585.484350px;}
.y10e{bottom:585.593250px;}
.y30f{bottom:585.623700px;}
.y62{bottom:586.656750px;}
.y177{bottom:588.389850px;}
.ye1{bottom:589.134000px;}
.y102{bottom:589.585350px;}
.y23c{bottom:589.906200px;}
.y3a6{bottom:589.999200px;}
.y7f{bottom:590.440500px;}
.y11f{bottom:590.648850px;}
.y37{bottom:591.921750px;}
.y1df{bottom:593.634000px;}
.y2c8{bottom:594.208800px;}
.y3d1{bottom:595.214700px;}
.y34e{bottom:597.092100px;}
.y36d{bottom:597.398100px;}
.y38f{bottom:597.398250px;}
.y36f{bottom:597.468300px;}
.y1fa{bottom:598.134000px;}
.y27d{bottom:599.126550px;}
.y27f{bottom:599.196750px;}
.y240{bottom:602.645850px;}
.y13d{bottom:603.177600px;}
.y7e{bottom:603.190500px;}
.y18a{bottom:603.404700px;}
.y32f{bottom:605.341500px;}
.y23{bottom:606.484350px;}
.y10d{bottom:606.593250px;}
.y61{bottom:607.656750px;}
.y2e6{bottom:608.257350px;}
.y42{bottom:610.134000px;}
.y29b{bottom:610.142700px;}
.y23b{bottom:610.906200px;}
.y30e{bottom:611.029050px;}
.yb{bottom:611.078850px;}
.y11e{bottom:611.648850px;}
.ye0{bottom:614.634000px;}
.y3a5{bottom:615.404550px;}
.y7d{bottom:615.940500px;}
.y3b5{bottom:616.544850px;}
.ya1{bottom:617.706000px;}
.y1de{bottom:619.134000px;}
.y34d{bottom:622.072200px;}
.y27b{bottom:622.282050px;}
.y36c{bottom:622.803600px;}
.y1f9{bottom:623.634000px;}
.y189{bottom:624.404700px;}
.y22{bottom:627.484350px;}
.y10c{bottom:627.593250px;}
.y32d{bottom:628.071600px;}
.y60{bottom:628.656750px;}
.y7c{bottom:628.690500px;}
.y101{bottom:631.585350px;}
.y23a{bottom:631.906200px;}
.ya{bottom:632.078850px;}
.y36{bottom:632.421750px;}
.y1ac{bottom:632.645850px;}
.y11d{bottom:632.648850px;}
.y13c{bottom:633.177600px;}
.y29a{bottom:635.548050px;}
.y41{bottom:635.634000px;}
.y30d{bottom:636.434400px;}
.y2c7{bottom:638.748000px;}
.y3d0{bottom:639.753900px;}
.ydf{bottom:640.134000px;}
.y27a{bottom:640.211850px;}
.y27c{bottom:640.282050px;}
.y3a4{bottom:640.809900px;}
.y83{bottom:641.440500px;}
.y3b4{bottom:641.950200px;}
.y1dd{bottom:644.634000px;}
.y176{bottom:645.401700px;}
.y188{bottom:645.404700px;}
.y32c{bottom:646.001550px;}
.y32e{bottom:646.071600px;}
.y34c{bottom:647.052450px;}
.y36b{bottom:648.208950px;}
.y21{bottom:648.484350px;}
.y10b{bottom:648.593250px;}
.y1f8{bottom:649.134000px;}
.y130{bottom:649.656750px;}
.y100{bottom:652.585350px;}
.y239{bottom:652.906200px;}
.y9{bottom:653.078850px;}
.y11c{bottom:653.648850px;}
.y7b{bottom:654.190500px;}
.y298{bottom:660.953400px;}
.y30c{bottom:661.839600px;}
.y1ab{bottom:662.645850px;}
.y13b{bottom:663.177600px;}
.y278{bottom:665.617200px;}
.yde{bottom:665.634000px;}
.y3a3{bottom:666.215250px;}
.y187{bottom:666.404700px;}
.y7a{bottom:666.940500px;}
.y3b3{bottom:667.355550px;}
.y10a{bottom:669.593250px;}
.y1dc{bottom:670.134000px;}
.y5f{bottom:670.656750px;}
.y32b{bottom:670.981800px;}
.y369{bottom:671.364300px;}
.y34b{bottom:672.032550px;}
.yff{bottom:673.585350px;}
.y38e{bottom:673.614300px;}
.y8{bottom:674.078850px;}
.y1f7{bottom:674.634000px;}
.y11b{bottom:674.648850px;}
.y175{bottom:675.401700px;}
.y2e5{bottom:675.680550px;}
.y238{bottom:676.032150px;}
.y297{bottom:678.953400px;}
.y299{bottom:679.023450px;}
.y79{bottom:679.690500px;}
.y277{bottom:683.617200px;}
.y279{bottom:683.687400px;}
.y30a{bottom:687.245100px;}
.y186{bottom:687.404700px;}
.y368{bottom:689.294100px;}
.y36a{bottom:689.364300px;}
.y20{bottom:690.484350px;}
.y109{bottom:690.593250px;}
.y5e{bottom:691.656750px;}
.y78{bottom:692.440500px;}
.y40{bottom:692.645850px;}
.y3b2{bottom:692.760900px;}
.y237{bottom:693.132300px;}
.y13a{bottom:693.177600px;}
.yfe{bottom:694.585350px;}
.y1db{bottom:695.634000px;}
.y11a{bottom:695.648850px;}
.y32a{bottom:695.961900px;}
.y34a{bottom:697.012800px;}
.y38d{bottom:699.019650px;}
.y1f6{bottom:700.134000px;}
.ya0{bottom:701.883300px;}
.y295{bottom:704.358750px;}
.y77{bottom:705.190500px;}
.y309{bottom:705.245100px;}
.y30b{bottom:705.315150px;}
.y174{bottom:705.401700px;}
.y2c6{bottom:706.171200px;}
.y275{bottom:706.772550px;}
.y3cf{bottom:707.177100px;}
.y236{bottom:710.232150px;}
.y3a2{bottom:710.754450px;}
.y108{bottom:711.593250px;}
.y5d{bottom:712.656750px;}
.y367{bottom:714.699450px;}
.yfd{bottom:715.585350px;}
.y7{bottom:716.078850px;}
.y119{bottom:716.648850px;}
.y82{bottom:717.940500px;}
.y3b1{bottom:718.166250px;}
.y329{bottom:720.942150px;}
.y349{bottom:721.992900px;}
.y294{bottom:722.358750px;}
.y296{bottom:722.428950px;}
.y3f{bottom:722.645850px;}
.y139{bottom:723.177600px;}
.y38c{bottom:724.425000px;}
.y274{bottom:724.702500px;}
.y276{bottom:724.772550px;}
.y185{bottom:725.412600px;}
.y1f5{bottom:725.634000px;}
.y308{bottom:730.650450px;}
.y76{bottom:730.690500px;}
.y1f{bottom:732.484350px;}
.y5c{bottom:733.656750px;}
.y173{bottom:735.401700px;}
.yfc{bottom:736.585350px;}
.y118{bottom:737.648850px;}
.y366{bottom:740.104800px;}
.y2e4{bottom:742.696050px;}
.y75{bottom:743.440500px;}
.y3b0{bottom:743.571600px;}
.y328{bottom:745.922250px;}
.y348{bottom:746.973150px;}
.y293{bottom:747.764100px;}
.y272{bottom:747.857850px;}
.y3e{bottom:752.645850px;}
.y138{bottom:753.177600px;}
.y107{bottom:753.593250px;}
.y5b{bottom:754.656750px;}
.y306{bottom:756.055800px;}
.y74{bottom:756.190500px;}
.yfb{bottom:757.585350px;}
.y6{bottom:758.078850px;}
.y117{bottom:758.648850px;}
.y172{bottom:765.401700px;}
.y365{bottom:765.510150px;}
.y271{bottom:765.787650px;}
.y273{bottom:765.857850px;}
.y184{bottom:767.412600px;}
.y2e3{bottom:768.101400px;}
.y73{bottom:768.940500px;}
.y38b{bottom:768.964200px;}
.y3af{bottom:768.977100px;}
.y327{bottom:770.902350px;}
.y3ce{bottom:771.942450px;}
.y347{bottom:771.953250px;}
.y292{bottom:773.169450px;}
.y2c4{bottom:773.186550px;}
.y305{bottom:774.055800px;}
.y307{bottom:774.125850px;}
.y1e{bottom:774.484350px;}
.y106{bottom:774.593250px;}
.y5a{bottom:775.656750px;}
.y3a1{bottom:778.177500px;}
.y116{bottom:779.648850px;}
.y72{bottom:781.690500px;}
.y3d{bottom:782.645850px;}
.y137{bottom:783.177600px;}
.y9f{bottom:786.060600px;}
.y183{bottom:788.412600px;}
.y3cd{bottom:789.872250px;}
.y2c3{bottom:791.186550px;}
.y270{bottom:791.193000px;}
.y2c5{bottom:791.256750px;}
.y3ae{bottom:794.382450px;}
.y71{bottom:794.440500px;}
.y171{bottom:795.401700px;}
.yfa{bottom:795.593250px;}
.y326{bottom:795.882600px;}
.y59{bottom:796.656750px;}
.y346{bottom:796.933350px;}
.y291{bottom:798.574800px;}
.y303{bottom:799.461150px;}
.y5{bottom:800.078850px;}
.y2e1{bottom:809.186550px;}
.y2e2{bottom:809.256750px;}
.y182{bottom:809.412600px;}
.y364{bottom:810.049350px;}
.y3c{bottom:812.645850px;}
.y3cc{bottom:813.027750px;}
.y136{bottom:813.177600px;}
.y1d{bottom:816.484350px;}
.y2c1{bottom:816.592050px;}
.yf9{bottom:816.593250px;}
.y26d{bottom:816.598350px;}
.y26f{bottom:816.668550px;}
.y302{bottom:817.461150px;}
.y304{bottom:817.531200px;}
.y58{bottom:817.656750px;}
.y3ad{bottom:819.787650px;}
.y325{bottom:820.862700px;}
.y345{bottom:821.913450px;}
.y290{bottom:823.980150px;}
.y170{bottom:825.401700px;}
.y181{bottom:830.412600px;}
.y3cb{bottom:830.957550px;}
.y2c0{bottom:834.592050px;}
.y26c{bottom:834.598350px;}
.y2c2{bottom:834.662100px;}
.y26e{bottom:834.668550px;}
.y38a{bottom:836.387250px;}
.y4{bottom:842.078850px;}
.yae{bottom:842.782500px;}
.y301{bottom:842.866500px;}
.yad{bottom:842.912400px;}
.y3a0{bottom:845.193000px;}
.y324{bottom:845.842950px;}
.y344{bottom:846.893700px;}
.y28f{bottom:849.385500px;}
.yd6{bottom:850.500000px;}
.yd5{bottom:850.576650px;}
.y3ca{bottom:854.113050px;}
.y2bf{bottom:859.997250px;}
.y269{bottom:860.003850px;}
.y26b{bottom:860.073900px;}
.y300{bottom:868.271850px;}
.y9e{bottom:870.237900px;}
.y39f{bottom:870.598350px;}
.y323{bottom:870.822900px;}
.y343{bottom:871.873800px;}
.y3c9{bottom:872.042850px;}
.y363{bottom:877.472400px;}
.y268{bottom:878.003850px;}
.y26a{bottom:878.073900px;}
.y2df{bottom:883.152600px;}
.y3{bottom:884.078850px;}
.y2bc{bottom:885.402600px;}
.y2be{bottom:885.472800px;}
.y2ff{bottom:893.677200px;}
.y28e{bottom:893.924700px;}
.y3c8{bottom:895.198200px;}
.y322{bottom:895.803150px;}
.y39e{bottom:896.003850px;}
.y12f{bottom:896.375250px;}
.y342{bottom:896.853900px;}
.y2de{bottom:901.152600px;}
.y3e0{bottom:903.078150px;}
.y2bb{bottom:903.402600px;}
.y265{bottom:903.409200px;}
.y2bd{bottom:903.472800px;}
.y267{bottom:903.479250px;}
.y3c7{bottom:913.128150px;}
.y1{bottom:913.612500px;}
.y2dd{bottom:919.082550px;}
.y2e0{bottom:919.152600px;}
.y321{bottom:920.783250px;}
.y264{bottom:921.409200px;}
.y266{bottom:921.479250px;}
.y341{bottom:921.834150px;}
.y2b9{bottom:926.557950px;}
.y389{bottom:928.807950px;}
.y3c6{bottom:936.283500px;}
.y3df{bottom:941.086050px;}
.y2b8{bottom:944.487900px;}
.y2ba{bottom:944.557950px;}
.y320{bottom:945.763500px;}
.yf8{bottom:946.842000px;}
.y12e{bottom:947.375250px;}
.y388{bottom:954.213300px;}
.y28d{bottom:961.347750px;}
.y3de{bottom:962.086050px;}
.y340{bottom:965.948250px;}
.y263{bottom:965.948400px;}
.y2b7{bottom:969.893250px;}
.y31f{bottom:970.743600px;}
.y386{bottom:977.368800px;}
.y2b6{bottom:995.298600px;}
.y387{bottom:995.368800px;}
.y31e{bottom:995.723850px;}
.yf7{bottom:997.842000px;}
.y12d{bottom:998.375250px;}
.y3dd{bottom:1000.093950px;}
.y3dc{bottom:1021.093950px;}
.y262{bottom:1033.371300px;}
.y2b5{bottom:1039.837800px;}
.y3db{bottom:1042.093950px;}
.yf6{bottom:1048.842000px;}
.y12c{bottom:1049.375250px;}
.y3da{bottom:1080.101850px;}
.y3d9{bottom:1101.101850px;}
.y19e{bottom:1104.284550px;}
.y3d8{bottom:1139.109750px;}
.ydd{bottom:1151.788200px;}
.y113{bottom:1152.319650px;}
.y35{bottom:1152.851250px;}
.ydc{bottom:1171.884000px;}
.y112{bottom:1172.415600px;}
.y2{bottom:1172.947050px;}
.y3d7{bottom:1177.117650px;}
.h1e{height:0.142500px;}
.h23{height:2.581500px;}
.h1d{height:5.391000px;}
.h20{height:5.392500px;}
.h1b{height:5.460000px;}
.h21{height:5.511000px;}
.h22{height:5.521500px;}
.h26{height:5.544000px;}
.h1f{height:5.545500px;}
.h1c{height:5.547000px;}
.h24{height:5.577000px;}
.h25{height:5.608500px;}
.h1a{height:5.652000px;}
.h19{height:5.655000px;}
.h18{height:22.091630px;}
.h15{height:34.464000px;}
.h13{height:36.726562px;}
.h12{height:36.773438px;}
.h30{height:38.286000px;}
.h11{height:38.544000px;}
.h5{height:41.317383px;}
.h4{height:41.370117px;}
.h2e{height:43.362000px;}
.h10{height:44.784000px;}
.he{height:45.908203px;}
.h14{height:46.552734px;}
.h2f{height:50.282227px;}
.h7{height:50.382000px;}
.h2d{height:50.562427px;}
.h31{height:50.563027px;}
.h3{height:53.181000px;}
.h17{height:55.089844px;}
.hf{height:55.869141px;}
.hd{height:59.680664px;}
.hc{height:59.756836px;}
.h16{height:64.677844px;}
.h2c{height:67.176000px;}
.h6{height:68.544000px;}
.h2{height:69.975000px;}
.hb{height:77.088000px;}
.ha{height:89.568000px;}
.h9{height:106.800000px;}
.h2b{height:140.527500px;}
.h28{height:140.683500px;}
.h27{height:154.176000px;}
.h8{height:268.704000px;}
.h29{height:468.815400px;}
.h2a{height:757.595400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:0.316500px;}
.wa{width:3.585000px;}
.w5{width:4.312500px;}
.w10{width:5.007000px;}
.w9{width:6.300000px;}
.w4{width:7.840500px;}
.w6{width:7.855500px;}
.w3{width:8.103000px;}
.w13{width:9.129000px;}
.wb{width:9.519000px;}
.w8{width:9.643500px;}
.w11{width:9.660000px;}
.wf{width:9.666000px;}
.w12{width:9.673500px;}
.wd{width:9.766500px;}
.we{width:9.838500px;}
.w2{width:9.859500px;}
.w7{width:9.898500px;}
.w14{width:409.677900px;}
.w15{width:410.052900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x65{left:-4.404750px;}
.x0{left:0.000000px;}
.x5b{left:3.051450px;}
.x67{left:4.800300px;}
.x7{left:31.889850px;}
.x77{left:36.141750px;}
.x71{left:41.775600px;}
.x6{left:48.897600px;}
.x2{left:51.023550px;}
.x6f{left:52.086600px;}
.x78{left:53.149650px;}
.x1{left:55.275600px;}
.x56{left:56.459700px;}
.x72{left:60.717750px;}
.x3b{left:63.344250px;}
.x14{left:66.273000px;}
.x13{left:70.250250px;}
.xd{left:72.915900px;}
.xe{left:75.156900px;}
.x11{left:77.803050px;}
.xf{left:80.769450px;}
.x38{left:82.840050px;}
.x10{left:87.238050px;}
.x79{left:93.543300px;}
.x39{left:95.642850px;}
.x15{left:96.713400px;}
.x7c{left:97.795350px;}
.x12{left:100.071300px;}
.x3a{left:103.046250px;}
.x5{left:110.551050px;}
.xa{left:123.307050px;}
.x35{left:140.314950px;}
.x16{left:157.210050px;}
.x6a{left:167.289900px;}
.x3c{left:188.814000px;}
.x6d{left:201.476850px;}
.x4{left:255.118200px;}
.x6c{left:270.603600px;}
.x18{left:272.042250px;}
.x40{left:276.394800px;}
.x41{left:277.609500px;}
.x25{left:278.743350px;}
.x1e{left:281.099850px;}
.x1c{left:283.637700px;}
.x3e{left:285.429450px;}
.x24{left:287.201100px;}
.x1a{left:288.718500px;}
.x3d{left:290.160600px;}
.x19{left:291.572100px;}
.x1b{left:292.859250px;}
.x43{left:293.885850px;}
.x3f{left:296.797650px;}
.x22{left:298.294050px;}
.x1f{left:301.239000px;}
.x20{left:303.365250px;}
.x23{left:307.694850px;}
.x21{left:310.115700px;}
.x47{left:311.670300px;}
.x44{left:323.820150px;}
.x7a{left:331.653450px;}
.x1d{left:336.325950px;}
.x5d{left:337.547400px;}
.x17{left:342.048150px;}
.x58{left:350.036700px;}
.x45{left:351.920550px;}
.x46{left:358.315800px;}
.x26{left:363.105750px;}
.x48{left:368.092800px;}
.x62{left:382.854600px;}
.x42{left:384.223650px;}
.xb{left:386.259450px;}
.x36{left:399.685050px;}
.x49{left:439.813050px;}
.x5e{left:449.131950px;}
.x27{left:451.338750px;}
.x5f{left:453.123000px;}
.x6e{left:455.080350px;}
.x9{left:459.212700px;}
.x60{left:463.555650px;}
.x55{left:466.980000px;}
.x5c{left:483.972600px;}
.x61{left:485.815800px;}
.x69{left:489.135000px;}
.x6b{left:522.595350px;}
.x4f{left:542.559000px;}
.x51{left:546.511800px;}
.x4d{left:552.421800px;}
.x4a{left:554.740650px;}
.x4b{left:560.979600px;}
.x50{left:569.671650px;}
.x63{left:571.302300px;}
.x52{left:574.026900px;}
.x53{left:575.567700px;}
.x32{left:578.556300px;}
.x64{left:580.929000px;}
.x4c{left:584.372100px;}
.x29{left:589.960950px;}
.x4e{left:591.927000px;}
.x2c{left:594.946050px;}
.x2b{left:596.860350px;}
.x2a{left:599.594850px;}
.x33{left:607.798050px;}
.x28{left:609.958950px;}
.x30{left:613.381500px;}
.x68{left:617.418600px;}
.x2d{left:622.052550px;}
.x31{left:630.833700px;}
.x2e{left:635.110200px;}
.x7b{left:646.299150px;}
.xc{left:648.981600px;}
.x5a{left:650.083500px;}
.x37{left:663.307050px;}
.x2f{left:667.768500px;}
.x54{left:690.891600px;}
.x34{left:720.949800px;}
.x66{left:723.986850px;}
.x59{left:750.988200px;}
.x75{left:809.922150px;}
.x76{left:812.490150px;}
.x73{left:815.826000px;}
.x74{left:818.706000px;}
.x70{left:821.475600px;}
.x8{left:825.761850px;}
.x57{left:828.401850px;}
.x3{left:831.761850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.522667pt;}
.ls2d{letter-spacing:-5.973333pt;}
.ls4d{letter-spacing:-4.949333pt;}
.ls1f{letter-spacing:-4.400000pt;}
.ls34{letter-spacing:-4.373333pt;}
.ls3e{letter-spacing:-4.053333pt;}
.ls57{letter-spacing:-3.866667pt;}
.ls36{letter-spacing:-3.573333pt;}
.ls3f{letter-spacing:-3.413333pt;}
.ls1d{letter-spacing:-3.200000pt;}
.lsb{letter-spacing:-3.072000pt;}
.ls38{letter-spacing:-2.986667pt;}
.ls50{letter-spacing:-2.901333pt;}
.ls49{letter-spacing:-2.816000pt;}
.ls1c{letter-spacing:-2.666667pt;}
.ls70{letter-spacing:-2.640000pt;}
.ls2c{letter-spacing:-2.613333pt;}
.ls53{letter-spacing:-2.560000pt;}
.ls42{letter-spacing:-2.474667pt;}
.ls3c{letter-spacing:-2.453333pt;}
.ls20{letter-spacing:-2.266667pt;}
.ls46{letter-spacing:-2.218667pt;}
.ls52{letter-spacing:-2.048000pt;}
.ls6b{letter-spacing:-1.968000pt;}
.ls5{letter-spacing:-1.920000pt;}
.ls58{letter-spacing:-1.792000pt;}
.ls1b{letter-spacing:-1.733333pt;}
.ls45{letter-spacing:-1.706667pt;}
.ls41{letter-spacing:-1.536000pt;}
.ls55{letter-spacing:-1.450667pt;}
.ls16{letter-spacing:-1.440000pt;}
.ls6f{letter-spacing:-1.408000pt;}
.ls54{letter-spacing:-1.386667pt;}
.ls51{letter-spacing:-1.365333pt;}
.ls4b{letter-spacing:-1.333333pt;}
.ls22{letter-spacing:-1.280000pt;}
.ls67{letter-spacing:-1.248000pt;}
.ls4{letter-spacing:-1.200000pt;}
.ls4f{letter-spacing:-1.194667pt;}
.ls68{letter-spacing:-1.152000pt;}
.ls4a{letter-spacing:-1.109333pt;}
.ls48{letter-spacing:-1.066667pt;}
.lsd{letter-spacing:-1.056000pt;}
.ls4c{letter-spacing:-1.024000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls4e{letter-spacing:-0.938667pt;}
.ls1e{letter-spacing:-0.933333pt;}
.lsf{letter-spacing:-0.912000pt;}
.ls64{letter-spacing:-0.864000pt;}
.ls25{letter-spacing:-0.853333pt;}
.ls6d{letter-spacing:-0.816000pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls62{letter-spacing:-0.720000pt;}
.ls23{letter-spacing:-0.693333pt;}
.ls40{letter-spacing:-0.682667pt;}
.ls5e{letter-spacing:-0.672000pt;}
.ls5a{letter-spacing:-0.640000pt;}
.ls6c{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls3b{letter-spacing:-0.554667pt;}
.ls24{letter-spacing:-0.533333pt;}
.ls66{letter-spacing:-0.528000pt;}
.ls47{letter-spacing:-0.506667pt;}
.ls5f{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.432000pt;}
.ls2f{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.341333pt;}
.ls17{letter-spacing:-0.336000pt;}
.ls2a{letter-spacing:-0.298667pt;}
.ls6a{letter-spacing:-0.288000pt;}
.ls37{letter-spacing:-0.256000pt;}
.ls65{letter-spacing:-0.240000pt;}
.ls29{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.170667pt;}
.ls60{letter-spacing:-0.144000pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls5c{letter-spacing:-0.096000pt;}
.ls63{letter-spacing:-0.048000pt;}
.ls3d{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.048000pt;}
.ls33{letter-spacing:0.085333pt;}
.lsa{letter-spacing:0.096000pt;}
.ls3a{letter-spacing:0.128000pt;}
.ls61{letter-spacing:0.144000pt;}
.ls35{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.213333pt;}
.ls39{letter-spacing:0.214933pt;}
.ls3{letter-spacing:0.240000pt;}
.ls1a{letter-spacing:0.253333pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.288000pt;}
.ls56{letter-spacing:0.304000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls32{letter-spacing:0.469333pt;}
.ls59{letter-spacing:0.506667pt;}
.ls69{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.528000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls44{letter-spacing:0.597333pt;}
.ls5b{letter-spacing:0.624000pt;}
.ls5d{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.720000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls43{letter-spacing:0.853333pt;}
.ls13{letter-spacing:0.912000pt;}
.ls6e{letter-spacing:1.440000pt;}
.ls1{letter-spacing:63.110933pt;}
.ls2{letter-spacing:1356.039467pt;}
.ws6e{word-spacing:-53.333333pt;}
.ws6a{word-spacing:-43.178667pt;}
.ws7b{word-spacing:-33.466667pt;}
.ws21{word-spacing:-30.400000pt;}
.ws7c{word-spacing:-22.800000pt;}
.ws72{word-spacing:-22.784000pt;}
.wsa2{word-spacing:-21.760000pt;}
.ws9e{word-spacing:-21.589333pt;}
.ws68{word-spacing:-21.333333pt;}
.ws7a{word-spacing:-21.162667pt;}
.ws69{word-spacing:-21.077333pt;}
.ws22{word-spacing:-21.066667pt;}
.ws65{word-spacing:-20.736000pt;}
.ws67{word-spacing:-20.650667pt;}
.wsa0{word-spacing:-20.480000pt;}
.ws61{word-spacing:-20.138667pt;}
.wsa6{word-spacing:-13.920000pt;}
.ws6c{word-spacing:-13.866667pt;}
.ws58{word-spacing:-13.333333pt;}
.ws82{word-spacing:-13.152000pt;}
.ws5d{word-spacing:-12.800000pt;}
.wsa8{word-spacing:-12.624000pt;}
.ws86{word-spacing:-12.528000pt;}
.ws8c{word-spacing:-12.480000pt;}
.ws8a{word-spacing:-12.432000pt;}
.ws84{word-spacing:-12.384000pt;}
.ws85{word-spacing:-12.336000pt;}
.ws98{word-spacing:-12.288000pt;}
.ws8b{word-spacing:-12.240000pt;}
.ws87{word-spacing:-12.144000pt;}
.ws83{word-spacing:-12.048000pt;}
.ws8d{word-spacing:-12.008000pt;}
.wsa9{word-spacing:-12.000000pt;}
.ws9b{word-spacing:-11.952000pt;}
.ws99{word-spacing:-11.904000pt;}
.wsa5{word-spacing:-11.856000pt;}
.ws89{word-spacing:-11.760000pt;}
.ws88{word-spacing:-11.568000pt;}
.ws20{word-spacing:-11.501333pt;}
.ws1{word-spacing:-11.472000pt;}
.ws44{word-spacing:-11.413333pt;}
.ws2e{word-spacing:-11.253333pt;}
.ws2c{word-spacing:-11.093333pt;}
.ws6d{word-spacing:-10.994667pt;}
.ws30{word-spacing:-10.880000pt;}
.ws2d{word-spacing:-10.794667pt;}
.ws45{word-spacing:-10.752000pt;}
.ws43{word-spacing:-10.538667pt;}
.ws47{word-spacing:-10.453333pt;}
.ws48{word-spacing:-10.410667pt;}
.ws32{word-spacing:-10.293333pt;}
.ws46{word-spacing:-9.813333pt;}
.ws31{word-spacing:-9.493333pt;}
.ws2f{word-spacing:-7.893333pt;}
.ws5a{word-spacing:-1.365333pt;}
.ws3f{word-spacing:-1.024000pt;}
.ws49{word-spacing:-0.981333pt;}
.ws19{word-spacing:-0.912000pt;}
.ws3c{word-spacing:-0.896000pt;}
.ws42{word-spacing:-0.853333pt;}
.ws4a{word-spacing:-0.810667pt;}
.ws3a{word-spacing:-0.725333pt;}
.ws1e{word-spacing:-0.720000pt;}
.ws33{word-spacing:-0.682667pt;}
.ws37{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.624000pt;}
.ws41{word-spacing:-0.597333pt;}
.ws92{word-spacing:-0.576000pt;}
.ws38{word-spacing:-0.554667pt;}
.ws1d{word-spacing:-0.528000pt;}
.ws34{word-spacing:-0.512000pt;}
.ws8e{word-spacing:-0.480000pt;}
.ws36{word-spacing:-0.469333pt;}
.ws94{word-spacing:-0.432000pt;}
.ws2b{word-spacing:-0.426667pt;}
.ws8f{word-spacing:-0.384000pt;}
.ws96{word-spacing:-0.336000pt;}
.ws79{word-spacing:-0.304000pt;}
.ws1a{word-spacing:-0.288000pt;}
.ws54{word-spacing:-0.277333pt;}
.ws1f{word-spacing:-0.253333pt;}
.ws2a{word-spacing:-0.213333pt;}
.ws75{word-spacing:-0.208000pt;}
.ws10{word-spacing:-0.144000pt;}
.ws60{word-spacing:-0.106667pt;}
.ws9f{word-spacing:-0.096000pt;}
.ws59{word-spacing:-0.085333pt;}
.ws62{word-spacing:-0.059733pt;}
.ws51{word-spacing:-0.053333pt;}
.ws91{word-spacing:-0.048000pt;}
.ws4e{word-spacing:-0.027388pt;}
.ws0{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.042667pt;}
.ws97{word-spacing:0.048000pt;}
.wsa1{word-spacing:0.096000pt;}
.wsa3{word-spacing:0.144000pt;}
.ws53{word-spacing:0.170667pt;}
.ws90{word-spacing:0.192000pt;}
.ws3e{word-spacing:0.213333pt;}
.ws40{word-spacing:0.256000pt;}
.ws3d{word-spacing:0.298667pt;}
.wsa7{word-spacing:0.336000pt;}
.ws35{word-spacing:0.341333pt;}
.ws95{word-spacing:0.384000pt;}
.ws3b{word-spacing:0.426667pt;}
.ws93{word-spacing:0.480000pt;}
.ws29{word-spacing:0.533333pt;}
.ws63{word-spacing:0.597333pt;}
.ws9a{word-spacing:0.672000pt;}
.ws5c{word-spacing:0.682667pt;}
.ws28{word-spacing:0.693333pt;}
.wsc{word-spacing:0.720000pt;}
.ws73{word-spacing:0.768000pt;}
.ws39{word-spacing:0.853333pt;}
.ws4f{word-spacing:0.912000pt;}
.ws25{word-spacing:0.933333pt;}
.ws64{word-spacing:0.938667pt;}
.ws5e{word-spacing:1.024000pt;}
.ws57{word-spacing:1.066667pt;}
.ws5b{word-spacing:1.109333pt;}
.ws76{word-spacing:1.194667pt;}
.ws26{word-spacing:1.200000pt;}
.ws6f{word-spacing:1.280000pt;}
.ws71{word-spacing:1.333333pt;}
.ws6b{word-spacing:1.365333pt;}
.ws74{word-spacing:1.386667pt;}
.ws78{word-spacing:1.450667pt;}
.wsa4{word-spacing:1.488000pt;}
.ws50{word-spacing:1.536000pt;}
.ws55{word-spacing:1.706667pt;}
.ws7e{word-spacing:1.733333pt;}
.ws7f{word-spacing:1.792000pt;}
.ws77{word-spacing:2.048000pt;}
.ws56{word-spacing:2.218667pt;}
.ws27{word-spacing:2.266667pt;}
.wsaa{word-spacing:2.400000pt;}
.ws52{word-spacing:2.474667pt;}
.ws70{word-spacing:2.560000pt;}
.ws23{word-spacing:2.666667pt;}
.ws66{word-spacing:2.901333pt;}
.ws24{word-spacing:3.200000pt;}
.ws7d{word-spacing:3.866667pt;}
.ws5f{word-spacing:4.949333pt;}
.ws16{word-spacing:63.888000pt;}
.ws12{word-spacing:64.032000pt;}
.wse{word-spacing:66.192000pt;}
.ws6{word-spacing:66.624000pt;}
.ws15{word-spacing:629.952000pt;}
.ws80{word-spacing:679.089600pt;}
.ws9c{word-spacing:679.090133pt;}
.wsab{word-spacing:706.402133pt;}
.ws2{word-spacing:756.528000pt;}
.ws81{word-spacing:766.933867pt;}
.ws3{word-spacing:770.304000pt;}
.ws4d{word-spacing:888.801067pt;}
.ws9d{word-spacing:955.669867pt;}
.ws4{word-spacing:1071.552000pt;}
.wsa{word-spacing:1152.384000pt;}
.ws1c{word-spacing:1185.360000pt;}
.ws17{word-spacing:1189.680000pt;}
.ws14{word-spacing:1214.928000pt;}
.ws18{word-spacing:1220.688000pt;}
.ws8{word-spacing:1226.112000pt;}
.ws13{word-spacing:1322.352000pt;}
.ws11{word-spacing:1335.792000pt;}
.ws4c{word-spacing:1398.913600pt;}
.wsb{word-spacing:1476.096000pt;}
.wsf{word-spacing:1512.192000pt;}
.ws5{word-spacing:1550.928000pt;}
.wsd{word-spacing:1568.160000pt;}
.ws7{word-spacing:1728.192000pt;}
.ws1b{word-spacing:1833.600000pt;}
._17{margin-left:-2250.114133pt;}
._16{margin-left:-790.485867pt;}
._9{margin-left:-64.605867pt;}
._19{margin-left:-37.849847pt;}
._18{margin-left:-31.742383pt;}
._1b{margin-left:-16.995733pt;}
._15{margin-left:-11.733600pt;}
._14{margin-left:-10.298133pt;}
._1d{margin-left:-9.082933pt;}
._1a{margin-left:-7.722667pt;}
._12{margin-left:-6.522667pt;}
._13{margin-left:-5.205333pt;}
._1c{margin-left:-4.300800pt;}
._1{margin-left:-3.400000pt;}
._0{margin-left:-1.873333pt;}
._a{margin-left:-0.901067pt;}
._3{width:1.272000pt;}
._5{width:2.785333pt;}
._8{width:3.762667pt;}
._11{width:5.128000pt;}
._1e{width:6.867200pt;}
._10{width:20.122933pt;}
._1f{width:23.420000pt;}
._b{width:32.832000pt;}
._4{width:33.984000pt;}
._2{width:44.400000pt;}
._24{width:58.728267pt;}
._7{width:64.320000pt;}
._6{width:65.904000pt;}
._9f{width:87.908000pt;}
._6b{width:107.362400pt;}
._76{width:137.825333pt;}
._21{width:147.333333pt;}
._4c{width:150.619467pt;}
._32{width:177.208000pt;}
._41{width:185.119733pt;}
._95{width:194.228533pt;}
._97{width:196.706933pt;}
._6a{width:198.591733pt;}
._9d{width:215.666933pt;}
._9c{width:225.761067pt;}
._51{width:228.074933pt;}
._a1{width:231.639200pt;}
._30{width:242.038933pt;}
._4d{width:243.753600pt;}
._55{width:252.238933pt;}
._42{width:263.258933pt;}
._37{width:271.657600pt;}
._69{width:277.063733pt;}
._94{width:281.478133pt;}
._88{width:283.001867pt;}
._73{width:291.541867pt;}
._8d{width:294.255200pt;}
._ad{width:295.335200pt;}
._78{width:301.948267pt;}
._2e{width:310.058933pt;}
._4b{width:314.727200pt;}
._2c{width:322.538933pt;}
._7a{width:323.612267pt;}
._ab{width:332.294400pt;}
._66{width:340.455200pt;}
._3d{width:342.822933pt;}
._b4{width:352.171733pt;}
._63{width:355.418933pt;}
._b3{width:357.277867pt;}
._ac{width:358.850133pt;}
._4a{width:360.068000pt;}
._92{width:363.661867pt;}
._91{width:365.463733pt;}
._84{width:368.282933pt;}
._57{width:370.597867pt;}
._52{width:371.572267pt;}
._61{width:375.495200pt;}
._af{width:381.349867pt;}
._7c{width:382.525867pt;}
._8a{width:384.088533pt;}
._2b{width:385.324267pt;}
._70{width:386.295200pt;}
._46{width:388.218667pt;}
._40{width:393.544533pt;}
._2d{width:396.628267pt;}
._58{width:397.695200pt;}
._b0{width:399.061867pt;}
._33{width:401.524267pt;}
._2f{width:406.573867pt;}
._47{width:414.236000pt;}
._90{width:415.721067pt;}
._54{width:418.071200pt;}
._a0{width:420.495733pt;}
._34{width:422.762933pt;}
._22{width:423.661867pt;}
._a6{width:427.121333pt;}
._29{width:428.391200pt;}
._4e{width:432.314933pt;}
._8b{width:434.485867pt;}
._3f{width:436.588267pt;}
._6f{width:437.911733pt;}
._85{width:439.093867pt;}
._9e{width:440.775733pt;}
._b2{width:445.528533pt;}
._7e{width:449.415200pt;}
._27{width:452.477867pt;}
._83{width:454.492267pt;}
._7b{width:455.548267pt;}
._80{width:457.287200pt;}
._44{width:459.436267pt;}
._36{width:460.504533pt;}
._5a{width:461.874933pt;}
._74{width:462.844267pt;}
._53{width:463.778933pt;}
._50{width:466.076000pt;}
._a4{width:470.053867pt;}
._65{width:471.427200pt;}
._20{width:472.429867pt;}
._4f{width:473.642933pt;}
._b1{width:475.719200pt;}
._26{width:477.397867pt;}
._59{width:478.623200pt;}
._79{width:479.893867pt;}
._28{width:480.805867pt;}
._99{width:482.227200pt;}
._72{width:483.412267pt;}
._5e{width:487.048533pt;}
._a2{width:488.583200pt;}
._7d{width:489.711200pt;}
._45{width:491.093867pt;}
._23{width:492.279200pt;}
._5d{width:493.957867pt;}
._5f{width:494.860267pt;}
._3c{width:496.909867pt;}
._62{width:498.729067pt;}
._49{width:501.399200pt;}
._38{width:502.455200pt;}
._8c{width:503.845867pt;}
._31{width:505.959200pt;}
._9a{width:508.555200pt;}
._2a{width:509.449600pt;}
._43{width:510.376533pt;}
._3a{width:511.933867pt;}
._67{width:513.474667pt;}
._68{width:514.887200pt;}
._48{width:515.869867pt;}
._60{width:517.802933pt;}
._87{width:519.498667pt;}
._6d{width:520.923467pt;}
._6e{width:524.116800pt;}
._25{width:526.132267pt;}
._75{width:528.181867pt;}
._77{width:530.151200pt;}
._8f{width:531.975733pt;}
._ae{width:533.079200pt;}
._56{width:535.621867pt;}
._bf{width:536.906933pt;}
._3e{width:538.348267pt;}
._a7{width:541.335200pt;}
._96{width:542.678400pt;}
._98{width:547.406400pt;}
._82{width:549.975200pt;}
._5c{width:553.285867pt;}
._a8{width:554.413867pt;}
._86{width:556.202933pt;}
._b5{width:560.642933pt;}
._71{width:561.895733pt;}
._81{width:563.066933pt;}
._3b{width:568.825600pt;}
._39{width:570.194933pt;}
._35{width:571.785600pt;}
._64{width:573.975200pt;}
._b6{width:577.623200pt;}
._a9{width:578.823200pt;}
._5b{width:582.493867pt;}
._9b{width:583.958400pt;}
._7f{width:586.551200pt;}
._8e{width:593.437867pt;}
._be{width:596.245867pt;}
._aa{width:597.879200pt;}
._89{width:604.741867pt;}
._c0{width:620.126400pt;}
._93{width:624.493867pt;}
._bc{width:652.933867pt;}
._ba{width:655.621867pt;}
._b9{width:658.357867pt;}
._bd{width:675.133867pt;}
._b8{width:679.861867pt;}
._b7{width:682.309867pt;}
._c{width:688.100000pt;}
._bb{width:696.781867pt;}
._6c{width:700.492800pt;}
._a3{width:792.533600pt;}
._a5{width:795.917600pt;}
._d{width:1152.244533pt;}
._e{width:1506.269867pt;}
._f{width:1662.827467pt;}
.fsa{font-size:27.387733pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:59.733333pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs6{font-size:69.333333pt;}
.fs3{font-size:85.333333pt;}
.fs5{font-size:133.333333pt;}
.fsb{font-size:170.666667pt;}
.fs4{font-size:256.000000pt;}
.ybd{bottom:-4.780800pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:0.001467pt;}
.yb2{bottom:0.001600pt;}
.yc1{bottom:0.002267pt;}
.yc6{bottom:0.055733pt;}
.yd7{bottom:0.068133pt;}
.yd4{bottom:0.068667pt;}
.yda{bottom:0.069467pt;}
.yb6{bottom:0.070133pt;}
.ybf{bottom:0.071333pt;}
.yc9{bottom:0.076933pt;}
.yd1{bottom:0.077333pt;}
.ycf{bottom:0.077467pt;}
.ycc{bottom:0.110667pt;}
.yaf{bottom:0.115467pt;}
.yc3{bottom:0.117867pt;}
.yac{bottom:0.118533pt;}
.y21f{bottom:24.747733pt;}
.y135{bottom:27.286000pt;}
.y24f{bottom:30.281067pt;}
.y1c{bottom:36.703467pt;}
.y21e{bottom:45.304133pt;}
.y134{bottom:45.952667pt;}
.y24e{bottom:48.947733pt;}
.y133{bottom:64.619333pt;}
.y21d{bottom:65.860533pt;}
.y24d{bottom:67.614400pt;}
.y210{bottom:74.257867pt;}
.ya8{bottom:75.590533pt;}
.y9d{bottom:77.528667pt;}
.y1aa{bottom:80.569733pt;}
.y24c{bottom:82.814400pt;}
.y132{bottom:83.286000pt;}
.y21c{bottom:86.416933pt;}
.y22e{bottom:87.664267pt;}
.y9c{bottom:88.862000pt;}
.y14f{bottom:90.352133pt;}
.y235{bottom:92.212800pt;}
.y1ba{bottom:93.879467pt;}
.y1a9{bottom:99.236400pt;}
.ya7{bottom:100.126533pt;}
.y9b{bottom:100.195333pt;}
.y94{bottom:101.528667pt;}
.y22d{bottom:106.330933pt;}
.y21b{bottom:106.973333pt;}
.y57{bottom:107.664267pt;}
.y14e{bottom:109.018800pt;}
.y1f4{bottom:110.806000pt;}
.y234{bottom:110.879467pt;}
.y9a{bottom:111.528667pt;}
.y261{bottom:111.822000pt;}
.yf5{bottom:112.546133pt;}
.y93{bottom:112.862000pt;}
.y258{bottom:112.997600pt;}
.y20f{bottom:114.428000pt;}
.y25a{bottom:115.026400pt;}
.y362{bottom:115.100533pt;}
.y33f{bottom:116.093867pt;}
.y31d{bottom:116.456667pt;}
.y1a8{bottom:117.903067pt;}
.y99{bottom:122.862000pt;}
.y2b3{bottom:123.610933pt;}
.y92{bottom:124.195333pt;}
.y22c{bottom:124.997600pt;}
.y56{bottom:126.330933pt;}
.y70{bottom:126.575067pt;}
.y2fd{bottom:127.510000pt;}
.y21a{bottom:127.529733pt;}
.y14d{bottom:127.685467pt;}
.y1f3{bottom:129.472667pt;}
.y233{bottom:129.546133pt;}
.yf4{bottom:131.212800pt;}
.y257{bottom:131.664267pt;}
.y160{bottom:133.021200pt;}
.y20e{bottom:133.094667pt;}
.y259{bottom:133.472667pt;}
.y385{bottom:134.469467pt;}
.y2dc{bottom:134.865200pt;}
.y90{bottom:135.528667pt;}
.y20b{bottom:136.546133pt;}
.y1a7{bottom:136.569733pt;}
.y3c5{bottom:136.599867pt;}
.y360{bottom:137.683067pt;}
.y31c{bottom:138.661200pt;}
.y33e{bottom:138.676400pt;}
.y2b2{bottom:139.610933pt;}
.y2b4{bottom:139.673200pt;}
.y6f{bottom:141.241733pt;}
.y2fc{bottom:143.510000pt;}
.y2fe{bottom:143.572267pt;}
.y22b{bottom:143.664267pt;}
.y55{bottom:144.997600pt;}
.y14c{bottom:146.352133pt;}
.y8f{bottom:146.862000pt;}
.y260{bottom:147.822000pt;}
.y19d{bottom:147.908267pt;}
.y219{bottom:148.086267pt;}
.y1f2{bottom:148.139333pt;}
.y232{bottom:148.212800pt;}
.yf3{bottom:149.879467pt;}
.y256{bottom:150.330933pt;}
.y1b{bottom:151.181200pt;}
.y15f{bottom:151.687867pt;}
.y20d{bottom:151.761333pt;}
.y3c4{bottom:152.537600pt;}
.y35f{bottom:153.683067pt;}
.y361{bottom:153.745333pt;}
.y20a{bottom:155.212800pt;}
.y1a6{bottom:155.236400pt;}
.y384{bottom:157.052000pt;}
.y2da{bottom:157.447733pt;}
.y8e{bottom:158.195333pt;}
.y6e{bottom:159.687867pt;}
.y31b{bottom:160.865867pt;}
.y33d{bottom:161.258933pt;}
.y2b1{bottom:162.193467pt;}
.y22a{bottom:162.330933pt;}
.y54{bottom:163.664267pt;}
.y14b{bottom:165.018800pt;}
.y2fa{bottom:166.092533pt;}
.y19c{bottom:166.574933pt;}
.y218{bottom:166.752933pt;}
.y1cf{bottom:166.806000pt;}
.y231{bottom:166.879467pt;}
.yf2{bottom:168.546133pt;}
.y255{bottom:168.997600pt;}
.y8d{bottom:169.528667pt;}
.y1a{bottom:169.847867pt;}
.y15e{bottom:170.354533pt;}
.y20c{bottom:170.428000pt;}
.y2d9{bottom:173.447733pt;}
.y2db{bottom:173.510000pt;}
.y209{bottom:173.879467pt;}
.y1a5{bottom:173.903067pt;}
.ya6{bottom:174.950800pt;}
.y3c3{bottom:175.120133pt;}
.y6d{bottom:178.134133pt;}
.y383{bottom:179.634533pt;}
.y8c{bottom:180.862000pt;}
.y229{bottom:180.997600pt;}
.y2f9{bottom:182.092533pt;}
.y2fb{bottom:182.154800pt;}
.y53{bottom:182.330933pt;}
.y31a{bottom:183.070400pt;}
.y14a{bottom:183.685467pt;}
.y25f{bottom:183.822000pt;}
.y33c{bottom:183.841467pt;}
.y34{bottom:184.430533pt;}
.y2b0{bottom:184.776000pt;}
.y19b{bottom:185.241600pt;}
.y1ce{bottom:185.472667pt;}
.y230{bottom:185.546133pt;}
.yf1{bottom:187.212800pt;}
.y217{bottom:187.309333pt;}
.y254{bottom:187.664267pt;}
.y19{bottom:188.514533pt;}
.y15d{bottom:189.021200pt;}
.y16f{bottom:189.094667pt;}
.y8b{bottom:192.195333pt;}
.y208{bottom:192.546133pt;}
.y1a4{bottom:192.569733pt;}
.y35e{bottom:193.273467pt;}
.y3c2{bottom:195.702667pt;}
.y2d8{bottom:196.030267pt;}
.y228{bottom:199.664267pt;}
.y52{bottom:200.997600pt;}
.y382{bottom:202.217067pt;}
.y33{bottom:203.097200pt;}
.y95{bottom:203.528667pt;}
.y19a{bottom:203.908267pt;}
.y1cd{bottom:204.139333pt;}
.y22f{bottom:204.212800pt;}
.y2f8{bottom:204.675067pt;}
.y319{bottom:205.275067pt;}
.yf0{bottom:205.879467pt;}
.y253{bottom:206.330933pt;}
.y33a{bottom:206.424133pt;}
.y18{bottom:207.181200pt;}
.y2af{bottom:207.358533pt;}
.y15c{bottom:207.687867pt;}
.y16e{bottom:207.761333pt;}
.y216{bottom:207.865733pt;}
.yd3{bottom:210.108000pt;}
.yd2{bottom:210.176667pt;}
.y207{bottom:211.212800pt;}
.y1a3{bottom:211.236400pt;}
.y3c1{bottom:211.640400pt;}
.y8a{bottom:214.862000pt;}
.y149{bottom:217.470267pt;}
.y227{bottom:218.330933pt;}
.y2d7{bottom:218.612800pt;}
.y51{bottom:219.664267pt;}
.y25e{bottom:219.822000pt;}
.y1b9{bottom:220.997600pt;}
.y32{bottom:221.763867pt;}
.y339{bottom:222.424133pt;}
.y33b{bottom:222.486400pt;}
.y199{bottom:222.574933pt;}
.y380{bottom:222.799600pt;}
.y1cc{bottom:222.806000pt;}
.y1f1{bottom:222.879467pt;}
.yef{bottom:224.546133pt;}
.y252{bottom:224.997600pt;}
.y89{bottom:226.195333pt;}
.y15b{bottom:226.354533pt;}
.y16d{bottom:226.428000pt;}
.y2f7{bottom:227.257600pt;}
.y318{bottom:227.479600pt;}
.y215{bottom:228.422133pt;}
.y24b{bottom:229.690667pt;}
.y1a2{bottom:229.903067pt;}
.y2ae{bottom:229.941067pt;}
.y3c0{bottom:232.222933pt;}
.y148{bottom:236.136933pt;}
.y226{bottom:236.997600pt;}
.y88{bottom:237.528667pt;}
.y50{bottom:238.330933pt;}
.y37f{bottom:238.737333pt;}
.y381{bottom:238.799600pt;}
.y31{bottom:240.430533pt;}
.ydb{bottom:240.637600pt;}
.y2d6{bottom:241.195333pt;}
.y198{bottom:241.241600pt;}
.y1cb{bottom:241.472667pt;}
.y1f0{bottom:241.546133pt;}
.yee{bottom:243.212800pt;}
.y251{bottom:243.664267pt;}
.y17{bottom:244.514533pt;}
.y206{bottom:244.997600pt;}
.y338{bottom:245.006667pt;}
.y15a{bottom:245.021200pt;}
.y16c{bottom:245.094667pt;}
.y3bf{bottom:248.160533pt;}
.y1a1{bottom:248.569733pt;}
.y87{bottom:248.862000pt;}
.y214{bottom:248.978667pt;}
.y317{bottom:249.684133pt;}
.ya5{bottom:249.775067pt;}
.y2f6{bottom:249.840133pt;}
.y2ad{bottom:252.523600pt;}
.y35d{bottom:253.205067pt;}
.y25d{bottom:255.822000pt;}
.y4f{bottom:256.997600pt;}
.y30{bottom:259.097200pt;}
.y37d{bottom:259.319867pt;}
.y197{bottom:259.908267pt;}
.y1ca{bottom:260.139333pt;}
.y86{bottom:260.195333pt;}
.y1ef{bottom:260.212800pt;}
.yed{bottom:261.879467pt;}
.y250{bottom:262.330933pt;}
.y1b8{bottom:262.341333pt;}
.y16{bottom:263.181200pt;}
.y131{bottom:263.234667pt;}
.y205{bottom:263.664267pt;}
.y159{bottom:263.687867pt;}
.y16b{bottom:263.761333pt;}
.y2d5{bottom:263.777867pt;}
.y12b{bottom:267.236400pt;}
.y337{bottom:267.589200pt;}
.y213{bottom:269.535067pt;}
.y3be{bottom:270.743067pt;}
.y85{bottom:271.528667pt;}
.y35c{bottom:271.871733pt;}
.y316{bottom:271.888800pt;}
.y2f4{bottom:272.422667pt;}
.y39d{bottom:273.195200pt;}
.y1c6{bottom:274.341333pt;}
.y2ac{bottom:275.106133pt;}
.y37c{bottom:275.257600pt;}
.y37e{bottom:275.319867pt;}
.y4e{bottom:275.664267pt;}
.y147{bottom:277.480667pt;}
.y2f{bottom:277.763867pt;}
.y225{bottom:278.341333pt;}
.y196{bottom:278.574933pt;}
.y1c9{bottom:278.806000pt;}
.y1ee{bottom:278.879467pt;}
.y1da{bottom:279.351867pt;}
.yec{bottom:280.546133pt;}
.y24a{bottom:281.008000pt;}
.y158{bottom:282.354533pt;}
.y16a{bottom:282.428000pt;}
.y84{bottom:282.862000pt;}
.y1b7{bottom:285.008000pt;}
.y12a{bottom:285.903067pt;}
.y2d4{bottom:286.360400pt;}
.y2f3{bottom:288.422667pt;}
.y2f5{bottom:288.484933pt;}
.y212{bottom:290.091467pt;}
.y336{bottom:290.171733pt;}
.yab{bottom:290.969333pt;}
.yaa{bottom:291.087867pt;}
.y3bd{bottom:291.325600pt;}
.y25c{bottom:291.822000pt;}
.yd0{bottom:292.430667pt;}
.yba{bottom:292.508000pt;}
.y315{bottom:294.093333pt;}
.y4d{bottom:294.330933pt;}
.y39c{bottom:295.777867pt;}
.y1c5{bottom:297.008000pt;}
.y195{bottom:297.241600pt;}
.y1c8{bottom:297.472667pt;}
.y1ed{bottom:297.546133pt;}
.y3ac{bottom:297.604933pt;}
.y2ab{bottom:297.688800pt;}
.y37b{bottom:297.840133pt;}
.y1d9{bottom:298.018533pt;}
.yeb{bottom:299.212800pt;}
.y146{bottom:300.147333pt;}
.y15{bottom:300.514533pt;}
.y224{bottom:301.008000pt;}
.y157{bottom:301.021200pt;}
.y169{bottom:301.094667pt;}
.y91{bottom:303.498667pt;}
.y249{bottom:303.674667pt;}
.y129{bottom:304.569733pt;}
.y204{bottom:305.008000pt;}
.y211{bottom:305.291467pt;}
.y3bc{bottom:307.263333pt;}
.y1b6{bottom:307.674667pt;}
.y2d3{bottom:308.942933pt;}
.y2f2{bottom:311.005200pt;}
.y4c{bottom:312.997600pt;}
.y2e{bottom:315.097200pt;}
.y194{bottom:315.908267pt;}
.y1c7{bottom:316.139333pt;}
.y1ec{bottom:316.212800pt;}
.y1d8{bottom:316.685200pt;}
.yea{bottom:317.879467pt;}
.y39b{bottom:318.360267pt;}
.y180{bottom:319.013200pt;}
.y14{bottom:319.181200pt;}
.y1c4{bottom:319.674667pt;}
.y156{bottom:319.687867pt;}
.y168{bottom:319.761333pt;}
.y3ab{bottom:320.187467pt;}
.y2a9{bottom:320.271200pt;}
.y37a{bottom:320.422667pt;}
.y145{bottom:322.814000pt;}
.y128{bottom:323.236400pt;}
.y223{bottom:323.674667pt;}
.ya4{bottom:324.599333pt;}
.y248{bottom:326.341333pt;}
.y203{bottom:327.674667pt;}
.y25b{bottom:327.822000pt;}
.y335{bottom:329.762133pt;}
.y3bb{bottom:329.845867pt;}
.y1b5{bottom:330.341333pt;}
.y35b{bottom:331.441067pt;}
.y2d1{bottom:331.525467pt;}
.y4b{bottom:331.664267pt;}
.y314{bottom:333.305867pt;}
.y2f0{bottom:333.587733pt;}
.y2d{bottom:333.763867pt;}
.y193{bottom:334.574933pt;}
.y6c{bottom:334.806000pt;}
.y1eb{bottom:334.879467pt;}
.y1d7{bottom:335.351867pt;}
.y2a8{bottom:336.271200pt;}
.y2aa{bottom:336.333600pt;}
.ye9{bottom:336.546133pt;}
.y13{bottom:337.847867pt;}
.y155{bottom:338.354533pt;}
.y167{bottom:338.428000pt;}
.y39a{bottom:340.942933pt;}
.y17f{bottom:341.679867pt;}
.y127{bottom:341.903067pt;}
.y1c3{bottom:342.341333pt;}
.y377{bottom:343.005067pt;}
.y379{bottom:343.067467pt;}
.y144{bottom:345.480667pt;}
.y222{bottom:346.341333pt;}
.y2d0{bottom:347.525467pt;}
.y2d2{bottom:347.587867pt;}
.y247{bottom:349.008000pt;}
.y2ef{bottom:349.587733pt;}
.y2f1{bottom:349.650000pt;}
.y4a{bottom:350.330933pt;}
.y202{bottom:350.341333pt;}
.y3ba{bottom:352.428400pt;}
.y1b4{bottom:353.008000pt;}
.y192{bottom:353.241600pt;}
.y6b{bottom:353.472667pt;}
.y1ea{bottom:353.546133pt;}
.y35a{bottom:353.645733pt;}
.y1d6{bottom:354.018533pt;}
.ye8{bottom:355.212800pt;}
.y12{bottom:356.514533pt;}
.y154{bottom:357.021200pt;}
.y166{bottom:357.094667pt;}
.y2a6{bottom:358.853867pt;}
.y376{bottom:359.005067pt;}
.y378{bottom:359.067467pt;}
.y3aa{bottom:359.777867pt;}
.y126{bottom:360.569733pt;}
.y399{bottom:363.525333pt;}
.y17e{bottom:364.346533pt;}
.y1c2{bottom:365.008000pt;}
.y28b{bottom:366.413733pt;}
.ycb{bottom:366.889333pt;}
.yca{bottom:367.000000pt;}
.y143{bottom:368.147333pt;}
.y49{bottom:368.997600pt;}
.y221{bottom:369.008000pt;}
.y2cf{bottom:370.108000pt;}
.y2c{bottom:371.097200pt;}
.y246{bottom:371.674667pt;}
.y191{bottom:371.908267pt;}
.y6a{bottom:372.139333pt;}
.y2ed{bottom:372.170267pt;}
.y1e9{bottom:372.212800pt;}
.y1d5{bottom:372.685200pt;}
.y201{bottom:373.008000pt;}
.y3b9{bottom:373.010933pt;}
.ye7{bottom:373.879467pt;}
.y2a5{bottom:374.853867pt;}
.y2a7{bottom:374.916133pt;}
.y11{bottom:375.181200pt;}
.y1b3{bottom:375.674667pt;}
.y153{bottom:375.687867pt;}
.y165{bottom:375.761333pt;}
.y358{bottom:375.850267pt;}
.y125{bottom:379.236400pt;}
.y375{bottom:381.587733pt;}
.y3b{bottom:382.152667pt;}
.y28a{bottom:382.351467pt;}
.y28c{bottom:382.413733pt;}
.y115{bottom:383.674667pt;}
.y398{bottom:386.108000pt;}
.yc0{bottom:386.133333pt;}
.yb3{bottom:386.135600pt;}
.y17d{bottom:387.013200pt;}
.y48{bottom:387.664267pt;}
.y1c1{bottom:387.674667pt;}
.y2ec{bottom:388.170267pt;}
.y2ee{bottom:388.232533pt;}
.y3b8{bottom:388.948533pt;}
.y334{bottom:389.693733pt;}
.y2b{bottom:389.763867pt;}
.y190{bottom:390.574933pt;}
.y69{bottom:390.806000pt;}
.y142{bottom:390.814000pt;}
.y1e8{bottom:390.879467pt;}
.y1d4{bottom:391.351867pt;}
.y220{bottom:391.674667pt;}
.y357{bottom:391.850267pt;}
.y359{bottom:391.912533pt;}
.ye6{bottom:392.546133pt;}
.y2ce{bottom:392.690533pt;}
.y313{bottom:393.237467pt;}
.y10{bottom:393.847867pt;}
.y245{bottom:394.341333pt;}
.y152{bottom:394.354533pt;}
.y164{bottom:394.428000pt;}
.y200{bottom:395.674667pt;}
.y2a3{bottom:397.436400pt;}
.y124{bottom:397.903067pt;}
.y1b2{bottom:398.341333pt;}
.ya3{bottom:399.423600pt;}
.y288{bottom:402.934000pt;}
.y374{bottom:404.170267pt;}
.y114{bottom:406.341333pt;}
.y2a{bottom:408.430533pt;}
.y397{bottom:408.690533pt;}
.y18f{bottom:409.241600pt;}
.y68{bottom:409.472667pt;}
.y1e7{bottom:409.546133pt;}
.y17c{bottom:409.679867pt;}
.y1d3{bottom:410.018533pt;}
.y1c0{bottom:410.341333pt;}
.y2eb{bottom:410.752800pt;}
.ye5{bottom:411.212800pt;}
.y355{bottom:412.054800pt;}
.y151{bottom:413.021200pt;}
.y163{bottom:413.094667pt;}
.y2a2{bottom:413.436400pt;}
.y141{bottom:413.480667pt;}
.y2a4{bottom:413.498667pt;}
.y1e4{bottom:414.341333pt;}
.yb8{bottom:414.980000pt;}
.yb7{bottom:414.981467pt;}
.y2cd{bottom:415.273067pt;}
.y3d6{bottom:416.167200pt;}
.y123{bottom:416.569733pt;}
.y244{bottom:417.008000pt;}
.y3a{bottom:418.152667pt;}
.y1ff{bottom:418.341333pt;}
.y287{bottom:418.871600pt;}
.y289{bottom:418.934000pt;}
.y3a9{bottom:419.709467pt;}
.y1b1{bottom:421.008000pt;}
.yce{bottom:423.306667pt;}
.ycd{bottom:423.384133pt;}
.y373{bottom:426.752800pt;}
.y29{bottom:427.097200pt;}
.y354{bottom:427.992533pt;}
.y356{bottom:428.054800pt;}
.y67{bottom:428.139333pt;}
.y1e6{bottom:428.212800pt;}
.y3b7{bottom:428.538933pt;}
.y1d2{bottom:428.685200pt;}
.y47{bottom:429.008000pt;}
.ye4{bottom:429.879467pt;}
.yf{bottom:431.181200pt;}
.y396{bottom:431.273067pt;}
.y150{bottom:431.687867pt;}
.y162{bottom:431.761333pt;}
.y17b{bottom:432.346533pt;}
.y1bf{bottom:433.008000pt;}
.y2ea{bottom:433.335333pt;}
.y122{bottom:435.236400pt;}
.y2a0{bottom:436.018933pt;}
.y140{bottom:436.147333pt;}
.y1e3{bottom:437.008000pt;}
.y2cc{bottom:437.855600pt;}
.y3d5{bottom:438.749733pt;}
.y285{bottom:439.454267pt;}
.y243{bottom:439.674667pt;}
.y1fe{bottom:441.008000pt;}
.y18e{bottom:443.026400pt;}
.y1b0{bottom:443.674667pt;}
.y28{bottom:445.763867pt;}
.y66{bottom:446.806000pt;}
.y1e5{bottom:446.879467pt;}
.y1d1{bottom:447.351867pt;}
.y352{bottom:448.197067pt;}
.ye3{bottom:448.546133pt;}
.y333{bottom:449.263067pt;}
.y372{bottom:449.335333pt;}
.ye{bottom:449.847867pt;}
.y1bb{bottom:450.354533pt;}
.y46{bottom:451.674667pt;}
.y29f{bottom:452.018933pt;}
.y2a1{bottom:452.081200pt;}
.y312{bottom:452.806667pt;}
.y394{bottom:453.855600pt;}
.y121{bottom:453.903067pt;}
.y39{bottom:454.152667pt;}
.y17a{bottom:455.013200pt;}
.y284{bottom:455.391867pt;}
.y286{bottom:455.454267pt;}
.y1be{bottom:455.674667pt;}
.y2e9{bottom:455.917867pt;}
.y13f{bottom:458.814000pt;}
.y1e2{bottom:459.674667pt;}
.y2cb{bottom:460.438133pt;}
.y3d4{bottom:461.332133pt;}
.y242{bottom:462.341333pt;}
.y1fd{bottom:463.674667pt;}
.y351{bottom:464.134800pt;}
.y353{bottom:464.197067pt;}
.y27{bottom:464.430533pt;}
.y111{bottom:464.527333pt;}
.y65{bottom:465.472667pt;}
.y161{bottom:465.546133pt;}
.y1d0{bottom:466.018533pt;}
.y1af{bottom:466.341333pt;}
.yb5{bottom:467.546667pt;}
.yb4{bottom:467.616800pt;}
.y105{bottom:468.075867pt;}
.y98{bottom:468.169333pt;}
.y23f{bottom:468.361067pt;}
.yc2{bottom:468.937333pt;}
.y1a0{bottom:469.021200pt;}
.ya9{bottom:469.055200pt;}
.y393{bottom:469.855600pt;}
.y395{bottom:469.917867pt;}
.y332{bottom:471.467600pt;}
.y371{bottom:471.917867pt;}
.ybc{bottom:473.836000pt;}
.ya2{bottom:474.247733pt;}
.y45{bottom:474.341333pt;}
.y29e{bottom:474.601333pt;}
.y311{bottom:475.389200pt;}
.y179{bottom:477.679867pt;}
.y282{bottom:477.974400pt;}
.yc8{bottom:478.240000pt;}
.yc7{bottom:478.316933pt;}
.y1bd{bottom:478.341333pt;}
.y2e8{bottom:478.500267pt;}
.y3a8{bottom:479.278667pt;}
.y97{bottom:479.502667pt;}
.y18d{bottom:480.359733pt;}
.ye2{bottom:482.330933pt;}
.y1e1{bottom:482.341333pt;}
.y2ca{bottom:483.020533pt;}
.y26{bottom:483.097200pt;}
.y110{bottom:483.194000pt;}
.y3d3{bottom:483.914667pt;}
.y64{bottom:484.139333pt;}
.y241{bottom:485.008000pt;}
.y350{bottom:486.339333pt;}
.y1fc{bottom:486.341333pt;}
.y104{bottom:486.742533pt;}
.y23e{bottom:487.027733pt;}
.yd{bottom:487.181200pt;}
.y120{bottom:487.687867pt;}
.y3b6{bottom:488.470533pt;}
.y1ae{bottom:489.008000pt;}
.y38{bottom:490.152667pt;}
.y96{bottom:490.836000pt;}
.y391{bottom:492.438133pt;}
.y331{bottom:493.672267pt;}
.y281{bottom:493.974400pt;}
.y283{bottom:494.036800pt;}
.y370{bottom:494.500400pt;}
.y44{bottom:497.008000pt;}
.y29d{bottom:497.184000pt;}
.ybe{bottom:497.373333pt;}
.ybb{bottom:497.444667pt;}
.y310{bottom:497.971733pt;}
.y18c{bottom:499.026400pt;}
.y178{bottom:500.346533pt;}
.y1bc{bottom:501.008000pt;}
.y2e7{bottom:501.082800pt;}
.y25{bottom:501.763867pt;}
.y10f{bottom:501.860667pt;}
.y3a7{bottom:501.861200pt;}
.y81{bottom:502.169333pt;}
.y63{bottom:502.806000pt;}
.yb1{bottom:503.972000pt;}
.yb0{bottom:503.973600pt;}
.y1e0{bottom:505.008000pt;}
.y103{bottom:505.409200pt;}
.y2c9{bottom:505.603067pt;}
.y23d{bottom:505.694400pt;}
.yc{bottom:505.847867pt;}
.y19f{bottom:506.354533pt;}
.y3d2{bottom:506.497200pt;}
.y390{bottom:508.438133pt;}
.y392{bottom:508.500400pt;}
.y34f{bottom:508.544000pt;}
.y1fb{bottom:509.008000pt;}
.y13e{bottom:509.491200pt;}
.yc5{bottom:510.456000pt;}
.yc4{bottom:510.511733pt;}
.y1ad{bottom:511.674667pt;}
.y80{bottom:513.502667pt;}
.y36e{bottom:515.082933pt;}
.y330{bottom:515.876800pt;}
.y27e{bottom:516.556933pt;}
.y280{bottom:516.619333pt;}
.y18b{bottom:517.693067pt;}
.y43{bottom:519.674667pt;}
.y29c{bottom:519.766533pt;}
.yd9{bottom:519.841333pt;}
.yd8{bottom:519.910800pt;}
.y24{bottom:520.430533pt;}
.y10e{bottom:520.527333pt;}
.y30f{bottom:520.554400pt;}
.y62{bottom:521.472667pt;}
.y177{bottom:523.013200pt;}
.ye1{bottom:523.674667pt;}
.y102{bottom:524.075867pt;}
.y23c{bottom:524.361067pt;}
.y3a6{bottom:524.443733pt;}
.y7f{bottom:524.836000pt;}
.y11f{bottom:525.021200pt;}
.y37{bottom:526.152667pt;}
.y1df{bottom:527.674667pt;}
.y2c8{bottom:528.185600pt;}
.y3d1{bottom:529.079733pt;}
.y34e{bottom:530.748533pt;}
.y36d{bottom:531.020533pt;}
.y38f{bottom:531.020667pt;}
.y36f{bottom:531.082933pt;}
.y1fa{bottom:531.674667pt;}
.y27d{bottom:532.556933pt;}
.y27f{bottom:532.619333pt;}
.y240{bottom:535.685200pt;}
.y13d{bottom:536.157867pt;}
.y7e{bottom:536.169333pt;}
.y18a{bottom:536.359733pt;}
.y32f{bottom:538.081333pt;}
.y23{bottom:539.097200pt;}
.y10d{bottom:539.194000pt;}
.y61{bottom:540.139333pt;}
.y2e6{bottom:540.673200pt;}
.y42{bottom:542.341333pt;}
.y29b{bottom:542.349067pt;}
.y23b{bottom:543.027733pt;}
.y30e{bottom:543.136933pt;}
.yb{bottom:543.181200pt;}
.y11e{bottom:543.687867pt;}
.ye0{bottom:546.341333pt;}
.y3a5{bottom:547.026267pt;}
.y7d{bottom:547.502667pt;}
.y3b5{bottom:548.039867pt;}
.ya1{bottom:549.072000pt;}
.y1de{bottom:550.341333pt;}
.y34d{bottom:552.953067pt;}
.y27b{bottom:553.139600pt;}
.y36c{bottom:553.603200pt;}
.y1f9{bottom:554.341333pt;}
.y189{bottom:555.026400pt;}
.y22{bottom:557.763867pt;}
.y10c{bottom:557.860667pt;}
.y32d{bottom:558.285867pt;}
.y60{bottom:558.806000pt;}
.y7c{bottom:558.836000pt;}
.y101{bottom:561.409200pt;}
.y23a{bottom:561.694400pt;}
.ya{bottom:561.847867pt;}
.y36{bottom:562.152667pt;}
.y1ac{bottom:562.351867pt;}
.y11d{bottom:562.354533pt;}
.y13c{bottom:562.824533pt;}
.y29a{bottom:564.931600pt;}
.y41{bottom:565.008000pt;}
.y30d{bottom:565.719467pt;}
.y2c7{bottom:567.776000pt;}
.y3d0{bottom:568.670133pt;}
.ydf{bottom:569.008000pt;}
.y27a{bottom:569.077200pt;}
.y27c{bottom:569.139600pt;}
.y3a4{bottom:569.608800pt;}
.y83{bottom:570.169333pt;}
.y3b4{bottom:570.622400pt;}
.y1dd{bottom:573.008000pt;}
.y176{bottom:573.690400pt;}
.y188{bottom:573.693067pt;}
.y32c{bottom:574.223600pt;}
.y32e{bottom:574.285867pt;}
.y34c{bottom:575.157733pt;}
.y36b{bottom:576.185733pt;}
.y21{bottom:576.430533pt;}
.y10b{bottom:576.527333pt;}
.y1f8{bottom:577.008000pt;}
.y130{bottom:577.472667pt;}
.y100{bottom:580.075867pt;}
.y239{bottom:580.361067pt;}
.y9{bottom:580.514533pt;}
.y11c{bottom:581.021200pt;}
.y7b{bottom:581.502667pt;}
.y298{bottom:587.514133pt;}
.y30c{bottom:588.301867pt;}
.y1ab{bottom:589.018533pt;}
.y13b{bottom:589.491200pt;}
.y278{bottom:591.659733pt;}
.yde{bottom:591.674667pt;}
.y3a3{bottom:592.191333pt;}
.y187{bottom:592.359733pt;}
.y7a{bottom:592.836000pt;}
.y3b3{bottom:593.204933pt;}
.y10a{bottom:595.194000pt;}
.y1dc{bottom:595.674667pt;}
.y5f{bottom:596.139333pt;}
.y32b{bottom:596.428267pt;}
.y369{bottom:596.768267pt;}
.y34b{bottom:597.362267pt;}
.yff{bottom:598.742533pt;}
.y38e{bottom:598.768267pt;}
.y8{bottom:599.181200pt;}
.y1f7{bottom:599.674667pt;}
.y11b{bottom:599.687867pt;}
.y175{bottom:600.357067pt;}
.y2e5{bottom:600.604933pt;}
.y238{bottom:600.917467pt;}
.y297{bottom:603.514133pt;}
.y299{bottom:603.576400pt;}
.y79{bottom:604.169333pt;}
.y277{bottom:607.659733pt;}
.y279{bottom:607.722133pt;}
.y30a{bottom:610.884533pt;}
.y186{bottom:611.026400pt;}
.y368{bottom:612.705867pt;}
.y36a{bottom:612.768267pt;}
.y20{bottom:613.763867pt;}
.y109{bottom:613.860667pt;}
.y5e{bottom:614.806000pt;}
.y78{bottom:615.502667pt;}
.y40{bottom:615.685200pt;}
.y3b2{bottom:615.787467pt;}
.y237{bottom:616.117600pt;}
.y13a{bottom:616.157867pt;}
.yfe{bottom:617.409200pt;}
.y1db{bottom:618.341333pt;}
.y11a{bottom:618.354533pt;}
.y32a{bottom:618.632800pt;}
.y34a{bottom:619.566933pt;}
.y38d{bottom:621.350800pt;}
.y1f6{bottom:622.341333pt;}
.ya0{bottom:623.896267pt;}
.y295{bottom:626.096667pt;}
.y77{bottom:626.836000pt;}
.y309{bottom:626.884533pt;}
.y30b{bottom:626.946800pt;}
.y174{bottom:627.023733pt;}
.y2c6{bottom:627.707733pt;}
.y275{bottom:628.242267pt;}
.y3cf{bottom:628.601867pt;}
.y236{bottom:631.317467pt;}
.y3a2{bottom:631.781733pt;}
.y108{bottom:632.527333pt;}
.y5d{bottom:633.472667pt;}
.y367{bottom:635.288400pt;}
.yfd{bottom:636.075867pt;}
.y7{bottom:636.514533pt;}
.y119{bottom:637.021200pt;}
.y82{bottom:638.169333pt;}
.y3b1{bottom:638.370000pt;}
.y329{bottom:640.837467pt;}
.y349{bottom:641.771467pt;}
.y294{bottom:642.096667pt;}
.y296{bottom:642.159067pt;}
.y3f{bottom:642.351867pt;}
.y139{bottom:642.824533pt;}
.y38c{bottom:643.933333pt;}
.y274{bottom:644.180000pt;}
.y276{bottom:644.242267pt;}
.y185{bottom:644.811200pt;}
.y1f5{bottom:645.008000pt;}
.y308{bottom:649.467067pt;}
.y76{bottom:649.502667pt;}
.y1f{bottom:651.097200pt;}
.y5c{bottom:652.139333pt;}
.y173{bottom:653.690400pt;}
.yfc{bottom:654.742533pt;}
.y118{bottom:655.687867pt;}
.y366{bottom:657.870933pt;}
.y2e4{bottom:660.174267pt;}
.y75{bottom:660.836000pt;}
.y3b0{bottom:660.952533pt;}
.y328{bottom:663.042000pt;}
.y348{bottom:663.976133pt;}
.y293{bottom:664.679200pt;}
.y272{bottom:664.762533pt;}
.y3e{bottom:669.018533pt;}
.y138{bottom:669.491200pt;}
.y107{bottom:669.860667pt;}
.y5b{bottom:670.806000pt;}
.y306{bottom:672.049600pt;}
.y74{bottom:672.169333pt;}
.yfb{bottom:673.409200pt;}
.y6{bottom:673.847867pt;}
.y117{bottom:674.354533pt;}
.y172{bottom:680.357067pt;}
.y365{bottom:680.453467pt;}
.y271{bottom:680.700133pt;}
.y273{bottom:680.762533pt;}
.y184{bottom:682.144533pt;}
.y2e3{bottom:682.756800pt;}
.y73{bottom:683.502667pt;}
.y38b{bottom:683.523733pt;}
.y3af{bottom:683.535200pt;}
.y327{bottom:685.246533pt;}
.y3ce{bottom:686.171067pt;}
.y347{bottom:686.180667pt;}
.y292{bottom:687.261733pt;}
.y2c4{bottom:687.276933pt;}
.y305{bottom:688.049600pt;}
.y307{bottom:688.111867pt;}
.y1e{bottom:688.430533pt;}
.y106{bottom:688.527333pt;}
.y5a{bottom:689.472667pt;}
.y3a1{bottom:691.713333pt;}
.y116{bottom:693.021200pt;}
.y72{bottom:694.836000pt;}
.y3d{bottom:695.685200pt;}
.y137{bottom:696.157867pt;}
.y9f{bottom:698.720533pt;}
.y183{bottom:700.811200pt;}
.y3cd{bottom:702.108667pt;}
.y2c3{bottom:703.276933pt;}
.y270{bottom:703.282667pt;}
.y2c5{bottom:703.339333pt;}
.y3ae{bottom:706.117733pt;}
.y71{bottom:706.169333pt;}
.y171{bottom:707.023733pt;}
.yfa{bottom:707.194000pt;}
.y326{bottom:707.451200pt;}
.y59{bottom:708.139333pt;}
.y346{bottom:708.385200pt;}
.y291{bottom:709.844267pt;}
.y303{bottom:710.632133pt;}
.y5{bottom:711.181200pt;}
.y2e1{bottom:719.276933pt;}
.y2e2{bottom:719.339333pt;}
.y182{bottom:719.477867pt;}
.y364{bottom:720.043867pt;}
.y3c{bottom:722.351867pt;}
.y3cc{bottom:722.691333pt;}
.y136{bottom:722.824533pt;}
.y1d{bottom:725.763867pt;}
.y2c1{bottom:725.859600pt;}
.yf9{bottom:725.860667pt;}
.y26d{bottom:725.865200pt;}
.y26f{bottom:725.927600pt;}
.y302{bottom:726.632133pt;}
.y304{bottom:726.694400pt;}
.y58{bottom:726.806000pt;}
.y3ad{bottom:728.700133pt;}
.y325{bottom:729.655733pt;}
.y345{bottom:730.589733pt;}
.y290{bottom:732.426800pt;}
.y170{bottom:733.690400pt;}
.y181{bottom:738.144533pt;}
.y3cb{bottom:738.628933pt;}
.y2c0{bottom:741.859600pt;}
.y26c{bottom:741.865200pt;}
.y2c2{bottom:741.921867pt;}
.y26e{bottom:741.927600pt;}
.y38a{bottom:743.455333pt;}
.y4{bottom:748.514533pt;}
.yae{bottom:749.140000pt;}
.y301{bottom:749.214667pt;}
.yad{bottom:749.255467pt;}
.y3a0{bottom:751.282667pt;}
.y324{bottom:751.860400pt;}
.y344{bottom:752.794400pt;}
.y28f{bottom:755.009333pt;}
.yd6{bottom:756.000000pt;}
.yd5{bottom:756.068133pt;}
.y3ca{bottom:759.211600pt;}
.y2bf{bottom:764.442000pt;}
.y269{bottom:764.447867pt;}
.y26b{bottom:764.510133pt;}
.y300{bottom:771.797200pt;}
.y9e{bottom:773.544800pt;}
.y39f{bottom:773.865200pt;}
.y323{bottom:774.064800pt;}
.y343{bottom:774.998933pt;}
.y3c9{bottom:775.149200pt;}
.y363{bottom:779.975467pt;}
.y268{bottom:780.447867pt;}
.y26a{bottom:780.510133pt;}
.y2df{bottom:785.024533pt;}
.y3{bottom:785.847867pt;}
.y2bc{bottom:787.024533pt;}
.y2be{bottom:787.086933pt;}
.y2ff{bottom:794.379733pt;}
.y28e{bottom:794.599733pt;}
.y3c8{bottom:795.731733pt;}
.y322{bottom:796.269467pt;}
.y39e{bottom:796.447867pt;}
.y12f{bottom:796.778000pt;}
.y342{bottom:797.203467pt;}
.y2de{bottom:801.024533pt;}
.y3e0{bottom:802.736133pt;}
.y2bb{bottom:803.024533pt;}
.y265{bottom:803.030400pt;}
.y2bd{bottom:803.086933pt;}
.y267{bottom:803.092667pt;}
.y3c7{bottom:811.669467pt;}
.y1{bottom:812.100000pt;}
.y2dd{bottom:816.962267pt;}
.y2e0{bottom:817.024533pt;}
.y321{bottom:818.474000pt;}
.y264{bottom:819.030400pt;}
.y266{bottom:819.092667pt;}
.y341{bottom:819.408133pt;}
.y2b9{bottom:823.607067pt;}
.y389{bottom:825.607067pt;}
.y3c6{bottom:832.252000pt;}
.y3df{bottom:836.520933pt;}
.y2b8{bottom:839.544800pt;}
.y2ba{bottom:839.607067pt;}
.y320{bottom:840.678667pt;}
.yf8{bottom:841.637333pt;}
.y12e{bottom:842.111333pt;}
.y388{bottom:848.189600pt;}
.y28d{bottom:854.531333pt;}
.y3de{bottom:855.187600pt;}
.y340{bottom:858.620667pt;}
.y263{bottom:858.620800pt;}
.y2b7{bottom:862.127333pt;}
.y31f{bottom:862.883200pt;}
.y386{bottom:868.772267pt;}
.y2b6{bottom:884.709867pt;}
.y387{bottom:884.772267pt;}
.y31e{bottom:885.087867pt;}
.yf7{bottom:886.970667pt;}
.y12d{bottom:887.444667pt;}
.y3dd{bottom:888.972400pt;}
.y3dc{bottom:907.639067pt;}
.y262{bottom:918.552267pt;}
.y2b5{bottom:924.300267pt;}
.y3db{bottom:926.305733pt;}
.yf6{bottom:932.304000pt;}
.y12c{bottom:932.778000pt;}
.y3da{bottom:960.090533pt;}
.y3d9{bottom:978.757200pt;}
.y19e{bottom:981.586267pt;}
.y3d8{bottom:1012.542000pt;}
.ydd{bottom:1023.811733pt;}
.y113{bottom:1024.284133pt;}
.y35{bottom:1024.756667pt;}
.ydc{bottom:1041.674667pt;}
.y112{bottom:1042.147200pt;}
.y2{bottom:1042.619600pt;}
.y3d7{bottom:1046.326800pt;}
.h1e{height:0.126667pt;}
.h23{height:2.294667pt;}
.h1d{height:4.792000pt;}
.h20{height:4.793333pt;}
.h1b{height:4.853333pt;}
.h21{height:4.898667pt;}
.h22{height:4.908000pt;}
.h26{height:4.928000pt;}
.h1f{height:4.929333pt;}
.h1c{height:4.930667pt;}
.h24{height:4.957333pt;}
.h25{height:4.985333pt;}
.h1a{height:5.024000pt;}
.h19{height:5.026667pt;}
.h18{height:19.637005pt;}
.h15{height:30.634667pt;}
.h13{height:32.645833pt;}
.h12{height:32.687500pt;}
.h30{height:34.032000pt;}
.h11{height:34.261333pt;}
.h5{height:36.726562pt;}
.h4{height:36.773438pt;}
.h2e{height:38.544000pt;}
.h10{height:39.808000pt;}
.he{height:40.807292pt;}
.h14{height:41.380208pt;}
.h2f{height:44.695312pt;}
.h7{height:44.784000pt;}
.h2d{height:44.944379pt;}
.h31{height:44.944912pt;}
.h3{height:47.272000pt;}
.h17{height:48.968750pt;}
.hf{height:49.661458pt;}
.hd{height:53.049479pt;}
.hc{height:53.117188pt;}
.h16{height:57.491417pt;}
.h2c{height:59.712000pt;}
.h6{height:60.928000pt;}
.h2{height:62.200000pt;}
.hb{height:68.522667pt;}
.ha{height:79.616000pt;}
.h9{height:94.933333pt;}
.h2b{height:124.913333pt;}
.h28{height:125.052000pt;}
.h27{height:137.045333pt;}
.h8{height:238.848000pt;}
.h29{height:416.724800pt;}
.h2a{height:673.418133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:0.281333pt;}
.wa{width:3.186667pt;}
.w5{width:3.833333pt;}
.w10{width:4.450667pt;}
.w9{width:5.600000pt;}
.w4{width:6.969333pt;}
.w6{width:6.982667pt;}
.w3{width:7.202667pt;}
.w13{width:8.114667pt;}
.wb{width:8.461333pt;}
.w8{width:8.572000pt;}
.w11{width:8.586667pt;}
.wf{width:8.592000pt;}
.w12{width:8.598667pt;}
.wd{width:8.681333pt;}
.we{width:8.745333pt;}
.w2{width:8.764000pt;}
.w7{width:8.798667pt;}
.w14{width:364.158133pt;}
.w15{width:364.491467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x65{left:-3.915333pt;}
.x0{left:0.000000pt;}
.x5b{left:2.712400pt;}
.x67{left:4.266933pt;}
.x7{left:28.346533pt;}
.x77{left:32.126000pt;}
.x71{left:37.133867pt;}
.x6{left:43.464533pt;}
.x2{left:45.354267pt;}
.x6f{left:46.299200pt;}
.x78{left:47.244133pt;}
.x1{left:49.133867pt;}
.x56{left:50.186400pt;}
.x72{left:53.971333pt;}
.x3b{left:56.306000pt;}
.x14{left:58.909333pt;}
.x13{left:62.444667pt;}
.xd{left:64.814133pt;}
.xe{left:66.806133pt;}
.x11{left:69.158267pt;}
.xf{left:71.795067pt;}
.x38{left:73.635600pt;}
.x10{left:77.544933pt;}
.x79{left:83.149600pt;}
.x39{left:85.015867pt;}
.x15{left:85.967467pt;}
.x7c{left:86.929200pt;}
.x12{left:88.952267pt;}
.x3a{left:91.596667pt;}
.x5{left:98.267600pt;}
.xa{left:109.606267pt;}
.x35{left:124.724400pt;}
.x16{left:139.742267pt;}
.x6a{left:148.702133pt;}
.x3c{left:167.834667pt;}
.x6d{left:179.090533pt;}
.x4{left:226.771733pt;}
.x6c{left:240.536533pt;}
.x18{left:241.815333pt;}
.x40{left:245.684267pt;}
.x41{left:246.764000pt;}
.x25{left:247.771867pt;}
.x1e{left:249.866533pt;}
.x1c{left:252.122400pt;}
.x3e{left:253.715067pt;}
.x24{left:255.289867pt;}
.x1a{left:256.638667pt;}
.x3d{left:257.920533pt;}
.x19{left:259.175200pt;}
.x1b{left:260.319333pt;}
.x43{left:261.231867pt;}
.x3f{left:263.820133pt;}
.x22{left:265.150267pt;}
.x1f{left:267.768000pt;}
.x20{left:269.658000pt;}
.x23{left:273.506533pt;}
.x21{left:275.658400pt;}
.x47{left:277.040267pt;}
.x44{left:287.840133pt;}
.x7a{left:294.803067pt;}
.x1d{left:298.956400pt;}
.x5d{left:300.042133pt;}
.x17{left:304.042800pt;}
.x58{left:311.143733pt;}
.x45{left:312.818267pt;}
.x46{left:318.502933pt;}
.x26{left:322.760667pt;}
.x48{left:327.193600pt;}
.x62{left:340.315200pt;}
.x42{left:341.532133pt;}
.xb{left:343.341733pt;}
.x36{left:355.275600pt;}
.x49{left:390.944933pt;}
.x5e{left:399.228400pt;}
.x27{left:401.190000pt;}
.x5f{left:402.776000pt;}
.x6e{left:404.515867pt;}
.x9{left:408.189067pt;}
.x60{left:412.049467pt;}
.x55{left:415.093333pt;}
.x5c{left:430.197867pt;}
.x61{left:431.836267pt;}
.x69{left:434.786667pt;}
.x6b{left:464.529200pt;}
.x4f{left:482.274667pt;}
.x51{left:485.788267pt;}
.x4d{left:491.041600pt;}
.x4a{left:493.102800pt;}
.x4b{left:498.648533pt;}
.x50{left:506.374800pt;}
.x63{left:507.824267pt;}
.x52{left:510.246133pt;}
.x53{left:511.615733pt;}
.x32{left:514.272267pt;}
.x64{left:516.381333pt;}
.x4c{left:519.441867pt;}
.x29{left:524.409733pt;}
.x4e{left:526.157333pt;}
.x2c{left:528.840933pt;}
.x2b{left:530.542533pt;}
.x2a{left:532.973200pt;}
.x33{left:540.264933pt;}
.x28{left:542.185733pt;}
.x30{left:545.228000pt;}
.x68{left:548.816533pt;}
.x2d{left:552.935600pt;}
.x31{left:560.741067pt;}
.x2e{left:564.542400pt;}
.x7b{left:574.488133pt;}
.xc{left:576.872533pt;}
.x5a{left:577.852000pt;}
.x37{left:589.606267pt;}
.x2f{left:593.572000pt;}
.x54{left:614.125867pt;}
.x34{left:640.844267pt;}
.x66{left:643.543867pt;}
.x59{left:667.545067pt;}
.x75{left:719.930800pt;}
.x76{left:722.213467pt;}
.x73{left:725.178667pt;}
.x74{left:727.738667pt;}
.x70{left:730.200533pt;}
.x8{left:734.010533pt;}
.x57{left:736.357200pt;}
.x3{left:739.343867pt;}
}




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