
    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_6c7d0b1ba32c0207edf71925.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_94b71dd6ed3534c8925355b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4ef9595504f4181ae07e62ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_35e2b75e85ca1a4cb3837fc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bca371c70e560d3ae7b1bb20.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_63fcb48ac8e6f7eb70eae8fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.486000;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_7d0b9a92e4f3468ff884e35d.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_d1527f69058f8881ca8a8979.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_16faeed924b7ad3b49dee564.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d300d956cc8fb34fb7665586.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.678223;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_765512790edee37313aa834c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_51e5b34dec90ad8e2b257025.woff2')format("woff");}.fff{font-family:fff;line-height:1.710000;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_fe47dba9c4f9bbfe8bbdf872.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_facdba4be80f7e139444afbf.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.311035;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_7c13a8431a9694bb37073f6a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;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_c606fc022515955249f1b78b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f778f3e10beb7146bc174f70.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a977f200280384ddbce588a3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.527000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_14eef01dafd092ae3b14bc50.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.200000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_923f4bc97d34f15fb7a033d2.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_26359635a9a4cdd9c2cb7c11.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_923f4bc97d34f15fb7a033d2.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_26359635a9a4cdd9c2cb7c11.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_e823ae778c997c5a4844cda9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m1a{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);}
.m3{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);}
.m1c{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);}
.m23{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);}
.m28{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);}
.m24{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);}
.m6{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);}
.m1f{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);}
.m15{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);}
.m7{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);}
.m29{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);}
.m13{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);}
.m27{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);}
.m22{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);}
.md{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);}
.m1e{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);}
.m1d{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);}
.mf{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);}
.m10{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);}
.mc{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);}
.m4{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m16{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);}
.ma{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);}
.m5{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);}
.me{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);}
.m1b{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);}
.m11{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);}
.m9{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);}
.m18{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);}
.m8{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);}
.m26{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);}
.m17{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m1{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);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-48.750000px;}
.v12{vertical-align:-39.780000px;}
.v2{vertical-align:-21.702000px;}
.v3{vertical-align:-19.524000px;}
.v7{vertical-align:-12.306000px;}
.v6{vertical-align:-10.920000px;}
.v4{vertical-align:-8.970000px;}
.v1e{vertical-align:-6.810000px;}
.v5{vertical-align:-2.706000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:3.096000px;}
.v11{vertical-align:4.302000px;}
.v16{vertical-align:5.796000px;}
.va{vertical-align:8.970000px;}
.v9{vertical-align:10.920000px;}
.vd{vertical-align:12.306000px;}
.vf{vertical-align:14.760000px;}
.v1{vertical-align:21.702000px;}
.v19{vertical-align:23.286000px;}
.v10{vertical-align:24.690000px;}
.ve{vertical-align:36.756000px;}
.vc{vertical-align:38.514000px;}
.v8{vertical-align:40.470000px;}
.v1d{vertical-align:44.268000px;}
.v14{vertical-align:46.194000px;}
.v1a{vertical-align:47.742000px;}
.vb{vertical-align:49.434000px;}
.v15{vertical-align:53.886000px;}
.v18{vertical-align:55.230000px;}
.v1c{vertical-align:79.242000px;}
.v1b{vertical-align:88.206000px;}
.ls49{letter-spacing:-0.951311px;}
.ls43{letter-spacing:-0.411160px;}
.ls45{letter-spacing:-0.310385px;}
.ls6{letter-spacing:0.000000px;}
.lsa6{letter-spacing:0.001133px;}
.lsa9{letter-spacing:0.003178px;}
.ls50{letter-spacing:0.003292px;}
.lsab{letter-spacing:0.004800px;}
.ls3c{letter-spacing:0.158317px;}
.ls3a{letter-spacing:0.172929px;}
.ls3e{letter-spacing:0.197518px;}
.ls3f{letter-spacing:0.201549px;}
.lsb{letter-spacing:0.260570px;}
.ls37{letter-spacing:0.293455px;}
.ls35{letter-spacing:0.300711px;}
.ls40{letter-spacing:0.320866px;}
.ls3b{letter-spacing:0.352711px;}
.ls34{letter-spacing:0.374075px;}
.ls3d{letter-spacing:0.403098px;}
.ls38{letter-spacing:0.414385px;}
.ls36{letter-spacing:0.435346px;}
.ls42{letter-spacing:0.478578px;}
.ls41{letter-spacing:0.518888px;}
.ls39{letter-spacing:0.544182px;}
.ls57{letter-spacing:0.548815px;}
.ls47{letter-spacing:0.580461px;}
.ls44{letter-spacing:0.604647px;}
.ls87{letter-spacing:0.670741px;}
.ls94{letter-spacing:0.676741px;}
.ls7c{letter-spacing:0.742200px;}
.ls19{letter-spacing:0.742766px;}
.ls88{letter-spacing:0.748200px;}
.ls1f{letter-spacing:0.749675px;}
.ls54{letter-spacing:0.820741px;}
.ls46{letter-spacing:0.826351px;}
.ls90{letter-spacing:0.856200px;}
.lsf{letter-spacing:0.858017px;}
.ls92{letter-spacing:0.862200px;}
.ls18{letter-spacing:0.864017px;}
.ls67{letter-spacing:0.890700px;}
.ls6d{letter-spacing:0.896700px;}
.ls4b{letter-spacing:0.951311px;}
.ls4c{letter-spacing:0.979528px;}
.ls2e{letter-spacing:0.993634px;}
.ls96{letter-spacing:1.017886px;}
.ls58{letter-spacing:1.131943px;}
.ls56{letter-spacing:1.135142px;}
.ls48{letter-spacing:1.249604px;}
.ls7{letter-spacing:1.275394px;}
.lsd{letter-spacing:1.312200px;}
.ls11{letter-spacing:1.312483px;}
.ls71{letter-spacing:1.312766px;}
.ls10{letter-spacing:1.313675px;}
.lse{letter-spacing:1.314017px;}
.ls89{letter-spacing:1.318200px;}
.ls24{letter-spacing:1.318483px;}
.ls64{letter-spacing:1.319675px;}
.ls16{letter-spacing:1.320017px;}
.ls1a{letter-spacing:1.420741px;}
.ls23{letter-spacing:1.461483px;}
.ls79{letter-spacing:1.472576px;}
.ls6f{letter-spacing:1.478576px;}
.ls7e{letter-spacing:1.490400px;}
.ls53{letter-spacing:1.492200px;}
.ls5a{letter-spacing:1.493108px;}
.ls28{letter-spacing:1.496383px;}
.ls7d{letter-spacing:1.498200px;}
.ls59{letter-spacing:1.587886px;}
.ls4d{letter-spacing:1.628516px;}
.ls4a{letter-spacing:1.693012px;}
.ls4{letter-spacing:1.861130px;}
.ls1d{letter-spacing:1.939625px;}
.ls2a{letter-spacing:1.945625px;}
.ls31{letter-spacing:2.434741px;}
.ls0{letter-spacing:2.461200px;}
.ls12{letter-spacing:2.509625px;}
.ls51{letter-spacing:2.625292px;}
.ls8{letter-spacing:2.631292px;}
.ls5c{letter-spacing:2.810383px;}
.ls29{letter-spacing:2.914741px;}
.ls63{letter-spacing:2.984383px;}
.ls1c{letter-spacing:2.990383px;}
.ls74{letter-spacing:3.552374px;}
.ls1b{letter-spacing:3.555483px;}
.ls4e{letter-spacing:3.555943px;}
.ls5d{letter-spacing:3.559142px;}
.ls5f{letter-spacing:3.561943px;}
.ls20{letter-spacing:3.733200px;}
.ls8c{letter-spacing:3.739200px;}
.ls52{letter-spacing:4.005886px;}
.ls55{letter-spacing:4.264931px;}
.ls8d{letter-spacing:4.299943px;}
.ls26{letter-spacing:4.305886px;}
.ls83{letter-spacing:4.305943px;}
.ls6a{letter-spacing:4.322160px;}
.ls30{letter-spacing:4.440571px;}
.ls2f{letter-spacing:4.446571px;}
.ls70{letter-spacing:4.575886px;}
.lsc{letter-spacing:4.581886px;}
.ls65{letter-spacing:4.755886px;}
.ls61{letter-spacing:4.761886px;}
.ls2b{letter-spacing:4.927200px;}
.ls1e{letter-spacing:4.933200px;}
.ls25{letter-spacing:5.499886px;}
.ls17{letter-spacing:7.287943px;}
.ls5b{letter-spacing:9.190741px;}
.ls22{letter-spacing:9.531483px;}
.ls60{letter-spacing:10.106100px;}
.ls5e{letter-spacing:10.112100px;}
.ls27{letter-spacing:10.630741px;}
.ls62{letter-spacing:10.636741px;}
.ls5{letter-spacing:11.954850px;}
.ls77{letter-spacing:12.328200px;}
.ls76{letter-spacing:12.339483px;}
.ls80{letter-spacing:12.345483px;}
.ls81{letter-spacing:12.370200px;}
.ls69{letter-spacing:12.507483px;}
.ls78{letter-spacing:13.053483px;}
.ls8a{letter-spacing:13.083483px;}
.ls85{letter-spacing:13.089483px;}
.ls6c{letter-spacing:13.101483px;}
.ls6b{letter-spacing:13.136700px;}
.lsb2{letter-spacing:13.436004px;}
.lsaf{letter-spacing:13.448400px;}
.lsb0{letter-spacing:13.454400px;}
.ls86{letter-spacing:13.515886px;}
.ls8b{letter-spacing:13.521886px;}
.ls32{letter-spacing:14.265483px;}
.ls33{letter-spacing:14.421483px;}
.ls2d{letter-spacing:14.583483px;}
.lsa3{letter-spacing:15.003676px;}
.ls2c{letter-spacing:15.355200px;}
.ls7f{letter-spacing:15.921886px;}
.ls75{letter-spacing:15.927886px;}
.ls84{letter-spacing:15.927943px;}
.ls68{letter-spacing:15.945943px;}
.ls93{letter-spacing:16.377886px;}
.ls91{letter-spacing:16.383886px;}
.ls6e{letter-spacing:16.401886px;}
.ls7b{letter-spacing:17.325483px;}
.ls73{letter-spacing:18.069483px;}
.ls14{letter-spacing:18.093483px;}
.ls9e{letter-spacing:18.100200px;}
.ls13{letter-spacing:18.126583px;}
.ls9f{letter-spacing:18.136200px;}
.lsa2{letter-spacing:18.499200px;}
.ls4f{letter-spacing:18.518160px;}
.lsa4{letter-spacing:18.694200px;}
.lsa{letter-spacing:18.699292px;}
.ls9d{letter-spacing:18.700200px;}
.lsa5{letter-spacing:18.742200px;}
.lsb1{letter-spacing:19.926871px;}
.ls82{letter-spacing:20.259483px;}
.ls8f{letter-spacing:20.265483px;}
.ls72{letter-spacing:20.907886px;}
.ls7a{letter-spacing:21.363886px;}
.ls9{letter-spacing:22.286725px;}
.ls99{letter-spacing:23.343483px;}
.ls97{letter-spacing:23.776282px;}
.lsad{letter-spacing:25.365483px;}
.lsae{letter-spacing:25.402200px;}
.lsac{letter-spacing:25.996200px;}
.ls15{letter-spacing:26.133483px;}
.ls9b{letter-spacing:27.759483px;}
.ls9c{letter-spacing:27.790200px;}
.lsa1{letter-spacing:28.143483px;}
.ls9a{letter-spacing:28.390200px;}
.lsa0{letter-spacing:28.768200px;}
.ls98{letter-spacing:35.655886px;}
.lsa8{letter-spacing:41.046088px;}
.lsa7{letter-spacing:41.614800px;}
.lsaa{letter-spacing:44.872800px;}
.ls1{letter-spacing:56.893200px;}
.ls8e{letter-spacing:61.822741px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls95{letter-spacing:450.922741px;}
.ls66{letter-spacing:694.042741px;}
.ls21{letter-spacing:764.458741px;}
.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;}
}
.ws4c{word-spacing:-15.599893px;}
.ws30{word-spacing:-14.943900px;}
.ws4b{word-spacing:-13.932075px;}
.ws6f{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws50{word-spacing:-10.304193px;}
.ws4f{word-spacing:-10.278999px;}
.ws4a{word-spacing:-8.759320px;}
.ws49{word-spacing:-8.658545px;}
.ws2e{word-spacing:-5.200477px;}
.ws31{word-spacing:-5.021150px;}
.ws1f{word-spacing:-2.749678px;}
.wsa3{word-spacing:-2.528525px;}
.ws25{word-spacing:-2.450800px;}
.ws6d{word-spacing:-1.912819px;}
.ws6{word-spacing:-1.908367px;}
.ws93{word-spacing:-1.853044px;}
.ws86{word-spacing:-1.398758px;}
.ws41{word-spacing:-1.374839px;}
.ws5{word-spacing:-1.322630px;}
.wsa1{word-spacing:-1.237363px;}
.wsa2{word-spacing:-1.216918px;}
.ws87{word-spacing:-1.129766px;}
.ws42{word-spacing:-1.075961px;}
.wsa4{word-spacing:-0.968371px;}
.wsd{word-spacing:-0.956410px;}
.ws96{word-spacing:-0.896634px;}
.ws26{word-spacing:-0.836858px;}
.ws3{word-spacing:-0.777083px;}
.ws66{word-spacing:-0.759318px;}
.ws1{word-spacing:-0.717307px;}
.ws79{word-spacing:-0.597756px;}
.ws29{word-spacing:-0.418429px;}
.ws28{word-spacing:-0.358654px;}
.ws48{word-spacing:-0.298878px;}
.wsaf{word-spacing:-0.268992px;}
.ws11{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.119551px;}
.wsa5{word-spacing:-0.107597px;}
.ws35{word-spacing:-0.089446px;}
.ws2c{word-spacing:-0.075552px;}
.ws5b{word-spacing:-0.062287px;}
.ws10{word-spacing:-0.059776px;}
.ws9b{word-spacing:-0.053798px;}
.ws4e{word-spacing:-0.036380px;}
.ws4d{word-spacing:-0.036279px;}
.wsaa{word-spacing:-0.026707px;}
.wsa6{word-spacing:-0.003610px;}
.ws1d{word-spacing:-0.002184px;}
.ws59{word-spacing:-0.000648px;}
.ws0{word-spacing:0.000000px;}
.ws77{word-spacing:0.053798px;}
.ws8{word-spacing:0.059776px;}
.ws8d{word-spacing:0.107597px;}
.ws14{word-spacing:0.119551px;}
.ws1c{word-spacing:0.179327px;}
.ws9a{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.wsb1{word-spacing:0.268992px;}
.ws32{word-spacing:0.298878px;}
.wsae{word-spacing:0.322790px;}
.wse{word-spacing:0.358654px;}
.ws8c{word-spacing:0.376589px;}
.ws37{word-spacing:0.418429px;}
.ws1a{word-spacing:0.478205px;}
.ws2b{word-spacing:0.537980px;}
.ws7f{word-spacing:0.597756px;}
.ws7e{word-spacing:0.657532px;}
.ws43{word-spacing:0.836858px;}
.ws92{word-spacing:0.896634px;}
.wsb{word-spacing:0.956410px;}
.ws2d{word-spacing:1.016185px;}
.ws38{word-spacing:1.075961px;}
.ws21{word-spacing:1.135736px;}
.ws58{word-spacing:1.195512px;}
.ws9e{word-spacing:1.255288px;}
.wsc{word-spacing:1.315063px;}
.ws2a{word-spacing:1.374839px;}
.ws55{word-spacing:1.554166px;}
.ws3c{word-spacing:1.588298px;}
.ws3a{word-spacing:1.593288px;}
.ws54{word-spacing:1.613941px;}
.wsa0{word-spacing:1.793268px;}
.wsf{word-spacing:1.853044px;}
.ws2f{word-spacing:1.912819px;}
.ws57{word-spacing:2.032370px;}
.ws56{word-spacing:2.391024px;}
.ws68{word-spacing:2.450800px;}
.ws64{word-spacing:2.510575px;}
.wsa9{word-spacing:2.528525px;}
.ws1b{word-spacing:2.570351px;}
.ws9c{word-spacing:2.582323px;}
.ws3e{word-spacing:2.689902px;}
.wsab{word-spacing:2.743718px;}
.ws84{word-spacing:2.749678px;}
.ws44{word-spacing:2.809453px;}
.ws24{word-spacing:2.988780px;}
.ws18{word-spacing:3.108331px;}
.ws88{word-spacing:3.168107px;}
.ws47{word-spacing:3.227882px;}
.ws4{word-spacing:3.227904px;}
.wsb0{word-spacing:3.229114px;}
.ws8a{word-spacing:3.466985px;}
.ws5f{word-spacing:3.526760px;}
.ws98{word-spacing:3.572329px;}
.ws13{word-spacing:3.586536px;}
.ws7{word-spacing:3.702101px;}
.ws5d{word-spacing:3.765863px;}
.ws90{word-spacing:3.945190px;}
.wsa8{word-spacing:3.981082px;}
.ws9d{word-spacing:4.034880px;}
.ws51{word-spacing:4.184292px;}
.ws20{word-spacing:4.423394px;}
.ws5c{word-spacing:4.662497px;}
.ws6a{word-spacing:4.836600px;}
.ws69{word-spacing:4.841824px;}
.wsa{word-spacing:4.961375px;}
.ws6c{word-spacing:5.021150px;}
.wsac{word-spacing:5.110848px;}
.ws16{word-spacing:5.140702px;}
.ws45{word-spacing:5.742552px;}
.ws85{word-spacing:5.858009px;}
.ws46{word-spacing:5.910552px;}
.ws6b{word-spacing:5.917784px;}
.ws97{word-spacing:5.977560px;}
.ws53{word-spacing:6.097111px;}
.ws52{word-spacing:6.156887px;}
.ws36{word-spacing:6.216662px;}
.ws7d{word-spacing:6.276438px;}
.ws9f{word-spacing:6.336214px;}
.ws23{word-spacing:6.515540px;}
.ws91{word-spacing:6.754643px;}
.ws95{word-spacing:7.352399px;}
.ws22{word-spacing:7.412174px;}
.wsad{word-spacing:7.477978px;}
.ws62{word-spacing:7.515359px;}
.ws60{word-spacing:7.531726px;}
.ws17{word-spacing:8.069706px;}
.ws8e{word-spacing:8.308808px;}
.ws7b{word-spacing:8.661542px;}
.ws3b{word-spacing:8.979106px;}
.ws39{word-spacing:8.981861px;}
.ws7a{word-spacing:9.145728px;}
.wsa7{word-spacing:9.414720px;}
.ws67{word-spacing:9.546552px;}
.ws8b{word-spacing:9.922750px;}
.ws94{word-spacing:10.221628px;}
.ws40{word-spacing:10.341179px;}
.ws3f{word-spacing:10.400954px;}
.ws83{word-spacing:12.535027px;}
.ws71{word-spacing:12.857818px;}
.ws72{word-spacing:12.861224px;}
.ws82{word-spacing:13.073011px;}
.ws70{word-spacing:13.395802px;}
.ws7c{word-spacing:13.449600px;}
.ws74{word-spacing:14.579366px;}
.ws75{word-spacing:14.586494px;}
.ws78{word-spacing:14.704798px;}
.ws65{word-spacing:14.809872px;}
.ws5e{word-spacing:14.824349px;}
.ws63{word-spacing:14.826552px;}
.ws73{word-spacing:15.171149px;}
.ws81{word-spacing:15.224947px;}
.ws80{word-spacing:15.816730px;}
.ws9{word-spacing:16.737168px;}
.ws5a{word-spacing:17.938541px;}
.ws8f{word-spacing:20.204153px;}
.ws12{word-spacing:23.970016px;}
.ws61{word-spacing:24.300552px;}
.ws89{word-spacing:58.263667px;}
.ws33{word-spacing:131.260595px;}
.ws6e{word-spacing:197.114983px;}
.ws34{word-spacing:244.770469px;}
.ws3d{word-spacing:261.686604px;}
.ws76{word-spacing:1203.231533px;}
.ws99{word-spacing:1204.737533px;}
._0{margin-left:-11.943245px;}
._5{margin-left:-6.939994px;}
._4{margin-left:-5.399071px;}
._17{margin-left:-4.124516px;}
._7{margin-left:-2.549524px;}
._1{margin-left:-1.195512px;}
._8{width:1.091170px;}
._2{width:2.620435px;}
._1d{width:3.902569px;}
._1c{width:6.426946px;}
._2d{width:12.385579px;}
._14{width:14.107042px;}
._1f{width:15.541656px;}
._6{width:16.677504px;}
._d{width:18.470660px;}
._12{width:20.503031px;}
._c{width:21.937645px;}
._1a{width:23.192933px;}
._e{width:24.567772px;}
._30{width:25.699165px;}
._13{width:26.899020px;}
._1e{width:28.811839px;}
._10{width:29.887800px;}
._1b{width:30.903985px;}
._18{width:32.138446px;}
._21{width:33.531176px;}
._20{width:34.886818px;}
._a{width:35.984911px;}
._2e{width:37.419526px;}
._19{width:38.794364px;}
._b{width:39.810550px;}
._24{width:41.962752px;}
._2c{width:43.277534px;}
._11{width:46.027212px;}
._22{width:47.288794px;}
._2b{width:48.597563px;}
._f{width:51.048362px;}
._3{width:53.829634px;}
._9{width:69.578798px;}
._2f{width:88.767360px;}
._2a{width:195.449587px;}
._28{width:232.516685px;}
._29{width:240.371251px;}
._27{width:262.428595px;}
._25{width:288.864609px;}
._26{width:307.350259px;}
._15{width:719.365670px;}
._23{width:1936.594884px;}
._16{width:1960.504884px;}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(4,27,165);}
.fc5{color:rgb(165,4,4);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc9{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(75,107,66);}
.fs17{font-size:35.865600px;}
.fs10{font-size:36.278820px;}
.fs12{font-size:36.379595px;}
.fs1a{font-size:39.584160px;}
.fs13{font-size:41.115996px;}
.fs14{font-size:41.216771px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs11{font-size:43.534584px;}
.fs19{font-size:44.241120px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs15{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs18{font-size:48.898080px;}
.fsc{font-size:53.667360px;}
.fs5{font-size:53.798400px;}
.fsf{font-size:55.627524px;}
.fse{font-size:55.728299px;}
.fs1b{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fsb{font-size:71.556480px;}
.fs9{font-size:75.552000px;}
.fs16{font-size:83.686200px;}
.fsd{font-size:89.445600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:124.850580px;}
.y0{bottom:0.000000px;}
.yf9{bottom:3.065832px;}
.y10{bottom:3.425340px;}
.yf{bottom:14.151273px;}
.y2{bottom:17.984661px;}
.y54{bottom:19.266224px;}
.yfa{bottom:19.559232px;}
.yfc{bottom:30.561300px;}
.y62{bottom:33.635203px;}
.ya2{bottom:38.344697px;}
.y30{bottom:63.780000px;}
.ya1{bottom:66.939462px;}
.y9e{bottom:76.462652px;}
.yfd{bottom:78.440670px;}
.ya6{bottom:85.255227px;}
.y104{bottom:90.810720px;}
.y9d{bottom:93.417962px;}
.y63{bottom:98.044800px;}
.y97{bottom:99.111721px;}
.y5b{bottom:104.920500px;}
.yfb{bottom:105.072660px;}
.y5a{bottom:108.612000px;}
.y2f{bottom:113.071500px;}
.y13d{bottom:117.310500px;}
.yfe{bottom:126.320040px;}
.y59{bottom:128.875500px;}
.y96{bottom:131.278941px;}
.y2e{bottom:133.335000px;}
.ya7{bottom:133.338000px;}
.y13c{bottom:133.749000px;}
.y53{bottom:143.294703px;}
.y58{bottom:149.139000px;}
.y2d{bottom:153.600000px;}
.yf6{bottom:155.350500px;}
.y7c{bottom:155.593500px;}
.y88{bottom:155.767500px;}
.y13b{bottom:157.689000px;}
.y5f{bottom:166.125884px;}
.y5e{bottom:166.413658px;}
.y52{bottom:167.917232px;}
.y2c{bottom:173.863500px;}
.y95{bottom:174.188723px;}
.yff{bottom:174.199410px;}
.yf5{bottom:175.614000px;}
.y7b{bottom:175.857000px;}
.y57{bottom:178.369500px;}
.y10a{bottom:182.110500px;}
.y184{bottom:183.103500px;}
.y13a{bottom:189.309000px;}
.y7a{bottom:192.430500px;}
.ya5{bottom:192.610302px;}
.y102{bottom:193.651920px;}
.y2b{bottom:194.128500px;}
.yf4{bottom:195.879000px;}
.y79{bottom:196.120500px;}
.y60{bottom:201.053588px;}
.y109{bottom:201.343500px;}
.y101{bottom:206.846640px;}
.y183{bottom:207.267000px;}
.y14f{bottom:211.132500px;}
.y56{bottom:213.189000px;}
.y94{bottom:213.712482px;}
.y2a{bottom:214.392000px;}
.y16f{bottom:215.571000px;}
.yf3{bottom:216.142500px;}
.y78{bottom:216.385500px;}
.y100{bottom:222.078780px;}
.y182{bottom:222.466500px;}
.y139{bottom:226.057500px;}
.y5d{bottom:227.582884px;}
.y108{bottom:229.542000px;}
.y93{bottom:230.672831px;}
.y14e{bottom:231.397500px;}
.y11b{bottom:231.856500px;}
.y29{bottom:234.655500px;}
.y16e{bottom:235.836000px;}
.y55{bottom:244.812000px;}
.y138{bottom:246.321000px;}
.y181{bottom:246.630000px;}
.y77{bottom:248.341500px;}
.yf2{bottom:248.362500px;}
.y107{bottom:248.983500px;}
.y14d{bottom:251.661000px;}
.y11a{bottom:252.120000px;}
.y28{bottom:254.920500px;}
.y16d{bottom:256.099500px;}
.y61{bottom:258.288071px;}
.y76{bottom:258.594000px;}
.y180{bottom:261.828000px;}
.ya0{bottom:265.792744px;}
.y137{bottom:266.586000px;}
.y51{bottom:267.241500px;}
.y92{bottom:267.878776px;}
.yf1{bottom:268.626000px;}
.y14c{bottom:271.926000px;}
.y119{bottom:272.383500px;}
.y27{bottom:275.184000px;}
.y16c{bottom:276.363000px;}
.y17f{bottom:277.026000px;}
.y1b0{bottom:279.963000px;}
.y9f{bottom:282.722860px;}
.y99{bottom:283.649985px;}
.ya4{bottom:285.413539px;}
.y136{bottom:286.849500px;}
.yf0{bottom:288.889500px;}
.y14b{bottom:292.189500px;}
.y26{bottom:295.449000px;}
.y16b{bottom:296.628000px;}
.y75{bottom:298.125000px;}
.y1af{bottom:299.329500px;}
.y98{bottom:300.610334px;}
.y91{bottom:305.094799px;}
.y12a{bottom:306.109500px;}
.y135{bottom:307.114500px;}
.y118{bottom:307.384500px;}
.y74{bottom:308.376000px;}
.yef{bottom:309.154500px;}
.y17e{bottom:310.156500px;}
.y14a{bottom:312.453000px;}
.y25{bottom:315.712500px;}
.y16a{bottom:316.891500px;}
.y1ae{bottom:318.697500px;}
.y1ad{bottom:319.102500px;}
.y90{bottom:322.045070px;}
.y129{bottom:325.342500px;}
.y117{bottom:326.617500px;}
.y17d{bottom:330.421500px;}
.yee{bottom:330.912000px;}
.y149{bottom:332.718000px;}
.yd3{bottom:334.194000px;}
.y24{bottom:335.976000px;}
.y134{bottom:336.345000px;}
.y169{bottom:337.156500px;}
.yd2{bottom:342.438000px;}
.yd1{bottom:346.129500px;}
.y17c{bottom:350.685000px;}
.y73{bottom:350.779500px;}
.yed{bottom:351.177000px;}
.y1ac{bottom:351.648000px;}
.y128{bottom:353.541000px;}
.y116{bottom:354.816000px;}
.y23{bottom:356.241000px;}
.y168{bottom:357.420000px;}
.y8f{bottom:360.037056px;}
.y148{bottom:361.948500px;}
.y133{bottom:367.612500px;}
.y17b{bottom:370.950000px;}
.y1ab{bottom:371.014500px;}
.y72{bottom:371.044500px;}
.yeb{bottom:371.440500px;}
.y22{bottom:376.504500px;}
.yec{bottom:376.866000px;}
.y167{bottom:377.683500px;}
.y132{bottom:386.845500px;}
.y1aa{bottom:390.382500px;}
.y8e{bottom:390.874053px;}
.y17a{bottom:391.213500px;}
.y71{bottom:391.308000px;}
.yea{bottom:391.705500px;}
.y147{bottom:393.571500px;}
.y21{bottom:396.769500px;}
.y166{bottom:397.948500px;}
.yd0{bottom:406.578000px;}
.y8d{bottom:407.834402px;}
.y1a9{bottom:409.750500px;}
.y179{bottom:411.477000px;}
.y70{bottom:411.571500px;}
.y146{bottom:412.804500px;}
.ye9{bottom:413.463000px;}
.y131{bottom:415.044000px;}
.y20{bottom:417.033000px;}
.y165{bottom:418.212000px;}
.ycf{bottom:423.150000px;}
.yce{bottom:426.841500px;}
.y1a8{bottom:429.117000px;}
.y178{bottom:431.742000px;}
.y6f{bottom:431.836500px;}
.ye7{bottom:433.728000px;}
.y1f{bottom:437.296500px;}
.y164{bottom:438.477000px;}
.ye8{bottom:439.152000px;}
.y145{bottom:441.003000px;}
.ycd{bottom:443.415000px;}
.ycc{bottom:447.106500px;}
.y1a7{bottom:448.485000px;}
.y177{bottom:452.005500px;}
.y6e{bottom:452.100000px;}
.ye6{bottom:453.991500px;}
.y8c{bottom:456.528640px;}
.y162{bottom:458.740500px;}
.y163{bottom:464.164500px;}
.y1e{bottom:466.527000px;}
.ycb{bottom:467.370000px;}
.y1a6{bottom:467.851500px;}
.y176{bottom:472.270500px;}
.y6d{bottom:472.365000px;}
.ye5{bottom:474.256500px;}
.y161{bottom:479.004000px;}
.y1a5{bottom:487.219500px;}
.yca{bottom:487.633500px;}
.y175{bottom:492.534000px;}
.y6c{bottom:492.628500px;}
.y160{bottom:499.269000px;}
.y8b{bottom:499.337648px;}
.ye4{bottom:506.475000px;}
.y1a4{bottom:506.587500px;}
.yc9{bottom:507.898500px;}
.y50{bottom:508.140000px;}
.y6b{bottom:512.892000px;}
.y8a{bottom:514.625139px;}
.y15f{bottom:519.532500px;}
.y174{bottom:521.764500px;}
.y1a3{bottom:525.954000px;}
.ye3{bottom:526.738500px;}
.yc8{bottom:528.162000px;}
.y106{bottom:528.279000px;}
.y4f{bottom:528.403500px;}
.y15e{bottom:539.797500px;}
.y1d{bottom:541.852500px;}
.y6a{bottom:542.122500px;}
.y1a2{bottom:545.322000px;}
.ye2{bottom:547.003500px;}
.y105{bottom:547.512000px;}
.yc6{bottom:548.427000px;}
.y4e{bottom:548.667000px;}
.y173{bottom:553.387500px;}
.y9c{bottom:554.360525px;}
.yc7{bottom:558.372000px;}
.y15d{bottom:560.061000px;}
.ya3{bottom:560.185291px;}
.y1c{bottom:562.116000px;}
.y1a1{bottom:564.688500px;}
.ye1{bottom:567.267000px;}
.yc5{bottom:568.690500px;}
.y4d{bottom:568.932000px;}
.y9b{bottom:571.310795px;}
.y172{bottom:572.620500px;}
.y103{bottom:575.712000px;}
.y69{bottom:576.942000px;}
.y15c{bottom:580.324500px;}
.y1a0{bottom:584.056500px;}
.ye0{bottom:587.532000px;}
.y9a{bottom:588.240911px;}
.y89{bottom:588.775016px;}
.yc4{bottom:588.954000px;}
.y4c{bottom:589.195500px;}
.y171{bottom:591.853500px;}
.yf8{bottom:595.152000px;}
.y68{bottom:597.207000px;}
.y1b{bottom:600.313500px;}
.y15b{bottom:600.589500px;}
.y19f{bottom:603.424500px;}
.yc3{bottom:605.527500px;}
.yde{bottom:607.795500px;}
.yc2{bottom:609.219000px;}
.y4b{bottom:609.460500px;}
.ydf{bottom:613.219500px;}
.y67{bottom:617.470500px;}
.y170{bottom:620.052000px;}
.y1a{bottom:620.577000px;}
.y15a{bottom:620.853000px;}
.y19e{bottom:622.791000px;}
.ydd{bottom:628.059000px;}
.y127{bottom:629.028000px;}
.y4a{bottom:629.724000px;}
.y115{bottom:630.303000px;}
.yc0{bottom:635.209500px;}
.y66{bottom:637.735500px;}
.y19{bottom:640.842000px;}
.y159{bottom:641.118000px;}
.y19d{bottom:642.159000px;}
.yc1{bottom:647.619000px;}
.ybf{bottom:648.202500px;}
.ydc{bottom:648.324000px;}
.y126{bottom:649.291500px;}
.y49{bottom:649.987500px;}
.y114{bottom:650.566500px;}
.ybd{bottom:651.310500px;}
.y18{bottom:661.105500px;}
.y158{bottom:661.381500px;}
.y19c{bottom:661.527000px;}
.y65{bottom:666.966000px;}
.ybe{bottom:667.450500px;}
.ydb{bottom:668.587500px;}
.y125{bottom:669.555000px;}
.y48{bottom:670.252500px;}
.y113{bottom:670.831500px;}
.y19b{bottom:680.893500px;}
.y17{bottom:681.370500px;}
.y157{bottom:681.645000px;}
.yda{bottom:688.852500px;}
.y124{bottom:689.820000px;}
.y130{bottom:690.175500px;}
.y47{bottom:690.516000px;}
.ybc{bottom:694.866000px;}
.ybb{bottom:698.556000px;}
.y64{bottom:698.589000px;}
.y112{bottom:700.062000px;}
.y19a{bottom:700.261500px;}
.y16{bottom:701.634000px;}
.y156{bottom:701.910000px;}
.y144{bottom:707.523000px;}
.yd9{bottom:709.116000px;}
.y123{bottom:710.083500px;}
.y12f{bottom:710.439000px;}
.y46{bottom:710.781000px;}
.yba{bottom:715.129500px;}
.yb9{bottom:718.821000px;}
.y199{bottom:719.628000px;}
.y5c{bottom:721.017000px;}
.y15{bottom:721.897500px;}
.y155{bottom:722.173500px;}
.y143{bottom:727.786500px;}
.yd8{bottom:729.379500px;}
.y122{bottom:730.348500px;}
.y12e{bottom:730.702500px;}
.y45{bottom:731.044500px;}
.y111{bottom:734.881500px;}
.y198{bottom:738.996000px;}
.yb8{bottom:739.084500px;}
.y14{bottom:742.162500px;}
.y154{bottom:742.438500px;}
.y142{bottom:748.051500px;}
.yd7{bottom:749.644500px;}
.y121{bottom:750.612000px;}
.y12d{bottom:750.967500px;}
.y44{bottom:751.308000px;}
.y110{bottom:755.145000px;}
.y197{bottom:758.364000px;}
.yb7{bottom:759.349500px;}
.y13{bottom:762.426000px;}
.y153{bottom:762.702000px;}
.y141{bottom:768.315000px;}
.y120{bottom:770.875500px;}
.y12c{bottom:771.231000px;}
.y43{bottom:771.573000px;}
.y10f{bottom:775.408500px;}
.y196{bottom:777.730500px;}
.yd6{bottom:778.875000px;}
.y12{bottom:782.691000px;}
.yb6{bottom:788.578500px;}
.y42{bottom:791.836500px;}
.y152{bottom:791.932500px;}
.y195{bottom:797.098500px;}
.y11f{bottom:800.106000px;}
.y12b{bottom:800.461500px;}
.y11{bottom:802.954500px;}
.y10e{bottom:804.639000px;}
.y87{bottom:808.843500px;}
.y41{bottom:812.101500px;}
.yd5{bottom:813.694500px;}
.y194{bottom:816.465000px;}
.yb5{bottom:823.398000px;}
.y151{bottom:823.555500px;}
.y86{bottom:829.107000px;}
.y11e{bottom:831.729000px;}
.y40{bottom:832.365000px;}
.y193{bottom:835.833000px;}
.y10d{bottom:836.262000px;}
.ye{bottom:838.387464px;}
.yd{bottom:838.780500px;}
.y150{bottom:842.788500px;}
.yb4{bottom:843.663000px;}
.yd4{bottom:845.317500px;}
.y85{bottom:849.372000px;}
.y11d{bottom:850.962000px;}
.y3f{bottom:852.628500px;}
.y192{bottom:855.201000px;}
.y10c{bottom:855.495000px;}
.yb3{bottom:863.926500px;}
.y84{bottom:869.635500px;}
.y3e{bottom:872.893500px;}
.y191{bottom:874.567500px;}
.yc{bottom:878.152500px;}
.y11c{bottom:879.162000px;}
.y10b{bottom:883.695000px;}
.yb2{bottom:884.191500px;}
.y83{bottom:889.899000px;}
.y3d{bottom:893.157000px;}
.y190{bottom:893.935500px;}
.yb{bottom:896.310000px;}
.yb1{bottom:904.455000px;}
.y82{bottom:910.164000px;}
.y18f{bottom:913.302000px;}
.y3c{bottom:913.422000px;}
.ya{bottom:919.348500px;}
.yb0{bottom:924.718500px;}
.y81{bottom:930.427500px;}
.y9{bottom:932.623500px;}
.y18e{bottom:932.670000px;}
.y3b{bottom:933.685500px;}
.yaf{bottom:944.983500px;}
.y80{bottom:950.692500px;}
.y18d{bottom:952.038000px;}
.y3a{bottom:953.949000px;}
.y8{bottom:955.662000px;}
.yf7{bottom:963.006000px;}
.yae{bottom:965.247000px;}
.y7f{bottom:970.956000px;}
.y18c{bottom:971.404500px;}
.y39{bottom:974.214000px;}
.y7{bottom:977.904000px;}
.yad{bottom:985.512000px;}
.y18b{bottom:990.772500px;}
.y7e{bottom:991.219500px;}
.y38{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.yac{bottom:1005.775500px;}
.y18a{bottom:1010.139000px;}
.y140{bottom:1011.484500px;}
.y37{bottom:1014.742500px;}
.y7d{bottom:1020.450000px;}
.yab{bottom:1026.039000px;}
.y189{bottom:1029.507000px;}
.y13f{bottom:1031.748000px;}
.y36{bottom:1035.006000px;}
.y5{bottom:1040.848500px;}
.yaa{bottom:1046.304000px;}
.y188{bottom:1048.875000px;}
.y35{bottom:1055.269500px;}
.y13e{bottom:1060.978500px;}
.ya9{bottom:1066.567500px;}
.y187{bottom:1068.241500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.ya8{bottom:1086.832500px;}
.y186{bottom:1087.609500px;}
.y33{bottom:1095.798000px;}
.y3{bottom:1100.145000px;}
.y185{bottom:1115.943000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h13{height:28.034756px;}
.h8{height:30.461558px;}
.hc{height:33.112997px;}
.h16{height:33.299897px;}
.hb{height:34.199443px;}
.hf{height:35.052500px;}
.h2e{height:35.503200px;}
.h1a{height:37.263177px;}
.h3f{height:38.734848px;}
.h9{height:39.165235px;}
.h41{height:39.434227px;}
.h27{height:40.353102px;}
.h28{height:40.452006px;}
.h3e{height:41.285042px;}
.h40{height:42.043500px;}
.h17{height:42.500452px;}
.he{height:43.038432px;}
.hd{height:43.516637px;}
.h4{height:43.815515px;}
.h3a{height:44.831700px;}
.h3d{height:46.142106px;}
.h1d{height:46.445641px;}
.h14{height:46.714950px;}
.h29{height:48.305731px;}
.h19{height:49.684236px;}
.h11{height:50.355703px;}
.h2{height:50.931027px;}
.h3c{height:50.999169px;}
.h2c{height:51.293731px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h25{height:54.568211px;}
.h23{height:54.595373px;}
.h24{height:54.694277px;}
.h15{height:54.995897px;}
.h34{height:55.001897px;}
.h26{height:56.062114px;}
.h22{height:56.163676px;}
.h32{height:57.199200px;}
.h2a{height:57.205200px;}
.h36{height:57.983897px;}
.h2f{height:57.989897px;}
.h2b{height:58.276637px;}
.h20{height:58.295897px;}
.h1b{height:59.615842px;}
.h31{height:61.480950px;}
.h1c{height:62.105295px;}
.h2d{height:65.024177px;}
.h33{height:71.965200px;}
.h30{height:72.755897px;}
.h5{height:77.469696px;}
.h1f{height:84.279515px;}
.h1e{height:84.285515px;}
.h3{height:84.648693px;}
.h39{height:87.784637px;}
.h35{height:92.908950px;}
.h37{height:101.944950px;}
.h38{height:134.920950px;}
.h12{height:218.940252px;}
.h10{height:218.940257px;}
.h3b{height:230.188876px;}
.h18{height:290.349247px;}
.h21{height:629.437527px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:256.369202px;}
.w8{width:298.484747px;}
.w6{width:364.819266px;}
.w7{width:451.066662px;}
.w5{width:497.027686px;}
.w4{width:497.504771px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc3{left:8.819506px;}
.xc5{left:14.058586px;}
.xc6{left:17.551306px;}
.xc4{left:23.372506px;}
.x7a{left:27.108340px;}
.x8{left:29.274117px;}
.x7c{left:31.214901px;}
.x7b{left:41.015221px;}
.x40{left:44.116338px;}
.x2{left:60.228752px;}
.x3d{left:61.845739px;}
.x79{left:98.607848px;}
.x71{left:104.704706px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.xc2{left:117.035614px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x4a{left:136.222500px;}
.x65{left:137.983500px;}
.x38{left:142.200000px;}
.xbc{left:143.854500px;}
.x5{left:146.170500px;}
.xb5{left:147.376500px;}
.x1b{left:149.754855px;}
.x44{left:152.019000px;}
.x41{left:154.218929px;}
.x45{left:159.490500px;}
.x72{left:161.622143px;}
.x9f{left:165.394500px;}
.xa0{left:169.134000px;}
.x39{left:170.941500px;}
.x75{left:172.122846px;}
.x78{left:175.428250px;}
.xd7{left:178.369500px;}
.x21{left:180.136500px;}
.x73{left:182.885563px;}
.xa1{left:184.078500px;}
.xa9{left:187.606500px;}
.x3a{left:189.447000px;}
.xd8{left:190.660500px;}
.x33{left:194.160000px;}
.x22{left:195.580500px;}
.x1a{left:197.716500px;}
.x23{left:200.844000px;}
.x2a{left:206.581500px;}
.xcf{left:210.187500px;}
.x81{left:212.436000px;}
.x9{left:213.787500px;}
.x34{left:215.446500px;}
.x3e{left:217.008223px;}
.x7f{left:218.106250px;}
.x70{left:220.935000px;}
.x1e{left:224.232000px;}
.x82{left:227.380500px;}
.x24{left:228.883500px;}
.xa4{left:232.762500px;}
.x7d{left:234.482107px;}
.xb3{left:236.613000px;}
.x2b{left:238.383000px;}
.xd4{left:240.504000px;}
.xa5{left:242.944500px;}
.x76{left:244.106071px;}
.x74{left:245.657999px;}
.xb4{left:247.137000px;}
.x7e{left:248.409143px;}
.x2c{left:252.268500px;}
.x14{left:253.426500px;}
.x77{left:256.269554px;}
.x56{left:258.420000px;}
.x15{left:260.899500px;}
.x16{left:264.646500px;}
.x25{left:270.595500px;}
.x17{left:272.118000px;}
.x57{left:273.972000px;}
.xd0{left:276.946500px;}
.xc7{left:278.095500px;}
.xbd{left:280.179000px;}
.x80{left:283.833000px;}
.x54{left:285.924000px;}
.xd1{left:288.552000px;}
.x3f{left:290.325718px;}
.x2f{left:291.988500px;}
.xb8{left:297.162000px;}
.x9d{left:299.608500px;}
.xd2{left:303.495000px;}
.x42{left:305.232306px;}
.x30{left:313.632000px;}
.x5f{left:316.266000px;}
.xe{left:320.290500px;}
.x58{left:324.357000px;}
.xf{left:327.763500px;}
.x9b{left:334.296000px;}
.x43{left:335.740500px;}
.xb9{left:343.264500px;}
.xbe{left:346.192500px;}
.x60{left:347.884500px;}
.xca{left:350.803500px;}
.xbf{left:352.125000px;}
.x59{left:356.964000px;}
.x8e{left:358.621500px;}
.x86{left:361.756500px;}
.x55{left:365.064000px;}
.xac{left:366.967500px;}
.x61{left:368.200500px;}
.xcd{left:370.870500px;}
.xce{left:372.147000px;}
.xa6{left:373.776000px;}
.x87{left:376.699500px;}
.x5d{left:378.363000px;}
.x96{left:381.765000px;}
.x91{left:382.873500px;}
.x90{left:384.321000px;}
.x1d{left:387.524603px;}
.x8f{left:388.813500px;}
.x97{left:391.948500px;}
.x1c{left:396.805333px;}
.x62{left:398.688000px;}
.x98{left:401.116500px;}
.x3b{left:402.928500px;}
.x92{left:404.478000px;}
.x35{left:405.859500px;}
.x63{left:409.726500px;}
.x64{left:415.146000px;}
.x9e{left:416.155500px;}
.x66{left:417.243000px;}
.x3c{left:418.939500px;}
.x36{left:424.543500px;}
.x10{left:425.937000px;}
.x93{left:427.215000px;}
.x37{left:430.942500px;}
.x11{left:433.408500px;}
.x5e{left:434.598000px;}
.xcb{left:443.308500px;}
.x31{left:449.992500px;}
.xcc{left:451.525500px;}
.xc8{left:457.512000px;}
.xad{left:459.181500px;}
.x8a{left:461.809500px;}
.x32{left:462.921000px;}
.x9c{left:465.762000px;}
.xa2{left:467.217000px;}
.xb0{left:468.564000px;}
.x8b{left:471.991500px;}
.x5a{left:476.311500px;}
.xb1{left:479.476500px;}
.x8c{left:481.084500px;}
.x94{left:487.159500px;}
.x46{left:495.660000px;}
.x2d{left:497.091000px;}
.xae{left:498.466500px;}
.x2e{left:505.986000px;}
.x18{left:512.146500px;}
.x19{left:519.618000px;}
.x47{left:524.052000px;}
.x4f{left:526.393500px;}
.xa7{left:531.906000px;}
.x26{left:533.283000px;}
.x5b{left:536.947500px;}
.x50{left:541.338000px;}
.xb7{left:547.255500px;}
.x6e{left:550.740000px;}
.xc0{left:553.663500px;}
.x51{left:554.677500px;}
.x5c{left:556.969500px;}
.x67{left:558.633000px;}
.xd3{left:565.603500px;}
.x52{left:567.264000px;}
.x68{left:572.197500px;}
.x95{left:575.512500px;}
.xc1{left:582.252000px;}
.x1f{left:583.762500px;}
.x6f{left:589.471500px;}
.x20{left:597.502500px;}
.x85{left:602.547000px;}
.xba{left:603.811500px;}
.xb2{left:605.940000px;}
.x53{left:609.826500px;}
.xa3{left:611.514000px;}
.x99{left:615.387000px;}
.xa{left:616.672500px;}
.xb{left:624.145500px;}
.xd9{left:627.420000px;}
.xda{left:634.146000px;}
.xbb{left:644.877000px;}
.xc9{left:654.580500px;}
.x9a{left:657.922500px;}
.x8d{left:661.462500px;}
.x4b{left:669.745500px;}
.xaa{left:672.930000px;}
.x6c{left:674.166000px;}
.x12{left:686.128500px;}
.x6d{left:687.249000px;}
.x83{left:689.002500px;}
.x13{left:693.600000px;}
.x4c{left:695.071500px;}
.x7{left:701.339982px;}
.x84{left:703.947000px;}
.xaf{left:713.455500px;}
.x27{left:715.017000px;}
.xab{left:719.769000px;}
.x28{left:721.374000px;}
.x88{left:723.900000px;}
.x4d{left:725.274000px;}
.xdc{left:727.233000px;}
.x29{left:731.097000px;}
.x48{left:732.999000px;}
.xb6{left:737.017500px;}
.x89{left:739.447500px;}
.x6a{left:747.813000px;}
.xdb{left:749.533500px;}
.x49{left:752.532000px;}
.x6b{left:754.300500px;}
.x4e{left:757.435500px;}
.xa8{left:759.411000px;}
.x69{left:762.858000px;}
.xc{left:764.367000px;}
.xd5{left:770.109000px;}
.xd{left:771.838500px;}
.xd6{left:776.914500px;}
@media print{
.v13{vertical-align:-43.333333pt;}
.v12{vertical-align:-35.360000pt;}
.v2{vertical-align:-19.290667pt;}
.v3{vertical-align:-17.354667pt;}
.v7{vertical-align:-10.938667pt;}
.v6{vertical-align:-9.706667pt;}
.v4{vertical-align:-7.973333pt;}
.v1e{vertical-align:-6.053333pt;}
.v5{vertical-align:-2.405333pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:2.752000pt;}
.v11{vertical-align:3.824000pt;}
.v16{vertical-align:5.152000pt;}
.va{vertical-align:7.973333pt;}
.v9{vertical-align:9.706667pt;}
.vd{vertical-align:10.938667pt;}
.vf{vertical-align:13.120000pt;}
.v1{vertical-align:19.290667pt;}
.v19{vertical-align:20.698667pt;}
.v10{vertical-align:21.946667pt;}
.ve{vertical-align:32.672000pt;}
.vc{vertical-align:34.234667pt;}
.v8{vertical-align:35.973333pt;}
.v1d{vertical-align:39.349333pt;}
.v14{vertical-align:41.061333pt;}
.v1a{vertical-align:42.437333pt;}
.vb{vertical-align:43.941333pt;}
.v15{vertical-align:47.898667pt;}
.v18{vertical-align:49.093333pt;}
.v1c{vertical-align:70.437333pt;}
.v1b{vertical-align:78.405333pt;}
.ls49{letter-spacing:-0.845610pt;}
.ls43{letter-spacing:-0.365476pt;}
.ls45{letter-spacing:-0.275898pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa6{letter-spacing:0.001007pt;}
.lsa9{letter-spacing:0.002825pt;}
.ls50{letter-spacing:0.002926pt;}
.lsab{letter-spacing:0.004267pt;}
.ls3c{letter-spacing:0.140726pt;}
.ls3a{letter-spacing:0.153715pt;}
.ls3e{letter-spacing:0.175572pt;}
.ls3f{letter-spacing:0.179155pt;}
.lsb{letter-spacing:0.231618pt;}
.ls37{letter-spacing:0.260849pt;}
.ls35{letter-spacing:0.267299pt;}
.ls40{letter-spacing:0.285214pt;}
.ls3b{letter-spacing:0.313521pt;}
.ls34{letter-spacing:0.332511pt;}
.ls3d{letter-spacing:0.358309pt;}
.ls38{letter-spacing:0.368342pt;}
.ls36{letter-spacing:0.386974pt;}
.ls42{letter-spacing:0.425403pt;}
.ls41{letter-spacing:0.461234pt;}
.ls39{letter-spacing:0.483718pt;}
.ls57{letter-spacing:0.487835pt;}
.ls47{letter-spacing:0.515965pt;}
.ls44{letter-spacing:0.537464pt;}
.ls87{letter-spacing:0.596214pt;}
.ls94{letter-spacing:0.601548pt;}
.ls7c{letter-spacing:0.659733pt;}
.ls19{letter-spacing:0.660237pt;}
.ls88{letter-spacing:0.665067pt;}
.ls1f{letter-spacing:0.666378pt;}
.ls54{letter-spacing:0.729548pt;}
.ls46{letter-spacing:0.734534pt;}
.ls90{letter-spacing:0.761067pt;}
.lsf{letter-spacing:0.762682pt;}
.ls92{letter-spacing:0.766400pt;}
.ls18{letter-spacing:0.768015pt;}
.ls67{letter-spacing:0.791733pt;}
.ls6d{letter-spacing:0.797067pt;}
.ls4b{letter-spacing:0.845610pt;}
.ls4c{letter-spacing:0.870692pt;}
.ls2e{letter-spacing:0.883230pt;}
.ls96{letter-spacing:0.904787pt;}
.ls58{letter-spacing:1.006172pt;}
.ls56{letter-spacing:1.009015pt;}
.ls48{letter-spacing:1.110759pt;}
.ls7{letter-spacing:1.133683pt;}
.lsd{letter-spacing:1.166400pt;}
.ls11{letter-spacing:1.166652pt;}
.ls71{letter-spacing:1.166903pt;}
.ls10{letter-spacing:1.167711pt;}
.lse{letter-spacing:1.168015pt;}
.ls89{letter-spacing:1.171733pt;}
.ls24{letter-spacing:1.171985pt;}
.ls64{letter-spacing:1.173044pt;}
.ls16{letter-spacing:1.173348pt;}
.ls1a{letter-spacing:1.262881pt;}
.ls23{letter-spacing:1.299096pt;}
.ls79{letter-spacing:1.308957pt;}
.ls6f{letter-spacing:1.314290pt;}
.ls7e{letter-spacing:1.324800pt;}
.ls53{letter-spacing:1.326400pt;}
.ls5a{letter-spacing:1.327207pt;}
.ls28{letter-spacing:1.330118pt;}
.ls7d{letter-spacing:1.331733pt;}
.ls59{letter-spacing:1.411454pt;}
.ls4d{letter-spacing:1.447570pt;}
.ls4a{letter-spacing:1.504899pt;}
.ls4{letter-spacing:1.654338pt;}
.ls1d{letter-spacing:1.724111pt;}
.ls2a{letter-spacing:1.729444pt;}
.ls31{letter-spacing:2.164214pt;}
.ls0{letter-spacing:2.187733pt;}
.ls12{letter-spacing:2.230778pt;}
.ls51{letter-spacing:2.333593pt;}
.ls8{letter-spacing:2.338926pt;}
.ls5c{letter-spacing:2.498118pt;}
.ls29{letter-spacing:2.590881pt;}
.ls63{letter-spacing:2.652785pt;}
.ls1c{letter-spacing:2.658118pt;}
.ls74{letter-spacing:3.157666pt;}
.ls1b{letter-spacing:3.160429pt;}
.ls4e{letter-spacing:3.160838pt;}
.ls5d{letter-spacing:3.163682pt;}
.ls5f{letter-spacing:3.166172pt;}
.ls20{letter-spacing:3.318400pt;}
.ls8c{letter-spacing:3.323733pt;}
.ls52{letter-spacing:3.560787pt;}
.ls55{letter-spacing:3.791049pt;}
.ls8d{letter-spacing:3.822172pt;}
.ls26{letter-spacing:3.827454pt;}
.ls83{letter-spacing:3.827505pt;}
.ls6a{letter-spacing:3.841920pt;}
.ls30{letter-spacing:3.947174pt;}
.ls2f{letter-spacing:3.952508pt;}
.ls70{letter-spacing:4.067454pt;}
.lsc{letter-spacing:4.072787pt;}
.ls65{letter-spacing:4.227454pt;}
.ls61{letter-spacing:4.232787pt;}
.ls2b{letter-spacing:4.379733pt;}
.ls1e{letter-spacing:4.385067pt;}
.ls25{letter-spacing:4.888787pt;}
.ls17{letter-spacing:6.478172pt;}
.ls5b{letter-spacing:8.169548pt;}
.ls22{letter-spacing:8.472429pt;}
.ls60{letter-spacing:8.983200pt;}
.ls5e{letter-spacing:8.988533pt;}
.ls27{letter-spacing:9.449548pt;}
.ls62{letter-spacing:9.454881pt;}
.ls5{letter-spacing:10.626533pt;}
.ls77{letter-spacing:10.958400pt;}
.ls76{letter-spacing:10.968429pt;}
.ls80{letter-spacing:10.973762pt;}
.ls81{letter-spacing:10.995733pt;}
.ls69{letter-spacing:11.117762pt;}
.ls78{letter-spacing:11.603096pt;}
.ls8a{letter-spacing:11.629762pt;}
.ls85{letter-spacing:11.635096pt;}
.ls6c{letter-spacing:11.645762pt;}
.ls6b{letter-spacing:11.677067pt;}
.lsb2{letter-spacing:11.943115pt;}
.lsaf{letter-spacing:11.954133pt;}
.lsb0{letter-spacing:11.959467pt;}
.ls86{letter-spacing:12.014121pt;}
.ls8b{letter-spacing:12.019454pt;}
.ls32{letter-spacing:12.680429pt;}
.ls33{letter-spacing:12.819096pt;}
.ls2d{letter-spacing:12.963096pt;}
.lsa3{letter-spacing:13.336601pt;}
.ls2c{letter-spacing:13.649067pt;}
.ls7f{letter-spacing:14.152787pt;}
.ls75{letter-spacing:14.158121pt;}
.ls84{letter-spacing:14.158172pt;}
.ls68{letter-spacing:14.174172pt;}
.ls93{letter-spacing:14.558121pt;}
.ls91{letter-spacing:14.563454pt;}
.ls6e{letter-spacing:14.579454pt;}
.ls7b{letter-spacing:15.400429pt;}
.ls73{letter-spacing:16.061762pt;}
.ls14{letter-spacing:16.083096pt;}
.ls9e{letter-spacing:16.089067pt;}
.ls13{letter-spacing:16.112518pt;}
.ls9f{letter-spacing:16.121067pt;}
.lsa2{letter-spacing:16.443733pt;}
.ls4f{letter-spacing:16.460587pt;}
.lsa4{letter-spacing:16.617067pt;}
.lsa{letter-spacing:16.621593pt;}
.ls9d{letter-spacing:16.622400pt;}
.lsa5{letter-spacing:16.659733pt;}
.lsb1{letter-spacing:17.712774pt;}
.ls82{letter-spacing:18.008429pt;}
.ls8f{letter-spacing:18.013762pt;}
.ls72{letter-spacing:18.584787pt;}
.ls7a{letter-spacing:18.990121pt;}
.ls9{letter-spacing:19.810422pt;}
.ls99{letter-spacing:20.749762pt;}
.ls97{letter-spacing:21.134473pt;}
.lsad{letter-spacing:22.547096pt;}
.lsae{letter-spacing:22.579733pt;}
.lsac{letter-spacing:23.107733pt;}
.ls15{letter-spacing:23.229762pt;}
.ls9b{letter-spacing:24.675096pt;}
.ls9c{letter-spacing:24.702400pt;}
.lsa1{letter-spacing:25.016429pt;}
.ls9a{letter-spacing:25.235733pt;}
.lsa0{letter-spacing:25.571733pt;}
.ls98{letter-spacing:31.694121pt;}
.lsa8{letter-spacing:36.485411pt;}
.lsa7{letter-spacing:36.990933pt;}
.lsaa{letter-spacing:39.886933pt;}
.ls1{letter-spacing:50.571733pt;}
.ls8e{letter-spacing:54.953548pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls95{letter-spacing:400.820214pt;}
.ls66{letter-spacing:616.926881pt;}
.ls21{letter-spacing:679.518881pt;}
.ws4c{word-spacing:-13.866571pt;}
.ws30{word-spacing:-13.283467pt;}
.ws4b{word-spacing:-12.384066pt;}
.ws6f{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws50{word-spacing:-9.159282pt;}
.ws4f{word-spacing:-9.136888pt;}
.ws4a{word-spacing:-7.786062pt;}
.ws49{word-spacing:-7.696484pt;}
.ws2e{word-spacing:-4.622646pt;}
.ws31{word-spacing:-4.463245pt;}
.ws1f{word-spacing:-2.444158pt;}
.wsa3{word-spacing:-2.247578pt;}
.ws25{word-spacing:-2.178489pt;}
.ws6d{word-spacing:-1.700284pt;}
.ws6{word-spacing:-1.696326pt;}
.ws93{word-spacing:-1.647150pt;}
.ws86{word-spacing:-1.243341pt;}
.ws41{word-spacing:-1.222079pt;}
.ws5{word-spacing:-1.175671pt;}
.wsa1{word-spacing:-1.099878pt;}
.wsa2{word-spacing:-1.081705pt;}
.ws87{word-spacing:-1.004237pt;}
.ws42{word-spacing:-0.956410pt;}
.wsa4{word-spacing:-0.860774pt;}
.wsd{word-spacing:-0.850142pt;}
.ws96{word-spacing:-0.797008pt;}
.ws26{word-spacing:-0.743874pt;}
.ws3{word-spacing:-0.690740pt;}
.ws66{word-spacing:-0.674950pt;}
.ws1{word-spacing:-0.637606pt;}
.ws79{word-spacing:-0.531339pt;}
.ws29{word-spacing:-0.371937pt;}
.ws28{word-spacing:-0.318803pt;}
.ws48{word-spacing:-0.265669pt;}
.wsaf{word-spacing:-0.239104pt;}
.ws11{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.106268pt;}
.wsa5{word-spacing:-0.095642pt;}
.ws35{word-spacing:-0.079507pt;}
.ws2c{word-spacing:-0.067157pt;}
.ws5b{word-spacing:-0.055366pt;}
.ws10{word-spacing:-0.053134pt;}
.ws9b{word-spacing:-0.047821pt;}
.ws4e{word-spacing:-0.032337pt;}
.ws4d{word-spacing:-0.032248pt;}
.wsaa{word-spacing:-0.023740pt;}
.wsa6{word-spacing:-0.003209pt;}
.ws1d{word-spacing:-0.001941pt;}
.ws59{word-spacing:-0.000576pt;}
.ws0{word-spacing:0.000000pt;}
.ws77{word-spacing:0.047821pt;}
.ws8{word-spacing:0.053134pt;}
.ws8d{word-spacing:0.095642pt;}
.ws14{word-spacing:0.106268pt;}
.ws1c{word-spacing:0.159402pt;}
.ws9a{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.wsb1{word-spacing:0.239104pt;}
.ws32{word-spacing:0.265669pt;}
.wsae{word-spacing:0.286925pt;}
.wse{word-spacing:0.318803pt;}
.ws8c{word-spacing:0.334746pt;}
.ws37{word-spacing:0.371937pt;}
.ws1a{word-spacing:0.425071pt;}
.ws2b{word-spacing:0.478205pt;}
.ws7f{word-spacing:0.531339pt;}
.ws7e{word-spacing:0.584473pt;}
.ws43{word-spacing:0.743874pt;}
.ws92{word-spacing:0.797008pt;}
.wsb{word-spacing:0.850142pt;}
.ws2d{word-spacing:0.903276pt;}
.ws38{word-spacing:0.956410pt;}
.ws21{word-spacing:1.009543pt;}
.ws58{word-spacing:1.062677pt;}
.ws9e{word-spacing:1.115811pt;}
.wsc{word-spacing:1.168945pt;}
.ws2a{word-spacing:1.222079pt;}
.ws55{word-spacing:1.381481pt;}
.ws3c{word-spacing:1.411821pt;}
.ws3a{word-spacing:1.416256pt;}
.ws54{word-spacing:1.434614pt;}
.wsa0{word-spacing:1.594016pt;}
.wsf{word-spacing:1.647150pt;}
.ws2f{word-spacing:1.700284pt;}
.ws57{word-spacing:1.806551pt;}
.ws56{word-spacing:2.125355pt;}
.ws68{word-spacing:2.178489pt;}
.ws64{word-spacing:2.231622pt;}
.wsa9{word-spacing:2.247578pt;}
.ws1b{word-spacing:2.284756pt;}
.ws9c{word-spacing:2.295398pt;}
.ws3e{word-spacing:2.391024pt;}
.wsab{word-spacing:2.438861pt;}
.ws84{word-spacing:2.444158pt;}
.ws44{word-spacing:2.497292pt;}
.ws24{word-spacing:2.656693pt;}
.ws18{word-spacing:2.762961pt;}
.ws88{word-spacing:2.816095pt;}
.ws47{word-spacing:2.869229pt;}
.ws4{word-spacing:2.869248pt;}
.wsb0{word-spacing:2.870323pt;}
.ws8a{word-spacing:3.081764pt;}
.ws5f{word-spacing:3.134898pt;}
.ws98{word-spacing:3.175404pt;}
.ws13{word-spacing:3.188032pt;}
.ws7{word-spacing:3.290756pt;}
.ws5d{word-spacing:3.347434pt;}
.ws90{word-spacing:3.506835pt;}
.wsa8{word-spacing:3.538739pt;}
.ws9d{word-spacing:3.586560pt;}
.ws51{word-spacing:3.719371pt;}
.ws20{word-spacing:3.931906pt;}
.ws5c{word-spacing:4.144442pt;}
.ws6a{word-spacing:4.299200pt;}
.ws69{word-spacing:4.303843pt;}
.wsa{word-spacing:4.410111pt;}
.ws6c{word-spacing:4.463245pt;}
.wsac{word-spacing:4.542976pt;}
.ws16{word-spacing:4.569513pt;}
.ws45{word-spacing:5.104491pt;}
.ws85{word-spacing:5.207119pt;}
.ws46{word-spacing:5.253824pt;}
.ws6b{word-spacing:5.260253pt;}
.ws97{word-spacing:5.313387pt;}
.ws53{word-spacing:5.419654pt;}
.ws52{word-spacing:5.472788pt;}
.ws36{word-spacing:5.525922pt;}
.ws7d{word-spacing:5.579056pt;}
.ws9f{word-spacing:5.632190pt;}
.ws23{word-spacing:5.791591pt;}
.ws91{word-spacing:6.004127pt;}
.ws95{word-spacing:6.535466pt;}
.ws22{word-spacing:6.588599pt;}
.wsad{word-spacing:6.647091pt;}
.ws62{word-spacing:6.680319pt;}
.ws60{word-spacing:6.694867pt;}
.ws17{word-spacing:7.173072pt;}
.ws8e{word-spacing:7.385607pt;}
.ws7b{word-spacing:7.699149pt;}
.ws3b{word-spacing:7.981427pt;}
.ws39{word-spacing:7.983876pt;}
.ws7a{word-spacing:8.129536pt;}
.wsa7{word-spacing:8.368640pt;}
.ws67{word-spacing:8.485824pt;}
.ws8b{word-spacing:8.820222pt;}
.ws94{word-spacing:9.085891pt;}
.ws40{word-spacing:9.192159pt;}
.ws3f{word-spacing:9.245293pt;}
.ws83{word-spacing:11.142246pt;}
.ws71{word-spacing:11.429171pt;}
.ws72{word-spacing:11.432199pt;}
.ws82{word-spacing:11.620454pt;}
.ws70{word-spacing:11.907379pt;}
.ws7c{word-spacing:11.955200pt;}
.ws74{word-spacing:12.959437pt;}
.ws75{word-spacing:12.965773pt;}
.ws78{word-spacing:13.070931pt;}
.ws65{word-spacing:13.164331pt;}
.ws5e{word-spacing:13.177199pt;}
.ws63{word-spacing:13.179157pt;}
.ws73{word-spacing:13.485466pt;}
.ws81{word-spacing:13.533286pt;}
.ws80{word-spacing:14.059315pt;}
.ws9{word-spacing:14.877483pt;}
.ws5a{word-spacing:15.945370pt;}
.ws8f{word-spacing:17.959247pt;}
.ws12{word-spacing:21.306681pt;}
.ws61{word-spacing:21.600491pt;}
.ws89{word-spacing:51.789926pt;}
.ws33{word-spacing:116.676085pt;}
.ws6e{word-spacing:175.213318pt;}
.ws34{word-spacing:217.573751pt;}
.ws3d{word-spacing:232.610315pt;}
.ws76{word-spacing:1069.539140pt;}
.ws99{word-spacing:1070.877807pt;}
._0{margin-left:-10.616218pt;}
._5{margin-left:-6.168883pt;}
._4{margin-left:-4.799174pt;}
._17{margin-left:-3.666237pt;}
._7{margin-left:-2.266244pt;}
._1{margin-left:-1.062677pt;}
._8{width:0.969929pt;}
._2{width:2.329276pt;}
._1d{width:3.468950pt;}
._1c{width:5.712841pt;}
._2d{width:11.009404pt;}
._14{width:12.539593pt;}
._1f{width:13.814805pt;}
._6{width:14.824448pt;}
._d{width:16.418365pt;}
._12{width:18.224916pt;}
._c{width:19.500129pt;}
._1a{width:20.615940pt;}
._e{width:21.838019pt;}
._30{width:22.843702pt;}
._13{width:23.910240pt;}
._1e{width:25.610524pt;}
._10{width:26.566933pt;}
._1b{width:27.470209pt;}
._18{width:28.567508pt;}
._21{width:29.805490pt;}
._20{width:31.010505pt;}
._a{width:31.986588pt;}
._2e{width:33.261801pt;}
._19{width:34.483879pt;}
._b{width:35.387155pt;}
._24{width:37.300224pt;}
._2c{width:38.468919pt;}
._11{width:40.913077pt;}
._22{width:42.034483pt;}
._2b{width:43.197834pt;}
._f{width:45.376322pt;}
._3{width:47.848563pt;}
._9{width:61.847821pt;}
._2f{width:78.904320pt;}
._2a{width:173.732966pt;}
._28{width:206.681498pt;}
._29{width:213.663334pt;}
._27{width:233.269862pt;}
._25{width:256.768541pt;}
._26{width:273.200230pt;}
._15{width:639.436151pt;}
._23{width:1721.417675pt;}
._16{width:1742.671008pt;}
.fs17{font-size:31.880533pt;}
.fs10{font-size:32.247840pt;}
.fs12{font-size:32.337417pt;}
.fs1a{font-size:35.185920pt;}
.fs13{font-size:36.547552pt;}
.fs14{font-size:36.637129pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs11{font-size:38.697408pt;}
.fs19{font-size:39.325440pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs15{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs18{font-size:43.464960pt;}
.fsc{font-size:47.704320pt;}
.fs5{font-size:47.820800pt;}
.fsf{font-size:49.446688pt;}
.fse{font-size:49.536265pt;}
.fs1b{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fsb{font-size:63.605760pt;}
.fs9{font-size:67.157333pt;}
.fs16{font-size:74.387733pt;}
.fsd{font-size:79.507200pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:110.978294pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:2.725184pt;}
.y10{bottom:3.044747pt;}
.yf{bottom:12.578910pt;}
.y2{bottom:15.986365pt;}
.y54{bottom:17.125532pt;}
.yfa{bottom:17.385984pt;}
.yfc{bottom:27.165600pt;}
.y62{bottom:29.897958pt;}
.ya2{bottom:34.084175pt;}
.y30{bottom:56.693333pt;}
.ya1{bottom:59.501744pt;}
.y9e{bottom:67.966802pt;}
.yfd{bottom:69.725040pt;}
.ya6{bottom:75.782424pt;}
.y104{bottom:80.720640pt;}
.y9d{bottom:83.038188pt;}
.y63{bottom:87.150934pt;}
.y97{bottom:88.099307pt;}
.y5b{bottom:93.262667pt;}
.yfb{bottom:93.397920pt;}
.y5a{bottom:96.544000pt;}
.y2f{bottom:100.508000pt;}
.y13d{bottom:104.276000pt;}
.yfe{bottom:112.284480pt;}
.y59{bottom:114.556000pt;}
.y96{bottom:116.692392pt;}
.y2e{bottom:118.520000pt;}
.ya7{bottom:118.522667pt;}
.y13c{bottom:118.888000pt;}
.y53{bottom:127.373069pt;}
.y58{bottom:132.568000pt;}
.y2d{bottom:136.533333pt;}
.yf6{bottom:138.089333pt;}
.y7c{bottom:138.305333pt;}
.y88{bottom:138.460000pt;}
.y13b{bottom:140.168000pt;}
.y5f{bottom:147.667452pt;}
.y5e{bottom:147.923252pt;}
.y52{bottom:149.259762pt;}
.y2c{bottom:154.545333pt;}
.y95{bottom:154.834421pt;}
.yff{bottom:154.843920pt;}
.yf5{bottom:156.101333pt;}
.y7b{bottom:156.317333pt;}
.y57{bottom:158.550667pt;}
.y10a{bottom:161.876000pt;}
.y184{bottom:162.758667pt;}
.y13a{bottom:168.274667pt;}
.y7a{bottom:171.049333pt;}
.ya5{bottom:171.209157pt;}
.y102{bottom:172.135040pt;}
.y2b{bottom:172.558667pt;}
.yf4{bottom:174.114667pt;}
.y79{bottom:174.329333pt;}
.y60{bottom:178.714300pt;}
.y109{bottom:178.972000pt;}
.y101{bottom:183.863680pt;}
.y183{bottom:184.237333pt;}
.y14f{bottom:187.673333pt;}
.y56{bottom:189.501333pt;}
.y94{bottom:189.966651pt;}
.y2a{bottom:190.570667pt;}
.y16f{bottom:191.618667pt;}
.yf3{bottom:192.126667pt;}
.y78{bottom:192.342667pt;}
.y100{bottom:197.403360pt;}
.y182{bottom:197.748000pt;}
.y139{bottom:200.940000pt;}
.y5d{bottom:202.295896pt;}
.y108{bottom:204.037333pt;}
.y93{bottom:205.042516pt;}
.y14e{bottom:205.686667pt;}
.y11b{bottom:206.094667pt;}
.y29{bottom:208.582667pt;}
.y16e{bottom:209.632000pt;}
.y55{bottom:217.610667pt;}
.y138{bottom:218.952000pt;}
.y181{bottom:219.226667pt;}
.y77{bottom:220.748000pt;}
.yf2{bottom:220.766667pt;}
.y107{bottom:221.318667pt;}
.y14d{bottom:223.698667pt;}
.y11a{bottom:224.106667pt;}
.y28{bottom:226.596000pt;}
.y16d{bottom:227.644000pt;}
.y61{bottom:229.589396pt;}
.y76{bottom:229.861333pt;}
.y180{bottom:232.736000pt;}
.ya0{bottom:236.260217pt;}
.y137{bottom:236.965333pt;}
.y51{bottom:237.548000pt;}
.y92{bottom:238.114467pt;}
.yf1{bottom:238.778667pt;}
.y14c{bottom:241.712000pt;}
.y119{bottom:242.118667pt;}
.y27{bottom:244.608000pt;}
.y16c{bottom:245.656000pt;}
.y17f{bottom:246.245333pt;}
.y1b0{bottom:248.856000pt;}
.y9f{bottom:251.309209pt;}
.y99{bottom:252.133320pt;}
.ya4{bottom:253.700923pt;}
.y136{bottom:254.977333pt;}
.yf0{bottom:256.790667pt;}
.y14b{bottom:259.724000pt;}
.y26{bottom:262.621333pt;}
.y16b{bottom:263.669333pt;}
.y75{bottom:265.000000pt;}
.y1af{bottom:266.070667pt;}
.y98{bottom:267.209185pt;}
.y91{bottom:271.195377pt;}
.y12a{bottom:272.097333pt;}
.y135{bottom:272.990667pt;}
.y118{bottom:273.230667pt;}
.y74{bottom:274.112000pt;}
.yef{bottom:274.804000pt;}
.y17e{bottom:275.694667pt;}
.y14a{bottom:277.736000pt;}
.y25{bottom:280.633333pt;}
.y16a{bottom:281.681333pt;}
.y1ae{bottom:283.286667pt;}
.y1ad{bottom:283.646667pt;}
.y90{bottom:286.262284pt;}
.y129{bottom:289.193333pt;}
.y117{bottom:290.326667pt;}
.y17d{bottom:293.708000pt;}
.yee{bottom:294.144000pt;}
.y149{bottom:295.749333pt;}
.yd3{bottom:297.061333pt;}
.y24{bottom:298.645333pt;}
.y134{bottom:298.973333pt;}
.y169{bottom:299.694667pt;}
.yd2{bottom:304.389333pt;}
.yd1{bottom:307.670667pt;}
.y17c{bottom:311.720000pt;}
.y73{bottom:311.804000pt;}
.yed{bottom:312.157333pt;}
.y1ac{bottom:312.576000pt;}
.y128{bottom:314.258667pt;}
.y116{bottom:315.392000pt;}
.y23{bottom:316.658667pt;}
.y168{bottom:317.706667pt;}
.y8f{bottom:320.032939pt;}
.y148{bottom:321.732000pt;}
.y133{bottom:326.766667pt;}
.y17b{bottom:329.733333pt;}
.y1ab{bottom:329.790667pt;}
.y72{bottom:329.817333pt;}
.yeb{bottom:330.169333pt;}
.y22{bottom:334.670667pt;}
.yec{bottom:334.992000pt;}
.y167{bottom:335.718667pt;}
.y132{bottom:343.862667pt;}
.y1aa{bottom:347.006667pt;}
.y8e{bottom:347.443603pt;}
.y17a{bottom:347.745333pt;}
.y71{bottom:347.829333pt;}
.yea{bottom:348.182667pt;}
.y147{bottom:349.841333pt;}
.y21{bottom:352.684000pt;}
.y166{bottom:353.732000pt;}
.yd0{bottom:361.402667pt;}
.y8d{bottom:362.519468pt;}
.y1a9{bottom:364.222667pt;}
.y179{bottom:365.757333pt;}
.y70{bottom:365.841333pt;}
.y146{bottom:366.937333pt;}
.ye9{bottom:367.522667pt;}
.y131{bottom:368.928000pt;}
.y20{bottom:370.696000pt;}
.y165{bottom:371.744000pt;}
.ycf{bottom:376.133333pt;}
.yce{bottom:379.414667pt;}
.y1a8{bottom:381.437333pt;}
.y178{bottom:383.770667pt;}
.y6f{bottom:383.854667pt;}
.ye7{bottom:385.536000pt;}
.y1f{bottom:388.708000pt;}
.y164{bottom:389.757333pt;}
.ye8{bottom:390.357333pt;}
.y145{bottom:392.002667pt;}
.ycd{bottom:394.146667pt;}
.ycc{bottom:397.428000pt;}
.y1a7{bottom:398.653333pt;}
.y177{bottom:401.782667pt;}
.y6e{bottom:401.866667pt;}
.ye6{bottom:403.548000pt;}
.y8c{bottom:405.803235pt;}
.y162{bottom:407.769333pt;}
.y163{bottom:412.590667pt;}
.y1e{bottom:414.690667pt;}
.ycb{bottom:415.440000pt;}
.y1a6{bottom:415.868000pt;}
.y176{bottom:419.796000pt;}
.y6d{bottom:419.880000pt;}
.ye5{bottom:421.561333pt;}
.y161{bottom:425.781333pt;}
.y1a5{bottom:433.084000pt;}
.yca{bottom:433.452000pt;}
.y175{bottom:437.808000pt;}
.y6c{bottom:437.892000pt;}
.y160{bottom:443.794667pt;}
.y8b{bottom:443.855687pt;}
.ye4{bottom:450.200000pt;}
.y1a4{bottom:450.300000pt;}
.yc9{bottom:451.465333pt;}
.y50{bottom:451.680000pt;}
.y6b{bottom:455.904000pt;}
.y8a{bottom:457.444568pt;}
.y15f{bottom:461.806667pt;}
.y174{bottom:463.790667pt;}
.y1a3{bottom:467.514667pt;}
.ye3{bottom:468.212000pt;}
.yc8{bottom:469.477333pt;}
.y106{bottom:469.581333pt;}
.y4f{bottom:469.692000pt;}
.y15e{bottom:479.820000pt;}
.y1d{bottom:481.646667pt;}
.y6a{bottom:481.886667pt;}
.y1a2{bottom:484.730667pt;}
.ye2{bottom:486.225333pt;}
.y105{bottom:486.677333pt;}
.yc6{bottom:487.490667pt;}
.y4e{bottom:487.704000pt;}
.y173{bottom:491.900000pt;}
.y9c{bottom:492.764911pt;}
.yc7{bottom:496.330667pt;}
.y15d{bottom:497.832000pt;}
.ya3{bottom:497.942481pt;}
.y1c{bottom:499.658667pt;}
.y1a1{bottom:501.945333pt;}
.ye1{bottom:504.237333pt;}
.yc5{bottom:505.502667pt;}
.y4d{bottom:505.717333pt;}
.y9b{bottom:507.831818pt;}
.y172{bottom:508.996000pt;}
.y103{bottom:511.744000pt;}
.y69{bottom:512.837333pt;}
.y15c{bottom:515.844000pt;}
.y1a0{bottom:519.161333pt;}
.ye0{bottom:522.250667pt;}
.y9a{bottom:522.880810pt;}
.y89{bottom:523.355570pt;}
.yc4{bottom:523.514667pt;}
.y4c{bottom:523.729333pt;}
.y171{bottom:526.092000pt;}
.yf8{bottom:529.024000pt;}
.y68{bottom:530.850667pt;}
.y1b{bottom:533.612000pt;}
.y15b{bottom:533.857333pt;}
.y19f{bottom:536.377333pt;}
.yc3{bottom:538.246667pt;}
.yde{bottom:540.262667pt;}
.yc2{bottom:541.528000pt;}
.y4b{bottom:541.742667pt;}
.ydf{bottom:545.084000pt;}
.y67{bottom:548.862667pt;}
.y170{bottom:551.157333pt;}
.y1a{bottom:551.624000pt;}
.y15a{bottom:551.869333pt;}
.y19e{bottom:553.592000pt;}
.ydd{bottom:558.274667pt;}
.y127{bottom:559.136000pt;}
.y4a{bottom:559.754667pt;}
.y115{bottom:560.269333pt;}
.yc0{bottom:564.630667pt;}
.y66{bottom:566.876000pt;}
.y19{bottom:569.637333pt;}
.y159{bottom:569.882667pt;}
.y19d{bottom:570.808000pt;}
.yc1{bottom:575.661333pt;}
.ybf{bottom:576.180000pt;}
.ydc{bottom:576.288000pt;}
.y126{bottom:577.148000pt;}
.y49{bottom:577.766667pt;}
.y114{bottom:578.281333pt;}
.ybd{bottom:578.942667pt;}
.y18{bottom:587.649333pt;}
.y158{bottom:587.894667pt;}
.y19c{bottom:588.024000pt;}
.y65{bottom:592.858667pt;}
.ybe{bottom:593.289333pt;}
.ydb{bottom:594.300000pt;}
.y125{bottom:595.160000pt;}
.y48{bottom:595.780000pt;}
.y113{bottom:596.294667pt;}
.y19b{bottom:605.238667pt;}
.y17{bottom:605.662667pt;}
.y157{bottom:605.906667pt;}
.yda{bottom:612.313333pt;}
.y124{bottom:613.173333pt;}
.y130{bottom:613.489333pt;}
.y47{bottom:613.792000pt;}
.ybc{bottom:617.658667pt;}
.ybb{bottom:620.938667pt;}
.y64{bottom:620.968000pt;}
.y112{bottom:622.277333pt;}
.y19a{bottom:622.454667pt;}
.y16{bottom:623.674667pt;}
.y156{bottom:623.920000pt;}
.y144{bottom:628.909333pt;}
.yd9{bottom:630.325333pt;}
.y123{bottom:631.185333pt;}
.y12f{bottom:631.501333pt;}
.y46{bottom:631.805333pt;}
.yba{bottom:635.670667pt;}
.yb9{bottom:638.952000pt;}
.y199{bottom:639.669333pt;}
.y5c{bottom:640.904000pt;}
.y15{bottom:641.686667pt;}
.y155{bottom:641.932000pt;}
.y143{bottom:646.921333pt;}
.yd8{bottom:648.337333pt;}
.y122{bottom:649.198667pt;}
.y12e{bottom:649.513333pt;}
.y45{bottom:649.817333pt;}
.y111{bottom:653.228000pt;}
.y198{bottom:656.885333pt;}
.yb8{bottom:656.964000pt;}
.y14{bottom:659.700000pt;}
.y154{bottom:659.945333pt;}
.y142{bottom:664.934667pt;}
.yd7{bottom:666.350667pt;}
.y121{bottom:667.210667pt;}
.y12d{bottom:667.526667pt;}
.y44{bottom:667.829333pt;}
.y110{bottom:671.240000pt;}
.y197{bottom:674.101333pt;}
.yb7{bottom:674.977333pt;}
.y13{bottom:677.712000pt;}
.y153{bottom:677.957333pt;}
.y141{bottom:682.946667pt;}
.y120{bottom:685.222667pt;}
.y12c{bottom:685.538667pt;}
.y43{bottom:685.842667pt;}
.y10f{bottom:689.252000pt;}
.y196{bottom:691.316000pt;}
.yd6{bottom:692.333333pt;}
.y12{bottom:695.725333pt;}
.yb6{bottom:700.958667pt;}
.y42{bottom:703.854667pt;}
.y152{bottom:703.940000pt;}
.y195{bottom:708.532000pt;}
.y11f{bottom:711.205333pt;}
.y12b{bottom:711.521333pt;}
.y11{bottom:713.737333pt;}
.y10e{bottom:715.234667pt;}
.y87{bottom:718.972000pt;}
.y41{bottom:721.868000pt;}
.yd5{bottom:723.284000pt;}
.y194{bottom:725.746667pt;}
.yb5{bottom:731.909333pt;}
.y151{bottom:732.049333pt;}
.y86{bottom:736.984000pt;}
.y11e{bottom:739.314667pt;}
.y40{bottom:739.880000pt;}
.y193{bottom:742.962667pt;}
.y10d{bottom:743.344000pt;}
.ye{bottom:745.233301pt;}
.yd{bottom:745.582667pt;}
.y150{bottom:749.145333pt;}
.yb4{bottom:749.922667pt;}
.yd4{bottom:751.393333pt;}
.y85{bottom:754.997333pt;}
.y11d{bottom:756.410667pt;}
.y3f{bottom:757.892000pt;}
.y192{bottom:760.178667pt;}
.y10c{bottom:760.440000pt;}
.yb3{bottom:767.934667pt;}
.y84{bottom:773.009333pt;}
.y3e{bottom:775.905333pt;}
.y191{bottom:777.393333pt;}
.yc{bottom:780.580000pt;}
.y11c{bottom:781.477333pt;}
.y10b{bottom:785.506667pt;}
.yb2{bottom:785.948000pt;}
.y83{bottom:791.021333pt;}
.y3d{bottom:793.917333pt;}
.y190{bottom:794.609333pt;}
.yb{bottom:796.720000pt;}
.yb1{bottom:803.960000pt;}
.y82{bottom:809.034667pt;}
.y18f{bottom:811.824000pt;}
.y3c{bottom:811.930667pt;}
.ya{bottom:817.198667pt;}
.yb0{bottom:821.972000pt;}
.y81{bottom:827.046667pt;}
.y9{bottom:828.998667pt;}
.y18e{bottom:829.040000pt;}
.y3b{bottom:829.942667pt;}
.yaf{bottom:839.985333pt;}
.y80{bottom:845.060000pt;}
.y18d{bottom:846.256000pt;}
.y3a{bottom:847.954667pt;}
.y8{bottom:849.477333pt;}
.yf7{bottom:856.005333pt;}
.yae{bottom:857.997333pt;}
.y7f{bottom:863.072000pt;}
.y18c{bottom:863.470667pt;}
.y39{bottom:865.968000pt;}
.y7{bottom:869.248000pt;}
.yad{bottom:876.010667pt;}
.y18b{bottom:880.686667pt;}
.y7e{bottom:881.084000pt;}
.y38{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.yac{bottom:894.022667pt;}
.y18a{bottom:897.901333pt;}
.y140{bottom:899.097333pt;}
.y37{bottom:901.993333pt;}
.y7d{bottom:907.066667pt;}
.yab{bottom:912.034667pt;}
.y189{bottom:915.117333pt;}
.y13f{bottom:917.109333pt;}
.y36{bottom:920.005333pt;}
.y5{bottom:925.198667pt;}
.yaa{bottom:930.048000pt;}
.y188{bottom:932.333333pt;}
.y35{bottom:938.017333pt;}
.y13e{bottom:943.092000pt;}
.ya9{bottom:948.060000pt;}
.y187{bottom:949.548000pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.ya8{bottom:966.073333pt;}
.y186{bottom:966.764000pt;}
.y33{bottom:974.042667pt;}
.y3{bottom:977.906667pt;}
.y185{bottom:991.949333pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h13{height:24.919783pt;}
.h8{height:27.076941pt;}
.hc{height:29.433775pt;}
.h16{height:29.599908pt;}
.hb{height:30.399505pt;}
.hf{height:31.157778pt;}
.h2e{height:31.558400pt;}
.h1a{height:33.122824pt;}
.h3f{height:34.430976pt;}
.h9{height:34.813542pt;}
.h41{height:35.052646pt;}
.h27{height:35.869424pt;}
.h28{height:35.957339pt;}
.h3e{height:36.697815pt;}
.h40{height:37.372000pt;}
.h17{height:37.778179pt;}
.he{height:38.256384pt;}
.hd{height:38.681455pt;}
.h4{height:38.947124pt;}
.h3a{height:39.850400pt;}
.h3d{height:41.015205pt;}
.h1d{height:41.285014pt;}
.h14{height:41.524400pt;}
.h29{height:42.938428pt;}
.h19{height:44.163765pt;}
.h11{height:44.760625pt;}
.h2{height:45.272024pt;}
.h3c{height:45.332595pt;}
.h2c{height:45.594428pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h25{height:48.505076pt;}
.h23{height:48.529220pt;}
.h24{height:48.617135pt;}
.h15{height:48.885242pt;}
.h34{height:48.890575pt;}
.h26{height:49.832990pt;}
.h22{height:49.923267pt;}
.h32{height:50.843733pt;}
.h2a{height:50.849067pt;}
.h36{height:51.541242pt;}
.h2f{height:51.546575pt;}
.h2b{height:51.801455pt;}
.h20{height:51.818575pt;}
.h1b{height:52.991859pt;}
.h31{height:54.649733pt;}
.h1c{height:55.204706pt;}
.h2d{height:57.799269pt;}
.h33{height:63.969067pt;}
.h30{height:64.671908pt;}
.h5{height:68.861952pt;}
.h1f{height:74.915124pt;}
.h1e{height:74.920458pt;}
.h3{height:75.243283pt;}
.h39{height:78.030788pt;}
.h35{height:82.585733pt;}
.h37{height:90.617733pt;}
.h38{height:119.929733pt;}
.h12{height:194.613557pt;}
.h10{height:194.613562pt;}
.h3b{height:204.612334pt;}
.h18{height:258.088220pt;}
.h21{height:559.500024pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:227.883735pt;}
.w8{width:265.319775pt;}
.w6{width:324.283792pt;}
.w7{width:400.948144pt;}
.w5{width:441.802387pt;}
.w4{width:442.226463pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc3{left:7.839561pt;}
.xc5{left:12.496521pt;}
.xc6{left:15.601161pt;}
.xc4{left:20.775561pt;}
.x7a{left:24.096303pt;}
.x8{left:26.021437pt;}
.x7c{left:27.746579pt;}
.x7b{left:36.457975pt;}
.x40{left:39.214522pt;}
.x2{left:53.536669pt;}
.x3d{left:54.973990pt;}
.x79{left:87.651421pt;}
.x71{left:93.070849pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.xc2{left:104.031657pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x4a{left:121.086667pt;}
.x65{left:122.652000pt;}
.x38{left:126.400000pt;}
.xbc{left:127.870667pt;}
.x5{left:129.929333pt;}
.xb5{left:131.001333pt;}
.x1b{left:133.115427pt;}
.x44{left:135.128000pt;}
.x41{left:137.083493pt;}
.x45{left:141.769333pt;}
.x72{left:143.664127pt;}
.x9f{left:147.017333pt;}
.xa0{left:150.341333pt;}
.x39{left:151.948000pt;}
.x75{left:152.998085pt;}
.x78{left:155.936222pt;}
.xd7{left:158.550667pt;}
.x21{left:160.121333pt;}
.x73{left:162.564945pt;}
.xa1{left:163.625333pt;}
.xa9{left:166.761333pt;}
.x3a{left:168.397333pt;}
.xd8{left:169.476000pt;}
.x33{left:172.586667pt;}
.x22{left:173.849333pt;}
.x1a{left:175.748000pt;}
.x23{left:178.528000pt;}
.x2a{left:183.628000pt;}
.xcf{left:186.833333pt;}
.x81{left:188.832000pt;}
.x9{left:190.033333pt;}
.x34{left:191.508000pt;}
.x3e{left:192.896198pt;}
.x7f{left:193.872223pt;}
.x70{left:196.386667pt;}
.x1e{left:199.317333pt;}
.x82{left:202.116000pt;}
.x24{left:203.452000pt;}
.xa4{left:206.900000pt;}
.x7d{left:208.428539pt;}
.xb3{left:210.322667pt;}
.x2b{left:211.896000pt;}
.xd4{left:213.781333pt;}
.xa5{left:215.950667pt;}
.x76{left:216.983175pt;}
.x74{left:218.362665pt;}
.xb4{left:219.677333pt;}
.x7e{left:220.808127pt;}
.x2c{left:224.238667pt;}
.x14{left:225.268000pt;}
.x77{left:227.795159pt;}
.x56{left:229.706667pt;}
.x15{left:231.910667pt;}
.x16{left:235.241333pt;}
.x25{left:240.529333pt;}
.x17{left:241.882667pt;}
.x57{left:243.530667pt;}
.xd0{left:246.174667pt;}
.xc7{left:247.196000pt;}
.xbd{left:249.048000pt;}
.x80{left:252.296000pt;}
.x54{left:254.154667pt;}
.xd1{left:256.490667pt;}
.x3f{left:258.067305pt;}
.x2f{left:259.545333pt;}
.xb8{left:264.144000pt;}
.x9d{left:266.318667pt;}
.xd2{left:269.773333pt;}
.x42{left:271.317605pt;}
.x30{left:278.784000pt;}
.x5f{left:281.125333pt;}
.xe{left:284.702667pt;}
.x58{left:288.317333pt;}
.xf{left:291.345333pt;}
.x9b{left:297.152000pt;}
.x43{left:298.436000pt;}
.xb9{left:305.124000pt;}
.xbe{left:307.726667pt;}
.x60{left:309.230667pt;}
.xca{left:311.825333pt;}
.xbf{left:313.000000pt;}
.x59{left:317.301333pt;}
.x8e{left:318.774667pt;}
.x86{left:321.561333pt;}
.x55{left:324.501333pt;}
.xac{left:326.193333pt;}
.x61{left:327.289333pt;}
.xcd{left:329.662667pt;}
.xce{left:330.797333pt;}
.xa6{left:332.245333pt;}
.x87{left:334.844000pt;}
.x5d{left:336.322667pt;}
.x96{left:339.346667pt;}
.x91{left:340.332000pt;}
.x90{left:341.618667pt;}
.x1d{left:344.466313pt;}
.x8f{left:345.612000pt;}
.x97{left:348.398667pt;}
.x1c{left:352.715851pt;}
.x62{left:354.389333pt;}
.x98{left:356.548000pt;}
.x3b{left:358.158667pt;}
.x92{left:359.536000pt;}
.x35{left:360.764000pt;}
.x63{left:364.201333pt;}
.x64{left:369.018667pt;}
.x9e{left:369.916000pt;}
.x66{left:370.882667pt;}
.x3c{left:372.390667pt;}
.x36{left:377.372000pt;}
.x10{left:378.610667pt;}
.x93{left:379.746667pt;}
.x37{left:383.060000pt;}
.x11{left:385.252000pt;}
.x5e{left:386.309333pt;}
.xcb{left:394.052000pt;}
.x31{left:399.993333pt;}
.xcc{left:401.356000pt;}
.xc8{left:406.677333pt;}
.xad{left:408.161333pt;}
.x8a{left:410.497333pt;}
.x32{left:411.485333pt;}
.x9c{left:414.010667pt;}
.xa2{left:415.304000pt;}
.xb0{left:416.501333pt;}
.x8b{left:419.548000pt;}
.x5a{left:423.388000pt;}
.xb1{left:426.201333pt;}
.x8c{left:427.630667pt;}
.x94{left:433.030667pt;}
.x46{left:440.586667pt;}
.x2d{left:441.858667pt;}
.xae{left:443.081333pt;}
.x2e{left:449.765333pt;}
.x18{left:455.241333pt;}
.x19{left:461.882667pt;}
.x47{left:465.824000pt;}
.x4f{left:467.905333pt;}
.xa7{left:472.805333pt;}
.x26{left:474.029333pt;}
.x5b{left:477.286667pt;}
.x50{left:481.189333pt;}
.xb7{left:486.449333pt;}
.x6e{left:489.546667pt;}
.xc0{left:492.145333pt;}
.x51{left:493.046667pt;}
.x5c{left:495.084000pt;}
.x67{left:496.562667pt;}
.xd3{left:502.758667pt;}
.x52{left:504.234667pt;}
.x68{left:508.620000pt;}
.x95{left:511.566667pt;}
.xc1{left:517.557333pt;}
.x1f{left:518.900000pt;}
.x6f{left:523.974667pt;}
.x20{left:531.113333pt;}
.x85{left:535.597333pt;}
.xba{left:536.721333pt;}
.xb2{left:538.613333pt;}
.x53{left:542.068000pt;}
.xa3{left:543.568000pt;}
.x99{left:547.010667pt;}
.xa{left:548.153333pt;}
.xb{left:554.796000pt;}
.xd9{left:557.706667pt;}
.xda{left:563.685333pt;}
.xbb{left:573.224000pt;}
.xc9{left:581.849333pt;}
.x9a{left:584.820000pt;}
.x8d{left:587.966667pt;}
.x4b{left:595.329333pt;}
.xaa{left:598.160000pt;}
.x6c{left:599.258667pt;}
.x12{left:609.892000pt;}
.x6d{left:610.888000pt;}
.x83{left:612.446667pt;}
.x13{left:616.533333pt;}
.x4c{left:617.841333pt;}
.x7{left:623.413317pt;}
.x84{left:625.730667pt;}
.xaf{left:634.182667pt;}
.x27{left:635.570667pt;}
.xab{left:639.794667pt;}
.x28{left:641.221333pt;}
.x88{left:643.466667pt;}
.x4d{left:644.688000pt;}
.xdc{left:646.429333pt;}
.x29{left:649.864000pt;}
.x48{left:651.554667pt;}
.xb6{left:655.126667pt;}
.x89{left:657.286667pt;}
.x6a{left:664.722667pt;}
.xdb{left:666.252000pt;}
.x49{left:668.917333pt;}
.x6b{left:670.489333pt;}
.x4e{left:673.276000pt;}
.xa8{left:675.032000pt;}
.x69{left:678.096000pt;}
.xc{left:679.437333pt;}
.xd5{left:684.541333pt;}
.xd{left:686.078667pt;}
.xd6{left:690.590667pt;}
}




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