
    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_eb9876119498cc65f12acb5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d2237ea9cb9081d09d0c9b01.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_04c56d41e77b5663c0af6a81.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065581;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_714d1e8a441061665cdd7db6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0c6a8bef81501f1c8d1bd9ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.146000;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_dcf5e805c51e2fa2b5fe9d70.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;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_c59e0e28e727eea4198a570d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.126000;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_4f42bf7a9b135494806c4e67.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.607000;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_79c7087444fde28bf18c45f1.woff2')format("woff");}.fff{font-family:fff;line-height:1.328000;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_3c7ee055f300813bd5d0f519.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.144000;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_6a69ebbf9112ecf2d34263cb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ff4b7077a49cb98601d61e91.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_12b5e3c8b9ea96aeddecf828.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_93af93b094f08bad55f80ade.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_9f558ffbd2861ad959b77a60.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.266000;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_1fa1b626ca2d067ca2d4e018.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_ef5447245d5940d087992ab5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.698000;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_6eb276fd1713963736ea5e77.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.266000;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_f8bdefbac5c66c0a400949c4.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.690000;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_4894906056d3be78851f7c00.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.706000;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_986236e018ffac1e5cb135ce.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_97fe3a84b4c66f1411de1d70.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.698000;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_50772431d11771769ecf6fe4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.698000;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_258f0edfe0ba23cfa2de6cfa.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.690000;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_9e4c19e08fe1a3366c20e5e0.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.702000;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_0217cf2503ed6ef8b8bf91fb.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.817000;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_23a878e931d1d249372f24ee.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.702000;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_6a3d433e07fe190978386321.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.702000;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_e68b8758e25dabb852ae90ab.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.690000;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_9b25ba9c4ad00e74fecfba83.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.698000;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_accd57e613aabcb37ae22630.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_7aaf05b46d2311f1acab3df6.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_21c38de31feb1377a0c1c8d3.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.829000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_ef253a4c01a88a7443212263.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.690000;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:ff29;src:url('chunks/assets/font_1f5dcd3f6121c4c128862941.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.690000;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:ff2a;src:url('chunks/assets/font_43341fbca9108c65fd09ddcb.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.690000;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:ff2b;src:url('chunks/assets/font_9c6aafdf2a15c8b40e01a3ce.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.702000;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:ff2c;src:url('chunks/assets/font_dcebc8f61b42664c1e7631f2.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.690000;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:ff2d;src:url('chunks/assets/font_c830c95797b283ec32c06363.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.702000;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:ff2e;src:url('chunks/assets/font_912b415bb92754ebf7134a4b.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.702000;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:ff2f;src:url('chunks/assets/font_144cf554912423ebbbb8cc05.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.851000;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:ff30;src:url('chunks/assets/font_779cf43f9886b6ce15f74061.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.451000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.199982px;}
.v3{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.140073px;}
.v1{vertical-align:24.000000px;}
.v5{vertical-align:56.976000px;}
.ls10{letter-spacing:-3.984000px;}
.ls17{letter-spacing:-3.168000px;}
.lsf{letter-spacing:-2.592000px;}
.lsc{letter-spacing:-1.344000px;}
.ls16{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.624000px;}
.ls19{letter-spacing:-0.384000px;}
.ls8{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.096000px;}
.ls27{letter-spacing:0.192000px;}
.ls20{letter-spacing:0.384000px;}
.ls7{letter-spacing:0.666000px;}
.ls2f{letter-spacing:0.671989px;}
.ls30{letter-spacing:0.671991px;}
.ls2b{letter-spacing:0.672000px;}
.ls2d{letter-spacing:0.676800px;}
.ls21{letter-spacing:0.686453px;}
.ls2{letter-spacing:0.726000px;}
.ls26{letter-spacing:0.768000px;}
.ls3{letter-spacing:0.780000px;}
.ls6{letter-spacing:0.839993px;}
.ls1{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.846000px;}
.ls15{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.200000px;}
.ls13{letter-spacing:1.265981px;}
.ls14{letter-spacing:1.320000px;}
.ls24{letter-spacing:1.358400px;}
.ls2c{letter-spacing:1.440000px;}
.ls31{letter-spacing:1.780777px;}
.ls1f{letter-spacing:2.208053px;}
.ls11{letter-spacing:2.460000px;}
.ls33{letter-spacing:2.592000px;}
.ls29{letter-spacing:3.268853px;}
.ls12{letter-spacing:3.540000px;}
.ls2a{letter-spacing:4.036862px;}
.ls23{letter-spacing:4.329570px;}
.ls1d{letter-spacing:4.617582px;}
.ls9{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.203253px;}
.ls1c{letter-spacing:5.774453px;}
.ls32{letter-spacing:7.017518px;}
.ls22{letter-spacing:7.814400px;}
.ls28{letter-spacing:7.824000px;}
.ls2e{letter-spacing:8.884860px;}
.ls1b{letter-spacing:13.252772px;}
.lse{letter-spacing:13.344000px;}
.lsd{letter-spacing:16.224000px;}
.ls1a{letter-spacing:19.024754px;}
.ls34{letter-spacing:25.828800px;}
.lsb{letter-spacing:319.008000px;}
.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;}
}
.ws1b{word-spacing:-15.840000px;}
.ws98{word-spacing:-15.000000px;}
.ws41{word-spacing:-13.332000px;}
.ws166{word-spacing:-12.672000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.wsb9{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.wscc{word-spacing:-11.340000px;}
.ws97{word-spacing:-10.500000px;}
.wsba{word-spacing:-9.984000px;}
.ws2{word-spacing:-9.408000px;}
.ws119{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.wsc0{word-spacing:-8.016000px;}
.wsbc{word-spacing:-6.000000px;}
.ws1c{word-spacing:-1.890000px;}
.wsc{word-spacing:-1.440000px;}
.wsa9{word-spacing:-1.320000px;}
.wsb1{word-spacing:-1.200000px;}
.ws27{word-spacing:-0.960000px;}
.ws72{word-spacing:-0.900000px;}
.ws22{word-spacing:-0.840000px;}
.ws1e{word-spacing:-0.780000px;}
.ws15c{word-spacing:-0.768000px;}
.wsdc{word-spacing:-0.720000px;}
.ws16e{word-spacing:-0.672000px;}
.wsaf{word-spacing:-0.660000px;}
.ws14b{word-spacing:-0.624000px;}
.ws17{word-spacing:-0.600000px;}
.ws61{word-spacing:-0.540000px;}
.ws132{word-spacing:-0.528000px;}
.ws15{word-spacing:-0.480000px;}
.ws105{word-spacing:-0.420000px;}
.ws67{word-spacing:-0.360000px;}
.ws144{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.240000px;}
.wsbd{word-spacing:-0.192000px;}
.ws8{word-spacing:-0.180000px;}
.ws145{word-spacing:-0.144000px;}
.ws10{word-spacing:-0.120000px;}
.ws165{word-spacing:-0.096000px;}
.ws3d{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws2a{word-spacing:0.060000px;}
.wsc3{word-spacing:0.120000px;}
.ws14e{word-spacing:0.144000px;}
.ws82{word-spacing:0.180000px;}
.ws14f{word-spacing:0.192000px;}
.wse8{word-spacing:0.240000px;}
.ws148{word-spacing:0.288000px;}
.ws33{word-spacing:0.300000px;}
.ws51{word-spacing:0.360000px;}
.ws16a{word-spacing:0.384000px;}
.wscd{word-spacing:0.420000px;}
.wsb{word-spacing:0.480000px;}
.ws36{word-spacing:0.540000px;}
.ws171{word-spacing:0.576000px;}
.ws4e{word-spacing:0.600000px;}
.ws142{word-spacing:0.624000px;}
.ws5d{word-spacing:0.660000px;}
.ws12a{word-spacing:0.672000px;}
.wsf{word-spacing:0.720000px;}
.ws1f{word-spacing:0.780000px;}
.ws137{word-spacing:0.816000px;}
.ws2b{word-spacing:0.840000px;}
.ws131{word-spacing:0.864000px;}
.ws2d{word-spacing:0.900000px;}
.ws71{word-spacing:0.960000px;}
.ws8b{word-spacing:1.020000px;}
.ws12c{word-spacing:1.056000px;}
.wsb8{word-spacing:1.080000px;}
.ws122{word-spacing:1.104000px;}
.ws70{word-spacing:1.140000px;}
.ws4c{word-spacing:1.200000px;}
.ws49{word-spacing:1.260000px;}
.ws161{word-spacing:1.296000px;}
.ws54{word-spacing:1.320000px;}
.ws11f{word-spacing:1.344000px;}
.ws7d{word-spacing:1.380000px;}
.ws85{word-spacing:1.392000px;}
.ws20{word-spacing:1.440000px;}
.ws14a{word-spacing:1.488000px;}
.ws12{word-spacing:1.500000px;}
.ws173{word-spacing:1.536000px;}
.ws3c{word-spacing:1.560000px;}
.ws121{word-spacing:1.584000px;}
.wse2{word-spacing:1.620000px;}
.ws28{word-spacing:1.680000px;}
.ws80{word-spacing:1.740000px;}
.ws19{word-spacing:1.800000px;}
.ws178{word-spacing:1.824000px;}
.ws8a{word-spacing:1.860000px;}
.ws63{word-spacing:1.920000px;}
.ws102{word-spacing:1.980000px;}
.ws130{word-spacing:2.016000px;}
.wsc4{word-spacing:2.040000px;}
.ws12d{word-spacing:2.064000px;}
.ws9{word-spacing:2.100000px;}
.wsd0{word-spacing:2.160000px;}
.ws139{word-spacing:2.208000px;}
.ws3a{word-spacing:2.220000px;}
.ws167{word-spacing:2.256000px;}
.ws64{word-spacing:2.280000px;}
.ws96{word-spacing:2.340000px;}
.ws169{word-spacing:2.352000px;}
.ws65{word-spacing:2.400000px;}
.ws44{word-spacing:2.460000px;}
.ws69{word-spacing:2.520000px;}
.ws143{word-spacing:2.544000px;}
.ws18{word-spacing:2.580000px;}
.ws79{word-spacing:2.640000px;}
.ws84{word-spacing:2.688000px;}
.ws94{word-spacing:2.700000px;}
.ws15d{word-spacing:2.736000px;}
.ws2f{word-spacing:2.760000px;}
.ws181{word-spacing:2.784000px;}
.wse7{word-spacing:2.820000px;}
.ws42{word-spacing:2.880000px;}
.ws13e{word-spacing:2.928000px;}
.ws9b{word-spacing:2.940000px;}
.ws11a{word-spacing:2.976000px;}
.wsb0{word-spacing:3.000000px;}
.ws154{word-spacing:3.024000px;}
.ws101{word-spacing:3.060000px;}
.ws147{word-spacing:3.072000px;}
.ws73{word-spacing:3.120000px;}
.wsd3{word-spacing:3.180000px;}
.ws120{word-spacing:3.216000px;}
.wsa{word-spacing:3.240000px;}
.ws59{word-spacing:3.300000px;}
.ws7a{word-spacing:3.360000px;}
.ws152{word-spacing:3.408000px;}
.ws68{word-spacing:3.420000px;}
.ws11d{word-spacing:3.456000px;}
.ws21{word-spacing:3.480000px;}
.ws180{word-spacing:3.504000px;}
.wse3{word-spacing:3.540000px;}
.ws90{word-spacing:3.600000px;}
.ws127{word-spacing:3.648000px;}
.ws86{word-spacing:3.660000px;}
.ws128{word-spacing:3.696000px;}
.ws77{word-spacing:3.720000px;}
.ws10d{word-spacing:3.780000px;}
.wsc7{word-spacing:3.840000px;}
.ws11b{word-spacing:3.888000px;}
.ws30{word-spacing:3.900000px;}
.ws91{word-spacing:3.960000px;}
.ws141{word-spacing:3.984000px;}
.ws66{word-spacing:4.020000px;}
.ws11c{word-spacing:4.032000px;}
.wsa6{word-spacing:4.080000px;}
.ws7b{word-spacing:4.140000px;}
.ws6e{word-spacing:4.200000px;}
.wsab{word-spacing:4.260000px;}
.ws158{word-spacing:4.272000px;}
.ws55{word-spacing:4.320000px;}
.ws11e{word-spacing:4.368000px;}
.ws99{word-spacing:4.380000px;}
.ws13b{word-spacing:4.416000px;}
.ws24{word-spacing:4.440000px;}
.ws176{word-spacing:4.464000px;}
.ws60{word-spacing:4.500000px;}
.wsf0{word-spacing:4.560000px;}
.ws174{word-spacing:4.608000px;}
.ws7c{word-spacing:4.620000px;}
.ws129{word-spacing:4.656000px;}
.wsda{word-spacing:4.680000px;}
.ws12f{word-spacing:4.704000px;}
.ws74{word-spacing:4.740000px;}
.ws88{word-spacing:4.800000px;}
.ws57{word-spacing:4.860000px;}
.wsaa{word-spacing:4.920000px;}
.ws13d{word-spacing:4.944000px;}
.ws76{word-spacing:4.980000px;}
.ws32{word-spacing:5.040000px;}
.ws12b{word-spacing:5.088000px;}
.ws92{word-spacing:5.100000px;}
.ws52{word-spacing:5.160000px;}
.ws95{word-spacing:5.220000px;}
.wsa7{word-spacing:5.280000px;}
.ws29{word-spacing:5.340000px;}
.ws124{word-spacing:5.376000px;}
.wsdb{word-spacing:5.400000px;}
.ws126{word-spacing:5.424000px;}
.ws4d{word-spacing:5.460000px;}
.ws149{word-spacing:5.472000px;}
.wscf{word-spacing:5.520000px;}
.ws138{word-spacing:5.568000px;}
.ws81{word-spacing:5.580000px;}
.ws125{word-spacing:5.616000px;}
.ws39{word-spacing:5.640000px;}
.ws16c{word-spacing:5.664000px;}
.ws109{word-spacing:5.700000px;}
.ws170{word-spacing:5.712000px;}
.ws106{word-spacing:5.760000px;}
.wse6{word-spacing:5.820000px;}
.ws6b{word-spacing:5.880000px;}
.ws15b{word-spacing:5.904000px;}
.ws2e{word-spacing:5.940000px;}
.ws7f{word-spacing:6.000000px;}
.ws87{word-spacing:6.060000px;}
.ws6a{word-spacing:6.120000px;}
.ws112{word-spacing:6.180000px;}
.ws37{word-spacing:6.240000px;}
.ws38{word-spacing:6.300000px;}
.ws83{word-spacing:6.336000px;}
.ws5c{word-spacing:6.360000px;}
.ws179{word-spacing:6.384000px;}
.wse{word-spacing:6.420000px;}
.ws157{word-spacing:6.432000px;}
.wsa4{word-spacing:6.480000px;}
.ws50{word-spacing:6.540000px;}
.wsf3{word-spacing:6.600000px;}
.wsac{word-spacing:6.660000px;}
.wsc5{word-spacing:6.720000px;}
.ws12e{word-spacing:6.768000px;}
.ws45{word-spacing:6.780000px;}
.ws4a{word-spacing:6.840000px;}
.ws134{word-spacing:6.864000px;}
.wsff{word-spacing:6.900000px;}
.ws16b{word-spacing:6.912000px;}
.ws8d{word-spacing:6.960000px;}
.ws9c{word-spacing:7.020000px;}
.ws17b{word-spacing:7.056000px;}
.wsd2{word-spacing:7.080000px;}
.wsb4{word-spacing:7.140000px;}
.ws75{word-spacing:7.200000px;}
.ws47{word-spacing:7.260000px;}
.wsa1{word-spacing:7.320000px;}
.ws46{word-spacing:7.380000px;}
.ws8c{word-spacing:7.440000px;}
.ws168{word-spacing:7.488000px;}
.ws93{word-spacing:7.500000px;}
.ws8e{word-spacing:7.560000px;}
.ws26{word-spacing:7.620000px;}
.ws58{word-spacing:7.680000px;}
.ws153{word-spacing:7.728000px;}
.wsa5{word-spacing:7.740000px;}
.ws43{word-spacing:7.800000px;}
.ws146{word-spacing:7.824000px;}
.wsb6{word-spacing:7.860000px;}
.ws172{word-spacing:7.872000px;}
.ws8f{word-spacing:7.980000px;}
.ws16f{word-spacing:8.016000px;}
.ws104{word-spacing:8.040000px;}
.wsa0{word-spacing:8.100000px;}
.ws6f{word-spacing:8.160000px;}
.ws4b{word-spacing:8.220000px;}
.ws15a{word-spacing:8.256000px;}
.ws9d{word-spacing:8.280000px;}
.ws62{word-spacing:8.340000px;}
.ws9e{word-spacing:8.400000px;}
.ws150{word-spacing:8.448000px;}
.ws56{word-spacing:8.460000px;}
.ws3e{word-spacing:8.520000px;}
.ws7e{word-spacing:8.580000px;}
.ws10c{word-spacing:8.640000px;}
.ws11{word-spacing:8.700000px;}
.wsb2{word-spacing:8.760000px;}
.wsc6{word-spacing:8.820000px;}
.wsc1{word-spacing:8.880000px;}
.ws155{word-spacing:8.928000px;}
.wsad{word-spacing:8.940000px;}
.ws6c{word-spacing:9.000000px;}
.ws160{word-spacing:9.024000px;}
.wse4{word-spacing:9.060000px;}
.wsf1{word-spacing:9.120000px;}
.ws40{word-spacing:9.240000px;}
.wsd{word-spacing:9.300000px;}
.wsb5{word-spacing:9.360000px;}
.ws140{word-spacing:9.408000px;}
.ws108{word-spacing:9.480000px;}
.ws5b{word-spacing:9.540000px;}
.ws53{word-spacing:9.600000px;}
.ws25{word-spacing:9.660000px;}
.ws23{word-spacing:9.720000px;}
.ws9a{word-spacing:9.780000px;}
.ws100{word-spacing:9.840000px;}
.ws115{word-spacing:9.900000px;}
.ws5a{word-spacing:9.960000px;}
.ws136{word-spacing:9.984000px;}
.wsa2{word-spacing:10.080000px;}
.wsc2{word-spacing:10.140000px;}
.ws48{word-spacing:10.200000px;}
.ws177{word-spacing:10.224000px;}
.ws111{word-spacing:10.260000px;}
.wsfd{word-spacing:10.320000px;}
.ws17a{word-spacing:10.368000px;}
.wsf2{word-spacing:10.440000px;}
.wsf9{word-spacing:10.500000px;}
.wsfe{word-spacing:10.560000px;}
.ws14{word-spacing:10.620000px;}
.wsa8{word-spacing:10.680000px;}
.wsb3{word-spacing:10.740000px;}
.ws13a{word-spacing:10.848000px;}
.wsae{word-spacing:10.860000px;}
.ws2c{word-spacing:10.980000px;}
.wsd1{word-spacing:11.040000px;}
.ws151{word-spacing:11.136000px;}
.ws107{word-spacing:11.220000px;}
.ws35{word-spacing:11.280000px;}
.ws118{word-spacing:11.400000px;}
.ws110{word-spacing:11.580000px;}
.wsa3{word-spacing:11.820000px;}
.ws113{word-spacing:11.880000px;}
.ws16d{word-spacing:11.904000px;}
.wsfa{word-spacing:12.000000px;}
.ws10b{word-spacing:12.180000px;}
.ws116{word-spacing:12.240000px;}
.ws4f{word-spacing:12.300000px;}
.wsfb{word-spacing:12.360000px;}
.ws34{word-spacing:12.480000px;}
.ws3b{word-spacing:12.660000px;}
.ws103{word-spacing:12.900000px;}
.ws123{word-spacing:13.104000px;}
.ws78{word-spacing:13.320000px;}
.ws13{word-spacing:13.500000px;}
.ws3f{word-spacing:13.560000px;}
.wse5{word-spacing:13.620000px;}
.wsdd{word-spacing:13.680000px;}
.ws163{word-spacing:13.728000px;}
.ws114{word-spacing:13.740000px;}
.ws10e{word-spacing:13.800000px;}
.ws10f{word-spacing:14.040000px;}
.ws164{word-spacing:14.112000px;}
.ws15e{word-spacing:14.256000px;}
.ws89{word-spacing:14.280000px;}
.ws5e{word-spacing:14.640000px;}
.ws6d{word-spacing:14.760000px;}
.ws10a{word-spacing:14.820000px;}
.ws17d{word-spacing:14.976000px;}
.ws17e{word-spacing:15.024000px;}
.ws14d{word-spacing:15.120000px;}
.wsce{word-spacing:15.360000px;}
.ws5f{word-spacing:15.540000px;}
.ws162{word-spacing:15.552000px;}
.wse1{word-spacing:16.140000px;}
.wsfc{word-spacing:16.380000px;}
.ws31{word-spacing:16.920000px;}
.ws9f{word-spacing:17.340000px;}
.ws117{word-spacing:17.820000px;}
.ws13c{word-spacing:18.768000px;}
.wsb7{word-spacing:18.780000px;}
.ws15f{word-spacing:19.248000px;}
.ws1d{word-spacing:19.668000px;}
.ws17c{word-spacing:22.176000px;}
.ws156{word-spacing:22.368000px;}
.ws175{word-spacing:23.184000px;}
.ws159{word-spacing:25.440000px;}
.ws17f{word-spacing:25.872000px;}
.ws13f{word-spacing:26.064000px;}
.ws133{word-spacing:27.648000px;}
.ws14c{word-spacing:31.872000px;}
.ws135{word-spacing:32.640000px;}
.wsdf{word-spacing:55.392000px;}
.ws1a{word-spacing:73.056000px;}
.wsea{word-spacing:136.080000px;}
.wsc8{word-spacing:139.631983px;}
.wsd4{word-spacing:150.480000px;}
.wsd5{word-spacing:174.480000px;}
.wsd6{word-spacing:198.480000px;}
.wsbf{word-spacing:207.700800px;}
.wse0{word-spacing:223.296000px;}
.wsbb{word-spacing:250.752000px;}
.wsbe{word-spacing:278.304000px;}
.wsca{word-spacing:279.887983px;}
.wscb{word-spacing:303.887983px;}
.wsed{word-spacing:303.984000px;}
.wsc9{word-spacing:329.519983px;}
.wsf6{word-spacing:343.008000px;}
.wsf8{word-spacing:367.008000px;}
.wsd8{word-spacing:427.008000px;}
.wsd9{word-spacing:435.360000px;}
.wsd7{word-spacing:504.768000px;}
.wsf7{word-spacing:702.384000px;}
.wseb{word-spacing:707.423991px;}
.wsf4{word-spacing:729.840000px;}
.wsee{word-spacing:734.879991px;}
.wsf5{word-spacing:738.192000px;}
.wsef{word-spacing:743.231991px;}
.wsec{word-spacing:1254.575965px;}
.wse9{word-spacing:1256.687965px;}
.wsde{word-spacing:1376.160072px;}
._9d{margin-left:-37.440000px;}
._9b{margin-left:-27.120000px;}
._9f{margin-left:-25.728000px;}
._a0{margin-left:-23.904000px;}
._96{margin-left:-21.984000px;}
._9c{margin-left:-20.448000px;}
._14{margin-left:-18.648000px;}
._92{margin-left:-16.704000px;}
._4{margin-left:-15.600000px;}
._93{margin-left:-14.016000px;}
._91{margin-left:-12.672000px;}
._10{margin-left:-11.340000px;}
._22{margin-left:-9.984000px;}
._13{margin-left:-4.908000px;}
._3{margin-left:-3.468000px;}
._0{margin-left:-1.632000px;}
._2{width:1.572000px;}
._c{width:3.336000px;}
._b{width:5.243973px;}
._11{width:6.888000px;}
._12{width:8.160000px;}
._9{width:9.222000px;}
._a{width:10.578000px;}
._9e{width:11.760000px;}
._e{width:12.845400px;}
._95{width:13.900800px;}
._15{width:15.415200px;}
._f{width:18.660000px;}
._97{width:20.064000px;}
._5{width:22.320000px;}
._8d{width:24.408000px;}
._8f{width:25.824000px;}
._99{width:26.976000px;}
._8e{width:28.110000px;}
._46{width:30.000000px;}
._9a{width:31.008000px;}
._d{width:33.000000px;}
._72{width:37.631991px;}
._1{width:39.544187px;}
._90{width:42.972000px;}
._94{width:44.865601px;}
._98{width:46.365602px;}
._6b{width:48.336000px;}
._38{width:50.970000px;}
._7{width:56.255991px;}
._74{width:63.407991px;}
._3d{width:65.136000px;}
._48{width:66.816000px;}
._36{width:69.114000px;}
._6{width:73.056000px;}
._56{width:76.512000px;}
._25{width:87.132000px;}
._2c{width:95.472000px;}
._1d{width:108.672000px;}
._62{width:111.216072px;}
._58{width:115.632000px;}
._39{width:123.888000px;}
._87{width:130.031974px;}
._21{width:134.352000px;}
._3e{width:136.608000px;}
._28{width:144.768000px;}
._3a{width:173.808000px;}
._8b{width:179.424000px;}
._27{width:184.554000px;}
._53{width:186.480000px;}
._6a{width:196.320000px;}
._4b{width:205.679993px;}
._5f{width:207.071960px;}
._44{width:208.224000px;}
._51{width:210.480000px;}
._2d{width:211.536000px;}
._7e{width:216.624000px;}
._2a{width:220.752000px;}
._4d{width:228.863993px;}
._81{width:231.215974px;}
._1f{width:232.554000px;}
._5a{width:235.296000px;}
._60{width:237.263960px;}
._2e{width:238.476000px;}
._1b{width:244.554000px;}
._29{width:249.600000px;}
._54{width:252.144000px;}
._1c{width:253.836000px;}
._23{width:258.864000px;}
._2b{width:260.352000px;}
._26{width:265.632000px;}
._19{width:268.368000px;}
._34{width:273.497983px;}
._52{width:276.144000px;}
._35{width:282.480000px;}
._8c{width:285.756000px;}
._33{width:290.112000px;}
._89{width:292.656000px;}
._1a{width:294.096000px;}
._45{width:296.207983px;}
._32{width:298.416000px;}
._3c{width:303.744000px;}
._20{width:309.072000px;}
._41{width:312.287983px;}
._6c{width:316.139991px;}
._82{width:319.008000px;}
._55{width:339.264000px;}
._76{width:340.500000px;}
._24{width:350.976000px;}
._88{width:354.192000px;}
._3f{width:355.295983px;}
._37{width:357.312000px;}
._7d{width:360.396000px;}
._4a{width:362.832000px;}
._50{width:364.128000px;}
._3b{width:368.400000px;}
._42{width:372.108000px;}
._80{width:378.480040px;}
._84{width:379.877992px;}
._4e{width:384.288000px;}
._6f{width:394.799991px;}
._66{width:397.919960px;}
._4c{width:405.504000px;}
._16{width:411.744000px;}
._5c{width:416.459960px;}
._2f{width:420.096000px;}
._4f{width:423.264000px;}
._67{width:439.631960px;}
._1e{width:448.752000px;}
._49{width:452.736000px;}
._43{width:454.715983px;}
._8a{width:472.656000px;}
._64{width:482.207960px;}
._30{width:486.144000px;}
._77{width:496.079991px;}
._86{width:504.576000px;}
._65{width:508.847960px;}
._40{width:518.255990px;}
._85{width:520.428000px;}
._75{width:523.835991px;}
._7a{width:525.467991px;}
._6d{width:528.047991px;}
._71{width:535.055991px;}
._79{width:537.599965px;}
._78{width:542.687991px;}
._6e{width:561.695991px;}
._17{width:568.279813px;}
._18{width:574.896000px;}
._59{width:577.691960px;}
._31{width:584.400000px;}
._61{width:613.967960px;}
._5d{width:616.895960px;}
._83{width:675.312000px;}
._73{width:677.663991px;}
._70{width:679.787991px;}
._5e{width:685.535960px;}
._68{width:687.215960px;}
._7f{width:697.680000px;}
._5b{width:754.943960px;}
._47{width:812.880000px;}
._63{width:859.872072px;}
._7c{width:1010.927974px;}
._7b{width:1109.615974px;}
._69{width:1168.799965px;}
._57{width:1288.272072px;}
._8{width:1669.679952px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y181{bottom:-0.772202px;}
.yfd{bottom:-0.771744px;}
.y119{bottom:-0.771606px;}
.yf9{bottom:-0.771469px;}
.y115{bottom:-0.771468px;}
.y110{bottom:-0.771423px;}
.y169{bottom:-0.771240px;}
.y137{bottom:-0.771149px;}
.y14e{bottom:-0.771057px;}
.y134{bottom:-0.770874px;}
.y104{bottom:-0.770737px;}
.y12a{bottom:-0.770691px;}
.y1b5{bottom:-0.770554px;}
.y10c{bottom:-0.770416px;}
.yf1{bottom:-0.770233px;}
.y15f{bottom:-0.770096px;}
.y142{bottom:-0.769958px;}
.y0{bottom:0.000000px;}
.y278{bottom:0.194687px;}
.y1c1{bottom:0.232819px;}
.y13e{bottom:0.233276px;}
.y18d{bottom:0.233551px;}
.y131{bottom:0.233688px;}
.y15c{bottom:0.233826px;}
.y18a{bottom:0.234468px;}
.y154{bottom:0.235062px;}
.y1e3{bottom:2.143661px;}
.y17a{bottom:23.845367px;}
.y197{bottom:23.846100px;}
.y4a{bottom:49.625399px;}
.y25{bottom:49.625999px;}
.y22{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.y187{bottom:89.987980px;}
.y1a1{bottom:89.990105px;}
.y191{bottom:89.992020px;}
.y1a7{bottom:89.993072px;}
.y113{bottom:89.993561px;}
.y1ab{bottom:89.996109px;}
.y193{bottom:89.996979px;}
.y1be{bottom:89.997295px;}
.y15b{bottom:89.998787px;}
.y176{bottom:89.999211px;}
.yf4{bottom:89.999242px;}
.y146{bottom:89.999362px;}
.y109{bottom:89.999850px;}
.yec{bottom:90.000000px;}
.y1b2{bottom:90.001507px;}
.y199{bottom:90.001953px;}
.y16f{bottom:90.003750px;}
.y47{bottom:90.006000px;}
.y13a{bottom:90.007165px;}
.y151{bottom:90.007528px;}
.y102{bottom:90.011111px;}
.y11e{bottom:90.011272px;}
.y12f{bottom:90.011982px;}
.yc9{bottom:90.018000px;}
.yc5{bottom:90.797516px;}
.y28a{bottom:90.797539px;}
.y290{bottom:90.797550px;}
.ya0{bottom:90.797562px;}
.yeb{bottom:91.202516px;}
.y1d8{bottom:93.187042px;}
.y201{bottom:93.410545px;}
.y22a{bottom:96.384590px;}
.y4{bottom:97.125005px;}
.y1a2{bottom:98.990105px;}
.y194{bottom:98.996979px;}
.y147{bottom:98.999362px;}
.yee{bottom:99.000000px;}
.y19a{bottom:99.001953px;}
.y1f4{bottom:99.187042px;}
.yc8{bottom:104.262000px;}
.y2af{bottom:104.297516px;}
.y2f8{bottom:105.383516px;}
.yc4{bottom:108.797516px;}
.y289{bottom:108.797539px;}
.y28f{bottom:108.797550px;}
.y9f{bottom:108.797562px;}
.y46{bottom:109.049995px;}
.yea{bottom:109.202516px;}
.y1d7{bottom:111.187042px;}
.y200{bottom:111.410545px;}
.y229{bottom:114.384590px;}
.y1f3{bottom:117.187042px;}
.yc7{bottom:118.506000px;}
.y256{bottom:119.354095px;}
.y2f7{bottom:119.627516px;}
.y282{bottom:121.547539px;}
.y2ae{bottom:122.297516px;}
.y2c0{bottom:123.509555px;}
.y75{bottom:125.672516px;}
.yc3{bottom:126.797516px;}
.y288{bottom:126.797539px;}
.y28e{bottom:126.797550px;}
.y9e{bottom:126.797562px;}
.ye9{bottom:127.202516px;}
.y1d6{bottom:129.187042px;}
.y1ff{bottom:129.410545px;}
.y228{bottom:132.384590px;}
.y45{bottom:132.917250px;}
.y2f6{bottom:133.871516px;}
.y1f2{bottom:135.187042px;}
.y255{bottom:137.354095px;}
.yc6{bottom:137.549995px;}
.y2bf{bottom:137.753555px;}
.y21{bottom:139.264499px;}
.y281{bottom:139.547539px;}
.y2ad{bottom:140.297516px;}
.y74{bottom:143.672516px;}
.yc2{bottom:144.797516px;}
.y287{bottom:144.797539px;}
.y28d{bottom:144.797550px;}
.y9d{bottom:144.797562px;}
.ye8{bottom:145.202516px;}
.y44{bottom:147.161250px;}
.y1d5{bottom:147.187042px;}
.y1fe{bottom:147.410545px;}
.y2f5{bottom:148.115516px;}
.y227{bottom:150.384590px;}
.y2be{bottom:151.997555px;}
.y1f1{bottom:153.187042px;}
.y254{bottom:155.354095px;}
.y280{bottom:157.547539px;}
.y2ac{bottom:158.297516px;}
.y73{bottom:161.672516px;}
.y2f4{bottom:162.359516px;}
.yc1{bottom:162.797516px;}
.y286{bottom:162.797539px;}
.y9c{bottom:162.797562px;}
.ye7{bottom:163.202516px;}
.y1d4{bottom:165.187042px;}
.y1fd{bottom:165.410545px;}
.y226{bottom:168.384590px;}
.y43{bottom:168.953250px;}
.y1f0{bottom:171.187042px;}
.y253{bottom:173.354095px;}
.y27f{bottom:175.547539px;}
.y2ab{bottom:176.297516px;}
.y2f3{bottom:176.603516px;}
.y72{bottom:179.672516px;}
.yc0{bottom:180.797516px;}
.y285{bottom:180.797539px;}
.y28c{bottom:180.797550px;}
.y9b{bottom:180.797562px;}
.ye6{bottom:181.202516px;}
.y42{bottom:183.197250px;}
.y1fc{bottom:183.410545px;}
.y2bd{bottom:184.547550px;}
.y225{bottom:186.384590px;}
.y1ef{bottom:189.187042px;}
.y2fa{bottom:190.835516px;}
.y2f2{bottom:190.847516px;}
.y252{bottom:191.354095px;}
.y27e{bottom:193.547539px;}
.y2aa{bottom:194.297516px;}
.y18{bottom:196.933500px;}
.y71{bottom:197.672516px;}
.ybf{bottom:198.797516px;}
.y284{bottom:198.797539px;}
.y9a{bottom:198.797562px;}
.ye5{bottom:199.202516px;}
.y1d3{bottom:201.187042px;}
.y1fb{bottom:201.410545px;}
.y224{bottom:204.384590px;}
.y2f9{bottom:205.079516px;}
.y2f1{bottom:205.091516px;}
.y1ee{bottom:207.187042px;}
.y251{bottom:209.354095px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y27d{bottom:211.547539px;}
.y2a9{bottom:212.297516px;}
.y70{bottom:215.672516px;}
.ybe{bottom:216.797516px;}
.y28b{bottom:216.797539px;}
.y99{bottom:216.797562px;}
.ye4{bottom:217.202516px;}
.y2f0{bottom:219.335516px;}
.y1fa{bottom:219.410545px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y223{bottom:222.384590px;}
.y250{bottom:227.354095px;}
.y27c{bottom:229.547539px;}
.y2a8{bottom:230.297516px;}
.y2ef{bottom:233.579516px;}
.y6f{bottom:233.672516px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ybd{bottom:234.797516px;}
.y283{bottom:234.797539px;}
.y98{bottom:234.797562px;}
.ye3{bottom:235.202516px;}
.y1d2{bottom:237.187042px;}
.y1f9{bottom:237.410545px;}
.y222{bottom:240.384590px;}
.y24f{bottom:245.354095px;}
.y1f5{bottom:245.419052px;}
.y27b{bottom:247.547539px;}
.y2ee{bottom:247.823516px;}
.y2a7{bottom:248.297516px;}
.y6e{bottom:251.672516px;}
.ybc{bottom:252.797516px;}
.y97{bottom:252.797562px;}
.ye2{bottom:253.202516px;}
.y1f8{bottom:255.410545px;}
.y1a3{bottom:256.706101px;}
.y195{bottom:256.712975px;}
.y19b{bottom:256.717949px;}
.y221{bottom:258.384590px;}
.y2bc{bottom:258.851562px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y2ed{bottom:262.067516px;}
.y24e{bottom:263.354095px;}
.y27a{bottom:265.547539px;}
.y41{bottom:265.817093px;}
.y2a6{bottom:266.297516px;}
.y6d{bottom:269.672516px;}
.ybb{bottom:270.797516px;}
.y96{bottom:270.797562px;}
.yef{bottom:270.828000px;}
.ye1{bottom:271.202516px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y148{bottom:272.915362px;}
.y2bb{bottom:273.095562px;}
.y1f7{bottom:273.410545px;}
.y2ec{bottom:276.311516px;}
.y220{bottom:276.384590px;}
.y24d{bottom:281.354095px;}
.y177{bottom:281.915211px;}
.y277{bottom:283.359009px;}
.y276{bottom:283.547516px;}
.y279{bottom:283.547539px;}
.y40{bottom:283.817093px;}
.y2a5{bottom:284.297516px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y2ba{bottom:287.339562px;}
.y6c{bottom:287.672516px;}
.yba{bottom:288.797516px;}
.y95{bottom:288.797562px;}
.ye0{bottom:289.202516px;}
.y2eb{bottom:290.555516px;}
.y1f6{bottom:291.410545px;}
.y24c{bottom:299.354095px;}
.y275{bottom:301.547516px;}
.y2b9{bottom:301.583562px;}
.y2a4{bottom:302.297516px;}
.y2ea{bottom:304.799516px;}
.y6b{bottom:305.672516px;}
.yb9{bottom:306.797516px;}
.y94{bottom:306.797562px;}
.ydf{bottom:307.202516px;}
.y1d1{bottom:309.937042px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2b8{bottom:315.827562px;}
.y24b{bottom:317.354095px;}
.y2e9{bottom:319.043516px;}
.y274{bottom:319.547516px;}
.y2a3{bottom:320.297516px;}
.y3f{bottom:320.567093px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y6a{bottom:323.672516px;}
.yb8{bottom:324.797516px;}
.y93{bottom:324.797562px;}
.yde{bottom:325.202516px;}
.y1d0{bottom:327.937042px;}
.y2b7{bottom:330.071562px;}
.y2e8{bottom:333.287516px;}
.y24a{bottom:335.354095px;}
.y249{bottom:335.734788px;}
.y2a2{bottom:338.297516px;}
.y3e{bottom:338.567093px;}
.y69{bottom:341.672516px;}
.yb7{bottom:342.797516px;}
.y92{bottom:342.797562px;}
.ydd{bottom:343.202516px;}
.y2b6{bottom:344.315562px;}
.y1cf{bottom:345.937042px;}
.y2e7{bottom:347.531516px;}
.yf{bottom:348.133500px;}
.y248{bottom:353.962788px;}
.y273{bottom:355.547516px;}
.y2a1{bottom:356.297516px;}
.y3d{bottom:356.567093px;}
.y2b5{bottom:358.559562px;}
.y68{bottom:359.672516px;}
.yb6{bottom:360.797516px;}
.y91{bottom:360.797562px;}
.ydc{bottom:361.202516px;}
.y2e6{bottom:361.775516px;}
.y1ce{bottom:363.937042px;}
.y21f{bottom:364.992917px;}
.y2b4{bottom:372.803562px;}
.y2a0{bottom:374.297516px;}
.y3c{bottom:374.567093px;}
.y2e5{bottom:376.019516px;}
.y247{bottom:377.206788px;}
.y67{bottom:377.672516px;}
.yb5{bottom:378.797516px;}
.y90{bottom:378.797562px;}
.ydb{bottom:379.202516px;}
.y1cd{bottom:381.937042px;}
.y126{bottom:382.908000px;}
.y11f{bottom:382.919272px;}
.y21e{bottom:383.220917px;}
.ye{bottom:386.785499px;}
.y272{bottom:387.198774px;}
.y178{bottom:390.095211px;}
.y2e4{bottom:390.263516px;}
.y29f{bottom:392.297516px;}
.y3b{bottom:392.567093px;}
.y246{bottom:395.362788px;}
.y66{bottom:395.672516px;}
.yb4{bottom:396.797516px;}
.y8f{bottom:396.797562px;}
.yda{bottom:397.202516px;}
.y13b{bottom:399.103165px;}
.y1cc{bottom:399.937042px;}
.y2b3{bottom:401.303562px;}
.y21d{bottom:401.364917px;}
.y2e3{bottom:404.507516px;}
.y271{bottom:405.342774px;}
.yd{bottom:408.044999px;}
.y245{bottom:409.606788px;}
.y29e{bottom:410.297516px;}
.y3a{bottom:410.567093px;}
.y65{bottom:413.672516px;}
.yb3{bottom:414.797516px;}
.y8e{bottom:414.797562px;}
.yd9{bottom:415.202516px;}
.y2b2{bottom:415.547562px;}
.y1cb{bottom:417.937042px;}
.y2e2{bottom:418.751516px;}
.y21c{bottom:419.508917px;}
.y270{bottom:423.486774px;}
.y188{bottom:423.851976px;}
.y19c{bottom:423.865949px;}
.y244{bottom:427.750788px;}
.y29d{bottom:428.297516px;}
.y39{bottom:428.567093px;}
.y64{bottom:431.672516px;}
.yb2{bottom:432.797516px;}
.y8d{bottom:432.797562px;}
.y2e1{bottom:432.995516px;}
.yd8{bottom:433.202516px;}
.y1ca{bottom:435.937042px;}
.y21b{bottom:437.652917px;}
.y26f{bottom:441.630774px;}
.y2b1{bottom:444.047562px;}
.y243{bottom:445.894788px;}
.y29c{bottom:446.297516px;}
.y38{bottom:446.567093px;}
.y2e0{bottom:447.239516px;}
.y63{bottom:449.672516px;}
.yb1{bottom:450.797516px;}
.y8c{bottom:450.797562px;}
.yd7{bottom:451.202516px;}
.y1c9{bottom:453.937042px;}
.y21a{bottom:455.796917px;}
.y26e{bottom:459.774774px;}
.y2df{bottom:461.483516px;}
.y242{bottom:464.038788px;}
.y29b{bottom:464.297516px;}
.y37{bottom:464.567093px;}
.y62{bottom:467.672516px;}
.yb0{bottom:468.797516px;}
.y8b{bottom:468.797562px;}
.yd6{bottom:469.202516px;}
.y1c8{bottom:471.937042px;}
.y219{bottom:473.940917px;}
.y2de{bottom:475.727516px;}
.y2b0{bottom:476.297562px;}
.y26d{bottom:477.918774px;}
.y241{bottom:482.182788px;}
.y29a{bottom:482.297516px;}
.y36{bottom:482.567093px;}
.y61{bottom:485.672516px;}
.yaf{bottom:486.797516px;}
.y8a{bottom:486.797562px;}
.yd5{bottom:487.202516px;}
.y1c7{bottom:489.937042px;}
.y2dd{bottom:489.971516px;}
.y218{bottom:492.084917px;}
.y26c{bottom:496.062774px;}
.y299{bottom:500.297516px;}
.y240{bottom:500.326788px;}
.y35{bottom:500.567093px;}
.yc{bottom:502.864502px;}
.y60{bottom:503.672516px;}
.y2dc{bottom:504.215516px;}
.yae{bottom:504.797516px;}
.y89{bottom:504.797562px;}
.yd4{bottom:505.202516px;}
.y217{bottom:510.228917px;}
.y26b{bottom:514.206774px;}
.y298{bottom:518.297516px;}
.y2db{bottom:518.459516px;}
.y23f{bottom:518.470788px;}
.y34{bottom:518.567093px;}
.yb{bottom:520.864502px;}
.y5f{bottom:521.672516px;}
.yad{bottom:522.797516px;}
.y88{bottom:522.797562px;}
.yd3{bottom:523.202516px;}
.y1c6{bottom:525.937042px;}
.y216{bottom:528.372917px;}
.y26a{bottom:532.350774px;}
.y2da{bottom:532.703516px;}
.y297{bottom:536.297516px;}
.y33{bottom:536.567093px;}
.y23e{bottom:536.614788px;}
.ya{bottom:538.864499px;}
.y5e{bottom:539.672516px;}
.yac{bottom:540.797516px;}
.y87{bottom:540.797562px;}
.yd2{bottom:541.202516px;}
.y215{bottom:546.528917px;}
.y2d9{bottom:546.947516px;}
.y130{bottom:548.871002px;}
.y269{bottom:550.494774px;}
.y127{bottom:553.344000px;}
.y120{bottom:553.355272px;}
.y296{bottom:554.297516px;}
.y32{bottom:554.567093px;}
.y23d{bottom:554.758788px;}
.y9{bottom:556.864499px;}
.y5d{bottom:557.672516px;}
.y140{bottom:557.870258px;}
.y17e{bottom:557.870703px;}
.y156{bottom:557.873533px;}
.y171{bottom:557.879841px;}
.yab{bottom:558.797516px;}
.y86{bottom:558.797562px;}
.yd1{bottom:559.202516px;}
.y214{bottom:560.772917px;}
.y179{bottom:561.160492px;}
.y2d8{bottom:561.191516px;}
.y117{bottom:562.342060px;}
.y106{bottom:562.342810px;}
.yf7{bottom:562.343242px;}
.y128{bottom:562.344000px;}
.yf8{bottom:562.347015px;}
.y123{bottom:562.355105px;}
.yff{bottom:562.355111px;}
.y11b{bottom:562.355272px;}
.yfb{bottom:562.355572px;}
.y268{bottom:568.638774px;}
.yfa{bottom:569.111572px;}
.y295{bottom:572.297516px;}
.y31{bottom:572.567093px;}
.y23c{bottom:572.902788px;}
.y2d7{bottom:575.435516px;}
.y5c{bottom:575.672516px;}
.yaa{bottom:576.797516px;}
.y85{bottom:576.797562px;}
.yd0{bottom:577.202516px;}
.y213{bottom:578.928917px;}
.y189{bottom:581.560500px;}
.y13c{bottom:584.330704px;}
.y1ed{bottom:585.280803px;}
.y267{bottom:586.782774px;}
.y2d6{bottom:589.679516px;}
.y294{bottom:590.297516px;}
.y149{bottom:590.315689px;}
.y132{bottom:590.390717px;}
.y19e{bottom:590.558118px;}
.y18f{bottom:590.560033px;}
.y1a5{bottom:590.561085px;}
.y1b7{bottom:590.562462px;}
.y1c3{bottom:590.563810px;}
.y1ad{bottom:590.563963px;}
.y1a9{bottom:590.564122px;}
.y1bc{bottom:590.565308px;}
.y30{bottom:590.567093px;}
.y23b{bottom:591.046788px;}
.y212{bottom:593.172917px;}
.y5b{bottom:593.672516px;}
.y196{bottom:593.850769px;}
.ya9{bottom:594.797516px;}
.y84{bottom:594.797562px;}
.ycf{bottom:595.202516px;}
.y118{bottom:595.310989px;}
.y15d{bottom:595.865845px;}
.y170{bottom:595.955841px;}
.y152{bottom:596.375702px;}
.y184{bottom:596.405685px;}
.y11a{bottom:602.075272px;}
.y1ec{bottom:603.508803px;}
.y2d5{bottom:603.923516px;}
.y266{bottom:604.926774px;}
.y17b{bottom:605.375839px;}
.y293{bottom:608.297516px;}
.y2f{bottom:608.567093px;}
.y23a{bottom:609.190788px;}
.y211{bottom:611.328917px;}
.y5a{bottom:611.672516px;}
.ya8{bottom:612.797516px;}
.yce{bottom:613.202516px;}
.y133{bottom:615.190521px;}
.y1eb{bottom:617.752803px;}
.y2d4{bottom:618.167516px;}
.y135{bottom:621.955627px;}
.y18b{bottom:622.735931px;}
.y265{bottom:623.070774px;}
.y1a4{bottom:623.081085px;}
.yf0{bottom:624.529495px;}
.y210{bottom:625.572917px;}
.y292{bottom:626.297516px;}
.y2e{bottom:626.567093px;}
.y239{bottom:627.334788px;}
.yf5{bottom:627.529495px;}
.y1a8{bottom:628.556122px;}
.y1b9{bottom:628.720963px;}
.y1b3{bottom:629.065933px;}
.y1bf{bottom:629.081085px;}
.y1ac{bottom:629.095963px;}
.y18c{bottom:629.572495px;}
.y59{bottom:629.672516px;}
.y121{bottom:630.529495px;}
.ya7{bottom:630.797516px;}
.y83{bottom:630.797562px;}
.ycd{bottom:631.202516px;}
.yf2{bottom:631.295242px;}
.y2d3{bottom:632.411516px;}
.yf6{bottom:634.295242px;}
.y1ea{bottom:635.896803px;}
.y1ae{bottom:636.220505px;}
.y122{bottom:637.295105px;}
.y19d{bottom:637.646118px;}
.y198{bottom:638.005966px;}
.y141{bottom:638.029495px;}
.y153{bottom:639.382507px;}
.y10b{bottom:639.529495px;}
.y103{bottom:640.153519px;}
.y129{bottom:640.681503px;}
.y264{bottom:641.214774px;}
.yfc{bottom:642.603012px;}
.y1af{bottom:642.985519px;}
.y20f{bottom:643.716917px;}
.y2d{bottom:644.567093px;}
.y143{bottom:644.795380px;}
.y238{bottom:645.478788px;}
.y8{bottom:645.510000px;}
.y10d{bottom:646.295105px;}
.y2d2{bottom:646.655516px;}
.y105{bottom:646.918808px;}
.y12b{bottom:647.446793px;}
.y58{bottom:647.672516px;}
.y17c{bottom:648.384018px;}
.ya6{bottom:648.797516px;}
.ycc{bottom:649.202516px;}
.yfe{bottom:649.367111px;}
.y1e9{bottom:654.040803px;}
.y172{bottom:657.637482px;}
.y263{bottom:659.358774px;}
.y2d1{bottom:660.899516px;}
.y20e{bottom:661.860917px;}
.y291{bottom:662.297516px;}
.y2c{bottom:662.567093px;}
.y237{bottom:663.622788px;}
.y173{bottom:664.403229px;}
.y57{bottom:665.672516px;}
.y14a{bottom:666.286514px;}
.y7{bottom:666.771000px;}
.ya5{bottom:666.797516px;}
.y82{bottom:666.797562px;}
.y13d{bottom:666.986984px;}
.ycb{bottom:667.202516px;}
.y15e{bottom:670.824005px;}
.y18e{bottom:670.912033px;}
.y1c0{bottom:672.089996px;}
.y157{bottom:672.157516px;}
.y1e8{bottom:672.184803px;}
.y14b{bottom:673.052536px;}
.y2d0{bottom:675.143516px;}
.y262{bottom:677.502774px;}
.y160{bottom:677.589890px;}
.y158{bottom:678.922806px;}
.y20d{bottom:680.004917px;}
.y2b{bottom:680.567093px;}
.y155{bottom:680.933533px;}
.y236{bottom:681.766788px;}
.y56{bottom:683.672516px;}
.ya4{bottom:684.797516px;}
.y2cf{bottom:689.387516px;}
.y1e7{bottom:690.328803px;}
.y261{bottom:695.646774px;}
.y17d{bottom:695.918700px;}
.y114{bottom:696.685500px;}
.y20c{bottom:698.148917px;}
.y235{bottom:699.910788px;}
.y55{bottom:701.672516px;}
.ya3{bottom:702.797516px;}
.yca{bottom:703.202516px;}
.y116{bottom:703.450058px;}
.y2ce{bottom:703.631516px;}
.y1e6{bottom:708.472803px;}
.y260{bottom:713.790774px;}
.y13f{bottom:714.146255px;}
.y1ba{bottom:714.216019px;}
.y1b4{bottom:714.560989px;}
.y20b{bottom:716.292917px;}
.y2cd{bottom:717.875516px;}
.y234{bottom:718.066788px;}
.y54{bottom:719.672516px;}
.y81{bottom:720.797516px;}
.y1bb{bottom:720.981308px;}
.y1b6{bottom:721.326462px;}
.y1c2{bottom:722.623810px;}
.y6{bottom:726.298500px;}
.y1e5{bottom:726.616803px;}
.y2a{bottom:729.059696px;}
.y159{bottom:730.966805px;}
.y174{bottom:730.967229px;}
.y144{bottom:730.967380px;}
.y17f{bottom:730.970703px;}
.y12e{bottom:730.980000px;}
.y25f{bottom:731.934774px;}
.y2cc{bottom:732.119516px;}
.y233{bottom:732.310788px;}
.y12c{bottom:733.066793px;}
.y107{bottom:733.066810px;}
.y10a{bottom:733.067850px;}
.yed{bottom:733.068000px;}
.y124{bottom:733.079105px;}
.y100{bottom:733.079111px;}
.y11c{bottom:733.079272px;}
.y20a{bottom:734.436917px;}
.y53{bottom:737.672516px;}
.y80{bottom:738.797516px;}
.y14c{bottom:739.964536px;}
.y15a{bottom:739.966805px;}
.y175{bottom:739.967229px;}
.y145{bottom:739.967380px;}
.y180{bottom:739.968018px;}
.y16b{bottom:739.970529px;}
.y16e{bottom:739.971190px;}
.y167{bottom:739.971768px;}
.y185{bottom:739.973685px;}
.y139{bottom:739.975183px;}
.y163{bottom:739.975538px;}
.y150{bottom:739.975545px;}
.y183{bottom:739.975934px;}
.y164{bottom:739.991982px;}
.y112{bottom:742.061561px;}
.y12d{bottom:742.066793px;}
.y108{bottom:742.066810px;}
.y10e{bottom:742.067105px;}
.yf3{bottom:742.067242px;}
.y125{bottom:742.079105px;}
.y101{bottom:742.079111px;}
.y11d{bottom:742.079272px;}
.y1e2{bottom:742.628998px;}
.y29{bottom:743.303696px;}
.y165{bottom:744.463486px;}
.y1e4{bottom:744.760803px;}
.y1e1{bottom:744.792734px;}
.y2cb{bottom:746.363516px;}
.y182{bottom:746.731934px;}
.y186{bottom:747.047993px;}
.y19f{bottom:747.050118px;}
.y190{bottom:747.052033px;}
.y1a6{bottom:747.053085px;}
.y1b8{bottom:747.054462px;}
.y1c4{bottom:747.055810px;}
.y1aa{bottom:747.056122px;}
.y192{bottom:747.056992px;}
.y1bd{bottom:747.057308px;}
.y1b0{bottom:747.061519px;}
.y25e{bottom:750.078774px;}
.y232{bottom:750.454788px;}
.y166{bottom:751.227768px;}
.y209{bottom:752.580917px;}
.y3{bottom:752.599495px;}
.y52{bottom:755.672516px;}
.y1a0{bottom:756.050118px;}
.y1c5{bottom:756.055810px;}
.y1b1{bottom:756.061519px;}
.y7f{bottom:756.797516px;}
.y2ca{bottom:760.607516px;}
.y1e0{bottom:762.936734px;}
.y25d{bottom:768.234774px;}
.y231{bottom:768.598788px;}
.y208{bottom:770.724917px;}
.y51{bottom:773.672516px;}
.y7e{bottom:774.797516px;}
.y2c9{bottom:774.851516px;}
.y14d{bottom:779.506531px;}
.y1df{bottom:781.080734px;}
.y28{bottom:781.152191px;}
.y25c{bottom:782.478774px;}
.y161{bottom:785.686523px;}
.y16c{bottom:786.101990px;}
.y14f{bottom:786.271545px;}
.y230{bottom:786.742788px;}
.y207{bottom:788.868917px;}
.y2c8{bottom:789.095516px;}
.y50{bottom:791.672516px;}
.y162{bottom:792.451538px;}
.y7d{bottom:792.797516px;}
.y16d{bottom:792.867188px;}
.y10f{bottom:793.617004px;}
.y136{bottom:796.666534px;}
.y1de{bottom:799.224734px;}
.y111{bottom:800.381561px;}
.y25b{bottom:800.622774px;}
.y2c7{bottom:803.339516px;}
.y138{bottom:803.431183px;}
.y22f{bottom:804.886788px;}
.y206{bottom:807.012917px;}
.y4f{bottom:809.672516px;}
.y7c{bottom:810.797516px;}
.y1dd{bottom:817.368734px;}
.y2c6{bottom:817.583516px;}
.y25a{bottom:818.766774px;}
.y22e{bottom:823.042788px;}
.y27{bottom:823.895529px;}
.y205{bottom:825.168917px;}
.y4e{bottom:827.672516px;}
.y7b{bottom:828.797516px;}
.y168{bottom:830.633972px;}
.y2c5{bottom:831.827516px;}
.y1dc{bottom:835.512734px;}
.y259{bottom:836.922774px;}
.y22d{bottom:837.286788px;}
.y16a{bottom:837.398529px;}
.y204{bottom:839.412917px;}
.y4d{bottom:845.672516px;}
.y2c4{bottom:846.071516px;}
.y26{bottom:846.398529px;}
.y7a{bottom:846.797516px;}
.y258{bottom:851.166774px;}
.y1db{bottom:853.656734px;}
.y2c3{bottom:860.315516px;}
.y4c{bottom:863.672516px;}
.y79{bottom:864.797516px;}
.y22c{bottom:865.294788px;}
.y203{bottom:867.420917px;}
.y2c2{bottom:874.559516px;}
.y257{bottom:879.174774px;}
.y2{bottom:879.369000px;}
.y22b{bottom:879.538788px;}
.y1da{bottom:881.664734px;}
.y202{bottom:881.664917px;}
.y78{bottom:882.797516px;}
.y2c1{bottom:888.803516px;}
.y4b{bottom:899.672516px;}
.y77{bottom:900.797516px;}
.y1d9{bottom:903.047516px;}
.y24{bottom:925.867084px;}
.y76{bottom:939.670349px;}
.ya2{bottom:940.110892px;}
.y49{bottom:940.111075px;}
.y23{bottom:940.111084px;}
.ya1{bottom:940.626892px;}
.y48{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h18{height:6.765000px;}
.h28{height:6.766500px;}
.h3a{height:6.900000px;}
.h36{height:10.198500px;}
.h2b{height:18.528000px;}
.h3b{height:26.466614px;}
.h19{height:29.232000px;}
.h12{height:31.180800px;}
.h2a{height:31.344000px;}
.h37{height:32.064000px;}
.h7{height:32.130000px;}
.h1c{height:32.448000px;}
.h1e{height:32.832000px;}
.h27{height:33.024000px;}
.ha{height:33.840000px;}
.h1d{height:35.459999px;}
.h2f{height:35.550000px;}
.h2d{height:41.175000px;}
.h2e{height:41.339999px;}
.h20{height:41.444999px;}
.h1b{height:41.520000px;}
.h22{height:41.550000px;}
.hb{height:42.048000px;}
.h11{height:44.544000px;}
.h6{height:45.900000px;}
.h24{height:46.995000px;}
.h26{height:47.084999px;}
.h1f{height:47.160000px;}
.h21{height:47.505000px;}
.h34{height:47.520000px;}
.h2c{height:47.535000px;}
.h3{height:48.195000px;}
.h1a{height:49.104000px;}
.h32{height:50.272910px;}
.h23{height:50.320873px;}
.h25{height:50.332745px;}
.h33{height:50.347839px;}
.h35{height:50.534998px;}
.h38{height:50.640000px;}
.h16{height:53.640000px;}
.hc{height:54.862258px;}
.h2{height:55.080000px;}
.h10{height:55.680000px;}
.h31{height:56.084999px;}
.h30{height:56.445002px;}
.h29{height:56.504997px;}
.hf{height:59.340000px;}
.h15{height:61.380000px;}
.h17{height:62.976183px;}
.h14{height:63.300000px;}
.he{height:64.866000px;}
.h13{height:65.274000px;}
.hd{height:69.108000px;}
.h5{height:78.030000px;}
.h39{height:107.616000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wc{width:6.945000px;}
.w7{width:8.250000px;}
.w8{width:8.400000px;}
.wb{width:8.401500px;}
.w5{width:8.550000px;}
.w6{width:8.551500px;}
.w9{width:9.750000px;}
.wa{width:9.901500px;}
.wd{width:21.585000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.303791px;}
.x6{left:76.535402px;}
.x9{left:77.598450px;}
.xa{left:78.746400px;}
.xd{left:85.535402px;}
.xb{left:93.545406px;}
.x8{left:97.799400px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x2e{left:108.864155px;}
.xe{left:121.162200px;}
.x2f{left:123.108155px;}
.x11{left:141.865505px;}
.x31{left:143.384995px;}
.xf{left:149.170200px;}
.x30{left:150.684155px;}
.x53{left:158.511005px;}
.x10{left:163.414200px;}
.x32{left:164.936402px;}
.x52{left:166.558200px;}
.x6a{left:171.884995px;}
.x8d{left:174.955502px;}
.x13{left:177.660146px;}
.x33{left:179.180402px;}
.x54{left:180.816155px;}
.x8c{left:183.164402px;}
.x51{left:186.133495px;}
.x14{left:191.904146px;}
.x34{left:193.424402px;}
.x55{left:195.060155px;}
.x8e{left:197.411404px;}
.x4{left:203.484001px;}
.x58{left:205.010994px;}
.x15{left:206.148146px;}
.x35{left:207.668402px;}
.x8f{left:211.655404px;}
.x56{left:213.204155px;}
.x37{left:214.634995px;}
.x16{left:220.392146px;}
.x36{left:221.912402px;}
.x7c{left:223.172997px;}
.x91{left:225.023401px;}
.x57{left:227.448155px;}
.x6b{left:228.884995px;}
.x7a{left:231.366153px;}
.x90{left:233.346153px;}
.x17{left:234.636146px;}
.x38{left:236.186390px;}
.x59{left:241.716153px;}
.x7b{left:245.610153px;}
.x18{left:248.880146px;}
.x39{left:250.430390px;}
.x5b{left:251.661003px;}
.x93{left:253.847427px;}
.x7d{left:255.573006px;}
.x5a{left:259.860153px;}
.x3b{left:261.285004px;}
.x19{left:263.124146px;}
.x6c{left:264.680390px;}
.x3a{left:268.574390px;}
.x6e{left:271.634995px;}
.x1b{left:274.013992px;}
.x3d{left:275.535004px;}
.x6d{left:278.924390px;}
.x1a{left:281.268146px;}
.x3c{left:282.836400px;}
.x5c{left:288.360139px;}
.x6f{left:293.186390px;}
.x1c{left:295.566144px;}
.x3e{left:297.086400px;}
.x79{left:300.621140px;}
.x5d{left:302.604139px;}
.x7e{left:306.504148px;}
.x1d{left:309.810144px;}
.x3f{left:311.318400px;}
.x5e{left:316.848139px;}
.x70{left:318.283493px;}
.x7f{left:320.748148px;}
.x1e{left:324.054144px;}
.x40{left:325.562400px;}
.x5f{left:331.092139px;}
.x71{left:339.836400px;}
.x1f{left:342.198144px;}
.x41{left:343.706400px;}
.x60{left:345.366139px;}
.x72{left:354.080400px;}
.x20{left:356.442144px;}
.x42{left:357.950400px;}
.x61{left:359.610139px;}
.x21{left:363.414000px;}
.x73{left:368.324400px;}
.x62{left:369.710999px;}
.x22{left:370.722153px;}
.x43{left:372.194400px;}
.x24{left:377.664000px;}
.x81{left:381.411003px;}
.x74{left:382.568400px;}
.x23{left:384.966153px;}
.x44{left:386.438400px;}
.x80{left:389.466157px;}
.x63{left:392.016148px;}
.x75{left:396.812400px;}
.x25{left:399.216153px;}
.x45{left:400.682400px;}
.x82{left:403.716153px;}
.x64{left:406.266171px;}
.x76{left:411.056400px;}
.x46{left:414.926400px;}
.x26{left:417.432153px;}
.x65{left:420.510171px;}
.x95{left:425.219387px;}
.x47{left:429.170400px;}
.x27{left:431.676153px;}
.x78{left:436.258484px;}
.x29{left:438.638992px;}
.x84{left:442.310989px;}
.x77{left:443.528400px;}
.x28{left:445.920153px;}
.x48{left:447.314400px;}
.x67{left:448.835999px;}
.x83{left:450.348150px;}
.x3{left:454.959000px;}
.x66{left:456.882171px;}
.x2a{left:460.191144px;}
.x49{left:461.558400px;}
.x85{left:464.616162px;}
.x94{left:469.895372px;}
.x68{left:471.141171px;}
.x2b{left:474.411144px;}
.x4a{left:475.802400px;}
.x86{left:478.860162px;}
.x92{left:482.122513px;}
.x5{left:485.858414px;}
.x2c{left:488.655144px;}
.x4b{left:490.034400px;}
.x87{left:493.104162px;}
.x69{left:499.629171px;}
.x2d{left:502.899144px;}
.x4c{left:504.278400px;}
.x88{left:507.348162px;}
.x4d{left:518.522400px;}
.x7{left:521.631592px;}
.x50{left:529.558502px;}
.x8a{left:531.636017px;}
.x96{left:534.823517px;}
.x4e{left:536.750400px;}
.x89{left:539.820162px;}
.x4f{left:550.994400px;}
.x8b{left:554.091153px;}
.x97{left:556.409271px;}
.xc{left:565.420029px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v3{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.013398pt;}
.v1{vertical-align:21.333333pt;}
.v5{vertical-align:50.645333pt;}
.ls10{letter-spacing:-3.541333pt;}
.ls17{letter-spacing:-2.816000pt;}
.lsf{letter-spacing:-2.304000pt;}
.lsc{letter-spacing:-1.194667pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.554667pt;}
.ls19{letter-spacing:-0.341333pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.085333pt;}
.ls27{letter-spacing:0.170667pt;}
.ls20{letter-spacing:0.341333pt;}
.ls7{letter-spacing:0.592000pt;}
.ls2f{letter-spacing:0.597323pt;}
.ls30{letter-spacing:0.597325pt;}
.ls2b{letter-spacing:0.597333pt;}
.ls2d{letter-spacing:0.601600pt;}
.ls21{letter-spacing:0.610180pt;}
.ls2{letter-spacing:0.645333pt;}
.ls26{letter-spacing:0.682667pt;}
.ls3{letter-spacing:0.693333pt;}
.ls6{letter-spacing:0.746660pt;}
.ls1{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.752000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.853333pt;}
.lsa{letter-spacing:1.066667pt;}
.ls13{letter-spacing:1.125316pt;}
.ls14{letter-spacing:1.173333pt;}
.ls24{letter-spacing:1.207467pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls31{letter-spacing:1.582913pt;}
.ls1f{letter-spacing:1.962714pt;}
.ls11{letter-spacing:2.186667pt;}
.ls33{letter-spacing:2.304000pt;}
.ls29{letter-spacing:2.905647pt;}
.ls12{letter-spacing:3.146667pt;}
.ls2a{letter-spacing:3.588321pt;}
.ls23{letter-spacing:3.848507pt;}
.ls1d{letter-spacing:4.104517pt;}
.ls9{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:4.625114pt;}
.ls1c{letter-spacing:5.132847pt;}
.ls32{letter-spacing:6.237794pt;}
.ls22{letter-spacing:6.946133pt;}
.ls28{letter-spacing:6.954667pt;}
.ls2e{letter-spacing:7.897653pt;}
.ls1b{letter-spacing:11.780242pt;}
.lse{letter-spacing:11.861333pt;}
.lsd{letter-spacing:14.421333pt;}
.ls1a{letter-spacing:16.910893pt;}
.ls34{letter-spacing:22.958933pt;}
.lsb{letter-spacing:283.562667pt;}
.ws1b{word-spacing:-14.080000pt;}
.ws98{word-spacing:-13.333333pt;}
.ws41{word-spacing:-11.850667pt;}
.ws166{word-spacing:-11.264000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.wsb9{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.wscc{word-spacing:-10.080000pt;}
.ws97{word-spacing:-9.333333pt;}
.wsba{word-spacing:-8.874667pt;}
.ws2{word-spacing:-8.362667pt;}
.ws119{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.wsc0{word-spacing:-7.125333pt;}
.wsbc{word-spacing:-5.333333pt;}
.ws1c{word-spacing:-1.680000pt;}
.wsc{word-spacing:-1.280000pt;}
.wsa9{word-spacing:-1.173333pt;}
.wsb1{word-spacing:-1.066667pt;}
.ws27{word-spacing:-0.853333pt;}
.ws72{word-spacing:-0.800000pt;}
.ws22{word-spacing:-0.746667pt;}
.ws1e{word-spacing:-0.693333pt;}
.ws15c{word-spacing:-0.682667pt;}
.wsdc{word-spacing:-0.640000pt;}
.ws16e{word-spacing:-0.597333pt;}
.wsaf{word-spacing:-0.586667pt;}
.ws14b{word-spacing:-0.554667pt;}
.ws17{word-spacing:-0.533333pt;}
.ws61{word-spacing:-0.480000pt;}
.ws132{word-spacing:-0.469333pt;}
.ws15{word-spacing:-0.426667pt;}
.ws105{word-spacing:-0.373333pt;}
.ws67{word-spacing:-0.320000pt;}
.ws144{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.213333pt;}
.wsbd{word-spacing:-0.170667pt;}
.ws8{word-spacing:-0.160000pt;}
.ws145{word-spacing:-0.128000pt;}
.ws10{word-spacing:-0.106667pt;}
.ws165{word-spacing:-0.085333pt;}
.ws3d{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.053333pt;}
.wsc3{word-spacing:0.106667pt;}
.ws14e{word-spacing:0.128000pt;}
.ws82{word-spacing:0.160000pt;}
.ws14f{word-spacing:0.170667pt;}
.wse8{word-spacing:0.213333pt;}
.ws148{word-spacing:0.256000pt;}
.ws33{word-spacing:0.266667pt;}
.ws51{word-spacing:0.320000pt;}
.ws16a{word-spacing:0.341333pt;}
.wscd{word-spacing:0.373333pt;}
.wsb{word-spacing:0.426667pt;}
.ws36{word-spacing:0.480000pt;}
.ws171{word-spacing:0.512000pt;}
.ws4e{word-spacing:0.533333pt;}
.ws142{word-spacing:0.554667pt;}
.ws5d{word-spacing:0.586667pt;}
.ws12a{word-spacing:0.597333pt;}
.wsf{word-spacing:0.640000pt;}
.ws1f{word-spacing:0.693333pt;}
.ws137{word-spacing:0.725333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws131{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.800000pt;}
.ws71{word-spacing:0.853333pt;}
.ws8b{word-spacing:0.906667pt;}
.ws12c{word-spacing:0.938667pt;}
.wsb8{word-spacing:0.960000pt;}
.ws122{word-spacing:0.981333pt;}
.ws70{word-spacing:1.013333pt;}
.ws4c{word-spacing:1.066667pt;}
.ws49{word-spacing:1.120000pt;}
.ws161{word-spacing:1.152000pt;}
.ws54{word-spacing:1.173333pt;}
.ws11f{word-spacing:1.194667pt;}
.ws7d{word-spacing:1.226667pt;}
.ws85{word-spacing:1.237333pt;}
.ws20{word-spacing:1.280000pt;}
.ws14a{word-spacing:1.322667pt;}
.ws12{word-spacing:1.333333pt;}
.ws173{word-spacing:1.365333pt;}
.ws3c{word-spacing:1.386667pt;}
.ws121{word-spacing:1.408000pt;}
.wse2{word-spacing:1.440000pt;}
.ws28{word-spacing:1.493333pt;}
.ws80{word-spacing:1.546667pt;}
.ws19{word-spacing:1.600000pt;}
.ws178{word-spacing:1.621333pt;}
.ws8a{word-spacing:1.653333pt;}
.ws63{word-spacing:1.706667pt;}
.ws102{word-spacing:1.760000pt;}
.ws130{word-spacing:1.792000pt;}
.wsc4{word-spacing:1.813333pt;}
.ws12d{word-spacing:1.834667pt;}
.ws9{word-spacing:1.866667pt;}
.wsd0{word-spacing:1.920000pt;}
.ws139{word-spacing:1.962667pt;}
.ws3a{word-spacing:1.973333pt;}
.ws167{word-spacing:2.005333pt;}
.ws64{word-spacing:2.026667pt;}
.ws96{word-spacing:2.080000pt;}
.ws169{word-spacing:2.090667pt;}
.ws65{word-spacing:2.133333pt;}
.ws44{word-spacing:2.186667pt;}
.ws69{word-spacing:2.240000pt;}
.ws143{word-spacing:2.261333pt;}
.ws18{word-spacing:2.293333pt;}
.ws79{word-spacing:2.346667pt;}
.ws84{word-spacing:2.389333pt;}
.ws94{word-spacing:2.400000pt;}
.ws15d{word-spacing:2.432000pt;}
.ws2f{word-spacing:2.453333pt;}
.ws181{word-spacing:2.474667pt;}
.wse7{word-spacing:2.506667pt;}
.ws42{word-spacing:2.560000pt;}
.ws13e{word-spacing:2.602667pt;}
.ws9b{word-spacing:2.613333pt;}
.ws11a{word-spacing:2.645333pt;}
.wsb0{word-spacing:2.666667pt;}
.ws154{word-spacing:2.688000pt;}
.ws101{word-spacing:2.720000pt;}
.ws147{word-spacing:2.730667pt;}
.ws73{word-spacing:2.773333pt;}
.wsd3{word-spacing:2.826667pt;}
.ws120{word-spacing:2.858667pt;}
.wsa{word-spacing:2.880000pt;}
.ws59{word-spacing:2.933333pt;}
.ws7a{word-spacing:2.986667pt;}
.ws152{word-spacing:3.029333pt;}
.ws68{word-spacing:3.040000pt;}
.ws11d{word-spacing:3.072000pt;}
.ws21{word-spacing:3.093333pt;}
.ws180{word-spacing:3.114667pt;}
.wse3{word-spacing:3.146667pt;}
.ws90{word-spacing:3.200000pt;}
.ws127{word-spacing:3.242667pt;}
.ws86{word-spacing:3.253333pt;}
.ws128{word-spacing:3.285333pt;}
.ws77{word-spacing:3.306667pt;}
.ws10d{word-spacing:3.360000pt;}
.wsc7{word-spacing:3.413333pt;}
.ws11b{word-spacing:3.456000pt;}
.ws30{word-spacing:3.466667pt;}
.ws91{word-spacing:3.520000pt;}
.ws141{word-spacing:3.541333pt;}
.ws66{word-spacing:3.573333pt;}
.ws11c{word-spacing:3.584000pt;}
.wsa6{word-spacing:3.626667pt;}
.ws7b{word-spacing:3.680000pt;}
.ws6e{word-spacing:3.733333pt;}
.wsab{word-spacing:3.786667pt;}
.ws158{word-spacing:3.797333pt;}
.ws55{word-spacing:3.840000pt;}
.ws11e{word-spacing:3.882667pt;}
.ws99{word-spacing:3.893333pt;}
.ws13b{word-spacing:3.925333pt;}
.ws24{word-spacing:3.946667pt;}
.ws176{word-spacing:3.968000pt;}
.ws60{word-spacing:4.000000pt;}
.wsf0{word-spacing:4.053333pt;}
.ws174{word-spacing:4.096000pt;}
.ws7c{word-spacing:4.106667pt;}
.ws129{word-spacing:4.138667pt;}
.wsda{word-spacing:4.160000pt;}
.ws12f{word-spacing:4.181333pt;}
.ws74{word-spacing:4.213333pt;}
.ws88{word-spacing:4.266667pt;}
.ws57{word-spacing:4.320000pt;}
.wsaa{word-spacing:4.373333pt;}
.ws13d{word-spacing:4.394667pt;}
.ws76{word-spacing:4.426667pt;}
.ws32{word-spacing:4.480000pt;}
.ws12b{word-spacing:4.522667pt;}
.ws92{word-spacing:4.533333pt;}
.ws52{word-spacing:4.586667pt;}
.ws95{word-spacing:4.640000pt;}
.wsa7{word-spacing:4.693333pt;}
.ws29{word-spacing:4.746667pt;}
.ws124{word-spacing:4.778667pt;}
.wsdb{word-spacing:4.800000pt;}
.ws126{word-spacing:4.821333pt;}
.ws4d{word-spacing:4.853333pt;}
.ws149{word-spacing:4.864000pt;}
.wscf{word-spacing:4.906667pt;}
.ws138{word-spacing:4.949333pt;}
.ws81{word-spacing:4.960000pt;}
.ws125{word-spacing:4.992000pt;}
.ws39{word-spacing:5.013333pt;}
.ws16c{word-spacing:5.034667pt;}
.ws109{word-spacing:5.066667pt;}
.ws170{word-spacing:5.077333pt;}
.ws106{word-spacing:5.120000pt;}
.wse6{word-spacing:5.173333pt;}
.ws6b{word-spacing:5.226667pt;}
.ws15b{word-spacing:5.248000pt;}
.ws2e{word-spacing:5.280000pt;}
.ws7f{word-spacing:5.333333pt;}
.ws87{word-spacing:5.386667pt;}
.ws6a{word-spacing:5.440000pt;}
.ws112{word-spacing:5.493333pt;}
.ws37{word-spacing:5.546667pt;}
.ws38{word-spacing:5.600000pt;}
.ws83{word-spacing:5.632000pt;}
.ws5c{word-spacing:5.653333pt;}
.ws179{word-spacing:5.674667pt;}
.wse{word-spacing:5.706667pt;}
.ws157{word-spacing:5.717333pt;}
.wsa4{word-spacing:5.760000pt;}
.ws50{word-spacing:5.813333pt;}
.wsf3{word-spacing:5.866667pt;}
.wsac{word-spacing:5.920000pt;}
.wsc5{word-spacing:5.973333pt;}
.ws12e{word-spacing:6.016000pt;}
.ws45{word-spacing:6.026667pt;}
.ws4a{word-spacing:6.080000pt;}
.ws134{word-spacing:6.101333pt;}
.wsff{word-spacing:6.133333pt;}
.ws16b{word-spacing:6.144000pt;}
.ws8d{word-spacing:6.186667pt;}
.ws9c{word-spacing:6.240000pt;}
.ws17b{word-spacing:6.272000pt;}
.wsd2{word-spacing:6.293333pt;}
.wsb4{word-spacing:6.346667pt;}
.ws75{word-spacing:6.400000pt;}
.ws47{word-spacing:6.453333pt;}
.wsa1{word-spacing:6.506667pt;}
.ws46{word-spacing:6.560000pt;}
.ws8c{word-spacing:6.613333pt;}
.ws168{word-spacing:6.656000pt;}
.ws93{word-spacing:6.666667pt;}
.ws8e{word-spacing:6.720000pt;}
.ws26{word-spacing:6.773333pt;}
.ws58{word-spacing:6.826667pt;}
.ws153{word-spacing:6.869333pt;}
.wsa5{word-spacing:6.880000pt;}
.ws43{word-spacing:6.933333pt;}
.ws146{word-spacing:6.954667pt;}
.wsb6{word-spacing:6.986667pt;}
.ws172{word-spacing:6.997333pt;}
.ws8f{word-spacing:7.093333pt;}
.ws16f{word-spacing:7.125333pt;}
.ws104{word-spacing:7.146667pt;}
.wsa0{word-spacing:7.200000pt;}
.ws6f{word-spacing:7.253333pt;}
.ws4b{word-spacing:7.306667pt;}
.ws15a{word-spacing:7.338667pt;}
.ws9d{word-spacing:7.360000pt;}
.ws62{word-spacing:7.413333pt;}
.ws9e{word-spacing:7.466667pt;}
.ws150{word-spacing:7.509333pt;}
.ws56{word-spacing:7.520000pt;}
.ws3e{word-spacing:7.573333pt;}
.ws7e{word-spacing:7.626667pt;}
.ws10c{word-spacing:7.680000pt;}
.ws11{word-spacing:7.733333pt;}
.wsb2{word-spacing:7.786667pt;}
.wsc6{word-spacing:7.840000pt;}
.wsc1{word-spacing:7.893333pt;}
.ws155{word-spacing:7.936000pt;}
.wsad{word-spacing:7.946667pt;}
.ws6c{word-spacing:8.000000pt;}
.ws160{word-spacing:8.021333pt;}
.wse4{word-spacing:8.053333pt;}
.wsf1{word-spacing:8.106667pt;}
.ws40{word-spacing:8.213333pt;}
.wsd{word-spacing:8.266667pt;}
.wsb5{word-spacing:8.320000pt;}
.ws140{word-spacing:8.362667pt;}
.ws108{word-spacing:8.426667pt;}
.ws5b{word-spacing:8.480000pt;}
.ws53{word-spacing:8.533333pt;}
.ws25{word-spacing:8.586667pt;}
.ws23{word-spacing:8.640000pt;}
.ws9a{word-spacing:8.693333pt;}
.ws100{word-spacing:8.746667pt;}
.ws115{word-spacing:8.800000pt;}
.ws5a{word-spacing:8.853333pt;}
.ws136{word-spacing:8.874667pt;}
.wsa2{word-spacing:8.960000pt;}
.wsc2{word-spacing:9.013333pt;}
.ws48{word-spacing:9.066667pt;}
.ws177{word-spacing:9.088000pt;}
.ws111{word-spacing:9.120000pt;}
.wsfd{word-spacing:9.173333pt;}
.ws17a{word-spacing:9.216000pt;}
.wsf2{word-spacing:9.280000pt;}
.wsf9{word-spacing:9.333333pt;}
.wsfe{word-spacing:9.386667pt;}
.ws14{word-spacing:9.440000pt;}
.wsa8{word-spacing:9.493333pt;}
.wsb3{word-spacing:9.546667pt;}
.ws13a{word-spacing:9.642667pt;}
.wsae{word-spacing:9.653333pt;}
.ws2c{word-spacing:9.760000pt;}
.wsd1{word-spacing:9.813333pt;}
.ws151{word-spacing:9.898667pt;}
.ws107{word-spacing:9.973333pt;}
.ws35{word-spacing:10.026667pt;}
.ws118{word-spacing:10.133333pt;}
.ws110{word-spacing:10.293333pt;}
.wsa3{word-spacing:10.506667pt;}
.ws113{word-spacing:10.560000pt;}
.ws16d{word-spacing:10.581333pt;}
.wsfa{word-spacing:10.666667pt;}
.ws10b{word-spacing:10.826667pt;}
.ws116{word-spacing:10.880000pt;}
.ws4f{word-spacing:10.933333pt;}
.wsfb{word-spacing:10.986667pt;}
.ws34{word-spacing:11.093333pt;}
.ws3b{word-spacing:11.253333pt;}
.ws103{word-spacing:11.466667pt;}
.ws123{word-spacing:11.648000pt;}
.ws78{word-spacing:11.840000pt;}
.ws13{word-spacing:12.000000pt;}
.ws3f{word-spacing:12.053333pt;}
.wse5{word-spacing:12.106667pt;}
.wsdd{word-spacing:12.160000pt;}
.ws163{word-spacing:12.202667pt;}
.ws114{word-spacing:12.213333pt;}
.ws10e{word-spacing:12.266667pt;}
.ws10f{word-spacing:12.480000pt;}
.ws164{word-spacing:12.544000pt;}
.ws15e{word-spacing:12.672000pt;}
.ws89{word-spacing:12.693333pt;}
.ws5e{word-spacing:13.013333pt;}
.ws6d{word-spacing:13.120000pt;}
.ws10a{word-spacing:13.173333pt;}
.ws17d{word-spacing:13.312000pt;}
.ws17e{word-spacing:13.354667pt;}
.ws14d{word-spacing:13.440000pt;}
.wsce{word-spacing:13.653333pt;}
.ws5f{word-spacing:13.813333pt;}
.ws162{word-spacing:13.824000pt;}
.wse1{word-spacing:14.346667pt;}
.wsfc{word-spacing:14.560000pt;}
.ws31{word-spacing:15.040000pt;}
.ws9f{word-spacing:15.413333pt;}
.ws117{word-spacing:15.840000pt;}
.ws13c{word-spacing:16.682667pt;}
.wsb7{word-spacing:16.693333pt;}
.ws15f{word-spacing:17.109333pt;}
.ws1d{word-spacing:17.482667pt;}
.ws17c{word-spacing:19.712000pt;}
.ws156{word-spacing:19.882667pt;}
.ws175{word-spacing:20.608000pt;}
.ws159{word-spacing:22.613333pt;}
.ws17f{word-spacing:22.997333pt;}
.ws13f{word-spacing:23.168000pt;}
.ws133{word-spacing:24.576000pt;}
.ws14c{word-spacing:28.330667pt;}
.ws135{word-spacing:29.013333pt;}
.wsdf{word-spacing:49.237333pt;}
.ws1a{word-spacing:64.938667pt;}
.wsea{word-spacing:120.960000pt;}
.wsc8{word-spacing:124.117318pt;}
.wsd4{word-spacing:133.760000pt;}
.wsd5{word-spacing:155.093333pt;}
.wsd6{word-spacing:176.426667pt;}
.wsbf{word-spacing:184.622933pt;}
.wse0{word-spacing:198.485333pt;}
.wsbb{word-spacing:222.890667pt;}
.wsbe{word-spacing:247.381333pt;}
.wsca{word-spacing:248.789318pt;}
.wscb{word-spacing:270.122652pt;}
.wsed{word-spacing:270.208000pt;}
.wsc9{word-spacing:292.906652pt;}
.wsf6{word-spacing:304.896000pt;}
.wsf8{word-spacing:326.229333pt;}
.wsd8{word-spacing:379.562667pt;}
.wsd9{word-spacing:386.986667pt;}
.wsd7{word-spacing:448.682667pt;}
.wsf7{word-spacing:624.341333pt;}
.wseb{word-spacing:628.821325pt;}
.wsf4{word-spacing:648.746667pt;}
.wsee{word-spacing:653.226659pt;}
.wsf5{word-spacing:656.170667pt;}
.wsef{word-spacing:660.650659pt;}
.wsec{word-spacing:1115.178635pt;}
.wse9{word-spacing:1117.055969pt;}
.wsde{word-spacing:1223.253397pt;}
._9d{margin-left:-33.280000pt;}
._9b{margin-left:-24.106667pt;}
._9f{margin-left:-22.869333pt;}
._a0{margin-left:-21.248000pt;}
._96{margin-left:-19.541333pt;}
._9c{margin-left:-18.176000pt;}
._14{margin-left:-16.576000pt;}
._92{margin-left:-14.848000pt;}
._4{margin-left:-13.866667pt;}
._93{margin-left:-12.458667pt;}
._91{margin-left:-11.264000pt;}
._10{margin-left:-10.080000pt;}
._22{margin-left:-8.874667pt;}
._13{margin-left:-4.362667pt;}
._3{margin-left:-3.082667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.397333pt;}
._c{width:2.965333pt;}
._b{width:4.661309pt;}
._11{width:6.122667pt;}
._12{width:7.253333pt;}
._9{width:8.197333pt;}
._a{width:9.402667pt;}
._9e{width:10.453333pt;}
._e{width:11.418133pt;}
._95{width:12.356267pt;}
._15{width:13.702400pt;}
._f{width:16.586667pt;}
._97{width:17.834667pt;}
._5{width:19.840000pt;}
._8d{width:21.696000pt;}
._8f{width:22.954667pt;}
._99{width:23.978667pt;}
._8e{width:24.986666pt;}
._46{width:26.666667pt;}
._9a{width:27.562667pt;}
._d{width:29.333333pt;}
._72{width:33.450659pt;}
._1{width:35.150389pt;}
._90{width:38.197333pt;}
._94{width:39.880534pt;}
._98{width:41.213869pt;}
._6b{width:42.965333pt;}
._38{width:45.306667pt;}
._7{width:50.005325pt;}
._74{width:56.362659pt;}
._3d{width:57.898667pt;}
._48{width:59.392000pt;}
._36{width:61.434667pt;}
._6{width:64.938667pt;}
._56{width:68.010667pt;}
._25{width:77.450667pt;}
._2c{width:84.864000pt;}
._1d{width:96.597333pt;}
._62{width:98.858730pt;}
._58{width:102.784000pt;}
._39{width:110.122667pt;}
._87{width:115.583977pt;}
._21{width:119.424000pt;}
._3e{width:121.429333pt;}
._28{width:128.682667pt;}
._3a{width:154.496000pt;}
._8b{width:159.488000pt;}
._27{width:164.048000pt;}
._53{width:165.760000pt;}
._6a{width:174.506667pt;}
._4b{width:182.826660pt;}
._5f{width:184.063964pt;}
._44{width:185.088000pt;}
._51{width:187.093333pt;}
._2d{width:188.032000pt;}
._7e{width:192.554667pt;}
._2a{width:196.224000pt;}
._4d{width:203.434660pt;}
._81{width:205.525311pt;}
._1f{width:206.714667pt;}
._5a{width:209.152000pt;}
._60{width:210.901297pt;}
._2e{width:211.978667pt;}
._1b{width:217.381334pt;}
._29{width:221.866667pt;}
._54{width:224.128000pt;}
._1c{width:225.632000pt;}
._23{width:230.101333pt;}
._2b{width:231.424000pt;}
._26{width:236.117333pt;}
._19{width:238.549333pt;}
._34{width:243.109318pt;}
._52{width:245.461333pt;}
._35{width:251.093333pt;}
._8c{width:254.005333pt;}
._33{width:257.877333pt;}
._89{width:260.138667pt;}
._1a{width:261.418667pt;}
._45{width:263.295985pt;}
._32{width:265.258667pt;}
._3c{width:269.994667pt;}
._20{width:274.730667pt;}
._41{width:277.589318pt;}
._6c{width:281.013325pt;}
._82{width:283.562667pt;}
._55{width:301.568000pt;}
._76{width:302.666667pt;}
._24{width:311.978667pt;}
._88{width:314.837333pt;}
._3f{width:315.818652pt;}
._37{width:317.610667pt;}
._7d{width:320.352000pt;}
._4a{width:322.517333pt;}
._50{width:323.669333pt;}
._3b{width:327.466667pt;}
._42{width:330.762667pt;}
._80{width:336.426703pt;}
._84{width:337.669326pt;}
._4e{width:341.589333pt;}
._6f{width:350.933325pt;}
._66{width:353.706631pt;}
._4c{width:360.448000pt;}
._16{width:365.994667pt;}
._5c{width:370.186631pt;}
._2f{width:373.418667pt;}
._4f{width:376.234667pt;}
._67{width:390.783964pt;}
._1e{width:398.890667pt;}
._49{width:402.432000pt;}
._43{width:404.191985pt;}
._8a{width:420.138667pt;}
._64{width:428.629297pt;}
._30{width:432.128000pt;}
._77{width:440.959992pt;}
._86{width:448.512000pt;}
._65{width:452.309297pt;}
._40{width:460.671991pt;}
._85{width:462.602667pt;}
._75{width:465.631992pt;}
._7a{width:467.082659pt;}
._6d{width:469.375992pt;}
._71{width:475.605325pt;}
._79{width:477.866635pt;}
._78{width:482.389325pt;}
._6e{width:499.285325pt;}
._17{width:505.137611pt;}
._18{width:511.018667pt;}
._59{width:513.503964pt;}
._31{width:519.466667pt;}
._61{width:545.749297pt;}
._5d{width:548.351964pt;}
._83{width:600.277333pt;}
._73{width:602.367992pt;}
._70{width:604.255992pt;}
._5e{width:609.365297pt;}
._68{width:610.858631pt;}
._7f{width:620.160000pt;}
._5b{width:671.061297pt;}
._47{width:722.560000pt;}
._63{width:764.330730pt;}
._7c{width:898.602644pt;}
._7b{width:986.325311pt;}
._69{width:1038.933302pt;}
._57{width:1145.130730pt;}
._8{width:1484.159957pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y181{bottom:-0.686401pt;}
.yfd{bottom:-0.685994pt;}
.y119{bottom:-0.685872pt;}
.yf9{bottom:-0.685750pt;}
.y115{bottom:-0.685749pt;}
.y110{bottom:-0.685710pt;}
.y169{bottom:-0.685547pt;}
.y137{bottom:-0.685465pt;}
.y14e{bottom:-0.685384pt;}
.y134{bottom:-0.685221pt;}
.y104{bottom:-0.685099pt;}
.y12a{bottom:-0.685059pt;}
.y1b5{bottom:-0.684937pt;}
.y10c{bottom:-0.684814pt;}
.yf1{bottom:-0.684652pt;}
.y15f{bottom:-0.684530pt;}
.y142{bottom:-0.684408pt;}
.y0{bottom:0.000000pt;}
.y278{bottom:0.173055pt;}
.y1c1{bottom:0.206950pt;}
.y13e{bottom:0.207357pt;}
.y18d{bottom:0.207601pt;}
.y131{bottom:0.207723pt;}
.y15c{bottom:0.207845pt;}
.y18a{bottom:0.208416pt;}
.y154{bottom:0.208944pt;}
.y1e3{bottom:1.905477pt;}
.y17a{bottom:21.195882pt;}
.y197{bottom:21.196533pt;}
.y4a{bottom:44.111465pt;}
.y25{bottom:44.112000pt;}
.y22{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.y187{bottom:79.989316pt;}
.y1a1{bottom:79.991205pt;}
.y191{bottom:79.992907pt;}
.y1a7{bottom:79.993842pt;}
.y113{bottom:79.994277pt;}
.y1ab{bottom:79.996541pt;}
.y193{bottom:79.997314pt;}
.y1be{bottom:79.997596pt;}
.y15b{bottom:79.998922pt;}
.y176{bottom:79.999299pt;}
.yf4{bottom:79.999326pt;}
.y146{bottom:79.999433pt;}
.y109{bottom:79.999867pt;}
.yec{bottom:80.000000pt;}
.y1b2{bottom:80.001339pt;}
.y199{bottom:80.001736pt;}
.y16f{bottom:80.003334pt;}
.y47{bottom:80.005333pt;}
.y13a{bottom:80.006369pt;}
.y151{bottom:80.006691pt;}
.y102{bottom:80.009877pt;}
.y11e{bottom:80.010019pt;}
.y12f{bottom:80.010651pt;}
.yc9{bottom:80.016000pt;}
.yc5{bottom:80.708903pt;}
.y28a{bottom:80.708923pt;}
.y290{bottom:80.708933pt;}
.ya0{bottom:80.708944pt;}
.yeb{bottom:81.068903pt;}
.y1d8{bottom:82.832926pt;}
.y201{bottom:83.031596pt;}
.y22a{bottom:85.675191pt;}
.y4{bottom:86.333337pt;}
.y1a2{bottom:87.991205pt;}
.y194{bottom:87.997314pt;}
.y147{bottom:87.999433pt;}
.yee{bottom:88.000000pt;}
.y19a{bottom:88.001736pt;}
.y1f4{bottom:88.166260pt;}
.yc8{bottom:92.677333pt;}
.y2af{bottom:92.708903pt;}
.y2f8{bottom:93.674236pt;}
.yc4{bottom:96.708903pt;}
.y289{bottom:96.708923pt;}
.y28f{bottom:96.708933pt;}
.y9f{bottom:96.708944pt;}
.y46{bottom:96.933329pt;}
.yea{bottom:97.068903pt;}
.y1d7{bottom:98.832926pt;}
.y200{bottom:99.031596pt;}
.y229{bottom:101.675191pt;}
.y1f3{bottom:104.166260pt;}
.yc7{bottom:105.338667pt;}
.y256{bottom:106.092529pt;}
.y2f7{bottom:106.335570pt;}
.y282{bottom:108.042257pt;}
.y2ae{bottom:108.708903pt;}
.y2c0{bottom:109.786271pt;}
.y75{bottom:111.708903pt;}
.yc3{bottom:112.708903pt;}
.y288{bottom:112.708923pt;}
.y28e{bottom:112.708933pt;}
.y9e{bottom:112.708944pt;}
.ye9{bottom:113.068903pt;}
.y1d6{bottom:114.832926pt;}
.y1ff{bottom:115.031596pt;}
.y228{bottom:117.675191pt;}
.y45{bottom:118.148667pt;}
.y2f6{bottom:118.996903pt;}
.y1f2{bottom:120.166260pt;}
.y255{bottom:122.092529pt;}
.yc6{bottom:122.266663pt;}
.y2bf{bottom:122.447604pt;}
.y21{bottom:123.790666pt;}
.y281{bottom:124.042257pt;}
.y2ad{bottom:124.708903pt;}
.y74{bottom:127.708903pt;}
.yc2{bottom:128.708903pt;}
.y287{bottom:128.708923pt;}
.y28d{bottom:128.708933pt;}
.y9d{bottom:128.708944pt;}
.ye8{bottom:129.068903pt;}
.y44{bottom:130.810000pt;}
.y1d5{bottom:130.832926pt;}
.y1fe{bottom:131.031596pt;}
.y2f5{bottom:131.658236pt;}
.y227{bottom:133.675191pt;}
.y2be{bottom:135.108938pt;}
.y1f1{bottom:136.166260pt;}
.y254{bottom:138.092529pt;}
.y280{bottom:140.042257pt;}
.y2ac{bottom:140.708903pt;}
.y73{bottom:143.708903pt;}
.y2f4{bottom:144.319570pt;}
.yc1{bottom:144.708903pt;}
.y286{bottom:144.708923pt;}
.y9c{bottom:144.708944pt;}
.ye7{bottom:145.068903pt;}
.y1d4{bottom:146.832926pt;}
.y1fd{bottom:147.031596pt;}
.y226{bottom:149.675191pt;}
.y43{bottom:150.180667pt;}
.y1f0{bottom:152.166260pt;}
.y253{bottom:154.092529pt;}
.y27f{bottom:156.042257pt;}
.y2ab{bottom:156.708903pt;}
.y2f3{bottom:156.980903pt;}
.y72{bottom:159.708903pt;}
.yc0{bottom:160.708903pt;}
.y285{bottom:160.708923pt;}
.y28c{bottom:160.708933pt;}
.y9b{bottom:160.708944pt;}
.ye6{bottom:161.068903pt;}
.y42{bottom:162.842000pt;}
.y1fc{bottom:163.031596pt;}
.y2bd{bottom:164.042267pt;}
.y225{bottom:165.675191pt;}
.y1ef{bottom:168.166260pt;}
.y2fa{bottom:169.631570pt;}
.y2f2{bottom:169.642236pt;}
.y252{bottom:170.092529pt;}
.y27e{bottom:172.042257pt;}
.y2aa{bottom:172.708903pt;}
.y18{bottom:175.052000pt;}
.y71{bottom:175.708903pt;}
.ybf{bottom:176.708903pt;}
.y284{bottom:176.708923pt;}
.y9a{bottom:176.708944pt;}
.ye5{bottom:177.068903pt;}
.y1d3{bottom:178.832926pt;}
.y1fb{bottom:179.031596pt;}
.y224{bottom:181.675191pt;}
.y2f9{bottom:182.292903pt;}
.y2f1{bottom:182.303570pt;}
.y1ee{bottom:184.166260pt;}
.y251{bottom:186.092529pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y27d{bottom:188.042257pt;}
.y2a9{bottom:188.708903pt;}
.y70{bottom:191.708903pt;}
.ybe{bottom:192.708903pt;}
.y28b{bottom:192.708923pt;}
.y99{bottom:192.708944pt;}
.ye4{bottom:193.068903pt;}
.y2f0{bottom:194.964903pt;}
.y1fa{bottom:195.031596pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y223{bottom:197.675191pt;}
.y250{bottom:202.092529pt;}
.y27c{bottom:204.042257pt;}
.y2a8{bottom:204.708903pt;}
.y2ef{bottom:207.626236pt;}
.y6f{bottom:207.708903pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ybd{bottom:208.708903pt;}
.y283{bottom:208.708923pt;}
.y98{bottom:208.708944pt;}
.ye3{bottom:209.068903pt;}
.y1d2{bottom:210.832926pt;}
.y1f9{bottom:211.031596pt;}
.y222{bottom:213.675191pt;}
.y24f{bottom:218.092529pt;}
.y1f5{bottom:218.150269pt;}
.y27b{bottom:220.042257pt;}
.y2ee{bottom:220.287570pt;}
.y2a7{bottom:220.708903pt;}
.y6e{bottom:223.708903pt;}
.ybc{bottom:224.708903pt;}
.y97{bottom:224.708944pt;}
.ye2{bottom:225.068903pt;}
.y1f8{bottom:227.031596pt;}
.y1a3{bottom:228.183201pt;}
.y195{bottom:228.189311pt;}
.y19b{bottom:228.193733pt;}
.y221{bottom:229.675191pt;}
.y2bc{bottom:230.090277pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y2ed{bottom:232.948903pt;}
.y24e{bottom:234.092529pt;}
.y27a{bottom:236.042257pt;}
.y41{bottom:236.281860pt;}
.y2a6{bottom:236.708903pt;}
.y6d{bottom:239.708903pt;}
.ybb{bottom:240.708903pt;}
.y96{bottom:240.708944pt;}
.yef{bottom:240.736000pt;}
.ye1{bottom:241.068903pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y148{bottom:242.591433pt;}
.y2bb{bottom:242.751610pt;}
.y1f7{bottom:243.031596pt;}
.y2ec{bottom:245.610236pt;}
.y220{bottom:245.675191pt;}
.y24d{bottom:250.092529pt;}
.y177{bottom:250.591299pt;}
.y277{bottom:251.874674pt;}
.y276{bottom:252.042236pt;}
.y279{bottom:252.042257pt;}
.y40{bottom:252.281860pt;}
.y2a5{bottom:252.708903pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y2ba{bottom:255.412944pt;}
.y6c{bottom:255.708903pt;}
.yba{bottom:256.708903pt;}
.y95{bottom:256.708944pt;}
.ye0{bottom:257.068903pt;}
.y2eb{bottom:258.271570pt;}
.y1f6{bottom:259.031596pt;}
.y24c{bottom:266.092529pt;}
.y275{bottom:268.042236pt;}
.y2b9{bottom:268.074277pt;}
.y2a4{bottom:268.708903pt;}
.y2ea{bottom:270.932903pt;}
.y6b{bottom:271.708903pt;}
.yb9{bottom:272.708903pt;}
.y94{bottom:272.708944pt;}
.ydf{bottom:273.068903pt;}
.y1d1{bottom:275.499593pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2b8{bottom:280.735610pt;}
.y24b{bottom:282.092529pt;}
.y2e9{bottom:283.594236pt;}
.y274{bottom:284.042236pt;}
.y2a3{bottom:284.708903pt;}
.y3f{bottom:284.948527pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y6a{bottom:287.708903pt;}
.yb8{bottom:288.708903pt;}
.y93{bottom:288.708944pt;}
.yde{bottom:289.068903pt;}
.y1d0{bottom:291.499593pt;}
.y2b7{bottom:293.396944pt;}
.y2e8{bottom:296.255570pt;}
.y24a{bottom:298.092529pt;}
.y249{bottom:298.430923pt;}
.y2a2{bottom:300.708903pt;}
.y3e{bottom:300.948527pt;}
.y69{bottom:303.708903pt;}
.yb7{bottom:304.708903pt;}
.y92{bottom:304.708944pt;}
.ydd{bottom:305.068903pt;}
.y2b6{bottom:306.058277pt;}
.y1cf{bottom:307.499593pt;}
.y2e7{bottom:308.916903pt;}
.yf{bottom:309.452000pt;}
.y248{bottom:314.633589pt;}
.y273{bottom:316.042236pt;}
.y2a1{bottom:316.708903pt;}
.y3d{bottom:316.948527pt;}
.y2b5{bottom:318.719610pt;}
.y68{bottom:319.708903pt;}
.yb6{bottom:320.708903pt;}
.y91{bottom:320.708944pt;}
.ydc{bottom:321.068903pt;}
.y2e6{bottom:321.578236pt;}
.y1ce{bottom:323.499593pt;}
.y21f{bottom:324.438148pt;}
.y2b4{bottom:331.380944pt;}
.y2a0{bottom:332.708903pt;}
.y3c{bottom:332.948527pt;}
.y2e5{bottom:334.239570pt;}
.y247{bottom:335.294923pt;}
.y67{bottom:335.708903pt;}
.yb5{bottom:336.708903pt;}
.y90{bottom:336.708944pt;}
.ydb{bottom:337.068903pt;}
.y1cd{bottom:339.499593pt;}
.y126{bottom:340.362667pt;}
.y11f{bottom:340.372686pt;}
.y21e{bottom:340.640815pt;}
.ye{bottom:343.809333pt;}
.y272{bottom:344.176688pt;}
.y178{bottom:346.751299pt;}
.y2e4{bottom:346.900903pt;}
.y29f{bottom:348.708903pt;}
.y3b{bottom:348.948527pt;}
.y246{bottom:351.433589pt;}
.y66{bottom:351.708903pt;}
.yb4{bottom:352.708903pt;}
.y8f{bottom:352.708944pt;}
.yda{bottom:353.068903pt;}
.y13b{bottom:354.758369pt;}
.y1cc{bottom:355.499593pt;}
.y2b3{bottom:356.714277pt;}
.y21d{bottom:356.768815pt;}
.y2e3{bottom:359.562236pt;}
.y271{bottom:360.304688pt;}
.yd{bottom:362.706666pt;}
.y245{bottom:364.094923pt;}
.y29e{bottom:364.708903pt;}
.y3a{bottom:364.948527pt;}
.y65{bottom:367.708903pt;}
.yb3{bottom:368.708903pt;}
.y8e{bottom:368.708944pt;}
.yd9{bottom:369.068903pt;}
.y2b2{bottom:369.375610pt;}
.y1cb{bottom:371.499593pt;}
.y2e2{bottom:372.223570pt;}
.y21c{bottom:372.896815pt;}
.y270{bottom:376.432688pt;}
.y188{bottom:376.757312pt;}
.y19c{bottom:376.769733pt;}
.y244{bottom:380.222923pt;}
.y29d{bottom:380.708903pt;}
.y39{bottom:380.948527pt;}
.y64{bottom:383.708903pt;}
.yb2{bottom:384.708903pt;}
.y8d{bottom:384.708944pt;}
.y2e1{bottom:384.884903pt;}
.yd8{bottom:385.068903pt;}
.y1ca{bottom:387.499593pt;}
.y21b{bottom:389.024815pt;}
.y26f{bottom:392.560688pt;}
.y2b1{bottom:394.708944pt;}
.y243{bottom:396.350923pt;}
.y29c{bottom:396.708903pt;}
.y38{bottom:396.948527pt;}
.y2e0{bottom:397.546236pt;}
.y63{bottom:399.708903pt;}
.yb1{bottom:400.708903pt;}
.y8c{bottom:400.708944pt;}
.yd7{bottom:401.068903pt;}
.y1c9{bottom:403.499593pt;}
.y21a{bottom:405.152815pt;}
.y26e{bottom:408.688688pt;}
.y2df{bottom:410.207570pt;}
.y242{bottom:412.478923pt;}
.y29b{bottom:412.708903pt;}
.y37{bottom:412.948527pt;}
.y62{bottom:415.708903pt;}
.yb0{bottom:416.708903pt;}
.y8b{bottom:416.708944pt;}
.yd6{bottom:417.068903pt;}
.y1c8{bottom:419.499593pt;}
.y219{bottom:421.280815pt;}
.y2de{bottom:422.868903pt;}
.y2b0{bottom:423.375610pt;}
.y26d{bottom:424.816688pt;}
.y241{bottom:428.606923pt;}
.y29a{bottom:428.708903pt;}
.y36{bottom:428.948527pt;}
.y61{bottom:431.708903pt;}
.yaf{bottom:432.708903pt;}
.y8a{bottom:432.708944pt;}
.yd5{bottom:433.068903pt;}
.y1c7{bottom:435.499593pt;}
.y2dd{bottom:435.530236pt;}
.y218{bottom:437.408815pt;}
.y26c{bottom:440.944688pt;}
.y299{bottom:444.708903pt;}
.y240{bottom:444.734923pt;}
.y35{bottom:444.948527pt;}
.yc{bottom:446.990669pt;}
.y60{bottom:447.708903pt;}
.y2dc{bottom:448.191570pt;}
.yae{bottom:448.708903pt;}
.y89{bottom:448.708944pt;}
.yd4{bottom:449.068903pt;}
.y217{bottom:453.536815pt;}
.y26b{bottom:457.072688pt;}
.y298{bottom:460.708903pt;}
.y2db{bottom:460.852903pt;}
.y23f{bottom:460.862923pt;}
.y34{bottom:460.948527pt;}
.yb{bottom:462.990669pt;}
.y5f{bottom:463.708903pt;}
.yad{bottom:464.708903pt;}
.y88{bottom:464.708944pt;}
.yd3{bottom:465.068903pt;}
.y1c6{bottom:467.499593pt;}
.y216{bottom:469.664815pt;}
.y26a{bottom:473.200688pt;}
.y2da{bottom:473.514236pt;}
.y297{bottom:476.708903pt;}
.y33{bottom:476.948527pt;}
.y23e{bottom:476.990923pt;}
.ya{bottom:478.990666pt;}
.y5e{bottom:479.708903pt;}
.yac{bottom:480.708903pt;}
.y87{bottom:480.708944pt;}
.yd2{bottom:481.068903pt;}
.y215{bottom:485.803482pt;}
.y2d9{bottom:486.175570pt;}
.y130{bottom:487.885335pt;}
.y269{bottom:489.328688pt;}
.y127{bottom:491.861333pt;}
.y120{bottom:491.871353pt;}
.y296{bottom:492.708903pt;}
.y32{bottom:492.948527pt;}
.y23d{bottom:493.118923pt;}
.y9{bottom:494.990666pt;}
.y5d{bottom:495.708903pt;}
.y140{bottom:495.884674pt;}
.y17e{bottom:495.885070pt;}
.y156{bottom:495.887585pt;}
.y171{bottom:495.893192pt;}
.yab{bottom:496.708903pt;}
.y86{bottom:496.708944pt;}
.yd1{bottom:497.068903pt;}
.y214{bottom:498.464815pt;}
.y179{bottom:498.809326pt;}
.y2d8{bottom:498.836903pt;}
.y117{bottom:499.859609pt;}
.y106{bottom:499.860275pt;}
.yf7{bottom:499.860660pt;}
.y128{bottom:499.861333pt;}
.yf8{bottom:499.864014pt;}
.y123{bottom:499.871204pt;}
.yff{bottom:499.871210pt;}
.y11b{bottom:499.871353pt;}
.yfb{bottom:499.871620pt;}
.y268{bottom:505.456688pt;}
.yfa{bottom:505.876953pt;}
.y295{bottom:508.708903pt;}
.y31{bottom:508.948527pt;}
.y23c{bottom:509.246923pt;}
.y2d7{bottom:511.498236pt;}
.y5c{bottom:511.708903pt;}
.yaa{bottom:512.708903pt;}
.y85{bottom:512.708944pt;}
.yd0{bottom:513.068903pt;}
.y213{bottom:514.603482pt;}
.y189{bottom:516.942667pt;}
.y13c{bottom:519.405070pt;}
.y1ed{bottom:520.249603pt;}
.y267{bottom:521.584688pt;}
.y2d6{bottom:524.159570pt;}
.y294{bottom:524.708903pt;}
.y149{bottom:524.725057pt;}
.y132{bottom:524.791748pt;}
.y19e{bottom:524.940549pt;}
.y18f{bottom:524.942252pt;}
.y1a5{bottom:524.943187pt;}
.y1b7{bottom:524.944410pt;}
.y1c3{bottom:524.945609pt;}
.y1ad{bottom:524.945744pt;}
.y1a9{bottom:524.945886pt;}
.y1bc{bottom:524.946940pt;}
.y30{bottom:524.948527pt;}
.y23b{bottom:525.374923pt;}
.y212{bottom:527.264815pt;}
.y5b{bottom:527.708903pt;}
.y196{bottom:527.867350pt;}
.ya9{bottom:528.708903pt;}
.y84{bottom:528.708944pt;}
.ycf{bottom:529.068903pt;}
.y118{bottom:529.165324pt;}
.y15d{bottom:529.658529pt;}
.y170{bottom:529.738525pt;}
.y152{bottom:530.111735pt;}
.y184{bottom:530.138387pt;}
.y11a{bottom:535.178019pt;}
.y1ec{bottom:536.452270pt;}
.y2d5{bottom:536.820903pt;}
.y266{bottom:537.712688pt;}
.y17b{bottom:538.111857pt;}
.y293{bottom:540.708903pt;}
.y2f{bottom:540.948527pt;}
.y23a{bottom:541.502923pt;}
.y211{bottom:543.403482pt;}
.y5a{bottom:543.708903pt;}
.ya8{bottom:544.708903pt;}
.yce{bottom:545.068903pt;}
.y133{bottom:546.836019pt;}
.y1eb{bottom:549.113603pt;}
.y2d4{bottom:549.482236pt;}
.y135{bottom:552.849447pt;}
.y18b{bottom:553.543050pt;}
.y265{bottom:553.840688pt;}
.y1a4{bottom:553.849854pt;}
.yf0{bottom:555.137329pt;}
.y210{bottom:556.064815pt;}
.y292{bottom:556.708903pt;}
.y2e{bottom:556.948527pt;}
.y239{bottom:557.630923pt;}
.yf5{bottom:557.803996pt;}
.y1a8{bottom:558.716553pt;}
.y1b9{bottom:558.863078pt;}
.y1b3{bottom:559.169718pt;}
.y1bf{bottom:559.183187pt;}
.y1ac{bottom:559.196411pt;}
.y18c{bottom:559.619995pt;}
.y59{bottom:559.708903pt;}
.y121{bottom:560.470662pt;}
.ya7{bottom:560.708903pt;}
.y83{bottom:560.708944pt;}
.ycd{bottom:561.068903pt;}
.yf2{bottom:561.151326pt;}
.y2d3{bottom:562.143570pt;}
.yf6{bottom:563.817993pt;}
.y1ea{bottom:565.241603pt;}
.y1ae{bottom:565.529338pt;}
.y122{bottom:566.484538pt;}
.y19d{bottom:566.796549pt;}
.y198{bottom:567.116414pt;}
.y141{bottom:567.137329pt;}
.y153{bottom:568.340007pt;}
.y10b{bottom:568.470662pt;}
.y103{bottom:569.025350pt;}
.y129{bottom:569.494670pt;}
.y264{bottom:569.968688pt;}
.yfc{bottom:571.202677pt;}
.y1af{bottom:571.542684pt;}
.y20f{bottom:572.192815pt;}
.y2d{bottom:572.948527pt;}
.y143{bottom:573.151449pt;}
.y238{bottom:573.758923pt;}
.y8{bottom:573.786667pt;}
.y10d{bottom:574.484538pt;}
.y2d2{bottom:574.804903pt;}
.y105{bottom:575.038940pt;}
.y12b{bottom:575.508260pt;}
.y58{bottom:575.708903pt;}
.y17c{bottom:576.341349pt;}
.ya6{bottom:576.708903pt;}
.ycc{bottom:577.068903pt;}
.yfe{bottom:577.215210pt;}
.y1e9{bottom:581.369603pt;}
.y172{bottom:584.566650pt;}
.y263{bottom:586.096688pt;}
.y2d1{bottom:587.466236pt;}
.y20e{bottom:588.320815pt;}
.y291{bottom:588.708903pt;}
.y2c{bottom:588.948527pt;}
.y237{bottom:589.886923pt;}
.y173{bottom:590.580648pt;}
.y57{bottom:591.708903pt;}
.y14a{bottom:592.254679pt;}
.y7{bottom:592.685334pt;}
.ya5{bottom:592.708903pt;}
.y82{bottom:592.708944pt;}
.y13d{bottom:592.877319pt;}
.ycb{bottom:593.068903pt;}
.y15e{bottom:596.288005pt;}
.y18e{bottom:596.366252pt;}
.y1c0{bottom:597.413330pt;}
.y157{bottom:597.473348pt;}
.y1e8{bottom:597.497603pt;}
.y14b{bottom:598.268921pt;}
.y2d0{bottom:600.127570pt;}
.y262{bottom:602.224688pt;}
.y160{bottom:602.302124pt;}
.y158{bottom:603.486938pt;}
.y20d{bottom:604.448815pt;}
.y2b{bottom:604.948527pt;}
.y155{bottom:605.274251pt;}
.y236{bottom:606.014923pt;}
.y56{bottom:607.708903pt;}
.ya4{bottom:608.708903pt;}
.y2cf{bottom:612.788903pt;}
.y1e7{bottom:613.625603pt;}
.y261{bottom:618.352688pt;}
.y17d{bottom:618.594400pt;}
.y114{bottom:619.276000pt;}
.y20c{bottom:620.576815pt;}
.y235{bottom:622.142923pt;}
.y55{bottom:623.708903pt;}
.ya3{bottom:624.708903pt;}
.yca{bottom:625.068903pt;}
.y116{bottom:625.288940pt;}
.y2ce{bottom:625.450236pt;}
.y1e6{bottom:629.753603pt;}
.y260{bottom:634.480688pt;}
.y13f{bottom:634.796672pt;}
.y1ba{bottom:634.858683pt;}
.y1b4{bottom:635.165324pt;}
.y20b{bottom:636.704815pt;}
.y2cd{bottom:638.111570pt;}
.y234{bottom:638.281589pt;}
.y54{bottom:639.708903pt;}
.y81{bottom:640.708903pt;}
.y1bb{bottom:640.872274pt;}
.y1b6{bottom:641.179077pt;}
.y1c2{bottom:642.332275pt;}
.y6{bottom:645.598667pt;}
.y1e5{bottom:645.881603pt;}
.y2a{bottom:648.053063pt;}
.y159{bottom:649.748271pt;}
.y174{bottom:649.748648pt;}
.y144{bottom:649.748782pt;}
.y17f{bottom:649.751736pt;}
.y12e{bottom:649.760000pt;}
.y25f{bottom:650.608688pt;}
.y2cc{bottom:650.772903pt;}
.y233{bottom:650.942923pt;}
.y12c{bottom:651.614927pt;}
.y107{bottom:651.614942pt;}
.y10a{bottom:651.615867pt;}
.yed{bottom:651.616000pt;}
.y124{bottom:651.625871pt;}
.y100{bottom:651.625877pt;}
.y11c{bottom:651.626019pt;}
.y20a{bottom:652.832815pt;}
.y53{bottom:655.708903pt;}
.y80{bottom:656.708903pt;}
.y14c{bottom:657.746254pt;}
.y15a{bottom:657.748271pt;}
.y175{bottom:657.748648pt;}
.y145{bottom:657.748782pt;}
.y180{bottom:657.749349pt;}
.y16b{bottom:657.751581pt;}
.y16e{bottom:657.752169pt;}
.y167{bottom:657.752683pt;}
.y185{bottom:657.754387pt;}
.y139{bottom:657.755718pt;}
.y163{bottom:657.756034pt;}
.y150{bottom:657.756040pt;}
.y183{bottom:657.756385pt;}
.y164{bottom:657.770651pt;}
.y112{bottom:659.610277pt;}
.y12d{bottom:659.614927pt;}
.y108{bottom:659.614942pt;}
.y10e{bottom:659.615204pt;}
.yf3{bottom:659.615326pt;}
.y125{bottom:659.625871pt;}
.y101{bottom:659.625877pt;}
.y11d{bottom:659.626019pt;}
.y1e2{bottom:660.114665pt;}
.y29{bottom:660.714396pt;}
.y165{bottom:661.745321pt;}
.y1e4{bottom:662.009603pt;}
.y1e1{bottom:662.037986pt;}
.y2cb{bottom:663.434236pt;}
.y182{bottom:663.761719pt;}
.y186{bottom:664.042661pt;}
.y19f{bottom:664.044549pt;}
.y190{bottom:664.046252pt;}
.y1a6{bottom:664.047187pt;}
.y1b8{bottom:664.048410pt;}
.y1c4{bottom:664.049609pt;}
.y1aa{bottom:664.049886pt;}
.y192{bottom:664.050659pt;}
.y1bd{bottom:664.050940pt;}
.y1b0{bottom:664.054684pt;}
.y25e{bottom:666.736688pt;}
.y232{bottom:667.070923pt;}
.y166{bottom:667.758016pt;}
.y209{bottom:668.960815pt;}
.y3{bottom:668.977329pt;}
.y52{bottom:671.708903pt;}
.y1a0{bottom:672.044549pt;}
.y1c5{bottom:672.049609pt;}
.y1b1{bottom:672.054684pt;}
.y7f{bottom:672.708903pt;}
.y2ca{bottom:676.095570pt;}
.y1e0{bottom:678.165986pt;}
.y25d{bottom:682.875355pt;}
.y231{bottom:683.198923pt;}
.y208{bottom:685.088815pt;}
.y51{bottom:687.708903pt;}
.y7e{bottom:688.708903pt;}
.y2c9{bottom:688.756903pt;}
.y14d{bottom:692.894694pt;}
.y1df{bottom:694.293986pt;}
.y28{bottom:694.357503pt;}
.y25c{bottom:695.536688pt;}
.y161{bottom:698.388021pt;}
.y16c{bottom:698.757324pt;}
.y14f{bottom:698.908040pt;}
.y230{bottom:699.326923pt;}
.y207{bottom:701.216815pt;}
.y2c8{bottom:701.418236pt;}
.y50{bottom:703.708903pt;}
.y162{bottom:704.401367pt;}
.y7d{bottom:704.708903pt;}
.y16d{bottom:704.770833pt;}
.y10f{bottom:705.437337pt;}
.y136{bottom:708.148031pt;}
.y1de{bottom:710.421986pt;}
.y111{bottom:711.450277pt;}
.y25b{bottom:711.664688pt;}
.y2c7{bottom:714.079570pt;}
.y138{bottom:714.161051pt;}
.y22f{bottom:715.454923pt;}
.y206{bottom:717.344815pt;}
.y4f{bottom:719.708903pt;}
.y7c{bottom:720.708903pt;}
.y1dd{bottom:726.549986pt;}
.y2c6{bottom:726.740903pt;}
.y25a{bottom:727.792688pt;}
.y22e{bottom:731.593589pt;}
.y27{bottom:732.351581pt;}
.y205{bottom:733.483482pt;}
.y4e{bottom:735.708903pt;}
.y7b{bottom:736.708903pt;}
.y168{bottom:738.341309pt;}
.y2c5{bottom:739.402236pt;}
.y1dc{bottom:742.677986pt;}
.y259{bottom:743.931355pt;}
.y22d{bottom:744.254923pt;}
.y16a{bottom:744.354248pt;}
.y204{bottom:746.144815pt;}
.y4d{bottom:751.708903pt;}
.y2c4{bottom:752.063570pt;}
.y26{bottom:752.354248pt;}
.y7a{bottom:752.708903pt;}
.y258{bottom:756.592688pt;}
.y1db{bottom:758.805986pt;}
.y2c3{bottom:764.724903pt;}
.y4c{bottom:767.708903pt;}
.y79{bottom:768.708903pt;}
.y22c{bottom:769.150923pt;}
.y203{bottom:771.040815pt;}
.y2c2{bottom:777.386236pt;}
.y257{bottom:781.488688pt;}
.y2{bottom:781.661334pt;}
.y22b{bottom:781.812256pt;}
.y1da{bottom:783.701986pt;}
.y202{bottom:783.702148pt;}
.y78{bottom:784.708903pt;}
.y2c1{bottom:790.047570pt;}
.y4b{bottom:799.708903pt;}
.y77{bottom:800.708903pt;}
.y1d9{bottom:802.708903pt;}
.y24{bottom:822.992964pt;}
.y76{bottom:835.262533pt;}
.ya2{bottom:835.654126pt;}
.y49{bottom:835.654289pt;}
.y23{bottom:835.654297pt;}
.ya1{bottom:836.112793pt;}
.y48{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h18{height:6.013333pt;}
.h28{height:6.014667pt;}
.h3a{height:6.133333pt;}
.h36{height:9.065333pt;}
.h2b{height:16.469333pt;}
.h3b{height:23.525879pt;}
.h19{height:25.984000pt;}
.h12{height:27.716267pt;}
.h2a{height:27.861333pt;}
.h37{height:28.501333pt;}
.h7{height:28.560000pt;}
.h1c{height:28.842667pt;}
.h1e{height:29.184000pt;}
.h27{height:29.354667pt;}
.ha{height:30.080000pt;}
.h1d{height:31.519999pt;}
.h2f{height:31.600000pt;}
.h2d{height:36.600000pt;}
.h2e{height:36.746666pt;}
.h20{height:36.839999pt;}
.h1b{height:36.906667pt;}
.h22{height:36.933333pt;}
.hb{height:37.376000pt;}
.h11{height:39.594667pt;}
.h6{height:40.800000pt;}
.h24{height:41.773333pt;}
.h26{height:41.853333pt;}
.h1f{height:41.920000pt;}
.h21{height:42.226667pt;}
.h34{height:42.240000pt;}
.h2c{height:42.253333pt;}
.h3{height:42.840000pt;}
.h1a{height:43.648000pt;}
.h32{height:44.687031pt;}
.h23{height:44.729665pt;}
.h25{height:44.740218pt;}
.h33{height:44.753635pt;}
.h35{height:44.919998pt;}
.h38{height:45.013333pt;}
.h16{height:47.680000pt;}
.hc{height:48.766452pt;}
.h2{height:48.960000pt;}
.h10{height:49.493333pt;}
.h31{height:49.853333pt;}
.h30{height:50.173335pt;}
.h29{height:50.226664pt;}
.hf{height:52.746667pt;}
.h15{height:54.560000pt;}
.h17{height:55.978829pt;}
.h14{height:56.266667pt;}
.he{height:57.658667pt;}
.h13{height:58.021333pt;}
.hd{height:61.429333pt;}
.h5{height:69.360000pt;}
.h39{height:95.658667pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wc{width:6.173333pt;}
.w7{width:7.333333pt;}
.w8{width:7.466667pt;}
.wb{width:7.468000pt;}
.w5{width:7.600000pt;}
.w6{width:7.601333pt;}
.w9{width:8.666667pt;}
.wa{width:8.801333pt;}
.wd{width:19.186667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.492259pt;}
.x6{left:68.031469pt;}
.x9{left:68.976400pt;}
.xa{left:69.996800pt;}
.xd{left:76.031469pt;}
.xb{left:83.151472pt;}
.x8{left:86.932800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x2e{left:96.768138pt;}
.xe{left:107.699733pt;}
.x2f{left:109.429471pt;}
.x11{left:126.102671pt;}
.x31{left:127.453328pt;}
.xf{left:132.595733pt;}
.x30{left:133.941471pt;}
.x53{left:140.898671pt;}
.x10{left:145.257067pt;}
.x32{left:146.610135pt;}
.x52{left:148.051733pt;}
.x6a{left:152.786662pt;}
.x8d{left:155.516001pt;}
.x13{left:157.920130pt;}
.x33{left:159.271468pt;}
.x54{left:160.725471pt;}
.x8c{left:162.812802pt;}
.x51{left:165.451996pt;}
.x14{left:170.581463pt;}
.x34{left:171.932802pt;}
.x55{left:173.386804pt;}
.x8e{left:175.476804pt;}
.x4{left:180.874667pt;}
.x58{left:182.231995pt;}
.x15{left:183.242796pt;}
.x35{left:184.594135pt;}
.x8f{left:188.138137pt;}
.x56{left:189.514804pt;}
.x37{left:190.786662pt;}
.x16{left:195.904130pt;}
.x36{left:197.255468pt;}
.x7c{left:198.375997pt;}
.x91{left:200.020801pt;}
.x57{left:202.176138pt;}
.x6b{left:203.453328pt;}
.x7a{left:205.658802pt;}
.x90{left:207.418803pt;}
.x17{left:208.565463pt;}
.x38{left:209.943458pt;}
.x59{left:214.858802pt;}
.x7b{left:218.320136pt;}
.x18{left:221.226796pt;}
.x39{left:222.604792pt;}
.x5b{left:223.698669pt;}
.x93{left:225.642157pt;}
.x7d{left:227.176005pt;}
.x5a{left:230.986802pt;}
.x3b{left:232.253337pt;}
.x19{left:233.888130pt;}
.x6c{left:235.271458pt;}
.x3a{left:238.732792pt;}
.x6e{left:241.453328pt;}
.x1b{left:243.567993pt;}
.x3d{left:244.920003pt;}
.x6d{left:247.932792pt;}
.x1a{left:250.016130pt;}
.x3c{left:251.410133pt;}
.x5c{left:256.320124pt;}
.x6f{left:260.610125pt;}
.x1c{left:262.725461pt;}
.x3e{left:264.076800pt;}
.x79{left:267.218791pt;}
.x5d{left:268.981457pt;}
.x7e{left:272.448132pt;}
.x1d{left:275.386794pt;}
.x3f{left:276.727466pt;}
.x5e{left:281.642790pt;}
.x70{left:282.918660pt;}
.x7f{left:285.109465pt;}
.x1e{left:288.048128pt;}
.x40{left:289.388800pt;}
.x5f{left:294.304124pt;}
.x71{left:302.076800pt;}
.x1f{left:304.176128pt;}
.x41{left:305.516800pt;}
.x60{left:306.992124pt;}
.x72{left:314.738133pt;}
.x20{left:316.837461pt;}
.x42{left:318.178133pt;}
.x61{left:319.653457pt;}
.x21{left:323.034667pt;}
.x73{left:327.399466pt;}
.x62{left:328.631999pt;}
.x22{left:329.530802pt;}
.x43{left:330.839466pt;}
.x24{left:335.701333pt;}
.x81{left:339.032003pt;}
.x74{left:340.060800pt;}
.x23{left:342.192136pt;}
.x44{left:343.500800pt;}
.x80{left:346.192140pt;}
.x63{left:348.458798pt;}
.x75{left:352.722133pt;}
.x25{left:354.858802pt;}
.x45{left:356.162133pt;}
.x82{left:358.858802pt;}
.x64{left:361.125485pt;}
.x76{left:365.383466pt;}
.x46{left:368.823466pt;}
.x26{left:371.050802pt;}
.x65{left:373.786819pt;}
.x95{left:377.972789pt;}
.x47{left:381.484800pt;}
.x27{left:383.712136pt;}
.x78{left:387.785319pt;}
.x29{left:389.901326pt;}
.x84{left:393.165324pt;}
.x77{left:394.247466pt;}
.x28{left:396.373469pt;}
.x48{left:397.612800pt;}
.x67{left:398.965332pt;}
.x83{left:400.309467pt;}
.x3{left:404.408000pt;}
.x66{left:406.117485pt;}
.x2a{left:409.058794pt;}
.x49{left:410.274133pt;}
.x85{left:412.992144pt;}
.x94{left:417.684775pt;}
.x68{left:418.792152pt;}
.x2b{left:421.698794pt;}
.x4a{left:422.935466pt;}
.x86{left:425.653477pt;}
.x92{left:428.553345pt;}
.x5{left:431.874146pt;}
.x2c{left:434.360128pt;}
.x4b{left:435.586133pt;}
.x87{left:438.314811pt;}
.x69{left:444.114819pt;}
.x2d{left:447.021461pt;}
.x4c{left:448.247466pt;}
.x88{left:450.976144pt;}
.x4d{left:460.908800pt;}
.x7{left:463.672526pt;}
.x50{left:470.718669pt;}
.x8a{left:472.565348pt;}
.x96{left:475.398682pt;}
.x4e{left:477.111466pt;}
.x89{left:479.840144pt;}
.x4f{left:489.772800pt;}
.x8b{left:492.525469pt;}
.x97{left:494.586019pt;}
.xc{left:502.595581pt;}
}




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