
    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_3bd0ef6dbd50319704525db4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e6b90c8cc245f9bb52f14d06.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ab1d60ef0bc1a479b5921963.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fc827230bde183a8b3b494ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_932f5bc4e4d6ca13b048371e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_52dee6635b75c66027ef0417.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_630882802c8ca4c959f7c014.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.803000;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_1e0e7bbaaf501a63e296fb46.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.668000;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_7f8f1bce6890a0b7bcf3d89e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;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_112e17cca2f8d95bcd9410f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.210938;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_73e308158107ea618db48bd7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_122fd00aa476b3156f9191fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9f8ab62afbbf43ad89afe663.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.676000;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_506861b3ec544a27f9cf539e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014160;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_d3c0676098376ef2ae40b7fb.woff2')format("woff");}.fff{font-family:fff;line-height:1.210938;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_1fea566e8c0635c080f4bbf5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e1f6c958516db6df659c3d1a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9e22d4e1ab6aa61e8a1ec420.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.014160;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_0e0c3eb595be93e45b21f126.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.210938;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_a39cc1bf2e9432a93ec9ba7d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ed9ee8d935658ca074e5c038.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9e22d4e1ab6aa61e8a1ec420.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014160;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_12ae9db3c3584cf5f8e6c17b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.210938;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_85da1afd3bf0f516dc150ab6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_fa79376a67c13ade9c0ed484.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_9b069de9023821608a8619fc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.014160;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_63deaed47faf20ce763faabf.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.210938;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_5bd4f6bf7e30ff0761539e72.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_29acfe298bb2fcf3e75a9033.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_6330908cc5d69eb35e52dd81.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.014160;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_51e40f6496bf465d880918b1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.210938;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_7ce4cc533544dacda0a36394.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_1ede31b7b1883189ca952324.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_a97583b1f9db64725936de85.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.014160;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_5399e0828c96d774bc08a428.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.210938;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_841f545845c3c49403eeea59.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_aeb0fa7c9405beefb7ba4f4f.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.386000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.874000px;}
