
    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_701ae7e23738e46638c953d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0ded0414aaf0d7c5408b6336.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_c48080a1c52bbaa42d9d0263.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_00ef8ba63e67ee9e9da99008.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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_a8de300acb47287f0f59cecd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_a100c4a802a3c1e16c595298.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_886ae721be628e807cb1ef9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014160;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_eec24f2d5c5b2db97439787d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.200195;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_c8126451fcb1f4ff639181ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.206055;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_783732debfcfaed22095d6b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200195;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_c6a4bfbaf3ab8d5114231508.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909180;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_0e6c7405581658f280d5bb07.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_b37ef309b803108decd7fe03.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;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_886ae721be628e807cb1ef9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014160;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_9c947d001aa17b930f1ca443.woff2')format("woff");}.fff{font-family:fff;line-height:1.200195;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_40cb3762907907a785816de8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_2d2c4d0db2b114f70e7d8076.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.200195;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_c6a4bfbaf3ab8d5114231508.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.909180;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_2bc1047df72c1d38b33984aa.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.206055;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_14795f1266c0496d73759e3d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.014160;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_fbf4885afb1085032f6a2cad.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.172852;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_77260ead0f99d0ea06cb58c6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.172852;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_886ae721be628e807cb1ef9d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.014160;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_9e68d19cc531c7144dd71df5.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.200195;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_dc7a21f89728aa2fa90039a4.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.206055;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_c75af4496dcc1d608e89e097.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.200195;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_0be4817328299e54a518b4b1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;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_886ae721be628e807cb1ef9d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.014160;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_269d2fc0643fca52f249eb1a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.200195;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_dd3f36e118c0626fa07f7f02.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_b77b1263c118c3abe166b9c9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_10422cf41e821d151e98d134.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.200195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_d2548b78ae10575fa3da5b55.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.726000;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;}
