
    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_a74ef86a84c1a2e49d2fd20f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b6733d306c2028fdb5786f5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f81affab8a2fedfad091c204.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3759498a65ac90be1513aff5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_32185311ebfc0c258733da0c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8276ef0e052441bba9bb74ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ee8c562a77f97bb35bf0386b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.013672;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_5f1edf532849ecf145728f25.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003418;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_ef1b8e59ca550141b55207db.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d1d6b0eba0aae500ecb39d48.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.211426;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_555933196cef2f429b8f3781.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773000;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_b7fd36bb6240d69a22a60ad2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.494000;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_f1595dea812eec4ae4a5d647.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b6229d874e20ebbe452e2414.woff2')format("woff");}.fff{font-family:fff;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c1fe32aabe8862d20aed6255.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{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);}
.m1f{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);}
.m17{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);}
.ma{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m21{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);}
.m3{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);}
.m16{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);}
.m14{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);}
.m24{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);}
.m1c{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);}
.m9{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);}
.m4{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);}
.mb{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);}
.me{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.mc{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);}
.m8{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);}
.m5{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);}
.m1e{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);}
.md{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);}
.m6{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);}
.m22{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);}
.mf{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);}
.m25{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);}
.m23{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);}
.m1a{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);}
.m10{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);}
.m20{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);}
.m18{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);}
.m19{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);}
.m1{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m11{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.254000px;}
.v3{vertical-align:12.088512px;}
.v7{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:28.326000px;}
.v6{vertical-align:32.874000px;}
.v4{vertical-align:38.550000px;}
.ls32{letter-spacing:-2.151360px;}
.ls30{letter-spacing:-0.561600px;}
.ls2e{letter-spacing:-0.430272px;}
.ls33{letter-spacing:-0.382464px;}
.ls2f{letter-spacing:-0.286848px;}
.ls26{letter-spacing:-0.270144px;}
.ls29{letter-spacing:-0.192960px;}
.ls2a{letter-spacing:-0.191232px;}
.ls2d{letter-spacing:-0.095616px;}
.ls2b{letter-spacing:-0.047808px;}
.ls25{letter-spacing:-0.038592px;}
.ls9{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000422px;}
.ls51{letter-spacing:0.000676px;}
.ls55{letter-spacing:0.001155px;}
.ls54{letter-spacing:0.001584px;}
.ls6{letter-spacing:0.001952px;}
.ls53{letter-spacing:0.002544px;}
.ls3{letter-spacing:0.002725px;}
.ls50{letter-spacing:0.002841px;}
.ls23{letter-spacing:0.003389px;}
.ls4f{letter-spacing:0.004800px;}
.ls31{letter-spacing:0.043200px;}
.ls18{letter-spacing:0.057370px;}
.ls2c{letter-spacing:0.095616px;}
.ls17{letter-spacing:0.119635px;}
.ls21{letter-spacing:0.129600px;}
.ls1b{letter-spacing:0.143424px;}
.ls28{letter-spacing:0.154368px;}
.ls19{letter-spacing:0.191232px;}
.ls1f{letter-spacing:0.219917px;}
.ls1c{letter-spacing:0.277286px;}
.ls1d{letter-spacing:0.286848px;}
.ls27{letter-spacing:0.308736px;}
.ls3e{letter-spacing:0.503764px;}
.ls45{letter-spacing:0.642088px;}
.ls44{letter-spacing:0.648088px;}
.ls3a{letter-spacing:0.717483px;}
.ls1a{letter-spacing:0.741024px;}
.ls1e{letter-spacing:0.860544px;}
.ls22{letter-spacing:1.290816px;}
.ls1{letter-spacing:2.989200px;}
.ls20{letter-spacing:5.956877px;}
.ls0{letter-spacing:10.461300px;}
.ls57{letter-spacing:11.090400px;}
.ls3f{letter-spacing:11.951700px;}
.ls8{letter-spacing:11.954850px;}
.ls48{letter-spacing:11.957700px;}
.ls4e{letter-spacing:12.440400px;}
.ls4d{letter-spacing:13.386221px;}
.ls4a{letter-spacing:13.448400px;}
.ls4c{letter-spacing:13.454400px;}
.ls4b{letter-spacing:13.611129px;}
.ls52{letter-spacing:13.681631px;}
.ls11{letter-spacing:14.634649px;}
.ls12{letter-spacing:14.640771px;}
.ls37{letter-spacing:14.708863px;}
.ls13{letter-spacing:14.774922px;}
.ls35{letter-spacing:14.803900px;}
.lsf{letter-spacing:14.835643px;}
.ls56{letter-spacing:14.873929px;}
.ls10{letter-spacing:14.882447px;}
.lsd{letter-spacing:14.937767px;}
.ls16{letter-spacing:14.943767px;}
.lsc{letter-spacing:14.943900px;}
.ls4{letter-spacing:14.944200px;}
.lsa{letter-spacing:14.983883px;}
.lsb{letter-spacing:14.984172px;}
.ls3c{letter-spacing:15.015814px;}
.ls14{letter-spacing:15.051471px;}
.ls15{letter-spacing:15.057544px;}
.ls3b{letter-spacing:15.069946px;}
.ls3d{letter-spacing:15.247494px;}
.ls38{letter-spacing:15.691625px;}
.ls39{letter-spacing:15.693986px;}
.ls24{letter-spacing:16.617617px;}
.lse{letter-spacing:17.491394px;}
.ls36{letter-spacing:19.282788px;}
.ls58{letter-spacing:21.150400px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls43{letter-spacing:155.644742px;}
.ls40{letter-spacing:155.650742px;}
.ls41{letter-spacing:177.250742px;}
.ls42{letter-spacing:198.850742px;}
.ls34{letter-spacing:247.990284px;}
.ls49{letter-spacing:277.653542px;}
.ls47{letter-spacing:579.318600px;}
.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;}
}
.wsd4{word-spacing:-277.707341px;}
.ws4d{word-spacing:-29.887800px;}
.ws47{word-spacing:-14.943900px;}
.wsb8{word-spacing:-13.449600px;}
.ws64{word-spacing:-12.238848px;}
.ws6b{word-spacing:-12.143232px;}
.ws67{word-spacing:-12.047616px;}
.ws28{word-spacing:-11.955150px;}
.ws66{word-spacing:-11.952000px;}
.ws69{word-spacing:-11.856384px;}
.ws63{word-spacing:-11.760768px;}
.ws65{word-spacing:-11.665152px;}
.ws10{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws68{word-spacing:-10.238400px;}
.ws62{word-spacing:-9.956736px;}
.ws61{word-spacing:-9.377856px;}
.ws6a{word-spacing:-7.200000px;}
.ws52{word-spacing:-3.526760px;}
.ws50{word-spacing:-2.630126px;}
.ws126{word-spacing:-2.528525px;}
.ws125{word-spacing:-2.371392px;}
.ws124{word-spacing:-2.367130px;}
.ws99{word-spacing:-2.342592px;}
.ws6f{word-spacing:-2.331248px;}
.ws8a{word-spacing:-2.294784px;}
.ws92{word-spacing:-2.055744px;}
.wsf5{word-spacing:-2.044339px;}
.wsf8{word-spacing:-1.990541px;}
.ws9a{word-spacing:-1.960128px;}
.wsf6{word-spacing:-1.829146px;}
.ws51{word-spacing:-1.793268px;}
.wsf9{word-spacing:-1.775347px;}
.ws30{word-spacing:-1.494390px;}
.ws8e{word-spacing:-1.482048px;}
.ws97{word-spacing:-1.386432px;}
.ws4f{word-spacing:-1.315063px;}
.ws81{word-spacing:-1.290816px;}
.wsee{word-spacing:-1.255288px;}
.ws123{word-spacing:-1.237363px;}
.ws4{word-spacing:-1.171598px;}
.ws9e{word-spacing:-1.147392px;}
.ws4a{word-spacing:-1.075961px;}
.ws6{word-spacing:-1.046070px;}
.wsff{word-spacing:-1.022170px;}
.ws100{word-spacing:-0.996000px;}
.ws101{word-spacing:-0.968371px;}
.ws32{word-spacing:-0.956410px;}
.ws9f{word-spacing:-0.908352px;}
.wsad{word-spacing:-0.896634px;}
.ws22{word-spacing:-0.836858px;}
.ws85{word-spacing:-0.812736px;}
.wsfe{word-spacing:-0.806976px;}
.wsef{word-spacing:-0.777083px;}
.ws19{word-spacing:-0.753178px;}
.ws88{word-spacing:-0.717120px;}
.wsdb{word-spacing:-0.657532px;}
.ws73{word-spacing:-0.578880px;}
.ws95{word-spacing:-0.561600px;}
.ws128{word-spacing:-0.537984px;}
.ws31{word-spacing:-0.478205px;}
.wsd1{word-spacing:-0.430387px;}
.ws46{word-spacing:-0.418429px;}
.ws42{word-spacing:-0.358654px;}
.ws7f{word-spacing:-0.334656px;}
.ws17{word-spacing:-0.322790px;}
.ws53{word-spacing:-0.310444px;}
.ws2d{word-spacing:-0.298878px;}
.ws80{word-spacing:-0.286848px;}
.ws13{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.ws7e{word-spacing:-0.239040px;}
.ws20{word-spacing:-0.215194px;}
.ws7c{word-spacing:-0.191232px;}
.ws55{word-spacing:-0.183387px;}
.ws54{word-spacing:-0.180048px;}
.ws23{word-spacing:-0.179327px;}
.wsd2{word-spacing:-0.161395px;}
.ws76{word-spacing:-0.143424px;}
.ws24{word-spacing:-0.119551px;}
.ws1f{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.ws16{word-spacing:-0.053798px;}
.ws11{word-spacing:-0.047821px;}
.ws118{word-spacing:-0.026544px;}
.ws10b{word-spacing:-0.010742px;}
.ws11b{word-spacing:-0.010685px;}
.ws113{word-spacing:-0.009926px;}
.ws111{word-spacing:-0.008438px;}
.ws4b{word-spacing:-0.008206px;}
.ws108{word-spacing:-0.005731px;}
.wsd0{word-spacing:-0.005449px;}
.ws105{word-spacing:-0.005290px;}
.ws109{word-spacing:-0.004742px;}
.ws10c{word-spacing:-0.003466px;}
.ws129{word-spacing:-0.002928px;}
.ws102{word-spacing:-0.002304px;}
.ws1{word-spacing:0.000000px;}
.wsb7{word-spacing:0.000551px;}
.ws27{word-spacing:0.000629px;}
.ws103{word-spacing:0.000710px;}
.ws2{word-spacing:0.002257px;}
.wsf{word-spacing:0.003266px;}
.ws72{word-spacing:0.038592px;}
.ws8c{word-spacing:0.047808px;}
.wsc5{word-spacing:0.053798px;}
.ws44{word-spacing:0.059776px;}
.ws96{word-spacing:0.086400px;}
.ws91{word-spacing:0.095616px;}
.ws56{word-spacing:0.105982px;}
.ws1a{word-spacing:0.107597px;}
.ws57{word-spacing:0.107919px;}
.ws58{word-spacing:0.108386px;}
.ws29{word-spacing:0.119551px;}
.ws1b{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws87{word-spacing:0.191232px;}
.ws74{word-spacing:0.192960px;}
.ws15{word-spacing:0.215194px;}
.ws7b{word-spacing:0.239040px;}
.ws3a{word-spacing:0.239102px;}
.ws116{word-spacing:0.268992px;}
.ws82{word-spacing:0.286848px;}
.ws2e{word-spacing:0.298878px;}
.ws117{word-spacing:0.322790px;}
.ws86{word-spacing:0.334656px;}
.ws36{word-spacing:0.358654px;}
.ws114{word-spacing:0.376589px;}
.ws7d{word-spacing:0.430272px;}
.wsd8{word-spacing:0.478205px;}
.ws33{word-spacing:0.537980px;}
.ws10e{word-spacing:0.537984px;}
.ws84{word-spacing:0.573696px;}
.wse8{word-spacing:0.597756px;}
.ws112{word-spacing:0.645581px;}
.wse7{word-spacing:0.657532px;}
.ws5d{word-spacing:0.717307px;}
.ws2f{word-spacing:0.777083px;}
.ws119{word-spacing:0.806976px;}
.wse4{word-spacing:0.836858px;}
.ws11a{word-spacing:0.860774px;}
.wse5{word-spacing:0.896634px;}
.ws83{word-spacing:0.908352px;}
.ws7a{word-spacing:1.003968px;}
.ws5{word-spacing:1.004227px;}
.wsac{word-spacing:1.004233px;}
.ws122{word-spacing:1.075968px;}
.ws18{word-spacing:1.129766px;}
.ws89{word-spacing:1.147392px;}
.ws79{word-spacing:1.195200px;}
.ws5e{word-spacing:1.195512px;}
.ws35{word-spacing:1.255288px;}
.ws78{word-spacing:1.338624px;}
.ws1c{word-spacing:1.344960px;}
.ws3d{word-spacing:1.494390px;}
.wse6{word-spacing:1.554166px;}
.ws4e{word-spacing:1.613941px;}
.wsf3{word-spacing:1.667750px;}
.ws70{word-spacing:1.673717px;}
.ws8f{word-spacing:1.721088px;}
.ws71{word-spacing:1.733492px;}
.ws10d{word-spacing:1.775347px;}
.ws60{word-spacing:1.793268px;}
.wsfa{word-spacing:1.829146px;}
.wsec{word-spacing:1.853044px;}
.wsb1{word-spacing:1.912819px;}
.ws104{word-spacing:1.936742px;}
.ws45{word-spacing:1.972595px;}
.ws90{word-spacing:2.055744px;}
.ws9b{word-spacing:2.151360px;}
.wsf7{word-spacing:2.151936px;}
.wse9{word-spacing:2.211697px;}
.ws9c{word-spacing:2.294784px;}
.wsd9{word-spacing:2.331248px;}
.wsdf{word-spacing:2.391024px;}
.wsb6{word-spacing:2.510568px;}
.ws39{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws115{word-spacing:2.528525px;}
.ws110{word-spacing:2.582323px;}
.ws3b{word-spacing:2.630126px;}
.ws5c{word-spacing:2.749678px;}
.wsae{word-spacing:2.809453px;}
.ws9d{word-spacing:2.868480px;}
.ws12{word-spacing:2.869236px;}
.wsdd{word-spacing:2.988780px;}
.ws10f{word-spacing:3.012710px;}
.ws8b{word-spacing:3.107520px;}
.ws5b{word-spacing:3.108331px;}
.wsfd{word-spacing:3.174106px;}
.ws11d{word-spacing:3.222614px;}
.ws107{word-spacing:3.224093px;}
.wsf4{word-spacing:3.224822px;}
.ws106{word-spacing:3.225139px;}
.ws10a{word-spacing:3.225216px;}
.wsfb{word-spacing:3.227904px;}
.ws6e{word-spacing:3.347434px;}
.wsfc{word-spacing:3.443098px;}
.ws41{word-spacing:3.466985px;}
.ws2b{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws6d{word-spacing:3.646312px;}
.ws8d{word-spacing:3.681216px;}
.wsb2{word-spacing:3.706087px;}
.ws11c{word-spacing:3.981082px;}
.ws37{word-spacing:4.124516px;}
.ws1d{word-spacing:4.142477px;}
.ws5f{word-spacing:4.184292px;}
.wsf0{word-spacing:4.244068px;}
.ws26{word-spacing:4.303843px;}
.ws1e{word-spacing:4.357670px;}
.wsb0{word-spacing:4.363619px;}
.ws5a{word-spacing:4.483170px;}
.ws59{word-spacing:4.494036px;}
.wsea{word-spacing:4.602721px;}
.ws34{word-spacing:4.662497px;}
.wseb{word-spacing:4.722272px;}
.wsc{word-spacing:4.770079px;}
.ws49{word-spacing:4.782048px;}
.ws48{word-spacing:4.799295px;}
.wsd{word-spacing:4.853765px;}
.wsed{word-spacing:5.021150px;}
.wse0{word-spacing:5.379804px;}
.wsde{word-spacing:5.439580px;}
.ws38{word-spacing:5.499355px;}
.ws3e{word-spacing:5.559131px;}
.ws3f{word-spacing:5.618906px;}
.ws94{word-spacing:5.784768px;}
.ws6c{word-spacing:5.858009px;}
.ws14{word-spacing:5.864026px;}
.wsb3{word-spacing:5.917784px;}
.ws4c{word-spacing:6.037336px;}
.ws127{word-spacing:6.079219px;}
.ws93{word-spacing:6.119424px;}
.wsf2{word-spacing:6.133018px;}
.wsaf{word-spacing:6.156887px;}
.ws77{word-spacing:6.215040px;}
.wsf1{word-spacing:6.509606px;}
.ws2c{word-spacing:6.515540px;}
.ws40{word-spacing:6.575316px;}
.wse1{word-spacing:6.635092px;}
.ws75{word-spacing:6.693120px;}
.ws43{word-spacing:6.754643px;}
.wsdc{word-spacing:6.814418px;}
.wse2{word-spacing:7.173072px;}
.wsda{word-spacing:7.591501px;}
.wsa{word-spacing:7.782761px;}
.wse3{word-spacing:8.308808px;}
.ws98{word-spacing:10.948032px;}
.ws3c{word-spacing:12.014896px;}
.ws8{word-spacing:12.176255px;}
.ws121{word-spacing:12.481229px;}
.ws11f{word-spacing:12.505245px;}
.ws120{word-spacing:12.535027px;}
.ws11e{word-spacing:15.709133px;}
.ws9{word-spacing:16.109478px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.wsc0{word-spacing:75.150115px;}
.wscc{word-spacing:75.175267px;}
.wsca{word-spacing:90.510115px;}
.wsc1{word-spacing:94.939200px;}
.wsc7{word-spacing:95.976346px;}
.wsc4{word-spacing:111.470285px;}
.wsc3{word-spacing:112.129200px;}
.wsce{word-spacing:117.603302px;}
.wsbc{word-spacing:130.094755px;}
.wsc6{word-spacing:133.904218px;}
.wsb5{word-spacing:147.621398px;}
.wsbb{word-spacing:151.694755px;}
.wsd5{word-spacing:162.524966px;}
.wsd6{word-spacing:162.578765px;}
.wscf{word-spacing:165.436358px;}
.wsb9{word-spacing:168.734909px;}
.wsbd{word-spacing:173.294755px;}
.wsd7{word-spacing:185.012698px;}
.wsa1{word-spacing:186.519053px;}
.wsa3{word-spacing:198.462298px;}
.wsa2{word-spacing:198.946483px;}
.wsc8{word-spacing:204.119030px;}
.wsc2{word-spacing:259.477584px;}
.wsba{word-spacing:262.697587px;}
.wscd{word-spacing:265.933392px;}
.wscb{word-spacing:326.291549px;}
.wsbf{word-spacing:327.640157px;}
.wsbe{word-spacing:364.111824px;}
.wsc9{word-spacing:376.108867px;}
.wsd3{word-spacing:383.624266px;}
.wsa0{word-spacing:588.090643px;}
.wsa5{word-spacing:658.314365px;}
.wsa8{word-spacing:665.254358px;}
.wsa6{word-spacing:676.283030px;}
.wsa7{word-spacing:738.097392px;}
.wsa9{word-spacing:803.357251px;}
.wsa4{word-spacing:813.256157px;}
.wsaa{word-spacing:840.155357px;}
.wsab{word-spacing:857.155651px;}
.wsb4{word-spacing:2091.981644px;}
._62{margin-left:-277.653542px;}
._1a{margin-left:-15.681586px;}
._15{margin-left:-8.416409px;}
._f{margin-left:-7.185023px;}
._0{margin-left:-6.150892px;}
._6a{margin-left:-5.140702px;}
._7{margin-left:-3.981082px;}
._18{margin-left:-2.795532px;}
._1{margin-left:-1.506341px;}
._1f{width:1.008749px;}
._4{width:2.301354px;}
._8{width:3.676163px;}
._20{width:7.424582px;}
._2{width:12.176255px;}
._c{width:13.557197px;}
._10{width:14.822586px;}
._b{width:16.767284px;}
._e{width:17.944631px;}
._d{width:19.600434px;}
._a{width:20.873779px;}
._16{width:22.021322px;}
._14{width:23.240776px;}
._17{width:24.926425px;}
._3{width:25.940136px;}
._1b{width:28.333634px;}
._1d{width:29.529146px;}
._5{width:30.587087px;}
._1c{width:31.740844px;}
._6{width:33.588076px;}
._9{width:34.699968px;}
._19{width:37.419526px;}
._13{width:38.740544px;}
._69{width:39.762725px;}
._6d{width:42.783044px;}
._6c{width:61.868160px;}
._3b{width:83.685600px;}
._57{width:88.628026px;}
._39{width:91.259147px;}
._46{width:92.388902px;}
._5c{width:98.128282px;}
._4e{width:100.943785px;}
._53{width:103.647116px;}
._4a{width:104.660288px;}
._4c{width:105.778598px;}
._56{width:107.704397px;}
._49{width:109.742219px;}
._4b{width:113.842813px;}
._52{width:119.701440px;}
._55{width:124.919885px;}
._48{width:126.699998px;}
._54{width:130.192128px;}
._58{width:136.009171px;}
._65{width:157.234907px;}
._67{width:166.990234px;}
._36{width:168.500956px;}
._68{width:170.809920px;}
._64{width:177.417101px;}
._35{width:179.003498px;}
._63{width:180.138442px;}
._66{width:181.310630px;}
._26{width:198.462298px;}
._23{width:214.924608px;}
._33{width:225.361498px;}
._61{width:229.872979px;}
._24{width:233.033107px;}
._22{width:240.317453px;}
._27{width:245.535898px;}
._5d{width:247.849229px;}
._32{width:258.985498px;}
._28{width:265.710298px;}
._30{width:279.159898px;}
._60{width:280.666253px;}
._5f{width:290.403763px;}
._5e{width:301.486234px;}
._4f{width:311.854388px;}
._31{width:344.187907px;}
._50{width:400.644810px;}
._2b{width:472.923093px;}
._25{width:498.371722px;}
._2a{width:512.897290px;}
._5b{width:530.857018px;}
._3f{width:534.709141px;}
._21{width:544.726674px;}
._29{width:553.837872px;}
._5a{width:568.971878px;}
._37{width:573.413731px;}
._3e{width:581.991505px;}
._59{width:585.810778px;}
._3a{width:611.281465px;}
._2d{width:624.475171px;}
._45{width:627.014358px;}
._2c{width:630.984778px;}
._2f{width:636.273677px;}
._44{width:640.111154px;}
._2e{width:653.004979px;}
._43{width:659.358842px;}
._40{width:682.330540px;}
._42{width:703.293782px;}
._3c{width:708.775189px;}
._3d{width:728.859733px;}
._41{width:782.962474px;}
._47{width:828.445597px;}
._38{width:837.943913px;}
._4d{width:852.463364px;}
._51{width:861.710623px;}
._11{width:911.269354px;}
._1e{width:1682.301110px;}
._6b{width:2489.564700px;}
._12{width:2513.474700px;}
._34{width:3991.454700px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(41,66,37);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:28.800000px;}
.fs5{font-size:35.865600px;}
.fs8{font-size:38.592000px;}
.fs0{font-size:41.842800px;}
.fsa{font-size:43.200000px;}
.fsd{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs9{font-size:47.808000px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fse{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.yc2{bottom:-234.183600px;}
.ye4{bottom:-174.846816px;}
.ye3{bottom:-159.440688px;}
.ye2{bottom:-144.034560px;}
.ye1{bottom:-128.771856px;}
.ye0{bottom:-113.365728px;}
.ydf{bottom:-97.955856px;}
.yde{bottom:-82.549728px;}
.ydd{bottom:-67.141728px;}
.ydc{bottom:-51.735600px;}
.ydb{bottom:-22.503600px;}
.yda{bottom:-4.466160px;}
.y0{bottom:0.000000px;}
.y1b{bottom:14.814771px;}
.y49{bottom:31.890000px;}
.yf8{bottom:99.363000px;}
.yb3{bottom:100.917000px;}
.y19{bottom:104.646000px;}
.y80{bottom:107.641500px;}
.y187{bottom:109.338000px;}
.y48{bottom:109.437000px;}
.y1bd{bottom:110.629500px;}
.yf7{bottom:118.192500px;}
.yb2{bottom:119.746500px;}
.y20f{bottom:122.421000px;}
.y18{bottom:122.535000px;}
.y244{bottom:124.752000px;}
.y7f{bottom:126.471000px;}
.y186{bottom:128.167500px;}
.y47{bottom:128.266500px;}
.y1da{bottom:128.563500px;}
.y1bc{bottom:129.459000px;}
.y12d{bottom:131.421000px;}
.yf6{bottom:137.022000px;}
.yb1{bottom:138.576000px;}
.y20e{bottom:139.681500px;}
.y17{bottom:140.422500px;}
.y243{bottom:142.012500px;}
.y7e{bottom:145.300500px;}
.y46{bottom:147.096000px;}
.y1d9{bottom:147.393000px;}
.y1bb{bottom:148.288500px;}
.y12c{bottom:150.250500px;}
.y185{bottom:151.480500px;}
.yf5{bottom:155.851500px;}
.y20d{bottom:156.942000px;}
.yb0{bottom:157.405500px;}
.y16{bottom:158.310000px;}
.y242{bottom:159.273000px;}
.y7d{bottom:164.130000px;}
.y45{bottom:165.925500px;}
.y1d8{bottom:166.222500px;}
.y1ba{bottom:167.118000px;}
.y12b{bottom:169.080000px;}
.y20c{bottom:174.202500px;}
.yf4{bottom:174.681000px;}
.y15{bottom:176.199000px;}
.yaf{bottom:176.235000px;}
.y241{bottom:176.533500px;}
.y7c{bottom:182.959500px;}
.y44{bottom:184.755000px;}
.y1d7{bottom:185.050500px;}
.y1b9{bottom:185.947500px;}
.y12a{bottom:187.909500px;}
.y184{bottom:188.404500px;}
.y20b{bottom:191.463000px;}
.y240{bottom:193.794000px;}
.y14{bottom:194.086500px;}
.yae{bottom:195.063000px;}
.yf3{bottom:197.994000px;}
.y7b{bottom:201.789000px;}
.y43{bottom:203.584500px;}
.y1d6{bottom:203.880000px;}
.y1b8{bottom:204.777000px;}
.y129{bottom:206.739000px;}
.y209{bottom:208.722000px;}
.y20a{bottom:208.723500px;}
.y183{bottom:209.872500px;}
.y23f{bottom:211.053000px;}
.y13{bottom:211.974000px;}
.yad{bottom:213.892500px;}
.y7a{bottom:220.618500px;}
.y1d5{bottom:222.709500px;}
.y1b7{bottom:223.606500px;}
.y128{bottom:225.568500px;}
.y208{bottom:225.982500px;}
.y182{bottom:226.309500px;}
.y180{bottom:226.704000px;}
.y42{bottom:226.896000px;}
.y23e{bottom:228.313500px;}
.y12{bottom:229.863000px;}
.yf2{bottom:231.618000px;}
.yac{bottom:232.722000px;}
.y79{bottom:239.446500px;}
.y1d4{bottom:241.539000px;}
.y1b6{bottom:242.436000px;}
.y181{bottom:242.748000px;}
.y207{bottom:243.243000px;}
.y127{bottom:244.398000px;}
.y23d{bottom:245.574000px;}
.yf1{bottom:250.447500px;}
.yab{bottom:251.551500px;}
.y78{bottom:258.276000px;}
.y1d3{bottom:260.368500px;}
.y206{bottom:260.503500px;}
.y1b5{bottom:261.265500px;}
.y23c{bottom:262.834500px;}
.y126{bottom:263.227500px;}
.y17f{bottom:266.389500px;}
.yf0{bottom:269.277000px;}
.yaa{bottom:270.381000px;}
.yd9{bottom:273.023424px;}
.y77{bottom:277.105500px;}
.y205{bottom:277.764000px;}
.y1d2{bottom:279.198000px;}
.y1b4{bottom:280.095000px;}
.y125{bottom:282.057000px;}
.y17e{bottom:282.828000px;}
.y17c{bottom:283.221000px;}
.yef{bottom:288.106500px;}
.yd8{bottom:288.429552px;}
.ya9{bottom:289.210500px;}
.y204{bottom:295.024500px;}
.y76{bottom:295.935000px;}
.y23b{bottom:297.355500px;}
.y1d1{bottom:298.027500px;}
.y1b3{bottom:298.924500px;}
.y17d{bottom:299.266500px;}
.y11{bottom:300.154500px;}
.y124{bottom:300.886500px;}
.y41{bottom:302.047500px;}
.yd7{bottom:303.835680px;}
.yee{bottom:306.934500px;}
.ya8{bottom:308.040000px;}
.y203{bottom:312.285000px;}
.y23a{bottom:314.616000px;}
.y75{bottom:314.764500px;}
.y1d0{bottom:316.857000px;}
.y1b2{bottom:317.754000px;}
.y10{bottom:318.043500px;}
.yd6{bottom:319.241808px;}
.y123{bottom:319.716000px;}
.y40{bottom:321.504000px;}
.y17b{bottom:322.906500px;}
.yed{bottom:325.764000px;}
.ya7{bottom:326.869500px;}
.y202{bottom:329.545500px;}
.y239{bottom:331.876500px;}
.y74{bottom:333.594000px;}
.yd5{bottom:334.647936px;}
.y1cf{bottom:335.686500px;}
.yf{bottom:335.931000px;}
.y1b1{bottom:336.583500px;}
.y178{bottom:337.986000px;}
.y122{bottom:338.544000px;}
.y17a{bottom:339.345000px;}
.yec{bottom:344.593500px;}
.ya6{bottom:345.699000px;}
.y200{bottom:346.806000px;}
.y201{bottom:347.014500px;}
.y238{bottom:349.135500px;}
.yd4{bottom:349.910640px;}
.y73{bottom:352.423500px;}
.ye{bottom:353.818500px;}
.y1ce{bottom:354.516000px;}
.y1b0{bottom:355.413000px;}
.y179{bottom:355.783500px;}
.y121{bottom:357.373500px;}
.y3f{bottom:358.893000px;}
.yeb{bottom:363.423000px;}
.y1ff{bottom:364.065000px;}
.ya5{bottom:364.528500px;}
.yd3{bottom:365.316768px;}
.y237{bottom:366.396000px;}
.y72{bottom:371.253000px;}
.y1cd{bottom:373.345500px;}
.y1af{bottom:374.242500px;}
.y120{bottom:376.203000px;}
.y3e{bottom:378.351000px;}
.y177{bottom:379.423500px;}
.yd{bottom:380.673000px;}
.yd2{bottom:380.722896px;}
.y1fe{bottom:381.325500px;}
.yea{bottom:382.252500px;}
.ya4{bottom:383.358000px;}
.y236{bottom:383.656500px;}
.y71{bottom:390.082500px;}
.y1ae{bottom:393.072000px;}
.y11f{bottom:395.032500px;}
.y176{bottom:395.862000px;}
.yd1{bottom:396.129024px;}
.y1cc{bottom:396.658500px;}
.y3d{bottom:397.807500px;}
.yc{bottom:398.562000px;}
.y1fd{bottom:398.586000px;}
.y235{bottom:400.917000px;}
.ye9{bottom:401.082000px;}
.ya3{bottom:402.187500px;}
.y70{bottom:408.912000px;}
.yd0{bottom:411.535152px;}
.y1ad{bottom:411.901500px;}
.y11e{bottom:413.862000px;}
.y1fc{bottom:415.846500px;}
.yb{bottom:416.449500px;}
.y3c{bottom:417.265500px;}
.y234{bottom:418.177500px;}
.y175{bottom:419.503500px;}
.ye8{bottom:419.911500px;}
.ya2{bottom:421.017000px;}
.y6f{bottom:427.741500px;}
.y1cb{bottom:430.282500px;}
.ycf{bottom:430.395408px;}
.y1ac{bottom:430.731000px;}
.y11d{bottom:432.691500px;}
.y1fb{bottom:433.107000px;}
.y146{bottom:435.049500px;}
.y233{bottom:435.438000px;}
.y173{bottom:435.942000px;}
.y3b{bottom:436.722000px;}
.ye7{bottom:438.741000px;}
.ya1{bottom:439.846500px;}
.ya{bottom:444.798000px;}
.y6e{bottom:446.571000px;}
.y1ca{bottom:449.112000px;}
.y1ab{bottom:449.560500px;}
.y1fa{bottom:450.367500px;}
.y11c{bottom:451.521000px;}
.y174{bottom:452.380500px;}
.y232{bottom:452.698500px;}
.y145{bottom:455.172000px;}
.y3a{bottom:456.178500px;}
.ye6{bottom:457.570500px;}
.ya0{bottom:458.676000px;}
.yce{bottom:460.203696px;}
.y9{bottom:462.685500px;}
.y6d{bottom:465.400500px;}
.y144{bottom:467.127000px;}
.y1f9{bottom:467.628000px;}
.y1c9{bottom:467.941500px;}
.y1aa{bottom:468.390000px;}
.y231{bottom:469.959000px;}
.y11b{bottom:470.350500px;}
.ycd{bottom:475.609824px;}
.y39{bottom:475.636500px;}
.y172{bottom:476.020500px;}
.y9f{bottom:477.505500px;}
.y143{bottom:479.082000px;}
.y6c{bottom:484.230000px;}
.y1f8{bottom:484.888500px;}
.y1c8{bottom:486.771000px;}
.y1a9{bottom:487.219500px;}
.y11a{bottom:489.180000px;}
.y8{bottom:489.540000px;}
.ycc{bottom:491.015952px;}
.y142{bottom:491.037000px;}
.ye5{bottom:491.136000px;}
.y171{bottom:492.459000px;}
.y38{bottom:495.093000px;}
.y9e{bottom:496.335000px;}
.y1f7{bottom:502.149000px;}
.y141{bottom:502.993500px;}
.y6b{bottom:503.059500px;}
.y230{bottom:504.478500px;}
.y1c7{bottom:505.600500px;}
.y1a8{bottom:506.049000px;}
.ycb{bottom:506.422080px;}
.y7{bottom:507.429000px;}
.y119{bottom:508.009500px;}
.ybf{bottom:513.565500px;}
.y37{bottom:514.549500px;}
.y140{bottom:514.948500px;}
.y9d{bottom:515.164500px;}
.y1f6{bottom:519.408000px;}
.yca{bottom:521.684784px;}
.y22f{bottom:521.739000px;}
.y6a{bottom:521.889000px;}
.y1c6{bottom:524.430000px;}
.y1a7{bottom:524.877000px;}
.y6{bottom:525.316500px;}
.y118{bottom:526.839000px;}
.y13f{bottom:526.903500px;}
.y170{bottom:527.067000px;}
.y9c{bottom:533.994000px;}
.y36{bottom:534.007500px;}
.y1f5{bottom:536.668500px;}
.yc9{bottom:537.090912px;}
.y13e{bottom:538.858500px;}
.y22e{bottom:538.999500px;}
.y69{bottom:540.718500px;}
.y5{bottom:543.204000px;}
.y1c5{bottom:543.259500px;}
.y1a6{bottom:543.706500px;}
.y117{bottom:545.668500px;}
.y16f{bottom:546.300000px;}
.y13d{bottom:550.813500px;}
.yc8{bottom:552.497040px;}
.y9b{bottom:552.823500px;}
.y35{bottom:553.464000px;}
.y1f4{bottom:553.929000px;}
.y22d{bottom:556.260000px;}
.y68{bottom:559.548000px;}
.y4{bottom:561.093000px;}
.y1c4{bottom:562.089000px;}
.y1a5{bottom:562.536000px;}
.y13c{bottom:562.768500px;}
.y116{bottom:564.498000px;}
.yc7{bottom:567.903168px;}
.y1f3{bottom:571.189500px;}
.y9a{bottom:571.653000px;}
.y34{bottom:572.922000px;}
.y22c{bottom:573.520500px;}
.y13b{bottom:574.723500px;}
.y67{bottom:578.377500px;}
.y3{bottom:578.980500px;}
.y1c3{bottom:580.918500px;}
.y1a4{bottom:581.365500px;}
.y16e{bottom:582.489000px;}
.yc6{bottom:583.309296px;}
.y115{bottom:583.327500px;}
.y13a{bottom:586.678500px;}
.y1f2{bottom:588.450000px;}
.y99{bottom:590.482500px;}
.y22b{bottom:590.781000px;}
.y33{bottom:592.378500px;}
.y2{bottom:596.868000px;}
.y66{bottom:597.207000px;}
.yc5{bottom:598.572000px;}
.y139{bottom:598.633500px;}
.y1c2{bottom:599.746500px;}
.y1a3{bottom:600.195000px;}
.y114{bottom:602.157000px;}
.y16d{bottom:603.957000px;}
.y1f1{bottom:605.710500px;}
.y22a{bottom:608.041500px;}
.y98{bottom:609.312000px;}
.y138{bottom:610.590000px;}
.y32{bottom:611.835000px;}
.yc4{bottom:613.978128px;}
.y1{bottom:614.757000px;}
.y65{bottom:616.036500px;}
.y1c1{bottom:618.576000px;}
.y1a2{bottom:619.024500px;}
.y113{bottom:620.986500px;}
.y137{bottom:622.545000px;}
.y1f0{bottom:622.971000px;}
.y229{bottom:625.302000px;}
.y97{bottom:628.141500px;}
.y16b{bottom:628.222500px;}
.yc3{bottom:629.384256px;}
.y31{bottom:631.293000px;}
.y136{bottom:634.500000px;}
.y64{bottom:634.866000px;}
.y16c{bottom:636.442500px;}
.y1c0{bottom:637.405500px;}
.y1a1{bottom:637.854000px;}
.y112{bottom:639.816000px;}
.y1ef{bottom:640.231500px;}
.y228{bottom:642.561000px;}
.y16a{bottom:644.661000px;}
.y135{bottom:646.455000px;}
.y96{bottom:646.971000px;}
.y30{bottom:650.749500px;}
.y63{bottom:653.695500px;}
.y1bf{bottom:656.235000px;}
.y1a0{bottom:656.683500px;}
.y1ee{bottom:657.490500px;}
.y134{bottom:658.410000px;}
.y227{bottom:659.821500px;}
.y169{bottom:661.099500px;}
.y95{bottom:665.800500px;}
.y2f{bottom:670.206000px;}
.y133{bottom:670.365000px;}
.y62{bottom:672.525000px;}
.yc1{bottom:673.160832px;}
.y1ed{bottom:674.751000px;}
.y19f{bottom:675.513000px;}
.y111{bottom:676.834500px;}
.y226{bottom:677.082000px;}
.y168{bottom:677.538000px;}
.y1be{bottom:679.548000px;}
.yc0{bottom:680.792400px;}
.y132{bottom:682.320000px;}
.y94{bottom:684.630000px;}
.y2e{bottom:689.664000px;}
.y110{bottom:691.032000px;}
.y61{bottom:691.354500px;}
.y1ec{bottom:692.011500px;}
.y167{bottom:693.976500px;}
.y19e{bottom:694.342500px;}
.y131{bottom:701.478000px;}
.y93{bottom:703.458000px;}
.y2d{bottom:709.120500px;}
.y1eb{bottom:709.272000px;}
.y60{bottom:710.184000px;}
.y166{bottom:710.415000px;}
.y225{bottom:711.603000px;}
.y10f{bottom:712.864500px;}
.y19d{bottom:713.172000px;}
.y130{bottom:713.554500px;}
.y92{bottom:722.287500px;}
.y1ea{bottom:726.532500px;}
.y165{bottom:726.853500px;}
.y2c{bottom:728.578500px;}
.y224{bottom:728.863500px;}
.y5f{bottom:729.013500px;}
.y10e{bottom:729.303000px;}
.y19c{bottom:732.001500px;}
.y164{bottom:743.292000px;}
.y1e9{bottom:743.793000px;}
.y91{bottom:745.600500px;}
.y10d{bottom:745.741500px;}
.y223{bottom:746.124000px;}
.y5e{bottom:747.843000px;}
.y2b{bottom:748.035000px;}
.y12f{bottom:749.116500px;}
.y19b{bottom:750.831000px;}
.y162{bottom:759.730500px;}
.y1e8{bottom:761.053500px;}
.y10c{bottom:762.180000px;}
.y222{bottom:763.384500px;}
.y5d{bottom:766.671000px;}
.y163{bottom:767.949000px;}
.y19a{bottom:769.660500px;}
.y161{bottom:776.167500px;}
.y1e7{bottom:778.314000px;}
.y10b{bottom:778.617000px;}
.y90{bottom:779.224500px;}
.y221{bottom:780.645000px;}
.ybe{bottom:785.053500px;}
.y5c{bottom:785.500500px;}
.y2a{bottom:786.621000px;}
.y199{bottom:788.490000px;}
.y15f{bottom:792.606000px;}
.y10a{bottom:795.055500px;}
.y220{bottom:797.904000px;}
.y8f{bottom:798.054000px;}
.y1e6{bottom:800.056500px;}
.y160{bottom:800.826000px;}
.y12e{bottom:801.433500px;}
.y29{bottom:802.759500px;}
.ybd{bottom:803.883000px;}
.y5b{bottom:804.330000px;}
.y198{bottom:807.319500px;}
.y15e{bottom:809.044500px;}
.y109{bottom:811.494000px;}
.y21f{bottom:815.164500px;}
.y8e{bottom:816.883500px;}
.ybc{bottom:822.712500px;}
.y5a{bottom:823.159500px;}
.y28{bottom:823.239000px;}
.y15d{bottom:825.483000px;}
.y197{bottom:826.149000px;}
.y108{bottom:827.932500px;}
.y21e{bottom:832.425000px;}
.y1e5{bottom:833.680500px;}
.y27{bottom:835.039500px;}
.y8d{bottom:835.713000px;}
.ybb{bottom:841.540500px;}
.y15c{bottom:841.921500px;}
.y59{bottom:841.989000px;}
.y107{bottom:844.371000px;}
.y196{bottom:844.978500px;}
.y21d{bottom:849.685500px;}
.y26{bottom:851.178000px;}
.y8c{bottom:854.542500px;}
.y15a{bottom:858.360000px;}
.y1e4{bottom:860.221500px;}
.yba{bottom:860.370000px;}
.y106{bottom:860.809500px;}
.y58{bottom:860.818500px;}
.y195{bottom:863.808000px;}
.y15b{bottom:866.578500px;}
.y21c{bottom:866.946000px;}
.y25{bottom:871.657500px;}
.y8b{bottom:873.372000px;}
.y159{bottom:874.798500px;}
.y105{bottom:877.248000px;}
.y1e3{bottom:877.795500px;}
.yb9{bottom:879.199500px;}
.y57{bottom:879.648000px;}
.y194{bottom:882.637500px;}
.y24{bottom:883.458000px;}
.y21b{bottom:884.206500px;}
.y158{bottom:891.237000px;}
.y8a{bottom:892.201500px;}
.y104{bottom:893.686500px;}
.yb8{bottom:898.029000px;}
.y56{bottom:898.477500px;}
.y193{bottom:901.467000px;}
.y23{bottom:903.937500px;}
.y1e2{bottom:904.336500px;}
.y156{bottom:907.675500px;}
.y103{bottom:910.125000px;}
.y89{bottom:911.031000px;}
.y22{bottom:915.736500px;}
.y157{bottom:915.894000px;}
.yb7{bottom:916.858500px;}
.y55{bottom:917.307000px;}
.y21a{bottom:918.727500px;}
.y192{bottom:920.296500px;}
.y155{bottom:924.114000px;}
.y102{bottom:926.563500px;}
.y88{bottom:929.860500px;}
.y1e1{bottom:930.876000px;}
.yb6{bottom:935.688000px;}
.y219{bottom:935.986500px;}
.y54{bottom:936.136500px;}
.y21{bottom:936.216000px;}
.y191{bottom:939.126000px;}
.y154{bottom:940.551000px;}
.y101{bottom:943.000500px;}
.y1e0{bottom:948.450000px;}
.y87{bottom:948.690000px;}
.y218{bottom:953.247000px;}
.yb5{bottom:954.517500px;}
.y53{bottom:954.966000px;}
.y153{bottom:956.989500px;}
.y190{bottom:957.955500px;}
.y100{bottom:959.439000px;}
.y1df{bottom:966.025500px;}
.y217{bottom:970.507500px;}
.y86{bottom:972.003000px;}
.y52{bottom:973.795500px;}
.yff{bottom:975.877500px;}
.y18f{bottom:976.785000px;}
.yb4{bottom:977.830500px;}
.y152{bottom:980.631000px;}
.y20{bottom:980.892000px;}
.y216{bottom:987.768000px;}
.yfe{bottom:992.316000px;}
.y1de{bottom:992.565000px;}
.y51{bottom:992.625000px;}
.y18e{bottom:995.614500px;}
.y14c{bottom:999.042000px;}
.y1f{bottom:999.721500px;}
.y151{bottom:1004.271000px;}
.y215{bottom:1005.028500px;}
.y85{bottom:1005.627000px;}
.yfd{bottom:1008.754500px;}
.y50{bottom:1011.454500px;}
.y14e{bottom:1012.491000px;}
.y18d{bottom:1014.444000px;}
.y14b{bottom:1015.480500px;}
.y1dd{bottom:1019.106000px;}
.y150{bottom:1020.709500px;}
.y214{bottom:1022.289000px;}
.y84{bottom:1024.456500px;}
.yfc{bottom:1025.193000px;}
.y14d{bottom:1028.929500px;}
.y4f{bottom:1030.284000px;}
.y18c{bottom:1033.272000px;}
.y1e{bottom:1036.485000px;}
.y1dc{bottom:1036.680000px;}
.y14f{bottom:1037.148000px;}
.y213{bottom:1039.549500px;}
.y83{bottom:1043.284500px;}
.yfb{bottom:1048.833000px;}
.y4e{bottom:1049.113500px;}
.y18b{bottom:1052.101500px;}
.y1db{bottom:1054.254000px;}
.y212{bottom:1056.810000px;}
.y14a{bottom:1060.789500px;}
.y82{bottom:1062.114000px;}
.yfa{bottom:1062.837000px;}
.y1d{bottom:1064.728500px;}
.y4d{bottom:1067.943000px;}
.y18a{bottom:1070.931000px;}
.y211{bottom:1074.070500px;}
.y149{bottom:1084.429500px;}
.y81{bottom:1085.427000px;}
.y4c{bottom:1086.772500px;}
.y189{bottom:1089.760500px;}
.y210{bottom:1091.329500px;}
.y1c{bottom:1092.972000px;}
.y4b{bottom:1105.602000px;}
.yf9{bottom:1107.082500px;}
.y188{bottom:1108.590000px;}
.y148{bottom:1119.037500px;}
.y1a{bottom:1136.460000px;}
.y4a{bottom:1168.366500px;}
.y147{bottom:1171.354500px;}
.h18{height:22.380041px;}
.h10{height:28.171406px;}
.hf{height:28.303313px;}
.h1e{height:30.252344px;}
.h14{height:31.682813px;}
.h8{height:32.565965px;}
.h11{height:34.898906px;}
.h12{height:35.038969px;}
.h22{height:35.652888px;}
.h2{height:37.993262px;}
.ha{height:38.896243px;}
.h20{height:39.434227px;}
.h16{height:39.614278px;}
.h1a{height:42.500452px;}
.hc{height:43.217759px;}
.h9{height:43.421105px;}
.h5{height:43.815515px;}
.h13{height:44.469844px;}
.hb{height:48.848947px;}
.h3{height:50.931027px;}
.hd{height:54.276245px;}
.h7{height:54.547601px;}
.h24{height:57.523262px;}
.h1d{height:58.578344px;}
.h19{height:62.946077px;}
.h15{height:62.952077px;}
.h1f{height:71.770243px;}
.h25{height:71.776243px;}
.h17{height:77.446243px;}
.h6{height:77.792486px;}
.h21{height:81.722947px;}
.h23{height:81.728947px;}
.h4{height:102.503837px;}
.he{height:251.738400px;}
.h1b{height:892.914000px;}
.h1c{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.814733px;}
.w3{width:512.115600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x43{left:-57.730800px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x4f{left:62.541000px;}
.x50{left:79.353000px;}
.x64{left:81.967500px;}
.x98{left:85.848000px;}
.x65{left:92.539500px;}
.x44{left:98.792592px;}
.x61{left:111.687000px;}
.x45{left:124.298160px;}
.x62{left:140.046000px;}
.x4d{left:149.208000px;}
.x5f{left:159.016500px;}
.x76{left:198.522000px;}
.x67{left:205.890000px;}
.x7d{left:207.658500px;}
.x6e{left:215.949000px;}
.x66{left:218.014500px;}
.x9d{left:222.553500px;}
.x9c{left:224.094000px;}
.x3c{left:245.854500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x6f{left:258.897000px;}
.x4{left:269.914500px;}
.x8{left:281.479500px;}
.x83{left:289.263000px;}
.x87{left:293.518500px;}
.x4a{left:296.112000px;}
.x79{left:300.246000px;}
.x75{left:302.785500px;}
.x84{left:304.207500px;}
.x73{left:307.083000px;}
.x6{left:308.134500px;}
.x4b{left:311.056500px;}
.x70{left:312.529500px;}
.x7{left:319.884000px;}
.x5a{left:321.075000px;}
.x60{left:331.555500px;}
.x4e{left:334.420500px;}
.x23{left:344.539500px;}
.x24{left:352.011000px;}
.x25{left:355.822500px;}
.x5c{left:363.963000px;}
.x71{left:368.853000px;}
.x26{left:370.765500px;}
.x48{left:372.979500px;}
.x5d{left:375.988500px;}
.x57{left:378.939000px;}
.x85{left:382.027500px;}
.x5e{left:388.933500px;}
.x49{left:389.935500px;}
.x58{left:390.972000px;}
.x96{left:395.583000px;}
.x86{left:396.972000px;}
.xf{left:401.004000px;}
.x38{left:404.139000px;}
.x10{left:408.477000px;}
.x13{left:413.092500px;}
.x59{left:416.424000px;}
.x39{left:419.083500px;}
.x14{left:420.564000px;}
.x77{left:422.485500px;}
.x7a{left:430.147500px;}
.x97{left:433.692000px;}
.x1f{left:442.311000px;}
.x63{left:449.214000px;}
.x8d{left:453.291000px;}
.x20{left:457.255500px;}
.x21{left:461.065500px;}
.x19{left:468.294000px;}
.x8e{left:471.897000px;}
.x22{left:476.010000px;}
.x51{left:482.050500px;}
.x1a{left:483.237000px;}
.x8f{left:486.841500px;}
.x52{left:493.231500px;}
.x1b{left:496.485000px;}
.x3f{left:499.027500px;}
.x1c{left:511.428000px;}
.x29{left:514.539000px;}
.x3d{left:517.030500px;}
.x40{left:522.375000px;}
.x54{left:523.945500px;}
.x53{left:526.972500px;}
.x68{left:528.387000px;}
.x2a{left:529.483500px;}
.x3e{left:531.975000px;}
.x55{left:535.977000px;}
.x1d{left:537.450000px;}
.x56{left:539.221500px;}
.x69{left:541.353000px;}
.x33{left:544.614000px;}
.x2b{left:546.598500px;}
.x78{left:547.605000px;}
.x1e{left:552.394500px;}
.x2c{left:561.543000px;}
.x7b{left:566.734500px;}
.x2d{left:569.142000px;}
.x15{left:572.757000px;}
.x7e{left:577.851000px;}
.x16{left:580.228500px;}
.x74{left:582.018000px;}
.x90{left:583.038000px;}
.x2e{left:584.085000px;}
.x17{left:587.850000px;}
.x7f{left:592.794000px;}
.x80{left:596.508000px;}
.x91{left:597.982500px;}
.x5b{left:599.760000px;}
.x92{left:601.702500px;}
.x18{left:602.794500px;}
.x41{left:611.898000px;}
.x81{left:613.666500px;}
.x95{left:615.553500px;}
.x93{left:616.647000px;}
.x31{left:619.920000px;}
.x82{left:621.138000px;}
.x88{left:623.019000px;}
.x94{left:624.088500px;}
.x42{left:626.842500px;}
.x32{left:634.864500px;}
.x6a{left:636.742500px;}
.xb{left:638.545500px;}
.xc{left:646.018500px;}
.xd{left:649.765500px;}
.x3a{left:651.288000px;}
.x6c{left:652.674000px;}
.x6b{left:654.294000px;}
.xe{left:657.237000px;}
.x9{left:662.508000px;}
.x3b{left:666.232500px;}
.xa{left:669.979500px;}
.x99{left:696.573000px;}
.x34{left:706.350000px;}
.x8b{left:710.826000px;}
.x35{left:721.294500px;}
.x8c{left:725.770500px;}
.xa0{left:730.981500px;}
.x4c{left:733.059000px;}
.x89{left:736.867500px;}
.x2f{left:741.246000px;}
.x7c{left:743.299500px;}
.x8a{left:751.812000px;}
.x36{left:753.823500px;}
.x30{left:756.189000px;}
.xa1{left:761.901000px;}
.x37{left:768.766500px;}
.x6d{left:770.235000px;}
.x27{left:776.277000px;}
.x46{left:782.109000px;}
.xa2{left:787.723500px;}
.x9a{left:790.056000px;}
.x28{left:791.221500px;}
.x47{left:797.152500px;}
.x72{left:808.675500px;}
.x9e{left:810.352500px;}
.xa3{left:814.623000px;}
.x9b{left:816.955500px;}
.x11{left:825.231000px;}
.x12{left:832.702500px;}
.x9f{left:837.252000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.114667pt;}
.v3{vertical-align:10.745344pt;}
.v7{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:25.178667pt;}
.v6{vertical-align:29.221333pt;}
.v4{vertical-align:34.266667pt;}
.ls32{letter-spacing:-1.912320pt;}
.ls30{letter-spacing:-0.499200pt;}
.ls2e{letter-spacing:-0.382464pt;}
.ls33{letter-spacing:-0.339968pt;}
.ls2f{letter-spacing:-0.254976pt;}
.ls26{letter-spacing:-0.240128pt;}
.ls29{letter-spacing:-0.171520pt;}
.ls2a{letter-spacing:-0.169984pt;}
.ls2d{letter-spacing:-0.084992pt;}
.ls2b{letter-spacing:-0.042496pt;}
.ls25{letter-spacing:-0.034304pt;}
.ls9{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000375pt;}
.ls51{letter-spacing:0.000600pt;}
.ls55{letter-spacing:0.001026pt;}
.ls54{letter-spacing:0.001408pt;}
.ls6{letter-spacing:0.001735pt;}
.ls53{letter-spacing:0.002262pt;}
.ls3{letter-spacing:0.002422pt;}
.ls50{letter-spacing:0.002525pt;}
.ls23{letter-spacing:0.003012pt;}
.ls4f{letter-spacing:0.004267pt;}
.ls31{letter-spacing:0.038400pt;}
.ls18{letter-spacing:0.050995pt;}
.ls2c{letter-spacing:0.084992pt;}
.ls17{letter-spacing:0.106342pt;}
.ls21{letter-spacing:0.115200pt;}
.ls1b{letter-spacing:0.127488pt;}
.ls28{letter-spacing:0.137216pt;}
.ls19{letter-spacing:0.169984pt;}
.ls1f{letter-spacing:0.195482pt;}
.ls1c{letter-spacing:0.246477pt;}
.ls1d{letter-spacing:0.254976pt;}
.ls27{letter-spacing:0.274432pt;}
.ls3e{letter-spacing:0.447791pt;}
.ls45{letter-spacing:0.570745pt;}
.ls44{letter-spacing:0.576078pt;}
.ls3a{letter-spacing:0.637762pt;}
.ls1a{letter-spacing:0.658688pt;}
.ls1e{letter-spacing:0.764928pt;}
.ls22{letter-spacing:1.147392pt;}
.ls1{letter-spacing:2.657067pt;}
.ls20{letter-spacing:5.295002pt;}
.ls0{letter-spacing:9.298933pt;}
.ls57{letter-spacing:9.858133pt;}
.ls3f{letter-spacing:10.623733pt;}
.ls8{letter-spacing:10.626533pt;}
.ls48{letter-spacing:10.629067pt;}
.ls4e{letter-spacing:11.058133pt;}
.ls4d{letter-spacing:11.898863pt;}
.ls4a{letter-spacing:11.954133pt;}
.ls4c{letter-spacing:11.959467pt;}
.ls4b{letter-spacing:12.098781pt;}
.ls52{letter-spacing:12.161450pt;}
.ls11{letter-spacing:13.008577pt;}
.ls12{letter-spacing:13.014019pt;}
.ls37{letter-spacing:13.074545pt;}
.ls13{letter-spacing:13.133264pt;}
.ls35{letter-spacing:13.159022pt;}
.lsf{letter-spacing:13.187238pt;}
.ls56{letter-spacing:13.221271pt;}
.ls10{letter-spacing:13.228842pt;}
.lsd{letter-spacing:13.278015pt;}
.ls16{letter-spacing:13.283349pt;}
.lsc{letter-spacing:13.283467pt;}
.ls4{letter-spacing:13.283733pt;}
.lsa{letter-spacing:13.319007pt;}
.lsb{letter-spacing:13.319264pt;}
.ls3c{letter-spacing:13.347391pt;}
.ls14{letter-spacing:13.379086pt;}
.ls15{letter-spacing:13.384484pt;}
.ls3b{letter-spacing:13.395508pt;}
.ls3d{letter-spacing:13.553328pt;}
.ls38{letter-spacing:13.948111pt;}
.ls39{letter-spacing:13.950210pt;}
.ls24{letter-spacing:14.771215pt;}
.lse{letter-spacing:15.547906pt;}
.ls36{letter-spacing:17.140256pt;}
.ls58{letter-spacing:18.800356pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls43{letter-spacing:138.350882pt;}
.ls40{letter-spacing:138.356215pt;}
.ls41{letter-spacing:157.556215pt;}
.ls42{letter-spacing:176.756215pt;}
.ls34{letter-spacing:220.435808pt;}
.ls49{letter-spacing:246.803149pt;}
.ls47{letter-spacing:514.949867pt;}
.wsd4{word-spacing:-246.850970pt;}
.ws4d{word-spacing:-26.566933pt;}
.ws47{word-spacing:-13.283467pt;}
.wsb8{word-spacing:-11.955200pt;}
.ws64{word-spacing:-10.878976pt;}
.ws6b{word-spacing:-10.793984pt;}
.ws67{word-spacing:-10.708992pt;}
.ws28{word-spacing:-10.626800pt;}
.ws66{word-spacing:-10.624000pt;}
.ws69{word-spacing:-10.539008pt;}
.ws63{word-spacing:-10.454016pt;}
.ws65{word-spacing:-10.369024pt;}
.ws10{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws68{word-spacing:-9.100800pt;}
.ws62{word-spacing:-8.850432pt;}
.ws61{word-spacing:-8.335872pt;}
.ws6a{word-spacing:-6.400000pt;}
.ws52{word-spacing:-3.134898pt;}
.ws50{word-spacing:-2.337890pt;}
.ws126{word-spacing:-2.247578pt;}
.ws125{word-spacing:-2.107904pt;}
.ws124{word-spacing:-2.104115pt;}
.ws99{word-spacing:-2.082304pt;}
.ws6f{word-spacing:-2.072221pt;}
.ws8a{word-spacing:-2.039808pt;}
.ws92{word-spacing:-1.827328pt;}
.wsf5{word-spacing:-1.817190pt;}
.wsf8{word-spacing:-1.769370pt;}
.ws9a{word-spacing:-1.742336pt;}
.wsf6{word-spacing:-1.625907pt;}
.ws51{word-spacing:-1.594016pt;}
.wsf9{word-spacing:-1.578086pt;}
.ws30{word-spacing:-1.328347pt;}
.ws8e{word-spacing:-1.317376pt;}
.ws97{word-spacing:-1.232384pt;}
.ws4f{word-spacing:-1.168945pt;}
.ws81{word-spacing:-1.147392pt;}
.wsee{word-spacing:-1.115811pt;}
.ws123{word-spacing:-1.099878pt;}
.ws4{word-spacing:-1.041421pt;}
.ws9e{word-spacing:-1.019904pt;}
.ws4a{word-spacing:-0.956410pt;}
.ws6{word-spacing:-0.929840pt;}
.wsff{word-spacing:-0.908595pt;}
.ws100{word-spacing:-0.885333pt;}
.ws101{word-spacing:-0.860774pt;}
.ws32{word-spacing:-0.850142pt;}
.ws9f{word-spacing:-0.807424pt;}
.wsad{word-spacing:-0.797008pt;}
.ws22{word-spacing:-0.743874pt;}
.ws85{word-spacing:-0.722432pt;}
.wsfe{word-spacing:-0.717312pt;}
.wsef{word-spacing:-0.690740pt;}
.ws19{word-spacing:-0.669491pt;}
.ws88{word-spacing:-0.637440pt;}
.wsdb{word-spacing:-0.584473pt;}
.ws73{word-spacing:-0.514560pt;}
.ws95{word-spacing:-0.499200pt;}
.ws128{word-spacing:-0.478208pt;}
.ws31{word-spacing:-0.425071pt;}
.wsd1{word-spacing:-0.382566pt;}
.ws46{word-spacing:-0.371937pt;}
.ws42{word-spacing:-0.318803pt;}
.ws7f{word-spacing:-0.297472pt;}
.ws17{word-spacing:-0.286925pt;}
.ws53{word-spacing:-0.275950pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws80{word-spacing:-0.254976pt;}
.ws13{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws7e{word-spacing:-0.212480pt;}
.ws20{word-spacing:-0.191283pt;}
.ws7c{word-spacing:-0.169984pt;}
.ws55{word-spacing:-0.163011pt;}
.ws54{word-spacing:-0.160043pt;}
.ws23{word-spacing:-0.159402pt;}
.wsd2{word-spacing:-0.143462pt;}
.ws76{word-spacing:-0.127488pt;}
.ws24{word-spacing:-0.106268pt;}
.ws1f{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.ws16{word-spacing:-0.047821pt;}
.ws11{word-spacing:-0.042507pt;}
.ws118{word-spacing:-0.023595pt;}
.ws10b{word-spacing:-0.009549pt;}
.ws11b{word-spacing:-0.009498pt;}
.ws113{word-spacing:-0.008823pt;}
.ws111{word-spacing:-0.007501pt;}
.ws4b{word-spacing:-0.007294pt;}
.ws108{word-spacing:-0.005094pt;}
.wsd0{word-spacing:-0.004843pt;}
.ws105{word-spacing:-0.004702pt;}
.ws109{word-spacing:-0.004215pt;}
.ws10c{word-spacing:-0.003081pt;}
.ws129{word-spacing:-0.002603pt;}
.ws102{word-spacing:-0.002048pt;}
.ws1{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.000490pt;}
.ws27{word-spacing:0.000559pt;}
.ws103{word-spacing:0.000631pt;}
.ws2{word-spacing:0.002006pt;}
.wsf{word-spacing:0.002903pt;}
.ws72{word-spacing:0.034304pt;}
.ws8c{word-spacing:0.042496pt;}
.wsc5{word-spacing:0.047821pt;}
.ws44{word-spacing:0.053134pt;}
.ws96{word-spacing:0.076800pt;}
.ws91{word-spacing:0.084992pt;}
.ws56{word-spacing:0.094206pt;}
.ws1a{word-spacing:0.095642pt;}
.ws57{word-spacing:0.095928pt;}
.ws58{word-spacing:0.096344pt;}
.ws29{word-spacing:0.106268pt;}
.ws1b{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws87{word-spacing:0.169984pt;}
.ws74{word-spacing:0.171520pt;}
.ws15{word-spacing:0.191283pt;}
.ws7b{word-spacing:0.212480pt;}
.ws3a{word-spacing:0.212535pt;}
.ws116{word-spacing:0.239104pt;}
.ws82{word-spacing:0.254976pt;}
.ws2e{word-spacing:0.265669pt;}
.ws117{word-spacing:0.286925pt;}
.ws86{word-spacing:0.297472pt;}
.ws36{word-spacing:0.318803pt;}
.ws114{word-spacing:0.334746pt;}
.ws7d{word-spacing:0.382464pt;}
.wsd8{word-spacing:0.425071pt;}
.ws33{word-spacing:0.478205pt;}
.ws10e{word-spacing:0.478208pt;}
.ws84{word-spacing:0.509952pt;}
.wse8{word-spacing:0.531339pt;}
.ws112{word-spacing:0.573850pt;}
.wse7{word-spacing:0.584473pt;}
.ws5d{word-spacing:0.637606pt;}
.ws2f{word-spacing:0.690740pt;}
.ws119{word-spacing:0.717312pt;}
.wse4{word-spacing:0.743874pt;}
.ws11a{word-spacing:0.765133pt;}
.wse5{word-spacing:0.797008pt;}
.ws83{word-spacing:0.807424pt;}
.ws7a{word-spacing:0.892416pt;}
.ws5{word-spacing:0.892646pt;}
.wsac{word-spacing:0.892651pt;}
.ws122{word-spacing:0.956416pt;}
.ws18{word-spacing:1.004237pt;}
.ws89{word-spacing:1.019904pt;}
.ws79{word-spacing:1.062400pt;}
.ws5e{word-spacing:1.062677pt;}
.ws35{word-spacing:1.115811pt;}
.ws78{word-spacing:1.189888pt;}
.ws1c{word-spacing:1.195520pt;}
.ws3d{word-spacing:1.328347pt;}
.wse6{word-spacing:1.381481pt;}
.ws4e{word-spacing:1.434614pt;}
.wsf3{word-spacing:1.482445pt;}
.ws70{word-spacing:1.487748pt;}
.ws8f{word-spacing:1.529856pt;}
.ws71{word-spacing:1.540882pt;}
.ws10d{word-spacing:1.578086pt;}
.ws60{word-spacing:1.594016pt;}
.wsfa{word-spacing:1.625907pt;}
.wsec{word-spacing:1.647150pt;}
.wsb1{word-spacing:1.700284pt;}
.ws104{word-spacing:1.721549pt;}
.ws45{word-spacing:1.753418pt;}
.ws90{word-spacing:1.827328pt;}
.ws9b{word-spacing:1.912320pt;}
.wsf7{word-spacing:1.912832pt;}
.wse9{word-spacing:1.965953pt;}
.ws9c{word-spacing:2.039808pt;}
.wsd9{word-spacing:2.072221pt;}
.wsdf{word-spacing:2.125355pt;}
.wsb6{word-spacing:2.231616pt;}
.ws39{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws115{word-spacing:2.247578pt;}
.ws110{word-spacing:2.295398pt;}
.ws3b{word-spacing:2.337890pt;}
.ws5c{word-spacing:2.444158pt;}
.wsae{word-spacing:2.497292pt;}
.ws9d{word-spacing:2.549760pt;}
.ws12{word-spacing:2.550432pt;}
.wsdd{word-spacing:2.656693pt;}
.ws10f{word-spacing:2.677965pt;}
.ws8b{word-spacing:2.762240pt;}
.ws5b{word-spacing:2.762961pt;}
.wsfd{word-spacing:2.821427pt;}
.ws11d{word-spacing:2.864546pt;}
.ws107{word-spacing:2.865860pt;}
.wsf4{word-spacing:2.866509pt;}
.ws106{word-spacing:2.866790pt;}
.ws10a{word-spacing:2.866859pt;}
.wsfb{word-spacing:2.869248pt;}
.ws6e{word-spacing:2.975497pt;}
.wsfc{word-spacing:3.060531pt;}
.ws41{word-spacing:3.081764pt;}
.ws2b{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws6d{word-spacing:3.241166pt;}
.ws8d{word-spacing:3.272192pt;}
.wsb2{word-spacing:3.294300pt;}
.ws11c{word-spacing:3.538739pt;}
.ws37{word-spacing:3.666237pt;}
.ws1d{word-spacing:3.682202pt;}
.ws5f{word-spacing:3.719371pt;}
.wsf0{word-spacing:3.772505pt;}
.ws26{word-spacing:3.825638pt;}
.ws1e{word-spacing:3.873485pt;}
.wsb0{word-spacing:3.878772pt;}
.ws5a{word-spacing:3.985040pt;}
.ws59{word-spacing:3.994699pt;}
.wsea{word-spacing:4.091308pt;}
.ws34{word-spacing:4.144442pt;}
.wseb{word-spacing:4.197575pt;}
.wsc{word-spacing:4.240070pt;}
.ws49{word-spacing:4.250709pt;}
.ws48{word-spacing:4.266040pt;}
.wsd{word-spacing:4.314458pt;}
.wsed{word-spacing:4.463245pt;}
.wse0{word-spacing:4.782048pt;}
.wsde{word-spacing:4.835182pt;}
.ws38{word-spacing:4.888316pt;}
.ws3e{word-spacing:4.941450pt;}
.ws3f{word-spacing:4.994583pt;}
.ws94{word-spacing:5.142016pt;}
.ws6c{word-spacing:5.207119pt;}
.ws14{word-spacing:5.212467pt;}
.wsb3{word-spacing:5.260253pt;}
.ws4c{word-spacing:5.366521pt;}
.ws127{word-spacing:5.403750pt;}
.ws93{word-spacing:5.439488pt;}
.wsf2{word-spacing:5.451571pt;}
.wsaf{word-spacing:5.472788pt;}
.ws77{word-spacing:5.524480pt;}
.wsf1{word-spacing:5.786317pt;}
.ws2c{word-spacing:5.791591pt;}
.ws40{word-spacing:5.844725pt;}
.wse1{word-spacing:5.897859pt;}
.ws75{word-spacing:5.949440pt;}
.ws43{word-spacing:6.004127pt;}
.wsdc{word-spacing:6.057261pt;}
.wse2{word-spacing:6.376064pt;}
.wsda{word-spacing:6.748001pt;}
.wsa{word-spacing:6.918010pt;}
.wse3{word-spacing:7.385607pt;}
.ws98{word-spacing:9.731584pt;}
.ws3c{word-spacing:10.679907pt;}
.ws8{word-spacing:10.823338pt;}
.ws121{word-spacing:11.094426pt;}
.ws11f{word-spacing:11.115774pt;}
.ws120{word-spacing:11.142246pt;}
.ws11e{word-spacing:13.963674pt;}
.ws9{word-spacing:14.319536pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.wsc0{word-spacing:66.800102pt;}
.wscc{word-spacing:66.822460pt;}
.wsca{word-spacing:80.453436pt;}
.wsc1{word-spacing:84.390400pt;}
.wsc7{word-spacing:85.312307pt;}
.wsc4{word-spacing:99.084698pt;}
.wsc3{word-spacing:99.670400pt;}
.wsce{word-spacing:104.536269pt;}
.wsbc{word-spacing:115.639782pt;}
.wsc6{word-spacing:119.025971pt;}
.wsb5{word-spacing:131.219021pt;}
.wsbb{word-spacing:134.839782pt;}
.wsd5{word-spacing:144.466637pt;}
.wsd6{word-spacing:144.514458pt;}
.wscf{word-spacing:147.054541pt;}
.wsb9{word-spacing:149.986586pt;}
.wsbd{word-spacing:154.039782pt;}
.wsd7{word-spacing:164.455731pt;}
.wsa1{word-spacing:165.794714pt;}
.wsa3{word-spacing:176.410931pt;}
.wsa2{word-spacing:176.841318pt;}
.wsc8{word-spacing:181.439138pt;}
.wsc2{word-spacing:230.646741pt;}
.wsba{word-spacing:233.508966pt;}
.wscd{word-spacing:236.385237pt;}
.wscb{word-spacing:290.036932pt;}
.wsbf{word-spacing:291.235695pt;}
.wsbe{word-spacing:323.654955pt;}
.wsc9{word-spacing:334.318993pt;}
.wsd3{word-spacing:340.999347pt;}
.wsa0{word-spacing:522.747238pt;}
.wsa5{word-spacing:585.168324pt;}
.wsa8{word-spacing:591.337207pt;}
.wsa6{word-spacing:601.140471pt;}
.wsa7{word-spacing:656.086571pt;}
.wsa9{word-spacing:714.095334pt;}
.wsa4{word-spacing:722.894362pt;}
.wsaa{word-spacing:746.804762pt;}
.wsab{word-spacing:761.916134pt;}
.wsb4{word-spacing:1859.539239pt;}
._62{margin-left:-246.803149pt;}
._1a{margin-left:-13.939187pt;}
._15{margin-left:-7.481252pt;}
._f{margin-left:-6.386687pt;}
._0{margin-left:-5.467459pt;}
._6a{margin-left:-4.569513pt;}
._7{margin-left:-3.538739pt;}
._18{margin-left:-2.484917pt;}
._1{margin-left:-1.338970pt;}
._1f{width:0.896666pt;}
._4{width:2.045648pt;}
._8{width:3.267700pt;}
._20{width:6.599629pt;}
._2{width:10.823338pt;}
._c{width:12.050842pt;}
._10{width:13.175632pt;}
._b{width:14.904253pt;}
._e{width:15.950783pt;}
._d{width:17.422608pt;}
._a{width:18.554470pt;}
._16{width:19.574509pt;}
._14{width:20.658467pt;}
._17{width:22.156822pt;}
._3{width:23.057899pt;}
._1b{width:25.185453pt;}
._1d{width:26.248130pt;}
._5{width:27.188522pt;}
._1c{width:28.214083pt;}
._6{width:29.856067pt;}
._9{width:30.844416pt;}
._19{width:33.261801pt;}
._13{width:34.436039pt;}
._69{width:35.344644pt;}
._6d{width:38.029373pt;}
._6c{width:54.993920pt;}
._3b{width:74.387200pt;}
._57{width:78.780467pt;}
._39{width:81.119242pt;}
._46{width:82.123469pt;}
._5c{width:87.225139pt;}
._4e{width:89.727809pt;}
._53{width:92.130770pt;}
._4a{width:93.031367pt;}
._4c{width:94.025421pt;}
._56{width:95.737242pt;}
._49{width:97.548639pt;}
._4b{width:101.193612pt;}
._52{width:106.401280pt;}
._55{width:111.039898pt;}
._48{width:112.622221pt;}
._54{width:115.726336pt;}
._58{width:120.897041pt;}
._65{width:139.764362pt;}
._67{width:148.435763pt;}
._36{width:149.778627pt;}
._68{width:151.831040pt;}
._64{width:157.704090pt;}
._35{width:159.114221pt;}
._63{width:160.123059pt;}
._66{width:161.165005pt;}
._26{width:176.410931pt;}
._23{width:191.044096pt;}
._33{width:200.321331pt;}
._61{width:204.331537pt;}
._24{width:207.140540pt;}
._22{width:213.615514pt;}
._27{width:218.254131pt;}
._5d{width:220.310426pt;}
._32{width:230.209331pt;}
._28{width:236.186931pt;}
._30{width:248.142131pt;}
._60{width:249.481114pt;}
._5f{width:258.136678pt;}
._5e{width:267.987763pt;}
._4f{width:277.203901pt;}
._31{width:305.944806pt;}
._50{width:356.128720pt;}
._2b{width:420.376083pt;}
._25{width:442.997086pt;}
._2a{width:455.908702pt;}
._5b{width:471.872905pt;}
._3f{width:475.297014pt;}
._21{width:484.201488pt;}
._29{width:492.300331pt;}
._5a{width:505.752781pt;}
._37{width:509.701094pt;}
._3e{width:517.325782pt;}
._59{width:520.720691pt;}
._3a{width:543.361302pt;}
._2d{width:555.089041pt;}
._45{width:557.346096pt;}
._2c{width:560.875358pt;}
._2f{width:565.576602pt;}
._44{width:568.987693pt;}
._2e{width:580.448870pt;}
._43{width:586.096749pt;}
._40{width:606.516035pt;}
._42{width:625.150029pt;}
._3c{width:630.022390pt;}
._3d{width:647.875318pt;}
._41{width:695.966643pt;}
._47{width:736.396086pt;}
._38{width:744.839034pt;}
._4d{width:757.745213pt;}
._51{width:765.964998pt;}
._11{width:810.017203pt;}
._1e{width:1495.378765pt;}
._6b{width:2212.946400pt;}
._12{width:2234.199733pt;}
._34{width:3547.959733pt;}
.fsb{font-size:25.600000pt;}
.fs5{font-size:31.880533pt;}
.fs8{font-size:34.304000pt;}
.fs0{font-size:37.193600pt;}
.fsa{font-size:38.400000pt;}
.fsd{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs9{font-size:42.496000pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fse{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.yc2{bottom:-208.163200pt;}
.ye4{bottom:-155.419392pt;}
.ye3{bottom:-141.725056pt;}
.ye2{bottom:-128.030720pt;}
.ye1{bottom:-114.463872pt;}
.ye0{bottom:-100.769536pt;}
.ydf{bottom:-87.071872pt;}
.yde{bottom:-73.377536pt;}
.ydd{bottom:-59.681536pt;}
.ydc{bottom:-45.987200pt;}
.ydb{bottom:-20.003200pt;}
.yda{bottom:-3.969920pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:13.168686pt;}
.y49{bottom:28.346667pt;}
.yf8{bottom:88.322667pt;}
.yb3{bottom:89.704000pt;}
.y19{bottom:93.018667pt;}
.y80{bottom:95.681333pt;}
.y187{bottom:97.189333pt;}
.y48{bottom:97.277333pt;}
.y1bd{bottom:98.337333pt;}
.yf7{bottom:105.060000pt;}
.yb2{bottom:106.441333pt;}
.y20f{bottom:108.818667pt;}
.y18{bottom:108.920000pt;}
.y244{bottom:110.890667pt;}
.y7f{bottom:112.418667pt;}
.y186{bottom:113.926667pt;}
.y47{bottom:114.014667pt;}
.y1da{bottom:114.278667pt;}
.y1bc{bottom:115.074667pt;}
.y12d{bottom:116.818667pt;}
.yf6{bottom:121.797333pt;}
.yb1{bottom:123.178667pt;}
.y20e{bottom:124.161333pt;}
.y17{bottom:124.820000pt;}
.y243{bottom:126.233333pt;}
.y7e{bottom:129.156000pt;}
.y46{bottom:130.752000pt;}
.y1d9{bottom:131.016000pt;}
.y1bb{bottom:131.812000pt;}
.y12c{bottom:133.556000pt;}
.y185{bottom:134.649333pt;}
.yf5{bottom:138.534667pt;}
.y20d{bottom:139.504000pt;}
.yb0{bottom:139.916000pt;}
.y16{bottom:140.720000pt;}
.y242{bottom:141.576000pt;}
.y7d{bottom:145.893333pt;}
.y45{bottom:147.489333pt;}
.y1d8{bottom:147.753333pt;}
.y1ba{bottom:148.549333pt;}
.y12b{bottom:150.293333pt;}
.y20c{bottom:154.846667pt;}
.yf4{bottom:155.272000pt;}
.y15{bottom:156.621333pt;}
.yaf{bottom:156.653333pt;}
.y241{bottom:156.918667pt;}
.y7c{bottom:162.630667pt;}
.y44{bottom:164.226667pt;}
.y1d7{bottom:164.489333pt;}
.y1b9{bottom:165.286667pt;}
.y12a{bottom:167.030667pt;}
.y184{bottom:167.470667pt;}
.y20b{bottom:170.189333pt;}
.y240{bottom:172.261333pt;}
.y14{bottom:172.521333pt;}
.yae{bottom:173.389333pt;}
.yf3{bottom:175.994667pt;}
.y7b{bottom:179.368000pt;}
.y43{bottom:180.964000pt;}
.y1d6{bottom:181.226667pt;}
.y1b8{bottom:182.024000pt;}
.y129{bottom:183.768000pt;}
.y209{bottom:185.530667pt;}
.y20a{bottom:185.532000pt;}
.y183{bottom:186.553333pt;}
.y23f{bottom:187.602667pt;}
.y13{bottom:188.421333pt;}
.yad{bottom:190.126667pt;}
.y7a{bottom:196.105333pt;}
.y1d5{bottom:197.964000pt;}
.y1b7{bottom:198.761333pt;}
.y128{bottom:200.505333pt;}
.y208{bottom:200.873333pt;}
.y182{bottom:201.164000pt;}
.y180{bottom:201.514667pt;}
.y42{bottom:201.685333pt;}
.y23e{bottom:202.945333pt;}
.y12{bottom:204.322667pt;}
.yf2{bottom:205.882667pt;}
.yac{bottom:206.864000pt;}
.y79{bottom:212.841333pt;}
.y1d4{bottom:214.701333pt;}
.y1b6{bottom:215.498667pt;}
.y181{bottom:215.776000pt;}
.y207{bottom:216.216000pt;}
.y127{bottom:217.242667pt;}
.y23d{bottom:218.288000pt;}
.yf1{bottom:222.620000pt;}
.yab{bottom:223.601333pt;}
.y78{bottom:229.578667pt;}
.y1d3{bottom:231.438667pt;}
.y206{bottom:231.558667pt;}
.y1b5{bottom:232.236000pt;}
.y23c{bottom:233.630667pt;}
.y126{bottom:233.980000pt;}
.y17f{bottom:236.790667pt;}
.yf0{bottom:239.357333pt;}
.yaa{bottom:240.338667pt;}
.yd9{bottom:242.687488pt;}
.y77{bottom:246.316000pt;}
.y205{bottom:246.901333pt;}
.y1d2{bottom:248.176000pt;}
.y1b4{bottom:248.973333pt;}
.y125{bottom:250.717333pt;}
.y17e{bottom:251.402667pt;}
.y17c{bottom:251.752000pt;}
.yef{bottom:256.094667pt;}
.yd8{bottom:256.381824pt;}
.ya9{bottom:257.076000pt;}
.y204{bottom:262.244000pt;}
.y76{bottom:263.053333pt;}
.y23b{bottom:264.316000pt;}
.y1d1{bottom:264.913333pt;}
.y1b3{bottom:265.710667pt;}
.y17d{bottom:266.014667pt;}
.y11{bottom:266.804000pt;}
.y124{bottom:267.454667pt;}
.y41{bottom:268.486667pt;}
.yd7{bottom:270.076160pt;}
.yee{bottom:272.830667pt;}
.ya8{bottom:273.813333pt;}
.y203{bottom:277.586667pt;}
.y23a{bottom:279.658667pt;}
.y75{bottom:279.790667pt;}
.y1d0{bottom:281.650667pt;}
.y1b2{bottom:282.448000pt;}
.y10{bottom:282.705333pt;}
.yd6{bottom:283.770496pt;}
.y123{bottom:284.192000pt;}
.y40{bottom:285.781333pt;}
.y17b{bottom:287.028000pt;}
.yed{bottom:289.568000pt;}
.ya7{bottom:290.550667pt;}
.y202{bottom:292.929333pt;}
.y239{bottom:295.001333pt;}
.y74{bottom:296.528000pt;}
.yd5{bottom:297.464832pt;}
.y1cf{bottom:298.388000pt;}
.yf{bottom:298.605333pt;}
.y1b1{bottom:299.185333pt;}
.y178{bottom:300.432000pt;}
.y122{bottom:300.928000pt;}
.y17a{bottom:301.640000pt;}
.yec{bottom:306.305333pt;}
.ya6{bottom:307.288000pt;}
.y200{bottom:308.272000pt;}
.y201{bottom:308.457333pt;}
.y238{bottom:310.342667pt;}
.yd4{bottom:311.031680pt;}
.y73{bottom:313.265333pt;}
.ye{bottom:314.505333pt;}
.y1ce{bottom:315.125333pt;}
.y1b0{bottom:315.922667pt;}
.y179{bottom:316.252000pt;}
.y121{bottom:317.665333pt;}
.y3f{bottom:319.016000pt;}
.yeb{bottom:323.042667pt;}
.y1ff{bottom:323.613333pt;}
.ya5{bottom:324.025333pt;}
.yd3{bottom:324.726016pt;}
.y237{bottom:325.685333pt;}
.y72{bottom:330.002667pt;}
.y1cd{bottom:331.862667pt;}
.y1af{bottom:332.660000pt;}
.y120{bottom:334.402667pt;}
.y3e{bottom:336.312000pt;}
.y177{bottom:337.265333pt;}
.yd{bottom:338.376000pt;}
.yd2{bottom:338.420352pt;}
.y1fe{bottom:338.956000pt;}
.yea{bottom:339.780000pt;}
.ya4{bottom:340.762667pt;}
.y236{bottom:341.028000pt;}
.y71{bottom:346.740000pt;}
.y1ae{bottom:349.397333pt;}
.y11f{bottom:351.140000pt;}
.y176{bottom:351.877333pt;}
.yd1{bottom:352.114688pt;}
.y1cc{bottom:352.585333pt;}
.y3d{bottom:353.606667pt;}
.yc{bottom:354.277333pt;}
.y1fd{bottom:354.298667pt;}
.y235{bottom:356.370667pt;}
.ye9{bottom:356.517333pt;}
.ya3{bottom:357.500000pt;}
.y70{bottom:363.477333pt;}
.yd0{bottom:365.809024pt;}
.y1ad{bottom:366.134667pt;}
.y11e{bottom:367.877333pt;}
.y1fc{bottom:369.641333pt;}
.yb{bottom:370.177333pt;}
.y3c{bottom:370.902667pt;}
.y234{bottom:371.713333pt;}
.y175{bottom:372.892000pt;}
.ye8{bottom:373.254667pt;}
.ya2{bottom:374.237333pt;}
.y6f{bottom:380.214667pt;}
.y1cb{bottom:382.473333pt;}
.ycf{bottom:382.573696pt;}
.y1ac{bottom:382.872000pt;}
.y11d{bottom:384.614667pt;}
.y1fb{bottom:384.984000pt;}
.y146{bottom:386.710667pt;}
.y233{bottom:387.056000pt;}
.y173{bottom:387.504000pt;}
.y3b{bottom:388.197333pt;}
.ye7{bottom:389.992000pt;}
.ya1{bottom:390.974667pt;}
.ya{bottom:395.376000pt;}
.y6e{bottom:396.952000pt;}
.y1ca{bottom:399.210667pt;}
.y1ab{bottom:399.609333pt;}
.y1fa{bottom:400.326667pt;}
.y11c{bottom:401.352000pt;}
.y174{bottom:402.116000pt;}
.y232{bottom:402.398667pt;}
.y145{bottom:404.597333pt;}
.y3a{bottom:405.492000pt;}
.ye6{bottom:406.729333pt;}
.ya0{bottom:407.712000pt;}
.yce{bottom:409.069952pt;}
.y9{bottom:411.276000pt;}
.y6d{bottom:413.689333pt;}
.y144{bottom:415.224000pt;}
.y1f9{bottom:415.669333pt;}
.y1c9{bottom:415.948000pt;}
.y1aa{bottom:416.346667pt;}
.y231{bottom:417.741333pt;}
.y11b{bottom:418.089333pt;}
.ycd{bottom:422.764288pt;}
.y39{bottom:422.788000pt;}
.y172{bottom:423.129333pt;}
.y9f{bottom:424.449333pt;}
.y143{bottom:425.850667pt;}
.y6c{bottom:430.426667pt;}
.y1f8{bottom:431.012000pt;}
.y1c8{bottom:432.685333pt;}
.y1a9{bottom:433.084000pt;}
.y11a{bottom:434.826667pt;}
.y8{bottom:435.146667pt;}
.ycc{bottom:436.458624pt;}
.y142{bottom:436.477333pt;}
.ye5{bottom:436.565333pt;}
.y171{bottom:437.741333pt;}
.y38{bottom:440.082667pt;}
.y9e{bottom:441.186667pt;}
.y1f7{bottom:446.354667pt;}
.y141{bottom:447.105333pt;}
.y6b{bottom:447.164000pt;}
.y230{bottom:448.425333pt;}
.y1c7{bottom:449.422667pt;}
.y1a8{bottom:449.821333pt;}
.ycb{bottom:450.152960pt;}
.y7{bottom:451.048000pt;}
.y119{bottom:451.564000pt;}
.ybf{bottom:456.502667pt;}
.y37{bottom:457.377333pt;}
.y140{bottom:457.732000pt;}
.y9d{bottom:457.924000pt;}
.y1f6{bottom:461.696000pt;}
.yca{bottom:463.719808pt;}
.y22f{bottom:463.768000pt;}
.y6a{bottom:463.901333pt;}
.y1c6{bottom:466.160000pt;}
.y1a7{bottom:466.557333pt;}
.y6{bottom:466.948000pt;}
.y118{bottom:468.301333pt;}
.y13f{bottom:468.358667pt;}
.y170{bottom:468.504000pt;}
.y9c{bottom:474.661333pt;}
.y36{bottom:474.673333pt;}
.y1f5{bottom:477.038667pt;}
.yc9{bottom:477.414144pt;}
.y13e{bottom:478.985333pt;}
.y22e{bottom:479.110667pt;}
.y69{bottom:480.638667pt;}
.y5{bottom:482.848000pt;}
.y1c5{bottom:482.897333pt;}
.y1a6{bottom:483.294667pt;}
.y117{bottom:485.038667pt;}
.y16f{bottom:485.600000pt;}
.y13d{bottom:489.612000pt;}
.yc8{bottom:491.108480pt;}
.y9b{bottom:491.398667pt;}
.y35{bottom:491.968000pt;}
.y1f4{bottom:492.381333pt;}
.y22d{bottom:494.453333pt;}
.y68{bottom:497.376000pt;}
.y4{bottom:498.749333pt;}
.y1c4{bottom:499.634667pt;}
.y1a5{bottom:500.032000pt;}
.y13c{bottom:500.238667pt;}
.y116{bottom:501.776000pt;}
.yc7{bottom:504.802816pt;}
.y1f3{bottom:507.724000pt;}
.y9a{bottom:508.136000pt;}
.y34{bottom:509.264000pt;}
.y22c{bottom:509.796000pt;}
.y13b{bottom:510.865333pt;}
.y67{bottom:514.113333pt;}
.y3{bottom:514.649333pt;}
.y1c3{bottom:516.372000pt;}
.y1a4{bottom:516.769333pt;}
.y16e{bottom:517.768000pt;}
.yc6{bottom:518.497152pt;}
.y115{bottom:518.513333pt;}
.y13a{bottom:521.492000pt;}
.y1f2{bottom:523.066667pt;}
.y99{bottom:524.873333pt;}
.y22b{bottom:525.138667pt;}
.y33{bottom:526.558667pt;}
.y2{bottom:530.549333pt;}
.y66{bottom:530.850667pt;}
.yc5{bottom:532.064000pt;}
.y139{bottom:532.118667pt;}
.y1c2{bottom:533.108000pt;}
.y1a3{bottom:533.506667pt;}
.y114{bottom:535.250667pt;}
.y16d{bottom:536.850667pt;}
.y1f1{bottom:538.409333pt;}
.y22a{bottom:540.481333pt;}
.y98{bottom:541.610667pt;}
.y138{bottom:542.746667pt;}
.y32{bottom:543.853333pt;}
.yc4{bottom:545.758336pt;}
.y1{bottom:546.450667pt;}
.y65{bottom:547.588000pt;}
.y1c1{bottom:549.845333pt;}
.y1a2{bottom:550.244000pt;}
.y113{bottom:551.988000pt;}
.y137{bottom:553.373333pt;}
.y1f0{bottom:553.752000pt;}
.y229{bottom:555.824000pt;}
.y97{bottom:558.348000pt;}
.y16b{bottom:558.420000pt;}
.yc3{bottom:559.452672pt;}
.y31{bottom:561.149333pt;}
.y136{bottom:564.000000pt;}
.y64{bottom:564.325333pt;}
.y16c{bottom:565.726667pt;}
.y1c0{bottom:566.582667pt;}
.y1a1{bottom:566.981333pt;}
.y112{bottom:568.725333pt;}
.y1ef{bottom:569.094667pt;}
.y228{bottom:571.165333pt;}
.y16a{bottom:573.032000pt;}
.y135{bottom:574.626667pt;}
.y96{bottom:575.085333pt;}
.y30{bottom:578.444000pt;}
.y63{bottom:581.062667pt;}
.y1bf{bottom:583.320000pt;}
.y1a0{bottom:583.718667pt;}
.y1ee{bottom:584.436000pt;}
.y134{bottom:585.253333pt;}
.y227{bottom:586.508000pt;}
.y169{bottom:587.644000pt;}
.y95{bottom:591.822667pt;}
.y2f{bottom:595.738667pt;}
.y133{bottom:595.880000pt;}
.y62{bottom:597.800000pt;}
.yc1{bottom:598.365184pt;}
.y1ed{bottom:599.778667pt;}
.y19f{bottom:600.456000pt;}
.y111{bottom:601.630667pt;}
.y226{bottom:601.850667pt;}
.y168{bottom:602.256000pt;}
.y1be{bottom:604.042667pt;}
.yc0{bottom:605.148800pt;}
.y132{bottom:606.506667pt;}
.y94{bottom:608.560000pt;}
.y2e{bottom:613.034667pt;}
.y110{bottom:614.250667pt;}
.y61{bottom:614.537333pt;}
.y1ec{bottom:615.121333pt;}
.y167{bottom:616.868000pt;}
.y19e{bottom:617.193333pt;}
.y131{bottom:623.536000pt;}
.y93{bottom:625.296000pt;}
.y2d{bottom:630.329333pt;}
.y1eb{bottom:630.464000pt;}
.y60{bottom:631.274667pt;}
.y166{bottom:631.480000pt;}
.y225{bottom:632.536000pt;}
.y10f{bottom:633.657333pt;}
.y19d{bottom:633.930667pt;}
.y130{bottom:634.270667pt;}
.y92{bottom:642.033333pt;}
.y1ea{bottom:645.806667pt;}
.y165{bottom:646.092000pt;}
.y2c{bottom:647.625333pt;}
.y224{bottom:647.878667pt;}
.y5f{bottom:648.012000pt;}
.y10e{bottom:648.269333pt;}
.y19c{bottom:650.668000pt;}
.y164{bottom:660.704000pt;}
.y1e9{bottom:661.149333pt;}
.y91{bottom:662.756000pt;}
.y10d{bottom:662.881333pt;}
.y223{bottom:663.221333pt;}
.y5e{bottom:664.749333pt;}
.y2b{bottom:664.920000pt;}
.y12f{bottom:665.881333pt;}
.y19b{bottom:667.405333pt;}
.y162{bottom:675.316000pt;}
.y1e8{bottom:676.492000pt;}
.y10c{bottom:677.493333pt;}
.y222{bottom:678.564000pt;}
.y5d{bottom:681.485333pt;}
.y163{bottom:682.621333pt;}
.y19a{bottom:684.142667pt;}
.y161{bottom:689.926667pt;}
.y1e7{bottom:691.834667pt;}
.y10b{bottom:692.104000pt;}
.y90{bottom:692.644000pt;}
.y221{bottom:693.906667pt;}
.ybe{bottom:697.825333pt;}
.y5c{bottom:698.222667pt;}
.y2a{bottom:699.218667pt;}
.y199{bottom:700.880000pt;}
.y15f{bottom:704.538667pt;}
.y10a{bottom:706.716000pt;}
.y220{bottom:709.248000pt;}
.y8f{bottom:709.381333pt;}
.y1e6{bottom:711.161333pt;}
.y160{bottom:711.845333pt;}
.y12e{bottom:712.385333pt;}
.y29{bottom:713.564000pt;}
.ybd{bottom:714.562667pt;}
.y5b{bottom:714.960000pt;}
.y198{bottom:717.617333pt;}
.y15e{bottom:719.150667pt;}
.y109{bottom:721.328000pt;}
.y21f{bottom:724.590667pt;}
.y8e{bottom:726.118667pt;}
.ybc{bottom:731.300000pt;}
.y5a{bottom:731.697333pt;}
.y28{bottom:731.768000pt;}
.y15d{bottom:733.762667pt;}
.y197{bottom:734.354667pt;}
.y108{bottom:735.940000pt;}
.y21e{bottom:739.933333pt;}
.y1e5{bottom:741.049333pt;}
.y27{bottom:742.257333pt;}
.y8d{bottom:742.856000pt;}
.ybb{bottom:748.036000pt;}
.y15c{bottom:748.374667pt;}
.y59{bottom:748.434667pt;}
.y107{bottom:750.552000pt;}
.y196{bottom:751.092000pt;}
.y21d{bottom:755.276000pt;}
.y26{bottom:756.602667pt;}
.y8c{bottom:759.593333pt;}
.y15a{bottom:762.986667pt;}
.y1e4{bottom:764.641333pt;}
.yba{bottom:764.773333pt;}
.y106{bottom:765.164000pt;}
.y58{bottom:765.172000pt;}
.y195{bottom:767.829333pt;}
.y15b{bottom:770.292000pt;}
.y21c{bottom:770.618667pt;}
.y25{bottom:774.806667pt;}
.y8b{bottom:776.330667pt;}
.y159{bottom:777.598667pt;}
.y105{bottom:779.776000pt;}
.y1e3{bottom:780.262667pt;}
.yb9{bottom:781.510667pt;}
.y57{bottom:781.909333pt;}
.y194{bottom:784.566667pt;}
.y24{bottom:785.296000pt;}
.y21b{bottom:785.961333pt;}
.y158{bottom:792.210667pt;}
.y8a{bottom:793.068000pt;}
.y104{bottom:794.388000pt;}
.yb8{bottom:798.248000pt;}
.y56{bottom:798.646667pt;}
.y193{bottom:801.304000pt;}
.y23{bottom:803.500000pt;}
.y1e2{bottom:803.854667pt;}
.y156{bottom:806.822667pt;}
.y103{bottom:809.000000pt;}
.y89{bottom:809.805333pt;}
.y22{bottom:813.988000pt;}
.y157{bottom:814.128000pt;}
.yb7{bottom:814.985333pt;}
.y55{bottom:815.384000pt;}
.y21a{bottom:816.646667pt;}
.y192{bottom:818.041333pt;}
.y155{bottom:821.434667pt;}
.y102{bottom:823.612000pt;}
.y88{bottom:826.542667pt;}
.y1e1{bottom:827.445333pt;}
.yb6{bottom:831.722667pt;}
.y219{bottom:831.988000pt;}
.y54{bottom:832.121333pt;}
.y21{bottom:832.192000pt;}
.y191{bottom:834.778667pt;}
.y154{bottom:836.045333pt;}
.y101{bottom:838.222667pt;}
.y1e0{bottom:843.066667pt;}
.y87{bottom:843.280000pt;}
.y218{bottom:847.330667pt;}
.yb5{bottom:848.460000pt;}
.y53{bottom:848.858667pt;}
.y153{bottom:850.657333pt;}
.y190{bottom:851.516000pt;}
.y100{bottom:852.834667pt;}
.y1df{bottom:858.689333pt;}
.y217{bottom:862.673333pt;}
.y86{bottom:864.002667pt;}
.y52{bottom:865.596000pt;}
.yff{bottom:867.446667pt;}
.y18f{bottom:868.253333pt;}
.yb4{bottom:869.182667pt;}
.y152{bottom:871.672000pt;}
.y20{bottom:871.904000pt;}
.y216{bottom:878.016000pt;}
.yfe{bottom:882.058667pt;}
.y1de{bottom:882.280000pt;}
.y51{bottom:882.333333pt;}
.y18e{bottom:884.990667pt;}
.y14c{bottom:888.037333pt;}
.y1f{bottom:888.641333pt;}
.y151{bottom:892.685333pt;}
.y215{bottom:893.358667pt;}
.y85{bottom:893.890667pt;}
.yfd{bottom:896.670667pt;}
.y50{bottom:899.070667pt;}
.y14e{bottom:899.992000pt;}
.y18d{bottom:901.728000pt;}
.y14b{bottom:902.649333pt;}
.y1dd{bottom:905.872000pt;}
.y150{bottom:907.297333pt;}
.y214{bottom:908.701333pt;}
.y84{bottom:910.628000pt;}
.yfc{bottom:911.282667pt;}
.y14d{bottom:914.604000pt;}
.y4f{bottom:915.808000pt;}
.y18c{bottom:918.464000pt;}
.y1e{bottom:921.320000pt;}
.y1dc{bottom:921.493333pt;}
.y14f{bottom:921.909333pt;}
.y213{bottom:924.044000pt;}
.y83{bottom:927.364000pt;}
.yfb{bottom:932.296000pt;}
.y4e{bottom:932.545333pt;}
.y18b{bottom:935.201333pt;}
.y1db{bottom:937.114667pt;}
.y212{bottom:939.386667pt;}
.y14a{bottom:942.924000pt;}
.y82{bottom:944.101333pt;}
.yfa{bottom:944.744000pt;}
.y1d{bottom:946.425333pt;}
.y4d{bottom:949.282667pt;}
.y18a{bottom:951.938667pt;}
.y211{bottom:954.729333pt;}
.y149{bottom:963.937333pt;}
.y81{bottom:964.824000pt;}
.y4c{bottom:966.020000pt;}
.y189{bottom:968.676000pt;}
.y210{bottom:970.070667pt;}
.y1c{bottom:971.530667pt;}
.y4b{bottom:982.757333pt;}
.yf9{bottom:984.073333pt;}
.y188{bottom:985.413333pt;}
.y148{bottom:994.700000pt;}
.y1a{bottom:1010.186667pt;}
.y4a{bottom:1038.548000pt;}
.y147{bottom:1041.204000pt;}
.h18{height:19.893370pt;}
.h10{height:25.041250pt;}
.hf{height:25.158500pt;}
.h1e{height:26.890973pt;}
.h14{height:28.162500pt;}
.h8{height:28.947524pt;}
.h11{height:31.021250pt;}
.h12{height:31.145750pt;}
.h22{height:31.691456pt;}
.h2{height:33.771789pt;}
.ha{height:34.574438pt;}
.h20{height:35.052646pt;}
.h16{height:35.212691pt;}
.h1a{height:37.778179pt;}
.hc{height:38.415786pt;}
.h9{height:38.596538pt;}
.h5{height:38.947124pt;}
.h13{height:39.528750pt;}
.hb{height:43.421286pt;}
.h3{height:45.272024pt;}
.hd{height:48.245551pt;}
.h7{height:48.486756pt;}
.h24{height:51.131789pt;}
.h1d{height:52.069639pt;}
.h19{height:55.952068pt;}
.h15{height:55.957402pt;}
.h1f{height:63.795772pt;}
.h25{height:63.801105pt;}
.h17{height:68.841105pt;}
.h6{height:69.148877pt;}
.h21{height:72.642620pt;}
.h23{height:72.647953pt;}
.h4{height:91.114522pt;}
.he{height:223.767467pt;}
.h1b{height:793.701333pt;}
.h1c{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.724208pt;}
.w3{width:455.213867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x43{left:-51.316267pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x4f{left:55.592000pt;}
.x50{left:70.536000pt;}
.x64{left:72.860000pt;}
.x98{left:76.309333pt;}
.x65{left:82.257333pt;}
.x44{left:87.815637pt;}
.x61{left:99.277333pt;}
.x45{left:110.487253pt;}
.x62{left:124.485333pt;}
.x4d{left:132.629333pt;}
.x5f{left:141.348000pt;}
.x76{left:176.464000pt;}
.x67{left:183.013333pt;}
.x7d{left:184.585333pt;}
.x6e{left:191.954667pt;}
.x66{left:193.790667pt;}
.x9d{left:197.825333pt;}
.x9c{left:199.194667pt;}
.x3c{left:218.537333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x6f{left:230.130667pt;}
.x4{left:239.924000pt;}
.x8{left:250.204000pt;}
.x83{left:257.122667pt;}
.x87{left:260.905333pt;}
.x4a{left:263.210667pt;}
.x79{left:266.885333pt;}
.x75{left:269.142667pt;}
.x84{left:270.406667pt;}
.x73{left:272.962667pt;}
.x6{left:273.897333pt;}
.x4b{left:276.494667pt;}
.x70{left:277.804000pt;}
.x7{left:284.341333pt;}
.x5a{left:285.400000pt;}
.x60{left:294.716000pt;}
.x4e{left:297.262667pt;}
.x23{left:306.257333pt;}
.x24{left:312.898667pt;}
.x25{left:316.286667pt;}
.x5c{left:323.522667pt;}
.x71{left:327.869333pt;}
.x26{left:329.569333pt;}
.x48{left:331.537333pt;}
.x5d{left:334.212000pt;}
.x57{left:336.834667pt;}
.x85{left:339.580000pt;}
.x5e{left:345.718667pt;}
.x49{left:346.609333pt;}
.x58{left:347.530667pt;}
.x96{left:351.629333pt;}
.x86{left:352.864000pt;}
.xf{left:356.448000pt;}
.x38{left:359.234667pt;}
.x10{left:363.090667pt;}
.x13{left:367.193333pt;}
.x59{left:370.154667pt;}
.x39{left:372.518667pt;}
.x14{left:373.834667pt;}
.x77{left:375.542667pt;}
.x7a{left:382.353333pt;}
.x97{left:385.504000pt;}
.x1f{left:393.165333pt;}
.x63{left:399.301333pt;}
.x8d{left:402.925333pt;}
.x20{left:406.449333pt;}
.x21{left:409.836000pt;}
.x19{left:416.261333pt;}
.x8e{left:419.464000pt;}
.x22{left:423.120000pt;}
.x51{left:428.489333pt;}
.x1a{left:429.544000pt;}
.x8f{left:432.748000pt;}
.x52{left:438.428000pt;}
.x1b{left:441.320000pt;}
.x3f{left:443.580000pt;}
.x1c{left:454.602667pt;}
.x29{left:457.368000pt;}
.x3d{left:459.582667pt;}
.x40{left:464.333333pt;}
.x54{left:465.729333pt;}
.x53{left:468.420000pt;}
.x68{left:469.677333pt;}
.x2a{left:470.652000pt;}
.x3e{left:472.866667pt;}
.x55{left:476.424000pt;}
.x1d{left:477.733333pt;}
.x56{left:479.308000pt;}
.x69{left:481.202667pt;}
.x33{left:484.101333pt;}
.x2b{left:485.865333pt;}
.x78{left:486.760000pt;}
.x1e{left:491.017333pt;}
.x2c{left:499.149333pt;}
.x7b{left:503.764000pt;}
.x2d{left:505.904000pt;}
.x15{left:509.117333pt;}
.x7e{left:513.645333pt;}
.x16{left:515.758667pt;}
.x74{left:517.349333pt;}
.x90{left:518.256000pt;}
.x2e{left:519.186667pt;}
.x17{left:522.533333pt;}
.x7f{left:526.928000pt;}
.x80{left:530.229333pt;}
.x91{left:531.540000pt;}
.x5b{left:533.120000pt;}
.x92{left:534.846667pt;}
.x18{left:535.817333pt;}
.x41{left:543.909333pt;}
.x81{left:545.481333pt;}
.x95{left:547.158667pt;}
.x93{left:548.130667pt;}
.x31{left:551.040000pt;}
.x82{left:552.122667pt;}
.x88{left:553.794667pt;}
.x94{left:554.745333pt;}
.x42{left:557.193333pt;}
.x32{left:564.324000pt;}
.x6a{left:565.993333pt;}
.xb{left:567.596000pt;}
.xc{left:574.238667pt;}
.xd{left:577.569333pt;}
.x3a{left:578.922667pt;}
.x6c{left:580.154667pt;}
.x6b{left:581.594667pt;}
.xe{left:584.210667pt;}
.x9{left:588.896000pt;}
.x3b{left:592.206667pt;}
.xa{left:595.537333pt;}
.x99{left:619.176000pt;}
.x34{left:627.866667pt;}
.x8b{left:631.845333pt;}
.x35{left:641.150667pt;}
.x8c{left:645.129333pt;}
.xa0{left:649.761333pt;}
.x4c{left:651.608000pt;}
.x89{left:654.993333pt;}
.x2f{left:658.885333pt;}
.x7c{left:660.710667pt;}
.x8a{left:668.277333pt;}
.x36{left:670.065333pt;}
.x30{left:672.168000pt;}
.xa1{left:677.245333pt;}
.x37{left:683.348000pt;}
.x6d{left:684.653333pt;}
.x27{left:690.024000pt;}
.x46{left:695.208000pt;}
.xa2{left:700.198667pt;}
.x9a{left:702.272000pt;}
.x28{left:703.308000pt;}
.x47{left:708.580000pt;}
.x72{left:718.822667pt;}
.x9e{left:720.313333pt;}
.xa3{left:724.109333pt;}
.x9b{left:726.182667pt;}
.x11{left:733.538667pt;}
.x12{left:740.180000pt;}
.x9f{left:744.224000pt;}
}




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