.ls28{letter-spacing:-0.388740px;}
.ls41{letter-spacing:-0.371070px;}
.ls29{letter-spacing:-0.356400px;}
.ls39{letter-spacing:-0.342000px;}
.ls46{letter-spacing:-0.270000px;}
.ls45{letter-spacing:-0.220200px;}
.ls27{letter-spacing:-0.198000px;}
.ls11{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.065400px;}
.ls2a{letter-spacing:-0.058608px;}
.ls3f{letter-spacing:-0.055944px;}
.ls32{letter-spacing:-0.053280px;}
.lsd{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000017px;}
.ls4f{letter-spacing:0.000478px;}
.ls59{letter-spacing:0.000659px;}
.ls53{letter-spacing:0.000676px;}
.ls4d{letter-spacing:0.000800px;}
.ls5b{letter-spacing:0.001319px;}
.lse{letter-spacing:0.001453px;}
.ls51{letter-spacing:0.001651px;}
.ls2{letter-spacing:0.002725px;}
.ls5a{letter-spacing:0.003179px;}
.lsf{letter-spacing:0.003226px;}
.ls56{letter-spacing:0.003276px;}
.ls7{letter-spacing:0.003488px;}
.ls14{letter-spacing:0.004416px;}
.ls55{letter-spacing:0.004635px;}
.ls47{letter-spacing:0.006480px;}
.ls13{letter-spacing:0.012600px;}
.ls20{letter-spacing:0.014652px;}
.ls2c{letter-spacing:0.018000px;}
.ls3b{letter-spacing:0.018900px;}
.ls43{letter-spacing:0.020160px;}
.ls42{letter-spacing:0.036000px;}
.ls2b{letter-spacing:0.069000px;}
.ls1e{letter-spacing:0.075900px;}
.ls33{letter-spacing:0.090000px;}
.ls40{letter-spacing:0.094500px;}
.ls26{letter-spacing:0.099000px;}
.ls34{letter-spacing:0.108000px;}
.ls3c{letter-spacing:0.113400px;}
.ls44{letter-spacing:0.139800px;}
.ls10{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.189000px;}
.ls1d{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.542815px;}
.ls35{letter-spacing:2.610000px;}
.ls4{letter-spacing:2.998354px;}
.ls1f{letter-spacing:7.227000px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.951700px;}
.lsc{letter-spacing:11.954850px;}
.ls8{letter-spacing:11.955488px;}
.ls9{letter-spacing:11.957700px;}
.ls4e{letter-spacing:13.324210px;}
.ls54{letter-spacing:13.392505px;}
.ls52{letter-spacing:13.411846px;}
.ls4b{letter-spacing:13.436854px;}
.ls49{letter-spacing:13.448400px;}
.ls50{letter-spacing:13.454400px;}
.ls2e{letter-spacing:13.630567px;}
.ls58{letter-spacing:13.638635px;}
.ls23{letter-spacing:13.704037px;}
.ls21{letter-spacing:14.094088px;}
.ls4c{letter-spacing:14.097459px;}
.ls2d{letter-spacing:14.100088px;}
.ls22{letter-spacing:14.627948px;}
.ls57{letter-spacing:14.732753px;}
.ls36{letter-spacing:14.808629px;}
.ls37{letter-spacing:14.818082px;}
.ls31{letter-spacing:14.938200px;}
.ls1a{letter-spacing:14.944200px;}
.ls15{letter-spacing:14.962499px;}
.ls3e{letter-spacing:14.964758px;}
.ls30{letter-spacing:14.979935px;}
.ls2f{letter-spacing:14.985947px;}
.ls25{letter-spacing:15.264949px;}
.ls19{letter-spacing:15.657483px;}
.ls1c{letter-spacing:15.663483px;}
.ls16{letter-spacing:16.020873px;}
.ls24{letter-spacing:16.494553px;}
.ls3d{letter-spacing:17.082788px;}
.ls1b{letter-spacing:17.934089px;}
.ls4a{letter-spacing:18.473929px;}
.ls38{letter-spacing:20.571024px;}
.ls17{letter-spacing:22.226756px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.lsa{letter-spacing:64.321654px;}
.ls48{letter-spacing:94.292700px;}
.ls18{letter-spacing:152.056800px;}
.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;}
}
.wsd{word-spacing:-103.661500px;}
.wsb2{word-spacing:-60.120000px;}
.ws78{word-spacing:-16.608900px;}
.ws7a{word-spacing:-16.547652px;}
.ws77{word-spacing:-16.533000px;}
.ws7b{word-spacing:-16.474392px;}
.ws76{word-spacing:-16.144260px;}
.wsaa{word-spacing:-15.725556px;}
.wsab{word-spacing:-15.410430px;}
.ws8a{word-spacing:-15.210000px;}
.wsb1{word-spacing:-15.169800px;}
.ws88{word-spacing:-15.099000px;}
.ws4a{word-spacing:-15.030000px;}
.ws89{word-spacing:-14.976720px;}
.ws4b{word-spacing:-14.964600px;}
.ws55{word-spacing:-14.943900px;}
.ws8b{word-spacing:-14.850000px;}
.wsb3{word-spacing:-14.809800px;}
.ws79{word-spacing:-14.493600px;}
.wsa7{word-spacing:-14.175000px;}
.wsb0{word-spacing:-13.536000px;}
.ws8c{word-spacing:-13.500000px;}
.wscc{word-spacing:-13.449600px;}
.ws74{word-spacing:-13.365000px;}
.ws75{word-spacing:-13.167000px;}
.wsa5{word-spacing:-12.757500px;}
.wsa6{word-spacing:-12.568500px;}
.ws48{word-spacing:-12.150000px;}
.ws49{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.wsc4{word-spacing:-3.143336px;}
.ws56{word-spacing:-3.048556px;}
.ws59{word-spacing:-2.988780px;}
.wsb5{word-spacing:-2.630126px;}
.ws6f{word-spacing:-2.570351px;}
.ws2e{word-spacing:-2.391024px;}
.ws3c{word-spacing:-2.331248px;}
.ws5b{word-spacing:-2.271473px;}
.ws50{word-spacing:-1.853044px;}
.ws9e{word-spacing:-1.793268px;}
.ws1b{word-spacing:-1.775347px;}
.wsa0{word-spacing:-1.673717px;}
.wsc8{word-spacing:-1.667750px;}
.wsad{word-spacing:-1.613941px;}
.ws28{word-spacing:-1.494390px;}
.wsc9{word-spacing:-1.452557px;}
.ws29{word-spacing:-1.434614px;}
.ws94{word-spacing:-1.374839px;}
.ws7c{word-spacing:-1.344960px;}
.ws92{word-spacing:-1.315063px;}
.ws34{word-spacing:-1.255288px;}
.ws70{word-spacing:-1.195512px;}
.ws17{word-spacing:-1.183565px;}
.ws3d{word-spacing:-1.135736px;}
.ws7d{word-spacing:-1.129766px;}
.ws9b{word-spacing:-1.022170px;}
.ws36{word-spacing:-1.016185px;}
.wsd7{word-spacing:-0.968371px;}
.wsb8{word-spacing:-0.956410px;}
.ws9c{word-spacing:-0.806976px;}
.ws26{word-spacing:-0.717307px;}
.ws32{word-spacing:-0.657532px;}
.wsa8{word-spacing:-0.645581px;}
.ws61{word-spacing:-0.597756px;}
.wsac{word-spacing:-0.537984px;}
.ws84{word-spacing:-0.537980px;}
.wsf5{word-spacing:-0.430387px;}
.ws57{word-spacing:-0.418429px;}
.wsa9{word-spacing:-0.376589px;}
.ws4c{word-spacing:-0.358654px;}
.ws103{word-spacing:-0.322790px;}
.ws1f{word-spacing:-0.298878px;}
.ws15{word-spacing:-0.268992px;}
.ws22{word-spacing:-0.239102px;}
.ws1a{word-spacing:-0.215194px;}
.ws35{word-spacing:-0.179327px;}
.wsd3{word-spacing:-0.161395px;}
.ws23{word-spacing:-0.119551px;}
.wsb4{word-spacing:-0.107597px;}
.wsf{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws10{word-spacing:-0.001483px;}
.ws66{word-spacing:-0.001114px;}
.ws1{word-spacing:0.000000px;}
.ws8d{word-spacing:0.053798px;}
.ws1e{word-spacing:0.059776px;}
.ws8e{word-spacing:0.107597px;}
.ws30{word-spacing:0.119551px;}
.ws91{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws14{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.wse0{word-spacing:0.268992px;}
.ws33{word-spacing:0.298878px;}
.ws31{word-spacing:0.358654px;}
.wse3{word-spacing:0.376589px;}
.wsaf{word-spacing:0.418429px;}
.ws98{word-spacing:0.478205px;}
.wsdb{word-spacing:0.484186px;}
.ws11{word-spacing:0.562186px;}
.wsa4{word-spacing:0.597756px;}
.ws4d{word-spacing:0.657532px;}
.ws95{word-spacing:0.717307px;}
.ws72{word-spacing:0.747000px;}
.ws87{word-spacing:0.751200px;}
.wsc5{word-spacing:0.753178px;}
.wsa1{word-spacing:0.777083px;}
.ws6c{word-spacing:0.836858px;}
.ws41{word-spacing:0.896634px;}
.ws47{word-spacing:0.956410px;}
.wsf9{word-spacing:0.968371px;}
.ws39{word-spacing:1.016185px;}
.ws52{word-spacing:1.075961px;}
.ws3b{word-spacing:1.135736px;}
.ws3a{word-spacing:1.195512px;}
.ws9a{word-spacing:1.255288px;}
.wsfb{word-spacing:1.291162px;}
.wsc0{word-spacing:1.315063px;}
.wsbb{word-spacing:1.434614px;}
.ws7e{word-spacing:1.544244px;}
.ws60{word-spacing:1.554166px;}
.wsae{word-spacing:1.613941px;}
.ws67{word-spacing:1.733492px;}
.wse5{word-spacing:1.775347px;}
.ws6b{word-spacing:1.853044px;}
.ws2f{word-spacing:1.972595px;}
.wsff{word-spacing:2.044339px;}
.ws46{word-spacing:2.092146px;}
.ws5e{word-spacing:2.151922px;}
.ws2b{word-spacing:2.211697px;}
.ws58{word-spacing:2.331248px;}
.ws86{word-spacing:2.391024px;}
.ws37{word-spacing:2.450800px;}
.ws0{word-spacing:2.511541px;}
.ws2{word-spacing:2.512922px;}
.wsfd{word-spacing:2.528525px;}
.ws9f{word-spacing:2.570351px;}
.ws6d{word-spacing:2.689902px;}
.ws85{word-spacing:2.749678px;}
.wsed{word-spacing:2.797517px;}
.wsb9{word-spacing:2.809453px;}
.ws71{word-spacing:2.869229px;}
.wsc1{word-spacing:2.929004px;}
.wsbc{word-spacing:2.988780px;}
.wsee{word-spacing:3.012710px;}
.ws96{word-spacing:3.048556px;}
.wsba{word-spacing:3.108331px;}
.wse4{word-spacing:3.218746px;}
.ws1c{word-spacing:3.219667px;}
.wseb{word-spacing:3.220205px;}
.wsd4{word-spacing:3.220675px;}
.ws100{word-spacing:3.220915px;}
.wse1{word-spacing:3.223190px;}
.wsdd{word-spacing:3.227904px;}
.ws69{word-spacing:3.287658px;}
.ws3e{word-spacing:3.347434px;}
.wsb7{word-spacing:3.466985px;}
.ws21{word-spacing:3.526760px;}
.ws19{word-spacing:3.550694px;}
.ws1d{word-spacing:3.586536px;}
.ws16{word-spacing:3.604493px;}
.ws93{word-spacing:3.639005px;}
.wsa3{word-spacing:3.646312px;}
.ws73{word-spacing:3.765863px;}
.ws5c{word-spacing:3.825638px;}
.ws13{word-spacing:3.927283px;}
.wsb6{word-spacing:3.945190px;}
.ws97{word-spacing:4.124516px;}
.ws106{word-spacing:4.142477px;}
.ws6e{word-spacing:4.184292px;}
.ws104{word-spacing:4.196275px;}
.ws53{word-spacing:4.244068px;}
.ws109{word-spacing:4.250074px;}
.wsde{word-spacing:4.357670px;}
.ws9d{word-spacing:4.363619px;}
.wsc6{word-spacing:4.411469px;}
.wsbf{word-spacing:4.483170px;}
.ws108{word-spacing:4.626662px;}
.ws27{word-spacing:4.662497px;}
.wsbe{word-spacing:4.722272px;}
.wsb{word-spacing:4.770079px;}
.ws24{word-spacing:4.841824px;}
.wsc{word-spacing:4.853765px;}
.wse2{word-spacing:4.895654px;}
.wscd{word-spacing:5.003251px;}
.ws45{word-spacing:5.080926px;}
.ws38{word-spacing:5.140702px;}
.ws51{word-spacing:5.200477px;}
.ws82{word-spacing:5.260253px;}
.ws5d{word-spacing:5.320028px;}
.ws6a{word-spacing:5.379804px;}
.wsc3{word-spacing:5.487437px;}
.ws43{word-spacing:5.559131px;}
.wsa2{word-spacing:5.618906px;}
.ws62{word-spacing:5.678682px;}
.ws20{word-spacing:5.738458px;}
.wsc2{word-spacing:5.864026px;}
.ws99{word-spacing:5.917784px;}
.ws90{word-spacing:5.917824px;}
.ws8f{word-spacing:5.971622px;}
.ws7f{word-spacing:5.977560px;}
.ws3f{word-spacing:6.097111px;}
.ws81{word-spacing:6.754643px;}
.ws80{word-spacing:6.814418px;}
.wsfc{word-spacing:6.832397px;}
.ws5f{word-spacing:6.874194px;}
.wsd2{word-spacing:6.886195px;}
.wsc7{word-spacing:7.101389px;}
.ws54{word-spacing:7.113296px;}
.ws5a{word-spacing:7.292623px;}
.ws4f{word-spacing:7.352399px;}
.ws9{word-spacing:7.782761px;}
.ws4e{word-spacing:7.830604px;}
.ws44{word-spacing:7.890379px;}
.ws68{word-spacing:7.950155px;}
.ws83{word-spacing:8.129482px;}
.ws42{word-spacing:8.189257px;}
.ws3{word-spacing:10.413278px;}
.ws2c{word-spacing:11.902337px;}
.ws7{word-spacing:12.176255px;}
.wse7{word-spacing:13.126810px;}
.wsf0{word-spacing:13.180608px;}
.wsdf{word-spacing:13.288205px;}
.wsd6{word-spacing:13.387498px;}
.ws101{word-spacing:13.388093px;}
.wsf7{word-spacing:13.390022px;}
.wsef{word-spacing:13.390541px;}
.wsf6{word-spacing:13.391290px;}
.wsea{word-spacing:13.391520px;}
.wsd9{word-spacing:13.391587px;}
.wsf1{word-spacing:13.392134px;}
.wsd5{word-spacing:13.392336px;}
.wsda{word-spacing:13.393498px;}
.wsfe{word-spacing:13.394093px;}
.ws107{word-spacing:13.394381px;}
.wscb{word-spacing:13.395802px;}
.wsf8{word-spacing:13.396022px;}
.wsf2{word-spacing:13.449600px;}
.ws102{word-spacing:13.503398px;}
.wsfa{word-spacing:14.364173px;}
.ws40{word-spacing:14.884124px;}
.ws8{word-spacing:16.109478px;}
.wsca{word-spacing:16.408512px;}
.wsf3{word-spacing:16.616016px;}
.wsec{word-spacing:16.616448px;}
.wse6{word-spacing:16.616822px;}
.wse9{word-spacing:16.618291px;}
.wsd8{word-spacing:16.618445px;}
.wse8{word-spacing:16.619002px;}
.wsf4{word-spacing:16.619683px;}
.wsce{word-spacing:16.623706px;}
.wsd1{word-spacing:16.677504px;}
.wscf{word-spacing:16.892698px;}
.wsd0{word-spacing:17.376883px;}
.wsbd{word-spacing:18.470660px;}
.wsdc{word-spacing:18.506650px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.ws105{word-spacing:29.696717px;}
.ws65{word-spacing:75.748147px;}
.ws63{word-spacing:136.863130px;}
.ws64{word-spacing:200.953354px;}
._3b{margin-left:-24.336856px;}
._e{margin-left:-22.380041px;}
._3d{margin-left:-20.843408px;}
._b{margin-left:-19.142588px;}
._a{margin-left:-18.141455px;}
._5{margin-left:-7.962163px;}
._9{margin-left:-6.635092px;}
._0{margin-left:-5.397721px;}
._1{margin-left:-3.849538px;}
._22{margin-left:-2.555093px;}
._4{margin-left:-1.506341px;}
._c{width:1.813891px;}
._6{width:3.000221px;}
._1d{width:4.117056px;}
._1e{width:5.393098px;}
._d{width:6.635050px;}
._21{width:7.638929px;}
._23{width:8.686282px;}
._1f{width:10.378920px;}
._20{width:11.395320px;}
._2{width:12.971268px;}
._16{width:14.828586px;}
._11{width:16.031923px;}
._f{width:17.107891px;}
._12{width:18.661938px;}
._25{width:19.797674px;}
._15{width:21.041011px;}
._13{width:22.176748px;}
._26{width:23.503762px;}
._1a{width:25.225303px;}
._8{width:26.626709px;}
._10{width:27.813758px;}
._3a{width:29.469371px;}
._3{width:30.587087px;}
._34{width:32.395066px;}
._14{width:33.593887px;}
._27{width:35.088277px;}
._1b{width:36.176189px;}
._19{width:37.790130px;}
._24{width:40.408306px;}
._35{width:42.859105px;}
._7{width:54.380218px;}
._3c{width:61.868160px;}
._2b{width:86.723021px;}
._2a{width:94.758586px;}
._2e{width:99.238445px;}
._32{width:107.244106px;}
._2d{width:112.688045px;}
._30{width:120.693706px;}
._31{width:130.568717px;}
._2f{width:144.018317px;}
._29{width:188.993779px;}
._28{width:237.371558px;}
._2c{width:343.106592px;}
._17{width:769.385633px;}
._39{width:2061.176909px;}
._1c{width:2084.936909px;}
._37{width:2164.326449px;}
._36{width:2189.274449px;}
._33{width:2293.611989px;}
._38{width:2521.035300px;}
._18{width:2544.945300px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(52,46,45);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs11{font-size:50.274000px;}
.fsd{font-size:52.668000px;}
.fs7{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fs13{font-size:56.700000px;}
.fsf{font-size:59.400000px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs12{font-size:63.126000px;}
.fse{font-size:66.132000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:133.241003px;}
.y1df{bottom:-857.452050px;}
.y232{bottom:-850.395000px;}
.y1fd{bottom:-850.029075px;}
.y25b{bottom:-791.625000px;}
.y25a{bottom:-772.365000px;}
.y259{bottom:-753.195000px;}
.y258{bottom:-733.935000px;}
.y257{bottom:-714.765000px;}
.y256{bottom:-695.505000px;}
.y255{bottom:-676.245000px;}
.y254{bottom:-657.075000px;}
.y253{bottom:-637.785000px;}
.y252{bottom:-618.615000px;}
.y21a{bottom:-612.519075px;}
.y251{bottom:-599.355000px;}
.y219{bottom:-592.390575px;}
.y250{bottom:-580.095000px;}
.y218{bottom:-572.167575px;}
.y24f{bottom:-560.925000px;}
.y217{bottom:-551.944575px;}
.y24e{bottom:-541.665000px;}
.y216{bottom:-531.816075px;}
.y24d{bottom:-522.405000px;}
.y215{bottom:-511.593075px;}
.y24c{bottom:-503.235000px;}
.y19f{bottom:-500.083500px;}
.y214{bottom:-491.464575px;}
.y24b{bottom:-483.975000px;}
.y213{bottom:-471.241575px;}
.y24a{bottom:-464.805000px;}
.y1f6{bottom:-463.922550px;}
.y212{bottom:-451.018575px;}
.y249{bottom:-445.545000px;}
.y1f5{bottom:-443.794050px;}
.y211{bottom:-430.890075px;}
.y248{bottom:-426.285000px;}
.y1f4{bottom:-423.571050px;}
.y1c1{bottom:-418.903500px;}
.y210{bottom:-410.667075px;}
.y247{bottom:-407.115000px;}
.y1f3{bottom:-403.348050px;}
.y1c0{bottom:-399.733500px;}
.y20f{bottom:-390.538575px;}
.y246{bottom:-387.855000px;}
.y1f2{bottom:-383.219550px;}
.y1bf{bottom:-380.473500px;}
.y20e{bottom:-370.315575px;}
.y245{bottom:-368.685000px;}
.y1f1{bottom:-362.996550px;}
.y15b{bottom:-361.843500px;}
.y1be{bottom:-361.303500px;}
.y20d{bottom:-350.092575px;}
.y244{bottom:-349.425000px;}
.y1f0{bottom:-342.868050px;}
.y1bd{bottom:-342.043500px;}
.y243{bottom:-330.165000px;}
.y20c{bottom:-329.964075px;}
.y1bc{bottom:-322.783500px;}
.y1ef{bottom:-322.645050px;}
.y242{bottom:-310.995000px;}
.y17e{bottom:-305.773500px;}
.y20b{bottom:-305.110575px;}
.y1bb{bottom:-303.583500px;}
.y1ee{bottom:-302.422050px;}
.y11d{bottom:-293.485500px;}
.y241{bottom:-291.735000px;}
.y17d{bottom:-286.513500px;}
.y1ba{bottom:-284.323500px;}
.y1ed{bottom:-282.293550px;}
.y20a{bottom:-280.162575px;}
.y240{bottom:-272.565000px;}
.y17c{bottom:-267.343500px;}
.y1b9{bottom:-265.063500px;}
.y1ec{bottom:-262.070550px;}
.y23f{bottom:-253.305000px;}
.y17b{bottom:-248.083500px;}
.y1b8{bottom:-245.893500px;}
.y1eb{bottom:-241.847550px;}
.y209{bottom:-241.039575px;}
.y23e{bottom:-234.015000px;}
.y17a{bottom:-228.913500px;}
.y1b7{bottom:-226.633500px;}
.y1ea{bottom:-221.719050px;}
.y208{bottom:-220.816575px;}
.y140{bottom:-219.433500px;}
.y23d{bottom:-214.845000px;}
.y179{bottom:-209.653500px;}
.y1b6{bottom:-207.463500px;}
.y1e9{bottom:-201.464550px;}
.y207{bottom:-200.656575px;}
.y13f{bottom:-198.247500px;}
.y23c{bottom:-195.585000px;}
.y178{bottom:-190.393500px;}
.y1b5{bottom:-188.203500px;}
.y1e8{bottom:-181.336050px;}
.y206{bottom:-180.433575px;}
.y13e{bottom:-177.061500px;}
.y23b{bottom:-176.325000px;}
.y177{bottom:-171.223500px;}
.y1b4{bottom:-168.943500px;}
.y1e7{bottom:-161.113050px;}
.y205{bottom:-160.210575px;}
.y23a{bottom:-157.155000px;}
.y13d{bottom:-155.974500px;}
.y176{bottom:-151.933500px;}
.y1b3{bottom:-149.773500px;}
.y1e6{bottom:-140.890050px;}
.y204{bottom:-140.082075px;}
.y239{bottom:-137.895000px;}
.y81{bottom:-137.205000px;}
.y13c{bottom:-134.788500px;}
.y175{bottom:-132.763500px;}
.y1b2{bottom:-130.513500px;}
.y203{bottom:-119.859075px;}
.y238{bottom:-118.725000px;}
.y1e5{bottom:-116.036550px;}
.y13b{bottom:-113.701500px;}
.y174{bottom:-113.503500px;}
.y1b1{bottom:-111.343500px;}
.y202{bottom:-99.730575px;}
.y13a{bottom:-87.565500px;}
.y237{bottom:-81.915000px;}
.y1e4{bottom:-77.386050px;}
.y173{bottom:-76.693500px;}
.y1b0{bottom:-74.533500px;}
.ya1{bottom:-73.215000px;}
.y236{bottom:-64.545000px;}
.y201{bottom:-61.080075px;}
.y172{bottom:-59.323500px;}
.y1e3{bottom:-59.147550px;}
.y1af{bottom:-57.073500px;}
.ya0{bottom:-54.045000px;}
.y235{bottom:-47.175000px;}
.y139{bottom:-47.041500px;}
.y200{bottom:-42.841575px;}
.y171{bottom:-42.043500px;}
.y1e2{bottom:-40.909050px;}
.y1ae{bottom:-39.793500px;}
.y234{bottom:-29.895000px;}
.y138{bottom:-27.934500px;}
.y170{bottom:-24.673500px;}
.y1ff{bottom:-24.603075px;}
.y1e1{bottom:-22.765050px;}
.y1ad{bottom:-22.513500px;}
.y9f{bottom:-17.235000px;}
.y233{bottom:-7.485000px;}
.y137{bottom:-3.184500px;}
.y16f{bottom:-2.353500px;}
.y1fe{bottom:-1.072575px;}
.y1ac{bottom:-0.103500px;}
.y0{bottom:0.000000px;}
.y1e0{bottom:0.765450px;}
.y9e{bottom:5.355000px;}
.y17{bottom:16.340329px;}
.y45{bottom:31.890000px;}
.yb8{bottom:91.665000px;}
.y157{bottom:92.992500px;}
.y119{bottom:99.649500px;}
.y295{bottom:99.751500px;}
.y26e{bottom:103.183500px;}
.y15{bottom:104.646000px;}
.y7c{bottom:105.847500px;}
.y276{bottom:107.641500px;}
.yb7{bottom:110.494500px;}
.y156{bottom:111.822000px;}
.y19b{bottom:113.001000px;}
.y294{bottom:117.325500px;}
.y118{bottom:118.479000px;}
.y305{bottom:121.762500px;}
.y26d{bottom:122.013000px;}
.y14{bottom:122.535000px;}
.y44{bottom:123.943500px;}
.y7b{bottom:124.677000px;}
.y2cd{bottom:125.529000px;}
.y275{bottom:126.471000px;}
.yb6{bottom:129.324000px;}
.y155{bottom:130.651500px;}
.y19a{bottom:131.830500px;}
.y293{bottom:134.899500px;}
.y117{bottom:137.308500px;}
.y304{bottom:139.023000px;}
.y13{bottom:140.422500px;}
.y26c{bottom:140.842500px;}
.y43{bottom:142.773000px;}
.y2cc{bottom:142.789500px;}
.y7a{bottom:143.506500px;}
.y274{bottom:145.300500px;}
.yb5{bottom:148.153500px;}
.y154{bottom:149.481000px;}
.y199{bottom:150.660000px;}
.y116{bottom:156.138000px;}
.y303{bottom:156.283500px;}
.y12{bottom:158.310000px;}
.y26b{bottom:159.672000px;}
.y2cb{bottom:160.050000px;}
.y292{bottom:161.440500px;}
.y42{bottom:161.602500px;}
.y79{bottom:162.336000px;}
.y273{bottom:164.130000px;}
.yb4{bottom:166.983000px;}
.y153{bottom:168.310500px;}
.y198{bottom:169.489500px;}
.y302{bottom:173.544000px;}
.y115{bottom:174.967500px;}
.y11{bottom:176.199000px;}
.y2ca{bottom:177.310500px;}
.y26a{bottom:178.501500px;}
.y291{bottom:179.014500px;}
.y41{bottom:180.432000px;}
.y78{bottom:181.165500px;}
.ye5{bottom:182.511000px;}
.y272{bottom:182.959500px;}
.yb3{bottom:185.812500px;}
.y152{bottom:187.140000px;}
.y197{bottom:188.319000px;}
.y301{bottom:190.804500px;}
.y10{bottom:194.086500px;}
.y2c9{bottom:194.571000px;}
.y290{bottom:196.588500px;}
.y269{bottom:197.331000px;}
.y114{bottom:198.280500px;}
.y40{bottom:199.261500px;}
.ye4{bottom:201.340500px;}
.y271{bottom:201.789000px;}
.y77{bottom:204.478500px;}
.yb2{bottom:204.642000px;}
.y151{bottom:205.969500px;}
.y196{bottom:207.148500px;}
.y300{bottom:208.065000px;}
.y2c8{bottom:211.831500px;}
.yf{bottom:211.974000px;}
.y28f{bottom:214.162500px;}
.y268{bottom:216.160500px;}
.y3f{bottom:218.091000px;}
.y113{bottom:218.455500px;}
.ye3{bottom:220.170000px;}
.y270{bottom:220.618500px;}
.yb1{bottom:223.471500px;}
.y76{bottom:224.652000px;}
.y150{bottom:224.799000px;}
.y2ff{bottom:225.325500px;}
.y195{bottom:225.978000px;}
.y2c7{bottom:229.090500px;}
.ye{bottom:229.863000px;}
.y28e{bottom:231.736500px;}
.y267{bottom:234.990000px;}
.y3e{bottom:236.920500px;}
.ye1{bottom:238.999500px;}
.y26f{bottom:239.446500px;}
.yb0{bottom:242.301000px;}
.y2fe{bottom:242.586000px;}
.y14f{bottom:243.628500px;}
.ye2{bottom:244.423500px;}
.y194{bottom:244.807500px;}
.y2c6{bottom:246.351000px;}
.y1db{bottom:246.784500px;}
.y112{bottom:252.079500px;}
.y266{bottom:253.819500px;}
.y3d{bottom:255.750000px;}
.ye0{bottom:257.829000px;}
.y75{bottom:258.276000px;}
.y2fd{bottom:259.846500px;}
.yaf{bottom:261.130500px;}
.y14e{bottom:262.458000px;}
.y2c5{bottom:263.611500px;}
.y193{bottom:263.637000px;}
.y111{bottom:270.909000px;}
.y28d{bottom:271.726500px;}
.y265{bottom:272.649000px;}
.y3c{bottom:274.579500px;}
.ydf{bottom:276.658500px;}
.y74{bottom:277.105500px;}
.yae{bottom:279.960000px;}
.y1da{bottom:280.408500px;}
.y2c4{bottom:280.872000px;}
.y14d{bottom:281.287500px;}
.y192{bottom:282.466500px;}
.y231{bottom:283.785000px;}
.y110{bottom:289.737000px;}
.y28c{bottom:290.556000px;}
.y264{bottom:291.478500px;}
.y3b{bottom:293.409000px;}
.y230{bottom:293.415000px;}
.y2fc{bottom:294.366000px;}
.yde{bottom:295.488000px;}
.y73{bottom:295.935000px;}
.yd{bottom:297.166500px;}
.y2c3{bottom:298.132500px;}
.yad{bottom:298.789500px;}
.y1d9{bottom:299.238000px;}
.y14c{bottom:300.115500px;}
.y191{bottom:301.296000px;}
.y10f{bottom:308.566500px;}
.y28b{bottom:309.385500px;}
.y263{bottom:310.308000px;}
.y2fb{bottom:311.626500px;}
.y21d{bottom:312.108000px;}
.y3a{bottom:312.238500px;}
.ydd{bottom:314.317500px;}
.y72{bottom:314.764500px;}
.yc{bottom:315.054000px;}
.y2c2{bottom:315.393000px;}
.yac{bottom:317.619000px;}
.y1d8{bottom:318.067500px;}
.y14b{bottom:318.945000px;}
.y190{bottom:320.125500px;}
.y10e{bottom:327.396000px;}
.y28a{bottom:328.215000px;}
.y2fa{bottom:328.887000px;}
.y262{bottom:329.137500px;}
.y39{bottom:331.068000px;}
.y21c{bottom:331.341000px;}
.y2c1{bottom:332.653500px;}
.yb{bottom:332.941500px;}
.ydc{bottom:333.145500px;}
.y1de{bottom:333.436950px;}
.y71{bottom:333.594000px;}
.yab{bottom:336.448500px;}
.y1d7{bottom:336.897000px;}
.y14a{bottom:337.774500px;}
.y18f{bottom:338.955000px;}
.y1fc{bottom:340.859925px;}
.y1dd{bottom:343.548450px;}
.y2f9{bottom:346.147500px;}
.y10d{bottom:346.225500px;}
.y289{bottom:347.044500px;}
.y261{bottom:347.967000px;}
.y38{bottom:349.897500px;}
.y2c0{bottom:349.914000px;}
.y21b{bottom:350.574000px;}
.ya{bottom:350.830500px;}
.y1fb{bottom:350.971425px;}
.ydb{bottom:351.975000px;}
.y70{bottom:352.423500px;}
.yaa{bottom:355.278000px;}
.y1d6{bottom:355.726500px;}
.y136{bottom:356.680500px;}
.y18e{bottom:357.784500px;}
.y149{bottom:361.087500px;}
.y2f8{bottom:363.408000px;}
.y10c{bottom:365.055000px;}
.y288{bottom:365.874000px;}
.y260{bottom:366.796500px;}
.y2bf{bottom:367.174500px;}
.y1ab{bottom:367.846500px;}
.y37{bottom:368.727000px;}
.yda{bottom:370.804500px;}
.y6f{bottom:371.253000px;}
.y16e{bottom:371.536500px;}
.ya9{bottom:374.107500px;}
.y1d5{bottom:374.556000px;}
.y1fa{bottom:375.991500px;}
.y18d{bottom:376.614000px;}
.y9{bottom:377.685000px;}
.y135{bottom:377.767500px;}
.y2f7{bottom:380.668500px;}
.y10b{bottom:383.884500px;}
.y2be{bottom:384.433500px;}
.y287{bottom:384.703500px;}
.y1aa{bottom:387.106500px;}
.y36{bottom:387.556500px;}
.yd9{bottom:389.634000px;}
.y6e{bottom:390.082500px;}
.y16d{bottom:390.796500px;}
.ya8{bottom:392.937000px;}
.y1d4{bottom:393.385500px;}
.y148{bottom:394.711500px;}
.y18c{bottom:395.443500px;}
.y8{bottom:395.572500px;}
.y9d{bottom:396.165000px;}
.y2f5{bottom:397.929000px;}
.y134{bottom:398.986500px;}
.y25f{bottom:400.362000px;}
.y2f6{bottom:401.155500px;}
.y2bd{bottom:401.694000px;}
.y10a{bottom:402.714000px;}
.y286{bottom:403.533000px;}
.y1a9{bottom:406.366500px;}
.y35{bottom:406.384500px;}
.yd8{bottom:408.463500px;}
.y6d{bottom:408.912000px;}
.y16c{bottom:409.966500px;}
.ya7{bottom:411.766500px;}
.y1d3{bottom:412.215000px;}
.y7{bottom:413.460000px;}
.y147{bottom:413.541000px;}
.y18b{bottom:414.271500px;}
.y2f4{bottom:415.188000px;}
.y9c{bottom:415.335000px;}
.y2bc{bottom:418.954500px;}
.y25e{bottom:419.595000px;}
.y133{bottom:420.073500px;}
.y109{bottom:421.543500px;}
.y285{bottom:422.362500px;}
.y34{bottom:425.214000px;}
.y1a8{bottom:425.536500px;}
.yd7{bottom:427.293000px;}
.y6c{bottom:427.741500px;}
.y16b{bottom:429.226500px;}
.ya6{bottom:430.596000px;}
.y1d2{bottom:431.044500px;}
.y6{bottom:431.349000px;}
.y146{bottom:432.370500px;}
.y2f3{bottom:432.448500px;}
.y18a{bottom:433.101000px;}
.y9b{bottom:434.595000px;}
.y2bb{bottom:436.215000px;}
.y25d{bottom:438.828000px;}
.y108{bottom:440.373000px;}
.y284{bottom:441.192000px;}
.y132{bottom:441.259500px;}
.y32{bottom:444.043500px;}
.y1a7{bottom:444.796500px;}
.yd6{bottom:446.122500px;}
.y6b{bottom:446.571000px;}
.y16a{bottom:448.486500px;}
.y5{bottom:449.236500px;}
.ya5{bottom:449.425500px;}
.y33{bottom:449.469000px;}
.y2f2{bottom:449.709000px;}
.y1d1{bottom:449.874000px;}
.y145{bottom:451.200000px;}
.y189{bottom:451.930500px;}
.y2ba{bottom:453.475500px;}
.y9a{bottom:453.855000px;}
.y25c{bottom:458.061000px;}
.y107{bottom:459.202500px;}
.y283{bottom:460.021500px;}
.y131{bottom:462.445500px;}
.y31{bottom:462.873000px;}
.y1a6{bottom:464.056500px;}
.yd5{bottom:464.952000px;}
.y6a{bottom:465.400500px;}
.y2f1{bottom:466.969500px;}
.y4{bottom:467.124000px;}
.y169{bottom:467.656500px;}
.ya4{bottom:468.255000px;}
.y1d0{bottom:468.702000px;}
.y144{bottom:470.029500px;}
.y2b9{bottom:470.736000px;}
.y188{bottom:470.760000px;}
.y99{bottom:473.025000px;}
.y106{bottom:478.032000px;}
.y282{bottom:478.851000px;}
.y30{bottom:481.702500px;}
.y1a5{bottom:483.226500px;}
.y22f{bottom:483.478500px;}
.y130{bottom:483.532500px;}
.yd4{bottom:483.781500px;}
.y69{bottom:484.230000px;}
.y3{bottom:485.013000px;}
.y168{bottom:486.916500px;}
.ya3{bottom:487.084500px;}
.y2{bottom:487.522500px;}
.y1cf{bottom:487.531500px;}
.y2b8{bottom:487.996500px;}
.y143{bottom:488.859000px;}
.y187{bottom:489.589500px;}
.y98{bottom:492.315000px;}
.y105{bottom:496.861500px;}
.y2f0{bottom:501.490500px;}
.y281{bottom:502.162500px;}
.y1a4{bottom:502.486500px;}
.yd3{bottom:502.611000px;}
.y1{bottom:502.900500px;}
.y68{bottom:503.059500px;}
.y12f{bottom:504.718500px;}
.y2f{bottom:505.015500px;}
.y2b7{bottom:505.257000px;}
.y167{bottom:506.086500px;}
.y1ce{bottom:506.361000px;}
.y186{bottom:508.419000px;}
.y97{bottom:511.485000px;}
.y104{bottom:515.691000px;}
.ya2{bottom:518.028000px;}
.y2ef{bottom:518.751000px;}
.y280{bottom:520.992000px;}
.yd2{bottom:521.440500px;}
.y1a3{bottom:521.656500px;}
.y67{bottom:521.889000px;}
.y142{bottom:522.424500px;}
.y2b6{bottom:522.516000px;}
.y1cd{bottom:525.190500px;}
.y166{bottom:525.346500px;}
.y12e{bottom:525.805500px;}
.y185{bottom:527.248500px;}
.y96{bottom:530.745000px;}
.y103{bottom:534.520500px;}
.y2ee{bottom:536.011500px;}
.y2b5{bottom:539.776500px;}
.y27f{bottom:539.821500px;}
.yd1{bottom:540.270000px;}
.y66{bottom:540.718500px;}
.y1a2{bottom:540.946500px;}
.y141{bottom:541.657500px;}
.y7e{bottom:543.445500px;}
.y1cc{bottom:544.020000px;}
.y165{bottom:544.606500px;}
.y184{bottom:546.078000px;}
.y12d{bottom:546.991500px;}
.y95{bottom:550.005000px;}
.y2ed{bottom:553.272000px;}
.y102{bottom:553.350000px;}
.y2b4{bottom:557.037000px;}
.y27e{bottom:558.651000px;}
.yd0{bottom:559.099500px;}
.y65{bottom:559.548000px;}
.y1a1{bottom:560.206500px;}
.y1cb{bottom:562.849500px;}
.y164{bottom:563.776500px;}
.y183{bottom:564.907500px;}
.y11a{bottom:567.075000px;}
.y12c{bottom:568.177500px;}
.y94{bottom:569.175000px;}
.y2ec{bottom:570.531000px;}
.y101{bottom:572.179500px;}
.y2b3{bottom:574.297500px;}
.y27d{bottom:577.480500px;}
.ycf{bottom:577.929000px;}
.y64{bottom:578.377500px;}
.y1a0{bottom:579.376500px;}
.y2e{bottom:580.165500px;}
.y1ca{bottom:581.679000px;}
.y163{bottom:583.036500px;}
.y2ea{bottom:587.791500px;}
.y93{bottom:588.435000px;}
.y12b{bottom:589.264500px;}
.y100{bottom:591.009000px;}
.y2eb{bottom:591.019500px;}
.y2b2{bottom:591.558000px;}
.y27c{bottom:596.310000px;}
.yce{bottom:596.758500px;}
.y63{bottom:597.207000px;}
.y182{bottom:598.473000px;}
.y1c9{bottom:600.508500px;}
.y162{bottom:602.296500px;}
.y2e9{bottom:605.052000px;}
.y92{bottom:607.605000px;}
.y2b1{bottom:608.818500px;}
.yff{bottom:609.838500px;}
.y12a{bottom:610.450500px;}
.y27b{bottom:615.139500px;}
.ycd{bottom:615.588000px;}
.y62{bottom:616.036500px;}
.y2d{bottom:617.556000px;}
.y181{bottom:617.706000px;}
.y1c8{bottom:619.338000px;}
.y161{bottom:621.466500px;}
.y2e8{bottom:622.312500px;}
.y2af{bottom:626.079000px;}
.y2b0{bottom:626.287500px;}
.y91{bottom:626.865000px;}
.yfe{bottom:628.668000px;}
.y129{bottom:631.537500px;}
.y19e{bottom:634.096500px;}
.ycc{bottom:634.417500px;}
.y61{bottom:634.866000px;}
.y180{bottom:636.939000px;}
.y2c{bottom:637.012500px;}
.y1c7{bottom:638.167500px;}
.y27a{bottom:638.452500px;}
.y2e7{bottom:639.573000px;}
.y160{bottom:640.726500px;}
.y2ae{bottom:643.339500px;}
.y19d{bottom:643.726500px;}
.y90{bottom:646.125000px;}
.yfd{bottom:647.497500px;}
.y128{bottom:652.723500px;}
.ycb{bottom:653.247000px;}
.y60{bottom:653.695500px;}
.y17f{bottom:656.172000px;}
.y2b{bottom:656.469000px;}
.y2e6{bottom:656.833500px;}
.y1c6{bottom:656.997000px;}
.y15f{bottom:659.896500px;}
.y2ad{bottom:660.600000px;}
.y8f{bottom:665.295000px;}
.yfc{bottom:666.327000px;}
.yca{bottom:672.076500px;}
.y5f{bottom:672.525000px;}
.y127{bottom:673.909500px;}
.y2e5{bottom:674.094000px;}
.y1f9{bottom:675.462000px;}
.y2a{bottom:675.927000px;}
.y2ac{bottom:677.859000px;}
.y15e{bottom:679.186500px;}
.y158{bottom:681.589500px;}
.y8e{bottom:684.555000px;}
.yfb{bottom:685.156500px;}
.y1c5{bottom:689.475000px;}
.yc9{bottom:690.906000px;}
.y5e{bottom:691.354500px;}
.y1f8{bottom:694.695000px;}
.y126{bottom:694.996500px;}
.y2ab{bottom:695.119500px;}
.y29{bottom:695.383500px;}
.y15d{bottom:698.446500px;}
.y8d{bottom:703.725000px;}
.yfa{bottom:703.986000px;}
.y2e4{bottom:708.613500px;}
.y1c4{bottom:708.708000px;}
.yc8{bottom:709.735500px;}
.y5d{bottom:710.184000px;}
.y2aa{bottom:712.380000px;}
.y1f7{bottom:713.926500px;}
.y28{bottom:714.841500px;}
.y125{bottom:716.182500px;}
.y15c{bottom:717.616500px;}
.yf9{bottom:722.815500px;}
.y8c{bottom:722.985000px;}
.y2e3{bottom:725.874000px;}
.y1c3{bottom:727.941000px;}
.yc7{bottom:728.565000px;}
.y5c{bottom:729.013500px;}
.y2a9{bottom:729.640500px;}
.y27{bottom:734.298000px;}
.y124{bottom:737.368500px;}
.y1dc{bottom:739.345500px;}
.yf8{bottom:741.645000px;}
.y8b{bottom:742.245000px;}
.y2e2{bottom:743.134500px;}
.y22e{bottom:746.049000px;}
.y2a8{bottom:746.901000px;}
.y1c2{bottom:747.174000px;}
.yc6{bottom:747.394500px;}
.y5b{bottom:747.843000px;}
.y26{bottom:753.754500px;}
.y123{bottom:758.455500px;}
.y2e1{bottom:760.395000px;}
.y8a{bottom:761.415000px;}
.y2a7{bottom:764.161500px;}
.y22d{bottom:764.878500px;}
.yf7{bottom:764.956500px;}
.yc5{bottom:766.224000px;}
.y5a{bottom:766.671000px;}
.y15a{bottom:772.336500px;}
.y19c{bottom:772.591500px;}
.y25{bottom:773.212500px;}
.y2e0{bottom:777.655500px;}
.y122{bottom:779.641500px;}
.y89{bottom:780.675000px;}
.y2a6{bottom:781.422000px;}
.y159{bottom:781.966500px;}
.y22c{bottom:783.708000px;}
.yc4{bottom:785.053500px;}
.y59{bottom:785.500500px;}
.y24{bottom:792.669000px;}
.y2df{bottom:794.916000px;}
.y2a5{bottom:798.682500px;}
.y88{bottom:799.935000px;}
.y121{bottom:800.728500px;}
.y22b{bottom:802.537500px;}
.yc3{bottom:803.883000px;}
.y58{bottom:804.330000px;}
.yf6{bottom:807.280500px;}
.y23{bottom:812.125500px;}
.y2de{bottom:812.176500px;}
.y2a4{bottom:815.941500px;}
.y87{bottom:819.105000px;}
.y22a{bottom:821.367000px;}
.y120{bottom:821.914500px;}
.yc2{bottom:822.712500px;}
.y57{bottom:823.159500px;}
.yf5{bottom:823.719000px;}
.y2dd{bottom:829.437000px;}
.y2a3{bottom:833.202000px;}
.y86{bottom:838.365000px;}
.yf4{bottom:840.157500px;}
.y229{bottom:840.196500px;}
.yc1{bottom:841.540500px;}
.y56{bottom:841.989000px;}
.y2dc{bottom:846.697500px;}
.y11f{bottom:847.984500px;}
.y2a2{bottom:850.462500px;}
.y22{bottom:850.711500px;}
.yf3{bottom:856.596000px;}
.y85{bottom:857.535000px;}
.y228{bottom:859.026000px;}
.yc0{bottom:860.370000px;}
.y55{bottom:860.818500px;}
.y2db{bottom:863.956500px;}
.y2a1{bottom:867.723000px;}
.y21{bottom:871.191000px;}
.y11e{bottom:874.120500px;}
.y84{bottom:876.795000px;}
.y227{bottom:877.855500px;}
.ybf{bottom:879.199500px;}
.y54{bottom:879.648000px;}
.yf2{bottom:880.236000px;}
.y2da{bottom:881.217000px;}
.y2a0{bottom:884.983500px;}
.y20{bottom:887.331000px;}
.yf1{bottom:896.674500px;}
.y226{bottom:896.685000px;}
.ybe{bottom:898.029000px;}
.y53{bottom:898.477500px;}
.y1f{bottom:899.130000px;}
.y83{bottom:900.495000px;}
.y29f{bottom:902.244000px;}
.y309{bottom:911.179500px;}
.yf0{bottom:913.113000px;}
.y225{bottom:915.514500px;}
.y2d8{bottom:915.738000px;}
.y2d9{bottom:915.946500px;}
.ybd{bottom:916.858500px;}
.y52{bottom:917.307000px;}
.y29e{bottom:919.504500px;}
.y1e{bottom:919.609500px;}
.y82{bottom:924.255000px;}
.y308{bottom:928.440000px;}
.yef{bottom:929.551500px;}
.y1d{bottom:931.410000px;}
.y2d7{bottom:932.998500px;}
.y224{bottom:934.344000px;}
.ybc{bottom:935.688000px;}
.y51{bottom:936.136500px;}
.y29d{bottom:936.765000px;}
.y307{bottom:945.700500px;}
.yee{bottom:945.990000px;}
.y2d6{bottom:950.259000px;}
.y1c{bottom:951.888000px;}
.y223{bottom:953.173500px;}
.y29c{bottom:954.025500px;}
.y11c{bottom:954.112500px;}
.ybb{bottom:954.517500px;}
.y50{bottom:954.966000px;}
.y11b{bottom:964.705500px;}
.y2d5{bottom:967.519500px;}
.yed{bottom:969.630000px;}
.y29b{bottom:971.284500px;}
.y222{bottom:972.003000px;}
.yba{bottom:973.347000px;}
.y4f{bottom:973.795500px;}
.y7d{bottom:979.219500px;}
.y2d4{bottom:984.780000px;}
.yec{bottom:986.068500px;}
.y29a{bottom:988.545000px;}
.y221{bottom:990.832500px;}
.y279{bottom:992.176500px;}
.y4e{bottom:992.625000px;}
.y1b{bottom:996.565500px;}
.yb9{bottom:996.660000px;}
.y80{bottom:996.975000px;}
.y306{bottom:1002.039000px;}
.y2d3{bottom:1002.040500px;}
.yeb{bottom:1002.507000px;}
.y7f{bottom:1006.605000px;}
.y220{bottom:1009.662000px;}
.y299{bottom:1010.289000px;}
.y278{bottom:1011.006000px;}
.y4d{bottom:1011.454500px;}
.yea{bottom:1018.945500px;}
.y2d2{bottom:1019.299500px;}
.y4b{bottom:1030.284000px;}
.y21f{bottom:1032.973500px;}
.y277{bottom:1034.319000px;}
.ye9{bottom:1035.384000px;}
.y4c{bottom:1035.708000px;}
.y1a{bottom:1036.485000px;}
.y2d1{bottom:1036.560000px;}
.y298{bottom:1043.913000px;}
.y4a{bottom:1049.113500px;}
.y21e{bottom:1053.148500px;}
.y2d0{bottom:1053.820500px;}
.ye8{bottom:1059.025500px;}
.y297{bottom:1061.487000px;}
.y19{bottom:1064.728500px;}
.ye7{bottom:1067.244000px;}
.y49{bottom:1067.943000px;}
.y2cf{bottom:1071.081000px;}
.y296{bottom:1079.061000px;}
.y48{bottom:1086.772500px;}
.y2ce{bottom:1088.341500px;}
.y18{bottom:1092.972000px;}
.y47{bottom:1105.602000px;}
.ye6{bottom:1107.082500px;}
.y16{bottom:1136.460000px;}
.y46{bottom:1168.366500px;}
.h21{height:25.285248px;}
.h10{height:28.094532px;}
.h12{height:31.526842px;}
.h9{height:32.565965px;}
.h29{height:37.334628px;}
.h2{height:37.993262px;}
.hb{height:38.734848px;}
.hf{height:41.250077px;}
.h18{height:41.482876px;}
.hd{height:43.038432px;}
.ha{height:43.421105px;}
.h5{height:43.815515px;}
.h16{height:44.062559px;}
.h14{height:44.536816px;}
.h26{height:46.265687px;}
.h23{height:46.763657px;}
.h1e{height:48.468814px;}
.hc{height:48.848947px;}
.h1c{height:48.990498px;}
.h17{height:50.229492px;}
.h3{height:50.700374px;}
.h25{height:52.740967px;}
.he{height:54.276245px;}
.h8{height:54.405312px;}
.h1f{height:55.252441px;}
.h15{height:55.922168px;}
.h7{height:56.424432px;}
.h24{height:58.718276px;}
.h1d{height:61.514385px;}
.h2b{height:61.754947px;}
.h2a{height:61.760947px;}
.h1a{height:62.946077px;}
.h11{height:68.622245px;}
.h19{height:71.608848px;}
.h6{height:77.469696px;}
.h4{height:90.337400px;}
.h28{height:241.918500px;}
.h27{height:277.107075px;}
.h22{height:294.425775px;}
.h1b{height:326.589450px;}
.h20{height:347.955000px;}
.h13{height:374.661000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:197.610918px;}
.w8{width:594.627075px;}
.w6{width:604.011900px;}
.w5{width:606.368100px;}
.w9{width:616.578900px;}
.w7{width:621.017775px;}
.w4{width:654.909255px;}
.w3{width:714.760950px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa2{left:-208.860750px;}
.x9d{left:-203.088375px;}
.x7c{left:-103.031445px;}
.x87{left:-92.879400px;}
.x94{left:-91.308600px;}
.xae{left:-82.668600px;}
.x52{left:-26.116050px;}
.xa3{left:-3.480750px;}
.x0{left:0.000000px;}
.x9e{left:2.291625px;}
.xa4{left:29.972250px;}
.x9f{left:35.744625px;}
.x1{left:53.574000px;}
.x2{left:55.540500px;}
.x3{left:58.774914px;}
.xd5{left:85.848000px;}
.x51{left:88.864050px;}
.xdd{left:96.216000px;}
.xdc{left:97.755000px;}
.x88{left:102.720600px;}
.x95{left:104.291400px;}
.x7d{left:112.128555px;}
.x7b{left:118.788495px;}
.x89{left:134.580600px;}
.x96{left:136.151400px;}
.xad{left:137.955600px;}
.xde{left:139.014000px;}
.x86{left:143.060400px;}
.x93{left:144.239100px;}
.x7e{left:147.174555px;}
.xa1{left:148.930500px;}
.x53{left:169.483950px;}
.x54{left:201.343950px;}
.xe1{left:227.949000px;}
.xe5{left:238.488000px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.xd0{left:263.457000px;}
.x68{left:266.079000px;}
.x6{left:269.914500px;}
.x6a{left:273.738000px;}
.x64{left:279.507000px;}
.x9{left:281.479500px;}
.x65{left:288.600000px;}
.xd3{left:290.229000px;}
.x5f{left:293.325000px;}
.xd9{left:295.755000px;}
.xd8{left:297.295500px;}
.x60{left:303.165000px;}
.x71{left:304.231500px;}
.x7f{left:306.369000px;}
.xe4{left:308.260500px;}
.x8{left:310.282500px;}
.x8a{left:311.316000px;}
.x90{left:312.688500px;}
.xd7{left:314.625000px;}
.x8b{left:321.780000px;}
.x24{left:327.934500px;}
.xba{left:333.750000px;}
.x97{left:337.002000px;}
.x3f{left:338.767500px;}
.x6c{left:341.253000px;}
.x25{left:342.877500px;}
.xc3{left:345.841500px;}
.xbb{left:348.694500px;}
.x40{left:353.712000px;}
.x6d{left:356.197500px;}
.x6e{left:359.895000px;}
.xcb{left:364.507500px;}
.xc4{left:367.023000px;}
.xa8{left:368.152500px;}
.xab{left:369.687000px;}
.x72{left:372.208500px;}
.xcc{left:373.602000px;}
.x6f{left:374.839500px;}
.xc5{left:376.116000px;}
.xa9{left:377.245500px;}
.xac{left:383.506500px;}
.xb0{left:388.249500px;}
.xd1{left:389.920500px;}
.x4{left:391.800000px;}
.x80{left:393.189000px;}
.xc2{left:396.006000px;}
.xb1{left:397.219500px;}
.xd4{left:401.454000px;}
.xd2{left:404.865000px;}
.x21{left:405.918000px;}
.x81{left:408.849000px;}
.x69{left:418.156500px;}
.x22{left:420.862500px;}
.xc{left:423.402000px;}
.xd{left:430.873500px;}
.xe{left:434.685000px;}
.xc8{left:436.009500px;}
.xb5{left:440.478000px;}
.xf{left:442.156500px;}
.x28{left:444.477000px;}
.x44{left:448.348500px;}
.x50{left:450.894000px;}
.xb6{left:455.421000px;}
.xa0{left:457.567500px;}
.x29{left:459.420000px;}
.x73{left:461.562000px;}
.x45{left:463.291500px;}
.x91{left:465.538500px;}
.xc6{left:468.624000px;}
.x92{left:474.631500px;}
.x74{left:477.594000px;}
.x30{left:485.916000px;}
.x3c{left:487.803000px;}
.x5c{left:491.814000px;}
.x83{left:496.224000px;}
.x15{left:501.885000px;}
.x41{left:503.295000px;}
.x31{left:505.431000px;}
.x3d{left:506.557500px;}
.x16{left:509.356500px;}
.x98{left:510.547500px;}
.x58{left:512.955000px;}
.x1f{left:514.591500px;}
.x4c{left:516.102000px;}
.x42{left:518.239500px;}
.x3e{left:521.502000px;}
.x4d{left:525.196500px;}
.x99{left:526.576500px;}
.x20{left:529.536000px;}
.xc7{left:533.719500px;}
.x56{left:534.895500px;}
.x10{left:536.991000px;}
.x11{left:544.464000px;}
.x32{left:548.658000px;}
.x57{left:549.840000px;}
.x8c{left:550.911000px;}
.x66{left:556.240500px;}
.x33{left:558.831000px;}
.x8d{left:559.882500px;}
.x43{left:563.487000px;}
.x34{left:565.189500px;}
.x2a{left:567.420000px;}
.xaa{left:568.707000px;}
.x75{left:570.837000px;}
.x67{left:574.891500px;}
.x76{left:576.321000px;}
.x2b{left:582.364500px;}
.xc0{left:583.435500px;}
.x35{left:584.704500px;}
.x4e{left:586.521000px;}
.x36{left:589.585500px;}
.x46{left:597.277500px;}
.xc1{left:598.378500px;}
.x82{left:599.709000px;}
.x4f{left:601.464000px;}
.x17{left:603.340500px;}
.x37{left:604.530000px;}
.x18{left:610.812000px;}
.x47{left:612.222000px;}
.x38{left:613.549500px;}
.x19{left:614.566500px;}
.x9a{left:615.627000px;}
.xaf{left:617.801400px;}
.x39{left:621.021000px;}
.x1a{left:622.038000px;}
.x3a{left:624.682500px;}
.x70{left:627.897000px;}
.x9b{left:631.656000px;}
.xb7{left:634.672500px;}
.x8f{left:636.468000px;}
.x3b{left:639.625500px;}
.x78{left:646.993500px;}
.xb8{left:649.617000px;}
.xb9{left:653.346000px;}
.x2c{left:654.390000px;}
.x48{left:657.162000px;}
.x63{left:660.490500px;}
.x79{left:664.032000px;}
.x59{left:667.594500px;}
.x2d{left:669.334500px;}
.x49{left:672.105000px;}
.x84{left:673.725000px;}
.x5a{left:675.585000px;}
.x2e{left:676.753500px;}
.x6b{left:678.295500px;}
.xcd{left:684.064500px;}
.x12{left:686.140500px;}
.x85{left:689.752500px;}
.x2f{left:691.698000px;}
.x13{left:693.612000px;}
.xa{left:696.540000px;}
.xb2{left:698.328000px;}
.xce{left:702.820500px;}
.x14{left:704.835000px;}
.xbe{left:711.255000px;}
.xb{left:712.306500px;}
.xbc{left:715.528500px;}
.xcf{left:717.763500px;}
.xd6{left:719.206500px;}
.xe0{left:722.976000px;}
.x55{left:725.023950px;}
.xbf{left:726.199500px;}
.xbd{left:730.473000px;}
.x61{left:739.603500px;}
.xe2{left:741.690000px;}
.xdb{left:743.040000px;}
.x1b{left:746.898000px;}
.xb3{left:748.398000px;}
.x5d{left:750.018000px;}
.x62{left:751.894500px;}
.x1c{left:754.369500px;}
.x1d{left:758.124000px;}
.xa5{left:760.810500px;}
.x5e{left:762.309000px;}
.xb4{left:763.341000px;}
.x1e{left:765.597000px;}
.xc9{left:766.953000px;}
.xe3{left:768.589500px;}
.x8e{left:770.391000px;}
.xca{left:776.046000px;}
.xa6{left:777.402000px;}
.x23{left:779.740500px;}
.xa7{left:785.586000px;}
.xda{left:789.522000px;}
.x77{left:792.606000px;}
.x9c{left:808.846500px;}
.xdf{left:810.339000px;}
.x4a{left:816.951000px;}
.x26{left:818.898000px;}
.x7a{left:825.621000px;}
.x4b{left:831.894000px;}
.x27{left:833.842500px;}
.x5b{left:836.970000px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.898667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.221333pt;}
.ls28{letter-spacing:-0.345547pt;}
.ls41{letter-spacing:-0.329840pt;}
.ls29{letter-spacing:-0.316800pt;}
.ls39{letter-spacing:-0.304000pt;}
.ls46{letter-spacing:-0.240000pt;}
.ls45{letter-spacing:-0.195733pt;}
.ls27{letter-spacing:-0.176000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.058133pt;}
.ls2a{letter-spacing:-0.052096pt;}
.ls3f{letter-spacing:-0.049728pt;}
.ls32{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000015pt;}
.ls4f{letter-spacing:0.000425pt;}
.ls59{letter-spacing:0.000586pt;}
.ls53{letter-spacing:0.000600pt;}
.ls4d{letter-spacing:0.000711pt;}
.ls5b{letter-spacing:0.001173pt;}
.lse{letter-spacing:0.001291pt;}
.ls51{letter-spacing:0.001467pt;}
.ls2{letter-spacing:0.002422pt;}
.ls5a{letter-spacing:0.002826pt;}
.lsf{letter-spacing:0.002868pt;}
.ls56{letter-spacing:0.002912pt;}
.ls7{letter-spacing:0.003100pt;}
.ls14{letter-spacing:0.003925pt;}
.ls55{letter-spacing:0.004120pt;}
.ls47{letter-spacing:0.005760pt;}
.ls13{letter-spacing:0.011200pt;}
.ls20{letter-spacing:0.013024pt;}
.ls2c{letter-spacing:0.016000pt;}
.ls3b{letter-spacing:0.016800pt;}
.ls43{letter-spacing:0.017920pt;}
.ls42{letter-spacing:0.032000pt;}
.ls2b{letter-spacing:0.061333pt;}
.ls1e{letter-spacing:0.067467pt;}
.ls33{letter-spacing:0.080000pt;}
.ls40{letter-spacing:0.084000pt;}
.ls26{letter-spacing:0.088000pt;}
.ls34{letter-spacing:0.096000pt;}
.ls3c{letter-spacing:0.100800pt;}
.ls44{letter-spacing:0.124267pt;}
.ls10{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.168000pt;}
.ls1d{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.482502pt;}
.ls35{letter-spacing:2.320000pt;}
.ls4{letter-spacing:2.665203pt;}
.ls1f{letter-spacing:6.424000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.623733pt;}
.lsc{letter-spacing:10.626533pt;}
.ls8{letter-spacing:10.627100pt;}
.ls9{letter-spacing:10.629067pt;}
.ls4e{letter-spacing:11.843742pt;}
.ls54{letter-spacing:11.904449pt;}
.ls52{letter-spacing:11.921641pt;}
.ls4b{letter-spacing:11.943870pt;}
.ls49{letter-spacing:11.954133pt;}
.ls50{letter-spacing:11.959467pt;}
.ls2e{letter-spacing:12.116060pt;}
.ls58{letter-spacing:12.123231pt;}
.ls23{letter-spacing:12.181366pt;}
.ls21{letter-spacing:12.528078pt;}
.ls4c{letter-spacing:12.531075pt;}
.ls2d{letter-spacing:12.533411pt;}
.ls22{letter-spacing:13.002620pt;}
.ls57{letter-spacing:13.095780pt;}
.ls36{letter-spacing:13.163225pt;}
.ls37{letter-spacing:13.171629pt;}
.ls31{letter-spacing:13.278400pt;}
.ls1a{letter-spacing:13.283733pt;}
.ls15{letter-spacing:13.299999pt;}
.ls3e{letter-spacing:13.302007pt;}
.ls30{letter-spacing:13.315498pt;}
.ls2f{letter-spacing:13.320842pt;}
.ls25{letter-spacing:13.568844pt;}
.ls19{letter-spacing:13.917762pt;}
.ls1c{letter-spacing:13.923096pt;}
.ls16{letter-spacing:14.240776pt;}
.ls24{letter-spacing:14.661825pt;}
.ls3d{letter-spacing:15.184701pt;}
.ls1b{letter-spacing:15.941412pt;}
.ls4a{letter-spacing:16.421271pt;}
.ls38{letter-spacing:18.285354pt;}
.ls17{letter-spacing:19.757116pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.lsa{letter-spacing:57.174803pt;}
.ls48{letter-spacing:83.815733pt;}
.ls18{letter-spacing:135.161600pt;}
.wsd{word-spacing:-92.143556pt;}
.wsb2{word-spacing:-53.440000pt;}
.ws78{word-spacing:-14.763467pt;}
.ws7a{word-spacing:-14.709024pt;}
.ws77{word-spacing:-14.696000pt;}
.ws7b{word-spacing:-14.643904pt;}
.ws76{word-spacing:-14.350453pt;}
.wsaa{word-spacing:-13.978272pt;}
.wsab{word-spacing:-13.698160pt;}
.ws8a{word-spacing:-13.520000pt;}
.wsb1{word-spacing:-13.484267pt;}
.ws88{word-spacing:-13.421333pt;}
.ws4a{word-spacing:-13.360000pt;}
.ws89{word-spacing:-13.312640pt;}
.ws4b{word-spacing:-13.301867pt;}
.ws55{word-spacing:-13.283467pt;}
.ws8b{word-spacing:-13.200000pt;}
.wsb3{word-spacing:-13.164267pt;}
.ws79{word-spacing:-12.883200pt;}
.wsa7{word-spacing:-12.600000pt;}
.wsb0{word-spacing:-12.032000pt;}
.ws8c{word-spacing:-12.000000pt;}
.wscc{word-spacing:-11.955200pt;}
.ws74{word-spacing:-11.880000pt;}
.ws75{word-spacing:-11.704000pt;}
.wsa5{word-spacing:-11.340000pt;}
.wsa6{word-spacing:-11.172000pt;}
.ws48{word-spacing:-10.800000pt;}
.ws49{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.wsc4{word-spacing:-2.794077pt;}
.ws56{word-spacing:-2.709827pt;}
.ws59{word-spacing:-2.656693pt;}
.wsb5{word-spacing:-2.337890pt;}
.ws6f{word-spacing:-2.284756pt;}
.ws2e{word-spacing:-2.125355pt;}
.ws3c{word-spacing:-2.072221pt;}
.ws5b{word-spacing:-2.019087pt;}
.ws50{word-spacing:-1.647150pt;}
.ws9e{word-spacing:-1.594016pt;}
.ws1b{word-spacing:-1.578086pt;}
.wsa0{word-spacing:-1.487748pt;}
.wsc8{word-spacing:-1.482445pt;}
.wsad{word-spacing:-1.434614pt;}
.ws28{word-spacing:-1.328347pt;}
.wsc9{word-spacing:-1.291162pt;}
.ws29{word-spacing:-1.275213pt;}
.ws94{word-spacing:-1.222079pt;}
.ws7c{word-spacing:-1.195520pt;}
.ws92{word-spacing:-1.168945pt;}
.ws34{word-spacing:-1.115811pt;}
.ws70{word-spacing:-1.062677pt;}
.ws17{word-spacing:-1.052058pt;}
.ws3d{word-spacing:-1.009543pt;}
.ws7d{word-spacing:-1.004237pt;}
.ws9b{word-spacing:-0.908595pt;}
.ws36{word-spacing:-0.903276pt;}
.wsd7{word-spacing:-0.860774pt;}
.wsb8{word-spacing:-0.850142pt;}
.ws9c{word-spacing:-0.717312pt;}
.ws26{word-spacing:-0.637606pt;}
.ws32{word-spacing:-0.584473pt;}
.wsa8{word-spacing:-0.573850pt;}
.ws61{word-spacing:-0.531339pt;}
.wsac{word-spacing:-0.478208pt;}
.ws84{word-spacing:-0.478205pt;}
.wsf5{word-spacing:-0.382566pt;}
.ws57{word-spacing:-0.371937pt;}
.wsa9{word-spacing:-0.334746pt;}
.ws4c{word-spacing:-0.318803pt;}
.ws103{word-spacing:-0.286925pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws15{word-spacing:-0.239104pt;}
.ws22{word-spacing:-0.212535pt;}
.ws1a{word-spacing:-0.191283pt;}
.ws35{word-spacing:-0.159402pt;}
.wsd3{word-spacing:-0.143462pt;}
.ws23{word-spacing:-0.106268pt;}
.wsb4{word-spacing:-0.095642pt;}
.wsf{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws10{word-spacing:-0.001318pt;}
.ws66{word-spacing:-0.000990pt;}
.ws1{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.053134pt;}
.ws8e{word-spacing:0.095642pt;}
.ws30{word-spacing:0.106268pt;}
.ws91{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws14{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.wse0{word-spacing:0.239104pt;}
.ws33{word-spacing:0.265669pt;}
.ws31{word-spacing:0.318803pt;}
.wse3{word-spacing:0.334746pt;}
.wsaf{word-spacing:0.371937pt;}
.ws98{word-spacing:0.425071pt;}
.wsdb{word-spacing:0.430387pt;}
.ws11{word-spacing:0.499721pt;}
.wsa4{word-spacing:0.531339pt;}
.ws4d{word-spacing:0.584473pt;}
.ws95{word-spacing:0.637606pt;}
.ws72{word-spacing:0.664000pt;}
.ws87{word-spacing:0.667733pt;}
.wsc5{word-spacing:0.669491pt;}
.wsa1{word-spacing:0.690740pt;}
.ws6c{word-spacing:0.743874pt;}
.ws41{word-spacing:0.797008pt;}
.ws47{word-spacing:0.850142pt;}
.wsf9{word-spacing:0.860774pt;}
.ws39{word-spacing:0.903276pt;}
.ws52{word-spacing:0.956410pt;}
.ws3b{word-spacing:1.009543pt;}
.ws3a{word-spacing:1.062677pt;}
.ws9a{word-spacing:1.115811pt;}
.wsfb{word-spacing:1.147699pt;}
.wsc0{word-spacing:1.168945pt;}
.wsbb{word-spacing:1.275213pt;}
.ws7e{word-spacing:1.372662pt;}
.ws60{word-spacing:1.381481pt;}
.wsae{word-spacing:1.434614pt;}
.ws67{word-spacing:1.540882pt;}
.wse5{word-spacing:1.578086pt;}
.ws6b{word-spacing:1.647150pt;}
.ws2f{word-spacing:1.753418pt;}
.wsff{word-spacing:1.817190pt;}
.ws46{word-spacing:1.859685pt;}
.ws5e{word-spacing:1.912819pt;}
.ws2b{word-spacing:1.965953pt;}
.ws58{word-spacing:2.072221pt;}
.ws86{word-spacing:2.125355pt;}
.ws37{word-spacing:2.178489pt;}
.ws0{word-spacing:2.232481pt;}
.ws2{word-spacing:2.233709pt;}
.wsfd{word-spacing:2.247578pt;}
.ws9f{word-spacing:2.284756pt;}
.ws6d{word-spacing:2.391024pt;}
.ws85{word-spacing:2.444158pt;}
.wsed{word-spacing:2.486682pt;}
.wsb9{word-spacing:2.497292pt;}
.ws71{word-spacing:2.550426pt;}
.wsc1{word-spacing:2.603559pt;}
.wsbc{word-spacing:2.656693pt;}
.wsee{word-spacing:2.677965pt;}
.ws96{word-spacing:2.709827pt;}
.wsba{word-spacing:2.762961pt;}
.wse4{word-spacing:2.861107pt;}
.ws1c{word-spacing:2.861926pt;}
.wseb{word-spacing:2.862404pt;}
.wsd4{word-spacing:2.862822pt;}
.ws100{word-spacing:2.863036pt;}
.wse1{word-spacing:2.865058pt;}
.wsdd{word-spacing:2.869248pt;}
.ws69{word-spacing:2.922363pt;}
.ws3e{word-spacing:2.975497pt;}
.wsb7{word-spacing:3.081764pt;}
.ws21{word-spacing:3.134898pt;}
.ws19{word-spacing:3.156173pt;}
.ws1d{word-spacing:3.188032pt;}
.ws16{word-spacing:3.203994pt;}
.ws93{word-spacing:3.234671pt;}
.wsa3{word-spacing:3.241166pt;}
.ws73{word-spacing:3.347434pt;}
.ws5c{word-spacing:3.400567pt;}
.ws13{word-spacing:3.490918pt;}
.wsb6{word-spacing:3.506835pt;}
.ws97{word-spacing:3.666237pt;}
.ws106{word-spacing:3.682202pt;}
.ws6e{word-spacing:3.719371pt;}
.ws104{word-spacing:3.730022pt;}
.ws53{word-spacing:3.772505pt;}
.ws109{word-spacing:3.777843pt;}
.wsde{word-spacing:3.873485pt;}
.ws9d{word-spacing:3.878772pt;}
.wsc6{word-spacing:3.921306pt;}
.wsbf{word-spacing:3.985040pt;}
.ws108{word-spacing:4.112589pt;}
.ws27{word-spacing:4.144442pt;}
.wsbe{word-spacing:4.197575pt;}
.wsb{word-spacing:4.240070pt;}
.ws24{word-spacing:4.303843pt;}
.wsc{word-spacing:4.314458pt;}
.wse2{word-spacing:4.351693pt;}
.wscd{word-spacing:4.447334pt;}
.ws45{word-spacing:4.516379pt;}
.ws38{word-spacing:4.569513pt;}
.ws51{word-spacing:4.622646pt;}
.ws82{word-spacing:4.675780pt;}
.ws5d{word-spacing:4.728914pt;}
.ws6a{word-spacing:4.782048pt;}
.wsc3{word-spacing:4.877722pt;}
.ws43{word-spacing:4.941450pt;}
.wsa2{word-spacing:4.994583pt;}
.ws62{word-spacing:5.047717pt;}
.ws20{word-spacing:5.100851pt;}
.wsc2{word-spacing:5.212467pt;}
.ws99{word-spacing:5.260253pt;}
.ws90{word-spacing:5.260288pt;}
.ws8f{word-spacing:5.308109pt;}
.ws7f{word-spacing:5.313387pt;}
.ws3f{word-spacing:5.419654pt;}
.ws81{word-spacing:6.004127pt;}
.ws80{word-spacing:6.057261pt;}
.wsfc{word-spacing:6.073242pt;}
.ws5f{word-spacing:6.110395pt;}
.wsd2{word-spacing:6.121062pt;}
.wsc7{word-spacing:6.312346pt;}
.ws54{word-spacing:6.322930pt;}
.ws5a{word-spacing:6.482332pt;}
.ws4f{word-spacing:6.535466pt;}
.ws9{word-spacing:6.918010pt;}
.ws4e{word-spacing:6.960537pt;}
.ws44{word-spacing:7.013670pt;}
.ws68{word-spacing:7.066804pt;}
.ws83{word-spacing:7.226206pt;}
.ws42{word-spacing:7.279340pt;}
.ws3{word-spacing:9.256247pt;}
.ws2c{word-spacing:10.579855pt;}
.ws7{word-spacing:10.823338pt;}
.wse7{word-spacing:11.668275pt;}
.wsf0{word-spacing:11.716096pt;}
.wsdf{word-spacing:11.811738pt;}
.wsd6{word-spacing:11.899998pt;}
.ws101{word-spacing:11.900527pt;}
.wsf7{word-spacing:11.902242pt;}
.wsef{word-spacing:11.902703pt;}
.wsf6{word-spacing:11.903369pt;}
.wsea{word-spacing:11.903573pt;}
.wsd9{word-spacing:11.903633pt;}
.wsf1{word-spacing:11.904119pt;}
.wsd5{word-spacing:11.904299pt;}
.wsda{word-spacing:11.905331pt;}
.wsfe{word-spacing:11.905860pt;}
.ws107{word-spacing:11.906116pt;}
.wscb{word-spacing:11.907379pt;}
.wsf8{word-spacing:11.907575pt;}
.wsf2{word-spacing:11.955200pt;}
.ws102{word-spacing:12.003021pt;}
.wsfa{word-spacing:12.768154pt;}
.ws40{word-spacing:13.230333pt;}
.ws8{word-spacing:14.319536pt;}
.wsca{word-spacing:14.585344pt;}
.wsf3{word-spacing:14.769792pt;}
.wsec{word-spacing:14.770176pt;}
.wse6{word-spacing:14.770509pt;}
.wse9{word-spacing:14.771814pt;}
.wsd8{word-spacing:14.771951pt;}
.wse8{word-spacing:14.772446pt;}
.wsf4{word-spacing:14.773052pt;}
.wsce{word-spacing:14.776627pt;}
.wsd1{word-spacing:14.824448pt;}
.wscf{word-spacing:15.015731pt;}
.wsd0{word-spacing:15.446118pt;}
.wsbd{word-spacing:16.418365pt;}
.wsdc{word-spacing:16.450355pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.ws105{word-spacing:26.397082pt;}
.ws65{word-spacing:67.331686pt;}
.ws63{word-spacing:121.656115pt;}
.ws64{word-spacing:178.625203pt;}
._3b{margin-left:-21.632761pt;}
._e{margin-left:-19.893370pt;}
._3d{margin-left:-18.527474pt;}
._b{margin-left:-17.015634pt;}
._a{margin-left:-16.125738pt;}
._5{margin-left:-7.077478pt;}
._9{margin-left:-5.897859pt;}
._0{margin-left:-4.797974pt;}
._1{margin-left:-3.421811pt;}
._22{margin-left:-2.271194pt;}
._4{margin-left:-1.338970pt;}
._c{width:1.612348pt;}
._6{width:2.666863pt;}
._1d{width:3.659605pt;}
._1e{width:4.793865pt;}
._d{width:5.897822pt;}
._21{width:6.790159pt;}
._23{width:7.721139pt;}
._1f{width:9.225707pt;}
._20{width:10.129173pt;}
._2{width:11.530016pt;}
._16{width:13.180965pt;}
._11{width:14.250598pt;}
._f{width:15.207014pt;}
._12{width:16.588389pt;}
._25{width:17.597933pt;}
._15{width:18.703121pt;}
._13{width:19.712665pt;}
._26{width:20.892233pt;}
._1a{width:22.422492pt;}
._8{width:23.668186pt;}
._10{width:24.723341pt;}
._3a{width:26.194996pt;}
._3{width:27.188522pt;}
._34{width:28.795614pt;}
._14{width:29.861233pt;}
._27{width:31.189580pt;}
._1b{width:32.156612pt;}
._19{width:33.591227pt;}
._24{width:35.918494pt;}
._35{width:38.096982pt;}
._7{width:48.337971pt;}
._3c{width:54.993920pt;}
._2b{width:77.087130pt;}
._2a{width:84.229854pt;}
._2e{width:88.211951pt;}
._32{width:95.328094pt;}
._2d{width:100.167151pt;}
._30{width:107.283294pt;}
._31{width:116.061082pt;}
._2f{width:128.016282pt;}
._29{width:167.994470pt;}
._28{width:210.996941pt;}
._2c{width:304.983637pt;}
._17{width:683.898341pt;}
._39{width:1832.157252pt;}
._1c{width:1853.277252pt;}
._37{width:1923.845732pt;}
._36{width:1946.021732pt;}
._33{width:2038.766212pt;}
._38{width:2240.920267pt;}
._18{width:2262.173600pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs11{font-size:44.688000pt;}
.fsd{font-size:46.816000pt;}
.fs7{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fs13{font-size:50.400000pt;}
.fsf{font-size:52.800000pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs12{font-size:56.112000pt;}
.fse{font-size:58.784000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:118.436447pt;}
.y1df{bottom:-762.179600pt;}
.y232{bottom:-755.906667pt;}
.y1fd{bottom:-755.581400pt;}
.y25b{bottom:-703.666667pt;}
.y25a{bottom:-686.546667pt;}
.y259{bottom:-669.506667pt;}
.y258{bottom:-652.386667pt;}
.y257{bottom:-635.346667pt;}
.y256{bottom:-618.226667pt;}
.y255{bottom:-601.106667pt;}
.y254{bottom:-584.066667pt;}
.y253{bottom:-566.920000pt;}
.y252{bottom:-549.880000pt;}
.y21a{bottom:-544.461400pt;}
.y251{bottom:-532.760000pt;}
.y219{bottom:-526.569400pt;}
.y250{bottom:-515.640000pt;}
.y218{bottom:-508.593400pt;}
.y24f{bottom:-498.600000pt;}
.y217{bottom:-490.617400pt;}
.y24e{bottom:-481.480000pt;}
.y216{bottom:-472.725400pt;}
.y24d{bottom:-464.360000pt;}
.y215{bottom:-454.749400pt;}
.y24c{bottom:-447.320000pt;}
.y19f{bottom:-444.518667pt;}
.y214{bottom:-436.857400pt;}
.y24b{bottom:-430.200000pt;}
.y213{bottom:-418.881400pt;}
.y24a{bottom:-413.160000pt;}
.y1f6{bottom:-412.375600pt;}
.y212{bottom:-400.905400pt;}
.y249{bottom:-396.040000pt;}
.y1f5{bottom:-394.483600pt;}
.y211{bottom:-383.013400pt;}
.y248{bottom:-378.920000pt;}
.y1f4{bottom:-376.507600pt;}
.y1c1{bottom:-372.358667pt;}
.y210{bottom:-365.037400pt;}
.y247{bottom:-361.880000pt;}
.y1f3{bottom:-358.531600pt;}
.y1c0{bottom:-355.318667pt;}
.y20f{bottom:-347.145400pt;}
.y246{bottom:-344.760000pt;}
.y1f2{bottom:-340.639600pt;}
.y1bf{bottom:-338.198667pt;}
.y20e{bottom:-329.169400pt;}
.y245{bottom:-327.720000pt;}
.y1f1{bottom:-322.663600pt;}
.y15b{bottom:-321.638667pt;}
.y1be{bottom:-321.158667pt;}
.y20d{bottom:-311.193400pt;}
.y244{bottom:-310.600000pt;}
.y1f0{bottom:-304.771600pt;}
.y1bd{bottom:-304.038667pt;}
.y243{bottom:-293.480000pt;}
.y20c{bottom:-293.301400pt;}
.y1bc{bottom:-286.918667pt;}
.y1ef{bottom:-286.795600pt;}
.y242{bottom:-276.440000pt;}
.y17e{bottom:-271.798667pt;}
.y20b{bottom:-271.209400pt;}
.y1bb{bottom:-269.852000pt;}
.y1ee{bottom:-268.819600pt;}
.y11d{bottom:-260.876000pt;}
.y241{bottom:-259.320000pt;}
.y17d{bottom:-254.678667pt;}
.y1ba{bottom:-252.732000pt;}
.y1ed{bottom:-250.927600pt;}
.y20a{bottom:-249.033400pt;}
.y240{bottom:-242.280000pt;}
.y17c{bottom:-237.638667pt;}
.y1b9{bottom:-235.612000pt;}
.y1ec{bottom:-232.951600pt;}
.y23f{bottom:-225.160000pt;}
.y17b{bottom:-220.518667pt;}
.y1b8{bottom:-218.572000pt;}
.y1eb{bottom:-214.975600pt;}
.y209{bottom:-214.257400pt;}
.y23e{bottom:-208.013333pt;}
.y17a{bottom:-203.478667pt;}
.y1b7{bottom:-201.452000pt;}
.y1ea{bottom:-197.083600pt;}
.y208{bottom:-196.281400pt;}
.y140{bottom:-195.052000pt;}
.y23d{bottom:-190.973333pt;}
.y179{bottom:-186.358667pt;}
.y1b6{bottom:-184.412000pt;}
.y1e9{bottom:-179.079600pt;}
.y207{bottom:-178.361400pt;}
.y13f{bottom:-176.220000pt;}
.y23c{bottom:-173.853333pt;}
.y178{bottom:-169.238667pt;}
.y1b5{bottom:-167.292000pt;}
.y1e8{bottom:-161.187600pt;}
.y206{bottom:-160.385400pt;}
.y13e{bottom:-157.388000pt;}
.y23b{bottom:-156.733333pt;}
.y177{bottom:-152.198667pt;}
.y1b4{bottom:-150.172000pt;}
.y1e7{bottom:-143.211600pt;}
.y205{bottom:-142.409400pt;}
.y23a{bottom:-139.693333pt;}
.y13d{bottom:-138.644000pt;}
.y176{bottom:-135.052000pt;}
.y1b3{bottom:-133.132000pt;}
.y1e6{bottom:-125.235600pt;}
.y204{bottom:-124.517400pt;}
.y239{bottom:-122.573333pt;}
.y81{bottom:-121.960000pt;}
.y13c{bottom:-119.812000pt;}
.y175{bottom:-118.012000pt;}
.y1b2{bottom:-116.012000pt;}
.y203{bottom:-106.541400pt;}
.y238{bottom:-105.533333pt;}
.y1e5{bottom:-103.143600pt;}
.y13b{bottom:-101.068000pt;}
.y174{bottom:-100.892000pt;}
.y1b1{bottom:-98.972000pt;}
.y202{bottom:-88.649400pt;}
.y13a{bottom:-77.836000pt;}
.y237{bottom:-72.813333pt;}
.y1e4{bottom:-68.787600pt;}
.y173{bottom:-68.172000pt;}
.y1b0{bottom:-66.252000pt;}
.ya1{bottom:-65.080000pt;}
.y236{bottom:-57.373333pt;}
.y201{bottom:-54.293400pt;}
.y172{bottom:-52.732000pt;}
.y1e3{bottom:-52.575600pt;}
.y1af{bottom:-50.732000pt;}
.ya0{bottom:-48.040000pt;}
.y235{bottom:-41.933333pt;}
.y139{bottom:-41.814667pt;}
.y200{bottom:-38.081400pt;}
.y171{bottom:-37.372000pt;}
.y1e2{bottom:-36.363600pt;}
.y1ae{bottom:-35.372000pt;}
.y234{bottom:-26.573333pt;}
.y138{bottom:-24.830667pt;}
.y170{bottom:-21.932000pt;}
.y1ff{bottom:-21.869400pt;}
.y1e1{bottom:-20.235600pt;}
.y1ad{bottom:-20.012000pt;}
.y9f{bottom:-15.320000pt;}
.y233{bottom:-6.653333pt;}
.y137{bottom:-2.830667pt;}
.y16f{bottom:-2.092000pt;}
.y1fe{bottom:-0.953400pt;}
.y1ac{bottom:-0.092000pt;}
.y0{bottom:0.000000pt;}
.y1e0{bottom:0.680400pt;}
.y9e{bottom:4.760000pt;}
.y17{bottom:14.524737pt;}
.y45{bottom:28.346667pt;}
.yb8{bottom:81.480000pt;}
.y157{bottom:82.660000pt;}
.y119{bottom:88.577333pt;}
.y295{bottom:88.668000pt;}
.y26e{bottom:91.718667pt;}
.y15{bottom:93.018667pt;}
.y7c{bottom:94.086667pt;}
.y276{bottom:95.681333pt;}
.yb7{bottom:98.217333pt;}
.y156{bottom:99.397333pt;}
.y19b{bottom:100.445333pt;}
.y294{bottom:104.289333pt;}
.y118{bottom:105.314667pt;}
.y305{bottom:108.233333pt;}
.y26d{bottom:108.456000pt;}
.y14{bottom:108.920000pt;}
.y44{bottom:110.172000pt;}
.y7b{bottom:110.824000pt;}
.y2cd{bottom:111.581333pt;}
.y275{bottom:112.418667pt;}
.yb6{bottom:114.954667pt;}
.y155{bottom:116.134667pt;}
.y19a{bottom:117.182667pt;}
.y293{bottom:119.910667pt;}
.y117{bottom:122.052000pt;}
.y304{bottom:123.576000pt;}
.y13{bottom:124.820000pt;}
.y26c{bottom:125.193333pt;}
.y43{bottom:126.909333pt;}
.y2cc{bottom:126.924000pt;}
.y7a{bottom:127.561333pt;}
.y274{bottom:129.156000pt;}
.yb5{bottom:131.692000pt;}
.y154{bottom:132.872000pt;}
.y199{bottom:133.920000pt;}
.y116{bottom:138.789333pt;}
.y303{bottom:138.918667pt;}
.y12{bottom:140.720000pt;}
.y26b{bottom:141.930667pt;}
.y2cb{bottom:142.266667pt;}
.y292{bottom:143.502667pt;}
.y42{bottom:143.646667pt;}
.y79{bottom:144.298667pt;}
.y273{bottom:145.893333pt;}
.yb4{bottom:148.429333pt;}
.y153{bottom:149.609333pt;}
.y198{bottom:150.657333pt;}
.y302{bottom:154.261333pt;}
.y115{bottom:155.526667pt;}
.y11{bottom:156.621333pt;}
.y2ca{bottom:157.609333pt;}
.y26a{bottom:158.668000pt;}
.y291{bottom:159.124000pt;}
.y41{bottom:160.384000pt;}
.y78{bottom:161.036000pt;}
.ye5{bottom:162.232000pt;}
.y272{bottom:162.630667pt;}
.yb3{bottom:165.166667pt;}
.y152{bottom:166.346667pt;}
.y197{bottom:167.394667pt;}
.y301{bottom:169.604000pt;}
.y10{bottom:172.521333pt;}
.y2c9{bottom:172.952000pt;}
.y290{bottom:174.745333pt;}
.y269{bottom:175.405333pt;}
.y114{bottom:176.249333pt;}
.y40{bottom:177.121333pt;}
.ye4{bottom:178.969333pt;}
.y271{bottom:179.368000pt;}
.y77{bottom:181.758667pt;}
.yb2{bottom:181.904000pt;}
.y151{bottom:183.084000pt;}
.y196{bottom:184.132000pt;}
.y300{bottom:184.946667pt;}
.y2c8{bottom:188.294667pt;}
.yf{bottom:188.421333pt;}
.y28f{bottom:190.366667pt;}
.y268{bottom:192.142667pt;}
.y3f{bottom:193.858667pt;}
.y113{bottom:194.182667pt;}
.ye3{bottom:195.706667pt;}
.y270{bottom:196.105333pt;}
.yb1{bottom:198.641333pt;}
.y76{bottom:199.690667pt;}
.y150{bottom:199.821333pt;}
.y2ff{bottom:200.289333pt;}
.y195{bottom:200.869333pt;}
.y2c7{bottom:203.636000pt;}
.ye{bottom:204.322667pt;}
.y28e{bottom:205.988000pt;}
.y267{bottom:208.880000pt;}
.y3e{bottom:210.596000pt;}
.ye1{bottom:212.444000pt;}
.y26f{bottom:212.841333pt;}
.yb0{bottom:215.378667pt;}
.y2fe{bottom:215.632000pt;}
.y14f{bottom:216.558667pt;}
.ye2{bottom:217.265333pt;}
.y194{bottom:217.606667pt;}
.y2c6{bottom:218.978667pt;}
.y1db{bottom:219.364000pt;}
.y112{bottom:224.070667pt;}
.y266{bottom:225.617333pt;}
.y3d{bottom:227.333333pt;}
.ye0{bottom:229.181333pt;}
.y75{bottom:229.578667pt;}
.y2fd{bottom:230.974667pt;}
.yaf{bottom:232.116000pt;}
.y14e{bottom:233.296000pt;}
.y2c5{bottom:234.321333pt;}
.y193{bottom:234.344000pt;}
.y111{bottom:240.808000pt;}
.y28d{bottom:241.534667pt;}
.y265{bottom:242.354667pt;}
.y3c{bottom:244.070667pt;}
.ydf{bottom:245.918667pt;}
.y74{bottom:246.316000pt;}
.yae{bottom:248.853333pt;}
.y1da{bottom:249.252000pt;}
.y2c4{bottom:249.664000pt;}
.y14d{bottom:250.033333pt;}
.y192{bottom:251.081333pt;}
.y231{bottom:252.253333pt;}
.y110{bottom:257.544000pt;}
.y28c{bottom:258.272000pt;}
.y264{bottom:259.092000pt;}
.y3b{bottom:260.808000pt;}
.y230{bottom:260.813333pt;}
.y2fc{bottom:261.658667pt;}
.yde{bottom:262.656000pt;}
.y73{bottom:263.053333pt;}
.yd{bottom:264.148000pt;}
.y2c3{bottom:265.006667pt;}
.yad{bottom:265.590667pt;}
.y1d9{bottom:265.989333pt;}
.y14c{bottom:266.769333pt;}
.y191{bottom:267.818667pt;}
.y10f{bottom:274.281333pt;}
.y28b{bottom:275.009333pt;}
.y263{bottom:275.829333pt;}
.y2fb{bottom:277.001333pt;}
.y21d{bottom:277.429333pt;}
.y3a{bottom:277.545333pt;}
.ydd{bottom:279.393333pt;}
.y72{bottom:279.790667pt;}
.yc{bottom:280.048000pt;}
.y2c2{bottom:280.349333pt;}
.yac{bottom:282.328000pt;}
.y1d8{bottom:282.726667pt;}
.y14b{bottom:283.506667pt;}
.y190{bottom:284.556000pt;}
.y10e{bottom:291.018667pt;}
.y28a{bottom:291.746667pt;}
.y2fa{bottom:292.344000pt;}
.y262{bottom:292.566667pt;}
.y39{bottom:294.282667pt;}
.y21c{bottom:294.525333pt;}
.y2c1{bottom:295.692000pt;}
.yb{bottom:295.948000pt;}
.ydc{bottom:296.129333pt;}
.y1de{bottom:296.388400pt;}
.y71{bottom:296.528000pt;}
.yab{bottom:299.065333pt;}
.y1d7{bottom:299.464000pt;}
.y14a{bottom:300.244000pt;}
.y18f{bottom:301.293333pt;}
.y1fc{bottom:302.986600pt;}
.y1dd{bottom:305.376400pt;}
.y2f9{bottom:307.686667pt;}
.y10d{bottom:307.756000pt;}
.y289{bottom:308.484000pt;}
.y261{bottom:309.304000pt;}
.y38{bottom:311.020000pt;}
.y2c0{bottom:311.034667pt;}
.y21b{bottom:311.621333pt;}
.ya{bottom:311.849333pt;}
.y1fb{bottom:311.974600pt;}
.ydb{bottom:312.866667pt;}
.y70{bottom:313.265333pt;}
.yaa{bottom:315.802667pt;}
.y1d6{bottom:316.201333pt;}
.y136{bottom:317.049333pt;}
.y18e{bottom:318.030667pt;}
.y149{bottom:320.966667pt;}
.y2f8{bottom:323.029333pt;}
.y10c{bottom:324.493333pt;}
.y288{bottom:325.221333pt;}
.y260{bottom:326.041333pt;}
.y2bf{bottom:326.377333pt;}
.y1ab{bottom:326.974667pt;}
.y37{bottom:327.757333pt;}
.yda{bottom:329.604000pt;}
.y6f{bottom:330.002667pt;}
.y16e{bottom:330.254667pt;}
.ya9{bottom:332.540000pt;}
.y1d5{bottom:332.938667pt;}
.y1fa{bottom:334.214667pt;}
.y18d{bottom:334.768000pt;}
.y9{bottom:335.720000pt;}
.y135{bottom:335.793333pt;}
.y2f7{bottom:338.372000pt;}
.y10b{bottom:341.230667pt;}
.y2be{bottom:341.718667pt;}
.y287{bottom:341.958667pt;}
.y1aa{bottom:344.094667pt;}
.y36{bottom:344.494667pt;}
.yd9{bottom:346.341333pt;}
.y6e{bottom:346.740000pt;}
.y16d{bottom:347.374667pt;}
.ya8{bottom:349.277333pt;}
.y1d4{bottom:349.676000pt;}
.y148{bottom:350.854667pt;}
.y18c{bottom:351.505333pt;}
.y8{bottom:351.620000pt;}
.y9d{bottom:352.146667pt;}
.y2f5{bottom:353.714667pt;}
.y134{bottom:354.654667pt;}
.y25f{bottom:355.877333pt;}
.y2f6{bottom:356.582667pt;}
.y2bd{bottom:357.061333pt;}
.y10a{bottom:357.968000pt;}
.y286{bottom:358.696000pt;}
.y1a9{bottom:361.214667pt;}
.y35{bottom:361.230667pt;}
.yd8{bottom:363.078667pt;}
.y6d{bottom:363.477333pt;}
.y16c{bottom:364.414667pt;}
.ya7{bottom:366.014667pt;}
.y1d3{bottom:366.413333pt;}
.y7{bottom:367.520000pt;}
.y147{bottom:367.592000pt;}
.y18b{bottom:368.241333pt;}
.y2f4{bottom:369.056000pt;}
.y9c{bottom:369.186667pt;}
.y2bc{bottom:372.404000pt;}
.y25e{bottom:372.973333pt;}
.y133{bottom:373.398667pt;}
.y109{bottom:374.705333pt;}
.y285{bottom:375.433333pt;}
.y34{bottom:377.968000pt;}
.y1a8{bottom:378.254667pt;}
.yd7{bottom:379.816000pt;}
.y6c{bottom:380.214667pt;}
.y16b{bottom:381.534667pt;}
.ya6{bottom:382.752000pt;}
.y1d2{bottom:383.150667pt;}
.y6{bottom:383.421333pt;}
.y146{bottom:384.329333pt;}
.y2f3{bottom:384.398667pt;}
.y18a{bottom:384.978667pt;}
.y9b{bottom:386.306667pt;}
.y2bb{bottom:387.746667pt;}
.y25d{bottom:390.069333pt;}
.y108{bottom:391.442667pt;}
.y284{bottom:392.170667pt;}
.y132{bottom:392.230667pt;}
.y32{bottom:394.705333pt;}
.y1a7{bottom:395.374667pt;}
.yd6{bottom:396.553333pt;}
.y6b{bottom:396.952000pt;}
.y16a{bottom:398.654667pt;}
.y5{bottom:399.321333pt;}
.ya5{bottom:399.489333pt;}
.y33{bottom:399.528000pt;}
.y2f2{bottom:399.741333pt;}
.y1d1{bottom:399.888000pt;}
.y145{bottom:401.066667pt;}
.y189{bottom:401.716000pt;}
.y2ba{bottom:403.089333pt;}
.y9a{bottom:403.426667pt;}
.y25c{bottom:407.165333pt;}
.y107{bottom:408.180000pt;}
.y283{bottom:408.908000pt;}
.y131{bottom:411.062667pt;}
.y31{bottom:411.442667pt;}
.y1a6{bottom:412.494667pt;}
.yd5{bottom:413.290667pt;}
.y6a{bottom:413.689333pt;}
.y2f1{bottom:415.084000pt;}
.y4{bottom:415.221333pt;}
.y169{bottom:415.694667pt;}
.ya4{bottom:416.226667pt;}
.y1d0{bottom:416.624000pt;}
.y144{bottom:417.804000pt;}
.y2b9{bottom:418.432000pt;}
.y188{bottom:418.453333pt;}
.y99{bottom:420.466667pt;}
.y106{bottom:424.917333pt;}
.y282{bottom:425.645333pt;}
.y30{bottom:428.180000pt;}
.y1a5{bottom:429.534667pt;}
.y22f{bottom:429.758667pt;}
.y130{bottom:429.806667pt;}
.yd4{bottom:430.028000pt;}
.y69{bottom:430.426667pt;}
.y3{bottom:431.122667pt;}
.y168{bottom:432.814667pt;}
.ya3{bottom:432.964000pt;}
.y2{bottom:433.353333pt;}
.y1cf{bottom:433.361333pt;}
.y2b8{bottom:433.774667pt;}
.y143{bottom:434.541333pt;}
.y187{bottom:435.190667pt;}
.y98{bottom:437.613333pt;}
.y105{bottom:441.654667pt;}
.y2f0{bottom:445.769333pt;}
.y281{bottom:446.366667pt;}
.y1a4{bottom:446.654667pt;}
.yd3{bottom:446.765333pt;}
.y1{bottom:447.022667pt;}
.y68{bottom:447.164000pt;}
.y12f{bottom:448.638667pt;}
.y2f{bottom:448.902667pt;}
.y2b7{bottom:449.117333pt;}
.y167{bottom:449.854667pt;}
.y1ce{bottom:450.098667pt;}
.y186{bottom:451.928000pt;}
.y97{bottom:454.653333pt;}
.y104{bottom:458.392000pt;}
.ya2{bottom:460.469333pt;}
.y2ef{bottom:461.112000pt;}
.y280{bottom:463.104000pt;}
.yd2{bottom:463.502667pt;}
.y1a3{bottom:463.694667pt;}
.y67{bottom:463.901333pt;}
.y142{bottom:464.377333pt;}
.y2b6{bottom:464.458667pt;}
.y1cd{bottom:466.836000pt;}
.y166{bottom:466.974667pt;}
.y12e{bottom:467.382667pt;}
.y185{bottom:468.665333pt;}
.y96{bottom:471.773333pt;}
.y103{bottom:475.129333pt;}
.y2ee{bottom:476.454667pt;}
.y2b5{bottom:479.801333pt;}
.y27f{bottom:479.841333pt;}
.yd1{bottom:480.240000pt;}
.y66{bottom:480.638667pt;}
.y1a2{bottom:480.841333pt;}
.y141{bottom:481.473333pt;}
.y7e{bottom:483.062667pt;}
.y1cc{bottom:483.573333pt;}
.y165{bottom:484.094667pt;}
.y184{bottom:485.402667pt;}
.y12d{bottom:486.214667pt;}
.y95{bottom:488.893333pt;}
.y2ed{bottom:491.797333pt;}
.y102{bottom:491.866667pt;}
.y2b4{bottom:495.144000pt;}
.y27e{bottom:496.578667pt;}
.yd0{bottom:496.977333pt;}
.y65{bottom:497.376000pt;}
.y1a1{bottom:497.961333pt;}
.y1cb{bottom:500.310667pt;}
.y164{bottom:501.134667pt;}
.y183{bottom:502.140000pt;}
.y11a{bottom:504.066667pt;}
.y12c{bottom:505.046667pt;}
.y94{bottom:505.933333pt;}
.y2ec{bottom:507.138667pt;}
.y101{bottom:508.604000pt;}
.y2b3{bottom:510.486667pt;}
.y27d{bottom:513.316000pt;}
.ycf{bottom:513.714667pt;}
.y64{bottom:514.113333pt;}
.y1a0{bottom:515.001333pt;}
.y2e{bottom:515.702667pt;}
.y1ca{bottom:517.048000pt;}
.y163{bottom:518.254667pt;}
.y2ea{bottom:522.481333pt;}
.y93{bottom:523.053333pt;}
.y12b{bottom:523.790667pt;}
.y100{bottom:525.341333pt;}
.y2eb{bottom:525.350667pt;}
.y2b2{bottom:525.829333pt;}
.y27c{bottom:530.053333pt;}
.yce{bottom:530.452000pt;}
.y63{bottom:530.850667pt;}
.y182{bottom:531.976000pt;}
.y1c9{bottom:533.785333pt;}
.y162{bottom:535.374667pt;}
.y2e9{bottom:537.824000pt;}
.y92{bottom:540.093333pt;}
.y2b1{bottom:541.172000pt;}
.yff{bottom:542.078667pt;}
.y12a{bottom:542.622667pt;}
.y27b{bottom:546.790667pt;}
.ycd{bottom:547.189333pt;}
.y62{bottom:547.588000pt;}
.y2d{bottom:548.938667pt;}
.y181{bottom:549.072000pt;}
.y1c8{bottom:550.522667pt;}
.y161{bottom:552.414667pt;}
.y2e8{bottom:553.166667pt;}
.y2af{bottom:556.514667pt;}
.y2b0{bottom:556.700000pt;}
.y91{bottom:557.213333pt;}
.yfe{bottom:558.816000pt;}
.y129{bottom:561.366667pt;}
.y19e{bottom:563.641333pt;}
.ycc{bottom:563.926667pt;}
.y61{bottom:564.325333pt;}
.y180{bottom:566.168000pt;}
.y2c{bottom:566.233333pt;}
.y1c7{bottom:567.260000pt;}
.y27a{bottom:567.513333pt;}
.y2e7{bottom:568.509333pt;}
.y160{bottom:569.534667pt;}
.y2ae{bottom:571.857333pt;}
.y19d{bottom:572.201333pt;}
.y90{bottom:574.333333pt;}
.yfd{bottom:575.553333pt;}
.y128{bottom:580.198667pt;}
.ycb{bottom:580.664000pt;}
.y60{bottom:581.062667pt;}
.y17f{bottom:583.264000pt;}
.y2b{bottom:583.528000pt;}
.y2e6{bottom:583.852000pt;}
.y1c6{bottom:583.997333pt;}
.y15f{bottom:586.574667pt;}
.y2ad{bottom:587.200000pt;}
.y8f{bottom:591.373333pt;}
.yfc{bottom:592.290667pt;}
.yca{bottom:597.401333pt;}
.y5f{bottom:597.800000pt;}
.y127{bottom:599.030667pt;}
.y2e5{bottom:599.194667pt;}
.y1f9{bottom:600.410667pt;}
.y2a{bottom:600.824000pt;}
.y2ac{bottom:602.541333pt;}
.y15e{bottom:603.721333pt;}
.y158{bottom:605.857333pt;}
.y8e{bottom:608.493333pt;}
.yfb{bottom:609.028000pt;}
.y1c5{bottom:612.866667pt;}
.yc9{bottom:614.138667pt;}
.y5e{bottom:614.537333pt;}
.y1f8{bottom:617.506667pt;}
.y126{bottom:617.774667pt;}
.y2ab{bottom:617.884000pt;}
.y29{bottom:618.118667pt;}
.y15d{bottom:620.841333pt;}
.y8d{bottom:625.533333pt;}
.yfa{bottom:625.765333pt;}
.y2e4{bottom:629.878667pt;}
.y1c4{bottom:629.962667pt;}
.yc8{bottom:630.876000pt;}
.y5d{bottom:631.274667pt;}
.y2aa{bottom:633.226667pt;}
.y1f7{bottom:634.601333pt;}
.y28{bottom:635.414667pt;}
.y125{bottom:636.606667pt;}
.y15c{bottom:637.881333pt;}
.yf9{bottom:642.502667pt;}
.y8c{bottom:642.653333pt;}
.y2e3{bottom:645.221333pt;}
.y1c3{bottom:647.058667pt;}
.yc7{bottom:647.613333pt;}
.y5c{bottom:648.012000pt;}
.y2a9{bottom:648.569333pt;}
.y27{bottom:652.709333pt;}
.y124{bottom:655.438667pt;}
.y1dc{bottom:657.196000pt;}
.yf8{bottom:659.240000pt;}
.y8b{bottom:659.773333pt;}
.y2e2{bottom:660.564000pt;}
.y22e{bottom:663.154667pt;}
.y2a8{bottom:663.912000pt;}
.y1c2{bottom:664.154667pt;}
.yc6{bottom:664.350667pt;}
.y5b{bottom:664.749333pt;}
.y26{bottom:670.004000pt;}
.y123{bottom:674.182667pt;}
.y2e1{bottom:675.906667pt;}
.y8a{bottom:676.813333pt;}
.y2a7{bottom:679.254667pt;}
.y22d{bottom:679.892000pt;}
.yf7{bottom:679.961333pt;}
.yc5{bottom:681.088000pt;}
.y5a{bottom:681.485333pt;}
.y15a{bottom:686.521333pt;}
.y19c{bottom:686.748000pt;}
.y25{bottom:687.300000pt;}
.y2e0{bottom:691.249333pt;}
.y122{bottom:693.014667pt;}
.y89{bottom:693.933333pt;}
.y2a6{bottom:694.597333pt;}
.y159{bottom:695.081333pt;}
.y22c{bottom:696.629333pt;}
.yc4{bottom:697.825333pt;}
.y59{bottom:698.222667pt;}
.y24{bottom:704.594667pt;}
.y2df{bottom:706.592000pt;}
.y2a5{bottom:709.940000pt;}
.y88{bottom:711.053333pt;}
.y121{bottom:711.758667pt;}
.y22b{bottom:713.366667pt;}
.yc3{bottom:714.562667pt;}
.y58{bottom:714.960000pt;}
.yf6{bottom:717.582667pt;}
.y23{bottom:721.889333pt;}
.y2de{bottom:721.934667pt;}
.y2a4{bottom:725.281333pt;}
.y87{bottom:728.093333pt;}
.y22a{bottom:730.104000pt;}
.y120{bottom:730.590667pt;}
.yc2{bottom:731.300000pt;}
.y57{bottom:731.697333pt;}
.yf5{bottom:732.194667pt;}
.y2dd{bottom:737.277333pt;}
.y2a3{bottom:740.624000pt;}
.y86{bottom:745.213333pt;}
.yf4{bottom:746.806667pt;}
.y229{bottom:746.841333pt;}
.yc1{bottom:748.036000pt;}
.y56{bottom:748.434667pt;}
.y2dc{bottom:752.620000pt;}
.y11f{bottom:753.764000pt;}
.y2a2{bottom:755.966667pt;}
.y22{bottom:756.188000pt;}
.yf3{bottom:761.418667pt;}
.y85{bottom:762.253333pt;}
.y228{bottom:763.578667pt;}
.yc0{bottom:764.773333pt;}
.y55{bottom:765.172000pt;}
.y2db{bottom:767.961333pt;}
.y2a1{bottom:771.309333pt;}
.y21{bottom:774.392000pt;}
.y11e{bottom:776.996000pt;}
.y84{bottom:779.373333pt;}
.y227{bottom:780.316000pt;}
.ybf{bottom:781.510667pt;}
.y54{bottom:781.909333pt;}
.yf2{bottom:782.432000pt;}
.y2da{bottom:783.304000pt;}
.y2a0{bottom:786.652000pt;}
.y20{bottom:788.738667pt;}
.yf1{bottom:797.044000pt;}
.y226{bottom:797.053333pt;}
.ybe{bottom:798.248000pt;}
.y53{bottom:798.646667pt;}
.y1f{bottom:799.226667pt;}
.y83{bottom:800.440000pt;}
.y29f{bottom:801.994667pt;}
.y309{bottom:809.937333pt;}
.yf0{bottom:811.656000pt;}
.y225{bottom:813.790667pt;}
.y2d8{bottom:813.989333pt;}
.y2d9{bottom:814.174667pt;}
.ybd{bottom:814.985333pt;}
.y52{bottom:815.384000pt;}
.y29e{bottom:817.337333pt;}
.y1e{bottom:817.430667pt;}
.y82{bottom:821.560000pt;}
.y308{bottom:825.280000pt;}
.yef{bottom:826.268000pt;}
.y1d{bottom:827.920000pt;}
.y2d7{bottom:829.332000pt;}
.y224{bottom:830.528000pt;}
.ybc{bottom:831.722667pt;}
.y51{bottom:832.121333pt;}
.y29d{bottom:832.680000pt;}
.y307{bottom:840.622667pt;}
.yee{bottom:840.880000pt;}
.y2d6{bottom:844.674667pt;}
.y1c{bottom:846.122667pt;}
.y223{bottom:847.265333pt;}
.y29c{bottom:848.022667pt;}
.y11c{bottom:848.100000pt;}
.ybb{bottom:848.460000pt;}
.y50{bottom:848.858667pt;}
.y11b{bottom:857.516000pt;}
.y2d5{bottom:860.017333pt;}
.yed{bottom:861.893333pt;}
.y29b{bottom:863.364000pt;}
.y222{bottom:864.002667pt;}
.yba{bottom:865.197333pt;}
.y4f{bottom:865.596000pt;}
.y7d{bottom:870.417333pt;}
.y2d4{bottom:875.360000pt;}
.yec{bottom:876.505333pt;}
.y29a{bottom:878.706667pt;}
.y221{bottom:880.740000pt;}
.y279{bottom:881.934667pt;}
.y4e{bottom:882.333333pt;}
.y1b{bottom:885.836000pt;}
.yb9{bottom:885.920000pt;}
.y80{bottom:886.200000pt;}
.y306{bottom:890.701333pt;}
.y2d3{bottom:890.702667pt;}
.yeb{bottom:891.117333pt;}
.y7f{bottom:894.760000pt;}
.y220{bottom:897.477333pt;}
.y299{bottom:898.034667pt;}
.y278{bottom:898.672000pt;}
.y4d{bottom:899.070667pt;}
.yea{bottom:905.729333pt;}
.y2d2{bottom:906.044000pt;}
.y4b{bottom:915.808000pt;}
.y21f{bottom:918.198667pt;}
.y277{bottom:919.394667pt;}
.ye9{bottom:920.341333pt;}
.y4c{bottom:920.629333pt;}
.y1a{bottom:921.320000pt;}
.y2d1{bottom:921.386667pt;}
.y298{bottom:927.922667pt;}
.y4a{bottom:932.545333pt;}
.y21e{bottom:936.132000pt;}
.y2d0{bottom:936.729333pt;}
.ye8{bottom:941.356000pt;}
.y297{bottom:943.544000pt;}
.y19{bottom:946.425333pt;}
.ye7{bottom:948.661333pt;}
.y49{bottom:949.282667pt;}
.y2cf{bottom:952.072000pt;}
.y296{bottom:959.165333pt;}
.y48{bottom:966.020000pt;}
.y2ce{bottom:967.414667pt;}
.y18{bottom:971.530667pt;}
.y47{bottom:982.757333pt;}
.ye6{bottom:984.073333pt;}
.y16{bottom:1010.186667pt;}
.y46{bottom:1038.548000pt;}
.h21{height:22.475776pt;}
.h10{height:24.972917pt;}
.h12{height:28.023859pt;}
.h9{height:28.947524pt;}
.h29{height:33.186336pt;}
.h2{height:33.771789pt;}
.hb{height:34.430976pt;}
.hf{height:36.666735pt;}
.h18{height:36.873667pt;}
.hd{height:38.256384pt;}
.ha{height:38.596538pt;}
.h5{height:38.947124pt;}
.h16{height:39.166719pt;}
.h14{height:39.588281pt;}
.h26{height:41.125055pt;}
.h23{height:41.567695pt;}
.h1e{height:43.083391pt;}
.hc{height:43.421286pt;}
.h1c{height:43.547109pt;}
.h17{height:44.648438pt;}
.h3{height:45.066999pt;}
.h25{height:46.880859pt;}
.he{height:48.245551pt;}
.h8{height:48.360277pt;}
.h1f{height:49.113281pt;}
.h15{height:49.708594pt;}
.h7{height:50.155051pt;}
.h24{height:52.194023pt;}
.h1d{height:54.679453pt;}
.h2b{height:54.893286pt;}
.h2a{height:54.898620pt;}
.h1a{height:55.952068pt;}
.h11{height:60.997551pt;}
.h19{height:63.652309pt;}
.h6{height:68.861952pt;}
.h4{height:80.299911pt;}
.h28{height:215.038667pt;}
.h27{height:246.317400pt;}
.h22{height:261.711800pt;}
.h1b{height:290.301733pt;}
.h20{height:309.293333pt;}
.h13{height:333.032000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:175.654149pt;}
.w8{width:528.557400pt;}
.w6{width:536.899467pt;}
.w5{width:538.993867pt;}
.w9{width:548.070133pt;}
.w7{width:552.015800pt;}
.w4{width:582.141560pt;}
.w3{width:635.343067pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa2{left:-185.654000pt;}
.x9d{left:-180.523000pt;}
.x7c{left:-91.583507pt;}
.x87{left:-82.559467pt;}
.x94{left:-81.163200pt;}
.xae{left:-73.483200pt;}
.x52{left:-23.214267pt;}
.xa3{left:-3.094000pt;}
.x0{left:0.000000pt;}
.x9e{left:2.037000pt;}
.xa4{left:26.642000pt;}
.x9f{left:31.773000pt;}
.x1{left:47.621333pt;}
.x2{left:49.369333pt;}
.x3{left:52.244368pt;}
.xd5{left:76.309333pt;}
.x51{left:78.990267pt;}
.xdd{left:85.525333pt;}
.xdc{left:86.893333pt;}
.x88{left:91.307200pt;}
.x95{left:92.703467pt;}
.x7d{left:99.669827pt;}
.x7b{left:105.589773pt;}
.x89{left:119.627200pt;}
.x96{left:121.023467pt;}
.xad{left:122.627200pt;}
.xde{left:123.568000pt;}
.x86{left:127.164800pt;}
.x93{left:128.212533pt;}
.x7e{left:130.821827pt;}
.xa1{left:132.382667pt;}
.x53{left:150.652400pt;}
.x54{left:178.972400pt;}
.xe1{left:202.621333pt;}
.xe5{left:211.989333pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.xd0{left:234.184000pt;}
.x68{left:236.514667pt;}
.x6{left:239.924000pt;}
.x6a{left:243.322667pt;}
.x64{left:248.450667pt;}
.x9{left:250.204000pt;}
.x65{left:256.533333pt;}
.xd3{left:257.981333pt;}
.x5f{left:260.733333pt;}
.xd9{left:262.893333pt;}
.xd8{left:264.262667pt;}
.x60{left:269.480000pt;}
.x71{left:270.428000pt;}
.x7f{left:272.328000pt;}
.xe4{left:274.009333pt;}
.x8{left:275.806667pt;}
.x8a{left:276.725333pt;}
.x90{left:277.945333pt;}
.xd7{left:279.666667pt;}
.x8b{left:286.026667pt;}
.x24{left:291.497333pt;}
.xba{left:296.666667pt;}
.x97{left:299.557333pt;}
.x3f{left:301.126667pt;}
.x6c{left:303.336000pt;}
.x25{left:304.780000pt;}
.xc3{left:307.414667pt;}
.xbb{left:309.950667pt;}
.x40{left:314.410667pt;}
.x6d{left:316.620000pt;}
.x6e{left:319.906667pt;}
.xcb{left:324.006667pt;}
.xc4{left:326.242667pt;}
.xa8{left:327.246667pt;}
.xab{left:328.610667pt;}
.x72{left:330.852000pt;}
.xcc{left:332.090667pt;}
.x6f{left:333.190667pt;}
.xc5{left:334.325333pt;}
.xa9{left:335.329333pt;}
.xac{left:340.894667pt;}
.xb0{left:345.110667pt;}
.xd1{left:346.596000pt;}
.x4{left:348.266667pt;}
.x80{left:349.501333pt;}
.xc2{left:352.005333pt;}
.xb1{left:353.084000pt;}
.xd4{left:356.848000pt;}
.xd2{left:359.880000pt;}
.x21{left:360.816000pt;}
.x81{left:363.421333pt;}
.x69{left:371.694667pt;}
.x22{left:374.100000pt;}
.xc{left:376.357333pt;}
.xd{left:382.998667pt;}
.xe{left:386.386667pt;}
.xc8{left:387.564000pt;}
.xb5{left:391.536000pt;}
.xf{left:393.028000pt;}
.x28{left:395.090667pt;}
.x44{left:398.532000pt;}
.x50{left:400.794667pt;}
.xb6{left:404.818667pt;}
.xa0{left:406.726667pt;}
.x29{left:408.373333pt;}
.x73{left:410.277333pt;}
.x45{left:411.814667pt;}
.x91{left:413.812000pt;}
.xc6{left:416.554667pt;}
.x92{left:421.894667pt;}
.x74{left:424.528000pt;}
.x30{left:431.925333pt;}
.x3c{left:433.602667pt;}
.x5c{left:437.168000pt;}
.x83{left:441.088000pt;}
.x15{left:446.120000pt;}
.x41{left:447.373333pt;}
.x31{left:449.272000pt;}
.x3d{left:450.273333pt;}
.x16{left:452.761333pt;}
.x98{left:453.820000pt;}
.x58{left:455.960000pt;}
.x1f{left:457.414667pt;}
.x4c{left:458.757333pt;}
.x42{left:460.657333pt;}
.x3e{left:463.557333pt;}
.x4d{left:466.841333pt;}
.x99{left:468.068000pt;}
.x20{left:470.698667pt;}
.xc7{left:474.417333pt;}
.x56{left:475.462667pt;}
.x10{left:477.325333pt;}
.x11{left:483.968000pt;}
.x32{left:487.696000pt;}
.x57{left:488.746667pt;}
.x8c{left:489.698667pt;}
.x66{left:494.436000pt;}
.x33{left:496.738667pt;}
.x8d{left:497.673333pt;}
.x43{left:500.877333pt;}
.x34{left:502.390667pt;}
.x2a{left:504.373333pt;}
.xaa{left:505.517333pt;}
.x75{left:507.410667pt;}
.x67{left:511.014667pt;}
.x76{left:512.285333pt;}
.x2b{left:517.657333pt;}
.xc0{left:518.609333pt;}
.x35{left:519.737333pt;}
.x4e{left:521.352000pt;}
.x36{left:524.076000pt;}
.x46{left:530.913333pt;}
.xc1{left:531.892000pt;}
.x82{left:533.074667pt;}
.x4f{left:534.634667pt;}
.x17{left:536.302667pt;}
.x37{left:537.360000pt;}
.x18{left:542.944000pt;}
.x47{left:544.197333pt;}
.x38{left:545.377333pt;}
.x19{left:546.281333pt;}
.x9a{left:547.224000pt;}
.xaf{left:549.156800pt;}
.x39{left:552.018667pt;}
.x1a{left:552.922667pt;}
.x3a{left:555.273333pt;}
.x70{left:558.130667pt;}
.x9b{left:561.472000pt;}
.xb7{left:564.153333pt;}
.x8f{left:565.749333pt;}
.x3b{left:568.556000pt;}
.x78{left:575.105333pt;}
.xb8{left:577.437333pt;}
.xb9{left:580.752000pt;}
.x2c{left:581.680000pt;}
.x48{left:584.144000pt;}
.x63{left:587.102667pt;}
.x79{left:590.250667pt;}
.x59{left:593.417333pt;}
.x2d{left:594.964000pt;}
.x49{left:597.426667pt;}
.x84{left:598.866667pt;}
.x5a{left:600.520000pt;}
.x2e{left:601.558667pt;}
.x6b{left:602.929333pt;}
.xcd{left:608.057333pt;}
.x12{left:609.902667pt;}
.x85{left:613.113333pt;}
.x2f{left:614.842667pt;}
.x13{left:616.544000pt;}
.xa{left:619.146667pt;}
.xb2{left:620.736000pt;}
.xce{left:624.729333pt;}
.x14{left:626.520000pt;}
.xbe{left:632.226667pt;}
.xb{left:633.161333pt;}
.xbc{left:636.025333pt;}
.xcf{left:638.012000pt;}
.xd6{left:639.294667pt;}
.xe0{left:642.645333pt;}
.x55{left:644.465733pt;}
.xbf{left:645.510667pt;}
.xbd{left:649.309333pt;}
.x61{left:657.425333pt;}
.xe2{left:659.280000pt;}
.xdb{left:660.480000pt;}
.x1b{left:663.909333pt;}
.xb3{left:665.242667pt;}
.x5d{left:666.682667pt;}
.x62{left:668.350667pt;}
.x1c{left:670.550667pt;}
.x1d{left:673.888000pt;}
.xa5{left:676.276000pt;}
.x5e{left:677.608000pt;}
.xb4{left:678.525333pt;}
.x1e{left:680.530667pt;}
.xc9{left:681.736000pt;}
.xe3{left:683.190667pt;}
.x8e{left:684.792000pt;}
.xca{left:689.818667pt;}
.xa6{left:691.024000pt;}
.x23{left:693.102667pt;}
.xa7{left:698.298667pt;}
.xda{left:701.797333pt;}
.x77{left:704.538667pt;}
.x9c{left:718.974667pt;}
.xdf{left:720.301333pt;}
.x4a{left:726.178667pt;}
.x26{left:727.909333pt;}
.x7a{left:733.885333pt;}
.x4b{left:739.461333pt;}
.x27{left:741.193333pt;}
.x5b{left:743.973333pt;}
}




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