.m24{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls11{letter-spacing:-0.425400px;}
.ls14{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.094800px;}
.ls12{letter-spacing:-0.065400px;}
.ls13{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.018000px;}
.lsc{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000009px;}
.ls6{letter-spacing:0.000044px;}
.ls23{letter-spacing:0.000088px;}
.ls4c{letter-spacing:0.000335px;}
.ls41{letter-spacing:0.000453px;}
.ls4a{letter-spacing:0.000478px;}
.ls4e{letter-spacing:0.000604px;}
.ls54{letter-spacing:0.000652px;}
.ls2c{letter-spacing:0.000676px;}
.ls20{letter-spacing:0.000800px;}
.ls1f{letter-spacing:0.001036px;}
.ls76{letter-spacing:0.001102px;}
.ls3f{letter-spacing:0.001155px;}
.ls1d{letter-spacing:0.001276px;}
.ls26{letter-spacing:0.001303px;}
.ls4f{letter-spacing:0.001319px;}
.ls42{letter-spacing:0.001746px;}
.ls59{letter-spacing:0.001831px;}
.ls9{letter-spacing:0.001952px;}
.ls4d{letter-spacing:0.001988px;}
.ls63{letter-spacing:0.002053px;}
.ls37{letter-spacing:0.002090px;}
.ls6f{letter-spacing:0.002096px;}
.ls38{letter-spacing:0.002212px;}
.ls2b{letter-spacing:0.002283px;}
.ls22{letter-spacing:0.002382px;}
.ls3e{letter-spacing:0.002544px;}
.ls3{letter-spacing:0.002725px;}
.ls2d{letter-spacing:0.002841px;}
.ls3b{letter-spacing:0.003040px;}
.ls27{letter-spacing:0.003075px;}
.ls1{letter-spacing:0.003116px;}
.ls68{letter-spacing:0.003239px;}
.ls8{letter-spacing:0.003488px;}
.ls40{letter-spacing:0.003752px;}
.ls6a{letter-spacing:0.003828px;}
.ls29{letter-spacing:0.004028px;}
.ls69{letter-spacing:0.004122px;}
.ls46{letter-spacing:0.004800px;}
.ls6b{letter-spacing:0.004968px;}
.ls2e{letter-spacing:0.005075px;}
.ls0{letter-spacing:0.005572px;}
.ls1b{letter-spacing:0.137400px;}
.ls15{letter-spacing:0.139800px;}
.ls1c{letter-spacing:0.145200px;}
.ls19{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.180000px;}
.ls10{letter-spacing:2.700000px;}
.ls2{letter-spacing:10.461300px;}
.lsb{letter-spacing:11.954850px;}
.ls60{letter-spacing:12.319788px;}
.ls45{letter-spacing:12.625910px;}
.ls52{letter-spacing:12.742237px;}
.ls28{letter-spacing:13.016477px;}
.ls36{letter-spacing:13.167296px;}
.ls77{letter-spacing:13.192765px;}
.ls30{letter-spacing:13.200598px;}
.ls70{letter-spacing:13.252465px;}
.ls32{letter-spacing:13.276602px;}
.ls62{letter-spacing:13.281963px;}
.ls33{letter-spacing:13.282543px;}
.ls3c{letter-spacing:13.293763px;}
.ls5c{letter-spacing:13.321006px;}
.ls72{letter-spacing:13.345652px;}
.ls71{letter-spacing:13.347617px;}
.ls66{letter-spacing:13.352795px;}
.ls39{letter-spacing:13.395022px;}
.ls2a{letter-spacing:13.395330px;}
.ls6e{letter-spacing:13.421786px;}
.ls25{letter-spacing:13.433048px;}
.ls5d{letter-spacing:13.440196px;}
.ls35{letter-spacing:13.448400px;}
.ls47{letter-spacing:13.454400px;}
.ls4b{letter-spacing:13.471929px;}
.ls55{letter-spacing:13.502207px;}
.ls53{letter-spacing:13.526255px;}
.ls1e{letter-spacing:13.550400px;}
.ls50{letter-spacing:13.574594px;}
.ls64{letter-spacing:13.595901px;}
.ls74{letter-spacing:13.614101px;}
.ls75{letter-spacing:13.625929px;}
.ls5b{letter-spacing:13.626697px;}
.ls6d{letter-spacing:13.632969px;}
.ls57{letter-spacing:13.638195px;}
.ls58{letter-spacing:13.640194px;}
.ls21{letter-spacing:13.647763px;}
.ls6c{letter-spacing:13.677930px;}
.ls3a{letter-spacing:13.681631px;}
.ls5f{letter-spacing:13.743061px;}
.ls67{letter-spacing:13.745522px;}
.ls5a{letter-spacing:13.745919px;}
.ls56{letter-spacing:13.758139px;}
.ls65{letter-spacing:13.807543px;}
.ls73{letter-spacing:13.944518px;}
.ls49{letter-spacing:14.550400px;}
.ls3d{letter-spacing:14.868047px;}
.ls18{letter-spacing:15.003676px;}
.ls43{letter-spacing:15.113510px;}
.lse{letter-spacing:15.123227px;}
.ls44{letter-spacing:15.591576px;}
.ls2f{letter-spacing:16.220988px;}
.ls61{letter-spacing:16.356282px;}
.ls48{letter-spacing:16.615106px;}
.ls24{letter-spacing:16.699268px;}
.ls51{letter-spacing:17.156282px;}
.ls5e{letter-spacing:17.632753px;}
.ls5{letter-spacing:17.929200px;}
.ls78{letter-spacing:18.879812px;}
.ls34{letter-spacing:19.168047px;}
.ls4{letter-spacing:57.415200px;}
.ls7{letter-spacing:62.761200px;}
.lsa{letter-spacing:64.321654px;}
.lsd{letter-spacing:92.438700px;}
.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;}
}
.ws72{word-spacing:-15.210000px;}
.ws9e{word-spacing:-15.175200px;}
.ws7c{word-spacing:-15.169800px;}
.ws7d{word-spacing:-15.030000px;}
.ws71{word-spacing:-14.976720px;}
.ws70{word-spacing:-14.964600px;}
.wsf{word-spacing:-14.943900px;}
.ws7b{word-spacing:-14.850000px;}
.ws6f{word-spacing:-14.604600px;}
.ws85{word-spacing:-13.662000px;}
.ws6e{word-spacing:-13.500000px;}
.wsb9{word-spacing:-13.449600px;}
.ws7f{word-spacing:-12.231120px;}
.ws7e{word-spacing:-12.204000px;}
.ws6c{word-spacing:-12.150000px;}
.ws87{word-spacing:-12.107400px;}
.ws6d{word-spacing:-11.970000px;}
.ws16{word-spacing:-11.955150px;}
.ws86{word-spacing:-11.875200px;}
.wsd{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.wsa3{word-spacing:-3.287658px;}
.ws83{word-spacing:-3.108331px;}
.wsba{word-spacing:-2.797517px;}
.wsaf{word-spacing:-2.749678px;}
.wscc{word-spacing:-2.743718px;}
.wsae{word-spacing:-2.271473px;}
.wscd{word-spacing:-1.882944px;}
.ws47{word-spacing:-1.793268px;}
.wsa0{word-spacing:-1.733492px;}
.wsa2{word-spacing:-1.673717px;}
.wsd1{word-spacing:-1.667750px;}
.ws2f{word-spacing:-1.613941px;}
.ws30{word-spacing:-1.554166px;}
.ws10b{word-spacing:-1.506355px;}
.ws2c{word-spacing:-1.374839px;}
.wsa6{word-spacing:-1.315063px;}
.ws109{word-spacing:-1.183565px;}
.wse6{word-spacing:-1.129766px;}
.wse5{word-spacing:-1.101776px;}
.wse4{word-spacing:-1.075968px;}
.ws110{word-spacing:-0.968371px;}
.ws133{word-spacing:-0.914573px;}
.ws9c{word-spacing:-0.777083px;}
.wsd0{word-spacing:-0.709477px;}
.ws92{word-spacing:-0.699379px;}
.ws146{word-spacing:-0.645581px;}
.wsbb{word-spacing:-0.591782px;}
.wscb{word-spacing:-0.485848px;}
.wsca{word-spacing:-0.484186px;}
.wsb3{word-spacing:-0.478205px;}
.wsec{word-spacing:-0.430387px;}
.ws102{word-spacing:-0.376589px;}
.ws3e{word-spacing:-0.358654px;}
.wsb8{word-spacing:-0.322790px;}
.ws3f{word-spacing:-0.298878px;}
.ws1f{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.wsd4{word-spacing:-0.215194px;}
.ws31{word-spacing:-0.179327px;}
.ws101{word-spacing:-0.168181px;}
.ws1a{word-spacing:-0.161395px;}
.ws135{word-spacing:-0.120941px;}
.ws3b{word-spacing:-0.119551px;}
.ws21{word-spacing:-0.107597px;}
.ws10{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.ws17{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.ws11e{word-spacing:-0.013440px;}
.ws11c{word-spacing:-0.009187px;}
.ws132{word-spacing:-0.008429px;}
.ws10a{word-spacing:-0.008237px;}
.wsf5{word-spacing:-0.006768px;}
.wsfa{word-spacing:-0.006394px;}
.ws137{word-spacing:-0.006067px;}
.ws114{word-spacing:-0.005971px;}
.ws108{word-spacing:-0.005155px;}
.ws136{word-spacing:-0.004867px;}
.ws117{word-spacing:-0.003754px;}
.ws12{word-spacing:-0.003676px;}
.ws100{word-spacing:-0.003610px;}
.ws121{word-spacing:-0.003187px;}
.ws139{word-spacing:-0.002630px;}
.ws12d{word-spacing:-0.002496px;}
.ws106{word-spacing:-0.002237px;}
.ws103{word-spacing:-0.001296px;}
.wsc{word-spacing:-0.000854px;}
.ws13c{word-spacing:-0.000845px;}
.ws14{word-spacing:-0.000266px;}
.ws11{word-spacing:-0.000008px;}
.ws1{word-spacing:0.000000px;}
.ws2d{word-spacing:0.002203px;}
.ws13{word-spacing:0.002324px;}
.ws13a{word-spacing:0.003098px;}
.ws111{word-spacing:0.051064px;}
.ws10e{word-spacing:0.051385px;}
.ws20{word-spacing:0.053798px;}
.ws2b{word-spacing:0.059776px;}
.ws113{word-spacing:0.066038px;}
.ws4{word-spacing:0.083686px;}
.ws88{word-spacing:0.107597px;}
.ws33{word-spacing:0.119551px;}
.ws125{word-spacing:0.144793px;}
.wsc3{word-spacing:0.161395px;}
.ws28{word-spacing:0.179327px;}
.ws15{word-spacing:0.191282px;}
.ws73{word-spacing:0.215194px;}
.wsda{word-spacing:0.231417px;}
.ws29{word-spacing:0.239102px;}
.wsf2{word-spacing:0.248975px;}
.wsbc{word-spacing:0.268992px;}
.ws4a{word-spacing:0.298878px;}
.wsce{word-spacing:0.322790px;}
.ws4f{word-spacing:0.358654px;}
.ws104{word-spacing:0.376589px;}
.ws11b{word-spacing:0.430387px;}
.ws24{word-spacing:0.478205px;}
.ws10c{word-spacing:0.484186px;}
.wsa8{word-spacing:0.537980px;}
.ws10d{word-spacing:0.537984px;}
.ws145{word-spacing:0.591782px;}
.ws4c{word-spacing:0.597756px;}
.ws107{word-spacing:0.645581px;}
.ws80{word-spacing:0.657532px;}
.wsa1{word-spacing:0.717307px;}
.wse7{word-spacing:0.753178px;}
.wsaa{word-spacing:0.777083px;}
.wsf4{word-spacing:0.806976px;}
.wsb0{word-spacing:0.836858px;}
.ws13b{word-spacing:0.860774px;}
.wsa4{word-spacing:0.956410px;}
.ws51{word-spacing:1.075961px;}
.wse0{word-spacing:1.075968px;}
.ws40{word-spacing:1.135736px;}
.ws123{word-spacing:1.183565px;}
.ws5a{word-spacing:1.195512px;}
.ws4d{word-spacing:1.255288px;}
.ws26{word-spacing:1.315063px;}
.wsc5{word-spacing:1.344960px;}
.ws53{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws1b{word-spacing:1.398758px;}
.ws98{word-spacing:1.434614px;}
.ws37{word-spacing:1.494390px;}
.wseb{word-spacing:1.506355px;}
.ws32{word-spacing:1.554166px;}
.wsfe{word-spacing:1.560154px;}
.wse8{word-spacing:1.613952px;}
.ws1d{word-spacing:1.667750px;}
.ws3d{word-spacing:1.673717px;}
.ws38{word-spacing:1.733492px;}
.ws59{word-spacing:1.793268px;}
.wscf{word-spacing:1.829146px;}
.ws124{word-spacing:1.882944px;}
.ws43{word-spacing:1.912819px;}
.ws1e{word-spacing:1.990541px;}
.ws11d{word-spacing:2.044339px;}
.ws129{word-spacing:2.098138px;}
.ws42{word-spacing:2.151922px;}
.wsd2{word-spacing:2.151936px;}
.wsd3{word-spacing:2.181638px;}
.ws6a{word-spacing:2.211697px;}
.ws130{word-spacing:2.259533px;}
.ws75{word-spacing:2.271473px;}
.ws57{word-spacing:2.331248px;}
.ws144{word-spacing:2.367130px;}
.ws9f{word-spacing:2.450800px;}
.wsf7{word-spacing:2.474726px;}
.ws0{word-spacing:2.511541px;}
.ws5{word-spacing:2.513203px;}
.wsa7{word-spacing:2.570351px;}
.ws9a{word-spacing:2.630126px;}
.ws55{word-spacing:2.689902px;}
.ws25{word-spacing:2.749678px;}
.wsf6{word-spacing:2.797517px;}
.wsd8{word-spacing:2.851315px;}
.ws50{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.ws10f{word-spacing:2.905114px;}
.wsc2{word-spacing:2.917225px;}
.ws36{word-spacing:2.929004px;}
.ws12e{word-spacing:2.958912px;}
.ws74{word-spacing:2.988780px;}
.ws13f{word-spacing:3.001906px;}
.wsd5{word-spacing:3.012710px;}
.ws19{word-spacing:3.020430px;}
.ws5b{word-spacing:3.048556px;}
.wsd7{word-spacing:3.066509px;}
.wsd6{word-spacing:3.100991px;}
.wsde{word-spacing:3.106092px;}
.ws3c{word-spacing:3.108331px;}
.wsdf{word-spacing:3.120307px;}
.ws6b{word-spacing:3.168107px;}
.wsf9{word-spacing:3.174106px;}
.ws13e{word-spacing:3.187616px;}
.ws12b{word-spacing:3.216941px;}
.wse9{word-spacing:3.217344px;}
.ws11a{word-spacing:3.218650px;}
.wsf1{word-spacing:3.218880px;}
.wsdd{word-spacing:3.219571px;}
.ws22{word-spacing:3.219667px;}
.ws105{word-spacing:3.219955px;}
.wsdb{word-spacing:3.220109px;}
.ws147{word-spacing:3.220579px;}
.ws12c{word-spacing:3.220694px;}
.ws138{word-spacing:3.220790px;}
.ws122{word-spacing:3.221875px;}
.wsea{word-spacing:3.222758px;}
.wsfd{word-spacing:3.224333px;}
.ws116{word-spacing:3.224458px;}
.wsef{word-spacing:3.224630px;}
.wsbd{word-spacing:3.224822px;}
.ws12a{word-spacing:3.225562px;}
.ws12f{word-spacing:3.225677px;}
.ws120{word-spacing:3.225946px;}
.ws9d{word-spacing:3.227882px;}
.wsc9{word-spacing:3.227904px;}
.wsff{word-spacing:3.281702px;}
.ws34{word-spacing:3.287658px;}
.ws112{word-spacing:3.335501px;}
.wsb5{word-spacing:3.347434px;}
.wsc4{word-spacing:3.389299px;}
.ws134{word-spacing:3.410402px;}
.wsc6{word-spacing:3.443098px;}
.ws141{word-spacing:3.446327px;}
.ws97{word-spacing:3.466985px;}
.wsc8{word-spacing:3.496896px;}
.ws23{word-spacing:3.586536px;}
.ws52{word-spacing:3.646312px;}
.ws119{word-spacing:3.658291px;}
.ws54{word-spacing:3.706087px;}
.ws8a{word-spacing:3.712090px;}
.ws79{word-spacing:3.765863px;}
.ws89{word-spacing:3.765888px;}
.ws4b{word-spacing:3.825638px;}
.wsc0{word-spacing:3.873485px;}
.wsee{word-spacing:3.981082px;}
.ws44{word-spacing:4.004965px;}
.wsb4{word-spacing:4.184292px;}
.ws49{word-spacing:4.244068px;}
.ws149{word-spacing:4.250074px;}
.ws148{word-spacing:4.303872px;}
.ws41{word-spacing:4.363619px;}
.wsc7{word-spacing:4.411469px;}
.wsa5{word-spacing:4.423394px;}
.wsd9{word-spacing:4.519066px;}
.wsb6{word-spacing:4.542946px;}
.ws46{word-spacing:4.662497px;}
.ws115{word-spacing:4.680461px;}
.ws140{word-spacing:4.697273px;}
.ws9b{word-spacing:4.722272px;}
.ws99{word-spacing:4.782048px;}
.wse1{word-spacing:4.788058px;}
.wsad{word-spacing:4.841824px;}
.wse2{word-spacing:4.841856px;}
.wsdc{word-spacing:4.895654px;}
.ws58{word-spacing:4.961375px;}
.ws81{word-spacing:5.021150px;}
.ws3a{word-spacing:5.320028px;}
.ws4e{word-spacing:5.439580px;}
.ws9{word-spacing:5.481407px;}
.ws13d{word-spacing:5.487437px;}
.ws35{word-spacing:5.559131px;}
.ws69{word-spacing:5.678682px;}
.wsf0{word-spacing:5.810227px;}
.ws11f{word-spacing:5.864026px;}
.wsab{word-spacing:6.037336px;}
.ws27{word-spacing:6.156887px;}
.wsfc{word-spacing:6.186816px;}
.ws84{word-spacing:6.216662px;}
.wsa9{word-spacing:6.336214px;}
.ws68{word-spacing:6.395989px;}
.wsbe{word-spacing:6.671002px;}
.ws56{word-spacing:6.694867px;}
.wsbf{word-spacing:6.724800px;}
.wsb2{word-spacing:6.754643px;}
.wsc1{word-spacing:6.832397px;}
.wsed{word-spacing:6.993792px;}
.ws96{word-spacing:7.113296px;}
.ws39{word-spacing:7.292623px;}
.wsb7{word-spacing:7.412174px;}
.ws127{word-spacing:7.424179px;}
.wsfb{word-spacing:7.531776px;}
.ws118{word-spacing:7.639373px;}
.wsac{word-spacing:7.770828px;}
.wsf3{word-spacing:8.177357px;}
.wsb1{word-spacing:8.249033px;}
.wse3{word-spacing:8.683250px;}
.ws126{word-spacing:9.307123px;}
.ws7{word-spacing:9.833058px;}
.ws67{word-spacing:9.862974px;}
.ws143{word-spacing:10.114099px;}
.ws131{word-spacing:10.544486px;}
.wsf8{word-spacing:11.136269px;}
.ws8{word-spacing:11.841512px;}
.ws142{word-spacing:12.212237px;}
.ws128{word-spacing:13.557197px;}
.wse{word-spacing:14.884124px;}
.ws6{word-spacing:22.339429px;}
.wsa{word-spacing:22.720640px;}
.ws91{word-spacing:600.497741px;}
.ws8d{word-spacing:627.504538px;}
.ws8b{word-spacing:662.742490px;}
.ws76{word-spacing:671.404032px;}
.ws77{word-spacing:684.853632px;}
.ws78{word-spacing:698.303232px;}
.ws93{word-spacing:726.117005px;}
.ws90{word-spacing:738.114048px;}
.ws8e{word-spacing:797.023296px;}
.ws94{word-spacing:802.403136px;}
.ws8f{word-spacing:806.976000px;}
.ws8c{word-spacing:815.745139px;}
.ws95{word-spacing:817.197696px;}
.ws48{word-spacing:819.457229px;}
.ws5c{word-spacing:965.035699px;}
.ws82{word-spacing:975.149798px;}
.ws5d{word-spacing:1389.989261px;}
.ws5e{word-spacing:1423.989850px;}
.ws5f{word-spacing:1427.594342px;}
.ws66{word-spacing:1499.684198px;}
.ws62{word-spacing:1522.494720px;}
.ws65{word-spacing:1546.972992px;}
.ws60{word-spacing:1563.058714px;}
.ws63{word-spacing:1599.641626px;}
.ws61{word-spacing:1604.752474px;}
.ws64{word-spacing:1619.170445px;}
.ws2e{word-spacing:2664.200250px;}
.ws45{word-spacing:2665.400250px;}
.ws7a{word-spacing:2666.594250px;}
._51{margin-left:-19.875398px;}
._4c{margin-left:-7.429189px;}
._6{margin-left:-6.175747px;}
._0{margin-left:-4.643567px;}
._10{margin-left:-2.958912px;}
._2{margin-left:-1.506341px;}
._32{width:1.003253px;}
._27{width:2.014330px;}
._4{width:3.429588px;}
._2a{width:4.539900px;}
._29{width:5.710440px;}
._28{width:6.896160px;}
._30{width:8.176320px;}
._31{width:9.438840px;}
._4e{width:10.663560px;}
._52{width:11.921106px;}
._3{width:12.971268px;}
._5{width:14.824386px;}
._7{width:16.462310px;}
._c{width:18.004406px;}
._9{width:19.690214px;}
._8{width:21.357965px;}
._b{width:22.714728px;}
._13{width:23.730913px;}
._54{width:24.748623px;}
._1{width:25.940136px;}
._a{width:27.257674px;}
._3e{width:28.643836px;}
._14{width:30.556883px;}
._e{width:31.854270px;}
._4d{width:32.936356px;}
._50{width:34.203475px;}
._25{width:36.695239px;}
._15{width:39.093242px;}
._4f{width:43.755739px;}
._53{width:61.868160px;}
._33{width:147.384000px;}
._11{width:199.323072px;}
._41{width:249.247987px;}
._2c{width:329.246208px;}
._2b{width:362.456725px;}
._40{width:374.598259px;}
._3f{width:387.725069px;}
._45{width:428.611853px;}
._46{width:487.682496px;}
._48{width:489.995827px;}
._49{width:529.752845px;}
._43{width:541.319501px;}
._4b{width:543.525235px;}
._44{width:584.412019px;}
._4a{width:616.960051px;}
._47{width:633.906547px;}
._2d{width:731.981030px;}
._d{width:734.689980px;}
._2e{width:745.430630px;}
._3b{width:755.706125px;}
._2f{width:758.880230px;}
._3d{width:790.406093px;}
._1f{width:797.830272px;}
._1e{width:798.960038px;}
._38{width:820.049011px;}
._f{width:836.780314px;}
._42{width:863.200800px;}
._34{width:870.942298px;}
._19{width:902.646460px;}
._23{width:931.519296px;}
._18{width:935.355887px;}
._35{width:941.149210px;}
._17{width:967.204525px;}
._16{width:1013.669453px;}
._22{width:1042.451597px;}
._20{width:1064.293747px;}
._3c{width:1101.468442px;}
._1c{width:1111.596050px;}
._21{width:1150.693978px;}
._37{width:1157.203584px;}
._36{width:1193.803386px;}
._3a{width:1198.359360px;}
._1d{width:1211.378573px;}
._24{width:1226.818714px;}
._12{width:1235.587853px;}
._1b{width:1237.901184px;}
._1a{width:1425.765197px;}
._39{width:1427.809536px;}
._26{width:2259.416520px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs6{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:54.120000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.yf2{bottom:-806.188500px;}
.y12e{bottom:-805.008000px;}
.y150{bottom:-718.608000px;}
.y195{bottom:-717.658500px;}
.y14f{bottom:-699.348000px;}
.y14e{bottom:-680.178000px;}
.y14d{bottom:-660.918000px;}
.y110{bottom:-656.338500px;}
.y1b7{bottom:-648.448500px;}
.y14c{bottom:-641.748000px;}
.y10f{bottom:-637.168500px;}
.y1b6{bottom:-629.188500px;}
.y14b{bottom:-622.488000px;}
.y10e{bottom:-613.498500px;}
.y1b5{bottom:-610.018500px;}
.y14a{bottom:-603.198000px;}
.y149{bottom:-584.028000px;}
.y10d{bottom:-574.408500px;}
.y1b4{bottom:-571.858500px;}
.y148{bottom:-564.768000px;}
.y1b3{bottom:-554.938500px;}
.y10c{bottom:-554.158500px;}
.y147{bottom:-545.508000px;}
.y1b2{bottom:-538.018500px;}
.y10b{bottom:-533.908500px;}
.y146{bottom:-526.338000px;}
.y1b1{bottom:-521.068500px;}
.y10a{bottom:-512.938500px;}
.y1b0{bottom:-504.148500px;}
.y145{bottom:-502.668000px;}
.y1af{bottom:-487.138500px;}
.y109{bottom:-482.878500px;}
.y1ae{bottom:-470.218500px;}
.y144{bottom:-463.608000px;}
.y1ad{bottom:-453.298500px;}
.y108{bottom:-447.148500px;}
.y143{bottom:-443.358000px;}
.y1ac{bottom:-436.378500px;}
.y107{bottom:-427.978500px;}
.y142{bottom:-423.108000px;}
.y1ab{bottom:-419.368500px;}
.y106{bottom:-408.718500px;}
.y141{bottom:-402.858000px;}
.y1aa{bottom:-402.448500px;}
.y105{bottom:-389.458500px;}
.y1a9{bottom:-385.528500px;}
.y140{bottom:-382.698000px;}
.y104{bottom:-370.288500px;}
.y1a8{bottom:-368.608500px;}
.y13f{bottom:-362.448000px;}
.y1a7{bottom:-351.688500px;}
.y103{bottom:-351.028500px;}
.y13e{bottom:-342.198000px;}
.y1a6{bottom:-334.678500px;}
.y102{bottom:-327.358500px;}
.y13d{bottom:-321.948000px;}
.y1a5{bottom:-317.758500px;}
.y13c{bottom:-301.698000px;}
.y1a4{bottom:-300.838500px;}
.y101{bottom:-290.098500px;}
.y1a3{bottom:-283.918500px;}
.y13b{bottom:-281.448000px;}
.y100{bottom:-270.838500px;}
.y1a2{bottom:-266.998500px;}
.y13a{bottom:-260.478000px;}
.yff{bottom:-251.668500px;}
.y1a1{bottom:-249.988500px;}
.y1a0{bottom:-233.068500px;}
.yfe{bottom:-232.408500px;}
.y139{bottom:-230.418000px;}
.yfd{bottom:-213.238500px;}
.y19f{bottom:-206.158500px;}
.y138{bottom:-194.688000px;}
.yfc{bottom:-193.978500px;}
.y19e{bottom:-188.788500px;}
.y137{bottom:-175.488000px;}
.yfb{bottom:-174.688500px;}
.y136{bottom:-156.228000px;}
.yfa{bottom:-155.518500px;}
.y19d{bottom:-153.148500px;}
.y1d9{bottom:-150.466500px;}
.y135{bottom:-137.058000px;}
.yf9{bottom:-136.258500px;}
.y19c{bottom:-133.888500px;}
.y134{bottom:-117.798000px;}
.yf8{bottom:-117.088500px;}
.y19b{bottom:-114.718500px;}
.y133{bottom:-98.538000px;}
.yf7{bottom:-97.828500px;}
.y132{bottom:-79.368000px;}
.yf6{bottom:-78.568500px;}
.y19a{bottom:-77.878500px;}
.y199{bottom:-60.508500px;}
.y131{bottom:-55.608000px;}
.y1fb{bottom:-54.436500px;}
.y198{bottom:-43.138500px;}
.yf5{bottom:-41.758500px;}
.y1fa{bottom:-37.066500px;}
.y197{bottom:-25.858500px;}
.yf4{bottom:-24.388500px;}
.y1f9{bottom:-19.786500px;}
.y130{bottom:-18.798000px;}
.y196{bottom:-3.448500px;}
.yf3{bottom:-1.978500px;}
.y0{bottom:0.000000px;}
.y1f8{bottom:2.623500px;}
.y12f{bottom:3.702000px;}
.y170{bottom:17.670000px;}
.y47{bottom:31.890000px;}
.y167{bottom:43.980000px;}
.y168{bottom:47.490000px;}
.y16d{bottom:61.080000px;}
.y164{bottom:61.260000px;}
.y161{bottom:62.940000px;}
.y16b{bottom:66.390000px;}
.y16c{bottom:68.490000px;}
.y15c{bottom:70.710000px;}
.y162{bottom:72.510000px;}
.y165{bottom:72.900000px;}
.y169{bottom:73.230000px;}
.y15f{bottom:74.580000px;}
.y160{bottom:80.070000px;}
.y163{bottom:80.550000px;}
.y15d{bottom:81.540000px;}
.y16a{bottom:84.270000px;}
.y16e{bottom:84.330000px;}
.y166{bottom:87.900000px;}
.y15b{bottom:88.800000px;}
.y15e{bottom:95.820000px;}
.y18{bottom:104.646000px;}
.y46{bottom:105.043500px;}
.y1fe{bottom:115.783500px;}
.y152{bottom:116.160000px;}
.y29b{bottom:116.458500px;}
.y23a{bottom:118.699500px;}
.y216{bottom:119.148000px;}
.y22b{bottom:119.596500px;}
.y17{bottom:122.535000px;}
.y45{bottom:123.873000px;}
.yac{bottom:126.013500px;}
.y153{bottom:130.230000px;}
.y29a{bottom:133.719000px;}
.y1fd{bottom:135.016500px;}
.y7a{bottom:137.080500px;}
.y239{bottom:137.529000px;}
.y215{bottom:137.977500px;}
.y22a{bottom:138.426000px;}
.y16{bottom:140.422500px;}
.y44{bottom:142.702500px;}
.y154{bottom:144.300000px;}
.yab{bottom:144.843000px;}
.y299{bottom:150.978000px;}
.y1fc{bottom:154.249500px;}
.y79{bottom:155.910000px;}
.y238{bottom:156.358500px;}
.y191{bottom:156.370500px;}
.y214{bottom:156.807000px;}
.y229{bottom:157.255500px;}
.y15{bottom:158.310000px;}
.y155{bottom:158.370000px;}
.y43{bottom:161.532000px;}
.yaa{bottom:163.672500px;}
.y298{bottom:168.238500px;}
.y265{bottom:169.741500px;}
.y156{bottom:172.440000px;}
.y1d5{bottom:172.929000px;}
.y78{bottom:174.739500px;}
.y237{bottom:175.188000px;}
.y190{bottom:175.200000px;}
.y213{bottom:175.636500px;}
.y228{bottom:176.085000px;}
.y14{bottom:176.199000px;}
.y1d6{bottom:176.679000px;}
.y42{bottom:180.361500px;}
.ya9{bottom:182.502000px;}
.y297{bottom:185.499000px;}
.y157{bottom:186.480000px;}
.y264{bottom:187.002000px;}
.y1d4{bottom:190.114500px;}
.y77{bottom:193.569000px;}
.y236{bottom:194.017500px;}
.y18f{bottom:194.029500px;}
.y13{bottom:194.086500px;}
.y212{bottom:194.466000px;}
.y227{bottom:194.914500px;}
.y41{bottom:199.191000px;}
.y158{bottom:200.550000px;}
.ya8{bottom:201.330000px;}
.y296{bottom:202.759500px;}
.y263{bottom:204.262500px;}
.y1d3{bottom:207.300000px;}
.y12{bottom:211.974000px;}
.y235{bottom:212.847000px;}
.y18e{bottom:212.859000px;}
.y211{bottom:213.295500px;}
.y226{bottom:213.744000px;}
.yee{bottom:214.216500px;}
.y159{bottom:214.620000px;}
.y76{bottom:216.882000px;}
.y40{bottom:218.020500px;}
.y295{bottom:220.020000px;}
.ya7{bottom:220.159500px;}
.y262{bottom:221.523000px;}
.y1d2{bottom:224.485500px;}
.y15a{bottom:228.690000px;}
.y11{bottom:229.863000px;}
.ybf{bottom:230.779500px;}
.y234{bottom:231.676500px;}
.y18d{bottom:231.688500px;}
.y210{bottom:232.125000px;}
.y225{bottom:232.573500px;}
.yed{bottom:233.046000px;}
.y3f{bottom:236.848500px;}
.y294{bottom:237.280500px;}
.y261{bottom:238.783500px;}
.ya6{bottom:238.989000px;}
.y1d1{bottom:241.671000px;}
.ybe{bottom:249.609000px;}
.y75{bottom:250.506000px;}
.y18c{bottom:250.518000px;}
.y20f{bottom:250.954500px;}
.y224{bottom:251.403000px;}
.yec{bottom:251.875500px;}
.y16f{bottom:254.040000px;}
.y293{bottom:254.541000px;}
.y3e{bottom:255.678000px;}
.y260{bottom:256.042500px;}
.ya5{bottom:257.818500px;}
.y1d0{bottom:258.856500px;}
.y12a{bottom:259.594500px;}
.ybd{bottom:268.438500px;}
.y74{bottom:269.335500px;}
.y18b{bottom:269.347500px;}
.y20e{bottom:269.784000px;}
.y223{bottom:270.232500px;}
.yeb{bottom:270.705000px;}
.y292{bottom:271.801500px;}
.y25f{bottom:273.303000px;}
.y3d{bottom:274.507500px;}
.y1cf{bottom:276.042000px;}
.ya4{bottom:276.648000px;}
.y129{bottom:278.424000px;}
.ybc{bottom:287.268000px;}
.y73{bottom:288.165000px;}
.y18a{bottom:288.177000px;}
.y20d{bottom:288.613500px;}
.y222{bottom:289.062000px;}
.yea{bottom:289.534500px;}
.y25e{bottom:290.563500px;}
.y1ce{bottom:293.227500px;}
.y3c{bottom:293.337000px;}
.ya3{bottom:295.477500px;}
.y10{bottom:297.166500px;}
.y128{bottom:301.737000px;}
.ybb{bottom:306.097500px;}
.y291{bottom:306.321000px;}
.y72{bottom:306.994500px;}
.y189{bottom:307.006500px;}
.y20c{bottom:307.443000px;}
.y25d{bottom:307.824000px;}
.y221{bottom:307.891500px;}
.ye9{bottom:308.362500px;}
.y1cd{bottom:310.413000px;}
.y3b{bottom:312.166500px;}
.ya2{bottom:314.307000px;}
.yf{bottom:315.054000px;}
.y290{bottom:323.581500px;}
.yba{bottom:324.927000px;}
.y25c{bottom:325.084500px;}
.y71{bottom:325.824000px;}
.y188{bottom:325.836000px;}
.y20b{bottom:326.272500px;}
.y220{bottom:326.719500px;}
.ye8{bottom:327.192000px;}
.y1cc{bottom:327.598500px;}
.yf1{bottom:327.991500px;}
.y12d{bottom:329.172000px;}
.y3a{bottom:330.996000px;}
.ye{bottom:332.943000px;}
.ya1{bottom:333.136500px;}
.yf0{bottom:337.621500px;}
.y12c{bottom:338.802000px;}
.y28f{bottom:340.842000px;}
.y25b{bottom:342.345000px;}
.yb9{bottom:343.756500px;}
.y127{bottom:344.061000px;}
.y233{bottom:344.653500px;}
.y187{bottom:344.665500px;}
.y1cb{bottom:344.784000px;}
.y20a{bottom:345.102000px;}
.y21f{bottom:345.549000px;}
.ye7{bottom:346.021500px;}
.y70{bottom:349.137000px;}
.yd{bottom:350.830500px;}
.ya0{bottom:351.966000px;}
.y39{bottom:354.309000px;}
.y28e{bottom:358.102500px;}
.y25a{bottom:359.605500px;}
.y126{bottom:360.499500px;}
.y1ca{bottom:361.971000px;}
.yb8{bottom:362.586000px;}
.y232{bottom:363.483000px;}
.y209{bottom:363.931500px;}
.y21e{bottom:364.378500px;}
.ye6{bottom:364.851000px;}
.y186{bottom:367.977000px;}
.y9f{bottom:370.795500px;}
.y1f7{bottom:371.383500px;}
.y28d{bottom:375.363000px;}
.y259{bottom:376.866000px;}
.y125{bottom:376.938000px;}
.y1c9{bottom:379.156500px;}
.yc{bottom:379.179000px;}
.yb7{bottom:381.415500px;}
.y231{bottom:382.312500px;}
.y6f{bottom:382.761000px;}
.y21d{bottom:383.208000px;}
.ye5{bottom:383.680500px;}
.y9e{bottom:389.625000px;}
.y1f6{bottom:390.643500px;}
.y28c{bottom:392.623500px;}
.y257{bottom:394.125000px;}
.y258{bottom:394.126500px;}
.y1c8{bottom:396.342000px;}
.yb6{bottom:400.245000px;}
.y124{bottom:400.578000px;}
.y230{bottom:401.142000px;}
.y6e{bottom:401.589000px;}
.y21c{bottom:402.037500px;}
.ye4{bottom:402.510000px;}
.yb{bottom:406.033500px;}
.y9d{bottom:408.454500px;}
.y28b{bottom:409.884000px;}
.y1f5{bottom:409.903500px;}
.y185{bottom:410.301000px;}
.y256{bottom:411.385500px;}
.y1c7{bottom:413.527500px;}
.y194{bottom:416.521500px;}
.yb5{bottom:419.074500px;}
.y22f{bottom:419.971500px;}
.y6d{bottom:420.418500px;}
.y21b{bottom:420.867000px;}
.ye3{bottom:421.339500px;}
.ya{bottom:423.921000px;}
.y193{bottom:426.151500px;}
.y184{bottom:426.739500px;}
.y28a{bottom:427.144500px;}
.y9c{bottom:427.284000px;}
.y255{bottom:428.646000px;}
.y1f4{bottom:429.073500px;}
.y38{bottom:429.459000px;}
.y1c6{bottom:430.713000px;}
.y123{bottom:432.198000px;}
.yb4{bottom:437.904000px;}
.y22e{bottom:438.801000px;}
.y6c{bottom:439.248000px;}
.y21a{bottom:439.696500px;}
.ye2{bottom:440.169000px;}
.y9{bottom:441.810000px;}
.y183{bottom:443.178000px;}
.y289{bottom:444.403500px;}
.y254{bottom:445.906500px;}
.y9b{bottom:446.113500px;}
.y1c5{bottom:447.898500px;}
.y1f3{bottom:448.333500px;}
.y6b{bottom:458.077500px;}
.y219{bottom:458.526000px;}
.y182{bottom:459.616500px;}
.y8{bottom:459.697500px;}
.yb3{bottom:461.217000px;}
.y288{bottom:461.664000px;}
.y22d{bottom:462.112500px;}
.y253{bottom:463.167000px;}
.ye1{bottom:463.482000px;}
.y9a{bottom:464.943000px;}
.y1c4{bottom:465.084000px;}
.y37{bottom:466.849500px;}
.y1f2{bottom:467.623500px;}
.y122{bottom:469.302000px;}
.y181{bottom:476.055000px;}
.y6a{bottom:476.907000px;}
.y218{bottom:477.355500px;}
.y7{bottom:477.585000px;}
.y287{bottom:478.924500px;}
.y252{bottom:480.427500px;}
.yb2{bottom:481.390500px;}
.y1c3{bottom:482.269500px;}
.y36{bottom:486.306000px;}
.y1f1{bottom:486.793500px;}
.y121{bottom:488.131500px;}
.y99{bottom:488.256000px;}
.y180{bottom:492.493500px;}
.y6{bottom:495.474000px;}
.y69{bottom:495.736500px;}
.y217{bottom:496.185000px;}
.y1c2{bottom:499.455000px;}
.y251{bottom:502.171500px;}
.y35{bottom:505.762500px;}
.ye0{bottom:505.806000px;}
.y1f0{bottom:506.053500px;}
.y120{bottom:506.961000px;}
.y17f{bottom:508.932000px;}
.y5{bottom:513.361500px;}
.y286{bottom:513.445500px;}
.y68{bottom:514.566000px;}
.yb1{bottom:515.014500px;}
.y1c1{bottom:516.640500px;}
.ydf{bottom:522.244500px;}
.y34{bottom:525.220500px;}
.y1ef{bottom:525.223500px;}
.y17e{bottom:525.370500px;}
.y11f{bottom:525.790500px;}
.y98{bottom:530.580000px;}
.y285{bottom:530.706000px;}
.y4{bottom:531.249000px;}
.y67{bottom:533.395500px;}
.yb0{bottom:533.844000px;}
.y250{bottom:535.795500px;}
.yde{bottom:538.683000px;}
.y17d{bottom:541.807500px;}
.y1ee{bottom:544.483500px;}
.y11e{bottom:544.620000px;}
.y33{bottom:544.677000px;}
.y97{bottom:547.017000px;}
.y284{bottom:547.966500px;}
.y1c0{bottom:548.260500px;}
.y3{bottom:549.138000px;}
.y66{bottom:552.225000px;}
.yaf{bottom:552.673500px;}
.ydd{bottom:555.121500px;}
.y94{bottom:555.237000px;}
.y17c{bottom:558.246000px;}
.y29e{bottom:560.668500px;}
.y24f{bottom:562.335000px;}
.y11d{bottom:563.449500px;}
.y96{bottom:563.455500px;}
.y1ed{bottom:563.743500px;}
.y32{bottom:564.135000px;}
.y283{bottom:565.227000px;}
.y2{bottom:567.025500px;}
.y1bf{bottom:567.492000px;}
.y208{bottom:571.054500px;}
.yae{bottom:571.503000px;}
.ydc{bottom:571.558500px;}
.y65{bottom:575.538000px;}
.y29d{bottom:577.929000px;}
.y95{bottom:579.894000px;}
.y24e{bottom:579.909000px;}
.y17b{bottom:581.887500px;}
.y282{bottom:582.487500px;}
.y1ec{bottom:582.913500px;}
.y31{bottom:583.591500px;}
.y1{bottom:584.913000px;}
.y11c{bottom:586.761000px;}
.ydb{bottom:587.997000px;}
.y207{bottom:589.884000px;}
.yad{bottom:590.332500px;}
.y29c{bottom:595.189500px;}
.y281{bottom:599.746500px;}
.y1eb{bottom:602.173500px;}
.y30{bottom:603.048000px;}
.y93{bottom:603.535500px;}
.y1be{bottom:604.597500px;}
.y24d{bottom:606.450000px;}
.y206{bottom:608.713500px;}
.y64{bottom:609.162000px;}
.yda{bottom:611.638500px;}
.y17a{bottom:613.507500px;}
.y280{bottom:617.007000px;}
.y92{bottom:619.974000px;}
.y11b{bottom:620.385000px;}
.y1ea{bottom:621.343500px;}
.y2f{bottom:622.506000px;}
.y1bd{bottom:623.427000px;}
.y24c{bottom:624.024000px;}
.y205{bottom:627.543000px;}
.y63{bottom:627.991500px;}
.y27f{bottom:634.267500px;}
.yd9{bottom:635.278500px;}
.y91{bottom:636.412500px;}
.y11a{bottom:639.214500px;}
.y1e9{bottom:640.603500px;}
.y24b{bottom:641.598000px;}
.y2e{bottom:641.962500px;}
.y1bc{bottom:642.255000px;}
.y8d{bottom:644.631000px;}
.y204{bottom:646.372500px;}
.y62{bottom:646.821000px;}
.y179{bottom:650.611500px;}
.y27e{bottom:651.528000px;}
.yd8{bottom:651.717000px;}
.y90{bottom:652.849500px;}
.y119{bottom:658.044000px;}
.y1e8{bottom:659.863500px;}
.y2d{bottom:661.419000px;}
.y203{bottom:665.202000px;}
.y61{bottom:665.650500px;}
.y24a{bottom:668.139000px;}
.yd7{bottom:668.155500px;}
.y27d{bottom:668.788500px;}
.y8f{bottom:669.288000px;}
.y178{bottom:669.441000px;}
.y1bb{bottom:675.822000px;}
.y118{bottom:676.873500px;}
.y1e7{bottom:679.033500px;}
.y2c{bottom:680.877000px;}
.y202{bottom:684.031500px;}
.y60{bottom:684.480000px;}
.yd6{bottom:684.594000px;}
.y8e{bottom:685.726500px;}
.y27c{bottom:686.049000px;}
.y177{bottom:688.270500px;}
.y249{bottom:694.680000px;}
.y1ba{bottom:695.055000px;}
.y117{bottom:695.703000px;}
.y1e6{bottom:698.293500px;}
.y2b{bottom:700.333500px;}
.y201{bottom:702.861000px;}
.y5f{bottom:703.309500px;}
.y176{bottom:707.100000px;}
.y22c{bottom:707.344500px;}
.yd5{bottom:708.235500px;}
.y8c{bottom:709.368000px;}
.y248{bottom:712.254000px;}
.y1b9{bottom:714.286500px;}
.y116{bottom:714.532500px;}
.y1e5{bottom:717.463500px;}
.y2a{bottom:719.791500px;}
.y27b{bottom:720.570000px;}
.y200{bottom:721.690500px;}
.y5e{bottom:722.139000px;}
.y8b{bottom:725.806500px;}
.y175{bottom:725.929500px;}
.yd4{bottom:731.875500px;}
.y115{bottom:733.362000px;}
.y1b8{bottom:733.519500px;}
.y1e4{bottom:736.723500px;}
.y27a{bottom:737.829000px;}
.y247{bottom:738.793500px;}
.y5d{bottom:740.968500px;}
.y88{bottom:742.245000px;}
.y174{bottom:744.757500px;}
.y1ff{bottom:745.003500px;}
.yd3{bottom:748.314000px;}
.y114{bottom:752.191500px;}
.y279{bottom:755.089500px;}
.y192{bottom:755.949000px;}
.y1e3{bottom:755.983500px;}
.y29{bottom:758.376000px;}
.y8a{bottom:758.682000px;}
.y5c{bottom:759.798000px;}
.y173{bottom:763.587000px;}
.y246{bottom:765.334500px;}
.y113{bottom:771.021000px;}
.yd2{bottom:771.954000px;}
.y278{bottom:772.350000px;}
.y28{bottom:774.516000px;}
.y89{bottom:775.120500px;}
.y1e2{bottom:775.153500px;}
.y5b{bottom:778.627500px;}
.y172{bottom:786.900000px;}
.y277{bottom:789.610500px;}
.y245{bottom:791.875500px;}
.y1e1{bottom:794.413500px;}
.y27{bottom:794.995500px;}
.yd1{bottom:795.595500px;}
.y5a{bottom:797.457000px;}
.y87{bottom:798.762000px;}
.y112{bottom:804.586500px;}
.y26{bottom:806.794500px;}
.y276{bottom:806.871000px;}
.yd0{bottom:812.034000px;}
.y1e0{bottom:813.673500px;}
.y59{bottom:816.286500px;}
.y171{bottom:817.327500px;}
.y244{bottom:818.415000px;}
.y86{bottom:822.402000px;}
.y111{bottom:823.819500px;}
.y275{bottom:824.131500px;}
.y25{bottom:827.274000px;}
.ycf{bottom:828.472500px;}
.y1df{bottom:832.843500px;}
.y58{bottom:835.114500px;}
.y243{bottom:835.989000px;}
.y84{bottom:838.840500px;}
.y24{bottom:839.074500px;}
.y12b{bottom:839.757000px;}
.y274{bottom:841.392000px;}
.y151{bottom:844.659000px;}
.yce{bottom:844.911000px;}
.yef{bottom:846.249000px;}
.y1de{bottom:852.103500px;}
.y242{bottom:853.563000px;}
.y57{bottom:853.944000px;}
.y23{bottom:855.213000px;}
.y85{bottom:855.279000px;}
.y273{bottom:858.652500px;}
.ycd{bottom:861.348000px;}
.y241{bottom:871.138500px;}
.y1dd{bottom:871.273500px;}
.y56{bottom:872.773500px;}
.y22{bottom:875.692500px;}
.y272{bottom:875.913000px;}
.ycc{bottom:877.786500px;}
.y83{bottom:878.920500px;}
.y21{bottom:887.493000px;}
.y240{bottom:888.712500px;}
.y1dc{bottom:890.563500px;}
.y55{bottom:891.603000px;}
.y271{bottom:893.172000px;}
.ycb{bottom:894.225000px;}
.y20{bottom:903.631500px;}
.y1f{bottom:907.972500px;}
.y1db{bottom:909.823500px;}
.y54{bottom:910.432500px;}
.y82{bottom:910.539000px;}
.y23f{bottom:915.252000px;}
.yca{bottom:917.866500px;}
.y270{bottom:927.693000px;}
.y1da{bottom:928.993500px;}
.y53{bottom:929.262000px;}
.y23e{bottom:933.297000px;}
.yc9{bottom:941.506500px;}
.y26f{bottom:944.953500px;}
.y81{bottom:947.643000px;}
.y52{bottom:948.091500px;}
.y23d{bottom:951.342000px;}
.y1e{bottom:952.648500px;}
.yc8{bottom:957.945000px;}
.y26e{bottom:962.214000px;}
.y80{bottom:966.472500px;}
.y51{bottom:966.921000px;}
.y23c{bottom:969.387000px;}
.y1d{bottom:971.478000px;}
.yc7{bottom:974.383500px;}
.y26d{bottom:979.474500px;}
.y1d8{bottom:983.713500px;}
.y7f{bottom:985.302000px;}
.y50{bottom:985.750500px;}
.y23b{bottom:987.432000px;}
.yc6{bottom:990.822000px;}
.y1d7{bottom:993.343500px;}
.y26c{bottom:996.735000px;}
.y7e{bottom:1004.131500px;}
.y4f{bottom:1004.580000px;}
.yc5{bottom:1007.260500px;}
.y1c{bottom:1008.240000px;}
.y26b{bottom:1013.995500px;}
.y7d{bottom:1022.961000px;}
.y4e{bottom:1023.409500px;}
.yc4{bottom:1023.699000px;}
.y26a{bottom:1031.254500px;}
.y1b{bottom:1036.485000px;}
.yc3{bottom:1040.137500px;}
.y7c{bottom:1041.790500px;}
.y4d{bottom:1042.239000px;}
.y269{bottom:1048.515000px;}
.y4c{bottom:1061.068500px;}
.yc2{bottom:1063.777500px;}
.y1a{bottom:1064.728500px;}
.y7b{bottom:1065.103500px;}
.y268{bottom:1065.775500px;}
.y4b{bottom:1079.898000px;}
.y267{bottom:1083.036000px;}
.yc1{bottom:1087.419000px;}
.y19{bottom:1092.972000px;}
.y4a{bottom:1098.727500px;}
.y266{bottom:1100.296500px;}
.y49{bottom:1117.557000px;}
.yc0{bottom:1119.037500px;}
.y48{bottom:1178.008500px;}
.h43{height:-559.348500px;}
.h1d{height:-558.658500px;}
.h42{height:-542.338500px;}
.h1c{height:-538.408500px;}
.h41{height:-525.418500px;}
.h1b{height:-518.158500px;}
.h40{height:-508.468500px;}
.h19{height:-497.188500px;}
.h3f{height:-491.548500px;}
.h3e{height:-474.538500px;}
.h3d{height:-457.618500px;}
.h29{height:-447.858000px;}
.h3c{height:-440.698500px;}
.h28{height:-427.608000px;}
.h3b{height:-423.778500px;}
.h27{height:-407.358000px;}
.h3a{height:-406.858500px;}
.h39{height:-389.848500px;}
.h26{height:-387.198000px;}
.h38{height:-372.928500px;}
.h25{height:-366.948000px;}
.h37{height:-356.008500px;}
.h24{height:-346.698000px;}
.h36{height:-339.088500px;}
.h23{height:-326.448000px;}
.h35{height:-322.168500px;}
.h22{height:-306.198000px;}
.h34{height:-305.158500px;}
.h33{height:-288.238500px;}
.h21{height:-285.948000px;}
.h32{height:-271.318500px;}
.h20{height:-265.698000px;}
.h31{height:-254.398500px;}
.h1f{height:-244.728000px;}
.h30{height:-237.388500px;}
.h2f{height:-220.468500px;}
.h8{height:26.110157px;}
.ha{height:26.302208px;}
.h2{height:30.461558px;}
.h4{height:30.712615px;}
.hb{height:34.813397px;}
.hf{height:35.100320px;}
.h3{height:38.202476px;}
.h11{height:38.734848px;}
.hc{height:39.165235px;}
.h46{height:39.488026px;}
.h10{height:39.614278px;}
.hd{height:43.038432px;}
.he{height:43.516637px;}
.h9{height:43.660208px;}
.h5{height:43.875290px;}
.h18{height:44.062559px;}
.h14{height:44.279648px;}
.h13{height:44.536816px;}
.h45{height:49.117939px;}
.h17{height:49.939453px;}
.h16{height:50.229492px;}
.h2b{height:53.709961px;}
.h2c{height:53.829316px;}
.h7{height:55.352206px;}
.h15{height:55.599258px;}
.h1a{height:55.922168px;}
.h2d{height:71.613281px;}
.h6{height:77.469696px;}
.h2a{height:284.580000px;}
.h12{height:286.252500px;}
.h1e{height:292.744500px;}
.h44{height:352.354500px;}
.h2e{height:376.552500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:-90.357000px;}
.w8{width:-5.077500px;}
.wb{width:98.640000px;}
.w4{width:98.853000px;}
.wc{width:106.950000px;}
.we{width:138.135000px;}
.w3{width:196.842000px;}
.wd{width:237.630000px;}
.w2{width:295.695000px;}
.w9{width:461.250000px;}
.w7{width:465.142500px;}
.w6{width:468.625500px;}
.wf{width:576.633000px;}
.wa{width:581.355000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x9c{left:-199.200000px;}
.x6f{left:-196.248000px;}
.x7e{left:-192.117000px;}
.x9e{left:-3.600000px;}
.x0{left:0.000000px;}
.x80{left:3.483000px;}
.x89{left:9.810000px;}
.x88{left:16.650000px;}
.x74{left:25.470000px;}
.x9f{left:28.260000px;}
.x71{left:31.212000px;}
.x81{left:35.343000px;}
.xa1{left:38.100000px;}
.x85{left:42.210000px;}
.x72{left:43.560000px;}
.x8a{left:50.880000px;}
.x86{left:52.020000px;}
.x1{left:53.574000px;}
.x87{left:55.800000px;}
.x99{left:60.540000px;}
.xa4{left:65.250000px;}
.xa2{left:66.960000px;}
.xa5{left:68.220000px;}
.x8b{left:71.310000px;}
.x76{left:83.340000px;}
.x77{left:84.420000px;}
.xb6{left:85.848000px;}
.x78{left:87.030000px;}
.x79{left:90.810000px;}
.x75{left:94.302000px;}
.x8c{left:112.200000px;}
.x8d{left:132.630000px;}
.x8e{left:153.090000px;}
.x8f{left:173.520000px;}
.x90{left:193.980000px;}
.x83{left:198.390000px;}
.x91{left:214.410000px;}
.x92{left:234.840000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x82{left:253.074000px;}
.x93{left:255.300000px;}
.x3d{left:258.556500px;}
.x53{left:265.585500px;}
.x3{left:269.758500px;}
.x94{left:275.730000px;}
.x18{left:277.098000px;}
.x5{left:281.479500px;}
.x1c{left:282.789000px;}
.x54{left:284.214000px;}
.x1d{left:287.086500px;}
.x20{left:290.448000px;}
.x19{left:292.042500px;}
.x95{left:296.190000px;}
.x55{left:299.157000px;}
.x56{left:302.841000px;}
.x43{left:309.012000px;}
.x70{left:312.132000px;}
.x2c{left:315.882000px;}
.x57{left:317.785500px;}
.xa{left:322.393500px;}
.x44{left:323.956500px;}
.x45{left:327.766500px;}
.xb{left:329.865000px;}
.xc{left:337.188000px;}
.x58{left:340.096500px;}
.x46{left:342.711000px;}
.xd{left:344.659500px;}
.x1e{left:346.998000px;}
.xa0{left:348.231000px;}
.xaf{left:349.434000px;}
.x41{left:350.551500px;}
.x3b{left:356.212500px;}
.x96{left:357.510000px;}
.x1a{left:360.895500px;}
.x59{left:362.512500px;}
.x47{left:365.275500px;}
.xb1{left:371.893500px;}
.x33{left:374.811000px;}
.x1b{left:375.840000px;}
.x97{left:377.940000px;}
.x48{left:380.220000px;}
.x6c{left:381.568500px;}
.x49{left:384.030000px;}
.x2a{left:386.236500px;}
.x5a{left:388.612500px;}
.x34{left:389.755500px;}
.x5b{left:392.295000px;}
.x35{left:397.078500px;}
.x4a{left:398.974500px;}
.x6d{left:400.174500px;}
.x2b{left:401.181000px;}
.x4b{left:402.786000px;}
.x68{left:405.025500px;}
.x5c{left:414.711000px;}
.x4c{left:417.729000px;}
.x36{left:419.494500px;}
.x4d{left:421.540500px;}
.x69{left:423.762000px;}
.x37{left:431.763000px;}
.x6e{left:433.723500px;}
.x4e{left:436.483500px;}
.x98{left:439.290000px;}
.x4f{left:440.295000px;}
.x2d{left:443.016000px;}
.x38{left:446.706000px;}
.x6a{left:449.970000px;}
.x39{left:454.029000px;}
.x2e{left:455.307000px;}
.x3c{left:456.709500px;}
.x50{left:462.711000px;}
.x7f{left:464.793000px;}
.x51{left:466.521000px;}
.x6b{left:472.386000px;}
.x3a{left:476.445000px;}
.x31{left:479.434500px;}
.x7a{left:481.569000px;}
.x10{left:482.689500px;}
.x3f{left:484.663500px;}
.x52{left:488.937000px;}
.x3e{left:494.017500px;}
.x32{left:495.465000px;}
.x11{left:497.634000px;}
.x12{left:501.396000px;}
.xb2{left:503.899500px;}
.x7b{left:507.796500px;}
.x7c{left:511.606500px;}
.x13{left:516.340500px;}
.x40{left:519.679500px;}
.x6{left:521.524500px;}
.x7{left:528.996000px;}
.xa6{left:531.618000px;}
.x14{left:532.762500px;}
.x7d{left:534.022500px;}
.x9a{left:539.745000px;}
.x2f{left:540.802500px;}
.x15{left:547.705500px;}
.xe{left:551.830500px;}
.x9b{left:554.689500px;}
.x30{left:555.747000px;}
.xf{left:566.773500px;}
.x26{left:574.317000px;}
.x9d{left:583.800000px;}
.x27{left:589.261500px;}
.x42{left:592.009500px;}
.x28{left:593.071500px;}
.x29{left:608.016000px;}
.x5d{left:610.336500px;}
.x5e{left:625.281000px;}
.x5f{left:628.965000px;}
.x73{left:635.643000px;}
.x60{left:643.908000px;}
.x8{left:648.039000px;}
.xa9{left:650.992500px;}
.x9{left:655.512000px;}
.x61{left:662.536500px;}
.x62{left:666.219000px;}
.xaa{left:673.408500px;}
.x63{left:681.163500px;}
.x64{left:684.847500px;}
.xa3{left:692.811000px;}
.x65{left:699.792000px;}
.x66{left:703.474500px;}
.x84{left:723.294000px;}
.x67{left:725.890500px;}
.xb0{left:730.483500px;}
.x23{left:738.786000px;}
.x24{left:753.729000px;}
.x22{left:756.994500px;}
.x21{left:762.037500px;}
.xab{left:763.356000px;}
.xa7{left:769.323000px;}
.x25{left:772.483500px;}
.x1f{left:773.805000px;}
.xac{left:785.772000px;}
.xad{left:793.275000px;}
.xb3{left:807.445500px;}
.xa8{left:810.223500px;}
.xb4{left:814.224000px;}
.xae{left:815.689500px;}
.x16{left:817.020000px;}
.x17{left:831.964500px;}
.xb5{left:834.399000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls11{letter-spacing:-0.378133pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.084267pt;}
.ls12{letter-spacing:-0.058133pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000008pt;}
.ls6{letter-spacing:0.000039pt;}
.ls23{letter-spacing:0.000078pt;}
.ls4c{letter-spacing:0.000298pt;}
.ls41{letter-spacing:0.000403pt;}
.ls4a{letter-spacing:0.000425pt;}
.ls4e{letter-spacing:0.000536pt;}
.ls54{letter-spacing:0.000580pt;}
.ls2c{letter-spacing:0.000600pt;}
.ls20{letter-spacing:0.000711pt;}
.ls1f{letter-spacing:0.000921pt;}
.ls76{letter-spacing:0.000980pt;}
.ls3f{letter-spacing:0.001026pt;}
.ls1d{letter-spacing:0.001134pt;}
.ls26{letter-spacing:0.001158pt;}
.ls4f{letter-spacing:0.001173pt;}
.ls42{letter-spacing:0.001552pt;}
.ls59{letter-spacing:0.001628pt;}
.ls9{letter-spacing:0.001735pt;}
.ls4d{letter-spacing:0.001767pt;}
.ls63{letter-spacing:0.001825pt;}
.ls37{letter-spacing:0.001858pt;}
.ls6f{letter-spacing:0.001863pt;}
.ls38{letter-spacing:0.001966pt;}
.ls2b{letter-spacing:0.002030pt;}
.ls22{letter-spacing:0.002117pt;}
.ls3e{letter-spacing:0.002262pt;}
.ls3{letter-spacing:0.002422pt;}
.ls2d{letter-spacing:0.002525pt;}
.ls3b{letter-spacing:0.002703pt;}
.ls27{letter-spacing:0.002734pt;}
.ls1{letter-spacing:0.002770pt;}
.ls68{letter-spacing:0.002879pt;}
.ls8{letter-spacing:0.003100pt;}
.ls40{letter-spacing:0.003335pt;}
.ls6a{letter-spacing:0.003402pt;}
.ls29{letter-spacing:0.003581pt;}
.ls69{letter-spacing:0.003664pt;}
.ls46{letter-spacing:0.004267pt;}
.ls6b{letter-spacing:0.004416pt;}
.ls2e{letter-spacing:0.004512pt;}
.ls0{letter-spacing:0.004953pt;}
.ls1b{letter-spacing:0.122133pt;}
.ls15{letter-spacing:0.124267pt;}
.ls1c{letter-spacing:0.129067pt;}
.ls19{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls10{letter-spacing:2.400000pt;}
.ls2{letter-spacing:9.298933pt;}
.lsb{letter-spacing:10.626533pt;}
.ls60{letter-spacing:10.950922pt;}
.ls45{letter-spacing:11.223031pt;}
.ls52{letter-spacing:11.326433pt;}
.ls28{letter-spacing:11.570202pt;}
.ls36{letter-spacing:11.704263pt;}
.ls77{letter-spacing:11.726902pt;}
.ls30{letter-spacing:11.733865pt;}
.ls70{letter-spacing:11.779969pt;}
.ls32{letter-spacing:11.801424pt;}
.ls62{letter-spacing:11.806190pt;}
.ls33{letter-spacing:11.806705pt;}
.ls3c{letter-spacing:11.816678pt;}
.ls5c{letter-spacing:11.840894pt;}
.ls72{letter-spacing:11.862802pt;}
.ls71{letter-spacing:11.864548pt;}
.ls66{letter-spacing:11.869151pt;}
.ls39{letter-spacing:11.906686pt;}
.ls2a{letter-spacing:11.906960pt;}
.ls6e{letter-spacing:11.930476pt;}
.ls25{letter-spacing:11.940487pt;}
.ls5d{letter-spacing:11.946841pt;}
.ls35{letter-spacing:11.954133pt;}
.ls47{letter-spacing:11.959467pt;}
.ls4b{letter-spacing:11.975048pt;}
.ls55{letter-spacing:12.001962pt;}
.ls53{letter-spacing:12.023338pt;}
.ls1e{letter-spacing:12.044800pt;}
.ls50{letter-spacing:12.066305pt;}
.ls64{letter-spacing:12.085245pt;}
.ls74{letter-spacing:12.101423pt;}
.ls75{letter-spacing:12.111937pt;}
.ls5b{letter-spacing:12.112620pt;}
.ls6d{letter-spacing:12.118194pt;}
.ls57{letter-spacing:12.122840pt;}
.ls58{letter-spacing:12.124617pt;}
.ls21{letter-spacing:12.131345pt;}
.ls6c{letter-spacing:12.158160pt;}
.ls3a{letter-spacing:12.161450pt;}
.ls5f{letter-spacing:12.216054pt;}
.ls67{letter-spacing:12.218242pt;}
.ls5a{letter-spacing:12.218595pt;}
.ls56{letter-spacing:12.229457pt;}
.ls65{letter-spacing:12.273371pt;}
.ls73{letter-spacing:12.395127pt;}
.ls49{letter-spacing:12.933689pt;}
.ls3d{letter-spacing:13.216042pt;}
.ls18{letter-spacing:13.336601pt;}
.ls43{letter-spacing:13.434231pt;}
.lse{letter-spacing:13.442868pt;}
.ls44{letter-spacing:13.859179pt;}
.ls2f{letter-spacing:14.418656pt;}
.ls61{letter-spacing:14.538918pt;}
.ls48{letter-spacing:14.768983pt;}
.ls24{letter-spacing:14.843793pt;}
.ls51{letter-spacing:15.250029pt;}
.ls5e{letter-spacing:15.673558pt;}
.ls5{letter-spacing:15.937067pt;}
.ls78{letter-spacing:16.782055pt;}
.ls34{letter-spacing:17.038264pt;}
.ls4{letter-spacing:51.035733pt;}
.ls7{letter-spacing:55.787733pt;}
.lsa{letter-spacing:57.174803pt;}
.lsd{letter-spacing:82.167733pt;}
.ws72{word-spacing:-13.520000pt;}
.ws9e{word-spacing:-13.489067pt;}
.ws7c{word-spacing:-13.484267pt;}
.ws7d{word-spacing:-13.360000pt;}
.ws71{word-spacing:-13.312640pt;}
.ws70{word-spacing:-13.301867pt;}
.wsf{word-spacing:-13.283467pt;}
.ws7b{word-spacing:-13.200000pt;}
.ws6f{word-spacing:-12.981867pt;}
.ws85{word-spacing:-12.144000pt;}
.ws6e{word-spacing:-12.000000pt;}
.wsb9{word-spacing:-11.955200pt;}
.ws7f{word-spacing:-10.872107pt;}
.ws7e{word-spacing:-10.848000pt;}
.ws6c{word-spacing:-10.800000pt;}
.ws87{word-spacing:-10.762133pt;}
.ws6d{word-spacing:-10.640000pt;}
.ws16{word-spacing:-10.626800pt;}
.ws86{word-spacing:-10.555733pt;}
.wsd{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.wsa3{word-spacing:-2.922363pt;}
.ws83{word-spacing:-2.762961pt;}
.wsba{word-spacing:-2.486682pt;}
.wsaf{word-spacing:-2.444158pt;}
.wscc{word-spacing:-2.438861pt;}
.wsae{word-spacing:-2.019087pt;}
.wscd{word-spacing:-1.673728pt;}
.ws47{word-spacing:-1.594016pt;}
.wsa0{word-spacing:-1.540882pt;}
.wsa2{word-spacing:-1.487748pt;}
.wsd1{word-spacing:-1.482445pt;}
.ws2f{word-spacing:-1.434614pt;}
.ws30{word-spacing:-1.381481pt;}
.ws10b{word-spacing:-1.338982pt;}
.ws2c{word-spacing:-1.222079pt;}
.wsa6{word-spacing:-1.168945pt;}
.ws109{word-spacing:-1.052058pt;}
.wse6{word-spacing:-1.004237pt;}
.wse5{word-spacing:-0.979356pt;}
.wse4{word-spacing:-0.956416pt;}
.ws110{word-spacing:-0.860774pt;}
.ws133{word-spacing:-0.812954pt;}
.ws9c{word-spacing:-0.690740pt;}
.wsd0{word-spacing:-0.630646pt;}
.ws92{word-spacing:-0.621670pt;}
.ws146{word-spacing:-0.573850pt;}
.wsbb{word-spacing:-0.526029pt;}
.wscb{word-spacing:-0.431865pt;}
.wsca{word-spacing:-0.430387pt;}
.wsb3{word-spacing:-0.425071pt;}
.wsec{word-spacing:-0.382566pt;}
.ws102{word-spacing:-0.334746pt;}
.ws3e{word-spacing:-0.318803pt;}
.wsb8{word-spacing:-0.286925pt;}
.ws3f{word-spacing:-0.265669pt;}
.ws1f{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.wsd4{word-spacing:-0.191283pt;}
.ws31{word-spacing:-0.159402pt;}
.ws101{word-spacing:-0.149495pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws135{word-spacing:-0.107504pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws21{word-spacing:-0.095642pt;}
.ws10{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws17{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.ws11e{word-spacing:-0.011947pt;}
.ws11c{word-spacing:-0.008166pt;}
.ws132{word-spacing:-0.007492pt;}
.ws10a{word-spacing:-0.007322pt;}
.wsf5{word-spacing:-0.006016pt;}
.wsfa{word-spacing:-0.005683pt;}
.ws137{word-spacing:-0.005393pt;}
.ws114{word-spacing:-0.005308pt;}
.ws108{word-spacing:-0.004582pt;}
.ws136{word-spacing:-0.004326pt;}
.ws117{word-spacing:-0.003337pt;}
.ws12{word-spacing:-0.003267pt;}
.ws100{word-spacing:-0.003209pt;}
.ws121{word-spacing:-0.002833pt;}
.ws139{word-spacing:-0.002338pt;}
.ws12d{word-spacing:-0.002219pt;}
.ws106{word-spacing:-0.001988pt;}
.ws103{word-spacing:-0.001152pt;}
.wsc{word-spacing:-0.000759pt;}
.ws13c{word-spacing:-0.000751pt;}
.ws14{word-spacing:-0.000237pt;}
.ws11{word-spacing:-0.000007pt;}
.ws1{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.001958pt;}
.ws13{word-spacing:0.002066pt;}
.ws13a{word-spacing:0.002754pt;}
.ws111{word-spacing:0.045390pt;}
.ws10e{word-spacing:0.045676pt;}
.ws20{word-spacing:0.047821pt;}
.ws2b{word-spacing:0.053134pt;}
.ws113{word-spacing:0.058701pt;}
.ws4{word-spacing:0.074387pt;}
.ws88{word-spacing:0.095642pt;}
.ws33{word-spacing:0.106268pt;}
.ws125{word-spacing:0.128705pt;}
.wsc3{word-spacing:0.143462pt;}
.ws28{word-spacing:0.159402pt;}
.ws15{word-spacing:0.170029pt;}
.ws73{word-spacing:0.191283pt;}
.wsda{word-spacing:0.205704pt;}
.ws29{word-spacing:0.212535pt;}
.wsf2{word-spacing:0.221311pt;}
.wsbc{word-spacing:0.239104pt;}
.ws4a{word-spacing:0.265669pt;}
.wsce{word-spacing:0.286925pt;}
.ws4f{word-spacing:0.318803pt;}
.ws104{word-spacing:0.334746pt;}
.ws11b{word-spacing:0.382566pt;}
.ws24{word-spacing:0.425071pt;}
.ws10c{word-spacing:0.430387pt;}
.wsa8{word-spacing:0.478205pt;}
.ws10d{word-spacing:0.478208pt;}
.ws145{word-spacing:0.526029pt;}
.ws4c{word-spacing:0.531339pt;}
.ws107{word-spacing:0.573850pt;}
.ws80{word-spacing:0.584473pt;}
.wsa1{word-spacing:0.637606pt;}
.wse7{word-spacing:0.669491pt;}
.wsaa{word-spacing:0.690740pt;}
.wsf4{word-spacing:0.717312pt;}
.wsb0{word-spacing:0.743874pt;}
.ws13b{word-spacing:0.765133pt;}
.wsa4{word-spacing:0.850142pt;}
.ws51{word-spacing:0.956410pt;}
.wse0{word-spacing:0.956416pt;}
.ws40{word-spacing:1.009543pt;}
.ws123{word-spacing:1.052058pt;}
.ws5a{word-spacing:1.062677pt;}
.ws4d{word-spacing:1.115811pt;}
.ws26{word-spacing:1.168945pt;}
.wsc5{word-spacing:1.195520pt;}
.ws53{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws1b{word-spacing:1.243341pt;}
.ws98{word-spacing:1.275213pt;}
.ws37{word-spacing:1.328347pt;}
.wseb{word-spacing:1.338982pt;}
.ws32{word-spacing:1.381481pt;}
.wsfe{word-spacing:1.386803pt;}
.wse8{word-spacing:1.434624pt;}
.ws1d{word-spacing:1.482445pt;}
.ws3d{word-spacing:1.487748pt;}
.ws38{word-spacing:1.540882pt;}
.ws59{word-spacing:1.594016pt;}
.wscf{word-spacing:1.625907pt;}
.ws124{word-spacing:1.673728pt;}
.ws43{word-spacing:1.700284pt;}
.ws1e{word-spacing:1.769370pt;}
.ws11d{word-spacing:1.817190pt;}
.ws129{word-spacing:1.865011pt;}
.ws42{word-spacing:1.912819pt;}
.wsd2{word-spacing:1.912832pt;}
.wsd3{word-spacing:1.939234pt;}
.ws6a{word-spacing:1.965953pt;}
.ws130{word-spacing:2.008474pt;}
.ws75{word-spacing:2.019087pt;}
.ws57{word-spacing:2.072221pt;}
.ws144{word-spacing:2.104115pt;}
.ws9f{word-spacing:2.178489pt;}
.wsf7{word-spacing:2.199757pt;}
.ws0{word-spacing:2.232481pt;}
.ws5{word-spacing:2.233958pt;}
.wsa7{word-spacing:2.284756pt;}
.ws9a{word-spacing:2.337890pt;}
.ws55{word-spacing:2.391024pt;}
.ws25{word-spacing:2.444158pt;}
.wsf6{word-spacing:2.486682pt;}
.wsd8{word-spacing:2.534502pt;}
.ws50{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.ws10f{word-spacing:2.582323pt;}
.wsc2{word-spacing:2.593089pt;}
.ws36{word-spacing:2.603559pt;}
.ws12e{word-spacing:2.630144pt;}
.ws74{word-spacing:2.656693pt;}
.ws13f{word-spacing:2.668361pt;}
.wsd5{word-spacing:2.677965pt;}
.ws19{word-spacing:2.684827pt;}
.ws5b{word-spacing:2.709827pt;}
.wsd7{word-spacing:2.725786pt;}
.wsd6{word-spacing:2.756437pt;}
.wsde{word-spacing:2.760971pt;}
.ws3c{word-spacing:2.762961pt;}
.wsdf{word-spacing:2.773606pt;}
.ws6b{word-spacing:2.816095pt;}
.wsf9{word-spacing:2.821427pt;}
.ws13e{word-spacing:2.833436pt;}
.ws12b{word-spacing:2.859503pt;}
.wse9{word-spacing:2.859861pt;}
.ws11a{word-spacing:2.861022pt;}
.wsf1{word-spacing:2.861227pt;}
.wsdd{word-spacing:2.861841pt;}
.ws22{word-spacing:2.861926pt;}
.ws105{word-spacing:2.862182pt;}
.wsdb{word-spacing:2.862319pt;}
.ws147{word-spacing:2.862737pt;}
.ws12c{word-spacing:2.862839pt;}
.ws138{word-spacing:2.862925pt;}
.ws122{word-spacing:2.863889pt;}
.wsea{word-spacing:2.864674pt;}
.wsfd{word-spacing:2.866074pt;}
.ws116{word-spacing:2.866185pt;}
.wsef{word-spacing:2.866338pt;}
.wsbd{word-spacing:2.866509pt;}
.ws12a{word-spacing:2.867166pt;}
.ws12f{word-spacing:2.867268pt;}
.ws120{word-spacing:2.867507pt;}
.ws9d{word-spacing:2.869229pt;}
.wsc9{word-spacing:2.869248pt;}
.wsff{word-spacing:2.917069pt;}
.ws34{word-spacing:2.922363pt;}
.ws112{word-spacing:2.964890pt;}
.wsb5{word-spacing:2.975497pt;}
.wsc4{word-spacing:3.012710pt;}
.ws134{word-spacing:3.031468pt;}
.wsc6{word-spacing:3.060531pt;}
.ws141{word-spacing:3.063402pt;}
.ws97{word-spacing:3.081764pt;}
.wsc8{word-spacing:3.108352pt;}
.ws23{word-spacing:3.188032pt;}
.ws52{word-spacing:3.241166pt;}
.ws119{word-spacing:3.251814pt;}
.ws54{word-spacing:3.294300pt;}
.ws8a{word-spacing:3.299635pt;}
.ws79{word-spacing:3.347434pt;}
.ws89{word-spacing:3.347456pt;}
.ws4b{word-spacing:3.400567pt;}
.wsc0{word-spacing:3.443098pt;}
.wsee{word-spacing:3.538739pt;}
.ws44{word-spacing:3.559969pt;}
.wsb4{word-spacing:3.719371pt;}
.ws49{word-spacing:3.772505pt;}
.ws149{word-spacing:3.777843pt;}
.ws148{word-spacing:3.825664pt;}
.ws41{word-spacing:3.878772pt;}
.wsc7{word-spacing:3.921306pt;}
.wsa5{word-spacing:3.931906pt;}
.wsd9{word-spacing:4.016947pt;}
.wsb6{word-spacing:4.038174pt;}
.ws46{word-spacing:4.144442pt;}
.ws115{word-spacing:4.160410pt;}
.ws140{word-spacing:4.175354pt;}
.ws9b{word-spacing:4.197575pt;}
.ws99{word-spacing:4.250709pt;}
.wse1{word-spacing:4.256051pt;}
.wsad{word-spacing:4.303843pt;}
.wse2{word-spacing:4.303872pt;}
.wsdc{word-spacing:4.351693pt;}
.ws58{word-spacing:4.410111pt;}
.ws81{word-spacing:4.463245pt;}
.ws3a{word-spacing:4.728914pt;}
.ws4e{word-spacing:4.835182pt;}
.ws9{word-spacing:4.872362pt;}
.ws13d{word-spacing:4.877722pt;}
.ws35{word-spacing:4.941450pt;}
.ws69{word-spacing:5.047717pt;}
.wsf0{word-spacing:5.164646pt;}
.ws11f{word-spacing:5.212467pt;}
.wsab{word-spacing:5.366521pt;}
.ws27{word-spacing:5.472788pt;}
.wsfc{word-spacing:5.499392pt;}
.ws84{word-spacing:5.525922pt;}
.wsa9{word-spacing:5.632190pt;}
.ws68{word-spacing:5.685324pt;}
.wsbe{word-spacing:5.929779pt;}
.ws56{word-spacing:5.950993pt;}
.wsbf{word-spacing:5.977600pt;}
.wsb2{word-spacing:6.004127pt;}
.wsc1{word-spacing:6.073242pt;}
.wsed{word-spacing:6.216704pt;}
.ws96{word-spacing:6.322930pt;}
.ws39{word-spacing:6.482332pt;}
.wsb7{word-spacing:6.588599pt;}
.ws127{word-spacing:6.599270pt;}
.wsfb{word-spacing:6.694912pt;}
.ws118{word-spacing:6.790554pt;}
.wsac{word-spacing:6.907403pt;}
.wsf3{word-spacing:7.268762pt;}
.wsb1{word-spacing:7.332474pt;}
.wse3{word-spacing:7.718445pt;}
.ws126{word-spacing:8.272998pt;}
.ws7{word-spacing:8.740496pt;}
.ws67{word-spacing:8.767088pt;}
.ws143{word-spacing:8.990310pt;}
.ws131{word-spacing:9.372877pt;}
.wsf8{word-spacing:9.898906pt;}
.ws8{word-spacing:10.525789pt;}
.ws142{word-spacing:10.855322pt;}
.ws128{word-spacing:12.050842pt;}
.wse{word-spacing:13.230333pt;}
.ws6{word-spacing:19.857270pt;}
.wsa{word-spacing:20.196125pt;}
.ws91{word-spacing:533.775770pt;}
.ws8d{word-spacing:557.781811pt;}
.ws8b{word-spacing:589.104435pt;}
.ws76{word-spacing:596.803584pt;}
.ws77{word-spacing:608.758784pt;}
.ws78{word-spacing:620.713984pt;}
.ws93{word-spacing:645.437338pt;}
.ws90{word-spacing:656.101376pt;}
.ws8e{word-spacing:708.465152pt;}
.ws94{word-spacing:713.247232pt;}
.ws8f{word-spacing:717.312000pt;}
.ws8c{word-spacing:725.106790pt;}
.ws95{word-spacing:726.397952pt;}
.ws48{word-spacing:728.406426pt;}
.ws5c{word-spacing:857.809510pt;}
.ws82{word-spacing:866.799821pt;}
.ws5d{word-spacing:1235.546010pt;}
.ws5e{word-spacing:1265.768755pt;}
.ws5f{word-spacing:1268.972749pt;}
.ws66{word-spacing:1333.052621pt;}
.ws62{word-spacing:1353.328640pt;}
.ws65{word-spacing:1375.087104pt;}
.ws60{word-spacing:1389.385523pt;}
.ws63{word-spacing:1421.903667pt;}
.ws61{word-spacing:1426.446643pt;}
.ws64{word-spacing:1439.262618pt;}
.ws2e{word-spacing:2368.178000pt;}
.ws45{word-spacing:2369.244667pt;}
.ws7a{word-spacing:2370.306000pt;}
._51{margin-left:-17.667021pt;}
._4c{margin-left:-6.603723pt;}
._6{margin-left:-5.489553pt;}
._0{margin-left:-4.127615pt;}
._10{margin-left:-2.630144pt;}
._2{margin-left:-1.338970pt;}
._32{width:0.891780pt;}
._27{width:1.790515pt;}
._4{width:3.048523pt;}
._2a{width:4.035467pt;}
._29{width:5.075947pt;}
._28{width:6.129920pt;}
._30{width:7.267840pt;}
._31{width:8.390080pt;}
._4e{width:9.478720pt;}
._52{width:10.596539pt;}
._3{width:11.530016pt;}
._5{width:13.177232pt;}
._7{width:14.633165pt;}
._c{width:16.003917pt;}
._9{width:17.502413pt;}
._8{width:18.984858pt;}
._b{width:20.190869pt;}
._13{width:21.094145pt;}
._54{width:21.998776pt;}
._1{width:23.057899pt;}
._a{width:24.229043pt;}
._3e{width:25.461188pt;}
._14{width:27.161674pt;}
._e{width:28.314907pt;}
._4d{width:29.276761pt;}
._50{width:30.403089pt;}
._25{width:32.617990pt;}
._15{width:34.749549pt;}
._4f{width:38.893990pt;}
._53{width:54.993920pt;}
._33{width:131.008000pt;}
._11{width:177.176064pt;}
._41{width:221.553766pt;}
._2c{width:292.663296pt;}
._2b{width:322.183756pt;}
._40{width:332.976230pt;}
._3f{width:344.644506pt;}
._45{width:380.988314pt;}
._46{width:433.495552pt;}
._48{width:435.551846pt;}
._49{width:470.891418pt;}
._43{width:481.172890pt;}
._4b{width:483.133542pt;}
._44{width:519.477350pt;}
._4a{width:548.408934pt;}
._47{width:563.472486pt;}
._2d{width:650.649805pt;}
._d{width:653.057760pt;}
._2e{width:662.605005pt;}
._3b{width:671.738778pt;}
._2f{width:674.560205pt;}
._3d{width:702.583194pt;}
._1f{width:709.182464pt;}
._1e{width:710.186701pt;}
._38{width:728.932454pt;}
._f{width:743.804723pt;}
._42{width:767.289600pt;}
._34{width:774.170931pt;}
._19{width:802.352409pt;}
._23{width:828.017152pt;}
._18{width:831.427455pt;}
._35{width:836.577075pt;}
._17{width:859.737356pt;}
._16{width:901.039514pt;}
._22{width:926.623642pt;}
._20{width:946.038886pt;}
._3c{width:979.083059pt;}
._1c{width:988.085378pt;}
._21{width:1022.839091pt;}
._37{width:1028.625408pt;}
._36{width:1061.158565pt;}
._3a{width:1065.208320pt;}
._1d{width:1076.780954pt;}
._24{width:1090.505523pt;}
._12{width:1098.300314pt;}
._1b{width:1100.356608pt;}
._1a{width:1267.346842pt;}
._39{width:1269.164032pt;}
._26{width:2008.370240pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs6{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:48.106667pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.yf2{bottom:-716.612000pt;}
.y12e{bottom:-715.562667pt;}
.y150{bottom:-638.762667pt;}
.y195{bottom:-637.918667pt;}
.y14f{bottom:-621.642667pt;}
.y14e{bottom:-604.602667pt;}
.y14d{bottom:-587.482667pt;}
.y110{bottom:-583.412000pt;}
.y1b7{bottom:-576.398667pt;}
.y14c{bottom:-570.442667pt;}
.y10f{bottom:-566.372000pt;}
.y1b6{bottom:-559.278667pt;}
.y14b{bottom:-553.322667pt;}
.y10e{bottom:-545.332000pt;}
.y1b5{bottom:-542.238667pt;}
.y14a{bottom:-536.176000pt;}
.y149{bottom:-519.136000pt;}
.y10d{bottom:-510.585333pt;}
.y1b4{bottom:-508.318667pt;}
.y148{bottom:-502.016000pt;}
.y1b3{bottom:-493.278667pt;}
.y10c{bottom:-492.585333pt;}
.y147{bottom:-484.896000pt;}
.y1b2{bottom:-478.238667pt;}
.y10b{bottom:-474.585333pt;}
.y146{bottom:-467.856000pt;}
.y1b1{bottom:-463.172000pt;}
.y10a{bottom:-455.945333pt;}
.y1b0{bottom:-448.132000pt;}
.y145{bottom:-446.816000pt;}
.y1af{bottom:-433.012000pt;}
.y109{bottom:-429.225333pt;}
.y1ae{bottom:-417.972000pt;}
.y144{bottom:-412.096000pt;}
.y1ad{bottom:-402.932000pt;}
.y108{bottom:-397.465333pt;}
.y143{bottom:-394.096000pt;}
.y1ac{bottom:-387.892000pt;}
.y107{bottom:-380.425333pt;}
.y142{bottom:-376.096000pt;}
.y1ab{bottom:-372.772000pt;}
.y106{bottom:-363.305333pt;}
.y141{bottom:-358.096000pt;}
.y1aa{bottom:-357.732000pt;}
.y105{bottom:-346.185333pt;}
.y1a9{bottom:-342.692000pt;}
.y140{bottom:-340.176000pt;}
.y104{bottom:-329.145333pt;}
.y1a8{bottom:-327.652000pt;}
.y13f{bottom:-322.176000pt;}
.y1a7{bottom:-312.612000pt;}
.y103{bottom:-312.025333pt;}
.y13e{bottom:-304.176000pt;}
.y1a6{bottom:-297.492000pt;}
.y102{bottom:-290.985333pt;}
.y13d{bottom:-286.176000pt;}
.y1a5{bottom:-282.452000pt;}
.y13c{bottom:-268.176000pt;}
.y1a4{bottom:-267.412000pt;}
.y101{bottom:-257.865333pt;}
.y1a3{bottom:-252.372000pt;}
.y13b{bottom:-250.176000pt;}
.y100{bottom:-240.745333pt;}
.y1a2{bottom:-237.332000pt;}
.y13a{bottom:-231.536000pt;}
.yff{bottom:-223.705333pt;}
.y1a1{bottom:-222.212000pt;}
.y1a0{bottom:-207.172000pt;}
.yfe{bottom:-206.585333pt;}
.y139{bottom:-204.816000pt;}
.yfd{bottom:-189.545333pt;}
.y19f{bottom:-183.252000pt;}
.y138{bottom:-173.056000pt;}
.yfc{bottom:-172.425333pt;}
.y19e{bottom:-167.812000pt;}
.y137{bottom:-155.989333pt;}
.yfb{bottom:-155.278667pt;}
.y136{bottom:-138.869333pt;}
.yfa{bottom:-138.238667pt;}
.y19d{bottom:-136.132000pt;}
.y1d9{bottom:-133.748000pt;}
.y135{bottom:-121.829333pt;}
.yf9{bottom:-121.118667pt;}
.y19c{bottom:-119.012000pt;}
.y134{bottom:-104.709333pt;}
.yf8{bottom:-104.078667pt;}
.y19b{bottom:-101.972000pt;}
.y133{bottom:-87.589333pt;}
.yf7{bottom:-86.958667pt;}
.y132{bottom:-70.549333pt;}
.yf6{bottom:-69.838667pt;}
.y19a{bottom:-69.225333pt;}
.y199{bottom:-53.785333pt;}
.y131{bottom:-49.429333pt;}
.y1fb{bottom:-48.388000pt;}
.y198{bottom:-38.345333pt;}
.yf5{bottom:-37.118667pt;}
.y1fa{bottom:-32.948000pt;}
.y197{bottom:-22.985333pt;}
.yf4{bottom:-21.678667pt;}
.y1f9{bottom:-17.588000pt;}
.y130{bottom:-16.709333pt;}
.y196{bottom:-3.065333pt;}
.yf3{bottom:-1.758667pt;}
.y0{bottom:0.000000pt;}
.y1f8{bottom:2.332000pt;}
.y12f{bottom:3.290667pt;}
.y170{bottom:15.706667pt;}
.y47{bottom:28.346667pt;}
.y167{bottom:39.093333pt;}
.y168{bottom:42.213333pt;}
.y16d{bottom:54.293333pt;}
.y164{bottom:54.453333pt;}
.y161{bottom:55.946667pt;}
.y16b{bottom:59.013333pt;}
.y16c{bottom:60.880000pt;}
.y15c{bottom:62.853333pt;}
.y162{bottom:64.453333pt;}
.y165{bottom:64.800000pt;}
.y169{bottom:65.093333pt;}
.y15f{bottom:66.293333pt;}
.y160{bottom:71.173333pt;}
.y163{bottom:71.600000pt;}
.y15d{bottom:72.480000pt;}
.y16a{bottom:74.906667pt;}
.y16e{bottom:74.960000pt;}
.y166{bottom:78.133333pt;}
.y15b{bottom:78.933333pt;}
.y15e{bottom:85.173333pt;}
.y18{bottom:93.018667pt;}
.y46{bottom:93.372000pt;}
.y1fe{bottom:102.918667pt;}
.y152{bottom:103.253333pt;}
.y29b{bottom:103.518667pt;}
.y23a{bottom:105.510667pt;}
.y216{bottom:105.909333pt;}
.y22b{bottom:106.308000pt;}
.y17{bottom:108.920000pt;}
.y45{bottom:110.109333pt;}
.yac{bottom:112.012000pt;}
.y153{bottom:115.760000pt;}
.y29a{bottom:118.861333pt;}
.y1fd{bottom:120.014667pt;}
.y7a{bottom:121.849333pt;}
.y239{bottom:122.248000pt;}
.y215{bottom:122.646667pt;}
.y22a{bottom:123.045333pt;}
.y16{bottom:124.820000pt;}
.y44{bottom:126.846667pt;}
.y154{bottom:128.266667pt;}
.yab{bottom:128.749333pt;}
.y299{bottom:134.202667pt;}
.y1fc{bottom:137.110667pt;}
.y79{bottom:138.586667pt;}
.y238{bottom:138.985333pt;}
.y191{bottom:138.996000pt;}
.y214{bottom:139.384000pt;}
.y229{bottom:139.782667pt;}
.y15{bottom:140.720000pt;}
.y155{bottom:140.773333pt;}
.y43{bottom:143.584000pt;}
.yaa{bottom:145.486667pt;}
.y298{bottom:149.545333pt;}
.y265{bottom:150.881333pt;}
.y156{bottom:153.280000pt;}
.y1d5{bottom:153.714667pt;}
.y78{bottom:155.324000pt;}
.y237{bottom:155.722667pt;}
.y190{bottom:155.733333pt;}
.y213{bottom:156.121333pt;}
.y228{bottom:156.520000pt;}
.y14{bottom:156.621333pt;}
.y1d6{bottom:157.048000pt;}
.y42{bottom:160.321333pt;}
.ya9{bottom:162.224000pt;}
.y297{bottom:164.888000pt;}
.y157{bottom:165.760000pt;}
.y264{bottom:166.224000pt;}
.y1d4{bottom:168.990667pt;}
.y77{bottom:172.061333pt;}
.y236{bottom:172.460000pt;}
.y18f{bottom:172.470667pt;}
.y13{bottom:172.521333pt;}
.y212{bottom:172.858667pt;}
.y227{bottom:173.257333pt;}
.y41{bottom:177.058667pt;}
.y158{bottom:178.266667pt;}
.ya8{bottom:178.960000pt;}
.y296{bottom:180.230667pt;}
.y263{bottom:181.566667pt;}
.y1d3{bottom:184.266667pt;}
.y12{bottom:188.421333pt;}
.y235{bottom:189.197333pt;}
.y18e{bottom:189.208000pt;}
.y211{bottom:189.596000pt;}
.y226{bottom:189.994667pt;}
.yee{bottom:190.414667pt;}
.y159{bottom:190.773333pt;}
.y76{bottom:192.784000pt;}
.y40{bottom:193.796000pt;}
.y295{bottom:195.573333pt;}
.ya7{bottom:195.697333pt;}
.y262{bottom:196.909333pt;}
.y1d2{bottom:199.542667pt;}
.y15a{bottom:203.280000pt;}
.y11{bottom:204.322667pt;}
.ybf{bottom:205.137333pt;}
.y234{bottom:205.934667pt;}
.y18d{bottom:205.945333pt;}
.y210{bottom:206.333333pt;}
.y225{bottom:206.732000pt;}
.yed{bottom:207.152000pt;}
.y3f{bottom:210.532000pt;}
.y294{bottom:210.916000pt;}
.y261{bottom:212.252000pt;}
.ya6{bottom:212.434667pt;}
.y1d1{bottom:214.818667pt;}
.ybe{bottom:221.874667pt;}
.y75{bottom:222.672000pt;}
.y18c{bottom:222.682667pt;}
.y20f{bottom:223.070667pt;}
.y224{bottom:223.469333pt;}
.yec{bottom:223.889333pt;}
.y16f{bottom:225.813333pt;}
.y293{bottom:226.258667pt;}
.y3e{bottom:227.269333pt;}
.y260{bottom:227.593333pt;}
.ya5{bottom:229.172000pt;}
.y1d0{bottom:230.094667pt;}
.y12a{bottom:230.750667pt;}
.ybd{bottom:238.612000pt;}
.y74{bottom:239.409333pt;}
.y18b{bottom:239.420000pt;}
.y20e{bottom:239.808000pt;}
.y223{bottom:240.206667pt;}
.yeb{bottom:240.626667pt;}
.y292{bottom:241.601333pt;}
.y25f{bottom:242.936000pt;}
.y3d{bottom:244.006667pt;}
.y1cf{bottom:245.370667pt;}
.ya4{bottom:245.909333pt;}
.y129{bottom:247.488000pt;}
.ybc{bottom:255.349333pt;}
.y73{bottom:256.146667pt;}
.y18a{bottom:256.157333pt;}
.y20d{bottom:256.545333pt;}
.y222{bottom:256.944000pt;}
.yea{bottom:257.364000pt;}
.y25e{bottom:258.278667pt;}
.y1ce{bottom:260.646667pt;}
.y3c{bottom:260.744000pt;}
.ya3{bottom:262.646667pt;}
.y10{bottom:264.148000pt;}
.y128{bottom:268.210667pt;}
.ybb{bottom:272.086667pt;}
.y291{bottom:272.285333pt;}
.y72{bottom:272.884000pt;}
.y189{bottom:272.894667pt;}
.y20c{bottom:273.282667pt;}
.y25d{bottom:273.621333pt;}
.y221{bottom:273.681333pt;}
.ye9{bottom:274.100000pt;}
.y1cd{bottom:275.922667pt;}
.y3b{bottom:277.481333pt;}
.ya2{bottom:279.384000pt;}
.yf{bottom:280.048000pt;}
.y290{bottom:287.628000pt;}
.yba{bottom:288.824000pt;}
.y25c{bottom:288.964000pt;}
.y71{bottom:289.621333pt;}
.y188{bottom:289.632000pt;}
.y20b{bottom:290.020000pt;}
.y220{bottom:290.417333pt;}
.ye8{bottom:290.837333pt;}
.y1cc{bottom:291.198667pt;}
.yf1{bottom:291.548000pt;}
.y12d{bottom:292.597333pt;}
.y3a{bottom:294.218667pt;}
.ye{bottom:295.949333pt;}
.ya1{bottom:296.121333pt;}
.yf0{bottom:300.108000pt;}
.y12c{bottom:301.157333pt;}
.y28f{bottom:302.970667pt;}
.y25b{bottom:304.306667pt;}
.yb9{bottom:305.561333pt;}
.y127{bottom:305.832000pt;}
.y233{bottom:306.358667pt;}
.y187{bottom:306.369333pt;}
.y1cb{bottom:306.474667pt;}
.y20a{bottom:306.757333pt;}
.y21f{bottom:307.154667pt;}
.ye7{bottom:307.574667pt;}
.y70{bottom:310.344000pt;}
.yd{bottom:311.849333pt;}
.ya0{bottom:312.858667pt;}
.y39{bottom:314.941333pt;}
.y28e{bottom:318.313333pt;}
.y25a{bottom:319.649333pt;}
.y126{bottom:320.444000pt;}
.y1ca{bottom:321.752000pt;}
.yb8{bottom:322.298667pt;}
.y232{bottom:323.096000pt;}
.y209{bottom:323.494667pt;}
.y21e{bottom:323.892000pt;}
.ye6{bottom:324.312000pt;}
.y186{bottom:327.090667pt;}
.y9f{bottom:329.596000pt;}
.y1f7{bottom:330.118667pt;}
.y28d{bottom:333.656000pt;}
.y259{bottom:334.992000pt;}
.y125{bottom:335.056000pt;}
.y1c9{bottom:337.028000pt;}
.yc{bottom:337.048000pt;}
.yb7{bottom:339.036000pt;}
.y231{bottom:339.833333pt;}
.y6f{bottom:340.232000pt;}
.y21d{bottom:340.629333pt;}
.ye5{bottom:341.049333pt;}
.y9e{bottom:346.333333pt;}
.y1f6{bottom:347.238667pt;}
.y28c{bottom:348.998667pt;}
.y257{bottom:350.333333pt;}
.y258{bottom:350.334667pt;}
.y1c8{bottom:352.304000pt;}
.yb6{bottom:355.773333pt;}
.y124{bottom:356.069333pt;}
.y230{bottom:356.570667pt;}
.y6e{bottom:356.968000pt;}
.y21c{bottom:357.366667pt;}
.ye4{bottom:357.786667pt;}
.yb{bottom:360.918667pt;}
.y9d{bottom:363.070667pt;}
.y28b{bottom:364.341333pt;}
.y1f5{bottom:364.358667pt;}
.y185{bottom:364.712000pt;}
.y256{bottom:365.676000pt;}
.y1c7{bottom:367.580000pt;}
.y194{bottom:370.241333pt;}
.yb5{bottom:372.510667pt;}
.y22f{bottom:373.308000pt;}
.y6d{bottom:373.705333pt;}
.y21b{bottom:374.104000pt;}
.ye3{bottom:374.524000pt;}
.ya{bottom:376.818667pt;}
.y193{bottom:378.801333pt;}
.y184{bottom:379.324000pt;}
.y28a{bottom:379.684000pt;}
.y9c{bottom:379.808000pt;}
.y255{bottom:381.018667pt;}
.y1f4{bottom:381.398667pt;}
.y38{bottom:381.741333pt;}
.y1c6{bottom:382.856000pt;}
.y123{bottom:384.176000pt;}
.yb4{bottom:389.248000pt;}
.y22e{bottom:390.045333pt;}
.y6c{bottom:390.442667pt;}
.y21a{bottom:390.841333pt;}
.ye2{bottom:391.261333pt;}
.y9{bottom:392.720000pt;}
.y183{bottom:393.936000pt;}
.y289{bottom:395.025333pt;}
.y254{bottom:396.361333pt;}
.y9b{bottom:396.545333pt;}
.y1c5{bottom:398.132000pt;}
.y1f3{bottom:398.518667pt;}
.y6b{bottom:407.180000pt;}
.y219{bottom:407.578667pt;}
.y182{bottom:408.548000pt;}
.y8{bottom:408.620000pt;}
.yb3{bottom:409.970667pt;}
.y288{bottom:410.368000pt;}
.y22d{bottom:410.766667pt;}
.y253{bottom:411.704000pt;}
.ye1{bottom:411.984000pt;}
.y9a{bottom:413.282667pt;}
.y1c4{bottom:413.408000pt;}
.y37{bottom:414.977333pt;}
.y1f2{bottom:415.665333pt;}
.y122{bottom:417.157333pt;}
.y181{bottom:423.160000pt;}
.y6a{bottom:423.917333pt;}
.y218{bottom:424.316000pt;}
.y7{bottom:424.520000pt;}
.y287{bottom:425.710667pt;}
.y252{bottom:427.046667pt;}
.yb2{bottom:427.902667pt;}
.y1c3{bottom:428.684000pt;}
.y36{bottom:432.272000pt;}
.y1f1{bottom:432.705333pt;}
.y121{bottom:433.894667pt;}
.y99{bottom:434.005333pt;}
.y180{bottom:437.772000pt;}
.y6{bottom:440.421333pt;}
.y69{bottom:440.654667pt;}
.y217{bottom:441.053333pt;}
.y1c2{bottom:443.960000pt;}
.y251{bottom:446.374667pt;}
.y35{bottom:449.566667pt;}
.ye0{bottom:449.605333pt;}
.y1f0{bottom:449.825333pt;}
.y120{bottom:450.632000pt;}
.y17f{bottom:452.384000pt;}
.y5{bottom:456.321333pt;}
.y286{bottom:456.396000pt;}
.y68{bottom:457.392000pt;}
.yb1{bottom:457.790667pt;}
.y1c1{bottom:459.236000pt;}
.ydf{bottom:464.217333pt;}
.y34{bottom:466.862667pt;}
.y1ef{bottom:466.865333pt;}
.y17e{bottom:466.996000pt;}
.y11f{bottom:467.369333pt;}
.y98{bottom:471.626667pt;}
.y285{bottom:471.738667pt;}
.y4{bottom:472.221333pt;}
.y67{bottom:474.129333pt;}
.yb0{bottom:474.528000pt;}
.y250{bottom:476.262667pt;}
.yde{bottom:478.829333pt;}
.y17d{bottom:481.606667pt;}
.y1ee{bottom:483.985333pt;}
.y11e{bottom:484.106667pt;}
.y33{bottom:484.157333pt;}
.y97{bottom:486.237333pt;}
.y284{bottom:487.081333pt;}
.y1c0{bottom:487.342667pt;}
.y3{bottom:488.122667pt;}
.y66{bottom:490.866667pt;}
.yaf{bottom:491.265333pt;}
.ydd{bottom:493.441333pt;}
.y94{bottom:493.544000pt;}
.y17c{bottom:496.218667pt;}
.y29e{bottom:498.372000pt;}
.y24f{bottom:499.853333pt;}
.y11d{bottom:500.844000pt;}
.y96{bottom:500.849333pt;}
.y1ed{bottom:501.105333pt;}
.y32{bottom:501.453333pt;}
.y283{bottom:502.424000pt;}
.y2{bottom:504.022667pt;}
.y1bf{bottom:504.437333pt;}
.y208{bottom:507.604000pt;}
.yae{bottom:508.002667pt;}
.ydc{bottom:508.052000pt;}
.y65{bottom:511.589333pt;}
.y29d{bottom:513.714667pt;}
.y95{bottom:515.461333pt;}
.y24e{bottom:515.474667pt;}
.y17b{bottom:517.233333pt;}
.y282{bottom:517.766667pt;}
.y1ec{bottom:518.145333pt;}
.y31{bottom:518.748000pt;}
.y1{bottom:519.922667pt;}
.y11c{bottom:521.565333pt;}
.ydb{bottom:522.664000pt;}
.y207{bottom:524.341333pt;}
.yad{bottom:524.740000pt;}
.y29c{bottom:529.057333pt;}
.y281{bottom:533.108000pt;}
.y1eb{bottom:535.265333pt;}
.y30{bottom:536.042667pt;}
.y93{bottom:536.476000pt;}
.y1be{bottom:537.420000pt;}
.y24d{bottom:539.066667pt;}
.y206{bottom:541.078667pt;}
.y64{bottom:541.477333pt;}
.yda{bottom:543.678667pt;}
.y17a{bottom:545.340000pt;}
.y280{bottom:548.450667pt;}
.y92{bottom:551.088000pt;}
.y11b{bottom:551.453333pt;}
.y1ea{bottom:552.305333pt;}
.y2f{bottom:553.338667pt;}
.y1bd{bottom:554.157333pt;}
.y24c{bottom:554.688000pt;}
.y205{bottom:557.816000pt;}
.y63{bottom:558.214667pt;}
.y27f{bottom:563.793333pt;}
.yd9{bottom:564.692000pt;}
.y91{bottom:565.700000pt;}
.y11a{bottom:568.190667pt;}
.y1e9{bottom:569.425333pt;}
.y24b{bottom:570.309333pt;}
.y2e{bottom:570.633333pt;}
.y1bc{bottom:570.893333pt;}
.y8d{bottom:573.005333pt;}
.y204{bottom:574.553333pt;}
.y62{bottom:574.952000pt;}
.y179{bottom:578.321333pt;}
.y27e{bottom:579.136000pt;}
.yd8{bottom:579.304000pt;}
.y90{bottom:580.310667pt;}
.y119{bottom:584.928000pt;}
.y1e8{bottom:586.545333pt;}
.y2d{bottom:587.928000pt;}
.y203{bottom:591.290667pt;}
.y61{bottom:591.689333pt;}
.y24a{bottom:593.901333pt;}
.yd7{bottom:593.916000pt;}
.y27d{bottom:594.478667pt;}
.y8f{bottom:594.922667pt;}
.y178{bottom:595.058667pt;}
.y1bb{bottom:600.730667pt;}
.y118{bottom:601.665333pt;}
.y1e7{bottom:603.585333pt;}
.y2c{bottom:605.224000pt;}
.y202{bottom:608.028000pt;}
.y60{bottom:608.426667pt;}
.yd6{bottom:608.528000pt;}
.y8e{bottom:609.534667pt;}
.y27c{bottom:609.821333pt;}
.y177{bottom:611.796000pt;}
.y249{bottom:617.493333pt;}
.y1ba{bottom:617.826667pt;}
.y117{bottom:618.402667pt;}
.y1e6{bottom:620.705333pt;}
.y2b{bottom:622.518667pt;}
.y201{bottom:624.765333pt;}
.y5f{bottom:625.164000pt;}
.y176{bottom:628.533333pt;}
.y22c{bottom:628.750667pt;}
.yd5{bottom:629.542667pt;}
.y8c{bottom:630.549333pt;}
.y248{bottom:633.114667pt;}
.y1b9{bottom:634.921333pt;}
.y116{bottom:635.140000pt;}
.y1e5{bottom:637.745333pt;}
.y2a{bottom:639.814667pt;}
.y27b{bottom:640.506667pt;}
.y200{bottom:641.502667pt;}
.y5e{bottom:641.901333pt;}
.y8b{bottom:645.161333pt;}
.y175{bottom:645.270667pt;}
.yd4{bottom:650.556000pt;}
.y115{bottom:651.877333pt;}
.y1b8{bottom:652.017333pt;}
.y1e4{bottom:654.865333pt;}
.y27a{bottom:655.848000pt;}
.y247{bottom:656.705333pt;}
.y5d{bottom:658.638667pt;}
.y88{bottom:659.773333pt;}
.y174{bottom:662.006667pt;}
.y1ff{bottom:662.225333pt;}
.yd3{bottom:665.168000pt;}
.y114{bottom:668.614667pt;}
.y279{bottom:671.190667pt;}
.y192{bottom:671.954667pt;}
.y1e3{bottom:671.985333pt;}
.y29{bottom:674.112000pt;}
.y8a{bottom:674.384000pt;}
.y5c{bottom:675.376000pt;}
.y173{bottom:678.744000pt;}
.y246{bottom:680.297333pt;}
.y113{bottom:685.352000pt;}
.yd2{bottom:686.181333pt;}
.y278{bottom:686.533333pt;}
.y28{bottom:688.458667pt;}
.y89{bottom:688.996000pt;}
.y1e2{bottom:689.025333pt;}
.y5b{bottom:692.113333pt;}
.y172{bottom:699.466667pt;}
.y277{bottom:701.876000pt;}
.y245{bottom:703.889333pt;}
.y1e1{bottom:706.145333pt;}
.y27{bottom:706.662667pt;}
.yd1{bottom:707.196000pt;}
.y5a{bottom:708.850667pt;}
.y87{bottom:710.010667pt;}
.y112{bottom:715.188000pt;}
.y26{bottom:717.150667pt;}
.y276{bottom:717.218667pt;}
.yd0{bottom:721.808000pt;}
.y1e0{bottom:723.265333pt;}
.y59{bottom:725.588000pt;}
.y171{bottom:726.513333pt;}
.y244{bottom:727.480000pt;}
.y86{bottom:731.024000pt;}
.y111{bottom:732.284000pt;}
.y275{bottom:732.561333pt;}
.y25{bottom:735.354667pt;}
.ycf{bottom:736.420000pt;}
.y1df{bottom:740.305333pt;}
.y58{bottom:742.324000pt;}
.y243{bottom:743.101333pt;}
.y84{bottom:745.636000pt;}
.y24{bottom:745.844000pt;}
.y12b{bottom:746.450667pt;}
.y274{bottom:747.904000pt;}
.y151{bottom:750.808000pt;}
.yce{bottom:751.032000pt;}
.yef{bottom:752.221333pt;}
.y1de{bottom:757.425333pt;}
.y242{bottom:758.722667pt;}
.y57{bottom:759.061333pt;}
.y23{bottom:760.189333pt;}
.y85{bottom:760.248000pt;}
.y273{bottom:763.246667pt;}
.ycd{bottom:765.642667pt;}
.y241{bottom:774.345333pt;}
.y1dd{bottom:774.465333pt;}
.y56{bottom:775.798667pt;}
.y22{bottom:778.393333pt;}
.y272{bottom:778.589333pt;}
.ycc{bottom:780.254667pt;}
.y83{bottom:781.262667pt;}
.y21{bottom:788.882667pt;}
.y240{bottom:789.966667pt;}
.y1dc{bottom:791.612000pt;}
.y55{bottom:792.536000pt;}
.y271{bottom:793.930667pt;}
.ycb{bottom:794.866667pt;}
.y20{bottom:803.228000pt;}
.y1f{bottom:807.086667pt;}
.y1db{bottom:808.732000pt;}
.y54{bottom:809.273333pt;}
.y82{bottom:809.368000pt;}
.y23f{bottom:813.557333pt;}
.yca{bottom:815.881333pt;}
.y270{bottom:824.616000pt;}
.y1da{bottom:825.772000pt;}
.y53{bottom:826.010667pt;}
.y23e{bottom:829.597333pt;}
.yc9{bottom:836.894667pt;}
.y26f{bottom:839.958667pt;}
.y81{bottom:842.349333pt;}
.y52{bottom:842.748000pt;}
.y23d{bottom:845.637333pt;}
.y1e{bottom:846.798667pt;}
.yc8{bottom:851.506667pt;}
.y26e{bottom:855.301333pt;}
.y80{bottom:859.086667pt;}
.y51{bottom:859.485333pt;}
.y23c{bottom:861.677333pt;}
.y1d{bottom:863.536000pt;}
.yc7{bottom:866.118667pt;}
.y26d{bottom:870.644000pt;}
.y1d8{bottom:874.412000pt;}
.y7f{bottom:875.824000pt;}
.y50{bottom:876.222667pt;}
.y23b{bottom:877.717333pt;}
.yc6{bottom:880.730667pt;}
.y1d7{bottom:882.972000pt;}
.y26c{bottom:885.986667pt;}
.y7e{bottom:892.561333pt;}
.y4f{bottom:892.960000pt;}
.yc5{bottom:895.342667pt;}
.y1c{bottom:896.213333pt;}
.y26b{bottom:901.329333pt;}
.y7d{bottom:909.298667pt;}
.y4e{bottom:909.697333pt;}
.yc4{bottom:909.954667pt;}
.y26a{bottom:916.670667pt;}
.y1b{bottom:921.320000pt;}
.yc3{bottom:924.566667pt;}
.y7c{bottom:926.036000pt;}
.y4d{bottom:926.434667pt;}
.y269{bottom:932.013333pt;}
.y4c{bottom:943.172000pt;}
.yc2{bottom:945.580000pt;}
.y1a{bottom:946.425333pt;}
.y7b{bottom:946.758667pt;}
.y268{bottom:947.356000pt;}
.y4b{bottom:959.909333pt;}
.y267{bottom:962.698667pt;}
.yc1{bottom:966.594667pt;}
.y19{bottom:971.530667pt;}
.y4a{bottom:976.646667pt;}
.y266{bottom:978.041333pt;}
.y49{bottom:993.384000pt;}
.yc0{bottom:994.700000pt;}
.y48{bottom:1047.118667pt;}
.h43{height:-497.198667pt;}
.h1d{height:-496.585333pt;}
.h42{height:-482.078667pt;}
.h1c{height:-478.585333pt;}
.h41{height:-467.038667pt;}
.h1b{height:-460.585333pt;}
.h40{height:-451.972000pt;}
.h19{height:-441.945333pt;}
.h3f{height:-436.932000pt;}
.h3e{height:-421.812000pt;}
.h3d{height:-406.772000pt;}
.h29{height:-398.096000pt;}
.h3c{height:-391.732000pt;}
.h28{height:-380.096000pt;}
.h3b{height:-376.692000pt;}
.h27{height:-362.096000pt;}
.h3a{height:-361.652000pt;}
.h39{height:-346.532000pt;}
.h26{height:-344.176000pt;}
.h38{height:-331.492000pt;}
.h25{height:-326.176000pt;}
.h37{height:-316.452000pt;}
.h24{height:-308.176000pt;}
.h36{height:-301.412000pt;}
.h23{height:-290.176000pt;}
.h35{height:-286.372000pt;}
.h22{height:-272.176000pt;}
.h34{height:-271.252000pt;}
.h33{height:-256.212000pt;}
.h21{height:-254.176000pt;}
.h32{height:-241.172000pt;}
.h20{height:-236.176000pt;}
.h31{height:-226.132000pt;}
.h1f{height:-217.536000pt;}
.h30{height:-211.012000pt;}
.h2f{height:-195.972000pt;}
.h8{height:23.209028pt;}
.ha{height:23.379740pt;}
.h2{height:27.076941pt;}
.h4{height:27.300102pt;}
.hb{height:30.945242pt;}
.hf{height:31.200285pt;}
.h3{height:33.957757pt;}
.h11{height:34.430976pt;}
.hc{height:34.813542pt;}
.h46{height:35.100467pt;}
.h10{height:35.212691pt;}
.hd{height:38.256384pt;}
.he{height:38.681455pt;}
.h9{height:38.809074pt;}
.h5{height:39.000258pt;}
.h18{height:39.166719pt;}
.h14{height:39.359687pt;}
.h13{height:39.588281pt;}
.h45{height:43.660390pt;}
.h17{height:44.390625pt;}
.h16{height:44.648438pt;}
.h2b{height:47.742188pt;}
.h2c{height:47.848281pt;}
.h7{height:49.201961pt;}
.h15{height:49.421563pt;}
.h1a{height:49.708594pt;}
.h2d{height:63.656250pt;}
.h6{height:68.861952pt;}
.h2a{height:252.960000pt;}
.h12{height:254.446667pt;}
.h1e{height:260.217333pt;}
.h44{height:313.204000pt;}
.h2e{height:334.713333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:-80.317333pt;}
.w8{width:-4.513333pt;}
.wb{width:87.680000pt;}
.w4{width:87.869333pt;}
.wc{width:95.066667pt;}
.we{width:122.786667pt;}
.w3{width:174.970667pt;}
.wd{width:211.226667pt;}
.w2{width:262.840000pt;}
.w9{width:410.000000pt;}
.w7{width:413.460000pt;}
.w6{width:416.556000pt;}
.wf{width:512.562667pt;}
.wa{width:516.760000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x9c{left:-177.066667pt;}
.x6f{left:-174.442667pt;}
.x7e{left:-170.770667pt;}
.x9e{left:-3.200000pt;}
.x0{left:0.000000pt;}
.x80{left:3.096000pt;}
.x89{left:8.720000pt;}
.x88{left:14.800000pt;}
.x74{left:22.640000pt;}
.x9f{left:25.120000pt;}
.x71{left:27.744000pt;}
.x81{left:31.416000pt;}
.xa1{left:33.866667pt;}
.x85{left:37.520000pt;}
.x72{left:38.720000pt;}
.x8a{left:45.226667pt;}
.x86{left:46.240000pt;}
.x1{left:47.621333pt;}
.x87{left:49.600000pt;}
.x99{left:53.813333pt;}
.xa4{left:58.000000pt;}
.xa2{left:59.520000pt;}
.xa5{left:60.640000pt;}
.x8b{left:63.386667pt;}
.x76{left:74.080000pt;}
.x77{left:75.040000pt;}
.xb6{left:76.309333pt;}
.x78{left:77.360000pt;}
.x79{left:80.720000pt;}
.x75{left:83.824000pt;}
.x8c{left:99.733333pt;}
.x8d{left:117.893333pt;}
.x8e{left:136.080000pt;}
.x8f{left:154.240000pt;}
.x90{left:172.426667pt;}
.x83{left:176.346667pt;}
.x91{left:190.586667pt;}
.x92{left:208.746667pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x82{left:224.954667pt;}
.x93{left:226.933333pt;}
.x3d{left:229.828000pt;}
.x53{left:236.076000pt;}
.x3{left:239.785333pt;}
.x94{left:245.093333pt;}
.x18{left:246.309333pt;}
.x5{left:250.204000pt;}
.x1c{left:251.368000pt;}
.x54{left:252.634667pt;}
.x1d{left:255.188000pt;}
.x20{left:258.176000pt;}
.x19{left:259.593333pt;}
.x95{left:263.280000pt;}
.x55{left:265.917333pt;}
.x56{left:269.192000pt;}
.x43{left:274.677333pt;}
.x70{left:277.450667pt;}
.x2c{left:280.784000pt;}
.x57{left:282.476000pt;}
.xa{left:286.572000pt;}
.x44{left:287.961333pt;}
.x45{left:291.348000pt;}
.xb{left:293.213333pt;}
.xc{left:299.722667pt;}
.x58{left:302.308000pt;}
.x46{left:304.632000pt;}
.xd{left:306.364000pt;}
.x1e{left:308.442667pt;}
.xa0{left:309.538667pt;}
.xaf{left:310.608000pt;}
.x41{left:311.601333pt;}
.x3b{left:316.633333pt;}
.x96{left:317.786667pt;}
.x1a{left:320.796000pt;}
.x59{left:322.233333pt;}
.x47{left:324.689333pt;}
.xb1{left:330.572000pt;}
.x33{left:333.165333pt;}
.x1b{left:334.080000pt;}
.x97{left:335.946667pt;}
.x48{left:337.973333pt;}
.x6c{left:339.172000pt;}
.x49{left:341.360000pt;}
.x2a{left:343.321333pt;}
.x5a{left:345.433333pt;}
.x34{left:346.449333pt;}
.x5b{left:348.706667pt;}
.x35{left:352.958667pt;}
.x4a{left:354.644000pt;}
.x6d{left:355.710667pt;}
.x2b{left:356.605333pt;}
.x4b{left:358.032000pt;}
.x68{left:360.022667pt;}
.x5c{left:368.632000pt;}
.x4c{left:371.314667pt;}
.x36{left:372.884000pt;}
.x4d{left:374.702667pt;}
.x69{left:376.677333pt;}
.x37{left:383.789333pt;}
.x6e{left:385.532000pt;}
.x4e{left:387.985333pt;}
.x98{left:390.480000pt;}
.x4f{left:391.373333pt;}
.x2d{left:393.792000pt;}
.x38{left:397.072000pt;}
.x6a{left:399.973333pt;}
.x39{left:403.581333pt;}
.x2e{left:404.717333pt;}
.x3c{left:405.964000pt;}
.x50{left:411.298667pt;}
.x7f{left:413.149333pt;}
.x51{left:414.685333pt;}
.x6b{left:419.898667pt;}
.x3a{left:423.506667pt;}
.x31{left:426.164000pt;}
.x7a{left:428.061333pt;}
.x10{left:429.057333pt;}
.x3f{left:430.812000pt;}
.x52{left:434.610667pt;}
.x3e{left:439.126667pt;}
.x32{left:440.413333pt;}
.x11{left:442.341333pt;}
.x12{left:445.685333pt;}
.xb2{left:447.910667pt;}
.x7b{left:451.374667pt;}
.x7c{left:454.761333pt;}
.x13{left:458.969333pt;}
.x40{left:461.937333pt;}
.x6{left:463.577333pt;}
.x7{left:470.218667pt;}
.xa6{left:472.549333pt;}
.x14{left:473.566667pt;}
.x7d{left:474.686667pt;}
.x9a{left:479.773333pt;}
.x2f{left:480.713333pt;}
.x15{left:486.849333pt;}
.xe{left:490.516000pt;}
.x9b{left:493.057333pt;}
.x30{left:493.997333pt;}
.xf{left:503.798667pt;}
.x26{left:510.504000pt;}
.x9d{left:518.933333pt;}
.x27{left:523.788000pt;}
.x42{left:526.230667pt;}
.x28{left:527.174667pt;}
.x29{left:540.458667pt;}
.x5d{left:542.521333pt;}
.x5e{left:555.805333pt;}
.x5f{left:559.080000pt;}
.x73{left:565.016000pt;}
.x60{left:572.362667pt;}
.x8{left:576.034667pt;}
.xa9{left:578.660000pt;}
.x9{left:582.677333pt;}
.x61{left:588.921333pt;}
.x62{left:592.194667pt;}
.xaa{left:598.585333pt;}
.x63{left:605.478667pt;}
.x64{left:608.753333pt;}
.xa3{left:615.832000pt;}
.x65{left:622.037333pt;}
.x66{left:625.310667pt;}
.x84{left:642.928000pt;}
.x67{left:645.236000pt;}
.xb0{left:649.318667pt;}
.x23{left:656.698667pt;}
.x24{left:669.981333pt;}
.x22{left:672.884000pt;}
.x21{left:677.366667pt;}
.xab{left:678.538667pt;}
.xa7{left:683.842667pt;}
.x25{left:686.652000pt;}
.x1f{left:687.826667pt;}
.xac{left:698.464000pt;}
.xad{left:705.133333pt;}
.xb3{left:717.729333pt;}
.xa8{left:720.198667pt;}
.xb4{left:723.754667pt;}
.xae{left:725.057333pt;}
.x16{left:726.240000pt;}
.x17{left:739.524000pt;}
.xb5{left:741.688000pt;}
}




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