
    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_2464060abfaed89dc438ccad.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8486a0040ac41a568c6f74d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e66e192dd8a3084c077f94df.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7597ff9bc819487c2e6bd9e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123000;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_70ec470d0f8aa13cd3b73624.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_496a5df1282a941847da9bd6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_f246cf4dbdd5e3e4218d06c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;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_d8869f5ec5dcff2c4c144145.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.173828;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_3281e38f7f24f06beae70fa5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_a2a370d15ec21dda6ee3a6fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;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_a54ad6657593aec4e1335bd8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_c87b4d15af3d6bc9dcf8ff4a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.734863;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_9dbaf8fff78dcb48200ca3f4.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_57d6bc9c8fd19854f377b037.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_06ee9196c018bc25fcae250b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_6c6352a2fddcb9a935d13d65.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_558fa32cdaa19c07e3ac7cbf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.845000;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;}
.m9{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);}
.m16{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);}
.m13{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);}
.m3{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);}
.m1a{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);}
.m2{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);}
.m14{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);}
.m25{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);}
.me{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);}
.m2b{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);}
.m1b{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);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m4{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);}
.ma{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);}
.m6{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);}
.mc{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);}
.m29{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);}
.md{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m12{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);}
.m1d{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);}
.m2a{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);}
.m11{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);}
.m10{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);}
.m24{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);}
.mf{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m7{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);}
.m21{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);}
.m22{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);}
.m23{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);}
.m18{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);}
.m27{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);}
.m17{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);}
.m15{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);}
.m2c{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);}
.m28{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);}
.mb{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);}
.m5{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);}
.m1{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);}
.vc{vertical-align:-18.798000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v6{vertical-align:-10.464000px;}
.vb{vertical-align:-8.964000px;}
.v8{vertical-align:-7.038000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.296000px;}
.v9{vertical-align:2.796000px;}
.va{vertical-align:10.518000px;}
.v5{vertical-align:11.760000px;}
.vf{vertical-align:13.224000px;}
.v1{vertical-align:21.696000px;}
.ve{vertical-align:24.984000px;}
.v4{vertical-align:32.880000px;}
.vd{vertical-align:46.830000px;}
.v10{vertical-align:60.054000px;}
.v11{vertical-align:65.754000px;}
.ls2f{letter-spacing:-0.150300px;}
.ls25{letter-spacing:-0.132264px;}
.ls30{letter-spacing:-0.114228px;}
.ls24{letter-spacing:-0.108216px;}
.ls26{letter-spacing:-0.090180px;}
.ls2d{letter-spacing:-0.072144px;}
.ls2b{letter-spacing:-0.066132px;}
.ls29{letter-spacing:-0.054108px;}
.ls31{letter-spacing:-0.048096px;}
.ls20{letter-spacing:-0.042084px;}
.ls23{letter-spacing:-0.030060px;}
.ls2a{letter-spacing:-0.024048px;}
.ls28{letter-spacing:-0.021600px;}
.ls21{letter-spacing:-0.018036px;}
.ls22{letter-spacing:-0.012024px;}
.ls27{letter-spacing:-0.006012px;}
.ls1f{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls81{letter-spacing:0.000096px;}
.ls52{letter-spacing:0.000233px;}
.ls7d{letter-spacing:0.000382px;}
.ls7a{letter-spacing:0.000422px;}
.ls6e{letter-spacing:0.000608px;}
.ls83{letter-spacing:0.001155px;}
.ls7f{letter-spacing:0.001811px;}
.ls7c{letter-spacing:0.002045px;}
.ls7b{letter-spacing:0.003284px;}
.ls80{letter-spacing:0.005873px;}
.ls15{letter-spacing:0.006012px;}
.ls7e{letter-spacing:0.006096px;}
.lse{letter-spacing:0.012024px;}
.ls1c{letter-spacing:0.018036px;}
.ls17{letter-spacing:0.024048px;}
.lsa{letter-spacing:0.028728px;}
.ls16{letter-spacing:0.030060px;}
.ls18{letter-spacing:0.036072px;}
.ls13{letter-spacing:0.037800px;}
.ls1a{letter-spacing:0.048096px;}
.ls14{letter-spacing:0.048600px;}
.ls1b{letter-spacing:0.054108px;}
.lsf{letter-spacing:0.066132px;}
.ls11{letter-spacing:0.072144px;}
.ls10{letter-spacing:0.078156px;}
.ls12{letter-spacing:0.084168px;}
.ls2c{letter-spacing:0.096192px;}
.ls19{letter-spacing:0.120240px;}
.ls2e{letter-spacing:0.150300px;}
.lsc{letter-spacing:0.177156px;}
.lsd{letter-spacing:0.180360px;}
.lsb{letter-spacing:0.191520px;}
.ls53{letter-spacing:0.294928px;}
.ls6f{letter-spacing:0.297957px;}
.ls4c{letter-spacing:0.396017px;}
.ls3f{letter-spacing:0.402017px;}
.ls59{letter-spacing:0.542815px;}
.ls64{letter-spacing:0.548815px;}
.ls68{letter-spacing:0.570600px;}
.ls72{letter-spacing:0.642088px;}
.ls71{letter-spacing:0.648088px;}
.ls51{letter-spacing:0.744374px;}
.ls3c{letter-spacing:0.745625px;}
.ls49{letter-spacing:0.820741px;}
.ls67{letter-spacing:0.882571px;}
.ls46{letter-spacing:0.993292px;}
.ls6b{letter-spacing:0.994200px;}
.ls5c{letter-spacing:0.994483px;}
.ls66{letter-spacing:0.994825px;}
.ls38{letter-spacing:0.999292px;}
.ls63{letter-spacing:1.134571px;}
.ls62{letter-spacing:1.135200px;}
.ls5a{letter-spacing:1.140571px;}
.ls57{letter-spacing:1.326685px;}
.ls54{letter-spacing:1.420741px;}
.ls3b{letter-spacing:1.893634px;}
.ls39{letter-spacing:1.939625px;}
.ls34{letter-spacing:1.945625px;}
.ls5d{letter-spacing:2.191625px;}
.ls61{letter-spacing:2.328685px;}
.ls58{letter-spacing:2.502571px;}
.ls74{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls37{letter-spacing:3.133200px;}
.ls45{letter-spacing:3.139200px;}
.ls5f{letter-spacing:3.561483px;}
.ls70{letter-spacing:3.684374px;}
.ls6d{letter-spacing:3.690374px;}
.ls47{letter-spacing:3.733200px;}
.ls3d{letter-spacing:3.739200px;}
.ls69{letter-spacing:3.836815px;}
.ls4e{letter-spacing:4.002374px;}
.ls41{letter-spacing:4.008374px;}
.ls5e{letter-spacing:10.706100px;}
.ls4{letter-spacing:11.954850px;}
.ls6{letter-spacing:12.896059px;}
.ls4a{letter-spacing:13.042741px;}
.ls40{letter-spacing:13.083483px;}
.ls4d{letter-spacing:13.089483px;}
.ls60{letter-spacing:13.112383px;}
.ls1d{letter-spacing:13.389734px;}
.ls82{letter-spacing:13.451510px;}
.ls5{letter-spacing:13.688612px;}
.ls5b{letter-spacing:13.699200px;}
.ls3e{letter-spacing:13.983483px;}
.ls4b{letter-spacing:13.989483px;}
.ls48{letter-spacing:14.577483px;}
.ls36{letter-spacing:14.583483px;}
.ls79{letter-spacing:14.764573px;}
.ls78{letter-spacing:14.824349px;}
.ls1e{letter-spacing:14.943900px;}
.ls50{letter-spacing:15.061171px;}
.ls32{letter-spacing:15.063451px;}
.ls77{letter-spacing:15.183002px;}
.ls7{letter-spacing:15.242778px;}
.ls35{letter-spacing:15.355200px;}
.ls44{letter-spacing:15.361200px;}
.ls9{letter-spacing:15.362329px;}
.ls6c{letter-spacing:16.242571px;}
.ls76{letter-spacing:16.318739px;}
.ls6a{letter-spacing:17.517943px;}
.ls56{letter-spacing:18.069483px;}
.ls3a{letter-spacing:18.679200px;}
.ls8{letter-spacing:19.247743px;}
.ls33{letter-spacing:19.563483px;}
.ls43{letter-spacing:19.569483px;}
.ls55{letter-spacing:21.222571px;}
.ls65{letter-spacing:23.191200px;}
.ls75{letter-spacing:33.476100px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls73{letter-spacing:86.860531px;}
.ls4f{letter-spacing:232.233943px;}
.ls42{letter-spacing:549.423943px;}
.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;}
}
.ws66{word-spacing:-15.180300px;}
.ws67{word-spacing:-15.042024px;}
.ws64{word-spacing:-14.987916px;}
.ws33{word-spacing:-14.943900px;}
.wsf{word-spacing:-14.355754px;}
.wsda{word-spacing:-13.449600px;}
.ws62{word-spacing:-12.161520px;}
.ws63{word-spacing:-11.970000px;}
.ws2e{word-spacing:-11.955150px;}
.wsbe{word-spacing:-11.357400px;}
.wsd{word-spacing:-10.460700px;}
.ws4b{word-spacing:-3.287658px;}
.wscc{word-spacing:-3.227882px;}
.ws37{word-spacing:-3.168107px;}
.ws36{word-spacing:-3.108331px;}
.ws9b{word-spacing:-2.993976px;}
.ws6c{word-spacing:-2.869229px;}
.ws7f{word-spacing:-2.867724px;}
.ws7e{word-spacing:-2.855700px;}
.wsc2{word-spacing:-2.809453px;}
.ws90{word-spacing:-2.795580px;}
.ws60{word-spacing:-2.689902px;}
.ws9c{word-spacing:-2.669328px;}
.wsab{word-spacing:-2.630126px;}
.ws6e{word-spacing:-2.510575px;}
.wsed{word-spacing:-2.391024px;}
.ws2c{word-spacing:-2.331248px;}
.ws105{word-spacing:-2.313331px;}
.ws34{word-spacing:-2.271473px;}
.wsfb{word-spacing:-2.259533px;}
.wsea{word-spacing:-2.211697px;}
.ws15{word-spacing:-2.151936px;}
.wseb{word-spacing:-2.151922px;}
.ws28{word-spacing:-2.092146px;}
.ws23{word-spacing:-2.032370px;}
.ws11a{word-spacing:-1.990541px;}
.wsef{word-spacing:-1.972595px;}
.wsac{word-spacing:-1.912819px;}
.ws41{word-spacing:-1.793268px;}
.wscf{word-spacing:-1.733492px;}
.ws93{word-spacing:-1.713420px;}
.ws92{word-spacing:-1.707408px;}
.ws57{word-spacing:-1.673717px;}
.ws117{word-spacing:-1.613952px;}
.ws42{word-spacing:-1.374839px;}
.ws8b{word-spacing:-1.346688px;}
.ws8c{word-spacing:-1.322640px;}
.ws55{word-spacing:-1.195512px;}
.wsbb{word-spacing:-1.135736px;}
.ws48{word-spacing:-1.016185px;}
.wsa4{word-spacing:-0.956410px;}
.wsf0{word-spacing:-0.777083px;}
.ws3b{word-spacing:-0.717307px;}
.wsf7{word-spacing:-0.657532px;}
.ws4f{word-spacing:-0.597756px;}
.ws4e{word-spacing:-0.592346px;}
.ws45{word-spacing:-0.537980px;}
.ws44{word-spacing:-0.478205px;}
.wsee{word-spacing:-0.418429px;}
.wsb6{word-spacing:-0.358654px;}
.ws7b{word-spacing:-0.336672px;}
.ws2a{word-spacing:-0.298878px;}
.ws73{word-spacing:-0.277704px;}
.ws3f{word-spacing:-0.239102px;}
.wsad{word-spacing:-0.215194px;}
.ws4d{word-spacing:-0.205137px;}
.ws38{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws7a{word-spacing:-0.156312px;}
.ws32{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws74{word-spacing:-0.081396px;}
.ws65{word-spacing:-0.060120px;}
.ws31{word-spacing:-0.059776px;}
.ws13{word-spacing:-0.053798px;}
.ws103{word-spacing:-0.010810px;}
.ws11c{word-spacing:-0.010570px;}
.ws101{word-spacing:-0.009533px;}
.ws120{word-spacing:-0.008947px;}
.ws10c{word-spacing:-0.008880px;}
.ws10a{word-spacing:-0.007526px;}
.ws10f{word-spacing:-0.007200px;}
.ws118{word-spacing:-0.006816px;}
.ws108{word-spacing:-0.006787px;}
.ws112{word-spacing:-0.004522px;}
.ws114{word-spacing:-0.004330px;}
.ws116{word-spacing:-0.004147px;}
.ws106{word-spacing:-0.003888px;}
.ws2d{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws100{word-spacing:0.001555px;}
.ws82{word-spacing:0.030060px;}
.ws6{word-spacing:0.041843px;}
.ws14{word-spacing:0.053798px;}
.ws24{word-spacing:0.059776px;}
.ws81{word-spacing:0.084168px;}
.wse{word-spacing:0.107597px;}
.ws83{word-spacing:0.114228px;}
.ws29{word-spacing:0.119551px;}
.ws4{word-spacing:0.159030px;}
.wsfe{word-spacing:0.161395px;}
.ws2{word-spacing:0.167371px;}
.ws2f{word-spacing:0.179327px;}
.wsbf{word-spacing:0.181813px;}
.ws86{word-spacing:0.205200px;}
.ws102{word-spacing:0.215194px;}
.ws39{word-spacing:0.239102px;}
.ws18{word-spacing:0.268992px;}
.ws5b{word-spacing:0.298878px;}
.ws110{word-spacing:0.322790px;}
.ws35{word-spacing:0.358654px;}
.ws9a{word-spacing:0.402804px;}
.ws46{word-spacing:0.418429px;}
.wsa5{word-spacing:0.478205px;}
.ws10{word-spacing:0.562186px;}
.ws5e{word-spacing:0.597756px;}
.wsb5{word-spacing:0.657532px;}
.wsb2{word-spacing:0.717307px;}
.wsce{word-spacing:0.777083px;}
.ws17{word-spacing:0.806976px;}
.ws88{word-spacing:0.811620px;}
.ws3d{word-spacing:0.836858px;}
.ws115{word-spacing:0.860774px;}
.ws87{word-spacing:0.871740px;}
.ws49{word-spacing:0.896634px;}
.ws10d{word-spacing:0.914573px;}
.ws4c{word-spacing:0.956410px;}
.wsfc{word-spacing:0.968371px;}
.ws54{word-spacing:1.016185px;}
.ws11f{word-spacing:1.022170px;}
.wsb9{word-spacing:1.075961px;}
.wsd3{word-spacing:1.255288px;}
.ws11d{word-spacing:1.291162px;}
.ws3a{word-spacing:1.315063px;}
.wsd8{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws47{word-spacing:1.434614px;}
.ws9e{word-spacing:1.490976px;}
.ws51{word-spacing:1.494390px;}
.ws9d{word-spacing:1.521036px;}
.wsa6{word-spacing:1.554166px;}
.ws1a{word-spacing:1.560154px;}
.ws85{word-spacing:1.576800px;}
.ws84{word-spacing:1.587600px;}
.ws30{word-spacing:1.613941px;}
.ws109{word-spacing:1.613952px;}
.wsb4{word-spacing:1.673717px;}
.ws25{word-spacing:1.733492px;}
.ws10b{word-spacing:1.775347px;}
.ws52{word-spacing:1.793268px;}
.ws11b{word-spacing:1.829146px;}
.wsf1{word-spacing:1.853044px;}
.wse2{word-spacing:1.912824px;}
.ws20{word-spacing:1.972595px;}
.ws27{word-spacing:2.032370px;}
.ws119{word-spacing:2.044339px;}
.wsc7{word-spacing:2.092146px;}
.ws61{word-spacing:2.151922px;}
.wscb{word-spacing:2.211697px;}
.ws91{word-spacing:2.218428px;}
.ws6b{word-spacing:2.271473px;}
.ws76{word-spacing:2.272536px;}
.wsec{word-spacing:2.391024px;}
.ws72{word-spacing:2.450800px;}
.ws3{word-spacing:2.510568px;}
.ws40{word-spacing:2.510575px;}
.ws79{word-spacing:2.537064px;}
.ws5f{word-spacing:2.570351px;}
.ws89{word-spacing:2.585160px;}
.wsf8{word-spacing:2.630126px;}
.ws8a{word-spacing:2.645280px;}
.ws6d{word-spacing:2.689902px;}
.ws1{word-spacing:2.711490px;}
.wsf6{word-spacing:2.749678px;}
.wsc8{word-spacing:2.809453px;}
.ws21{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.ws56{word-spacing:2.929004px;}
.ws8f{word-spacing:2.951892px;}
.ws10e{word-spacing:2.958912px;}
.ws6f{word-spacing:2.988780px;}
.wsfa{word-spacing:3.048556px;}
.ws1b{word-spacing:3.066509px;}
.wse6{word-spacing:3.108331px;}
.ws107{word-spacing:3.120307px;}
.ws113{word-spacing:3.174106px;}
.ws12{word-spacing:3.175262px;}
.ws1c{word-spacing:3.219667px;}
.wsfd{word-spacing:3.224822px;}
.wsb8{word-spacing:3.227882px;}
.wsff{word-spacing:3.227904px;}
.wsb3{word-spacing:3.287658px;}
.ws99{word-spacing:3.288564px;}
.ws59{word-spacing:3.347434px;}
.ws97{word-spacing:3.354696px;}
.wsa1{word-spacing:3.366720px;}
.ws96{word-spacing:3.390768px;}
.wse7{word-spacing:3.407209px;}
.ws6a{word-spacing:3.466985px;}
.wsa2{word-spacing:3.468924px;}
.ws104{word-spacing:3.496896px;}
.wse9{word-spacing:3.526760px;}
.ws1d{word-spacing:3.586536px;}
.wsa0{word-spacing:3.625236px;}
.wsb1{word-spacing:3.646312px;}
.ws77{word-spacing:3.685356px;}
.ws3c{word-spacing:3.706087px;}
.ws9f{word-spacing:3.745476px;}
.ws50{word-spacing:3.765863px;}
.ws22{word-spacing:3.825638px;}
.wse5{word-spacing:3.885414px;}
.wsa8{word-spacing:3.945190px;}
.ws111{word-spacing:4.034880px;}
.ws70{word-spacing:4.064741px;}
.ws1e{word-spacing:4.124516px;}
.ws7d{word-spacing:4.148280px;}
.ws2b{word-spacing:4.244068px;}
.ws43{word-spacing:4.303843px;}
.ws68{word-spacing:4.411469px;}
.wsc6{word-spacing:4.423394px;}
.ws58{word-spacing:4.483170px;}
.ws7c{word-spacing:4.551084px;}
.wsbd{word-spacing:4.569367px;}
.wsc1{word-spacing:4.602721px;}
.wsa7{word-spacing:4.662497px;}
.wsc0{word-spacing:4.722272px;}
.ws4a{word-spacing:4.841824px;}
.wsaa{word-spacing:5.021150px;}
.wse1{word-spacing:5.116804px;}
.wsa9{word-spacing:5.140702px;}
.wsf2{word-spacing:5.200477px;}
.wsb0{word-spacing:5.260253px;}
.wsaf{word-spacing:5.379804px;}
.wsa{word-spacing:5.481407px;}
.ws1f{word-spacing:5.559131px;}
.wsc9{word-spacing:5.618906px;}
.ws3e{word-spacing:5.678682px;}
.wsb7{word-spacing:5.738458px;}
.wsf9{word-spacing:5.858009px;}
.ws5c{word-spacing:5.917784px;}
.ws98{word-spacing:5.963904px;}
.ws11e{word-spacing:6.025421px;}
.ws5d{word-spacing:6.037336px;}
.wse4{word-spacing:6.097111px;}
.wse3{word-spacing:6.216662px;}
.ws80{word-spacing:6.222420px;}
.ws5a{word-spacing:6.276438px;}
.wsd9{word-spacing:6.336214px;}
.ws26{word-spacing:6.395989px;}
.ws53{word-spacing:6.455765px;}
.ws78{word-spacing:6.510996px;}
.ws71{word-spacing:6.575316px;}
.wsf5{word-spacing:6.814418px;}
.ws8e{word-spacing:6.871716px;}
.wsd0{word-spacing:6.874194px;}
.ws94{word-spacing:6.931836px;}
.wsd2{word-spacing:6.933970px;}
.ws8d{word-spacing:6.955884px;}
.ws95{word-spacing:7.009992px;}
.wsc5{word-spacing:7.173072px;}
.wsca{word-spacing:7.352399px;}
.wsf4{word-spacing:7.471950px;}
.ws69{word-spacing:7.531726px;}
.wsba{word-spacing:7.591501px;}
.wsf3{word-spacing:7.830604px;}
.wsc4{word-spacing:7.890379px;}
.wsc3{word-spacing:7.950155px;}
.wse8{word-spacing:8.488135px;}
.wsd1{word-spacing:8.667462px;}
.wsbc{word-spacing:9.549367px;}
.ws8{word-spacing:9.833058px;}
.ws75{word-spacing:11.620476px;}
.ws9{word-spacing:11.841512px;}
.wse0{word-spacing:13.262798px;}
.ws5{word-spacing:15.481836px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.wsa3{word-spacing:24.192288px;}
.wsd6{word-spacing:74.672179px;}
.wsd4{word-spacing:83.764109px;}
.wsdf{word-spacing:211.750502px;}
.wsd7{word-spacing:232.409088px;}
.wsdb{word-spacing:300.065866px;}
.wsde{word-spacing:302.992589px;}
.wsd5{word-spacing:338.341373px;}
.wsae{word-spacing:375.042778px;}
.wsdc{word-spacing:395.579635px;}
.wsdd{word-spacing:422.995440px;}
.wscd{word-spacing:502.299367px;}
._12{margin-left:-7.173080px;}
._b{margin-left:-6.133018px;}
._8{margin-left:-5.057050px;}
._0{margin-left:-3.933223px;}
._43{margin-left:-2.719794px;}
._4{margin-left:-1.464498px;}
._17{width:1.163484px;}
._25{width:2.420735px;}
._29{width:3.945190px;}
._27{width:5.140702px;}
._2d{width:6.424408px;}
._26{width:7.677042px;}
._2a{width:9.265218px;}
._1{width:10.460700px;}
._2{width:13.180482px;}
._7{width:15.398284px;}
._6{width:16.785101px;}
._11{width:18.470660px;}
._9{width:19.636416px;}
._14{width:21.309997px;}
._c{width:22.445734px;}
._e{width:23.671138px;}
._3{width:25.314894px;}
._a{width:26.361216px;}
._d{width:27.735878px;}
._16{width:29.499254px;}
._19{width:31.621292px;}
._5{width:33.355008px;}
._28{width:34.460629px;}
._13{width:35.865360px;}
._15{width:37.748287px;}
._2c{width:39.840433px;}
._2b{width:42.590188px;}
._4e{width:44.532822px;}
._3c{width:102.201821px;}
._4d{width:179.202470px;}
._45{width:193.434989px;}
._21{width:196.487357px;}
._4b{width:200.560435px;}
._40{width:218.851891px;}
._42{width:224.608320px;}
._4c{width:225.738086px;}
._44{width:228.217114px;}
._49{width:238.595904px;}
._23{width:241.758950px;}
._4a{width:252.099302px;}
._1d{width:253.617599px;}
._46{width:272.664826px;}
._2e{width:300.464064px;}
._41{width:310.397491px;}
._1e{width:312.318989px;}
._3a{width:315.258624px;}
._3b{width:328.708224px;}
._48{width:330.517219px;}
._1c{width:374.329267px;}
._3f{width:387.563674px;}
._1f{width:398.215757px;}
._47{width:409.029235px;}
._20{width:417.285466px;}
._3e{width:427.374490px;}
._24{width:478.109510px;}
._30{width:516.787430px;}
._36{width:537.661210px;}
._34{width:548.151898px;}
._39{width:561.978086px;}
._38{width:566.766144px;}
._37{width:570.693427px;}
._32{width:590.706432px;}
._31{width:602.649677px;}
._2f{width:615.830285px;}
._1a{width:632.346394px;}
._35{width:652.735987px;}
._33{width:661.612723px;}
._22{width:719.885578px;}
._f{width:724.749223px;}
._1b{width:904.351104px;}
._18{width:2090.287584px;}
._3d{width:2502.045000px;}
._10{width:2525.955000px;}
.fc2{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fs12{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsc{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs13{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fsd{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:83.686200px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.yc7{bottom:-480.663366px;}
.yc6{bottom:-461.494104px;}
.yc5{bottom:-442.234662px;}
.yc4{bottom:-422.975220px;}
.yc3{bottom:-403.804455px;}
.yc2{bottom:-384.545013px;}
.yc1{bottom:-365.375751px;}
.yc0{bottom:-346.116309px;}
.ybf{bottom:-326.856867px;}
.ybe{bottom:-307.687605px;}
.ybd{bottom:-288.428163px;}
.ybc{bottom:-269.258901px;}
.ybb{bottom:-249.999459px;}
.yba{bottom:-226.328712px;}
.yb9{bottom:-189.069342px;}
.yb8{bottom:-169.809900px;}
.yb7{bottom:-150.550458px;}
.yb6{bottom:-131.381196px;}
.yb5{bottom:-112.121754px;}
.yb4{bottom:-92.952492px;}
.yb3{bottom:-73.693050px;}
.yb2{bottom:-36.883500px;}
.yb1{bottom:-19.513050px;}
.y0{bottom:0.000000px;}
.yb0{bottom:2.902179px;}
.y39{bottom:16.704213px;}
.y65{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.ye5{bottom:103.621500px;}
.y37{bottom:104.646000px;}
.y149{bottom:111.975000px;}
.y17f{bottom:112.170000px;}
.y1db{bottom:114.892500px;}
.y244{bottom:116.458500px;}
.y64{bottom:117.757500px;}
.y155{bottom:119.095500px;}
.y9b{bottom:119.148000px;}
.ya1{bottom:119.596500px;}
.ye4{bottom:122.449500px;}
.y36{bottom:122.535000px;}
.y148{bottom:130.804500px;}
.y17e{bottom:130.999500px;}
.y243{bottom:133.719000px;}
.y1da{bottom:133.722000px;}
.y20e{bottom:133.942500px;}
.y63{bottom:136.587000px;}
.y154{bottom:137.925000px;}
.y9a{bottom:137.977500px;}
.ya0{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y35{bottom:140.422500px;}
.ye3{bottom:141.279000px;}
.y1a5{bottom:146.926500px;}
.y147{bottom:149.634000px;}
.y17d{bottom:149.829000px;}
.y242{bottom:150.978000px;}
.y20d{bottom:151.203000px;}
.y1d9{bottom:152.551500px;}
.y62{bottom:155.416500px;}
.y153{bottom:156.754500px;}
.y99{bottom:156.807000px;}
.y9f{bottom:157.255500px;}
.y34{bottom:158.310000px;}
.ye2{bottom:160.108500px;}
.y114{bottom:162.837000px;}
.y1a4{bottom:165.756000px;}
.y241{bottom:168.238500px;}
.y146{bottom:168.463500px;}
.y17c{bottom:168.658500px;}
.y1d8{bottom:171.381000px;}
.y61{bottom:174.246000px;}
.y152{bottom:175.584000px;}
.y98{bottom:175.636500px;}
.y9e{bottom:176.085000px;}
.y33{bottom:176.199000px;}
.ye1{bottom:178.938000px;}
.y113{bottom:181.666500px;}
.y1a3{bottom:184.585500px;}
.y240{bottom:185.499000px;}
.y20c{bottom:185.724000px;}
.y145{bottom:187.293000px;}
.y1d7{bottom:190.210500px;}
.y60{bottom:193.075500px;}
.y32{bottom:194.086500px;}
.y151{bottom:194.413500px;}
.y9d{bottom:194.914500px;}
.y17b{bottom:196.455000px;}
.y18{bottom:196.933500px;}
.ye0{bottom:197.767500px;}
.y97{bottom:198.949500px;}
.y112{bottom:200.496000px;}
.y23f{bottom:202.759500px;}
.y20b{bottom:202.984500px;}
.y1a2{bottom:203.415000px;}
.y144{bottom:206.122500px;}
.y1d6{bottom:209.040000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y150{bottom:210.177000px;}
.y5f{bottom:211.903500px;}
.y31{bottom:211.974000px;}
.y14f{bottom:213.243000px;}
.y9c{bottom:213.744000px;}
.ydf{bottom:216.597000px;}
.y111{bottom:219.325500px;}
.y23e{bottom:220.020000px;}
.y20a{bottom:220.245000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1a1{bottom:222.244500px;}
.y17a{bottom:224.250000px;}
.y143{bottom:224.794500px;}
.y142{bottom:224.952000px;}
.y1d5{bottom:227.869500px;}
.y14e{bottom:229.830000px;}
.y30{bottom:229.863000px;}
.y5e{bottom:230.733000px;}
.y14d{bottom:232.072500px;}
.y96{bottom:232.573500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yde{bottom:235.426500px;}
.y23d{bottom:237.280500px;}
.y209{bottom:237.505500px;}
.y110{bottom:238.155000px;}
.y1a0{bottom:241.074000px;}
.y141{bottom:243.781500px;}
.y5d{bottom:249.562500px;}
.y14c{bottom:250.902000px;}
.y1d4{bottom:251.182500px;}
.y95{bottom:251.403000px;}
.ydd{bottom:254.256000px;}
.y23c{bottom:254.541000px;}
.y208{bottom:254.764500px;}
.y10f{bottom:256.984500px;}
.y19f{bottom:259.903500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y140{bottom:262.611000px;}
.y5c{bottom:268.392000px;}
.y179{bottom:269.712000px;}
.y94{bottom:270.232500px;}
.y23b{bottom:271.801500px;}
.y207{bottom:272.025000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ydc{bottom:273.085500px;}
.y10e{bottom:275.814000px;}
.y19e{bottom:278.733000px;}
.y13f{bottom:281.440500px;}
.y14b{bottom:282.039000px;}
.y1d3{bottom:284.806500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y5b{bottom:287.221500px;}
.y14a{bottom:288.285000px;}
.y93{bottom:289.062000px;}
.y206{bottom:289.285500px;}
.ydb{bottom:291.915000px;}
.y178{bottom:293.353500px;}
.y10d{bottom:294.643500px;}
.y19d{bottom:297.562500px;}
.y2f{bottom:298.876500px;}
.y13e{bottom:300.270000px;}
.y1d2{bottom:303.636000px;}
.y5a{bottom:306.051000px;}
.y23a{bottom:306.321000px;}
.y205{bottom:306.546000px;}
.y92{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yda{bottom:310.744500px;}
.y10c{bottom:313.473000px;}
.y19c{bottom:316.392000px;}
.y2e{bottom:316.764000px;}
.y177{bottom:316.993500px;}
.y13d{bottom:319.099500px;}
.y1d1{bottom:322.465500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y239{bottom:323.581500px;}
.y204{bottom:323.806500px;}
.y59{bottom:324.880500px;}
.y91{bottom:326.719500px;}
.yd9{bottom:329.574000px;}
.y10b{bottom:332.302500px;}
.y2d{bottom:334.653000px;}
.y19b{bottom:335.221500px;}
.y13c{bottom:337.927500px;}
.y176{bottom:340.635000px;}
.y238{bottom:340.842000px;}
.y203{bottom:341.067000px;}
.y1d0{bottom:341.295000px;}
.y58{bottom:343.710000px;}
.y90{bottom:345.549000px;}
.yf{bottom:348.133500px;}
.yd8{bottom:348.403500px;}
.y10a{bottom:351.130500px;}
.yaf{bottom:351.381747px;}
.y2c{bottom:352.540500px;}
.y19a{bottom:354.051000px;}
.y13b{bottom:356.757000px;}
.y237{bottom:358.102500px;}
.y202{bottom:358.327500px;}
.y1cf{bottom:360.123000px;}
.y57{bottom:362.539500px;}
.y175{bottom:364.275000px;}
.y8f{bottom:364.378500px;}
.yd7{bottom:367.233000px;}
.y109{bottom:369.960000px;}
.yae{bottom:370.641189px;}
.y199{bottom:372.880500px;}
.y236{bottom:375.363000px;}
.y13a{bottom:375.586500px;}
.y201{bottom:375.588000px;}
.y1ce{bottom:378.952500px;}
.y2b{bottom:380.889000px;}
.y56{bottom:381.369000px;}
.y8e{bottom:383.208000px;}
.yd6{bottom:386.062500px;}
.ye{bottom:386.785499px;}
.y108{bottom:388.789500px;}
.yad{bottom:389.810451px;}
.y198{bottom:391.710000px;}
.y235{bottom:392.623500px;}
.y200{bottom:392.847000px;}
.y139{bottom:394.416000px;}
.y174{bottom:395.895000px;}
.y1cd{bottom:397.782000px;}
.y2a{bottom:398.778000px;}
.y55{bottom:400.198500px;}
.y8d{bottom:402.037500px;}
.yd5{bottom:404.892000px;}
.y107{bottom:407.619000px;}
.yd{bottom:408.044999px;}
.yac{bottom:409.069893px;}
.y234{bottom:409.884000px;}
.y1ff{bottom:410.107500px;}
.y197{bottom:410.539500px;}
.y138{bottom:413.245500px;}
.y1cc{bottom:416.611500px;}
.y54{bottom:419.028000px;}
.y8c{bottom:420.867000px;}
.yd4{bottom:423.721500px;}
.y29{bottom:425.631000px;}
.y106{bottom:426.448500px;}
.y233{bottom:427.144500px;}
.y1fe{bottom:427.368000px;}
.yab{bottom:428.329335px;}
.y196{bottom:429.369000px;}
.y173{bottom:431.916000px;}
.y137{bottom:432.075000px;}
.y1cb{bottom:435.441000px;}
.y8b{bottom:439.696500px;}
.y53{bottom:442.341000px;}
.yd3{bottom:442.551000px;}
.y28{bottom:443.520000px;}
.y232{bottom:444.403500px;}
.y1fd{bottom:444.628500px;}
.yaa{bottom:447.498597px;}
.y195{bottom:448.198500px;}
.y105{bottom:449.761500px;}
.y172{bottom:450.745500px;}
.y136{bottom:450.904500px;}
.y1ca{bottom:454.270500px;}
.y8a{bottom:458.526000px;}
.yd2{bottom:461.380500px;}
.y27{bottom:461.407500px;}
.y231{bottom:461.664000px;}
.y1fc{bottom:461.889000px;}
.ya9{bottom:466.758039px;}
.y194{bottom:467.026500px;}
.y171{bottom:469.575000px;}
.y135{bottom:469.734000px;}
.y1c9{bottom:473.100000px;}
.y89{bottom:477.355500px;}
.y230{bottom:478.924500px;}
.y1fb{bottom:479.149500px;}
.y26{bottom:479.295000px;}
.yd1{bottom:484.693500px;}
.y193{bottom:485.856000px;}
.ya8{bottom:485.927301px;}
.y170{bottom:488.404500px;}
.y134{bottom:488.563500px;}
.y1c8{bottom:491.929500px;}
.y104{bottom:495.073500px;}
.y88{bottom:496.185000px;}
.y1fa{bottom:496.410000px;}
.y25{bottom:497.184000px;}
.yc{bottom:502.864502px;}
.y102{bottom:503.293500px;}
.y192{bottom:504.685500px;}
.ya7{bottom:505.186743px;}
.y16f{bottom:507.234000px;}
.y133{bottom:507.393000px;}
.y1c7{bottom:510.759000px;}
.y103{bottom:511.512000px;}
.y22f{bottom:513.445500px;}
.y1f9{bottom:513.670500px;}
.y87{bottom:515.014500px;}
.y24{bottom:515.071500px;}
.y52{bottom:516.684000px;}
.yd0{bottom:518.317500px;}
.yb{bottom:520.864502px;}
.y132{bottom:523.158000px;}
.y191{bottom:523.515000px;}
.ya6{bottom:524.446185px;}
.y16e{bottom:526.063500px;}
.y131{bottom:526.222500px;}
.y1c6{bottom:529.588500px;}
.y22e{bottom:530.706000px;}
.y1f8{bottom:530.931000px;}
.y23{bottom:532.959000px;}
.y86{bottom:533.844000px;}
.y101{bottom:535.153500px;}
.ycf{bottom:537.145500px;}
.ya{bottom:538.864499px;}
.y190{bottom:542.344500px;}
.y100{bottom:543.372000px;}
.ya5{bottom:543.616950px;}
.y22d{bottom:547.966500px;}
.y1f7{bottom:548.190000px;}
.y1c5{bottom:548.418000px;}
.y22{bottom:550.848000px;}
.y85{bottom:552.673500px;}
.y51{bottom:554.073000px;}
.y130{bottom:554.466000px;}
.yce{bottom:555.975000px;}
.y9{bottom:556.864499px;}
.y18f{bottom:561.174000px;}
.y22c{bottom:565.227000px;}
.y1f6{bottom:565.450500px;}
.y16d{bottom:566.196000px;}
.y1c4{bottom:567.247500px;}
.y84{bottom:571.503000px;}
.ycd{bottom:574.804500px;}
.yff{bottom:575.232000px;}
.y18e{bottom:580.003500px;}
.y22b{bottom:582.487500px;}
.y1f5{bottom:582.711000px;}
.yfe{bottom:583.452000px;}
.y16c{bottom:585.040500px;}
.y1c3{bottom:586.077000px;}
.y12f{bottom:588.987000px;}
.y83{bottom:590.332500px;}
.y50{bottom:591.463500px;}
.ycc{bottom:593.634000px;}
.ya4{bottom:598.337085px;}
.y18d{bottom:598.833000px;}
.y22a{bottom:599.746500px;}
.y1f4{bottom:599.971500px;}
.ya3{bottom:607.966950px;}
.y16b{bottom:608.680500px;}
.y82{bottom:609.162000px;}
.y4f{bottom:610.920000px;}
.ycb{bottom:612.463500px;}
.yfd{bottom:615.312000px;}
.y229{bottom:617.007000px;}
.y1f3{bottom:617.232000px;}
.y18c{bottom:617.662500px;}
.y12e{bottom:623.508000px;}
.yfc{bottom:623.530500px;}
.y1c2{bottom:626.211000px;}
.y81{bottom:627.991500px;}
.y4e{bottom:630.378000px;}
.yca{bottom:631.293000px;}
.y16a{bottom:632.322000px;}
.y228{bottom:634.267500px;}
.y1f2{bottom:634.492500px;}
.y18b{bottom:636.492000px;}
.y1c1{bottom:640.407000px;}
.y12d{bottom:642.337500px;}
.y8{bottom:645.510000px;}
.y80{bottom:646.821000px;}
.y4d{bottom:649.834500px;}
.y227{bottom:651.528000px;}
.y1f1{bottom:651.753000px;}
.y1c0{bottom:654.604500px;}
.y18a{bottom:655.321500px;}
.yfa{bottom:655.390500px;}
.y169{bottom:655.962000px;}
.y12c{bottom:661.167000px;}
.yc9{bottom:662.511000px;}
.yf9{bottom:663.609000px;}
.y7f{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y226{bottom:668.788500px;}
.y1f0{bottom:669.013500px;}
.y4c{bottom:669.291000px;}
.yfb{bottom:671.829000px;}
.y189{bottom:674.151000px;}
.y1bf{bottom:676.437000px;}
.y168{bottom:679.603500px;}
.y12b{bottom:679.996500px;}
.yc8{bottom:681.744000px;}
.y7e{bottom:684.480000px;}
.y225{bottom:686.049000px;}
.y1ef{bottom:686.274000px;}
.y4b{bottom:688.749000px;}
.y188{bottom:692.980500px;}
.yf8{bottom:695.469000px;}
.y12a{bottom:698.826000px;}
.y1be{bottom:700.077000px;}
.y167{bottom:703.243500px;}
.y7d{bottom:703.309500px;}
.y1ee{bottom:703.533000px;}
.ya2{bottom:707.161500px;}
.y4a{bottom:708.205500px;}
.y187{bottom:711.810000px;}
.y129{bottom:717.655500px;}
.yf6{bottom:719.110500px;}
.y224{bottom:720.570000px;}
.y1ed{bottom:720.793500px;}
.y7c{bottom:722.139000px;}
.y1bd{bottom:723.718500px;}
.y6{bottom:726.298500px;}
.y166{bottom:726.885000px;}
.yf5{bottom:727.329000px;}
.y49{bottom:727.663500px;}
.y186{bottom:730.639500px;}
.yf7{bottom:735.549000px;}
.y128{bottom:736.485000px;}
.y223{bottom:737.829000px;}
.y1ec{bottom:738.054000px;}
.y7b{bottom:740.968500px;}
.y48{bottom:747.120000px;}
.y1bb{bottom:747.358500px;}
.y165{bottom:750.525000px;}
.y3{bottom:752.599495px;}
.y222{bottom:755.089500px;}
.y127{bottom:755.314500px;}
.y1ba{bottom:755.578500px;}
.yf4{bottom:759.189000px;}
.y7a{bottom:759.798000px;}
.y1bc{bottom:763.797000px;}
.y47{bottom:766.576500px;}
.y185{bottom:770.773500px;}
.y221{bottom:772.350000px;}
.y1eb{bottom:772.575000px;}
.y126{bottom:774.144000px;}
.y164{bottom:774.166500px;}
.yf3{bottom:775.627500px;}
.y79{bottom:778.627500px;}
.y46{bottom:786.034500px;}
.y1b9{bottom:787.437000px;}
.y220{bottom:789.610500px;}
.y184{bottom:789.616500px;}
.y1ea{bottom:789.835500px;}
.y125{bottom:792.973500px;}
.y78{bottom:797.457000px;}
.y163{bottom:797.806500px;}
.yf2{bottom:799.269000px;}
.y1b8{bottom:803.875500px;}
.y45{bottom:805.491000px;}
.y21f{bottom:806.871000px;}
.y1e9{bottom:807.096000px;}
.y124{bottom:811.803000px;}
.y183{bottom:813.258000px;}
.y77{bottom:816.286500px;}
.y162{bottom:821.448000px;}
.y21e{bottom:824.131500px;}
.y1e8{bottom:824.356500px;}
.y44{bottom:824.947500px;}
.y1b7{bottom:827.517000px;}
.y123{bottom:830.632500px;}
.yf1{bottom:833.877000px;}
.y76{bottom:835.114500px;}
.y182{bottom:836.898000px;}
.y21d{bottom:841.392000px;}
.y1e7{bottom:841.615500px;}
.y1b6{bottom:843.955500px;}
.y43{bottom:844.405500px;}
.y161{bottom:845.088000px;}
.y122{bottom:849.462000px;}
.y75{bottom:853.944000px;}
.y21c{bottom:858.652500px;}
.y181{bottom:860.538000px;}
.y1e6{bottom:863.359500px;}
.y1b5{bottom:867.595500px;}
.y121{bottom:868.291500px;}
.y160{bottom:868.729500px;}
.yf0{bottom:870.981000px;}
.y74{bottom:872.773500px;}
.y21b{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y42{bottom:882.990000px;}
.y1b4{bottom:884.034000px;}
.y120{bottom:887.121000px;}
.yef{bottom:889.810500px;}
.y73{bottom:891.603000px;}
.y180{bottom:892.158000px;}
.y15f{bottom:892.369500px;}
.y21a{bottom:893.172000px;}
.y1e5{bottom:896.983500px;}
.y41{bottom:903.469500px;}
.y11f{bottom:905.950500px;}
.y1b3{bottom:907.675500px;}
.yee{bottom:908.640000px;}
.y72{bottom:910.432500px;}
.y40{bottom:919.609500px;}
.y1e4{bottom:923.524500px;}
.y15e{bottom:923.989500px;}
.y1b2{bottom:924.114000px;}
.y11e{bottom:924.778500px;}
.yed{bottom:927.469500px;}
.y219{bottom:927.693000px;}
.y71{bottom:929.262000px;}
.y3f{bottom:931.410000px;}
.y247{bottom:940.395000px;}
.y1e3{bottom:941.098500px;}
.y11d{bottom:943.608000px;}
.y218{bottom:944.953500px;}
.yec{bottom:946.299000px;}
.y1b0{bottom:947.754000px;}
.y70{bottom:948.091500px;}
.y3e{bottom:951.888000px;}
.y1af{bottom:955.972500px;}
.y246{bottom:957.655500px;}
.y1e2{bottom:958.672500px;}
.y15d{bottom:961.093500px;}
.y217{bottom:962.214000px;}
.y11c{bottom:962.437500px;}
.y1b1{bottom:964.192500px;}
.yeb{bottom:965.128500px;}
.y1{bottom:966.726000px;}
.y6f{bottom:966.921000px;}
.y245{bottom:974.916000px;}
.y216{bottom:979.474500px;}
.y15c{bottom:979.923000px;}
.y11b{bottom:981.267000px;}
.yea{bottom:983.958000px;}
.y1e1{bottom:985.213500px;}
.y6e{bottom:985.750500px;}
.y1ad{bottom:987.832500px;}
.y1ac{bottom:996.052500px;}
.y3d{bottom:996.565500px;}
.y215{bottom:996.735000px;}
.y15b{bottom:998.752500px;}
.y11a{bottom:1000.096500px;}
.ye9{bottom:1002.787500px;}
.y1ae{bottom:1004.271000px;}
.y6d{bottom:1004.580000px;}
.y1e0{bottom:1011.753000px;}
.y214{bottom:1013.995500px;}
.y15a{bottom:1017.582000px;}
.y119{bottom:1018.926000px;}
.ye8{bottom:1021.617000px;}
.y6c{bottom:1023.409500px;}
.y1ab{bottom:1027.912500px;}
.y213{bottom:1031.254500px;}
.y159{bottom:1036.411500px;}
.y3c{bottom:1036.485000px;}
.y118{bottom:1037.755500px;}
.y1df{bottom:1038.294000px;}
.y6b{bottom:1042.239000px;}
.y1aa{bottom:1044.351000px;}
.ye7{bottom:1044.928500px;}
.y212{bottom:1048.515000px;}
.y1a7{bottom:1055.065500px;}
.y158{bottom:1055.241000px;}
.y117{bottom:1056.585000px;}
.y6a{bottom:1061.068500px;}
.y3b{bottom:1064.728500px;}
.y1de{bottom:1064.835000px;}
.ye6{bottom:1065.103500px;}
.y211{bottom:1065.775500px;}
.y1a9{bottom:1067.991000px;}
.y157{bottom:1074.070500px;}
.y116{bottom:1075.414500px;}
.y69{bottom:1079.898000px;}
.y1dd{bottom:1082.409000px;}
.y210{bottom:1083.036000px;}
.y1a8{bottom:1084.429500px;}
.y3a{bottom:1092.972000px;}
.y115{bottom:1094.244000px;}
.y156{bottom:1097.382000px;}
.y68{bottom:1098.727500px;}
.y1dc{bottom:1099.983000px;}
.y20f{bottom:1100.296500px;}
.y67{bottom:1117.557000px;}
.y1a6{bottom:1119.037500px;}
.y38{bottom:1136.460000px;}
.y66{bottom:1177.662000px;}
.h10{height:26.110157px;}
.h9{height:30.461558px;}
.h16{height:30.582721px;}
.h7{height:32.130000px;}
.h11{height:34.813397px;}
.h19{height:34.951465px;}
.ha{height:35.440852px;}
.h29{height:36.798106px;}
.h21{height:38.478871px;}
.h1e{height:38.896243px;}
.h12{height:39.165235px;}
.h1c{height:39.418945px;}
.h1b{height:39.761719px;}
.h15{height:40.504048px;}
.h22{height:42.500452px;}
.h18{height:42.760020px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.h1a{height:43.886426px;}
.h1d{height:44.268047px;}
.h28{height:45.567245px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hd{height:50.629933px;}
.hb{height:50.930649px;}
.h23{height:51.259933px;}
.hf{height:54.541601px;}
.h2{height:55.080000px;}
.h20{height:72.039235px;}
.h1f{height:72.045235px;}
.h24{height:73.548871px;}
.h26{height:75.613933px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.hc{height:87.128261px;}
.h25{height:98.532871px;}
.h27{height:104.919235px;}
.h4{height:119.055004px;}
.h17{height:332.614500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w5{width:685.187850px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xe{left:-50.061150px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x78{left:62.568000px;}
.x73{left:67.302000px;}
.x20{left:71.472000px;}
.x7a{left:73.111500px;}
.x76{left:78.202500px;}
.x6b{left:82.176000px;}
.x7b{left:85.470000px;}
.x22{left:86.629500px;}
.x64{left:88.497000px;}
.x13{left:90.759000px;}
.x74{left:94.738500px;}
.x1e{left:96.514500px;}
.x1{left:102.045000px;}
.xd{left:103.650150px;}
.x2{left:106.297500px;}
.x77{left:108.859500px;}
.x19{left:115.815000px;}
.x12{left:117.031500px;}
.x1b{left:119.130000px;}
.x14{left:124.792500px;}
.xf{left:145.508850px;}
.x10{left:177.368744px;}
.x4{left:203.484001px;}
.x70{left:217.863000px;}
.x5a{left:221.299500px;}
.x55{left:223.936500px;}
.x75{left:225.927000px;}
.x79{left:228.952500px;}
.x59{left:231.757500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x4e{left:259.876500px;}
.x52{left:265.632000px;}
.x53{left:266.829000px;}
.x8{left:269.914500px;}
.xa{left:281.479500px;}
.x23{left:286.488000px;}
.x54{left:288.172500px;}
.x4f{left:294.180000px;}
.x2a{left:296.095500px;}
.x26{left:303.109500px;}
.x51{left:307.944000px;}
.x16{left:312.277500px;}
.x27{left:314.532000px;}
.x25{left:322.578000px;}
.x47{left:325.423500px;}
.x5c{left:328.030500px;}
.x45{left:330.433500px;}
.x15{left:331.912500px;}
.x44{left:333.412500px;}
.x43{left:336.715500px;}
.x46{left:342.928500px;}
.x21{left:346.525500px;}
.x5b{left:347.827500px;}
.x1c{left:355.180500px;}
.x3e{left:364.183500px;}
.x1a{left:368.892000px;}
.x40{left:382.779000px;}
.x2f{left:392.934000px;}
.x24{left:401.875500px;}
.x32{left:416.397000px;}
.x33{left:420.927000px;}
.x56{left:426.187500px;}
.x65{left:427.962000px;}
.x5e{left:434.760000px;}
.x6c{left:437.302500px;}
.x41{left:440.025000px;}
.x66{left:441.075000px;}
.x30{left:443.674500px;}
.x5d{left:445.216500px;}
.x3{left:454.959000px;}
.x3f{left:462.822000px;}
.x48{left:470.386500px;}
.x42{left:474.025500px;}
.x28{left:503.694000px;}
.x29{left:522.133500px;}
.x49{left:524.134500px;}
.x60{left:541.491000px;}
.x17{left:542.617500px;}
.x71{left:544.032000px;}
.x6d{left:546.864000px;}
.x2c{left:548.772000px;}
.x31{left:557.845500px;}
.x5f{left:561.288000px;}
.x4a{left:578.386500px;}
.x1f{left:584.257500px;}
.x1d{left:588.547500px;}
.x38{left:593.469000px;}
.x2d{left:601.066500px;}
.x39{left:609.508500px;}
.x34{left:635.760000px;}
.x18{left:643.878000px;}
.x3c{left:646.185000px;}
.x62{left:648.220500px;}
.x67{left:650.230500px;}
.x35{left:651.796500px;}
.x68{left:654.534000px;}
.x6e{left:655.873500px;}
.x61{left:658.677000px;}
.x4b{left:660.111000px;}
.x3d{left:664.648500px;}
.x58{left:668.059500px;}
.x57{left:669.094500px;}
.x2e{left:672.349500px;}
.x11{left:681.183560px;}
.x7c{left:682.698000px;}
.x7d{left:691.848000px;}
.x7e{left:699.525000px;}
.x7f{left:703.339500px;}
.x80{left:710.248500px;}
.x81{left:715.831500px;}
.x4c{left:717.726000px;}
.x3a{left:720.516000px;}
.x50{left:723.172500px;}
.x82{left:730.420500px;}
.x3b{left:736.099500px;}
.x2b{left:743.344500px;}
.x83{left:753.204000px;}
.x63{left:754.950000px;}
.x6f{left:756.961500px;}
.x6a{left:761.265000px;}
.x72{left:762.939000px;}
.x69{left:764.049000px;}
.x84{left:766.972500px;}
.xb{left:774.256500px;}
.x85{left:784.555500px;}
.xc{left:786.547500px;}
.x86{left:792.232500px;}
.x4d{left:796.089000px;}
.x87{left:798.324000px;}
.x36{left:809.344500px;}
.x37{left:816.994500px;}
.x88{left:820.588500px;}
.x89{left:826.680000px;}
.x8a{left:832.822500px;}
@media print{
.vc{vertical-align:-16.709333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v6{vertical-align:-9.301333pt;}
.vb{vertical-align:-7.968000pt;}
.v8{vertical-align:-6.256000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.152000pt;}
.v9{vertical-align:2.485333pt;}
.va{vertical-align:9.349333pt;}
.v5{vertical-align:10.453333pt;}
.vf{vertical-align:11.754667pt;}
.v1{vertical-align:19.285333pt;}
.ve{vertical-align:22.208000pt;}
.v4{vertical-align:29.226667pt;}
.vd{vertical-align:41.626667pt;}
.v10{vertical-align:53.381333pt;}
.v11{vertical-align:58.448000pt;}
.ls2f{letter-spacing:-0.133600pt;}
.ls25{letter-spacing:-0.117568pt;}
.ls30{letter-spacing:-0.101536pt;}
.ls24{letter-spacing:-0.096192pt;}
.ls26{letter-spacing:-0.080160pt;}
.ls2d{letter-spacing:-0.064128pt;}
.ls2b{letter-spacing:-0.058784pt;}
.ls29{letter-spacing:-0.048096pt;}
.ls31{letter-spacing:-0.042752pt;}
.ls20{letter-spacing:-0.037408pt;}
.ls23{letter-spacing:-0.026720pt;}
.ls2a{letter-spacing:-0.021376pt;}
.ls28{letter-spacing:-0.019200pt;}
.ls21{letter-spacing:-0.016032pt;}
.ls22{letter-spacing:-0.010688pt;}
.ls27{letter-spacing:-0.005344pt;}
.ls1f{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls81{letter-spacing:0.000085pt;}
.ls52{letter-spacing:0.000207pt;}
.ls7d{letter-spacing:0.000340pt;}
.ls7a{letter-spacing:0.000375pt;}
.ls6e{letter-spacing:0.000540pt;}
.ls83{letter-spacing:0.001026pt;}
.ls7f{letter-spacing:0.001609pt;}
.ls7c{letter-spacing:0.001818pt;}
.ls7b{letter-spacing:0.002919pt;}
.ls80{letter-spacing:0.005221pt;}
.ls15{letter-spacing:0.005344pt;}
.ls7e{letter-spacing:0.005419pt;}
.lse{letter-spacing:0.010688pt;}
.ls1c{letter-spacing:0.016032pt;}
.ls17{letter-spacing:0.021376pt;}
.lsa{letter-spacing:0.025536pt;}
.ls16{letter-spacing:0.026720pt;}
.ls18{letter-spacing:0.032064pt;}
.ls13{letter-spacing:0.033600pt;}
.ls1a{letter-spacing:0.042752pt;}
.ls14{letter-spacing:0.043200pt;}
.ls1b{letter-spacing:0.048096pt;}
.lsf{letter-spacing:0.058784pt;}
.ls11{letter-spacing:0.064128pt;}
.ls10{letter-spacing:0.069472pt;}
.ls12{letter-spacing:0.074816pt;}
.ls2c{letter-spacing:0.085504pt;}
.ls19{letter-spacing:0.106880pt;}
.ls2e{letter-spacing:0.133600pt;}
.lsc{letter-spacing:0.157472pt;}
.lsd{letter-spacing:0.160320pt;}
.lsb{letter-spacing:0.170240pt;}
.ls53{letter-spacing:0.262158pt;}
.ls6f{letter-spacing:0.264851pt;}
.ls4c{letter-spacing:0.352015pt;}
.ls3f{letter-spacing:0.357348pt;}
.ls59{letter-spacing:0.482502pt;}
.ls64{letter-spacing:0.487835pt;}
.ls68{letter-spacing:0.507200pt;}
.ls72{letter-spacing:0.570745pt;}
.ls71{letter-spacing:0.576078pt;}
.ls51{letter-spacing:0.661666pt;}
.ls3c{letter-spacing:0.662778pt;}
.ls49{letter-spacing:0.729548pt;}
.ls67{letter-spacing:0.784508pt;}
.ls46{letter-spacing:0.882926pt;}
.ls6b{letter-spacing:0.883733pt;}
.ls5c{letter-spacing:0.883985pt;}
.ls66{letter-spacing:0.884289pt;}
.ls38{letter-spacing:0.888259pt;}
.ls63{letter-spacing:1.008508pt;}
.ls62{letter-spacing:1.009067pt;}
.ls5a{letter-spacing:1.013841pt;}
.ls57{letter-spacing:1.179275pt;}
.ls54{letter-spacing:1.262881pt;}
.ls3b{letter-spacing:1.683230pt;}
.ls39{letter-spacing:1.724111pt;}
.ls34{letter-spacing:1.729444pt;}
.ls5d{letter-spacing:1.948111pt;}
.ls61{letter-spacing:2.069942pt;}
.ls58{letter-spacing:2.224508pt;}
.ls74{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls37{letter-spacing:2.785067pt;}
.ls45{letter-spacing:2.790400pt;}
.ls5f{letter-spacing:3.165762pt;}
.ls70{letter-spacing:3.274999pt;}
.ls6d{letter-spacing:3.280333pt;}
.ls47{letter-spacing:3.318400pt;}
.ls3d{letter-spacing:3.323733pt;}
.ls69{letter-spacing:3.410502pt;}
.ls4e{letter-spacing:3.557666pt;}
.ls41{letter-spacing:3.562999pt;}
.ls5e{letter-spacing:9.516533pt;}
.ls4{letter-spacing:10.626533pt;}
.ls6{letter-spacing:11.463164pt;}
.ls4a{letter-spacing:11.593548pt;}
.ls40{letter-spacing:11.629762pt;}
.ls4d{letter-spacing:11.635096pt;}
.ls60{letter-spacing:11.655452pt;}
.ls1d{letter-spacing:11.901986pt;}
.ls82{letter-spacing:11.956898pt;}
.ls5{letter-spacing:12.167655pt;}
.ls5b{letter-spacing:12.177067pt;}
.ls3e{letter-spacing:12.429762pt;}
.ls4b{letter-spacing:12.435096pt;}
.ls48{letter-spacing:12.957762pt;}
.ls36{letter-spacing:12.963096pt;}
.ls79{letter-spacing:13.124065pt;}
.ls78{letter-spacing:13.177199pt;}
.ls1e{letter-spacing:13.283467pt;}
.ls50{letter-spacing:13.387708pt;}
.ls32{letter-spacing:13.389734pt;}
.ls77{letter-spacing:13.496002pt;}
.ls7{letter-spacing:13.549136pt;}
.ls35{letter-spacing:13.649067pt;}
.ls44{letter-spacing:13.654400pt;}
.ls9{letter-spacing:13.655404pt;}
.ls6c{letter-spacing:14.437841pt;}
.ls76{letter-spacing:14.505546pt;}
.ls6a{letter-spacing:15.571505pt;}
.ls56{letter-spacing:16.061762pt;}
.ls3a{letter-spacing:16.603733pt;}
.ls8{letter-spacing:17.109105pt;}
.ls33{letter-spacing:17.389762pt;}
.ls43{letter-spacing:17.395096pt;}
.ls55{letter-spacing:18.864508pt;}
.ls65{letter-spacing:20.614400pt;}
.ls75{letter-spacing:29.756533pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls73{letter-spacing:77.209361pt;}
.ls4f{letter-spacing:206.430172pt;}
.ls42{letter-spacing:488.376838pt;}
.ws66{word-spacing:-13.493600pt;}
.ws67{word-spacing:-13.370688pt;}
.ws64{word-spacing:-13.322592pt;}
.ws33{word-spacing:-13.283467pt;}
.wsf{word-spacing:-12.760670pt;}
.wsda{word-spacing:-11.955200pt;}
.ws62{word-spacing:-10.810240pt;}
.ws63{word-spacing:-10.640000pt;}
.ws2e{word-spacing:-10.626800pt;}
.wsbe{word-spacing:-10.095467pt;}
.wsd{word-spacing:-9.298400pt;}
.ws4b{word-spacing:-2.922363pt;}
.wscc{word-spacing:-2.869229pt;}
.ws37{word-spacing:-2.816095pt;}
.ws36{word-spacing:-2.762961pt;}
.ws9b{word-spacing:-2.661312pt;}
.ws6c{word-spacing:-2.550426pt;}
.ws7f{word-spacing:-2.549088pt;}
.ws7e{word-spacing:-2.538400pt;}
.wsc2{word-spacing:-2.497292pt;}
.ws90{word-spacing:-2.484960pt;}
.ws60{word-spacing:-2.391024pt;}
.ws9c{word-spacing:-2.372736pt;}
.wsab{word-spacing:-2.337890pt;}
.ws6e{word-spacing:-2.231622pt;}
.wsed{word-spacing:-2.125355pt;}
.ws2c{word-spacing:-2.072221pt;}
.ws105{word-spacing:-2.056294pt;}
.ws34{word-spacing:-2.019087pt;}
.wsfb{word-spacing:-2.008474pt;}
.wsea{word-spacing:-1.965953pt;}
.ws15{word-spacing:-1.912832pt;}
.wseb{word-spacing:-1.912819pt;}
.ws28{word-spacing:-1.859685pt;}
.ws23{word-spacing:-1.806551pt;}
.ws11a{word-spacing:-1.769370pt;}
.wsef{word-spacing:-1.753418pt;}
.wsac{word-spacing:-1.700284pt;}
.ws41{word-spacing:-1.594016pt;}
.wscf{word-spacing:-1.540882pt;}
.ws93{word-spacing:-1.523040pt;}
.ws92{word-spacing:-1.517696pt;}
.ws57{word-spacing:-1.487748pt;}
.ws117{word-spacing:-1.434624pt;}
.ws42{word-spacing:-1.222079pt;}
.ws8b{word-spacing:-1.197056pt;}
.ws8c{word-spacing:-1.175680pt;}
.ws55{word-spacing:-1.062677pt;}
.wsbb{word-spacing:-1.009543pt;}
.ws48{word-spacing:-0.903276pt;}
.wsa4{word-spacing:-0.850142pt;}
.wsf0{word-spacing:-0.690740pt;}
.ws3b{word-spacing:-0.637606pt;}
.wsf7{word-spacing:-0.584473pt;}
.ws4f{word-spacing:-0.531339pt;}
.ws4e{word-spacing:-0.526530pt;}
.ws45{word-spacing:-0.478205pt;}
.ws44{word-spacing:-0.425071pt;}
.wsee{word-spacing:-0.371937pt;}
.wsb6{word-spacing:-0.318803pt;}
.ws7b{word-spacing:-0.299264pt;}
.ws2a{word-spacing:-0.265669pt;}
.ws73{word-spacing:-0.246848pt;}
.ws3f{word-spacing:-0.212535pt;}
.wsad{word-spacing:-0.191283pt;}
.ws4d{word-spacing:-0.182344pt;}
.ws38{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws7a{word-spacing:-0.138944pt;}
.ws32{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws74{word-spacing:-0.072352pt;}
.ws65{word-spacing:-0.053440pt;}
.ws31{word-spacing:-0.053134pt;}
.ws13{word-spacing:-0.047821pt;}
.ws103{word-spacing:-0.009609pt;}
.ws11c{word-spacing:-0.009395pt;}
.ws101{word-spacing:-0.008474pt;}
.ws120{word-spacing:-0.007953pt;}
.ws10c{word-spacing:-0.007893pt;}
.ws10a{word-spacing:-0.006690pt;}
.ws10f{word-spacing:-0.006400pt;}
.ws118{word-spacing:-0.006059pt;}
.ws108{word-spacing:-0.006033pt;}
.ws112{word-spacing:-0.004019pt;}
.ws114{word-spacing:-0.003849pt;}
.ws116{word-spacing:-0.003686pt;}
.ws106{word-spacing:-0.003456pt;}
.ws2d{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws100{word-spacing:0.001382pt;}
.ws82{word-spacing:0.026720pt;}
.ws6{word-spacing:0.037194pt;}
.ws14{word-spacing:0.047821pt;}
.ws24{word-spacing:0.053134pt;}
.ws81{word-spacing:0.074816pt;}
.wse{word-spacing:0.095642pt;}
.ws83{word-spacing:0.101536pt;}
.ws29{word-spacing:0.106268pt;}
.ws4{word-spacing:0.141360pt;}
.wsfe{word-spacing:0.143462pt;}
.ws2{word-spacing:0.148774pt;}
.ws2f{word-spacing:0.159402pt;}
.wsbf{word-spacing:0.161612pt;}
.ws86{word-spacing:0.182400pt;}
.ws102{word-spacing:0.191283pt;}
.ws39{word-spacing:0.212535pt;}
.ws18{word-spacing:0.239104pt;}
.ws5b{word-spacing:0.265669pt;}
.ws110{word-spacing:0.286925pt;}
.ws35{word-spacing:0.318803pt;}
.ws9a{word-spacing:0.358048pt;}
.ws46{word-spacing:0.371937pt;}
.wsa5{word-spacing:0.425071pt;}
.ws10{word-spacing:0.499721pt;}
.ws5e{word-spacing:0.531339pt;}
.wsb5{word-spacing:0.584473pt;}
.wsb2{word-spacing:0.637606pt;}
.wsce{word-spacing:0.690740pt;}
.ws17{word-spacing:0.717312pt;}
.ws88{word-spacing:0.721440pt;}
.ws3d{word-spacing:0.743874pt;}
.ws115{word-spacing:0.765133pt;}
.ws87{word-spacing:0.774880pt;}
.ws49{word-spacing:0.797008pt;}
.ws10d{word-spacing:0.812954pt;}
.ws4c{word-spacing:0.850142pt;}
.wsfc{word-spacing:0.860774pt;}
.ws54{word-spacing:0.903276pt;}
.ws11f{word-spacing:0.908595pt;}
.wsb9{word-spacing:0.956410pt;}
.wsd3{word-spacing:1.115811pt;}
.ws11d{word-spacing:1.147699pt;}
.ws3a{word-spacing:1.168945pt;}
.wsd8{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws47{word-spacing:1.275213pt;}
.ws9e{word-spacing:1.325312pt;}
.ws51{word-spacing:1.328347pt;}
.ws9d{word-spacing:1.352032pt;}
.wsa6{word-spacing:1.381481pt;}
.ws1a{word-spacing:1.386803pt;}
.ws85{word-spacing:1.401600pt;}
.ws84{word-spacing:1.411200pt;}
.ws30{word-spacing:1.434614pt;}
.ws109{word-spacing:1.434624pt;}
.wsb4{word-spacing:1.487748pt;}
.ws25{word-spacing:1.540882pt;}
.ws10b{word-spacing:1.578086pt;}
.ws52{word-spacing:1.594016pt;}
.ws11b{word-spacing:1.625907pt;}
.wsf1{word-spacing:1.647150pt;}
.wse2{word-spacing:1.700288pt;}
.ws20{word-spacing:1.753418pt;}
.ws27{word-spacing:1.806551pt;}
.ws119{word-spacing:1.817190pt;}
.wsc7{word-spacing:1.859685pt;}
.ws61{word-spacing:1.912819pt;}
.wscb{word-spacing:1.965953pt;}
.ws91{word-spacing:1.971936pt;}
.ws6b{word-spacing:2.019087pt;}
.ws76{word-spacing:2.020032pt;}
.wsec{word-spacing:2.125355pt;}
.ws72{word-spacing:2.178489pt;}
.ws3{word-spacing:2.231616pt;}
.ws40{word-spacing:2.231622pt;}
.ws79{word-spacing:2.255168pt;}
.ws5f{word-spacing:2.284756pt;}
.ws89{word-spacing:2.297920pt;}
.wsf8{word-spacing:2.337890pt;}
.ws8a{word-spacing:2.351360pt;}
.ws6d{word-spacing:2.391024pt;}
.ws1{word-spacing:2.410214pt;}
.wsf6{word-spacing:2.444158pt;}
.wsc8{word-spacing:2.497292pt;}
.ws21{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.ws56{word-spacing:2.603559pt;}
.ws8f{word-spacing:2.623904pt;}
.ws10e{word-spacing:2.630144pt;}
.ws6f{word-spacing:2.656693pt;}
.wsfa{word-spacing:2.709827pt;}
.ws1b{word-spacing:2.725786pt;}
.wse6{word-spacing:2.762961pt;}
.ws107{word-spacing:2.773606pt;}
.ws113{word-spacing:2.821427pt;}
.ws12{word-spacing:2.822455pt;}
.ws1c{word-spacing:2.861926pt;}
.wsfd{word-spacing:2.866509pt;}
.wsb8{word-spacing:2.869229pt;}
.wsff{word-spacing:2.869248pt;}
.wsb3{word-spacing:2.922363pt;}
.ws99{word-spacing:2.923168pt;}
.ws59{word-spacing:2.975497pt;}
.ws97{word-spacing:2.981952pt;}
.wsa1{word-spacing:2.992640pt;}
.ws96{word-spacing:3.014016pt;}
.wse7{word-spacing:3.028630pt;}
.ws6a{word-spacing:3.081764pt;}
.wsa2{word-spacing:3.083488pt;}
.ws104{word-spacing:3.108352pt;}
.wse9{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.188032pt;}
.wsa0{word-spacing:3.222432pt;}
.wsb1{word-spacing:3.241166pt;}
.ws77{word-spacing:3.275872pt;}
.ws3c{word-spacing:3.294300pt;}
.ws9f{word-spacing:3.329312pt;}
.ws50{word-spacing:3.347434pt;}
.ws22{word-spacing:3.400567pt;}
.wse5{word-spacing:3.453701pt;}
.wsa8{word-spacing:3.506835pt;}
.ws111{word-spacing:3.586560pt;}
.ws70{word-spacing:3.613103pt;}
.ws1e{word-spacing:3.666237pt;}
.ws7d{word-spacing:3.687360pt;}
.ws2b{word-spacing:3.772505pt;}
.ws43{word-spacing:3.825638pt;}
.ws68{word-spacing:3.921306pt;}
.wsc6{word-spacing:3.931906pt;}
.ws58{word-spacing:3.985040pt;}
.ws7c{word-spacing:4.045408pt;}
.wsbd{word-spacing:4.061660pt;}
.wsc1{word-spacing:4.091308pt;}
.wsa7{word-spacing:4.144442pt;}
.wsc0{word-spacing:4.197575pt;}
.ws4a{word-spacing:4.303843pt;}
.wsaa{word-spacing:4.463245pt;}
.wse1{word-spacing:4.548270pt;}
.wsa9{word-spacing:4.569513pt;}
.wsf2{word-spacing:4.622646pt;}
.wsb0{word-spacing:4.675780pt;}
.wsaf{word-spacing:4.782048pt;}
.wsa{word-spacing:4.872362pt;}
.ws1f{word-spacing:4.941450pt;}
.wsc9{word-spacing:4.994583pt;}
.ws3e{word-spacing:5.047717pt;}
.wsb7{word-spacing:5.100851pt;}
.wsf9{word-spacing:5.207119pt;}
.ws5c{word-spacing:5.260253pt;}
.ws98{word-spacing:5.301248pt;}
.ws11e{word-spacing:5.355930pt;}
.ws5d{word-spacing:5.366521pt;}
.wse4{word-spacing:5.419654pt;}
.wse3{word-spacing:5.525922pt;}
.ws80{word-spacing:5.531040pt;}
.ws5a{word-spacing:5.579056pt;}
.wsd9{word-spacing:5.632190pt;}
.ws26{word-spacing:5.685324pt;}
.ws53{word-spacing:5.738458pt;}
.ws78{word-spacing:5.787552pt;}
.ws71{word-spacing:5.844725pt;}
.wsf5{word-spacing:6.057261pt;}
.ws8e{word-spacing:6.108192pt;}
.wsd0{word-spacing:6.110395pt;}
.ws94{word-spacing:6.161632pt;}
.wsd2{word-spacing:6.163529pt;}
.ws8d{word-spacing:6.183008pt;}
.ws95{word-spacing:6.231104pt;}
.wsc5{word-spacing:6.376064pt;}
.wsca{word-spacing:6.535466pt;}
.wsf4{word-spacing:6.641733pt;}
.ws69{word-spacing:6.694867pt;}
.wsba{word-spacing:6.748001pt;}
.wsf3{word-spacing:6.960537pt;}
.wsc4{word-spacing:7.013670pt;}
.wsc3{word-spacing:7.066804pt;}
.wse8{word-spacing:7.545009pt;}
.wsd1{word-spacing:7.704411pt;}
.wsbc{word-spacing:8.488326pt;}
.ws8{word-spacing:8.740496pt;}
.ws75{word-spacing:10.329312pt;}
.ws9{word-spacing:10.525789pt;}
.wse0{word-spacing:11.789154pt;}
.ws5{word-spacing:13.761632pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.wsa3{word-spacing:21.504256pt;}
.wsd6{word-spacing:66.375270pt;}
.wsd4{word-spacing:74.456986pt;}
.wsdf{word-spacing:188.222669pt;}
.wsd7{word-spacing:206.585856pt;}
.wsdb{word-spacing:266.725214pt;}
.wsde{word-spacing:269.326746pt;}
.wsd5{word-spacing:300.747887pt;}
.wsae{word-spacing:333.371358pt;}
.wsdc{word-spacing:351.626342pt;}
.wsdd{word-spacing:375.995947pt;}
.wscd{word-spacing:446.488326pt;}
._12{margin-left:-6.376071pt;}
._b{margin-left:-5.451571pt;}
._8{margin-left:-4.495155pt;}
._0{margin-left:-3.496198pt;}
._43{margin-left:-2.417595pt;}
._4{margin-left:-1.301776pt;}
._17{width:1.034208pt;}
._25{width:2.151764pt;}
._29{width:3.506835pt;}
._27{width:4.569513pt;}
._2d{width:5.710585pt;}
._26{width:6.824037pt;}
._2a{width:8.235749pt;}
._1{width:9.298400pt;}
._2{width:11.715984pt;}
._7{width:13.687363pt;}
._6{width:14.920090pt;}
._11{width:16.418365pt;}
._9{width:17.454592pt;}
._14{width:18.942220pt;}
._c{width:19.951763pt;}
._e{width:21.041011pt;}
._3{width:22.502128pt;}
._a{width:23.432192pt;}
._d{width:24.654114pt;}
._16{width:26.221559pt;}
._19{width:28.107815pt;}
._5{width:29.648896pt;}
._28{width:30.631670pt;}
._13{width:31.880320pt;}
._15{width:33.554033pt;}
._2c{width:35.413718pt;}
._2b{width:37.857945pt;}
._4e{width:39.584731pt;}
._3c{width:90.846063pt;}
._4d{width:159.291085pt;}
._45{width:171.942212pt;}
._21{width:174.655428pt;}
._4b{width:178.275942pt;}
._40{width:194.535014pt;}
._42{width:199.651840pt;}
._4c{width:200.656077pt;}
._44{width:202.859657pt;}
._49{width:212.085248pt;}
._23{width:214.896845pt;}
._4a{width:224.088269pt;}
._1d{width:225.437866pt;}
._46{width:242.368734pt;}
._2e{width:267.079168pt;}
._41{width:275.908881pt;}
._1e{width:277.616879pt;}
._3a{width:280.229888pt;}
._3b{width:292.185088pt;}
._48{width:293.793084pt;}
._1c{width:332.737126pt;}
._3f{width:344.501043pt;}
._1f{width:353.969562pt;}
._47{width:363.581542pt;}
._20{width:370.920414pt;}
._3e{width:379.888435pt;}
._24{width:424.986231pt;}
._30{width:459.366605pt;}
._36{width:477.921075pt;}
._34{width:487.246131pt;}
._39{width:499.536077pt;}
._38{width:503.792128pt;}
._37{width:507.283046pt;}
._32{width:525.072384pt;}
._31{width:535.688602pt;}
._2f{width:547.404698pt;}
._1a{width:562.085683pt;}
._35{width:580.209766pt;}
._33{width:588.100198pt;}
._22{width:639.898291pt;}
._f{width:644.221531pt;}
._1b{width:803.867648pt;}
._18{width:1858.033408pt;}
._3d{width:2224.040000pt;}
._10{width:2245.293333pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fs12{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsc{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs13{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fsd{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:74.387733pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.yc7{bottom:-427.256325pt;}
.yc6{bottom:-410.216981pt;}
.yc5{bottom:-393.097477pt;}
.yc4{bottom:-375.977973pt;}
.yc3{bottom:-358.937293pt;}
.yc2{bottom:-341.817789pt;}
.yc1{bottom:-324.778445pt;}
.yc0{bottom:-307.658941pt;}
.ybf{bottom:-290.539437pt;}
.ybe{bottom:-273.500093pt;}
.ybd{bottom:-256.380589pt;}
.ybc{bottom:-239.341245pt;}
.ybb{bottom:-222.221741pt;}
.yba{bottom:-201.181077pt;}
.yb9{bottom:-168.061637pt;}
.yb8{bottom:-150.942133pt;}
.yb7{bottom:-133.822629pt;}
.yb6{bottom:-116.783285pt;}
.yb5{bottom:-99.663781pt;}
.yb4{bottom:-82.624437pt;}
.yb3{bottom:-65.504933pt;}
.yb2{bottom:-32.785333pt;}
.yb1{bottom:-17.344933pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:2.579715pt;}
.y39{bottom:14.848190pt;}
.y65{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.ye5{bottom:92.108000pt;}
.y37{bottom:93.018667pt;}
.y149{bottom:99.533333pt;}
.y17f{bottom:99.706667pt;}
.y1db{bottom:102.126667pt;}
.y244{bottom:103.518667pt;}
.y64{bottom:104.673333pt;}
.y155{bottom:105.862667pt;}
.y9b{bottom:105.909333pt;}
.ya1{bottom:106.308000pt;}
.ye4{bottom:108.844000pt;}
.y36{bottom:108.920000pt;}
.y148{bottom:116.270667pt;}
.y17e{bottom:116.444000pt;}
.y243{bottom:118.861333pt;}
.y1da{bottom:118.864000pt;}
.y20e{bottom:119.060000pt;}
.y63{bottom:121.410667pt;}
.y154{bottom:122.600000pt;}
.y9a{bottom:122.646667pt;}
.ya0{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y35{bottom:124.820000pt;}
.ye3{bottom:125.581333pt;}
.y1a5{bottom:130.601333pt;}
.y147{bottom:133.008000pt;}
.y17d{bottom:133.181333pt;}
.y242{bottom:134.202667pt;}
.y20d{bottom:134.402667pt;}
.y1d9{bottom:135.601333pt;}
.y62{bottom:138.148000pt;}
.y153{bottom:139.337333pt;}
.y99{bottom:139.384000pt;}
.y9f{bottom:139.782667pt;}
.y34{bottom:140.720000pt;}
.ye2{bottom:142.318667pt;}
.y114{bottom:144.744000pt;}
.y1a4{bottom:147.338667pt;}
.y241{bottom:149.545333pt;}
.y146{bottom:149.745333pt;}
.y17c{bottom:149.918667pt;}
.y1d8{bottom:152.338667pt;}
.y61{bottom:154.885333pt;}
.y152{bottom:156.074667pt;}
.y98{bottom:156.121333pt;}
.y9e{bottom:156.520000pt;}
.y33{bottom:156.621333pt;}
.ye1{bottom:159.056000pt;}
.y113{bottom:161.481333pt;}
.y1a3{bottom:164.076000pt;}
.y240{bottom:164.888000pt;}
.y20c{bottom:165.088000pt;}
.y145{bottom:166.482667pt;}
.y1d7{bottom:169.076000pt;}
.y60{bottom:171.622667pt;}
.y32{bottom:172.521333pt;}
.y151{bottom:172.812000pt;}
.y9d{bottom:173.257333pt;}
.y17b{bottom:174.626667pt;}
.y18{bottom:175.052000pt;}
.ye0{bottom:175.793333pt;}
.y97{bottom:176.844000pt;}
.y112{bottom:178.218667pt;}
.y23f{bottom:180.230667pt;}
.y20b{bottom:180.430667pt;}
.y1a2{bottom:180.813333pt;}
.y144{bottom:183.220000pt;}
.y1d6{bottom:185.813333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y150{bottom:186.824000pt;}
.y5f{bottom:188.358667pt;}
.y31{bottom:188.421333pt;}
.y14f{bottom:189.549333pt;}
.y9c{bottom:189.994667pt;}
.ydf{bottom:192.530667pt;}
.y111{bottom:194.956000pt;}
.y23e{bottom:195.573333pt;}
.y20a{bottom:195.773333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1a1{bottom:197.550667pt;}
.y17a{bottom:199.333333pt;}
.y143{bottom:199.817333pt;}
.y142{bottom:199.957333pt;}
.y1d5{bottom:202.550667pt;}
.y14e{bottom:204.293333pt;}
.y30{bottom:204.322667pt;}
.y5e{bottom:205.096000pt;}
.y14d{bottom:206.286667pt;}
.y96{bottom:206.732000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yde{bottom:209.268000pt;}
.y23d{bottom:210.916000pt;}
.y209{bottom:211.116000pt;}
.y110{bottom:211.693333pt;}
.y1a0{bottom:214.288000pt;}
.y141{bottom:216.694667pt;}
.y5d{bottom:221.833333pt;}
.y14c{bottom:223.024000pt;}
.y1d4{bottom:223.273333pt;}
.y95{bottom:223.469333pt;}
.ydd{bottom:226.005333pt;}
.y23c{bottom:226.258667pt;}
.y208{bottom:226.457333pt;}
.y10f{bottom:228.430667pt;}
.y19f{bottom:231.025333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y140{bottom:233.432000pt;}
.y5c{bottom:238.570667pt;}
.y179{bottom:239.744000pt;}
.y94{bottom:240.206667pt;}
.y23b{bottom:241.601333pt;}
.y207{bottom:241.800000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ydc{bottom:242.742667pt;}
.y10e{bottom:245.168000pt;}
.y19e{bottom:247.762667pt;}
.y13f{bottom:250.169333pt;}
.y14b{bottom:250.701333pt;}
.y1d3{bottom:253.161333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y5b{bottom:255.308000pt;}
.y14a{bottom:256.253333pt;}
.y93{bottom:256.944000pt;}
.y206{bottom:257.142667pt;}
.ydb{bottom:259.480000pt;}
.y178{bottom:260.758667pt;}
.y10d{bottom:261.905333pt;}
.y19d{bottom:264.500000pt;}
.y2f{bottom:265.668000pt;}
.y13e{bottom:266.906667pt;}
.y1d2{bottom:269.898667pt;}
.y5a{bottom:272.045333pt;}
.y23a{bottom:272.285333pt;}
.y205{bottom:272.485333pt;}
.y92{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yda{bottom:276.217333pt;}
.y10c{bottom:278.642667pt;}
.y19c{bottom:281.237333pt;}
.y2e{bottom:281.568000pt;}
.y177{bottom:281.772000pt;}
.y13d{bottom:283.644000pt;}
.y1d1{bottom:286.636000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y239{bottom:287.628000pt;}
.y204{bottom:287.828000pt;}
.y59{bottom:288.782667pt;}
.y91{bottom:290.417333pt;}
.yd9{bottom:292.954667pt;}
.y10b{bottom:295.380000pt;}
.y2d{bottom:297.469333pt;}
.y19b{bottom:297.974667pt;}
.y13c{bottom:300.380000pt;}
.y176{bottom:302.786667pt;}
.y238{bottom:302.970667pt;}
.y203{bottom:303.170667pt;}
.y1d0{bottom:303.373333pt;}
.y58{bottom:305.520000pt;}
.y90{bottom:307.154667pt;}
.yf{bottom:309.452000pt;}
.yd8{bottom:309.692000pt;}
.y10a{bottom:312.116000pt;}
.yaf{bottom:312.339331pt;}
.y2c{bottom:313.369333pt;}
.y19a{bottom:314.712000pt;}
.y13b{bottom:317.117333pt;}
.y237{bottom:318.313333pt;}
.y202{bottom:318.513333pt;}
.y1cf{bottom:320.109333pt;}
.y57{bottom:322.257333pt;}
.y175{bottom:323.800000pt;}
.y8f{bottom:323.892000pt;}
.yd7{bottom:326.429333pt;}
.y109{bottom:328.853333pt;}
.yae{bottom:329.458835pt;}
.y199{bottom:331.449333pt;}
.y236{bottom:333.656000pt;}
.y13a{bottom:333.854667pt;}
.y201{bottom:333.856000pt;}
.y1ce{bottom:336.846667pt;}
.y2b{bottom:338.568000pt;}
.y56{bottom:338.994667pt;}
.y8e{bottom:340.629333pt;}
.yd6{bottom:343.166667pt;}
.ye{bottom:343.809333pt;}
.y108{bottom:345.590667pt;}
.yad{bottom:346.498179pt;}
.y198{bottom:348.186667pt;}
.y235{bottom:348.998667pt;}
.y200{bottom:349.197333pt;}
.y139{bottom:350.592000pt;}
.y174{bottom:351.906667pt;}
.y1cd{bottom:353.584000pt;}
.y2a{bottom:354.469333pt;}
.y55{bottom:355.732000pt;}
.y8d{bottom:357.366667pt;}
.yd5{bottom:359.904000pt;}
.y107{bottom:362.328000pt;}
.yd{bottom:362.706666pt;}
.yac{bottom:363.617683pt;}
.y234{bottom:364.341333pt;}
.y1ff{bottom:364.540000pt;}
.y197{bottom:364.924000pt;}
.y138{bottom:367.329333pt;}
.y1cc{bottom:370.321333pt;}
.y54{bottom:372.469333pt;}
.y8c{bottom:374.104000pt;}
.yd4{bottom:376.641333pt;}
.y29{bottom:378.338667pt;}
.y106{bottom:379.065333pt;}
.y233{bottom:379.684000pt;}
.y1fe{bottom:379.882667pt;}
.yab{bottom:380.737187pt;}
.y196{bottom:381.661333pt;}
.y173{bottom:383.925333pt;}
.y137{bottom:384.066667pt;}
.y1cb{bottom:387.058667pt;}
.y8b{bottom:390.841333pt;}
.y53{bottom:393.192000pt;}
.yd3{bottom:393.378667pt;}
.y28{bottom:394.240000pt;}
.y232{bottom:395.025333pt;}
.y1fd{bottom:395.225333pt;}
.yaa{bottom:397.776531pt;}
.y195{bottom:398.398667pt;}
.y105{bottom:399.788000pt;}
.y172{bottom:400.662667pt;}
.y136{bottom:400.804000pt;}
.y1ca{bottom:403.796000pt;}
.y8a{bottom:407.578667pt;}
.yd2{bottom:410.116000pt;}
.y27{bottom:410.140000pt;}
.y231{bottom:410.368000pt;}
.y1fc{bottom:410.568000pt;}
.ya9{bottom:414.896035pt;}
.y194{bottom:415.134667pt;}
.y171{bottom:417.400000pt;}
.y135{bottom:417.541333pt;}
.y1c9{bottom:420.533333pt;}
.y89{bottom:424.316000pt;}
.y230{bottom:425.710667pt;}
.y1fb{bottom:425.910667pt;}
.y26{bottom:426.040000pt;}
.yd1{bottom:430.838667pt;}
.y193{bottom:431.872000pt;}
.ya8{bottom:431.935379pt;}
.y170{bottom:434.137333pt;}
.y134{bottom:434.278667pt;}
.y1c8{bottom:437.270667pt;}
.y104{bottom:440.065333pt;}
.y88{bottom:441.053333pt;}
.y1fa{bottom:441.253333pt;}
.y25{bottom:441.941333pt;}
.yc{bottom:446.990669pt;}
.y102{bottom:447.372000pt;}
.y192{bottom:448.609333pt;}
.ya7{bottom:449.054883pt;}
.y16f{bottom:450.874667pt;}
.y133{bottom:451.016000pt;}
.y1c7{bottom:454.008000pt;}
.y103{bottom:454.677333pt;}
.y22f{bottom:456.396000pt;}
.y1f9{bottom:456.596000pt;}
.y87{bottom:457.790667pt;}
.y24{bottom:457.841333pt;}
.y52{bottom:459.274667pt;}
.yd0{bottom:460.726667pt;}
.yb{bottom:462.990669pt;}
.y132{bottom:465.029333pt;}
.y191{bottom:465.346667pt;}
.ya6{bottom:466.174387pt;}
.y16e{bottom:467.612000pt;}
.y131{bottom:467.753333pt;}
.y1c6{bottom:470.745333pt;}
.y22e{bottom:471.738667pt;}
.y1f8{bottom:471.938667pt;}
.y23{bottom:473.741333pt;}
.y86{bottom:474.528000pt;}
.y101{bottom:475.692000pt;}
.ycf{bottom:477.462667pt;}
.ya{bottom:478.990666pt;}
.y190{bottom:482.084000pt;}
.y100{bottom:482.997333pt;}
.ya5{bottom:483.215067pt;}
.y22d{bottom:487.081333pt;}
.y1f7{bottom:487.280000pt;}
.y1c5{bottom:487.482667pt;}
.y22{bottom:489.642667pt;}
.y85{bottom:491.265333pt;}
.y51{bottom:492.509333pt;}
.y130{bottom:492.858667pt;}
.yce{bottom:494.200000pt;}
.y9{bottom:494.990666pt;}
.y18f{bottom:498.821333pt;}
.y22c{bottom:502.424000pt;}
.y1f6{bottom:502.622667pt;}
.y16d{bottom:503.285333pt;}
.y1c4{bottom:504.220000pt;}
.y84{bottom:508.002667pt;}
.ycd{bottom:510.937333pt;}
.yff{bottom:511.317333pt;}
.y18e{bottom:515.558667pt;}
.y22b{bottom:517.766667pt;}
.y1f5{bottom:517.965333pt;}
.yfe{bottom:518.624000pt;}
.y16c{bottom:520.036000pt;}
.y1c3{bottom:520.957333pt;}
.y12f{bottom:523.544000pt;}
.y83{bottom:524.740000pt;}
.y50{bottom:525.745333pt;}
.ycc{bottom:527.674667pt;}
.ya4{bottom:531.855187pt;}
.y18d{bottom:532.296000pt;}
.y22a{bottom:533.108000pt;}
.y1f4{bottom:533.308000pt;}
.ya3{bottom:540.415067pt;}
.y16b{bottom:541.049333pt;}
.y82{bottom:541.477333pt;}
.y4f{bottom:543.040000pt;}
.ycb{bottom:544.412000pt;}
.yfd{bottom:546.944000pt;}
.y229{bottom:548.450667pt;}
.y1f3{bottom:548.650667pt;}
.y18c{bottom:549.033333pt;}
.y12e{bottom:554.229333pt;}
.yfc{bottom:554.249333pt;}
.y1c2{bottom:556.632000pt;}
.y81{bottom:558.214667pt;}
.y4e{bottom:560.336000pt;}
.yca{bottom:561.149333pt;}
.y16a{bottom:562.064000pt;}
.y228{bottom:563.793333pt;}
.y1f2{bottom:563.993333pt;}
.y18b{bottom:565.770667pt;}
.y1c1{bottom:569.250667pt;}
.y12d{bottom:570.966667pt;}
.y8{bottom:573.786667pt;}
.y80{bottom:574.952000pt;}
.y4d{bottom:577.630667pt;}
.y227{bottom:579.136000pt;}
.y1f1{bottom:579.336000pt;}
.y1c0{bottom:581.870667pt;}
.y18a{bottom:582.508000pt;}
.yfa{bottom:582.569333pt;}
.y169{bottom:583.077333pt;}
.y12c{bottom:587.704000pt;}
.yc9{bottom:588.898667pt;}
.yf9{bottom:589.874667pt;}
.y7f{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y226{bottom:594.478667pt;}
.y1f0{bottom:594.678667pt;}
.y4c{bottom:594.925333pt;}
.yfb{bottom:597.181333pt;}
.y189{bottom:599.245333pt;}
.y1bf{bottom:601.277333pt;}
.y168{bottom:604.092000pt;}
.y12b{bottom:604.441333pt;}
.yc8{bottom:605.994667pt;}
.y7e{bottom:608.426667pt;}
.y225{bottom:609.821333pt;}
.y1ef{bottom:610.021333pt;}
.y4b{bottom:612.221333pt;}
.y188{bottom:615.982667pt;}
.yf8{bottom:618.194667pt;}
.y12a{bottom:621.178667pt;}
.y1be{bottom:622.290667pt;}
.y167{bottom:625.105333pt;}
.y7d{bottom:625.164000pt;}
.y1ee{bottom:625.362667pt;}
.ya2{bottom:628.588000pt;}
.y4a{bottom:629.516000pt;}
.y187{bottom:632.720000pt;}
.y129{bottom:637.916000pt;}
.yf6{bottom:639.209333pt;}
.y224{bottom:640.506667pt;}
.y1ed{bottom:640.705333pt;}
.y7c{bottom:641.901333pt;}
.y1bd{bottom:643.305333pt;}
.y6{bottom:645.598667pt;}
.y166{bottom:646.120000pt;}
.yf5{bottom:646.514667pt;}
.y49{bottom:646.812000pt;}
.y186{bottom:649.457333pt;}
.yf7{bottom:653.821333pt;}
.y128{bottom:654.653333pt;}
.y223{bottom:655.848000pt;}
.y1ec{bottom:656.048000pt;}
.y7b{bottom:658.638667pt;}
.y48{bottom:664.106667pt;}
.y1bb{bottom:664.318667pt;}
.y165{bottom:667.133333pt;}
.y3{bottom:668.977329pt;}
.y222{bottom:671.190667pt;}
.y127{bottom:671.390667pt;}
.y1ba{bottom:671.625333pt;}
.yf4{bottom:674.834667pt;}
.y7a{bottom:675.376000pt;}
.y1bc{bottom:678.930667pt;}
.y47{bottom:681.401333pt;}
.y185{bottom:685.132000pt;}
.y221{bottom:686.533333pt;}
.y1eb{bottom:686.733333pt;}
.y126{bottom:688.128000pt;}
.y164{bottom:688.148000pt;}
.yf3{bottom:689.446667pt;}
.y79{bottom:692.113333pt;}
.y46{bottom:698.697333pt;}
.y1b9{bottom:699.944000pt;}
.y220{bottom:701.876000pt;}
.y184{bottom:701.881333pt;}
.y1ea{bottom:702.076000pt;}
.y125{bottom:704.865333pt;}
.y78{bottom:708.850667pt;}
.y163{bottom:709.161333pt;}
.yf2{bottom:710.461333pt;}
.y1b8{bottom:714.556000pt;}
.y45{bottom:715.992000pt;}
.y21f{bottom:717.218667pt;}
.y1e9{bottom:717.418667pt;}
.y124{bottom:721.602667pt;}
.y183{bottom:722.896000pt;}
.y77{bottom:725.588000pt;}
.y162{bottom:730.176000pt;}
.y21e{bottom:732.561333pt;}
.y1e8{bottom:732.761333pt;}
.y44{bottom:733.286667pt;}
.y1b7{bottom:735.570667pt;}
.y123{bottom:738.340000pt;}
.yf1{bottom:741.224000pt;}
.y76{bottom:742.324000pt;}
.y182{bottom:743.909333pt;}
.y21d{bottom:747.904000pt;}
.y1e7{bottom:748.102667pt;}
.y1b6{bottom:750.182667pt;}
.y43{bottom:750.582667pt;}
.y161{bottom:751.189333pt;}
.y122{bottom:755.077333pt;}
.y75{bottom:759.061333pt;}
.y21c{bottom:763.246667pt;}
.y181{bottom:764.922667pt;}
.y1e6{bottom:767.430667pt;}
.y1b5{bottom:771.196000pt;}
.y121{bottom:771.814667pt;}
.y160{bottom:772.204000pt;}
.yf0{bottom:774.205333pt;}
.y74{bottom:775.798667pt;}
.y21b{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y42{bottom:784.880000pt;}
.y1b4{bottom:785.808000pt;}
.y120{bottom:788.552000pt;}
.yef{bottom:790.942667pt;}
.y73{bottom:792.536000pt;}
.y180{bottom:793.029333pt;}
.y15f{bottom:793.217333pt;}
.y21a{bottom:793.930667pt;}
.y1e5{bottom:797.318667pt;}
.y41{bottom:803.084000pt;}
.y11f{bottom:805.289333pt;}
.y1b3{bottom:806.822667pt;}
.yee{bottom:807.680000pt;}
.y72{bottom:809.273333pt;}
.y40{bottom:817.430667pt;}
.y1e4{bottom:820.910667pt;}
.y15e{bottom:821.324000pt;}
.y1b2{bottom:821.434667pt;}
.y11e{bottom:822.025333pt;}
.yed{bottom:824.417333pt;}
.y219{bottom:824.616000pt;}
.y71{bottom:826.010667pt;}
.y3f{bottom:827.920000pt;}
.y247{bottom:835.906667pt;}
.y1e3{bottom:836.532000pt;}
.y11d{bottom:838.762667pt;}
.y218{bottom:839.958667pt;}
.yec{bottom:841.154667pt;}
.y1b0{bottom:842.448000pt;}
.y70{bottom:842.748000pt;}
.y3e{bottom:846.122667pt;}
.y1af{bottom:849.753333pt;}
.y246{bottom:851.249333pt;}
.y1e2{bottom:852.153333pt;}
.y15d{bottom:854.305333pt;}
.y217{bottom:855.301333pt;}
.y11c{bottom:855.500000pt;}
.y1b1{bottom:857.060000pt;}
.yeb{bottom:857.892000pt;}
.y1{bottom:859.312000pt;}
.y6f{bottom:859.485333pt;}
.y245{bottom:866.592000pt;}
.y216{bottom:870.644000pt;}
.y15c{bottom:871.042667pt;}
.y11b{bottom:872.237333pt;}
.yea{bottom:874.629333pt;}
.y1e1{bottom:875.745333pt;}
.y6e{bottom:876.222667pt;}
.y1ad{bottom:878.073333pt;}
.y1ac{bottom:885.380000pt;}
.y3d{bottom:885.836000pt;}
.y215{bottom:885.986667pt;}
.y15b{bottom:887.780000pt;}
.y11a{bottom:888.974667pt;}
.ye9{bottom:891.366667pt;}
.y1ae{bottom:892.685333pt;}
.y6d{bottom:892.960000pt;}
.y1e0{bottom:899.336000pt;}
.y214{bottom:901.329333pt;}
.y15a{bottom:904.517333pt;}
.y119{bottom:905.712000pt;}
.ye8{bottom:908.104000pt;}
.y6c{bottom:909.697333pt;}
.y1ab{bottom:913.700000pt;}
.y213{bottom:916.670667pt;}
.y159{bottom:921.254667pt;}
.y3c{bottom:921.320000pt;}
.y118{bottom:922.449333pt;}
.y1df{bottom:922.928000pt;}
.y6b{bottom:926.434667pt;}
.y1aa{bottom:928.312000pt;}
.ye7{bottom:928.825333pt;}
.y212{bottom:932.013333pt;}
.y1a7{bottom:937.836000pt;}
.y158{bottom:937.992000pt;}
.y117{bottom:939.186667pt;}
.y6a{bottom:943.172000pt;}
.y3b{bottom:946.425333pt;}
.y1de{bottom:946.520000pt;}
.ye6{bottom:946.758667pt;}
.y211{bottom:947.356000pt;}
.y1a9{bottom:949.325333pt;}
.y157{bottom:954.729333pt;}
.y116{bottom:955.924000pt;}
.y69{bottom:959.909333pt;}
.y1dd{bottom:962.141333pt;}
.y210{bottom:962.698667pt;}
.y1a8{bottom:963.937333pt;}
.y3a{bottom:971.530667pt;}
.y115{bottom:972.661333pt;}
.y156{bottom:975.450667pt;}
.y68{bottom:976.646667pt;}
.y1dc{bottom:977.762667pt;}
.y20f{bottom:978.041333pt;}
.y67{bottom:993.384000pt;}
.y1a6{bottom:994.700000pt;}
.y38{bottom:1010.186667pt;}
.y66{bottom:1046.810667pt;}
.h10{height:23.209028pt;}
.h9{height:27.076941pt;}
.h16{height:27.184641pt;}
.h7{height:28.560000pt;}
.h11{height:30.945242pt;}
.h19{height:31.067969pt;}
.ha{height:31.502979pt;}
.h29{height:32.709427pt;}
.h21{height:34.203441pt;}
.h1e{height:34.574438pt;}
.h12{height:34.813542pt;}
.h1c{height:35.039062pt;}
.h1b{height:35.343750pt;}
.h15{height:36.003598pt;}
.h22{height:37.778179pt;}
.h18{height:38.008906pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.h1a{height:39.010156pt;}
.h1d{height:39.349375pt;}
.h28{height:40.504218pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hd{height:45.004385pt;}
.hb{height:45.271688pt;}
.h23{height:45.564385pt;}
.hf{height:48.481423pt;}
.h2{height:48.960000pt;}
.h20{height:64.034876pt;}
.h1f{height:64.040209pt;}
.h24{height:65.376774pt;}
.h26{height:67.212385pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.hc{height:77.447343pt;}
.h25{height:87.584774pt;}
.h27{height:93.261542pt;}
.h4{height:105.826671pt;}
.h17{height:295.657333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w5{width:609.055867pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xe{left:-44.498800pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x78{left:55.616000pt;}
.x73{left:59.824000pt;}
.x20{left:63.530667pt;}
.x7a{left:64.988000pt;}
.x76{left:69.513333pt;}
.x6b{left:73.045333pt;}
.x7b{left:75.973333pt;}
.x22{left:77.004000pt;}
.x64{left:78.664000pt;}
.x13{left:80.674667pt;}
.x74{left:84.212000pt;}
.x1e{left:85.790667pt;}
.x1{left:90.706667pt;}
.xd{left:92.133467pt;}
.x2{left:94.486667pt;}
.x77{left:96.764000pt;}
.x19{left:102.946667pt;}
.x12{left:104.028000pt;}
.x1b{left:105.893333pt;}
.x14{left:110.926667pt;}
.xf{left:129.341200pt;}
.x10{left:157.661106pt;}
.x4{left:180.874667pt;}
.x70{left:193.656000pt;}
.x5a{left:196.710667pt;}
.x55{left:199.054667pt;}
.x75{left:200.824000pt;}
.x79{left:203.513333pt;}
.x59{left:206.006667pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x4e{left:231.001333pt;}
.x52{left:236.117333pt;}
.x53{left:237.181333pt;}
.x8{left:239.924000pt;}
.xa{left:250.204000pt;}
.x23{left:254.656000pt;}
.x54{left:256.153333pt;}
.x4f{left:261.493333pt;}
.x2a{left:263.196000pt;}
.x26{left:269.430667pt;}
.x51{left:273.728000pt;}
.x16{left:277.580000pt;}
.x27{left:279.584000pt;}
.x25{left:286.736000pt;}
.x47{left:289.265333pt;}
.x5c{left:291.582667pt;}
.x45{left:293.718667pt;}
.x15{left:295.033333pt;}
.x44{left:296.366667pt;}
.x43{left:299.302667pt;}
.x46{left:304.825333pt;}
.x21{left:308.022667pt;}
.x5b{left:309.180000pt;}
.x1c{left:315.716000pt;}
.x3e{left:323.718667pt;}
.x1a{left:327.904000pt;}
.x40{left:340.248000pt;}
.x2f{left:349.274667pt;}
.x24{left:357.222667pt;}
.x32{left:370.130667pt;}
.x33{left:374.157333pt;}
.x56{left:378.833333pt;}
.x65{left:380.410667pt;}
.x5e{left:386.453333pt;}
.x6c{left:388.713333pt;}
.x41{left:391.133333pt;}
.x66{left:392.066667pt;}
.x30{left:394.377333pt;}
.x5d{left:395.748000pt;}
.x3{left:404.408000pt;}
.x3f{left:411.397333pt;}
.x48{left:418.121333pt;}
.x42{left:421.356000pt;}
.x28{left:447.728000pt;}
.x29{left:464.118667pt;}
.x49{left:465.897333pt;}
.x60{left:481.325333pt;}
.x17{left:482.326667pt;}
.x71{left:483.584000pt;}
.x6d{left:486.101333pt;}
.x2c{left:487.797333pt;}
.x31{left:495.862667pt;}
.x5f{left:498.922667pt;}
.x4a{left:514.121333pt;}
.x1f{left:519.340000pt;}
.x1d{left:523.153333pt;}
.x38{left:527.528000pt;}
.x2d{left:534.281333pt;}
.x39{left:541.785333pt;}
.x34{left:565.120000pt;}
.x18{left:572.336000pt;}
.x3c{left:574.386667pt;}
.x62{left:576.196000pt;}
.x67{left:577.982667pt;}
.x35{left:579.374667pt;}
.x68{left:581.808000pt;}
.x6e{left:582.998667pt;}
.x61{left:585.490667pt;}
.x4b{left:586.765333pt;}
.x3d{left:590.798667pt;}
.x58{left:593.830667pt;}
.x57{left:594.750667pt;}
.x2e{left:597.644000pt;}
.x11{left:605.496498pt;}
.x7c{left:606.842667pt;}
.x7d{left:614.976000pt;}
.x7e{left:621.800000pt;}
.x7f{left:625.190667pt;}
.x80{left:631.332000pt;}
.x81{left:636.294667pt;}
.x4c{left:637.978667pt;}
.x3a{left:640.458667pt;}
.x50{left:642.820000pt;}
.x82{left:649.262667pt;}
.x3b{left:654.310667pt;}
.x2b{left:660.750667pt;}
.x83{left:669.514667pt;}
.x63{left:671.066667pt;}
.x6f{left:672.854667pt;}
.x6a{left:676.680000pt;}
.x72{left:678.168000pt;}
.x69{left:679.154667pt;}
.x84{left:681.753333pt;}
.xb{left:688.228000pt;}
.x85{left:697.382667pt;}
.xc{left:699.153333pt;}
.x86{left:704.206667pt;}
.x4d{left:707.634667pt;}
.x87{left:709.621333pt;}
.x36{left:719.417333pt;}
.x37{left:726.217333pt;}
.x88{left:729.412000pt;}
.x89{left:734.826667pt;}
.x8a{left:740.286667pt;}
}




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