
    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_a22fc98ef866b0da0fd0b758.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_b31d5d710efdf8fd9d10d1dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.706000;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_6032fa0e39251d88470fa283.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_ef054b9e65cf47318b85ecd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_d5ad48fc462a39c91322896f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_c244debcb5a721234e3233ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_023d3d0c6c95efc295408fbc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930000;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_23c8268762b9d7c4b9c627eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_7f905670f610402edd97d366.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_989e979eed441b56e77f5c97.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_99eacbf34ed8da9728471a7c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.840000;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_cca1b53a4c97cb5b3de92f13.woff2')format("woff");}.fff{font-family:fff;line-height:0.988000;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_66883c52969a1b80bfa0897d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900000;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_6245a4329d2ce9ddeee83990.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740000;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_3b6a74e9da8f02217644dd28.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;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_3012370148e618666d5eb4f0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.737000;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_5b4c179e2929056a8da57cc1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.580000;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_6beba3c4835d7439d9c5c74b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_cf413c4b90bb72d7a9658783.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_e6c4cf1c21dad4c7dcb32495.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.932000;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;}
.m1a{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);}
.m8{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);}
.m1{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);}
.m27{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);}
.m7{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);}
.m23{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);}
.m26{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);}
.m2{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);}
.m11{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);}
.m1d{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);}
.m17{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);}
.m22{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);}
.me{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);}
.m10{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);}
.mf{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);}
.m25{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);}
.m1f{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);}
.m28{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);}
.m20{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);}
.m14{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);}
.m1e{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);}
.m12{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);}
.m19{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);}
.m9{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);}
.m21{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);}
.m18{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);}
.m6{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);}
.ma{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);}
.m29{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);}
.m1b{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);}
.m16{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);}
.m15{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);}
.m13{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);}
.m5{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);}
.m4{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);}
.m24{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);}
.mc{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);}
.m3{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);}
.md{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);}
.v1a{vertical-align:-48.450000px;}
.v2{vertical-align:-19.530000px;}
.v1c{vertical-align:-17.532000px;}
.v5{vertical-align:-11.760000px;}
.v7{vertical-align:-10.464000px;}
.v1b{vertical-align:-8.970000px;}
.v1e{vertical-align:-6.468000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:6.252000px;}
.v18{vertical-align:11.016000px;}
.va{vertical-align:13.842000px;}
.vd{vertical-align:18.012000px;}
.v1d{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.v13{vertical-align:24.684000px;}
.v3{vertical-align:25.716000px;}
.v11{vertical-align:28.908000px;}
.v12{vertical-align:33.246000px;}
.v4{vertical-align:35.439532px;}
.vf{vertical-align:41.004000px;}
.vb{vertical-align:42.750000px;}
.v6{vertical-align:48.450000px;}
.v8{vertical-align:49.716000px;}
.v15{vertical-align:57.696000px;}
.vc{vertical-align:66.462000px;}
.v19{vertical-align:70.386000px;}
.v9{vertical-align:78.624000px;}
.v17{vertical-align:81.174000px;}
.v16{vertical-align:98.712000px;}
.v10{vertical-align:120.150000px;}
.v14{vertical-align:143.682000px;}
.ls8{letter-spacing:0.000000px;}
.lsc3{letter-spacing:0.002841px;}
.ls0{letter-spacing:0.003634px;}
.lsc1{letter-spacing:0.004800px;}
.ls2f{letter-spacing:0.097897px;}
.ls3c{letter-spacing:0.103897px;}
.lsa{letter-spacing:0.542815px;}
.ls4a{letter-spacing:0.548815px;}
.lsa1{letter-spacing:0.603044px;}
.lsa0{letter-spacing:0.609044px;}
.lsa2{letter-spacing:0.642088px;}
.ls6a{letter-spacing:0.648088px;}
.lsa5{letter-spacing:0.668467px;}
.ls34{letter-spacing:0.670741px;}
.ls84{letter-spacing:0.676741px;}
.ls9d{letter-spacing:0.714783px;}
.ls61{letter-spacing:0.717483px;}
.ls95{letter-spacing:0.720783px;}
.ls97{letter-spacing:0.723483px;}
.ls54{letter-spacing:0.726843px;}
.ls9c{letter-spacing:0.742766px;}
.lsa6{letter-spacing:0.743675px;}
.ls94{letter-spacing:0.743686px;}
.ls12{letter-spacing:0.746383px;}
.ls57{letter-spacing:0.748200px;}
.ls46{letter-spacing:0.749675px;}
.ls3d{letter-spacing:0.882571px;}
.lsa3{letter-spacing:0.941501px;}
.ls19{letter-spacing:0.993634px;}
.ls11{letter-spacing:0.994200px;}
.ls2a{letter-spacing:0.996017px;}
.ls26{letter-spacing:0.999634px;}
.ls13{letter-spacing:1.000200px;}
.ls25{letter-spacing:1.045834px;}
.ls6e{letter-spacing:1.112815px;}
.ls49{letter-spacing:1.134571px;}
.lsb0{letter-spacing:1.275044px;}
.ls9{letter-spacing:1.275394px;}
.lsb5{letter-spacing:1.281044px;}
.ls67{letter-spacing:1.342862px;}
.ls60{letter-spacing:1.344583px;}
.lsa7{letter-spacing:1.420741px;}
.ls4d{letter-spacing:1.452571px;}
.ls96{letter-spacing:1.464783px;}
.ls53{letter-spacing:1.470843px;}
.ls16{letter-spacing:1.476843px;}
.ls9f{letter-spacing:1.747267px;}
.ls6{letter-spacing:1.861130px;}
.ls3f{letter-spacing:1.939625px;}
.ls3a{letter-spacing:1.945625px;}
.ls35{letter-spacing:2.094583px;}
.ls21{letter-spacing:2.598583px;}
.ls7e{letter-spacing:2.804383px;}
.ls75{letter-spacing:2.810383px;}
.ls52{letter-spacing:2.902115px;}
.ls4c{letter-spacing:2.908115px;}
.ls5c{letter-spacing:2.908200px;}
.ls86{letter-spacing:2.914741px;}
.ls89{letter-spacing:2.920741px;}
.ls1{letter-spacing:2.983200px;}
.ls2{letter-spacing:2.989200px;}
.ls50{letter-spacing:3.358115px;}
.ls48{letter-spacing:3.364115px;}
.lsa4{letter-spacing:3.512100px;}
.ls72{letter-spacing:3.578383px;}
.ls7d{letter-spacing:3.584383px;}
.ls27{letter-spacing:3.684374px;}
.ls1d{letter-spacing:3.690374px;}
.ls37{letter-spacing:3.870571px;}
.ls17{letter-spacing:3.876571px;}
.ls78{letter-spacing:4.009200px;}
.ls73{letter-spacing:4.015200px;}
.ls55{letter-spacing:4.108741px;}
.ls5d{letter-spacing:4.302571px;}
.ls76{letter-spacing:4.303200px;}
.ls7f{letter-spacing:4.309200px;}
.ls2e{letter-spacing:4.620571px;}
.ls44{letter-spacing:4.627200px;}
.ls42{letter-spacing:4.633200px;}
.ls40{letter-spacing:4.753200px;}
.ls7b{letter-spacing:4.759200px;}
.ls45{letter-spacing:5.640571px;}
.ls2b{letter-spacing:6.120571px;}
.ls80{letter-spacing:7.266571px;}
.ls81{letter-spacing:9.190741px;}
.ls71{letter-spacing:9.246843px;}
.ls82{letter-spacing:9.560383px;}
.ls66{letter-spacing:10.312090px;}
.ls36{letter-spacing:10.636741px;}
.ls58{letter-spacing:10.667607px;}
.ls77{letter-spacing:10.692843px;}
.ls83{letter-spacing:11.386741px;}
.ls7a{letter-spacing:11.436843px;}
.ls9b{letter-spacing:11.457634px;}
.ls93{letter-spacing:11.595483px;}
.ls18{letter-spacing:11.606100px;}
.ls1a{letter-spacing:11.726100px;}
.lsa9{letter-spacing:11.895344px;}
.ls7{letter-spacing:11.954850px;}
.ls8a{letter-spacing:12.052766px;}
.ls87{letter-spacing:12.058766px;}
.ls56{letter-spacing:12.339483px;}
.ls62{letter-spacing:12.345483px;}
.ls5a{letter-spacing:12.370200px;}
.lsc4{letter-spacing:12.668767px;}
.ls92{letter-spacing:13.042741px;}
.ls91{letter-spacing:13.048741px;}
.ls1c{letter-spacing:13.083483px;}
.ls41{letter-spacing:13.089483px;}
.ls1b{letter-spacing:13.098843px;}
.ls2c{letter-spacing:13.111625px;}
.ls33{letter-spacing:13.308583px;}
.lsbf{letter-spacing:13.406400px;}
.lsc0{letter-spacing:13.418400px;}
.lsc5{letter-spacing:13.436004px;}
.lsbb{letter-spacing:13.448400px;}
.lsbd{letter-spacing:13.454400px;}
.lsbc{letter-spacing:13.466568px;}
.ls7c{letter-spacing:13.514551px;}
.ls6f{letter-spacing:13.520551px;}
.lsc2{letter-spacing:13.685094px;}
.ls4b{letter-spacing:13.693200px;}
.ls70{letter-spacing:13.698002px;}
.ls51{letter-spacing:13.699200px;}
.ls9a{letter-spacing:13.983483px;}
.ls8f{letter-spacing:14.094088px;}
.ls2d{letter-spacing:14.289483px;}
.ls3e{letter-spacing:14.583483px;}
.ls9e{letter-spacing:14.704798px;}
.ls99{letter-spacing:14.943900px;}
.lsbe{letter-spacing:15.009224px;}
.ls3b{letter-spacing:15.361200px;}
.ls69{letter-spacing:15.615725px;}
.lsac{letter-spacing:15.663483px;}
.ls63{letter-spacing:16.077483px;}
.ls43{letter-spacing:16.242571px;}
.lsaa{letter-spacing:16.266088px;}
.ls68{letter-spacing:16.291814px;}
.ls5e{letter-spacing:17.047200px;}
.ls90{letter-spacing:17.215373px;}
.ls20{letter-spacing:17.319483px;}
.ls24{letter-spacing:17.325483px;}
.ls8b{letter-spacing:18.022741px;}
.ls85{letter-spacing:18.028741px;}
.ls4f{letter-spacing:18.069483px;}
.ls38{letter-spacing:18.078843px;}
.ls88{letter-spacing:18.094200px;}
.ls8d{letter-spacing:18.095675px;}
.ls23{letter-spacing:18.098383px;}
.lsab{letter-spacing:18.099483px;}
.ls8c{letter-spacing:18.100200px;}
.ls8e{letter-spacing:18.101675px;}
.lsad{letter-spacing:18.342088px;}
.ls74{letter-spacing:18.476100px;}
.ls79{letter-spacing:18.482100px;}
.ls5f{letter-spacing:18.498571px;}
.ls1f{letter-spacing:18.518383px;}
.ls15{letter-spacing:19.526383px;}
.ls39{letter-spacing:19.563483px;}
.ls32{letter-spacing:20.163483px;}
.ls59{letter-spacing:20.335200px;}
.ls29{letter-spacing:21.057483px;}
.ls28{letter-spacing:21.222571px;}
.ls31{letter-spacing:21.228571px;}
.ls4e{letter-spacing:22.563483px;}
.ls65{letter-spacing:24.696017px;}
.ls47{letter-spacing:25.239483px;}
.lsa8{letter-spacing:25.582741px;}
.ls14{letter-spacing:25.839483px;}
.ls5b{letter-spacing:27.255483px;}
.ls98{letter-spacing:27.864783px;}
.lsae{letter-spacing:32.773200px;}
.ls10{letter-spacing:41.916176px;}
.lsd{letter-spacing:43.831124px;}
.lse{letter-spacing:53.409608px;}
.lsf{letter-spacing:53.409842px;}
.ls6d{letter-spacing:58.197483px;}
.ls1e{letter-spacing:70.064100px;}
.ls4{letter-spacing:70.236600px;}
.ls30{letter-spacing:70.484100px;}
.lsb{letter-spacing:70.649757px;}
.lsc{letter-spacing:70.649990px;}
.ls5{letter-spacing:72.353510px;}
.ls3{letter-spacing:72.361200px;}
.lsb9{letter-spacing:72.396768px;}
.ls22{letter-spacing:72.578100px;}
.lsb6{letter-spacing:73.005044px;}
.lsb4{letter-spacing:73.011044px;}
.lsb8{letter-spacing:95.469044px;}
.lsaf{letter-spacing:139.429574px;}
.lsb7{letter-spacing:158.641603px;}
.lsb3{letter-spacing:200.819549px;}
.lsb1{letter-spacing:282.933044px;}
.lsba{letter-spacing:282.972088px;}
.lsb2{letter-spacing:282.978088px;}
.ls6c{letter-spacing:337.548088px;}
.ls6b{letter-spacing:347.253965px;}
.ls64{letter-spacing:845.262017px;}
.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;}
}
.ws75{word-spacing:-49.312301px;}
.ws2b{word-spacing:-14.943900px;}
.wsb0{word-spacing:-13.449600px;}
.ws19{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.wsb2{word-spacing:-10.460700px;}
.ws77{word-spacing:-5.678682px;}
.ws49{word-spacing:-4.244068px;}
.wsa7{word-spacing:-4.239000px;}
.wsb5{word-spacing:-4.235100px;}
.ws76{word-spacing:-4.233294px;}
.ws9f{word-spacing:-4.233000px;}
.wsa8{word-spacing:-3.512706px;}
.ws7b{word-spacing:-3.486736px;}
.ws33{word-spacing:-3.227882px;}
.wsb7{word-spacing:-3.108331px;}
.wsb8{word-spacing:-3.048556px;}
.ws4c{word-spacing:-3.039600px;}
.ws9e{word-spacing:-2.892110px;}
.ws1d{word-spacing:-2.809453px;}
.ws32{word-spacing:-2.630126px;}
.wsd5{word-spacing:-2.575200px;}
.ws69{word-spacing:-2.574600px;}
.ws68{word-spacing:-2.572800px;}
.wsc8{word-spacing:-2.528525px;}
.wse1{word-spacing:-2.510575px;}
.ws47{word-spacing:-2.391024px;}
.ws46{word-spacing:-2.331248px;}
.wsc9{word-spacing:-2.313331px;}
.wsd7{word-spacing:-2.211697px;}
.ws64{word-spacing:-2.032370px;}
.ws8{word-spacing:-1.908367px;}
.ws60{word-spacing:-1.793268px;}
.ws80{word-spacing:-1.613941px;}
.ws117{word-spacing:-1.560154px;}
.wsa2{word-spacing:-1.434614px;}
.wsdb{word-spacing:-1.374839px;}
.ws7{word-spacing:-1.322630px;}
.ws4f{word-spacing:-1.255288px;}
.ws2f{word-spacing:-1.195512px;}
.ws81{word-spacing:-1.135736px;}
.ws8d{word-spacing:-1.129766px;}
.ws11b{word-spacing:-1.075968px;}
.ws63{word-spacing:-1.075961px;}
.ws11c{word-spacing:-1.022170px;}
.wsa0{word-spacing:-0.977934px;}
.ws86{word-spacing:-0.956410px;}
.ws8c{word-spacing:-0.950700px;}
.ws87{word-spacing:-0.948900px;}
.ws94{word-spacing:-0.947100px;}
.ws85{word-spacing:-0.942900px;}
.wsd2{word-spacing:-0.896634px;}
.ws8e{word-spacing:-0.860774px;}
.wsbd{word-spacing:-0.860271px;}
.ws9d{word-spacing:-0.836858px;}
.ws28{word-spacing:-0.777083px;}
.ws13{word-spacing:-0.720588px;}
.ws12{word-spacing:-0.717307px;}
.wsad{word-spacing:-0.645581px;}
.ws21{word-spacing:-0.597756px;}
.ws15{word-spacing:-0.537980px;}
.wsae{word-spacing:-0.430387px;}
.ws4b{word-spacing:-0.418429px;}
.ws11e{word-spacing:-0.376589px;}
.ws31{word-spacing:-0.358654px;}
.wsea{word-spacing:-0.322544px;}
.ws1c{word-spacing:-0.298878px;}
.ws40{word-spacing:-0.268992px;}
.ws10{word-spacing:-0.239102px;}
.ws3f{word-spacing:-0.215194px;}
.wsb{word-spacing:-0.179327px;}
.ws100{word-spacing:-0.161395px;}
.wsdc{word-spacing:-0.151200px;}
.ws5e{word-spacing:-0.135326px;}
.ws22{word-spacing:-0.119551px;}
.ws10b{word-spacing:-0.107597px;}
.ws14{word-spacing:-0.059776px;}
.ws3e{word-spacing:-0.053798px;}
.ws114{word-spacing:-0.013594px;}
.ws4{word-spacing:-0.005024px;}
.ws107{word-spacing:-0.004157px;}
.ws18{word-spacing:-0.000367px;}
.ws0{word-spacing:0.000000px;}
.ws5a{word-spacing:0.031103px;}
.wsc0{word-spacing:0.053798px;}
.ws1b{word-spacing:0.059776px;}
.wsa6{word-spacing:0.107597px;}
.ws16{word-spacing:0.119551px;}
.ws6{word-spacing:0.161395px;}
.ws9{word-spacing:0.179327px;}
.wsca{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.wscf{word-spacing:0.247989px;}
.wse2{word-spacing:0.268992px;}
.ws45{word-spacing:0.298878px;}
.ws101{word-spacing:0.322790px;}
.ws7d{word-spacing:0.358654px;}
.wsf8{word-spacing:0.376589px;}
.wse{word-spacing:0.418429px;}
.ws17{word-spacing:0.478205px;}
.wsd{word-spacing:0.537980px;}
.ws11f{word-spacing:0.591782px;}
.wsd9{word-spacing:0.597756px;}
.wsc3{word-spacing:0.717307px;}
.wsda{word-spacing:0.777083px;}
.wscd{word-spacing:0.806976px;}
.ws3c{word-spacing:0.833864px;}
.ws61{word-spacing:0.836858px;}
.wscc{word-spacing:0.860774px;}
.wsd0{word-spacing:0.956410px;}
.wsf0{word-spacing:1.016185px;}
.wsc{word-spacing:1.075961px;}
.wsac{word-spacing:1.135736px;}
.ws113{word-spacing:1.183565px;}
.ws65{word-spacing:1.195512px;}
.wsd3{word-spacing:1.255288px;}
.ws7f{word-spacing:1.374839px;}
.ws1e{word-spacing:1.494390px;}
.ws6b{word-spacing:1.506355px;}
.ws37{word-spacing:1.554166px;}
.ws55{word-spacing:1.613941px;}
.ws26{word-spacing:1.673717px;}
.wsab{word-spacing:1.733492px;}
.ws111{word-spacing:1.775347px;}
.ws34{word-spacing:1.853044px;}
.wsfb{word-spacing:1.882944px;}
.wsf5{word-spacing:1.912819px;}
.ws3d{word-spacing:1.960759px;}
.ws53{word-spacing:1.972595px;}
.ws103{word-spacing:1.990541px;}
.ws42{word-spacing:2.032370px;}
.ws4e{word-spacing:2.092146px;}
.ws36{word-spacing:2.151922px;}
.ws10d{word-spacing:2.205734px;}
.ws39{word-spacing:2.211697px;}
.ws38{word-spacing:2.271473px;}
.wsdf{word-spacing:2.331248px;}
.ws7e{word-spacing:2.336604px;}
.ws78{word-spacing:2.342604px;}
.ws79{word-spacing:2.400906px;}
.ws74{word-spacing:2.406533px;}
.ws8a{word-spacing:2.450800px;}
.ws73{word-spacing:2.510575px;}
.wsf4{word-spacing:2.630126px;}
.ws2c{word-spacing:2.689902px;}
.ws6a{word-spacing:2.749678px;}
.ws9c{word-spacing:2.869229px;}
.wsf3{word-spacing:2.929004px;}
.wsb6{word-spacing:2.988780px;}
.ws121{word-spacing:3.012710px;}
.ws3b{word-spacing:3.048556px;}
.ws54{word-spacing:3.108331px;}
.ws59{word-spacing:3.152899px;}
.ws56{word-spacing:3.156713px;}
.ws62{word-spacing:3.168107px;}
.ws11a{word-spacing:3.174106px;}
.ws10e{word-spacing:3.221520px;}
.ws112{word-spacing:3.223296px;}
.ws5{word-spacing:3.227904px;}
.wsa5{word-spacing:3.281702px;}
.ws99{word-spacing:3.287658px;}
.wsa{word-spacing:3.347434px;}
.ws43{word-spacing:3.407209px;}
.ws109{word-spacing:3.443098px;}
.wsd8{word-spacing:3.466985px;}
.wsbc{word-spacing:3.526760px;}
.ws1a{word-spacing:3.586536px;}
.wsa4{word-spacing:3.604493px;}
.ws66{word-spacing:3.646312px;}
.ws20{word-spacing:3.706087px;}
.ws67{word-spacing:3.751429px;}
.ws27{word-spacing:3.765863px;}
.ws82{word-spacing:3.825638px;}
.ws2d{word-spacing:4.004965px;}
.wsa3{word-spacing:4.064741px;}
.ws110{word-spacing:4.196275px;}
.wsf9{word-spacing:4.303872px;}
.wsf7{word-spacing:4.357670px;}
.ws116{word-spacing:4.465267px;}
.ws8f{word-spacing:4.483170px;}
.ws1f{word-spacing:4.542946px;}
.ws51{word-spacing:4.565959px;}
.ws50{word-spacing:4.571959px;}
.ws3a{word-spacing:4.602721px;}
.ws25{word-spacing:4.722272px;}
.wsf6{word-spacing:4.734259px;}
.ws5f{word-spacing:4.782048px;}
.wse9{word-spacing:4.841824px;}
.wse8{word-spacing:4.901599px;}
.wsee{word-spacing:5.021150px;}
.wsef{word-spacing:5.025271px;}
.wsbf{word-spacing:5.095824px;}
.wsbe{word-spacing:5.107824px;}
.wsd6{word-spacing:5.260253px;}
.ws115{word-spacing:5.272243px;}
.ws29{word-spacing:5.320028px;}
.ws10c{word-spacing:5.487437px;}
.ws2a{word-spacing:5.499355px;}
.ws96{word-spacing:5.524146px;}
.ws93{word-spacing:5.524332px;}
.ws8b{word-spacing:5.527057px;}
.ws97{word-spacing:5.530146px;}
.wsfd{word-spacing:5.541235px;}
.ws9a{word-spacing:5.618906px;}
.wsb9{word-spacing:5.664066px;}
.ws9b{word-spacing:5.678682px;}
.wsc2{word-spacing:5.694066px;}
.wsc1{word-spacing:5.700066px;}
.wseb{word-spacing:5.738458px;}
.ws41{word-spacing:5.798233px;}
.ws89{word-spacing:5.831153px;}
.ws23{word-spacing:6.097111px;}
.ws24{word-spacing:6.156887px;}
.wsf{word-spacing:6.276438px;}
.wsfc{word-spacing:6.294413px;}
.wsba{word-spacing:6.336214px;}
.wsf2{word-spacing:6.395989px;}
.wsf1{word-spacing:6.455765px;}
.ws108{word-spacing:6.617203px;}
.wsed{word-spacing:6.694867px;}
.wse7{word-spacing:6.754643px;}
.ws102{word-spacing:6.778598px;}
.ws106{word-spacing:6.832397px;}
.wsfa{word-spacing:6.886195px;}
.wse6{word-spacing:6.993745px;}
.wsce{word-spacing:7.053521px;}
.wscb{word-spacing:7.177824px;}
.wsd4{word-spacing:7.412174px;}
.wse5{word-spacing:7.651277px;}
.ws88{word-spacing:7.711052px;}
.ws90{word-spacing:7.830604px;}
.ws2e{word-spacing:7.890379px;}
.ws118{word-spacing:8.177357px;}
.ws30{word-spacing:8.607686px;}
.wse0{word-spacing:8.846789px;}
.ws35{word-spacing:9.026116px;}
.ws91{word-spacing:9.085891px;}
.ws10a{word-spacing:9.143779px;}
.ws120{word-spacing:9.145603px;}
.ws11d{word-spacing:9.145728px;}
.ws119{word-spacing:9.146563px;}
.ws105{word-spacing:9.146842px;}
.wsff{word-spacing:9.148886px;}
.ws10f{word-spacing:9.149174px;}
.wsd1{word-spacing:9.444545px;}
.ws48{word-spacing:9.545959px;}
.wsaf{word-spacing:11.130000px;}
.wse4{word-spacing:11.131200px;}
.wsb1{word-spacing:11.136000px;}
.wse3{word-spacing:11.137200px;}
.ws92{word-spacing:11.536691px;}
.ws83{word-spacing:11.596466px;}
.wsec{word-spacing:11.955120px;}
.wsb4{word-spacing:12.552876px;}
.wsa9{word-spacing:13.012645px;}
.wsde{word-spacing:13.329959px;}
.ws84{word-spacing:14.405920px;}
.ws95{word-spacing:14.884124px;}
.ws5d{word-spacing:14.911343px;}
.wsdd{word-spacing:15.481880px;}
.wsbb{word-spacing:18.252066px;}
.ws44{word-spacing:19.427070px;}
.wsfe{word-spacing:20.281997px;}
.ws104{word-spacing:22.595328px;}
.wsaa{word-spacing:44.831700px;}
.ws3{word-spacing:46.604815px;}
.ws2{word-spacing:46.647305px;}
.wsc5{word-spacing:46.883106px;}
.wsc7{word-spacing:46.982820px;}
.ws98{word-spacing:58.263667px;}
.wsb3{word-spacing:58.317466px;}
.wsc4{word-spacing:60.763742px;}
.wsc6{word-spacing:61.382907px;}
.ws57{word-spacing:202.843103px;}
.ws6f{word-spacing:306.220493px;}
.ws6c{word-spacing:323.435981px;}
.ws71{word-spacing:333.119693px;}
.ws6e{word-spacing:392.016000px;}
.ws72{word-spacing:414.268620px;}
.ws70{word-spacing:459.798154px;}
.wsa1{word-spacing:513.412628px;}
.ws52{word-spacing:518.493554px;}
.ws4a{word-spacing:536.127356px;}
.ws7c{word-spacing:606.005033px;}
.ws6d{word-spacing:653.796115px;}
.ws5b{word-spacing:773.615815px;}
.ws5c{word-spacing:790.532310px;}
.ws4d{word-spacing:810.437585px;}
.ws58{word-spacing:865.849566px;}
.ws7a{word-spacing:902.073580px;}
._5{margin-left:-7.908365px;}
._3{margin-left:-6.636566px;}
._4{margin-left:-4.949453px;}
._7{margin-left:-3.927283px;}
._6{margin-left:-1.936742px;}
._2{width:1.135740px;}
._1{width:2.987776px;}
._19{width:4.547137px;}
._3e{width:8.637808px;}
._2a{width:9.982525px;}
._44{width:11.079024px;}
._17{width:12.158438px;}
._11{width:13.533209px;}
._e{width:15.428515px;}
._9{width:16.677504px;}
._b{width:18.649987px;}
._1a{width:19.666172px;}
._d{width:20.682358px;}
._13{width:21.819569px;}
._c{width:23.216856px;}
._15{width:24.866650px;}
._43{width:26.535188px;}
._29{width:27.581950px;}
._16{width:29.016564px;}
._a{width:30.032749px;}
._14{width:31.370261px;}
._0{width:33.355008px;}
._12{width:34.968726px;}
._26{width:36.522892px;}
._3b{width:37.896748px;}
._18{width:39.332345px;}
._41{width:40.617792px;}
._3a{width:42.046170px;}
._25{width:43.181906px;}
._27{width:46.110911px;}
._40{width:53.060238px;}
._24{width:62.166624px;}
._8{width:63.858701px;}
._1c{width:71.767066px;}
._42{width:77.362099px;}
._34{width:80.751528px;}
._33{width:108.845847px;}
._2e{width:115.982573px;}
._2c{width:117.979891px;}
._30{width:119.593843px;}
._2d{width:124.005312px;}
._3d{width:128.631974px;}
._28{width:136.701734px;}
._36{width:140.126680px;}
._2b{width:152.249472px;}
._2f{width:206.209267px;}
._1b{width:288.144230px;}
._20{width:295.783603px;}
._31{width:300.410266px;}
._23{width:304.105584px;}
._1f{width:311.342851px;}
._1d{width:321.553037px;}
._3f{width:343.863494px;}
._1e{width:346.569293px;}
._21{width:359.857498px;}
._22{width:405.488851px;}
._35{width:431.370766px;}
._38{width:432.691488px;}
._37{width:466.054111px;}
._39{width:467.641415px;}
._3c{width:576.557453px;}
._f{width:790.568659px;}
._32{width:2052.603300px;}
._10{width:2076.513300px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc6{color:rgb(38,38,38);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(55,53,86);}
.fs12{font-size:29.887800px;}
.fsf{font-size:34.481700px;}
.fsc{font-size:34.526400px;}
.fs15{font-size:36.966888px;}
.fs18{font-size:37.045512px;}
.fsd{font-size:38.313000px;}
.fs13{font-size:41.073733px;}
.fs16{font-size:41.161092px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fse{font-size:42.144300px;}
.fs14{font-size:45.182339px;}
.fs17{font-size:45.278436px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs10{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs1{font-size:75.592800px;}
.fs11{font-size:83.686200px;}
.fs3{font-size:107.596800px;}
.fs0{font-size:113.389200px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.425340px;}
.y95{bottom:3.884110px;}
.y196{bottom:5.558931px;}
.y1a6{bottom:6.529490px;}
.y1a{bottom:14.151273px;}
.y2{bottom:17.658006px;}
.y8c{bottom:18.251485px;}
.y195{bottom:20.375034px;}
.y1a5{bottom:21.377105px;}
.y8d{bottom:28.308648px;}
.y3{bottom:35.066838px;}
.y93{bottom:37.886956px;}
.y1a1{bottom:43.542004px;}
.y1b1{bottom:44.593349px;}
.y19b{bottom:50.410630px;}
.y1ab{bottom:51.476584px;}
.y8e{bottom:55.702449px;}
.y1a0{bottom:55.712512px;}
.y1b0{bottom:56.789742px;}
.y32{bottom:63.780000px;}
.y19c{bottom:66.198653px;}
.y1ac{bottom:67.298185px;}
.y19f{bottom:67.882992px;}
.y1af{bottom:68.986107px;}
.y19e{bottom:80.053500px;}
.y1ae{bottom:81.182500px;}
.y8f{bottom:83.096250px;}
.y19a{bottom:90.238051px;}
.y1aa{bottom:91.388713px;}
.y9c{bottom:107.587500px;}
.y152{bottom:108.612000px;}
.y25c{bottom:108.957000px;}
.y90{bottom:110.490021px;}
.y99{bottom:115.877085px;}
.y63{bottom:119.595000px;}
.y20c{bottom:123.121500px;}
.y1d8{bottom:125.722500px;}
.y98{bottom:126.780792px;}
.y9b{bottom:126.820500px;}
.y25b{bottom:128.325000px;}
.y151{bottom:128.718000px;}
.y150{bottom:128.875500px;}
.y202{bottom:128.880000px;}
.y199{bottom:130.065472px;}
.y1a9{bottom:131.300842px;}
.y97{bottom:137.684528px;}
.y91{bottom:137.883822px;}
.yfa{bottom:138.001500px;}
.y62{bottom:139.858500px;}
.y20b{bottom:143.386500px;}
.y201{bottom:145.318500px;}
.y1d7{bottom:145.987500px;}
.y9a{bottom:146.053500px;}
.yc0{bottom:146.758500px;}
.y25a{bottom:147.691500px;}
.y96{bottom:148.588250px;}
.y14f{bottom:148.983000px;}
.y14e{bottom:149.139000px;}
.y12b{bottom:153.915000px;}
.y193{bottom:155.524500px;}
.y228{bottom:156.582000px;}
.yba{bottom:157.009500px;}
.yf9{bottom:158.266500px;}
.ybb{bottom:160.162500px;}
.y200{bottom:161.757000px;}
.y20a{bottom:163.650000px;}
.y92{bottom:165.277623px;}
.ybd{bottom:165.978000px;}
.ybe{bottom:166.086000px;}
.y1d6{bottom:166.251000px;}
.y259{bottom:167.059500px;}
.y82{bottom:168.481500px;}
.y61{bottom:169.089000px;}
.y14d{bottom:169.404000px;}
.ybc{bottom:169.438500px;}
.y198{bottom:169.892893px;}
.ybf{bottom:170.589000px;}
.y1a8{bottom:171.212971px;}
.y94{bottom:174.137504px;}
.y12a{bottom:174.180000px;}
.y192{bottom:175.788000px;}
.y227{bottom:175.950000px;}
.y1ff{bottom:178.195500px;}
.yf8{bottom:178.530000px;}
.y209{bottom:183.913500px;}
.y258{bottom:186.427500px;}
.y1d5{bottom:186.514500px;}
.yc1{bottom:187.047000px;}
.y14c{bottom:189.667500px;}
.y31{bottom:193.824000px;}
.y129{bottom:194.443500px;}
.y1fe{bottom:194.634000px;}
.y17b{bottom:194.866500px;}
.y226{bottom:195.318000px;}
.y191{bottom:196.053000px;}
.yf7{bottom:198.793500px;}
.yb9{bottom:199.540500px;}
.y19d{bottom:199.763459px;}
.y60{bottom:200.920500px;}
.y1ad{bottom:201.147068px;}
.y208{bottom:204.178500px;}
.y257{bottom:205.794000px;}
.y1d4{bottom:206.779500px;}
.y83{bottom:208.858660px;}
.y197{bottom:209.720314px;}
.yb5{bottom:209.791500px;}
.y1a7{bottom:211.125100px;}
.y17a{bottom:211.305000px;}
.y30{bottom:214.087500px;}
.y225{bottom:214.684500px;}
.y128{bottom:214.708500px;}
.y190{bottom:216.316500px;}
.y1fd{bottom:218.574000px;}
.yb6{bottom:218.760000px;}
.yb7{bottom:218.868000px;}
.y84{bottom:218.915823px;}
.yf6{bottom:219.058500px;}
.y1a2{bottom:219.826249px;}
.y1b2{bottom:221.252528px;}
.yb8{bottom:223.371000px;}
.y207{bottom:224.442000px;}
.y256{bottom:225.162000px;}
.y14b{bottom:226.818000px;}
.y1d3{bottom:227.043000px;}
.y1a3{bottom:233.762172px;}
.y224{bottom:234.052500px;}
.y127{bottom:234.814500px;}
.y126{bottom:234.972000px;}
.y1b3{bottom:235.218092px;}
.y179{bottom:235.245000px;}
.y5f{bottom:235.740000px;}
.y18f{bottom:236.580000px;}
.yb4{bottom:239.116500px;}
.y8a{bottom:243.819339px;}
.y255{bottom:244.528500px;}
.y206{bottom:244.707000px;}
.y85{bottom:246.501186px;}
.y1d2{bottom:247.308000px;}
.y1fc{bottom:250.192500px;}
.y2f{bottom:252.285000px;}
.y223{bottom:253.419000px;}
.y124{bottom:255.079500px;}
.y125{bottom:255.235500px;}
.y5e{bottom:256.003500px;}
.y18e{bottom:256.845000px;}
.yb3{bottom:259.381500px;}
.y254{bottom:263.896500px;}
.y14a{bottom:263.970000px;}
.y205{bottom:264.970500px;}
.yf5{bottom:265.954500px;}
.y178{bottom:266.865000px;}
.y1d1{bottom:267.571500px;}
.y1fb{bottom:269.425500px;}
.y2e{bottom:272.548500px;}
.y222{bottom:272.787000px;}
.y86{bottom:274.086541px;}
.y123{bottom:275.500500px;}
.y5d{bottom:276.268500px;}
.y18d{bottom:277.108500px;}
.yb2{bottom:279.645000px;}
.yf4{bottom:282.393000px;}
.y253{bottom:283.264500px;}
.y149{bottom:284.233500px;}
.y204{bottom:285.234000px;}
.y1d0{bottom:287.679000px;}
.y1cf{bottom:287.835000px;}
.y1fa{bottom:288.658500px;}
.y221{bottom:292.155000px;}
.y2d{bottom:292.813500px;}
.y122{bottom:295.764000px;}
.y5c{bottom:296.532000px;}
.y18c{bottom:297.373500px;}
.yf3{bottom:298.831500px;}
.yb1{bottom:299.910000px;}
.y87{bottom:301.671904px;}
.y252{bottom:302.631000px;}
.y148{bottom:304.497000px;}
.y203{bottom:305.499000px;}
.y174{bottom:307.285500px;}
.y177{bottom:307.545000px;}
.y1cd{bottom:307.942500px;}
.y1ce{bottom:308.100000px;}
.y220{bottom:311.521500px;}
.y2c{bottom:313.077000px;}
.yf2{bottom:315.270000px;}
.y171{bottom:315.763500px;}
.y121{bottom:316.029000px;}
.y5b{bottom:316.797000px;}
.y18b{bottom:317.637000px;}
.yb0{bottom:320.173500px;}
.y251{bottom:321.999000px;}
.y176{bottom:323.983500px;}
.y173{bottom:324.243000px;}
.y147{bottom:324.762000px;}
.y1f9{bottom:325.762500px;}
.y1cc{bottom:328.363500px;}
.y88{bottom:329.257264px;}
.y21f{bottom:330.889500px;}
.yf1{bottom:331.708500px;}
.y170{bottom:332.202000px;}
.y2b{bottom:333.342000px;}
.y5a{bottom:337.060500px;}
.y18a{bottom:337.900500px;}
.y175{bottom:340.422000px;}
.yaf{bottom:340.437000px;}
.y172{bottom:340.681500px;}
.y250{bottom:341.367000px;}
.y146{bottom:345.025500px;}
.y120{bottom:345.259500px;}
.y1f8{bottom:346.027500px;}
.yf0{bottom:348.147000px;}
.y1cb{bottom:348.628500px;}
.y21e{bottom:350.256000px;}
.y2a{bottom:353.605500px;}
.y89{bottom:356.842623px;}
.y59{bottom:357.324000px;}
.y189{bottom:358.165500px;}
.yae{bottom:360.702000px;}
.y24f{bottom:360.733500px;}
.y16c{bottom:364.621500px;}
.y145{bottom:365.290500px;}
.y8b{bottom:365.702506px;}
.y1f7{bottom:366.291000px;}
.y16f{bottom:366.795000px;}
.y1ca{bottom:368.892000px;}
.y21d{bottom:369.624000px;}
.yef{bottom:372.085500px;}
.y29{bottom:373.869000px;}
.y167{bottom:375.015000px;}
.y58{bottom:377.589000px;}
.y16b{bottom:377.742000px;}
.y11f{bottom:380.079000px;}
.y24e{bottom:380.101500px;}
.yad{bottom:380.965500px;}
.y16a{bottom:382.689000px;}
.y16e{bottom:383.233500px;}
.y144{bottom:385.554000px;}
.y1f6{bottom:386.554500px;}
.y21c{bottom:388.992000px;}
.y1c9{bottom:389.155500px;}
.y166{bottom:391.452000px;}
.y188{bottom:393.165000px;}
.y28{bottom:394.134000px;}
.y169{bottom:396.378000px;}
.y57{bottom:397.852500px;}
.y24d{bottom:399.468000px;}
.y16d{bottom:399.672000px;}
.y11e{bottom:400.342500px;}
.yac{bottom:401.230500px;}
.y168{bottom:401.326500px;}
.yee{bottom:403.705500px;}
.y143{bottom:405.817500px;}
.y1f5{bottom:406.819500px;}
.y21b{bottom:408.358500px;}
.y1c8{bottom:409.420500px;}
.y187{bottom:412.398000px;}
.y27{bottom:414.397500px;}
.y56{bottom:418.117500px;}
.y24c{bottom:418.836000px;}
.y11d{bottom:420.606000px;}
.y165{bottom:425.785500px;}
.y142{bottom:426.082500px;}
.y1f4{bottom:427.083000px;}
.y21a{bottom:427.726500px;}
.y1c7{bottom:429.684000px;}
.y186{bottom:431.631000px;}
.y26{bottom:434.662500px;}
.y24b{bottom:438.204000px;}
.y55{bottom:438.381000px;}
.yed{bottom:440.809500px;}
.y11c{bottom:440.871000px;}
.y163{bottom:442.224000px;}
.y141{bottom:446.346000px;}
.y1f3{bottom:447.348000px;}
.y1c6{bottom:449.949000px;}
.y25{bottom:454.926000px;}
.y219{bottom:456.060000px;}
.y24a{bottom:457.570500px;}
.y54{bottom:458.644500px;}
.y162{bottom:458.662500px;}
.yec{bottom:461.074500px;}
.y11b{bottom:461.134500px;}
.y140{bottom:466.611000px;}
.y1f2{bottom:467.611500px;}
.y1c5{bottom:470.212500px;}
.y164{bottom:475.101000px;}
.y23{bottom:475.189500px;}
.yab{bottom:475.531500px;}
.y249{bottom:476.938500px;}
.y53{bottom:478.909500px;}
.y24{bottom:480.615000px;}
.yeb{bottom:481.338000px;}
.y11a{bottom:481.399500px;}
.y1f1{bottom:487.875000px;}
.y1c4{bottom:490.476000px;}
.y22{bottom:495.454500px;}
.y218{bottom:495.511500px;}
.yaa{bottom:495.796500px;}
.y248{bottom:496.305000px;}
.y161{bottom:499.039500px;}
.y52{bottom:499.173000px;}
.yea{bottom:501.601500px;}
.y119{bottom:501.663000px;}
.y1f0{bottom:508.140000px;}
.y1c3{bottom:510.741000px;}
.y13f{bottom:510.805500px;}
.y247{bottom:515.673000px;}
.y21{bottom:515.718000px;}
.ya9{bottom:516.060000px;}
.y13e{bottom:518.008500px;}
.y51{bottom:519.438000px;}
.y217{bottom:519.676500px;}
.y118{bottom:521.926500px;}
.y1ef{bottom:528.403500px;}
.y160{bottom:530.659500px;}
.y1c2{bottom:531.004500px;}
.y13d{bottom:534.447000px;}
.y216{bottom:534.874500px;}
.y246{bottom:535.041000px;}
.y20{bottom:535.983000px;}
.ya8{bottom:536.323500px;}
.ye9{bottom:538.753500px;}
.y50{bottom:539.701500px;}
.y117{bottom:542.191500px;}
.y1ee{bottom:548.667000px;}
.y15f{bottom:549.892500px;}
.y215{bottom:550.072500px;}
.y1c1{bottom:551.269500px;}
.y245{bottom:554.407500px;}
.y1f{bottom:556.246500px;}
.ya7{bottom:556.588500px;}
.y13c{bottom:558.385500px;}
.y4f{bottom:559.965000px;}
.y116{bottom:562.455000px;}
.y214{bottom:565.270500px;}
.y81{bottom:565.674000px;}
.y1ed{bottom:568.932000px;}
.y244{bottom:573.775500px;}
.ye8{bottom:575.904000px;}
.y1e{bottom:576.510000px;}
.ya6{bottom:576.852000px;}
.y4e{bottom:580.230000px;}
.y1c0{bottom:580.500000px;}
.y13b{bottom:582.325500px;}
.y115{bottom:582.720000px;}
.y15e{bottom:585.828000px;}
.y80{bottom:585.939000px;}
.y1ec{bottom:589.195500px;}
.y213{bottom:589.435500px;}
.y243{bottom:593.142000px;}
.ye7{bottom:596.167500px;}
.y1d{bottom:596.775000px;}
.ya5{bottom:597.117000px;}
.y4d{bottom:600.493500px;}
.y114{bottom:602.983500px;}
.y212{bottom:604.633500px;}
.y15d{bottom:606.091500px;}
.y7f{bottom:606.202500px;}
.y1eb{bottom:609.460500px;}
.y242{bottom:612.510000px;}
.y13a{bottom:613.945500px;}
.y1bf{bottom:615.319500px;}
.ye6{bottom:616.432500px;}
.y1c{bottom:617.038500px;}
.y4c{bottom:620.758500px;}
.y113{bottom:623.247000px;}
.y15c{bottom:626.355000px;}
.y7e{bottom:626.466000px;}
.ya4{bottom:627.513000px;}
.y211{bottom:628.798500px;}
.y1ea{bottom:629.724000px;}
.y241{bottom:631.878000px;}
.y1be{bottom:635.583000px;}
.ye5{bottom:636.696000px;}
.y4b{bottom:641.022000px;}
.y112{bottom:643.512000px;}
.y210{bottom:643.996500px;}
.y15b{bottom:646.620000px;}
.y7d{bottom:646.731000px;}
.ya3{bottom:647.776500px;}
.y139{bottom:648.190500px;}
.y1e9{bottom:649.987500px;}
.y240{bottom:651.244500px;}
.y19{bottom:655.094964px;}
.y1bd{bottom:655.846500px;}
.ye4{bottom:656.959500px;}
.y20f{bottom:659.194500px;}
.y4a{bottom:661.285500px;}
.y18{bottom:662.670000px;}
.y111{bottom:663.775500px;}
.y15a{bottom:666.883500px;}
.y7c{bottom:666.994500px;}
.ya2{bottom:668.040000px;}
.y138{bottom:668.455500px;}
.y137{bottom:668.611500px;}
.y1e8{bottom:670.252500px;}
.y23f{bottom:670.612500px;}
.y20e{bottom:674.392500px;}
.y1bc{bottom:676.111500px;}
.ye3{bottom:677.224500px;}
.y49{bottom:681.550500px;}
.y10e{bottom:684.040500px;}
.y7b{bottom:687.258000px;}
.ya1{bottom:688.305000px;}
.y136{bottom:688.876500px;}
.y110{bottom:689.464500px;}
.y10f{bottom:689.824500px;}
.y23e{bottom:689.979000px;}
.y1e7{bottom:690.516000px;}
.y17{bottom:694.860000px;}
.y1bb{bottom:696.375000px;}
.ye2{bottom:697.488000px;}
.y48{bottom:701.814000px;}
.y159{bottom:704.034000px;}
.y10d{bottom:704.304000px;}
.y7a{bottom:707.523000px;}
.ya0{bottom:708.568500px;}
.y135{bottom:708.982500px;}
.y134{bottom:709.140000px;}
.y23d{bottom:709.347000px;}
.y1e6{bottom:710.781000px;}
.y16{bottom:713.017500px;}
.y1ba{bottom:716.640000px;}
.ye1{bottom:717.753000px;}
.y47{bottom:722.077500px;}
.y79{bottom:727.786500px;}
.y23c{bottom:728.715000px;}
.y158{bottom:728.782500px;}
.y9f{bottom:728.833500px;}
.y132{bottom:729.247500px;}
.y133{bottom:729.403500px;}
.y1e5{bottom:731.044500px;}
.y15{bottom:731.173500px;}
.y10c{bottom:734.700000px;}
.y1b9{bottom:736.903500px;}
.ye0{bottom:738.016500px;}
.y46{bottom:742.342500px;}
.y78{bottom:748.051500px;}
.y23b{bottom:748.081500px;}
.y9e{bottom:749.097000px;}
.y14{bottom:749.331000px;}
.y131{bottom:749.668500px;}
.y1e4{bottom:751.308000px;}
.ydf{bottom:758.280000px;}
.y45{bottom:762.606000px;}
.y23a{bottom:767.449500px;}
.y13{bottom:767.488500px;}
.y77{bottom:768.315000px;}
.y130{bottom:769.932000px;}
.y157{bottom:770.416500px;}
.y1e3{bottom:771.573000px;}
.y1b8{bottom:771.903000px;}
.y10b{bottom:775.228500px;}
.yde{bottom:778.545000px;}
.y44{bottom:782.871000px;}
.y9d{bottom:786.247500px;}
.y239{bottom:786.816000px;}
.y76{bottom:788.578500px;}
.y12f{bottom:790.197000px;}
.y12{bottom:790.527000px;}
.y156{bottom:790.680000px;}
.y1b7{bottom:791.136000px;}
.y1e2{bottom:791.836500px;}
.y10a{bottom:795.492000px;}
.ydd{bottom:798.808500px;}
.y43{bottom:803.134500px;}
.y11{bottom:803.802000px;}
.y238{bottom:806.184000px;}
.y74{bottom:808.843500px;}
.y1b6{bottom:810.369000px;}
.y1e1{bottom:812.101500px;}
.y75{bottom:814.267500px;}
.y109{bottom:815.757000px;}
.ydc{bottom:819.073500px;}
.y12e{bottom:819.427500px;}
.y42{bottom:823.398000px;}
.y155{bottom:824.511000px;}
.y237{bottom:825.552000px;}
.y10{bottom:826.840500px;}
.y72{bottom:829.107000px;}
.y1b5{bottom:829.602000px;}
.y1e0{bottom:832.365000px;}
.y73{bottom:834.532500px;}
.y108{bottom:836.020500px;}
.ydb{bottom:839.337000px;}
.yf{bottom:840.115500px;}
.y41{bottom:843.663000px;}
.y154{bottom:843.744000px;}
.y236{bottom:844.918500px;}
.y12d{bottom:848.349000px;}
.y1b4{bottom:848.835000px;}
.y6f{bottom:849.372000px;}
.y1df{bottom:852.628500px;}
.y71{bottom:854.796000px;}
.y70{bottom:855.156000px;}
.ye{bottom:858.273000px;}
.yda{bottom:859.600500px;}
.y153{bottom:862.977000px;}
.y107{bottom:863.094000px;}
.y40{bottom:863.926500px;}
.y235{bottom:864.286500px;}
.y12c{bottom:867.582000px;}
.y6e{bottom:869.635500px;}
.y1de{bottom:872.893500px;}
.y106{bottom:876.427500px;}
.y194{bottom:878.736029px;}
.y1a4{bottom:878.736507px;}
.y104{bottom:879.535500px;}
.yd9{bottom:879.865500px;}
.yd{bottom:881.311500px;}
.y234{bottom:883.653000px;}
.y3f{bottom:884.191500px;}
.y185{bottom:889.743000px;}
.y6d{bottom:889.899000px;}
.y1dd{bottom:893.001000px;}
.y1dc{bottom:893.157000px;}
.yc{bottom:894.586500px;}
.y105{bottom:895.675500px;}
.y20d{bottom:898.866000px;}
.yd8{bottom:900.129000px;}
.y233{bottom:903.021000px;}
.y3e{bottom:904.455000px;}
.y184{bottom:910.006500px;}
.y183{bottom:910.164000px;}
.y1db{bottom:913.422000px;}
.yb{bottom:917.626500px;}
.y6c{bottom:919.129500px;}
.y232{bottom:922.389000px;}
.y3d{bottom:924.718500px;}
.y103{bottom:926.685000px;}
.yd7{bottom:929.359500px;}
.y182{bottom:930.427500px;}
.ya{bottom:930.901500px;}
.y1da{bottom:933.685500px;}
.y231{bottom:941.755500px;}
.y3c{bottom:944.983500px;}
.y102{bottom:946.950000px;}
.y181{bottom:950.692500px;}
.y9{bottom:953.940000px;}
.y6b{bottom:953.949000px;}
.y230{bottom:961.123500px;}
.yd6{bottom:964.179000px;}
.y3b{bottom:965.247000px;}
.y101{bottom:967.213500px;}
.y180{bottom:970.956000px;}
.y6a{bottom:974.214000px;}
.y8{bottom:976.182000px;}
.y22f{bottom:980.490000px;}
.yd5{bottom:984.444000px;}
.y3a{bottom:985.512000px;}
.y100{bottom:987.477000px;}
.y260{bottom:987.579000px;}
.y17f{bottom:991.219500px;}
.y69{bottom:994.477500px;}
.y7{bottom:996.445500px;}
.y22e{bottom:999.858000px;}
.yd2{bottom:1004.707500px;}
.y39{bottom:1005.775500px;}
.y25f{bottom:1006.947000px;}
.yff{bottom:1007.742000px;}
.yd4{bottom:1010.131500px;}
.yd3{bottom:1010.493000px;}
.y17e{bottom:1011.484500px;}
.y68{bottom:1014.742500px;}
.y22d{bottom:1019.226000px;}
.yd1{bottom:1024.971000px;}
.y38{bottom:1026.039000px;}
.y25e{bottom:1026.315000px;}
.y25d{bottom:1026.720000px;}
.yfe{bottom:1031.157000px;}
.y17d{bottom:1031.748000px;}
.y67{bottom:1035.006000px;}
.y22c{bottom:1038.592500px;}
.y6{bottom:1040.848500px;}
.ycf{bottom:1045.236000px;}
.yd0{bottom:1045.452000px;}
.y37{bottom:1046.304000px;}
.yfb{bottom:1048.374000px;}
.yfd{bottom:1049.029500px;}
.yfc{bottom:1055.179500px;}
.y66{bottom:1055.269500px;}
.y22b{bottom:1057.960500px;}
.y17c{bottom:1060.978500px;}
.y36{bottom:1066.567500px;}
.y5{bottom:1071.244500px;}
.ycc{bottom:1074.885000px;}
.ycd{bottom:1074.993000px;}
.y1d9{bottom:1075.377000px;}
.y65{bottom:1075.534500px;}
.y22a{bottom:1077.327000px;}
.ycb{bottom:1078.344000px;}
.yce{bottom:1079.496000px;}
.y35{bottom:1086.832500px;}
.yc2{bottom:1093.920000px;}
.yc6{bottom:1094.572500px;}
.y64{bottom:1095.798000px;}
.y229{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.yc8{bottom:1102.887000px;}
.yc9{bottom:1102.995000px;}
.yc5{bottom:1103.539500px;}
.yc7{bottom:1106.347500px;}
.yca{bottom:1107.498000px;}
.yc4{bottom:1112.506500px;}
.y34{bottom:1116.063000px;}
.yc3{bottom:1121.472000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h24{height:2.391024px;}
.h32{height:17.766799px;}
.ha{height:25.508090px;}
.h3b{height:30.670772px;}
.h12{height:31.349971px;}
.hf{height:31.526842px;}
.hc{height:33.112997px;}
.h13{height:34.191729px;}
.hb{height:34.199443px;}
.h1a{height:35.963336px;}
.h39{height:37.334628px;}
.h8{height:37.993262px;}
.h38{height:38.250662px;}
.h41{height:38.555309px;}
.h45{height:38.637311px;}
.h1b{height:38.896243px;}
.h3d{height:39.434227px;}
.h16{height:39.959262px;}
.h33{height:41.250077px;}
.h10{height:41.482876px;}
.h28{height:41.664245px;}
.h2f{height:42.043500px;}
.h1c{height:42.500452px;}
.h3f{height:42.838620px;}
.h43{height:42.929733px;}
.hd{height:43.217759px;}
.h11{height:43.421105px;}
.h5{height:43.815515px;}
.h17{height:43.955188px;}
.h2e{height:46.714950px;}
.h40{height:47.123767px;}
.h44{height:47.223994px;}
.h9{height:48.848947px;}
.h21{height:50.841024px;}
.h2{height:50.931027px;}
.h4{height:52.536996px;}
.he{height:54.276245px;}
.h7{height:54.541601px;}
.h36{height:54.900245px;}
.h37{height:54.906245px;}
.h2d{height:55.146245px;}
.h3a{height:57.517262px;}
.h3c{height:57.523262px;}
.h25{height:62.207897px;}
.h2a{height:62.213897px;}
.h1d{height:62.946077px;}
.h46{height:62.952077px;}
.h34{height:65.024177px;}
.h35{height:65.940077px;}
.h14{height:66.966077px;}
.h26{height:73.152245px;}
.h20{height:73.158245px;}
.h27{height:74.496077px;}
.h1f{height:76.049897px;}
.h2b{height:76.055897px;}
.h31{height:76.212245px;}
.h3{height:76.877878px;}
.h6{height:77.792486px;}
.h19{height:79.394713px;}
.h18{height:79.394720px;}
.h22{height:95.280245px;}
.h1e{height:111.923897px;}
.h2c{height:111.972245px;}
.h30{height:116.472799px;}
.h23{height:122.541024px;}
.h29{height:146.073024px;}
.h3e{height:244.278487px;}
.h42{height:244.798294px;}
.h15{height:373.551750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:203.668736px;}
.w6{width:298.487495px;}
.w5{width:298.492005px;}
.w4{width:444.430800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xee{left:11.091323px;}
.x52{left:12.104780px;}
.x3{left:16.179032px;}
.x51{left:17.851728px;}
.xed{left:19.452879px;}
.xf3{left:20.772580px;}
.x50{left:27.260953px;}
.x8{left:29.274117px;}
.xf0{left:31.312644px;}
.xf4{left:32.657570px;}
.xeb{left:36.935891px;}
.xf2{left:38.170295px;}
.x53{left:40.839616px;}
.x2{left:59.141066px;}
.x55{left:79.152528px;}
.x54{left:88.561753px;}
.xec{left:105.489017px;}
.xf1{left:107.029304px;}
.xf5{left:108.535270px;}
.x109{left:111.867000px;}
.x1{left:114.802500px;}
.x11d{left:119.871000px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.xc7{left:130.233000px;}
.xea{left:131.254500px;}
.xd3{left:135.481500px;}
.x7e{left:137.785500px;}
.x96{left:139.452000px;}
.x57{left:140.453328px;}
.x73{left:143.932500px;}
.x5{left:146.170500px;}
.x56{left:149.862553px;}
.x7f{left:152.730000px;}
.x10a{left:154.569000px;}
.x47{left:155.620500px;}
.xa4{left:157.627500px;}
.x8f{left:159.126000px;}
.xc9{left:160.144500px;}
.x65{left:161.280000px;}
.xdb{left:162.571500px;}
.xc{left:164.344500px;}
.x17{left:166.015500px;}
.x48{left:167.911500px;}
.xca{left:170.709000px;}
.x18{left:173.488500px;}
.xa1{left:175.588500px;}
.xbf{left:177.114000px;}
.x90{left:178.548000px;}
.xd{left:180.379500px;}
.x4a{left:181.945500px;}
.xef{left:183.078436px;}
.xc1{left:184.629000px;}
.x9{left:188.356500px;}
.xe2{left:190.344000px;}
.x49{left:193.599000px;}
.x41{left:196.468500px;}
.xa5{left:197.731500px;}
.x16{left:201.676500px;}
.xf7{left:202.731000px;}
.x43{left:204.072000px;}
.xdd{left:205.666500px;}
.xb6{left:207.942000px;}
.x42{left:211.411500px;}
.xdc{left:213.099000px;}
.xb7{left:214.666500px;}
.xc5{left:218.836500px;}
.x10d{left:222.768000px;}
.x4f{left:224.250000px;}
.x80{left:228.531000px;}
.x3f{left:230.007000px;}
.x120{left:231.591000px;}
.xfd{left:232.854000px;}
.x11e{left:235.519500px;}
.x2d{left:237.138000px;}
.xba{left:239.712000px;}
.x128{left:241.254000px;}
.x74{left:242.350500px;}
.x7a{left:244.227000px;}
.xe4{left:245.661000px;}
.xfb{left:246.973500px;}
.xbd{left:248.914500px;}
.x2e{left:252.082500px;}
.x100{left:253.792500px;}
.x7b{left:256.221000px;}
.x75{left:258.063000px;}
.x127{left:259.459500px;}
.xcc{left:260.659500px;}
.xfc{left:261.918000px;}
.x59{left:264.012753px;}
.xbc{left:266.398500px;}
.x79{left:267.712500px;}
.x64{left:270.183000px;}
.xc0{left:272.274000px;}
.x58{left:273.421963px;}
.xe5{left:276.234000px;}
.x26{left:280.248000px;}
.x40{left:282.606000px;}
.x99{left:284.067000px;}
.xd2{left:285.258000px;}
.x32{left:286.698000px;}
.xe6{left:287.800500px;}
.xa{left:293.920500px;}
.x27{left:295.191000px;}
.x9a{left:299.011500px;}
.xb{left:300.726000px;}
.xde{left:301.773000px;}
.x7c{left:308.932500px;}
.x10e{left:311.811000px;}
.xd5{left:313.507500px;}
.xc4{left:315.841500px;}
.xc8{left:320.182500px;}
.xae{left:321.216000px;}
.xd6{left:322.396500px;}
.x7d{left:323.710500px;}
.x22{left:325.357500px;}
.x85{left:329.857500px;}
.x23{left:332.830500px;}
.x5a{left:334.722763px;}
.x5e{left:336.130500px;}
.x28{left:339.418500px;}
.x3a{left:340.831500px;}
.x9e{left:344.290500px;}
.xe{left:345.553500px;}
.x4b{left:348.352500px;}
.xcb{left:351.393000px;}
.x6c{left:352.758000px;}
.x29{left:354.363000px;}
.x3b{left:355.774500px;}
.xdf{left:357.043500px;}
.xd1{left:358.423500px;}
.x3c{left:359.586000px;}
.xf{left:360.754500px;}
.x126{left:361.761000px;}
.xfa{left:363.870000px;}
.xd7{left:365.098500px;}
.xac{left:366.321000px;}
.xa2{left:369.871500px;}
.x4d{left:371.841000px;}
.x3d{left:374.529000px;}
.x91{left:375.807000px;}
.x4e{left:378.646500px;}
.xad{left:383.485500px;}
.xe7{left:384.832500px;}
.x5b{left:386.614353px;}
.x33{left:390.757500px;}
.x86{left:394.617000px;}
.xbb{left:395.629500px;}
.x4c{left:396.958500px;}
.x101{left:399.963000px;}
.x110{left:401.850000px;}
.xbe{left:403.392000px;}
.x34{left:405.700500px;}
.x87{left:406.737000px;}
.xe8{left:408.105000px;}
.xab{left:411.205500px;}
.xd8{left:412.485000px;}
.x83{left:415.119000px;}
.x8d{left:417.046500px;}
.x88{left:418.924500px;}
.xa9{left:422.949000px;}
.xa8{left:424.111500px;}
.xa7{left:426.459000px;}
.x8b{left:427.513500px;}
.x8e{left:429.234000px;}
.xcd{left:431.509500px;}
.xaf{left:436.084500px;}
.x2f{left:438.276000px;}
.x121{left:440.119500px;}
.x69{left:442.617000px;}
.xaa{left:445.434000px;}
.xf9{left:446.892000px;}
.x71{left:448.143000px;}
.xf8{left:451.332000px;}
.x30{left:453.220500px;}
.x5f{left:454.783500px;}
.xce{left:458.409000px;}
.x8c{left:461.110500px;}
.x72{left:463.576500px;}
.x11f{left:464.976000px;}
.xa6{left:467.029500px;}
.x60{left:469.728000px;}
.x118{left:474.783000px;}
.x122{left:477.541500px;}
.x6f{left:479.686500px;}
.x81{left:481.711500px;}
.xc2{left:484.305000px;}
.x10f{left:485.445000px;}
.x119{left:487.074000px;}
.x123{left:492.486000px;}
.xc3{left:494.905500px;}
.x70{left:496.218000px;}
.x82{left:498.292500px;}
.x97{left:499.467000px;}
.x102{left:502.251000px;}
.xb8{left:508.096500px;}
.x92{left:510.442500px;}
.x84{left:512.061000px;}
.x98{left:513.160500px;}
.x93{left:514.783500px;}
.x89{left:515.866500px;}
.x103{left:517.195500px;}
.x1e{left:518.799000px;}
.xb9{left:520.387500px;}
.x44{left:524.620500px;}
.x1f{left:526.272000px;}
.xe9{left:528.601500px;}
.x20{left:530.082000px;}
.x114{left:531.252000px;}
.x111{left:535.071000px;}
.x21{left:537.553500px;}
.x106{left:539.287500px;}
.xd0{left:540.933000px;}
.x31{left:542.482500px;}
.x8a{left:547.176000px;}
.x115{left:550.008000px;}
.x10{left:552.522000px;}
.xcf{left:554.214000px;}
.x2a{left:556.567500px;}
.x66{left:558.834000px;}
.x14{left:561.777000px;}
.x116{left:563.064000px;}
.x11{left:564.813000px;}
.x45{left:567.450000px;}
.x107{left:569.698500px;}
.x2b{left:571.512000px;}
.x15{left:574.068000px;}
.xc6{left:576.078000px;}
.xb3{left:579.192000px;}
.x38{left:581.392500px;}
.x46{left:586.861500px;}
.x3e{left:588.400500px;}
.xb4{left:591.483000px;}
.x39{left:596.337000px;}
.x9f{left:600.330000px;}
.x24{left:607.126500px;}
.x12d{left:610.840500px;}
.xa0{left:612.622500px;}
.x25{left:614.599500px;}
.x12b{left:616.765500px;}
.x61{left:618.360000px;}
.xb5{left:621.829500px;}
.x112{left:624.972000px;}
.x10b{left:630.475500px;}
.x36{left:631.620000px;}
.x62{left:634.045500px;}
.x2c{left:636.910500px;}
.x1b{left:640.752000px;}
.x12c{left:643.665000px;}
.x10c{left:645.420000px;}
.x37{left:646.563000px;}
.x1c{left:648.223500px;}
.x12{left:651.885000px;}
.x6d{left:654.606000px;}
.xb2{left:656.709000px;}
.x1d{left:659.506500px;}
.x13{left:664.176000px;}
.xe3{left:666.501000px;}
.x76{left:667.633500px;}
.x6e{left:668.974500px;}
.x95{left:670.014000px;}
.x113{left:672.360000px;}
.x94{left:673.555500px;}
.xd9{left:676.669500px;}
.x11a{left:680.905500px;}
.xf6{left:682.395000px;}
.x124{left:683.659500px;}
.x5c{left:685.564500px;}
.x9d{left:686.575500px;}
.xb0{left:688.854000px;}
.x63{left:690.595500px;}
.x9b{left:693.463500px;}
.xe0{left:696.499500px;}
.x125{left:698.602500px;}
.x11b{left:699.648000px;}
.x7{left:701.339982px;}
.xb1{left:703.798500px;}
.xe1{left:706.909500px;}
.x9c{left:708.408000px;}
.x12a{left:709.705500px;}
.x108{left:712.734000px;}
.x11c{left:714.592500px;}
.x77{left:716.238000px;}
.x67{left:723.817500px;}
.x6a{left:725.694000px;}
.x5d{left:727.771500px;}
.xd4{left:730.723500px;}
.x78{left:733.120500px;}
.x68{left:741.345000px;}
.x6b{left:743.763000px;}
.xfe{left:746.110500px;}
.x129{left:749.463000px;}
.xff{left:753.582000px;}
.x35{left:756.939000px;}
.x104{left:758.175000px;}
.xa3{left:760.686000px;}
.x19{left:763.846500px;}
.x1a{left:771.318000px;}
.x105{left:773.119500px;}
.xda{left:774.727500px;}
.x117{left:776.167500px;}
@media print{
.v1a{vertical-align:-43.066667pt;}
.v2{vertical-align:-17.360000pt;}
.v1c{vertical-align:-15.584000pt;}
.v5{vertical-align:-10.453333pt;}
.v7{vertical-align:-9.301333pt;}
.v1b{vertical-align:-7.973333pt;}
.v1e{vertical-align:-5.749333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:5.557333pt;}
.v18{vertical-align:9.792000pt;}
.va{vertical-align:12.304000pt;}
.vd{vertical-align:16.010667pt;}
.v1d{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.v13{vertical-align:21.941333pt;}
.v3{vertical-align:22.858667pt;}
.v11{vertical-align:25.696000pt;}
.v12{vertical-align:29.552000pt;}
.v4{vertical-align:31.501806pt;}
.vf{vertical-align:36.448000pt;}
.vb{vertical-align:38.000000pt;}
.v6{vertical-align:43.066667pt;}
.v8{vertical-align:44.192000pt;}
.v15{vertical-align:51.285333pt;}
.vc{vertical-align:59.077333pt;}
.v19{vertical-align:62.565333pt;}
.v9{vertical-align:69.888000pt;}
.v17{vertical-align:72.154667pt;}
.v16{vertical-align:87.744000pt;}
.v10{vertical-align:106.800000pt;}
.v14{vertical-align:127.717333pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc3{letter-spacing:0.002525pt;}
.ls0{letter-spacing:0.003230pt;}
.lsc1{letter-spacing:0.004267pt;}
.ls2f{letter-spacing:0.087020pt;}
.ls3c{letter-spacing:0.092353pt;}
.lsa{letter-spacing:0.482502pt;}
.ls4a{letter-spacing:0.487835pt;}
.lsa1{letter-spacing:0.536039pt;}
.lsa0{letter-spacing:0.541372pt;}
.lsa2{letter-spacing:0.570745pt;}
.ls6a{letter-spacing:0.576078pt;}
.lsa5{letter-spacing:0.594193pt;}
.ls34{letter-spacing:0.596214pt;}
.ls84{letter-spacing:0.601548pt;}
.ls9d{letter-spacing:0.635362pt;}
.ls61{letter-spacing:0.637762pt;}
.ls95{letter-spacing:0.640696pt;}
.ls97{letter-spacing:0.643096pt;}
.ls54{letter-spacing:0.646082pt;}
.ls9c{letter-spacing:0.660237pt;}
.lsa6{letter-spacing:0.661044pt;}
.ls94{letter-spacing:0.661054pt;}
.ls12{letter-spacing:0.663452pt;}
.ls57{letter-spacing:0.665067pt;}
.ls46{letter-spacing:0.666378pt;}
.ls3d{letter-spacing:0.784508pt;}
.lsa3{letter-spacing:0.836890pt;}
.ls19{letter-spacing:0.883230pt;}
.ls11{letter-spacing:0.883733pt;}
.ls2a{letter-spacing:0.885348pt;}
.ls26{letter-spacing:0.888563pt;}
.ls13{letter-spacing:0.889067pt;}
.ls25{letter-spacing:0.929630pt;}
.ls6e{letter-spacing:0.989169pt;}
.ls49{letter-spacing:1.008508pt;}
.lsb0{letter-spacing:1.133372pt;}
.ls9{letter-spacing:1.133683pt;}
.lsb5{letter-spacing:1.138706pt;}
.ls67{letter-spacing:1.193655pt;}
.ls60{letter-spacing:1.195185pt;}
.lsa7{letter-spacing:1.262881pt;}
.ls4d{letter-spacing:1.291174pt;}
.ls96{letter-spacing:1.302029pt;}
.ls53{letter-spacing:1.307416pt;}
.ls16{letter-spacing:1.312749pt;}
.ls9f{letter-spacing:1.553126pt;}
.ls6{letter-spacing:1.654338pt;}
.ls3f{letter-spacing:1.724111pt;}
.ls3a{letter-spacing:1.729444pt;}
.ls35{letter-spacing:1.861852pt;}
.ls21{letter-spacing:2.309852pt;}
.ls7e{letter-spacing:2.492785pt;}
.ls75{letter-spacing:2.498118pt;}
.ls52{letter-spacing:2.579658pt;}
.ls4c{letter-spacing:2.584991pt;}
.ls5c{letter-spacing:2.585067pt;}
.ls86{letter-spacing:2.590881pt;}
.ls89{letter-spacing:2.596214pt;}
.ls1{letter-spacing:2.651733pt;}
.ls2{letter-spacing:2.657067pt;}
.ls50{letter-spacing:2.984991pt;}
.ls48{letter-spacing:2.990324pt;}
.lsa4{letter-spacing:3.121867pt;}
.ls72{letter-spacing:3.180785pt;}
.ls7d{letter-spacing:3.186118pt;}
.ls27{letter-spacing:3.274999pt;}
.ls1d{letter-spacing:3.280333pt;}
.ls37{letter-spacing:3.440508pt;}
.ls17{letter-spacing:3.445841pt;}
.ls78{letter-spacing:3.563733pt;}
.ls73{letter-spacing:3.569067pt;}
.ls55{letter-spacing:3.652214pt;}
.ls5d{letter-spacing:3.824508pt;}
.ls76{letter-spacing:3.825067pt;}
.ls7f{letter-spacing:3.830400pt;}
.ls2e{letter-spacing:4.107174pt;}
.ls44{letter-spacing:4.113067pt;}
.ls42{letter-spacing:4.118400pt;}
.ls40{letter-spacing:4.225067pt;}
.ls7b{letter-spacing:4.230400pt;}
.ls45{letter-spacing:5.013841pt;}
.ls2b{letter-spacing:5.440508pt;}
.ls80{letter-spacing:6.459174pt;}
.ls81{letter-spacing:8.169548pt;}
.ls71{letter-spacing:8.219416pt;}
.ls82{letter-spacing:8.498118pt;}
.ls66{letter-spacing:9.166302pt;}
.ls36{letter-spacing:9.454881pt;}
.ls58{letter-spacing:9.482318pt;}
.ls77{letter-spacing:9.504749pt;}
.ls83{letter-spacing:10.121548pt;}
.ls7a{letter-spacing:10.166082pt;}
.ls9b{letter-spacing:10.184563pt;}
.ls93{letter-spacing:10.307096pt;}
.ls18{letter-spacing:10.316533pt;}
.ls1a{letter-spacing:10.423200pt;}
.lsa9{letter-spacing:10.573639pt;}
.ls7{letter-spacing:10.626533pt;}
.ls8a{letter-spacing:10.713570pt;}
.ls87{letter-spacing:10.718903pt;}
.ls56{letter-spacing:10.968429pt;}
.ls62{letter-spacing:10.973762pt;}
.ls5a{letter-spacing:10.995733pt;}
.lsc4{letter-spacing:11.261127pt;}
.ls92{letter-spacing:11.593548pt;}
.ls91{letter-spacing:11.598881pt;}
.ls1c{letter-spacing:11.629762pt;}
.ls41{letter-spacing:11.635096pt;}
.ls1b{letter-spacing:11.643416pt;}
.ls2c{letter-spacing:11.654778pt;}
.ls33{letter-spacing:11.829852pt;}
.lsbf{letter-spacing:11.916800pt;}
.lsc0{letter-spacing:11.927467pt;}
.lsc5{letter-spacing:11.943115pt;}
.lsbb{letter-spacing:11.954133pt;}
.lsbd{letter-spacing:11.959467pt;}
.lsbc{letter-spacing:11.970282pt;}
.ls7c{letter-spacing:12.012934pt;}
.ls6f{letter-spacing:12.018268pt;}
.lsc2{letter-spacing:12.164528pt;}
.ls4b{letter-spacing:12.171733pt;}
.ls70{letter-spacing:12.176002pt;}
.ls51{letter-spacing:12.177067pt;}
.ls9a{letter-spacing:12.429762pt;}
.ls8f{letter-spacing:12.528078pt;}
.ls2d{letter-spacing:12.701762pt;}
.ls3e{letter-spacing:12.963096pt;}
.ls9e{letter-spacing:13.070931pt;}
.ls99{letter-spacing:13.283467pt;}
.lsbe{letter-spacing:13.341532pt;}
.ls3b{letter-spacing:13.654400pt;}
.ls69{letter-spacing:13.880644pt;}
.lsac{letter-spacing:13.923096pt;}
.ls63{letter-spacing:14.291096pt;}
.ls43{letter-spacing:14.437841pt;}
.lsaa{letter-spacing:14.458745pt;}
.ls68{letter-spacing:14.481613pt;}
.ls5e{letter-spacing:15.153067pt;}
.ls90{letter-spacing:15.302554pt;}
.ls20{letter-spacing:15.395096pt;}
.ls24{letter-spacing:15.400429pt;}
.ls8b{letter-spacing:16.020214pt;}
.ls85{letter-spacing:16.025548pt;}
.ls4f{letter-spacing:16.061762pt;}
.ls38{letter-spacing:16.070082pt;}
.ls88{letter-spacing:16.083733pt;}
.ls8d{letter-spacing:16.085044pt;}
.ls23{letter-spacing:16.087452pt;}
.lsab{letter-spacing:16.088429pt;}
.ls8c{letter-spacing:16.089067pt;}
.ls8e{letter-spacing:16.090378pt;}
.lsad{letter-spacing:16.304078pt;}
.ls74{letter-spacing:16.423200pt;}
.ls79{letter-spacing:16.428533pt;}
.ls5f{letter-spacing:16.443174pt;}
.ls1f{letter-spacing:16.460785pt;}
.ls15{letter-spacing:17.356785pt;}
.ls39{letter-spacing:17.389762pt;}
.ls32{letter-spacing:17.923096pt;}
.ls59{letter-spacing:18.075733pt;}
.ls29{letter-spacing:18.717762pt;}
.ls28{letter-spacing:18.864508pt;}
.ls31{letter-spacing:18.869841pt;}
.ls4e{letter-spacing:20.056429pt;}
.ls65{letter-spacing:21.952015pt;}
.ls47{letter-spacing:22.435096pt;}
.lsa8{letter-spacing:22.740214pt;}
.ls14{letter-spacing:22.968429pt;}
.ls5b{letter-spacing:24.227096pt;}
.ls98{letter-spacing:24.768696pt;}
.lsae{letter-spacing:29.131733pt;}
.ls10{letter-spacing:37.258823pt;}
.lsd{letter-spacing:38.960999pt;}
.lse{letter-spacing:47.475207pt;}
.lsf{letter-spacing:47.475415pt;}
.ls6d{letter-spacing:51.731096pt;}
.ls1e{letter-spacing:62.279200pt;}
.ls4{letter-spacing:62.432533pt;}
.ls30{letter-spacing:62.652533pt;}
.lsb{letter-spacing:62.799784pt;}
.lsc{letter-spacing:62.799992pt;}
.ls5{letter-spacing:64.314231pt;}
.ls3{letter-spacing:64.321067pt;}
.lsb9{letter-spacing:64.352683pt;}
.ls22{letter-spacing:64.513867pt;}
.lsb6{letter-spacing:64.893372pt;}
.lsb4{letter-spacing:64.898706pt;}
.lsb8{letter-spacing:84.861372pt;}
.lsaf{letter-spacing:123.937399pt;}
.lsb7{letter-spacing:141.014758pt;}
.lsb3{letter-spacing:178.506266pt;}
.lsb1{letter-spacing:251.496039pt;}
.lsba{letter-spacing:251.530745pt;}
.lsb2{letter-spacing:251.536078pt;}
.ls6c{letter-spacing:300.042745pt;}
.ls6b{letter-spacing:308.670191pt;}
.ls64{letter-spacing:751.344015pt;}
.ws75{word-spacing:-43.833157pt;}
.ws2b{word-spacing:-13.283467pt;}
.wsb0{word-spacing:-11.955200pt;}
.ws19{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.wsb2{word-spacing:-9.298400pt;}
.ws77{word-spacing:-5.047717pt;}
.ws49{word-spacing:-3.772505pt;}
.wsa7{word-spacing:-3.768000pt;}
.wsb5{word-spacing:-3.764533pt;}
.ws76{word-spacing:-3.762928pt;}
.ws9f{word-spacing:-3.762667pt;}
.wsa8{word-spacing:-3.122405pt;}
.ws7b{word-spacing:-3.099321pt;}
.ws33{word-spacing:-2.869229pt;}
.wsb7{word-spacing:-2.762961pt;}
.wsb8{word-spacing:-2.709827pt;}
.ws4c{word-spacing:-2.701867pt;}
.ws9e{word-spacing:-2.570765pt;}
.ws1d{word-spacing:-2.497292pt;}
.ws32{word-spacing:-2.337890pt;}
.wsd5{word-spacing:-2.289067pt;}
.ws69{word-spacing:-2.288533pt;}
.ws68{word-spacing:-2.286933pt;}
.wsc8{word-spacing:-2.247578pt;}
.wse1{word-spacing:-2.231622pt;}
.ws47{word-spacing:-2.125355pt;}
.ws46{word-spacing:-2.072221pt;}
.wsc9{word-spacing:-2.056294pt;}
.wsd7{word-spacing:-1.965953pt;}
.ws64{word-spacing:-1.806551pt;}
.ws8{word-spacing:-1.696326pt;}
.ws60{word-spacing:-1.594016pt;}
.ws80{word-spacing:-1.434614pt;}
.ws117{word-spacing:-1.386803pt;}
.wsa2{word-spacing:-1.275213pt;}
.wsdb{word-spacing:-1.222079pt;}
.ws7{word-spacing:-1.175671pt;}
.ws4f{word-spacing:-1.115811pt;}
.ws2f{word-spacing:-1.062677pt;}
.ws81{word-spacing:-1.009543pt;}
.ws8d{word-spacing:-1.004237pt;}
.ws11b{word-spacing:-0.956416pt;}
.ws63{word-spacing:-0.956410pt;}
.ws11c{word-spacing:-0.908595pt;}
.wsa0{word-spacing:-0.869275pt;}
.ws86{word-spacing:-0.850142pt;}
.ws8c{word-spacing:-0.845067pt;}
.ws87{word-spacing:-0.843467pt;}
.ws94{word-spacing:-0.841867pt;}
.ws85{word-spacing:-0.838133pt;}
.wsd2{word-spacing:-0.797008pt;}
.ws8e{word-spacing:-0.765133pt;}
.wsbd{word-spacing:-0.764686pt;}
.ws9d{word-spacing:-0.743874pt;}
.ws28{word-spacing:-0.690740pt;}
.ws13{word-spacing:-0.640522pt;}
.ws12{word-spacing:-0.637606pt;}
.wsad{word-spacing:-0.573850pt;}
.ws21{word-spacing:-0.531339pt;}
.ws15{word-spacing:-0.478205pt;}
.wsae{word-spacing:-0.382566pt;}
.ws4b{word-spacing:-0.371937pt;}
.ws11e{word-spacing:-0.334746pt;}
.ws31{word-spacing:-0.318803pt;}
.wsea{word-spacing:-0.286706pt;}
.ws1c{word-spacing:-0.265669pt;}
.ws40{word-spacing:-0.239104pt;}
.ws10{word-spacing:-0.212535pt;}
.ws3f{word-spacing:-0.191283pt;}
.wsb{word-spacing:-0.159402pt;}
.ws100{word-spacing:-0.143462pt;}
.wsdc{word-spacing:-0.134400pt;}
.ws5e{word-spacing:-0.120290pt;}
.ws22{word-spacing:-0.106268pt;}
.ws10b{word-spacing:-0.095642pt;}
.ws14{word-spacing:-0.053134pt;}
.ws3e{word-spacing:-0.047821pt;}
.ws114{word-spacing:-0.012083pt;}
.ws4{word-spacing:-0.004466pt;}
.ws107{word-spacing:-0.003695pt;}
.ws18{word-spacing:-0.000326pt;}
.ws0{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.027647pt;}
.wsc0{word-spacing:0.047821pt;}
.ws1b{word-spacing:0.053134pt;}
.wsa6{word-spacing:0.095642pt;}
.ws16{word-spacing:0.106268pt;}
.ws6{word-spacing:0.143462pt;}
.ws9{word-spacing:0.159402pt;}
.wsca{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.wscf{word-spacing:0.220434pt;}
.wse2{word-spacing:0.239104pt;}
.ws45{word-spacing:0.265669pt;}
.ws101{word-spacing:0.286925pt;}
.ws7d{word-spacing:0.318803pt;}
.wsf8{word-spacing:0.334746pt;}
.wse{word-spacing:0.371937pt;}
.ws17{word-spacing:0.425071pt;}
.wsd{word-spacing:0.478205pt;}
.ws11f{word-spacing:0.526029pt;}
.wsd9{word-spacing:0.531339pt;}
.wsc3{word-spacing:0.637606pt;}
.wsda{word-spacing:0.690740pt;}
.wscd{word-spacing:0.717312pt;}
.ws3c{word-spacing:0.741213pt;}
.ws61{word-spacing:0.743874pt;}
.wscc{word-spacing:0.765133pt;}
.wsd0{word-spacing:0.850142pt;}
.wsf0{word-spacing:0.903276pt;}
.wsc{word-spacing:0.956410pt;}
.wsac{word-spacing:1.009543pt;}
.ws113{word-spacing:1.052058pt;}
.ws65{word-spacing:1.062677pt;}
.wsd3{word-spacing:1.115811pt;}
.ws7f{word-spacing:1.222079pt;}
.ws1e{word-spacing:1.328347pt;}
.ws6b{word-spacing:1.338982pt;}
.ws37{word-spacing:1.381481pt;}
.ws55{word-spacing:1.434614pt;}
.ws26{word-spacing:1.487748pt;}
.wsab{word-spacing:1.540882pt;}
.ws111{word-spacing:1.578086pt;}
.ws34{word-spacing:1.647150pt;}
.wsfb{word-spacing:1.673728pt;}
.wsf5{word-spacing:1.700284pt;}
.ws3d{word-spacing:1.742896pt;}
.ws53{word-spacing:1.753418pt;}
.ws103{word-spacing:1.769370pt;}
.ws42{word-spacing:1.806551pt;}
.ws4e{word-spacing:1.859685pt;}
.ws36{word-spacing:1.912819pt;}
.ws10d{word-spacing:1.960653pt;}
.ws39{word-spacing:1.965953pt;}
.ws38{word-spacing:2.019087pt;}
.wsdf{word-spacing:2.072221pt;}
.ws7e{word-spacing:2.076981pt;}
.ws78{word-spacing:2.082315pt;}
.ws79{word-spacing:2.134139pt;}
.ws74{word-spacing:2.139140pt;}
.ws8a{word-spacing:2.178489pt;}
.ws73{word-spacing:2.231622pt;}
.wsf4{word-spacing:2.337890pt;}
.ws2c{word-spacing:2.391024pt;}
.ws6a{word-spacing:2.444158pt;}
.ws9c{word-spacing:2.550426pt;}
.wsf3{word-spacing:2.603559pt;}
.wsb6{word-spacing:2.656693pt;}
.ws121{word-spacing:2.677965pt;}
.ws3b{word-spacing:2.709827pt;}
.ws54{word-spacing:2.762961pt;}
.ws59{word-spacing:2.802577pt;}
.ws56{word-spacing:2.805967pt;}
.ws62{word-spacing:2.816095pt;}
.ws11a{word-spacing:2.821427pt;}
.ws10e{word-spacing:2.863573pt;}
.ws112{word-spacing:2.865152pt;}
.ws5{word-spacing:2.869248pt;}
.wsa5{word-spacing:2.917069pt;}
.ws99{word-spacing:2.922363pt;}
.wsa{word-spacing:2.975497pt;}
.ws43{word-spacing:3.028630pt;}
.ws109{word-spacing:3.060531pt;}
.wsd8{word-spacing:3.081764pt;}
.wsbc{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.188032pt;}
.wsa4{word-spacing:3.203994pt;}
.ws66{word-spacing:3.241166pt;}
.ws20{word-spacing:3.294300pt;}
.ws67{word-spacing:3.334604pt;}
.ws27{word-spacing:3.347434pt;}
.ws82{word-spacing:3.400567pt;}
.ws2d{word-spacing:3.559969pt;}
.wsa3{word-spacing:3.613103pt;}
.ws110{word-spacing:3.730022pt;}
.wsf9{word-spacing:3.825664pt;}
.wsf7{word-spacing:3.873485pt;}
.ws116{word-spacing:3.969126pt;}
.ws8f{word-spacing:3.985040pt;}
.ws1f{word-spacing:4.038174pt;}
.ws51{word-spacing:4.058630pt;}
.ws50{word-spacing:4.063964pt;}
.ws3a{word-spacing:4.091308pt;}
.ws25{word-spacing:4.197575pt;}
.wsf6{word-spacing:4.208230pt;}
.ws5f{word-spacing:4.250709pt;}
.wse9{word-spacing:4.303843pt;}
.wse8{word-spacing:4.356977pt;}
.wsee{word-spacing:4.463245pt;}
.wsef{word-spacing:4.466907pt;}
.wsbf{word-spacing:4.529621pt;}
.wsbe{word-spacing:4.540288pt;}
.wsd6{word-spacing:4.675780pt;}
.ws115{word-spacing:4.686438pt;}
.ws29{word-spacing:4.728914pt;}
.ws10c{word-spacing:4.877722pt;}
.ws2a{word-spacing:4.888316pt;}
.ws96{word-spacing:4.910352pt;}
.ws93{word-spacing:4.910517pt;}
.ws8b{word-spacing:4.912940pt;}
.ws97{word-spacing:4.915685pt;}
.wsfd{word-spacing:4.925542pt;}
.ws9a{word-spacing:4.994583pt;}
.wsb9{word-spacing:5.034725pt;}
.ws9b{word-spacing:5.047717pt;}
.wsc2{word-spacing:5.061392pt;}
.wsc1{word-spacing:5.066725pt;}
.wseb{word-spacing:5.100851pt;}
.ws41{word-spacing:5.153985pt;}
.ws89{word-spacing:5.183247pt;}
.ws23{word-spacing:5.419654pt;}
.ws24{word-spacing:5.472788pt;}
.wsf{word-spacing:5.579056pt;}
.wsfc{word-spacing:5.595034pt;}
.wsba{word-spacing:5.632190pt;}
.wsf2{word-spacing:5.685324pt;}
.wsf1{word-spacing:5.738458pt;}
.ws108{word-spacing:5.881958pt;}
.wsed{word-spacing:5.950993pt;}
.wse7{word-spacing:6.004127pt;}
.ws102{word-spacing:6.025421pt;}
.ws106{word-spacing:6.073242pt;}
.wsfa{word-spacing:6.121062pt;}
.wse6{word-spacing:6.216662pt;}
.wsce{word-spacing:6.269796pt;}
.wscb{word-spacing:6.380288pt;}
.wsd4{word-spacing:6.588599pt;}
.wse5{word-spacing:6.801135pt;}
.ws88{word-spacing:6.854269pt;}
.ws90{word-spacing:6.960537pt;}
.ws2e{word-spacing:7.013670pt;}
.ws118{word-spacing:7.268762pt;}
.ws30{word-spacing:7.651277pt;}
.wse0{word-spacing:7.863812pt;}
.ws35{word-spacing:8.023214pt;}
.ws91{word-spacing:8.076348pt;}
.ws10a{word-spacing:8.127804pt;}
.ws120{word-spacing:8.129425pt;}
.ws11d{word-spacing:8.129536pt;}
.ws119{word-spacing:8.130278pt;}
.ws105{word-spacing:8.130526pt;}
.wsff{word-spacing:8.132343pt;}
.ws10f{word-spacing:8.132599pt;}
.wsd1{word-spacing:8.395151pt;}
.ws48{word-spacing:8.485297pt;}
.wsaf{word-spacing:9.893333pt;}
.wse4{word-spacing:9.894400pt;}
.wsb1{word-spacing:9.898667pt;}
.wse3{word-spacing:9.899733pt;}
.ws92{word-spacing:10.254836pt;}
.ws83{word-spacing:10.307970pt;}
.wsec{word-spacing:10.626773pt;}
.wsb4{word-spacing:11.158112pt;}
.wsa9{word-spacing:11.566796pt;}
.wsde{word-spacing:11.848852pt;}
.ws84{word-spacing:12.805262pt;}
.ws95{word-spacing:13.230333pt;}
.ws5d{word-spacing:13.254527pt;}
.wsdd{word-spacing:13.761671pt;}
.wsbb{word-spacing:16.224059pt;}
.ws44{word-spacing:17.268507pt;}
.wsfe{word-spacing:18.028442pt;}
.ws104{word-spacing:20.084736pt;}
.wsaa{word-spacing:39.850400pt;}
.ws3{word-spacing:41.426502pt;}
.ws2{word-spacing:41.464271pt;}
.wsc5{word-spacing:41.673872pt;}
.wsc7{word-spacing:41.762507pt;}
.ws98{word-spacing:51.789926pt;}
.wsb3{word-spacing:51.837747pt;}
.wsc4{word-spacing:54.012215pt;}
.wsc6{word-spacing:54.562584pt;}
.ws57{word-spacing:180.304980pt;}
.ws6f{word-spacing:272.195994pt;}
.ws6c{word-spacing:287.498650pt;}
.ws71{word-spacing:296.106394pt;}
.ws6e{word-spacing:348.458667pt;}
.ws72{word-spacing:368.238773pt;}
.ws70{word-spacing:408.709470pt;}
.wsa1{word-spacing:456.366781pt;}
.ws52{word-spacing:460.883159pt;}
.ws4a{word-spacing:476.557650pt;}
.ws7c{word-spacing:538.671140pt;}
.ws6d{word-spacing:581.152102pt;}
.ws5b{word-spacing:687.658502pt;}
.ws5c{word-spacing:702.695387pt;}
.ws4d{word-spacing:720.388964pt;}
.ws58{word-spacing:769.644059pt;}
.ws7a{word-spacing:801.843182pt;}
._5{margin-left:-7.029658pt;}
._3{margin-left:-5.899170pt;}
._4{margin-left:-4.399514pt;}
._7{margin-left:-3.490918pt;}
._6{margin-left:-1.721549pt;}
._2{width:1.009547pt;}
._1{width:2.655801pt;}
._19{width:4.041900pt;}
._3e{width:7.678051pt;}
._2a{width:8.873356pt;}
._44{width:9.848021pt;}
._17{width:10.807501pt;}
._11{width:12.029519pt;}
._e{width:13.714236pt;}
._9{width:14.824448pt;}
._b{width:16.577766pt;}
._1a{width:17.481042pt;}
._d{width:18.384318pt;}
._13{width:19.395172pt;}
._c{width:20.637205pt;}
._15{width:22.103689pt;}
._43{width:23.586834pt;}
._29{width:24.517289pt;}
._16{width:25.792501pt;}
._a{width:26.695777pt;}
._14{width:27.884676pt;}
._0{width:29.648896pt;}
._12{width:31.083312pt;}
._26{width:32.464793pt;}
._3b{width:33.685998pt;}
._18{width:34.962084pt;}
._41{width:36.104704pt;}
._3a{width:37.374373pt;}
._25{width:38.383917pt;}
._27{width:40.987476pt;}
._40{width:47.164656pt;}
._24{width:55.259221pt;}
._8{width:56.763290pt;}
._1c{width:63.792947pt;}
._42{width:68.766310pt;}
._34{width:71.779136pt;}
._33{width:96.751864pt;}
._2e{width:103.095620pt;}
._2c{width:104.871014pt;}
._30{width:106.305638pt;}
._2d{width:110.226944pt;}
._3d{width:114.339533pt;}
._28{width:121.512653pt;}
._36{width:124.557049pt;}
._2b{width:135.332864pt;}
._2f{width:183.297126pt;}
._1b{width:256.128205pt;}
._20{width:262.918758pt;}
._31{width:267.031347pt;}
._23{width:270.316075pt;}
._1f{width:276.749201pt;}
._1d{width:285.824922pt;}
._3f{width:305.656439pt;}
._1e{width:308.061594pt;}
._21{width:319.873331pt;}
._22{width:360.434534pt;}
._35{width:383.440681pt;}
._38{width:384.614656pt;}
._37{width:414.270321pt;}
._39{width:415.681258pt;}
._3c{width:512.495514pt;}
._f{width:702.727697pt;}
._32{width:1824.536267pt;}
._10{width:1845.789600pt;}
.fs12{font-size:26.566933pt;}
.fsf{font-size:30.650400pt;}
.fsc{font-size:30.690133pt;}
.fs15{font-size:32.859456pt;}
.fs18{font-size:32.929344pt;}
.fsd{font-size:34.056000pt;}
.fs13{font-size:36.509985pt;}
.fs16{font-size:36.587637pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fse{font-size:37.461600pt;}
.fs14{font-size:40.162079pt;}
.fs17{font-size:40.247499pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs10{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs1{font-size:67.193600pt;}
.fs11{font-size:74.387733pt;}
.fs3{font-size:95.641600pt;}
.fs0{font-size:100.790400pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.044747pt;}
.y95{bottom:3.452543pt;}
.y196{bottom:4.941272pt;}
.y1a6{bottom:5.803991pt;}
.y1a{bottom:12.578910pt;}
.y2{bottom:15.696005pt;}
.y8c{bottom:16.223543pt;}
.y195{bottom:18.111141pt;}
.y1a5{bottom:19.001871pt;}
.y8d{bottom:25.163243pt;}
.y3{bottom:31.170523pt;}
.y93{bottom:33.677294pt;}
.y1a1{bottom:38.704004pt;}
.y1b1{bottom:39.638533pt;}
.y19b{bottom:44.809449pt;}
.y1ab{bottom:45.756963pt;}
.y8e{bottom:49.513288pt;}
.y1a0{bottom:49.522233pt;}
.y1b0{bottom:50.479770pt;}
.y32{bottom:56.693333pt;}
.y19c{bottom:58.843247pt;}
.y1ac{bottom:59.820609pt;}
.y19f{bottom:60.340438pt;}
.y1af{bottom:61.320984pt;}
.y19e{bottom:71.158666pt;}
.y1ae{bottom:72.162222pt;}
.y8f{bottom:73.863333pt;}
.y19a{bottom:80.211601pt;}
.y1aa{bottom:81.234411pt;}
.y9c{bottom:95.633333pt;}
.y152{bottom:96.544000pt;}
.y25c{bottom:96.850667pt;}
.y90{bottom:98.213352pt;}
.y99{bottom:103.001854pt;}
.y63{bottom:106.306667pt;}
.y20c{bottom:109.441333pt;}
.y1d8{bottom:111.753333pt;}
.y98{bottom:112.694038pt;}
.y9b{bottom:112.729333pt;}
.y25b{bottom:114.066667pt;}
.y151{bottom:114.416000pt;}
.y150{bottom:114.556000pt;}
.y202{bottom:114.560000pt;}
.y199{bottom:115.613753pt;}
.y1a9{bottom:116.711859pt;}
.y97{bottom:122.386248pt;}
.y91{bottom:122.563397pt;}
.yfa{bottom:122.668000pt;}
.y62{bottom:124.318667pt;}
.y20b{bottom:127.454667pt;}
.y201{bottom:129.172000pt;}
.y1d7{bottom:129.766667pt;}
.y9a{bottom:129.825333pt;}
.yc0{bottom:130.452000pt;}
.y25a{bottom:131.281333pt;}
.y96{bottom:132.078445pt;}
.y14f{bottom:132.429333pt;}
.y14e{bottom:132.568000pt;}
.y12b{bottom:136.813333pt;}
.y193{bottom:138.244000pt;}
.y228{bottom:139.184000pt;}
.yba{bottom:139.564000pt;}
.yf9{bottom:140.681333pt;}
.ybb{bottom:142.366667pt;}
.y200{bottom:143.784000pt;}
.y20a{bottom:145.466667pt;}
.y92{bottom:146.913443pt;}
.ybd{bottom:147.536000pt;}
.ybe{bottom:147.632000pt;}
.y1d6{bottom:147.778667pt;}
.y259{bottom:148.497333pt;}
.y82{bottom:149.761333pt;}
.y61{bottom:150.301333pt;}
.y14d{bottom:150.581333pt;}
.ybc{bottom:150.612000pt;}
.y198{bottom:151.015905pt;}
.ybf{bottom:151.634667pt;}
.y1a8{bottom:152.189307pt;}
.y94{bottom:154.788893pt;}
.y12a{bottom:154.826667pt;}
.y192{bottom:156.256000pt;}
.y227{bottom:156.400000pt;}
.y1ff{bottom:158.396000pt;}
.yf8{bottom:158.693333pt;}
.y209{bottom:163.478667pt;}
.y258{bottom:165.713333pt;}
.y1d5{bottom:165.790667pt;}
.yc1{bottom:166.264000pt;}
.y14c{bottom:168.593333pt;}
.y31{bottom:172.288000pt;}
.y129{bottom:172.838667pt;}
.y1fe{bottom:173.008000pt;}
.y17b{bottom:173.214667pt;}
.y226{bottom:173.616000pt;}
.y191{bottom:174.269333pt;}
.yf7{bottom:176.705333pt;}
.yb9{bottom:177.369333pt;}
.y19d{bottom:177.567519pt;}
.y60{bottom:178.596000pt;}
.y1ad{bottom:178.797393pt;}
.y208{bottom:181.492000pt;}
.y257{bottom:182.928000pt;}
.y1d4{bottom:183.804000pt;}
.y83{bottom:185.652143pt;}
.y197{bottom:186.418057pt;}
.yb5{bottom:186.481333pt;}
.y1a7{bottom:187.666755pt;}
.y17a{bottom:187.826667pt;}
.y30{bottom:190.300000pt;}
.y225{bottom:190.830667pt;}
.y128{bottom:190.852000pt;}
.y190{bottom:192.281333pt;}
.y1fd{bottom:194.288000pt;}
.yb6{bottom:194.453333pt;}
.yb7{bottom:194.549333pt;}
.y84{bottom:194.591843pt;}
.yf6{bottom:194.718667pt;}
.y1a2{bottom:195.401110pt;}
.y1b2{bottom:196.668914pt;}
.yb8{bottom:198.552000pt;}
.y207{bottom:199.504000pt;}
.y256{bottom:200.144000pt;}
.y14b{bottom:201.616000pt;}
.y1d3{bottom:201.816000pt;}
.y1a3{bottom:207.788598pt;}
.y224{bottom:208.046667pt;}
.y127{bottom:208.724000pt;}
.y126{bottom:208.864000pt;}
.y1b3{bottom:209.082748pt;}
.y179{bottom:209.106667pt;}
.y5f{bottom:209.546667pt;}
.y18f{bottom:210.293333pt;}
.yb4{bottom:212.548000pt;}
.y8a{bottom:216.728301pt;}
.y255{bottom:217.358667pt;}
.y206{bottom:217.517333pt;}
.y85{bottom:219.112165pt;}
.y1d2{bottom:219.829333pt;}
.y1fc{bottom:222.393333pt;}
.y2f{bottom:224.253333pt;}
.y223{bottom:225.261333pt;}
.y124{bottom:226.737333pt;}
.y125{bottom:226.876000pt;}
.y5e{bottom:227.558667pt;}
.y18e{bottom:228.306667pt;}
.yb3{bottom:230.561333pt;}
.y254{bottom:234.574667pt;}
.y14a{bottom:234.640000pt;}
.y205{bottom:235.529333pt;}
.yf5{bottom:236.404000pt;}
.y178{bottom:237.213333pt;}
.y1d1{bottom:237.841333pt;}
.y1fb{bottom:239.489333pt;}
.y2e{bottom:242.265333pt;}
.y222{bottom:242.477333pt;}
.y86{bottom:243.632481pt;}
.y123{bottom:244.889333pt;}
.y5d{bottom:245.572000pt;}
.y18d{bottom:246.318667pt;}
.yb2{bottom:248.573333pt;}
.yf4{bottom:251.016000pt;}
.y253{bottom:251.790667pt;}
.y149{bottom:252.652000pt;}
.y204{bottom:253.541333pt;}
.y1d0{bottom:255.714667pt;}
.y1cf{bottom:255.853333pt;}
.y1fa{bottom:256.585333pt;}
.y221{bottom:259.693333pt;}
.y2d{bottom:260.278667pt;}
.y122{bottom:262.901333pt;}
.y5c{bottom:263.584000pt;}
.y18c{bottom:264.332000pt;}
.yf3{bottom:265.628000pt;}
.yb1{bottom:266.586667pt;}
.y87{bottom:268.152804pt;}
.y252{bottom:269.005333pt;}
.y148{bottom:270.664000pt;}
.y203{bottom:271.554667pt;}
.y174{bottom:273.142667pt;}
.y177{bottom:273.373333pt;}
.y1cd{bottom:273.726667pt;}
.y1ce{bottom:273.866667pt;}
.y220{bottom:276.908000pt;}
.y2c{bottom:278.290667pt;}
.yf2{bottom:280.240000pt;}
.y171{bottom:280.678667pt;}
.y121{bottom:280.914667pt;}
.y5b{bottom:281.597333pt;}
.y18b{bottom:282.344000pt;}
.yb0{bottom:284.598667pt;}
.y251{bottom:286.221333pt;}
.y176{bottom:287.985333pt;}
.y173{bottom:288.216000pt;}
.y147{bottom:288.677333pt;}
.y1f9{bottom:289.566667pt;}
.y1cc{bottom:291.878667pt;}
.y88{bottom:292.673123pt;}
.y21f{bottom:294.124000pt;}
.yf1{bottom:294.852000pt;}
.y170{bottom:295.290667pt;}
.y2b{bottom:296.304000pt;}
.y5a{bottom:299.609333pt;}
.y18a{bottom:300.356000pt;}
.y175{bottom:302.597333pt;}
.yaf{bottom:302.610667pt;}
.y172{bottom:302.828000pt;}
.y250{bottom:303.437333pt;}
.y146{bottom:306.689333pt;}
.y120{bottom:306.897333pt;}
.y1f8{bottom:307.580000pt;}
.yf0{bottom:309.464000pt;}
.y1cb{bottom:309.892000pt;}
.y21e{bottom:311.338667pt;}
.y2a{bottom:314.316000pt;}
.y89{bottom:317.193443pt;}
.y59{bottom:317.621333pt;}
.y189{bottom:318.369333pt;}
.yae{bottom:320.624000pt;}
.y24f{bottom:320.652000pt;}
.y16c{bottom:324.108000pt;}
.y145{bottom:324.702667pt;}
.y8b{bottom:325.068894pt;}
.y1f7{bottom:325.592000pt;}
.y16f{bottom:326.040000pt;}
.y1ca{bottom:327.904000pt;}
.y21d{bottom:328.554667pt;}
.yef{bottom:330.742667pt;}
.y29{bottom:332.328000pt;}
.y167{bottom:333.346667pt;}
.y58{bottom:335.634667pt;}
.y16b{bottom:335.770667pt;}
.y11f{bottom:337.848000pt;}
.y24e{bottom:337.868000pt;}
.yad{bottom:338.636000pt;}
.y16a{bottom:340.168000pt;}
.y16e{bottom:340.652000pt;}
.y144{bottom:342.714667pt;}
.y1f6{bottom:343.604000pt;}
.y21c{bottom:345.770667pt;}
.y1c9{bottom:345.916000pt;}
.y166{bottom:347.957333pt;}
.y188{bottom:349.480000pt;}
.y28{bottom:350.341333pt;}
.y169{bottom:352.336000pt;}
.y57{bottom:353.646667pt;}
.y24d{bottom:355.082667pt;}
.y16d{bottom:355.264000pt;}
.y11e{bottom:355.860000pt;}
.yac{bottom:356.649333pt;}
.y168{bottom:356.734667pt;}
.yee{bottom:358.849333pt;}
.y143{bottom:360.726667pt;}
.y1f5{bottom:361.617333pt;}
.y21b{bottom:362.985333pt;}
.y1c8{bottom:363.929333pt;}
.y187{bottom:366.576000pt;}
.y27{bottom:368.353333pt;}
.y56{bottom:371.660000pt;}
.y24c{bottom:372.298667pt;}
.y11d{bottom:373.872000pt;}
.y165{bottom:378.476000pt;}
.y142{bottom:378.740000pt;}
.y1f4{bottom:379.629333pt;}
.y21a{bottom:380.201333pt;}
.y1c7{bottom:381.941333pt;}
.y186{bottom:383.672000pt;}
.y26{bottom:386.366667pt;}
.y24b{bottom:389.514667pt;}
.y55{bottom:389.672000pt;}
.yed{bottom:391.830667pt;}
.y11c{bottom:391.885333pt;}
.y163{bottom:393.088000pt;}
.y141{bottom:396.752000pt;}
.y1f3{bottom:397.642667pt;}
.y1c6{bottom:399.954667pt;}
.y25{bottom:404.378667pt;}
.y219{bottom:405.386667pt;}
.y24a{bottom:406.729333pt;}
.y54{bottom:407.684000pt;}
.y162{bottom:407.700000pt;}
.yec{bottom:409.844000pt;}
.y11b{bottom:409.897333pt;}
.y140{bottom:414.765333pt;}
.y1f2{bottom:415.654667pt;}
.y1c5{bottom:417.966667pt;}
.y164{bottom:422.312000pt;}
.y23{bottom:422.390667pt;}
.yab{bottom:422.694667pt;}
.y249{bottom:423.945333pt;}
.y53{bottom:425.697333pt;}
.y24{bottom:427.213333pt;}
.yeb{bottom:427.856000pt;}
.y11a{bottom:427.910667pt;}
.y1f1{bottom:433.666667pt;}
.y1c4{bottom:435.978667pt;}
.y22{bottom:440.404000pt;}
.y218{bottom:440.454667pt;}
.yaa{bottom:440.708000pt;}
.y248{bottom:441.160000pt;}
.y161{bottom:443.590667pt;}
.y52{bottom:443.709333pt;}
.yea{bottom:445.868000pt;}
.y119{bottom:445.922667pt;}
.y1f0{bottom:451.680000pt;}
.y1c3{bottom:453.992000pt;}
.y13f{bottom:454.049333pt;}
.y247{bottom:458.376000pt;}
.y21{bottom:458.416000pt;}
.ya9{bottom:458.720000pt;}
.y13e{bottom:460.452000pt;}
.y51{bottom:461.722667pt;}
.y217{bottom:461.934667pt;}
.y118{bottom:463.934667pt;}
.y1ef{bottom:469.692000pt;}
.y160{bottom:471.697333pt;}
.y1c2{bottom:472.004000pt;}
.y13d{bottom:475.064000pt;}
.y216{bottom:475.444000pt;}
.y246{bottom:475.592000pt;}
.y20{bottom:476.429333pt;}
.ya8{bottom:476.732000pt;}
.ye9{bottom:478.892000pt;}
.y50{bottom:479.734667pt;}
.y117{bottom:481.948000pt;}
.y1ee{bottom:487.704000pt;}
.y15f{bottom:488.793333pt;}
.y215{bottom:488.953333pt;}
.y1c1{bottom:490.017333pt;}
.y245{bottom:492.806667pt;}
.y1f{bottom:494.441333pt;}
.ya7{bottom:494.745333pt;}
.y13c{bottom:496.342667pt;}
.y4f{bottom:497.746667pt;}
.y116{bottom:499.960000pt;}
.y214{bottom:502.462667pt;}
.y81{bottom:502.821333pt;}
.y1ed{bottom:505.717333pt;}
.y244{bottom:510.022667pt;}
.ye8{bottom:511.914667pt;}
.y1e{bottom:512.453333pt;}
.ya6{bottom:512.757333pt;}
.y4e{bottom:515.760000pt;}
.y1c0{bottom:516.000000pt;}
.y13b{bottom:517.622667pt;}
.y115{bottom:517.973333pt;}
.y15e{bottom:520.736000pt;}
.y80{bottom:520.834667pt;}
.y1ec{bottom:523.729333pt;}
.y213{bottom:523.942667pt;}
.y243{bottom:527.237333pt;}
.ye7{bottom:529.926667pt;}
.y1d{bottom:530.466667pt;}
.ya5{bottom:530.770667pt;}
.y4d{bottom:533.772000pt;}
.y114{bottom:535.985333pt;}
.y212{bottom:537.452000pt;}
.y15d{bottom:538.748000pt;}
.y7f{bottom:538.846667pt;}
.y1eb{bottom:541.742667pt;}
.y242{bottom:544.453333pt;}
.y13a{bottom:545.729333pt;}
.y1bf{bottom:546.950667pt;}
.ye6{bottom:547.940000pt;}
.y1c{bottom:548.478667pt;}
.y4c{bottom:551.785333pt;}
.y113{bottom:553.997333pt;}
.y15c{bottom:556.760000pt;}
.y7e{bottom:556.858667pt;}
.ya4{bottom:557.789333pt;}
.y211{bottom:558.932000pt;}
.y1ea{bottom:559.754667pt;}
.y241{bottom:561.669333pt;}
.y1be{bottom:564.962667pt;}
.ye5{bottom:565.952000pt;}
.y4b{bottom:569.797333pt;}
.y112{bottom:572.010667pt;}
.y210{bottom:572.441333pt;}
.y15b{bottom:574.773333pt;}
.y7d{bottom:574.872000pt;}
.ya3{bottom:575.801333pt;}
.y139{bottom:576.169333pt;}
.y1e9{bottom:577.766667pt;}
.y240{bottom:578.884000pt;}
.y19{bottom:582.306634pt;}
.y1bd{bottom:582.974667pt;}
.ye4{bottom:583.964000pt;}
.y20f{bottom:585.950667pt;}
.y4a{bottom:587.809333pt;}
.y18{bottom:589.040000pt;}
.y111{bottom:590.022667pt;}
.y15a{bottom:592.785333pt;}
.y7c{bottom:592.884000pt;}
.ya2{bottom:593.813333pt;}
.y138{bottom:594.182667pt;}
.y137{bottom:594.321333pt;}
.y1e8{bottom:595.780000pt;}
.y23f{bottom:596.100000pt;}
.y20e{bottom:599.460000pt;}
.y1bc{bottom:600.988000pt;}
.ye3{bottom:601.977333pt;}
.y49{bottom:605.822667pt;}
.y10e{bottom:608.036000pt;}
.y7b{bottom:610.896000pt;}
.ya1{bottom:611.826667pt;}
.y136{bottom:612.334667pt;}
.y110{bottom:612.857333pt;}
.y10f{bottom:613.177333pt;}
.y23e{bottom:613.314667pt;}
.y1e7{bottom:613.792000pt;}
.y17{bottom:617.653333pt;}
.y1bb{bottom:619.000000pt;}
.ye2{bottom:619.989333pt;}
.y48{bottom:623.834667pt;}
.y159{bottom:625.808000pt;}
.y10d{bottom:626.048000pt;}
.y7a{bottom:628.909333pt;}
.ya0{bottom:629.838667pt;}
.y135{bottom:630.206667pt;}
.y134{bottom:630.346667pt;}
.y23d{bottom:630.530667pt;}
.y1e6{bottom:631.805333pt;}
.y16{bottom:633.793333pt;}
.y1ba{bottom:637.013333pt;}
.ye1{bottom:638.002667pt;}
.y47{bottom:641.846667pt;}
.y79{bottom:646.921333pt;}
.y23c{bottom:647.746667pt;}
.y158{bottom:647.806667pt;}
.y9f{bottom:647.852000pt;}
.y132{bottom:648.220000pt;}
.y133{bottom:648.358667pt;}
.y1e5{bottom:649.817333pt;}
.y15{bottom:649.932000pt;}
.y10c{bottom:653.066667pt;}
.y1b9{bottom:655.025333pt;}
.ye0{bottom:656.014667pt;}
.y46{bottom:659.860000pt;}
.y78{bottom:664.934667pt;}
.y23b{bottom:664.961333pt;}
.y9e{bottom:665.864000pt;}
.y14{bottom:666.072000pt;}
.y131{bottom:666.372000pt;}
.y1e4{bottom:667.829333pt;}
.ydf{bottom:674.026667pt;}
.y45{bottom:677.872000pt;}
.y23a{bottom:682.177333pt;}
.y13{bottom:682.212000pt;}
.y77{bottom:682.946667pt;}
.y130{bottom:684.384000pt;}
.y157{bottom:684.814667pt;}
.y1e3{bottom:685.842667pt;}
.y1b8{bottom:686.136000pt;}
.y10b{bottom:689.092000pt;}
.yde{bottom:692.040000pt;}
.y44{bottom:695.885333pt;}
.y9d{bottom:698.886667pt;}
.y239{bottom:699.392000pt;}
.y76{bottom:700.958667pt;}
.y12f{bottom:702.397333pt;}
.y12{bottom:702.690667pt;}
.y156{bottom:702.826667pt;}
.y1b7{bottom:703.232000pt;}
.y1e2{bottom:703.854667pt;}
.y10a{bottom:707.104000pt;}
.ydd{bottom:710.052000pt;}
.y43{bottom:713.897333pt;}
.y11{bottom:714.490667pt;}
.y238{bottom:716.608000pt;}
.y74{bottom:718.972000pt;}
.y1b6{bottom:720.328000pt;}
.y1e1{bottom:721.868000pt;}
.y75{bottom:723.793333pt;}
.y109{bottom:725.117333pt;}
.ydc{bottom:728.065333pt;}
.y12e{bottom:728.380000pt;}
.y42{bottom:731.909333pt;}
.y155{bottom:732.898667pt;}
.y237{bottom:733.824000pt;}
.y10{bottom:734.969333pt;}
.y72{bottom:736.984000pt;}
.y1b5{bottom:737.424000pt;}
.y1e0{bottom:739.880000pt;}
.y73{bottom:741.806667pt;}
.y108{bottom:743.129333pt;}
.ydb{bottom:746.077333pt;}
.yf{bottom:746.769333pt;}
.y41{bottom:749.922667pt;}
.y154{bottom:749.994667pt;}
.y236{bottom:751.038667pt;}
.y12d{bottom:754.088000pt;}
.y1b4{bottom:754.520000pt;}
.y6f{bottom:754.997333pt;}
.y1df{bottom:757.892000pt;}
.y71{bottom:759.818667pt;}
.y70{bottom:760.138667pt;}
.ye{bottom:762.909333pt;}
.yda{bottom:764.089333pt;}
.y153{bottom:767.090667pt;}
.y107{bottom:767.194667pt;}
.y40{bottom:767.934667pt;}
.y235{bottom:768.254667pt;}
.y12c{bottom:771.184000pt;}
.y6e{bottom:773.009333pt;}
.y1de{bottom:775.905333pt;}
.y106{bottom:779.046667pt;}
.y194{bottom:781.098693pt;}
.y1a4{bottom:781.099117pt;}
.y104{bottom:781.809333pt;}
.yd9{bottom:782.102667pt;}
.yd{bottom:783.388000pt;}
.y234{bottom:785.469333pt;}
.y3f{bottom:785.948000pt;}
.y185{bottom:790.882667pt;}
.y6d{bottom:791.021333pt;}
.y1dd{bottom:793.778667pt;}
.y1dc{bottom:793.917333pt;}
.yc{bottom:795.188000pt;}
.y105{bottom:796.156000pt;}
.y20d{bottom:798.992000pt;}
.yd8{bottom:800.114667pt;}
.y233{bottom:802.685333pt;}
.y3e{bottom:803.960000pt;}
.y184{bottom:808.894667pt;}
.y183{bottom:809.034667pt;}
.y1db{bottom:811.930667pt;}
.yb{bottom:815.668000pt;}
.y6c{bottom:817.004000pt;}
.y232{bottom:819.901333pt;}
.y3d{bottom:821.972000pt;}
.y103{bottom:823.720000pt;}
.yd7{bottom:826.097333pt;}
.y182{bottom:827.046667pt;}
.ya{bottom:827.468000pt;}
.y1da{bottom:829.942667pt;}
.y231{bottom:837.116000pt;}
.y3c{bottom:839.985333pt;}
.y102{bottom:841.733333pt;}
.y181{bottom:845.060000pt;}
.y9{bottom:847.946667pt;}
.y6b{bottom:847.954667pt;}
.y230{bottom:854.332000pt;}
.yd6{bottom:857.048000pt;}
.y3b{bottom:857.997333pt;}
.y101{bottom:859.745333pt;}
.y180{bottom:863.072000pt;}
.y6a{bottom:865.968000pt;}
.y8{bottom:867.717333pt;}
.y22f{bottom:871.546667pt;}
.yd5{bottom:875.061333pt;}
.y3a{bottom:876.010667pt;}
.y100{bottom:877.757333pt;}
.y260{bottom:877.848000pt;}
.y17f{bottom:881.084000pt;}
.y69{bottom:883.980000pt;}
.y7{bottom:885.729333pt;}
.y22e{bottom:888.762667pt;}
.yd2{bottom:893.073333pt;}
.y39{bottom:894.022667pt;}
.y25f{bottom:895.064000pt;}
.yff{bottom:895.770667pt;}
.yd4{bottom:897.894667pt;}
.yd3{bottom:898.216000pt;}
.y17e{bottom:899.097333pt;}
.y68{bottom:901.993333pt;}
.y22d{bottom:905.978667pt;}
.yd1{bottom:911.085333pt;}
.y38{bottom:912.034667pt;}
.y25e{bottom:912.280000pt;}
.y25d{bottom:912.640000pt;}
.yfe{bottom:916.584000pt;}
.y17d{bottom:917.109333pt;}
.y67{bottom:920.005333pt;}
.y22c{bottom:923.193333pt;}
.y6{bottom:925.198667pt;}
.ycf{bottom:929.098667pt;}
.yd0{bottom:929.290667pt;}
.y37{bottom:930.048000pt;}
.yfb{bottom:931.888000pt;}
.yfd{bottom:932.470667pt;}
.yfc{bottom:937.937333pt;}
.y66{bottom:938.017333pt;}
.y22b{bottom:940.409333pt;}
.y17c{bottom:943.092000pt;}
.y36{bottom:948.060000pt;}
.y5{bottom:952.217333pt;}
.ycc{bottom:955.453333pt;}
.ycd{bottom:955.549333pt;}
.y1d9{bottom:955.890667pt;}
.y65{bottom:956.030667pt;}
.y22a{bottom:957.624000pt;}
.ycb{bottom:958.528000pt;}
.yce{bottom:959.552000pt;}
.y35{bottom:966.073333pt;}
.yc2{bottom:972.373333pt;}
.yc6{bottom:972.953333pt;}
.y64{bottom:974.042667pt;}
.y229{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.yc8{bottom:980.344000pt;}
.yc9{bottom:980.440000pt;}
.yc5{bottom:980.924000pt;}
.yc7{bottom:983.420000pt;}
.yca{bottom:984.442667pt;}
.yc4{bottom:988.894667pt;}
.y34{bottom:992.056000pt;}
.yc3{bottom:996.864000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h24{height:2.125355pt;}
.h32{height:15.792710pt;}
.ha{height:22.673858pt;}
.h3b{height:27.262909pt;}
.h12{height:27.866641pt;}
.hf{height:28.023859pt;}
.hc{height:29.433775pt;}
.h13{height:30.392648pt;}
.hb{height:30.399505pt;}
.h1a{height:31.967409pt;}
.h39{height:33.186336pt;}
.h8{height:33.771789pt;}
.h38{height:34.000589pt;}
.h41{height:34.271386pt;}
.h45{height:34.344277pt;}
.h1b{height:34.574438pt;}
.h3d{height:35.052646pt;}
.h16{height:35.519344pt;}
.h33{height:36.666735pt;}
.h10{height:36.873667pt;}
.h28{height:37.034884pt;}
.h2f{height:37.372000pt;}
.h1c{height:37.778179pt;}
.h3f{height:38.078774pt;}
.h43{height:38.159762pt;}
.hd{height:38.415786pt;}
.h11{height:38.596538pt;}
.h5{height:38.947124pt;}
.h17{height:39.071278pt;}
.h2e{height:41.524400pt;}
.h40{height:41.887793pt;}
.h44{height:41.976883pt;}
.h9{height:43.421286pt;}
.h21{height:45.192021pt;}
.h2{height:45.272024pt;}
.h4{height:46.699552pt;}
.he{height:48.245551pt;}
.h7{height:48.481423pt;}
.h36{height:48.800218pt;}
.h37{height:48.805551pt;}
.h2d{height:49.018884pt;}
.h3a{height:51.126455pt;}
.h3c{height:51.131789pt;}
.h25{height:55.295908pt;}
.h2a{height:55.301242pt;}
.h1d{height:55.952068pt;}
.h46{height:55.957402pt;}
.h34{height:57.799269pt;}
.h35{height:58.613402pt;}
.h14{height:59.525402pt;}
.h26{height:65.024218pt;}
.h20{height:65.029551pt;}
.h27{height:66.218735pt;}
.h1f{height:67.599908pt;}
.h2b{height:67.605242pt;}
.h31{height:67.744218pt;}
.h3{height:68.335891pt;}
.h6{height:69.148877pt;}
.h19{height:70.573078pt;}
.h18{height:70.573085pt;}
.h22{height:84.693551pt;}
.h1e{height:99.487908pt;}
.h2c{height:99.530884pt;}
.h30{height:103.531377pt;}
.h23{height:108.925355pt;}
.h29{height:129.842688pt;}
.h3e{height:217.136433pt;}
.h42{height:217.598484pt;}
.h15{height:332.046000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:181.038877pt;}
.w6{width:265.322218pt;}
.w5{width:265.326227pt;}
.w4{width:395.049600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xee{left:9.858954pt;}
.x52{left:10.759805pt;}
.x3{left:14.381362pt;}
.x51{left:15.868203pt;}
.xed{left:17.291448pt;}
.xf3{left:18.464515pt;}
.x50{left:24.231958pt;}
.x8{left:26.021437pt;}
.xf0{left:27.833461pt;}
.xf4{left:29.028951pt;}
.xeb{left:32.831903pt;}
.xf2{left:33.929151pt;}
.x53{left:36.301881pt;}
.x2{left:52.569837pt;}
.x55{left:70.357803pt;}
.x54{left:78.721558pt;}
.xec{left:93.768015pt;}
.xf1{left:95.137159pt;}
.xf5{left:96.475795pt;}
.x109{left:99.437333pt;}
.x1{left:102.046667pt;}
.x11d{left:106.552000pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.xc7{left:115.762667pt;}
.xea{left:116.670667pt;}
.xd3{left:120.428000pt;}
.x7e{left:122.476000pt;}
.x96{left:123.957333pt;}
.x57{left:124.847403pt;}
.x73{left:127.940000pt;}
.x5{left:129.929333pt;}
.x56{left:133.211158pt;}
.x7f{left:135.760000pt;}
.x10a{left:137.394667pt;}
.x47{left:138.329333pt;}
.xa4{left:140.113333pt;}
.x8f{left:141.445333pt;}
.xc9{left:142.350667pt;}
.x65{left:143.360000pt;}
.xdb{left:144.508000pt;}
.xc{left:146.084000pt;}
.x17{left:147.569333pt;}
.x48{left:149.254667pt;}
.xca{left:151.741333pt;}
.x18{left:154.212000pt;}
.xa1{left:156.078667pt;}
.xbf{left:157.434667pt;}
.x90{left:158.709333pt;}
.xd{left:160.337333pt;}
.x4a{left:161.729333pt;}
.xef{left:162.736388pt;}
.xc1{left:164.114667pt;}
.x9{left:167.428000pt;}
.xe2{left:169.194667pt;}
.x49{left:172.088000pt;}
.x41{left:174.638667pt;}
.xa5{left:175.761333pt;}
.x16{left:179.268000pt;}
.xf7{left:180.205333pt;}
.x43{left:181.397333pt;}
.xdd{left:182.814667pt;}
.xb6{left:184.837333pt;}
.x42{left:187.921333pt;}
.xdc{left:189.421333pt;}
.xb7{left:190.814667pt;}
.xc5{left:194.521333pt;}
.x10d{left:198.016000pt;}
.x4f{left:199.333333pt;}
.x80{left:203.138667pt;}
.x3f{left:204.450667pt;}
.x120{left:205.858667pt;}
.xfd{left:206.981333pt;}
.x11e{left:209.350667pt;}
.x2d{left:210.789333pt;}
.xba{left:213.077333pt;}
.x128{left:214.448000pt;}
.x74{left:215.422667pt;}
.x7a{left:217.090667pt;}
.xe4{left:218.365333pt;}
.xfb{left:219.532000pt;}
.xbd{left:221.257333pt;}
.x2e{left:224.073333pt;}
.x100{left:225.593333pt;}
.x7b{left:227.752000pt;}
.x75{left:229.389333pt;}
.x127{left:230.630667pt;}
.xcc{left:231.697333pt;}
.xfc{left:232.816000pt;}
.x59{left:234.678003pt;}
.xbc{left:236.798667pt;}
.x79{left:237.966667pt;}
.x64{left:240.162667pt;}
.xc0{left:242.021333pt;}
.x58{left:243.041745pt;}
.xe5{left:245.541333pt;}
.x26{left:249.109333pt;}
.x40{left:251.205333pt;}
.x99{left:252.504000pt;}
.xd2{left:253.562667pt;}
.x32{left:254.842667pt;}
.xe6{left:255.822667pt;}
.xa{left:261.262667pt;}
.x27{left:262.392000pt;}
.x9a{left:265.788000pt;}
.xb{left:267.312000pt;}
.xde{left:268.242667pt;}
.x7c{left:274.606667pt;}
.x10e{left:277.165333pt;}
.xd5{left:278.673333pt;}
.xc4{left:280.748000pt;}
.xc8{left:284.606667pt;}
.xae{left:285.525333pt;}
.xd6{left:286.574667pt;}
.x7d{left:287.742667pt;}
.x22{left:289.206667pt;}
.x85{left:293.206667pt;}
.x23{left:295.849333pt;}
.x5a{left:297.531345pt;}
.x5e{left:298.782667pt;}
.x28{left:301.705333pt;}
.x3a{left:302.961333pt;}
.x9e{left:306.036000pt;}
.xe{left:307.158667pt;}
.x4b{left:309.646667pt;}
.xcb{left:312.349333pt;}
.x6c{left:313.562667pt;}
.x29{left:314.989333pt;}
.x3b{left:316.244000pt;}
.xdf{left:317.372000pt;}
.xd1{left:318.598667pt;}
.x3c{left:319.632000pt;}
.xf{left:320.670667pt;}
.x126{left:321.565333pt;}
.xfa{left:323.440000pt;}
.xd7{left:324.532000pt;}
.xac{left:325.618667pt;}
.xa2{left:328.774667pt;}
.x4d{left:330.525333pt;}
.x3d{left:332.914667pt;}
.x91{left:334.050667pt;}
.x4e{left:336.574667pt;}
.xad{left:340.876000pt;}
.xe7{left:342.073333pt;}
.x5b{left:343.657203pt;}
.x33{left:347.340000pt;}
.x86{left:350.770667pt;}
.xbb{left:351.670667pt;}
.x4c{left:352.852000pt;}
.x101{left:355.522667pt;}
.x110{left:357.200000pt;}
.xbe{left:358.570667pt;}
.x34{left:360.622667pt;}
.x87{left:361.544000pt;}
.xe8{left:362.760000pt;}
.xab{left:365.516000pt;}
.xd8{left:366.653333pt;}
.x83{left:368.994667pt;}
.x8d{left:370.708000pt;}
.x88{left:372.377333pt;}
.xa9{left:375.954667pt;}
.xa8{left:376.988000pt;}
.xa7{left:379.074667pt;}
.x8b{left:380.012000pt;}
.x8e{left:381.541333pt;}
.xcd{left:383.564000pt;}
.xaf{left:387.630667pt;}
.x2f{left:389.578667pt;}
.x121{left:391.217333pt;}
.x69{left:393.437333pt;}
.xaa{left:395.941333pt;}
.xf9{left:397.237333pt;}
.x71{left:398.349333pt;}
.xf8{left:401.184000pt;}
.x30{left:402.862667pt;}
.x5f{left:404.252000pt;}
.xce{left:407.474667pt;}
.x8c{left:409.876000pt;}
.x72{left:412.068000pt;}
.x11f{left:413.312000pt;}
.xa6{left:415.137333pt;}
.x60{left:417.536000pt;}
.x118{left:422.029333pt;}
.x122{left:424.481333pt;}
.x6f{left:426.388000pt;}
.x81{left:428.188000pt;}
.xc2{left:430.493333pt;}
.x10f{left:431.506667pt;}
.x119{left:432.954667pt;}
.x123{left:437.765333pt;}
.xc3{left:439.916000pt;}
.x70{left:441.082667pt;}
.x82{left:442.926667pt;}
.x97{left:443.970667pt;}
.x102{left:446.445333pt;}
.xb8{left:451.641333pt;}
.x92{left:453.726667pt;}
.x84{left:455.165333pt;}
.x98{left:456.142667pt;}
.x93{left:457.585333pt;}
.x89{left:458.548000pt;}
.x103{left:459.729333pt;}
.x1e{left:461.154667pt;}
.xb9{left:462.566667pt;}
.x44{left:466.329333pt;}
.x1f{left:467.797333pt;}
.xe9{left:469.868000pt;}
.x20{left:471.184000pt;}
.x114{left:472.224000pt;}
.x111{left:475.618667pt;}
.x21{left:477.825333pt;}
.x106{left:479.366667pt;}
.xd0{left:480.829333pt;}
.x31{left:482.206667pt;}
.x8a{left:486.378667pt;}
.x115{left:488.896000pt;}
.x10{left:491.130667pt;}
.xcf{left:492.634667pt;}
.x2a{left:494.726667pt;}
.x66{left:496.741333pt;}
.x14{left:499.357333pt;}
.x116{left:500.501333pt;}
.x11{left:502.056000pt;}
.x45{left:504.400000pt;}
.x107{left:506.398667pt;}
.x2b{left:508.010667pt;}
.x15{left:510.282667pt;}
.xc6{left:512.069333pt;}
.xb3{left:514.837333pt;}
.x38{left:516.793333pt;}
.x46{left:521.654667pt;}
.x3e{left:523.022667pt;}
.xb4{left:525.762667pt;}
.x39{left:530.077333pt;}
.x9f{left:533.626667pt;}
.x24{left:539.668000pt;}
.x12d{left:542.969333pt;}
.xa0{left:544.553333pt;}
.x25{left:546.310667pt;}
.x12b{left:548.236000pt;}
.x61{left:549.653333pt;}
.xb5{left:552.737333pt;}
.x112{left:555.530667pt;}
.x10b{left:560.422667pt;}
.x36{left:561.440000pt;}
.x62{left:563.596000pt;}
.x2c{left:566.142667pt;}
.x1b{left:569.557333pt;}
.x12c{left:572.146667pt;}
.x10c{left:573.706667pt;}
.x37{left:574.722667pt;}
.x1c{left:576.198667pt;}
.x12{left:579.453333pt;}
.x6d{left:581.872000pt;}
.xb2{left:583.741333pt;}
.x1d{left:586.228000pt;}
.x13{left:590.378667pt;}
.xe3{left:592.445333pt;}
.x76{left:593.452000pt;}
.x6e{left:594.644000pt;}
.x95{left:595.568000pt;}
.x113{left:597.653333pt;}
.x94{left:598.716000pt;}
.xd9{left:601.484000pt;}
.x11a{left:605.249333pt;}
.xf6{left:606.573333pt;}
.x124{left:607.697333pt;}
.x5c{left:609.390667pt;}
.x9d{left:610.289333pt;}
.xb0{left:612.314667pt;}
.x63{left:613.862667pt;}
.x9b{left:616.412000pt;}
.xe0{left:619.110667pt;}
.x125{left:620.980000pt;}
.x11b{left:621.909333pt;}
.x7{left:623.413317pt;}
.xb1{left:625.598667pt;}
.xe1{left:628.364000pt;}
.x9c{left:629.696000pt;}
.x12a{left:630.849333pt;}
.x108{left:633.541333pt;}
.x11c{left:635.193333pt;}
.x77{left:636.656000pt;}
.x67{left:643.393333pt;}
.x6a{left:645.061333pt;}
.x5d{left:646.908000pt;}
.xd4{left:649.532000pt;}
.x78{left:651.662667pt;}
.x68{left:658.973333pt;}
.x6b{left:661.122667pt;}
.xfe{left:663.209333pt;}
.x129{left:666.189333pt;}
.xff{left:669.850667pt;}
.x35{left:672.834667pt;}
.x104{left:673.933333pt;}
.xa3{left:676.165333pt;}
.x19{left:678.974667pt;}
.x1a{left:685.616000pt;}
.x105{left:687.217333pt;}
.xda{left:688.646667pt;}
.x117{left:689.926667pt;}
}




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