
    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_db9541e476c41d85f84c3d08.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c5761c5208e40dffd8513ec3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3d876854f29872735f6efdba.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_ccc47a76dfe0cec711efc9c3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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_82a33f02cced749691538edd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_ff97d87a93c229dd099f0f1c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.388000;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_edd31a1ac3b721afbb434ccb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_751b4de2181027413bfec5f1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.200684;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_4c0486bafb5738d700ec6a3b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_67dc100a35d8b267dddfdbb2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_023f834d7414804b54ece21f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_630cd105749da3023623fee4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1ddae75777e4890ebec9938e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.200684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_61797494989917b0491adf42.woff')format("woff");}.ffe{font-family:ffe;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_023f834d7414804b54ece21f.woff')format("woff");}.fff{font-family:fff;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f817d25b81690a57cbada094.woff')format("woff");}.ff10{font-family:ff10;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6505c03d5bffad800fca21a4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls4c{letter-spacing:-0.685368px;}
.ls48{letter-spacing:-0.679356px;}
.ls51{letter-spacing:-0.667332px;}
.ls47{letter-spacing:-0.661320px;}
.ls50{letter-spacing:-0.655308px;}
.ls4a{letter-spacing:-0.649296px;}
.ls4e{letter-spacing:-0.643284px;}
.ls4b{letter-spacing:-0.637272px;}
.ls49{letter-spacing:-0.631260px;}
.ls4f{letter-spacing:-0.613224px;}
.ls4d{letter-spacing:-0.595188px;}
.ls73{letter-spacing:-0.156312px;}
.ls74{letter-spacing:-0.150300px;}
.ls72{letter-spacing:-0.132264px;}
.ls59{letter-spacing:-0.114228px;}
.ls6c{letter-spacing:-0.096192px;}
.ls6d{letter-spacing:-0.090180px;}
.ls44{letter-spacing:-0.086184px;}
.ls71{letter-spacing:-0.084168px;}
.ls70{letter-spacing:-0.078156px;}
.ls6e{letter-spacing:-0.072144px;}
.ls45{letter-spacing:-0.060120px;}
.ls56{letter-spacing:-0.042084px;}
.ls53{letter-spacing:-0.036072px;}
.ls52{letter-spacing:-0.030060px;}
.ls6f{letter-spacing:-0.027000px;}
.ls58{letter-spacing:-0.024048px;}
.ls46{letter-spacing:-0.018036px;}
.ls57{letter-spacing:-0.012024px;}
.ls54{letter-spacing:-0.006012px;}
.lsf{letter-spacing:0.000000px;}
.ls7d{letter-spacing:0.000041px;}
.ls7f{letter-spacing:0.000335px;}
.ls9b{letter-spacing:0.000412px;}
.ls35{letter-spacing:0.000435px;}
.ls8b{letter-spacing:0.000503px;}
.ls4{letter-spacing:0.000583px;}
.ls2{letter-spacing:0.000600px;}
.ls32{letter-spacing:0.000638px;}
.ls8e{letter-spacing:0.000676px;}
.ls98{letter-spacing:0.000741px;}
.ls8a{letter-spacing:0.000845px;}
.lsa2{letter-spacing:0.000901px;}
.ls85{letter-spacing:0.000959px;}
.ls99{letter-spacing:0.001036px;}
.ls7e{letter-spacing:0.001074px;}
.ls86{letter-spacing:0.001102px;}
.ls92{letter-spacing:0.001155px;}
.ls9a{letter-spacing:0.001565px;}
.ls8d{letter-spacing:0.001584px;}
.ls79{letter-spacing:0.001673px;}
.ls7{letter-spacing:0.001682px;}
.ls80{letter-spacing:0.002074px;}
.ls33{letter-spacing:0.002181px;}
.ls0{letter-spacing:0.002302px;}
.ls2f{letter-spacing:0.002372px;}
.ls97{letter-spacing:0.002461px;}
.ls9e{letter-spacing:0.002544px;}
.ls78{letter-spacing:0.002604px;}
.ls31{letter-spacing:0.002782px;}
.ls89{letter-spacing:0.002841px;}
.ls2d{letter-spacing:0.003219px;}
.ls23{letter-spacing:0.003226px;}
.lsc{letter-spacing:0.003851px;}
.ls8c{letter-spacing:0.003859px;}
.ls7c{letter-spacing:0.004028px;}
.ls8f{letter-spacing:0.004090px;}
.ls90{letter-spacing:0.004267px;}
.ls9f{letter-spacing:0.004800px;}
.ls40{letter-spacing:0.005400px;}
.ls5d{letter-spacing:0.010800px;}
.ls65{letter-spacing:0.012024px;}
.ls68{letter-spacing:0.015206px;}
.ls5c{letter-spacing:0.016200px;}
.lsb{letter-spacing:0.017548px;}
.ls5f{letter-spacing:0.018036px;}
.ls3f{letter-spacing:0.021600px;}
.ls62{letter-spacing:0.030060px;}
.ls37{letter-spacing:0.033516px;}
.ls5b{letter-spacing:0.036072px;}
.ls3c{letter-spacing:0.037800px;}
.ls39{letter-spacing:0.038304px;}
.ls66{letter-spacing:0.042084px;}
.ls61{letter-spacing:0.048096px;}
.ls3e{letter-spacing:0.048600px;}
.ls5a{letter-spacing:0.054108px;}
.ls3d{letter-spacing:0.059400px;}
.ls42{letter-spacing:0.060120px;}
.ls43{letter-spacing:0.066132px;}
.ls5e{letter-spacing:0.084168px;}
.ls3b{letter-spacing:0.090180px;}
.ls87{letter-spacing:0.106800px;}
.ls60{letter-spacing:0.120240px;}
.ls55{letter-spacing:0.126252px;}
.ls64{letter-spacing:0.150300px;}
.ls41{letter-spacing:0.180360px;}
.ls3a{letter-spacing:0.181944px;}
.ls38{letter-spacing:0.191520px;}
.ls63{letter-spacing:0.192384px;}
.ls1{letter-spacing:8.373300px;}
.lse{letter-spacing:11.954850px;}
.ls7a{letter-spacing:12.074671px;}
.ls88{letter-spacing:12.203461px;}
.ls21{letter-spacing:12.253998px;}
.ls83{letter-spacing:13.307641px;}
.ls82{letter-spacing:13.313570px;}
.ls9c{letter-spacing:13.445084px;}
.ls81{letter-spacing:13.448400px;}
.ls84{letter-spacing:13.454400px;}
.ls9d{letter-spacing:13.462165px;}
.ls96{letter-spacing:13.508231px;}
.ls13{letter-spacing:13.509286px;}
.lsa1{letter-spacing:13.571591px;}
.lsa0{letter-spacing:13.599082px;}
.ls91{letter-spacing:13.611376px;}
.ls95{letter-spacing:13.629992px;}
.ls93{letter-spacing:13.639085px;}
.ls1f{letter-spacing:14.166817px;}
.ls18{letter-spacing:14.585246px;}
.ls1e{letter-spacing:14.645022px;}
.ls20{letter-spacing:14.704798px;}
.ls1a{letter-spacing:14.764573px;}
.ls24{letter-spacing:14.884124px;}
.ls12{letter-spacing:14.943900px;}
.ls3{letter-spacing:14.944200px;}
.ls2b{letter-spacing:15.003676px;}
.ls28{letter-spacing:15.063451px;}
.ls30{letter-spacing:15.095379px;}
.lsa{letter-spacing:15.123227px;}
.ls7b{letter-spacing:15.183002px;}
.ls9{letter-spacing:15.242778px;}
.ls14{letter-spacing:15.302554px;}
.ls1b{letter-spacing:15.541656px;}
.ls16{letter-spacing:15.601432px;}
.ls29{letter-spacing:15.960085px;}
.ls17{letter-spacing:16.019861px;}
.ls94{letter-spacing:16.050400px;}
.ls15{letter-spacing:16.199188px;}
.ls2a{letter-spacing:16.438290px;}
.ls27{letter-spacing:17.574026px;}
.ls1c{letter-spacing:17.753353px;}
.ls69{letter-spacing:17.872904px;}
.ls6b{letter-spacing:17.932680px;}
.lsd{letter-spacing:18.171782px;}
.ls19{letter-spacing:18.351109px;}
.ls34{letter-spacing:19.008641px;}
.ls1d{letter-spacing:19.307519px;}
.ls6a{letter-spacing:19.486846px;}
.ls2c{letter-spacing:19.666172px;}
.ls2e{letter-spacing:19.725948px;}
.ls8{letter-spacing:19.753002px;}
.ls75{letter-spacing:19.905275px;}
.ls25{letter-spacing:19.965050px;}
.ls22{letter-spacing:20.024826px;}
.ls36{letter-spacing:20.811825px;}
.ls76{letter-spacing:21.160562px;}
.ls11{letter-spacing:21.519216px;}
.ls10{letter-spacing:21.758318px;}
.ls67{letter-spacing:21.997421px;}
.ls26{letter-spacing:22.176748px;}
.ls77{letter-spacing:24.448220px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws85{word-spacing:-54.000000px;}
.ws8{word-spacing:-14.943900px;}
.ws100{word-spacing:-13.449600px;}
.ws83{word-spacing:-12.161520px;}
.ws84{word-spacing:-11.970000px;}
.ws24{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.ws1{word-spacing:-10.460700px;}
.ws5a{word-spacing:-3.287658px;}
.wsed{word-spacing:-3.168107px;}
.wse3{word-spacing:-3.156300px;}
.ws6f{word-spacing:-3.048556px;}
.wsf0{word-spacing:-2.929004px;}
.ws70{word-spacing:-2.809453px;}
.ws72{word-spacing:-2.749678px;}
.ws36{word-spacing:-2.689902px;}
.ws27{word-spacing:-2.630126px;}
.wse4{word-spacing:-2.627244px;}
.ws3{word-spacing:-2.594254px;}
.wsbb{word-spacing:-2.380752px;}
.ws6c{word-spacing:-2.271473px;}
.ws4f{word-spacing:-2.151922px;}
.ws9c{word-spacing:-2.140272px;}
.wsde{word-spacing:-2.122236px;}
.ws0{word-spacing:-2.092140px;}
.ws4{word-spacing:-2.091217px;}
.wscd{word-spacing:-2.026044px;}
.wsba{word-spacing:-2.020032px;}
.ws53{word-spacing:-1.972595px;}
.wsce{word-spacing:-1.971936px;}
.ws121{word-spacing:-1.936742px;}
.ws8a{word-spacing:-1.912819px;}
.ws7a{word-spacing:-1.793268px;}
.wsdd{word-spacing:-1.677348px;}
.ws6b{word-spacing:-1.673717px;}
.ws105{word-spacing:-1.613952px;}
.wsf1{word-spacing:-1.554166px;}
.ws29{word-spacing:-1.494390px;}
.ws10f{word-spacing:-1.452557px;}
.ws28{word-spacing:-1.434614px;}
.ws82{word-spacing:-1.374839px;}
.ws88{word-spacing:-1.255288px;}
.ws106{word-spacing:-1.237363px;}
.ws21{word-spacing:-1.135736px;}
.ws10e{word-spacing:-1.129766px;}
.ws7d{word-spacing:-1.016185px;}
.wsda{word-spacing:-1.016028px;}
.wsaf{word-spacing:-0.979956px;}
.wsdb{word-spacing:-0.973944px;}
.ws81{word-spacing:-0.956410px;}
.wse7{word-spacing:-0.955908px;}
.wse8{word-spacing:-0.949896px;}
.ws56{word-spacing:-0.836858px;}
.ws35{word-spacing:-0.777083px;}
.ws2a{word-spacing:-0.717307px;}
.ws98{word-spacing:-0.709416px;}
.wsc2{word-spacing:-0.589176px;}
.ws62{word-spacing:-0.537980px;}
.ws57{word-spacing:-0.418429px;}
.wsf6{word-spacing:-0.402956px;}
.wsac{word-spacing:-0.390780px;}
.wsf7{word-spacing:-0.376589px;}
.ws3b{word-spacing:-0.358654px;}
.wsb0{word-spacing:-0.330660px;}
.ws30{word-spacing:-0.298878px;}
.wsd7{word-spacing:-0.282564px;}
.ws116{word-spacing:-0.268992px;}
.wsab{word-spacing:-0.258516px;}
.ws33{word-spacing:-0.239102px;}
.wsc3{word-spacing:-0.234468px;}
.wsad{word-spacing:-0.222444px;}
.wsfb{word-spacing:-0.215194px;}
.ws14{word-spacing:-0.179327px;}
.wsf8{word-spacing:-0.171750px;}
.wsf9{word-spacing:-0.161395px;}
.ws8c{word-spacing:-0.124488px;}
.ws8b{word-spacing:-0.119700px;}
.ws10{word-spacing:-0.119551px;}
.ws102{word-spacing:-0.107597px;}
.ws86{word-spacing:-0.060120px;}
.ws11{word-spacing:-0.059776px;}
.wsf4{word-spacing:-0.053798px;}
.ws11e{word-spacing:-0.021004px;}
.ws108{word-spacing:-0.004330px;}
.ws109{word-spacing:-0.001526px;}
.wsa{word-spacing:-0.001483px;}
.ws5{word-spacing:0.000000px;}
.ws23{word-spacing:0.001881px;}
.ws9d{word-spacing:0.006012px;}
.wsdc{word-spacing:0.007200px;}
.wsca{word-spacing:0.012024px;}
.wsa4{word-spacing:0.018036px;}
.ws104{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.ws91{word-spacing:0.096192px;}
.ws103{word-spacing:0.107597px;}
.ws90{word-spacing:0.114228px;}
.ws1d{word-spacing:0.119551px;}
.wsb3{word-spacing:0.120240px;}
.ws8f{word-spacing:0.156312px;}
.wsff{word-spacing:0.161395px;}
.wsc5{word-spacing:0.168336px;}
.wsa9{word-spacing:0.178200px;}
.ws20{word-spacing:0.179327px;}
.wsc4{word-spacing:0.186372px;}
.wsfd{word-spacing:0.215194px;}
.wsd{word-spacing:0.239102px;}
.wsfe{word-spacing:0.268992px;}
.ws1e{word-spacing:0.298878px;}
.ws2{word-spacing:0.308072px;}
.ws110{word-spacing:0.322790px;}
.ws1f{word-spacing:0.358654px;}
.wsd0{word-spacing:0.372744px;}
.wsc1{word-spacing:0.390780px;}
.wsd2{word-spacing:0.408816px;}
.ws73{word-spacing:0.418429px;}
.ws6{word-spacing:0.422252px;}
.ws122{word-spacing:0.430387px;}
.ws8e{word-spacing:0.456912px;}
.ws75{word-spacing:0.478205px;}
.ws123{word-spacing:0.484186px;}
.wsaa{word-spacing:0.486972px;}
.wsd1{word-spacing:0.535068px;}
.ws7{word-spacing:0.537984px;}
.ws11d{word-spacing:0.591782px;}
.ws2f{word-spacing:0.597756px;}
.ws11c{word-spacing:0.645581px;}
.ws2e{word-spacing:0.657532px;}
.ws32{word-spacing:0.717307px;}
.ws3c{word-spacing:0.777083px;}
.wsbf{word-spacing:0.829656px;}
.ws47{word-spacing:0.836858px;}
.ws76{word-spacing:0.896634px;}
.wsc0{word-spacing:0.913824px;}
.ws43{word-spacing:0.956410px;}
.ws42{word-spacing:1.016185px;}
.ws4e{word-spacing:1.075961px;}
.wsa2{word-spacing:1.112220px;}
.wsa1{word-spacing:1.124244px;}
.ws37{word-spacing:1.135736px;}
.wsbe{word-spacing:1.142280px;}
.ws2c{word-spacing:1.255288px;}
.ws7c{word-spacing:1.374839px;}
.ws41{word-spacing:1.434614px;}
.wsd6{word-spacing:1.484964px;}
.ws45{word-spacing:1.494390px;}
.wse5{word-spacing:1.496988px;}
.ws11b{word-spacing:1.506355px;}
.wsd5{word-spacing:1.545084px;}
.ws54{word-spacing:1.554166px;}
.wsc9{word-spacing:1.587600px;}
.wsc6{word-spacing:1.609200px;}
.ws124{word-spacing:1.613952px;}
.wsc8{word-spacing:1.614600px;}
.wsc7{word-spacing:1.652400px;}
.wsb9{word-spacing:1.673717px;}
.wse6{word-spacing:1.689372px;}
.ws5c{word-spacing:1.733492px;}
.ws7f{word-spacing:1.793268px;}
.ws4d{word-spacing:1.853044px;}
.ws16{word-spacing:1.912819px;}
.ws59{word-spacing:1.972595px;}
.ws114{word-spacing:1.990541px;}
.ws4c{word-spacing:2.032370px;}
.ws117{word-spacing:2.044339px;}
.ws74{word-spacing:2.092146px;}
.ws95{word-spacing:2.200392px;}
.ws17{word-spacing:2.211697px;}
.ws94{word-spacing:2.218428px;}
.wsd8{word-spacing:2.230452px;}
.wsd9{word-spacing:2.266524px;}
.ws3d{word-spacing:2.271473px;}
.wsb1{word-spacing:2.278548px;}
.ws112{word-spacing:2.367130px;}
.wsb2{word-spacing:2.368728px;}
.ws18{word-spacing:2.391024px;}
.ws11f{word-spacing:2.474726px;}
.wsbc{word-spacing:2.561112px;}
.ws10b{word-spacing:2.582323px;}
.ws40{word-spacing:2.630126px;}
.wsbd{word-spacing:2.633256px;}
.wsa6{word-spacing:2.646000px;}
.wsa7{word-spacing:2.656800px;}
.wsa5{word-spacing:2.667600px;}
.wsa8{word-spacing:2.683800px;}
.ws6e{word-spacing:2.689902px;}
.ws7b{word-spacing:2.749678px;}
.ws34{word-spacing:2.809453px;}
.ws115{word-spacing:2.851315px;}
.ws52{word-spacing:2.869229px;}
.wsb{word-spacing:2.869236px;}
.wsb8{word-spacing:2.929004px;}
.wsd3{word-spacing:2.975940px;}
.wsd4{word-spacing:2.981952px;}
.ws111{word-spacing:3.012710px;}
.ws4b{word-spacing:3.048556px;}
.ws11a{word-spacing:3.066509px;}
.ws71{word-spacing:3.108331px;}
.ws6a{word-spacing:3.168107px;}
.ws10d{word-spacing:3.174106px;}
.ws10c{word-spacing:3.220368px;}
.ws10a{word-spacing:3.223085px;}
.ws118{word-spacing:3.224198px;}
.wsfa{word-spacing:3.224822px;}
.ws22{word-spacing:3.227882px;}
.ws101{word-spacing:3.227904px;}
.ws1c{word-spacing:3.287658px;}
.ws107{word-spacing:3.335501px;}
.ws79{word-spacing:3.347434px;}
.ws31{word-spacing:3.407209px;}
.ws49{word-spacing:3.466985px;}
.wsb6{word-spacing:3.496896px;}
.ws89{word-spacing:3.526760px;}
.wsfc{word-spacing:3.542917px;}
.ws19{word-spacing:3.583475px;}
.wsa0{word-spacing:3.631248px;}
.ws3f{word-spacing:3.646312px;}
.ws48{word-spacing:3.706087px;}
.ws51{word-spacing:3.765863px;}
.ws4a{word-spacing:3.825638px;}
.wsc{word-spacing:3.880178px;}
.ws64{word-spacing:3.885414px;}
.ws119{word-spacing:3.927283px;}
.wse1{word-spacing:4.003992px;}
.wse2{word-spacing:4.058100px;}
.ws69{word-spacing:4.064741px;}
.ws63{word-spacing:4.184292px;}
.ws13{word-spacing:4.303843px;}
.ws1a{word-spacing:4.303872px;}
.ws96{word-spacing:4.328640px;}
.ws97{word-spacing:4.346676px;}
.wsa3{word-spacing:4.358700px;}
.ws61{word-spacing:4.363619px;}
.ws25{word-spacing:4.423394px;}
.ws87{word-spacing:4.465267px;}
.ws65{word-spacing:4.542946px;}
.wsee{word-spacing:4.602721px;}
.ws46{word-spacing:4.722272px;}
.ws120{word-spacing:4.734259px;}
.ws15{word-spacing:4.782048px;}
.ws38{word-spacing:4.841824px;}
.wsec{word-spacing:4.901599px;}
.ws2d{word-spacing:4.961375px;}
.ws39{word-spacing:5.021150px;}
.ws3a{word-spacing:5.080926px;}
.wsb5{word-spacing:5.140702px;}
.wseb{word-spacing:5.260253px;}
.ws55{word-spacing:5.379804px;}
.ws9f{word-spacing:5.392764px;}
.ws50{word-spacing:5.439580px;}
.ws9e{word-spacing:5.440860px;}
.wsf{word-spacing:5.499355px;}
.wsae{word-spacing:5.795568px;}
.ws77{word-spacing:5.858009px;}
.wsb4{word-spacing:5.917784px;}
.wsf2{word-spacing:5.917824px;}
.wsf3{word-spacing:5.928904px;}
.ws7e{word-spacing:5.977560px;}
.ws67{word-spacing:6.037336px;}
.ws6d{word-spacing:6.156887px;}
.wsea{word-spacing:6.216662px;}
.ws80{word-spacing:6.276438px;}
.ws1b{word-spacing:6.336214px;}
.ws68{word-spacing:6.395989px;}
.ws26{word-spacing:6.575316px;}
.ws113{word-spacing:6.671002px;}
.ws12{word-spacing:6.754643px;}
.ws125{word-spacing:6.832397px;}
.wscf{word-spacing:6.871716px;}
.wsef{word-spacing:6.933970px;}
.ws5b{word-spacing:6.993745px;}
.ws44{word-spacing:7.053521px;}
.ws3e{word-spacing:7.232848px;}
.wscb{word-spacing:7.280532px;}
.ws58{word-spacing:7.292623px;}
.wscc{word-spacing:7.316604px;}
.wsdf{word-spacing:7.322616px;}
.ws78{word-spacing:7.352399px;}
.wse0{word-spacing:7.430832px;}
.ws2b{word-spacing:7.531726px;}
.ws9b{word-spacing:7.533036px;}
.ws99{word-spacing:7.587144px;}
.ws66{word-spacing:7.830604px;}
.ws9a{word-spacing:7.983936px;}
.wse9{word-spacing:8.069706px;}
.wsb7{word-spacing:8.368584px;}
.wsf5{word-spacing:9.038131px;}
.ws92{word-spacing:10.118196px;}
.ws93{word-spacing:10.136232px;}
.ws8d{word-spacing:11.615688px;}
.ws126{word-spacing:24.209280px;}
.ws60{word-spacing:245.319062px;}
.ws5f{word-spacing:288.775924px;}
.ws5e{word-spacing:297.503161px;}
.ws5d{word-spacing:326.613878px;}
._4{margin-left:-10.114099px;}
._34{margin-left:-7.800768px;}
._6{margin-left:-6.635400px;}
._9{margin-left:-5.260266px;}
._1{margin-left:-3.933223px;}
._14{margin-left:-2.797502px;}
._2{margin-left:-1.506341px;}
._15{width:1.016185px;}
._7{width:2.994538px;}
._18{width:4.698725px;}
._0{width:10.879128px;}
._33{width:12.574235px;}
._12{width:13.700872px;}
._e{width:14.824386px;}
._16{width:15.948427px;}
._2b{width:17.036368px;}
._b{width:18.231558px;}
._13{width:19.797983px;}
._3{width:21.757002px;}
._11{width:23.611362px;}
._2f{width:24.627856px;}
._c{width:25.703508px;}
._32{width:27.639004px;}
._d{width:29.421546px;}
._31{width:30.447104px;}
._2d{width:31.681068px;}
._5{width:33.355008px;}
._a{width:34.801350px;}
._2c{width:37.204325px;}
._17{width:40.420256px;}
._8{width:69.354542px;}
._27{width:165.530587px;}
._19{width:177.354205px;}
._1c{width:214.654180px;}
._24{width:226.071319px;}
._1d{width:227.322377px;}
._1a{width:247.710100px;}
._1b{width:252.611686px;}
._21{width:260.561854px;}
._29{width:274.251102px;}
._1e{width:277.896764px;}
._25{width:291.704891px;}
._20{width:302.285209px;}
._28{width:303.958926px;}
._22{width:321.413364px;}
._2a{width:348.969953px;}
._1f{width:375.091890px;}
._26{width:388.780502px;}
._23{width:418.548751px;}
._f{width:1652.229900px;}
._30{width:2006.228327px;}
._2e{width:2484.111900px;}
._10{width:2508.021900px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs8{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.y1a1{bottom:-506.104050px;}
.y1bc{bottom:-466.503510px;}
.y1bb{bottom:-445.533654px;}
.y1ba{bottom:-424.563798px;}
.y1b9{bottom:-403.503762px;}
.y1b8{bottom:-382.533906px;}
.y1b7{bottom:-361.564050px;}
.y1b6{bottom:-335.194050px;}
.y1b5{bottom:-293.793312px;}
.y1b4{bottom:-272.733276px;}
.y1b3{bottom:-251.763420px;}
.y151{bottom:-240.293550px;}
.y1b2{bottom:-230.793564px;}
.y1b1{bottom:-209.733528px;}
.y16a{bottom:-206.903046px;}
.y1b0{bottom:-188.763672px;}
.y169{bottom:-185.933190px;}
.y1af{bottom:-167.793816px;}
.y168{bottom:-164.873154px;}
.y1ae{bottom:-146.733780px;}
.y167{bottom:-143.903298px;}
.y1ad{bottom:-125.763924px;}
.y166{bottom:-122.933442px;}
.y1ac{bottom:-104.794068px;}
.y165{bottom:-101.873406px;}
.y164{bottom:-80.903550px;}
.y1ab{bottom:-79.234050px;}
.y163{bottom:-51.383550px;}
.y1aa{bottom:-40.713600px;}
.y162{bottom:-30.323550px;}
.y1a9{bottom:-19.744050px;}
.y0{bottom:0.000000px;}
.y161{bottom:4.597755px;}
.y1a8{bottom:6.265644px;}
.y40{bottom:45.921000px;}
.y3f{bottom:99.720000px;}
.y16{bottom:100.260000px;}
.y21b{bottom:105.961500px;}
.yfa{bottom:106.455000px;}
.y17d{bottom:110.215500px;}
.y72{bottom:111.342000px;}
.y132{bottom:112.570500px;}
.y1e9{bottom:116.272500px;}
.y1d3{bottom:116.407500px;}
.y143{bottom:116.839500px;}
.y15{bottom:118.147500px;}
.y8d{bottom:118.365000px;}
.y3e{bottom:120.610500px;}
.y21a{bottom:125.112000px;}
.yf9{bottom:127.347000px;}
.yca{bottom:127.750500px;}
.y17c{bottom:131.107500px;}
.y71{bottom:132.234000px;}
.y131{bottom:133.462500px;}
.y1e8{bottom:135.423000px;}
.y14{bottom:136.035000px;}
.y1d2{bottom:137.298000px;}
.y142{bottom:137.731500px;}
.y8c{bottom:139.255500px;}
.y3d{bottom:141.502500px;}
.y219{bottom:144.262500px;}
.yc9{bottom:148.642500px;}
.y17b{bottom:151.998000px;}
.yf8{bottom:152.721000px;}
.y70{bottom:153.126000px;}
.y13{bottom:153.924000px;}
.y130{bottom:154.354500px;}
.y1e7{bottom:154.573500px;}
.y1d1{bottom:158.190000px;}
.y141{bottom:158.623500px;}
.y8b{bottom:160.147500px;}
.y3c{bottom:162.394500px;}
.y218{bottom:163.413000px;}
.yc8{bottom:169.534500px;}
.y12{bottom:171.811500px;}
.y17a{bottom:172.890000px;}
.y1e6{bottom:173.724000px;}
.y6f{bottom:174.016500px;}
.y12f{bottom:175.245000px;}
.y1d0{bottom:179.082000px;}
.y140{bottom:179.514000px;}
.y8a{bottom:181.039500px;}
.y217{bottom:182.563500px;}
.y3b{bottom:183.285000px;}
.yf7{bottom:188.064000px;}
.y11{bottom:189.699000px;}
.yc7{bottom:190.425000px;}
.y1e5{bottom:192.874500px;}
.y179{bottom:193.782000px;}
.y6e{bottom:194.908500px;}
.y12e{bottom:196.137000px;}
.y1cf{bottom:199.972500px;}
.y13f{bottom:200.406000px;}
.y216{bottom:201.714000px;}
.y89{bottom:201.930000px;}
.y3a{bottom:204.177000px;}
.y10{bottom:207.586500px;}
.yf6{bottom:208.954500px;}
.yc6{bottom:211.317000px;}
.y1e4{bottom:212.025000px;}
.y178{bottom:214.672500px;}
.y6d{bottom:215.800500px;}
.y12d{bottom:217.029000px;}
.y1ce{bottom:220.864500px;}
.y13e{bottom:221.298000px;}
.y88{bottom:222.822000px;}
.y39{bottom:225.069000px;}
.yf{bottom:225.475500px;}
.yf5{bottom:229.846500px;}
.yc5{bottom:232.209000px;}
.y177{bottom:235.564500px;}
.y1e3{bottom:235.659000px;}
.y6c{bottom:236.691000px;}
.y12c{bottom:237.919500px;}
.y215{bottom:240.015000px;}
.y1cd{bottom:241.756500px;}
.y13d{bottom:242.190000px;}
.y87{bottom:243.714000px;}
.y38{bottom:245.961000px;}
.y19d{bottom:249.586500px;}
.yf4{bottom:250.738500px;}
.ye{bottom:252.330000px;}
.yc4{bottom:253.099500px;}
.y176{bottom:256.456500px;}
.y6b{bottom:257.583000px;}
.y12b{bottom:258.811500px;}
.y214{bottom:259.165500px;}
.y1cc{bottom:262.647000px;}
.y86{bottom:264.606000px;}
.y37{bottom:266.851500px;}
.y13c{bottom:267.564000px;}
.yd{bottom:270.217500px;}
.y19c{bottom:270.478500px;}
.yf3{bottom:271.629000px;}
.yc3{bottom:273.991500px;}
.y1e2{bottom:274.483500px;}
.y175{bottom:277.347000px;}
.y213{bottom:278.316000px;}
.y6a{bottom:278.475000px;}
.y12a{bottom:279.703500px;}
.y1cb{bottom:283.539000px;}
.y85{bottom:285.496500px;}
.y36{bottom:287.743500px;}
.yc{bottom:288.105000px;}
.y148{bottom:289.980000px;}
.y19b{bottom:291.369000px;}
.yf2{bottom:292.521000px;}
.yc2{bottom:294.883500px;}
.y212{bottom:297.466500px;}
.y69{bottom:299.365500px;}
.y129{bottom:300.594000px;}
.y174{bottom:302.722500px;}
.y13b{bottom:302.907000px;}
.y1e1{bottom:302.949000px;}
.y1ca{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y84{bottom:306.388500px;}
.y35{bottom:308.635500px;}
.y19a{bottom:312.261000px;}
.yf1{bottom:313.413000px;}
.yc1{bottom:315.774000px;}
.y211{bottom:316.617000px;}
.y68{bottom:320.257500px;}
.y128{bottom:321.486000px;}
.y1e0{bottom:322.447500px;}
.y13a{bottom:323.797500px;}
.ya{bottom:323.881500px;}
.y147{bottom:325.323000px;}
.y83{bottom:327.280500px;}
.y34{bottom:329.526000px;}
.y199{bottom:333.153000px;}
.yf0{bottom:334.305000px;}
.y210{bottom:335.767500px;}
.yc0{bottom:336.666000px;}
.y173{bottom:338.064000px;}
.y67{bottom:341.149500px;}
.y9{bottom:341.769000px;}
.y1df{bottom:341.946000px;}
.y127{bottom:342.378000px;}
.y139{bottom:344.689500px;}
.y146{bottom:346.213500px;}
.y82{bottom:348.171000px;}
.y33{bottom:350.418000px;}
.y198{bottom:354.043500px;}
.y20f{bottom:354.918000px;}
.yef{bottom:355.195500px;}
.ybf{bottom:357.558000px;}
.y172{bottom:358.956000px;}
.y8{bottom:359.658000px;}
.y1de{bottom:361.444500px;}
.y66{bottom:362.041500px;}
.y126{bottom:363.270000px;}
.y138{bottom:365.581500px;}
.y145{bottom:367.105500px;}
.y81{bottom:369.063000px;}
.y32{bottom:371.310000px;}
.y107{bottom:373.546500px;}
.y20e{bottom:374.070000px;}
.y197{bottom:374.935500px;}
.yee{bottom:376.087500px;}
.y7{bottom:377.545500px;}
.ybe{bottom:378.448500px;}
.y171{bottom:379.848000px;}
.y65{bottom:382.932000px;}
.y125{bottom:384.160500px;}
.y137{bottom:386.472000px;}
.y144{bottom:387.997500px;}
.y1dd{bottom:389.910000px;}
.y80{bottom:389.955000px;}
.y20d{bottom:393.220500px;}
.y196{bottom:395.827500px;}
.y31{bottom:396.684000px;}
.yed{bottom:396.979500px;}
.ybd{bottom:399.340500px;}
.y170{bottom:400.738500px;}
.y6{bottom:401.410500px;}
.y64{bottom:403.824000px;}
.y124{bottom:405.052500px;}
.y136{bottom:407.364000px;}
.y21e{bottom:407.640000px;}
.y106{bottom:408.888000px;}
.y1dc{bottom:409.408500px;}
.y7f{bottom:410.845500px;}
.y20c{bottom:412.371000px;}
.y195{bottom:416.718000px;}
.yec{bottom:417.870000px;}
.y5{bottom:419.299500px;}
.ybc{bottom:420.232500px;}
.y16f{bottom:421.630500px;}
.y63{bottom:424.716000px;}
.y123{bottom:425.944500px;}
.y21d{bottom:426.790500px;}
.y135{bottom:428.256000px;}
.y105{bottom:429.780000px;}
.y20b{bottom:431.521500px;}
.y7e{bottom:431.737500px;}
.y1c9{bottom:435.508500px;}
.y4{bottom:437.187000px;}
.y194{bottom:437.610000px;}
.y1db{bottom:437.874000px;}
.yeb{bottom:438.762000px;}
.ybb{bottom:441.123000px;}
.y16e{bottom:442.522500px;}
.y62{bottom:445.606500px;}
.y21c{bottom:445.942500px;}
.y122{bottom:446.835000px;}
.y134{bottom:449.146500px;}
.y104{bottom:450.672000px;}
.y7d{bottom:452.629500px;}
.y3{bottom:455.074500px;}
.y1c8{bottom:456.400500px;}
.y193{bottom:458.502000px;}
.y1a7{bottom:458.785878px;}
.yea{bottom:459.654000px;}
.yba{bottom:462.015000px;}
.y16d{bottom:463.414500px;}
.y1da{bottom:466.338000px;}
.y61{bottom:466.498500px;}
.y121{bottom:467.727000px;}
.y20a{bottom:469.822500px;}
.y103{bottom:471.562500px;}
.y7c{bottom:473.520000px;}
.y133{bottom:474.522000px;}
.y30{bottom:475.896000px;}
.y1c7{bottom:477.291000px;}
.y2{bottom:478.941000px;}
.y1a6{bottom:479.755734px;}
.ye9{bottom:480.544500px;}
.yb9{bottom:482.907000px;}
.y192{bottom:483.876000px;}
.y60{bottom:487.390500px;}
.y120{bottom:488.619000px;}
.y209{bottom:488.973000px;}
.y160{bottom:490.597314px;}
.y102{bottom:492.454500px;}
.y7b{bottom:494.412000px;}
.y1d9{bottom:494.803500px;}
.y1{bottom:496.828500px;}
.y1c6{bottom:498.183000px;}
.y16c{bottom:499.041000px;}
.y1a5{bottom:500.815770px;}
.ye8{bottom:501.436500px;}
.yb8{bottom:503.799000px;}
.y208{bottom:508.123500px;}
.y5f{bottom:508.281000px;}
.y11f{bottom:509.509500px;}
.y15f{bottom:511.567170px;}
.y101{bottom:513.346500px;}
.y2f{bottom:514.720500px;}
.y7a{bottom:515.304000px;}
.y16b{bottom:518.274000px;}
.y1c5{bottom:519.075000px;}
.y191{bottom:519.219000px;}
.y1a4{bottom:521.785626px;}
.ye7{bottom:522.328500px;}
.y1d8{bottom:523.269000px;}
.yb7{bottom:524.689500px;}
.y207{bottom:527.274000px;}
.y5e{bottom:529.173000px;}
.y11e{bottom:530.401500px;}
.y15e{bottom:532.627206px;}
.y100{bottom:534.237000px;}
.y2e{bottom:535.612500px;}
.y79{bottom:536.194500px;}
.y1c4{bottom:539.965500px;}
.y190{bottom:540.111000px;}
.y14e{bottom:540.703500px;}
.y1a3{bottom:542.755482px;}
.y1d7{bottom:542.767500px;}
.ye6{bottom:543.219000px;}
.yb6{bottom:545.581500px;}
.y206{bottom:546.424500px;}
.y5d{bottom:550.065000px;}
.y11d{bottom:551.293500px;}
.y15d{bottom:553.597062px;}
.yff{bottom:555.129000px;}
.y2d{bottom:556.503000px;}
.y78{bottom:557.086500px;}
.y1c3{bottom:560.857500px;}
.y18f{bottom:561.001500px;}
.y1d6{bottom:562.266000px;}
.y1a2{bottom:563.815518px;}
.ye5{bottom:564.111000px;}
.y205{bottom:565.575000px;}
.yb5{bottom:566.473500px;}
.y5c{bottom:570.955500px;}
.y11c{bottom:572.184000px;}
.y15c{bottom:574.566918px;}
.yfe{bottom:576.021000px;}
.y2c{bottom:577.395000px;}
.y77{bottom:577.978500px;}
.y1c2{bottom:581.749500px;}
.y1d5{bottom:581.764500px;}
.y18e{bottom:581.893500px;}
.y204{bottom:584.725500px;}
.ye4{bottom:585.003000px;}
.yb4{bottom:587.364000px;}
.y5b{bottom:591.847500px;}
.y11b{bottom:593.076000px;}
.yfd{bottom:596.913000px;}
.y2b{bottom:598.287000px;}
.y76{bottom:598.870500px;}
.y15b{bottom:600.126936px;}
.y1d4{bottom:601.264500px;}
.y1c1{bottom:602.641500px;}
.y18d{bottom:602.785500px;}
.y203{bottom:603.876000px;}
.ye3{bottom:605.895000px;}
.yb3{bottom:608.256000px;}
.y5a{bottom:612.739500px;}
.y11a{bottom:613.968000px;}
.yfc{bottom:617.803500px;}
.y2a{bottom:619.177500px;}
.ya2{bottom:619.761000px;}
.y1a0{bottom:619.976085px;}
.y202{bottom:623.026500px;}
.y1c0{bottom:623.532000px;}
.y18c{bottom:623.676000px;}
.y75{bottom:624.244500px;}
.ye2{bottom:626.785500px;}
.yb2{bottom:629.148000px;}
.y19f{bottom:629.605950px;}
.y119{bottom:634.860000px;}
.y59{bottom:638.113500px;}
.yfb{bottom:638.695500px;}
.y15a{bottom:639.096720px;}
.y29{bottom:640.069500px;}
.ya1{bottom:640.653000px;}
.y201{bottom:642.177000px;}
.y18b{bottom:644.568000px;}
.ye1{bottom:647.677500px;}
.y1bf{bottom:648.907500px;}
.yb1{bottom:650.038500px;}
.y118{bottom:655.750500px;}
.y74{bottom:659.587500px;}
.y159{bottom:660.066576px;}
.y28{bottom:660.961500px;}
.y200{bottom:661.327500px;}
.ya0{bottom:661.545000px;}
.y58{bottom:662.545500px;}
.y18a{bottom:665.460000px;}
.ye0{bottom:668.569500px;}
.yb0{bottom:670.930500px;}
.y117{bottom:676.642500px;}
.y1be{bottom:679.338000px;}
.y73{bottom:680.478000px;}
.y158{bottom:681.126612px;}
.y27{bottom:681.852000px;}
.y9f{bottom:682.435500px;}
.y189{bottom:686.350500px;}
.ydf{bottom:689.460000px;}
.yaf{bottom:691.822500px;}
.y1bd{bottom:698.571000px;}
.y1ff{bottom:699.628500px;}
.y57{bottom:701.370000px;}
.y157{bottom:702.096468px;}
.y26{bottom:702.744000px;}
.y9e{bottom:703.327500px;}
.yde{bottom:710.352000px;}
.y188{bottom:711.726000px;}
.yae{bottom:712.713000px;}
.y1fe{bottom:718.779000px;}
.y19e{bottom:721.000500px;}
.y56{bottom:722.262000px;}
.y156{bottom:723.066324px;}
.y25{bottom:723.636000px;}
.y9d{bottom:724.219500px;}
.y116{bottom:727.603500px;}
.ydd{bottom:731.244000px;}
.yad{bottom:733.605000px;}
.y1fd{bottom:737.929500px;}
.y55{bottom:743.152500px;}
.y155{bottom:744.126360px;}
.y24{bottom:744.526500px;}
.y9c{bottom:745.110000px;}
.y187{bottom:747.067500px;}
.ydc{bottom:752.134500px;}
.y115{bottom:752.739000px;}
.yac{bottom:754.497000px;}
.y1fc{bottom:757.081500px;}
.y54{bottom:764.044500px;}
.y23{bottom:765.418500px;}
.y9b{bottom:766.002000px;}
.y186{bottom:767.959500px;}
.y154{bottom:769.596198px;}
.y114{bottom:770.671500px;}
.ydb{bottom:773.026500px;}
.y1fb{bottom:776.232000px;}
.yab{bottom:779.871000px;}
.y53{bottom:784.936500px;}
.y22{bottom:786.310500px;}
.y9a{bottom:786.894000px;}
.y185{bottom:788.851500px;}
.yda{bottom:793.918500px;}
.y1fa{bottom:795.382500px;}
.y113{bottom:795.807000px;}
.yaa{bottom:804.303000px;}
.y52{bottom:805.827000px;}
.y21{bottom:807.202500px;}
.y99{bottom:807.784500px;}
.y153{bottom:808.565982px;}
.y184{bottom:809.742000px;}
.y1f9{bottom:814.533000px;}
.yd9{bottom:814.809000px;}
.y112{bottom:820.941000px;}
.y51{bottom:826.719000px;}
.y20{bottom:828.093000px;}
.y98{bottom:828.676500px;}
.y152{bottom:829.626018px;}
.y183{bottom:830.634000px;}
.y1f8{bottom:833.683500px;}
.yd8{bottom:835.701000px;}
.y111{bottom:838.875000px;}
.ya9{bottom:843.127500px;}
.y50{bottom:847.611000px;}
.y1f{bottom:848.985000px;}
.y97{bottom:849.568500px;}
.y182{bottom:851.526000px;}
.y1f7{bottom:852.834000px;}
.yd7{bottom:856.593000px;}
.y110{bottom:864.009000px;}
.ya8{bottom:864.019500px;}
.y4f{bottom:868.503000px;}
.y96{bottom:870.460500px;}
.y1f6{bottom:871.984500px;}
.y181{bottom:872.418000px;}
.yd6{bottom:877.483500px;}
.y10f{bottom:881.943000px;}
.ya7{bottom:884.910000px;}
.y150{bottom:885.786585px;}
.y1e{bottom:888.834000px;}
.y4e{bottom:889.393500px;}
.y1f5{bottom:891.135000px;}
.y95{bottom:891.351000px;}
.y14f{bottom:895.416450px;}
.y180{bottom:897.792000px;}
.yd5{bottom:898.375500px;}
.ya6{bottom:905.802000px;}
.y10e{bottom:907.077000px;}
.y1d{bottom:909.313500px;}
.y4d{bottom:910.285500px;}
.y94{bottom:912.243000px;}
.yd4{bottom:919.267500px;}
.y10d{bottom:925.009500px;}
.y1c{bottom:925.453500px;}
.ya5{bottom:926.694000px;}
.y1f4{bottom:929.436000px;}
.y4c{bottom:931.177500px;}
.y93{bottom:933.135000px;}
.yd3{bottom:940.159500px;}
.ya4{bottom:947.584500px;}
.ya3{bottom:947.586000px;}
.y1f3{bottom:948.586500px;}
.y10c{bottom:950.145000px;}
.y4b{bottom:952.068000px;}
.y92{bottom:954.025500px;}
.y1f2{bottom:967.737000px;}
.y1b{bottom:969.958500px;}
.y4a{bottom:972.960000px;}
.y91{bottom:974.917500px;}
.y10b{bottom:975.280500px;}
.y1f1{bottom:986.887500px;}
.yd2{bottom:991.120500px;}
.y49{bottom:993.852000px;}
.y90{bottom:995.809500px;}
.y10a{bottom:1000.416000px;}
.y1f0{bottom:1006.038000px;}
.y1a{bottom:1008.783000px;}
.yd1{bottom:1009.053000px;}
.y48{bottom:1014.742500px;}
.y8f{bottom:1016.700000px;}
.y1ef{bottom:1025.188500px;}
.y109{bottom:1025.550000px;}
.yd0{bottom:1026.985500px;}
.y14d{bottom:1031.151000px;}
.y47{bottom:1035.634500px;}
.y17f{bottom:1037.592000px;}
.y19{bottom:1040.121000px;}
.y8e{bottom:1042.075500px;}
.y1ee{bottom:1044.339000px;}
.ycf{bottom:1044.918000px;}
.y14c{bottom:1052.043000px;}
.y46{bottom:1056.526500px;}
.y108{bottom:1061.205000px;}
.yce{bottom:1062.850500px;}
.y17e{bottom:1062.967500px;}
.y1ed{bottom:1063.489500px;}
.y18{bottom:1071.457500px;}
.y14b{bottom:1072.935000px;}
.y45{bottom:1077.417000px;}
.ycd{bottom:1080.784500px;}
.y1ec{bottom:1082.640000px;}
.y14a{bottom:1093.825500px;}
.y44{bottom:1098.309000px;}
.y1eb{bottom:1101.790500px;}
.y17{bottom:1102.795500px;}
.ycc{bottom:1105.918500px;}
.y149{bottom:1114.717500px;}
.y43{bottom:1119.201000px;}
.y1ea{bottom:1120.941000px;}
.y42{bottom:1140.091500px;}
.ycb{bottom:1141.573500px;}
.y41{bottom:1200.196500px;}
.h8{height:26.110157px;}
.he{height:27.655250px;}
.h2{height:30.461558px;}
.h4{height:30.712615px;}
.h9{height:34.813397px;}
.hd{height:35.100320px;}
.h3{height:38.202476px;}
.hf{height:39.165235px;}
.h1b{height:39.488026px;}
.h10{height:43.038432px;}
.ha{height:43.516637px;}
.h15{height:43.622227px;}
.h5{height:43.875290px;}
.h13{height:44.279648px;}
.h12{height:44.536816px;}
.h1a{height:49.117939px;}
.h17{height:49.939453px;}
.h16{height:50.229492px;}
.hc{height:51.646464px;}
.hb{height:54.575123px;}
.h7{height:55.352206px;}
.h14{height:55.599258px;}
.h19{height:66.972656px;}
.h6{height:77.469696px;}
.h18{height:434.037000px;}
.h11{height:466.807500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:569.488500px;}
.w2{width:576.043500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x10{left:-200.887500px;}
.xc{left:-190.692000px;}
.x12{left:-5.318590px;}
.x0{left:0.000000px;}
.xd{left:4.876910px;}
.x11{left:26.541305px;}
.xe{left:36.736805px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.xb{left:62.541000px;}
.x6{left:73.128000px;}
.x7{left:84.247500px;}
.x9{left:85.330500px;}
.x8{left:92.623500px;}
.xa{left:96.814500px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.x5{left:281.479500px;}
.xf{left:571.965302px;}
.x13{left:577.427815px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls4c{letter-spacing:-0.609216pt;}
.ls48{letter-spacing:-0.603872pt;}
.ls51{letter-spacing:-0.593184pt;}
.ls47{letter-spacing:-0.587840pt;}
.ls50{letter-spacing:-0.582496pt;}
.ls4a{letter-spacing:-0.577152pt;}
.ls4e{letter-spacing:-0.571808pt;}
.ls4b{letter-spacing:-0.566464pt;}
.ls49{letter-spacing:-0.561120pt;}
.ls4f{letter-spacing:-0.545088pt;}
.ls4d{letter-spacing:-0.529056pt;}
.ls73{letter-spacing:-0.138944pt;}
.ls74{letter-spacing:-0.133600pt;}
.ls72{letter-spacing:-0.117568pt;}
.ls59{letter-spacing:-0.101536pt;}
.ls6c{letter-spacing:-0.085504pt;}
.ls6d{letter-spacing:-0.080160pt;}
.ls44{letter-spacing:-0.076608pt;}
.ls71{letter-spacing:-0.074816pt;}
.ls70{letter-spacing:-0.069472pt;}
.ls6e{letter-spacing:-0.064128pt;}
.ls45{letter-spacing:-0.053440pt;}
.ls56{letter-spacing:-0.037408pt;}
.ls53{letter-spacing:-0.032064pt;}
.ls52{letter-spacing:-0.026720pt;}
.ls6f{letter-spacing:-0.024000pt;}
.ls58{letter-spacing:-0.021376pt;}
.ls46{letter-spacing:-0.016032pt;}
.ls57{letter-spacing:-0.010688pt;}
.ls54{letter-spacing:-0.005344pt;}
.lsf{letter-spacing:0.000000pt;}
.ls7d{letter-spacing:0.000036pt;}
.ls7f{letter-spacing:0.000298pt;}
.ls9b{letter-spacing:0.000366pt;}
.ls35{letter-spacing:0.000387pt;}
.ls8b{letter-spacing:0.000447pt;}
.ls4{letter-spacing:0.000518pt;}
.ls2{letter-spacing:0.000533pt;}
.ls32{letter-spacing:0.000567pt;}
.ls8e{letter-spacing:0.000600pt;}
.ls98{letter-spacing:0.000659pt;}
.ls8a{letter-spacing:0.000751pt;}
.lsa2{letter-spacing:0.000801pt;}
.ls85{letter-spacing:0.000853pt;}
.ls99{letter-spacing:0.000921pt;}
.ls7e{letter-spacing:0.000954pt;}
.ls86{letter-spacing:0.000980pt;}
.ls92{letter-spacing:0.001026pt;}
.ls9a{letter-spacing:0.001391pt;}
.ls8d{letter-spacing:0.001408pt;}
.ls79{letter-spacing:0.001487pt;}
.ls7{letter-spacing:0.001495pt;}
.ls80{letter-spacing:0.001843pt;}
.ls33{letter-spacing:0.001939pt;}
.ls0{letter-spacing:0.002046pt;}
.ls2f{letter-spacing:0.002108pt;}
.ls97{letter-spacing:0.002188pt;}
.ls9e{letter-spacing:0.002262pt;}
.ls78{letter-spacing:0.002315pt;}
.ls31{letter-spacing:0.002473pt;}
.ls89{letter-spacing:0.002525pt;}
.ls2d{letter-spacing:0.002861pt;}
.ls23{letter-spacing:0.002868pt;}
.lsc{letter-spacing:0.003423pt;}
.ls8c{letter-spacing:0.003430pt;}
.ls7c{letter-spacing:0.003581pt;}
.ls8f{letter-spacing:0.003635pt;}
.ls90{letter-spacing:0.003793pt;}
.ls9f{letter-spacing:0.004267pt;}
.ls40{letter-spacing:0.004800pt;}
.ls5d{letter-spacing:0.009600pt;}
.ls65{letter-spacing:0.010688pt;}
.ls68{letter-spacing:0.013516pt;}
.ls5c{letter-spacing:0.014400pt;}
.lsb{letter-spacing:0.015598pt;}
.ls5f{letter-spacing:0.016032pt;}
.ls3f{letter-spacing:0.019200pt;}
.ls62{letter-spacing:0.026720pt;}
.ls37{letter-spacing:0.029792pt;}
.ls5b{letter-spacing:0.032064pt;}
.ls3c{letter-spacing:0.033600pt;}
.ls39{letter-spacing:0.034048pt;}
.ls66{letter-spacing:0.037408pt;}
.ls61{letter-spacing:0.042752pt;}
.ls3e{letter-spacing:0.043200pt;}
.ls5a{letter-spacing:0.048096pt;}
.ls3d{letter-spacing:0.052800pt;}
.ls42{letter-spacing:0.053440pt;}
.ls43{letter-spacing:0.058784pt;}
.ls5e{letter-spacing:0.074816pt;}
.ls3b{letter-spacing:0.080160pt;}
.ls87{letter-spacing:0.094933pt;}
.ls60{letter-spacing:0.106880pt;}
.ls55{letter-spacing:0.112224pt;}
.ls64{letter-spacing:0.133600pt;}
.ls41{letter-spacing:0.160320pt;}
.ls3a{letter-spacing:0.161728pt;}
.ls38{letter-spacing:0.170240pt;}
.ls63{letter-spacing:0.171008pt;}
.ls1{letter-spacing:7.442933pt;}
.lse{letter-spacing:10.626533pt;}
.ls7a{letter-spacing:10.733041pt;}
.ls88{letter-spacing:10.847521pt;}
.ls21{letter-spacing:10.892443pt;}
.ls83{letter-spacing:11.829015pt;}
.ls82{letter-spacing:11.834285pt;}
.ls9c{letter-spacing:11.951186pt;}
.ls81{letter-spacing:11.954133pt;}
.ls84{letter-spacing:11.959467pt;}
.ls9d{letter-spacing:11.966369pt;}
.ls96{letter-spacing:12.007317pt;}
.ls13{letter-spacing:12.008254pt;}
.lsa1{letter-spacing:12.063636pt;}
.lsa0{letter-spacing:12.088072pt;}
.ls91{letter-spacing:12.099001pt;}
.ls95{letter-spacing:12.115548pt;}
.ls93{letter-spacing:12.123631pt;}
.ls1f{letter-spacing:12.592726pt;}
.ls18{letter-spacing:12.964663pt;}
.ls1e{letter-spacing:13.017797pt;}
.ls20{letter-spacing:13.070931pt;}
.ls1a{letter-spacing:13.124065pt;}
.ls24{letter-spacing:13.230333pt;}
.ls12{letter-spacing:13.283467pt;}
.ls3{letter-spacing:13.283733pt;}
.ls2b{letter-spacing:13.336601pt;}
.ls28{letter-spacing:13.389734pt;}
.ls30{letter-spacing:13.418114pt;}
.lsa{letter-spacing:13.442868pt;}
.ls7b{letter-spacing:13.496002pt;}
.ls9{letter-spacing:13.549136pt;}
.ls14{letter-spacing:13.602270pt;}
.ls1b{letter-spacing:13.814805pt;}
.ls16{letter-spacing:13.867939pt;}
.ls29{letter-spacing:14.186742pt;}
.ls17{letter-spacing:14.239876pt;}
.ls94{letter-spacing:14.267022pt;}
.ls15{letter-spacing:14.399278pt;}
.ls2a{letter-spacing:14.611813pt;}
.ls27{letter-spacing:15.621357pt;}
.ls1c{letter-spacing:15.780758pt;}
.ls69{letter-spacing:15.887026pt;}
.ls6b{letter-spacing:15.940160pt;}
.lsd{letter-spacing:16.152695pt;}
.ls19{letter-spacing:16.312097pt;}
.ls34{letter-spacing:16.896570pt;}
.ls1d{letter-spacing:17.162239pt;}
.ls6a{letter-spacing:17.321641pt;}
.ls2c{letter-spacing:17.481042pt;}
.ls2e{letter-spacing:17.534176pt;}
.ls8{letter-spacing:17.558224pt;}
.ls75{letter-spacing:17.693578pt;}
.ls25{letter-spacing:17.746711pt;}
.ls22{letter-spacing:17.799845pt;}
.ls36{letter-spacing:18.499400pt;}
.ls76{letter-spacing:18.809389pt;}
.ls11{letter-spacing:19.128192pt;}
.ls10{letter-spacing:19.340727pt;}
.ls67{letter-spacing:19.553263pt;}
.ls26{letter-spacing:19.712665pt;}
.ls77{letter-spacing:21.731751pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws85{word-spacing:-48.000000pt;}
.ws8{word-spacing:-13.283467pt;}
.ws100{word-spacing:-11.955200pt;}
.ws83{word-spacing:-10.810240pt;}
.ws84{word-spacing:-10.640000pt;}
.ws24{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.ws1{word-spacing:-9.298400pt;}
.ws5a{word-spacing:-2.922363pt;}
.wsed{word-spacing:-2.816095pt;}
.wse3{word-spacing:-2.805600pt;}
.ws6f{word-spacing:-2.709827pt;}
.wsf0{word-spacing:-2.603559pt;}
.ws70{word-spacing:-2.497292pt;}
.ws72{word-spacing:-2.444158pt;}
.ws36{word-spacing:-2.391024pt;}
.ws27{word-spacing:-2.337890pt;}
.wse4{word-spacing:-2.335328pt;}
.ws3{word-spacing:-2.306003pt;}
.wsbb{word-spacing:-2.116224pt;}
.ws6c{word-spacing:-2.019087pt;}
.ws4f{word-spacing:-1.912819pt;}
.ws9c{word-spacing:-1.902464pt;}
.wsde{word-spacing:-1.886432pt;}
.ws0{word-spacing:-1.859680pt;}
.ws4{word-spacing:-1.858860pt;}
.wscd{word-spacing:-1.800928pt;}
.wsba{word-spacing:-1.795584pt;}
.ws53{word-spacing:-1.753418pt;}
.wsce{word-spacing:-1.752832pt;}
.ws121{word-spacing:-1.721549pt;}
.ws8a{word-spacing:-1.700284pt;}
.ws7a{word-spacing:-1.594016pt;}
.wsdd{word-spacing:-1.490976pt;}
.ws6b{word-spacing:-1.487748pt;}
.ws105{word-spacing:-1.434624pt;}
.wsf1{word-spacing:-1.381481pt;}
.ws29{word-spacing:-1.328347pt;}
.ws10f{word-spacing:-1.291162pt;}
.ws28{word-spacing:-1.275213pt;}
.ws82{word-spacing:-1.222079pt;}
.ws88{word-spacing:-1.115811pt;}
.ws106{word-spacing:-1.099878pt;}
.ws21{word-spacing:-1.009543pt;}
.ws10e{word-spacing:-1.004237pt;}
.ws7d{word-spacing:-0.903276pt;}
.wsda{word-spacing:-0.903136pt;}
.wsaf{word-spacing:-0.871072pt;}
.wsdb{word-spacing:-0.865728pt;}
.ws81{word-spacing:-0.850142pt;}
.wse7{word-spacing:-0.849696pt;}
.wse8{word-spacing:-0.844352pt;}
.ws56{word-spacing:-0.743874pt;}
.ws35{word-spacing:-0.690740pt;}
.ws2a{word-spacing:-0.637606pt;}
.ws98{word-spacing:-0.630592pt;}
.wsc2{word-spacing:-0.523712pt;}
.ws62{word-spacing:-0.478205pt;}
.ws57{word-spacing:-0.371937pt;}
.wsf6{word-spacing:-0.358183pt;}
.wsac{word-spacing:-0.347360pt;}
.wsf7{word-spacing:-0.334746pt;}
.ws3b{word-spacing:-0.318803pt;}
.wsb0{word-spacing:-0.293920pt;}
.ws30{word-spacing:-0.265669pt;}
.wsd7{word-spacing:-0.251168pt;}
.ws116{word-spacing:-0.239104pt;}
.wsab{word-spacing:-0.229792pt;}
.ws33{word-spacing:-0.212535pt;}
.wsc3{word-spacing:-0.208416pt;}
.wsad{word-spacing:-0.197728pt;}
.wsfb{word-spacing:-0.191283pt;}
.ws14{word-spacing:-0.159402pt;}
.wsf8{word-spacing:-0.152666pt;}
.wsf9{word-spacing:-0.143462pt;}
.ws8c{word-spacing:-0.110656pt;}
.ws8b{word-spacing:-0.106400pt;}
.ws10{word-spacing:-0.106268pt;}
.ws102{word-spacing:-0.095642pt;}
.ws86{word-spacing:-0.053440pt;}
.ws11{word-spacing:-0.053134pt;}
.wsf4{word-spacing:-0.047821pt;}
.ws11e{word-spacing:-0.018670pt;}
.ws108{word-spacing:-0.003849pt;}
.ws109{word-spacing:-0.001357pt;}
.wsa{word-spacing:-0.001318pt;}
.ws5{word-spacing:0.000000pt;}
.ws23{word-spacing:0.001672pt;}
.ws9d{word-spacing:0.005344pt;}
.wsdc{word-spacing:0.006400pt;}
.wsca{word-spacing:0.010688pt;}
.wsa4{word-spacing:0.016032pt;}
.ws104{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.ws91{word-spacing:0.085504pt;}
.ws103{word-spacing:0.095642pt;}
.ws90{word-spacing:0.101536pt;}
.ws1d{word-spacing:0.106268pt;}
.wsb3{word-spacing:0.106880pt;}
.ws8f{word-spacing:0.138944pt;}
.wsff{word-spacing:0.143462pt;}
.wsc5{word-spacing:0.149632pt;}
.wsa9{word-spacing:0.158400pt;}
.ws20{word-spacing:0.159402pt;}
.wsc4{word-spacing:0.165664pt;}
.wsfd{word-spacing:0.191283pt;}
.wsd{word-spacing:0.212535pt;}
.wsfe{word-spacing:0.239104pt;}
.ws1e{word-spacing:0.265669pt;}
.ws2{word-spacing:0.273842pt;}
.ws110{word-spacing:0.286925pt;}
.ws1f{word-spacing:0.318803pt;}
.wsd0{word-spacing:0.331328pt;}
.wsc1{word-spacing:0.347360pt;}
.wsd2{word-spacing:0.363392pt;}
.ws73{word-spacing:0.371937pt;}
.ws6{word-spacing:0.375335pt;}
.ws122{word-spacing:0.382566pt;}
.ws8e{word-spacing:0.406144pt;}
.ws75{word-spacing:0.425071pt;}
.ws123{word-spacing:0.430387pt;}
.wsaa{word-spacing:0.432864pt;}
.wsd1{word-spacing:0.475616pt;}
.ws7{word-spacing:0.478208pt;}
.ws11d{word-spacing:0.526029pt;}
.ws2f{word-spacing:0.531339pt;}
.ws11c{word-spacing:0.573850pt;}
.ws2e{word-spacing:0.584473pt;}
.ws32{word-spacing:0.637606pt;}
.ws3c{word-spacing:0.690740pt;}
.wsbf{word-spacing:0.737472pt;}
.ws47{word-spacing:0.743874pt;}
.ws76{word-spacing:0.797008pt;}
.wsc0{word-spacing:0.812288pt;}
.ws43{word-spacing:0.850142pt;}
.ws42{word-spacing:0.903276pt;}
.ws4e{word-spacing:0.956410pt;}
.wsa2{word-spacing:0.988640pt;}
.wsa1{word-spacing:0.999328pt;}
.ws37{word-spacing:1.009543pt;}
.wsbe{word-spacing:1.015360pt;}
.ws2c{word-spacing:1.115811pt;}
.ws7c{word-spacing:1.222079pt;}
.ws41{word-spacing:1.275213pt;}
.wsd6{word-spacing:1.319968pt;}
.ws45{word-spacing:1.328347pt;}
.wse5{word-spacing:1.330656pt;}
.ws11b{word-spacing:1.338982pt;}
.wsd5{word-spacing:1.373408pt;}
.ws54{word-spacing:1.381481pt;}
.wsc9{word-spacing:1.411200pt;}
.wsc6{word-spacing:1.430400pt;}
.ws124{word-spacing:1.434624pt;}
.wsc8{word-spacing:1.435200pt;}
.wsc7{word-spacing:1.468800pt;}
.wsb9{word-spacing:1.487748pt;}
.wse6{word-spacing:1.501664pt;}
.ws5c{word-spacing:1.540882pt;}
.ws7f{word-spacing:1.594016pt;}
.ws4d{word-spacing:1.647150pt;}
.ws16{word-spacing:1.700284pt;}
.ws59{word-spacing:1.753418pt;}
.ws114{word-spacing:1.769370pt;}
.ws4c{word-spacing:1.806551pt;}
.ws117{word-spacing:1.817190pt;}
.ws74{word-spacing:1.859685pt;}
.ws95{word-spacing:1.955904pt;}
.ws17{word-spacing:1.965953pt;}
.ws94{word-spacing:1.971936pt;}
.wsd8{word-spacing:1.982624pt;}
.wsd9{word-spacing:2.014688pt;}
.ws3d{word-spacing:2.019087pt;}
.wsb1{word-spacing:2.025376pt;}
.ws112{word-spacing:2.104115pt;}
.wsb2{word-spacing:2.105536pt;}
.ws18{word-spacing:2.125355pt;}
.ws11f{word-spacing:2.199757pt;}
.wsbc{word-spacing:2.276544pt;}
.ws10b{word-spacing:2.295398pt;}
.ws40{word-spacing:2.337890pt;}
.wsbd{word-spacing:2.340672pt;}
.wsa6{word-spacing:2.352000pt;}
.wsa7{word-spacing:2.361600pt;}
.wsa5{word-spacing:2.371200pt;}
.wsa8{word-spacing:2.385600pt;}
.ws6e{word-spacing:2.391024pt;}
.ws7b{word-spacing:2.444158pt;}
.ws34{word-spacing:2.497292pt;}
.ws115{word-spacing:2.534502pt;}
.ws52{word-spacing:2.550426pt;}
.wsb{word-spacing:2.550432pt;}
.wsb8{word-spacing:2.603559pt;}
.wsd3{word-spacing:2.645280pt;}
.wsd4{word-spacing:2.650624pt;}
.ws111{word-spacing:2.677965pt;}
.ws4b{word-spacing:2.709827pt;}
.ws11a{word-spacing:2.725786pt;}
.ws71{word-spacing:2.762961pt;}
.ws6a{word-spacing:2.816095pt;}
.ws10d{word-spacing:2.821427pt;}
.ws10c{word-spacing:2.862549pt;}
.ws10a{word-spacing:2.864964pt;}
.ws118{word-spacing:2.865954pt;}
.wsfa{word-spacing:2.866509pt;}
.ws22{word-spacing:2.869229pt;}
.ws101{word-spacing:2.869248pt;}
.ws1c{word-spacing:2.922363pt;}
.ws107{word-spacing:2.964890pt;}
.ws79{word-spacing:2.975497pt;}
.ws31{word-spacing:3.028630pt;}
.ws49{word-spacing:3.081764pt;}
.wsb6{word-spacing:3.108352pt;}
.ws89{word-spacing:3.134898pt;}
.wsfc{word-spacing:3.149260pt;}
.ws19{word-spacing:3.185311pt;}
.wsa0{word-spacing:3.227776pt;}
.ws3f{word-spacing:3.241166pt;}
.ws48{word-spacing:3.294300pt;}
.ws51{word-spacing:3.347434pt;}
.ws4a{word-spacing:3.400567pt;}
.wsc{word-spacing:3.449047pt;}
.ws64{word-spacing:3.453701pt;}
.ws119{word-spacing:3.490918pt;}
.wse1{word-spacing:3.559104pt;}
.wse2{word-spacing:3.607200pt;}
.ws69{word-spacing:3.613103pt;}
.ws63{word-spacing:3.719371pt;}
.ws13{word-spacing:3.825638pt;}
.ws1a{word-spacing:3.825664pt;}
.ws96{word-spacing:3.847680pt;}
.ws97{word-spacing:3.863712pt;}
.wsa3{word-spacing:3.874400pt;}
.ws61{word-spacing:3.878772pt;}
.ws25{word-spacing:3.931906pt;}
.ws87{word-spacing:3.969126pt;}
.ws65{word-spacing:4.038174pt;}
.wsee{word-spacing:4.091308pt;}
.ws46{word-spacing:4.197575pt;}
.ws120{word-spacing:4.208230pt;}
.ws15{word-spacing:4.250709pt;}
.ws38{word-spacing:4.303843pt;}
.wsec{word-spacing:4.356977pt;}
.ws2d{word-spacing:4.410111pt;}
.ws39{word-spacing:4.463245pt;}
.ws3a{word-spacing:4.516379pt;}
.wsb5{word-spacing:4.569513pt;}
.wseb{word-spacing:4.675780pt;}
.ws55{word-spacing:4.782048pt;}
.ws9f{word-spacing:4.793568pt;}
.ws50{word-spacing:4.835182pt;}
.ws9e{word-spacing:4.836320pt;}
.wsf{word-spacing:4.888316pt;}
.wsae{word-spacing:5.151616pt;}
.ws77{word-spacing:5.207119pt;}
.wsb4{word-spacing:5.260253pt;}
.wsf2{word-spacing:5.260288pt;}
.wsf3{word-spacing:5.270137pt;}
.ws7e{word-spacing:5.313387pt;}
.ws67{word-spacing:5.366521pt;}
.ws6d{word-spacing:5.472788pt;}
.wsea{word-spacing:5.525922pt;}
.ws80{word-spacing:5.579056pt;}
.ws1b{word-spacing:5.632190pt;}
.ws68{word-spacing:5.685324pt;}
.ws26{word-spacing:5.844725pt;}
.ws113{word-spacing:5.929779pt;}
.ws12{word-spacing:6.004127pt;}
.ws125{word-spacing:6.073242pt;}
.wscf{word-spacing:6.108192pt;}
.wsef{word-spacing:6.163529pt;}
.ws5b{word-spacing:6.216662pt;}
.ws44{word-spacing:6.269796pt;}
.ws3e{word-spacing:6.429198pt;}
.wscb{word-spacing:6.471584pt;}
.ws58{word-spacing:6.482332pt;}
.wscc{word-spacing:6.503648pt;}
.wsdf{word-spacing:6.508992pt;}
.ws78{word-spacing:6.535466pt;}
.wse0{word-spacing:6.605184pt;}
.ws2b{word-spacing:6.694867pt;}
.ws9b{word-spacing:6.696032pt;}
.ws99{word-spacing:6.744128pt;}
.ws66{word-spacing:6.960537pt;}
.ws9a{word-spacing:7.096832pt;}
.wse9{word-spacing:7.173072pt;}
.wsb7{word-spacing:7.438741pt;}
.wsf5{word-spacing:8.033894pt;}
.ws92{word-spacing:8.993952pt;}
.ws93{word-spacing:9.009984pt;}
.ws8d{word-spacing:10.325056pt;}
.ws126{word-spacing:21.519360pt;}
.ws60{word-spacing:218.061389pt;}
.ws5f{word-spacing:256.689710pt;}
.ws5e{word-spacing:264.447254pt;}
.ws5d{word-spacing:290.323447pt;}
._4{margin-left:-8.990310pt;}
._34{margin-left:-6.934016pt;}
._6{margin-left:-5.898133pt;}
._9{margin-left:-4.675792pt;}
._1{margin-left:-3.496198pt;}
._14{margin-left:-2.486669pt;}
._2{margin-left:-1.338970pt;}
._15{width:0.903276pt;}
._7{width:2.661811pt;}
._18{width:4.176644pt;}
._0{width:9.670336pt;}
._33{width:11.177098pt;}
._12{width:12.178553pt;}
._e{width:13.177232pt;}
._16{width:14.176380pt;}
._2b{width:15.143438pt;}
._b{width:16.205829pt;}
._13{width:17.598207pt;}
._3{width:19.339557pt;}
._11{width:20.987877pt;}
._2f{width:21.891427pt;}
._c{width:22.847563pt;}
._32{width:24.568004pt;}
._d{width:26.152485pt;}
._31{width:27.064092pt;}
._2d{width:28.160949pt;}
._5{width:29.648896pt;}
._a{width:30.934533pt;}
._2c{width:33.070511pt;}
._17{width:35.929117pt;}
._8{width:61.648482pt;}
._27{width:147.138300pt;}
._19{width:157.648182pt;}
._1c{width:190.803715pt;}
._24{width:200.952284pt;}
._1d{width:202.064335pt;}
._1a{width:220.186755pt;}
._1b{width:224.543721pt;}
._21{width:231.610537pt;}
._29{width:243.778757pt;}
._1e{width:247.019346pt;}
._25{width:259.293236pt;}
._20{width:268.697964pt;}
._28{width:270.185712pt;}
._22{width:285.700768pt;}
._2a{width:310.195514pt;}
._1f{width:333.415013pt;}
._26{width:345.582669pt;}
._23{width:372.043334pt;}
._f{width:1468.648800pt;}
._30{width:1783.314068pt;}
._2e{width:2208.099467pt;}
._10{width:2229.352800pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs8{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.y1a1{bottom:-449.870267pt;}
.y1bc{bottom:-414.669787pt;}
.y1bb{bottom:-396.029915pt;}
.y1ba{bottom:-377.390043pt;}
.y1b9{bottom:-358.670011pt;}
.y1b8{bottom:-340.030139pt;}
.y1b7{bottom:-321.390267pt;}
.y1b6{bottom:-297.950267pt;}
.y1b5{bottom:-261.149611pt;}
.y1b4{bottom:-242.429579pt;}
.y1b3{bottom:-223.789707pt;}
.y151{bottom:-213.594267pt;}
.y1b2{bottom:-205.149835pt;}
.y1b1{bottom:-186.429803pt;}
.y16a{bottom:-183.913819pt;}
.y1b0{bottom:-167.789931pt;}
.y169{bottom:-165.273947pt;}
.y1af{bottom:-149.150059pt;}
.y168{bottom:-146.553915pt;}
.y1ae{bottom:-130.430027pt;}
.y167{bottom:-127.914043pt;}
.y1ad{bottom:-111.790155pt;}
.y166{bottom:-109.274171pt;}
.y1ac{bottom:-93.150283pt;}
.y165{bottom:-90.554139pt;}
.y164{bottom:-71.914267pt;}
.y1ab{bottom:-70.430267pt;}
.y163{bottom:-45.674267pt;}
.y1aa{bottom:-36.189867pt;}
.y162{bottom:-26.954267pt;}
.y1a9{bottom:-17.550267pt;}
.y0{bottom:0.000000pt;}
.y161{bottom:4.086893pt;}
.y1a8{bottom:5.569461pt;}
.y40{bottom:40.818667pt;}
.y3f{bottom:88.640000pt;}
.y16{bottom:89.120000pt;}
.y21b{bottom:94.188000pt;}
.yfa{bottom:94.626667pt;}
.y17d{bottom:97.969333pt;}
.y72{bottom:98.970667pt;}
.y132{bottom:100.062667pt;}
.y1e9{bottom:103.353333pt;}
.y1d3{bottom:103.473333pt;}
.y143{bottom:103.857333pt;}
.y15{bottom:105.020000pt;}
.y8d{bottom:105.213333pt;}
.y3e{bottom:107.209333pt;}
.y21a{bottom:111.210667pt;}
.yf9{bottom:113.197333pt;}
.yca{bottom:113.556000pt;}
.y17c{bottom:116.540000pt;}
.y71{bottom:117.541333pt;}
.y131{bottom:118.633333pt;}
.y1e8{bottom:120.376000pt;}
.y14{bottom:120.920000pt;}
.y1d2{bottom:122.042667pt;}
.y142{bottom:122.428000pt;}
.y8c{bottom:123.782667pt;}
.y3d{bottom:125.780000pt;}
.y219{bottom:128.233333pt;}
.yc9{bottom:132.126667pt;}
.y17b{bottom:135.109333pt;}
.yf8{bottom:135.752000pt;}
.y70{bottom:136.112000pt;}
.y13{bottom:136.821333pt;}
.y130{bottom:137.204000pt;}
.y1e7{bottom:137.398667pt;}
.y1d1{bottom:140.613333pt;}
.y141{bottom:140.998667pt;}
.y8b{bottom:142.353333pt;}
.y3c{bottom:144.350667pt;}
.y218{bottom:145.256000pt;}
.yc8{bottom:150.697333pt;}
.y12{bottom:152.721333pt;}
.y17a{bottom:153.680000pt;}
.y1e6{bottom:154.421333pt;}
.y6f{bottom:154.681333pt;}
.y12f{bottom:155.773333pt;}
.y1d0{bottom:159.184000pt;}
.y140{bottom:159.568000pt;}
.y8a{bottom:160.924000pt;}
.y217{bottom:162.278667pt;}
.y3b{bottom:162.920000pt;}
.yf7{bottom:167.168000pt;}
.y11{bottom:168.621333pt;}
.yc7{bottom:169.266667pt;}
.y1e5{bottom:171.444000pt;}
.y179{bottom:172.250667pt;}
.y6e{bottom:173.252000pt;}
.y12e{bottom:174.344000pt;}
.y1cf{bottom:177.753333pt;}
.y13f{bottom:178.138667pt;}
.y216{bottom:179.301333pt;}
.y89{bottom:179.493333pt;}
.y3a{bottom:181.490667pt;}
.y10{bottom:184.521333pt;}
.yf6{bottom:185.737333pt;}
.yc6{bottom:187.837333pt;}
.y1e4{bottom:188.466667pt;}
.y178{bottom:190.820000pt;}
.y6d{bottom:191.822667pt;}
.y12d{bottom:192.914667pt;}
.y1ce{bottom:196.324000pt;}
.y13e{bottom:196.709333pt;}
.y88{bottom:198.064000pt;}
.y39{bottom:200.061333pt;}
.yf{bottom:200.422667pt;}
.yf5{bottom:204.308000pt;}
.yc5{bottom:206.408000pt;}
.y177{bottom:209.390667pt;}
.y1e3{bottom:209.474667pt;}
.y6c{bottom:210.392000pt;}
.y12c{bottom:211.484000pt;}
.y215{bottom:213.346667pt;}
.y1cd{bottom:214.894667pt;}
.y13d{bottom:215.280000pt;}
.y87{bottom:216.634667pt;}
.y38{bottom:218.632000pt;}
.y19d{bottom:221.854667pt;}
.yf4{bottom:222.878667pt;}
.ye{bottom:224.293333pt;}
.yc4{bottom:224.977333pt;}
.y176{bottom:227.961333pt;}
.y6b{bottom:228.962667pt;}
.y12b{bottom:230.054667pt;}
.y214{bottom:230.369333pt;}
.y1cc{bottom:233.464000pt;}
.y86{bottom:235.205333pt;}
.y37{bottom:237.201333pt;}
.y13c{bottom:237.834667pt;}
.yd{bottom:240.193333pt;}
.y19c{bottom:240.425333pt;}
.yf3{bottom:241.448000pt;}
.yc3{bottom:243.548000pt;}
.y1e2{bottom:243.985333pt;}
.y175{bottom:246.530667pt;}
.y213{bottom:247.392000pt;}
.y6a{bottom:247.533333pt;}
.y12a{bottom:248.625333pt;}
.y1cb{bottom:252.034667pt;}
.y85{bottom:253.774667pt;}
.y36{bottom:255.772000pt;}
.yc{bottom:256.093333pt;}
.y148{bottom:257.760000pt;}
.y19b{bottom:258.994667pt;}
.yf2{bottom:260.018667pt;}
.yc2{bottom:262.118667pt;}
.y212{bottom:264.414667pt;}
.y69{bottom:266.102667pt;}
.y129{bottom:267.194667pt;}
.y174{bottom:269.086667pt;}
.y13b{bottom:269.250667pt;}
.y1e1{bottom:269.288000pt;}
.y1ca{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y84{bottom:272.345333pt;}
.y35{bottom:274.342667pt;}
.y19a{bottom:277.565333pt;}
.yf1{bottom:278.589333pt;}
.yc1{bottom:280.688000pt;}
.y211{bottom:281.437333pt;}
.y68{bottom:284.673333pt;}
.y128{bottom:285.765333pt;}
.y1e0{bottom:286.620000pt;}
.y13a{bottom:287.820000pt;}
.ya{bottom:287.894667pt;}
.y147{bottom:289.176000pt;}
.y83{bottom:290.916000pt;}
.y34{bottom:292.912000pt;}
.y199{bottom:296.136000pt;}
.yf0{bottom:297.160000pt;}
.y210{bottom:298.460000pt;}
.yc0{bottom:299.258667pt;}
.y173{bottom:300.501333pt;}
.y67{bottom:303.244000pt;}
.y9{bottom:303.794667pt;}
.y1df{bottom:303.952000pt;}
.y127{bottom:304.336000pt;}
.y139{bottom:306.390667pt;}
.y146{bottom:307.745333pt;}
.y82{bottom:309.485333pt;}
.y33{bottom:311.482667pt;}
.y198{bottom:314.705333pt;}
.y20f{bottom:315.482667pt;}
.yef{bottom:315.729333pt;}
.ybf{bottom:317.829333pt;}
.y172{bottom:319.072000pt;}
.y8{bottom:319.696000pt;}
.y1de{bottom:321.284000pt;}
.y66{bottom:321.814667pt;}
.y126{bottom:322.906667pt;}
.y138{bottom:324.961333pt;}
.y145{bottom:326.316000pt;}
.y81{bottom:328.056000pt;}
.y32{bottom:330.053333pt;}
.y107{bottom:332.041333pt;}
.y20e{bottom:332.506667pt;}
.y197{bottom:333.276000pt;}
.yee{bottom:334.300000pt;}
.y7{bottom:335.596000pt;}
.ybe{bottom:336.398667pt;}
.y171{bottom:337.642667pt;}
.y65{bottom:340.384000pt;}
.y125{bottom:341.476000pt;}
.y137{bottom:343.530667pt;}
.y144{bottom:344.886667pt;}
.y1dd{bottom:346.586667pt;}
.y80{bottom:346.626667pt;}
.y20d{bottom:349.529333pt;}
.y196{bottom:351.846667pt;}
.y31{bottom:352.608000pt;}
.yed{bottom:352.870667pt;}
.ybd{bottom:354.969333pt;}
.y170{bottom:356.212000pt;}
.y6{bottom:356.809333pt;}
.y64{bottom:358.954667pt;}
.y124{bottom:360.046667pt;}
.y136{bottom:362.101333pt;}
.y21e{bottom:362.346667pt;}
.y106{bottom:363.456000pt;}
.y1dc{bottom:363.918667pt;}
.y7f{bottom:365.196000pt;}
.y20c{bottom:366.552000pt;}
.y195{bottom:370.416000pt;}
.yec{bottom:371.440000pt;}
.y5{bottom:372.710667pt;}
.ybc{bottom:373.540000pt;}
.y16f{bottom:374.782667pt;}
.y63{bottom:377.525333pt;}
.y123{bottom:378.617333pt;}
.y21d{bottom:379.369333pt;}
.y135{bottom:380.672000pt;}
.y105{bottom:382.026667pt;}
.y20b{bottom:383.574667pt;}
.y7e{bottom:383.766667pt;}
.y1c9{bottom:387.118667pt;}
.y4{bottom:388.610667pt;}
.y194{bottom:388.986667pt;}
.y1db{bottom:389.221333pt;}
.yeb{bottom:390.010667pt;}
.ybb{bottom:392.109333pt;}
.y16e{bottom:393.353333pt;}
.y62{bottom:396.094667pt;}
.y21c{bottom:396.393333pt;}
.y122{bottom:397.186667pt;}
.y134{bottom:399.241333pt;}
.y104{bottom:400.597333pt;}
.y7d{bottom:402.337333pt;}
.y3{bottom:404.510667pt;}
.y1c8{bottom:405.689333pt;}
.y193{bottom:407.557333pt;}
.y1a7{bottom:407.809669pt;}
.yea{bottom:408.581333pt;}
.yba{bottom:410.680000pt;}
.y16d{bottom:411.924000pt;}
.y1da{bottom:414.522667pt;}
.y61{bottom:414.665333pt;}
.y121{bottom:415.757333pt;}
.y20a{bottom:417.620000pt;}
.y103{bottom:419.166667pt;}
.y7c{bottom:420.906667pt;}
.y133{bottom:421.797333pt;}
.y30{bottom:423.018667pt;}
.y1c7{bottom:424.258667pt;}
.y2{bottom:425.725333pt;}
.y1a6{bottom:426.449541pt;}
.ye9{bottom:427.150667pt;}
.yb9{bottom:429.250667pt;}
.y192{bottom:430.112000pt;}
.y60{bottom:433.236000pt;}
.y120{bottom:434.328000pt;}
.y209{bottom:434.642667pt;}
.y160{bottom:436.086501pt;}
.y102{bottom:437.737333pt;}
.y7b{bottom:439.477333pt;}
.y1d9{bottom:439.825333pt;}
.y1{bottom:441.625333pt;}
.y1c6{bottom:442.829333pt;}
.y16c{bottom:443.592000pt;}
.y1a5{bottom:445.169573pt;}
.ye8{bottom:445.721333pt;}
.yb8{bottom:447.821333pt;}
.y208{bottom:451.665333pt;}
.y5f{bottom:451.805333pt;}
.y11f{bottom:452.897333pt;}
.y15f{bottom:454.726373pt;}
.y101{bottom:456.308000pt;}
.y2f{bottom:457.529333pt;}
.y7a{bottom:458.048000pt;}
.y16b{bottom:460.688000pt;}
.y1c5{bottom:461.400000pt;}
.y191{bottom:461.528000pt;}
.y1a4{bottom:463.809445pt;}
.ye7{bottom:464.292000pt;}
.y1d8{bottom:465.128000pt;}
.yb7{bottom:466.390667pt;}
.y207{bottom:468.688000pt;}
.y5e{bottom:470.376000pt;}
.y11e{bottom:471.468000pt;}
.y15e{bottom:473.446405pt;}
.y100{bottom:474.877333pt;}
.y2e{bottom:476.100000pt;}
.y79{bottom:476.617333pt;}
.y1c4{bottom:479.969333pt;}
.y190{bottom:480.098667pt;}
.y14e{bottom:480.625333pt;}
.y1a3{bottom:482.449317pt;}
.y1d7{bottom:482.460000pt;}
.ye6{bottom:482.861333pt;}
.yb6{bottom:484.961333pt;}
.y206{bottom:485.710667pt;}
.y5d{bottom:488.946667pt;}
.y11d{bottom:490.038667pt;}
.y15d{bottom:492.086277pt;}
.yff{bottom:493.448000pt;}
.y2d{bottom:494.669333pt;}
.y78{bottom:495.188000pt;}
.y1c3{bottom:498.540000pt;}
.y18f{bottom:498.668000pt;}
.y1d6{bottom:499.792000pt;}
.y1a2{bottom:501.169349pt;}
.ye5{bottom:501.432000pt;}
.y205{bottom:502.733333pt;}
.yb5{bottom:503.532000pt;}
.y5c{bottom:507.516000pt;}
.y11c{bottom:508.608000pt;}
.y15c{bottom:510.726149pt;}
.yfe{bottom:512.018667pt;}
.y2c{bottom:513.240000pt;}
.y77{bottom:513.758667pt;}
.y1c2{bottom:517.110667pt;}
.y1d5{bottom:517.124000pt;}
.y18e{bottom:517.238667pt;}
.y204{bottom:519.756000pt;}
.ye4{bottom:520.002667pt;}
.yb4{bottom:522.101333pt;}
.y5b{bottom:526.086667pt;}
.y11b{bottom:527.178667pt;}
.yfd{bottom:530.589333pt;}
.y2b{bottom:531.810667pt;}
.y76{bottom:532.329333pt;}
.y15b{bottom:533.446165pt;}
.y1d4{bottom:534.457333pt;}
.y1c1{bottom:535.681333pt;}
.y18d{bottom:535.809333pt;}
.y203{bottom:536.778667pt;}
.ye3{bottom:538.573333pt;}
.yb3{bottom:540.672000pt;}
.y5a{bottom:544.657333pt;}
.y11a{bottom:545.749333pt;}
.yfc{bottom:549.158667pt;}
.y2a{bottom:550.380000pt;}
.ya2{bottom:550.898667pt;}
.y1a0{bottom:551.089853pt;}
.y202{bottom:553.801333pt;}
.y1c0{bottom:554.250667pt;}
.y18c{bottom:554.378667pt;}
.y75{bottom:554.884000pt;}
.ye2{bottom:557.142667pt;}
.yb2{bottom:559.242667pt;}
.y19f{bottom:559.649733pt;}
.y119{bottom:564.320000pt;}
.y59{bottom:567.212000pt;}
.yfb{bottom:567.729333pt;}
.y15a{bottom:568.085973pt;}
.y29{bottom:568.950667pt;}
.ya1{bottom:569.469333pt;}
.y201{bottom:570.824000pt;}
.y18b{bottom:572.949333pt;}
.ye1{bottom:575.713333pt;}
.y1bf{bottom:576.806667pt;}
.yb1{bottom:577.812000pt;}
.y118{bottom:582.889333pt;}
.y74{bottom:586.300000pt;}
.y159{bottom:586.725845pt;}
.y28{bottom:587.521333pt;}
.y200{bottom:587.846667pt;}
.ya0{bottom:588.040000pt;}
.y58{bottom:588.929333pt;}
.y18a{bottom:591.520000pt;}
.ye0{bottom:594.284000pt;}
.yb0{bottom:596.382667pt;}
.y117{bottom:601.460000pt;}
.y1be{bottom:603.856000pt;}
.y73{bottom:604.869333pt;}
.y158{bottom:605.445877pt;}
.y27{bottom:606.090667pt;}
.y9f{bottom:606.609333pt;}
.y189{bottom:610.089333pt;}
.ydf{bottom:612.853333pt;}
.yaf{bottom:614.953333pt;}
.y1bd{bottom:620.952000pt;}
.y1ff{bottom:621.892000pt;}
.y57{bottom:623.440000pt;}
.y157{bottom:624.085749pt;}
.y26{bottom:624.661333pt;}
.y9e{bottom:625.180000pt;}
.yde{bottom:631.424000pt;}
.y188{bottom:632.645333pt;}
.yae{bottom:633.522667pt;}
.y1fe{bottom:638.914667pt;}
.y19e{bottom:640.889333pt;}
.y56{bottom:642.010667pt;}
.y156{bottom:642.725621pt;}
.y25{bottom:643.232000pt;}
.y9d{bottom:643.750667pt;}
.y116{bottom:646.758667pt;}
.ydd{bottom:649.994667pt;}
.yad{bottom:652.093333pt;}
.y1fd{bottom:655.937333pt;}
.y55{bottom:660.580000pt;}
.y155{bottom:661.445653pt;}
.y24{bottom:661.801333pt;}
.y9c{bottom:662.320000pt;}
.y187{bottom:664.060000pt;}
.ydc{bottom:668.564000pt;}
.y115{bottom:669.101333pt;}
.yac{bottom:670.664000pt;}
.y1fc{bottom:672.961333pt;}
.y54{bottom:679.150667pt;}
.y23{bottom:680.372000pt;}
.y9b{bottom:680.890667pt;}
.y186{bottom:682.630667pt;}
.y154{bottom:684.085509pt;}
.y114{bottom:685.041333pt;}
.ydb{bottom:687.134667pt;}
.y1fb{bottom:689.984000pt;}
.yab{bottom:693.218667pt;}
.y53{bottom:697.721333pt;}
.y22{bottom:698.942667pt;}
.y9a{bottom:699.461333pt;}
.y185{bottom:701.201333pt;}
.yda{bottom:705.705333pt;}
.y1fa{bottom:707.006667pt;}
.y113{bottom:707.384000pt;}
.yaa{bottom:714.936000pt;}
.y52{bottom:716.290667pt;}
.y21{bottom:717.513333pt;}
.y99{bottom:718.030667pt;}
.y153{bottom:718.725317pt;}
.y184{bottom:719.770667pt;}
.y1f9{bottom:724.029333pt;}
.yd9{bottom:724.274667pt;}
.y112{bottom:729.725333pt;}
.y51{bottom:734.861333pt;}
.y20{bottom:736.082667pt;}
.y98{bottom:736.601333pt;}
.y152{bottom:737.445349pt;}
.y183{bottom:738.341333pt;}
.y1f8{bottom:741.052000pt;}
.yd8{bottom:742.845333pt;}
.y111{bottom:745.666667pt;}
.ya9{bottom:749.446667pt;}
.y50{bottom:753.432000pt;}
.y1f{bottom:754.653333pt;}
.y97{bottom:755.172000pt;}
.y182{bottom:756.912000pt;}
.y1f7{bottom:758.074667pt;}
.yd7{bottom:761.416000pt;}
.y110{bottom:768.008000pt;}
.ya8{bottom:768.017333pt;}
.y4f{bottom:772.002667pt;}
.y96{bottom:773.742667pt;}
.y1f6{bottom:775.097333pt;}
.y181{bottom:775.482667pt;}
.yd6{bottom:779.985333pt;}
.y10f{bottom:783.949333pt;}
.ya7{bottom:786.586667pt;}
.y150{bottom:787.365853pt;}
.y1e{bottom:790.074667pt;}
.y4e{bottom:790.572000pt;}
.y1f5{bottom:792.120000pt;}
.y95{bottom:792.312000pt;}
.y14f{bottom:795.925733pt;}
.y180{bottom:798.037333pt;}
.yd5{bottom:798.556000pt;}
.ya6{bottom:805.157333pt;}
.y10e{bottom:806.290667pt;}
.y1d{bottom:808.278667pt;}
.y4d{bottom:809.142667pt;}
.y94{bottom:810.882667pt;}
.yd4{bottom:817.126667pt;}
.y10d{bottom:822.230667pt;}
.y1c{bottom:822.625333pt;}
.ya5{bottom:823.728000pt;}
.y1f4{bottom:826.165333pt;}
.y4c{bottom:827.713333pt;}
.y93{bottom:829.453333pt;}
.yd3{bottom:835.697333pt;}
.ya4{bottom:842.297333pt;}
.ya3{bottom:842.298667pt;}
.y1f3{bottom:843.188000pt;}
.y10c{bottom:844.573333pt;}
.y4b{bottom:846.282667pt;}
.y92{bottom:848.022667pt;}
.y1f2{bottom:860.210667pt;}
.y1b{bottom:862.185333pt;}
.y4a{bottom:864.853333pt;}
.y91{bottom:866.593333pt;}
.y10b{bottom:866.916000pt;}
.y1f1{bottom:877.233333pt;}
.yd2{bottom:880.996000pt;}
.y49{bottom:883.424000pt;}
.y90{bottom:885.164000pt;}
.y10a{bottom:889.258667pt;}
.y1f0{bottom:894.256000pt;}
.y1a{bottom:896.696000pt;}
.yd1{bottom:896.936000pt;}
.y48{bottom:901.993333pt;}
.y8f{bottom:903.733333pt;}
.y1ef{bottom:911.278667pt;}
.y109{bottom:911.600000pt;}
.yd0{bottom:912.876000pt;}
.y14d{bottom:916.578667pt;}
.y47{bottom:920.564000pt;}
.y17f{bottom:922.304000pt;}
.y19{bottom:924.552000pt;}
.y8e{bottom:926.289333pt;}
.y1ee{bottom:928.301333pt;}
.ycf{bottom:928.816000pt;}
.y14c{bottom:935.149333pt;}
.y46{bottom:939.134667pt;}
.y108{bottom:943.293333pt;}
.yce{bottom:944.756000pt;}
.y17e{bottom:944.860000pt;}
.y1ed{bottom:945.324000pt;}
.y18{bottom:952.406667pt;}
.y14b{bottom:953.720000pt;}
.y45{bottom:957.704000pt;}
.ycd{bottom:960.697333pt;}
.y1ec{bottom:962.346667pt;}
.y14a{bottom:972.289333pt;}
.y44{bottom:976.274667pt;}
.y1eb{bottom:979.369333pt;}
.y17{bottom:980.262667pt;}
.ycc{bottom:983.038667pt;}
.y149{bottom:990.860000pt;}
.y43{bottom:994.845333pt;}
.y1ea{bottom:996.392000pt;}
.y42{bottom:1013.414667pt;}
.ycb{bottom:1014.732000pt;}
.y41{bottom:1066.841333pt;}
.h8{height:23.209028pt;}
.he{height:24.582445pt;}
.h2{height:27.076941pt;}
.h4{height:27.300102pt;}
.h9{height:30.945242pt;}
.hd{height:31.200285pt;}
.h3{height:33.957757pt;}
.hf{height:34.813542pt;}
.h1b{height:35.100467pt;}
.h10{height:38.256384pt;}
.ha{height:38.681455pt;}
.h15{height:38.775312pt;}
.h5{height:39.000258pt;}
.h13{height:39.359687pt;}
.h12{height:39.588281pt;}
.h1a{height:43.660390pt;}
.h17{height:44.390625pt;}
.h16{height:44.648438pt;}
.hc{height:45.907968pt;}
.hb{height:48.511220pt;}
.h7{height:49.201961pt;}
.h14{height:49.421563pt;}
.h19{height:59.531250pt;}
.h6{height:68.861952pt;}
.h18{height:385.810667pt;}
.h11{height:414.940000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:506.212000pt;}
.w2{width:512.038667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x10{left:-178.566667pt;}
.xc{left:-169.504000pt;}
.x12{left:-4.727635pt;}
.x0{left:0.000000pt;}
.xd{left:4.335031pt;}
.x11{left:23.592271pt;}
.xe{left:32.654938pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.xb{left:55.592000pt;}
.x6{left:65.002667pt;}
.x7{left:74.886667pt;}
.x9{left:75.849333pt;}
.x8{left:82.332000pt;}
.xa{left:86.057333pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.x5{left:250.204000pt;}
.xf{left:508.413602pt;}
.x13{left:513.269169pt;}
}




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