
    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_1a2109c55a61b2d1a4dd8824.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_c7c69c636347198c9673dc9b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_fd3a635a9695cce7a903eb67.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.483000;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_7180fc47d766fa5fd323ebcd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_6a60e8c26e37f5fa7cf47037.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.203000;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_5e79e73259628f63fb745e23.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202000;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_bf7b6b9e1a7e6b3cdee6aa14.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_2cfa344b9588fa8fa4454ba2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_9e9f07c9fd6775e129412e7e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.862000;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_aedbb16eecb6f330639d1b8e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862000;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_cc80de79da15e9c2ac93727e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.862000;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_1aa1cec3a546cd9667002b04.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.863000;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_a32be207ef8eac43794edc4c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.863000;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_1cbee1c06ed400706b264aa1.woff2')format("woff");}.fff{font-family:fff;line-height:0.863000;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_dff4167464aed20af4469679.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.863000;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_2795127d09c0916a04cb7c07.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.863000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9d00131b1116150c58ce6e0c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.863000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b55a174d71aad8839388e5b2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.940000;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:ff14;src:url('chunks/assets/font_3146edec6810e751b734c9a0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.713000;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:ff15;src:url('chunks/assets/font_409766ea71c889597d368ee8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.474000;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:ff16;src:url('chunks/assets/font_aa06c44e9b11d67d62ea4f8c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.701000;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:ff17;src:url('chunks/assets/font_973a50e54cfb314777ebca28.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.940000;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:ff18;src:url('chunks/assets/font_11d535249246aea790ba813e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.705000;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:ff19;src:url('chunks/assets/font_1327cd6a474093016fcf442c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.940000;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:ff1a;src:url('chunks/assets/font_c3b7b850f9e58f2238319ddd.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.712000;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:ff1b;src:url('chunks/assets/font_9f3fbc230b3783ea2972e95f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.940000;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:ff1c;src:url('chunks/assets/font_084bf517647a44a90c364010.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.474000;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:ff1d;src:url('chunks/assets/font_2b85f05b2d13b68cffc40ff6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.712000;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:ff1e;src:url('chunks/assets/font_e7168e112e4bb123ef01c1cd.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.940000;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:ff1f;src:url('chunks/assets/font_6eb74509fa99f6c59547b4e9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.474000;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:ff20;src:url('chunks/assets/font_6fd38359e37691f30c8918b4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.456000;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:ff21;src:url('chunks/assets/font_688f8967d54b94c27786c9eb.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.712000;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:ff22;src:url('chunks/assets/font_65146e682435f1a5d70fee18.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.919000;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:ff23;src:url('chunks/assets/font_804425ba762826cacb825e01.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.940000;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:ff24;src:url('chunks/assets/font_2dbb1c2e7a7cc7e2432806dc.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.953000;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:ff25;src:url('chunks/assets/font_d5315a60b65f7a9b532bda7c.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666000;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:ff26;src:url('chunks/assets/font_121da6cfb2d2aaa9352966bb.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.799000;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:ff27;src:url('chunks/assets/font_975eb76449c9b828a865f629.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.870000;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:ff28;src:url('chunks/assets/font_63dd4e97c1cc4c53938b0513.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.953000;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;}
.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);}
.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);}
.vb{vertical-align:-16.795166px;}
.v6{vertical-align:-11.981927px;}
.va{vertical-align:-10.909790px;}
.v3{vertical-align:-8.800781px;}
.vd{vertical-align:-5.884827px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.488000px;}
.v5{vertical-align:8.800781px;}
.v9{vertical-align:10.909790px;}
.v7{vertical-align:12.000000px;}
.v4{vertical-align:21.923950px;}
.v1{vertical-align:26.399780px;}
.v8{vertical-align:54.000000px;}
.vc{vertical-align:58.534790px;}
.ls58{letter-spacing:-3.648000px;}
.ls92{letter-spacing:-3.328800px;}
.ls8e{letter-spacing:-1.752000px;}
.ls57{letter-spacing:-1.248000px;}
.ls8f{letter-spacing:-1.226400px;}
.ls91{letter-spacing:-1.138800px;}
.ls2{letter-spacing:-1.050000px;}
.ls8c{letter-spacing:-0.876000px;}
.ls8d{letter-spacing:-0.613200px;}
.ls55{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.384120px;}
.ls96{letter-spacing:-0.352800px;}
.ls42{letter-spacing:-0.317427px;}
.ls2e{letter-spacing:-0.315322px;}
.ls97{letter-spacing:-0.315000px;}
.ls56{letter-spacing:-0.268800px;}
.ls41{letter-spacing:-0.259713px;}
.ls2d{letter-spacing:-0.257990px;}
.ls90{letter-spacing:-0.245280px;}
.ls3a{letter-spacing:-0.229325px;}
.ls3d{letter-spacing:-0.167656px;}
.ls2b{letter-spacing:-0.166543px;}
.lsc{letter-spacing:-0.150079px;}
.ls11{letter-spacing:-0.135034px;}
.ls9{letter-spacing:-0.134802px;}
.ls45{letter-spacing:-0.115428px;}
.ls2f{letter-spacing:-0.114662px;}
.ls40{letter-spacing:-0.086571px;}
.ls2c{letter-spacing:-0.085997px;}
.ls46{letter-spacing:-0.057714px;}
.ls3b{letter-spacing:-0.057331px;}
.lsb{letter-spacing:-0.050026px;}
.ls29{letter-spacing:-0.038412px;}
.ls38{letter-spacing:-0.033538px;}
.ls43{letter-spacing:-0.028857px;}
.ls34{letter-spacing:-0.028666px;}
.ls1{letter-spacing:0.000000px;}
.ls79{letter-spacing:0.001846px;}
.ls65{letter-spacing:0.002487px;}
.ls77{letter-spacing:0.004878px;}
.ls6c{letter-spacing:0.005423px;}
.ls7e{letter-spacing:0.005509px;}
.ls72{letter-spacing:0.005519px;}
.ls2a{letter-spacing:0.019206px;}
.ls3c{letter-spacing:0.019334px;}
.ls48{letter-spacing:0.024929px;}
.ls1c{letter-spacing:0.033538px;}
.ls15{letter-spacing:0.038125px;}
.ls21{letter-spacing:0.038380px;}
.ls10{letter-spacing:0.045011px;}
.ls4c{letter-spacing:0.047412px;}
.ls6{letter-spacing:0.050026px;}
.ls44{letter-spacing:0.076759px;}
.ls1b{letter-spacing:0.085997px;}
.ls24{letter-spacing:0.086571px;}
.lsf{letter-spacing:0.090023px;}
.ls1d{letter-spacing:0.100613px;}
.ls17{letter-spacing:0.114662px;}
.ls26{letter-spacing:0.115139px;}
.ls14{letter-spacing:0.118959px;}
.ls20{letter-spacing:0.119754px;}
.ls8{letter-spacing:0.134802px;}
.ls16{letter-spacing:0.171994px;}
.ls25{letter-spacing:0.191898px;}
.ls22{letter-spacing:0.201999px;}
.ls33{letter-spacing:0.257990px;}
.ls47{letter-spacing:0.375141px;}
.ls36{letter-spacing:0.428252px;}
.ls3f{letter-spacing:0.431114px;}
.ls32{letter-spacing:0.495620px;}
.ls59{letter-spacing:0.782040px;}
.ls3{letter-spacing:0.823200px;}
.ls63{letter-spacing:0.829080px;}
.ls73{letter-spacing:2.939919px;}
.ls6d{letter-spacing:2.940010px;}
.ls78{letter-spacing:2.940011px;}
.ls7f{letter-spacing:2.940016px;}
.ls4b{letter-spacing:2.986288px;}
.ls6b{letter-spacing:2.993295px;}
.ls76{letter-spacing:2.993478px;}
.ls7b{letter-spacing:2.994027px;}
.ls69{letter-spacing:2.995061px;}
.ls7d{letter-spacing:3.047311px;}
.ls85{letter-spacing:3.047313px;}
.ls68{letter-spacing:3.047402px;}
.ls71{letter-spacing:3.047860px;}
.ls81{letter-spacing:3.910284px;}
.ls6f{letter-spacing:3.910653px;}
.ls0{letter-spacing:5.460000px;}
.lse{letter-spacing:5.746982px;}
.ls4{letter-spacing:5.896409px;}
.lsd{letter-spacing:5.906621px;}
.ls87{letter-spacing:9.029885px;}
.ls88{letter-spacing:9.074587px;}
.ls49{letter-spacing:9.233585px;}
.ls64{letter-spacing:9.822907px;}
.ls84{letter-spacing:13.057996px;}
.ls75{letter-spacing:13.116815px;}
.ls66{letter-spacing:16.054887px;}
.ls7a{letter-spacing:16.054891px;}
.ls6a{letter-spacing:16.078209px;}
.ls7c{letter-spacing:16.088096px;}
.ls4a{letter-spacing:16.351904px;}
.ls80{letter-spacing:17.642177px;}
.ls82{letter-spacing:17.644462px;}
.ls70{letter-spacing:17.644645px;}
.ls6e{letter-spacing:17.696190px;}
.ls31{letter-spacing:17.796266px;}
.ls35{letter-spacing:18.391061px;}
.ls3e{letter-spacing:18.513968px;}
.ls37{letter-spacing:18.700355px;}
.ls39{letter-spacing:19.009648px;}
.ls83{letter-spacing:19.079738px;}
.ls74{letter-spacing:19.079829px;}
.ls67{letter-spacing:22.880902px;}
.ls86{letter-spacing:22.939722px;}
.ls13{letter-spacing:34.920899px;}
.ls12{letter-spacing:35.240176px;}
.ls54{letter-spacing:35.999971px;}
.lsa{letter-spacing:36.454149px;}
.ls50{letter-spacing:99.912569px;}
.ls1e{letter-spacing:117.941518px;}
.ls1a{letter-spacing:118.252339px;}
.ls19{letter-spacing:118.404860px;}
.ls23{letter-spacing:118.937512px;}
.ls28{letter-spacing:118.983859px;}
.ls27{letter-spacing:119.108139px;}
.ls1f{letter-spacing:120.518712px;}
.ls18{letter-spacing:122.264199px;}
.ls89{letter-spacing:136.123981px;}
.ls52{letter-spacing:156.652193px;}
.ls8b{letter-spacing:176.683399px;}
.ls93{letter-spacing:176.738605px;}
.ls7{letter-spacing:181.428133px;}
.ls5{letter-spacing:182.209785px;}
.ls8a{letter-spacing:192.980142px;}
.ls51{letter-spacing:200.185793px;}
.ls95{letter-spacing:217.298023px;}
.ls94{letter-spacing:233.594125px;}
.ls5e{letter-spacing:251.723390px;}
.ls62{letter-spacing:284.553011px;}
.ls53{letter-spacing:296.616548px;}
.ls4d{letter-spacing:347.829591px;}
.ls5d{letter-spacing:348.486574px;}
.ls4f{letter-spacing:392.278169px;}
.ls60{letter-spacing:405.226198px;}
.ls4e{letter-spacing:410.708376px;}
.ls5f{letter-spacing:448.759798px;}
.ls61{letter-spacing:545.190004px;}
.ls5a{letter-spacing:596.403597px;}
.ls5c{letter-spacing:640.851625px;}
.ls5b{letter-spacing:659.282381px;}
.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;}
}
.ws8f{word-spacing:-45.458125px;}
.wsa5{word-spacing:-44.259746px;}
.wsa6{word-spacing:-43.940469px;}
.ws0{word-spacing:-30.528000px;}
.wsd5{word-spacing:-24.386595px;}
.wsce{word-spacing:-24.077302px;}
.wsdc{word-spacing:-23.926849px;}
.wscc{word-spacing:-23.768008px;}
.wsc2{word-spacing:-23.173213px;}
.ws4{word-spacing:-21.216000px;}
.ws90{word-spacing:-14.900384px;}
.ws102{word-spacing:-14.641200px;}
.ws60{word-spacing:-13.818000px;}
.ws184{word-spacing:-13.465200px;}
.ws2{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.ws187{word-spacing:-11.426400px;}
.ws91{word-spacing:-11.355947px;}
.ws10a{word-spacing:-11.348400px;}
.wsb2{word-spacing:-10.512000px;}
.ws14b{word-spacing:-10.209780px;}
.ws5{word-spacing:-10.176000px;}
.ws1{word-spacing:-10.117800px;}
.wsa1{word-spacing:-10.037542px;}
.ws8d{word-spacing:-10.020282px;}
.ws186{word-spacing:-9.855000px;}
.ws14e{word-spacing:-9.592200px;}
.ws189{word-spacing:-9.540000px;}
.ws185{word-spacing:-9.315000px;}
.ws118{word-spacing:-9.264000px;}
.ws13d{word-spacing:-9.074587px;}
.ws148{word-spacing:-9.029885px;}
.wse6{word-spacing:-8.788928px;}
.wsc5{word-spacing:-8.616160px;}
.ws155{word-spacing:-8.453400px;}
.ws18{word-spacing:-8.148000px;}
.wse9{word-spacing:-6.896823px;}
.ws119{word-spacing:-6.864000px;}
.wsc7{word-spacing:-6.736416px;}
.wsbe{word-spacing:-6.650419px;}
.wse4{word-spacing:-6.608253px;}
.wsc0{word-spacing:-6.593088px;}
.wsc9{word-spacing:-6.564422px;}
.wse3{word-spacing:-6.492825px;}
.wsde{word-spacing:-6.435111px;}
.wse7{word-spacing:-6.406254px;}
.wsbc{word-spacing:-6.392429px;}
.wsc6{word-spacing:-6.363763px;}
.ws156{word-spacing:-6.263400px;}
.wse0{word-spacing:-6.261969px;}
.wsd6{word-spacing:-6.249101px;}
.ws149{word-spacing:-6.232800px;}
.wscf{word-spacing:-6.220435px;}
.wsdf{word-spacing:-6.204255px;}
.wsbd{word-spacing:-6.163104px;}
.wsdd{word-spacing:-5.843995px;}
.wscd{word-spacing:-5.805199px;}
.wsdb{word-spacing:-5.532635px;}
.wscb{word-spacing:-5.495906px;}
.wsbb{word-spacing:-5.210404px;}
.ws10{word-spacing:-4.602000px;}
.wsc1{word-spacing:-3.956436px;}
.ws162{word-spacing:-3.654000px;}
.ws18a{word-spacing:-2.250000px;}
.ws122{word-spacing:-2.016000px;}
.wsab{word-spacing:-1.117200px;}
.ws9b{word-spacing:-1.058400px;}
.ws43{word-spacing:-0.999600px;}
.ws1f{word-spacing:-0.940800px;}
.ws3a{word-spacing:-0.823200px;}
.wsb4{word-spacing:-0.705600px;}
.ws95{word-spacing:-0.646800px;}
.ws135{word-spacing:-0.588000px;}
.ws9f{word-spacing:-0.529200px;}
.wsf6{word-spacing:-0.495620px;}
.ws8c{word-spacing:-0.470400px;}
.ws145{word-spacing:-0.411600px;}
.ws144{word-spacing:-0.352800px;}
.ws16{word-spacing:-0.336000px;}
.ws11{word-spacing:-0.294000px;}
.ws17c{word-spacing:-0.235200px;}
.ws123{word-spacing:-0.192000px;}
.wsfe{word-spacing:-0.191898px;}
.ws181{word-spacing:-0.176400px;}
.wsa0{word-spacing:-0.134802px;}
.wsfb{word-spacing:-0.119754px;}
.wsf5{word-spacing:-0.118959px;}
.ws71{word-spacing:-0.117600px;}
.wsf9{word-spacing:-0.100613px;}
.ws101{word-spacing:-0.086571px;}
.wsf4{word-spacing:-0.085997px;}
.wsff{word-spacing:-0.076759px;}
.wsf{word-spacing:-0.060000px;}
.ws104{word-spacing:-0.058820px;}
.ws23{word-spacing:-0.058800px;}
.wsb0{word-spacing:-0.045011px;}
.ws19{word-spacing:-0.045000px;}
.ws138{word-spacing:-0.044702px;}
.wsfc{word-spacing:-0.038380px;}
.wsf1{word-spacing:-0.038125px;}
.wsf7{word-spacing:-0.033538px;}
.wsfa{word-spacing:-0.019334px;}
.wsf0{word-spacing:-0.019206px;}
.ws6{word-spacing:0.000000px;}
.wsf8{word-spacing:0.033538px;}
.wsef{word-spacing:0.038412px;}
.ws176{word-spacing:0.058800px;}
.ws100{word-spacing:0.086571px;}
.wsf3{word-spacing:0.114662px;}
.ws83{word-spacing:0.117600px;}
.ws14c{word-spacing:0.214620px;}
.ws11d{word-spacing:0.235200px;}
.wsf2{word-spacing:0.257990px;}
.wsfd{word-spacing:0.259713px;}
.ws62{word-spacing:0.294000px;}
.ws81{word-spacing:0.352800px;}
.ws6f{word-spacing:0.411600px;}
.ws34{word-spacing:0.470400px;}
.ws97{word-spacing:0.529200px;}
.ws140{word-spacing:0.588000px;}
.ws164{word-spacing:0.613200px;}
.ws10b{word-spacing:0.646800px;}
.ws9c{word-spacing:0.705600px;}
.ws6b{word-spacing:0.764400px;}
.ws107{word-spacing:0.823200px;}
.ws14{word-spacing:0.840000px;}
.ws163{word-spacing:0.876000px;}
.ws1c{word-spacing:0.882000px;}
.ws15f{word-spacing:0.940800px;}
.ws13c{word-spacing:0.958013px;}
.ws15e{word-spacing:0.999600px;}
.ws17{word-spacing:1.050000px;}
.ws46{word-spacing:1.058400px;}
.ws15{word-spacing:1.092000px;}
.ws80{word-spacing:1.117200px;}
.ws5e{word-spacing:1.176000px;}
.ws166{word-spacing:1.226400px;}
.ws28{word-spacing:1.234800px;}
.ws33{word-spacing:1.352400px;}
.ws35{word-spacing:1.411200px;}
.ws17a{word-spacing:1.470000px;}
.ws84{word-spacing:1.528800px;}
.ws98{word-spacing:1.587600px;}
.ws3d{word-spacing:1.646400px;}
.wsac{word-spacing:1.705200px;}
.ws165{word-spacing:1.752000px;}
.ws1b{word-spacing:1.764000px;}
.ws27{word-spacing:1.881600px;}
.ws2f{word-spacing:1.940400px;}
.ws47{word-spacing:1.999200px;}
.ws13{word-spacing:2.016000px;}
.ws26{word-spacing:2.058000px;}
.ws5c{word-spacing:2.116800px;}
.ws147{word-spacing:2.175600px;}
.ws25{word-spacing:2.234400px;}
.ws6a{word-spacing:2.293200px;}
.wsa{word-spacing:2.352000px;}
.wsae{word-spacing:2.410800px;}
.ws49{word-spacing:2.469600px;}
.wsb6{word-spacing:2.528400px;}
.ws2e{word-spacing:2.587200px;}
.ws99{word-spacing:2.646000px;}
.ws63{word-spacing:2.704800px;}
.ws93{word-spacing:2.763600px;}
.ws82{word-spacing:2.822400px;}
.wsed{word-spacing:2.881200px;}
.ws76{word-spacing:2.940000px;}
.ws31{word-spacing:2.998800px;}
.wsaa{word-spacing:3.057600px;}
.ws10c{word-spacing:3.116400px;}
.ws96{word-spacing:3.175200px;}
.wsee{word-spacing:3.234000px;}
.ws2b{word-spacing:3.292800px;}
.ws1d{word-spacing:3.351600px;}
.ws7f{word-spacing:3.410400px;}
.ws8b{word-spacing:3.469200px;}
.ws5d{word-spacing:3.528000px;}
.ws108{word-spacing:3.586800px;}
.ws24{word-spacing:3.645600px;}
.ws36{word-spacing:3.704400px;}
.ws175{word-spacing:3.726000px;}
.ws1a{word-spacing:3.763200px;}
.ws12{word-spacing:3.780000px;}
.wsb3{word-spacing:3.822000px;}
.ws4a{word-spacing:3.880800px;}
.ws2a{word-spacing:3.939600px;}
.ws10f{word-spacing:4.057200px;}
.ws13e{word-spacing:4.096748px;}
.ws105{word-spacing:4.116000px;}
.ws179{word-spacing:4.174800px;}
.ws139{word-spacing:4.230764px;}
.ws65{word-spacing:4.292400px;}
.ws3b{word-spacing:4.351200px;}
.wsa9{word-spacing:4.410000px;}
.wseb{word-spacing:4.468800px;}
.ws52{word-spacing:4.527600px;}
.ws55{word-spacing:4.586400px;}
.ws4d{word-spacing:4.645200px;}
.ws85{word-spacing:4.704000px;}
.ws44{word-spacing:4.762800px;}
.ws4e{word-spacing:4.821600px;}
.wse{word-spacing:4.880400px;}
.ws92{word-spacing:4.939200px;}
.ws67{word-spacing:4.998000px;}
.wsb{word-spacing:5.056800px;}
.ws183{word-spacing:5.115600px;}
.ws78{word-spacing:5.174400px;}
.ws3e{word-spacing:5.233200px;}
.ws7d{word-spacing:5.292000px;}
.ws143{word-spacing:5.350800px;}
.ws48{word-spacing:5.409600px;}
.ws42{word-spacing:5.468400px;}
.ws178{word-spacing:5.527200px;}
.wsd{word-spacing:5.586000px;}
.ws5b{word-spacing:5.644800px;}
.ws7a{word-spacing:5.703600px;}
.ws182{word-spacing:5.762400px;}
.ws7e{word-spacing:5.821200px;}
.ws15b{word-spacing:5.880000px;}
.ws79{word-spacing:5.938800px;}
.ws3f{word-spacing:5.997600px;}
.wsc{word-spacing:6.056400px;}
.ws73{word-spacing:6.115200px;}
.ws17b{word-spacing:6.174000px;}
.ws45{word-spacing:6.232800px;}
.ws22{word-spacing:6.291600px;}
.wsad{word-spacing:6.350400px;}
.wsb5{word-spacing:6.409200px;}
.ws9{word-spacing:6.526800px;}
.ws5f{word-spacing:6.585600px;}
.ws75{word-spacing:6.644400px;}
.ws6d{word-spacing:6.703200px;}
.ws29{word-spacing:6.762000px;}
.ws38{word-spacing:6.820800px;}
.ws68{word-spacing:6.879600px;}
.ws4c{word-spacing:6.938400px;}
.ws13f{word-spacing:6.997200px;}
.ws7c{word-spacing:7.232400px;}
.ws6c{word-spacing:7.291200px;}
.ws87{word-spacing:7.350000px;}
.ws13b{word-spacing:7.375896px;}
.ws2d{word-spacing:7.408800px;}
.ws13a{word-spacing:7.420598px;}
.ws6e{word-spacing:7.467600px;}
.ws32{word-spacing:7.526400px;}
.ws4f{word-spacing:7.585200px;}
.ws41{word-spacing:7.644000px;}
.ws5a{word-spacing:7.702800px;}
.ws137{word-spacing:7.761600px;}
.ws17e{word-spacing:7.820400px;}
.ws8a{word-spacing:7.879200px;}
.wsa8{word-spacing:7.938000px;}
.ws30{word-spacing:7.996800px;}
.ws64{word-spacing:8.114400px;}
.ws69{word-spacing:8.173200px;}
.ws74{word-spacing:8.232000px;}
.ws70{word-spacing:8.290800px;}
.ws37{word-spacing:8.526000px;}
.ws21{word-spacing:8.584800px;}
.ws15d{word-spacing:8.643600px;}
.ws56{word-spacing:8.702400px;}
.ws20{word-spacing:8.761200px;}
.ws111{word-spacing:8.878800px;}
.ws9a{word-spacing:8.937600px;}
.ws1e{word-spacing:9.055200px;}
.ws3c{word-spacing:9.114000px;}
.ws180{word-spacing:9.172800px;}
.ws39{word-spacing:9.231600px;}
.wsea{word-spacing:9.290400px;}
.ws188{word-spacing:9.408000px;}
.ws10e{word-spacing:9.466800px;}
.wsb7{word-spacing:9.525600px;}
.ws106{word-spacing:9.584400px;}
.ws177{word-spacing:9.702000px;}
.ws9d{word-spacing:9.760800px;}
.ws89{word-spacing:9.996000px;}
.ws146{word-spacing:10.054800px;}
.ws7b{word-spacing:10.113600px;}
.wsaf{word-spacing:10.231200px;}
.ws54{word-spacing:10.290000px;}
.ws86{word-spacing:10.407600px;}
.ws77{word-spacing:10.584000px;}
.ws59{word-spacing:11.113200px;}
.ws160{word-spacing:11.230800px;}
.ws53{word-spacing:11.289600px;}
.wsec{word-spacing:11.348400px;}
.ws2c{word-spacing:11.466000px;}
.ws136{word-spacing:11.524800px;}
.ws17d{word-spacing:11.583600px;}
.ws110{word-spacing:11.877600px;}
.ws10d{word-spacing:12.112800px;}
.wsc4{word-spacing:12.157610px;}
.wsc3{word-spacing:12.181402px;}
.ws142{word-spacing:12.230400px;}
.ws94{word-spacing:12.348000px;}
.wsb9{word-spacing:12.466903px;}
.wsca{word-spacing:12.752405px;}
.wsd9{word-spacing:12.837629px;}
.wsb8{word-spacing:13.061698px;}
.wsd4{word-spacing:13.085490px;}
.ws57{word-spacing:13.230000px;}
.ws15c{word-spacing:13.288800px;}
.wsba{word-spacing:13.347200px;}
.ws174{word-spacing:13.347600px;}
.wsd2{word-spacing:13.370992px;}
.wsda{word-spacing:13.436399px;}
.ws66{word-spacing:13.582800px;}
.wse5{word-spacing:13.747759px;}
.ws161{word-spacing:13.935600px;}
.wsd3{word-spacing:13.965787px;}
.wsa2{word-spacing:14.048179px;}
.ws72{word-spacing:14.053200px;}
.ws51{word-spacing:14.170800px;}
.wsa3{word-spacing:14.367451px;}
.ws50{word-spacing:14.464800px;}
.ws141{word-spacing:14.758800px;}
.wsa4{word-spacing:14.846371px;}
.ws17f{word-spacing:14.876400px;}
.ws40{word-spacing:14.935200px;}
.ws9e{word-spacing:15.052800px;}
.ws8{word-spacing:15.229200px;}
.ws8e{word-spacing:15.298790px;}
.ws58{word-spacing:15.523200px;}
.ws4b{word-spacing:16.875600px;}
.ws88{word-spacing:17.110800px;}
.ws7{word-spacing:18.416400px;}
.ws109{word-spacing:18.874800px;}
.ws61{word-spacing:20.815200px;}
.ws103{word-spacing:20.855531px;}
.ws159{word-spacing:45.376800px;}
.ws16e{word-spacing:45.917320px;}
.ws152{word-spacing:53.609823px;}
.ws11c{word-spacing:65.506169px;}
.ws16b{word-spacing:94.224359px;}
.ws14f{word-spacing:97.584985px;}
.ws15a{word-spacing:100.345800px;}
.ws14a{word-spacing:103.061400px;}
.ws150{word-spacing:103.322775px;}
.wsd0{word-spacing:111.537400px;}
.wsc8{word-spacing:112.027551px;}
.wse1{word-spacing:112.037084px;}
.wsd1{word-spacing:112.156418px;}
.wse2{word-spacing:112.568274px;}
.wse8{word-spacing:113.446059px;}
.wsd8{word-spacing:113.841888px;}
.wsd7{word-spacing:114.509675px;}
.wsbf{word-spacing:115.857059px;}
.ws158{word-spacing:117.997200px;}
.ws11f{word-spacing:122.245793px;}
.ws153{word-spacing:129.210000px;}
.ws168{word-spacing:138.198874px;}
.ws169{word-spacing:143.936759px;}
.ws154{word-spacing:146.335800px;}
.wsa7{word-spacing:154.653932px;}
.ws14d{word-spacing:157.373400px;}
.ws171{word-spacing:158.599800px;}
.ws11e{word-spacing:165.779393px;}
.ws16d{word-spacing:168.016800px;}
.ws172{word-spacing:174.805800px;}
.ws157{word-spacing:178.964194px;}
.ws151{word-spacing:180.587400px;}
.ws16f{word-spacing:185.142600px;}
.ws167{word-spacing:196.180200px;}
.ws16c{word-spacing:202.268400px;}
.ws117{word-spacing:204.463719px;}
.ws12b{word-spacing:206.304000px;}
.ws12f{word-spacing:217.316990px;}
.ws16a{word-spacing:219.394200px;}
.ws170{word-spacing:219.578818px;}
.ws173{word-spacing:227.015400px;}
.ws127{word-spacing:238.080000px;}
.ws133{word-spacing:250.146611px;}
.ws116{word-spacing:257.402958px;}
.ws120{word-spacing:262.210148px;}
.ws114{word-spacing:305.594394px;}
.ws129{word-spacing:308.352000px;}
.ws115{word-spacing:311.882328px;}
.ws12e{word-spacing:314.080174px;}
.ws125{word-spacing:316.704000px;}
.ws121{word-spacing:337.588800px;}
.wsb1{word-spacing:343.871990px;}
.ws112{word-spacing:360.624000px;}
.ws131{word-spacing:370.819798px;}
.ws11a{word-spacing:394.777195px;}
.ws11b{word-spacing:409.248000px;}
.ws130{word-spacing:414.353398px;}
.ws113{word-spacing:437.497211px;}
.ws12c{word-spacing:453.037816px;}
.ws134{word-spacing:496.948800px;}
.ws12a{word-spacing:505.976413px;}
.ws132{word-spacing:510.783604px;}
.ws126{word-spacing:554.168400px;}
.ws128{word-spacing:560.456424px;}
.ws12d{word-spacing:677.959200px;}
.ws124{word-spacing:686.071216px;}
._11{margin-left:-30.916306px;}
._14{margin-left:-29.692742px;}
._1c{margin-left:-18.998576px;}
._1a{margin-left:-17.082512px;}
._b{margin-left:-11.877588px;}
._2e{margin-left:-10.512000px;}
._6c{margin-left:-7.479960px;}
._a{margin-left:-6.056400px;}
._9{margin-left:-4.651080px;}
._6{margin-left:-3.063120px;}
._2{margin-left:-2.030400px;}
._0{margin-left:-1.008000px;}
._5{width:1.049400px;}
._8{width:2.166960px;}
._1{width:3.168000px;}
._3{width:4.320000px;}
._d{width:5.443920px;}
._10{width:8.014800px;}
._f{width:9.300120px;}
._3c{width:10.511991px;}
._e{width:11.665920px;}
._13{width:14.558400px;}
._c{width:15.640800px;}
._7{width:17.810388px;}
._1b{width:18.959504px;}
._1d{width:30.223200px;}
._4{width:37.839007px;}
._22{width:40.079992px;}
._27{width:46.031992px;}
._30{width:56.105040px;}
._21{width:69.455992px;}
._18{width:71.732990px;}
._20{width:74.702392px;}
._24{width:87.167992px;}
._61{width:91.673391px;}
._44{width:95.046000px;}
._28{width:100.752000px;}
._2a{width:103.679992px;}
._68{width:109.632733px;}
._60{width:112.916400px;}
._5a{width:117.121200px;}
._42{width:120.959510px;}
._19{width:122.476676px;}
._2b{width:125.568000px;}
._43{width:127.289391px;}
._5f{width:128.334000px;}
._52{width:130.217409px;}
._5e{width:132.862257px;}
._15{width:134.927990px;}
._3d{width:139.064990px;}
._69{width:141.405360px;}
._66{width:142.733314px;}
._67{width:144.041462px;}
._4c{width:147.343209px;}
._6b{width:150.058800px;}
._54{width:151.679390px;}
._65{width:153.306297px;}
._55{width:154.927210px;}
._50{width:156.278502px;}
._64{width:157.372076px;}
._53{width:159.213000px;}
._51{width:160.220391px;}
._5d{width:163.592991px;}
._47{width:164.961614px;}
._40{width:168.454810px;}
._3f{width:170.644800px;}
._4a{width:174.141273px;}
._4d{width:176.338800px;}
._4b{width:177.346191px;}
._2c{width:179.561040px;}
._12{width:181.652418px;}
._48{width:182.821190px;}
._5c{width:184.836000px;}
._49{width:185.843400px;}
._3e{width:186.850791px;}
._59{width:189.687594px;}
._16{width:193.014590px;}
._25{width:194.901000px;}
._2d{width:197.321040px;}
._41{width:198.732591px;}
._5b{width:200.253600px;}
._63{width:205.393823px;}
._62{width:207.602588px;}
._2f{width:212.646600px;}
._45{width:216.136920px;}
._4f{width:220.095000px;}
._46{width:221.102391px;}
._4e{width:222.968276px;}
._56{width:224.958590px;}
._58{width:227.704219px;}
._57{width:228.723591px;}
._6a{width:231.879000px;}
._37{width:247.777203px;}
._33{width:252.528000px;}
._26{width:257.520000px;}
._3a{width:271.015214px;}
._1f{width:272.832000px;}
._32{width:281.184000px;}
._39{width:296.155784px;}
._38{width:303.792000px;}
._34{width:306.720000px;}
._3b{width:318.864000px;}
._17{width:331.823990px;}
._1e{width:341.726379px;}
._35{width:373.794582px;}
._36{width:375.058776px;}
._29{width:398.832000px;}
._23{width:417.744000px;}
._31{width:590.318400px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:19.206000px;}
.fs16{font-size:19.334400px;}
.fs12{font-size:23.791800px;}
.fs17{font-size:23.950800px;}
.fs14{font-size:28.665599px;}
.fs19{font-size:28.857000px;}
.fs1d{font-size:29.400000px;}
.fs1f{font-size:30.660000px;}
.fs15{font-size:33.537600px;}
.fs1c{font-size:33.600000px;}
.fs13{font-size:38.124600px;}
.fs18{font-size:38.379599px;}
.fsb{font-size:39.840600px;}
.fse{font-size:39.909599px;}
.fs7{font-size:42.000000px;}
.fs1e{font-size:43.800000px;}
.fs1b{font-size:44.702399px;}
.fsa{font-size:44.933999px;}
.fs9{font-size:45.000000px;}
.fsd{font-size:45.011400px;}
.fs2{font-size:46.199999px;}
.fs10{font-size:47.836200px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:50.026199px;}
.fsf{font-size:54.000000px;}
.fs20{font-size:55.199999px;}
.fs4{font-size:58.800000px;}
.fs1a{font-size:58.819800px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:61.800000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:78.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y164{bottom:0.174963px;}
.y230{bottom:2.679611px;}
.y225{bottom:2.679749px;}
.y186{bottom:2.700508px;}
.y189{bottom:2.700645px;}
.y168{bottom:2.723073px;}
.y16d{bottom:2.726326px;}
.y184{bottom:2.756386px;}
.y22f{bottom:3.205811px;}
.ye1{bottom:3.516003px;}
.yd4{bottom:3.906452px;}
.y18b{bottom:4.505997px;}
.y161{bottom:4.694412px;}
.y15d{bottom:4.844238px;}
.y181{bottom:6.705734px;}
.y167{bottom:7.244247px;}
.y163{bottom:10.121246px;}
.y183{bottom:12.780899px;}
.y188{bottom:12.781036px;}
.y16c{bottom:12.806717px;}
.y22c{bottom:49.024933px;}
.y222{bottom:49.025116px;}
.y29{bottom:75.796800px;}
.y21d{bottom:80.264191px;}
.y228{bottom:80.264236px;}
.y28{bottom:87.798300px;}
.y21f{bottom:96.585571px;}
.y17f{bottom:99.435000px;}
.y27{bottom:99.799800px;}
.y1e7{bottom:100.386303px;}
.ybc{bottom:100.662003px;}
.y5f{bottom:100.958403px;}
.y241{bottom:103.910397px;}
.yd6{bottom:107.920956px;}
.y2e0{bottom:107.934000px;}
.ye4{bottom:108.349354px;}
.y86{bottom:108.719100px;}
.y9a{bottom:108.720898px;}
.y2a5{bottom:108.942305px;}
.y101{bottom:109.267495px;}
.y26{bottom:111.801300px;}
.y349{bottom:113.487579px;}
.y21a{bottom:118.382991px;}
.y26f{bottom:119.140803px;}
.y17e{bottom:120.661800px;}
.y1fe{bottom:121.671147px;}
.ybb{bottom:121.863612px;}
.y5e{bottom:122.185203px;}
.y100{bottom:122.767495px;}
.yd5{bottom:122.920956px;}
.ye3{bottom:123.349354px;}
.y303{bottom:123.570900px;}
.y25{bottom:123.802800px;}
.y240{bottom:125.117399px;}
.y348{bottom:126.987579px;}
.y2df{bottom:129.160800px;}
.y1d7{bottom:129.524998px;}
.y99{bottom:129.935091px;}
.y85{bottom:129.945900px;}
.y2a4{bottom:130.169105px;}
.y24{bottom:135.804300px;}
.y26e{bottom:136.140303px;}
.y302{bottom:137.070900px;}
.y113{bottom:137.615703px;}
.yd1{bottom:138.071995px;}
.ye2{bottom:138.349354px;}
.y219{bottom:139.609791px;}
.y1fd{bottom:139.905145px;}
.y347{bottom:140.487579px;}
.yff{bottom:140.995495px;}
.y17d{bottom:141.888600px;}
.y1d6{bottom:143.024998px;}
.yba{bottom:143.090412px;}
.y5d{bottom:143.412003px;}
.y23f{bottom:146.344199px;}
.y23{bottom:147.805800px;}
.y2de{bottom:150.387600px;}
.y301{bottom:150.570900px;}
.y98{bottom:151.161891px;}
.y84{bottom:151.169105px;}
.y2a3{bottom:151.395905px;}
.y26d{bottom:153.139803px;}
.yde{bottom:153.499500px;}
.y346{bottom:153.987579px;}
.yfe{bottom:154.495495px;}
.y1d5{bottom:156.522000px;}
.y1d8{bottom:156.524998px;}
.y1fc{bottom:158.055303px;}
.y112{bottom:158.842503px;}
.y218{bottom:160.836591px;}
.y17c{bottom:163.115400px;}
.y300{bottom:164.070900px;}
.yb9{bottom:164.317212px;}
.y5c{bottom:164.629803px;}
.y345{bottom:167.487579px;}
.y23e{bottom:167.570999px;}
.yd3{bottom:167.610455px;}
.yfd{bottom:167.995495px;}
.y26c{bottom:170.139303px;}
.y2dd{bottom:171.612602px;}
.y34b{bottom:171.987602px;}
.y97{bottom:172.388691px;}
.y83{bottom:172.395905px;}
.y2a2{bottom:172.597514px;}
.y1d2{bottom:174.744009px;}
.y1d4{bottom:174.750000px;}
.y1fb{bottom:176.205152px;}
.y2ff{bottom:177.570900px;}
.y111{bottom:180.069303px;}
.yc9{bottom:180.265949px;}
.y344{bottom:180.987579px;}
.ye0{bottom:181.575005px;}
.y217{bottom:182.063391px;}
.y26b{bottom:182.886303px;}
.y17b{bottom:184.342200px;}
.y34a{bottom:185.487602px;}
.yb8{bottom:185.544012px;}
.y5b{bottom:185.856603px;}
.yfc{bottom:186.139495px;}
.y1d1{bottom:188.244009px;}
.y1d3{bottom:188.250000px;}
.y23d{bottom:188.797799px;}
.y2fe{bottom:191.070900px;}
.y2dc{bottom:192.834158px;}
.y2b3{bottom:193.597514px;}
.y96{bottom:193.615491px;}
.y82{bottom:193.619109px;}
.y2a1{bottom:193.824314px;}
.yd7{bottom:194.252998px;}
.y1fa{bottom:194.355298px;}
.y343{bottom:194.487579px;}
.yfb{bottom:199.639495px;}
.yf{bottom:200.974042px;}
.y110{bottom:201.296103px;}
.y216{bottom:203.290191px;}
.y2fd{bottom:204.570900px;}
.yca{bottom:205.103217px;}
.y17a{bottom:205.569000px;}
.y1d0{bottom:206.400009px;}
.y28a{bottom:206.578361px;}
.yb7{bottom:206.770812px;}
.y5a{bottom:207.083403px;}
.y342{bottom:207.987579px;}
.y23c{bottom:210.024599px;}
.y1f9{bottom:212.505147px;}
.y2db{bottom:214.060958px;}
.y2b2{bottom:214.824314px;}
.y95{bottom:214.842291px;}
.y81{bottom:214.845909px;}
.y2a0{bottom:215.051114px;}
.yfa{bottom:217.795495px;}
.y2fc{bottom:218.070900px;}
.y1cf{bottom:219.893995px;}
.y341{bottom:221.487579px;}
.ye{bottom:222.200842px;}
.y10f{bottom:222.522903px;}
.yd8{bottom:222.959019px;}
.y289{bottom:224.010761px;}
.y215{bottom:224.516991px;}
.y179{bottom:226.795800px;}
.yb6{bottom:227.997612px;}
.y59{bottom:228.310203px;}
.ycb{bottom:230.019120px;}
.y1f8{bottom:230.655156px;}
.y23b{bottom:231.251399px;}
.yf9{bottom:231.295495px;}
.y2fb{bottom:231.570900px;}
.y340{bottom:234.987579px;}
.y2da{bottom:235.287758px;}
.y2b1{bottom:236.051114px;}
.y80{bottom:236.067305px;}
.y94{bottom:236.069091px;}
.y29f{bottom:236.277914px;}
.y1ce{bottom:238.049995px;}
.yd2{bottom:241.354351px;}
.y288{bottom:241.377461px;}
.ydf{bottom:241.768353px;}
.yd{bottom:243.427642px;}
.y10e{bottom:243.737108px;}
.yf8{bottom:244.795495px;}
.y2fa{bottom:245.070900px;}
.y214{bottom:245.741844px;}
.y178{bottom:248.022600px;}
.y33f{bottom:248.487579px;}
.y1f7{bottom:248.805303px;}
.yb5{bottom:249.224412px;}
.y58{bottom:249.537003px;}
.y1cd{bottom:251.544005px;}
.yd9{bottom:251.665039px;}
.y23a{bottom:252.478199px;}
.ycc{bottom:254.935022px;}
.y2d9{bottom:256.510802px;}
.y2b0{bottom:257.277914px;}
.y7f{bottom:257.294105px;}
.y93{bottom:257.295891px;}
.y29e{bottom:257.504714px;}
.y2f9{bottom:258.570900px;}
.y287{bottom:258.744161px;}
.y33e{bottom:261.987579px;}
.yf7{bottom:262.951495px;}
.yc{bottom:264.654442px;}
.y10d{bottom:264.963908px;}
.y1f6{bottom:266.955152px;}
.y213{bottom:266.966995px;}
.y177{bottom:269.249400px;}
.y1cb{bottom:269.700005px;}
.yb4{bottom:270.451212px;}
.y57{bottom:270.761993px;}
.y2f8{bottom:272.070900px;}
.y239{bottom:273.704999px;}
.y33d{bottom:275.487579px;}
.y286{bottom:276.110861px;}
.yf6{bottom:276.451495px;}
.y2d8{bottom:277.737602px;}
.y2af{bottom:278.504714px;}
.y92{bottom:278.519095px;}
.y7e{bottom:278.520905px;}
.y29d{bottom:278.731514px;}
.ycd{bottom:279.850925px;}
.yda{bottom:280.371059px;}
.y1ca{bottom:283.200005px;}
.y1f5{bottom:285.105298px;}
.y2f7{bottom:285.570900px;}
.yb{bottom:285.879456px;}
.y10c{bottom:286.190708px;}
.y33c{bottom:288.987579px;}
.y176{bottom:290.476200px;}
.yb3{bottom:291.678012px;}
.y285{bottom:293.477561px;}
.yf5{bottom:294.595495px;}
.y238{bottom:294.931799px;}
.y1c9{bottom:296.693991px;}
.y1cc{bottom:296.700005px;}
.y2d7{bottom:298.950135px;}
.y2f6{bottom:299.070900px;}
.y2ae{bottom:299.731514px;}
.y7d{bottom:299.744109px;}
.y91{bottom:299.745895px;}
.y29c{bottom:299.958314px;}
.y33b{bottom:302.487579px;}
.y1f4{bottom:303.255147px;}
.yce{bottom:304.766827px;}
.ya{bottom:307.099042px;}
.y10b{bottom:307.417508px;}
.yf4{bottom:308.095495px;}
.ydb{bottom:309.077080px;}
.y284{bottom:310.835852px;}
.y175{bottom:311.703000px;}
.y2f5{bottom:312.570900px;}
.yb2{bottom:312.904812px;}
.y1c8{bottom:314.849991px;}
.y33a{bottom:315.987579px;}
.y237{bottom:316.158599px;}
.y212{bottom:317.475746px;}
.y2d6{bottom:320.176935px;}
.y2ad{bottom:320.958314px;}
.y56{bottom:320.967291px;}
.y7c{bottom:320.970909px;}
.y29b{bottom:321.185114px;}
.y1f3{bottom:321.405156px;}
.yf3{bottom:321.595495px;}
.y283{bottom:328.202552px;}
.y9{bottom:328.325842px;}
.y1c7{bottom:328.344000px;}
.y10a{bottom:328.644308px;}
.y339{bottom:329.487579px;}
.ycf{bottom:329.604095px;}
.y174{bottom:332.929800px;}
.yb1{bottom:334.131612px;}
.y236{bottom:337.385399px;}
.ydc{bottom:337.861870px;}
.y211{bottom:338.695332px;}
.y1f2{bottom:339.555303px;}
.y2d5{bottom:341.403735px;}
.y7b{bottom:342.185114px;}
.y55{bottom:342.194091px;}
.y29a{bottom:342.411914px;}
.y338{bottom:342.987579px;}
.y282{bottom:345.560843px;}
.y1c5{bottom:346.500000px;}
.yf2{bottom:348.487495px;}
.y8{bottom:349.552642px;}
.y109{bottom:349.871108px;}
.y173{bottom:354.156600px;}
.yd0{bottom:354.519998px;}
.yb0{bottom:355.358412px;}
.y337{bottom:356.487579px;}
.y1f1{bottom:357.705289px;}
.y235{bottom:358.608603px;}
.y210{bottom:359.922132px;}
.y1c4{bottom:360.000000px;}
.y2d4{bottom:362.630535px;}
.y281{bottom:362.927543px;}
.y7a{bottom:363.411914px;}
.y54{bottom:363.420891px;}
.y299{bottom:363.638714px;}
.ydd{bottom:366.567890px;}
.y336{bottom:369.987579px;}
.y7{bottom:370.779442px;}
.y108{bottom:371.097908px;}
.yf1{bottom:372.800240px;}
.y1c3{bottom:373.494009px;}
.y1c6{bottom:373.500000px;}
.y172{bottom:375.383400px;}
.y1f0{bottom:375.855161px;}
.yaf{bottom:376.585212px;}
.y234{bottom:379.835403px;}
.y280{bottom:380.285857px;}
.y20f{bottom:381.148932px;}
.y335{bottom:383.487579px;}
.y2d3{bottom:383.857335px;}
.y53{bottom:384.626095px;}
.y79{bottom:384.638714px;}
.y2f4{bottom:384.795914px;}
.y298{bottom:384.865514px;}
.y1c2{bottom:391.650009px;}
.y6{bottom:392.004456px;}
.y107{bottom:392.319303px;}
.y1ef{bottom:394.005170px;}
.y171{bottom:396.602986px;}
.y334{bottom:396.987579px;}
.y27f{bottom:397.652557px;}
.yae{bottom:397.812012px;}
.y233{bottom:401.058585px;}
.y20e{bottom:402.375732px;}
.y2d2{bottom:405.084135px;}
.y1c1{bottom:405.144018px;}
.y52{bottom:405.852895px;}
.y78{bottom:405.865514px;}
.y297{bottom:406.092314px;}
.y333{bottom:410.487579px;}
.y2f3{bottom:411.795914px;}
.y1ee{bottom:412.155133px;}
.y106{bottom:413.546103px;}
.y27e{bottom:415.010847px;}
.y170{bottom:417.829786px;}
.yad{bottom:419.037003px;}
.y232{bottom:422.285385px;}
.y1c0{bottom:423.300018px;}
.y20d{bottom:423.585013px;}
.y332{bottom:423.987579px;}
.y2f2{bottom:425.295914px;}
.y2d1{bottom:426.310935px;}
.y51{bottom:427.079695px;}
.y77{bottom:427.092314px;}
.yf0{bottom:427.094123px;}
.y296{bottom:427.319114px;}
.y1ed{bottom:430.305280px;}
.y21{bottom:431.341965px;}
.y27d{bottom:432.377547px;}
.y105{bottom:434.772903px;}
.y1bd{bottom:436.793982px;}
.y1bf{bottom:436.800018px;}
.y331{bottom:437.487579px;}
.y16f{bottom:439.056586px;}
.y231{bottom:443.510422px;}
.y20c{bottom:444.811813px;}
.y2d0{bottom:447.537735px;}
.y2f1{bottom:447.795914px;}
.y50{bottom:448.306495px;}
.yc8{bottom:448.313686px;}
.y76{bottom:448.319114px;}
.yef{bottom:448.320923px;}
.y1ec{bottom:448.455289px;}
.y295{bottom:448.545914px;}
.y20{bottom:449.341965px;}
.y27c{bottom:449.735838px;}
.y1bc{bottom:450.293982px;}
.y1be{bottom:450.300018px;}
.y330{bottom:450.987579px;}
.y16a{bottom:453.074982px;}
.y104{bottom:455.994322px;}
.y169{bottom:460.281623px;}
.y16e{bottom:460.283386px;}
.y32f{bottom:464.487579px;}
.y16b{bottom:465.881699px;}
.y20b{bottom:466.038613px;}
.y1eb{bottom:466.605161px;}
.y27b{bottom:467.102538px;}
.y1bb{bottom:468.449982px;}
.y2cf{bottom:468.760779px;}
.yac{bottom:469.531486px;}
.y4f{bottom:469.533295px;}
.yc7{bottom:469.540486px;}
.y75{bottom:469.545914px;}
.y294{bottom:469.769095px;}
.y1f{bottom:473.341965px;}
.y166{bottom:474.300018px;}
.y160{bottom:476.837997px;}
.y103{bottom:477.221122px;}
.y32e{bottom:477.987579px;}
.y15f{bottom:481.506614px;}
.y165{bottom:481.508423px;}
.y1b8{bottom:481.943991px;}
.y1ba{bottom:481.949982px;}
.y27a{bottom:484.460829px;}
.y1ea{bottom:484.755170px;}
.y162{bottom:486.959244px;}
.y20a{bottom:487.265413px;}
.y2ce{bottom:489.987579px;}
.y2f0{bottom:490.245895px;}
.y90{bottom:490.758286px;}
.y4e{bottom:490.760095px;}
.y74{bottom:490.761905px;}
.y2ac{bottom:490.763714px;}
.yc6{bottom:490.767286px;}
.y293{bottom:490.995895px;}
.y1e{bottom:491.341965px;}
.y32d{bottom:491.487579px;}
.y1b7{bottom:495.443991px;}
.y1b9{bottom:495.449982px;}
.y15c{bottom:497.927994px;}
.y102{bottom:498.447922px;}
.y279{bottom:501.827529px;}
.y15e{bottom:502.733414px;}
.y15b{bottom:502.734005px;}
.y1e9{bottom:502.894789px;}
.y2ef{bottom:503.745895px;}
.y246{bottom:504.531143px;}
.y32c{bottom:504.987579px;}
.y209{bottom:508.492213px;}
.y1d{bottom:509.341965px;}
.y2cd{bottom:511.210807px;}
.y8f{bottom:511.985086px;}
.y4d{bottom:511.986895px;}
.y73{bottom:511.988705px;}
.y2ab{bottom:511.990514px;}
.yc5{bottom:511.994086px;}
.y292{bottom:512.219123px;}
.y1b5{bottom:513.599991px;}
.y2ee{bottom:517.245895px;}
.y32b{bottom:518.487579px;}
.y278{bottom:519.185866px;}
.y245{bottom:521.533218px;}
.y1b4{bottom:527.099991px;}
.y1c{bottom:527.341965px;}
.y208{bottom:529.719013px;}
.y1e8{bottom:529.786789px;}
.y32a{bottom:531.987579px;}
.y2cc{bottom:532.437607px;}
.y8e{bottom:533.211886px;}
.y4c{bottom:533.213695px;}
.y72{bottom:533.215505px;}
.y2aa{bottom:533.217314px;}
.yc4{bottom:533.220886px;}
.y291{bottom:533.445923px;}
.y180{bottom:534.570007px;}
.y277{bottom:536.552566px;}
.y244{bottom:538.535110px;}
.y182{bottom:539.075546px;}
.y2ed{bottom:539.745895px;}
.y1b3{bottom:540.594000px;}
.y1b6{bottom:540.599991px;}
.y185{bottom:541.275742px;}
.y187{bottom:541.275879px;}
.y18a{bottom:541.276199px;}
.y1b{bottom:545.341965px;}
.y329{bottom:545.487579px;}
.y243{bottom:551.340021px;}
.y2ec{bottom:553.245895px;}
.y2cb{bottom:553.657216px;}
.y276{bottom:553.910857px;}
.y1e6{bottom:554.099396px;}
.yc3{bottom:554.427923px;}
.y8d{bottom:554.438686px;}
.y4b{bottom:554.440495px;}
.y71{bottom:554.442305px;}
.y2a9{bottom:554.444114px;}
.y290{bottom:554.670914px;}
.y1b2{bottom:558.750000px;}
.y328{bottom:558.987579px;}
.y227{bottom:561.564011px;}
.y14a{bottom:562.304260px;}
.y1a{bottom:563.341965px;}
.y242{bottom:564.087021px;}
.y2eb{bottom:566.745895px;}
.y22e{bottom:566.970612px;}
.y275{bottom:571.277557px;}
.y1b1{bottom:572.244009px;}
.y327{bottom:572.487579px;}
.y2ca{bottom:574.884016px;}
.y274{bottom:575.449507px;}
.yc2{bottom:575.654723px;}
.y8c{bottom:575.665486px;}
.y4a{bottom:575.667295px;}
.y70{bottom:575.669105px;}
.y2a8{bottom:575.670914px;}
.y15a{bottom:575.895905px;}
.y149{bottom:577.304260px;}
.y19{bottom:581.341965px;}
.y264{bottom:585.209091px;}
.y326{bottom:585.987579px;}
.y273{bottom:588.644257px;}
.y2ea{bottom:589.245895px;}
.y22d{bottom:590.379456px;}
.y1af{bottom:590.400009px;}
.y2c9{bottom:596.110816px;}
.y140{bottom:596.441116px;}
.y148{bottom:596.747269px;}
.y2a7{bottom:596.879668px;}
.yc1{bottom:596.881523px;}
.y8b{bottom:596.892286px;}
.y49{bottom:596.894095px;}
.y6f{bottom:596.895905px;}
.y159{bottom:597.108323px;}
.y18{bottom:599.341965px;}
.y325{bottom:599.487579px;}
.y263{bottom:602.641491px;}
.y2e9{bottom:602.745895px;}
.y1ae{bottom:603.900009px;}
.y226{bottom:604.680908px;}
.y13e{bottom:607.704758px;}
.y147{bottom:608.088730px;}
.y324{bottom:612.987579px;}
.y272{bottom:614.744385px;}
.y271{bottom:614.749479px;}
.y22b{bottom:614.787277px;}
.y138{bottom:615.827271px;}
.y141{bottom:616.211105px;}
.y2e8{bottom:616.245895px;}
.y2c8{bottom:617.337616px;}
.y17{bottom:617.341965px;}
.y1ad{bottom:617.394018px;}
.y1b0{bottom:617.400009px;}
.y1e5{bottom:618.106468px;}
.yc0{bottom:618.108323px;}
.y8a{bottom:618.119086px;}
.y48{bottom:618.120895px;}
.y158{bottom:618.335123px;}
.y262{bottom:620.008191px;}
.y323{bottom:626.487579px;}
.y270{bottom:627.944229px;}
.y16{bottom:635.341965px;}
.y1ac{bottom:635.550018px;}
.y261{bottom:637.374891px;}
.y139{bottom:638.202005px;}
.y142{bottom:638.431165px;}
.y2c7{bottom:638.562607px;}
.y2e7{bottom:638.745895px;}
.y229{bottom:639.100662px;}
.y1e4{bottom:639.333268px;}
.ybf{bottom:639.335123px;}
.y6e{bottom:639.336886px;}
.y47{bottom:639.338695px;}
.y89{bottom:639.345886px;}
.y157{bottom:639.561923px;}
.y322{bottom:639.987579px;}
.y22a{bottom:641.828247px;}
.y1ab{bottom:649.043982px;}
.y26a{bottom:651.472482px;}
.y2e6{bottom:652.245895px;}
.y15{bottom:653.341965px;}
.y321{bottom:653.487579px;}
.y260{bottom:654.741591px;}
.y2c6{bottom:659.783979px;}
.y13a{bottom:660.499402px;}
.y1e3{bottom:660.560068px;}
.ybe{bottom:660.561923px;}
.y6d{bottom:660.563686px;}
.y46{bottom:660.565495px;}
.yab{bottom:660.569114px;}
.y143{bottom:660.728561px;}
.y156{bottom:660.788723px;}
.y2e5{bottom:665.745895px;}
.y320{bottom:666.987579px;}
.y1aa{bottom:667.199982px;}
.y269{bottom:667.969482px;}
.y14{bottom:671.341965px;}
.y25f{bottom:672.108291px;}
.y207{bottom:680.041210px;}
.y31f{bottom:680.487579px;}
.y1a9{bottom:680.693991px;}
.y2c5{bottom:681.010779px;}
.y1e2{bottom:681.786868px;}
.ybd{bottom:681.788723px;}
.y6c{bottom:681.790486px;}
.y45{bottom:681.792295px;}
.yaa{bottom:681.795914px;}
.y155{bottom:682.015523px;}
.y13b{bottom:682.874136px;}
.y144{bottom:683.025958px;}
.y2e4{bottom:688.245895px;}
.y13{bottom:689.341965px;}
.y25e{bottom:689.466582px;}
.y31e{bottom:693.987579px;}
.y1a7{bottom:698.849991px;}
.y206{bottom:701.268010px;}
.y2e3{bottom:701.745895px;}
.y2c4{bottom:702.237579px;}
.yee{bottom:703.006523px;}
.y1e1{bottom:703.013668px;}
.ya9{bottom:703.015523px;}
.y6b{bottom:703.017286px;}
.y44{bottom:703.019095px;}
.y154{bottom:703.242323px;}
.y31{bottom:703.741928px;}
.y13c{bottom:705.248871px;}
.y145{bottom:705.323355px;}
.y25d{bottom:706.833282px;}
.y12{bottom:707.341965px;}
.y31d{bottom:707.487579px;}
.y1a6{bottom:712.349991px;}
.y30{bottom:717.241928px;}
.y31c{bottom:720.987579px;}
.y205{bottom:722.494810px;}
.y2c3{bottom:723.453708px;}
.y25c{bottom:724.191618px;}
.yed{bottom:724.233323px;}
.y1e0{bottom:724.240468px;}
.ya8{bottom:724.242323px;}
.y6a{bottom:724.244086px;}
.y43{bottom:724.245895px;}
.y153{bottom:724.469123px;}
.y11{bottom:725.341965px;}
.y1a5{bottom:725.844000px;}
.y1a8{bottom:725.849991px;}
.y146{bottom:727.620752px;}
.y13d{bottom:727.623605px;}
.y2f{bottom:730.741928px;}
.y31b{bottom:734.487579px;}
.y13f{bottom:734.594238px;}
.y25b{bottom:741.558318px;}
.y204{bottom:743.721610px;}
.y1a3{bottom:744.000000px;}
.y2e{bottom:744.241928px;}
.y114{bottom:744.426727px;}
.y2c2{bottom:744.680508px;}
.y2e2{bottom:745.452886px;}
.yec{bottom:745.460123px;}
.y42{bottom:745.465505px;}
.y1df{bottom:745.467268px;}
.ya7{bottom:745.469123px;}
.y69{bottom:745.470886px;}
.y152{bottom:745.695923px;}
.y10{bottom:747.841965px;}
.y31a{bottom:747.987579px;}
.y137{bottom:748.002731px;}
.y12e{bottom:748.841263px;}
.y1a2{bottom:757.500000px;}
.y2d{bottom:757.741928px;}
.y12c{bottom:758.279250px;}
.y135{bottom:758.660248px;}
.y25a{bottom:758.916563px;}
.y319{bottom:761.487579px;}
.y203{bottom:764.948410px;}
.y2c1{bottom:765.907308px;}
.y126{bottom:766.347748px;}
.y2e1{bottom:766.679686px;}
.yeb{bottom:766.686923px;}
.y41{bottom:766.692305px;}
.y88{bottom:766.694068px;}
.y68{bottom:766.695923px;}
.y12f{bottom:766.727097px;}
.y151{bottom:766.919105px;}
.y1a4{bottom:771.000000px;}
.y1a1{bottom:771.005963px;}
.y318{bottom:774.987579px;}
.y259{bottom:776.283263px;}
.y257{bottom:780.449982px;}
.y202{bottom:786.164744px;}
.y2c0{bottom:787.134108px;}
.y127{bottom:787.815254px;}
.ya6{bottom:787.906486px;}
.y67{bottom:787.910105px;}
.yea{bottom:787.913723px;}
.y268{bottom:787.917341px;}
.y40{bottom:787.919105px;}
.y87{bottom:787.920868px;}
.y130{bottom:788.040955px;}
.y150{bottom:788.145905px;}
.y317{bottom:788.487579px;}
.y19f{bottom:789.149963px;}
.y256{bottom:793.641600px;}
.y258{bottom:793.649963px;}
.y316{bottom:801.987579px;}
.y19e{bottom:802.649963px;}
.y201{bottom:807.391544px;}
.y2bf{bottom:808.360908px;}
.ya5{bottom:809.133286px;}
.y28f{bottom:809.135141px;}
.y66{bottom:809.136905px;}
.y1de{bottom:809.138668px;}
.ye9{bottom:809.140523px;}
.y267{bottom:809.144141px;}
.y3f{bottom:809.145905px;}
.y128{bottom:809.277958px;}
.y131{bottom:809.354814px;}
.y14f{bottom:809.369086px;}
.y255{bottom:811.008300px;}
.y315{bottom:815.487579px;}
.y5{bottom:815.679474px;}
.y19d{bottom:816.149963px;}
.y254{bottom:828.366637px;}
.y200{bottom:828.618344px;}
.y314{bottom:828.987579px;}
.y2be{bottom:829.587708px;}
.y19c{bottom:829.649963px;}
.ya4{bottom:830.360086px;}
.y28e{bottom:830.361941px;}
.y3e{bottom:830.363705px;}
.y1dd{bottom:830.365468px;}
.ye8{bottom:830.367323px;}
.y266{bottom:830.370941px;}
.y14e{bottom:830.595886px;}
.y129{bottom:830.740662px;}
.y132{bottom:830.740695px;}
.y313{bottom:842.487579px;}
.y19b{bottom:843.149963px;}
.y253{bottom:845.733337px;}
.y1ff{bottom:849.845144px;}
.y2bd{bottom:850.807179px;}
.ya3{bottom:851.586886px;}
.y28d{bottom:851.588741px;}
.y3d{bottom:851.590505px;}
.y1dc{bottom:851.592268px;}
.ye7{bottom:851.594123px;}
.y265{bottom:851.595886px;}
.y14d{bottom:851.820923px;}
.y133{bottom:852.054553px;}
.y12a{bottom:852.208169px;}
.y312{bottom:855.987579px;}
.y19a{bottom:856.644018px;}
.y1a0{bottom:856.649963px;}
.y4{bottom:861.908406px;}
.y252{bottom:863.091582px;}
.y311{bottom:869.487579px;}
.y2bc{bottom:872.033979px;}
.ya2{bottom:872.813686px;}
.y28c{bottom:872.815541px;}
.y3c{bottom:872.817305px;}
.y1db{bottom:872.819068px;}
.ye6{bottom:872.820923px;}
.y134{bottom:873.363610px;}
.y12b{bottom:873.670873px;}
.y198{bottom:874.800018px;}
.y136{bottom:880.367249px;}
.y251{bottom:880.458282px;}
.y12d{bottom:881.510284px;}
.y21c{bottom:881.686523px;}
.y310{bottom:882.987579px;}
.y224{bottom:887.093079px;}
.y197{bottom:888.300018px;}
.y2bb{bottom:893.260779px;}
.ya1{bottom:894.040486px;}
.y28b{bottom:894.042341px;}
.y3b{bottom:894.044105px;}
.y1da{bottom:894.045868px;}
.y11d{bottom:895.743622px;}
.y125{bottom:896.275360px;}
.y30f{bottom:896.487579px;}
.y250{bottom:897.816618px;}
.y3{bottom:900.896406px;}
.y196{bottom:901.793982px;}
.y199{bottom:901.800018px;}
.y124{bottom:908.758759px;}
.y11b{bottom:909.138885px;}
.y30e{bottom:909.987579px;}
.y223{bottom:910.501923px;}
.y2ba{bottom:914.487579px;}
.y24f{bottom:915.183318px;}
.ya0{bottom:915.267286px;}
.y1d9{bottom:915.269141px;}
.y3a{bottom:915.270905px;}
.y11e{bottom:916.827026px;}
.y115{bottom:917.131073px;}
.y194{bottom:919.949982px;}
.y30d{bottom:923.487579px;}
.y21b{bottom:924.803375px;}
.y24e{bottom:932.541563px;}
.y193{bottom:933.449982px;}
.y221{bottom:934.909790px;}
.y2b9{bottom:935.712708px;}
.y65{bottom:936.486941px;}
.ye5{bottom:936.492323px;}
.y9f{bottom:936.494086px;}
.y39{bottom:936.495941px;}
.y30c{bottom:936.987579px;}
.y11f{bottom:938.217709px;}
.y116{bottom:938.593777px;}
.y2{bottom:939.884406px;}
.y192{bottom:946.944037px;}
.y195{bottom:946.949982px;}
.y24d{bottom:949.908263px;}
.y30b{bottom:950.487579px;}
.y24c{bottom:954.080213px;}
.y2b8{bottom:956.932179px;}
.y64{bottom:957.713741px;}
.y2a6{bottom:957.717268px;}
.y38{bottom:957.719123px;}
.y9e{bottom:957.720886px;}
.y21e{bottom:959.223267px;}
.y120{bottom:959.603590px;}
.y117{bottom:959.984459px;}
.y220{bottom:961.950714px;}
.y30a{bottom:963.987579px;}
.y190{bottom:965.100037px;}
.y24b{bottom:967.274963px;}
.y309{bottom:977.487579px;}
.y2b7{bottom:978.158979px;}
.y18f{bottom:978.600037px;}
.y1{bottom:978.872406px;}
.y63{bottom:978.940541px;}
.y9d{bottom:978.942305px;}
.y14c{bottom:978.944068px;}
.y37{bottom:978.945923px;}
.y121{bottom:980.989471px;}
.y118{bottom:981.447163px;}
.y249{bottom:990.637482px;}
.y308{bottom:990.987579px;}
.y18e{bottom:992.095518px;}
.y191{bottom:992.100037px;}
.y2b6{bottom:999.385779px;}
.y36{bottom:1000.167341px;}
.y9c{bottom:1000.169105px;}
.y14b{bottom:1000.170868px;}
.y122{bottom:1002.380153px;}
.y119{bottom:1002.837846px;}
.y24a{bottom:1003.837463px;}
.y307{bottom:1004.487579px;}
.y248{bottom:1006.580213px;}
.y306{bottom:1017.987579px;}
.y18d{bottom:1018.987518px;}
.y247{bottom:1019.774963px;}
.y2b5{bottom:1020.612579px;}
.y35{bottom:1021.394141px;}
.y9b{bottom:1021.395905px;}
.y123{bottom:1023.766034px;}
.y11a{bottom:1024.300550px;}
.y305{bottom:1031.487579px;}
.y11c{bottom:1032.522583px;}
.y2a{bottom:1035.298370px;}
.y22{bottom:1035.750183px;}
.y2b4{bottom:1041.837708px;}
.y34{bottom:1042.620941px;}
.y18c{bottom:1043.300079px;}
.y304{bottom:1044.987579px;}
.y2c{bottom:1112.297079px;}
.y60{bottom:1126.524628px;}
.y32{bottom:1126.524719px;}
.y62{bottom:1126.756989px;}
.y2b{bottom:1126.925079px;}
.y61{bottom:1127.300079px;}
.y33{bottom:1127.304719px;}
.h56{height:2.352792px;}
.h36{height:13.136904px;}
.h3b{height:13.224730px;}
.h40{height:14.550000px;}
.h37{height:16.273591px;}
.h3c{height:16.382347px;}
.h42{height:17.400000px;}
.h39{height:19.607270px;}
.h3e{height:19.738188px;}
.h45{height:20.099999px;}
.h43{height:20.831318px;}
.h3a{height:22.973256px;}
.h38{height:26.115351px;}
.h3d{height:26.290025px;}
.h28{height:27.250970px;}
.h30{height:27.298166px;}
.h5d{height:27.988800px;}
.h5f{height:29.832180px;}
.h26{height:30.734855px;}
.h2e{height:30.787798px;}
.h44{height:31.291679px;}
.h59{height:31.738703px;}
.h35{height:32.719961px;}
.h29{height:34.217920px;}
.hb{height:37.086000px;}
.h60{height:38.675400px;}
.h62{height:38.708854px;}
.h66{height:38.708945px;}
.h63{height:38.709037px;}
.h61{height:38.709220px;}
.h5b{height:39.468086px;}
.he{height:39.735000px;}
.h4f{height:39.984000px;}
.h65{height:40.026000px;}
.h41{height:41.173860px;}
.ha{height:41.538000px;}
.h57{height:41.762058px;}
.h2b{height:42.384000px;}
.h4e{height:42.395991px;}
.h50{height:42.401524px;}
.h48{height:42.402073px;}
.h49{height:42.407780px;}
.h4b{height:42.407963px;}
.h4d{height:42.408055px;}
.h4a{height:42.408146px;}
.h5e{height:42.617400px;}
.h71{height:42.840000px;}
.h6f{height:42.885000px;}
.h6e{height:43.785000px;}
.hd{height:45.696000px;}
.hf{height:45.744000px;}
.h33{height:46.704000px;}
.hc{height:47.232000px;}
.h2a{height:47.472000px;}
.h64{height:47.682000px;}
.h47{height:49.974641px;}
.h55{height:52.671848px;}
.h5a{height:52.672397px;}
.h7{height:52.980000px;}
.h46{height:53.215630px;}
.h32{height:53.406000px;}
.h70{height:53.709599px;}
.h5{height:55.860000px;}
.h11{height:55.867054px;}
.h1a{height:55.867145px;}
.h1c{height:55.867191px;}
.h21{height:55.867237px;}
.h1e{height:55.867420px;}
.h6c{height:55.867969px;}
.h10{height:55.874107px;}
.h34{height:55.874290px;}
.h1b{height:55.874382px;}
.h20{height:55.874473px;}
.h6a{height:55.875023px;}
.h13{height:55.881527px;}
.h6{height:55.881618px;}
.h2d{height:55.881710px;}
.h6b{height:55.882076px;}
.h1d{height:55.888580px;}
.h14{height:55.888763px;}
.h16{height:55.888809px;}
.h12{height:55.888946px;}
.h51{height:55.894625px;}
.h69{height:55.895634px;}
.h17{height:55.896000px;}
.h18{height:55.903054px;}
.h19{height:55.903145px;}
.h22{height:55.903237px;}
.h2c{height:55.903420px;}
.h6d{height:55.909832px;}
.h3f{height:55.910290px;}
.h1f{height:55.910473px;}
.h23{height:55.917527px;}
.h31{height:55.917710px;}
.h52{height:55.923026px;}
.h68{height:55.924946px;}
.h25{height:55.932000px;}
.h15{height:55.939237px;}
.h67{height:55.953527px;}
.h24{height:55.953573px;}
.h53{height:57.000000px;}
.h8{height:58.380000px;}
.h58{height:60.887582px;}
.h5c{height:60.888131px;}
.h4{height:61.120200px;}
.h3{height:67.194379px;}
.h9{height:77.142000px;}
.h4c{height:96.384000px;}
.h54{height:97.259995px;}
.h2{height:137.088000px;}
.h27{height:250.521011px;}
.h2f{height:250.950005px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w3{width:16.423500px;}
.w4{width:22.950000px;}
.w5{width:23.385000px;}
.w7{width:24.000000px;}
.w6{width:24.870000px;}
.w8{width:168.540000px;}
.wa{width:386.984985px;}
.w9{width:391.695007px;}
.w2{width:540.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2e{left:-1.446167px;}
.x0{left:0.000000px;}
.x30{left:7.286200px;}
.x3a{left:9.454821px;}
.x37{left:10.951092px;}
.xd{left:14.881348px;}
.x13{left:18.310204px;}
.x36{left:19.723938px;}
.x3f{left:60.344359px;}
.x3e{left:62.657708px;}
.x4b{left:79.210191px;}
.x1{left:84.933002px;}
.xf{left:86.919457px;}
.x40{left:88.577843px;}
.x6{left:93.732302px;}
.x42{left:114.322198px;}
.x53{left:126.103341px;}
.x44{left:139.391694px;}
.x46{left:162.301209px;}
.x55{left:165.185990px;}
.x8{left:176.456703px;}
.x15{left:179.778146px;}
.x10{left:186.206703px;}
.x9{left:188.451903px;}
.xc{left:192.095078px;}
.x26{left:194.120407px;}
.x12{left:195.509512px;}
.xb{left:197.745529px;}
.x57{left:199.637833px;}
.x3c{left:206.457000px;}
.x27{left:208.450195px;}
.x18{left:209.935661px;}
.xa{left:214.854149px;}
.x3d{left:216.639908px;}
.x11{left:218.319039px;}
.x1f{left:224.017204px;}
.x19{left:228.280060px;}
.x20{left:230.182800px;}
.xe{left:234.754050px;}
.x14{left:238.095749px;}
.x59{left:241.204331px;}
.x5a{left:247.916403px;}
.x5e{left:258.066902px;}
.x4d{left:260.773361px;}
.x51{left:263.224503px;}
.x2{left:267.874054px;}
.x34{left:272.397011px;}
.x4{left:277.624489px;}
.x3{left:279.869254px;}
.x35{left:283.602608px;}
.x52{left:291.803696px;}
.x4c{left:294.455544px;}
.x28{left:297.104095px;}
.x47{left:304.428452px;}
.x41{left:309.911842px;}
.x16{left:311.648701px;}
.x5b{left:325.456947px;}
.x43{left:335.642693px;}
.x5f{left:338.592293px;}
.x54{left:346.155304px;}
.x45{left:360.725555px;}
.x56{left:378.001511px;}
.x50{left:379.998139px;}
.x4e{left:382.447221px;}
.x5c{left:404.014481px;}
.x60{left:417.744003px;}
.x48{left:432.696452px;}
.x4f{left:437.177261px;}
.x58{left:439.628677px;}
.x21{left:446.958893px;}
.x22{left:448.404144px;}
.x1a{left:449.622894px;}
.x1b{left:451.068146px;}
.x23{left:461.192413px;}
.x1c{left:463.779922px;}
.x25{left:482.655899px;}
.x1e{left:484.331406px;}
.x61{left:493.031570px;}
.x49{left:515.304449px;}
.x1d{left:517.137909px;}
.x2d{left:523.081512px;}
.x29{left:524.142883px;}
.x2f{left:532.678482px;}
.x24{left:534.948898px;}
.x31{left:546.031357px;}
.x32{left:553.601990px;}
.x62{left:563.009079px;}
.x33{left:576.987900px;}
.x38{left:579.164978px;}
.x39{left:589.500137px;}
.x3b{left:603.165161px;}
.x5d{left:631.928238px;}
.x4a{left:643.260587px;}
.x2b{left:663.538513px;}
.x2c{left:679.962891px;}
.x5{left:694.929886px;}
.x17{left:699.432907px;}
.x2a{left:741.068390px;}
.x7{left:747.224258px;}
@media print{
.vb{vertical-align:-14.929036pt;}
.v6{vertical-align:-10.650602pt;}
.va{vertical-align:-9.697591pt;}
.v3{vertical-align:-7.822917pt;}
.vd{vertical-align:-5.230957pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.322667pt;}
.v5{vertical-align:7.822917pt;}
.v9{vertical-align:9.697591pt;}
.v7{vertical-align:10.666667pt;}
.v4{vertical-align:19.487956pt;}
.v1{vertical-align:23.466471pt;}
.v8{vertical-align:48.000000pt;}
.vc{vertical-align:52.030924pt;}
.ls58{letter-spacing:-3.242667pt;}
.ls92{letter-spacing:-2.958933pt;}
.ls8e{letter-spacing:-1.557333pt;}
.ls57{letter-spacing:-1.109333pt;}
.ls8f{letter-spacing:-1.090133pt;}
.ls91{letter-spacing:-1.012267pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls8c{letter-spacing:-0.778667pt;}
.ls8d{letter-spacing:-0.545067pt;}
.ls55{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.341440pt;}
.ls96{letter-spacing:-0.313600pt;}
.ls42{letter-spacing:-0.282157pt;}
.ls2e{letter-spacing:-0.280286pt;}
.ls97{letter-spacing:-0.280000pt;}
.ls56{letter-spacing:-0.238933pt;}
.ls41{letter-spacing:-0.230856pt;}
.ls2d{letter-spacing:-0.229325pt;}
.ls90{letter-spacing:-0.218027pt;}
.ls3a{letter-spacing:-0.203844pt;}
.ls3d{letter-spacing:-0.149027pt;}
.ls2b{letter-spacing:-0.148038pt;}
.lsc{letter-spacing:-0.133403pt;}
.ls11{letter-spacing:-0.120030pt;}
.ls9{letter-spacing:-0.119824pt;}
.ls45{letter-spacing:-0.102603pt;}
.ls2f{letter-spacing:-0.101922pt;}
.ls40{letter-spacing:-0.076952pt;}
.ls2c{letter-spacing:-0.076442pt;}
.ls46{letter-spacing:-0.051301pt;}
.ls3b{letter-spacing:-0.050961pt;}
.lsb{letter-spacing:-0.044468pt;}
.ls29{letter-spacing:-0.034144pt;}
.ls38{letter-spacing:-0.029811pt;}
.ls43{letter-spacing:-0.025651pt;}
.ls34{letter-spacing:-0.025481pt;}
.ls1{letter-spacing:0.000000pt;}
.ls79{letter-spacing:0.001641pt;}
.ls65{letter-spacing:0.002210pt;}
.ls77{letter-spacing:0.004336pt;}
.ls6c{letter-spacing:0.004821pt;}
.ls7e{letter-spacing:0.004897pt;}
.ls72{letter-spacing:0.004906pt;}
.ls2a{letter-spacing:0.017072pt;}
.ls3c{letter-spacing:0.017186pt;}
.ls48{letter-spacing:0.022159pt;}
.ls1c{letter-spacing:0.029811pt;}
.ls15{letter-spacing:0.033889pt;}
.ls21{letter-spacing:0.034115pt;}
.ls10{letter-spacing:0.040010pt;}
.ls4c{letter-spacing:0.042144pt;}
.ls6{letter-spacing:0.044468pt;}
.ls44{letter-spacing:0.068230pt;}
.ls1b{letter-spacing:0.076442pt;}
.ls24{letter-spacing:0.076952pt;}
.lsf{letter-spacing:0.080020pt;}
.ls1d{letter-spacing:0.089434pt;}
.ls17{letter-spacing:0.101922pt;}
.ls26{letter-spacing:0.102346pt;}
.ls14{letter-spacing:0.105741pt;}
.ls20{letter-spacing:0.106448pt;}
.ls8{letter-spacing:0.119824pt;}
.ls16{letter-spacing:0.152883pt;}
.ls25{letter-spacing:0.170576pt;}
.ls22{letter-spacing:0.179555pt;}
.ls33{letter-spacing:0.229325pt;}
.ls47{letter-spacing:0.333459pt;}
.ls36{letter-spacing:0.380669pt;}
.ls3f{letter-spacing:0.383213pt;}
.ls32{letter-spacing:0.440551pt;}
.ls59{letter-spacing:0.695147pt;}
.ls3{letter-spacing:0.731733pt;}
.ls63{letter-spacing:0.736960pt;}
.ls73{letter-spacing:2.613262pt;}
.ls6d{letter-spacing:2.613342pt;}
.ls78{letter-spacing:2.613343pt;}
.ls7f{letter-spacing:2.613348pt;}
.ls4b{letter-spacing:2.654478pt;}
.ls6b{letter-spacing:2.660706pt;}
.ls76{letter-spacing:2.660869pt;}
.ls7b{letter-spacing:2.661357pt;}
.ls69{letter-spacing:2.662276pt;}
.ls7d{letter-spacing:2.708721pt;}
.ls85{letter-spacing:2.708723pt;}
.ls68{letter-spacing:2.708802pt;}
.ls71{letter-spacing:2.709209pt;}
.ls81{letter-spacing:3.475808pt;}
.ls6f{letter-spacing:3.476136pt;}
.ls0{letter-spacing:4.853333pt;}
.lse{letter-spacing:5.108429pt;}
.ls4{letter-spacing:5.241252pt;}
.lsd{letter-spacing:5.250330pt;}
.ls87{letter-spacing:8.026564pt;}
.ls88{letter-spacing:8.066300pt;}
.ls49{letter-spacing:8.207631pt;}
.ls64{letter-spacing:8.731473pt;}
.ls84{letter-spacing:11.607107pt;}
.ls75{letter-spacing:11.659391pt;}
.ls66{letter-spacing:14.271010pt;}
.ls7a{letter-spacing:14.271014pt;}
.ls6a{letter-spacing:14.291741pt;}
.ls7c{letter-spacing:14.300529pt;}
.ls4a{letter-spacing:14.535026pt;}
.ls80{letter-spacing:15.681935pt;}
.ls82{letter-spacing:15.683967pt;}
.ls70{letter-spacing:15.684129pt;}
.ls6e{letter-spacing:15.729946pt;}
.ls31{letter-spacing:15.818903pt;}
.ls35{letter-spacing:16.347610pt;}
.ls3e{letter-spacing:16.456861pt;}
.ls37{letter-spacing:16.622538pt;}
.ls39{letter-spacing:16.897465pt;}
.ls83{letter-spacing:16.959767pt;}
.ls74{letter-spacing:16.959848pt;}
.ls67{letter-spacing:20.338580pt;}
.ls86{letter-spacing:20.390864pt;}
.ls13{letter-spacing:31.040799pt;}
.ls12{letter-spacing:31.324601pt;}
.ls54{letter-spacing:31.999974pt;}
.lsa{letter-spacing:32.403688pt;}
.ls50{letter-spacing:88.811172pt;}
.ls1e{letter-spacing:104.836905pt;}
.ls1a{letter-spacing:105.113190pt;}
.ls19{letter-spacing:105.248765pt;}
.ls23{letter-spacing:105.722233pt;}
.ls28{letter-spacing:105.763431pt;}
.ls27{letter-spacing:105.873901pt;}
.ls1f{letter-spacing:107.127744pt;}
.ls18{letter-spacing:108.679288pt;}
.ls89{letter-spacing:120.999095pt;}
.ls52{letter-spacing:139.246394pt;}
.ls8b{letter-spacing:157.051910pt;}
.ls93{letter-spacing:157.100983pt;}
.ls7{letter-spacing:161.269452pt;}
.ls5{letter-spacing:161.964253pt;}
.ls8a{letter-spacing:171.537904pt;}
.ls51{letter-spacing:177.942927pt;}
.ls95{letter-spacing:193.153798pt;}
.ls94{letter-spacing:207.639222pt;}
.ls5e{letter-spacing:223.754125pt;}
.ls62{letter-spacing:252.936010pt;}
.ls53{letter-spacing:263.659154pt;}
.ls4d{letter-spacing:309.181859pt;}
.ls5d{letter-spacing:309.765843pt;}
.ls4f{letter-spacing:348.691706pt;}
.ls60{letter-spacing:360.201065pt;}
.ls4e{letter-spacing:365.074112pt;}
.ls5f{letter-spacing:398.897598pt;}
.ls61{letter-spacing:484.613337pt;}
.ls5a{letter-spacing:530.136530pt;}
.ls5c{letter-spacing:569.645889pt;}
.ls5b{letter-spacing:586.028783pt;}
.ws8f{word-spacing:-40.407222pt;}
.wsa5{word-spacing:-39.341996pt;}
.wsa6{word-spacing:-39.058195pt;}
.ws0{word-spacing:-27.136000pt;}
.wsd5{word-spacing:-21.676973pt;}
.wsce{word-spacing:-21.402046pt;}
.wsdc{word-spacing:-21.268310pt;}
.wscc{word-spacing:-21.127118pt;}
.wsc2{word-spacing:-20.598412pt;}
.ws4{word-spacing:-18.858667pt;}
.ws90{word-spacing:-13.244786pt;}
.ws102{word-spacing:-13.014400pt;}
.ws60{word-spacing:-12.282667pt;}
.ws184{word-spacing:-11.969067pt;}
.ws2{word-spacing:-11.096533pt;}
.ws3{word-spacing:-11.040000pt;}
.ws187{word-spacing:-10.156800pt;}
.ws91{word-spacing:-10.094175pt;}
.ws10a{word-spacing:-10.087467pt;}
.wsb2{word-spacing:-9.344000pt;}
.ws14b{word-spacing:-9.075360pt;}
.ws5{word-spacing:-9.045333pt;}
.ws1{word-spacing:-8.993600pt;}
.wsa1{word-spacing:-8.922260pt;}
.ws8d{word-spacing:-8.906917pt;}
.ws186{word-spacing:-8.760000pt;}
.ws14e{word-spacing:-8.526400pt;}
.ws189{word-spacing:-8.480000pt;}
.ws185{word-spacing:-8.280000pt;}
.ws118{word-spacing:-8.234667pt;}
.ws13d{word-spacing:-8.066300pt;}
.ws148{word-spacing:-8.026564pt;}
.wse6{word-spacing:-7.812381pt;}
.wsc5{word-spacing:-7.658809pt;}
.ws155{word-spacing:-7.514133pt;}
.ws18{word-spacing:-7.242667pt;}
.wse9{word-spacing:-6.130509pt;}
.ws119{word-spacing:-6.101333pt;}
.wsc7{word-spacing:-5.987925pt;}
.wsbe{word-spacing:-5.911483pt;}
.wse4{word-spacing:-5.874003pt;}
.wsc0{word-spacing:-5.860522pt;}
.wsc9{word-spacing:-5.835042pt;}
.wse3{word-spacing:-5.771400pt;}
.wsde{word-spacing:-5.720099pt;}
.wse7{word-spacing:-5.694448pt;}
.wsbc{word-spacing:-5.682159pt;}
.wsc6{word-spacing:-5.656678pt;}
.ws156{word-spacing:-5.567467pt;}
.wse0{word-spacing:-5.566195pt;}
.wsd6{word-spacing:-5.554756pt;}
.ws149{word-spacing:-5.540267pt;}
.wscf{word-spacing:-5.529276pt;}
.wsdf{word-spacing:-5.514893pt;}
.wsbd{word-spacing:-5.478314pt;}
.wsdd{word-spacing:-5.194662pt;}
.wscd{word-spacing:-5.160177pt;}
.wsdb{word-spacing:-4.917898pt;}
.wscb{word-spacing:-4.885250pt;}
.wsbb{word-spacing:-4.631470pt;}
.ws10{word-spacing:-4.090667pt;}
.wsc1{word-spacing:-3.516832pt;}
.ws162{word-spacing:-3.248000pt;}
.ws18a{word-spacing:-2.000000pt;}
.ws122{word-spacing:-1.792000pt;}
.wsab{word-spacing:-0.993067pt;}
.ws9b{word-spacing:-0.940800pt;}
.ws43{word-spacing:-0.888533pt;}
.ws1f{word-spacing:-0.836267pt;}
.ws3a{word-spacing:-0.731733pt;}
.wsb4{word-spacing:-0.627200pt;}
.ws95{word-spacing:-0.574933pt;}
.ws135{word-spacing:-0.522667pt;}
.ws9f{word-spacing:-0.470400pt;}
.wsf6{word-spacing:-0.440551pt;}
.ws8c{word-spacing:-0.418133pt;}
.ws145{word-spacing:-0.365867pt;}
.ws144{word-spacing:-0.313600pt;}
.ws16{word-spacing:-0.298667pt;}
.ws11{word-spacing:-0.261333pt;}
.ws17c{word-spacing:-0.209067pt;}
.ws123{word-spacing:-0.170667pt;}
.wsfe{word-spacing:-0.170576pt;}
.ws181{word-spacing:-0.156800pt;}
.wsa0{word-spacing:-0.119824pt;}
.wsfb{word-spacing:-0.106448pt;}
.wsf5{word-spacing:-0.105741pt;}
.ws71{word-spacing:-0.104533pt;}
.wsf9{word-spacing:-0.089434pt;}
.ws101{word-spacing:-0.076952pt;}
.wsf4{word-spacing:-0.076442pt;}
.wsff{word-spacing:-0.068230pt;}
.wsf{word-spacing:-0.053333pt;}
.ws104{word-spacing:-0.052284pt;}
.ws23{word-spacing:-0.052267pt;}
.wsb0{word-spacing:-0.040010pt;}
.ws19{word-spacing:-0.040000pt;}
.ws138{word-spacing:-0.039735pt;}
.wsfc{word-spacing:-0.034115pt;}
.wsf1{word-spacing:-0.033889pt;}
.wsf7{word-spacing:-0.029811pt;}
.wsfa{word-spacing:-0.017186pt;}
.wsf0{word-spacing:-0.017072pt;}
.ws6{word-spacing:0.000000pt;}
.wsf8{word-spacing:0.029811pt;}
.wsef{word-spacing:0.034144pt;}
.ws176{word-spacing:0.052267pt;}
.ws100{word-spacing:0.076952pt;}
.wsf3{word-spacing:0.101922pt;}
.ws83{word-spacing:0.104533pt;}
.ws14c{word-spacing:0.190773pt;}
.ws11d{word-spacing:0.209067pt;}
.wsf2{word-spacing:0.229325pt;}
.wsfd{word-spacing:0.230856pt;}
.ws62{word-spacing:0.261333pt;}
.ws81{word-spacing:0.313600pt;}
.ws6f{word-spacing:0.365867pt;}
.ws34{word-spacing:0.418133pt;}
.ws97{word-spacing:0.470400pt;}
.ws140{word-spacing:0.522667pt;}
.ws164{word-spacing:0.545067pt;}
.ws10b{word-spacing:0.574933pt;}
.ws9c{word-spacing:0.627200pt;}
.ws6b{word-spacing:0.679467pt;}
.ws107{word-spacing:0.731733pt;}
.ws14{word-spacing:0.746667pt;}
.ws163{word-spacing:0.778667pt;}
.ws1c{word-spacing:0.784000pt;}
.ws15f{word-spacing:0.836267pt;}
.ws13c{word-spacing:0.851567pt;}
.ws15e{word-spacing:0.888533pt;}
.ws17{word-spacing:0.933333pt;}
.ws46{word-spacing:0.940800pt;}
.ws15{word-spacing:0.970667pt;}
.ws80{word-spacing:0.993067pt;}
.ws5e{word-spacing:1.045333pt;}
.ws166{word-spacing:1.090133pt;}
.ws28{word-spacing:1.097600pt;}
.ws33{word-spacing:1.202133pt;}
.ws35{word-spacing:1.254400pt;}
.ws17a{word-spacing:1.306667pt;}
.ws84{word-spacing:1.358933pt;}
.ws98{word-spacing:1.411200pt;}
.ws3d{word-spacing:1.463467pt;}
.wsac{word-spacing:1.515733pt;}
.ws165{word-spacing:1.557333pt;}
.ws1b{word-spacing:1.568000pt;}
.ws27{word-spacing:1.672533pt;}
.ws2f{word-spacing:1.724800pt;}
.ws47{word-spacing:1.777067pt;}
.ws13{word-spacing:1.792000pt;}
.ws26{word-spacing:1.829333pt;}
.ws5c{word-spacing:1.881600pt;}
.ws147{word-spacing:1.933867pt;}
.ws25{word-spacing:1.986133pt;}
.ws6a{word-spacing:2.038400pt;}
.wsa{word-spacing:2.090667pt;}
.wsae{word-spacing:2.142933pt;}
.ws49{word-spacing:2.195200pt;}
.wsb6{word-spacing:2.247467pt;}
.ws2e{word-spacing:2.299733pt;}
.ws99{word-spacing:2.352000pt;}
.ws63{word-spacing:2.404267pt;}
.ws93{word-spacing:2.456533pt;}
.ws82{word-spacing:2.508800pt;}
.wsed{word-spacing:2.561067pt;}
.ws76{word-spacing:2.613333pt;}
.ws31{word-spacing:2.665600pt;}
.wsaa{word-spacing:2.717867pt;}
.ws10c{word-spacing:2.770133pt;}
.ws96{word-spacing:2.822400pt;}
.wsee{word-spacing:2.874667pt;}
.ws2b{word-spacing:2.926933pt;}
.ws1d{word-spacing:2.979200pt;}
.ws7f{word-spacing:3.031467pt;}
.ws8b{word-spacing:3.083733pt;}
.ws5d{word-spacing:3.136000pt;}
.ws108{word-spacing:3.188267pt;}
.ws24{word-spacing:3.240533pt;}
.ws36{word-spacing:3.292800pt;}
.ws175{word-spacing:3.312000pt;}
.ws1a{word-spacing:3.345067pt;}
.ws12{word-spacing:3.360000pt;}
.wsb3{word-spacing:3.397333pt;}
.ws4a{word-spacing:3.449600pt;}
.ws2a{word-spacing:3.501867pt;}
.ws10f{word-spacing:3.606400pt;}
.ws13e{word-spacing:3.641554pt;}
.ws105{word-spacing:3.658667pt;}
.ws179{word-spacing:3.710933pt;}
.ws139{word-spacing:3.760679pt;}
.ws65{word-spacing:3.815467pt;}
.ws3b{word-spacing:3.867733pt;}
.wsa9{word-spacing:3.920000pt;}
.wseb{word-spacing:3.972267pt;}
.ws52{word-spacing:4.024533pt;}
.ws55{word-spacing:4.076800pt;}
.ws4d{word-spacing:4.129067pt;}
.ws85{word-spacing:4.181333pt;}
.ws44{word-spacing:4.233600pt;}
.ws4e{word-spacing:4.285867pt;}
.wse{word-spacing:4.338133pt;}
.ws92{word-spacing:4.390400pt;}
.ws67{word-spacing:4.442667pt;}
.wsb{word-spacing:4.494933pt;}
.ws183{word-spacing:4.547200pt;}
.ws78{word-spacing:4.599467pt;}
.ws3e{word-spacing:4.651733pt;}
.ws7d{word-spacing:4.704000pt;}
.ws143{word-spacing:4.756267pt;}
.ws48{word-spacing:4.808533pt;}
.ws42{word-spacing:4.860800pt;}
.ws178{word-spacing:4.913067pt;}
.wsd{word-spacing:4.965333pt;}
.ws5b{word-spacing:5.017600pt;}
.ws7a{word-spacing:5.069867pt;}
.ws182{word-spacing:5.122133pt;}
.ws7e{word-spacing:5.174400pt;}
.ws15b{word-spacing:5.226667pt;}
.ws79{word-spacing:5.278933pt;}
.ws3f{word-spacing:5.331200pt;}
.wsc{word-spacing:5.383467pt;}
.ws73{word-spacing:5.435733pt;}
.ws17b{word-spacing:5.488000pt;}
.ws45{word-spacing:5.540267pt;}
.ws22{word-spacing:5.592533pt;}
.wsad{word-spacing:5.644800pt;}
.wsb5{word-spacing:5.697067pt;}
.ws9{word-spacing:5.801600pt;}
.ws5f{word-spacing:5.853867pt;}
.ws75{word-spacing:5.906133pt;}
.ws6d{word-spacing:5.958400pt;}
.ws29{word-spacing:6.010667pt;}
.ws38{word-spacing:6.062933pt;}
.ws68{word-spacing:6.115200pt;}
.ws4c{word-spacing:6.167467pt;}
.ws13f{word-spacing:6.219733pt;}
.ws7c{word-spacing:6.428800pt;}
.ws6c{word-spacing:6.481067pt;}
.ws87{word-spacing:6.533333pt;}
.ws13b{word-spacing:6.556352pt;}
.ws2d{word-spacing:6.585600pt;}
.ws13a{word-spacing:6.596087pt;}
.ws6e{word-spacing:6.637867pt;}
.ws32{word-spacing:6.690133pt;}
.ws4f{word-spacing:6.742400pt;}
.ws41{word-spacing:6.794667pt;}
.ws5a{word-spacing:6.846933pt;}
.ws137{word-spacing:6.899200pt;}
.ws17e{word-spacing:6.951467pt;}
.ws8a{word-spacing:7.003733pt;}
.wsa8{word-spacing:7.056000pt;}
.ws30{word-spacing:7.108267pt;}
.ws64{word-spacing:7.212800pt;}
.ws69{word-spacing:7.265067pt;}
.ws74{word-spacing:7.317333pt;}
.ws70{word-spacing:7.369600pt;}
.ws37{word-spacing:7.578667pt;}
.ws21{word-spacing:7.630933pt;}
.ws15d{word-spacing:7.683200pt;}
.ws56{word-spacing:7.735467pt;}
.ws20{word-spacing:7.787733pt;}
.ws111{word-spacing:7.892267pt;}
.ws9a{word-spacing:7.944533pt;}
.ws1e{word-spacing:8.049067pt;}
.ws3c{word-spacing:8.101333pt;}
.ws180{word-spacing:8.153600pt;}
.ws39{word-spacing:8.205867pt;}
.wsea{word-spacing:8.258133pt;}
.ws188{word-spacing:8.362667pt;}
.ws10e{word-spacing:8.414933pt;}
.wsb7{word-spacing:8.467200pt;}
.ws106{word-spacing:8.519467pt;}
.ws177{word-spacing:8.624000pt;}
.ws9d{word-spacing:8.676267pt;}
.ws89{word-spacing:8.885333pt;}
.ws146{word-spacing:8.937600pt;}
.ws7b{word-spacing:8.989867pt;}
.wsaf{word-spacing:9.094400pt;}
.ws54{word-spacing:9.146667pt;}
.ws86{word-spacing:9.251200pt;}
.ws77{word-spacing:9.408000pt;}
.ws59{word-spacing:9.878400pt;}
.ws160{word-spacing:9.982933pt;}
.ws53{word-spacing:10.035200pt;}
.wsec{word-spacing:10.087467pt;}
.ws2c{word-spacing:10.192000pt;}
.ws136{word-spacing:10.244267pt;}
.ws17d{word-spacing:10.296533pt;}
.ws110{word-spacing:10.557867pt;}
.ws10d{word-spacing:10.766933pt;}
.wsc4{word-spacing:10.806764pt;}
.wsc3{word-spacing:10.827913pt;}
.ws142{word-spacing:10.871467pt;}
.ws94{word-spacing:10.976000pt;}
.wsb9{word-spacing:11.081692pt;}
.wsca{word-spacing:11.335471pt;}
.wsd9{word-spacing:11.411226pt;}
.wsb8{word-spacing:11.610398pt;}
.wsd4{word-spacing:11.631547pt;}
.ws57{word-spacing:11.760000pt;}
.ws15c{word-spacing:11.812267pt;}
.wsba{word-spacing:11.864178pt;}
.ws174{word-spacing:11.864533pt;}
.wsd2{word-spacing:11.885326pt;}
.wsda{word-spacing:11.943466pt;}
.ws66{word-spacing:12.073600pt;}
.wse5{word-spacing:12.220230pt;}
.ws161{word-spacing:12.387200pt;}
.wsd3{word-spacing:12.414033pt;}
.wsa2{word-spacing:12.487270pt;}
.ws72{word-spacing:12.491733pt;}
.ws51{word-spacing:12.596267pt;}
.wsa3{word-spacing:12.771068pt;}
.ws50{word-spacing:12.857600pt;}
.ws141{word-spacing:13.118933pt;}
.wsa4{word-spacing:13.196774pt;}
.ws17f{word-spacing:13.223467pt;}
.ws40{word-spacing:13.275733pt;}
.ws9e{word-spacing:13.380267pt;}
.ws8{word-spacing:13.537067pt;}
.ws8e{word-spacing:13.598925pt;}
.ws58{word-spacing:13.798400pt;}
.ws4b{word-spacing:15.000533pt;}
.ws88{word-spacing:15.209600pt;}
.ws7{word-spacing:16.370133pt;}
.ws109{word-spacing:16.777600pt;}
.ws61{word-spacing:18.502400pt;}
.ws103{word-spacing:18.538250pt;}
.ws159{word-spacing:40.334933pt;}
.ws16e{word-spacing:40.815395pt;}
.ws152{word-spacing:47.653176pt;}
.ws11c{word-spacing:58.227706pt;}
.ws16b{word-spacing:83.754986pt;}
.ws14f{word-spacing:86.742209pt;}
.ws15a{word-spacing:89.196267pt;}
.ws14a{word-spacing:91.610133pt;}
.ws150{word-spacing:91.842467pt;}
.wsd0{word-spacing:99.144355pt;}
.wsc8{word-spacing:99.580045pt;}
.wse1{word-spacing:99.588520pt;}
.wsd1{word-spacing:99.694594pt;}
.wse2{word-spacing:100.060688pt;}
.wse8{word-spacing:100.840942pt;}
.wsd8{word-spacing:101.192789pt;}
.wsd7{word-spacing:101.786378pt;}
.wsbf{word-spacing:102.984052pt;}
.ws158{word-spacing:104.886400pt;}
.ws11f{word-spacing:108.662927pt;}
.ws153{word-spacing:114.853333pt;}
.ws168{word-spacing:122.843443pt;}
.ws169{word-spacing:127.943786pt;}
.ws154{word-spacing:130.076267pt;}
.wsa7{word-spacing:137.470162pt;}
.ws14d{word-spacing:139.887467pt;}
.ws171{word-spacing:140.977600pt;}
.ws11e{word-spacing:147.359460pt;}
.ws16d{word-spacing:149.348267pt;}
.ws172{word-spacing:155.382933pt;}
.ws157{word-spacing:159.079283pt;}
.ws151{word-spacing:160.522133pt;}
.ws16f{word-spacing:164.571200pt;}
.ws167{word-spacing:174.382400pt;}
.ws16c{word-spacing:179.794133pt;}
.ws117{word-spacing:181.745528pt;}
.ws12b{word-spacing:183.381333pt;}
.ws12f{word-spacing:193.170658pt;}
.ws16a{word-spacing:195.017067pt;}
.ws170{word-spacing:195.181171pt;}
.ws173{word-spacing:201.791467pt;}
.ws127{word-spacing:211.626667pt;}
.ws133{word-spacing:222.352543pt;}
.ws116{word-spacing:228.802629pt;}
.ws120{word-spacing:233.075687pt;}
.ws114{word-spacing:271.639462pt;}
.ws129{word-spacing:274.090667pt;}
.ws115{word-spacing:277.228736pt;}
.ws12e{word-spacing:279.182377pt;}
.ws125{word-spacing:281.514667pt;}
.ws121{word-spacing:300.078933pt;}
.wsb1{word-spacing:305.663991pt;}
.ws112{word-spacing:320.554667pt;}
.ws131{word-spacing:329.617598pt;}
.ws11a{word-spacing:350.913062pt;}
.ws11b{word-spacing:363.776000pt;}
.ws130{word-spacing:368.314131pt;}
.ws113{word-spacing:388.886410pt;}
.ws12c{word-spacing:402.700280pt;}
.ws134{word-spacing:441.732267pt;}
.ws12a{word-spacing:449.756812pt;}
.ws132{word-spacing:454.029870pt;}
.ws126{word-spacing:492.594133pt;}
.ws128{word-spacing:498.183488pt;}
.ws12d{word-spacing:602.630400pt;}
.ws124{word-spacing:609.841081pt;}
._11{margin-left:-27.481161pt;}
._14{margin-left:-26.393548pt;}
._1c{margin-left:-16.887623pt;}
._1a{margin-left:-15.184455pt;}
._b{margin-left:-10.557856pt;}
._2e{margin-left:-9.344000pt;}
._6c{margin-left:-6.648853pt;}
._a{margin-left:-5.383467pt;}
._9{margin-left:-4.134293pt;}
._6{margin-left:-2.722773pt;}
._2{margin-left:-1.804800pt;}
._0{margin-left:-0.896000pt;}
._5{width:0.932800pt;}
._8{width:1.926187pt;}
._1{width:2.816000pt;}
._3{width:3.840000pt;}
._d{width:4.839040pt;}
._10{width:7.124267pt;}
._f{width:8.266774pt;}
._3c{width:9.343992pt;}
._e{width:10.369706pt;}
._13{width:12.940800pt;}
._c{width:13.902933pt;}
._7{width:15.831456pt;}
._1b{width:16.852892pt;}
._1d{width:26.865067pt;}
._4{width:33.634673pt;}
._22{width:35.626659pt;}
._27{width:40.917326pt;}
._30{width:49.871147pt;}
._21{width:61.738659pt;}
._18{width:63.762658pt;}
._20{width:66.402126pt;}
._24{width:77.482659pt;}
._61{width:81.487459pt;}
._44{width:84.485333pt;}
._28{width:89.557333pt;}
._2a{width:92.159992pt;}
._68{width:97.451318pt;}
._60{width:100.370133pt;}
._5a{width:104.107733pt;}
._42{width:107.519564pt;}
._19{width:108.868157pt;}
._2b{width:111.616000pt;}
._43{width:113.146125pt;}
._5f{width:114.074667pt;}
._52{width:115.748808pt;}
._5e{width:118.099784pt;}
._15{width:119.935991pt;}
._3d{width:123.613325pt;}
._69{width:125.693653pt;}
._66{width:126.874057pt;}
._67{width:128.036856pt;}
._4c{width:130.971742pt;}
._6b{width:133.385600pt;}
._54{width:134.826125pt;}
._65{width:136.272264pt;}
._55{width:137.713076pt;}
._50{width:138.914224pt;}
._64{width:139.886290pt;}
._53{width:141.522667pt;}
._51{width:142.418125pt;}
._5d{width:145.415992pt;}
._47{width:146.632545pt;}
._40{width:149.737609pt;}
._3f{width:151.684267pt;}
._4a{width:154.792243pt;}
._4d{width:156.745600pt;}
._4b{width:157.641058pt;}
._2c{width:159.609813pt;}
._12{width:161.468816pt;}
._48{width:162.507725pt;}
._5c{width:164.298667pt;}
._49{width:165.194133pt;}
._3e{width:166.089592pt;}
._59{width:168.611195pt;}
._16{width:171.568525pt;}
._25{width:173.245333pt;}
._2d{width:175.396480pt;}
._41{width:176.651192pt;}
._5b{width:178.003200pt;}
._63{width:182.572287pt;}
._62{width:184.535634pt;}
._2f{width:189.019200pt;}
._45{width:192.121707pt;}
._4f{width:195.640000pt;}
._46{width:196.535458pt;}
._4e{width:198.194023pt;}
._56{width:199.963191pt;}
._58{width:202.403750pt;}
._57{width:203.309858pt;}
._6a{width:206.114667pt;}
._37{width:220.246403pt;}
._33{width:224.469333pt;}
._26{width:228.906667pt;}
._3a{width:240.902413pt;}
._1f{width:242.517333pt;}
._32{width:249.941333pt;}
._39{width:263.249586pt;}
._38{width:270.037333pt;}
._34{width:272.640000pt;}
._3b{width:283.434667pt;}
._17{width:294.954658pt;}
._1e{width:303.756781pt;}
._35{width:332.261851pt;}
._36{width:333.385578pt;}
._29{width:354.517333pt;}
._23{width:371.328000pt;}
._31{width:524.727467pt;}
.fs11{font-size:17.072000pt;}
.fs16{font-size:17.186133pt;}
.fs12{font-size:21.148267pt;}
.fs17{font-size:21.289600pt;}
.fs14{font-size:25.480532pt;}
.fs19{font-size:25.650667pt;}
.fs1d{font-size:26.133333pt;}
.fs1f{font-size:27.253333pt;}
.fs15{font-size:29.811200pt;}
.fs1c{font-size:29.866667pt;}
.fs13{font-size:33.888533pt;}
.fs18{font-size:34.115199pt;}
.fsb{font-size:35.413867pt;}
.fse{font-size:35.475199pt;}
.fs7{font-size:37.333333pt;}
.fs1e{font-size:38.933333pt;}
.fs1b{font-size:39.735466pt;}
.fsa{font-size:39.941332pt;}
.fs9{font-size:40.000000pt;}
.fsd{font-size:40.010133pt;}
.fs2{font-size:41.066666pt;}
.fs10{font-size:42.521067pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:44.467733pt;}
.fsf{font-size:48.000000pt;}
.fs20{font-size:49.066666pt;}
.fs4{font-size:52.266667pt;}
.fs1a{font-size:52.284267pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:54.933333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:69.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:0.155522pt;}
.y230{bottom:2.381877pt;}
.y225{bottom:2.381999pt;}
.y186{bottom:2.400452pt;}
.y189{bottom:2.400574pt;}
.y168{bottom:2.420509pt;}
.y16d{bottom:2.423401pt;}
.y184{bottom:2.450121pt;}
.y22f{bottom:2.849609pt;}
.ye1{bottom:3.125336pt;}
.yd4{bottom:3.472402pt;}
.y18b{bottom:4.005330pt;}
.y161{bottom:4.172811pt;}
.y15d{bottom:4.305990pt;}
.y181{bottom:5.960653pt;}
.y167{bottom:6.439331pt;}
.y163{bottom:8.996663pt;}
.y183{bottom:11.360799pt;}
.y188{bottom:11.360921pt;}
.y16c{bottom:11.383748pt;}
.y22c{bottom:43.577718pt;}
.y222{bottom:43.577881pt;}
.y29{bottom:67.374933pt;}
.y21d{bottom:71.345947pt;}
.y228{bottom:71.345988pt;}
.y28{bottom:78.042933pt;}
.y21f{bottom:85.853841pt;}
.y17f{bottom:88.386667pt;}
.y27{bottom:88.710933pt;}
.y1e7{bottom:89.232269pt;}
.ybc{bottom:89.477336pt;}
.y5f{bottom:89.740802pt;}
.y241{bottom:92.364797pt;}
.yd6{bottom:95.929738pt;}
.y2e0{bottom:95.941333pt;}
.ye4{bottom:96.310537pt;}
.y86{bottom:96.639200pt;}
.y9a{bottom:96.640798pt;}
.y2a5{bottom:96.837604pt;}
.y101{bottom:97.126663pt;}
.y26{bottom:99.378933pt;}
.y349{bottom:100.877848pt;}
.y21a{bottom:105.229325pt;}
.y26f{bottom:105.902936pt;}
.y17e{bottom:107.254933pt;}
.y1fe{bottom:108.152131pt;}
.ybb{bottom:108.323210pt;}
.y5e{bottom:108.609069pt;}
.y100{bottom:109.126663pt;}
.yd5{bottom:109.263072pt;}
.ye3{bottom:109.643870pt;}
.y303{bottom:109.840800pt;}
.y25{bottom:110.046933pt;}
.y240{bottom:111.215466pt;}
.y348{bottom:112.877848pt;}
.y2df{bottom:114.809600pt;}
.y1d7{bottom:115.133331pt;}
.y99{bottom:115.497858pt;}
.y85{bottom:115.507467pt;}
.y2a4{bottom:115.705871pt;}
.y24{bottom:120.714933pt;}
.y26e{bottom:121.013603pt;}
.y302{bottom:121.840800pt;}
.y113{bottom:122.325070pt;}
.yd1{bottom:122.730662pt;}
.ye2{bottom:122.977203pt;}
.y219{bottom:124.097592pt;}
.y1fd{bottom:124.360129pt;}
.y347{bottom:124.877848pt;}
.yff{bottom:125.329329pt;}
.y17d{bottom:126.123200pt;}
.y1d6{bottom:127.133331pt;}
.yba{bottom:127.191477pt;}
.y5d{bottom:127.477336pt;}
.y23f{bottom:130.083732pt;}
.y23{bottom:131.382933pt;}
.y2de{bottom:133.677867pt;}
.y301{bottom:133.840800pt;}
.y98{bottom:134.366125pt;}
.y84{bottom:134.372537pt;}
.y2a3{bottom:134.574137pt;}
.y26d{bottom:136.124269pt;}
.yde{bottom:136.444000pt;}
.y346{bottom:136.877848pt;}
.yfe{bottom:137.329329pt;}
.y1d5{bottom:139.130667pt;}
.y1d8{bottom:139.133331pt;}
.y1fc{bottom:140.493602pt;}
.y112{bottom:141.193336pt;}
.y218{bottom:142.965858pt;}
.y17c{bottom:144.991467pt;}
.y300{bottom:145.840800pt;}
.yb9{bottom:146.059744pt;}
.y5c{bottom:146.337602pt;}
.y345{bottom:148.877848pt;}
.y23e{bottom:148.951999pt;}
.yd3{bottom:148.987071pt;}
.yfd{bottom:149.329329pt;}
.y26c{bottom:151.234936pt;}
.y2dd{bottom:152.544535pt;}
.y34b{bottom:152.877869pt;}
.y97{bottom:153.234392pt;}
.y83{bottom:153.240804pt;}
.y2a2{bottom:153.420012pt;}
.y1d2{bottom:155.328008pt;}
.y1d4{bottom:155.333333pt;}
.y1fb{bottom:156.626801pt;}
.y2ff{bottom:157.840800pt;}
.y111{bottom:160.061603pt;}
.yc9{bottom:160.236399pt;}
.y344{bottom:160.877848pt;}
.ye0{bottom:161.400004pt;}
.y217{bottom:161.834125pt;}
.y26b{bottom:162.565603pt;}
.y17b{bottom:163.859733pt;}
.y34a{bottom:164.877869pt;}
.yb8{bottom:164.928010pt;}
.y5b{bottom:165.205869pt;}
.yfc{bottom:165.457329pt;}
.y1d1{bottom:167.328008pt;}
.y1d3{bottom:167.333333pt;}
.y23d{bottom:167.820266pt;}
.y2fe{bottom:169.840800pt;}
.y2dc{bottom:171.408140pt;}
.y2b3{bottom:172.086679pt;}
.y96{bottom:172.102658pt;}
.y82{bottom:172.105875pt;}
.y2a1{bottom:172.288279pt;}
.yd7{bottom:172.669332pt;}
.y1fa{bottom:172.760265pt;}
.y343{bottom:172.877848pt;}
.yfb{bottom:177.457329pt;}
.yf{bottom:178.643593pt;}
.y110{bottom:178.929870pt;}
.y216{bottom:180.702392pt;}
.y2fd{bottom:181.840800pt;}
.yca{bottom:182.313971pt;}
.y17a{bottom:182.728000pt;}
.y1d0{bottom:183.466675pt;}
.y28a{bottom:183.625210pt;}
.yb7{bottom:183.796277pt;}
.y5a{bottom:184.074136pt;}
.y342{bottom:184.877848pt;}
.y23c{bottom:186.688532pt;}
.y1f9{bottom:188.893464pt;}
.y2db{bottom:190.276407pt;}
.y2b2{bottom:190.954946pt;}
.y95{bottom:190.970925pt;}
.y81{bottom:190.974141pt;}
.y2a0{bottom:191.156546pt;}
.yfa{bottom:193.595996pt;}
.y2fc{bottom:193.840800pt;}
.y1cf{bottom:195.461329pt;}
.y341{bottom:196.877848pt;}
.ye{bottom:197.511859pt;}
.y10f{bottom:197.798136pt;}
.yd8{bottom:198.185794pt;}
.y289{bottom:199.120677pt;}
.y215{bottom:199.570658pt;}
.y179{bottom:201.596267pt;}
.yb6{bottom:202.664544pt;}
.y59{bottom:202.942402pt;}
.ycb{bottom:204.461440pt;}
.y1f8{bottom:205.026805pt;}
.y23b{bottom:205.556799pt;}
.yf9{bottom:205.595996pt;}
.y2fb{bottom:205.840800pt;}
.y340{bottom:208.877848pt;}
.y2da{bottom:209.144674pt;}
.y2b1{bottom:209.823212pt;}
.y80{bottom:209.837604pt;}
.y94{bottom:209.839192pt;}
.y29f{bottom:210.024812pt;}
.y1ce{bottom:211.599996pt;}
.yd2{bottom:214.537201pt;}
.y288{bottom:214.557743pt;}
.ydf{bottom:214.905202pt;}
.yd{bottom:216.380126pt;}
.y10e{bottom:216.655207pt;}
.yf8{bottom:217.595996pt;}
.y2fa{bottom:217.840800pt;}
.y214{bottom:218.437195pt;}
.y178{bottom:220.464533pt;}
.y33f{bottom:220.877848pt;}
.y1f7{bottom:221.160269pt;}
.yb5{bottom:221.532810pt;}
.y58{bottom:221.810669pt;}
.y1cd{bottom:223.594671pt;}
.yd9{bottom:223.702257pt;}
.y23a{bottom:224.425066pt;}
.ycc{bottom:226.608909pt;}
.y2d9{bottom:228.009602pt;}
.y2b0{bottom:228.691479pt;}
.y7f{bottom:228.705871pt;}
.y93{bottom:228.707458pt;}
.y29e{bottom:228.893079pt;}
.y2f9{bottom:229.840800pt;}
.y287{bottom:229.994810pt;}
.y33e{bottom:232.877848pt;}
.yf7{bottom:233.734663pt;}
.yc{bottom:235.248393pt;}
.y10d{bottom:235.523474pt;}
.y1f6{bottom:237.293468pt;}
.y213{bottom:237.303996pt;}
.y177{bottom:239.332800pt;}
.y1cb{bottom:239.733337pt;}
.yb4{bottom:240.401077pt;}
.y57{bottom:240.677327pt;}
.y2f8{bottom:241.840800pt;}
.y239{bottom:243.293332pt;}
.y33d{bottom:244.877848pt;}
.y286{bottom:245.431877pt;}
.yf6{bottom:245.734663pt;}
.y2d8{bottom:246.877869pt;}
.y2af{bottom:247.559746pt;}
.y92{bottom:247.572529pt;}
.y7e{bottom:247.574137pt;}
.y29d{bottom:247.761346pt;}
.ycd{bottom:248.756377pt;}
.yda{bottom:249.218719pt;}
.y1ca{bottom:251.733337pt;}
.y1f5{bottom:253.426932pt;}
.y2f7{bottom:253.840800pt;}
.yb{bottom:254.115072pt;}
.y10c{bottom:254.391740pt;}
.y33c{bottom:256.877848pt;}
.y176{bottom:258.201067pt;}
.yb3{bottom:259.269344pt;}
.y285{bottom:260.868943pt;}
.yf5{bottom:261.862663pt;}
.y238{bottom:262.161599pt;}
.y1c9{bottom:263.727992pt;}
.y1cc{bottom:263.733337pt;}
.y2d7{bottom:265.733453pt;}
.y2f6{bottom:265.840800pt;}
.y2ae{bottom:266.428012pt;}
.y7d{bottom:266.439208pt;}
.y91{bottom:266.440796pt;}
.y29c{bottom:266.629612pt;}
.y33b{bottom:268.877848pt;}
.y1f4{bottom:269.560131pt;}
.yce{bottom:270.903846pt;}
.ya{bottom:272.976926pt;}
.y10b{bottom:273.260007pt;}
.yf4{bottom:273.862663pt;}
.ydb{bottom:274.735182pt;}
.y284{bottom:276.298535pt;}
.y175{bottom:277.069333pt;}
.y2f5{bottom:277.840800pt;}
.yb2{bottom:278.137610pt;}
.y1c8{bottom:279.866659pt;}
.y33a{bottom:280.877848pt;}
.y237{bottom:281.029866pt;}
.y212{bottom:282.200663pt;}
.y2d6{bottom:284.601720pt;}
.y2ad{bottom:285.296279pt;}
.y56{bottom:285.304258pt;}
.y7c{bottom:285.307475pt;}
.y29b{bottom:285.497879pt;}
.y1f3{bottom:285.693472pt;}
.yf3{bottom:285.862663pt;}
.y283{bottom:291.735602pt;}
.y9{bottom:291.845193pt;}
.y1c7{bottom:291.861333pt;}
.y10a{bottom:292.128274pt;}
.y339{bottom:292.877848pt;}
.ycf{bottom:292.981418pt;}
.y174{bottom:295.937600pt;}
.yb1{bottom:297.005877pt;}
.y236{bottom:299.898132pt;}
.ydc{bottom:300.321662pt;}
.y211{bottom:301.062518pt;}
.y1f2{bottom:301.826936pt;}
.y2d5{bottom:303.469987pt;}
.y7b{bottom:304.164546pt;}
.y55{bottom:304.172525pt;}
.y29a{bottom:304.366146pt;}
.y338{bottom:304.877848pt;}
.y282{bottom:307.165194pt;}
.y1c5{bottom:308.000000pt;}
.yf2{bottom:309.766663pt;}
.y8{bottom:310.713459pt;}
.y109{bottom:310.996540pt;}
.y173{bottom:314.805867pt;}
.yd0{bottom:315.128887pt;}
.yb0{bottom:315.874144pt;}
.y337{bottom:316.877848pt;}
.y1f1{bottom:317.960257pt;}
.y235{bottom:318.763203pt;}
.y210{bottom:319.930784pt;}
.y1c4{bottom:320.000000pt;}
.y2d4{bottom:322.338253pt;}
.y281{bottom:322.602260pt;}
.y7a{bottom:323.032812pt;}
.y54{bottom:323.040792pt;}
.y299{bottom:323.234412pt;}
.ydd{bottom:325.838125pt;}
.y336{bottom:328.877848pt;}
.y7{bottom:329.581726pt;}
.y108{bottom:329.864807pt;}
.yf1{bottom:331.377991pt;}
.y1c3{bottom:331.994675pt;}
.y1c6{bottom:332.000000pt;}
.y172{bottom:333.674133pt;}
.y1f0{bottom:334.093476pt;}
.yaf{bottom:334.742410pt;}
.y234{bottom:337.631470pt;}
.y280{bottom:338.031873pt;}
.y20f{bottom:338.799051pt;}
.y335{bottom:340.877848pt;}
.y2d3{bottom:341.206520pt;}
.y53{bottom:341.889863pt;}
.y79{bottom:341.901079pt;}
.y2f4{bottom:342.040812pt;}
.y298{bottom:342.102679pt;}
.y1c2{bottom:348.133341pt;}
.y6{bottom:348.448405pt;}
.y107{bottom:348.728270pt;}
.y1ef{bottom:350.226818pt;}
.y171{bottom:352.535988pt;}
.y334{bottom:352.877848pt;}
.y27f{bottom:353.468939pt;}
.yae{bottom:353.610677pt;}
.y233{bottom:356.496520pt;}
.y20e{bottom:357.667318pt;}
.y2d2{bottom:360.074787pt;}
.y1c1{bottom:360.128016pt;}
.y52{bottom:360.758129pt;}
.y78{bottom:360.769346pt;}
.y297{bottom:360.970946pt;}
.y333{bottom:364.877848pt;}
.y2f3{bottom:366.040812pt;}
.y1ee{bottom:366.360118pt;}
.y106{bottom:367.596536pt;}
.y27e{bottom:368.898531pt;}
.y170{bottom:371.404254pt;}
.yad{bottom:372.477336pt;}
.y232{bottom:375.364787pt;}
.y1c0{bottom:376.266683pt;}
.y20d{bottom:376.520011pt;}
.y332{bottom:376.877848pt;}
.y2f2{bottom:378.040812pt;}
.y2d1{bottom:378.943053pt;}
.y51{bottom:379.626396pt;}
.y77{bottom:379.637612pt;}
.yf0{bottom:379.639220pt;}
.y296{bottom:379.839212pt;}
.y1ed{bottom:382.493582pt;}
.y21{bottom:383.415080pt;}
.y27d{bottom:384.335598pt;}
.y105{bottom:386.464803pt;}
.y1bd{bottom:388.261317pt;}
.y1bf{bottom:388.266683pt;}
.y331{bottom:388.877848pt;}
.y16f{bottom:390.272521pt;}
.y231{bottom:394.231486pt;}
.y20c{bottom:395.388278pt;}
.y2d0{bottom:397.811320pt;}
.y2f1{bottom:398.040812pt;}
.y50{bottom:398.494663pt;}
.yc8{bottom:398.501054pt;}
.y76{bottom:398.505879pt;}
.yef{bottom:398.507487pt;}
.y1ec{bottom:398.626924pt;}
.y295{bottom:398.707479pt;}
.y20{bottom:399.415080pt;}
.y27c{bottom:399.765190pt;}
.y1bc{bottom:400.261317pt;}
.y1be{bottom:400.266683pt;}
.y330{bottom:400.877848pt;}
.y16a{bottom:402.733317pt;}
.y104{bottom:405.328286pt;}
.y169{bottom:409.139220pt;}
.y16e{bottom:409.140788pt;}
.y32f{bottom:412.877848pt;}
.y16b{bottom:414.117065pt;}
.y20b{bottom:414.256544pt;}
.y1eb{bottom:414.760143pt;}
.y27b{bottom:415.202256pt;}
.y1bb{bottom:416.399984pt;}
.y2cf{bottom:416.676248pt;}
.yac{bottom:417.361321pt;}
.y4f{bottom:417.362929pt;}
.yc7{bottom:417.369321pt;}
.y75{bottom:417.374146pt;}
.y294{bottom:417.572529pt;}
.y1f{bottom:420.748413pt;}
.y166{bottom:421.600016pt;}
.y160{bottom:423.855998pt;}
.y103{bottom:424.196553pt;}
.y32e{bottom:424.877848pt;}
.y15f{bottom:428.005879pt;}
.y165{bottom:428.007487pt;}
.y1b8{bottom:428.394659pt;}
.y1ba{bottom:428.399984pt;}
.y27a{bottom:430.631848pt;}
.y1ea{bottom:430.893484pt;}
.y162{bottom:432.852661pt;}
.y20a{bottom:433.124811pt;}
.y2ce{bottom:435.544515pt;}
.y2f0{bottom:435.774129pt;}
.y90{bottom:436.229588pt;}
.y4e{bottom:436.231196pt;}
.y74{bottom:436.232804pt;}
.y2ac{bottom:436.234412pt;}
.yc6{bottom:436.237588pt;}
.y293{bottom:436.440796pt;}
.y1e{bottom:436.748413pt;}
.y32d{bottom:436.877848pt;}
.y1b7{bottom:440.394659pt;}
.y1b9{bottom:440.399984pt;}
.y15c{bottom:442.602661pt;}
.y102{bottom:443.064819pt;}
.y279{bottom:446.068915pt;}
.y15e{bottom:446.874146pt;}
.y15b{bottom:446.874671pt;}
.y1e9{bottom:447.017590pt;}
.y2ef{bottom:447.774129pt;}
.y246{bottom:448.472127pt;}
.y32c{bottom:448.877848pt;}
.y209{bottom:451.993078pt;}
.y1d{bottom:452.748413pt;}
.y2cd{bottom:454.409606pt;}
.y8f{bottom:455.097854pt;}
.y4d{bottom:455.099463pt;}
.y73{bottom:455.101071pt;}
.y2ab{bottom:455.102679pt;}
.yc5{bottom:455.105854pt;}
.y292{bottom:455.305887pt;}
.y1b5{bottom:456.533325pt;}
.y2ee{bottom:459.774129pt;}
.y32b{bottom:460.877848pt;}
.y278{bottom:461.498547pt;}
.y245{bottom:463.585083pt;}
.y1b4{bottom:468.533325pt;}
.y1c{bottom:468.748413pt;}
.y208{bottom:470.861344pt;}
.y1e8{bottom:470.921590pt;}
.y32a{bottom:472.877848pt;}
.y2cc{bottom:473.277873pt;}
.y8e{bottom:473.966121pt;}
.y4c{bottom:473.967729pt;}
.y72{bottom:473.969337pt;}
.y2aa{bottom:473.970946pt;}
.yc4{bottom:473.974121pt;}
.y291{bottom:474.174154pt;}
.y180{bottom:475.173340pt;}
.y277{bottom:476.935614pt;}
.y244{bottom:478.697876pt;}
.y182{bottom:479.178263pt;}
.y2ed{bottom:479.774129pt;}
.y1b3{bottom:480.528000pt;}
.y1b6{bottom:480.533325pt;}
.y185{bottom:481.133993pt;}
.y187{bottom:481.134115pt;}
.y18a{bottom:481.134399pt;}
.y1b{bottom:484.748413pt;}
.y329{bottom:484.877848pt;}
.y243{bottom:490.080019pt;}
.y2ec{bottom:491.774129pt;}
.y2cb{bottom:492.139748pt;}
.y276{bottom:492.365206pt;}
.y1e6{bottom:492.532796pt;}
.yc3{bottom:492.824820pt;}
.y8d{bottom:492.834388pt;}
.y4b{bottom:492.835996pt;}
.y71{bottom:492.837604pt;}
.y2a9{bottom:492.839212pt;}
.y290{bottom:493.040812pt;}
.y1b2{bottom:496.666667pt;}
.y328{bottom:496.877848pt;}
.y227{bottom:499.168009pt;}
.y14a{bottom:499.826009pt;}
.y1a{bottom:500.748413pt;}
.y242{bottom:501.410685pt;}
.y2eb{bottom:503.774129pt;}
.y22e{bottom:503.973877pt;}
.y275{bottom:507.802273pt;}
.y1b1{bottom:508.661341pt;}
.y327{bottom:508.877848pt;}
.y2ca{bottom:511.008014pt;}
.y274{bottom:511.510673pt;}
.yc2{bottom:511.693087pt;}
.y8c{bottom:511.702654pt;}
.y4a{bottom:511.704263pt;}
.y70{bottom:511.705871pt;}
.y2a8{bottom:511.707479pt;}
.y15a{bottom:511.907471pt;}
.y149{bottom:513.159342pt;}
.y19{bottom:516.748413pt;}
.y264{bottom:520.185859pt;}
.y326{bottom:520.877848pt;}
.y273{bottom:523.239339pt;}
.y2ea{bottom:523.774129pt;}
.y22d{bottom:524.781738pt;}
.y1af{bottom:524.800008pt;}
.y2c9{bottom:529.876281pt;}
.y140{bottom:530.169881pt;}
.y148{bottom:530.442017pt;}
.y2a7{bottom:530.559705pt;}
.yc1{bottom:530.561354pt;}
.y8b{bottom:530.570921pt;}
.y49{bottom:530.572529pt;}
.y6f{bottom:530.574137pt;}
.y159{bottom:530.762954pt;}
.y18{bottom:532.748413pt;}
.y325{bottom:532.877848pt;}
.y263{bottom:535.681325pt;}
.y2e9{bottom:535.774129pt;}
.y1ae{bottom:536.800008pt;}
.y226{bottom:537.494141pt;}
.y13e{bottom:540.182007pt;}
.y147{bottom:540.523315pt;}
.y324{bottom:544.877848pt;}
.y272{bottom:546.439453pt;}
.y271{bottom:546.443981pt;}
.y22b{bottom:546.477580pt;}
.y138{bottom:547.402018pt;}
.y141{bottom:547.743205pt;}
.y2e8{bottom:547.774129pt;}
.y2c8{bottom:548.744548pt;}
.y17{bottom:548.748413pt;}
.y1ad{bottom:548.794683pt;}
.y1b0{bottom:548.800008pt;}
.y1e5{bottom:549.427971pt;}
.yc0{bottom:549.429620pt;}
.y8a{bottom:549.439188pt;}
.y48{bottom:549.440796pt;}
.y158{bottom:549.631220pt;}
.y262{bottom:551.118392pt;}
.y323{bottom:556.877848pt;}
.y270{bottom:558.172648pt;}
.y16{bottom:564.748413pt;}
.y1ac{bottom:564.933350pt;}
.y261{bottom:566.555459pt;}
.y139{bottom:567.290671pt;}
.y142{bottom:567.494368pt;}
.y2c7{bottom:567.611206pt;}
.y2e7{bottom:567.774129pt;}
.y229{bottom:568.089478pt;}
.y1e4{bottom:568.296238pt;}
.ybf{bottom:568.297887pt;}
.y6e{bottom:568.299454pt;}
.y47{bottom:568.301063pt;}
.y89{bottom:568.307454pt;}
.y157{bottom:568.499487pt;}
.y322{bottom:568.877848pt;}
.y22a{bottom:570.513997pt;}
.y1ab{bottom:576.927984pt;}
.y26a{bottom:579.086651pt;}
.y2e6{bottom:579.774129pt;}
.y15{bottom:580.748413pt;}
.y321{bottom:580.877848pt;}
.y260{bottom:581.992525pt;}
.y2c6{bottom:586.474648pt;}
.y13a{bottom:587.110579pt;}
.y1e3{bottom:587.164505pt;}
.ybe{bottom:587.166154pt;}
.y6d{bottom:587.167721pt;}
.y46{bottom:587.169329pt;}
.yab{bottom:587.172546pt;}
.y143{bottom:587.314277pt;}
.y156{bottom:587.367754pt;}
.y2e5{bottom:591.774129pt;}
.y320{bottom:592.877848pt;}
.y1aa{bottom:593.066650pt;}
.y269{bottom:593.750651pt;}
.y14{bottom:596.748413pt;}
.y25f{bottom:597.429592pt;}
.y207{bottom:604.481076pt;}
.y31f{bottom:604.877848pt;}
.y1a9{bottom:605.061325pt;}
.y2c5{bottom:605.342915pt;}
.y1e2{bottom:606.032771pt;}
.ybd{bottom:606.034420pt;}
.y6c{bottom:606.035988pt;}
.y45{bottom:606.037596pt;}
.yaa{bottom:606.040812pt;}
.y155{bottom:606.236020pt;}
.y13b{bottom:606.999232pt;}
.y144{bottom:607.134185pt;}
.y2e4{bottom:611.774129pt;}
.y13{bottom:612.748413pt;}
.y25e{bottom:612.859184pt;}
.y31e{bottom:616.877848pt;}
.y1a7{bottom:621.199992pt;}
.y206{bottom:623.349342pt;}
.y2e3{bottom:623.774129pt;}
.y2c4{bottom:624.211182pt;}
.yee{bottom:624.894687pt;}
.y1e1{bottom:624.901038pt;}
.ya9{bottom:624.902687pt;}
.y6b{bottom:624.904254pt;}
.y44{bottom:624.905863pt;}
.y154{bottom:625.104287pt;}
.y31{bottom:625.548381pt;}
.y13c{bottom:626.887885pt;}
.y145{bottom:626.954093pt;}
.y25d{bottom:628.296250pt;}
.y12{bottom:628.748413pt;}
.y31d{bottom:628.877848pt;}
.y1a6{bottom:633.199992pt;}
.y30{bottom:637.548381pt;}
.y31c{bottom:640.877848pt;}
.y205{bottom:642.217609pt;}
.y2c3{bottom:643.069962pt;}
.y25c{bottom:643.725883pt;}
.yed{bottom:643.762954pt;}
.y1e0{bottom:643.769305pt;}
.ya8{bottom:643.770954pt;}
.y6a{bottom:643.772521pt;}
.y43{bottom:643.774129pt;}
.y153{bottom:643.972554pt;}
.y11{bottom:644.748413pt;}
.y1a5{bottom:645.194667pt;}
.y1a8{bottom:645.199992pt;}
.y146{bottom:646.774002pt;}
.y13d{bottom:646.776538pt;}
.y2f{bottom:649.548381pt;}
.y31b{bottom:652.877848pt;}
.y13f{bottom:652.972656pt;}
.y25b{bottom:659.162950pt;}
.y204{bottom:661.085876pt;}
.y1a3{bottom:661.333333pt;}
.y2e{bottom:661.548381pt;}
.y114{bottom:661.712646pt;}
.y2c2{bottom:661.938229pt;}
.y2e2{bottom:662.624788pt;}
.yec{bottom:662.631220pt;}
.y42{bottom:662.636004pt;}
.y1df{bottom:662.637571pt;}
.ya7{bottom:662.639220pt;}
.y69{bottom:662.640788pt;}
.y152{bottom:662.840820pt;}
.y10{bottom:664.748413pt;}
.y31a{bottom:664.877848pt;}
.y137{bottom:664.891317pt;}
.y12e{bottom:665.636678pt;}
.y1a2{bottom:673.333333pt;}
.y2d{bottom:673.548381pt;}
.y12c{bottom:674.026000pt;}
.y135{bottom:674.364665pt;}
.y25a{bottom:674.592501pt;}
.y319{bottom:676.877848pt;}
.y203{bottom:679.954142pt;}
.y2c1{bottom:680.806496pt;}
.y126{bottom:681.197998pt;}
.y2e1{bottom:681.493054pt;}
.yeb{bottom:681.499487pt;}
.y41{bottom:681.504271pt;}
.y88{bottom:681.505838pt;}
.y68{bottom:681.507487pt;}
.y12f{bottom:681.535197pt;}
.y151{bottom:681.705871pt;}
.y1a4{bottom:685.333333pt;}
.y1a1{bottom:685.338634pt;}
.y318{bottom:688.877848pt;}
.y259{bottom:690.029567pt;}
.y257{bottom:693.733317pt;}
.y202{bottom:698.813105pt;}
.y2c0{bottom:699.674762pt;}
.y127{bottom:700.280226pt;}
.ya6{bottom:700.361321pt;}
.y67{bottom:700.364537pt;}
.yea{bottom:700.367754pt;}
.y268{bottom:700.370970pt;}
.y40{bottom:700.372537pt;}
.y87{bottom:700.374105pt;}
.y130{bottom:700.480849pt;}
.y150{bottom:700.574137pt;}
.y317{bottom:700.877848pt;}
.y19f{bottom:701.466634pt;}
.y256{bottom:705.459200pt;}
.y258{bottom:705.466634pt;}
.y316{bottom:712.877848pt;}
.y19e{bottom:713.466634pt;}
.y201{bottom:717.681372pt;}
.y2bf{bottom:718.543029pt;}
.ya5{bottom:719.229588pt;}
.y28f{bottom:719.231237pt;}
.y66{bottom:719.232804pt;}
.y1de{bottom:719.234371pt;}
.ye9{bottom:719.236020pt;}
.y267{bottom:719.239237pt;}
.y3f{bottom:719.240804pt;}
.y128{bottom:719.358185pt;}
.y131{bottom:719.426501pt;}
.y14f{bottom:719.439188pt;}
.y255{bottom:720.896267pt;}
.y315{bottom:724.877848pt;}
.y5{bottom:725.048421pt;}
.y19d{bottom:725.466634pt;}
.y254{bottom:736.325899pt;}
.y200{bottom:736.549639pt;}
.y314{bottom:736.877848pt;}
.y2be{bottom:737.411296pt;}
.y19c{bottom:737.466634pt;}
.ya4{bottom:738.097854pt;}
.y28e{bottom:738.099503pt;}
.y3e{bottom:738.101071pt;}
.y1dd{bottom:738.102638pt;}
.ye8{bottom:738.104287pt;}
.y266{bottom:738.107503pt;}
.y14e{bottom:738.307454pt;}
.y129{bottom:738.436144pt;}
.y132{bottom:738.436173pt;}
.y313{bottom:748.877848pt;}
.y19b{bottom:749.466634pt;}
.y253{bottom:751.762966pt;}
.y1ff{bottom:755.417905pt;}
.y2bd{bottom:756.273048pt;}
.ya3{bottom:756.966121pt;}
.y28d{bottom:756.967770pt;}
.y3d{bottom:756.969337pt;}
.y1dc{bottom:756.970905pt;}
.ye7{bottom:756.972554pt;}
.y265{bottom:756.974121pt;}
.y14d{bottom:757.174154pt;}
.y133{bottom:757.381825pt;}
.y12a{bottom:757.518372pt;}
.y312{bottom:760.877848pt;}
.y19a{bottom:761.461350pt;}
.y1a0{bottom:761.466634pt;}
.y4{bottom:766.140805pt;}
.y252{bottom:767.192517pt;}
.y311{bottom:772.877848pt;}
.y2bc{bottom:775.141315pt;}
.ya2{bottom:775.834388pt;}
.y28c{bottom:775.836037pt;}
.y3c{bottom:775.837604pt;}
.y1db{bottom:775.839171pt;}
.ye6{bottom:775.840820pt;}
.y134{bottom:776.323209pt;}
.y12b{bottom:776.596331pt;}
.y198{bottom:777.600016pt;}
.y136{bottom:782.548665pt;}
.y251{bottom:782.629584pt;}
.y12d{bottom:783.564697pt;}
.y21c{bottom:783.721354pt;}
.y310{bottom:784.877848pt;}
.y224{bottom:788.527181pt;}
.y197{bottom:789.600016pt;}
.y2bb{bottom:794.009582pt;}
.ya1{bottom:794.702654pt;}
.y28b{bottom:794.704303pt;}
.y3b{bottom:794.705871pt;}
.y1da{bottom:794.707438pt;}
.y11d{bottom:796.216553pt;}
.y125{bottom:796.689209pt;}
.y30f{bottom:796.877848pt;}
.y250{bottom:798.059216pt;}
.y3{bottom:800.796805pt;}
.y196{bottom:801.594650pt;}
.y199{bottom:801.600016pt;}
.y124{bottom:807.785563pt;}
.y11b{bottom:808.123454pt;}
.y30e{bottom:808.877848pt;}
.y223{bottom:809.335042pt;}
.y2ba{bottom:812.877848pt;}
.y24f{bottom:813.496283pt;}
.ya0{bottom:813.570921pt;}
.y1d9{bottom:813.572570pt;}
.y3a{bottom:813.574137pt;}
.y11e{bottom:814.957357pt;}
.y115{bottom:815.227620pt;}
.y194{bottom:817.733317pt;}
.y30d{bottom:820.877848pt;}
.y21b{bottom:822.047445pt;}
.y24e{bottom:828.925834pt;}
.y193{bottom:829.733317pt;}
.y221{bottom:831.030924pt;}
.y2b9{bottom:831.744629pt;}
.y65{bottom:832.432837pt;}
.ye5{bottom:832.437620pt;}
.y9f{bottom:832.439188pt;}
.y39{bottom:832.440837pt;}
.y30c{bottom:832.877848pt;}
.y11f{bottom:833.971297pt;}
.y116{bottom:834.305580pt;}
.y2{bottom:835.452805pt;}
.y192{bottom:841.728033pt;}
.y195{bottom:841.733317pt;}
.y24d{bottom:844.362901pt;}
.y30b{bottom:844.877848pt;}
.y24c{bottom:848.071301pt;}
.y2b8{bottom:850.606382pt;}
.y64{bottom:851.301103pt;}
.y2a6{bottom:851.304238pt;}
.y38{bottom:851.305887pt;}
.y9e{bottom:851.307454pt;}
.y21e{bottom:852.642904pt;}
.y120{bottom:852.980969pt;}
.y117{bottom:853.319520pt;}
.y220{bottom:855.067301pt;}
.y30a{bottom:856.877848pt;}
.y190{bottom:857.866699pt;}
.y24b{bottom:859.799967pt;}
.y309{bottom:868.877848pt;}
.y2b7{bottom:869.474648pt;}
.y18f{bottom:869.866699pt;}
.y1{bottom:870.108805pt;}
.y63{bottom:870.169370pt;}
.y9d{bottom:870.170937pt;}
.y14c{bottom:870.172505pt;}
.y37{bottom:870.174154pt;}
.y121{bottom:871.990641pt;}
.y118{bottom:872.397479pt;}
.y249{bottom:880.566650pt;}
.y308{bottom:880.877848pt;}
.y18e{bottom:881.862683pt;}
.y191{bottom:881.866699pt;}
.y2b6{bottom:888.342915pt;}
.y36{bottom:889.037637pt;}
.y9c{bottom:889.039204pt;}
.y14b{bottom:889.040771pt;}
.y122{bottom:891.004581pt;}
.y119{bottom:891.411419pt;}
.y24a{bottom:892.299967pt;}
.y307{bottom:892.877848pt;}
.y248{bottom:894.737967pt;}
.y306{bottom:904.877848pt;}
.y18d{bottom:905.766683pt;}
.y247{bottom:906.466634pt;}
.y2b5{bottom:907.211182pt;}
.y35{bottom:907.905903pt;}
.y9b{bottom:907.907471pt;}
.y123{bottom:910.014253pt;}
.y11a{bottom:910.489378pt;}
.y305{bottom:916.877848pt;}
.y11c{bottom:917.797852pt;}
.y2a{bottom:920.265218pt;}
.y22{bottom:920.666829pt;}
.y2b4{bottom:926.077962pt;}
.y34{bottom:926.774170pt;}
.y18c{bottom:927.377848pt;}
.y304{bottom:928.877848pt;}
.y2c{bottom:988.708515pt;}
.y60{bottom:1001.355225pt;}
.y32{bottom:1001.355306pt;}
.y62{bottom:1001.561768pt;}
.y2b{bottom:1001.711182pt;}
.y61{bottom:1002.044515pt;}
.y33{bottom:1002.048639pt;}
.h56{height:2.091371pt;}
.h36{height:11.677248pt;}
.h3b{height:11.755315pt;}
.h40{height:12.933333pt;}
.h37{height:14.465414pt;}
.h3c{height:14.562086pt;}
.h42{height:15.466667pt;}
.h39{height:17.428684pt;}
.h3e{height:17.545056pt;}
.h45{height:17.866666pt;}
.h43{height:18.516727pt;}
.h3a{height:20.420672pt;}
.h38{height:23.213645pt;}
.h3d{height:23.368911pt;}
.h28{height:24.223085pt;}
.h30{height:24.265036pt;}
.h5d{height:24.878933pt;}
.h5f{height:26.517493pt;}
.h26{height:27.319871pt;}
.h2e{height:27.366931pt;}
.h44{height:27.814826pt;}
.h59{height:28.212181pt;}
.h35{height:29.084410pt;}
.h29{height:30.415929pt;}
.hb{height:32.965333pt;}
.h60{height:34.378133pt;}
.h62{height:34.407870pt;}
.h66{height:34.407951pt;}
.h63{height:34.408033pt;}
.h61{height:34.408195pt;}
.h5b{height:35.082743pt;}
.he{height:35.320000pt;}
.h4f{height:35.541333pt;}
.h65{height:35.578667pt;}
.h41{height:36.598987pt;}
.ha{height:36.922667pt;}
.h57{height:37.121829pt;}
.h2b{height:37.674667pt;}
.h4e{height:37.685325pt;}
.h50{height:37.690243pt;}
.h48{height:37.690732pt;}
.h49{height:37.695805pt;}
.h4b{height:37.695967pt;}
.h4d{height:37.696049pt;}
.h4a{height:37.696130pt;}
.h5e{height:37.882133pt;}
.h71{height:38.080000pt;}
.h6f{height:38.120000pt;}
.h6e{height:38.920000pt;}
.hd{height:40.618667pt;}
.hf{height:40.661333pt;}
.h33{height:41.514667pt;}
.hc{height:41.984000pt;}
.h2a{height:42.197333pt;}
.h64{height:42.384000pt;}
.h47{height:44.421903pt;}
.h55{height:46.819420pt;}
.h5a{height:46.819909pt;}
.h7{height:47.093333pt;}
.h46{height:47.302782pt;}
.h32{height:47.472000pt;}
.h70{height:47.741866pt;}
.h5{height:49.653333pt;}
.h11{height:49.659603pt;}
.h1a{height:49.659685pt;}
.h1c{height:49.659725pt;}
.h21{height:49.659766pt;}
.h1e{height:49.659929pt;}
.h6c{height:49.660417pt;}
.h10{height:49.665873pt;}
.h34{height:49.666036pt;}
.h1b{height:49.666117pt;}
.h20{height:49.666198pt;}
.h6a{height:49.666687pt;}
.h13{height:49.672468pt;}
.h6{height:49.672550pt;}
.h2d{height:49.672631pt;}
.h6b{height:49.672957pt;}
.h1d{height:49.678738pt;}
.h14{height:49.678901pt;}
.h16{height:49.678941pt;}
.h12{height:49.679064pt;}
.h51{height:49.684112pt;}
.h69{height:49.685008pt;}
.h17{height:49.685333pt;}
.h18{height:49.691603pt;}
.h19{height:49.691685pt;}
.h22{height:49.691766pt;}
.h2c{height:49.691929pt;}
.h6d{height:49.697629pt;}
.h3f{height:49.698036pt;}
.h1f{height:49.698198pt;}
.h23{height:49.704468pt;}
.h31{height:49.704631pt;}
.h52{height:49.709357pt;}
.h68{height:49.711064pt;}
.h25{height:49.717333pt;}
.h15{height:49.723766pt;}
.h67{height:49.736468pt;}
.h24{height:49.736509pt;}
.h53{height:50.666667pt;}
.h8{height:51.893333pt;}
.h58{height:54.122295pt;}
.h5c{height:54.122783pt;}
.h4{height:54.329067pt;}
.h3{height:59.728337pt;}
.h9{height:68.570667pt;}
.h4c{height:85.674667pt;}
.h54{height:86.453328pt;}
.h2{height:121.856000pt;}
.h27{height:222.685343pt;}
.h2f{height:223.066671pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w3{width:14.598667pt;}
.w4{width:20.400000pt;}
.w5{width:20.786667pt;}
.w7{width:21.333333pt;}
.w6{width:22.106667pt;}
.w8{width:149.813333pt;}
.wa{width:343.986654pt;}
.w9{width:348.173340pt;}
.w2{width:480.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2e{left:-1.285482pt;}
.x0{left:0.000000pt;}
.x30{left:6.476622pt;}
.x3a{left:8.404285pt;}
.x37{left:9.734304pt;}
.xd{left:13.227865pt;}
.x13{left:16.275737pt;}
.x36{left:17.532389pt;}
.x3f{left:53.639430pt;}
.x3e{left:55.695740pt;}
.x4b{left:70.409058pt;}
.x1{left:75.496002pt;}
.xf{left:77.261740pt;}
.x40{left:78.735861pt;}
.x6{left:83.317602pt;}
.x42{left:101.619731pt;}
.x53{left:112.091859pt;}
.x44{left:123.903728pt;}
.x46{left:144.267742pt;}
.x55{left:146.831991pt;}
.x8{left:156.850403pt;}
.x15{left:159.802796pt;}
.x10{left:165.517069pt;}
.x9{left:167.512803pt;}
.xc{left:170.751181pt;}
.x26{left:172.551473pt;}
.x12{left:173.786233pt;}
.xb{left:175.773803pt;}
.x57{left:177.455852pt;}
.x3c{left:183.517333pt;}
.x27{left:185.289063pt;}
.x18{left:186.609477pt;}
.xa{left:190.981466pt;}
.x3d{left:192.568807pt;}
.x11{left:194.061368pt;}
.x1f{left:199.126404pt;}
.x19{left:202.915609pt;}
.x20{left:204.606933pt;}
.xe{left:208.670267pt;}
.x14{left:211.640666pt;}
.x59{left:214.403850pt;}
.x5a{left:220.370136pt;}
.x5e{left:229.392802pt;}
.x4d{left:231.798543pt;}
.x51{left:233.977336pt;}
.x2{left:238.110270pt;}
.x34{left:242.130676pt;}
.x4{left:246.777323pt;}
.x3{left:248.772670pt;}
.x35{left:252.091207pt;}
.x52{left:259.381063pt;}
.x4c{left:261.738261pt;}
.x28{left:264.092529pt;}
.x47{left:270.603068pt;}
.x41{left:275.477193pt;}
.x16{left:277.021067pt;}
.x5b{left:289.295064pt;}
.x43{left:298.349060pt;}
.x5f{left:300.970927pt;}
.x54{left:307.693604pt;}
.x45{left:320.644938pt;}
.x56{left:336.001343pt;}
.x50{left:337.776124pt;}
.x4e{left:339.953085pt;}
.x5c{left:359.123983pt;}
.x60{left:371.328003pt;}
.x48{left:384.619068pt;}
.x4f{left:388.602010pt;}
.x58{left:390.781047pt;}
.x21{left:397.296794pt;}
.x22{left:398.581462pt;}
.x1a{left:399.664795pt;}
.x1b{left:400.949463pt;}
.x23{left:409.948812pt;}
.x1c{left:412.248820pt;}
.x25{left:429.027466pt;}
.x1e{left:430.516805pt;}
.x61{left:438.250285pt;}
.x49{left:458.048399pt;}
.x1d{left:459.678141pt;}
.x2d{left:464.961344pt;}
.x29{left:465.904785pt;}
.x2f{left:473.491984pt;}
.x24{left:475.510132pt;}
.x31{left:485.361206pt;}
.x32{left:492.090658pt;}
.x62{left:500.452515pt;}
.x33{left:512.878133pt;}
.x38{left:514.813314pt;}
.x39{left:524.000122pt;}
.x3b{left:536.146810pt;}
.x5d{left:561.713989pt;}
.x4a{left:571.787188pt;}
.x2b{left:589.812012pt;}
.x2c{left:604.411458pt;}
.x5{left:617.715454pt;}
.x17{left:621.718140pt;}
.x2a{left:658.727458pt;}
.x7{left:664.199341pt;}
}




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