
    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_1877aea35be28ebbb8460783.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a07dea15c580aae5b37d4818.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_eda0a6d324fe049cec72a1e8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c4676ae43a00b0ce88a6732b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28a69a31467eda54cc755863.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_ac049c0c40ce9b055d7d4aaa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.715474;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_090dca9986166f5667a98e45.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.905000;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_f09ea588e3e030bcb2ecc8ed.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e083cf072c580ef0ed08fa5b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9a701a406ed284703da9d727.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_38656e1f9e906089f55f4b38.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_184ba8ddda87cb739a10c574.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.705000;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_1b7bb4cc1d43d0a3ecddbbe1.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_5b3349a241b3bbef63f2c0fd.woff2')format("woff");}.ffe{font-family:ffe;line-height:3.103000;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_bfd0135f10aa721e24e3c877.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4d13e76a0d95d80f5e876c47.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.723000;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_932aca519b61e65b26cfb8a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.694000;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_e6210451ee20d19019d32bcf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.665000;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_5ac8e5f9652c579385c21489.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.635000;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_74fdff789707232080d8cf26.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m22{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m10{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);}
.m27{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);}
.m5{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);}
.mf{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);}
.m23{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);}
.m16{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);}
.m1{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);}
.m1c{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);}
.m19{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);}
.ma{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);}
.m18{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);}
.md{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);}
.m1a{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);}
.m9{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);}
.m7{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);}
.m12{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);}
.m25{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);}
.m17{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);}
.m1f{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);}
.m1b{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);}
.m13{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);}
.m26{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m8{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);}
.m1d{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);}
.m15{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);}
.mc{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);}
.m24{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);}
.mb{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);}
.me{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);}
.m20{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);}
.m3{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);}
.m6{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);}
.m4{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);}
.v2c{vertical-align:-62.766000px;}
.v7{vertical-align:-53.040000px;}
.v14{vertical-align:-49.572000px;}
.v17{vertical-align:-36.846000px;}
.v16{vertical-align:-27.030000px;}
.v4{vertical-align:-25.902000px;}
.v1c{vertical-align:-23.754000px;}
.va{vertical-align:-19.830000px;}
.v21{vertical-align:-16.362000px;}
.v26{vertical-align:-14.184000px;}
.v1{vertical-align:-9.816000px;}
.v1f{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v22{vertical-align:6.366000px;}
.vb{vertical-align:10.662000px;}
.v1b{vertical-align:12.360000px;}
.v24{vertical-align:13.614000px;}
.v13{vertical-align:16.182000px;}
.vf{vertical-align:18.906000px;}
.v23{vertical-align:20.346000px;}
.v5{vertical-align:23.754000px;}
.v25{vertical-align:25.896000px;}
.v8{vertical-align:27.030000px;}
.v1d{vertical-align:29.100000px;}
.v1a{vertical-align:31.980000px;}
.v11{vertical-align:34.236000px;}
.v15{vertical-align:37.158000px;}
.v27{vertical-align:40.932000px;}
.v19{vertical-align:42.642000px;}
.vc{vertical-align:44.280000px;}
.v28{vertical-align:46.248000px;}
.v3{vertical-align:49.836000px;}
.v20{vertical-align:52.230000px;}
.v29{vertical-align:58.206000px;}
.v9{vertical-align:63.858000px;}
.v18{vertical-align:68.340000px;}
.v12{vertical-align:73.968000px;}
.v2{vertical-align:76.140000px;}
.v6{vertical-align:82.782000px;}
.vd{vertical-align:85.704000px;}
.ve{vertical-align:89.178000px;}
.v2a{vertical-align:94.080000px;}
.v2b{vertical-align:97.002000px;}
.v1e{vertical-align:112.668000px;}
.v10{vertical-align:130.602000px;}
.lsa{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.000520px;}
.lsf{letter-spacing:0.000843px;}
.ls1e{letter-spacing:0.001035px;}
.ls64{letter-spacing:0.001301px;}
.ls60{letter-spacing:0.001549px;}
.ls34{letter-spacing:0.001604px;}
.ls4a{letter-spacing:0.001613px;}
.ls8f{letter-spacing:0.001641px;}
.ls56{letter-spacing:0.002149px;}
.ls4e{letter-spacing:0.002156px;}
.ls7e{letter-spacing:0.002682px;}
.ls1b{letter-spacing:0.002696px;}
.ls3{letter-spacing:0.002700px;}
.ls93{letter-spacing:0.002877px;}
.ls24{letter-spacing:0.004335px;}
.ls8e{letter-spacing:0.004338px;}
.ls5f{letter-spacing:0.004734px;}
.ls36{letter-spacing:0.004861px;}
.ls5a{letter-spacing:0.007549px;}
.ls42{letter-spacing:0.007603px;}
.ls8a{letter-spacing:0.010708px;}
.ls9b{letter-spacing:0.011329px;}
.ls6a{letter-spacing:0.012399px;}
.ls40{letter-spacing:0.015006px;}
.ls79{letter-spacing:0.021555px;}
.ls96{letter-spacing:0.031444px;}
.ls3c{letter-spacing:0.032602px;}
.ls22{letter-spacing:0.327273px;}
.ls50{letter-spacing:1.721542px;}
.ls68{letter-spacing:1.816884px;}
.ls6b{letter-spacing:1.832729px;}
.ls58{letter-spacing:2.008465px;}
.ls7c{letter-spacing:2.349242px;}
.ls27{letter-spacing:2.356366px;}
.ls37{letter-spacing:2.880002px;}
.ls25{letter-spacing:2.982599px;}
.ls51{letter-spacing:2.983483px;}
.ls57{letter-spacing:2.984812px;}
.ls3f{letter-spacing:2.984915px;}
.ls41{letter-spacing:2.985056px;}
.ls11{letter-spacing:2.986031px;}
.ls2{letter-spacing:2.986059px;}
.ls87{letter-spacing:2.986528px;}
.ls76{letter-spacing:2.987236px;}
.ls65{letter-spacing:2.988532px;}
.ls1f{letter-spacing:2.988599px;}
.ls55{letter-spacing:2.988750px;}
.ls1c{letter-spacing:2.989711px;}
.ls52{letter-spacing:2.990812px;}
.ls10{letter-spacing:2.992059px;}
.ls33{letter-spacing:2.992613px;}
.ls77{letter-spacing:2.993236px;}
.ls86{letter-spacing:2.993282px;}
.ls48{letter-spacing:2.994750px;}
.ls17{letter-spacing:3.010912px;}
.ls73{letter-spacing:3.730912px;}
.ls70{letter-spacing:3.796367px;}
.ls71{letter-spacing:4.265644px;}
.ls7a{letter-spacing:4.701332px;}
.ls83{letter-spacing:4.707332px;}
.ls5b{letter-spacing:4.712731px;}
.ls47{letter-spacing:4.825613px;}
.ls14{letter-spacing:4.859780px;}
.ls84{letter-spacing:5.317591px;}
.lsb{letter-spacing:5.367277px;}
.ls7f{letter-spacing:5.981282px;}
.ls15{letter-spacing:6.480005px;}
.ls18{letter-spacing:7.003642px;}
.ls16{letter-spacing:7.069097px;}
.ls7b{letter-spacing:7.172012px;}
.ls46{letter-spacing:7.186693px;}
.ls9f{letter-spacing:7.396370px;}
.ls99{letter-spacing:8.083944px;}
.ls97{letter-spacing:8.508587px;}
.ls26{letter-spacing:9.032735px;}
.ls23{letter-spacing:9.098189px;}
.ls3d{letter-spacing:10.160915px;}
.ls0{letter-spacing:10.865464px;}
.ls3e{letter-spacing:10.905181px;}
.ls80{letter-spacing:10.910012px;}
.ls9{letter-spacing:10.930918px;}
.ls9c{letter-spacing:13.850712px;}
.ls94{letter-spacing:13.894059px;}
.ls4d{letter-spacing:13.900795px;}
.ls38{letter-spacing:13.901963px;}
.ls54{letter-spacing:14.280075px;}
.ls59{letter-spacing:14.298006px;}
.ls2c{letter-spacing:14.530921px;}
.ls53{letter-spacing:14.596376px;}
.ls4b{letter-spacing:15.120013px;}
.ls6c{letter-spacing:16.363650px;}
.ls2b{letter-spacing:17.532599px;}
.ls28{letter-spacing:17.627578px;}
.lsd{letter-spacing:18.130924px;}
.ls90{letter-spacing:18.160988px;}
.ls92{letter-spacing:18.179412px;}
.ls6{letter-spacing:18.196379px;}
.ls6d{letter-spacing:18.458197px;}
.ls67{letter-spacing:19.871644px;}
.ls69{letter-spacing:19.963653px;}
.ls8c{letter-spacing:20.225471px;}
.ls32{letter-spacing:20.434878px;}
.ls44{letter-spacing:20.880017px;}
.ls88{letter-spacing:21.010927px;}
.ls91{letter-spacing:21.164915px;}
.ls78{letter-spacing:21.167236px;}
.ls35{letter-spacing:21.168599px;}
.ls75{letter-spacing:21.338200px;}
.ls6e{letter-spacing:21.534563px;}
.ls63{letter-spacing:21.600018px;}
.ls49{letter-spacing:21.718841px;}
.ls89{letter-spacing:21.730927px;}
.ls1{letter-spacing:21.796382px;}
.ls30{letter-spacing:21.861836px;}
.ls6f{letter-spacing:21.992746px;}
.ls8b{letter-spacing:22.189109px;}
.ls4c{letter-spacing:22.527962px;}
.ls66{letter-spacing:22.647292px;}
.ls31{letter-spacing:22.909110px;}
.ls45{letter-spacing:22.974565px;}
.ls29{letter-spacing:24.152747px;}
.ls81{letter-spacing:24.218202px;}
.lsa1{letter-spacing:24.283657px;}
.ls82{letter-spacing:24.610930px;}
.ls3a{letter-spacing:24.631513px;}
.ls98{letter-spacing:24.760734px;}
.ls4{letter-spacing:24.802031px;}
.ls2e{letter-spacing:24.804599px;}
.ls43{letter-spacing:24.810599px;}
.ls4f{letter-spacing:24.812812px;}
.ls7d{letter-spacing:24.878700px;}
.ls5{letter-spacing:25.200021px;}
.lse{letter-spacing:25.265476px;}
.ls5e{letter-spacing:25.592749px;}
.ls62{letter-spacing:25.723658px;}
.ls19{letter-spacing:26.560677px;}
.ls1a{letter-spacing:26.566677px;}
.ls21{letter-spacing:26.967295px;}
.ls7{letter-spacing:27.163659px;}
.lsc{letter-spacing:27.294568px;}
.ls2f{letter-spacing:28.865479px;}
.ls9d{letter-spacing:28.996388px;}
.ls13{letter-spacing:29.061842px;}
.ls9a{letter-spacing:29.856285px;}
.ls2d{letter-spacing:30.109116px;}
.ls5d{letter-spacing:30.240025px;}
.ls95{letter-spacing:30.330587px;}
.ls20{letter-spacing:30.894571px;}
.ls2a{letter-spacing:30.960026px;}
.ls1d{letter-spacing:31.352753px;}
.ls12{letter-spacing:32.727300px;}
.lsa0{letter-spacing:36.327303px;}
.ls72{letter-spacing:36.392758px;}
.ls8{letter-spacing:40.678819px;}
.ls74{letter-spacing:43.532700px;}
.ls85{letter-spacing:55.485332px;}
.ls5c{letter-spacing:65.454600px;}
.ls39{letter-spacing:66.561181px;}
.ls9e{letter-spacing:76.320064px;}
.ls3b{letter-spacing:92.273412px;}
.ls8d{letter-spacing:244.821242px;}
.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;}
}
.ws22{word-spacing:-65.454600px;}
.ws74{word-spacing:-53.568045px;}
.ws29{word-spacing:-47.324343px;}
.wsa1{word-spacing:-47.323676px;}
.ws21{word-spacing:-47.263366px;}
.ws14{word-spacing:-47.258221px;}
.ws1f{word-spacing:-42.637126px;}
.ws42{word-spacing:-36.379667px;}
.ws37{word-spacing:-33.453846px;}
.ws24{word-spacing:-33.211407px;}
.ws48{word-spacing:-32.727300px;}
.wsaf{word-spacing:-32.714209px;}
.ws80{word-spacing:-31.771663px;}
.ws1e{word-spacing:-31.706208px;}
.ws5e{word-spacing:-24.506202px;}
.ws3f{word-spacing:-24.440748px;}
.ws90{word-spacing:-24.375293px;}
.wsae{word-spacing:-21.796382px;}
.ws57{word-spacing:-21.626200px;}
.ws61{word-spacing:-18.929657px;}
.ws72{word-spacing:-18.183288px;}
.ws5f{word-spacing:-17.607287px;}
.ws2a{word-spacing:-17.450757px;}
.ws84{word-spacing:-17.240742px;}
.ws94{word-spacing:-16.298195px;}
.ws12{word-spacing:-16.139475px;}
.ws27{word-spacing:-16.101832px;}
.ws32{word-spacing:-14.989103px;}
.wsa9{word-spacing:-14.923649px;}
.wsad{word-spacing:-14.792740px;}
.ws15{word-spacing:-14.530921px;}
.wsbd{word-spacing:-14.465467px;}
.ws4b{word-spacing:-14.334557px;}
.wsb9{word-spacing:-14.269103px;}
.wsac{word-spacing:-14.215121px;}
.wsc3{word-spacing:-14.138194px;}
.ws54{word-spacing:-14.007284px;}
.ws8d{word-spacing:-13.941830px;}
.ws9a{word-spacing:-13.745466px;}
.wsa0{word-spacing:-13.680011px;}
.ws4{word-spacing:-13.628837px;}
.ws1d{word-spacing:-13.449600px;}
.wsbe{word-spacing:-13.418193px;}
.ws2e{word-spacing:-13.352738px;}
.ws6f{word-spacing:-13.293829px;}
.ws58{word-spacing:-13.287284px;}
.wsaa{word-spacing:-13.097465px;}
.ws33{word-spacing:-12.698192px;}
.ws67{word-spacing:-12.632738px;}
.ws92{word-spacing:-12.567283px;}
.ws46{word-spacing:-12.370919px;}
.ws7f{word-spacing:-12.305465px;}
.ws7d{word-spacing:-12.240010px;}
.wsb8{word-spacing:-12.109101px;}
.wsc4{word-spacing:-11.978192px;}
.ws71{word-spacing:-11.912737px;}
.ws49{word-spacing:-11.847283px;}
.ws2{word-spacing:-11.735224px;}
.ws89{word-spacing:-11.716373px;}
.ws1{word-spacing:-11.663493px;}
.ws68{word-spacing:-11.526555px;}
.wsbf{word-spacing:-11.520010px;}
.ws34{word-spacing:-11.454555px;}
.ws64{word-spacing:-11.389100px;}
.ws4a{word-spacing:-11.323646px;}
.ws5c{word-spacing:-11.258191px;}
.ws26{word-spacing:-11.192737px;}
.ws45{word-spacing:-11.127282px;}
.ws66{word-spacing:-11.061827px;}
.ws5d{word-spacing:-10.996373px;}
.ws13{word-spacing:-10.930918px;}
.ws7c{word-spacing:-10.872009px;}
.ws23{word-spacing:-10.865464px;}
.ws1b{word-spacing:-10.800009px;}
.ws47{word-spacing:-10.734554px;}
.ws31{word-spacing:-10.669100px;}
.ws4d{word-spacing:-10.603645px;}
.ws1c{word-spacing:-10.538191px;}
.ws35{word-spacing:-10.479281px;}
.ws44{word-spacing:-10.472736px;}
.ws43{word-spacing:-10.407281px;}
.wsd{word-spacing:-10.400954px;}
.wsc0{word-spacing:-10.341827px;}
.ws6d{word-spacing:-10.282918px;}
.wsb5{word-spacing:-10.276372px;}
.ws6{word-spacing:-10.221628px;}
.ws8a{word-spacing:-10.217463px;}
.wsc9{word-spacing:-10.210918px;}
.wsb1{word-spacing:-10.152008px;}
.wscb{word-spacing:-10.145463px;}
.ws52{word-spacing:-10.086554px;}
.ws8e{word-spacing:-10.080008px;}
.ws1a{word-spacing:-10.021099px;}
.ws3a{word-spacing:-10.014554px;}
.ws8{word-spacing:-9.982525px;}
.wsf{word-spacing:-9.922750px;}
.ws2f{word-spacing:-9.883645px;}
.wsb6{word-spacing:-9.824735px;}
.ws4f{word-spacing:-9.818190px;}
.wsa2{word-spacing:-9.759281px;}
.ws59{word-spacing:-9.752735px;}
.wsa8{word-spacing:-9.693826px;}
.ws8c{word-spacing:-9.687281px;}
.ws9{word-spacing:-9.683647px;}
.ws3{word-spacing:-9.623872px;}
.ws91{word-spacing:-9.621826px;}
.wsca{word-spacing:-9.497462px;}
.ws25{word-spacing:-9.490917px;}
.ws81{word-spacing:-9.301099px;}
.ws7{word-spacing:-9.265218px;}
.ws30{word-spacing:-9.170189px;}
.wsba{word-spacing:-9.163644px;}
.ws5a{word-spacing:-9.039280px;}
.ws36{word-spacing:-9.032735px;}
.ws8f{word-spacing:-8.973826px;}
.wsbc{word-spacing:-8.842916px;}
.ws18{word-spacing:-8.836371px;}
.ws38{word-spacing:-8.705462px;}
.ws4e{word-spacing:-8.640007px;}
.ws9e{word-spacing:-8.574553px;}
.ws83{word-spacing:-8.509098px;}
.ws11{word-spacing:-8.484008px;}
.wscc{word-spacing:-8.450189px;}
.ws78{word-spacing:-8.443643px;}
.wse{word-spacing:-8.428360px;}
.ws16{word-spacing:-8.378189px;}
.ws19{word-spacing:-8.188370px;}
.ws87{word-spacing:-8.116370px;}
.wsbb{word-spacing:-8.050916px;}
.ws5{word-spacing:-7.896357px;}
.ws85{word-spacing:-7.861097px;}
.ws9f{word-spacing:-7.854552px;}
.ws79{word-spacing:-7.795643px;}
.ws99{word-spacing:-7.789097px;}
.wsa7{word-spacing:-7.723643px;}
.wsa6{word-spacing:-7.658188px;}
.ws39{word-spacing:-7.592734px;}
.ws17{word-spacing:-7.396370px;}
.wsc{word-spacing:-7.352399px;}
.ws7b{word-spacing:-7.317824px;}
.ws82{word-spacing:-7.270056px;}
.wsa3{word-spacing:-7.265461px;}
.ws77{word-spacing:-7.252370px;}
.ws65{word-spacing:-7.075642px;}
.ws6a{word-spacing:-7.003642px;}
.ws6c{word-spacing:-6.938188px;}
.wsa4{word-spacing:-6.813824px;}
.ws6e{word-spacing:-6.748369px;}
.wsb7{word-spacing:-6.741824px;}
.ws9b{word-spacing:-6.610915px;}
.wsb{word-spacing:-6.575316px;}
.wsb0{word-spacing:-6.486551px;}
.wsc5{word-spacing:-6.480005px;}
.ws51{word-spacing:-6.466914px;}
.ws10{word-spacing:-6.461742px;}
.ws76{word-spacing:-6.401460px;}
.ws8b{word-spacing:-6.355642px;}
.wsc1{word-spacing:-6.087278px;}
.ws63{word-spacing:-6.021823px;}
.ws9c{word-spacing:-5.825459px;}
.wsc6{word-spacing:-5.563641px;}
.wsa5{word-spacing:-5.112004px;}
.ws70{word-spacing:-4.974550px;}
.ws41{word-spacing:-4.909095px;}
.wsb3{word-spacing:-4.647277px;}
.ws3b{word-spacing:-4.588367px;}
.wsa{word-spacing:-4.542946px;}
.ws4c{word-spacing:-4.516367px;}
.ws75{word-spacing:-4.306913px;}
.wsc2{word-spacing:-3.796367px;}
.wsb2{word-spacing:-3.730912px;}
.ws3e{word-spacing:-3.652814px;}
.ws56{word-spacing:-3.652367px;}
.wsc7{word-spacing:-3.600003px;}
.ws73{word-spacing:-3.325094px;}
.ws96{word-spacing:-3.141821px;}
.ws9d{word-spacing:-3.141818px;}
.wsb4{word-spacing:-2.814548px;}
.wsc8{word-spacing:-2.101093px;}
.ws5b{word-spacing:-1.047274px;}
.ws3c{word-spacing:-0.065455px;}
.ws2d{word-spacing:-0.052364px;}
.ws28{word-spacing:-0.016625px;}
.ws55{word-spacing:-0.016522px;}
.ws20{word-spacing:0.000000px;}
.ws2c{word-spacing:0.010517px;}
.ws40{word-spacing:0.013091px;}
.ws60{word-spacing:0.340364px;}
.ws7a{word-spacing:0.736824px;}
.ws50{word-spacing:2.238547px;}
.ws7e{word-spacing:2.304002px;}
.ws86{word-spacing:4.320004px;}
.ws97{word-spacing:5.236368px;}
.ws6b{word-spacing:8.836371px;}
.ws53{word-spacing:10.628061px;}
.ws3d{word-spacing:18.144015px;}
.ws88{word-spacing:18.147123px;}
.ws98{word-spacing:24.807293px;}
.ws93{word-spacing:25.134566px;}
.ws95{word-spacing:26.770931px;}
.ws0{word-spacing:31.091012px;}
.ws69{word-spacing:32.792755px;}
.ws2b{word-spacing:33.748392px;}
.ws62{word-spacing:36.251964px;}
.wsab{word-spacing:99.202992px;}
._1c{margin-left:-25.461839px;}
._17{margin-left:-17.303403px;}
._2c{margin-left:-14.530921px;}
._d{margin-left:-10.930918px;}
._21{margin-left:-9.750772px;}
._1{margin-left:-8.160100px;}
._1b{margin-left:-7.095992px;}
._2{margin-left:-5.881958px;}
._11{margin-left:-3.925312px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.187882px;}
._3{width:1.936742px;}
._14{width:3.403639px;}
._16{width:4.516367px;}
._2d{width:5.934667px;}
._30{width:10.598113px;}
._31{width:11.721906px;}
._20{width:15.379867px;}
._1f{width:17.281978px;}
._c{width:18.945239px;}
._e{width:21.316332px;}
._a{width:22.849547px;}
._6{width:24.519925px;}
._2f{width:25.521761px;}
._5{width:26.655618px;}
._29{width:27.736940px;}
._13{width:28.754307px;}
._8{width:29.887800px;}
._32{width:30.976883px;}
._15{width:32.038123px;}
._10{width:33.447301px;}
._2e{width:34.728467px;}
._18{width:36.327535px;}
._28{width:37.963668px;}
._1d{width:39.141851px;}
._f{width:41.195870px;}
._7{width:43.874356px;}
._2b{width:46.531602px;}
._19{width:49.741589px;}
._b{width:65.799813px;}
._2a{width:69.670873px;}
._1e{width:74.327813px;}
._12{width:80.697600px;}
._9{width:96.836850px;}
._25{width:104.661905px;}
._1a{width:141.879165px;}
._23{width:331.477388px;}
._22{width:361.323884px;}
._27{width:459.240185px;}
._26{width:496.193175px;}
._24{width:696.575888px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.ye3{bottom:99.781500px;}
.y26{bottom:101.275500px;}
.yb8{bottom:108.000000px;}
.ye2{bottom:111.006000px;}
.y24{bottom:119.334000px;}
.y1a7{bottom:122.805000px;}
.yb7{bottom:128.323500px;}
.y25{bottom:133.887000px;}
.y1a6{bottom:143.128500px;}
.yb6{bottom:148.647000px;}
.ye1{bottom:154.530000px;}
.y8f{bottom:156.181500px;}
.y178{bottom:161.350500px;}
.y1a5{bottom:163.452000px;}
.y23{bottom:164.101500px;}
.yb5{bottom:168.972000px;}
.ye0{bottom:174.853500px;}
.y177{bottom:181.674000px;}
.y10b{bottom:181.825500px;}
.y1a4{bottom:183.775500px;}
.y12e{bottom:189.295500px;}
.y8e{bottom:192.943500px;}
.y22{bottom:194.994000px;}
.yb4{bottom:201.811500px;}
.y10a{bottom:202.149000px;}
.y1a3{bottom:204.099000px;}
.ydf{bottom:209.313000px;}
.y176{bottom:215.149500px;}
.y69{bottom:215.749500px;}
.y12d{bottom:221.976000px;}
.yb3{bottom:222.135000px;}
.y151{bottom:222.492000px;}
.y8d{bottom:231.378000px;}
.y109{bottom:235.684500px;}
.y68{bottom:236.073000px;}
.y1a2{bottom:237.873000px;}
.y21{bottom:238.291500px;}
.y47{bottom:242.050500px;}
.y12c{bottom:242.299500px;}
.y150{bottom:242.815500px;}
.yde{bottom:243.772500px;}
.y175{bottom:248.623500px;}
.yb2{bottom:255.535500px;}
.y107{bottom:256.008000px;}
.y67{bottom:256.396500px;}
.y1a1{bottom:258.196500px;}
.y108{bottom:261.946500px;}
.y46{bottom:262.374000px;}
.y12b{bottom:262.623000px;}
.y14f{bottom:263.139000px;}
.ydd{bottom:264.096000px;}
.y8c{bottom:265.152000px;}
.y174{bottom:268.948500px;}
.y20{bottom:274.819500px;}
.yb1{bottom:275.859000px;}
.y14e{bottom:283.464000px;}
.y8a{bottom:285.475500px;}
.y106{bottom:289.185000px;}
.y1a0{bottom:291.970500px;}
.y66{bottom:292.924500px;}
.ydc{bottom:294.987000px;}
.y12a{bottom:295.959000px;}
.y8b{bottom:297.868500px;}
.y45{bottom:298.902000px;}
.y173{bottom:301.975500px;}
.yb0{bottom:308.700000px;}
.y19f{bottom:312.294000px;}
.y129{bottom:316.282500px;}
.y14d{bottom:316.660500px;}
.y89{bottom:319.249500px;}
.y172{bottom:322.299000px;}
.y105{bottom:322.362000px;}
.y1f{bottom:325.857000px;}
.y128{bottom:336.607500px;}
.y14c{bottom:336.984000px;}
.ydb{bottom:338.445000px;}
.y88{bottom:339.573000px;}
.yaf{bottom:341.539500px;}
.y171{bottom:342.622500px;}
.y104{bottom:342.685500px;}
.y65{bottom:344.482500px;}
.y19e{bottom:346.066500px;}
.y1e{bottom:346.180500px;}
.y44{bottom:350.460000px;}
.y14b{bottom:357.307500px;}
.yda{bottom:358.768500px;}
.y87{bottom:359.896500px;}
.yae{bottom:361.863000px;}
.y170{bottom:362.946000px;}
.y64{bottom:364.806000px;}
.y19d{bottom:366.391500px;}
.y1d{bottom:366.505500px;}
.y127{bottom:369.943500px;}
.y103{bottom:375.864000px;}
.y14a{bottom:377.631000px;}
.yad{bottom:382.186500px;}
.y16f{bottom:383.269500px;}
.y43{bottom:384.234000px;}
.y63{bottom:385.129500px;}
.y19c{bottom:386.715000px;}
.y1c{bottom:386.829000px;}
.y126{bottom:390.267000px;}
.yd9{bottom:390.622500px;}
.y86{bottom:394.881000px;}
.y16e{bottom:403.594500px;}
.y42{bottom:404.557500px;}
.y84{bottom:406.105500px;}
.y19b{bottom:407.038500px;}
.y1b{bottom:407.152500px;}
.y102{bottom:409.041000px;}
.y125{bottom:410.590500px;}
.yd8{bottom:410.946000px;}
.y149{bottom:414.159000px;}
.y85{bottom:414.613500px;}
.yac{bottom:415.587000px;}
.y1b9{bottom:421.468500px;}
.y62{bottom:423.387000px;}
.y19a{bottom:427.362000px;}
.y1a{bottom:427.476000px;}
.y148{bottom:434.482500px;}
.yab{bottom:435.910500px;}
.y41{bottom:438.331500px;}
.y16d{bottom:439.461000px;}
.y101{bottom:442.218000px;}
.y124{bottom:443.271000px;}
.y61{bottom:443.710500px;}
.yd7{bottom:443.952000px;}
.y199{bottom:447.685500px;}
.y19{bottom:447.799500px;}
.y83{bottom:453.262500px;}
.y147{bottom:454.806000px;}
.y1b8{bottom:455.241000px;}
.y40{bottom:458.655000px;}
.y60{bottom:461.368500px;}
.y5f{bottom:464.034000px;}
.yd6{bottom:464.275500px;}
.y198{bottom:468.010500px;}
.yaa{bottom:469.311000px;}
.y100{bottom:473.110500px;}
.y146{bottom:475.129500px;}
.y16c{bottom:475.326000px;}
.y18{bottom:476.181000px;}
.y3f{bottom:478.978500px;}
.y123{bottom:480.573000px;}
.y82{bottom:484.155000px;}
.y197{bottom:488.334000px;}
.y1b7{bottom:489.015000px;}
.ya9{bottom:489.634500px;}
.y145{bottom:495.454500px;}
.y16b{bottom:495.651000px;}
.yd5{bottom:497.281500px;}
.y5e{bottom:497.808000px;}
.y122{bottom:500.898000px;}
.y196{bottom:508.657500px;}
.y17{bottom:509.631000px;}
.ya8{bottom:509.958000px;}
.y3e{bottom:512.752500px;}
.y16a{bottom:515.974500px;}
.yff{bottom:516.816000px;}
.yd4{bottom:517.605000px;}
.y5d{bottom:518.131500px;}
.y1b6{bottom:522.789000px;}
.y121{bottom:525.883500px;}
.y81{bottom:527.973000px;}
.y195{bottom:528.981000px;}
.y144{bottom:530.487000px;}
.y169{bottom:536.298000px;}
.ya7{bottom:542.799000px;}
.y16{bottom:543.081000px;}
.y1b5{bottom:543.112500px;}
.y3d{bottom:543.643500px;}
.y120{bottom:546.207000px;}
.y80{bottom:548.296500px;}
.y194{bottom:549.304500px;}
.yd3{bottom:549.460500px;}
.yfe{bottom:553.345500px;}
.y5c{bottom:556.387500px;}
.y168{bottom:556.621500px;}
.ya6{bottom:563.122500px;}
.y143{bottom:565.519500px;}
.y193{bottom:569.629500px;}
.yd2{bottom:569.784000px;}
.y11f{bottom:571.194000px;}
.y1b4{bottom:576.885000px;}
.y167{bottom:576.945000px;}
.y15{bottom:579.609000px;}
.y7f{bottom:582.070500px;}
.ya5{bottom:583.446000px;}
.y142{bottom:585.843000px;}
.y5b{bottom:587.280000px;}
.y3c{bottom:587.463000px;}
.y192{bottom:589.953000px;}
.yd1{bottom:590.107500px;}
.y11e{bottom:591.517500px;}
.yfd{bottom:604.789500px;}
.y141{bottom:606.166500px;}
.y3b{bottom:607.786500px;}
.y191{bottom:610.276500px;}
.yd0{bottom:610.431000px;}
.y1b3{bottom:610.659000px;}
.y166{bottom:613.474500px;}
.ya4{bottom:614.781000px;}
.y7e{bottom:615.844500px;}
.y11d{bottom:616.503000px;}
.y14{bottom:624.472500px;}
.yfc{bottom:625.114500px;}
.ya3{bottom:625.441500px;}
.y140{bottom:626.490000px;}
.y3a{bottom:628.110000px;}
.y190{bottom:630.600000px;}
.ycf{bottom:630.754500px;}
.y5a{bottom:631.098000px;}
.y11c{bottom:636.828000px;}
.y1b2{bottom:644.433000px;}
.yfb{bottom:645.438000px;}
.y39{bottom:648.433500px;}
.y7d{bottom:649.617000px;}
.y18f{bottom:650.923500px;}
.yce{bottom:652.084500px;}
.y13{bottom:655.531500px;}
.y13f{bottom:658.822500px;}
.ya2{bottom:661.083000px;}
.y11b{bottom:661.813500px;}
.ycd{bottom:663.309000px;}
.y1b1{bottom:664.756500px;}
.y59{bottom:664.872000px;}
.y165{bottom:664.891500px;}
.yfa{bottom:665.761500px;}
.y38{bottom:668.757000px;}
.y18e{bottom:671.248500px;}
.y12{bottom:673.464000px;}
.y13e{bottom:679.146000px;}
.ya1{bottom:681.408000px;}
.y11a{bottom:682.137000px;}
.y7c{bottom:683.391000px;}
.y58{bottom:685.195500px;}
.y164{bottom:685.215000px;}
.yf9{bottom:686.085000px;}
.ycc{bottom:686.178000px;}
.y37{bottom:689.082000px;}
.y11{bottom:691.398000px;}
.y18d{bottom:691.572000px;}
.y1b0{bottom:698.529000px;}
.ya0{bottom:701.731500px;}
.y7b{bottom:703.714500px;}
.y163{bottom:705.538500px;}
.yf8{bottom:706.408500px;}
.y119{bottom:707.124000px;}
.y10{bottom:709.330500px;}
.y18c{bottom:711.895500px;}
.y13d{bottom:712.344000px;}
.ycb{bottom:718.032000px;}
.y36{bottom:718.287000px;}
.y57{bottom:718.969500px;}
.y7a{bottom:724.038000px;}
.y162{bottom:725.862000px;}
.yf7{bottom:726.733500px;}
.yf{bottom:727.263000px;}
.y118{bottom:727.447500px;}
.y35{bottom:731.547000px;}
.y18b{bottom:732.219000px;}
.y1af{bottom:732.303000px;}
.y9f{bottom:732.622500px;}
.y13c{bottom:732.667500px;}
.y56{bottom:736.627500px;}
.y55{bottom:739.293000px;}
.y79{bottom:744.361500px;}
.ye{bottom:745.195500px;}
.y161{bottom:746.185500px;}
.y117{bottom:752.433000px;}
.yca{bottom:752.491500px;}
.y18a{bottom:752.542500px;}
.yf6{bottom:759.910500px;}
.yd{bottom:763.128000px;}
.y78{bottom:764.685000px;}
.y13b{bottom:765.864000px;}
.y1ae{bottom:766.075500px;}
.y189{bottom:772.867500px;}
.y54{bottom:773.067000px;}
.y34{bottom:773.772000px;}
.y9e{bottom:776.266500px;}
.y116{bottom:777.420000px;}
.y160{bottom:779.212500px;}
.yf5{bottom:780.234000px;}
.yc{bottom:781.060500px;}
.y77{bottom:785.010000px;}
.y1ad{bottom:786.400500px;}
.yc9{bottom:786.951000px;}
.y188{bottom:793.191000px;}
.y53{bottom:793.390500px;}
.y9d{bottom:796.590000px;}
.y13a{bottom:798.196500px;}
.yb{bottom:798.994500px;}
.y15f{bottom:799.537500px;}
.yf4{bottom:800.557500px;}
.y33{bottom:804.664500px;}
.y76{bottom:805.333500px;}
.y187{bottom:813.514500px;}
.y52{bottom:813.714000px;}
.y115{bottom:816.387000px;}
.y9c{bottom:816.913500px;}
.ya{bottom:816.927000px;}
.yc8{bottom:819.957000px;}
.y1ac{bottom:822.928500px;}
.y186{bottom:833.838000px;}
.yf3{bottom:834.093000px;}
.y139{bottom:834.723000px;}
.y9{bottom:834.859500px;}
.y75{bottom:837.156000px;}
.y9b{bottom:837.237000px;}
.yc6{bottom:840.280500px;}
.y15e{bottom:841.978500px;}
.yc7{bottom:846.219000px;}
.y51{bottom:847.488000px;}
.y74{bottom:848.380500px;}
.y32{bottom:848.484000px;}
.y8{bottom:852.792000px;}
.y114{bottom:852.915000px;}
.y185{bottom:854.161500px;}
.yf2{bottom:854.416500px;}
.y9a{bottom:857.560500px;}
.yc5{bottom:860.604000px;}
.y138{bottom:867.921000px;}
.y31{bottom:868.807500px;}
.y7{bottom:870.724500px;}
.y184{bottom:874.486500px;}
.y15d{bottom:877.845000px;}
.y99{bottom:877.885500px;}
.y50{bottom:881.260500px;}
.yf1{bottom:887.952000px;}
.y6{bottom:888.657000px;}
.y30{bottom:889.131000px;}
.y73{bottom:891.928500px;}
.yc4{bottom:893.610000px;}
.y183{bottom:894.810000px;}
.y137{bottom:901.117500px;}
.y113{bottom:904.266000px;}
.y2f{bottom:909.454500px;}
.y98{bottom:910.725000px;}
.y15c{bottom:911.320500px;}
.y5{bottom:912.618000px;}
.yc3{bottom:913.933500px;}
.y4f{bottom:915.034500px;}
.y182{bottom:915.133500px;}
.yf0{bottom:921.129000px;}
.y72{bottom:921.966000px;}
.y112{bottom:924.591000px;}
.y2e{bottom:929.778000px;}
.y15b{bottom:931.644000px;}
.y181{bottom:933.003000px;}
.yc1{bottom:934.257000px;}
.y136{bottom:934.314000px;}
.y180{bottom:935.457000px;}
.yc2{bottom:940.195500px;}
.yef{bottom:941.452500px;}
.y71{bottom:942.289500px;}
.y97{bottom:944.125500px;}
.y111{bottom:944.914500px;}
.y4e{bottom:948.807000px;}
.ybf{bottom:954.580500px;}
.y17f{bottom:955.780500px;}
.yc0{bottom:960.519000px;}
.yee{bottom:961.777500px;}
.y70{bottom:962.614500px;}
.y2d{bottom:963.552000px;}
.y15a{bottom:964.671000px;}
.y110{bottom:965.238000px;}
.y1ab{bottom:969.231000px;}
.y4{bottom:969.717000px;}
.y135{bottom:970.840500px;}
.y17e{bottom:976.105500px;}
.y96{bottom:977.524500px;}
.yed{bottom:982.101000px;}
.y4d{bottom:982.581000px;}
.y6f{bottom:982.938000px;}
.y159{bottom:984.994500px;}
.y10f{bottom:985.561500px;}
.ybe{bottom:986.436000px;}
.y1aa{bottom:989.554500px;}
.y134{bottom:993.673500px;}
.y2c{bottom:997.326000px;}
.yec{bottom:1002.424500px;}
.y6e{bottom:1003.261500px;}
.y158{bottom:1005.318000px;}
.y10e{bottom:1005.885000px;}
.y3{bottom:1006.404000px;}
.ybd{bottom:1006.759500px;}
.y17d{bottom:1009.878000px;}
.y95{bottom:1010.365500px;}
.y133{bottom:1013.997000px;}
.y4c{bottom:1025.047500px;}
.y157{bottom:1025.641500px;}
.y10d{bottom:1026.210000px;}
.ybc{bottom:1027.083000px;}
.y17c{bottom:1030.201500px;}
.y2b{bottom:1031.098500px;}
.y6d{bottom:1032.558000px;}
.y132{bottom:1034.322000px;}
.yeb{bottom:1034.904000px;}
.yea{bottom:1037.332500px;}
.ye8{bottom:1041.378000px;}
.y94{bottom:1043.205000px;}
.y1a9{bottom:1043.652000px;}
.y6c{bottom:1043.782500px;}
.ye9{bottom:1045.468500px;}
.y155{bottom:1045.966500px;}
.y10c{bottom:1046.533500px;}
.ybb{bottom:1047.406500px;}
.y17b{bottom:1050.526500px;}
.y2{bottom:1051.870500px;}
.y131{bottom:1054.645500px;}
.y156{bottom:1057.528500px;}
.y1a8{bottom:1063.975500px;}
.y2a{bottom:1064.872500px;}
.y4b{bottom:1066.857000px;}
.yba{bottom:1069.735500px;}
.y1{bottom:1072.792500px;}
.y130{bottom:1074.969000px;}
.y91{bottom:1075.801500px;}
.ye7{bottom:1077.424500px;}
.yb9{bottom:1081.453500px;}
.y93{bottom:1082.925000px;}
.y154{bottom:1083.208500px;}
.y153{bottom:1083.939000px;}
.y17a{bottom:1084.299000px;}
.y4a{bottom:1084.515000px;}
.y49{bottom:1087.180500px;}
.y90{bottom:1094.149500px;}
.ye6{bottom:1097.748000px;}
.y29{bottom:1101.634500px;}
.y6b{bottom:1101.861000px;}
.y152{bottom:1102.530000px;}
.y179{bottom:1104.622500px;}
.y92{bottom:1105.219500px;}
.y48{bottom:1107.504000px;}
.y12f{bottom:1111.497000px;}
.y6a{bottom:1113.948000px;}
.ye5{bottom:1118.073000px;}
.ye4{bottom:1135.942500px;}
.y28{bottom:1138.396500px;}
.hc{height:35.865450px;}
.h6{height:37.307775px;}
.h4{height:41.842920px;}
.hb{height:44.473046px;}
.h5{height:44.831700px;}
.h13{height:45.425492px;}
.h22{height:46.527450px;}
.h26{height:46.865494px;}
.h8{height:49.090950px;}
.h9{height:50.498765px;}
.h3{height:51.216077px;}
.h1e{height:54.867450px;}
.h24{height:56.211450px;}
.h2f{height:58.906950px;}
.hf{height:59.613450px;}
.he{height:59.619450px;}
.h14{height:59.752950px;}
.h7{height:60.598349px;}
.h2c{height:62.889450px;}
.h11{height:62.895450px;}
.h2e{height:64.189046px;}
.h2d{height:64.195046px;}
.h1b{height:65.272950px;}
.h25{height:74.986950px;}
.h2{height:77.366008px;}
.h28{height:90.721046px;}
.h29{height:90.727046px;}
.h1d{height:91.732950px;}
.h15{height:93.370950px;}
.h16{height:93.988950px;}
.h12{height:94.045046px;}
.hd{height:94.309046px;}
.h21{height:96.703046px;}
.h27{height:100.551450px;}
.h1c{height:102.679046px;}
.h1a{height:109.833450px;}
.ha{height:112.005450px;}
.h1f{height:112.243046px;}
.h23{height:112.885046px;}
.h10{height:127.255046px;}
.h17{height:130.177046px;}
.h18{height:138.268950px;}
.h2a{height:138.553046px;}
.h2b{height:141.475046px;}
.h20{height:157.141046px;}
.h19{height:175.075046px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:106.086000px;}
.x9{left:108.000000px;}
.xbc{left:110.073000px;}
.x32{left:117.045000px;}
.x12{left:119.818500px;}
.x15{left:124.528500px;}
.xa5{left:130.585500px;}
.xc{left:133.404000px;}
.x38{left:138.190500px;}
.x1a{left:140.137500px;}
.xdc{left:141.636000px;}
.xc6{left:144.313500px;}
.x39{left:146.101500px;}
.x7{left:148.909500px;}
.x3a{left:152.593500px;}
.x49{left:154.029000px;}
.x3b{left:160.263000px;}
.xd1{left:165.649500px;}
.xac{left:170.202000px;}
.x6{left:171.325500px;}
.x5e{left:175.900500px;}
.xa6{left:177.397500px;}
.xa3{left:180.819000px;}
.xb{left:184.707000px;}
.xa7{left:185.857500px;}
.x1e{left:187.422000px;}
.xc1{left:188.517000px;}
.x4a{left:191.322000px;}
.x8f{left:193.713000px;}
.x75{left:196.878000px;}
.x9d{left:199.533000px;}
.xad{left:201.384000px;}
.x36{left:204.090000px;}
.xd8{left:205.090500px;}
.x1f{left:208.054500px;}
.x98{left:211.344000px;}
.x37{left:217.825500px;}
.xa4{left:219.948000px;}
.x16{left:223.284000px;}
.xa{left:225.274500px;}
.x34{left:230.715000px;}
.xd7{left:233.314500px;}
.x90{left:238.549500px;}
.x78{left:240.874500px;}
.x58{left:242.064000px;}
.x50{left:244.677000px;}
.x91{left:246.229500px;}
.x35{left:247.668000px;}
.x9e{left:252.904500px;}
.x61{left:255.933000px;}
.xb6{left:258.288000px;}
.x85{left:261.069000px;}
.xbb{left:262.686000px;}
.xbe{left:268.072500px;}
.x59{left:269.421000px;}
.xcc{left:271.179000px;}
.x1{left:274.990500px;}
.xd2{left:282.801000px;}
.xcd{left:284.278500px;}
.x2{left:285.774000px;}
.x9f{left:289.722000px;}
.x4b{left:292.639500px;}
.x77{left:294.987000px;}
.xa0{left:298.068000px;}
.x26{left:300.486000px;}
.x79{left:303.904500px;}
.xa1{left:305.746500px;}
.x4c{left:307.086000px;}
.x71{left:309.571500px;}
.x72{left:311.388000px;}
.x2b{left:315.192000px;}
.xaf{left:317.895000px;}
.xd0{left:321.402000px;}
.xc4{left:325.458000px;}
.x99{left:329.319000px;}
.x24{left:331.134000px;}
.x2c{left:337.482000px;}
.x9a{left:346.599000px;}
.x51{left:347.974500px;}
.x92{left:355.315500px;}
.xbf{left:358.441500px;}
.x7a{left:359.598000px;}
.x11{left:365.631000px;}
.x5c{left:367.542000px;}
.x93{left:370.498500px;}
.xbd{left:372.606000px;}
.x3{left:375.274500px;}
.x52{left:377.182500px;}
.xe{left:381.465000px;}
.xaa{left:383.011500px;}
.x94{left:384.753000px;}
.x4{left:387.661500px;}
.xa2{left:391.353000px;}
.xb0{left:396.844500px;}
.x95{left:397.971000px;}
.x4f{left:401.106000px;}
.xb1{left:402.754500px;}
.xca{left:407.050500px;}
.x1b{left:409.291500px;}
.x8{left:411.061500px;}
.x5{left:413.812500px;}
.xce{left:414.820500px;}
.x33{left:416.703000px;}
.x48{left:419.439000px;}
.x82{left:423.807000px;}
.xc2{left:428.883000px;}
.x17{left:433.521000px;}
.xf{left:436.993500px;}
.x83{left:438.988500px;}
.x5d{left:441.210000px;}
.x10{left:442.366500px;}
.x73{left:445.077000px;}
.x25{left:448.461000px;}
.xc3{left:450.114000px;}
.x84{left:453.243000px;}
.x18{left:456.340500px;}
.x74{left:459.904500px;}
.xc0{left:460.908000px;}
.x62{left:467.515500px;}
.x63{left:479.109000px;}
.xab{left:482.911500px;}
.xc5{left:485.160000px;}
.xd3{left:488.952000px;}
.x7f{left:492.081000px;}
.x20{left:493.378500px;}
.x86{left:497.218500px;}
.xd4{left:498.726000px;}
.x27{left:502.917000px;}
.x80{left:504.903000px;}
.x21{left:508.219500px;}
.x3c{left:509.565000px;}
.xb8{left:511.441500px;}
.x64{left:513.991500px;}
.x53{left:517.197000px;}
.x28{left:518.278500px;}
.xd5{left:521.377500px;}
.x3d{left:522.438000px;}
.xc9{left:526.176000px;}
.x55{left:531.510000px;}
.xd6{left:533.020500px;}
.x65{left:537.628500px;}
.xa8{left:538.986000px;}
.x3e{left:542.415000px;}
.x54{left:544.638000px;}
.x81{left:547.381500px;}
.x7b{left:550.873500px;}
.x3f{left:554.458500px;}
.x96{left:555.579000px;}
.x56{left:560.037000px;}
.xd9{left:561.957000px;}
.x97{left:563.416500px;}
.x2d{left:568.974000px;}
.x40{left:571.339500px;}
.xb7{left:572.661000px;}
.xa9{left:574.359000px;}
.x87{left:577.297500px;}
.xb2{left:581.716500px;}
.x41{left:582.886500px;}
.x88{left:584.569500px;}
.x9b{left:586.185000px;}
.x2e{left:587.235000px;}
.x7d{left:591.378000px;}
.x89{left:592.915500px;}
.xcf{left:594.109500px;}
.x66{left:598.713000px;}
.x9c{left:602.607000px;}
.x7e{left:605.215500px;}
.x67{left:608.485500px;}
.x68{left:614.721000px;}
.x13{left:615.801000px;}
.x1c{left:617.188500px;}
.xb3{left:619.999500px;}
.x69{left:622.392000px;}
.x8a{left:629.278500px;}
.xae{left:630.342000px;}
.xb4{left:633.138000px;}
.xcb{left:634.674000px;}
.x8b{left:637.624500px;}
.xb5{left:639.375000px;}
.x22{left:642.054000px;}
.xda{left:643.141500px;}
.x6a{left:650.193000px;}
.x4d{left:653.334000px;}
.x14{left:657.250500px;}
.xdb{left:658.984500px;}
.x42{left:662.173500px;}
.x8c{left:665.836500px;}
.x43{left:668.082000px;}
.x6b{left:670.774500px;}
.x8d{left:674.182500px;}
.x6c{left:677.011500px;}
.x19{left:679.185000px;}
.x1d{left:681.318000px;}
.x8e{left:682.363500px;}
.x6d{left:686.362500px;}
.x6e{left:692.599500px;}
.x44{left:697.960500px;}
.xb9{left:700.597500px;}
.x7c{left:709.333500px;}
.x4e{left:715.134000px;}
.x2f{left:716.785500px;}
.x5a{left:721.113000px;}
.x29{left:724.023000px;}
.xba{left:727.893000px;}
.x45{left:731.581500px;}
.xc7{left:733.957500px;}
.x30{left:735.822000px;}
.x2a{left:739.384500px;}
.x5b{left:741.496500px;}
.x76{left:747.229500px;}
.x31{left:752.308500px;}
.x5f{left:760.095000px;}
.x6f{left:766.684500px;}
.x46{left:768.790500px;}
.xc8{left:770.358000px;}
.x70{left:772.921500px;}
.x60{left:773.925000px;}
.x23{left:776.610000px;}
.x47{left:780.337500px;}
.x57{left:782.551500px;}
@media print{
.v2c{vertical-align:-55.792000pt;}
.v7{vertical-align:-47.146667pt;}
.v14{vertical-align:-44.064000pt;}
.v17{vertical-align:-32.752000pt;}
.v16{vertical-align:-24.026667pt;}
.v4{vertical-align:-23.024000pt;}
.v1c{vertical-align:-21.114667pt;}
.va{vertical-align:-17.626667pt;}
.v21{vertical-align:-14.544000pt;}
.v26{vertical-align:-12.608000pt;}
.v1{vertical-align:-8.725333pt;}
.v1f{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v22{vertical-align:5.658667pt;}
.vb{vertical-align:9.477333pt;}
.v1b{vertical-align:10.986667pt;}
.v24{vertical-align:12.101333pt;}
.v13{vertical-align:14.384000pt;}
.vf{vertical-align:16.805333pt;}
.v23{vertical-align:18.085333pt;}
.v5{vertical-align:21.114667pt;}
.v25{vertical-align:23.018667pt;}
.v8{vertical-align:24.026667pt;}
.v1d{vertical-align:25.866667pt;}
.v1a{vertical-align:28.426667pt;}
.v11{vertical-align:30.432000pt;}
.v15{vertical-align:33.029333pt;}
.v27{vertical-align:36.384000pt;}
.v19{vertical-align:37.904000pt;}
.vc{vertical-align:39.360000pt;}
.v28{vertical-align:41.109333pt;}
.v3{vertical-align:44.298667pt;}
.v20{vertical-align:46.426667pt;}
.v29{vertical-align:51.738667pt;}
.v9{vertical-align:56.762667pt;}
.v18{vertical-align:60.746667pt;}
.v12{vertical-align:65.749333pt;}
.v2{vertical-align:67.680000pt;}
.v6{vertical-align:73.584000pt;}
.vd{vertical-align:76.181333pt;}
.ve{vertical-align:79.269333pt;}
.v2a{vertical-align:83.626667pt;}
.v2b{vertical-align:86.224000pt;}
.v1e{vertical-align:100.149333pt;}
.v10{vertical-align:116.090667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.000462pt;}
.lsf{letter-spacing:0.000749pt;}
.ls1e{letter-spacing:0.000920pt;}
.ls64{letter-spacing:0.001156pt;}
.ls60{letter-spacing:0.001377pt;}
.ls34{letter-spacing:0.001425pt;}
.ls4a{letter-spacing:0.001433pt;}
.ls8f{letter-spacing:0.001458pt;}
.ls56{letter-spacing:0.001910pt;}
.ls4e{letter-spacing:0.001916pt;}
.ls7e{letter-spacing:0.002384pt;}
.ls1b{letter-spacing:0.002397pt;}
.ls3{letter-spacing:0.002400pt;}
.ls93{letter-spacing:0.002557pt;}
.ls24{letter-spacing:0.003854pt;}
.ls8e{letter-spacing:0.003856pt;}
.ls5f{letter-spacing:0.004208pt;}
.ls36{letter-spacing:0.004321pt;}
.ls5a{letter-spacing:0.006710pt;}
.ls42{letter-spacing:0.006759pt;}
.ls8a{letter-spacing:0.009518pt;}
.ls9b{letter-spacing:0.010070pt;}
.ls6a{letter-spacing:0.011022pt;}
.ls40{letter-spacing:0.013338pt;}
.ls79{letter-spacing:0.019160pt;}
.ls96{letter-spacing:0.027950pt;}
.ls3c{letter-spacing:0.028979pt;}
.ls22{letter-spacing:0.290909pt;}
.ls50{letter-spacing:1.530259pt;}
.ls68{letter-spacing:1.615008pt;}
.ls6b{letter-spacing:1.629092pt;}
.ls58{letter-spacing:1.785302pt;}
.ls7c{letter-spacing:2.088215pt;}
.ls27{letter-spacing:2.094547pt;}
.ls37{letter-spacing:2.560002pt;}
.ls25{letter-spacing:2.651199pt;}
.ls51{letter-spacing:2.651985pt;}
.ls57{letter-spacing:2.653166pt;}
.ls3f{letter-spacing:2.653258pt;}
.ls41{letter-spacing:2.653383pt;}
.ls11{letter-spacing:2.654249pt;}
.ls2{letter-spacing:2.654275pt;}
.ls87{letter-spacing:2.654692pt;}
.ls76{letter-spacing:2.655321pt;}
.ls65{letter-spacing:2.656473pt;}
.ls1f{letter-spacing:2.656532pt;}
.ls55{letter-spacing:2.656667pt;}
.ls1c{letter-spacing:2.657521pt;}
.ls52{letter-spacing:2.658499pt;}
.ls10{letter-spacing:2.659608pt;}
.ls33{letter-spacing:2.660100pt;}
.ls77{letter-spacing:2.660654pt;}
.ls86{letter-spacing:2.660695pt;}
.ls48{letter-spacing:2.662000pt;}
.ls17{letter-spacing:2.676366pt;}
.ls73{letter-spacing:3.316366pt;}
.ls70{letter-spacing:3.374548pt;}
.ls71{letter-spacing:3.791684pt;}
.ls7a{letter-spacing:4.178961pt;}
.ls83{letter-spacing:4.184295pt;}
.ls5b{letter-spacing:4.189094pt;}
.ls47{letter-spacing:4.289433pt;}
.ls14{letter-spacing:4.319804pt;}
.ls84{letter-spacing:4.726748pt;}
.lsb{letter-spacing:4.770913pt;}
.ls7f{letter-spacing:5.316695pt;}
.ls15{letter-spacing:5.760005pt;}
.ls18{letter-spacing:6.225460pt;}
.ls16{letter-spacing:6.283642pt;}
.ls7b{letter-spacing:6.375121pt;}
.ls46{letter-spacing:6.388172pt;}
.ls9f{letter-spacing:6.574551pt;}
.ls99{letter-spacing:7.185728pt;}
.ls97{letter-spacing:7.563189pt;}
.ls26{letter-spacing:8.029098pt;}
.ls23{letter-spacing:8.087279pt;}
.ls3d{letter-spacing:9.031925pt;}
.ls0{letter-spacing:9.658190pt;}
.ls3e{letter-spacing:9.693494pt;}
.ls80{letter-spacing:9.697788pt;}
.ls9{letter-spacing:9.716372pt;}
.ls9c{letter-spacing:12.311744pt;}
.ls94{letter-spacing:12.350275pt;}
.ls4d{letter-spacing:12.356263pt;}
.ls38{letter-spacing:12.357300pt;}
.ls54{letter-spacing:12.693400pt;}
.ls59{letter-spacing:12.709338pt;}
.ls2c{letter-spacing:12.916374pt;}
.ls53{letter-spacing:12.974556pt;}
.ls4b{letter-spacing:13.440011pt;}
.ls6c{letter-spacing:14.545467pt;}
.ls2b{letter-spacing:15.584532pt;}
.ls28{letter-spacing:15.668958pt;}
.lsd{letter-spacing:16.116377pt;}
.ls90{letter-spacing:16.143100pt;}
.ls92{letter-spacing:16.159477pt;}
.ls6{letter-spacing:16.174559pt;}
.ls6d{letter-spacing:16.407286pt;}
.ls67{letter-spacing:17.663684pt;}
.ls69{letter-spacing:17.745469pt;}
.ls8c{letter-spacing:17.978197pt;}
.ls32{letter-spacing:18.164336pt;}
.ls44{letter-spacing:18.560015pt;}
.ls88{letter-spacing:18.676379pt;}
.ls91{letter-spacing:18.813258pt;}
.ls78{letter-spacing:18.815321pt;}
.ls35{letter-spacing:18.816532pt;}
.ls75{letter-spacing:18.967289pt;}
.ls6e{letter-spacing:19.141834pt;}
.ls63{letter-spacing:19.200016pt;}
.ls49{letter-spacing:19.305637pt;}
.ls89{letter-spacing:19.316380pt;}
.ls1{letter-spacing:19.374562pt;}
.ls30{letter-spacing:19.432743pt;}
.ls6f{letter-spacing:19.549107pt;}
.ls8b{letter-spacing:19.723653pt;}
.ls4c{letter-spacing:20.024855pt;}
.ls66{letter-spacing:20.130926pt;}
.ls31{letter-spacing:20.363653pt;}
.ls45{letter-spacing:20.421835pt;}
.ls29{letter-spacing:21.469109pt;}
.ls81{letter-spacing:21.527291pt;}
.lsa1{letter-spacing:21.585473pt;}
.ls82{letter-spacing:21.876382pt;}
.ls3a{letter-spacing:21.894678pt;}
.ls98{letter-spacing:22.009541pt;}
.ls4{letter-spacing:22.046249pt;}
.ls2e{letter-spacing:22.048532pt;}
.ls43{letter-spacing:22.053866pt;}
.ls4f{letter-spacing:22.055832pt;}
.ls7d{letter-spacing:22.114400pt;}
.ls5{letter-spacing:22.400019pt;}
.lse{letter-spacing:22.458201pt;}
.ls5e{letter-spacing:22.749110pt;}
.ls62{letter-spacing:22.865474pt;}
.ls19{letter-spacing:23.609490pt;}
.ls1a{letter-spacing:23.614824pt;}
.ls21{letter-spacing:23.970929pt;}
.ls7{letter-spacing:24.145475pt;}
.lsc{letter-spacing:24.261838pt;}
.ls2f{letter-spacing:25.658203pt;}
.ls9d{letter-spacing:25.774567pt;}
.ls13{letter-spacing:25.832749pt;}
.ls9a{letter-spacing:26.538920pt;}
.ls2d{letter-spacing:26.763659pt;}
.ls5d{letter-spacing:26.880022pt;}
.ls95{letter-spacing:26.960522pt;}
.ls20{letter-spacing:27.461841pt;}
.ls2a{letter-spacing:27.520023pt;}
.ls1d{letter-spacing:27.869114pt;}
.ls12{letter-spacing:29.090933pt;}
.lsa0{letter-spacing:32.290936pt;}
.ls72{letter-spacing:32.349118pt;}
.ls8{letter-spacing:36.158950pt;}
.ls74{letter-spacing:38.695733pt;}
.ls85{letter-spacing:49.320295pt;}
.ls5c{letter-spacing:58.181867pt;}
.ls39{letter-spacing:59.165494pt;}
.ls9e{letter-spacing:67.840057pt;}
.ls3b{letter-spacing:82.020811pt;}
.ls8d{letter-spacing:217.618881pt;}
.ws22{word-spacing:-58.181867pt;}
.ws74{word-spacing:-47.616040pt;}
.ws29{word-spacing:-42.066082pt;}
.wsa1{word-spacing:-42.065490pt;}
.ws21{word-spacing:-42.011881pt;}
.ws14{word-spacing:-42.007308pt;}
.ws1f{word-spacing:-37.899668pt;}
.ws42{word-spacing:-32.337481pt;}
.ws37{word-spacing:-29.736752pt;}
.ws24{word-spacing:-29.521250pt;}
.ws48{word-spacing:-29.090933pt;}
.wsaf{word-spacing:-29.079297pt;}
.ws80{word-spacing:-28.241478pt;}
.ws1e{word-spacing:-28.183296pt;}
.ws5e{word-spacing:-21.783291pt;}
.ws3f{word-spacing:-21.725109pt;}
.ws90{word-spacing:-21.666927pt;}
.wsae{word-spacing:-19.374562pt;}
.ws57{word-spacing:-19.223289pt;}
.ws61{word-spacing:-16.826361pt;}
.ws72{word-spacing:-16.162923pt;}
.ws5f{word-spacing:-15.650922pt;}
.ws2a{word-spacing:-15.511784pt;}
.ws84{word-spacing:-15.325104pt;}
.ws94{word-spacing:-14.487285pt;}
.ws12{word-spacing:-14.346200pt;}
.ws27{word-spacing:-14.312739pt;}
.ws32{word-spacing:-13.323647pt;}
.wsa9{word-spacing:-13.265466pt;}
.wsad{word-spacing:-13.149102pt;}
.ws15{word-spacing:-12.916374pt;}
.wsbd{word-spacing:-12.858193pt;}
.ws4b{word-spacing:-12.741829pt;}
.wsb9{word-spacing:-12.683647pt;}
.wsac{word-spacing:-12.635664pt;}
.wsc3{word-spacing:-12.567283pt;}
.ws54{word-spacing:-12.450919pt;}
.ws8d{word-spacing:-12.392738pt;}
.ws9a{word-spacing:-12.218192pt;}
.wsa0{word-spacing:-12.160010pt;}
.ws4{word-spacing:-12.114522pt;}
.ws1d{word-spacing:-11.955200pt;}
.wsbe{word-spacing:-11.927283pt;}
.ws2e{word-spacing:-11.869101pt;}
.ws6f{word-spacing:-11.816737pt;}
.ws58{word-spacing:-11.810919pt;}
.wsaa{word-spacing:-11.642192pt;}
.ws33{word-spacing:-11.287282pt;}
.ws67{word-spacing:-11.229100pt;}
.ws92{word-spacing:-11.170918pt;}
.ws46{word-spacing:-10.996373pt;}
.ws7f{word-spacing:-10.938191pt;}
.ws7d{word-spacing:-10.880009pt;}
.wsb8{word-spacing:-10.763645pt;}
.wsc4{word-spacing:-10.647282pt;}
.ws71{word-spacing:-10.589100pt;}
.ws49{word-spacing:-10.530918pt;}
.ws2{word-spacing:-10.431311pt;}
.ws89{word-spacing:-10.414554pt;}
.ws1{word-spacing:-10.367549pt;}
.ws68{word-spacing:-10.245827pt;}
.wsbf{word-spacing:-10.240009pt;}
.ws34{word-spacing:-10.181827pt;}
.ws64{word-spacing:-10.123645pt;}
.ws4a{word-spacing:-10.065463pt;}
.ws5c{word-spacing:-10.007281pt;}
.ws26{word-spacing:-9.949099pt;}
.ws45{word-spacing:-9.890917pt;}
.ws66{word-spacing:-9.832735pt;}
.ws5d{word-spacing:-9.774554pt;}
.ws13{word-spacing:-9.716372pt;}
.ws7c{word-spacing:-9.664008pt;}
.ws23{word-spacing:-9.658190pt;}
.ws1b{word-spacing:-9.600008pt;}
.ws47{word-spacing:-9.541826pt;}
.ws31{word-spacing:-9.483644pt;}
.ws4d{word-spacing:-9.425462pt;}
.ws1c{word-spacing:-9.367281pt;}
.ws35{word-spacing:-9.314917pt;}
.ws44{word-spacing:-9.309099pt;}
.ws43{word-spacing:-9.250917pt;}
.wsd{word-spacing:-9.245293pt;}
.wsc0{word-spacing:-9.192735pt;}
.ws6d{word-spacing:-9.140371pt;}
.wsb5{word-spacing:-9.134553pt;}
.ws6{word-spacing:-9.085891pt;}
.ws8a{word-spacing:-9.082189pt;}
.wsc9{word-spacing:-9.076371pt;}
.wsb1{word-spacing:-9.024008pt;}
.wscb{word-spacing:-9.018189pt;}
.ws52{word-spacing:-8.965826pt;}
.ws8e{word-spacing:-8.960007pt;}
.ws1a{word-spacing:-8.907644pt;}
.ws3a{word-spacing:-8.901826pt;}
.ws8{word-spacing:-8.873356pt;}
.wsf{word-spacing:-8.820222pt;}
.ws2f{word-spacing:-8.785462pt;}
.wsb6{word-spacing:-8.733098pt;}
.ws4f{word-spacing:-8.727280pt;}
.wsa2{word-spacing:-8.674916pt;}
.ws59{word-spacing:-8.669098pt;}
.wsa8{word-spacing:-8.616734pt;}
.ws8c{word-spacing:-8.610916pt;}
.ws9{word-spacing:-8.607686pt;}
.ws3{word-spacing:-8.554553pt;}
.ws91{word-spacing:-8.552734pt;}
.wsca{word-spacing:-8.442189pt;}
.ws25{word-spacing:-8.436371pt;}
.ws81{word-spacing:-8.267643pt;}
.ws7{word-spacing:-8.235749pt;}
.ws30{word-spacing:-8.151280pt;}
.wsba{word-spacing:-8.145461pt;}
.ws5a{word-spacing:-8.034916pt;}
.ws36{word-spacing:-8.029098pt;}
.ws8f{word-spacing:-7.976734pt;}
.wsbc{word-spacing:-7.860370pt;}
.ws18{word-spacing:-7.854552pt;}
.ws38{word-spacing:-7.738188pt;}
.ws4e{word-spacing:-7.680006pt;}
.ws9e{word-spacing:-7.621825pt;}
.ws83{word-spacing:-7.563643pt;}
.ws11{word-spacing:-7.541340pt;}
.wscc{word-spacing:-7.511279pt;}
.ws78{word-spacing:-7.505461pt;}
.wse{word-spacing:-7.491875pt;}
.ws16{word-spacing:-7.447279pt;}
.ws19{word-spacing:-7.278552pt;}
.ws87{word-spacing:-7.214551pt;}
.wsbb{word-spacing:-7.156370pt;}
.ws5{word-spacing:-7.018984pt;}
.ws85{word-spacing:-6.987642pt;}
.ws9f{word-spacing:-6.981824pt;}
.ws79{word-spacing:-6.929460pt;}
.ws99{word-spacing:-6.923642pt;}
.wsa7{word-spacing:-6.865460pt;}
.wsa6{word-spacing:-6.807278pt;}
.ws39{word-spacing:-6.749097pt;}
.ws17{word-spacing:-6.574551pt;}
.wsc{word-spacing:-6.535466pt;}
.ws7b{word-spacing:-6.504733pt;}
.ws82{word-spacing:-6.462272pt;}
.wsa3{word-spacing:-6.458187pt;}
.ws77{word-spacing:-6.446551pt;}
.ws65{word-spacing:-6.289460pt;}
.ws6a{word-spacing:-6.225460pt;}
.ws6c{word-spacing:-6.167278pt;}
.wsa4{word-spacing:-6.056732pt;}
.ws6e{word-spacing:-5.998550pt;}
.wsb7{word-spacing:-5.992732pt;}
.ws9b{word-spacing:-5.876369pt;}
.wsb{word-spacing:-5.844725pt;}
.wsb0{word-spacing:-5.765823pt;}
.wsc5{word-spacing:-5.760005pt;}
.ws51{word-spacing:-5.748368pt;}
.ws10{word-spacing:-5.743771pt;}
.ws76{word-spacing:-5.690187pt;}
.ws8b{word-spacing:-5.649459pt;}
.wsc1{word-spacing:-5.410914pt;}
.ws63{word-spacing:-5.352732pt;}
.ws9c{word-spacing:-5.178186pt;}
.wsc6{word-spacing:-4.945459pt;}
.wsa5{word-spacing:-4.544004pt;}
.ws70{word-spacing:-4.421822pt;}
.ws41{word-spacing:-4.363640pt;}
.wsb3{word-spacing:-4.130913pt;}
.ws3b{word-spacing:-4.078549pt;}
.wsa{word-spacing:-4.038174pt;}
.ws4c{word-spacing:-4.014549pt;}
.ws75{word-spacing:-3.828367pt;}
.wsc2{word-spacing:-3.374548pt;}
.wsb2{word-spacing:-3.316366pt;}
.ws3e{word-spacing:-3.246946pt;}
.ws56{word-spacing:-3.246548pt;}
.wsc7{word-spacing:-3.200003pt;}
.ws73{word-spacing:-2.955639pt;}
.ws96{word-spacing:-2.792730pt;}
.ws9d{word-spacing:-2.792727pt;}
.wsb4{word-spacing:-2.501820pt;}
.wsc8{word-spacing:-1.867638pt;}
.ws5b{word-spacing:-0.930910pt;}
.ws3c{word-spacing:-0.058182pt;}
.ws2d{word-spacing:-0.046545pt;}
.ws28{word-spacing:-0.014778pt;}
.ws55{word-spacing:-0.014686pt;}
.ws20{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.009349pt;}
.ws40{word-spacing:0.011636pt;}
.ws60{word-spacing:0.302546pt;}
.ws7a{word-spacing:0.654955pt;}
.ws50{word-spacing:1.989820pt;}
.ws7e{word-spacing:2.048002pt;}
.ws86{word-spacing:3.840003pt;}
.ws97{word-spacing:4.654549pt;}
.ws6b{word-spacing:7.854552pt;}
.ws53{word-spacing:9.447165pt;}
.ws3d{word-spacing:16.128013pt;}
.ws88{word-spacing:16.130776pt;}
.ws98{word-spacing:22.050927pt;}
.ws93{word-spacing:22.341837pt;}
.ws95{word-spacing:23.796383pt;}
.ws0{word-spacing:27.636455pt;}
.ws69{word-spacing:29.149115pt;}
.ws2b{word-spacing:29.998570pt;}
.ws62{word-spacing:32.223968pt;}
.wsab{word-spacing:88.180437pt;}
._1c{margin-left:-22.632746pt;}
._17{margin-left:-15.380803pt;}
._2c{margin-left:-12.916374pt;}
._d{margin-left:-9.716372pt;}
._21{margin-left:-8.667353pt;}
._1{margin-left:-7.253422pt;}
._1b{margin-left:-6.307549pt;}
._2{margin-left:-5.228407pt;}
._11{margin-left:-3.489166pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.055895pt;}
._3{width:1.721549pt;}
._14{width:3.025457pt;}
._16{width:4.014549pt;}
._2d{width:5.275259pt;}
._30{width:9.420545pt;}
._31{width:10.419472pt;}
._20{width:13.670993pt;}
._1f{width:15.361758pt;}
._c{width:16.840212pt;}
._e{width:18.947851pt;}
._a{width:20.310708pt;}
._6{width:21.795489pt;}
._2f{width:22.686010pt;}
._5{width:23.693883pt;}
._29{width:24.655058pt;}
._13{width:25.559384pt;}
._8{width:26.566933pt;}
._32{width:27.535007pt;}
._15{width:28.478331pt;}
._10{width:29.730934pt;}
._2e{width:30.869748pt;}
._18{width:32.291142pt;}
._28{width:33.745483pt;}
._1d{width:34.792756pt;}
._f{width:36.618551pt;}
._7{width:38.999427pt;}
._2b{width:41.361424pt;}
._19{width:44.214746pt;}
._b{width:58.488723pt;}
._2a{width:61.929665pt;}
._1e{width:66.069167pt;}
._12{width:71.731200pt;}
._9{width:86.077200pt;}
._25{width:93.032805pt;}
._1a{width:126.114813pt;}
._23{width:294.646567pt;}
._22{width:321.176786pt;}
._27{width:408.213498pt;}
._26{width:441.060600pt;}
._24{width:619.178567pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.ye3{bottom:88.694667pt;}
.y26{bottom:90.022667pt;}
.yb8{bottom:96.000000pt;}
.ye2{bottom:98.672000pt;}
.y24{bottom:106.074667pt;}
.y1a7{bottom:109.160000pt;}
.yb7{bottom:114.065333pt;}
.y25{bottom:119.010667pt;}
.y1a6{bottom:127.225333pt;}
.yb6{bottom:132.130667pt;}
.ye1{bottom:137.360000pt;}
.y8f{bottom:138.828000pt;}
.y178{bottom:143.422667pt;}
.y1a5{bottom:145.290667pt;}
.y23{bottom:145.868000pt;}
.yb5{bottom:150.197333pt;}
.ye0{bottom:155.425333pt;}
.y177{bottom:161.488000pt;}
.y10b{bottom:161.622667pt;}
.y1a4{bottom:163.356000pt;}
.y12e{bottom:168.262667pt;}
.y8e{bottom:171.505333pt;}
.y22{bottom:173.328000pt;}
.yb4{bottom:179.388000pt;}
.y10a{bottom:179.688000pt;}
.y1a3{bottom:181.421333pt;}
.ydf{bottom:186.056000pt;}
.y176{bottom:191.244000pt;}
.y69{bottom:191.777333pt;}
.y12d{bottom:197.312000pt;}
.yb3{bottom:197.453333pt;}
.y151{bottom:197.770667pt;}
.y8d{bottom:205.669333pt;}
.y109{bottom:209.497333pt;}
.y68{bottom:209.842667pt;}
.y1a2{bottom:211.442667pt;}
.y21{bottom:211.814667pt;}
.y47{bottom:215.156000pt;}
.y12c{bottom:215.377333pt;}
.y150{bottom:215.836000pt;}
.yde{bottom:216.686667pt;}
.y175{bottom:220.998667pt;}
.yb2{bottom:227.142667pt;}
.y107{bottom:227.562667pt;}
.y67{bottom:227.908000pt;}
.y1a1{bottom:229.508000pt;}
.y108{bottom:232.841333pt;}
.y46{bottom:233.221333pt;}
.y12b{bottom:233.442667pt;}
.y14f{bottom:233.901333pt;}
.ydd{bottom:234.752000pt;}
.y8c{bottom:235.690667pt;}
.y174{bottom:239.065333pt;}
.y20{bottom:244.284000pt;}
.yb1{bottom:245.208000pt;}
.y14e{bottom:251.968000pt;}
.y8a{bottom:253.756000pt;}
.y106{bottom:257.053333pt;}
.y1a0{bottom:259.529333pt;}
.y66{bottom:260.377333pt;}
.ydc{bottom:262.210667pt;}
.y12a{bottom:263.074667pt;}
.y8b{bottom:264.772000pt;}
.y45{bottom:265.690667pt;}
.y173{bottom:268.422667pt;}
.yb0{bottom:274.400000pt;}
.y19f{bottom:277.594667pt;}
.y129{bottom:281.140000pt;}
.y14d{bottom:281.476000pt;}
.y89{bottom:283.777333pt;}
.y172{bottom:286.488000pt;}
.y105{bottom:286.544000pt;}
.y1f{bottom:289.650667pt;}
.y128{bottom:299.206667pt;}
.y14c{bottom:299.541333pt;}
.ydb{bottom:300.840000pt;}
.y88{bottom:301.842667pt;}
.yaf{bottom:303.590667pt;}
.y171{bottom:304.553333pt;}
.y104{bottom:304.609333pt;}
.y65{bottom:306.206667pt;}
.y19e{bottom:307.614667pt;}
.y1e{bottom:307.716000pt;}
.y44{bottom:311.520000pt;}
.y14b{bottom:317.606667pt;}
.yda{bottom:318.905333pt;}
.y87{bottom:319.908000pt;}
.yae{bottom:321.656000pt;}
.y170{bottom:322.618667pt;}
.y64{bottom:324.272000pt;}
.y19d{bottom:325.681333pt;}
.y1d{bottom:325.782667pt;}
.y127{bottom:328.838667pt;}
.y103{bottom:334.101333pt;}
.y14a{bottom:335.672000pt;}
.yad{bottom:339.721333pt;}
.y16f{bottom:340.684000pt;}
.y43{bottom:341.541333pt;}
.y63{bottom:342.337333pt;}
.y19c{bottom:343.746667pt;}
.y1c{bottom:343.848000pt;}
.y126{bottom:346.904000pt;}
.yd9{bottom:347.220000pt;}
.y86{bottom:351.005333pt;}
.y16e{bottom:358.750667pt;}
.y42{bottom:359.606667pt;}
.y84{bottom:360.982667pt;}
.y19b{bottom:361.812000pt;}
.y1b{bottom:361.913333pt;}
.y102{bottom:363.592000pt;}
.y125{bottom:364.969333pt;}
.yd8{bottom:365.285333pt;}
.y149{bottom:368.141333pt;}
.y85{bottom:368.545333pt;}
.yac{bottom:369.410667pt;}
.y1b9{bottom:374.638667pt;}
.y62{bottom:376.344000pt;}
.y19a{bottom:379.877333pt;}
.y1a{bottom:379.978667pt;}
.y148{bottom:386.206667pt;}
.yab{bottom:387.476000pt;}
.y41{bottom:389.628000pt;}
.y16d{bottom:390.632000pt;}
.y101{bottom:393.082667pt;}
.y124{bottom:394.018667pt;}
.y61{bottom:394.409333pt;}
.yd7{bottom:394.624000pt;}
.y199{bottom:397.942667pt;}
.y19{bottom:398.044000pt;}
.y83{bottom:402.900000pt;}
.y147{bottom:404.272000pt;}
.y1b8{bottom:404.658667pt;}
.y40{bottom:407.693333pt;}
.y60{bottom:410.105333pt;}
.y5f{bottom:412.474667pt;}
.yd6{bottom:412.689333pt;}
.y198{bottom:416.009333pt;}
.yaa{bottom:417.165333pt;}
.y100{bottom:420.542667pt;}
.y146{bottom:422.337333pt;}
.y16c{bottom:422.512000pt;}
.y18{bottom:423.272000pt;}
.y3f{bottom:425.758667pt;}
.y123{bottom:427.176000pt;}
.y82{bottom:430.360000pt;}
.y197{bottom:434.074667pt;}
.y1b7{bottom:434.680000pt;}
.ya9{bottom:435.230667pt;}
.y145{bottom:440.404000pt;}
.y16b{bottom:440.578667pt;}
.yd5{bottom:442.028000pt;}
.y5e{bottom:442.496000pt;}
.y122{bottom:445.242667pt;}
.y196{bottom:452.140000pt;}
.y17{bottom:453.005333pt;}
.ya8{bottom:453.296000pt;}
.y3e{bottom:455.780000pt;}
.y16a{bottom:458.644000pt;}
.yff{bottom:459.392000pt;}
.yd4{bottom:460.093333pt;}
.y5d{bottom:460.561333pt;}
.y1b6{bottom:464.701333pt;}
.y121{bottom:467.452000pt;}
.y81{bottom:469.309333pt;}
.y195{bottom:470.205333pt;}
.y144{bottom:471.544000pt;}
.y169{bottom:476.709333pt;}
.ya7{bottom:482.488000pt;}
.y16{bottom:482.738667pt;}
.y1b5{bottom:482.766667pt;}
.y3d{bottom:483.238667pt;}
.y120{bottom:485.517333pt;}
.y80{bottom:487.374667pt;}
.y194{bottom:488.270667pt;}
.yd3{bottom:488.409333pt;}
.yfe{bottom:491.862667pt;}
.y5c{bottom:494.566667pt;}
.y168{bottom:494.774667pt;}
.ya6{bottom:500.553333pt;}
.y143{bottom:502.684000pt;}
.y193{bottom:506.337333pt;}
.yd2{bottom:506.474667pt;}
.y11f{bottom:507.728000pt;}
.y1b4{bottom:512.786667pt;}
.y167{bottom:512.840000pt;}
.y15{bottom:515.208000pt;}
.y7f{bottom:517.396000pt;}
.ya5{bottom:518.618667pt;}
.y142{bottom:520.749333pt;}
.y5b{bottom:522.026667pt;}
.y3c{bottom:522.189333pt;}
.y192{bottom:524.402667pt;}
.yd1{bottom:524.540000pt;}
.y11e{bottom:525.793333pt;}
.yfd{bottom:537.590667pt;}
.y141{bottom:538.814667pt;}
.y3b{bottom:540.254667pt;}
.y191{bottom:542.468000pt;}
.yd0{bottom:542.605333pt;}
.y1b3{bottom:542.808000pt;}
.y166{bottom:545.310667pt;}
.ya4{bottom:546.472000pt;}
.y7e{bottom:547.417333pt;}
.y11d{bottom:548.002667pt;}
.y14{bottom:555.086667pt;}
.yfc{bottom:555.657333pt;}
.ya3{bottom:555.948000pt;}
.y140{bottom:556.880000pt;}
.y3a{bottom:558.320000pt;}
.y190{bottom:560.533333pt;}
.ycf{bottom:560.670667pt;}
.y5a{bottom:560.976000pt;}
.y11c{bottom:566.069333pt;}
.y1b2{bottom:572.829333pt;}
.yfb{bottom:573.722667pt;}
.y39{bottom:576.385333pt;}
.y7d{bottom:577.437333pt;}
.y18f{bottom:578.598667pt;}
.yce{bottom:579.630667pt;}
.y13{bottom:582.694667pt;}
.y13f{bottom:585.620000pt;}
.ya2{bottom:587.629333pt;}
.y11b{bottom:588.278667pt;}
.ycd{bottom:589.608000pt;}
.y1b1{bottom:590.894667pt;}
.y59{bottom:590.997333pt;}
.y165{bottom:591.014667pt;}
.yfa{bottom:591.788000pt;}
.y38{bottom:594.450667pt;}
.y18e{bottom:596.665333pt;}
.y12{bottom:598.634667pt;}
.y13e{bottom:603.685333pt;}
.ya1{bottom:605.696000pt;}
.y11a{bottom:606.344000pt;}
.y7c{bottom:607.458667pt;}
.y58{bottom:609.062667pt;}
.y164{bottom:609.080000pt;}
.yf9{bottom:609.853333pt;}
.ycc{bottom:609.936000pt;}
.y37{bottom:612.517333pt;}
.y11{bottom:614.576000pt;}
.y18d{bottom:614.730667pt;}
.y1b0{bottom:620.914667pt;}
.ya0{bottom:623.761333pt;}
.y7b{bottom:625.524000pt;}
.y163{bottom:627.145333pt;}
.yf8{bottom:627.918667pt;}
.y119{bottom:628.554667pt;}
.y10{bottom:630.516000pt;}
.y18c{bottom:632.796000pt;}
.y13d{bottom:633.194667pt;}
.ycb{bottom:638.250667pt;}
.y36{bottom:638.477333pt;}
.y57{bottom:639.084000pt;}
.y7a{bottom:643.589333pt;}
.y162{bottom:645.210667pt;}
.yf7{bottom:645.985333pt;}
.yf{bottom:646.456000pt;}
.y118{bottom:646.620000pt;}
.y35{bottom:650.264000pt;}
.y18b{bottom:650.861333pt;}
.y1af{bottom:650.936000pt;}
.y9f{bottom:651.220000pt;}
.y13c{bottom:651.260000pt;}
.y56{bottom:654.780000pt;}
.y55{bottom:657.149333pt;}
.y79{bottom:661.654667pt;}
.ye{bottom:662.396000pt;}
.y161{bottom:663.276000pt;}
.y117{bottom:668.829333pt;}
.yca{bottom:668.881333pt;}
.y18a{bottom:668.926667pt;}
.yf6{bottom:675.476000pt;}
.yd{bottom:678.336000pt;}
.y78{bottom:679.720000pt;}
.y13b{bottom:680.768000pt;}
.y1ae{bottom:680.956000pt;}
.y189{bottom:686.993333pt;}
.y54{bottom:687.170667pt;}
.y34{bottom:687.797333pt;}
.y9e{bottom:690.014667pt;}
.y116{bottom:691.040000pt;}
.y160{bottom:692.633333pt;}
.yf5{bottom:693.541333pt;}
.yc{bottom:694.276000pt;}
.y77{bottom:697.786667pt;}
.y1ad{bottom:699.022667pt;}
.yc9{bottom:699.512000pt;}
.y188{bottom:705.058667pt;}
.y53{bottom:705.236000pt;}
.y9d{bottom:708.080000pt;}
.y13a{bottom:709.508000pt;}
.yb{bottom:710.217333pt;}
.y15f{bottom:710.700000pt;}
.yf4{bottom:711.606667pt;}
.y33{bottom:715.257333pt;}
.y76{bottom:715.852000pt;}
.y187{bottom:723.124000pt;}
.y52{bottom:723.301333pt;}
.y115{bottom:725.677333pt;}
.y9c{bottom:726.145333pt;}
.ya{bottom:726.157333pt;}
.yc8{bottom:728.850667pt;}
.y1ac{bottom:731.492000pt;}
.y186{bottom:741.189333pt;}
.yf3{bottom:741.416000pt;}
.y139{bottom:741.976000pt;}
.y9{bottom:742.097333pt;}
.y75{bottom:744.138667pt;}
.y9b{bottom:744.210667pt;}
.yc6{bottom:746.916000pt;}
.y15e{bottom:748.425333pt;}
.yc7{bottom:752.194667pt;}
.y51{bottom:753.322667pt;}
.y74{bottom:754.116000pt;}
.y32{bottom:754.208000pt;}
.y8{bottom:758.037333pt;}
.y114{bottom:758.146667pt;}
.y185{bottom:759.254667pt;}
.yf2{bottom:759.481333pt;}
.y9a{bottom:762.276000pt;}
.yc5{bottom:764.981333pt;}
.y138{bottom:771.485333pt;}
.y31{bottom:772.273333pt;}
.y7{bottom:773.977333pt;}
.y184{bottom:777.321333pt;}
.y15d{bottom:780.306667pt;}
.y99{bottom:780.342667pt;}
.y50{bottom:783.342667pt;}
.yf1{bottom:789.290667pt;}
.y6{bottom:789.917333pt;}
.y30{bottom:790.338667pt;}
.y73{bottom:792.825333pt;}
.yc4{bottom:794.320000pt;}
.y183{bottom:795.386667pt;}
.y137{bottom:800.993333pt;}
.y113{bottom:803.792000pt;}
.y2f{bottom:808.404000pt;}
.y98{bottom:809.533333pt;}
.y15c{bottom:810.062667pt;}
.y5{bottom:811.216000pt;}
.yc3{bottom:812.385333pt;}
.y4f{bottom:813.364000pt;}
.y182{bottom:813.452000pt;}
.yf0{bottom:818.781333pt;}
.y72{bottom:819.525333pt;}
.y112{bottom:821.858667pt;}
.y2e{bottom:826.469333pt;}
.y15b{bottom:828.128000pt;}
.y181{bottom:829.336000pt;}
.yc1{bottom:830.450667pt;}
.y136{bottom:830.501333pt;}
.y180{bottom:831.517333pt;}
.yc2{bottom:835.729333pt;}
.yef{bottom:836.846667pt;}
.y71{bottom:837.590667pt;}
.y97{bottom:839.222667pt;}
.y111{bottom:839.924000pt;}
.y4e{bottom:843.384000pt;}
.ybf{bottom:848.516000pt;}
.y17f{bottom:849.582667pt;}
.yc0{bottom:853.794667pt;}
.yee{bottom:854.913333pt;}
.y70{bottom:855.657333pt;}
.y2d{bottom:856.490667pt;}
.y15a{bottom:857.485333pt;}
.y110{bottom:857.989333pt;}
.y1ab{bottom:861.538667pt;}
.y4{bottom:861.970667pt;}
.y135{bottom:862.969333pt;}
.y17e{bottom:867.649333pt;}
.y96{bottom:868.910667pt;}
.yed{bottom:872.978667pt;}
.y4d{bottom:873.405333pt;}
.y6f{bottom:873.722667pt;}
.y159{bottom:875.550667pt;}
.y10f{bottom:876.054667pt;}
.ybe{bottom:876.832000pt;}
.y1aa{bottom:879.604000pt;}
.y134{bottom:883.265333pt;}
.y2c{bottom:886.512000pt;}
.yec{bottom:891.044000pt;}
.y6e{bottom:891.788000pt;}
.y158{bottom:893.616000pt;}
.y10e{bottom:894.120000pt;}
.y3{bottom:894.581333pt;}
.ybd{bottom:894.897333pt;}
.y17d{bottom:897.669333pt;}
.y95{bottom:898.102667pt;}
.y133{bottom:901.330667pt;}
.y4c{bottom:911.153333pt;}
.y157{bottom:911.681333pt;}
.y10d{bottom:912.186667pt;}
.ybc{bottom:912.962667pt;}
.y17c{bottom:915.734667pt;}
.y2b{bottom:916.532000pt;}
.y6d{bottom:917.829333pt;}
.y132{bottom:919.397333pt;}
.yeb{bottom:919.914667pt;}
.yea{bottom:922.073333pt;}
.ye8{bottom:925.669333pt;}
.y94{bottom:927.293333pt;}
.y1a9{bottom:927.690667pt;}
.y6c{bottom:927.806667pt;}
.ye9{bottom:929.305333pt;}
.y155{bottom:929.748000pt;}
.y10c{bottom:930.252000pt;}
.ybb{bottom:931.028000pt;}
.y17b{bottom:933.801333pt;}
.y2{bottom:934.996000pt;}
.y131{bottom:937.462667pt;}
.y156{bottom:940.025333pt;}
.y1a8{bottom:945.756000pt;}
.y2a{bottom:946.553333pt;}
.y4b{bottom:948.317333pt;}
.yba{bottom:950.876000pt;}
.y1{bottom:953.593333pt;}
.y130{bottom:955.528000pt;}
.y91{bottom:956.268000pt;}
.ye7{bottom:957.710667pt;}
.yb9{bottom:961.292000pt;}
.y93{bottom:962.600000pt;}
.y154{bottom:962.852000pt;}
.y153{bottom:963.501333pt;}
.y17a{bottom:963.821333pt;}
.y4a{bottom:964.013333pt;}
.y49{bottom:966.382667pt;}
.y90{bottom:972.577333pt;}
.ye6{bottom:975.776000pt;}
.y29{bottom:979.230667pt;}
.y6b{bottom:979.432000pt;}
.y152{bottom:980.026667pt;}
.y179{bottom:981.886667pt;}
.y92{bottom:982.417333pt;}
.y48{bottom:984.448000pt;}
.y12f{bottom:987.997333pt;}
.y6a{bottom:990.176000pt;}
.ye5{bottom:993.842667pt;}
.ye4{bottom:1009.726667pt;}
.y28{bottom:1011.908000pt;}
.hc{height:31.880400pt;}
.h6{height:33.162466pt;}
.h4{height:37.193707pt;}
.hb{height:39.531597pt;}
.h5{height:39.850400pt;}
.h13{height:40.378215pt;}
.h22{height:41.357733pt;}
.h26{height:41.658217pt;}
.h8{height:43.636400pt;}
.h9{height:44.887791pt;}
.h3{height:45.525402pt;}
.h1e{height:48.771067pt;}
.h24{height:49.965733pt;}
.h2f{height:52.361733pt;}
.hf{height:52.989733pt;}
.he{height:52.995067pt;}
.h14{height:53.113733pt;}
.h7{height:53.865199pt;}
.h2c{height:55.901733pt;}
.h11{height:55.907067pt;}
.h2e{height:57.056930pt;}
.h2d{height:57.062263pt;}
.h1b{height:58.020400pt;}
.h25{height:66.655067pt;}
.h2{height:68.769785pt;}
.h28{height:80.640930pt;}
.h29{height:80.646263pt;}
.h1d{height:81.540400pt;}
.h15{height:82.996400pt;}
.h16{height:83.545733pt;}
.h12{height:83.595597pt;}
.hd{height:83.830263pt;}
.h21{height:85.958263pt;}
.h27{height:89.379067pt;}
.h1c{height:91.270263pt;}
.h1a{height:97.629733pt;}
.ha{height:99.560400pt;}
.h1f{height:99.771597pt;}
.h23{height:100.342263pt;}
.h10{height:113.115597pt;}
.h17{height:115.712930pt;}
.h18{height:122.905733pt;}
.h2a{height:123.158263pt;}
.h2b{height:125.755597pt;}
.h20{height:139.680930pt;}
.h19{height:155.622263pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:94.298667pt;}
.x9{left:96.000000pt;}
.xbc{left:97.842667pt;}
.x32{left:104.040000pt;}
.x12{left:106.505333pt;}
.x15{left:110.692000pt;}
.xa5{left:116.076000pt;}
.xc{left:118.581333pt;}
.x38{left:122.836000pt;}
.x1a{left:124.566667pt;}
.xdc{left:125.898667pt;}
.xc6{left:128.278667pt;}
.x39{left:129.868000pt;}
.x7{left:132.364000pt;}
.x3a{left:135.638667pt;}
.x49{left:136.914667pt;}
.x3b{left:142.456000pt;}
.xd1{left:147.244000pt;}
.xac{left:151.290667pt;}
.x6{left:152.289333pt;}
.x5e{left:156.356000pt;}
.xa6{left:157.686667pt;}
.xa3{left:160.728000pt;}
.xb{left:164.184000pt;}
.xa7{left:165.206667pt;}
.x1e{left:166.597333pt;}
.xc1{left:167.570667pt;}
.x4a{left:170.064000pt;}
.x8f{left:172.189333pt;}
.x75{left:175.002667pt;}
.x9d{left:177.362667pt;}
.xad{left:179.008000pt;}
.x36{left:181.413333pt;}
.xd8{left:182.302667pt;}
.x1f{left:184.937333pt;}
.x98{left:187.861333pt;}
.x37{left:193.622667pt;}
.xa4{left:195.509333pt;}
.x16{left:198.474667pt;}
.xa{left:200.244000pt;}
.x34{left:205.080000pt;}
.xd7{left:207.390667pt;}
.x90{left:212.044000pt;}
.x78{left:214.110667pt;}
.x58{left:215.168000pt;}
.x50{left:217.490667pt;}
.x91{left:218.870667pt;}
.x35{left:220.149333pt;}
.x9e{left:224.804000pt;}
.x61{left:227.496000pt;}
.xb6{left:229.589333pt;}
.x85{left:232.061333pt;}
.xbb{left:233.498667pt;}
.xbe{left:238.286667pt;}
.x59{left:239.485333pt;}
.xcc{left:241.048000pt;}
.x1{left:244.436000pt;}
.xd2{left:251.378667pt;}
.xcd{left:252.692000pt;}
.x2{left:254.021333pt;}
.x9f{left:257.530667pt;}
.x4b{left:260.124000pt;}
.x77{left:262.210667pt;}
.xa0{left:264.949333pt;}
.x26{left:267.098667pt;}
.x79{left:270.137333pt;}
.xa1{left:271.774667pt;}
.x4c{left:272.965333pt;}
.x71{left:275.174667pt;}
.x72{left:276.789333pt;}
.x2b{left:280.170667pt;}
.xaf{left:282.573333pt;}
.xd0{left:285.690667pt;}
.xc4{left:289.296000pt;}
.x99{left:292.728000pt;}
.x24{left:294.341333pt;}
.x2c{left:299.984000pt;}
.x9a{left:308.088000pt;}
.x51{left:309.310667pt;}
.x92{left:315.836000pt;}
.xbf{left:318.614667pt;}
.x7a{left:319.642667pt;}
.x11{left:325.005333pt;}
.x5c{left:326.704000pt;}
.x93{left:329.332000pt;}
.xbd{left:331.205333pt;}
.x3{left:333.577333pt;}
.x52{left:335.273333pt;}
.xe{left:339.080000pt;}
.xaa{left:340.454667pt;}
.x94{left:342.002667pt;}
.x4{left:344.588000pt;}
.xa2{left:347.869333pt;}
.xb0{left:352.750667pt;}
.x95{left:353.752000pt;}
.x4f{left:356.538667pt;}
.xb1{left:358.004000pt;}
.xca{left:361.822667pt;}
.x1b{left:363.814667pt;}
.x8{left:365.388000pt;}
.x5{left:367.833333pt;}
.xce{left:368.729333pt;}
.x33{left:370.402667pt;}
.x48{left:372.834667pt;}
.x82{left:376.717333pt;}
.xc2{left:381.229333pt;}
.x17{left:385.352000pt;}
.xf{left:388.438667pt;}
.x83{left:390.212000pt;}
.x5d{left:392.186667pt;}
.x10{left:393.214667pt;}
.x73{left:395.624000pt;}
.x25{left:398.632000pt;}
.xc3{left:400.101333pt;}
.x84{left:402.882667pt;}
.x18{left:405.636000pt;}
.x74{left:408.804000pt;}
.xc0{left:409.696000pt;}
.x62{left:415.569333pt;}
.x63{left:425.874667pt;}
.xab{left:429.254667pt;}
.xc5{left:431.253333pt;}
.xd3{left:434.624000pt;}
.x7f{left:437.405333pt;}
.x20{left:438.558667pt;}
.x86{left:441.972000pt;}
.xd4{left:443.312000pt;}
.x27{left:447.037333pt;}
.x80{left:448.802667pt;}
.x21{left:451.750667pt;}
.x3c{left:452.946667pt;}
.xb8{left:454.614667pt;}
.x64{left:456.881333pt;}
.x53{left:459.730667pt;}
.x28{left:460.692000pt;}
.xd5{left:463.446667pt;}
.x3d{left:464.389333pt;}
.xc9{left:467.712000pt;}
.x55{left:472.453333pt;}
.xd6{left:473.796000pt;}
.x65{left:477.892000pt;}
.xa8{left:479.098667pt;}
.x3e{left:482.146667pt;}
.x54{left:484.122667pt;}
.x81{left:486.561333pt;}
.x7b{left:489.665333pt;}
.x3f{left:492.852000pt;}
.x96{left:493.848000pt;}
.x56{left:497.810667pt;}
.xd9{left:499.517333pt;}
.x97{left:500.814667pt;}
.x2d{left:505.754667pt;}
.x40{left:507.857333pt;}
.xb7{left:509.032000pt;}
.xa9{left:510.541333pt;}
.x87{left:513.153333pt;}
.xb2{left:517.081333pt;}
.x41{left:518.121333pt;}
.x88{left:519.617333pt;}
.x9b{left:521.053333pt;}
.x2e{left:521.986667pt;}
.x7d{left:525.669333pt;}
.x89{left:527.036000pt;}
.xcf{left:528.097333pt;}
.x66{left:532.189333pt;}
.x9c{left:535.650667pt;}
.x7e{left:537.969333pt;}
.x67{left:540.876000pt;}
.x68{left:546.418667pt;}
.x13{left:547.378667pt;}
.x1c{left:548.612000pt;}
.xb3{left:551.110667pt;}
.x69{left:553.237333pt;}
.x8a{left:559.358667pt;}
.xae{left:560.304000pt;}
.xb4{left:562.789333pt;}
.xcb{left:564.154667pt;}
.x8b{left:566.777333pt;}
.xb5{left:568.333333pt;}
.x22{left:570.714667pt;}
.xda{left:571.681333pt;}
.x6a{left:577.949333pt;}
.x4d{left:580.741333pt;}
.x14{left:584.222667pt;}
.xdb{left:585.764000pt;}
.x42{left:588.598667pt;}
.x8c{left:591.854667pt;}
.x43{left:593.850667pt;}
.x6b{left:596.244000pt;}
.x8d{left:599.273333pt;}
.x6c{left:601.788000pt;}
.x19{left:603.720000pt;}
.x1d{left:605.616000pt;}
.x8e{left:606.545333pt;}
.x6d{left:610.100000pt;}
.x6e{left:615.644000pt;}
.x44{left:620.409333pt;}
.xb9{left:622.753333pt;}
.x7c{left:630.518667pt;}
.x4e{left:635.674667pt;}
.x2f{left:637.142667pt;}
.x5a{left:640.989333pt;}
.x29{left:643.576000pt;}
.xba{left:647.016000pt;}
.x45{left:650.294667pt;}
.xc7{left:652.406667pt;}
.x30{left:654.064000pt;}
.x2a{left:657.230667pt;}
.x5b{left:659.108000pt;}
.x76{left:664.204000pt;}
.x31{left:668.718667pt;}
.x5f{left:675.640000pt;}
.x6f{left:681.497333pt;}
.x46{left:683.369333pt;}
.xc8{left:684.762667pt;}
.x70{left:687.041333pt;}
.x60{left:687.933333pt;}
.x23{left:690.320000pt;}
.x47{left:693.633333pt;}
.x57{left:695.601333pt;}
}




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