
    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_1830de2cab313326de5d6b71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_c173603f7a4e9bef6ca1b05e.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_e2ebc7450896b5d25db43690.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_6f2e3141cfe509ba78837aec.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_b5711b08949e4d5e1a898b50.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_8f17da48a451cb7c4f4aae88.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_37e018c9111f89f364364fc6.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_02846badf3e1dde77f2c6ba9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.852000;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_677030c631737a1a07a99700.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dabf1cc78f8d706d0792d51d.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_97bf3f5ee98109e2808c72eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.990000;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_64dd405317f1d15ac58dda20.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8938bf4f933ebdfcd113a92f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_aae73128bc845d6fcbd1107a.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b8408b423e2101fb642c3f7b.woff2')format("woff");}.fff{font-family:fff;line-height:0.745000;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_0911b6ee246b5de9695385bc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.850000;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_43f6b4ff52233cecbd86dcbe.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a3e8e942f1eb5e9d28525f09.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m6{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);}
.m10{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);}
.m12{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);}
.m1e{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);}
.m9{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);}
.m16{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);}
.m23{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);}
.m1a{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);}
.m1c{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);}
.m1b{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);}
.m8{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);}
.m19{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);}
.m26{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m14{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);}
.m5{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);}
.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);}
.md{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);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m27{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);}
.m11{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);}
.m3{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);}
.m22{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);}
.mb{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);}
.m18{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);}
.m1d{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.mc{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);}
.m2{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);}
.m25{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);}
.ma{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);}
.m15{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);}
.m7{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);}
.v9{vertical-align:-102.252000px;}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-11.760000px;}
.v4{vertical-align:-10.464000px;}
.v7{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:4.602000px;}
.vc{vertical-align:11.760000px;}
.v12{vertical-align:14.760000px;}
.vf{vertical-align:16.176000px;}
.v6{vertical-align:17.406000px;}
.v1a{vertical-align:18.558000px;}
.v13{vertical-align:20.394000px;}
.v1{vertical-align:21.702000px;}
.v17{vertical-align:23.550000px;}
.v5{vertical-align:24.690000px;}
.v11{vertical-align:26.304000px;}
.v18{vertical-align:30.945300px;}
.va{vertical-align:36.450000px;}
.v16{vertical-align:41.010000px;}
.v14{vertical-align:42.090000px;}
.v15{vertical-align:47.634000px;}
.v19{vertical-align:49.314000px;}
.vd{vertical-align:66.378000px;}
.ve{vertical-align:82.554000px;}
.vb{vertical-align:102.252000px;}
.v8{vertical-align:114.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls93{letter-spacing:0.000435px;}
.ls95{letter-spacing:0.000800px;}
.lsa5{letter-spacing:0.001996px;}
.lsa1{letter-spacing:0.003178px;}
.lsa8{letter-spacing:0.003548px;}
.ls9a{letter-spacing:0.004800px;}
.ls83{letter-spacing:0.450017px;}
.ls9f{letter-spacing:0.503764px;}
.ls23{letter-spacing:0.548815px;}
.lsab{letter-spacing:0.669000px;}
.lsae{letter-spacing:0.670445px;}
.ls13{letter-spacing:0.670741px;}
.ls4f{letter-spacing:0.673174px;}
.lsac{letter-spacing:0.675000px;}
.ls8e{letter-spacing:0.676741px;}
.ls4e{letter-spacing:0.679174px;}
.ls4d{letter-spacing:0.707607px;}
.ls7f{letter-spacing:0.740700px;}
.ls8b{letter-spacing:0.744017px;}
.ls79{letter-spacing:0.746383px;}
.ls46{letter-spacing:0.746700px;}
.ls3b{letter-spacing:0.746725px;}
.lsd{letter-spacing:0.748200px;}
.ls8a{letter-spacing:0.750017px;}
.ls2b{letter-spacing:0.760457px;}
.ls19{letter-spacing:0.882571px;}
.ls18{letter-spacing:0.888571px;}
.ls32{letter-spacing:0.992725px;}
.ls14{letter-spacing:0.994200px;}
.ls2e{letter-spacing:0.995675px;}
.ls39{letter-spacing:0.998725px;}
.ls9{letter-spacing:1.000200px;}
.ls29{letter-spacing:1.134571px;}
.ls3e{letter-spacing:1.166383px;}
.ls6{letter-spacing:1.275394px;}
.ls75{letter-spacing:1.318200px;}
.lsb{letter-spacing:1.420741px;}
.ls43{letter-spacing:1.451607px;}
.ls22{letter-spacing:1.452571px;}
.ls25{letter-spacing:1.455657px;}
.ls92{letter-spacing:1.461483px;}
.lsc{letter-spacing:1.490725px;}
.ls42{letter-spacing:1.491762px;}
.ls4a{letter-spacing:1.492483px;}
.ls31{letter-spacing:1.493675px;}
.ls8d{letter-spacing:1.494017px;}
.ls12{letter-spacing:1.494172px;}
.ls67{letter-spacing:1.496700px;}
.ls7c{letter-spacing:1.497762px;}
.ls44{letter-spacing:1.498483px;}
.ls21{letter-spacing:1.500172px;}
.ls1a{letter-spacing:1.834741px;}
.ls3{letter-spacing:1.861130px;}
.ls10{letter-spacing:1.900200px;}
.ls53{letter-spacing:1.906115px;}
.ls26{letter-spacing:1.906200px;}
.ls1c{letter-spacing:1.939625px;}
.ls2a{letter-spacing:2.016022px;}
.ls41{letter-spacing:2.086766px;}
.ls3f{letter-spacing:2.092766px;}
.ls60{letter-spacing:2.177108px;}
.ls72{letter-spacing:2.183108px;}
.ls71{letter-spacing:2.194741px;}
.ls5f{letter-spacing:2.200741px;}
.ls6d{letter-spacing:2.604017px;}
.ls5d{letter-spacing:2.902200px;}
.ls36{letter-spacing:2.906725px;}
.ls58{letter-spacing:2.908115px;}
.ls70{letter-spacing:2.908200px;}
.ls20{letter-spacing:2.914741px;}
.ls8f{letter-spacing:2.983200px;}
.ls45{letter-spacing:2.984700px;}
.ls0{letter-spacing:2.989200px;}
.ls4b{letter-spacing:2.990700px;}
.ls1f{letter-spacing:3.284383px;}
.ls40{letter-spacing:3.290383px;}
.ls62{letter-spacing:3.342583px;}
.ls73{letter-spacing:3.348583px;}
.ls86{letter-spacing:3.516017px;}
.ls89{letter-spacing:3.553200px;}
.ls33{letter-spacing:3.590700px;}
.ls4c{letter-spacing:3.733200px;}
.lse{letter-spacing:3.739200px;}
.ls55{letter-spacing:4.294494px;}
.ls56{letter-spacing:4.300494px;}
.ls5e{letter-spacing:4.302571px;}
.ls1e{letter-spacing:4.303200px;}
.ls76{letter-spacing:4.531258px;}
.lsa{letter-spacing:4.620571px;}
.ls15{letter-spacing:4.626571px;}
.ls1d{letter-spacing:5.005625px;}
.ls88{letter-spacing:5.011625px;}
.ls84{letter-spacing:5.233200px;}
.ls5a{letter-spacing:5.296494px;}
.ls87{letter-spacing:5.797200px;}
.ls9d{letter-spacing:7.697498px;}
.ls91{letter-spacing:7.741829px;}
.ls77{letter-spacing:7.846741px;}
.ls6a{letter-spacing:7.916700px;}
.ls57{letter-spacing:8.527200px;}
.lsf{letter-spacing:10.636741px;}
.ls2d{letter-spacing:10.665657px;}
.ls65{letter-spacing:10.712100px;}
.ls9e{letter-spacing:11.112088px;}
.ls4{letter-spacing:11.954850px;}
.ls28{letter-spacing:12.339483px;}
.ls9c{letter-spacing:12.343133px;}
.lsb4{letter-spacing:12.368047px;}
.ls48{letter-spacing:12.370200px;}
.ls6b{letter-spacing:12.800100px;}
.ls61{letter-spacing:12.806100px;}
.ls85{letter-spacing:13.083483px;}
.ls49{letter-spacing:13.089483px;}
.ls27{letter-spacing:13.116172px;}
.ls7d{letter-spacing:13.116925px;}
.lsb7{letter-spacing:13.188280px;}
.lsbb{letter-spacing:13.436004px;}
.lsb3{letter-spacing:13.448400px;}
.lsb5{letter-spacing:13.454400px;}
.lsb6{letter-spacing:13.478256px;}
.lsb8{letter-spacing:13.502207px;}
.lsba{letter-spacing:13.580826px;}
.ls96{letter-spacing:14.122445px;}
.ls74{letter-spacing:14.491258px;}
.lsb1{letter-spacing:14.523447px;}
.ls24{letter-spacing:14.580571px;}
.ls7e{letter-spacing:14.606700px;}
.ls81{letter-spacing:14.612700px;}
.ls99{letter-spacing:14.943900px;}
.ls47{letter-spacing:15.361200px;}
.lsa3{letter-spacing:15.588088px;}
.ls50{letter-spacing:15.688483px;}
.ls8c{letter-spacing:15.692100px;}
.ls5c{letter-spacing:15.692383px;}
.ls80{letter-spacing:15.692700px;}
.ls7b{letter-spacing:15.693762px;}
.lsa2{letter-spacing:16.288445px;}
.ls97{letter-spacing:16.354445px;}
.ls52{letter-spacing:17.319483px;}
.ls3d{letter-spacing:17.325483px;}
.ls5b{letter-spacing:17.431200px;}
.ls63{letter-spacing:18.069483px;}
.lsa9{letter-spacing:18.094483px;}
.ls82{letter-spacing:18.096172px;}
.ls6c{letter-spacing:18.098383px;}
.ls51{letter-spacing:18.100483px;}
.lsaf{letter-spacing:18.171782px;}
.lsaa{letter-spacing:18.196483px;}
.ls7a{letter-spacing:18.393634px;}
.ls64{letter-spacing:18.774571px;}
.lsb9{letter-spacing:19.268047px;}
.ls68{letter-spacing:19.518571px;}
.ls7{letter-spacing:20.070583px;}
.lsa4{letter-spacing:20.218483px;}
.lsad{letter-spacing:20.526688px;}
.ls6e{letter-spacing:20.904571px;}
.ls2c{letter-spacing:21.018571px;}
.ls3c{letter-spacing:21.222571px;}
.ls8{letter-spacing:21.503400px;}
.ls54{letter-spacing:22.036514px;}
.ls59{letter-spacing:22.375771px;}
.ls3a{letter-spacing:22.656571px;}
.ls11{letter-spacing:22.926571px;}
.ls38{letter-spacing:24.399483px;}
.ls35{letter-spacing:24.428100px;}
.ls34{letter-spacing:24.428383px;}
.ls16{letter-spacing:24.722383px;}
.ls94{letter-spacing:25.216483px;}
.ls30{letter-spacing:25.599483px;}
.ls37{letter-spacing:27.240571px;}
.ls2f{letter-spacing:27.558571px;}
.ls90{letter-spacing:27.728100px;}
.ls69{letter-spacing:28.428571px;}
.lsb0{letter-spacing:29.967865px;}
.lsb2{letter-spacing:30.720806px;}
.ls1b{letter-spacing:41.874172px;}
.ls17{letter-spacing:45.000571px;}
.ls66{letter-spacing:45.030571px;}
.ls1{letter-spacing:70.236600px;}
.ls2{letter-spacing:72.353510px;}
.ls78{letter-spacing:72.578100px;}
.lsa0{letter-spacing:74.718600px;}
.ls9b{letter-spacing:90.560880px;}
.ls6f{letter-spacing:102.333483px;}
.ls98{letter-spacing:158.937660px;}
.lsa7{letter-spacing:363.415488px;}
.lsa6{letter-spacing:372.962148px;}
.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;}
}
.ws68{word-spacing:-49.206414px;}
.ws4e{word-spacing:-14.943900px;}
.ws80{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws66{word-spacing:-4.841824px;}
.ws69{word-spacing:-4.244068px;}
.ws50{word-spacing:-3.526760px;}
.wsb9{word-spacing:-3.178685px;}
.wsba{word-spacing:-3.177857px;}
.wsbb{word-spacing:-3.168107px;}
.ws88{word-spacing:-2.869229px;}
.ws1f{word-spacing:-2.749678px;}
.ws2e{word-spacing:-2.689902px;}
.ws72{word-spacing:-2.575500px;}
.wsf7{word-spacing:-2.420928px;}
.ws64{word-spacing:-2.331248px;}
.ws28{word-spacing:-2.151922px;}
.ws79{word-spacing:-1.912819px;}
.ws6{word-spacing:-1.908367px;}
.ws5{word-spacing:-1.322630px;}
.ws47{word-spacing:-1.135736px;}
.wsce{word-spacing:-1.075968px;}
.ws6c{word-spacing:-1.075961px;}
.wsef{word-spacing:-0.914573px;}
.ws6e{word-spacing:-0.896634px;}
.wscf{word-spacing:-0.860774px;}
.ws76{word-spacing:-0.836858px;}
.ws36{word-spacing:-0.777083px;}
.wsc2{word-spacing:-0.717307px;}
.wsbc{word-spacing:-0.604423px;}
.wsbd{word-spacing:-0.601382px;}
.ws23{word-spacing:-0.597756px;}
.ws26{word-spacing:-0.537980px;}
.ws1c{word-spacing:-0.478205px;}
.ws3a{word-spacing:-0.418429px;}
.wsc9{word-spacing:-0.358654px;}
.ws3e{word-spacing:-0.298878px;}
.wseb{word-spacing:-0.268992px;}
.ws11{word-spacing:-0.239102px;}
.wsb5{word-spacing:-0.215194px;}
.ws46{word-spacing:-0.200172px;}
.ws30{word-spacing:-0.179327px;}
.wse9{word-spacing:-0.161395px;}
.ws14{word-spacing:-0.119551px;}
.ws7f{word-spacing:-0.107597px;}
.ws73{word-spacing:-0.062287px;}
.ws53{word-spacing:-0.059776px;}
.ws3f{word-spacing:-0.053798px;}
.ws85{word-spacing:-0.051108px;}
.wsf1{word-spacing:-0.012749px;}
.wse6{word-spacing:-0.006749px;}
.wsd2{word-spacing:-0.003418px;}
.ws94{word-spacing:-0.002688px;}
.ws1d{word-spacing:-0.000868px;}
.ws1{word-spacing:-0.000275px;}
.ws0{word-spacing:0.000000px;}
.ws8e{word-spacing:0.000050px;}
.ws7e{word-spacing:0.053798px;}
.ws33{word-spacing:0.059776px;}
.wsc3{word-spacing:0.107597px;}
.ws34{word-spacing:0.119551px;}
.wsb4{word-spacing:0.133560px;}
.wsb3{word-spacing:0.138733px;}
.wse7{word-spacing:0.161395px;}
.ws24{word-spacing:0.179327px;}
.wsb0{word-spacing:0.186988px;}
.wsaf{word-spacing:0.189629px;}
.wsac{word-spacing:0.195095px;}
.wsab{word-spacing:0.200092px;}
.ws7d{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.wsdc{word-spacing:0.268992px;}
.wsa4{word-spacing:0.287869px;}
.ws38{word-spacing:0.298878px;}
.ws35{word-spacing:0.358654px;}
.wsf5{word-spacing:0.376589px;}
.ws32{word-spacing:0.418429px;}
.wsd9{word-spacing:0.430387px;}
.ws57{word-spacing:0.478205px;}
.wsd5{word-spacing:0.484186px;}
.ws4b{word-spacing:0.537980px;}
.wsd6{word-spacing:0.591782px;}
.ws43{word-spacing:0.597756px;}
.wsd4{word-spacing:0.645581px;}
.ws9{word-spacing:0.657532px;}
.ws70{word-spacing:0.745424px;}
.wsdd{word-spacing:0.753178px;}
.ws91{word-spacing:0.777083px;}
.wscd{word-spacing:0.806976px;}
.ws9a{word-spacing:0.836858px;}
.ws31{word-spacing:0.896634px;}
.ws63{word-spacing:0.956410px;}
.ws4c{word-spacing:1.075961px;}
.ws3d{word-spacing:1.195512px;}
.wsc0{word-spacing:1.237363px;}
.wsd7{word-spacing:1.344960px;}
.wsc5{word-spacing:1.506355px;}
.ws1b{word-spacing:1.554166px;}
.wsbf{word-spacing:1.560154px;}
.ws81{word-spacing:1.667750px;}
.ws37{word-spacing:1.673717px;}
.ws5c{word-spacing:1.733492px;}
.wsf6{word-spacing:1.775347px;}
.wsc4{word-spacing:1.829146px;}
.wscc{word-spacing:1.882944px;}
.wsd0{word-spacing:1.990541px;}
.wsea{word-spacing:2.044339px;}
.ws2b{word-spacing:2.092146px;}
.ws58{word-spacing:2.151922px;}
.wse1{word-spacing:2.259533px;}
.wse2{word-spacing:2.313331px;}
.ws4a{word-spacing:2.331248px;}
.wsc1{word-spacing:2.474726px;}
.ws19{word-spacing:2.570351px;}
.ws49{word-spacing:2.689902px;}
.ws40{word-spacing:2.749678px;}
.ws9b{word-spacing:2.869229px;}
.ws2f{word-spacing:2.988780px;}
.ws1a{word-spacing:3.048556px;}
.wsa3{word-spacing:3.108331px;}
.wsf0{word-spacing:3.174106px;}
.wsd8{word-spacing:3.223594px;}
.wsb7{word-spacing:3.227882px;}
.ws4{word-spacing:3.227904px;}
.ws71{word-spacing:3.287658px;}
.ws77{word-spacing:3.466985px;}
.ws78{word-spacing:3.477776px;}
.ws6b{word-spacing:3.526760px;}
.ws17{word-spacing:3.583475px;}
.ws18{word-spacing:3.586536px;}
.wsc{word-spacing:3.646312px;}
.wsdf{word-spacing:3.658291px;}
.wsd{word-spacing:3.706087px;}
.wsf2{word-spacing:3.712090px;}
.ws27{word-spacing:3.825638px;}
.wse{word-spacing:3.885414px;}
.ws39{word-spacing:4.124516px;}
.wsb{word-spacing:4.184292px;}
.ws13{word-spacing:4.244068px;}
.wsf8{word-spacing:4.357670px;}
.ws8{word-spacing:4.542946px;}
.wsec{word-spacing:4.572864px;}
.wsee{word-spacing:4.626662px;}
.ws16{word-spacing:4.782048px;}
.wsc8{word-spacing:4.841824px;}
.ws7c{word-spacing:4.949453px;}
.ws29{word-spacing:4.961375px;}
.ws25{word-spacing:5.021150px;}
.ws9d{word-spacing:5.140702px;}
.ws12{word-spacing:5.320028px;}
.ws7b{word-spacing:5.326042px;}
.ws9c{word-spacing:5.379804px;}
.ws15{word-spacing:5.439580px;}
.wsa7{word-spacing:5.487437px;}
.wsb1{word-spacing:5.559131px;}
.wsb2{word-spacing:5.585277px;}
.wsad{word-spacing:5.857729px;}
.ws7a{word-spacing:5.858009px;}
.wsae{word-spacing:5.867774px;}
.ws42{word-spacing:6.156887px;}
.ws2a{word-spacing:6.276438px;}
.ws45{word-spacing:6.395989px;}
.ws48{word-spacing:6.455765px;}
.ws3{word-spacing:6.573600px;}
.wsda{word-spacing:6.832397px;}
.wse5{word-spacing:7.155187px;}
.wsd3{word-spacing:7.370381px;}
.ws10{word-spacing:7.412174px;}
.wsf{word-spacing:7.471950px;}
.wse8{word-spacing:7.585574px;}
.ws8a{word-spacing:7.830604px;}
.ws99{word-spacing:8.069706px;}
.wsdb{word-spacing:8.607744px;}
.ws3b{word-spacing:8.667462px;}
.ws44{word-spacing:8.787013px;}
.wse4{word-spacing:9.038131px;}
.wsd1{word-spacing:9.144432px;}
.wsde{word-spacing:9.145152px;}
.wsf3{word-spacing:9.149299px;}
.ws3c{word-spacing:9.205442px;}
.ws2d{word-spacing:9.265218px;}
.ws2c{word-spacing:9.444545px;}
.ws89{word-spacing:9.564096px;}
.ws20{word-spacing:9.683647px;}
.ws8b{word-spacing:9.862974px;}
.ws54{word-spacing:10.028689px;}
.ws7{word-spacing:10.161852px;}
.ws74{word-spacing:10.281403px;}
.ws5d{word-spacing:10.460730px;}
.wsa{word-spacing:10.520506px;}
.ws62{word-spacing:11.118262px;}
.wse3{word-spacing:11.136269px;}
.wsf4{word-spacing:11.405261px;}
.wsb8{word-spacing:11.955120px;}
.ws61{word-spacing:12.074671px;}
.wscb{word-spacing:12.104640px;}
.ws52{word-spacing:12.313774px;}
.wsbe{word-spacing:12.552876px;}
.ws60{word-spacing:12.911530px;}
.ws5a{word-spacing:13.017899px;}
.ws59{word-spacing:13.210408px;}
.wsb6{word-spacing:13.387081px;}
.wsa8{word-spacing:13.390301px;}
.ws98{word-spacing:13.393081px;}
.ws22{word-spacing:14.286368px;}
.ws75{word-spacing:14.865675px;}
.ws8d{word-spacing:14.868525px;}
.ws8f{word-spacing:14.872950px;}
.ws92{word-spacing:14.889375px;}
.wsa6{word-spacing:15.547738px;}
.ws5e{word-spacing:15.601432px;}
.wsc7{word-spacing:16.031923px;}
.ws8c{word-spacing:16.139412px;}
.wsa5{word-spacing:16.139520px;}
.wse0{word-spacing:16.408512px;}
.wsc6{word-spacing:16.623706px;}
.ws67{word-spacing:17.285110px;}
.wsed{word-spacing:17.484480px;}
.wsca{word-spacing:17.645875px;}
.ws4d{word-spacing:17.938541px;}
.ws65{word-spacing:18.063114px;}
.ws5f{word-spacing:19.068416px;}
.ws56{word-spacing:24.291774px;}
.ws90{word-spacing:31.302525px;}
.ws41{word-spacing:34.430746px;}
.ws51{word-spacing:41.794309px;}
.ws9f{word-spacing:81.693468px;}
.ws87{word-spacing:83.715690px;}
.ws86{word-spacing:85.115756px;}
.wsaa{word-spacing:90.397133px;}
.ws95{word-spacing:98.182080px;}
.ws83{word-spacing:112.234222px;}
.ws84{word-spacing:128.435610px;}
.wsa1{word-spacing:133.163892px;}
.wsa9{word-spacing:154.661510px;}
.ws93{word-spacing:199.861056px;}
.ws82{word-spacing:242.714172px;}
.ws96{word-spacing:256.241779px;}
.ws97{word-spacing:269.691379px;}
.ws9e{word-spacing:307.255574px;}
.wsa2{word-spacing:453.664154px;}
.wsa0{word-spacing:463.213370px;}
.ws6a{word-spacing:662.971180px;}
.ws6f{word-spacing:686.522766px;}
.ws55{word-spacing:703.797914px;}
.ws6d{word-spacing:750.901087px;}
.ws5b{word-spacing:793.700417px;}
.ws4f{word-spacing:937.460735px;}
._1a{margin-left:-7.346461px;}
._3{margin-left:-5.971622px;}
._4{margin-left:-4.949453px;}
._2{margin-left:-3.288040px;}
._7{margin-left:-2.047382px;}
._5{margin-left:-1.022170px;}
._8{width:1.091170px;}
._1{width:2.989183px;}
._18{width:5.262588px;}
._2d{width:8.930534px;}
._2e{width:11.143507px;}
._1d{width:12.194222px;}
._14{width:13.808164px;}
._3b{width:15.236840px;}
._6{width:16.677504px;}
._f{width:18.291334px;}
._c{width:19.845499px;}
._9{width:21.235126px;}
._15{width:22.311310px;}
._e{width:23.432035px;}
._27{width:24.642559px;}
._13{width:26.310338px;}
._1b{width:28.094532px;}
._b{width:29.230268px;}
._19{width:30.261465px;}
._a{width:31.397202px;}
._0{width:33.355008px;}
._10{width:35.088500px;}
._17{width:37.419526px;}
._28{width:39.332345px;}
._d{width:41.304940px;}
._46{width:43.655091px;}
._16{width:46.520428px;}
._45{width:49.611533px;}
._47{width:51.323674px;}
._1c{width:55.307442px;}
._44{width:59.879093px;}
._43{width:61.868160px;}
._26{width:68.125789px;}
._21{width:70.590388px;}
._39{width:71.729443px;}
._42{width:88.767360px;}
._29{width:90.556733px;}
._23{width:103.750214px;}
._3e{width:126.910426px;}
._25{width:128.435610px;}
._41{width:136.809331px;}
._3d{width:138.046694px;}
._22{width:160.633953px;}
._24{width:170.344564px;}
._3f{width:178.610688px;}
._40{width:213.256858px;}
._36{width:233.955792px;}
._2a{width:268.571174px;}
._2b{width:269.691379px;}
._2c{width:309.609792px;}
._34{width:319.402177px;}
._20{width:333.533940px;}
._2f{width:361.304137px;}
._35{width:404.275609px;}
._1f{width:432.939934px;}
._1e{width:468.358111px;}
._11{width:580.205840px;}
._30{width:606.986366px;}
._31{width:628.223822px;}
._37{width:643.044205px;}
._32{width:662.142637px;}
._38{width:690.828482px;}
._33{width:709.926914px;}
._3a{width:1988.763300px;}
._12{width:2012.673300px;}
._3c{width:3468.447300px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(45,70,152);}
.fsc{font-size:35.865600px;}
.fs10{font-size:38.196864px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fsf{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fse{font-size:51.108480px;}
.fs5{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fsa{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:136.067040px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.425340px;}
.y2{bottom:13.870617px;}
.y13{bottom:14.151273px;}
.y30{bottom:63.780000px;}
.y79{bottom:108.612000px;}
.y1c5{bottom:108.957000px;}
.yda{bottom:114.799500px;}
.y162{bottom:114.964500px;}
.y2f{bottom:119.899500px;}
.ya4{bottom:126.130500px;}
.y1c4{bottom:128.325000px;}
.y78{bottom:128.875500px;}
.y161{bottom:130.162500px;}
.yd9{bottom:135.063000px;}
.y132{bottom:139.704000px;}
.y2e{bottom:140.164500px;}
.y191{bottom:140.398500px;}
.y62{bottom:143.386500px;}
.y160{bottom:145.360500px;}
.ya3{bottom:146.394000px;}
.y1c3{bottom:147.691500px;}
.y77{bottom:149.139000px;}
.yd8{bottom:155.326500px;}
.y140{bottom:155.781000px;}
.y190{bottom:159.766500px;}
.y131{bottom:159.969000px;}
.y2d{bottom:160.428000px;}
.y61{bottom:163.650000px;}
.ya2{bottom:166.657500px;}
.y1c2{bottom:167.059500px;}
.y76{bottom:169.404000px;}
.yed{bottom:170.653500px;}
.yd7{bottom:175.591500px;}
.y13f{bottom:176.044500px;}
.y15f{bottom:178.491000px;}
.y18f{bottom:179.134500px;}
.y130{bottom:180.232500px;}
.y2c{bottom:180.693000px;}
.y60{bottom:183.913500px;}
.y1c1{bottom:186.427500px;}
.y14f{bottom:186.904500px;}
.ya1{bottom:186.922500px;}
.y75{bottom:189.667500px;}
.yec{bottom:190.918500px;}
.yd6{bottom:195.855000px;}
.y13e{bottom:196.309500px;}
.y18e{bottom:198.501000px;}
.y15e{bottom:198.754500px;}
.y12f{bottom:200.496000px;}
.y2b{bottom:200.956500px;}
.y5f{bottom:204.178500px;}
.y1c0{bottom:205.794000px;}
.y14e{bottom:206.137500px;}
.ya0{bottom:207.186000px;}
.y74{bottom:209.932500px;}
.yeb{bottom:211.182000px;}
.yd5{bottom:216.120000px;}
.y13d{bottom:216.573000px;}
.y14c{bottom:217.857000px;}
.y18d{bottom:217.869000px;}
.y15d{bottom:219.019500px;}
.y12e{bottom:220.761000px;}
.y2a{bottom:221.220000px;}
.y10a{bottom:223.117500px;}
.y5e{bottom:224.442000px;}
.y1bf{bottom:225.162000px;}
.y9f{bottom:227.451000px;}
.y73{bottom:230.196000px;}
.yea{bottom:231.447000px;}
.yd4{bottom:236.383500px;}
.y13c{bottom:236.838000px;}
.y18c{bottom:237.235500px;}
.y14b{bottom:238.122000px;}
.y15c{bottom:239.283000px;}
.y12d{bottom:241.024500px;}
.y29{bottom:241.485000px;}
.y109{bottom:242.350500px;}
.y1be{bottom:244.528500px;}
.y5d{bottom:244.707000px;}
.y152{bottom:251.185500px;}
.ye9{bottom:251.710500px;}
.y18b{bottom:256.603500px;}
.yd3{bottom:256.647000px;}
.y9e{bottom:256.681500px;}
.y13b{bottom:257.101500px;}
.y14a{bottom:258.385500px;}
.y72{bottom:259.426500px;}
.y15b{bottom:259.546500px;}
.y12c{bottom:261.289500px;}
.y1bd{bottom:263.896500px;}
.y5c{bottom:264.970500px;}
.y151{bottom:270.418500px;}
.y28{bottom:270.715500px;}
.ye8{bottom:271.974000px;}
.y18a{bottom:275.971500px;}
.yd2{bottom:276.912000px;}
.y13a{bottom:277.365000px;}
.y149{bottom:278.650500px;}
.y15a{bottom:279.811500px;}
.y12b{bottom:281.553000px;}
.y1bc{bottom:283.264500px;}
.y5b{bottom:285.234000px;}
.y150{bottom:289.651500px;}
.y9d{bottom:291.501000px;}
.y71{bottom:294.246000px;}
.y189{bottom:295.338000px;}
.yd1{bottom:297.175500px;}
.y139{bottom:297.630000px;}
.y148{bottom:298.914000px;}
.y159{bottom:300.075000px;}
.ye7{bottom:301.204500px;}
.y1bb{bottom:302.631000px;}
.y5a{bottom:305.499000px;}
.y9c{bottom:311.764500px;}
.y70{bottom:314.509500px;}
.y188{bottom:314.706000px;}
.y138{bottom:317.893500px;}
.y147{bottom:319.177500px;}
.y158{bottom:320.340000px;}
.y1ba{bottom:321.999000px;}
.y59{bottom:325.762500px;}
.yd0{bottom:326.406000px;}
.y12a{bottom:328.449000px;}
.y9b{bottom:332.028000px;}
.y187{bottom:334.072500px;}
.y6f{bottom:334.774500px;}
.y137{bottom:338.157000px;}
.y146{bottom:339.442500px;}
.y157{bottom:340.603500px;}
.y1b9{bottom:341.367000px;}
.ye6{bottom:344.289075px;}
.y129{bottom:344.887500px;}
.y58{bottom:346.027500px;}
.y27{bottom:347.124000px;}
.y9a{bottom:352.293000px;}
.y126{bottom:353.107500px;}
.y186{bottom:353.440500px;}
.y6e{bottom:355.038000px;}
.y136{bottom:358.422000px;}
.y145{bottom:359.706000px;}
.ye5{bottom:359.905650px;}
.y1b8{bottom:360.733500px;}
.y156{bottom:360.867000px;}
.ycf{bottom:361.225500px;}
.y128{bottom:361.326000px;}
.y57{bottom:366.291000px;}
.y99{bottom:372.556500px;}
.y185{bottom:372.808500px;}
.y6d{bottom:375.303000px;}
.y127{bottom:377.764500px;}
.y144{bottom:379.971000px;}
.y1b7{bottom:380.101500px;}
.yce{bottom:381.490500px;}
.ye4{bottom:382.648650px;}
.y26{bottom:385.320000px;}
.y56{bottom:386.554500px;}
.y155{bottom:390.097500px;}
.y184{bottom:392.175000px;}
.y98{bottom:392.821500px;}
.y135{bottom:393.421500px;}
.y6c{bottom:395.566500px;}
.y1b6{bottom:399.468000px;}
.y125{bottom:401.704500px;}
.ycd{bottom:401.754000px;}
.ye3{bottom:405.391650px;}
.y25{bottom:405.585000px;}
.y55{bottom:406.819500px;}
.y183{bottom:411.543000px;}
.y134{bottom:412.654500px;}
.y97{bottom:413.085000px;}
.y143{bottom:414.970500px;}
.y6b{bottom:415.830000px;}
.y1b5{bottom:418.836000px;}
.ye2{bottom:421.006800px;}
.y154{bottom:421.720500px;}
.ycc{bottom:422.017500px;}
.y124{bottom:425.644500px;}
.y24{bottom:425.848500px;}
.y54{bottom:427.083000px;}
.y182{bottom:430.909500px;}
.y96{bottom:433.348500px;}
.y142{bottom:434.203500px;}
.y6a{bottom:436.095000px;}
.y1b4{bottom:438.204000px;}
.ye1{bottom:440.204400px;}
.y153{bottom:440.953500px;}
.ycb{bottom:442.282500px;}
.y23{bottom:446.112000px;}
.y53{bottom:447.348000px;}
.y123{bottom:449.583000px;}
.y181{bottom:450.277500px;}
.y141{bottom:453.436500px;}
.y95{bottom:453.613500px;}
.y69{bottom:456.358500px;}
.y1b3{bottom:457.570500px;}
.yca{bottom:462.546000px;}
.y122{bottom:466.021500px;}
.y22{bottom:466.377000px;}
.y52{bottom:467.611500px;}
.y180{bottom:469.645500px;}
.ye0{bottom:470.979000px;}
.y94{bottom:473.877000px;}
.y68{bottom:476.623500px;}
.y1b2{bottom:476.938500px;}
.y121{bottom:482.460000px;}
.yc9{bottom:482.811000px;}
.y21{bottom:486.640500px;}
.y51{bottom:487.875000px;}
.y17f{bottom:489.012000px;}
.ydf{bottom:490.212000px;}
.y93{bottom:494.142000px;}
.y1b1{bottom:496.305000px;}
.yc8{bottom:503.074500px;}
.y67{bottom:505.854000px;}
.y20{bottom:506.905500px;}
.y50{bottom:508.140000px;}
.y17e{bottom:508.380000px;}
.yde{bottom:509.445000px;}
.y120{bottom:514.080000px;}
.y1b0{bottom:515.673000px;}
.yc7{bottom:518.182500px;}
.yc5{bottom:523.338000px;}
.y108{bottom:524.589000px;}
.y1f{bottom:527.169000px;}
.y17d{bottom:527.746500px;}
.y4f{bottom:528.403500px;}
.yc6{bottom:529.227000px;}
.y92{bottom:529.650000px;}
.y11f{bottom:533.313000px;}
.y91{bottom:533.694000px;}
.y1af{bottom:535.041000px;}
.y66{bottom:537.477000px;}
.yc4{bottom:538.447500px;}
.ydd{bottom:539.137500px;}
.yc3{bottom:543.603000px;}
.y17c{bottom:547.114500px;}
.y1e{bottom:547.432500px;}
.y4e{bottom:548.667000px;}
.y107{bottom:548.749500px;}
.y11e{bottom:552.546000px;}
.y1ae{bottom:554.407500px;}
.y105{bottom:556.471500px;}
.ydc{bottom:558.370500px;}
.yc2{bottom:563.866500px;}
.y17b{bottom:566.482500px;}
.y1d{bottom:567.697500px;}
.y4d{bottom:568.932000px;}
.y106{bottom:572.910000px;}
.y1ad{bottom:573.775500px;}
.y90{bottom:574.053000px;}
.ydb{bottom:577.603500px;}
.yc1{bottom:584.131500px;}
.y17a{bottom:585.849000px;}
.y1c{bottom:587.961000px;}
.y4c{bottom:589.195500px;}
.y11d{bottom:589.650000px;}
.y1ac{bottom:593.142000px;}
.y8f{bottom:594.316500px;}
.y104{bottom:597.370500px;}
.yc0{bottom:604.395000px;}
.y179{bottom:605.217000px;}
.y1b{bottom:608.226000px;}
.y4b{bottom:609.460500px;}
.y11c{bottom:609.913500px;}
.y1ab{bottom:612.510000px;}
.y8e{bottom:614.580000px;}
.y103{bottom:621.531000px;}
.y178{bottom:624.583500px;}
.ybf{bottom:624.658500px;}
.y1a{bottom:628.489500px;}
.y101{bottom:629.253000px;}
.y4a{bottom:629.724000px;}
.y11b{bottom:630.178500px;}
.y1aa{bottom:631.878000px;}
.y8d{bottom:634.845000px;}
.y177{bottom:643.951500px;}
.y102{bottom:645.691500px;}
.y19{bottom:648.753000px;}
.y49{bottom:649.987500px;}
.y11a{bottom:650.442000px;}
.y1a9{bottom:651.244500px;}
.y8c{bottom:655.108500px;}
.ybe{bottom:660.099000px;}
.y176{bottom:663.319500px;}
.ybd{bottom:664.144500px;}
.y18{bottom:669.018000px;}
.y100{bottom:670.150500px;}
.y48{bottom:670.252500px;}
.y1a8{bottom:670.612500px;}
.y119{bottom:670.705500px;}
.y8b{bottom:675.373500px;}
.y175{bottom:682.686000px;}
.y17{bottom:689.281500px;}
.y1a7{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y118{bottom:690.970500px;}
.yff{bottom:694.311000px;}
.y8a{bottom:695.637000px;}
.yfd{bottom:702.034500px;}
.ybc{bottom:704.503500px;}
.y1a6{bottom:709.347000px;}
.y16{bottom:709.546500px;}
.y46{bottom:710.781000px;}
.y174{bottom:711.021000px;}
.yfe{bottom:718.473000px;}
.ybb{bottom:724.767000px;}
.y1a5{bottom:728.715000px;}
.y15{bottom:729.810000px;}
.y88{bottom:730.339500px;}
.y45{bottom:731.044500px;}
.y116{bottom:735.344940px;}
.y89{bottom:742.243500px;}
.yfc{bottom:742.932000px;}
.y87{bottom:743.485500px;}
.y85{bottom:746.593500px;}
.y115{bottom:747.015210px;}
.y1a4{bottom:748.081500px;}
.y173{bottom:751.083000px;}
.y44{bottom:751.308000px;}
.yba{bottom:757.860000px;}
.y117{bottom:758.633295px;}
.y111{bottom:758.634360px;}
.y114{bottom:758.686545px;}
.y86{bottom:762.733500px;}
.yfb{bottom:767.092500px;}
.y1a3{bottom:767.449500px;}
.y12{bottom:767.866464px;}
.yb9{bottom:768.112500px;}
.yf9{bottom:769.108500px;}
.y10f{bottom:769.635810px;}
.y172{bottom:769.659000px;}
.y113{bottom:770.357880px;}
.y43{bottom:771.573000px;}
.yf8{bottom:773.748000px;}
.y11{bottom:775.441500px;}
.y112{bottom:782.029215px;}
.y1a2{bottom:786.816000px;}
.y171{bottom:788.235000px;}
.yfa{bottom:790.734000px;}
.y42{bottom:791.836500px;}
.y84{bottom:795.334500px;}
.y14d{bottom:798.445500px;}
.y110{bottom:798.814680px;}
.y1a1{bottom:806.184000px;}
.y170{bottom:806.809500px;}
.y10{bottom:807.631500px;}
.y41{bottom:812.101500px;}
.yb8{bottom:814.302000px;}
.yf7{bottom:814.672500px;}
.y133{bottom:814.975500px;}
.y83{bottom:815.598000px;}
.y10e{bottom:815.811015px;}
.y16f{bottom:825.385500px;}
.y1a0{bottom:825.552000px;}
.yf6{bottom:825.985500px;}
.y10d{bottom:826.760280px;}
.yf{bottom:830.670000px;}
.y40{bottom:832.365000px;}
.yb7{bottom:834.565500px;}
.y82{bottom:835.861500px;}
.ye{bottom:843.945000px;}
.y16e{bottom:843.960000px;}
.y19f{bottom:844.918500px;}
.y10c{bottom:849.593880px;}
.y3f{bottom:852.628500px;}
.yb6{bottom:854.830500px;}
.y81{bottom:856.126500px;}
.yd{bottom:862.102500px;}
.y16d{bottom:862.536000px;}
.y1cb{bottom:863.980500px;}
.y19e{bottom:864.286500px;}
.yf5{bottom:869.932500px;}
.y3e{bottom:872.893500px;}
.yb5{bottom:875.094000px;}
.y10b{bottom:876.318000px;}
.y16c{bottom:881.112000px;}
.y1ca{bottom:883.347000px;}
.y19d{bottom:883.653000px;}
.yc{bottom:885.141000px;}
.y80{bottom:888.925500px;}
.yf4{bottom:889.165500px;}
.y3d{bottom:893.157000px;}
.y7f{bottom:893.277000px;}
.yb4{bottom:895.357500px;}
.y16b{bottom:899.686500px;}
.y1c9{bottom:902.715000px;}
.y19c{bottom:903.021000px;}
.y1c8{bottom:903.120000px;}
.yb{bottom:903.298500px;}
.y3c{bottom:913.422000px;}
.yb3{bottom:915.622500px;}
.ya{bottom:916.573500px;}
.y19b{bottom:922.389000px;}
.yf3{bottom:924.718500px;}
.y16a{bottom:929.382000px;}
.y7e{bottom:930.427500px;}
.y1c7{bottom:932.161500px;}
.y3b{bottom:933.685500px;}
.y9{bottom:939.612000px;}
.y19a{bottom:941.755500px;}
.yf2{bottom:944.983500px;}
.y1c6{bottom:947.359500px;}
.yb2{bottom:947.955000px;}
.y7d{bottom:950.692500px;}
.y8{bottom:952.887000px;}
.yb1{bottom:953.286000px;}
.y169{bottom:953.547000px;}
.y3a{bottom:953.949000px;}
.y199{bottom:961.123500px;}
.yad{bottom:964.744500px;}
.yf1{bottom:965.247000px;}
.y7c{bottom:970.956000px;}
.yb0{bottom:973.713000px;}
.yaf{bottom:973.770000px;}
.y39{bottom:974.214000px;}
.y7{bottom:975.927000px;}
.yae{bottom:978.868500px;}
.y198{bottom:980.490000px;}
.yf0{bottom:985.512000px;}
.y7b{bottom:991.219500px;}
.y168{bottom:991.743000px;}
.y38{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.y197{bottom:999.858000px;}
.yef{bottom:1005.775500px;}
.y37{bottom:1014.742500px;}
.y167{bottom:1015.908000px;}
.y196{bottom:1019.226000px;}
.y7a{bottom:1020.450000px;}
.yee{bottom:1026.039000px;}
.yaa{bottom:1030.005000px;}
.yab{bottom:1030.174500px;}
.y166{bottom:1031.106000px;}
.yac{bottom:1031.314500px;}
.ya9{bottom:1033.855500px;}
.y36{bottom:1035.006000px;}
.y195{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y65{bottom:1046.304000px;}
.ya6{bottom:1050.325500px;}
.ya7{bottom:1050.495000px;}
.ya8{bottom:1051.579500px;}
.ya5{bottom:1054.119000px;}
.y35{bottom:1055.269500px;}
.y194{bottom:1057.960500px;}
.y64{bottom:1066.567500px;}
.y165{bottom:1070.467500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y193{bottom:1077.327000px;}
.y164{bottom:1085.667000px;}
.y63{bottom:1086.832500px;}
.y33{bottom:1095.798000px;}
.y192{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y163{bottom:1100.865000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h3d{height:27.501742px;}
.h40{height:27.807317px;}
.h3f{height:27.998301px;}
.h7{height:30.461558px;}
.h20{height:33.072749px;}
.hb{height:33.112997px;}
.h16{height:33.299897px;}
.h31{height:33.516403px;}
.ha{height:34.199443px;}
.hf{height:35.052500px;}
.h18{height:35.503200px;}
.h34{height:36.798106px;}
.h36{height:37.206973px;}
.he{height:37.299974px;}
.h11{height:38.734848px;}
.h8{height:39.165235px;}
.h30{height:39.434227px;}
.h33{height:39.520890px;}
.h32{height:42.043500px;}
.h15{height:42.500452px;}
.h25{height:42.918881px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h4{height:43.815515px;}
.h1e{height:43.912053px;}
.h10{height:46.714950px;}
.h2{height:50.930649px;}
.h3e{height:51.152117px;}
.h39{height:51.659558px;}
.h3c{height:52.224150px;}
.h3b{height:52.230150px;}
.h28{height:54.071897px;}
.h6{height:54.411312px;}
.h23{height:54.995897px;}
.h14{height:55.001897px;}
.h2e{height:56.622749px;}
.h3a{height:57.723235px;}
.h12{height:57.989897px;}
.h22{height:59.597897px;}
.h1f{height:59.603897px;}
.h21{height:61.474950px;}
.h24{height:61.480950px;}
.h13{height:64.120950px;}
.h27{height:64.534053px;}
.h17{height:65.024177px;}
.h35{height:68.152273px;}
.h37{height:68.157973px;}
.h1c{height:68.769024px;}
.h1a{height:69.992177px;}
.h26{height:75.389897px;}
.h2f{height:75.390749px;}
.h29{height:75.617897px;}
.h5{height:77.469696px;}
.h1d{height:84.945024px;}
.h2d{height:84.951024px;}
.h2c{height:87.724950px;}
.h38{height:88.048848px;}
.h3{height:92.253453px;}
.h2b{height:94.348950px;}
.h19{height:104.643024px;}
.h2a{height:113.872950px;}
.h1b{height:122.043024px;}
.h41{height:892.914000px;}
.h42{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:241.345133px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:58.056971px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.xae{left:126.870825px;}
.xb0{left:132.191775px;}
.xaf{left:133.616775px;}
.xe6{left:139.263000px;}
.x80{left:143.190000px;}
.x4{left:145.498500px;}
.x13{left:146.692500px;}
.x78{left:148.534500px;}
.xf{left:149.653500px;}
.xd8{left:152.079000px;}
.xbe{left:154.023000px;}
.xc8{left:157.428465px;}
.x49{left:161.881500px;}
.x22{left:163.051500px;}
.xbf{left:166.959000px;}
.xd7{left:168.144000px;}
.x1e{left:170.332500px;}
.x59{left:173.349000px;}
.x23{left:174.462000px;}
.xe7{left:175.677000px;}
.x1f{left:177.804000px;}
.xbc{left:181.819500px;}
.x27{left:184.357500px;}
.x10{left:186.234000px;}
.xc7{left:188.449500px;}
.xd0{left:189.957000px;}
.x8{left:193.675500px;}
.x51{left:195.541500px;}
.xac{left:197.527500px;}
.x28{left:199.302000px;}
.x89{left:201.961500px;}
.x29{left:203.041500px;}
.xc9{left:204.107415px;}
.xda{left:205.462500px;}
.xa9{left:209.232000px;}
.x8a{left:212.577000px;}
.xca{left:214.053450px;}
.x2a{left:217.984500px;}
.xe3{left:220.528500px;}
.x2b{left:221.725500px;}
.xf1{left:225.189000px;}
.x8b{left:229.219500px;}
.xd1{left:230.713500px;}
.xa8{left:233.505000px;}
.x2c{left:236.668500px;}
.xe9{left:238.158000px;}
.x2d{left:239.511000px;}
.x5a{left:242.242500px;}
.xa7{left:246.373500px;}
.x5b{left:248.983500px;}
.x79{left:251.337000px;}
.x2e{left:254.455500px;}
.xe8{left:255.943500px;}
.x9f{left:257.295000px;}
.xe5{left:259.776000px;}
.x25{left:260.919000px;}
.x8c{left:263.460000px;}
.x5c{left:266.509500px;}
.x3b{left:272.730000px;}
.x8d{left:274.501500px;}
.x26{left:275.863500px;}
.xd3{left:282.811500px;}
.xc0{left:283.885500px;}
.x3c{left:287.673000px;}
.x8e{left:289.044000px;}
.x5d{left:292.611000px;}
.xc1{left:296.539500px;}
.xc6{left:297.657000px;}
.x5e{left:299.353500px;}
.x91{left:301.890000px;}
.x2f{left:302.925000px;}
.xd{left:306.769500px;}
.x72{left:308.095500px;}
.x68{left:312.096000px;}
.x30{left:317.868000px;}
.x4a{left:319.350000px;}
.x31{left:321.679500px;}
.x33{left:323.301000px;}
.x9d{left:326.347500px;}
.x3f{left:329.953500px;}
.x4b{left:334.294500px;}
.x32{left:336.624000px;}
.x34{left:338.245500px;}
.x5f{left:339.535500px;}
.x6c{left:341.383500px;}
.xe{left:343.042500px;}
.x73{left:346.291500px;}
.xc2{left:352.800000px;}
.x24{left:355.638000px;}
.x9e{left:357.723000px;}
.x6a{left:360.099000px;}
.x40{left:361.329000px;}
.x69{left:366.180000px;}
.xcc{left:368.886345px;}
.x4f{left:370.587000px;}
.x81{left:373.983000px;}
.x47{left:381.598500px;}
.xcb{left:383.171190px;}
.xdb{left:387.060000px;}
.x82{left:388.927500px;}
.x6f{left:391.237500px;}
.x48{left:396.543000px;}
.x83{left:398.731500px;}
.xb{left:400.644000px;}
.xad{left:407.311500px;}
.x98{left:412.873500px;}
.x6b{left:414.606000px;}
.xc3{left:421.342500px;}
.x94{left:422.347500px;}
.x92{left:424.176000px;}
.xa3{left:426.582000px;}
.x70{left:428.947500px;}
.x84{left:433.848000px;}
.x18{left:435.216000px;}
.xc{left:437.728500px;}
.xa4{left:439.356000px;}
.x95{left:441.321000px;}
.x19{left:442.689000px;}
.x1a{left:446.364000px;}
.x20{left:448.293000px;}
.x93{left:451.618500px;}
.x1b{left:453.837000px;}
.x7a{left:456.808500px;}
.x21{left:460.569000px;}
.xb2{left:463.321500px;}
.xd2{left:464.655000px;}
.x35{left:470.968500px;}
.x46{left:474.874500px;}
.x7f{left:477.129000px;}
.xb9{left:479.479500px;}
.x9a{left:480.675000px;}
.xc4{left:483.669000px;}
.x36{left:485.913000px;}
.x96{left:486.994500px;}
.x37{left:489.582000px;}
.x50{left:494.563500px;}
.xc5{left:498.613500px;}
.x52{left:500.908500px;}
.x42{left:503.157000px;}
.x38{left:504.526500px;}
.x3d{left:508.689000px;}
.xb3{left:510.384000px;}
.xb4{left:515.460000px;}
.x3e{left:523.633500px;}
.xba{left:526.630500px;}
.x53{left:529.237500px;}
.xb5{left:530.403000px;}
.xbb{left:531.706500px;}
.xcd{left:535.717530px;}
.x9{left:538.342500px;}
.x54{left:543.346500px;}
.xaa{left:546.273000px;}
.xce{left:556.673535px;}
.xab{left:559.641000px;}
.x55{left:562.960500px;}
.x97{left:564.834000px;}
.xa{left:569.716500px;}
.x56{left:577.944000px;}
.x60{left:581.596500px;}
.x57{left:586.798500px;}
.xa2{left:592.714500px;}
.xd4{left:594.157500px;}
.x1c{left:596.088000px;}
.x43{left:601.012500px;}
.xdc{left:602.020500px;}
.x1d{left:603.559500px;}
.xb1{left:607.932000px;}
.xf0{left:609.393000px;}
.xb6{left:612.918000px;}
.x76{left:614.701500px;}
.x74{left:616.669500px;}
.x39{left:619.782000px;}
.x58{left:623.629500px;}
.x11{left:627.294000px;}
.x9c{left:630.571500px;}
.x9b{left:631.831500px;}
.x3a{left:634.725000px;}
.xdd{left:636.877500px;}
.x85{left:639.889500px;}
.xde{left:642.736500px;}
.x61{left:645.235500px;}
.x75{left:651.010500px;}
.x62{left:652.098000px;}
.xa0{left:657.223500px;}
.xea{left:660.064500px;}
.xec{left:661.290000px;}
.x77{left:662.307000px;}
.x12{left:663.703500px;}
.x63{left:667.108500px;}
.xee{left:669.816000px;}
.xef{left:672.028500px;}
.x64{left:673.597500px;}
.xb7{left:674.676000px;}
.x44{left:676.731000px;}
.x4c{left:679.197000px;}
.xed{left:682.035000px;}
.xeb{left:685.618500px;}
.x6d{left:689.184000px;}
.x45{left:691.674000px;}
.x65{left:693.210000px;}
.x86{left:695.883000px;}
.xe4{left:697.459500px;}
.x6e{left:698.535000px;}
.x66{left:700.072500px;}
.x6{left:701.339982px;}
.x87{left:704.274000px;}
.xa1{left:708.396000px;}
.x88{left:710.641500px;}
.x4d{left:712.578000px;}
.xd9{left:715.305000px;}
.xa5{left:717.076500px;}
.xcf{left:719.561025px;}
.x71{left:721.048500px;}
.x4e{left:727.521000px;}
.x67{left:729.348000px;}
.x99{left:731.643000px;}
.xbd{left:732.957000px;}
.xd5{left:735.822000px;}
.x8f{left:740.008500px;}
.xd6{left:742.998000px;}
.x7d{left:745.663500px;}
.x90{left:748.095000px;}
.xa6{left:749.493000px;}
.xb8{left:751.072500px;}
.x14{left:753.084000px;}
.x41{left:756.895500px;}
.x7b{left:758.091000px;}
.x15{left:760.557000px;}
.x16{left:764.367000px;}
.x17{left:771.838500px;}
.x7c{left:773.034000px;}
.x7e{left:777.037500px;}
.xdf{left:848.097000px;}
.xe0{left:854.821500px;}
.xe1{left:924.267000px;}
.xe2{left:932.484000px;}
@media print{
.v9{vertical-align:-90.890667pt;}
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-10.453333pt;}
.v4{vertical-align:-9.301333pt;}
.v7{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:4.090667pt;}
.vc{vertical-align:10.453333pt;}
.v12{vertical-align:13.120000pt;}
.vf{vertical-align:14.378667pt;}
.v6{vertical-align:15.472000pt;}
.v1a{vertical-align:16.496000pt;}
.v13{vertical-align:18.128000pt;}
.v1{vertical-align:19.290667pt;}
.v17{vertical-align:20.933333pt;}
.v5{vertical-align:21.946667pt;}
.v11{vertical-align:23.381333pt;}
.v18{vertical-align:27.506933pt;}
.va{vertical-align:32.400000pt;}
.v16{vertical-align:36.453333pt;}
.v14{vertical-align:37.413333pt;}
.v15{vertical-align:42.341333pt;}
.v19{vertical-align:43.834667pt;}
.vd{vertical-align:59.002667pt;}
.ve{vertical-align:73.381333pt;}
.vb{vertical-align:90.890667pt;}
.v8{vertical-align:101.344000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls93{letter-spacing:0.000387pt;}
.ls95{letter-spacing:0.000711pt;}
.lsa5{letter-spacing:0.001774pt;}
.lsa1{letter-spacing:0.002825pt;}
.lsa8{letter-spacing:0.003154pt;}
.ls9a{letter-spacing:0.004267pt;}
.ls83{letter-spacing:0.400015pt;}
.ls9f{letter-spacing:0.447791pt;}
.ls23{letter-spacing:0.487835pt;}
.lsab{letter-spacing:0.594667pt;}
.lsae{letter-spacing:0.595951pt;}
.ls13{letter-spacing:0.596214pt;}
.ls4f{letter-spacing:0.598377pt;}
.lsac{letter-spacing:0.600000pt;}
.ls8e{letter-spacing:0.601548pt;}
.ls4e{letter-spacing:0.603710pt;}
.ls4d{letter-spacing:0.628984pt;}
.ls7f{letter-spacing:0.658400pt;}
.ls8b{letter-spacing:0.661348pt;}
.ls79{letter-spacing:0.663452pt;}
.ls46{letter-spacing:0.663733pt;}
.ls3b{letter-spacing:0.663756pt;}
.lsd{letter-spacing:0.665067pt;}
.ls8a{letter-spacing:0.666682pt;}
.ls2b{letter-spacing:0.675962pt;}
.ls19{letter-spacing:0.784508pt;}
.ls18{letter-spacing:0.789841pt;}
.ls32{letter-spacing:0.882422pt;}
.ls14{letter-spacing:0.883733pt;}
.ls2e{letter-spacing:0.885044pt;}
.ls39{letter-spacing:0.887756pt;}
.ls9{letter-spacing:0.889067pt;}
.ls29{letter-spacing:1.008508pt;}
.ls3e{letter-spacing:1.036785pt;}
.ls6{letter-spacing:1.133683pt;}
.ls75{letter-spacing:1.171733pt;}
.lsb{letter-spacing:1.262881pt;}
.ls43{letter-spacing:1.290318pt;}
.ls22{letter-spacing:1.291174pt;}
.ls25{letter-spacing:1.293918pt;}
.ls92{letter-spacing:1.299096pt;}
.lsc{letter-spacing:1.325089pt;}
.ls42{letter-spacing:1.326011pt;}
.ls4a{letter-spacing:1.326652pt;}
.ls31{letter-spacing:1.327711pt;}
.ls8d{letter-spacing:1.328015pt;}
.ls12{letter-spacing:1.328153pt;}
.ls67{letter-spacing:1.330400pt;}
.ls7c{letter-spacing:1.331344pt;}
.ls44{letter-spacing:1.331985pt;}
.ls21{letter-spacing:1.333486pt;}
.ls1a{letter-spacing:1.630881pt;}
.ls3{letter-spacing:1.654338pt;}
.ls10{letter-spacing:1.689067pt;}
.ls53{letter-spacing:1.694324pt;}
.ls26{letter-spacing:1.694400pt;}
.ls1c{letter-spacing:1.724111pt;}
.ls2a{letter-spacing:1.792020pt;}
.ls41{letter-spacing:1.854903pt;}
.ls3f{letter-spacing:1.860237pt;}
.ls60{letter-spacing:1.935207pt;}
.ls72{letter-spacing:1.940541pt;}
.ls71{letter-spacing:1.950881pt;}
.ls5f{letter-spacing:1.956214pt;}
.ls6d{letter-spacing:2.314682pt;}
.ls5d{letter-spacing:2.579733pt;}
.ls36{letter-spacing:2.583756pt;}
.ls58{letter-spacing:2.584991pt;}
.ls70{letter-spacing:2.585067pt;}
.ls20{letter-spacing:2.590881pt;}
.ls8f{letter-spacing:2.651733pt;}
.ls45{letter-spacing:2.653067pt;}
.ls0{letter-spacing:2.657067pt;}
.ls4b{letter-spacing:2.658400pt;}
.ls1f{letter-spacing:2.919452pt;}
.ls40{letter-spacing:2.924785pt;}
.ls62{letter-spacing:2.971185pt;}
.ls73{letter-spacing:2.976518pt;}
.ls86{letter-spacing:3.125348pt;}
.ls89{letter-spacing:3.158400pt;}
.ls33{letter-spacing:3.191733pt;}
.ls4c{letter-spacing:3.318400pt;}
.lse{letter-spacing:3.323733pt;}
.ls55{letter-spacing:3.817328pt;}
.ls56{letter-spacing:3.822661pt;}
.ls5e{letter-spacing:3.824508pt;}
.ls1e{letter-spacing:3.825067pt;}
.ls76{letter-spacing:4.027785pt;}
.lsa{letter-spacing:4.107174pt;}
.ls15{letter-spacing:4.112508pt;}
.ls1d{letter-spacing:4.449444pt;}
.ls88{letter-spacing:4.454778pt;}
.ls84{letter-spacing:4.651733pt;}
.ls5a{letter-spacing:4.707995pt;}
.ls87{letter-spacing:5.153067pt;}
.ls9d{letter-spacing:6.842221pt;}
.ls91{letter-spacing:6.881626pt;}
.ls77{letter-spacing:6.974881pt;}
.ls6a{letter-spacing:7.037067pt;}
.ls57{letter-spacing:7.579733pt;}
.lsf{letter-spacing:9.454881pt;}
.ls2d{letter-spacing:9.480584pt;}
.ls65{letter-spacing:9.521867pt;}
.ls9e{letter-spacing:9.877411pt;}
.ls4{letter-spacing:10.626533pt;}
.ls28{letter-spacing:10.968429pt;}
.ls9c{letter-spacing:10.971674pt;}
.lsb4{letter-spacing:10.993820pt;}
.ls48{letter-spacing:10.995733pt;}
.ls6b{letter-spacing:11.377867pt;}
.ls61{letter-spacing:11.383200pt;}
.ls85{letter-spacing:11.629762pt;}
.ls49{letter-spacing:11.635096pt;}
.ls27{letter-spacing:11.658819pt;}
.ls7d{letter-spacing:11.659489pt;}
.lsb7{letter-spacing:11.722916pt;}
.lsbb{letter-spacing:11.943115pt;}
.lsb3{letter-spacing:11.954133pt;}
.lsb5{letter-spacing:11.959467pt;}
.lsb6{letter-spacing:11.980672pt;}
.lsb8{letter-spacing:12.001962pt;}
.lsba{letter-spacing:12.071845pt;}
.ls96{letter-spacing:12.553284pt;}
.ls74{letter-spacing:12.881118pt;}
.lsb1{letter-spacing:12.909731pt;}
.ls24{letter-spacing:12.960508pt;}
.ls7e{letter-spacing:12.983733pt;}
.ls81{letter-spacing:12.989067pt;}
.ls99{letter-spacing:13.283467pt;}
.ls47{letter-spacing:13.654400pt;}
.lsa3{letter-spacing:13.856078pt;}
.ls50{letter-spacing:13.945318pt;}
.ls8c{letter-spacing:13.948533pt;}
.ls5c{letter-spacing:13.948785pt;}
.ls80{letter-spacing:13.949067pt;}
.ls7b{letter-spacing:13.950011pt;}
.lsa2{letter-spacing:14.478618pt;}
.ls97{letter-spacing:14.537284pt;}
.ls52{letter-spacing:15.395096pt;}
.ls3d{letter-spacing:15.400429pt;}
.ls5b{letter-spacing:15.494400pt;}
.ls63{letter-spacing:16.061762pt;}
.lsa9{letter-spacing:16.083985pt;}
.ls82{letter-spacing:16.085486pt;}
.ls6c{letter-spacing:16.087452pt;}
.ls51{letter-spacing:16.089318pt;}
.lsaf{letter-spacing:16.152695pt;}
.lsaa{letter-spacing:16.174652pt;}
.ls7a{letter-spacing:16.349897pt;}
.ls64{letter-spacing:16.688508pt;}
.lsb9{letter-spacing:17.127153pt;}
.ls68{letter-spacing:17.349841pt;}
.ls7{letter-spacing:17.840518pt;}
.lsa4{letter-spacing:17.971985pt;}
.lsad{letter-spacing:18.245945pt;}
.ls6e{letter-spacing:18.581841pt;}
.ls2c{letter-spacing:18.683174pt;}
.ls3c{letter-spacing:18.864508pt;}
.ls8{letter-spacing:19.114133pt;}
.ls54{letter-spacing:19.588013pt;}
.ls59{letter-spacing:19.889574pt;}
.ls3a{letter-spacing:20.139174pt;}
.ls11{letter-spacing:20.379174pt;}
.ls38{letter-spacing:21.688429pt;}
.ls35{letter-spacing:21.713867pt;}
.ls34{letter-spacing:21.714118pt;}
.ls16{letter-spacing:21.975452pt;}
.ls94{letter-spacing:22.414652pt;}
.ls30{letter-spacing:22.755096pt;}
.ls37{letter-spacing:24.213841pt;}
.ls2f{letter-spacing:24.496508pt;}
.ls90{letter-spacing:24.647200pt;}
.ls69{letter-spacing:25.269841pt;}
.lsb0{letter-spacing:26.638102pt;}
.lsb2{letter-spacing:27.307383pt;}
.ls1b{letter-spacing:37.221486pt;}
.ls17{letter-spacing:40.000508pt;}
.ls66{letter-spacing:40.027174pt;}
.ls1{letter-spacing:62.432533pt;}
.ls2{letter-spacing:64.314231pt;}
.ls78{letter-spacing:64.513867pt;}
.lsa0{letter-spacing:66.416533pt;}
.ls9b{letter-spacing:80.498560pt;}
.ls6f{letter-spacing:90.963096pt;}
.ls98{letter-spacing:141.277920pt;}
.lsa7{letter-spacing:323.035989pt;}
.lsa6{letter-spacing:331.521909pt;}
.ws68{word-spacing:-43.739035pt;}
.ws4e{word-spacing:-13.283467pt;}
.ws80{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws66{word-spacing:-4.303843pt;}
.ws69{word-spacing:-3.772505pt;}
.ws50{word-spacing:-3.134898pt;}
.wsb9{word-spacing:-2.825497pt;}
.wsba{word-spacing:-2.824762pt;}
.wsbb{word-spacing:-2.816095pt;}
.ws88{word-spacing:-2.550426pt;}
.ws1f{word-spacing:-2.444158pt;}
.ws2e{word-spacing:-2.391024pt;}
.ws72{word-spacing:-2.289333pt;}
.wsf7{word-spacing:-2.151936pt;}
.ws64{word-spacing:-2.072221pt;}
.ws28{word-spacing:-1.912819pt;}
.ws79{word-spacing:-1.700284pt;}
.ws6{word-spacing:-1.696326pt;}
.ws5{word-spacing:-1.175671pt;}
.ws47{word-spacing:-1.009543pt;}
.wsce{word-spacing:-0.956416pt;}
.ws6c{word-spacing:-0.956410pt;}
.wsef{word-spacing:-0.812954pt;}
.ws6e{word-spacing:-0.797008pt;}
.wscf{word-spacing:-0.765133pt;}
.ws76{word-spacing:-0.743874pt;}
.ws36{word-spacing:-0.690740pt;}
.wsc2{word-spacing:-0.637606pt;}
.wsbc{word-spacing:-0.537265pt;}
.wsbd{word-spacing:-0.534562pt;}
.ws23{word-spacing:-0.531339pt;}
.ws26{word-spacing:-0.478205pt;}
.ws1c{word-spacing:-0.425071pt;}
.ws3a{word-spacing:-0.371937pt;}
.wsc9{word-spacing:-0.318803pt;}
.ws3e{word-spacing:-0.265669pt;}
.wseb{word-spacing:-0.239104pt;}
.ws11{word-spacing:-0.212535pt;}
.wsb5{word-spacing:-0.191283pt;}
.ws46{word-spacing:-0.177931pt;}
.ws30{word-spacing:-0.159402pt;}
.wse9{word-spacing:-0.143462pt;}
.ws14{word-spacing:-0.106268pt;}
.ws7f{word-spacing:-0.095642pt;}
.ws73{word-spacing:-0.055366pt;}
.ws53{word-spacing:-0.053134pt;}
.ws3f{word-spacing:-0.047821pt;}
.ws85{word-spacing:-0.045430pt;}
.wsf1{word-spacing:-0.011332pt;}
.wse6{word-spacing:-0.005999pt;}
.wsd2{word-spacing:-0.003038pt;}
.ws94{word-spacing:-0.002389pt;}
.ws1d{word-spacing:-0.000772pt;}
.ws1{word-spacing:-0.000244pt;}
.ws0{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.000045pt;}
.ws7e{word-spacing:0.047821pt;}
.ws33{word-spacing:0.053134pt;}
.wsc3{word-spacing:0.095642pt;}
.ws34{word-spacing:0.106268pt;}
.wsb4{word-spacing:0.118720pt;}
.wsb3{word-spacing:0.123318pt;}
.wse7{word-spacing:0.143462pt;}
.ws24{word-spacing:0.159402pt;}
.wsb0{word-spacing:0.166212pt;}
.wsaf{word-spacing:0.168559pt;}
.wsac{word-spacing:0.173418pt;}
.wsab{word-spacing:0.177859pt;}
.ws7d{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.wsdc{word-spacing:0.239104pt;}
.wsa4{word-spacing:0.255884pt;}
.ws38{word-spacing:0.265669pt;}
.ws35{word-spacing:0.318803pt;}
.wsf5{word-spacing:0.334746pt;}
.ws32{word-spacing:0.371937pt;}
.wsd9{word-spacing:0.382566pt;}
.ws57{word-spacing:0.425071pt;}
.wsd5{word-spacing:0.430387pt;}
.ws4b{word-spacing:0.478205pt;}
.wsd6{word-spacing:0.526029pt;}
.ws43{word-spacing:0.531339pt;}
.wsd4{word-spacing:0.573850pt;}
.ws9{word-spacing:0.584473pt;}
.ws70{word-spacing:0.662599pt;}
.wsdd{word-spacing:0.669491pt;}
.ws91{word-spacing:0.690740pt;}
.wscd{word-spacing:0.717312pt;}
.ws9a{word-spacing:0.743874pt;}
.ws31{word-spacing:0.797008pt;}
.ws63{word-spacing:0.850142pt;}
.ws4c{word-spacing:0.956410pt;}
.ws3d{word-spacing:1.062677pt;}
.wsc0{word-spacing:1.099878pt;}
.wsd7{word-spacing:1.195520pt;}
.wsc5{word-spacing:1.338982pt;}
.ws1b{word-spacing:1.381481pt;}
.wsbf{word-spacing:1.386803pt;}
.ws81{word-spacing:1.482445pt;}
.ws37{word-spacing:1.487748pt;}
.ws5c{word-spacing:1.540882pt;}
.wsf6{word-spacing:1.578086pt;}
.wsc4{word-spacing:1.625907pt;}
.wscc{word-spacing:1.673728pt;}
.wsd0{word-spacing:1.769370pt;}
.wsea{word-spacing:1.817190pt;}
.ws2b{word-spacing:1.859685pt;}
.ws58{word-spacing:1.912819pt;}
.wse1{word-spacing:2.008474pt;}
.wse2{word-spacing:2.056294pt;}
.ws4a{word-spacing:2.072221pt;}
.wsc1{word-spacing:2.199757pt;}
.ws19{word-spacing:2.284756pt;}
.ws49{word-spacing:2.391024pt;}
.ws40{word-spacing:2.444158pt;}
.ws9b{word-spacing:2.550426pt;}
.ws2f{word-spacing:2.656693pt;}
.ws1a{word-spacing:2.709827pt;}
.wsa3{word-spacing:2.762961pt;}
.wsf0{word-spacing:2.821427pt;}
.wsd8{word-spacing:2.865417pt;}
.wsb7{word-spacing:2.869229pt;}
.ws4{word-spacing:2.869248pt;}
.ws71{word-spacing:2.922363pt;}
.ws77{word-spacing:3.081764pt;}
.ws78{word-spacing:3.091357pt;}
.ws6b{word-spacing:3.134898pt;}
.ws17{word-spacing:3.185311pt;}
.ws18{word-spacing:3.188032pt;}
.wsc{word-spacing:3.241166pt;}
.wsdf{word-spacing:3.251814pt;}
.wsd{word-spacing:3.294300pt;}
.wsf2{word-spacing:3.299635pt;}
.ws27{word-spacing:3.400567pt;}
.wse{word-spacing:3.453701pt;}
.ws39{word-spacing:3.666237pt;}
.wsb{word-spacing:3.719371pt;}
.ws13{word-spacing:3.772505pt;}
.wsf8{word-spacing:3.873485pt;}
.ws8{word-spacing:4.038174pt;}
.wsec{word-spacing:4.064768pt;}
.wsee{word-spacing:4.112589pt;}
.ws16{word-spacing:4.250709pt;}
.wsc8{word-spacing:4.303843pt;}
.ws7c{word-spacing:4.399514pt;}
.ws29{word-spacing:4.410111pt;}
.ws25{word-spacing:4.463245pt;}
.ws9d{word-spacing:4.569513pt;}
.ws12{word-spacing:4.728914pt;}
.ws7b{word-spacing:4.734259pt;}
.ws9c{word-spacing:4.782048pt;}
.ws15{word-spacing:4.835182pt;}
.wsa7{word-spacing:4.877722pt;}
.wsb1{word-spacing:4.941450pt;}
.wsb2{word-spacing:4.964690pt;}
.wsad{word-spacing:5.206871pt;}
.ws7a{word-spacing:5.207119pt;}
.wsae{word-spacing:5.215799pt;}
.ws42{word-spacing:5.472788pt;}
.ws2a{word-spacing:5.579056pt;}
.ws45{word-spacing:5.685324pt;}
.ws48{word-spacing:5.738458pt;}
.ws3{word-spacing:5.843200pt;}
.wsda{word-spacing:6.073242pt;}
.wse5{word-spacing:6.360166pt;}
.wsd3{word-spacing:6.551450pt;}
.ws10{word-spacing:6.588599pt;}
.wsf{word-spacing:6.641733pt;}
.wse8{word-spacing:6.742733pt;}
.ws8a{word-spacing:6.960537pt;}
.ws99{word-spacing:7.173072pt;}
.wsdb{word-spacing:7.651328pt;}
.ws3b{word-spacing:7.704411pt;}
.ws44{word-spacing:7.810678pt;}
.wse4{word-spacing:8.033894pt;}
.wsd1{word-spacing:8.128384pt;}
.wsde{word-spacing:8.129024pt;}
.wsf3{word-spacing:8.132710pt;}
.ws3c{word-spacing:8.182615pt;}
.ws2d{word-spacing:8.235749pt;}
.ws2c{word-spacing:8.395151pt;}
.ws89{word-spacing:8.501419pt;}
.ws20{word-spacing:8.607686pt;}
.ws8b{word-spacing:8.767088pt;}
.ws54{word-spacing:8.914390pt;}
.ws7{word-spacing:9.032757pt;}
.ws74{word-spacing:9.139025pt;}
.ws5d{word-spacing:9.298427pt;}
.wsa{word-spacing:9.351561pt;}
.ws62{word-spacing:9.882899pt;}
.wse3{word-spacing:9.898906pt;}
.wsf4{word-spacing:10.138010pt;}
.wsb8{word-spacing:10.626773pt;}
.ws61{word-spacing:10.733041pt;}
.wscb{word-spacing:10.759680pt;}
.ws52{word-spacing:10.945577pt;}
.wsbe{word-spacing:11.158112pt;}
.ws60{word-spacing:11.476915pt;}
.ws5a{word-spacing:11.571466pt;}
.ws59{word-spacing:11.742585pt;}
.wsb6{word-spacing:11.899628pt;}
.wsa8{word-spacing:11.902490pt;}
.ws98{word-spacing:11.904961pt;}
.ws22{word-spacing:12.698994pt;}
.ws75{word-spacing:13.213933pt;}
.ws8d{word-spacing:13.216467pt;}
.ws8f{word-spacing:13.220400pt;}
.ws92{word-spacing:13.235000pt;}
.wsa6{word-spacing:13.820211pt;}
.ws5e{word-spacing:13.867939pt;}
.wsc7{word-spacing:14.250598pt;}
.ws8c{word-spacing:14.346144pt;}
.wsa5{word-spacing:14.346240pt;}
.wse0{word-spacing:14.585344pt;}
.wsc6{word-spacing:14.776627pt;}
.ws67{word-spacing:15.364542pt;}
.wsed{word-spacing:15.541760pt;}
.wsca{word-spacing:15.685222pt;}
.ws4d{word-spacing:15.945370pt;}
.ws65{word-spacing:16.056101pt;}
.ws5f{word-spacing:16.949703pt;}
.ws56{word-spacing:21.592688pt;}
.ws90{word-spacing:27.824467pt;}
.ws41{word-spacing:30.605107pt;}
.ws51{word-spacing:37.150497pt;}
.ws9f{word-spacing:72.616416pt;}
.ws87{word-spacing:74.413947pt;}
.ws86{word-spacing:75.658450pt;}
.wsaa{word-spacing:80.353007pt;}
.ws95{word-spacing:87.272960pt;}
.ws83{word-spacing:99.763753pt;}
.ws84{word-spacing:114.164987pt;}
.wsa1{word-spacing:118.367904pt;}
.wsa9{word-spacing:137.476898pt;}
.ws93{word-spacing:177.654272pt;}
.ws82{word-spacing:215.745930pt;}
.ws96{word-spacing:227.770470pt;}
.ws97{word-spacing:239.725670pt;}
.ws9e{word-spacing:273.116066pt;}
.wsa2{word-spacing:403.257026pt;}
.wsa0{word-spacing:411.745218pt;}
.ws6a{word-spacing:589.307715pt;}
.ws6f{word-spacing:610.242459pt;}
.ws55{word-spacing:625.598146pt;}
.ws6d{word-spacing:667.467633pt;}
.ws5b{word-spacing:705.511482pt;}
.ws4f{word-spacing:833.298431pt;}
._1a{margin-left:-6.530188pt;}
._3{margin-left:-5.308109pt;}
._4{margin-left:-4.399514pt;}
._2{margin-left:-2.922702pt;}
._7{margin-left:-1.819895pt;}
._5{margin-left:-0.908595pt;}
._8{width:0.969929pt;}
._1{width:2.657052pt;}
._18{width:4.677856pt;}
._2d{width:7.938253pt;}
._2e{width:9.905340pt;}
._1d{width:10.839309pt;}
._14{width:12.273923pt;}
._3b{width:13.543858pt;}
._6{width:14.824448pt;}
._f{width:16.258963pt;}
._c{width:17.640444pt;}
._9{width:18.875668pt;}
._15{width:19.832276pt;}
._e{width:20.828476pt;}
._27{width:21.904497pt;}
._13{width:23.386967pt;}
._1b{width:24.972917pt;}
._b{width:25.982461pt;}
._19{width:26.899080pt;}
._a{width:27.908624pt;}
._0{width:29.648896pt;}
._10{width:31.189778pt;}
._17{width:33.261801pt;}
._28{width:34.962084pt;}
._d{width:36.715502pt;}
._46{width:38.804525pt;}
._16{width:41.351492pt;}
._45{width:44.099141pt;}
._47{width:45.621043pt;}
._1c{width:49.162170pt;}
._44{width:53.225860pt;}
._43{width:54.993920pt;}
._26{width:60.556257pt;}
._21{width:62.747012pt;}
._39{width:63.759505pt;}
._42{width:78.904320pt;}
._29{width:80.494874pt;}
._23{width:92.222413pt;}
._3e{width:112.809267pt;}
._25{width:114.164987pt;}
._41{width:121.608294pt;}
._3d{width:122.708173pt;}
._22{width:142.785736pt;}
._24{width:151.417390pt;}
._3f{width:158.765056pt;}
._40{width:189.561651pt;}
._36{width:207.960704pt;}
._2a{width:238.729933pt;}
._2b{width:239.725670pt;}
._2c{width:275.208704pt;}
._34{width:283.913046pt;}
._20{width:296.474614pt;}
._2f{width:321.159233pt;}
._35{width:359.356097pt;}
._1f{width:384.835497pt;}
._1e{width:416.318321pt;}
._11{width:515.738524pt;}
._30{width:539.543436pt;}
._31{width:558.421175pt;}
._37{width:571.594849pt;}
._32{width:588.571233pt;}
._38{width:614.069762pt;}
._33{width:631.046146pt;}
._3a{width:1767.789600pt;}
._12{width:1789.042933pt;}
._3c{width:3083.064267pt;}
.fsc{font-size:31.880533pt;}
.fs10{font-size:33.952768pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fsf{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fse{font-size:45.429760pt;}
.fs5{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fsa{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:120.948480pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:3.044747pt;}
.y2{bottom:12.329438pt;}
.y13{bottom:12.578910pt;}
.y30{bottom:56.693333pt;}
.y79{bottom:96.544000pt;}
.y1c5{bottom:96.850667pt;}
.yda{bottom:102.044000pt;}
.y162{bottom:102.190667pt;}
.y2f{bottom:106.577333pt;}
.ya4{bottom:112.116000pt;}
.y1c4{bottom:114.066667pt;}
.y78{bottom:114.556000pt;}
.y161{bottom:115.700000pt;}
.yd9{bottom:120.056000pt;}
.y132{bottom:124.181333pt;}
.y2e{bottom:124.590667pt;}
.y191{bottom:124.798667pt;}
.y62{bottom:127.454667pt;}
.y160{bottom:129.209333pt;}
.ya3{bottom:130.128000pt;}
.y1c3{bottom:131.281333pt;}
.y77{bottom:132.568000pt;}
.yd8{bottom:138.068000pt;}
.y140{bottom:138.472000pt;}
.y190{bottom:142.014667pt;}
.y131{bottom:142.194667pt;}
.y2d{bottom:142.602667pt;}
.y61{bottom:145.466667pt;}
.ya2{bottom:148.140000pt;}
.y1c2{bottom:148.497333pt;}
.y76{bottom:150.581333pt;}
.yed{bottom:151.692000pt;}
.yd7{bottom:156.081333pt;}
.y13f{bottom:156.484000pt;}
.y15f{bottom:158.658667pt;}
.y18f{bottom:159.230667pt;}
.y130{bottom:160.206667pt;}
.y2c{bottom:160.616000pt;}
.y60{bottom:163.478667pt;}
.y1c1{bottom:165.713333pt;}
.y14f{bottom:166.137333pt;}
.ya1{bottom:166.153333pt;}
.y75{bottom:168.593333pt;}
.yec{bottom:169.705333pt;}
.yd6{bottom:174.093333pt;}
.y13e{bottom:174.497333pt;}
.y18e{bottom:176.445333pt;}
.y15e{bottom:176.670667pt;}
.y12f{bottom:178.218667pt;}
.y2b{bottom:178.628000pt;}
.y5f{bottom:181.492000pt;}
.y1c0{bottom:182.928000pt;}
.y14e{bottom:183.233333pt;}
.ya0{bottom:184.165333pt;}
.y74{bottom:186.606667pt;}
.yeb{bottom:187.717333pt;}
.yd5{bottom:192.106667pt;}
.y13d{bottom:192.509333pt;}
.y14c{bottom:193.650667pt;}
.y18d{bottom:193.661333pt;}
.y15d{bottom:194.684000pt;}
.y12e{bottom:196.232000pt;}
.y2a{bottom:196.640000pt;}
.y10a{bottom:198.326667pt;}
.y5e{bottom:199.504000pt;}
.y1bf{bottom:200.144000pt;}
.y9f{bottom:202.178667pt;}
.y73{bottom:204.618667pt;}
.yea{bottom:205.730667pt;}
.yd4{bottom:210.118667pt;}
.y13c{bottom:210.522667pt;}
.y18c{bottom:210.876000pt;}
.y14b{bottom:211.664000pt;}
.y15c{bottom:212.696000pt;}
.y12d{bottom:214.244000pt;}
.y29{bottom:214.653333pt;}
.y109{bottom:215.422667pt;}
.y1be{bottom:217.358667pt;}
.y5d{bottom:217.517333pt;}
.y152{bottom:223.276000pt;}
.ye9{bottom:223.742667pt;}
.y18b{bottom:228.092000pt;}
.yd3{bottom:228.130667pt;}
.y9e{bottom:228.161333pt;}
.y13b{bottom:228.534667pt;}
.y14a{bottom:229.676000pt;}
.y72{bottom:230.601333pt;}
.y15b{bottom:230.708000pt;}
.y12c{bottom:232.257333pt;}
.y1bd{bottom:234.574667pt;}
.y5c{bottom:235.529333pt;}
.y151{bottom:240.372000pt;}
.y28{bottom:240.636000pt;}
.ye8{bottom:241.754667pt;}
.y18a{bottom:245.308000pt;}
.yd2{bottom:246.144000pt;}
.y13a{bottom:246.546667pt;}
.y149{bottom:247.689333pt;}
.y15a{bottom:248.721333pt;}
.y12b{bottom:250.269333pt;}
.y1bc{bottom:251.790667pt;}
.y5b{bottom:253.541333pt;}
.y150{bottom:257.468000pt;}
.y9d{bottom:259.112000pt;}
.y71{bottom:261.552000pt;}
.y189{bottom:262.522667pt;}
.yd1{bottom:264.156000pt;}
.y139{bottom:264.560000pt;}
.y148{bottom:265.701333pt;}
.y159{bottom:266.733333pt;}
.ye7{bottom:267.737333pt;}
.y1bb{bottom:269.005333pt;}
.y5a{bottom:271.554667pt;}
.y9c{bottom:277.124000pt;}
.y70{bottom:279.564000pt;}
.y188{bottom:279.738667pt;}
.y138{bottom:282.572000pt;}
.y147{bottom:283.713333pt;}
.y158{bottom:284.746667pt;}
.y1ba{bottom:286.221333pt;}
.y59{bottom:289.566667pt;}
.yd0{bottom:290.138667pt;}
.y12a{bottom:291.954667pt;}
.y9b{bottom:295.136000pt;}
.y187{bottom:296.953333pt;}
.y6f{bottom:297.577333pt;}
.y137{bottom:300.584000pt;}
.y146{bottom:301.726667pt;}
.y157{bottom:302.758667pt;}
.y1b9{bottom:303.437333pt;}
.ye6{bottom:306.034733pt;}
.y129{bottom:306.566667pt;}
.y58{bottom:307.580000pt;}
.y27{bottom:308.554667pt;}
.y9a{bottom:313.149333pt;}
.y126{bottom:313.873333pt;}
.y186{bottom:314.169333pt;}
.y6e{bottom:315.589333pt;}
.y136{bottom:318.597333pt;}
.y145{bottom:319.738667pt;}
.ye5{bottom:319.916133pt;}
.y1b8{bottom:320.652000pt;}
.y156{bottom:320.770667pt;}
.ycf{bottom:321.089333pt;}
.y128{bottom:321.178667pt;}
.y57{bottom:325.592000pt;}
.y99{bottom:331.161333pt;}
.y185{bottom:331.385333pt;}
.y6d{bottom:333.602667pt;}
.y127{bottom:335.790667pt;}
.y144{bottom:337.752000pt;}
.y1b7{bottom:337.868000pt;}
.yce{bottom:339.102667pt;}
.ye4{bottom:340.132133pt;}
.y26{bottom:342.506667pt;}
.y56{bottom:343.604000pt;}
.y155{bottom:346.753333pt;}
.y184{bottom:348.600000pt;}
.y98{bottom:349.174667pt;}
.y135{bottom:349.708000pt;}
.y6c{bottom:351.614667pt;}
.y1b6{bottom:355.082667pt;}
.y125{bottom:357.070667pt;}
.ycd{bottom:357.114667pt;}
.ye3{bottom:360.348133pt;}
.y25{bottom:360.520000pt;}
.y55{bottom:361.617333pt;}
.y183{bottom:365.816000pt;}
.y134{bottom:366.804000pt;}
.y97{bottom:367.186667pt;}
.y143{bottom:368.862667pt;}
.y6b{bottom:369.626667pt;}
.y1b5{bottom:372.298667pt;}
.ye2{bottom:374.228267pt;}
.y154{bottom:374.862667pt;}
.ycc{bottom:375.126667pt;}
.y124{bottom:378.350667pt;}
.y24{bottom:378.532000pt;}
.y54{bottom:379.629333pt;}
.y182{bottom:383.030667pt;}
.y96{bottom:385.198667pt;}
.y142{bottom:385.958667pt;}
.y6a{bottom:387.640000pt;}
.y1b4{bottom:389.514667pt;}
.ye1{bottom:391.292800pt;}
.y153{bottom:391.958667pt;}
.ycb{bottom:393.140000pt;}
.y23{bottom:396.544000pt;}
.y53{bottom:397.642667pt;}
.y123{bottom:399.629333pt;}
.y181{bottom:400.246667pt;}
.y141{bottom:403.054667pt;}
.y95{bottom:403.212000pt;}
.y69{bottom:405.652000pt;}
.y1b3{bottom:406.729333pt;}
.yca{bottom:411.152000pt;}
.y122{bottom:414.241333pt;}
.y22{bottom:414.557333pt;}
.y52{bottom:415.654667pt;}
.y180{bottom:417.462667pt;}
.ye0{bottom:418.648000pt;}
.y94{bottom:421.224000pt;}
.y68{bottom:423.665333pt;}
.y1b2{bottom:423.945333pt;}
.y121{bottom:428.853333pt;}
.yc9{bottom:429.165333pt;}
.y21{bottom:432.569333pt;}
.y51{bottom:433.666667pt;}
.y17f{bottom:434.677333pt;}
.ydf{bottom:435.744000pt;}
.y93{bottom:439.237333pt;}
.y1b1{bottom:441.160000pt;}
.yc8{bottom:447.177333pt;}
.y67{bottom:449.648000pt;}
.y20{bottom:450.582667pt;}
.y50{bottom:451.680000pt;}
.y17e{bottom:451.893333pt;}
.yde{bottom:452.840000pt;}
.y120{bottom:456.960000pt;}
.y1b0{bottom:458.376000pt;}
.yc7{bottom:460.606667pt;}
.yc5{bottom:465.189333pt;}
.y108{bottom:466.301333pt;}
.y1f{bottom:468.594667pt;}
.y17d{bottom:469.108000pt;}
.y4f{bottom:469.692000pt;}
.yc6{bottom:470.424000pt;}
.y92{bottom:470.800000pt;}
.y11f{bottom:474.056000pt;}
.y91{bottom:474.394667pt;}
.y1af{bottom:475.592000pt;}
.y66{bottom:477.757333pt;}
.yc4{bottom:478.620000pt;}
.ydd{bottom:479.233333pt;}
.yc3{bottom:483.202667pt;}
.y17c{bottom:486.324000pt;}
.y1e{bottom:486.606667pt;}
.y4e{bottom:487.704000pt;}
.y107{bottom:487.777333pt;}
.y11e{bottom:491.152000pt;}
.y1ae{bottom:492.806667pt;}
.y105{bottom:494.641333pt;}
.ydc{bottom:496.329333pt;}
.yc2{bottom:501.214667pt;}
.y17b{bottom:503.540000pt;}
.y1d{bottom:504.620000pt;}
.y4d{bottom:505.717333pt;}
.y106{bottom:509.253333pt;}
.y1ad{bottom:510.022667pt;}
.y90{bottom:510.269333pt;}
.ydb{bottom:513.425333pt;}
.yc1{bottom:519.228000pt;}
.y17a{bottom:520.754667pt;}
.y1c{bottom:522.632000pt;}
.y4c{bottom:523.729333pt;}
.y11d{bottom:524.133333pt;}
.y1ac{bottom:527.237333pt;}
.y8f{bottom:528.281333pt;}
.y104{bottom:530.996000pt;}
.yc0{bottom:537.240000pt;}
.y179{bottom:537.970667pt;}
.y1b{bottom:540.645333pt;}
.y4b{bottom:541.742667pt;}
.y11c{bottom:542.145333pt;}
.y1ab{bottom:544.453333pt;}
.y8e{bottom:546.293333pt;}
.y103{bottom:552.472000pt;}
.y178{bottom:555.185333pt;}
.ybf{bottom:555.252000pt;}
.y1a{bottom:558.657333pt;}
.y101{bottom:559.336000pt;}
.y4a{bottom:559.754667pt;}
.y11b{bottom:560.158667pt;}
.y1aa{bottom:561.669333pt;}
.y8d{bottom:564.306667pt;}
.y177{bottom:572.401333pt;}
.y102{bottom:573.948000pt;}
.y19{bottom:576.669333pt;}
.y49{bottom:577.766667pt;}
.y11a{bottom:578.170667pt;}
.y1a9{bottom:578.884000pt;}
.y8c{bottom:582.318667pt;}
.ybe{bottom:586.754667pt;}
.y176{bottom:589.617333pt;}
.ybd{bottom:590.350667pt;}
.y18{bottom:594.682667pt;}
.y100{bottom:595.689333pt;}
.y48{bottom:595.780000pt;}
.y1a8{bottom:596.100000pt;}
.y119{bottom:596.182667pt;}
.y8b{bottom:600.332000pt;}
.y175{bottom:606.832000pt;}
.y17{bottom:612.694667pt;}
.y1a7{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y118{bottom:614.196000pt;}
.yff{bottom:617.165333pt;}
.y8a{bottom:618.344000pt;}
.yfd{bottom:624.030667pt;}
.ybc{bottom:626.225333pt;}
.y1a6{bottom:630.530667pt;}
.y16{bottom:630.708000pt;}
.y46{bottom:631.805333pt;}
.y174{bottom:632.018667pt;}
.yfe{bottom:638.642667pt;}
.ybb{bottom:644.237333pt;}
.y1a5{bottom:647.746667pt;}
.y15{bottom:648.720000pt;}
.y88{bottom:649.190667pt;}
.y45{bottom:649.817333pt;}
.y116{bottom:653.639947pt;}
.y89{bottom:659.772000pt;}
.yfc{bottom:660.384000pt;}
.y87{bottom:660.876000pt;}
.y85{bottom:663.638667pt;}
.y115{bottom:664.013520pt;}
.y1a4{bottom:664.961333pt;}
.y173{bottom:667.629333pt;}
.y44{bottom:667.829333pt;}
.yba{bottom:673.653333pt;}
.y117{bottom:674.340707pt;}
.y111{bottom:674.341653pt;}
.y114{bottom:674.388040pt;}
.y86{bottom:677.985333pt;}
.yfb{bottom:681.860000pt;}
.y1a3{bottom:682.177333pt;}
.y12{bottom:682.547968pt;}
.yb9{bottom:682.766667pt;}
.yf9{bottom:683.652000pt;}
.y10f{bottom:684.120720pt;}
.y172{bottom:684.141333pt;}
.y113{bottom:684.762560pt;}
.y43{bottom:685.842667pt;}
.yf8{bottom:687.776000pt;}
.y11{bottom:689.281333pt;}
.y112{bottom:695.137080pt;}
.y1a2{bottom:699.392000pt;}
.y171{bottom:700.653333pt;}
.yfa{bottom:702.874667pt;}
.y42{bottom:703.854667pt;}
.y84{bottom:706.964000pt;}
.y14d{bottom:709.729333pt;}
.y110{bottom:710.057493pt;}
.y1a1{bottom:716.608000pt;}
.y170{bottom:717.164000pt;}
.y10{bottom:717.894667pt;}
.y41{bottom:721.868000pt;}
.yb8{bottom:723.824000pt;}
.yf7{bottom:724.153333pt;}
.y133{bottom:724.422667pt;}
.y83{bottom:724.976000pt;}
.y10e{bottom:725.165347pt;}
.y16f{bottom:733.676000pt;}
.y1a0{bottom:733.824000pt;}
.yf6{bottom:734.209333pt;}
.y10d{bottom:734.898027pt;}
.yf{bottom:738.373333pt;}
.y40{bottom:739.880000pt;}
.yb7{bottom:741.836000pt;}
.y82{bottom:742.988000pt;}
.ye{bottom:750.173333pt;}
.y16e{bottom:750.186667pt;}
.y19f{bottom:751.038667pt;}
.y10c{bottom:755.194560pt;}
.y3f{bottom:757.892000pt;}
.yb6{bottom:759.849333pt;}
.y81{bottom:761.001333pt;}
.yd{bottom:766.313333pt;}
.y16d{bottom:766.698667pt;}
.y1cb{bottom:767.982667pt;}
.y19e{bottom:768.254667pt;}
.yf5{bottom:773.273333pt;}
.y3e{bottom:775.905333pt;}
.yb5{bottom:777.861333pt;}
.y10b{bottom:778.949333pt;}
.y16c{bottom:783.210667pt;}
.y1ca{bottom:785.197333pt;}
.y19d{bottom:785.469333pt;}
.yc{bottom:786.792000pt;}
.y80{bottom:790.156000pt;}
.yf4{bottom:790.369333pt;}
.y3d{bottom:793.917333pt;}
.y7f{bottom:794.024000pt;}
.yb4{bottom:795.873333pt;}
.y16b{bottom:799.721333pt;}
.y1c9{bottom:802.413333pt;}
.y19c{bottom:802.685333pt;}
.y1c8{bottom:802.773333pt;}
.yb{bottom:802.932000pt;}
.y3c{bottom:811.930667pt;}
.yb3{bottom:813.886667pt;}
.ya{bottom:814.732000pt;}
.y19b{bottom:819.901333pt;}
.yf3{bottom:821.972000pt;}
.y16a{bottom:826.117333pt;}
.y7e{bottom:827.046667pt;}
.y1c7{bottom:828.588000pt;}
.y3b{bottom:829.942667pt;}
.y9{bottom:835.210667pt;}
.y19a{bottom:837.116000pt;}
.yf2{bottom:839.985333pt;}
.y1c6{bottom:842.097333pt;}
.yb2{bottom:842.626667pt;}
.y7d{bottom:845.060000pt;}
.y8{bottom:847.010667pt;}
.yb1{bottom:847.365333pt;}
.y169{bottom:847.597333pt;}
.y3a{bottom:847.954667pt;}
.y199{bottom:854.332000pt;}
.yad{bottom:857.550667pt;}
.yf1{bottom:857.997333pt;}
.y7c{bottom:863.072000pt;}
.yb0{bottom:865.522667pt;}
.yaf{bottom:865.573333pt;}
.y39{bottom:865.968000pt;}
.y7{bottom:867.490667pt;}
.yae{bottom:870.105333pt;}
.y198{bottom:871.546667pt;}
.yf0{bottom:876.010667pt;}
.y7b{bottom:881.084000pt;}
.y168{bottom:881.549333pt;}
.y38{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.y197{bottom:888.762667pt;}
.yef{bottom:894.022667pt;}
.y37{bottom:901.993333pt;}
.y167{bottom:903.029333pt;}
.y196{bottom:905.978667pt;}
.y7a{bottom:907.066667pt;}
.yee{bottom:912.034667pt;}
.yaa{bottom:915.560000pt;}
.yab{bottom:915.710667pt;}
.y166{bottom:916.538667pt;}
.yac{bottom:916.724000pt;}
.ya9{bottom:918.982667pt;}
.y36{bottom:920.005333pt;}
.y195{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y65{bottom:930.048000pt;}
.ya6{bottom:933.622667pt;}
.ya7{bottom:933.773333pt;}
.ya8{bottom:934.737333pt;}
.ya5{bottom:936.994667pt;}
.y35{bottom:938.017333pt;}
.y194{bottom:940.409333pt;}
.y64{bottom:948.060000pt;}
.y165{bottom:951.526667pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y193{bottom:957.624000pt;}
.y164{bottom:965.037333pt;}
.y63{bottom:966.073333pt;}
.y33{bottom:974.042667pt;}
.y192{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y163{bottom:978.546667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h3d{height:24.445993pt;}
.h40{height:24.717615pt;}
.h3f{height:24.887379pt;}
.h7{height:27.076941pt;}
.h20{height:29.397999pt;}
.hb{height:29.433775pt;}
.h16{height:29.599908pt;}
.h31{height:29.792358pt;}
.ha{height:30.399505pt;}
.hf{height:31.157778pt;}
.h18{height:31.558400pt;}
.h34{height:32.709427pt;}
.h36{height:33.072865pt;}
.he{height:33.155533pt;}
.h11{height:34.430976pt;}
.h8{height:34.813542pt;}
.h30{height:35.052646pt;}
.h33{height:35.129680pt;}
.h32{height:37.372000pt;}
.h15{height:37.778179pt;}
.h25{height:38.150116pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h4{height:38.947124pt;}
.h1e{height:39.032936pt;}
.h10{height:41.524400pt;}
.h2{height:45.271688pt;}
.h3e{height:45.468548pt;}
.h39{height:45.919607pt;}
.h3c{height:46.421467pt;}
.h3b{height:46.426800pt;}
.h28{height:48.063908pt;}
.h6{height:48.365611pt;}
.h23{height:48.885242pt;}
.h14{height:48.890575pt;}
.h2e{height:50.331332pt;}
.h3a{height:51.309542pt;}
.h12{height:51.546575pt;}
.h22{height:52.975908pt;}
.h1f{height:52.981242pt;}
.h21{height:54.644400pt;}
.h24{height:54.649733pt;}
.h13{height:56.996400pt;}
.h27{height:57.363603pt;}
.h17{height:57.799269pt;}
.h35{height:60.579799pt;}
.h37{height:60.584865pt;}
.h1c{height:61.128021pt;}
.h1a{height:62.215269pt;}
.h26{height:67.013242pt;}
.h2f{height:67.013999pt;}
.h29{height:67.215908pt;}
.h5{height:68.861952pt;}
.h1d{height:75.506688pt;}
.h2d{height:75.512021pt;}
.h2c{height:77.977733pt;}
.h38{height:78.265643pt;}
.h3{height:82.003069pt;}
.h2b{height:83.865733pt;}
.h19{height:93.016021pt;}
.h2a{height:101.220400pt;}
.h1b{height:108.482688pt;}
.h41{height:793.701333pt;}
.h42{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:214.529007pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.606197pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.xae{left:112.774067pt;}
.xb0{left:117.503800pt;}
.xaf{left:118.770467pt;}
.xe6{left:123.789333pt;}
.x80{left:127.280000pt;}
.x4{left:129.332000pt;}
.x13{left:130.393333pt;}
.x78{left:132.030667pt;}
.xf{left:133.025333pt;}
.xd8{left:135.181333pt;}
.xbe{left:136.909333pt;}
.xc8{left:139.936413pt;}
.x49{left:143.894667pt;}
.x22{left:144.934667pt;}
.xbf{left:148.408000pt;}
.xd7{left:149.461333pt;}
.x1e{left:151.406667pt;}
.x59{left:154.088000pt;}
.x23{left:155.077333pt;}
.xe7{left:156.157333pt;}
.x1f{left:158.048000pt;}
.xbc{left:161.617333pt;}
.x27{left:163.873333pt;}
.x10{left:165.541333pt;}
.xc7{left:167.510667pt;}
.xd0{left:168.850667pt;}
.x8{left:172.156000pt;}
.x51{left:173.814667pt;}
.xac{left:175.580000pt;}
.x28{left:177.157333pt;}
.x89{left:179.521333pt;}
.x29{left:180.481333pt;}
.xc9{left:181.428813pt;}
.xda{left:182.633333pt;}
.xa9{left:185.984000pt;}
.x8a{left:188.957333pt;}
.xca{left:190.269733pt;}
.x2a{left:193.764000pt;}
.xe3{left:196.025333pt;}
.x2b{left:197.089333pt;}
.xf1{left:200.168000pt;}
.x8b{left:203.750667pt;}
.xd1{left:205.078667pt;}
.xa8{left:207.560000pt;}
.x2c{left:210.372000pt;}
.xe9{left:211.696000pt;}
.x2d{left:212.898667pt;}
.x5a{left:215.326667pt;}
.xa7{left:218.998667pt;}
.x5b{left:221.318667pt;}
.x79{left:223.410667pt;}
.x2e{left:226.182667pt;}
.xe8{left:227.505333pt;}
.x9f{left:228.706667pt;}
.xe5{left:230.912000pt;}
.x25{left:231.928000pt;}
.x8c{left:234.186667pt;}
.x5c{left:236.897333pt;}
.x3b{left:242.426667pt;}
.x8d{left:244.001333pt;}
.x26{left:245.212000pt;}
.xd3{left:251.388000pt;}
.xc0{left:252.342667pt;}
.x3c{left:255.709333pt;}
.x8e{left:256.928000pt;}
.x5d{left:260.098667pt;}
.xc1{left:263.590667pt;}
.xc6{left:264.584000pt;}
.x5e{left:266.092000pt;}
.x91{left:268.346667pt;}
.x2f{left:269.266667pt;}
.xd{left:272.684000pt;}
.x72{left:273.862667pt;}
.x68{left:277.418667pt;}
.x30{left:282.549333pt;}
.x4a{left:283.866667pt;}
.x31{left:285.937333pt;}
.x33{left:287.378667pt;}
.x9d{left:290.086667pt;}
.x3f{left:293.292000pt;}
.x4b{left:297.150667pt;}
.x32{left:299.221333pt;}
.x34{left:300.662667pt;}
.x5f{left:301.809333pt;}
.x6c{left:303.452000pt;}
.xe{left:304.926667pt;}
.x73{left:307.814667pt;}
.xc2{left:313.600000pt;}
.x24{left:316.122667pt;}
.x9e{left:317.976000pt;}
.x6a{left:320.088000pt;}
.x40{left:321.181333pt;}
.x69{left:325.493333pt;}
.xcc{left:327.898973pt;}
.x4f{left:329.410667pt;}
.x81{left:332.429333pt;}
.x47{left:339.198667pt;}
.xcb{left:340.596613pt;}
.xdb{left:344.053333pt;}
.x82{left:345.713333pt;}
.x6f{left:347.766667pt;}
.x48{left:352.482667pt;}
.x83{left:354.428000pt;}
.xb{left:356.128000pt;}
.xad{left:362.054667pt;}
.x98{left:366.998667pt;}
.x6b{left:368.538667pt;}
.xc3{left:374.526667pt;}
.x94{left:375.420000pt;}
.x92{left:377.045333pt;}
.xa3{left:379.184000pt;}
.x70{left:381.286667pt;}
.x84{left:385.642667pt;}
.x18{left:386.858667pt;}
.xc{left:389.092000pt;}
.xa4{left:390.538667pt;}
.x95{left:392.285333pt;}
.x19{left:393.501333pt;}
.x1a{left:396.768000pt;}
.x20{left:398.482667pt;}
.x93{left:401.438667pt;}
.x1b{left:403.410667pt;}
.x7a{left:406.052000pt;}
.x21{left:409.394667pt;}
.xb2{left:411.841333pt;}
.xd2{left:413.026667pt;}
.x35{left:418.638667pt;}
.x46{left:422.110667pt;}
.x7f{left:424.114667pt;}
.xb9{left:426.204000pt;}
.x9a{left:427.266667pt;}
.xc4{left:429.928000pt;}
.x36{left:431.922667pt;}
.x96{left:432.884000pt;}
.x37{left:435.184000pt;}
.x50{left:439.612000pt;}
.xc5{left:443.212000pt;}
.x52{left:445.252000pt;}
.x42{left:447.250667pt;}
.x38{left:448.468000pt;}
.x3d{left:452.168000pt;}
.xb3{left:453.674667pt;}
.xb4{left:458.186667pt;}
.x3e{left:465.452000pt;}
.xba{left:468.116000pt;}
.x53{left:470.433333pt;}
.xb5{left:471.469333pt;}
.xbb{left:472.628000pt;}
.xcd{left:476.193360pt;}
.x9{left:478.526667pt;}
.x54{left:482.974667pt;}
.xaa{left:485.576000pt;}
.xce{left:494.820920pt;}
.xab{left:497.458667pt;}
.x55{left:500.409333pt;}
.x97{left:502.074667pt;}
.xa{left:506.414667pt;}
.x56{left:513.728000pt;}
.x60{left:516.974667pt;}
.x57{left:521.598667pt;}
.xa2{left:526.857333pt;}
.xd4{left:528.140000pt;}
.x1c{left:529.856000pt;}
.x43{left:534.233333pt;}
.xdc{left:535.129333pt;}
.x1d{left:536.497333pt;}
.xb1{left:540.384000pt;}
.xf0{left:541.682667pt;}
.xb6{left:544.816000pt;}
.x76{left:546.401333pt;}
.x74{left:548.150667pt;}
.x39{left:550.917333pt;}
.x58{left:554.337333pt;}
.x11{left:557.594667pt;}
.x9c{left:560.508000pt;}
.x9b{left:561.628000pt;}
.x3a{left:564.200000pt;}
.xdd{left:566.113333pt;}
.x85{left:568.790667pt;}
.xde{left:571.321333pt;}
.x61{left:573.542667pt;}
.x75{left:578.676000pt;}
.x62{left:579.642667pt;}
.xa0{left:584.198667pt;}
.xea{left:586.724000pt;}
.xec{left:587.813333pt;}
.x77{left:588.717333pt;}
.x12{left:589.958667pt;}
.x63{left:592.985333pt;}
.xee{left:595.392000pt;}
.xef{left:597.358667pt;}
.x64{left:598.753333pt;}
.xb7{left:599.712000pt;}
.x44{left:601.538667pt;}
.x4c{left:603.730667pt;}
.xed{left:606.253333pt;}
.xeb{left:609.438667pt;}
.x6d{left:612.608000pt;}
.x45{left:614.821333pt;}
.x65{left:616.186667pt;}
.x86{left:618.562667pt;}
.xe4{left:619.964000pt;}
.x6e{left:620.920000pt;}
.x66{left:622.286667pt;}
.x6{left:623.413317pt;}
.x87{left:626.021333pt;}
.xa1{left:629.685333pt;}
.x88{left:631.681333pt;}
.x4d{left:633.402667pt;}
.xd9{left:635.826667pt;}
.xa5{left:637.401333pt;}
.xcf{left:639.609800pt;}
.x71{left:640.932000pt;}
.x4e{left:646.685333pt;}
.x67{left:648.309333pt;}
.x99{left:650.349333pt;}
.xbd{left:651.517333pt;}
.xd5{left:654.064000pt;}
.x8f{left:657.785333pt;}
.xd6{left:660.442667pt;}
.x7d{left:662.812000pt;}
.x90{left:664.973333pt;}
.xa6{left:666.216000pt;}
.xb8{left:667.620000pt;}
.x14{left:669.408000pt;}
.x41{left:672.796000pt;}
.x7b{left:673.858667pt;}
.x15{left:676.050667pt;}
.x16{left:679.437333pt;}
.x17{left:686.078667pt;}
.x7c{left:687.141333pt;}
.x7e{left:690.700000pt;}
.xdf{left:753.864000pt;}
.xe0{left:759.841333pt;}
.xe1{left:821.570667pt;}
.xe2{left:828.874667pt;}
}




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