
    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_f6b23222db6deaa8c77813e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c7066b001e5d42ab7e95baf1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b27dc902c3ea381c3ec9172a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_579b0aa17ab5b2b01a9f7e62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_085b2ebf19fe25dff8d5e206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fcba0819a904c755f679132c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.667000;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_e8a1e71250dd88bbd70a21c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_fafae972e6157336e4785fc5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c9c2d37c38e7511990be1b72.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916504;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;}
.m3e{transform:matrix(0.000000,-0.248285,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248285,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248285,0.250000,0.000000,0,0);}
.m39{transform:matrix(0.000000,-0.248396,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248396,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248396,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.000000,-0.249408,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249408,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249408,0.250000,0.000000,0,0);}
.m2e{transform:matrix(0.000000,-0.249485,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249485,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249485,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);}
.m36{transform:matrix(0.000000,-0.250364,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250364,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250364,0.250000,0.000000,0,0);}
.m27{transform:matrix(0.147596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147596,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.149361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149361,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.152371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152371,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.234530,0.000000,-0.078177,0.237462,0,0);-ms-transform:matrix(0.234530,0.000000,-0.078177,0.237462,0,0);-webkit-transform:matrix(0.234530,0.000000,-0.078177,0.237462,0,0);}
.m19{transform:matrix(0.236262,0.000000,-0.078755,0.237271,0,0);-ms-transform:matrix(0.236262,0.000000,-0.078755,0.237271,0,0);-webkit-transform:matrix(0.236262,0.000000,-0.078755,0.237271,0,0);}
.m3{transform:matrix(0.243111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243111,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243116,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249637,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,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);}
.m2d{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251615,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252454,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253231,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253951,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.256246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256246,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.256472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256472,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.256473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256473,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.256834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256834,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.257191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257191,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.257191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257191,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.264590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264590,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-50.950578px;}
.v2{vertical-align:-48.388424px;}
.v1{vertical-align:-41.760000px;}
.v6{vertical-align:-23.760000px;}
.v12{vertical-align:-14.115000px;}
.vc{vertical-align:-11.926200px;}
.v10{vertical-align:-10.068480px;}
.vd{vertical-align:-8.611200px;}
.v3{vertical-align:-5.040000px;}
.vb{vertical-align:-2.316678px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.041314px;}
.vf{vertical-align:5.115600px;}
.v4{vertical-align:9.449400px;}
.v13{vertical-align:14.114400px;}
.ve{vertical-align:16.473000px;}
.v5{vertical-align:23.774400px;}
.v11{vertical-align:28.814400px;}
.v7{vertical-align:30.246480px;}
.va{vertical-align:81.342720px;}
.ls89{letter-spacing:-3.783127px;}
.ls7c{letter-spacing:-3.392524px;}
.ls86{letter-spacing:-3.392028px;}
.ls72{letter-spacing:-3.337158px;}
.ls88{letter-spacing:-1.678787px;}
.ls7e{letter-spacing:-1.678282px;}
.ls7b{letter-spacing:-1.495010px;}
.ls85{letter-spacing:-1.494792px;}
.ls7d{letter-spacing:-1.483648px;}
.ls87{letter-spacing:-1.483424px;}
.ls75{letter-spacing:-1.468475px;}
.ls73{letter-spacing:-1.459449px;}
.ls53{letter-spacing:-1.190009px;}
.ls68{letter-spacing:-1.126080px;}
.ls81{letter-spacing:-1.059840px;}
.ls80{letter-spacing:-0.993600px;}
.ls46{letter-spacing:-0.861120px;}
.ls10{letter-spacing:-0.728640px;}
.ls2d{letter-spacing:-0.715071px;}
.ls2c{letter-spacing:-0.699302px;}
.ls11{letter-spacing:-0.596160px;}
.ls51{letter-spacing:-0.591553px;}
.ls43{letter-spacing:-0.570259px;}
.ls69{letter-spacing:-0.533558px;}
.ls29{letter-spacing:-0.463680px;}
.ls5e{letter-spacing:-0.397440px;}
.ls84{letter-spacing:-0.391999px;}
.ls9{letter-spacing:-0.336960px;}
.ls41{letter-spacing:-0.333000px;}
.lsb{letter-spacing:-0.331200px;}
.ls2a{letter-spacing:-0.294441px;}
.ls5c{letter-spacing:-0.290856px;}
.ls26{letter-spacing:-0.290064px;}
.ls50{letter-spacing:-0.288320px;}
.ls23{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.281990px;}
.ls25{letter-spacing:-0.281861px;}
.ls40{letter-spacing:-0.277123px;}
.ls56{letter-spacing:-0.271555px;}
.ls59{letter-spacing:-0.270893px;}
.ls6b{letter-spacing:-0.264960px;}
.ls42{letter-spacing:-0.249488px;}
.ls3d{letter-spacing:-0.246742px;}
.ls24{letter-spacing:-0.246628px;}
.ls91{letter-spacing:-0.245368px;}
.ls3f{letter-spacing:-0.242483px;}
.ls6e{letter-spacing:-0.237262px;}
.ls70{letter-spacing:-0.234514px;}
.ls83{letter-spacing:-0.226624px;}
.ls28{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.203603px;}
.ls45{letter-spacing:-0.164542px;}
.lsd{letter-spacing:-0.144000px;}
.ls5b{letter-spacing:-0.140520px;}
.lse{letter-spacing:-0.132480px;}
.ls39{letter-spacing:-0.115722px;}
.ls65{letter-spacing:-0.104732px;}
.ls3a{letter-spacing:-0.096320px;}
.ls82{letter-spacing:-0.091381px;}
.ls92{letter-spacing:-0.066240px;}
.ls66{letter-spacing:-0.042617px;}
.ls57{letter-spacing:-0.033944px;}
.ls6f{letter-spacing:-0.033895px;}
.lsa{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.048240px;}
.ls5f{letter-spacing:0.052366px;}
.ls67{letter-spacing:0.052474px;}
.ls6a{letter-spacing:0.066240px;}
.ls35{letter-spacing:0.069281px;}
.ls8b{letter-spacing:0.076427px;}
.lsc{letter-spacing:0.132480px;}
.ls8f{letter-spacing:0.178848px;}
.ls12{letter-spacing:0.241200px;}
.ls90{letter-spacing:0.258336px;}
.ls6{letter-spacing:0.264960px;}
.ls3e{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.331200px;}
.ls14{letter-spacing:0.385920px;}
.ls74{letter-spacing:0.395359px;}
.ls5d{letter-spacing:0.397440px;}
.ls8a{letter-spacing:0.420347px;}
.ls7f{letter-spacing:0.420407px;}
.ls3b{letter-spacing:0.462806px;}
.ls49{letter-spacing:0.483847px;}
.ls8d{letter-spacing:0.576288px;}
.ls78{letter-spacing:0.596160px;}
.ls71{letter-spacing:0.678744px;}
.ls63{letter-spacing:0.728640px;}
.ls48{letter-spacing:1.396855px;}
.ls37{letter-spacing:1.410912px;}
.ls44{letter-spacing:1.417950px;}
.ls1d{letter-spacing:1.457280px;}
.ls64{letter-spacing:2.185920px;}
.ls76{letter-spacing:2.742336px;}
.ls79{letter-spacing:2.835072px;}
.ls52{letter-spacing:2.938211px;}
.ls5{letter-spacing:3.404736px;}
.ls1a{letter-spacing:3.576960px;}
.ls1{letter-spacing:3.716064px;}
.ls1b{letter-spacing:4.279104px;}
.ls0{letter-spacing:4.305600px;}
.ls6c{letter-spacing:4.318848px;}
.ls4{letter-spacing:5.034240px;}
.ls32{letter-spacing:5.762880px;}
.ls33{letter-spacing:6.491520px;}
.ls2{letter-spacing:7.114176px;}
.ls3{letter-spacing:7.220160px;}
.ls1e{letter-spacing:7.948800px;}
.ls4e{letter-spacing:8.611200px;}
.ls77{letter-spacing:8.690688px;}
.ls21{letter-spacing:8.784000px;}
.ls4f{letter-spacing:9.339840px;}
.ls8e{letter-spacing:10.068480px;}
.ls61{letter-spacing:10.790496px;}
.ls1c{letter-spacing:11.525760px;}
.ls7{letter-spacing:12.254400px;}
.ls19{letter-spacing:12.983040px;}
.ls60{letter-spacing:13.711680px;}
.ls18{letter-spacing:14.374080px;}
.ls38{letter-spacing:16.560000px;}
.ls16{letter-spacing:22.322880px;}
.ls2b{letter-spacing:26.544530px;}
.ls8c{letter-spacing:40.605120px;}
.ls15{letter-spacing:44.784000px;}
.ls5a{letter-spacing:79.598533px;}
.ls58{letter-spacing:79.792598px;}
.ls36{letter-spacing:81.429921px;}
.ls62{letter-spacing:96.725501px;}
.ls1f{letter-spacing:97.271350px;}
.ls47{letter-spacing:98.578115px;}
.ls20{letter-spacing:99.016962px;}
.ls2f{letter-spacing:149.058523px;}
.ls4a{letter-spacing:158.975866px;}
.ls2e{letter-spacing:187.006057px;}
.ls54{letter-spacing:264.859756px;}
.ls30{letter-spacing:307.448858px;}
.ls8{letter-spacing:316.980000px;}
.ls4b{letter-spacing:465.865920px;}
.ls7a{letter-spacing:489.579840px;}
.ls55{letter-spacing:660.241179px;}
.ls34{letter-spacing:674.435840px;}
.ls4d{letter-spacing:728.640000px;}
.ls4c{letter-spacing:765.423508px;}
.ls6d{letter-spacing:805.677120px;}
.ls31{letter-spacing:1025.991360px;}
.ls17{letter-spacing:1092.240000px;}
.ls22{letter-spacing:1335.042000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8c{word-spacing:-660.241179px;}
.ws56{word-spacing:-200.394592px;}
.ws7c{word-spacing:-193.886031px;}
.ws75{word-spacing:-110.324672px;}
.ws7f{word-spacing:-81.172382px;}
.ws2f{word-spacing:-43.218230px;}
.ws82{word-spacing:-36.454839px;}
.ws0{word-spacing:-21.060000px;}
.wsd7{word-spacing:-18.288000px;}
.wsd8{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws2c{word-spacing:-17.784000px;}
.ws27{word-spacing:-17.712000px;}
.ws85{word-spacing:-16.957440px;}
.ws5d{word-spacing:-16.891200px;}
.ws6{word-spacing:-16.824960px;}
.ws1{word-spacing:-16.692480px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.427520px;}
.wsa3{word-spacing:-16.295040px;}
.ws9c{word-spacing:-16.228800px;}
.wsb1{word-spacing:-16.162560px;}
.ws2d{word-spacing:-16.096320px;}
.ws58{word-spacing:-16.082522px;}
.ws9d{word-spacing:-15.963840px;}
.ws5{word-spacing:-15.831360px;}
.ws9e{word-spacing:-15.433920px;}
.ws77{word-spacing:-14.787392px;}
.wsd6{word-spacing:-14.639040px;}
.ws98{word-spacing:-14.610170px;}
.wsd5{word-spacing:-14.506560px;}
.wsbb{word-spacing:-14.490101px;}
.wsc2{word-spacing:-14.487984px;}
.ws99{word-spacing:-14.453071px;}
.wsc6{word-spacing:-14.414411px;}
.wsbe{word-spacing:-14.410078px;}
.wsb5{word-spacing:-14.232910px;}
.ws59{word-spacing:-13.292215px;}
.wsb2{word-spacing:-12.387078px;}
.wsbf{word-spacing:-11.821321px;}
.wsc7{word-spacing:-11.819543px;}
.ws9b{word-spacing:-11.805020px;}
.ws79{word-spacing:-11.692974px;}
.wsb6{word-spacing:-11.628513px;}
.ws78{word-spacing:-11.155003px;}
.wsc8{word-spacing:-11.043673px;}
.wsc9{word-spacing:-10.699752px;}
.ws39{word-spacing:-10.440000px;}
.ws31{word-spacing:-10.283850px;}
.ws2e{word-spacing:-10.221309px;}
.ws36{word-spacing:-9.800679px;}
.ws7a{word-spacing:-9.596850px;}
.ws66{word-spacing:-8.885246px;}
.ws62{word-spacing:-8.824500px;}
.ws5f{word-spacing:-7.690169px;}
.ws83{word-spacing:-7.588080px;}
.wsc0{word-spacing:-7.523669px;}
.ws5b{word-spacing:-7.507994px;}
.ws5a{word-spacing:-7.472746px;}
.ws28{word-spacing:-7.469311px;}
.ws60{word-spacing:-7.343765px;}
.wsac{word-spacing:-7.219550px;}
.ws2b{word-spacing:-6.195361px;}
.ws84{word-spacing:-6.107976px;}
.ws2a{word-spacing:-6.091344px;}
.wsdc{word-spacing:-4.305600px;}
.wsdb{word-spacing:-3.974400px;}
.ws20{word-spacing:-3.709440px;}
.ws54{word-spacing:-3.576960px;}
.ws3a{word-spacing:-3.179520px;}
.ws11{word-spacing:-2.980800px;}
.ws87{word-spacing:-2.938211px;}
.ws10{word-spacing:-2.848320px;}
.ws12{word-spacing:-2.715840px;}
.ws3f{word-spacing:-2.318400px;}
.wsb7{word-spacing:-2.252160px;}
.ws3d{word-spacing:-2.185920px;}
.wsb8{word-spacing:-2.149356px;}
.wsb9{word-spacing:-1.863833px;}
.ws63{word-spacing:-1.860471px;}
.ws51{word-spacing:-1.589760px;}
.ws13{word-spacing:-1.457280px;}
.ws97{word-spacing:-1.059840px;}
.wsda{word-spacing:-0.993600px;}
.ws26{word-spacing:-0.916560px;}
.ws48{word-spacing:-0.861120px;}
.ws23{word-spacing:-0.728640px;}
.ws5e{word-spacing:-0.592351px;}
.ws7d{word-spacing:-0.512560px;}
.ws81{word-spacing:-0.511310px;}
.ws68{word-spacing:-0.462806px;}
.wsd4{word-spacing:-0.420347px;}
.ws95{word-spacing:-0.397440px;}
.wscb{word-spacing:-0.343969px;}
.wsd3{word-spacing:-0.343921px;}
.ws8a{word-spacing:-0.331200px;}
.ws6f{word-spacing:-0.288000px;}
.ws49{word-spacing:-0.264960px;}
.ws21{word-spacing:-0.132480px;}
.ws88{word-spacing:-0.080641px;}
.wsa9{word-spacing:-0.066240px;}
.wsa4{word-spacing:-0.052474px;}
.ws24{word-spacing:-0.048240px;}
.ws8{word-spacing:0.000000px;}
.ws64{word-spacing:0.032077px;}
.wsa5{word-spacing:0.042617px;}
.ws6a{word-spacing:0.096320px;}
.ws67{word-spacing:0.115722px;}
.ws3e{word-spacing:0.132480px;}
.ws25{word-spacing:0.144720px;}
.ws7{word-spacing:0.168480px;}
.ws69{word-spacing:0.240801px;}
.wsd9{word-spacing:0.245368px;}
.ws42{word-spacing:0.246628px;}
.ws55{word-spacing:0.288000px;}
.ws86{word-spacing:0.288320px;}
.wsa{word-spacing:0.331200px;}
.wsd0{word-spacing:0.335999px;}
.ws9{word-spacing:0.336960px;}
.ws53{word-spacing:0.397440px;}
.ws41{word-spacing:0.463680px;}
.wsa8{word-spacing:0.533558px;}
.ws22{word-spacing:0.596160px;}
.ws40{word-spacing:0.728640px;}
.ws72{word-spacing:0.861120px;}
.wscc{word-spacing:0.993600px;}
.wsb{word-spacing:1.059840px;}
.wscd{word-spacing:1.126080px;}
.wsd{word-spacing:1.324800px;}
.ws14{word-spacing:1.457280px;}
.wsaa{word-spacing:1.854720px;}
.wsd1{word-spacing:1.897236px;}
.wsca{word-spacing:1.897513px;}
.ws6d{word-spacing:2.053440px;}
.ws89{word-spacing:2.111307px;}
.ws6c{word-spacing:2.185920px;}
.ws6b{word-spacing:2.583360px;}
.wsba{word-spacing:2.589345px;}
.ws1f{word-spacing:2.782080px;}
.ws8b{word-spacing:2.914560px;}
.wse2{word-spacing:3.047040px;}
.ws1a{word-spacing:3.245760px;}
.ws1b{word-spacing:3.444480px;}
.wscf{word-spacing:3.510720px;}
.ws19{word-spacing:3.576960px;}
.wsd2{word-spacing:3.859553px;}
.ws80{word-spacing:3.900302px;}
.ws1c{word-spacing:4.173120px;}
.wsc{word-spacing:4.305600px;}
.ws1e{word-spacing:4.901760px;}
.ws70{word-spacing:5.034240px;}
.ws17{word-spacing:5.630400px;}
.ws16{word-spacing:5.762880px;}
.ws15{word-spacing:6.359040px;}
.ws6e{word-spacing:6.491520px;}
.wse1{word-spacing:6.822720px;}
.ws18{word-spacing:7.087680px;}
.ws1d{word-spacing:7.220160px;}
.ws52{word-spacing:7.816320px;}
.wse3{word-spacing:7.948800px;}
.ws90{word-spacing:8.478720px;}
.ws8f{word-spacing:8.611200px;}
.ws92{word-spacing:9.008640px;}
.ws93{word-spacing:9.207360px;}
.ws91{word-spacing:9.339840px;}
.ws32{word-spacing:9.633526px;}
.ws37{word-spacing:9.850822px;}
.ws94{word-spacing:9.936000px;}
.ws4c{word-spacing:10.068480px;}
.wsdd{word-spacing:10.399680px;}
.wsce{word-spacing:10.465920px;}
.ws4d{word-spacing:10.664640px;}
.ws4f{word-spacing:10.797120px;}
.ws71{word-spacing:11.194560px;}
.ws4e{word-spacing:11.393280px;}
.ws50{word-spacing:11.525760px;}
.ws4b{word-spacing:11.989440px;}
.wsf{word-spacing:12.121920px;}
.wse{word-spacing:12.254400px;}
.ws43{word-spacing:12.850560px;}
.ws4a{word-spacing:12.983040px;}
.ws96{word-spacing:13.314240px;}
.ws44{word-spacing:13.579200px;}
.ws47{word-spacing:13.711680px;}
.ws46{word-spacing:14.241600px;}
.ws45{word-spacing:14.374080px;}
.ws73{word-spacing:16.427520px;}
.ws74{word-spacing:16.560000px;}
.ws8d{word-spacing:17.156160px;}
.ws8e{word-spacing:17.884800px;}
.wsa6{word-spacing:18.414720px;}
.wsa7{word-spacing:19.342080px;}
.ws3b{word-spacing:22.190400px;}
.wse5{word-spacing:22.322880px;}
.wse4{word-spacing:22.455360px;}
.ws3c{word-spacing:23.051520px;}
.ws30{word-spacing:31.786742px;}
.wse0{word-spacing:33.120000px;}
.wsdf{word-spacing:33.848640px;}
.wsde{word-spacing:34.179840px;}
.wsb4{word-spacing:41.564748px;}
.ws29{word-spacing:47.791187px;}
.wsad{word-spacing:54.255086px;}
.wsab{word-spacing:55.763396px;}
.ws38{word-spacing:59.825236px;}
.wsa1{word-spacing:60.000713px;}
.ws61{word-spacing:61.644667px;}
.ws35{word-spacing:63.697368px;}
.wsb3{word-spacing:63.700621px;}
.ws76{word-spacing:65.113106px;}
.ws33{word-spacing:65.732344px;}
.ws34{word-spacing:66.171893px;}
.ws65{word-spacing:68.246550px;}
.ws5c{word-spacing:68.587115px;}
.ws9f{word-spacing:68.888509px;}
.wsc1{word-spacing:80.202092px;}
.wsc4{word-spacing:81.837654px;}
.wsc5{word-spacing:82.180882px;}
.ws7e{word-spacing:82.593514px;}
.wsc3{word-spacing:91.598944px;}
.wsbd{word-spacing:112.135043px;}
.wsaf{word-spacing:119.560896px;}
.wsbc{word-spacing:121.563384px;}
.wsae{word-spacing:122.298842px;}
.wsb0{word-spacing:131.028611px;}
.ws57{word-spacing:147.129411px;}
.ws9a{word-spacing:187.917164px;}
.ws7b{word-spacing:263.403859px;}
.wsa0{word-spacing:323.203001px;}
.wsa2{word-spacing:382.493966px;}
._3b{margin-left:-1284.113026px;}
._a{margin-left:-329.781968px;}
._9{margin-left:-324.375552px;}
._b{margin-left:-14.207259px;}
._11{margin-left:-12.760648px;}
._5{margin-left:-3.866112px;}
._2{margin-left:-2.719872px;}
._1{margin-left:-1.254528px;}
._0{width:1.684800px;}
._4{width:2.806272px;}
._3{width:4.646016px;}
._24{width:6.009947px;}
._c{width:7.348608px;}
._8{width:8.843328px;}
._22{width:11.062080px;}
._7{width:12.287808px;}
._26{width:13.512960px;}
._23{width:19.736064px;}
._6{width:23.213952px;}
._25{width:26.835878px;}
._1e{width:36.878842px;}
._39{width:50.310220px;}
._34{width:54.241463px;}
._1a{width:56.723789px;}
._19{width:63.547311px;}
._16{width:72.019833px;}
._d{width:73.389151px;}
._36{width:88.098627px;}
._20{width:92.156241px;}
._17{width:94.253415px;}
._e{width:96.303038px;}
._28{width:97.321565px;}
._f{width:99.018947px;}
._15{width:114.895005px;}
._3c{width:117.984527px;}
._1f{width:119.900539px;}
._35{width:122.706247px;}
._14{width:124.691347px;}
._37{width:126.223549px;}
._27{width:127.779253px;}
._18{width:137.967014px;}
._1b{width:139.716310px;}
._38{width:142.497091px;}
._2a{width:146.137150px;}
._29{width:147.509054px;}
._3a{width:152.683455px;}
._1d{width:164.834245px;}
._33{width:181.762560px;}
._1c{width:187.057570px;}
._21{width:194.656191px;}
._32{width:198.322560px;}
._2e{width:205.010496px;}
._3d{width:208.059840px;}
._31{width:222.599808px;}
._2d{width:225.348480px;}
._30{width:230.482368px;}
._10{width:243.104445px;}
._2c{width:259.200000px;}
._2f{width:275.302080px;}
._2b{width:360.316800px;}
._12{width:800.623989px;}
._13{width:823.863606px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs26{font-size:24.855000px;}
.fs24{font-size:26.788200px;}
.fs8{font-size:29.006400px;}
.fs2f{font-size:29.085600px;}
.fsa{font-size:29.086200px;}
.fs3e{font-size:30.460200px;}
.fs15{font-size:31.182600px;}
.fs40{font-size:32.374800px;}
.fs2c{font-size:33.861600px;}
.fs36{font-size:33.894600px;}
.fs29{font-size:33.944400px;}
.fs1b{font-size:34.640400px;}
.fs46{font-size:35.052600px;}
.fs2d{font-size:35.130000px;}
.fs6{font-size:35.232600px;}
.fs17{font-size:35.248800px;}
.fs1f{font-size:35.641200px;}
.fs45{font-size:38.213400px;}
.fs3d{font-size:38.218800px;}
.fs25{font-size:38.387400px;}
.fs23{font-size:40.320600px;}
.fs33{font-size:41.046600px;}
.fse{font-size:41.135400px;}
.fs1d{font-size:41.625000px;}
.fs11{font-size:41.760000px;}
.fsb{font-size:42.063000px;}
.fs21{font-size:42.253800px;}
.fs31{font-size:42.617400px;}
.fs38{font-size:47.079000px;}
.fs43{font-size:47.852400px;}
.fs3b{font-size:47.859600px;}
.fs20{font-size:48.053400px;}
.fs13{font-size:48.160200px;}
.fs22{font-size:48.167400px;}
.fs3{font-size:48.240000px;}
.fs30{font-size:52.366200px;}
.fs32{font-size:52.474200px;}
.fs3f{font-size:52.687200px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:54.600000px;}
.fs9{font-size:54.750000px;}
.fs41{font-size:55.999800px;}
.fs39{font-size:56.479800px;}
.fs37{font-size:56.562000px;}
.fs42{font-size:57.492000px;}
.fs3a{font-size:57.500400px;}
.fs14{font-size:57.850800px;}
.fs12{font-size:57.861000px;}
.fs3c{font-size:57.871800px;}
.fs44{font-size:57.889200px;}
.fs2b{font-size:58.571400px;}
.fs35{font-size:58.628400px;}
.fs28{font-size:58.714200px;}
.fs1a{font-size:59.919000px;}
.fs47{font-size:60.631800px;}
.fs5{font-size:60.942600px;}
.fs16{font-size:60.970800px;}
.fs1e{font-size:61.650000px;}
.fs1c{font-size:63.133407px;}
.fs18{font-size:64.189302px;}
.fs2e{font-size:65.083200px;}
.fsf{font-size:65.223600px;}
.fs1{font-size:66.240000px;}
.fsc{font-size:66.694800px;}
.fs34{font-size:70.999800px;}
.fs10{font-size:71.152800px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:72.757800px;}
.fs0{font-size:84.240000px;}
.fs27{font-size:96.328200px;}
.fs19{font-size:98.304600px;}
.fs2a{font-size:100.486200px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.567150px;}
.y1c7{bottom:3.600000px;}
.ya4{bottom:3.750150px;}
.y111{bottom:3.760500px;}
.y150{bottom:3.960000px;}
.y16b{bottom:4.065000px;}
.y1b9{bottom:4.140000px;}
.y1c8{bottom:4.320000px;}
.y19f{bottom:4.356600px;}
.y195{bottom:4.815900px;}
.yf7{bottom:4.853700px;}
.y19b{bottom:5.117400px;}
.y196{bottom:5.268600px;}
.y148{bottom:5.450250px;}
.y9b{bottom:5.570250px;}
.y32{bottom:5.667930px;}
.y86{bottom:5.668200px;}
.y1bf{bottom:5.921100px;}
.y5f{bottom:5.929500px;}
.y5e{bottom:5.929650px;}
.ya5{bottom:6.000150px;}
.y132{bottom:6.147900px;}
.yaf{bottom:6.300150px;}
.y12f{bottom:6.300300px;}
.yf2{bottom:6.817800px;}
.ye2{bottom:6.835200px;}
.yb0{bottom:6.856050px;}
.y43{bottom:6.891450px;}
.ybc{bottom:7.360200px;}
.yf8{bottom:7.395900px;}
.ya6{bottom:7.404150px;}
.y3d{bottom:7.441200px;}
.yfe{bottom:7.461750px;}
.y1c0{bottom:7.579050px;}
.y130{bottom:7.579350px;}
.y154{bottom:7.655850px;}
.y1c2{bottom:7.740000px;}
.y60{bottom:7.816050px;}
.y59{bottom:8.384400px;}
.yab{bottom:8.525250px;}
.y5a{bottom:9.094950px;}
.y3e{bottom:9.100050px;}
.y44{bottom:9.125100px;}
.yff{bottom:9.125250px;}
.yee{bottom:9.380850px;}
.ydf{bottom:9.587100px;}
.y19c{bottom:9.798600px;}
.y14b{bottom:10.351050px;}
.y9d{bottom:10.579050px;}
.y88{bottom:10.764900px;}
.yaa{bottom:10.788900px;}
.yb1{bottom:11.356478px;}
.yf3{bottom:11.713800px;}
.yef{bottom:11.714400px;}
.ye0{bottom:11.743200px;}
.ye3{bottom:11.743350px;}
.yf9{bottom:12.157050px;}
.yf1{bottom:12.858150px;}
.y3c{bottom:12.891750px;}
.yfd{bottom:12.927150px;}
.y42{bottom:13.164750px;}
.y1c4{bottom:13.860000px;}
.y145{bottom:14.244900px;}
.y98{bottom:14.558250px;}
.y30{bottom:14.809277px;}
.y83{bottom:14.813850px;}
.y16c{bottom:15.599550px;}
.yf0{bottom:15.603750px;}
.ye1{bottom:15.871650px;}
.y147{bottom:17.084400px;}
.y9a{bottom:17.460450px;}
.y85{bottom:17.767050px;}
.y1a0{bottom:18.643200px;}
.y68{bottom:19.749000px;}
.y112{bottom:20.612400px;}
.ybd{bottom:20.615100px;}
.y14a{bottom:21.985200px;}
.y9e{bottom:22.469100px;}
.y96{bottom:22.469400px;}
.y34{bottom:22.853648px;}
.y2e{bottom:22.853700px;}
.y89{bottom:22.863750px;}
.y81{bottom:22.863900px;}
.y14f{bottom:23.040000px;}
.y84{bottom:29.056200px;}
.y146{bottom:29.543100px;}
.y37{bottom:30.240000px;}
.y31{bottom:30.709500px;}
.y99{bottom:31.035900px;}
.y155{bottom:32.888700px;}
.y94{bottom:33.844950px;}
.y87{bottom:34.152900px;}
.y149{bottom:34.443900px;}
.y16e{bottom:34.536750px;}
.y82{bottom:35.343750px;}
.yc0{bottom:35.577900px;}
.y33{bottom:35.803950px;}
.y114{bottom:35.862300px;}
.y9c{bottom:36.044550px;}
.y95{bottom:36.044850px;}
.y97{bottom:37.215150px;}
.y144{bottom:38.566650px;}
.y2f{bottom:40.085220px;}
.y1d{bottom:46.260000px;}
.y69{bottom:46.514250px;}
.y16f{bottom:46.764878px;}
.y1a2{bottom:49.451100px;}
.y157{bottom:50.077500px;}
.yc1{bottom:57.602693px;}
.y170{bottom:58.993006px;}
.yd5{bottom:59.711700px;}
.y6b{bottom:63.578100px;}
.y66{bottom:64.260000px;}
.yd6{bottom:64.475550px;}
.y1a3{bottom:66.061650px;}
.y11f{bottom:68.382000px;}
.y171{bottom:71.125414px;}
.y156{bottom:78.697350px;}
.yc2{bottom:79.553542px;}
.y158{bottom:81.660900px;}
.y11e{bottom:81.752100px;}
.y115{bottom:81.963672px;}
.y1a4{bottom:82.586250px;}
.y172{bottom:83.353542px;}
.yd2{bottom:85.392933px;}
.yd4{bottom:85.395600px;}
.yd3{bottom:90.642900px;}
.y11d{bottom:95.122200px;}
.y173{bottom:95.581670px;}
.y1a5{bottom:99.196800px;}
.yd1{bottom:99.273300px;}
.yc3{bottom:101.504391px;}
.y7b{bottom:101.949900px;}
.y6c{bottom:107.584483px;}
.y174{bottom:107.714078px;}
.y16d{bottom:107.961750px;}
.y11c{bottom:108.492450px;}
.yd0{bottom:112.046400px;}
.y159{bottom:113.159700px;}
.y1a6{bottom:115.721400px;}
.y7a{bottom:116.934900px;}
.y175{bottom:119.942206px;}
.y1e9{bottom:120.236400px;}
.y11b{bottom:121.862550px;}
.y1a1{bottom:122.692950px;}
.yc4{bottom:123.455241px;}
.ycf{bottom:124.819350px;}
.y116{bottom:128.065045px;}
.y1b5{bottom:129.774240px;}
.y137{bottom:130.488480px;}
.y79{bottom:131.919900px;}
.y176{bottom:132.170334px;}
.y1a7{bottom:132.331950px;}
.yce{bottom:137.592450px;}
.y1e8{bottom:139.860000px;}
.y10b{bottom:142.007040px;}
.y177{bottom:144.302743px;}
.y15a{bottom:144.658350px;}
.yc5{bottom:145.342709px;}
.y78{bottom:146.905050px;}
.y163{bottom:147.960600px;}
.y1a8{bottom:148.856550px;}
.y136{bottom:150.112080px;}
.ycd{bottom:150.365400px;}
.y6d{bottom:151.590865px;}
.ybe{bottom:152.881650px;}
.y19e{bottom:153.645000px;}
.y1b4{bottom:153.720000px;}
.yba{bottom:154.424160px;}
.y178{bottom:156.530870px;}
.y1e7{bottom:159.301440px;}
.y10a{bottom:161.630640px;}
.y77{bottom:161.890050px;}
.y162{bottom:162.609150px;}
.ybf{bottom:164.414466px;}
.y1a9{bottom:165.467100px;}
.yc6{bottom:167.293558px;}
.y179{bottom:168.758998px;}
.y113{bottom:169.354650px;}
.y135{bottom:169.553520px;}
.y182{bottom:170.540850px;}
.yb9{bottom:173.865600px;}
.y117{bottom:174.091837px;}
.y6a{bottom:174.449850px;}
.y15b{bottom:176.241750px;}
.y74{bottom:176.871190px;}
.y76{bottom:176.875050px;}
.y65{bottom:176.938560px;}
.y161{bottom:177.257850px;}
.y17a{bottom:180.891407px;}
.y109{bottom:181.072080px;}
.y1aa{bottom:181.991700px;}
.y75{bottom:182.851800px;}
.y181{bottom:183.022200px;}
.y1e6{bottom:187.734960px;}
.y134{bottom:188.994960px;}
.yc7{bottom:189.244407px;}
.y160{bottom:191.906400px;}
.y17b{bottom:193.119535px;}
.yb8{bottom:193.307040px;}
.y73{bottom:193.679100px;}
.y6e{bottom:195.500928px;}
.y180{bottom:195.503550px;}
.y64{bottom:196.376400px;}
.y1ab{bottom:198.602250px;}
.y108{bottom:200.513520px;}
.y17c{bottom:205.347662px;}
.y15f{bottom:206.554950px;}
.y1e5{bottom:207.358560px;}
.y15c{bottom:207.740400px;}
.y133{bottom:208.618560px;}
.y17f{bottom:208.845750px;}
.yc8{bottom:211.195256px;}
.y1b3{bottom:211.243350px;}
.yb7{bottom:212.930640px;}
.y1ac{bottom:215.126700px;}
.y63{bottom:216.000000px;}
.y107{bottom:220.137120px;}
.y118{bottom:220.193209px;}
.y12e{bottom:220.395000px;}
.y17e{bottom:221.327100px;}
.y1b2{bottom:223.722900px;}
.y1e4{bottom:226.800000px;}
.y12d{bottom:228.052080px;}
.y131{bottom:228.060000px;}
.y1ad{bottom:231.737400px;}
.yb6{bottom:232.372080px;}
.yc9{bottom:233.146105px;}
.y17d{bottom:233.808600px;}
.y15d{bottom:239.239200px;}
.y6f{bottom:239.507311px;}
.y106{bottom:239.578560px;}
.y1b1{bottom:239.731350px;}
.y62{bottom:244.800000px;}
.y12c{bottom:247.493520px;}
.yb5{bottom:251.813520px;}
.yca{bottom:255.096954px;}
.y1e3{bottom:255.239280px;}
.y1b0{bottom:255.739650px;}
.y105{bottom:259.020000px;}
.y119{bottom:266.294582px;}
.y12b{bottom:267.117120px;}
.y15e{bottom:270.822600px;}
.yb4{bottom:271.437120px;}
.y1af{bottom:271.748100px;}
.y1e2{bottom:274.862880px;}
.ycb{bottom:277.047804px;}
.y61{bottom:283.138560px;}
.y70{bottom:283.417373px;}
.y12a{bottom:286.558560px;}
.y1ae{bottom:287.756550px;}
.y104{bottom:287.820000px;}
.yb3{bottom:290.878560px;}
.y58{bottom:293.520000px;}
.y1e1{bottom:294.304320px;}
.y5c{bottom:296.520000px;}
.ycc{bottom:299.072597px;}
.y57{bottom:302.568480px;}
.y5b{bottom:302.580000px;}
.yae{bottom:302.670000px;}
.y129{bottom:306.000000px;}
.y169{bottom:307.077840px;}
.yad{bottom:310.316400px;}
.yb2{bottom:310.320000px;}
.y11a{bottom:312.321374px;}
.ya9{bottom:319.395000px;}
.y56{bottom:322.192080px;}
.y1e0{bottom:322.737840px;}
.y103{bottom:326.333520px;}
.y71{bottom:327.423756px;}
.ya8{bottom:329.938560px;}
.yac{bottom:329.940000px;}
.y128{bottom:334.800000px;}
.y168{bottom:335.511360px;}
.y55{bottom:341.633520px;}
.y1df{bottom:342.361440px;}
.ya3{bottom:343.320000px;}
.y102{bottom:345.774960px;}
.ya7{bottom:349.380000px;}
.ya2{bottom:349.380720px;}
.y167{bottom:355.134960px;}
.y54{bottom:361.074960px;}
.y1de{bottom:361.802880px;}
.y101{bottom:365.216400px;}
.ya1{bottom:368.822160px;}
.y72{bottom:371.333818px;}
.y127{bottom:373.318560px;}
.y166{bottom:374.576400px;}
.yfc{bottom:375.720000px;}
.y53{bottom:380.698560px;}
.yfb{bottom:384.838560px;}
.y100{bottom:384.840000px;}
.y1dd{bottom:390.236400px;}
.y126{bottom:392.760000px;}
.y93{bottom:393.420000px;}
.y9f{bottom:393.480000px;}
.y52{bottom:400.140000px;}
.y165{bottom:403.192080px;}
.yfa{bottom:404.280000px;}
.y1dc{bottom:409.860000px;}
.ya0{bottom:415.802880px;}
.yf6{bottom:416.070000px;}
.y125{bottom:421.560000px;}
.yf5{bottom:423.724320px;}
.y153{bottom:427.245000px;}
.y164{bottom:427.320000px;}
.y51{bottom:428.940000px;}
.y1c{bottom:432.794880px;}
.y92{bottom:433.984320px;}
.y1db{bottom:438.298560px;}
.yed{bottom:448.470000px;}
.y1da{bottom:457.740000px;}
.yf4{bottom:460.620000px;}
.yec{bottom:464.398560px;}
.y124{bottom:468.897840px;}
.y1b{bottom:469.690560px;}
.y91{bottom:470.880000px;}
.y50{bottom:476.267040px;}
.y19a{bottom:480.121500px;}
.y19d{bottom:480.240000px;}
.y1d9{bottom:486.365040px;}
.y123{bottom:488.521440px;}
.y1a{bottom:488.767680px;}
.y199{bottom:490.502880px;}
.yeb{bottom:492.120000px;}
.y4f{bottom:495.890640px;}
.y90{bottom:499.680000px;}
.y19{bottom:507.662640px;}
.y1d8{bottom:514.798560px;}
.y4e{bottom:515.332080px;}
.y122{bottom:517.137120px;}
.yea{bottom:520.920000px;}
.y18{bottom:526.557600px;}
.y198{bottom:527.398560px;}
.y1d7{bottom:534.240000px;}
.y4d{bottom:534.773520px;}
.y121{bottom:536.032080px;}
.y8f{bottom:538.012080px;}
.y194{bottom:540.795000px;}
.y17{bottom:545.634720px;}
.y193{bottom:546.812640px;}
.y197{bottom:546.840000px;}
.y4c{bottom:554.397120px;}
.y8e{bottom:557.453520px;}
.ye9{bottom:559.256400px;}
.y110{bottom:560.070000px;}
.y120{bottom:560.160000px;}
.y1d6{bottom:563.040000px;}
.y16{bottom:564.529680px;}
.y192{bottom:566.254080px;}
.y4b{bottom:573.838560px;}
.y8d{bottom:577.077120px;}
.ye8{bottom:578.880000px;}
.y15{bottom:583.606800px;}
.y191{bottom:585.877680px;}
.y4a{bottom:593.280000px;}
.y8c{bottom:596.518560px;}
.ye7{bottom:598.321440px;}
.y14{bottom:602.501760px;}
.y190{bottom:605.319120px;}
.y1d5{bottom:610.544160px;}
.y8b{bottom:615.960000px;}
.ye6{bottom:617.762880px;}
.y13{bottom:621.396720px;}
.y49{bottom:622.080000px;}
.y18f{bottom:624.760560px;}
.y1d4{bottom:629.985600px;}
.ye5{bottom:637.386480px;}
.y12{bottom:640.473840px;}
.y80{bottom:640.695000px;}
.y8a{bottom:640.800000px;}
.y18e{bottom:644.384160px;}
.y1d3{bottom:649.427040px;}
.y11{bottom:659.368800px;}
.yde{bottom:661.920000px;}
.y18d{bottom:663.825600px;}
.y1d2{bottom:669.050640px;}
.y48{bottom:669.593520px;}
.ye4{bottom:674.100000px;}
.y7f{bottom:677.701440px;}
.ydd{bottom:677.874960px;}
.y10{bottom:678.445920px;}
.y18c{bottom:683.267040px;}
.y1d1{bottom:688.492080px;}
.y47{bottom:689.034960px;}
.yf{bottom:697.340880px;}
.y18b{bottom:702.890640px;}
.ydc{bottom:705.596400px;}
.y1d0{bottom:707.933520px;}
.y46{bottom:708.476400px;}
.y7e{bottom:714.597120px;}
.ye{bottom:716.418000px;}
.y41{bottom:718.995000px;}
.y18a{bottom:722.332080px;}
.ydb{bottom:725.220000px;}
.y1cf{bottom:727.557120px;}
.y45{bottom:728.100000px;}
.y7d{bottom:733.674240px;}
.yd{bottom:735.312960px;}
.y189{bottom:741.773520px;}
.y1ce{bottom:746.998560px;}
.y40{bottom:747.538560px;}
.yda{bottom:754.020000px;}
.yc{bottom:754.207920px;}
.y152{bottom:754.380000px;}
.y67{bottom:757.545000px;}
.y7c{bottom:757.620000px;}
.y3b{bottom:757.920000px;}
.y188{bottom:761.397120px;}
.y1cd{bottom:766.440000px;}
.y3a{bottom:766.974960px;}
.y3f{bottom:766.980000px;}
.yb{bottom:773.285040px;}
.y151{bottom:779.760000px;}
.y187{bottom:780.838560px;}
.y39{bottom:786.598560px;}
.ya{bottom:792.180000px;}
.yd9{bottom:792.537120px;}
.y1cc{bottom:795.240000px;}
.y14e{bottom:798.840000px;}
.y186{bottom:800.280000px;}
.y38{bottom:806.040000px;}
.yd8{bottom:811.432080px;}
.y36{bottom:821.700000px;}
.y185{bottom:829.080000px;}
.y9{bottom:829.260000px;}
.y2d{bottom:830.595000px;}
.ybb{bottom:835.470000px;}
.yd7{bottom:835.560000px;}
.y1cb{bottom:842.757120px;}
.y14d{bottom:850.494960px;}
.y35{bottom:853.200000px;}
.y1ca{bottom:862.198560px;}
.y184{bottom:867.774240px;}
.y2c{bottom:869.014080px;}
.y8{bottom:876.972240px;}
.y1c9{bottom:881.640000px;}
.y143{bottom:883.545000px;}
.y16a{bottom:891.645000px;}
.y183{bottom:891.720000px;}
.y7{bottom:895.867200px;}
.y2b{bottom:896.917680px;}
.y10f{bottom:901.259280px;}
.y14c{bottom:906.120000px;}
.y1c6{bottom:907.200000px;}
.y2a{bottom:916.359120px;}
.y142{bottom:919.789920px;}
.y10e{bottom:920.336400px;}
.y6{bottom:923.770800px;}
.y1c1{bottom:926.460000px;}
.y1be{bottom:926.520000px;}
.y1c3{bottom:934.200000px;}
.y1c5{bottom:935.460000px;}
.y29{bottom:935.800560px;}
.y10d{bottom:939.231360px;}
.y28{bottom:955.424160px;}
.y1bd{bottom:955.980000px;}
.y141{bottom:956.503440px;}
.y5{bottom:960.484320px;}
.y10c{bottom:963.177120px;}
.y27{bottom:974.865600px;}
.y140{bottom:976.127040px;}
.y26{bottom:994.307040px;}
.y13f{bottom:995.568480px;}
.y4{bottom:997.380000px;}
.y1bc{bottom:1007.642880px;}
.y25{bottom:1013.930640px;}
.y13e{bottom:1015.009920px;}
.y1bb{bottom:1026.720000px;}
.y24{bottom:1033.372080px;}
.y13d{bottom:1034.633520px;}
.y1ba{bottom:1051.380000px;}
.y23{bottom:1052.813520px;}
.y13c{bottom:1054.074960px;}
.y3{bottom:1063.082160px;}
.y1b8{bottom:1070.280000px;}
.y22{bottom:1072.437120px;}
.y13b{bottom:1073.516400px;}
.y1b7{bottom:1090.080000px;}
.y2{bottom:1090.081080px;}
.y21{bottom:1091.878560px;}
.y13a{bottom:1093.140000px;}
.y20{bottom:1111.320000px;}
.y1{bottom:1117.080000px;}
.y139{bottom:1121.573520px;}
.y1f{bottom:1140.120000px;}
.y138{bottom:1141.014960px;}
.y1b6{bottom:1141.743600px;}
.y1e{bottom:1204.920000px;}
.h7e{height:18.900000px;}
.h7d{height:19.080000px;}
.h83{height:19.260000px;}
.h10{height:20.465941px;}
.h59{height:20.521822px;}
.h14{height:20.522246px;}
.h71{height:21.075000px;}
.h35{height:22.500000px;}
.h74{height:22.842571px;}
.h53{height:23.891607px;}
.h65{height:23.914891px;}
.h4d{height:23.950028px;}
.h32{height:24.441103px;}
.h80{height:24.731937px;}
.h56{height:24.735088px;}
.hb{height:24.858939px;}
.h2a{height:24.870369px;}
.h3b{height:25.147233px;}
.h19{height:25.198500px;}
.h3d{height:25.200000px;}
.h49{height:25.922988px;}
.h55{height:26.625000px;}
.he{height:27.300000px;}
.h12{height:27.375000px;}
.h47{height:27.939255px;}
.h7f{height:28.740000px;}
.h5e{height:28.800000px;}
.h16{height:28.801500px;}
.h3e{height:28.963499px;}
.h36{height:29.308228px;}
.h72{height:29.895021px;}
.h4f{height:30.750000px;}
.h39{height:30.825000px;}
.h26{height:32.522477px;}
.h44{height:33.444357px;}
.hf{height:36.418200px;}
.h13{height:36.518250px;}
.h7c{height:37.980000px;}
.h67{height:37.981500px;}
.h11{height:38.523926px;}
.h15{height:38.629761px;}
.h52{height:39.067124px;}
.h64{height:39.105143px;}
.h4c{height:39.162371px;}
.h75{height:39.511578px;}
.h7b{height:39.855382px;}
.h70{height:39.861014px;}
.h31{height:39.965973px;}
.h48{height:40.036859px;}
.h1a{height:40.372146px;}
.ha{height:40.648714px;}
.h29{height:40.667524px;}
.h4b{height:40.767379px;}
.h17{height:41.282534px;}
.h54{height:41.326012px;}
.h66{height:41.366229px;}
.h4e{height:41.426767px;}
.h30{height:41.603915px;}
.h46{height:42.053126px;}
.h33{height:42.276833px;}
.h9{height:42.314637px;}
.h28{height:42.334218px;}
.h81{height:42.779761px;}
.h3a{height:42.805811px;}
.hc{height:42.999051px;}
.h2b{height:43.018948px;}
.h58{height:43.410494px;}
.h3c{height:43.498169px;}
.h40{height:43.504141px;}
.h34{height:43.835793px;}
.h43{height:44.069393px;}
.h5c{height:44.448616px;}
.h2c{height:44.568939px;}
.h62{height:45.189605px;}
.h1d{height:45.287089px;}
.h57{height:45.825183px;}
.h3f{height:45.924039px;}
.h1f{height:46.308596px;}
.h82{height:46.639687px;}
.h38{height:48.024000px;}
.h6a{height:49.101926px;}
.h79{height:49.908558px;}
.h6e{height:49.916067px;}
.h42{height:50.118195px;}
.h24{height:50.229584px;}
.h45{height:50.237093px;}
.h37{height:50.695312px;}
.h63{height:51.300000px;}
.h73{height:51.709605px;}
.h27{height:51.825000px;}
.h6{height:52.971680px;}
.h8{height:53.325000px;}
.h5b{height:54.616310px;}
.h5d{height:54.728951px;}
.h2e{height:55.425000px;}
.h51{height:55.540124px;}
.h6b{height:58.906666px;}
.h69{height:58.992398px;}
.h78{height:59.962359px;}
.h6d{height:59.971120px;}
.h23{height:60.347215px;}
.h6f{height:60.358479px;}
.h7a{height:60.376627px;}
.h25{height:61.377891px;}
.h86{height:64.978594px;}
.h4{height:65.010937px;}
.h87{height:65.013818px;}
.h85{height:65.016697px;}
.h20{height:65.025338px;}
.h1e{height:65.457299px;}
.h3{height:66.757500px;}
.h4a{height:66.884731px;}
.h2f{height:68.256417px;}
.h60{height:68.867602px;}
.h84{height:69.086250px;}
.h61{height:69.682421px;}
.h50{height:69.771180px;}
.h1b{height:69.832582px;}
.h5f{height:70.572899px;}
.hd{height:71.280000px;}
.h18{height:71.407802px;}
.h5{height:72.562500px;}
.h1c{height:73.462796px;}
.h7{height:75.093750px;}
.h21{height:77.591402px;}
.h2{height:84.898125px;}
.h76{height:93.825337px;}
.h2d{height:146.353658px;}
.h6c{height:264.973500px;}
.h77{height:308.475000px;}
.h68{height:310.125000px;}
.h41{height:321.300000px;}
.h5a{height:328.123500px;}
.h22{height:399.226500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:30.223500px;}
.w14{width:30.225000px;}
.w5{width:30.301500px;}
.w24{width:33.676500px;}
.wd{width:36.525000px;}
.wf{width:37.800000px;}
.w13{width:51.823500px;}
.w20{width:54.000000px;}
.w2{width:78.525000px;}
.w6{width:81.375000px;}
.w8{width:86.925000px;}
.w1c{width:89.280000px;}
.w1d{width:89.281500px;}
.w1e{width:89.458500px;}
.w1b{width:89.460000px;}
.w7{width:89.850000px;}
.w19{width:95.580000px;}
.w23{width:95.760000px;}
.w9{width:103.650000px;}
.wb{width:103.875000px;}
.w1a{width:106.380000px;}
.we{width:114.975000px;}
.w16{width:157.125000px;}
.w3{width:169.920000px;}
.w17{width:176.025000px;}
.wc{width:186.450000px;}
.w18{width:218.100000px;}
.w12{width:256.650000px;}
.w21{width:376.350000px;}
.w11{width:387.675000px;}
.wa{width:509.400000px;}
.w1f{width:509.925000px;}
.w15{width:510.300000px;}
.w10{width:510.525000px;}
.w22{width:510.675000px;}
.w1{width:892.500000px;}
.w0{width:892.620000px;}
.x0{left:0.000000px;}
.x14{left:2.031362px;}
.x19{left:3.966900px;}
.x5a{left:5.143950px;}
.x56{left:6.284550px;}
.x41{left:7.344713px;}
.x1a{left:10.248000px;}
.x1c{left:11.741250px;}
.x59{left:13.908750px;}
.x29{left:15.924750px;}
.x44{left:16.971900px;}
.x40{left:18.361800px;}
.x6a{left:19.800000px;}
.x7f{left:24.840000px;}
.x66{left:26.706150px;}
.x2a{left:27.789300px;}
.x53{left:29.454600px;}
.xe{left:31.391400px;}
.x88{left:33.660000px;}
.x51{left:35.319300px;}
.x22{left:36.457050px;}
.x62{left:38.078550px;}
.x36{left:39.469800px;}
.x32{left:41.728350px;}
.x13{left:43.753500px;}
.x10{left:45.140741px;}
.xf{left:46.533454px;}
.x34{left:47.702850px;}
.x12{left:51.813648px;}
.x11{left:54.032100px;}
.x35{left:56.547150px;}
.x31{left:60.311100px;}
.x25{left:65.400300px;}
.x33{left:69.484650px;}
.x39{left:71.363700px;}
.x50{left:73.201500px;}
.x49{left:79.331550px;}
.x65{left:81.648450px;}
.x67{left:86.934000px;}
.x5d{left:88.411050px;}
.x3c{left:97.840200px;}
.x3b{left:99.611250px;}
.xa{left:106.380000px;}
.xc{left:110.652480px;}
.x1d{left:112.065000px;}
.x2{left:113.933160px;}
.x1{left:118.440000px;}
.x2f{left:122.230800px;}
.x6f{left:124.379280px;}
.x4d{left:128.191050px;}
.x2b{left:132.231900px;}
.x3a{left:134.104200px;}
.x7{left:137.536560px;}
.x2c{left:140.892300px;}
.x2d{left:145.222350px;}
.x5f{left:149.217120px;}
.x73{left:150.540000px;}
.x5{left:152.639280px;}
.x54{left:155.293650px;}
.x17{left:165.600000px;}
.x80{left:166.680000px;}
.x55{left:168.051000px;}
.x85{left:174.840000px;}
.x72{left:182.337120px;}
.xb{left:189.180000px;}
.x27{left:191.640000px;}
.x1e{left:193.320000px;}
.x1f{left:197.340000px;}
.x69{left:201.960000px;}
.x4a{left:203.279550px;}
.x74{left:204.480000px;}
.x4e{left:205.736400px;}
.x4{left:207.900000px;}
.x4b{left:210.477000px;}
.x79{left:211.685040px;}
.x4c{left:214.075650px;}
.x7a{left:217.620000px;}
.x77{left:230.734200px;}
.x70{left:232.497900px;}
.x6e{left:234.102300px;}
.x86{left:236.160000px;}
.x4f{left:254.640000px;}
.x48{left:257.260350px;}
.x28{left:258.419400px;}
.x75{left:260.040000px;}
.x81{left:262.260000px;}
.x78{left:276.296400px;}
.x20{left:287.100000px;}
.x21{left:291.315000px;}
.x3{left:295.196580px;}
.x43{left:305.565000px;}
.x5e{left:307.798800px;}
.x60{left:312.480000px;}
.x3f{left:320.115000px;}
.x7b{left:324.000000px;}
.x61{left:336.315000px;}
.x64{left:339.240000px;}
.x38{left:355.065000px;}
.x42{left:356.580000px;}
.x82{left:368.640000px;}
.x46{left:374.865000px;}
.x23{left:378.180000px;}
.x24{left:382.440000px;}
.x71{left:386.274900px;}
.x6{left:388.089360px;}
.x30{left:394.440000px;}
.x87{left:396.720000px;}
.x6b{left:397.800000px;}
.x9{left:401.220000px;}
.xd{left:407.040000px;}
.x8{left:410.958720px;}
.x47{left:412.560000px;}
.x45{left:420.480000px;}
.x26{left:443.340000px;}
.x83{left:457.920000px;}
.x15{left:485.460000px;}
.x6c{left:487.080000px;}
.x37{left:498.240000px;}
.x7c{left:502.560000px;}
.x63{left:512.280000px;}
.x5b{left:516.165000px;}
.x3d{left:541.440000px;}
.x5c{left:546.300000px;}
.x84{left:547.380000px;}
.x68{left:557.280000px;}
.x57{left:576.540000px;}
.x7d{left:592.020000px;}
.x16{left:616.320000px;}
.x76{left:636.300000px;}
.x52{left:642.240000px;}
.x6d{left:665.640000px;}
.x7e{left:681.300000px;}
.x2e{left:700.920000px;}
.x58{left:734.490000px;}
.x18{left:756.090000px;}
.x3e{left:762.847200px;}
.x1b{left:786.240000px;}
@media print{
.v9{vertical-align:-45.289403pt;}
.v2{vertical-align:-43.011933pt;}
.v1{vertical-align:-37.120000pt;}
.v6{vertical-align:-21.120000pt;}
.v12{vertical-align:-12.546667pt;}
.vc{vertical-align:-10.601067pt;}
.v10{vertical-align:-8.949760pt;}
.vd{vertical-align:-7.654400pt;}
.v3{vertical-align:-4.480000pt;}
.vb{vertical-align:-2.059269pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:0.925613pt;}
.vf{vertical-align:4.547200pt;}
.v4{vertical-align:8.399467pt;}
.v13{vertical-align:12.546133pt;}
.ve{vertical-align:14.642667pt;}
.v5{vertical-align:21.132800pt;}
.v11{vertical-align:25.612800pt;}
.v7{vertical-align:26.885760pt;}
.va{vertical-align:72.304640pt;}
.ls89{letter-spacing:-3.362779pt;}
.ls7c{letter-spacing:-3.015577pt;}
.ls86{letter-spacing:-3.015136pt;}
.ls72{letter-spacing:-2.966363pt;}
.ls88{letter-spacing:-1.492255pt;}
.ls7e{letter-spacing:-1.491806pt;}
.ls7b{letter-spacing:-1.328898pt;}
.ls85{letter-spacing:-1.328704pt;}
.ls7d{letter-spacing:-1.318798pt;}
.ls87{letter-spacing:-1.318599pt;}
.ls75{letter-spacing:-1.305311pt;}
.ls73{letter-spacing:-1.297288pt;}
.ls53{letter-spacing:-1.057786pt;}
.ls68{letter-spacing:-1.000960pt;}
.ls81{letter-spacing:-0.942080pt;}
.ls80{letter-spacing:-0.883200pt;}
.ls46{letter-spacing:-0.765440pt;}
.ls10{letter-spacing:-0.647680pt;}
.ls2d{letter-spacing:-0.635619pt;}
.ls2c{letter-spacing:-0.621602pt;}
.ls11{letter-spacing:-0.529920pt;}
.ls51{letter-spacing:-0.525825pt;}
.ls43{letter-spacing:-0.506897pt;}
.ls69{letter-spacing:-0.474274pt;}
.ls29{letter-spacing:-0.412160pt;}
.ls5e{letter-spacing:-0.353280pt;}
.ls84{letter-spacing:-0.348443pt;}
.ls9{letter-spacing:-0.299520pt;}
.ls41{letter-spacing:-0.296000pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls2a{letter-spacing:-0.261725pt;}
.ls5c{letter-spacing:-0.258539pt;}
.ls26{letter-spacing:-0.257835pt;}
.ls50{letter-spacing:-0.256285pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.250658pt;}
.ls25{letter-spacing:-0.250543pt;}
.ls40{letter-spacing:-0.246332pt;}
.ls56{letter-spacing:-0.241382pt;}
.ls59{letter-spacing:-0.240794pt;}
.ls6b{letter-spacing:-0.235520pt;}
.ls42{letter-spacing:-0.221767pt;}
.ls3d{letter-spacing:-0.219326pt;}
.ls24{letter-spacing:-0.219225pt;}
.ls91{letter-spacing:-0.218105pt;}
.ls3f{letter-spacing:-0.215540pt;}
.ls6e{letter-spacing:-0.210900pt;}
.ls70{letter-spacing:-0.208457pt;}
.ls83{letter-spacing:-0.201443pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.180981pt;}
.ls45{letter-spacing:-0.146259pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls5b{letter-spacing:-0.124907pt;}
.lse{letter-spacing:-0.117760pt;}
.ls39{letter-spacing:-0.102864pt;}
.ls65{letter-spacing:-0.093095pt;}
.ls3a{letter-spacing:-0.085618pt;}
.ls82{letter-spacing:-0.081227pt;}
.ls92{letter-spacing:-0.058880pt;}
.ls66{letter-spacing:-0.037882pt;}
.ls57{letter-spacing:-0.030173pt;}
.ls6f{letter-spacing:-0.030129pt;}
.lsa{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.042880pt;}
.ls5f{letter-spacing:0.046548pt;}
.ls67{letter-spacing:0.046644pt;}
.ls6a{letter-spacing:0.058880pt;}
.ls35{letter-spacing:0.061583pt;}
.ls8b{letter-spacing:0.067935pt;}
.lsc{letter-spacing:0.117760pt;}
.ls8f{letter-spacing:0.158976pt;}
.ls12{letter-spacing:0.214400pt;}
.ls90{letter-spacing:0.229632pt;}
.ls6{letter-spacing:0.235520pt;}
.ls3e{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.294400pt;}
.ls14{letter-spacing:0.343040pt;}
.ls74{letter-spacing:0.351430pt;}
.ls5d{letter-spacing:0.353280pt;}
.ls8a{letter-spacing:0.373642pt;}
.ls7f{letter-spacing:0.373695pt;}
.ls3b{letter-spacing:0.411383pt;}
.ls49{letter-spacing:0.430086pt;}
.ls8d{letter-spacing:0.512256pt;}
.ls78{letter-spacing:0.529920pt;}
.ls71{letter-spacing:0.603328pt;}
.ls63{letter-spacing:0.647680pt;}
.ls48{letter-spacing:1.241649pt;}
.ls37{letter-spacing:1.254144pt;}
.ls44{letter-spacing:1.260400pt;}
.ls1d{letter-spacing:1.295360pt;}
.ls64{letter-spacing:1.943040pt;}
.ls76{letter-spacing:2.437632pt;}
.ls79{letter-spacing:2.520064pt;}
.ls52{letter-spacing:2.611743pt;}
.ls5{letter-spacing:3.026432pt;}
.ls1a{letter-spacing:3.179520pt;}
.ls1{letter-spacing:3.303168pt;}
.ls1b{letter-spacing:3.803648pt;}
.ls0{letter-spacing:3.827200pt;}
.ls6c{letter-spacing:3.838976pt;}
.ls4{letter-spacing:4.474880pt;}
.ls32{letter-spacing:5.122560pt;}
.ls33{letter-spacing:5.770240pt;}
.ls2{letter-spacing:6.323712pt;}
.ls3{letter-spacing:6.417920pt;}
.ls1e{letter-spacing:7.065600pt;}
.ls4e{letter-spacing:7.654400pt;}
.ls77{letter-spacing:7.725056pt;}
.ls21{letter-spacing:7.808000pt;}
.ls4f{letter-spacing:8.302080pt;}
.ls8e{letter-spacing:8.949760pt;}
.ls61{letter-spacing:9.591552pt;}
.ls1c{letter-spacing:10.245120pt;}
.ls7{letter-spacing:10.892800pt;}
.ls19{letter-spacing:11.540480pt;}
.ls60{letter-spacing:12.188160pt;}
.ls18{letter-spacing:12.776960pt;}
.ls38{letter-spacing:14.720000pt;}
.ls16{letter-spacing:19.842560pt;}
.ls2b{letter-spacing:23.595138pt;}
.ls8c{letter-spacing:36.093440pt;}
.ls15{letter-spacing:39.808000pt;}
.ls5a{letter-spacing:70.754251pt;}
.ls58{letter-spacing:70.926754pt;}
.ls36{letter-spacing:72.382152pt;}
.ls62{letter-spacing:85.978223pt;}
.ls1f{letter-spacing:86.463422pt;}
.ls47{letter-spacing:87.624991pt;}
.ls20{letter-spacing:88.015077pt;}
.ls2f{letter-spacing:132.496465pt;}
.ls4a{letter-spacing:141.311881pt;}
.ls2e{letter-spacing:166.227606pt;}
.ls54{letter-spacing:235.430894pt;}
.ls30{letter-spacing:273.287874pt;}
.ls8{letter-spacing:281.760000pt;}
.ls4b{letter-spacing:414.103040pt;}
.ls7a{letter-spacing:435.182080pt;}
.ls55{letter-spacing:586.881048pt;}
.ls34{letter-spacing:599.498525pt;}
.ls4d{letter-spacing:647.680000pt;}
.ls4c{letter-spacing:680.376451pt;}
.ls6d{letter-spacing:716.157440pt;}
.ls31{letter-spacing:911.992320pt;}
.ls17{letter-spacing:970.880000pt;}
.ls22{letter-spacing:1186.704000pt;}
.ws8c{word-spacing:-586.881048pt;}
.ws56{word-spacing:-178.128526pt;}
.ws7c{word-spacing:-172.343139pt;}
.ws75{word-spacing:-98.066375pt;}
.ws7f{word-spacing:-72.153228pt;}
.ws2f{word-spacing:-38.416205pt;}
.ws82{word-spacing:-32.404302pt;}
.ws0{word-spacing:-18.720000pt;}
.wsd7{word-spacing:-16.256000pt;}
.wsd8{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws2c{word-spacing:-15.808000pt;}
.ws27{word-spacing:-15.744000pt;}
.ws85{word-spacing:-15.073280pt;}
.ws5d{word-spacing:-15.014400pt;}
.ws6{word-spacing:-14.955520pt;}
.ws1{word-spacing:-14.837760pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.602240pt;}
.wsa3{word-spacing:-14.484480pt;}
.ws9c{word-spacing:-14.425600pt;}
.wsb1{word-spacing:-14.366720pt;}
.ws2d{word-spacing:-14.307840pt;}
.ws58{word-spacing:-14.295575pt;}
.ws9d{word-spacing:-14.190080pt;}
.ws5{word-spacing:-14.072320pt;}
.ws9e{word-spacing:-13.719040pt;}
.ws77{word-spacing:-13.144348pt;}
.wsd6{word-spacing:-13.012480pt;}
.ws98{word-spacing:-12.986818pt;}
.wsd5{word-spacing:-12.894720pt;}
.wsbb{word-spacing:-12.880090pt;}
.wsc2{word-spacing:-12.878208pt;}
.ws99{word-spacing:-12.847174pt;}
.wsc6{word-spacing:-12.812810pt;}
.wsbe{word-spacing:-12.808958pt;}
.wsb5{word-spacing:-12.651475pt;}
.ws59{word-spacing:-11.815302pt;}
.wsb2{word-spacing:-11.010736pt;}
.wsbf{word-spacing:-10.507841pt;}
.wsc7{word-spacing:-10.506260pt;}
.ws9b{word-spacing:-10.493351pt;}
.ws79{word-spacing:-10.393755pt;}
.wsb6{word-spacing:-10.336456pt;}
.ws78{word-spacing:-9.915558pt;}
.wsc8{word-spacing:-9.816598pt;}
.wsc9{word-spacing:-9.510891pt;}
.ws39{word-spacing:-9.280000pt;}
.ws31{word-spacing:-9.141200pt;}
.ws2e{word-spacing:-9.085608pt;}
.ws36{word-spacing:-8.711715pt;}
.ws7a{word-spacing:-8.530533pt;}
.ws66{word-spacing:-7.897997pt;}
.ws62{word-spacing:-7.844000pt;}
.ws5f{word-spacing:-6.835706pt;}
.ws83{word-spacing:-6.744960pt;}
.wsc0{word-spacing:-6.687706pt;}
.ws5b{word-spacing:-6.673773pt;}
.ws5a{word-spacing:-6.642441pt;}
.ws28{word-spacing:-6.639388pt;}
.ws60{word-spacing:-6.527791pt;}
.wsac{word-spacing:-6.417378pt;}
.ws2b{word-spacing:-5.506987pt;}
.ws84{word-spacing:-5.429312pt;}
.ws2a{word-spacing:-5.414528pt;}
.wsdc{word-spacing:-3.827200pt;}
.wsdb{word-spacing:-3.532800pt;}
.ws20{word-spacing:-3.297280pt;}
.ws54{word-spacing:-3.179520pt;}
.ws3a{word-spacing:-2.826240pt;}
.ws11{word-spacing:-2.649600pt;}
.ws87{word-spacing:-2.611743pt;}
.ws10{word-spacing:-2.531840pt;}
.ws12{word-spacing:-2.414080pt;}
.ws3f{word-spacing:-2.060800pt;}
.wsb7{word-spacing:-2.001920pt;}
.ws3d{word-spacing:-1.943040pt;}
.wsb8{word-spacing:-1.910539pt;}
.wsb9{word-spacing:-1.656741pt;}
.ws63{word-spacing:-1.653752pt;}
.ws51{word-spacing:-1.413120pt;}
.ws13{word-spacing:-1.295360pt;}
.ws97{word-spacing:-0.942080pt;}
.wsda{word-spacing:-0.883200pt;}
.ws26{word-spacing:-0.814720pt;}
.ws48{word-spacing:-0.765440pt;}
.ws23{word-spacing:-0.647680pt;}
.ws5e{word-spacing:-0.526534pt;}
.ws7d{word-spacing:-0.455609pt;}
.ws81{word-spacing:-0.454498pt;}
.ws68{word-spacing:-0.411383pt;}
.wsd4{word-spacing:-0.373642pt;}
.ws95{word-spacing:-0.353280pt;}
.wscb{word-spacing:-0.305750pt;}
.wsd3{word-spacing:-0.305707pt;}
.ws8a{word-spacing:-0.294400pt;}
.ws6f{word-spacing:-0.256000pt;}
.ws49{word-spacing:-0.235520pt;}
.ws21{word-spacing:-0.117760pt;}
.ws88{word-spacing:-0.071681pt;}
.wsa9{word-spacing:-0.058880pt;}
.wsa4{word-spacing:-0.046644pt;}
.ws24{word-spacing:-0.042880pt;}
.ws8{word-spacing:0.000000pt;}
.ws64{word-spacing:0.028513pt;}
.wsa5{word-spacing:0.037882pt;}
.ws6a{word-spacing:0.085618pt;}
.ws67{word-spacing:0.102864pt;}
.ws3e{word-spacing:0.117760pt;}
.ws25{word-spacing:0.128640pt;}
.ws7{word-spacing:0.149760pt;}
.ws69{word-spacing:0.214045pt;}
.wsd9{word-spacing:0.218105pt;}
.ws42{word-spacing:0.219225pt;}
.ws55{word-spacing:0.256000pt;}
.ws86{word-spacing:0.256285pt;}
.wsa{word-spacing:0.294400pt;}
.wsd0{word-spacing:0.298666pt;}
.ws9{word-spacing:0.299520pt;}
.ws53{word-spacing:0.353280pt;}
.ws41{word-spacing:0.412160pt;}
.wsa8{word-spacing:0.474274pt;}
.ws22{word-spacing:0.529920pt;}
.ws40{word-spacing:0.647680pt;}
.ws72{word-spacing:0.765440pt;}
.wscc{word-spacing:0.883200pt;}
.wsb{word-spacing:0.942080pt;}
.wscd{word-spacing:1.000960pt;}
.wsd{word-spacing:1.177600pt;}
.ws14{word-spacing:1.295360pt;}
.wsaa{word-spacing:1.648640pt;}
.wsd1{word-spacing:1.686432pt;}
.wsca{word-spacing:1.686678pt;}
.ws6d{word-spacing:1.825280pt;}
.ws89{word-spacing:1.876717pt;}
.ws6c{word-spacing:1.943040pt;}
.ws6b{word-spacing:2.296320pt;}
.wsba{word-spacing:2.301640pt;}
.ws1f{word-spacing:2.472960pt;}
.ws8b{word-spacing:2.590720pt;}
.wse2{word-spacing:2.708480pt;}
.ws1a{word-spacing:2.885120pt;}
.ws1b{word-spacing:3.061760pt;}
.wscf{word-spacing:3.120640pt;}
.ws19{word-spacing:3.179520pt;}
.wsd2{word-spacing:3.430714pt;}
.ws80{word-spacing:3.466935pt;}
.ws1c{word-spacing:3.709440pt;}
.wsc{word-spacing:3.827200pt;}
.ws1e{word-spacing:4.357120pt;}
.ws70{word-spacing:4.474880pt;}
.ws17{word-spacing:5.004800pt;}
.ws16{word-spacing:5.122560pt;}
.ws15{word-spacing:5.652480pt;}
.ws6e{word-spacing:5.770240pt;}
.wse1{word-spacing:6.064640pt;}
.ws18{word-spacing:6.300160pt;}
.ws1d{word-spacing:6.417920pt;}
.ws52{word-spacing:6.947840pt;}
.wse3{word-spacing:7.065600pt;}
.ws90{word-spacing:7.536640pt;}
.ws8f{word-spacing:7.654400pt;}
.ws92{word-spacing:8.007680pt;}
.ws93{word-spacing:8.184320pt;}
.ws91{word-spacing:8.302080pt;}
.ws32{word-spacing:8.563134pt;}
.ws37{word-spacing:8.756286pt;}
.ws94{word-spacing:8.832000pt;}
.ws4c{word-spacing:8.949760pt;}
.wsdd{word-spacing:9.244160pt;}
.wsce{word-spacing:9.303040pt;}
.ws4d{word-spacing:9.479680pt;}
.ws4f{word-spacing:9.597440pt;}
.ws71{word-spacing:9.950720pt;}
.ws4e{word-spacing:10.127360pt;}
.ws50{word-spacing:10.245120pt;}
.ws4b{word-spacing:10.657280pt;}
.wsf{word-spacing:10.775040pt;}
.wse{word-spacing:10.892800pt;}
.ws43{word-spacing:11.422720pt;}
.ws4a{word-spacing:11.540480pt;}
.ws96{word-spacing:11.834880pt;}
.ws44{word-spacing:12.070400pt;}
.ws47{word-spacing:12.188160pt;}
.ws46{word-spacing:12.659200pt;}
.ws45{word-spacing:12.776960pt;}
.ws73{word-spacing:14.602240pt;}
.ws74{word-spacing:14.720000pt;}
.ws8d{word-spacing:15.249920pt;}
.ws8e{word-spacing:15.897600pt;}
.wsa6{word-spacing:16.368640pt;}
.wsa7{word-spacing:17.192960pt;}
.ws3b{word-spacing:19.724800pt;}
.wse5{word-spacing:19.842560pt;}
.wse4{word-spacing:19.960320pt;}
.ws3c{word-spacing:20.490240pt;}
.ws30{word-spacing:28.254881pt;}
.wse0{word-spacing:29.440000pt;}
.wsdf{word-spacing:30.087680pt;}
.wsde{word-spacing:30.382080pt;}
.wsb4{word-spacing:36.946443pt;}
.ws29{word-spacing:42.481055pt;}
.wsad{word-spacing:48.226743pt;}
.wsab{word-spacing:49.567463pt;}
.ws38{word-spacing:53.177987pt;}
.wsa1{word-spacing:53.333967pt;}
.ws61{word-spacing:54.795260pt;}
.ws35{word-spacing:56.619882pt;}
.wsb3{word-spacing:56.622774pt;}
.ws76{word-spacing:57.878316pt;}
.ws33{word-spacing:58.428750pt;}
.ws34{word-spacing:58.819461pt;}
.ws65{word-spacing:60.663600pt;}
.ws5c{word-spacing:60.966324pt;}
.ws9f{word-spacing:61.234230pt;}
.wsc1{word-spacing:71.290748pt;}
.wsc4{word-spacing:72.744581pt;}
.wsc5{word-spacing:73.049673pt;}
.ws7e{word-spacing:73.416457pt;}
.wsc3{word-spacing:81.421284pt;}
.wsbd{word-spacing:99.675594pt;}
.wsaf{word-spacing:106.276352pt;}
.wsbc{word-spacing:108.056341pt;}
.wsae{word-spacing:108.710082pt;}
.wsb0{word-spacing:116.469877pt;}
.ws57{word-spacing:130.781699pt;}
.ws9a{word-spacing:167.037479pt;}
.ws7b{word-spacing:234.136764pt;}
.wsa0{word-spacing:287.291556pt;}
.wsa2{word-spacing:339.994637pt;}
._3b{margin-left:-1141.433801pt;}
._a{margin-left:-293.139527pt;}
._9{margin-left:-288.333824pt;}
._b{margin-left:-12.628675pt;}
._11{margin-left:-11.342798pt;}
._5{margin-left:-3.436544pt;}
._2{margin-left:-2.417664pt;}
._1{margin-left:-1.115136pt;}
._0{width:1.497600pt;}
._4{width:2.494464pt;}
._3{width:4.129792pt;}
._24{width:5.342175pt;}
._c{width:6.532096pt;}
._8{width:7.860736pt;}
._22{width:9.832960pt;}
._7{width:10.922496pt;}
._26{width:12.011520pt;}
._23{width:17.543168pt;}
._6{width:20.634624pt;}
._25{width:23.854114pt;}
._1e{width:32.781193pt;}
._39{width:44.720196pt;}
._34{width:48.214633pt;}
._1a{width:50.421145pt;}
._19{width:56.486499pt;}
._16{width:64.017630pt;}
._d{width:65.234801pt;}
._36{width:78.309891pt;}
._20{width:81.916658pt;}
._17{width:83.780814pt;}
._e{width:85.602700pt;}
._28{width:86.508058pt;}
._f{width:88.016842pt;}
._15{width:102.128893pt;}
._3c{width:104.875135pt;}
._1f{width:106.578257pt;}
._35{width:109.072220pt;}
._14{width:110.836752pt;}
._37{width:112.198710pt;}
._27{width:113.581558pt;}
._18{width:122.637346pt;}
._1b{width:124.192276pt;}
._38{width:126.664081pt;}
._2a{width:129.899689pt;}
._29{width:131.119159pt;}
._3a{width:135.718626pt;}
._1d{width:146.519329pt;}
._33{width:161.566720pt;}
._1c{width:166.273395pt;}
._21{width:173.027725pt;}
._32{width:176.286720pt;}
._2e{width:182.231552pt;}
._3d{width:184.942080pt;}
._31{width:197.866496pt;}
._2d{width:200.309760pt;}
._30{width:204.873216pt;}
._10{width:216.092840pt;}
._2c{width:230.400000pt;}
._2f{width:244.712960pt;}
._2b{width:320.281600pt;}
._12{width:711.665768pt;}
._13{width:732.323206pt;}
.fs26{font-size:22.093333pt;}
.fs24{font-size:23.811733pt;}
.fs8{font-size:25.783467pt;}
.fs2f{font-size:25.853867pt;}
.fsa{font-size:25.854400pt;}
.fs3e{font-size:27.075733pt;}
.fs15{font-size:27.717867pt;}
.fs40{font-size:28.777600pt;}
.fs2c{font-size:30.099200pt;}
.fs36{font-size:30.128533pt;}
.fs29{font-size:30.172800pt;}
.fs1b{font-size:30.791467pt;}
.fs46{font-size:31.157867pt;}
.fs2d{font-size:31.226667pt;}
.fs6{font-size:31.317867pt;}
.fs17{font-size:31.332267pt;}
.fs1f{font-size:31.681067pt;}
.fs45{font-size:33.967467pt;}
.fs3d{font-size:33.972267pt;}
.fs25{font-size:34.122133pt;}
.fs23{font-size:35.840533pt;}
.fs33{font-size:36.485867pt;}
.fse{font-size:36.564800pt;}
.fs1d{font-size:37.000000pt;}
.fs11{font-size:37.120000pt;}
.fsb{font-size:37.389333pt;}
.fs21{font-size:37.558933pt;}
.fs31{font-size:37.882133pt;}
.fs38{font-size:41.848000pt;}
.fs43{font-size:42.535467pt;}
.fs3b{font-size:42.541867pt;}
.fs20{font-size:42.714133pt;}
.fs13{font-size:42.809067pt;}
.fs22{font-size:42.815467pt;}
.fs3{font-size:42.880000pt;}
.fs30{font-size:46.547733pt;}
.fs32{font-size:46.643733pt;}
.fs3f{font-size:46.833067pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:48.533333pt;}
.fs9{font-size:48.666667pt;}
.fs41{font-size:49.777600pt;}
.fs39{font-size:50.204267pt;}
.fs37{font-size:50.277333pt;}
.fs42{font-size:51.104000pt;}
.fs3a{font-size:51.111467pt;}
.fs14{font-size:51.422933pt;}
.fs12{font-size:51.432000pt;}
.fs3c{font-size:51.441600pt;}
.fs44{font-size:51.457067pt;}
.fs2b{font-size:52.063467pt;}
.fs35{font-size:52.114133pt;}
.fs28{font-size:52.190400pt;}
.fs1a{font-size:53.261333pt;}
.fs47{font-size:53.894933pt;}
.fs5{font-size:54.171200pt;}
.fs16{font-size:54.196267pt;}
.fs1e{font-size:54.800000pt;}
.fs1c{font-size:56.118584pt;}
.fs18{font-size:57.057158pt;}
.fs2e{font-size:57.851733pt;}
.fsf{font-size:57.976533pt;}
.fs1{font-size:58.880000pt;}
.fsc{font-size:59.284267pt;}
.fs34{font-size:63.110933pt;}
.fs10{font-size:63.246933pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:64.673600pt;}
.fs0{font-size:74.880000pt;}
.fs27{font-size:85.625067pt;}
.fs19{font-size:87.381867pt;}
.fs2a{font-size:89.321067pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.170800pt;}
.y1c7{bottom:3.200000pt;}
.ya4{bottom:3.333467pt;}
.y111{bottom:3.342667pt;}
.y150{bottom:3.520000pt;}
.y16b{bottom:3.613333pt;}
.y1b9{bottom:3.680000pt;}
.y1c8{bottom:3.840000pt;}
.y19f{bottom:3.872533pt;}
.y195{bottom:4.280800pt;}
.yf7{bottom:4.314400pt;}
.y19b{bottom:4.548800pt;}
.y196{bottom:4.683200pt;}
.y148{bottom:4.844667pt;}
.y9b{bottom:4.951333pt;}
.y32{bottom:5.038160pt;}
.y86{bottom:5.038400pt;}
.y1bf{bottom:5.263200pt;}
.y5f{bottom:5.270667pt;}
.y5e{bottom:5.270800pt;}
.ya5{bottom:5.333467pt;}
.y132{bottom:5.464800pt;}
.yaf{bottom:5.600133pt;}
.y12f{bottom:5.600267pt;}
.yf2{bottom:6.060267pt;}
.ye2{bottom:6.075733pt;}
.yb0{bottom:6.094267pt;}
.y43{bottom:6.125733pt;}
.ybc{bottom:6.542400pt;}
.yf8{bottom:6.574133pt;}
.ya6{bottom:6.581467pt;}
.y3d{bottom:6.614400pt;}
.yfe{bottom:6.632667pt;}
.y1c0{bottom:6.736933pt;}
.y130{bottom:6.737200pt;}
.y154{bottom:6.805200pt;}
.y1c2{bottom:6.880000pt;}
.y60{bottom:6.947600pt;}
.y59{bottom:7.452800pt;}
.yab{bottom:7.578000pt;}
.y5a{bottom:8.084400pt;}
.y3e{bottom:8.088933pt;}
.y44{bottom:8.111200pt;}
.yff{bottom:8.111333pt;}
.yee{bottom:8.338533pt;}
.ydf{bottom:8.521867pt;}
.y19c{bottom:8.709867pt;}
.y14b{bottom:9.200933pt;}
.y9d{bottom:9.403600pt;}
.y88{bottom:9.568800pt;}
.yaa{bottom:9.590133pt;}
.yb1{bottom:10.094647pt;}
.yf3{bottom:10.412267pt;}
.yef{bottom:10.412800pt;}
.ye0{bottom:10.438400pt;}
.ye3{bottom:10.438533pt;}
.yf9{bottom:10.806267pt;}
.yf1{bottom:11.429467pt;}
.y3c{bottom:11.459333pt;}
.yfd{bottom:11.490800pt;}
.y42{bottom:11.702000pt;}
.y1c4{bottom:12.320000pt;}
.y145{bottom:12.662133pt;}
.y98{bottom:12.940667pt;}
.y30{bottom:13.163802pt;}
.y83{bottom:13.167867pt;}
.y16c{bottom:13.866267pt;}
.yf0{bottom:13.870000pt;}
.ye1{bottom:14.108133pt;}
.y147{bottom:15.186133pt;}
.y9a{bottom:15.520400pt;}
.y85{bottom:15.792933pt;}
.y1a0{bottom:16.571733pt;}
.y68{bottom:17.554667pt;}
.y112{bottom:18.322133pt;}
.ybd{bottom:18.324533pt;}
.y14a{bottom:19.542400pt;}
.y9e{bottom:19.972533pt;}
.y96{bottom:19.972800pt;}
.y34{bottom:20.314353pt;}
.y2e{bottom:20.314400pt;}
.y89{bottom:20.323333pt;}
.y81{bottom:20.323467pt;}
.y14f{bottom:20.480000pt;}
.y84{bottom:25.827733pt;}
.y146{bottom:26.260533pt;}
.y37{bottom:26.880000pt;}
.y31{bottom:27.297333pt;}
.y99{bottom:27.587467pt;}
.y155{bottom:29.234400pt;}
.y94{bottom:30.084400pt;}
.y87{bottom:30.358133pt;}
.y149{bottom:30.616800pt;}
.y16e{bottom:30.699333pt;}
.y82{bottom:31.416667pt;}
.yc0{bottom:31.624800pt;}
.y33{bottom:31.825733pt;}
.y114{bottom:31.877600pt;}
.y9c{bottom:32.039600pt;}
.y95{bottom:32.039867pt;}
.y97{bottom:33.080133pt;}
.y144{bottom:34.281467pt;}
.y2f{bottom:35.631307pt;}
.y1d{bottom:41.120000pt;}
.y69{bottom:41.346000pt;}
.y16f{bottom:41.568780pt;}
.y1a2{bottom:43.956533pt;}
.y157{bottom:44.513333pt;}
.yc1{bottom:51.202394pt;}
.y170{bottom:52.438227pt;}
.yd5{bottom:53.077067pt;}
.y6b{bottom:56.513867pt;}
.y66{bottom:57.120000pt;}
.yd6{bottom:57.311600pt;}
.y1a3{bottom:58.721467pt;}
.y11f{bottom:60.784000pt;}
.y171{bottom:63.222590pt;}
.y156{bottom:69.953200pt;}
.yc2{bottom:70.714260pt;}
.y158{bottom:72.587467pt;}
.y11e{bottom:72.668533pt;}
.y115{bottom:72.856598pt;}
.y1a4{bottom:73.410000pt;}
.y172{bottom:74.092037pt;}
.yd2{bottom:75.904830pt;}
.yd4{bottom:75.907200pt;}
.yd3{bottom:80.571467pt;}
.y11d{bottom:84.553067pt;}
.y173{bottom:84.961484pt;}
.y1a5{bottom:88.174933pt;}
.yd1{bottom:88.242933pt;}
.yc3{bottom:90.226126pt;}
.y7b{bottom:90.622133pt;}
.y6c{bottom:95.630651pt;}
.y174{bottom:95.745847pt;}
.y16d{bottom:95.966000pt;}
.y11c{bottom:96.437733pt;}
.yd0{bottom:99.596800pt;}
.y159{bottom:100.586400pt;}
.y1a6{bottom:102.863467pt;}
.y7a{bottom:103.942133pt;}
.y175{bottom:106.615294pt;}
.y1e9{bottom:106.876800pt;}
.y11b{bottom:108.322267pt;}
.y1a1{bottom:109.060400pt;}
.yc4{bottom:109.737992pt;}
.ycf{bottom:110.950533pt;}
.y116{bottom:113.835595pt;}
.y1b5{bottom:115.354880pt;}
.y137{bottom:115.989760pt;}
.y79{bottom:117.262133pt;}
.y176{bottom:117.484741pt;}
.y1a7{bottom:117.628400pt;}
.yce{bottom:122.304400pt;}
.y1e8{bottom:124.320000pt;}
.y10b{bottom:126.228480pt;}
.y177{bottom:128.269105pt;}
.y15a{bottom:128.585200pt;}
.yc5{bottom:129.193519pt;}
.y78{bottom:130.582267pt;}
.y163{bottom:131.520533pt;}
.y1a8{bottom:132.316933pt;}
.y136{bottom:133.432960pt;}
.ycd{bottom:133.658133pt;}
.y6d{bottom:134.747436pt;}
.ybe{bottom:135.894800pt;}
.y19e{bottom:136.573333pt;}
.y1b4{bottom:136.640000pt;}
.yba{bottom:137.265920pt;}
.y178{bottom:139.138551pt;}
.y1e7{bottom:141.601280pt;}
.y10a{bottom:143.671680pt;}
.y77{bottom:143.902267pt;}
.y162{bottom:144.541467pt;}
.ybf{bottom:146.146192pt;}
.y1a9{bottom:147.081867pt;}
.yc6{bottom:148.705385pt;}
.y179{bottom:150.007998pt;}
.y113{bottom:150.537467pt;}
.y135{bottom:150.714240pt;}
.y182{bottom:151.591867pt;}
.yb9{bottom:154.547200pt;}
.y117{bottom:154.748299pt;}
.y6a{bottom:155.066533pt;}
.y15b{bottom:156.659333pt;}
.y74{bottom:157.218836pt;}
.y76{bottom:157.222267pt;}
.y65{bottom:157.278720pt;}
.y161{bottom:157.562533pt;}
.y17a{bottom:160.792362pt;}
.y109{bottom:160.952960pt;}
.y1aa{bottom:161.770400pt;}
.y75{bottom:162.534933pt;}
.y181{bottom:162.686400pt;}
.y1e6{bottom:166.875520pt;}
.y134{bottom:167.995520pt;}
.yc7{bottom:168.217251pt;}
.y160{bottom:170.583467pt;}
.y17b{bottom:171.661809pt;}
.yb8{bottom:171.828480pt;}
.y73{bottom:172.159200pt;}
.y6e{bottom:173.778603pt;}
.y180{bottom:173.780933pt;}
.y64{bottom:174.556800pt;}
.y1ab{bottom:176.535333pt;}
.y108{bottom:178.234240pt;}
.y17c{bottom:182.531255pt;}
.y15f{bottom:183.604400pt;}
.y1e5{bottom:184.318720pt;}
.y15c{bottom:184.658133pt;}
.y133{bottom:185.438720pt;}
.y17f{bottom:185.640667pt;}
.yc8{bottom:187.729117pt;}
.y1b3{bottom:187.771867pt;}
.yb7{bottom:189.271680pt;}
.y1ac{bottom:191.223733pt;}
.y63{bottom:192.000000pt;}
.y107{bottom:195.677440pt;}
.y118{bottom:195.727297pt;}
.y12e{bottom:195.906667pt;}
.y17e{bottom:196.735200pt;}
.y1b2{bottom:198.864800pt;}
.y1e4{bottom:201.600000pt;}
.y12d{bottom:202.712960pt;}
.y131{bottom:202.720000pt;}
.y1ad{bottom:205.988800pt;}
.yb6{bottom:206.552960pt;}
.yc9{bottom:207.240983pt;}
.y17d{bottom:207.829867pt;}
.y15d{bottom:212.657067pt;}
.y6f{bottom:212.895387pt;}
.y106{bottom:212.958720pt;}
.y1b1{bottom:213.094533pt;}
.y62{bottom:217.600000pt;}
.y12c{bottom:219.994240pt;}
.yb5{bottom:223.834240pt;}
.yca{bottom:226.752848pt;}
.y1e3{bottom:226.879360pt;}
.y1b0{bottom:227.324133pt;}
.y105{bottom:230.240000pt;}
.y119{bottom:236.706295pt;}
.y12b{bottom:237.437440pt;}
.y15e{bottom:240.731200pt;}
.yb4{bottom:241.277440pt;}
.y1af{bottom:241.553867pt;}
.y1e2{bottom:244.322560pt;}
.ycb{bottom:246.264714pt;}
.y61{bottom:251.678720pt;}
.y70{bottom:251.926554pt;}
.y12a{bottom:254.718720pt;}
.y1ae{bottom:255.783600pt;}
.y104{bottom:255.840000pt;}
.yb3{bottom:258.558720pt;}
.y58{bottom:260.906667pt;}
.y1e1{bottom:261.603840pt;}
.y5c{bottom:263.573333pt;}
.ycc{bottom:265.842308pt;}
.y57{bottom:268.949760pt;}
.y5b{bottom:268.960000pt;}
.yae{bottom:269.040000pt;}
.y129{bottom:272.000000pt;}
.y169{bottom:272.958080pt;}
.yad{bottom:275.836800pt;}
.yb2{bottom:275.840000pt;}
.y11a{bottom:277.618999pt;}
.ya9{bottom:283.906667pt;}
.y56{bottom:286.392960pt;}
.y1e0{bottom:286.878080pt;}
.y103{bottom:290.074240pt;}
.y71{bottom:291.043338pt;}
.ya8{bottom:293.278720pt;}
.yac{bottom:293.280000pt;}
.y128{bottom:297.600000pt;}
.y168{bottom:298.232320pt;}
.y55{bottom:303.674240pt;}
.y1df{bottom:304.321280pt;}
.ya3{bottom:305.173333pt;}
.y102{bottom:307.355520pt;}
.ya7{bottom:310.560000pt;}
.ya2{bottom:310.560640pt;}
.y167{bottom:315.675520pt;}
.y54{bottom:320.955520pt;}
.y1de{bottom:321.602560pt;}
.y101{bottom:324.636800pt;}
.ya1{bottom:327.841920pt;}
.y72{bottom:330.074505pt;}
.y127{bottom:331.838720pt;}
.y166{bottom:332.956800pt;}
.yfc{bottom:333.973333pt;}
.y53{bottom:338.398720pt;}
.yfb{bottom:342.078720pt;}
.y100{bottom:342.080000pt;}
.y1dd{bottom:346.876800pt;}
.y126{bottom:349.120000pt;}
.y93{bottom:349.706667pt;}
.y9f{bottom:349.760000pt;}
.y52{bottom:355.680000pt;}
.y165{bottom:358.392960pt;}
.yfa{bottom:359.360000pt;}
.y1dc{bottom:364.320000pt;}
.ya0{bottom:369.602560pt;}
.yf6{bottom:369.840000pt;}
.y125{bottom:374.720000pt;}
.yf5{bottom:376.643840pt;}
.y153{bottom:379.773333pt;}
.y164{bottom:379.840000pt;}
.y51{bottom:381.280000pt;}
.y1c{bottom:384.706560pt;}
.y92{bottom:385.763840pt;}
.y1db{bottom:389.598720pt;}
.yed{bottom:398.640000pt;}
.y1da{bottom:406.880000pt;}
.yf4{bottom:409.440000pt;}
.yec{bottom:412.798720pt;}
.y124{bottom:416.798080pt;}
.y1b{bottom:417.502720pt;}
.y91{bottom:418.560000pt;}
.y50{bottom:423.348480pt;}
.y19a{bottom:426.774667pt;}
.y19d{bottom:426.880000pt;}
.y1d9{bottom:432.324480pt;}
.y123{bottom:434.241280pt;}
.y1a{bottom:434.460160pt;}
.y199{bottom:436.002560pt;}
.yeb{bottom:437.440000pt;}
.y4f{bottom:440.791680pt;}
.y90{bottom:444.160000pt;}
.y19{bottom:451.255680pt;}
.y1d8{bottom:457.598720pt;}
.y4e{bottom:458.072960pt;}
.y122{bottom:459.677440pt;}
.yea{bottom:463.040000pt;}
.y18{bottom:468.051200pt;}
.y198{bottom:468.798720pt;}
.y1d7{bottom:474.880000pt;}
.y4d{bottom:475.354240pt;}
.y121{bottom:476.472960pt;}
.y8f{bottom:478.232960pt;}
.y194{bottom:480.706667pt;}
.y17{bottom:485.008640pt;}
.y193{bottom:486.055680pt;}
.y197{bottom:486.080000pt;}
.y4c{bottom:492.797440pt;}
.y8e{bottom:495.514240pt;}
.ye9{bottom:497.116800pt;}
.y110{bottom:497.840000pt;}
.y120{bottom:497.920000pt;}
.y1d6{bottom:500.480000pt;}
.y16{bottom:501.804160pt;}
.y192{bottom:503.336960pt;}
.y4b{bottom:510.078720pt;}
.y8d{bottom:512.957440pt;}
.ye8{bottom:514.560000pt;}
.y15{bottom:518.761600pt;}
.y191{bottom:520.780160pt;}
.y4a{bottom:527.360000pt;}
.y8c{bottom:530.238720pt;}
.ye7{bottom:531.841280pt;}
.y14{bottom:535.557120pt;}
.y190{bottom:538.061440pt;}
.y1d5{bottom:542.705920pt;}
.y8b{bottom:547.520000pt;}
.ye6{bottom:549.122560pt;}
.y13{bottom:552.352640pt;}
.y49{bottom:552.960000pt;}
.y18f{bottom:555.342720pt;}
.y1d4{bottom:559.987200pt;}
.ye5{bottom:566.565760pt;}
.y12{bottom:569.310080pt;}
.y80{bottom:569.506667pt;}
.y8a{bottom:569.600000pt;}
.y18e{bottom:572.785920pt;}
.y1d3{bottom:577.268480pt;}
.y11{bottom:586.105600pt;}
.yde{bottom:588.373333pt;}
.y18d{bottom:590.067200pt;}
.y1d2{bottom:594.711680pt;}
.y48{bottom:595.194240pt;}
.ye4{bottom:599.200000pt;}
.y7f{bottom:602.401280pt;}
.ydd{bottom:602.555520pt;}
.y10{bottom:603.063040pt;}
.y18c{bottom:607.348480pt;}
.y1d1{bottom:611.992960pt;}
.y47{bottom:612.475520pt;}
.yf{bottom:619.858560pt;}
.y18b{bottom:624.791680pt;}
.ydc{bottom:627.196800pt;}
.y1d0{bottom:629.274240pt;}
.y46{bottom:629.756800pt;}
.y7e{bottom:635.197440pt;}
.ye{bottom:636.816000pt;}
.y41{bottom:639.106667pt;}
.y18a{bottom:642.072960pt;}
.ydb{bottom:644.640000pt;}
.y1cf{bottom:646.717440pt;}
.y45{bottom:647.200000pt;}
.y7d{bottom:652.154880pt;}
.yd{bottom:653.611520pt;}
.y189{bottom:659.354240pt;}
.y1ce{bottom:663.998720pt;}
.y40{bottom:664.478720pt;}
.yda{bottom:670.240000pt;}
.yc{bottom:670.407040pt;}
.y152{bottom:670.560000pt;}
.y67{bottom:673.373333pt;}
.y7c{bottom:673.440000pt;}
.y3b{bottom:673.706667pt;}
.y188{bottom:676.797440pt;}
.y1cd{bottom:681.280000pt;}
.y3a{bottom:681.755520pt;}
.y3f{bottom:681.760000pt;}
.yb{bottom:687.364480pt;}
.y151{bottom:693.120000pt;}
.y187{bottom:694.078720pt;}
.y39{bottom:699.198720pt;}
.ya{bottom:704.160000pt;}
.yd9{bottom:704.477440pt;}
.y1cc{bottom:706.880000pt;}
.y14e{bottom:710.080000pt;}
.y186{bottom:711.360000pt;}
.y38{bottom:716.480000pt;}
.yd8{bottom:721.272960pt;}
.y36{bottom:730.400000pt;}
.y185{bottom:736.960000pt;}
.y9{bottom:737.120000pt;}
.y2d{bottom:738.306667pt;}
.ybb{bottom:742.640000pt;}
.yd7{bottom:742.720000pt;}
.y1cb{bottom:749.117440pt;}
.y14d{bottom:755.995520pt;}
.y35{bottom:758.400000pt;}
.y1ca{bottom:766.398720pt;}
.y184{bottom:771.354880pt;}
.y2c{bottom:772.456960pt;}
.y8{bottom:779.530880pt;}
.y1c9{bottom:783.680000pt;}
.y143{bottom:785.373333pt;}
.y16a{bottom:792.573333pt;}
.y183{bottom:792.640000pt;}
.y7{bottom:796.326400pt;}
.y2b{bottom:797.260160pt;}
.y10f{bottom:801.119360pt;}
.y14c{bottom:805.440000pt;}
.y1c6{bottom:806.400000pt;}
.y2a{bottom:814.541440pt;}
.y142{bottom:817.591040pt;}
.y10e{bottom:818.076800pt;}
.y6{bottom:821.129600pt;}
.y1c1{bottom:823.520000pt;}
.y1be{bottom:823.573333pt;}
.y1c3{bottom:830.400000pt;}
.y1c5{bottom:831.520000pt;}
.y29{bottom:831.822720pt;}
.y10d{bottom:834.872320pt;}
.y28{bottom:849.265920pt;}
.y1bd{bottom:849.760000pt;}
.y141{bottom:850.225280pt;}
.y5{bottom:853.763840pt;}
.y10c{bottom:856.157440pt;}
.y27{bottom:866.547200pt;}
.y140{bottom:867.668480pt;}
.y26{bottom:883.828480pt;}
.y13f{bottom:884.949760pt;}
.y4{bottom:886.560000pt;}
.y1bc{bottom:895.682560pt;}
.y25{bottom:901.271680pt;}
.y13e{bottom:902.231040pt;}
.y1bb{bottom:912.640000pt;}
.y24{bottom:918.552960pt;}
.y13d{bottom:919.674240pt;}
.y1ba{bottom:934.560000pt;}
.y23{bottom:935.834240pt;}
.y13c{bottom:936.955520pt;}
.y3{bottom:944.961920pt;}
.y1b8{bottom:951.360000pt;}
.y22{bottom:953.277440pt;}
.y13b{bottom:954.236800pt;}
.y1b7{bottom:968.960000pt;}
.y2{bottom:968.960960pt;}
.y21{bottom:970.558720pt;}
.y13a{bottom:971.680000pt;}
.y20{bottom:987.840000pt;}
.y1{bottom:992.960000pt;}
.y139{bottom:996.954240pt;}
.y1f{bottom:1013.440000pt;}
.y138{bottom:1014.235520pt;}
.y1b6{bottom:1014.883200pt;}
.y1e{bottom:1071.040000pt;}
.h7e{height:16.800000pt;}
.h7d{height:16.960000pt;}
.h83{height:17.120000pt;}
.h10{height:18.191948pt;}
.h59{height:18.241620pt;}
.h14{height:18.241996pt;}
.h71{height:18.733333pt;}
.h35{height:20.000000pt;}
.h74{height:20.304508pt;}
.h53{height:21.236984pt;}
.h65{height:21.257681pt;}
.h4d{height:21.288914pt;}
.h32{height:21.725424pt;}
.h80{height:21.983944pt;}
.h56{height:21.986745pt;}
.hb{height:22.096835pt;}
.h2a{height:22.106995pt;}
.h3b{height:22.353096pt;}
.h19{height:22.398667pt;}
.h3d{height:22.400000pt;}
.h49{height:23.042656pt;}
.h55{height:23.666667pt;}
.he{height:24.266667pt;}
.h12{height:24.333333pt;}
.h47{height:24.834894pt;}
.h7f{height:25.546667pt;}
.h5e{height:25.600000pt;}
.h16{height:25.601333pt;}
.h3e{height:25.745333pt;}
.h36{height:26.051758pt;}
.h72{height:26.573352pt;}
.h4f{height:27.333333pt;}
.h39{height:27.400000pt;}
.h26{height:28.908869pt;}
.h44{height:29.728317pt;}
.hf{height:32.371733pt;}
.h13{height:32.460667pt;}
.h7c{height:33.760000pt;}
.h67{height:33.761333pt;}
.h11{height:34.243490pt;}
.h15{height:34.337565pt;}
.h52{height:34.726332pt;}
.h64{height:34.760127pt;}
.h4c{height:34.810997pt;}
.h75{height:35.121402pt;}
.h7b{height:35.427006pt;}
.h70{height:35.432012pt;}
.h31{height:35.525309pt;}
.h48{height:35.588319pt;}
.h1a{height:35.886352pt;}
.ha{height:36.132190pt;}
.h29{height:36.148910pt;}
.h4b{height:36.237670pt;}
.h17{height:36.695586pt;}
.h54{height:36.734233pt;}
.h66{height:36.769982pt;}
.h4e{height:36.823793pt;}
.h30{height:36.981258pt;}
.h46{height:37.380556pt;}
.h33{height:37.579408pt;}
.h9{height:37.613011pt;}
.h28{height:37.630416pt;}
.h81{height:38.026454pt;}
.h3a{height:38.049609pt;}
.hc{height:38.221379pt;}
.h2b{height:38.239065pt;}
.h58{height:38.587106pt;}
.h3c{height:38.665039pt;}
.h40{height:38.670348pt;}
.h34{height:38.965150pt;}
.h43{height:39.172794pt;}
.h5c{height:39.509881pt;}
.h2c{height:39.616835pt;}
.h62{height:40.168537pt;}
.h1d{height:40.255191pt;}
.h57{height:40.733496pt;}
.h3f{height:40.821368pt;}
.h1f{height:41.163197pt;}
.h82{height:41.457500pt;}
.h38{height:42.688000pt;}
.h6a{height:43.646156pt;}
.h79{height:44.363162pt;}
.h6e{height:44.369838pt;}
.h42{height:44.549506pt;}
.h24{height:44.648519pt;}
.h45{height:44.655194pt;}
.h37{height:45.062500pt;}
.h63{height:45.600000pt;}
.h73{height:45.964094pt;}
.h27{height:46.066667pt;}
.h6{height:47.085938pt;}
.h8{height:47.400000pt;}
.h5b{height:48.547831pt;}
.h5d{height:48.647956pt;}
.h2e{height:49.266667pt;}
.h51{height:49.368999pt;}
.h6b{height:52.361481pt;}
.h69{height:52.437687pt;}
.h78{height:53.299875pt;}
.h6d{height:53.307662pt;}
.h23{height:53.641969pt;}
.h6f{height:53.651981pt;}
.h7a{height:53.668112pt;}
.h25{height:54.558125pt;}
.h86{height:57.758750pt;}
.h4{height:57.787500pt;}
.h87{height:57.790060pt;}
.h85{height:57.792620pt;}
.h20{height:57.800300pt;}
.h1e{height:58.184266pt;}
.h3{height:59.340000pt;}
.h4a{height:59.453094pt;}
.h2f{height:60.672370pt;}
.h60{height:61.215646pt;}
.h84{height:61.410000pt;}
.h61{height:61.939930pt;}
.h50{height:62.018827pt;}
.h1b{height:62.073406pt;}
.h5f{height:62.731466pt;}
.hd{height:63.360000pt;}
.h18{height:63.473602pt;}
.h5{height:64.500000pt;}
.h1c{height:65.300264pt;}
.h7{height:66.750000pt;}
.h21{height:68.970135pt;}
.h2{height:75.465000pt;}
.h76{height:83.400300pt;}
.h2d{height:130.092140pt;}
.h6c{height:235.532000pt;}
.h77{height:274.200000pt;}
.h68{height:275.666667pt;}
.h41{height:285.600000pt;}
.h5a{height:291.665333pt;}
.h22{height:354.868000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:26.865333pt;}
.w14{width:26.866667pt;}
.w5{width:26.934667pt;}
.w24{width:29.934667pt;}
.wd{width:32.466667pt;}
.wf{width:33.600000pt;}
.w13{width:46.065333pt;}
.w20{width:48.000000pt;}
.w2{width:69.800000pt;}
.w6{width:72.333333pt;}
.w8{width:77.266667pt;}
.w1c{width:79.360000pt;}
.w1d{width:79.361333pt;}
.w1e{width:79.518667pt;}
.w1b{width:79.520000pt;}
.w7{width:79.866667pt;}
.w19{width:84.960000pt;}
.w23{width:85.120000pt;}
.w9{width:92.133333pt;}
.wb{width:92.333333pt;}
.w1a{width:94.560000pt;}
.we{width:102.200000pt;}
.w16{width:139.666667pt;}
.w3{width:151.040000pt;}
.w17{width:156.466667pt;}
.wc{width:165.733333pt;}
.w18{width:193.866667pt;}
.w12{width:228.133333pt;}
.w21{width:334.533333pt;}
.w11{width:344.600000pt;}
.wa{width:452.800000pt;}
.w1f{width:453.266667pt;}
.w15{width:453.600000pt;}
.w10{width:453.800000pt;}
.w22{width:453.933333pt;}
.w1{width:793.333333pt;}
.w0{width:793.440000pt;}
.x0{left:0.000000pt;}
.x14{left:1.805655pt;}
.x19{left:3.526133pt;}
.x5a{left:4.572400pt;}
.x56{left:5.586267pt;}
.x41{left:6.528633pt;}
.x1a{left:9.109333pt;}
.x1c{left:10.436667pt;}
.x59{left:12.363333pt;}
.x29{left:14.155333pt;}
.x44{left:15.086133pt;}
.x40{left:16.321600pt;}
.x6a{left:17.600000pt;}
.x7f{left:22.080000pt;}
.x66{left:23.738800pt;}
.x2a{left:24.701600pt;}
.x53{left:26.181867pt;}
.xe{left:27.903467pt;}
.x88{left:29.920000pt;}
.x51{left:31.394933pt;}
.x22{left:32.406267pt;}
.x62{left:33.847600pt;}
.x36{left:35.084267pt;}
.x32{left:37.091867pt;}
.x13{left:38.892000pt;}
.x10{left:40.125103pt;}
.xf{left:41.363070pt;}
.x34{left:42.402533pt;}
.x12{left:46.056576pt;}
.x11{left:48.028533pt;}
.x35{left:50.264133pt;}
.x31{left:53.609867pt;}
.x25{left:58.133600pt;}
.x33{left:61.764133pt;}
.x39{left:63.434400pt;}
.x50{left:65.068000pt;}
.x49{left:70.516933pt;}
.x65{left:72.576400pt;}
.x67{left:77.274667pt;}
.x5d{left:78.587600pt;}
.x3c{left:86.969067pt;}
.x3b{left:88.543333pt;}
.xa{left:94.560000pt;}
.xc{left:98.357760pt;}
.x1d{left:99.613333pt;}
.x2{left:101.273920pt;}
.x1{left:105.280000pt;}
.x2f{left:108.649600pt;}
.x6f{left:110.559360pt;}
.x4d{left:113.947600pt;}
.x2b{left:117.539467pt;}
.x3a{left:119.203733pt;}
.x7{left:122.254720pt;}
.x2c{left:125.237600pt;}
.x2d{left:129.086533pt;}
.x5f{left:132.637440pt;}
.x73{left:133.813333pt;}
.x5{left:135.679360pt;}
.x54{left:138.038800pt;}
.x17{left:147.200000pt;}
.x80{left:148.160000pt;}
.x55{left:149.378667pt;}
.x85{left:155.413333pt;}
.x72{left:162.077440pt;}
.xb{left:168.160000pt;}
.x27{left:170.346667pt;}
.x1e{left:171.840000pt;}
.x1f{left:175.413333pt;}
.x69{left:179.520000pt;}
.x4a{left:180.692933pt;}
.x74{left:181.760000pt;}
.x4e{left:182.876800pt;}
.x4{left:184.800000pt;}
.x4b{left:187.090667pt;}
.x79{left:188.164480pt;}
.x4c{left:190.289467pt;}
.x7a{left:193.440000pt;}
.x77{left:205.097067pt;}
.x70{left:206.664800pt;}
.x6e{left:208.090933pt;}
.x86{left:209.920000pt;}
.x4f{left:226.346667pt;}
.x48{left:228.675867pt;}
.x28{left:229.706133pt;}
.x75{left:231.146667pt;}
.x81{left:233.120000pt;}
.x78{left:245.596800pt;}
.x20{left:255.200000pt;}
.x21{left:258.946667pt;}
.x3{left:262.396960pt;}
.x43{left:271.613333pt;}
.x5e{left:273.598933pt;}
.x60{left:277.760000pt;}
.x3f{left:284.546667pt;}
.x7b{left:288.000000pt;}
.x61{left:298.946667pt;}
.x64{left:301.546667pt;}
.x38{left:315.613333pt;}
.x42{left:316.960000pt;}
.x82{left:327.680000pt;}
.x46{left:333.213333pt;}
.x23{left:336.160000pt;}
.x24{left:339.946667pt;}
.x71{left:343.355467pt;}
.x6{left:344.968320pt;}
.x30{left:350.613333pt;}
.x87{left:352.640000pt;}
.x6b{left:353.600000pt;}
.x9{left:356.640000pt;}
.xd{left:361.813333pt;}
.x8{left:365.296640pt;}
.x47{left:366.720000pt;}
.x45{left:373.760000pt;}
.x26{left:394.080000pt;}
.x83{left:407.040000pt;}
.x15{left:431.520000pt;}
.x6c{left:432.960000pt;}
.x37{left:442.880000pt;}
.x7c{left:446.720000pt;}
.x63{left:455.360000pt;}
.x5b{left:458.813333pt;}
.x3d{left:481.280000pt;}
.x5c{left:485.600000pt;}
.x84{left:486.560000pt;}
.x68{left:495.360000pt;}
.x57{left:512.480000pt;}
.x7d{left:526.240000pt;}
.x16{left:547.840000pt;}
.x76{left:565.600000pt;}
.x52{left:570.880000pt;}
.x6d{left:591.680000pt;}
.x7e{left:605.600000pt;}
.x2e{left:623.040000pt;}
.x58{left:652.880000pt;}
.x18{left:672.080000pt;}
.x3e{left:678.086400pt;}
.x1b{left:698.880000pt;}
}




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