
    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_5bad9d811ab5a63715e702ca.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a0c539133c17b3b79fc3ac85.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e8e6543f58a3eabe435b0512.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf01f69f37009133d0b7903c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_14803bd8c152b17c044caeac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.924000;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_db63b1391218a93bb91e624f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;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_07821e23b9e55f1d0838ab18.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ca59affe22d5e81dc6adcd52.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_3eb2998e75e4377d917cb90f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b65141f3d676377c22300d06.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_c930ab8ec8142903ad080700.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.060547;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_053bf68c2397937229338a86.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.470000;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_5bf4fce938486781aaef6f7b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.230000;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_5b47e69012592186fb50564c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_1f182cd41fe38697153608ea.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8c8b94a12648cf85a435a8cb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.879000;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_5c748bfeb7207c995e4460f6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.066000;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_fcb010db989c51f4493ff00f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ea883c8a532e00e4698a5470.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.665000;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_c4e4faf518bd80c6447c1411.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.646000;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_b9b3ebc16834b83e23d7789d.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_0b3edcea6d86452a5ce018d9.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.646000;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_e1f2954a4b2a9ab06f2e59a3.woff2')format("woff");}.ff17{font-family:ff17;line-height:3.084000;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_740a3578f1f319c0885a2784.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_b056c0da7f2937049cdb802d.woff2')format("woff");}.ff19{font-family:ff19;line-height:3.084000;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_ea6748aaba3972750558761c.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_b598e61e3a9c9bc015847708.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.665000;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_cd2fe991260a8921b5f6e6fe.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.665000;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_9c4d014365612f901fe231c8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.601000;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_4bcc9fc8788f03d8fe2e04ca.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_c3dc4aa16ad7f8f4cb802e28.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.854000;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_b0a62bf7c3635eff648cfa7d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.854000;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_1a3928150ec334239553bbb9.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.588000;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_efc073d190d9121665d9fe18.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_4e31f1b6239a670e82a133d7.woff2')format("woff");}.ff23{font-family:ff23;line-height:2.469000;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_29cddc9fd0a855a165be75dd.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.588000;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_89615dbe5d4b7de6e5c498af.woff2')format("woff");}.ff25{font-family:ff25;line-height:3.084000;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_e97307ac850e89aac695dee7.woff2')format("woff");}.ff26{font-family:ff26;line-height:3.559000;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_bfa3a538378bc17443b007f5.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_83acd03fb2028b3a234ed0f0.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.605000;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_87d75e06e5141b415ec621ce.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.646000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-56.546357px;}
.ve{vertical-align:-43.799207px;}
.v14{vertical-align:-40.790880px;}
.vb{vertical-align:-35.539054px;}
.v4{vertical-align:-33.149963px;}
.vf{vertical-align:-28.043730px;}
.v2{vertical-align:-24.000000px;}
.vc{vertical-align:-22.791904px;}
.v3{vertical-align:-20.400055px;}
.v18{vertical-align:-15.551523px;}
.v5{vertical-align:-12.750000px;}
.v10{vertical-align:-9.988037px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:5.251826px;}
.v8{vertical-align:12.747150px;}
.v9{vertical-align:15.296580px;}
.v6{vertical-align:20.399780px;}
.v1{vertical-align:24.000000px;}
.v17{vertical-align:36.558826px;}
.v7{vertical-align:40.790880px;}
.v11{vertical-align:53.512207px;}
.v12{vertical-align:56.036471px;}
.va{vertical-align:59.992676px;}
.v16{vertical-align:71.893926px;}
.v15{vertical-align:81.054565px;}
.ls2e{letter-spacing:-1.140000px;}
.ls30{letter-spacing:-1.080000px;}
.ls35{letter-spacing:-1.020000px;}
.ls31{letter-spacing:-0.660000px;}
.ls32{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.563724px;}
.ls2c{letter-spacing:-0.540000px;}
.ls2d{letter-spacing:-0.480000px;}
.ls97{letter-spacing:-0.459000px;}
.ls59{letter-spacing:-0.420000px;}
.ls87{letter-spacing:-0.408000px;}
.ls33{letter-spacing:-0.360000px;}
.ls8a{letter-spacing:-0.357000px;}
.ls86{letter-spacing:-0.306000px;}
.ls2f{letter-spacing:-0.300000px;}
.ls88{letter-spacing:-0.255000px;}
.ls2a{letter-spacing:-0.240000px;}
.ls8b{letter-spacing:-0.204000px;}
.ls2b{letter-spacing:-0.180000px;}
.ls96{letter-spacing:-0.153000px;}
.ls34{letter-spacing:-0.120000px;}
.ls89{letter-spacing:-0.102000px;}
.ls10{letter-spacing:-0.060000px;}
.ls85{letter-spacing:-0.051000px;}
.ls5a{letter-spacing:-0.035692px;}
.lse{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000037px;}
.ls40{letter-spacing:0.000083px;}
.ls8c{letter-spacing:0.025500px;}
.ls52{letter-spacing:0.049407px;}
.ls4c{letter-spacing:0.050989px;}
.ls8d{letter-spacing:0.051000px;}
.lsf{letter-spacing:0.060000px;}
.ls60{letter-spacing:0.090000px;}
.ls7f{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.120000px;}
.ls92{letter-spacing:0.178500px;}
.lsc{letter-spacing:0.178791px;}
.ls19{letter-spacing:0.179978px;}
.ls3{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.197975px;}
.ls70{letter-spacing:0.204000px;}
.ls6{letter-spacing:0.210022px;}
.ls90{letter-spacing:0.229500px;}
.ls0{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.241596px;}
.lsb{letter-spacing:0.255000px;}
.ls7b{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.268440px;}
.ls6c{letter-spacing:0.270000px;}
.ls1e{letter-spacing:0.275988px;}
.ls27{letter-spacing:0.276000px;}
.ls28{letter-spacing:0.282000px;}
.ls80{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.306000px;}
.ls7e{letter-spacing:0.357000px;}
.ls8{letter-spacing:0.360000px;}
.ls6e{letter-spacing:0.390000px;}
.ls7c{letter-spacing:0.408000px;}
.ls1f{letter-spacing:0.420000px;}
.ls1a{letter-spacing:0.450000px;}
.ls12{letter-spacing:0.456348px;}
.ls7a{letter-spacing:0.459000px;}
.ls26{letter-spacing:0.480000px;}
.ls76{letter-spacing:0.510000px;}
.ls6f{letter-spacing:0.513519px;}
.ls5c{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.550302px;}
.ls7d{letter-spacing:0.561000px;}
.ls69{letter-spacing:0.570000px;}
.ls8f{letter-spacing:0.586500px;}
.ls5f{letter-spacing:0.593262px;}
.ls22{letter-spacing:0.600000px;}
.ls71{letter-spacing:0.612000px;}
.ls66{letter-spacing:0.630000px;}
.ls6a{letter-spacing:0.639038px;}
.ls36{letter-spacing:0.660000px;}
.ls77{letter-spacing:0.663000px;}
.ls39{letter-spacing:0.690000px;}
.ls72{letter-spacing:0.714000px;}
.ls21{letter-spacing:0.720000px;}
.ls82{letter-spacing:0.739500px;}
.ls67{letter-spacing:0.750000px;}
.ls75{letter-spacing:0.765000px;}
.ls16{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.797973px;}
.ls7{letter-spacing:0.810000px;}
.ls81{letter-spacing:0.816000px;}
.ls1b{letter-spacing:0.840000px;}
.ls3f{letter-spacing:0.858000px;}
.ls73{letter-spacing:0.867000px;}
.ls5e{letter-spacing:0.870000px;}
.ls84{letter-spacing:0.892500px;}
.ls20{letter-spacing:0.900000px;}
.ls79{letter-spacing:0.918000px;}
.ls1c{letter-spacing:0.960000px;}
.ls1d{letter-spacing:0.966000px;}
.ls91{letter-spacing:0.969000px;}
.ls24{letter-spacing:1.020000px;}
.ls8e{letter-spacing:1.071000px;}
.ls64{letter-spacing:1.080000px;}
.ls93{letter-spacing:1.122000px;}
.ls23{letter-spacing:1.140000px;}
.ls5d{letter-spacing:1.170000px;}
.ls74{letter-spacing:1.173000px;}
.ls3c{letter-spacing:1.200000px;}
.ls83{letter-spacing:1.224000px;}
.ls3b{letter-spacing:1.230000px;}
.ls6b{letter-spacing:1.260000px;}
.ls11{letter-spacing:1.320000px;}
.ls29{letter-spacing:1.380000px;}
.ls95{letter-spacing:1.428000px;}
.ls38{letter-spacing:1.440000px;}
.ls25{letter-spacing:1.500000px;}
.ls3a{letter-spacing:1.560000px;}
.ls15{letter-spacing:1.620000px;}
.ls4{letter-spacing:1.680000px;}
.ls94{letter-spacing:1.734000px;}
.ls6d{letter-spacing:1.740000px;}
.ls37{letter-spacing:1.770000px;}
.ls5b{letter-spacing:1.800000px;}
.ls98{letter-spacing:1.836000px;}
.ls5{letter-spacing:1.860000px;}
.ls3d{letter-spacing:1.890000px;}
.ls68{letter-spacing:2.280000px;}
.ls42{letter-spacing:2.928276px;}
.ls3e{letter-spacing:2.940000px;}
.ls54{letter-spacing:2.945709px;}
.ls4b{letter-spacing:2.984124px;}
.ls65{letter-spacing:3.360000px;}
.ls4f{letter-spacing:7.210419px;}
.ls4e{letter-spacing:8.464108px;}
.ls44{letter-spacing:8.515096px;}
.ls51{letter-spacing:11.296686px;}
.ls46{letter-spacing:11.297418px;}
.ls48{letter-spacing:11.298518px;}
.ls47{letter-spacing:11.319469px;}
.ls53{letter-spacing:11.349603px;}
.ls4a{letter-spacing:11.350885px;}
.ls56{letter-spacing:11.351251px;}
.ls58{letter-spacing:11.351984px;}
.ls49{letter-spacing:11.353815px;}
.ls45{letter-spacing:11.370458px;}
.ls55{letter-spacing:14.269463px;}
.ls57{letter-spacing:14.324211px;}
.ls43{letter-spacing:15.687836px;}
.ls4d{letter-spacing:15.750902px;}
.ls50{letter-spacing:18.477716px;}
.ls41{letter-spacing:159.822601px;}
.ls61{letter-spacing:253.102203px;}
.ls63{letter-spacing:402.988312px;}
.ls62{letter-spacing:418.532355px;}
.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;}
}
.ws79{word-spacing:-15.840000px;}
.ws69{word-spacing:-15.660000px;}
.ws4a{word-spacing:-15.300000px;}
.ws20{word-spacing:-15.000000px;}
.ws21{word-spacing:-14.880000px;}
.ws9a{word-spacing:-14.832000px;}
.ws7d{word-spacing:-14.544000px;}
.ws9f{word-spacing:-13.005000px;}
.wsb{word-spacing:-12.750000px;}
.ws68{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws5{word-spacing:-11.760000px;}
.ws6{word-spacing:-11.700000px;}
.ws7{word-spacing:-11.520000px;}
.ws98{word-spacing:-10.659000px;}
.ws99{word-spacing:-10.200000px;}
.ws1{word-spacing:-9.996000px;}
.ws97{word-spacing:-9.486000px;}
.ws0{word-spacing:-9.408000px;}
.wsa{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws19{word-spacing:-7.500000px;}
.ws7c{word-spacing:-6.375000px;}
.ws9{word-spacing:-2.657556px;}
.ws8{word-spacing:-2.563602px;}
.ws49{word-spacing:-1.680000px;}
.ws12{word-spacing:-1.500000px;}
.wsf{word-spacing:-1.380000px;}
.wsa0{word-spacing:-1.326000px;}
.ws14{word-spacing:-1.320000px;}
.ws9e{word-spacing:-1.275000px;}
.ws33{word-spacing:-1.260000px;}
.wsd3{word-spacing:-1.224000px;}
.ws35{word-spacing:-1.200000px;}
.ws8f{word-spacing:-1.140000px;}
.wsac{word-spacing:-1.071000px;}
.ws42{word-spacing:-1.020000px;}
.wsaa{word-spacing:-0.969000px;}
.ws38{word-spacing:-0.960000px;}
.ws37{word-spacing:-0.900000px;}
.wsa6{word-spacing:-0.867000px;}
.ws3f{word-spacing:-0.840000px;}
.ws50{word-spacing:-0.780000px;}
.wsad{word-spacing:-0.765000px;}
.ws10{word-spacing:-0.720000px;}
.wsae{word-spacing:-0.714000px;}
.ws40{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.612000px;}
.ws84{word-spacing:-0.600000px;}
.wsaf{word-spacing:-0.561000px;}
.ws39{word-spacing:-0.540000px;}
.wsc4{word-spacing:-0.510000px;}
.wsd5{word-spacing:-0.459000px;}
.ws3a{word-spacing:-0.420000px;}
.wscc{word-spacing:-0.408000px;}
.ws9b{word-spacing:-0.360000px;}
.wscf{word-spacing:-0.357000px;}
.ws13{word-spacing:-0.300000px;}
.ws1c{word-spacing:-0.268440px;}
.wsa9{word-spacing:-0.264000px;}
.wsb7{word-spacing:-0.255000px;}
.ws31{word-spacing:-0.240000px;}
.ws45{word-spacing:-0.180000px;}
.ws25{word-spacing:-0.120000px;}
.ws11{word-spacing:-0.060000px;}
.wsb0{word-spacing:-0.051000px;}
.ws54{word-spacing:-0.050989px;}
.ws57{word-spacing:-0.035692px;}
.wsc{word-spacing:0.000000px;}
.ws47{word-spacing:0.060000px;}
.ws63{word-spacing:0.120000px;}
.wsd4{word-spacing:0.153000px;}
.wse{word-spacing:0.180000px;}
.wsb6{word-spacing:0.204000px;}
.ws81{word-spacing:0.240000px;}
.ws9c{word-spacing:0.255000px;}
.wsd{word-spacing:0.300000px;}
.wsb9{word-spacing:0.306000px;}
.ws9d{word-spacing:0.357000px;}
.ws32{word-spacing:0.360000px;}
.ws52{word-spacing:0.420000px;}
.ws44{word-spacing:0.480000px;}
.ws61{word-spacing:0.510000px;}
.ws34{word-spacing:0.540000px;}
.ws1d{word-spacing:0.563724px;}
.ws43{word-spacing:0.600000px;}
.wsd6{word-spacing:0.612000px;}
.wsc2{word-spacing:0.663000px;}
.wsc3{word-spacing:0.714000px;}
.ws2b{word-spacing:0.720000px;}
.ws7a{word-spacing:0.780000px;}
.ws46{word-spacing:0.840000px;}
.wsb8{word-spacing:0.867000px;}
.ws17{word-spacing:0.900000px;}
.ws75{word-spacing:0.960000px;}
.ws4b{word-spacing:1.020000px;}
.ws18{word-spacing:1.080000px;}
.wsbb{word-spacing:1.122000px;}
.ws2c{word-spacing:1.140000px;}
.wsab{word-spacing:1.173000px;}
.ws26{word-spacing:1.200000px;}
.ws2d{word-spacing:1.260000px;}
.wsa1{word-spacing:1.275000px;}
.ws94{word-spacing:1.326000px;}
.ws5f{word-spacing:1.377000px;}
.ws96{word-spacing:1.428000px;}
.ws2e{word-spacing:1.440000px;}
.wsa8{word-spacing:1.479000px;}
.ws1b{word-spacing:1.500000px;}
.wsd1{word-spacing:1.530000px;}
.ws67{word-spacing:1.560000px;}
.wsd7{word-spacing:1.581000px;}
.ws23{word-spacing:1.620000px;}
.wsa2{word-spacing:1.632000px;}
.ws24{word-spacing:1.680000px;}
.ws62{word-spacing:1.683000px;}
.wsc6{word-spacing:1.734000px;}
.ws80{word-spacing:1.740000px;}
.wsb3{word-spacing:1.785000px;}
.ws1a{word-spacing:1.800000px;}
.ws76{word-spacing:1.860000px;}
.wsa5{word-spacing:1.887000px;}
.ws5a{word-spacing:1.920000px;}
.ws27{word-spacing:1.980000px;}
.wsc0{word-spacing:1.989000px;}
.ws78{word-spacing:2.040000px;}
.wsda{word-spacing:2.091000px;}
.ws36{word-spacing:2.100000px;}
.wsd0{word-spacing:2.142000px;}
.ws4c{word-spacing:2.160000px;}
.wsb1{word-spacing:2.193000px;}
.ws64{word-spacing:2.220000px;}
.ws8c{word-spacing:2.280000px;}
.wsba{word-spacing:2.295000px;}
.ws3d{word-spacing:2.340000px;}
.wsa4{word-spacing:2.346000px;}
.wsce{word-spacing:2.397000px;}
.ws2a{word-spacing:2.400000px;}
.ws28{word-spacing:2.460000px;}
.ws5e{word-spacing:2.499000px;}
.ws29{word-spacing:2.520000px;}
.wsbf{word-spacing:2.550000px;}
.ws7b{word-spacing:2.580000px;}
.wsc1{word-spacing:2.601000px;}
.wsa7{word-spacing:2.652000px;}
.ws51{word-spacing:2.700000px;}
.wsb2{word-spacing:2.703000px;}
.ws3c{word-spacing:2.760000px;}
.ws8b{word-spacing:2.820000px;}
.wsc5{word-spacing:2.856000px;}
.ws4d{word-spacing:2.940000px;}
.ws60{word-spacing:2.958000px;}
.ws74{word-spacing:3.000000px;}
.wsbe{word-spacing:3.060000px;}
.ws83{word-spacing:3.120000px;}
.wsbd{word-spacing:3.162000px;}
.ws7f{word-spacing:3.180000px;}
.wscd{word-spacing:3.213000px;}
.ws30{word-spacing:3.240000px;}
.ws3b{word-spacing:3.360000px;}
.wsbc{word-spacing:3.366000px;}
.ws2f{word-spacing:3.420000px;}
.wsd2{word-spacing:3.468000px;}
.ws59{word-spacing:3.600000px;}
.ws72{word-spacing:3.720000px;}
.wsc7{word-spacing:3.723000px;}
.ws71{word-spacing:3.780000px;}
.wsa3{word-spacing:3.825000px;}
.ws90{word-spacing:3.840000px;}
.ws5b{word-spacing:3.900000px;}
.wsc9{word-spacing:4.029000px;}
.ws8d{word-spacing:4.140000px;}
.wsb4{word-spacing:4.182000px;}
.ws85{word-spacing:4.260000px;}
.wscb{word-spacing:4.284000px;}
.ws8a{word-spacing:4.320000px;}
.ws86{word-spacing:4.440000px;}
.ws8e{word-spacing:4.500000px;}
.ws41{word-spacing:4.680000px;}
.ws77{word-spacing:4.740000px;}
.ws95{word-spacing:4.794000px;}
.ws88{word-spacing:4.800000px;}
.ws66{word-spacing:4.860000px;}
.ws93{word-spacing:4.998000px;}
.ws4f{word-spacing:5.040000px;}
.ws92{word-spacing:5.160000px;}
.wsca{word-spacing:5.202000px;}
.ws3e{word-spacing:5.340000px;}
.ws87{word-spacing:5.400000px;}
.ws58{word-spacing:5.640000px;}
.ws89{word-spacing:5.820000px;}
.ws22{word-spacing:5.940000px;}
.ws73{word-spacing:6.120000px;}
.ws48{word-spacing:6.180000px;}
.ws15{word-spacing:6.240000px;}
.ws91{word-spacing:6.360000px;}
.ws4e{word-spacing:6.600000px;}
.wsc8{word-spacing:6.681000px;}
.wsd9{word-spacing:6.732000px;}
.ws65{word-spacing:6.780000px;}
.ws5c{word-spacing:7.020000px;}
.ws16{word-spacing:7.080000px;}
.ws5d{word-spacing:7.200000px;}
.wsd8{word-spacing:7.344000px;}
.ws82{word-spacing:9.240000px;}
.wsb5{word-spacing:9.741000px;}
.ws55{word-spacing:12.685964px;}
.ws56{word-spacing:12.742051px;}
.wsdb{word-spacing:13.515000px;}
.ws7e{word-spacing:14.520000px;}
.wsdc{word-spacing:17.595000px;}
.ws1f{word-spacing:72.267000px;}
.ws6f{word-spacing:151.622988px;}
.ws6e{word-spacing:169.523988px;}
.ws6d{word-spacing:212.363988px;}
.ws6a{word-spacing:213.026988px;}
.ws70{word-spacing:215.270988px;}
.ws6b{word-spacing:223.328988px;}
.ws6c{word-spacing:266.882988px;}
.ws53{word-spacing:914.786992px;}
._30{margin-left:-17.766027px;}
._b{margin-left:-16.575000px;}
._8{margin-left:-15.120000px;}
._5{margin-left:-14.040000px;}
._7{margin-left:-12.852000px;}
._2f{margin-left:-11.430000px;}
._12{margin-left:-9.660700px;}
._a{margin-left:-8.328000px;}
._26{margin-left:-7.302000px;}
._9{margin-left:-6.120000px;}
._f{margin-left:-5.112000px;}
._18{margin-left:-4.080000px;}
._2{margin-left:-3.030000px;}
._0{margin-left:-1.632000px;}
._1{width:1.554000px;}
._27{width:2.634000px;}
._11{width:4.704000px;}
._6{width:6.606000px;}
._4b{width:7.624500px;}
._4{width:8.640000px;}
._31{width:9.884439px;}
._33{width:11.423991px;}
._32{width:13.055981px;}
._34{width:14.586000px;}
._10{width:15.606000px;}
._3{width:16.620000px;}
._c{width:18.360000px;}
._4f{width:19.908027px;}
._4c{width:21.318000px;}
._4e{width:22.719000px;}
._4d{width:24.138000px;}
._36{width:25.167000px;}
._35{width:26.703000px;}
._49{width:29.248500px;}
._4a{width:30.396000px;}
._16{width:51.843000px;}
._d{width:54.621000px;}
._21{width:56.076000px;}
._1d{width:68.775000px;}
._14{width:74.487000px;}
._25{width:85.935000px;}
._1b{width:91.419000px;}
._19{width:104.346000px;}
._39{width:117.123000px;}
._1f{width:121.278000px;}
._3d{width:135.534000px;}
._43{width:139.767000px;}
._22{width:146.829000px;}
._2b{width:164.169000px;}
._15{width:165.240000px;}
._20{width:169.473000px;}
._2c{width:180.719988px;}
._1c{width:182.172000px;}
._13{width:187.884000px;}
._2a{width:189.924000px;}
._23{width:197.778000px;}
._29{width:203.466000px;}
._1a{width:204.816000px;}
._17{width:216.189000px;}
._1e{width:233.121000px;}
._3c{width:244.953000px;}
._2d{width:268.770000px;}
._3e{width:272.111968px;}
._46{width:274.865968px;}
._3f{width:281.469000px;}
._41{width:299.880000px;}
._37{width:309.927000px;}
._3a{width:316.812000px;}
._44{width:333.080968px;}
._47{width:338.232000px;}
._2e{width:418.996802px;}
._45{width:429.470968px;}
._28{width:435.814198px;}
._48{width:452.012968px;}
._24{width:525.990056px;}
._42{width:532.313968px;}
._40{width:576.758968px;}
._3b{width:586.169968px;}
._38{width:995.672968px;}
._e{width:2570.757000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:13.422000px;}
.fsa{font-size:35.692200px;}
.fs6{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:50.988600px;}
.fs1{font-size:51.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y104{bottom:0.089262px;}
.yd2{bottom:0.089355px;}
.y135{bottom:0.090591px;}
.y10a{bottom:0.090637px;}
.yd9{bottom:0.090820px;}
.yfe{bottom:0.721540px;}
.ycb{bottom:0.721631px;}
.y130{bottom:0.870385px;}
.y12d{bottom:0.871457px;}
.ycd{bottom:1.360107px;}
.y128{bottom:1.508423px;}
.y10b{bottom:2.379898px;}
.yda{bottom:2.380081px;}
.y10f{bottom:2.380730px;}
.yde{bottom:2.380913px;}
.y13d{bottom:2.445328px;}
.yfd{bottom:4.545685px;}
.yca{bottom:4.545776px;}
.y126{bottom:4.694092px;}
.yc4{bottom:4.694183px;}
.yf7{bottom:4.694275px;}
.y12c{bottom:4.695602px;}
.y106{bottom:6.204620px;}
.yd4{bottom:6.204712px;}
.y10d{bottom:6.205902px;}
.y137{bottom:6.205948px;}
.ydc{bottom:6.206177px;}
.y147{bottom:6.360443px;}
.y12f{bottom:7.881317px;}
.y142{bottom:8.574326px;}
.y10e{bottom:9.391663px;}
.ydd{bottom:9.391846px;}
.y117{bottom:10.255920px;}
.y121{bottom:10.255966px;}
.ye7{bottom:10.256104px;}
.y143{bottom:11.759995px;}
.y103{bottom:12.314301px;}
.yd1{bottom:12.314392px;}
.y134{bottom:12.315582px;}
.yd8{bottom:12.315765px;}
.y14e{bottom:12.480423px;}
.y14b{bottom:12.489304px;}
.y122{bottom:13.442413px;}
.yf2{bottom:13.442596px;}
.y13c{bottom:14.685471px;}
.yf9{bottom:14.886566px;}
.yc6{bottom:14.886749px;}
.y140{bottom:17.457184px;}
.y157{bottom:18.662109px;}
.y15d{bottom:18.665863px;}
.ye5{bottom:19.138824px;}
.yf0{bottom:19.138916px;}
.y25{bottom:21.043488px;}
.y149{bottom:21.372757px;}
.y155{bottom:24.359253px;}
.y118{bottom:24.395050px;}
.yf3{bottom:24.395233px;}
.ye8{bottom:24.395325px;}
.y14c{bottom:26.615112px;}
.y159{bottom:29.614334px;}
.y11d{bottom:30.555588px;}
.y113{bottom:30.555634px;}
.yed{bottom:30.555725px;}
.ye2{bottom:30.555817px;}
.y15f{bottom:33.502670px;}
.y152{bottom:38.355469px;}
.y1{bottom:68.829002px;}
.y2f{bottom:112.938300px;}
.y7b{bottom:113.415298px;}
.y6d{bottom:113.415344px;}
.y9e{bottom:113.683960px;}
.y1e9{bottom:114.735306px;}
.y1af{bottom:114.874947px;}
.y1a7{bottom:114.874969px;}
.y202{bottom:116.334297px;}
.y37{bottom:120.421500px;}
.y233{bottom:122.469286px;}
.y25a{bottom:123.976806px;}
.yba{bottom:130.624947px;}
.y175{bottom:132.123299px;}
.y7a{bottom:132.165298px;}
.y6c{bottom:132.165344px;}
.y9d{bottom:132.433960px;}
.y2e{bottom:133.032303px;}
.y16b{bottom:133.314308px;}
.y1e8{bottom:133.485306px;}
.y1ae{bottom:133.624947px;}
.y1a6{bottom:133.624969px;}
.y201{bottom:135.084297px;}
.y232{bottom:137.463286px;}
.y259{bottom:138.970806px;}
.y36{bottom:140.515503px;}
.yb9{bottom:149.374947px;}
.y2d{bottom:150.485553px;}
.y174{bottom:150.873299px;}
.y79{bottom:150.915298px;}
.y6b{bottom:150.915344px;}
.y9c{bottom:151.183960px;}
.y16a{bottom:152.064308px;}
.y1e7{bottom:152.235306px;}
.y8c{bottom:152.374947px;}
.y1a5{bottom:152.374969px;}
.y231{bottom:152.457286px;}
.y200{bottom:153.834297px;}
.y258{bottom:153.964806px;}
.y35{bottom:157.968753px;}
.y230{bottom:167.451286px;}
.yaf{bottom:168.124786px;}
.yb8{bottom:168.124947px;}
.y257{bottom:168.958806px;}
.y173{bottom:169.623299px;}
.y78{bottom:169.665298px;}
.y6a{bottom:169.665344px;}
.y9b{bottom:169.933960px;}
.y2c{bottom:170.579556px;}
.y169{bottom:170.814308px;}
.y1e6{bottom:170.985306px;}
.y8b{bottom:171.124947px;}
.y1a4{bottom:171.124969px;}
.y1ff{bottom:172.584297px;}
.y2a7{bottom:176.590823px;}
.y2e5{bottom:176.960565px;}
.y34{bottom:178.062756px;}
.y22f{bottom:182.445286px;}
.y256{bottom:183.952806px;}
.yae{bottom:186.874786px;}
.yb7{bottom:186.874947px;}
.y2b{bottom:188.032794px;}
.y172{bottom:188.373299px;}
.y77{bottom:188.415298px;}
.y69{bottom:188.415344px;}
.y9a{bottom:188.683960px;}
.y168{bottom:189.564308px;}
.y1e5{bottom:189.735306px;}
.y8a{bottom:189.874947px;}
.y1a3{bottom:189.874969px;}
.y1fe{bottom:191.334297px;}
.y2a6{bottom:191.584823px;}
.y2e4{bottom:191.954565px;}
.y33{bottom:195.515995px;}
.y22e{bottom:197.439286px;}
.y255{bottom:198.946806px;}
.yad{bottom:205.624786px;}
.yb6{bottom:205.624947px;}
.y2a5{bottom:206.578823px;}
.y2e3{bottom:206.948565px;}
.y171{bottom:207.123299px;}
.y76{bottom:207.165298px;}
.y68{bottom:207.165344px;}
.y99{bottom:207.433960px;}
.y2a{bottom:208.126808px;}
.y167{bottom:208.314308px;}
.y1e4{bottom:208.485306px;}
.y89{bottom:208.624947px;}
.y1a2{bottom:208.624969px;}
.y1fd{bottom:210.084297px;}
.y22d{bottom:212.433286px;}
.y254{bottom:213.940806px;}
.y32{bottom:215.610008px;}
.y2a4{bottom:221.572823px;}
.y2e2{bottom:221.942565px;}
.yac{bottom:224.374786px;}
.yb5{bottom:224.374947px;}
.y170{bottom:225.873299px;}
.y75{bottom:225.915298px;}
.y67{bottom:225.915344px;}
.y98{bottom:226.183960px;}
.y166{bottom:227.064308px;}
.y1e3{bottom:227.235306px;}
.y88{bottom:227.374947px;}
.y1a1{bottom:227.374969px;}
.y22c{bottom:227.427286px;}
.y1fc{bottom:228.834297px;}
.y253{bottom:228.934806px;}
.y31{bottom:233.063259px;}
.y29{bottom:233.133910px;}
.y2a3{bottom:236.566823px;}
.y2e1{bottom:236.936565px;}
.y22b{bottom:242.421286px;}
.yab{bottom:243.124786px;}
.yb4{bottom:243.124947px;}
.y252{bottom:243.928806px;}
.y16f{bottom:244.623299px;}
.y74{bottom:244.665298px;}
.y66{bottom:244.665344px;}
.y97{bottom:244.933960px;}
.y165{bottom:245.814308px;}
.y1e2{bottom:245.985306px;}
.y87{bottom:246.124947px;}
.y1a0{bottom:246.124969px;}
.y28{bottom:248.127910px;}
.y2a2{bottom:251.560823px;}
.y2e0{bottom:251.930565px;}
.y30{bottom:253.157249px;}
.y22a{bottom:257.415286px;}
.y251{bottom:258.922806px;}
.yaa{bottom:261.874786px;}
.yb3{bottom:261.874947px;}
.y16e{bottom:263.373299px;}
.y73{bottom:263.415298px;}
.y65{bottom:263.415344px;}
.y96{bottom:263.683960px;}
.y164{bottom:264.564308px;}
.y1e1{bottom:264.735306px;}
.y86{bottom:264.874947px;}
.y19f{bottom:264.874969px;}
.y1fb{bottom:266.334297px;}
.y2a1{bottom:266.554823px;}
.y2df{bottom:266.924565px;}
.y229{bottom:272.409286px;}
.y250{bottom:273.916806px;}
.y27{bottom:278.944660px;}
.ya9{bottom:280.624786px;}
.yb2{bottom:280.624947px;}
.y2a0{bottom:281.548823px;}
.y2de{bottom:281.918565px;}
.y16d{bottom:282.123299px;}
.y72{bottom:282.165298px;}
.y64{bottom:282.165344px;}
.y95{bottom:282.433960px;}
.y163{bottom:283.314308px;}
.y1e0{bottom:283.485306px;}
.y85{bottom:283.624947px;}
.y19e{bottom:283.624969px;}
.y228{bottom:287.403286px;}
.y24f{bottom:288.910806px;}
.y26{bottom:293.938660px;}
.y29f{bottom:296.542823px;}
.y2dd{bottom:296.912565px;}
.ya8{bottom:299.374786px;}
.yb1{bottom:299.374947px;}
.y71{bottom:300.915298px;}
.y63{bottom:300.915344px;}
.y94{bottom:301.183960px;}
.y162{bottom:302.064308px;}
.y21f{bottom:302.235260px;}
.y1df{bottom:302.235306px;}
.y84{bottom:302.374947px;}
.y19d{bottom:302.374969px;}
.y24e{bottom:303.904806px;}
.y29e{bottom:311.536823px;}
.y2dc{bottom:311.906565px;}
.y227{bottom:317.404036px;}
.ya7{bottom:318.124786px;}
.y24d{bottom:318.898806px;}
.y16c{bottom:319.623299px;}
.y70{bottom:319.665298px;}
.y62{bottom:319.665344px;}
.y93{bottom:319.933960px;}
.y161{bottom:320.814308px;}
.y21e{bottom:320.985260px;}
.y1de{bottom:320.985306px;}
.y1ad{bottom:321.124947px;}
.y19c{bottom:321.124969px;}
.y29d{bottom:326.530823px;}
.y2db{bottom:326.900565px;}
.y226{bottom:332.398036px;}
.y24c{bottom:333.892806px;}
.ya6{bottom:336.874786px;}
.yb0{bottom:336.874809px;}
.y6f{bottom:338.415298px;}
.y61{bottom:338.415344px;}
.y92{bottom:338.683960px;}
.y21d{bottom:339.735260px;}
.y1dd{bottom:339.735306px;}
.y83{bottom:339.874809px;}
.y19b{bottom:339.874969px;}
.y29c{bottom:341.524823px;}
.y2da{bottom:341.894565px;}
.y225{bottom:347.392036px;}
.y22{bottom:347.973450px;}
.y24b{bottom:348.886806px;}
.ya5{bottom:355.624786px;}
.y29b{bottom:356.518823px;}
.y2d9{bottom:356.888565px;}
.y60{bottom:357.165344px;}
.y21c{bottom:358.485260px;}
.y1dc{bottom:358.485306px;}
.y19a{bottom:358.624969px;}
.y1ac{bottom:358.630809px;}
.y224{bottom:362.386036px;}
.y24a{bottom:363.880806px;}
.y21{bottom:366.723450px;}
.y29a{bottom:371.512823px;}
.y2d8{bottom:371.882565px;}
.ya4{bottom:374.374786px;}
.y6e{bottom:375.915298px;}
.y5f{bottom:375.915344px;}
.y91{bottom:376.183960px;}
.y21b{bottom:377.235260px;}
.y1fa{bottom:377.235306px;}
.y82{bottom:377.374786px;}
.y1ab{bottom:377.374809px;}
.y199{bottom:377.374969px;}
.y223{bottom:377.380036px;}
.y299{bottom:386.506823px;}
.y2d7{bottom:386.876565px;}
.ya3{bottom:393.124786px;}
.y5e{bottom:394.665344px;}
.y21a{bottom:395.985260px;}
.y1db{bottom:395.985306px;}
.y81{bottom:396.124786px;}
.y198{bottom:396.124969px;}
.y249{bottom:397.630783px;}
.y298{bottom:401.500823px;}
.y2d6{bottom:401.870565px;}
.y20{bottom:404.223450px;}
.y222{bottom:407.380786px;}
.y5d{bottom:413.415344px;}
.y90{bottom:413.683960px;}
.y219{bottom:414.735260px;}
.y1f9{bottom:414.735306px;}
.y80{bottom:414.874786px;}
.y197{bottom:414.874969px;}
.y297{bottom:416.494823px;}
.y2d5{bottom:416.864565px;}
.y221{bottom:422.374786px;}
.y1f{bottom:422.973450px;}
.y296{bottom:431.488823px;}
.y2d4{bottom:431.858565px;}
.y5c{bottom:432.165344px;}
.y8f{bottom:432.433960px;}
.y1da{bottom:433.485260px;}
.y1f8{bottom:433.485306px;}
.y7f{bottom:433.624786px;}
.y196{bottom:433.624969px;}
.yc0{bottom:440.899812px;}
.y1e{bottom:441.723450px;}
.y295{bottom:446.482823px;}
.y2d3{bottom:446.852565px;}
.y5b{bottom:450.915344px;}
.y8e{bottom:451.183960px;}
.y1d9{bottom:452.235260px;}
.y1f7{bottom:452.235306px;}
.y7e{bottom:452.374786px;}
.y195{bottom:452.374969px;}
.y248{bottom:453.957304px;}
.ybf{bottom:455.893812px;}
.y1d{bottom:460.473450px;}
.y294{bottom:461.476823px;}
.y2d2{bottom:461.846565px;}
.y247{bottom:468.951304px;}
.y5a{bottom:469.665344px;}
.ybe{bottom:470.887812px;}
.y1d8{bottom:470.985260px;}
.y1f6{bottom:470.985306px;}
.y7d{bottom:471.124786px;}
.y194{bottom:471.124969px;}
.y293{bottom:476.470823px;}
.y2d1{bottom:476.840565px;}
.y1c{bottom:479.223450px;}
.y246{bottom:483.945304px;}
.ybd{bottom:485.881812px;}
.y59{bottom:488.415344px;}
.y8d{bottom:488.683960px;}
.y1d7{bottom:489.735260px;}
.y1f5{bottom:489.735306px;}
.y7c{bottom:489.874786px;}
.y193{bottom:489.874969px;}
.y292{bottom:491.464823px;}
.y2d0{bottom:491.834565px;}
.y1b{bottom:497.973450px;}
.y245{bottom:498.939304px;}
.ybc{bottom:500.875812px;}
.y291{bottom:506.458823px;}
.y2cf{bottom:506.828565px;}
.y58{bottom:507.165344px;}
.y1d6{bottom:508.485260px;}
.y1f4{bottom:508.485306px;}
.y1aa{bottom:508.624786px;}
.y192{bottom:508.624969px;}
.y244{bottom:513.933304px;}
.y1a{bottom:516.723450px;}
.y183{bottom:519.840435px;}
.ybb{bottom:520.969803px;}
.y290{bottom:521.452823px;}
.y2ce{bottom:521.822565px;}
.y57{bottom:525.915344px;}
.y1d5{bottom:527.235260px;}
.y1f3{bottom:527.235306px;}
.y191{bottom:527.374969px;}
.y243{bottom:528.927304px;}
.y182{bottom:534.834435px;}
.y19{bottom:535.473450px;}
.y28f{bottom:536.446823px;}
.y2cd{bottom:536.816565px;}
.y242{bottom:543.921304px;}
.y151{bottom:543.962997px;}
.y160{bottom:543.963318px;}
.y56{bottom:544.665344px;}
.y1d4{bottom:545.985260px;}
.y1f2{bottom:545.985306px;}
.y190{bottom:546.124969px;}
.y181{bottom:549.828435px;}
.y28e{bottom:551.440823px;}
.y2cc{bottom:551.810565px;}
.y154{bottom:553.323303px;}
.y18{bottom:554.223450px;}
.y241{bottom:558.915304px;}
.y158{bottom:559.439255px;}
.y156{bottom:559.439392px;}
.y15e{bottom:559.443008px;}
.y15c{bottom:559.443283px;}
.y15b{bottom:559.443466px;}
.y55{bottom:563.415344px;}
.y1d3{bottom:564.735260px;}
.y1f1{bottom:564.735306px;}
.y180{bottom:564.822435px;}
.y18f{bottom:564.874969px;}
.y153{bottom:565.548294px;}
.y28d{bottom:566.434823px;}
.y2cb{bottom:566.804565px;}
.y15a{bottom:571.066635px;}
.y17{bottom:572.973450px;}
.y150{bottom:573.694964px;}
.y240{bottom:573.909304px;}
.y17f{bottom:579.816435px;}
.y28c{bottom:581.428823px;}
.y2ca{bottom:581.798565px;}
.y54{bottom:582.165344px;}
.y1d2{bottom:583.485260px;}
.y1f0{bottom:583.485306px;}
.y1a9{bottom:583.624969px;}
.y23f{bottom:588.903304px;}
.y16{bottom:591.723450px;}
.y146{bottom:592.488007px;}
.y14f{bottom:592.488464px;}
.y17e{bottom:594.810435px;}
.y28b{bottom:596.422823px;}
.y2c9{bottom:596.792565px;}
.y148{bottom:598.848450px;}
.y53{bottom:600.915344px;}
.y1d1{bottom:602.235260px;}
.y18e{bottom:602.374969px;}
.y23e{bottom:603.897304px;}
.y14d{bottom:604.968430px;}
.y14a{bottom:604.977310px;}
.y17d{bottom:609.804435px;}
.y15{bottom:610.473450px;}
.y28a{bottom:611.416823px;}
.y2c8{bottom:611.786565px;}
.y145{bottom:614.276559px;}
.y23d{bottom:618.891304px;}
.y52{bottom:619.665344px;}
.y1d0{bottom:620.985260px;}
.y1a8{bottom:621.124969px;}
.y17c{bottom:624.798435px;}
.y289{bottom:626.410823px;}
.y2c7{bottom:626.780565px;}
.y14{bottom:629.223450px;}
.y13a{bottom:632.997432px;}
.y13b{bottom:634.000488px;}
.y144{bottom:634.000809px;}
.y13f{bottom:636.445816px;}
.y51{bottom:638.415344px;}
.y1cf{bottom:639.735260px;}
.y17b{bottom:639.792435px;}
.y18d{bottom:639.874969px;}
.y288{bottom:641.404823px;}
.y2c6{bottom:641.774565px;}
.y141{bottom:642.574814px;}
.y13{bottom:647.973450px;}
.y139{bottom:647.991432px;}
.y13e{bottom:648.690308px;}
.y23c{bottom:656.376304px;}
.y287{bottom:656.398823px;}
.y2c5{bottom:656.768565px;}
.y50{bottom:657.165344px;}
.y1ce{bottom:658.485260px;}
.y18c{bottom:658.624969px;}
.y133{bottom:660.550507px;}
.y12{bottom:666.723450px;}
.y138{bottom:666.733932px;}
.y136{bottom:666.756454px;}
.y132{bottom:669.284083px;}
.y23b{bottom:671.370304px;}
.y286{bottom:671.392823px;}
.y2c4{bottom:671.762565px;}
.y4f{bottom:675.915344px;}
.y1cd{bottom:677.235260px;}
.y18b{bottom:677.374969px;}
.y12b{bottom:683.302505px;}
.y11{bottom:685.473450px;}
.y23a{bottom:686.364304px;}
.y285{bottom:686.386823px;}
.y2c3{bottom:686.756565px;}
.y12e{bottom:687.998108px;}
.y131{bottom:688.001083px;}
.y12a{bottom:689.486110px;}
.y4e{bottom:694.665344px;}
.y1cc{bottom:695.985260px;}
.y18a{bottom:696.124969px;}
.y284{bottom:701.380823px;}
.y2c2{bottom:701.750565px;}
.y125{bottom:703.505997px;}
.y10{bottom:704.223450px;}
.y127{bottom:708.200088px;}
.y129{bottom:708.203110px;}
.y124{bottom:709.688090px;}
.y4d{bottom:713.415344px;}
.y1cb{bottom:714.735260px;}
.y189{bottom:714.874969px;}
.y239{bottom:716.364304px;}
.y283{bottom:716.374823px;}
.y2c1{bottom:716.744565px;}
.yf{bottom:722.973450px;}
.y11c{bottom:728.404495px;}
.y123{bottom:728.405090px;}
.y282{bottom:731.368823px;}
.y2c0{bottom:731.738565px;}
.y4c{bottom:732.165344px;}
.y11f{bottom:732.545105px;}
.y1ca{bottom:733.485260px;}
.y188{bottom:733.624969px;}
.y120{bottom:738.660461px;}
.ye{bottom:741.723450px;}
.y11e{bottom:744.769958px;}
.y281{bottom:746.362823px;}
.y2bf{bottom:746.732565px;}
.y238{bottom:750.228269px;}
.y11b{bottom:750.338145px;}
.y4b{bottom:750.915344px;}
.y1c9{bottom:752.235260px;}
.y187{bottom:752.374969px;}
.yd{bottom:760.473450px;}
.y280{bottom:761.356823px;}
.y2be{bottom:761.726565px;}
.y237{bottom:765.222269px;}
.y112{bottom:769.054504px;}
.y11a{bottom:769.055145px;}
.y4a{bottom:769.665344px;}
.y1c8{bottom:770.985260px;}
.y186{bottom:771.124969px;}
.y115{bottom:773.195068px;}
.y27f{bottom:776.350823px;}
.y2bd{bottom:776.720565px;}
.yc{bottom:779.223450px;}
.y116{bottom:779.310425px;}
.y236{bottom:780.216269px;}
.y114{bottom:785.419922px;}
.y49{bottom:788.415344px;}
.y1ef{bottom:789.735260px;}
.y185{bottom:789.874969px;}
.y119{bottom:790.952362px;}
.y111{bottom:790.995568px;}
.y27e{bottom:791.344823px;}
.y2bc{bottom:791.714565px;}
.y235{bottom:795.210269px;}
.yb{bottom:797.973450px;}
.y109{bottom:803.554504px;}
.y27d{bottom:806.338823px;}
.y2bb{bottom:806.708565px;}
.y48{bottom:807.165344px;}
.y1c7{bottom:808.485260px;}
.y184{bottom:808.624969px;}
.y110{bottom:809.738068px;}
.y10c{bottom:809.760406px;}
.y234{bottom:810.204269px;}
.y108{bottom:812.295769px;}
.y27c{bottom:821.332823px;}
.y2ba{bottom:821.702565px;}
.y102{bottom:824.855988px;}
.y47{bottom:825.915344px;}
.y1ee{bottom:827.235260px;}
.y20a{bottom:827.374969px;}
.y107{bottom:831.038269px;}
.y105{bottom:831.060608px;}
.y101{bottom:833.588420px;}
.y27b{bottom:836.326823px;}
.y2f6{bottom:836.339566px;}
.y2b9{bottom:836.696565px;}
.ya{bottom:842.156208px;}
.y46{bottom:844.665344px;}
.y1c6{bottom:845.985260px;}
.y218{bottom:845.989929px;}
.y209{bottom:846.124969px;}
.yfc{bottom:847.768524px;}
.y27a{bottom:851.320823px;}
.y2f5{bottom:851.333566px;}
.y2b8{bottom:851.690565px;}
.y100{bottom:852.305420px;}
.yff{bottom:852.314209px;}
.yfb{bottom:852.902293px;}
.y9{bottom:857.150208px;}
.y1b2{bottom:861.965881px;}
.y45{bottom:863.415344px;}
.y25f{bottom:863.986780px;}
.y1c5{bottom:864.735260px;}
.y217{bottom:864.739929px;}
.y208{bottom:864.874969px;}
.y279{bottom:866.314823px;}
.y2b7{bottom:866.684565px;}
.yf6{bottom:866.921997px;}
.yf8{bottom:871.616272px;}
.yfa{bottom:871.619293px;}
.yf5{bottom:873.104228px;}
.y25e{bottom:878.980780px;}
.y1b1{bottom:881.217865px;}
.y278{bottom:881.308823px;}
.y2f4{bottom:881.423564px;}
.y2b6{bottom:881.678565px;}
.y44{bottom:882.165344px;}
.y1c4{bottom:883.485260px;}
.y216{bottom:883.489929px;}
.y207{bottom:883.624969px;}
.yec{bottom:891.820496px;}
.yf4{bottom:891.821228px;}
.yef{bottom:895.961243px;}
.y277{bottom:896.302823px;}
.y2f3{bottom:896.417564px;}
.y2b5{bottom:896.672565px;}
.y8{bottom:899.750244px;}
.y1b0{bottom:900.469757px;}
.y43{bottom:900.915344px;}
.yf1{bottom:902.076599px;}
.y1c3{bottom:902.235260px;}
.y215{bottom:902.239929px;}
.y206{bottom:902.374969px;}
.y269{bottom:906.376777px;}
.yee{bottom:908.186096px;}
.y276{bottom:911.296823px;}
.y2f2{bottom:911.411564px;}
.y2b4{bottom:911.666565px;}
.yeb{bottom:913.754283px;}
.y7{bottom:918.500244px;}
.y42{bottom:919.665344px;}
.y1c2{bottom:920.985260px;}
.y214{bottom:920.989929px;}
.y205{bottom:921.124969px;}
.y1b8{bottom:924.145524px;}
.y268{bottom:925.170277px;}
.y275{bottom:926.290823px;}
.y2f1{bottom:926.405564px;}
.y2b3{bottom:926.660565px;}
.ye1{bottom:932.470459px;}
.yea{bottom:932.471283px;}
.ye4{bottom:936.611206px;}
.y6{bottom:937.250244px;}
.y41{bottom:938.415344px;}
.y1c1{bottom:939.735260px;}
.y213{bottom:939.739929px;}
.y204{bottom:939.874969px;}
.y274{bottom:941.284823px;}
.y2f0{bottom:941.399564px;}
.y2b2{bottom:941.654565px;}
.ye6{bottom:942.726563px;}
.y1b7{bottom:942.939024px;}
.y267{bottom:943.887277px;}
.ye3{bottom:948.836060px;}
.ye9{bottom:954.368591px;}
.ye0{bottom:954.411705px;}
.y273{bottom:956.278823px;}
.y2ef{bottom:956.393564px;}
.y2b1{bottom:956.648565px;}
.y40{bottom:957.165344px;}
.y1c0{bottom:958.485260px;}
.y212{bottom:958.489929px;}
.y203{bottom:958.624969px;}
.y1b6{bottom:961.656024px;}
.y266{bottom:962.604277px;}
.yd7{bottom:966.970459px;}
.y17a{bottom:970.150844px;}
.y272{bottom:971.272823px;}
.y2ee{bottom:971.387564px;}
.y2b0{bottom:971.642565px;}
.ydf{bottom:973.154205px;}
.ydb{bottom:973.176636px;}
.yd6{bottom:975.711724px;}
.y3f{bottom:975.915344px;}
.y1bf{bottom:977.235260px;}
.y211{bottom:977.239929px;}
.y1b5{bottom:980.373024px;}
.y265{bottom:981.321277px;}
.y5{bottom:981.936768px;}
.y179{bottom:985.144844px;}
.y271{bottom:986.266823px;}
.y2ed{bottom:986.381564px;}
.y2af{bottom:986.636565px;}
.yd0{bottom:988.272034px;}
.yd5{bottom:994.454224px;}
.yd3{bottom:994.476746px;}
.y3e{bottom:994.665344px;}
.y1be{bottom:995.985260px;}
.y210{bottom:995.989929px;}
.y1ed{bottom:995.991260px;}
.ycf{bottom:997.004375px;}
.y1b4{bottom:999.090024px;}
.y264{bottom:1000.038277px;}
.y178{bottom:1000.138844px;}
.y270{bottom:1001.260823px;}
.y2ec{bottom:1001.375564px;}
.y2ae{bottom:1001.630565px;}
.y4{bottom:1008.936768px;}
.yc9{bottom:1011.184479px;}
.y3d{bottom:1013.415344px;}
.y1bd{bottom:1014.735260px;}
.y20f{bottom:1014.739929px;}
.y177{bottom:1015.132844px;}
.yce{bottom:1015.721374px;}
.ycc{bottom:1015.730255px;}
.y26f{bottom:1016.254823px;}
.yc8{bottom:1016.318431px;}
.y2eb{bottom:1016.369564px;}
.y2ad{bottom:1016.624565px;}
.y1b3{bottom:1017.807024px;}
.y263{bottom:1018.755277px;}
.y176{bottom:1030.126844px;}
.yc3{bottom:1030.338043px;}
.y26e{bottom:1031.248823px;}
.y2ea{bottom:1031.363564px;}
.y2ac{bottom:1031.618565px;}
.y3c{bottom:1032.165344px;}
.y1bc{bottom:1033.485260px;}
.y20e{bottom:1033.489929px;}
.yc5{bottom:1035.032227px;}
.yc7{bottom:1035.035431px;}
.yc2{bottom:1036.524024px;}
.y262{bottom:1037.472277px;}
.ya2{bottom:1045.120844px;}
.y26d{bottom:1046.242823px;}
.y2e9{bottom:1046.357564px;}
.y2ab{bottom:1046.612565px;}
.y3b{bottom:1050.915344px;}
.y1bb{bottom:1052.235260px;}
.y1ec{bottom:1052.235306px;}
.y20d{bottom:1052.239929px;}
.y261{bottom:1056.189277px;}
.ya1{bottom:1060.114844px;}
.y25d{bottom:1060.209276px;}
.y26c{bottom:1061.236823px;}
.y2e8{bottom:1061.351564px;}
.y2aa{bottom:1061.606565px;}
.yc1{bottom:1064.612274px;}
.y3a{bottom:1069.665344px;}
.y1ba{bottom:1070.985260px;}
.y1eb{bottom:1070.985306px;}
.y20c{bottom:1070.989929px;}
.ya0{bottom:1075.108844px;}
.y25c{bottom:1075.203276px;}
.y26b{bottom:1076.230823px;}
.y2e7{bottom:1076.345564px;}
.y2a9{bottom:1076.600565px;}
.y260{bottom:1084.277527px;}
.y39{bottom:1088.415344px;}
.y1b9{bottom:1089.735260px;}
.y1ea{bottom:1089.735306px;}
.y20b{bottom:1089.739929px;}
.y220{bottom:1089.915344px;}
.y9f{bottom:1090.102844px;}
.y25b{bottom:1090.197276px;}
.y26a{bottom:1091.224823px;}
.y2e6{bottom:1091.339564px;}
.y2a8{bottom:1091.594565px;}
.y24{bottom:1105.511993px;}
.y3{bottom:1109.586556px;}
.y23{bottom:1126.555481px;}
.y2{bottom:1126.582306px;}
.y38{bottom:1127.482361px;}
.h17{height:3.365248px;}
.ha{height:9.368556px;}
.h1c{height:14.582740px;}
.h18{height:14.700000px;}
.h14{height:15.748499px;}
.h2b{height:15.750000px;}
.h1e{height:18.300000px;}
.h24{height:23.342699px;}
.h31{height:23.551500px;}
.h1f{height:24.127927px;}
.h21{height:24.556234px;}
.he{height:25.204199px;}
.h40{height:26.640000px;}
.h30{height:27.890764px;}
.h3a{height:28.043730px;}
.h35{height:31.351499px;}
.h23{height:31.501499px;}
.h37{height:33.311022px;}
.h16{height:33.346544px;}
.h3d{height:33.348375px;}
.h3c{height:33.363390px;}
.h29{height:33.364489px;}
.h26{height:33.364855px;}
.h2a{height:33.365038px;}
.h27{height:33.365221px;}
.h22{height:35.080157px;}
.h1d{height:35.182134px;}
.hc{height:36.006000px;}
.hd{height:36.855469px;}
.h39{height:39.300000px;}
.h2{height:42.048000px;}
.h8{height:42.360000px;}
.hb{height:42.519000px;}
.h15{height:44.156128px;}
.h3{height:44.676000px;}
.h11{height:45.186000px;}
.h13{height:45.603979px;}
.h1b{height:47.924810px;}
.h19{height:47.929284px;}
.h33{height:49.017659px;}
.h12{height:50.156250px;}
.h1a{height:50.478714px;}
.h38{height:50.734746px;}
.h7{height:53.160000px;}
.h3e{height:53.651268px;}
.h9{height:53.652000px;}
.h3f{height:53.652183px;}
.h25{height:56.189437px;}
.h2c{height:56.877455px;}
.h10{height:59.004000px;}
.h6{height:59.340000px;}
.h3b{height:64.602556px;}
.h5{height:64.866000px;}
.hf{height:71.208000px;}
.h36{height:71.740960px;}
.h2d{height:75.973014px;}
.h34{height:78.981341px;}
.h4{height:85.056000px;}
.h2e{height:91.218605px;}
.h20{height:95.174810px;}
.h28{height:95.174816px;}
.h2f{height:100.426086px;}
.h32{height:116.236699px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.wb{width:47.520000px;}
.w5{width:50.340002px;}
.w9{width:50.698500px;}
.w3{width:53.533499px;}
.w2{width:68.622002px;}
.wf{width:75.885000px;}
.wa{width:99.044998px;}
.wc{width:99.464996px;}
.w4{width:101.863495px;}
.w6{width:102.285004px;}
.w11{width:107.939999px;}
.wd{width:114.283505px;}
.w7{width:120.435000px;}
.we{width:184.500000px;}
.w8{width:190.649998px;}
.w10{width:196.093506px;}
.w13{width:212.070007px;}
.w12{width:242.820007px;}
.w14{width:346.753510px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x18{left:-1.401443px;}
.x0{left:0.000000px;}
.x41{left:2.246384px;}
.x51{left:12.857391px;}
.xe{left:21.748993px;}
.x1a{left:23.087540px;}
.x38{left:27.701912px;}
.x2c{left:45.055206px;}
.x27{left:46.508240px;}
.x10{left:48.317688px;}
.xc{left:49.343674px;}
.x17{left:51.953522px;}
.x5{left:57.096634px;}
.x42{left:58.312180px;}
.x29{left:67.176590px;}
.x36{left:68.459244px;}
.x12{left:70.011429px;}
.x30{left:71.335922px;}
.x21{left:74.171402px;}
.x2{left:76.535402px;}
.x44{left:85.542278px;}
.x9{left:93.515401px;}
.x2a{left:96.584265px;}
.x6{left:97.796100px;}
.x13{left:99.406357px;}
.x2e{left:101.320358px;}
.x53{left:103.698898px;}
.x3b{left:105.368683px;}
.x1d{left:107.476639px;}
.x3c{left:112.995758px;}
.x47{left:115.390045px;}
.x32{left:119.207108px;}
.x5b{left:120.986526px;}
.x23{left:122.042404px;}
.x54{left:131.063965px;}
.x3d{left:139.955383px;}
.x4a{left:144.037033px;}
.x56{left:161.452469px;}
.x45{left:167.091278px;}
.x34{left:171.533249px;}
.x5d{left:176.633835px;}
.x25{left:177.689850px;}
.x4c{left:184.766693px;}
.x3f{left:187.826523px;}
.x58{left:195.512833px;}
.x5e{left:203.984848px;}
.x4e{left:232.651199px;}
.x67{left:267.873309px;}
.x60{left:274.981018px;}
.x62{left:327.307526px;}
.x64{left:340.267181px;}
.xb{left:452.808014px;}
.x50{left:457.268417px;}
.x7{left:459.212540px;}
.x19{left:467.525528px;}
.x5a{left:469.115570px;}
.xa{left:476.207535px;}
.x15{left:479.057693px;}
.x8{left:480.466799px;}
.xf{left:482.711380px;}
.x66{left:484.725290px;}
.x39{left:488.678558px;}
.x52{left:497.498840px;}
.x46{left:498.686554px;}
.x1b{left:501.262070px;}
.x16{left:503.147552px;}
.x20{left:505.338913px;}
.xd{left:506.342422px;}
.x28{left:508.428772px;}
.x11{left:511.250107px;}
.x3a{left:517.217239px;}
.x2d{left:526.978821px;}
.x37{left:528.692413px;}
.x1c{left:529.814255px;}
.x31{left:531.055664px;}
.x22{left:533.891098px;}
.x2b{left:551.852417px;}
.x14{left:554.672379px;}
.x43{left:560.747543px;}
.x2f{left:561.877487px;}
.x1e{left:568.033630px;}
.x1f{left:573.242569px;}
.x48{left:575.110336px;}
.x33{left:578.927399px;}
.x5c{left:580.706268px;}
.x24{left:581.762100px;}
.x49{left:588.461380px;}
.x55{left:595.454865px;}
.x3e{left:599.675079px;}
.x4b{left:618.769043px;}
.x57{left:621.172211px;}
.x35{left:637.307419px;}
.x26{left:643.457382px;}
.x4d{left:644.486389px;}
.x40{left:648.902390px;}
.x59{left:664.877380px;}
.x5f{left:668.389206px;}
.x4f{left:695.627380px;}
.x1{left:728.220612px;}
.x61{left:734.700760px;}
.x4{left:747.755997px;}
.x3{left:771.240326px;}
.x63{left:787.864471px;}
.x65{left:799.562439px;}
@media print{
.vd{vertical-align:-50.263429pt;}
.ve{vertical-align:-38.932629pt;}
.v14{vertical-align:-36.258560pt;}
.vb{vertical-align:-31.590270pt;}
.v4{vertical-align:-29.466634pt;}
.vf{vertical-align:-24.927760pt;}
.v2{vertical-align:-21.333333pt;}
.vc{vertical-align:-20.259470pt;}
.v3{vertical-align:-18.133382pt;}
.v18{vertical-align:-13.823576pt;}
.v5{vertical-align:-11.333333pt;}
.v10{vertical-align:-8.878255pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:4.668290pt;}
.v8{vertical-align:11.330800pt;}
.v9{vertical-align:13.596960pt;}
.v6{vertical-align:18.133138pt;}
.v1{vertical-align:21.333333pt;}
.v17{vertical-align:32.496734pt;}
.v7{vertical-align:36.258560pt;}
.v11{vertical-align:47.566406pt;}
.v12{vertical-align:49.810197pt;}
.va{vertical-align:53.326823pt;}
.v16{vertical-align:63.905712pt;}
.v15{vertical-align:72.048503pt;}
.ls2e{letter-spacing:-1.013333pt;}
.ls30{letter-spacing:-0.960000pt;}
.ls35{letter-spacing:-0.906667pt;}
.ls31{letter-spacing:-0.586667pt;}
.ls32{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.501088pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls2d{letter-spacing:-0.426667pt;}
.ls97{letter-spacing:-0.408000pt;}
.ls59{letter-spacing:-0.373333pt;}
.ls87{letter-spacing:-0.362667pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls8a{letter-spacing:-0.317333pt;}
.ls86{letter-spacing:-0.272000pt;}
.ls2f{letter-spacing:-0.266667pt;}
.ls88{letter-spacing:-0.226667pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls8b{letter-spacing:-0.181333pt;}
.ls2b{letter-spacing:-0.160000pt;}
.ls96{letter-spacing:-0.136000pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls89{letter-spacing:-0.090667pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls85{letter-spacing:-0.045333pt;}
.ls5a{letter-spacing:-0.031726pt;}
.lse{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000033pt;}
.ls40{letter-spacing:0.000074pt;}
.ls8c{letter-spacing:0.022667pt;}
.ls52{letter-spacing:0.043918pt;}
.ls4c{letter-spacing:0.045323pt;}
.ls8d{letter-spacing:0.045333pt;}
.lsf{letter-spacing:0.053333pt;}
.ls60{letter-spacing:0.080000pt;}
.ls7f{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.106667pt;}
.ls92{letter-spacing:0.158667pt;}
.lsc{letter-spacing:0.158926pt;}
.ls19{letter-spacing:0.159980pt;}
.ls3{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.175978pt;}
.ls70{letter-spacing:0.181333pt;}
.ls6{letter-spacing:0.186686pt;}
.ls90{letter-spacing:0.204000pt;}
.ls0{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.214752pt;}
.lsb{letter-spacing:0.226667pt;}
.ls7b{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.238613pt;}
.ls6c{letter-spacing:0.240000pt;}
.ls1e{letter-spacing:0.245322pt;}
.ls27{letter-spacing:0.245333pt;}
.ls28{letter-spacing:0.250667pt;}
.ls80{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.272000pt;}
.ls7e{letter-spacing:0.317333pt;}
.ls8{letter-spacing:0.320000pt;}
.ls6e{letter-spacing:0.346667pt;}
.ls7c{letter-spacing:0.362667pt;}
.ls1f{letter-spacing:0.373333pt;}
.ls1a{letter-spacing:0.400000pt;}
.ls12{letter-spacing:0.405643pt;}
.ls7a{letter-spacing:0.408000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls76{letter-spacing:0.453333pt;}
.ls6f{letter-spacing:0.456462pt;}
.ls5c{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.489157pt;}
.ls7d{letter-spacing:0.498667pt;}
.ls69{letter-spacing:0.506667pt;}
.ls8f{letter-spacing:0.521333pt;}
.ls5f{letter-spacing:0.527344pt;}
.ls22{letter-spacing:0.533333pt;}
.ls71{letter-spacing:0.544000pt;}
.ls66{letter-spacing:0.560000pt;}
.ls6a{letter-spacing:0.568034pt;}
.ls36{letter-spacing:0.586667pt;}
.ls77{letter-spacing:0.589333pt;}
.ls39{letter-spacing:0.613333pt;}
.ls72{letter-spacing:0.634667pt;}
.ls21{letter-spacing:0.640000pt;}
.ls82{letter-spacing:0.657333pt;}
.ls67{letter-spacing:0.666667pt;}
.ls75{letter-spacing:0.680000pt;}
.ls16{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.709309pt;}
.ls7{letter-spacing:0.720000pt;}
.ls81{letter-spacing:0.725333pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls3f{letter-spacing:0.762667pt;}
.ls73{letter-spacing:0.770667pt;}
.ls5e{letter-spacing:0.773333pt;}
.ls84{letter-spacing:0.793333pt;}
.ls20{letter-spacing:0.800000pt;}
.ls79{letter-spacing:0.816000pt;}
.ls1c{letter-spacing:0.853333pt;}
.ls1d{letter-spacing:0.858667pt;}
.ls91{letter-spacing:0.861333pt;}
.ls24{letter-spacing:0.906667pt;}
.ls8e{letter-spacing:0.952000pt;}
.ls64{letter-spacing:0.960000pt;}
.ls93{letter-spacing:0.997333pt;}
.ls23{letter-spacing:1.013333pt;}
.ls5d{letter-spacing:1.040000pt;}
.ls74{letter-spacing:1.042667pt;}
.ls3c{letter-spacing:1.066667pt;}
.ls83{letter-spacing:1.088000pt;}
.ls3b{letter-spacing:1.093333pt;}
.ls6b{letter-spacing:1.120000pt;}
.ls11{letter-spacing:1.173333pt;}
.ls29{letter-spacing:1.226667pt;}
.ls95{letter-spacing:1.269333pt;}
.ls38{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.333333pt;}
.ls3a{letter-spacing:1.386667pt;}
.ls15{letter-spacing:1.440000pt;}
.ls4{letter-spacing:1.493333pt;}
.ls94{letter-spacing:1.541333pt;}
.ls6d{letter-spacing:1.546667pt;}
.ls37{letter-spacing:1.573333pt;}
.ls5b{letter-spacing:1.600000pt;}
.ls98{letter-spacing:1.632000pt;}
.ls5{letter-spacing:1.653333pt;}
.ls3d{letter-spacing:1.680000pt;}
.ls68{letter-spacing:2.026667pt;}
.ls42{letter-spacing:2.602912pt;}
.ls3e{letter-spacing:2.613333pt;}
.ls54{letter-spacing:2.618408pt;}
.ls4b{letter-spacing:2.652554pt;}
.ls65{letter-spacing:2.986667pt;}
.ls4f{letter-spacing:6.409261pt;}
.ls4e{letter-spacing:7.523651pt;}
.ls44{letter-spacing:7.568974pt;}
.ls51{letter-spacing:10.041499pt;}
.ls46{letter-spacing:10.042150pt;}
.ls48{letter-spacing:10.043127pt;}
.ls47{letter-spacing:10.061750pt;}
.ls53{letter-spacing:10.088536pt;}
.ls4a{letter-spacing:10.089676pt;}
.ls56{letter-spacing:10.090001pt;}
.ls58{letter-spacing:10.090652pt;}
.ls49{letter-spacing:10.092280pt;}
.ls45{letter-spacing:10.107074pt;}
.ls55{letter-spacing:12.683967pt;}
.ls57{letter-spacing:12.732632pt;}
.ls43{letter-spacing:13.944743pt;}
.ls4d{letter-spacing:14.000802pt;}
.ls50{letter-spacing:16.424637pt;}
.ls41{letter-spacing:142.064535pt;}
.ls61{letter-spacing:224.979736pt;}
.ls63{letter-spacing:358.211833pt;}
.ls62{letter-spacing:372.028760pt;}
.ws79{word-spacing:-14.080000pt;}
.ws69{word-spacing:-13.920000pt;}
.ws4a{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.333333pt;}
.ws21{word-spacing:-13.226667pt;}
.ws9a{word-spacing:-13.184000pt;}
.ws7d{word-spacing:-12.928000pt;}
.ws9f{word-spacing:-11.560000pt;}
.wsb{word-spacing:-11.333333pt;}
.ws68{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws5{word-spacing:-10.453333pt;}
.ws6{word-spacing:-10.400000pt;}
.ws7{word-spacing:-10.240000pt;}
.ws98{word-spacing:-9.474667pt;}
.ws99{word-spacing:-9.066667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws97{word-spacing:-8.432000pt;}
.ws0{word-spacing:-8.362667pt;}
.wsa{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws19{word-spacing:-6.666667pt;}
.ws7c{word-spacing:-5.666667pt;}
.ws9{word-spacing:-2.362272pt;}
.ws8{word-spacing:-2.278757pt;}
.ws49{word-spacing:-1.493333pt;}
.ws12{word-spacing:-1.333333pt;}
.wsf{word-spacing:-1.226667pt;}
.wsa0{word-spacing:-1.178667pt;}
.ws14{word-spacing:-1.173333pt;}
.ws9e{word-spacing:-1.133333pt;}
.ws33{word-spacing:-1.120000pt;}
.wsd3{word-spacing:-1.088000pt;}
.ws35{word-spacing:-1.066667pt;}
.ws8f{word-spacing:-1.013333pt;}
.wsac{word-spacing:-0.952000pt;}
.ws42{word-spacing:-0.906667pt;}
.wsaa{word-spacing:-0.861333pt;}
.ws38{word-spacing:-0.853333pt;}
.ws37{word-spacing:-0.800000pt;}
.wsa6{word-spacing:-0.770667pt;}
.ws3f{word-spacing:-0.746667pt;}
.ws50{word-spacing:-0.693333pt;}
.wsad{word-spacing:-0.680000pt;}
.ws10{word-spacing:-0.640000pt;}
.wsae{word-spacing:-0.634667pt;}
.ws40{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.544000pt;}
.ws84{word-spacing:-0.533333pt;}
.wsaf{word-spacing:-0.498667pt;}
.ws39{word-spacing:-0.480000pt;}
.wsc4{word-spacing:-0.453333pt;}
.wsd5{word-spacing:-0.408000pt;}
.ws3a{word-spacing:-0.373333pt;}
.wscc{word-spacing:-0.362667pt;}
.ws9b{word-spacing:-0.320000pt;}
.wscf{word-spacing:-0.317333pt;}
.ws13{word-spacing:-0.266667pt;}
.ws1c{word-spacing:-0.238613pt;}
.wsa9{word-spacing:-0.234667pt;}
.wsb7{word-spacing:-0.226667pt;}
.ws31{word-spacing:-0.213333pt;}
.ws45{word-spacing:-0.160000pt;}
.ws25{word-spacing:-0.106667pt;}
.ws11{word-spacing:-0.053333pt;}
.wsb0{word-spacing:-0.045333pt;}
.ws54{word-spacing:-0.045323pt;}
.ws57{word-spacing:-0.031726pt;}
.wsc{word-spacing:0.000000pt;}
.ws47{word-spacing:0.053333pt;}
.ws63{word-spacing:0.106667pt;}
.wsd4{word-spacing:0.136000pt;}
.wse{word-spacing:0.160000pt;}
.wsb6{word-spacing:0.181333pt;}
.ws81{word-spacing:0.213333pt;}
.ws9c{word-spacing:0.226667pt;}
.wsd{word-spacing:0.266667pt;}
.wsb9{word-spacing:0.272000pt;}
.ws9d{word-spacing:0.317333pt;}
.ws32{word-spacing:0.320000pt;}
.ws52{word-spacing:0.373333pt;}
.ws44{word-spacing:0.426667pt;}
.ws61{word-spacing:0.453333pt;}
.ws34{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.501088pt;}
.ws43{word-spacing:0.533333pt;}
.wsd6{word-spacing:0.544000pt;}
.wsc2{word-spacing:0.589333pt;}
.wsc3{word-spacing:0.634667pt;}
.ws2b{word-spacing:0.640000pt;}
.ws7a{word-spacing:0.693333pt;}
.ws46{word-spacing:0.746667pt;}
.wsb8{word-spacing:0.770667pt;}
.ws17{word-spacing:0.800000pt;}
.ws75{word-spacing:0.853333pt;}
.ws4b{word-spacing:0.906667pt;}
.ws18{word-spacing:0.960000pt;}
.wsbb{word-spacing:0.997333pt;}
.ws2c{word-spacing:1.013333pt;}
.wsab{word-spacing:1.042667pt;}
.ws26{word-spacing:1.066667pt;}
.ws2d{word-spacing:1.120000pt;}
.wsa1{word-spacing:1.133333pt;}
.ws94{word-spacing:1.178667pt;}
.ws5f{word-spacing:1.224000pt;}
.ws96{word-spacing:1.269333pt;}
.ws2e{word-spacing:1.280000pt;}
.wsa8{word-spacing:1.314667pt;}
.ws1b{word-spacing:1.333333pt;}
.wsd1{word-spacing:1.360000pt;}
.ws67{word-spacing:1.386667pt;}
.wsd7{word-spacing:1.405333pt;}
.ws23{word-spacing:1.440000pt;}
.wsa2{word-spacing:1.450667pt;}
.ws24{word-spacing:1.493333pt;}
.ws62{word-spacing:1.496000pt;}
.wsc6{word-spacing:1.541333pt;}
.ws80{word-spacing:1.546667pt;}
.wsb3{word-spacing:1.586667pt;}
.ws1a{word-spacing:1.600000pt;}
.ws76{word-spacing:1.653333pt;}
.wsa5{word-spacing:1.677333pt;}
.ws5a{word-spacing:1.706667pt;}
.ws27{word-spacing:1.760000pt;}
.wsc0{word-spacing:1.768000pt;}
.ws78{word-spacing:1.813333pt;}
.wsda{word-spacing:1.858667pt;}
.ws36{word-spacing:1.866667pt;}
.wsd0{word-spacing:1.904000pt;}
.ws4c{word-spacing:1.920000pt;}
.wsb1{word-spacing:1.949333pt;}
.ws64{word-spacing:1.973333pt;}
.ws8c{word-spacing:2.026667pt;}
.wsba{word-spacing:2.040000pt;}
.ws3d{word-spacing:2.080000pt;}
.wsa4{word-spacing:2.085333pt;}
.wsce{word-spacing:2.130667pt;}
.ws2a{word-spacing:2.133333pt;}
.ws28{word-spacing:2.186667pt;}
.ws5e{word-spacing:2.221333pt;}
.ws29{word-spacing:2.240000pt;}
.wsbf{word-spacing:2.266667pt;}
.ws7b{word-spacing:2.293333pt;}
.wsc1{word-spacing:2.312000pt;}
.wsa7{word-spacing:2.357333pt;}
.ws51{word-spacing:2.400000pt;}
.wsb2{word-spacing:2.402667pt;}
.ws3c{word-spacing:2.453333pt;}
.ws8b{word-spacing:2.506667pt;}
.wsc5{word-spacing:2.538667pt;}
.ws4d{word-spacing:2.613333pt;}
.ws60{word-spacing:2.629333pt;}
.ws74{word-spacing:2.666667pt;}
.wsbe{word-spacing:2.720000pt;}
.ws83{word-spacing:2.773333pt;}
.wsbd{word-spacing:2.810667pt;}
.ws7f{word-spacing:2.826667pt;}
.wscd{word-spacing:2.856000pt;}
.ws30{word-spacing:2.880000pt;}
.ws3b{word-spacing:2.986667pt;}
.wsbc{word-spacing:2.992000pt;}
.ws2f{word-spacing:3.040000pt;}
.wsd2{word-spacing:3.082667pt;}
.ws59{word-spacing:3.200000pt;}
.ws72{word-spacing:3.306667pt;}
.wsc7{word-spacing:3.309333pt;}
.ws71{word-spacing:3.360000pt;}
.wsa3{word-spacing:3.400000pt;}
.ws90{word-spacing:3.413333pt;}
.ws5b{word-spacing:3.466667pt;}
.wsc9{word-spacing:3.581333pt;}
.ws8d{word-spacing:3.680000pt;}
.wsb4{word-spacing:3.717333pt;}
.ws85{word-spacing:3.786667pt;}
.wscb{word-spacing:3.808000pt;}
.ws8a{word-spacing:3.840000pt;}
.ws86{word-spacing:3.946667pt;}
.ws8e{word-spacing:4.000000pt;}
.ws41{word-spacing:4.160000pt;}
.ws77{word-spacing:4.213333pt;}
.ws95{word-spacing:4.261333pt;}
.ws88{word-spacing:4.266667pt;}
.ws66{word-spacing:4.320000pt;}
.ws93{word-spacing:4.442667pt;}
.ws4f{word-spacing:4.480000pt;}
.ws92{word-spacing:4.586667pt;}
.wsca{word-spacing:4.624000pt;}
.ws3e{word-spacing:4.746667pt;}
.ws87{word-spacing:4.800000pt;}
.ws58{word-spacing:5.013333pt;}
.ws89{word-spacing:5.173333pt;}
.ws22{word-spacing:5.280000pt;}
.ws73{word-spacing:5.440000pt;}
.ws48{word-spacing:5.493333pt;}
.ws15{word-spacing:5.546667pt;}
.ws91{word-spacing:5.653333pt;}
.ws4e{word-spacing:5.866667pt;}
.wsc8{word-spacing:5.938667pt;}
.wsd9{word-spacing:5.984000pt;}
.ws65{word-spacing:6.026667pt;}
.ws5c{word-spacing:6.240000pt;}
.ws16{word-spacing:6.293333pt;}
.ws5d{word-spacing:6.400000pt;}
.wsd8{word-spacing:6.528000pt;}
.ws82{word-spacing:8.213333pt;}
.wsb5{word-spacing:8.658667pt;}
.ws55{word-spacing:11.276412pt;}
.ws56{word-spacing:11.326267pt;}
.wsdb{word-spacing:12.013333pt;}
.ws7e{word-spacing:12.906667pt;}
.wsdc{word-spacing:15.640000pt;}
.ws1f{word-spacing:64.237333pt;}
.ws6f{word-spacing:134.775990pt;}
.ws6e{word-spacing:150.687990pt;}
.ws6d{word-spacing:188.767990pt;}
.ws6a{word-spacing:189.357323pt;}
.ws70{word-spacing:191.351990pt;}
.ws6b{word-spacing:198.514656pt;}
.ws6c{word-spacing:237.229323pt;}
.ws53{word-spacing:813.143993pt;}
._30{margin-left:-15.792024pt;}
._b{margin-left:-14.733333pt;}
._8{margin-left:-13.440000pt;}
._5{margin-left:-12.480000pt;}
._7{margin-left:-11.424000pt;}
._2f{margin-left:-10.160000pt;}
._12{margin-left:-8.587289pt;}
._a{margin-left:-7.402667pt;}
._26{margin-left:-6.490667pt;}
._9{margin-left:-5.440000pt;}
._f{margin-left:-4.544000pt;}
._18{margin-left:-3.626667pt;}
._2{margin-left:-2.693333pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.381333pt;}
._27{width:2.341333pt;}
._11{width:4.181333pt;}
._6{width:5.872000pt;}
._4b{width:6.777333pt;}
._4{width:7.680000pt;}
._31{width:8.786168pt;}
._33{width:10.154659pt;}
._32{width:11.605316pt;}
._34{width:12.965333pt;}
._10{width:13.872000pt;}
._3{width:14.773333pt;}
._c{width:16.320000pt;}
._4f{width:17.696024pt;}
._4c{width:18.949333pt;}
._4e{width:20.194667pt;}
._4d{width:21.456000pt;}
._36{width:22.370667pt;}
._35{width:23.736000pt;}
._49{width:25.998667pt;}
._4a{width:27.018667pt;}
._16{width:46.082667pt;}
._d{width:48.552000pt;}
._21{width:49.845333pt;}
._1d{width:61.133333pt;}
._14{width:66.210667pt;}
._25{width:76.386667pt;}
._1b{width:81.261333pt;}
._19{width:92.752000pt;}
._39{width:104.109333pt;}
._1f{width:107.802667pt;}
._3d{width:120.474667pt;}
._43{width:124.237333pt;}
._22{width:130.514667pt;}
._2b{width:145.928000pt;}
._15{width:146.880000pt;}
._20{width:150.642667pt;}
._2c{width:160.639990pt;}
._1c{width:161.930667pt;}
._13{width:167.008000pt;}
._2a{width:168.821333pt;}
._23{width:175.802667pt;}
._29{width:180.858667pt;}
._1a{width:182.058667pt;}
._17{width:192.168000pt;}
._1e{width:207.218667pt;}
._3c{width:217.736000pt;}
._2d{width:238.906667pt;}
._3e{width:241.877305pt;}
._46{width:244.325305pt;}
._3f{width:250.194667pt;}
._41{width:266.560000pt;}
._37{width:275.490667pt;}
._3a{width:281.610667pt;}
._44{width:296.071972pt;}
._47{width:300.650667pt;}
._2e{width:372.441602pt;}
._45{width:381.751972pt;}
._28{width:387.390398pt;}
._48{width:401.789305pt;}
._24{width:467.546717pt;}
._42{width:473.167972pt;}
._40{width:512.674638pt;}
._3b{width:521.039972pt;}
._38{width:885.042638pt;}
._e{width:2285.117333pt;}
.fs5{font-size:11.930667pt;}
.fsa{font-size:31.726400pt;}
.fs6{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:45.323200pt;}
.fs1{font-size:45.333333pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:0.079344pt;}
.yd2{bottom:0.079427pt;}
.y135{bottom:0.080526pt;}
.y10a{bottom:0.080566pt;}
.yd9{bottom:0.080729pt;}
.yfe{bottom:0.641369pt;}
.ycb{bottom:0.641450pt;}
.y130{bottom:0.773675pt;}
.y12d{bottom:0.774629pt;}
.ycd{bottom:1.208984pt;}
.y128{bottom:1.340820pt;}
.y10b{bottom:2.115465pt;}
.yda{bottom:2.115627pt;}
.y10f{bottom:2.116205pt;}
.yde{bottom:2.116367pt;}
.y13d{bottom:2.173625pt;}
.yfd{bottom:4.040609pt;}
.yca{bottom:4.040690pt;}
.y126{bottom:4.172526pt;}
.yc4{bottom:4.172607pt;}
.yf7{bottom:4.172689pt;}
.y12c{bottom:4.173869pt;}
.y106{bottom:5.515218pt;}
.yd4{bottom:5.515299pt;}
.y10d{bottom:5.516357pt;}
.y137{bottom:5.516398pt;}
.ydc{bottom:5.516602pt;}
.y147{bottom:5.653727pt;}
.y12f{bottom:7.005615pt;}
.y142{bottom:7.621623pt;}
.y10e{bottom:8.348145pt;}
.ydd{bottom:8.348307pt;}
.y117{bottom:9.116374pt;}
.y121{bottom:9.116414pt;}
.ye7{bottom:9.116536pt;}
.y143{bottom:10.453328pt;}
.y103{bottom:10.946045pt;}
.yd1{bottom:10.946126pt;}
.y134{bottom:10.947184pt;}
.yd8{bottom:10.947347pt;}
.y14e{bottom:11.093709pt;}
.y14b{bottom:11.101603pt;}
.y122{bottom:11.948812pt;}
.yf2{bottom:11.948975pt;}
.y13c{bottom:13.053752pt;}
.yf9{bottom:13.232503pt;}
.yc6{bottom:13.232666pt;}
.y140{bottom:15.517497pt;}
.y157{bottom:16.588542pt;}
.y15d{bottom:16.591878pt;}
.ye5{bottom:17.012288pt;}
.yf0{bottom:17.012370pt;}
.y25{bottom:18.705322pt;}
.y149{bottom:18.998006pt;}
.y155{bottom:21.652669pt;}
.y118{bottom:21.684489pt;}
.yf3{bottom:21.684652pt;}
.ye8{bottom:21.684733pt;}
.y14c{bottom:23.657878pt;}
.y159{bottom:26.323853pt;}
.y11d{bottom:27.160522pt;}
.y113{bottom:27.160563pt;}
.yed{bottom:27.160645pt;}
.ye2{bottom:27.160726pt;}
.y15f{bottom:29.780151pt;}
.y152{bottom:34.093750pt;}
.y1{bottom:61.181335pt;}
.y2f{bottom:100.389600pt;}
.y7b{bottom:100.813599pt;}
.y6d{bottom:100.813639pt;}
.y9e{bottom:101.052409pt;}
.y1e9{bottom:101.986938pt;}
.y1af{bottom:102.111064pt;}
.y1a7{bottom:102.111084pt;}
.y202{bottom:103.408264pt;}
.y37{bottom:107.041333pt;}
.y233{bottom:108.861588pt;}
.y25a{bottom:110.201605pt;}
.yba{bottom:116.111064pt;}
.y175{bottom:117.442932pt;}
.y7a{bottom:117.480265pt;}
.y6c{bottom:117.480306pt;}
.y9d{bottom:117.719076pt;}
.y2e{bottom:118.250936pt;}
.y16b{bottom:118.501607pt;}
.y1e8{bottom:118.653605pt;}
.y1ae{bottom:118.777730pt;}
.y1a6{bottom:118.777751pt;}
.y201{bottom:120.074931pt;}
.y232{bottom:122.189588pt;}
.y259{bottom:123.529605pt;}
.y36{bottom:124.902669pt;}
.yb9{bottom:132.777730pt;}
.y2d{bottom:133.764936pt;}
.y174{bottom:134.109599pt;}
.y79{bottom:134.146932pt;}
.y6b{bottom:134.146973pt;}
.y9c{bottom:134.385742pt;}
.y16a{bottom:135.168274pt;}
.y1e7{bottom:135.320272pt;}
.y8c{bottom:135.444397pt;}
.y1a5{bottom:135.444417pt;}
.y231{bottom:135.517588pt;}
.y200{bottom:136.741597pt;}
.y258{bottom:136.857605pt;}
.y35{bottom:140.416670pt;}
.y230{bottom:148.845588pt;}
.yaf{bottom:149.444255pt;}
.yb8{bottom:149.444397pt;}
.y257{bottom:150.185605pt;}
.y173{bottom:150.776265pt;}
.y78{bottom:150.813599pt;}
.y6a{bottom:150.813639pt;}
.y9b{bottom:151.052409pt;}
.y2c{bottom:151.626272pt;}
.y169{bottom:151.834941pt;}
.y1e6{bottom:151.986938pt;}
.y8b{bottom:152.111064pt;}
.y1a4{bottom:152.111084pt;}
.y1ff{bottom:153.408264pt;}
.y2a7{bottom:156.969620pt;}
.y2e5{bottom:157.298280pt;}
.y34{bottom:158.278005pt;}
.y22f{bottom:162.173588pt;}
.y256{bottom:163.513605pt;}
.yae{bottom:166.110921pt;}
.yb7{bottom:166.111064pt;}
.y2b{bottom:167.140262pt;}
.y172{bottom:167.442932pt;}
.y77{bottom:167.480265pt;}
.y69{bottom:167.480306pt;}
.y9a{bottom:167.719076pt;}
.y168{bottom:168.501607pt;}
.y1e5{bottom:168.653605pt;}
.y8a{bottom:168.777730pt;}
.y1a3{bottom:168.777751pt;}
.y1fe{bottom:170.074931pt;}
.y2a6{bottom:170.297620pt;}
.y2e4{bottom:170.626280pt;}
.y33{bottom:173.791995pt;}
.y22e{bottom:175.501588pt;}
.y255{bottom:176.841605pt;}
.yad{bottom:182.777588pt;}
.yb6{bottom:182.777730pt;}
.y2a5{bottom:183.625620pt;}
.y2e3{bottom:183.954280pt;}
.y171{bottom:184.109599pt;}
.y76{bottom:184.146932pt;}
.y68{bottom:184.146973pt;}
.y99{bottom:184.385742pt;}
.y2a{bottom:185.001607pt;}
.y167{bottom:185.168274pt;}
.y1e4{bottom:185.320272pt;}
.y89{bottom:185.444397pt;}
.y1a2{bottom:185.444417pt;}
.y1fd{bottom:186.741597pt;}
.y22d{bottom:188.829588pt;}
.y254{bottom:190.169605pt;}
.y32{bottom:191.653341pt;}
.y2a4{bottom:196.953620pt;}
.y2e2{bottom:197.282280pt;}
.yac{bottom:199.444255pt;}
.yb5{bottom:199.444397pt;}
.y170{bottom:200.776265pt;}
.y75{bottom:200.813599pt;}
.y67{bottom:200.813639pt;}
.y98{bottom:201.052409pt;}
.y166{bottom:201.834941pt;}
.y1e3{bottom:201.986938pt;}
.y88{bottom:202.111064pt;}
.y1a1{bottom:202.111084pt;}
.y22c{bottom:202.157588pt;}
.y1fc{bottom:203.408264pt;}
.y253{bottom:203.497605pt;}
.y31{bottom:207.167341pt;}
.y29{bottom:207.230142pt;}
.y2a3{bottom:210.281620pt;}
.y2e1{bottom:210.610280pt;}
.y22b{bottom:215.485588pt;}
.yab{bottom:216.110921pt;}
.yb4{bottom:216.111064pt;}
.y252{bottom:216.825605pt;}
.y16f{bottom:217.442932pt;}
.y74{bottom:217.480265pt;}
.y66{bottom:217.480306pt;}
.y97{bottom:217.719076pt;}
.y165{bottom:218.501607pt;}
.y1e2{bottom:218.653605pt;}
.y87{bottom:218.777730pt;}
.y1a0{bottom:218.777751pt;}
.y28{bottom:220.558142pt;}
.y2a2{bottom:223.609620pt;}
.y2e0{bottom:223.938280pt;}
.y30{bottom:225.028666pt;}
.y22a{bottom:228.813588pt;}
.y251{bottom:230.153605pt;}
.yaa{bottom:232.777588pt;}
.yb3{bottom:232.777730pt;}
.y16e{bottom:234.109599pt;}
.y73{bottom:234.146932pt;}
.y65{bottom:234.146973pt;}
.y96{bottom:234.385742pt;}
.y164{bottom:235.168274pt;}
.y1e1{bottom:235.320272pt;}
.y86{bottom:235.444397pt;}
.y19f{bottom:235.444417pt;}
.y1fb{bottom:236.741597pt;}
.y2a1{bottom:236.937620pt;}
.y2df{bottom:237.266280pt;}
.y229{bottom:242.141588pt;}
.y250{bottom:243.481605pt;}
.y27{bottom:247.950809pt;}
.ya9{bottom:249.444255pt;}
.yb2{bottom:249.444397pt;}
.y2a0{bottom:250.265620pt;}
.y2de{bottom:250.594280pt;}
.y16d{bottom:250.776265pt;}
.y72{bottom:250.813599pt;}
.y64{bottom:250.813639pt;}
.y95{bottom:251.052409pt;}
.y163{bottom:251.834941pt;}
.y1e0{bottom:251.986938pt;}
.y85{bottom:252.111064pt;}
.y19e{bottom:252.111084pt;}
.y228{bottom:255.469588pt;}
.y24f{bottom:256.809605pt;}
.y26{bottom:261.278809pt;}
.y29f{bottom:263.593620pt;}
.y2dd{bottom:263.922280pt;}
.ya8{bottom:266.110921pt;}
.yb1{bottom:266.111064pt;}
.y71{bottom:267.480265pt;}
.y63{bottom:267.480306pt;}
.y94{bottom:267.719076pt;}
.y162{bottom:268.501607pt;}
.y21f{bottom:268.653564pt;}
.y1df{bottom:268.653605pt;}
.y84{bottom:268.777730pt;}
.y19d{bottom:268.777751pt;}
.y24e{bottom:270.137605pt;}
.y29e{bottom:276.921620pt;}
.y2dc{bottom:277.250280pt;}
.y227{bottom:282.136921pt;}
.ya7{bottom:282.777588pt;}
.y24d{bottom:283.465605pt;}
.y16c{bottom:284.109599pt;}
.y70{bottom:284.146932pt;}
.y62{bottom:284.146973pt;}
.y93{bottom:284.385742pt;}
.y161{bottom:285.168274pt;}
.y21e{bottom:285.320231pt;}
.y1de{bottom:285.320272pt;}
.y1ad{bottom:285.444397pt;}
.y19c{bottom:285.444417pt;}
.y29d{bottom:290.249620pt;}
.y2db{bottom:290.578280pt;}
.y226{bottom:295.464921pt;}
.y24c{bottom:296.793605pt;}
.ya6{bottom:299.444255pt;}
.yb0{bottom:299.444275pt;}
.y6f{bottom:300.813599pt;}
.y61{bottom:300.813639pt;}
.y92{bottom:301.052409pt;}
.y21d{bottom:301.986898pt;}
.y1dd{bottom:301.986938pt;}
.y83{bottom:302.110942pt;}
.y19b{bottom:302.111084pt;}
.y29c{bottom:303.577620pt;}
.y2da{bottom:303.906280pt;}
.y225{bottom:308.792921pt;}
.y22{bottom:309.309733pt;}
.y24b{bottom:310.121605pt;}
.ya5{bottom:316.110921pt;}
.y29b{bottom:316.905620pt;}
.y2d9{bottom:317.234280pt;}
.y60{bottom:317.480306pt;}
.y21c{bottom:318.653564pt;}
.y1dc{bottom:318.653605pt;}
.y19a{bottom:318.777751pt;}
.y1ac{bottom:318.782942pt;}
.y224{bottom:322.120921pt;}
.y24a{bottom:323.449605pt;}
.y21{bottom:325.976400pt;}
.y29a{bottom:330.233620pt;}
.y2d8{bottom:330.562280pt;}
.ya4{bottom:332.777588pt;}
.y6e{bottom:334.146932pt;}
.y5f{bottom:334.146973pt;}
.y91{bottom:334.385742pt;}
.y21b{bottom:335.320231pt;}
.y1fa{bottom:335.320272pt;}
.y82{bottom:335.444255pt;}
.y1ab{bottom:335.444275pt;}
.y199{bottom:335.444417pt;}
.y223{bottom:335.448921pt;}
.y299{bottom:343.561620pt;}
.y2d7{bottom:343.890280pt;}
.ya3{bottom:349.444255pt;}
.y5e{bottom:350.813639pt;}
.y21a{bottom:351.986898pt;}
.y1db{bottom:351.986938pt;}
.y81{bottom:352.110921pt;}
.y198{bottom:352.111084pt;}
.y249{bottom:353.449585pt;}
.y298{bottom:356.889620pt;}
.y2d6{bottom:357.218280pt;}
.y20{bottom:359.309733pt;}
.y222{bottom:362.116255pt;}
.y5d{bottom:367.480306pt;}
.y90{bottom:367.719076pt;}
.y219{bottom:368.653564pt;}
.y1f9{bottom:368.653605pt;}
.y80{bottom:368.777588pt;}
.y197{bottom:368.777751pt;}
.y297{bottom:370.217620pt;}
.y2d5{bottom:370.546280pt;}
.y221{bottom:375.444255pt;}
.y1f{bottom:375.976400pt;}
.y296{bottom:383.545620pt;}
.y2d4{bottom:383.874280pt;}
.y5c{bottom:384.146973pt;}
.y8f{bottom:384.385742pt;}
.y1da{bottom:385.320231pt;}
.y1f8{bottom:385.320272pt;}
.y7f{bottom:385.444255pt;}
.y196{bottom:385.444417pt;}
.yc0{bottom:391.910944pt;}
.y1e{bottom:392.643066pt;}
.y295{bottom:396.873620pt;}
.y2d3{bottom:397.202280pt;}
.y5b{bottom:400.813639pt;}
.y8e{bottom:401.052409pt;}
.y1d9{bottom:401.986898pt;}
.y1f7{bottom:401.986938pt;}
.y7e{bottom:402.110921pt;}
.y195{bottom:402.111084pt;}
.y248{bottom:403.517603pt;}
.ybf{bottom:405.238944pt;}
.y1d{bottom:409.309733pt;}
.y294{bottom:410.201620pt;}
.y2d2{bottom:410.530280pt;}
.y247{bottom:416.845603pt;}
.y5a{bottom:417.480306pt;}
.ybe{bottom:418.566944pt;}
.y1d8{bottom:418.653564pt;}
.y1f6{bottom:418.653605pt;}
.y7d{bottom:418.777588pt;}
.y194{bottom:418.777751pt;}
.y293{bottom:423.529620pt;}
.y2d1{bottom:423.858280pt;}
.y1c{bottom:425.976400pt;}
.y246{bottom:430.173603pt;}
.ybd{bottom:431.894944pt;}
.y59{bottom:434.146973pt;}
.y8d{bottom:434.385742pt;}
.y1d7{bottom:435.320231pt;}
.y1f5{bottom:435.320272pt;}
.y7c{bottom:435.444255pt;}
.y193{bottom:435.444417pt;}
.y292{bottom:436.857620pt;}
.y2d0{bottom:437.186280pt;}
.y1b{bottom:442.643066pt;}
.y245{bottom:443.501603pt;}
.ybc{bottom:445.222944pt;}
.y291{bottom:450.185620pt;}
.y2cf{bottom:450.514280pt;}
.y58{bottom:450.813639pt;}
.y1d6{bottom:451.986898pt;}
.y1f4{bottom:451.986938pt;}
.y1aa{bottom:452.110921pt;}
.y192{bottom:452.111084pt;}
.y244{bottom:456.829603pt;}
.y1a{bottom:459.309733pt;}
.y183{bottom:462.080386pt;}
.ybb{bottom:463.084269pt;}
.y290{bottom:463.513620pt;}
.y2ce{bottom:463.842280pt;}
.y57{bottom:467.480306pt;}
.y1d5{bottom:468.653564pt;}
.y1f3{bottom:468.653605pt;}
.y191{bottom:468.777751pt;}
.y243{bottom:470.157603pt;}
.y182{bottom:475.408386pt;}
.y19{bottom:475.976400pt;}
.y28f{bottom:476.841620pt;}
.y2cd{bottom:477.170280pt;}
.y242{bottom:483.485603pt;}
.y151{bottom:483.522664pt;}
.y160{bottom:483.522949pt;}
.y56{bottom:484.146973pt;}
.y1d4{bottom:485.320231pt;}
.y1f2{bottom:485.320272pt;}
.y190{bottom:485.444417pt;}
.y181{bottom:488.736386pt;}
.y28e{bottom:490.169620pt;}
.y2cc{bottom:490.498280pt;}
.y154{bottom:491.842936pt;}
.y18{bottom:492.643066pt;}
.y241{bottom:496.813603pt;}
.y158{bottom:497.279338pt;}
.y156{bottom:497.279460pt;}
.y15e{bottom:497.282674pt;}
.y15c{bottom:497.282918pt;}
.y15b{bottom:497.283081pt;}
.y55{bottom:500.813639pt;}
.y1d3{bottom:501.986898pt;}
.y1f1{bottom:501.986938pt;}
.y180{bottom:502.064386pt;}
.y18f{bottom:502.111084pt;}
.y153{bottom:502.709595pt;}
.y28d{bottom:503.497620pt;}
.y2cb{bottom:503.826280pt;}
.y15a{bottom:507.614787pt;}
.y17{bottom:509.309733pt;}
.y150{bottom:509.951079pt;}
.y240{bottom:510.141603pt;}
.y17f{bottom:515.392386pt;}
.y28c{bottom:516.825620pt;}
.y2ca{bottom:517.154280pt;}
.y54{bottom:517.480306pt;}
.y1d2{bottom:518.653564pt;}
.y1f0{bottom:518.653605pt;}
.y1a9{bottom:518.777751pt;}
.y23f{bottom:523.469603pt;}
.y16{bottom:525.976400pt;}
.y146{bottom:526.656006pt;}
.y14f{bottom:526.656413pt;}
.y17e{bottom:528.720386pt;}
.y28b{bottom:530.153620pt;}
.y2c9{bottom:530.482280pt;}
.y148{bottom:532.309733pt;}
.y53{bottom:534.146973pt;}
.y1d1{bottom:535.320231pt;}
.y18e{bottom:535.444417pt;}
.y23e{bottom:536.797603pt;}
.y14d{bottom:537.749715pt;}
.y14a{bottom:537.757609pt;}
.y17d{bottom:542.048386pt;}
.y15{bottom:542.643066pt;}
.y28a{bottom:543.481620pt;}
.y2c8{bottom:543.810280pt;}
.y145{bottom:546.023608pt;}
.y23d{bottom:550.125603pt;}
.y52{bottom:550.813639pt;}
.y1d0{bottom:551.986898pt;}
.y1a8{bottom:552.111084pt;}
.y17c{bottom:555.376386pt;}
.y289{bottom:556.809620pt;}
.y2c7{bottom:557.138280pt;}
.y14{bottom:559.309733pt;}
.y13a{bottom:562.664384pt;}
.y13b{bottom:563.555990pt;}
.y144{bottom:563.556274pt;}
.y13f{bottom:565.729614pt;}
.y51{bottom:567.480306pt;}
.y1cf{bottom:568.653564pt;}
.y17b{bottom:568.704386pt;}
.y18d{bottom:568.777751pt;}
.y288{bottom:570.137620pt;}
.y2c6{bottom:570.466280pt;}
.y141{bottom:571.177612pt;}
.y13{bottom:575.976400pt;}
.y139{bottom:575.992384pt;}
.y13e{bottom:576.613607pt;}
.y23c{bottom:583.445603pt;}
.y287{bottom:583.465620pt;}
.y2c5{bottom:583.794280pt;}
.y50{bottom:584.146973pt;}
.y1ce{bottom:585.320231pt;}
.y18c{bottom:585.444417pt;}
.y133{bottom:587.156006pt;}
.y12{bottom:592.643066pt;}
.y138{bottom:592.652384pt;}
.y136{bottom:592.672404pt;}
.y132{bottom:594.919185pt;}
.y23b{bottom:596.773603pt;}
.y286{bottom:596.793620pt;}
.y2c4{bottom:597.122280pt;}
.y4f{bottom:600.813639pt;}
.y1cd{bottom:601.986898pt;}
.y18b{bottom:602.111084pt;}
.y12b{bottom:607.380005pt;}
.y11{bottom:609.309733pt;}
.y23a{bottom:610.101603pt;}
.y285{bottom:610.121620pt;}
.y2c3{bottom:610.450280pt;}
.y12e{bottom:611.553874pt;}
.y131{bottom:611.556519pt;}
.y12a{bottom:612.876542pt;}
.y4e{bottom:617.480306pt;}
.y1cc{bottom:618.653564pt;}
.y18a{bottom:618.777751pt;}
.y284{bottom:623.449620pt;}
.y2c2{bottom:623.778280pt;}
.y125{bottom:625.338664pt;}
.y10{bottom:625.976400pt;}
.y127{bottom:629.511190pt;}
.y129{bottom:629.513875pt;}
.y124{bottom:630.833858pt;}
.y4d{bottom:634.146973pt;}
.y1cb{bottom:635.320231pt;}
.y189{bottom:635.444417pt;}
.y239{bottom:636.768270pt;}
.y283{bottom:636.777620pt;}
.y2c1{bottom:637.106280pt;}
.yf{bottom:642.643066pt;}
.y11c{bottom:647.470662pt;}
.y123{bottom:647.471191pt;}
.y282{bottom:650.105620pt;}
.y2c0{bottom:650.434280pt;}
.y4c{bottom:650.813639pt;}
.y11f{bottom:651.151204pt;}
.y1ca{bottom:651.986898pt;}
.y188{bottom:652.111084pt;}
.y120{bottom:656.587077pt;}
.ye{bottom:659.309733pt;}
.y11e{bottom:662.017741pt;}
.y281{bottom:663.433620pt;}
.y2bf{bottom:663.762280pt;}
.y238{bottom:666.869572pt;}
.y11b{bottom:666.967240pt;}
.y4b{bottom:667.480306pt;}
.y1c9{bottom:668.653564pt;}
.y187{bottom:668.777751pt;}
.yd{bottom:675.976400pt;}
.y280{bottom:676.761620pt;}
.y2be{bottom:677.090280pt;}
.y237{bottom:680.197572pt;}
.y112{bottom:683.604004pt;}
.y11a{bottom:683.604574pt;}
.y4a{bottom:684.146973pt;}
.y1c8{bottom:685.320231pt;}
.y186{bottom:685.444417pt;}
.y115{bottom:687.284505pt;}
.y27f{bottom:690.089620pt;}
.y2bd{bottom:690.418280pt;}
.yc{bottom:692.643066pt;}
.y116{bottom:692.720378pt;}
.y236{bottom:693.525572pt;}
.y114{bottom:698.151042pt;}
.y49{bottom:700.813639pt;}
.y1ef{bottom:701.986898pt;}
.y185{bottom:702.111084pt;}
.y119{bottom:703.068766pt;}
.y111{bottom:703.107171pt;}
.y27e{bottom:703.417620pt;}
.y2bc{bottom:703.746280pt;}
.y235{bottom:706.853572pt;}
.yb{bottom:709.309733pt;}
.y109{bottom:714.270671pt;}
.y27d{bottom:716.745620pt;}
.y2bb{bottom:717.074280pt;}
.y48{bottom:717.480306pt;}
.y1c7{bottom:718.653564pt;}
.y184{bottom:718.777751pt;}
.y110{bottom:719.767171pt;}
.y10c{bottom:719.787028pt;}
.y234{bottom:720.181572pt;}
.y108{bottom:722.040684pt;}
.y27c{bottom:730.073620pt;}
.y2ba{bottom:730.402280pt;}
.y102{bottom:733.205322pt;}
.y47{bottom:734.146973pt;}
.y1ee{bottom:735.320231pt;}
.y20a{bottom:735.444417pt;}
.y107{bottom:738.700684pt;}
.y105{bottom:738.720540pt;}
.y101{bottom:740.967484pt;}
.y27b{bottom:743.401620pt;}
.y2f6{bottom:743.412947pt;}
.y2b9{bottom:743.730280pt;}
.ya{bottom:748.583296pt;}
.y46{bottom:750.813639pt;}
.y1c6{bottom:751.986898pt;}
.y218{bottom:751.991048pt;}
.y209{bottom:752.111084pt;}
.yfc{bottom:753.572021pt;}
.y27a{bottom:756.729620pt;}
.y2f5{bottom:756.740947pt;}
.y2b8{bottom:757.058280pt;}
.y100{bottom:757.604818pt;}
.yff{bottom:757.612630pt;}
.yfb{bottom:758.135372pt;}
.y9{bottom:761.911296pt;}
.y1b2{bottom:766.191895pt;}
.y45{bottom:767.480306pt;}
.y25f{bottom:767.988249pt;}
.y1c5{bottom:768.653564pt;}
.y217{bottom:768.657715pt;}
.y208{bottom:768.777751pt;}
.y279{bottom:770.057620pt;}
.y2b7{bottom:770.386280pt;}
.yf6{bottom:770.597331pt;}
.yf8{bottom:774.770020pt;}
.yfa{bottom:774.772705pt;}
.yf5{bottom:776.092647pt;}
.y25e{bottom:781.316249pt;}
.y1b1{bottom:783.304769pt;}
.y278{bottom:783.385620pt;}
.y2f4{bottom:783.487613pt;}
.y2b6{bottom:783.714280pt;}
.y44{bottom:784.146973pt;}
.y1c4{bottom:785.320231pt;}
.y216{bottom:785.324382pt;}
.y207{bottom:785.444417pt;}
.yec{bottom:792.729329pt;}
.yf4{bottom:792.729980pt;}
.yef{bottom:796.409993pt;}
.y277{bottom:796.713620pt;}
.y2f3{bottom:796.815613pt;}
.y2b5{bottom:797.042280pt;}
.y8{bottom:799.777995pt;}
.y1b0{bottom:800.417562pt;}
.y43{bottom:800.813639pt;}
.yf1{bottom:801.845866pt;}
.y1c3{bottom:801.986898pt;}
.y215{bottom:801.991048pt;}
.y206{bottom:802.111084pt;}
.y269{bottom:805.668246pt;}
.yee{bottom:807.276530pt;}
.y276{bottom:810.041620pt;}
.y2f2{bottom:810.143613pt;}
.y2b4{bottom:810.370280pt;}
.yeb{bottom:812.226029pt;}
.y7{bottom:816.444661pt;}
.y42{bottom:817.480306pt;}
.y1c2{bottom:818.653564pt;}
.y214{bottom:818.657715pt;}
.y205{bottom:818.777751pt;}
.y1b8{bottom:821.462688pt;}
.y268{bottom:822.373579pt;}
.y275{bottom:823.369620pt;}
.y2f1{bottom:823.471613pt;}
.y2b3{bottom:823.698280pt;}
.ye1{bottom:828.862630pt;}
.yea{bottom:828.863363pt;}
.ye4{bottom:832.543294pt;}
.y6{bottom:833.111328pt;}
.y41{bottom:834.146973pt;}
.y1c1{bottom:835.320231pt;}
.y213{bottom:835.324382pt;}
.y204{bottom:835.444417pt;}
.y274{bottom:836.697620pt;}
.y2f0{bottom:836.799613pt;}
.y2b2{bottom:837.026280pt;}
.ye6{bottom:837.979167pt;}
.y1b7{bottom:838.168021pt;}
.y267{bottom:839.010913pt;}
.ye3{bottom:843.409831pt;}
.ye9{bottom:848.327637pt;}
.ye0{bottom:848.365960pt;}
.y273{bottom:850.025620pt;}
.y2ef{bottom:850.127613pt;}
.y2b1{bottom:850.354280pt;}
.y40{bottom:850.813639pt;}
.y1c0{bottom:851.986898pt;}
.y212{bottom:851.991048pt;}
.y203{bottom:852.111084pt;}
.y1b6{bottom:854.805355pt;}
.y266{bottom:855.648246pt;}
.yd7{bottom:859.529297pt;}
.y17a{bottom:862.356306pt;}
.y272{bottom:863.353620pt;}
.y2ee{bottom:863.455613pt;}
.y2b0{bottom:863.682280pt;}
.ydf{bottom:865.025960pt;}
.ydb{bottom:865.045898pt;}
.yd6{bottom:867.299310pt;}
.y3f{bottom:867.480306pt;}
.y1bf{bottom:868.653564pt;}
.y211{bottom:868.657715pt;}
.y1b5{bottom:871.442688pt;}
.y265{bottom:872.285579pt;}
.y5{bottom:872.832682pt;}
.y179{bottom:875.684306pt;}
.y271{bottom:876.681620pt;}
.y2ed{bottom:876.783613pt;}
.y2af{bottom:877.010280pt;}
.yd0{bottom:878.464030pt;}
.yd5{bottom:883.959310pt;}
.yd3{bottom:883.979329pt;}
.y3e{bottom:884.146973pt;}
.y1be{bottom:885.320231pt;}
.y210{bottom:885.324382pt;}
.y1ed{bottom:885.325564pt;}
.ycf{bottom:886.226111pt;}
.y1b4{bottom:888.080021pt;}
.y264{bottom:888.922913pt;}
.y178{bottom:889.012306pt;}
.y270{bottom:890.009620pt;}
.y2ec{bottom:890.111613pt;}
.y2ae{bottom:890.338280pt;}
.y4{bottom:896.832682pt;}
.yc9{bottom:898.830648pt;}
.y3d{bottom:900.813639pt;}
.y1bd{bottom:901.986898pt;}
.y20f{bottom:901.991048pt;}
.y177{bottom:902.340306pt;}
.yce{bottom:902.863444pt;}
.ycc{bottom:902.871338pt;}
.y26f{bottom:903.337620pt;}
.yc8{bottom:903.394161pt;}
.y2eb{bottom:903.439613pt;}
.y2ad{bottom:903.666280pt;}
.y1b3{bottom:904.717355pt;}
.y263{bottom:905.560246pt;}
.y176{bottom:915.668306pt;}
.yc3{bottom:915.856038pt;}
.y26e{bottom:916.665620pt;}
.y2ea{bottom:916.767613pt;}
.y2ac{bottom:916.994280pt;}
.y3c{bottom:917.480306pt;}
.y1bc{bottom:918.653564pt;}
.y20e{bottom:918.657715pt;}
.yc5{bottom:920.028646pt;}
.yc7{bottom:920.031494pt;}
.yc2{bottom:921.354688pt;}
.y262{bottom:922.197579pt;}
.ya2{bottom:928.996306pt;}
.y26d{bottom:929.993620pt;}
.y2e9{bottom:930.095613pt;}
.y2ab{bottom:930.322280pt;}
.y3b{bottom:934.146973pt;}
.y1bb{bottom:935.320231pt;}
.y1ec{bottom:935.320272pt;}
.y20d{bottom:935.324382pt;}
.y261{bottom:938.834913pt;}
.ya1{bottom:942.324306pt;}
.y25d{bottom:942.408246pt;}
.y26c{bottom:943.321620pt;}
.y2e8{bottom:943.423613pt;}
.y2aa{bottom:943.650280pt;}
.yc1{bottom:946.322021pt;}
.y3a{bottom:950.813639pt;}
.y1ba{bottom:951.986898pt;}
.y1eb{bottom:951.986938pt;}
.y20c{bottom:951.991048pt;}
.ya0{bottom:955.652306pt;}
.y25c{bottom:955.736246pt;}
.y26b{bottom:956.649620pt;}
.y2e7{bottom:956.751613pt;}
.y2a9{bottom:956.978280pt;}
.y260{bottom:963.802246pt;}
.y39{bottom:967.480306pt;}
.y1b9{bottom:968.653564pt;}
.y1ea{bottom:968.653605pt;}
.y20b{bottom:968.657715pt;}
.y220{bottom:968.813639pt;}
.y9f{bottom:968.980306pt;}
.y25b{bottom:969.064246pt;}
.y26a{bottom:969.977620pt;}
.y2e6{bottom:970.079613pt;}
.y2a8{bottom:970.306280pt;}
.y24{bottom:982.677327pt;}
.y3{bottom:986.299161pt;}
.y23{bottom:1001.382650pt;}
.y2{bottom:1001.406494pt;}
.y38{bottom:1002.206543pt;}
.h17{height:2.991331pt;}
.ha{height:8.327605pt;}
.h1c{height:12.962435pt;}
.h18{height:13.066667pt;}
.h14{height:13.998666pt;}
.h2b{height:14.000000pt;}
.h1e{height:16.266666pt;}
.h24{height:20.749066pt;}
.h31{height:20.934667pt;}
.h1f{height:21.447046pt;}
.h21{height:21.827763pt;}
.he{height:22.403733pt;}
.h40{height:23.680000pt;}
.h30{height:24.791790pt;}
.h3a{height:24.927760pt;}
.h35{height:27.867999pt;}
.h23{height:28.001333pt;}
.h37{height:29.609797pt;}
.h16{height:29.641373pt;}
.h3d{height:29.643000pt;}
.h3c{height:29.656347pt;}
.h29{height:29.657323pt;}
.h26{height:29.657649pt;}
.h2a{height:29.657812pt;}
.h27{height:29.657974pt;}
.h22{height:31.182362pt;}
.h1d{height:31.273008pt;}
.hc{height:32.005333pt;}
.hd{height:32.760417pt;}
.h39{height:34.933333pt;}
.h2{height:37.376000pt;}
.h8{height:37.653333pt;}
.hb{height:37.794667pt;}
.h15{height:39.249891pt;}
.h3{height:39.712000pt;}
.h11{height:40.165333pt;}
.h13{height:40.536871pt;}
.h1b{height:42.599831pt;}
.h19{height:42.603808pt;}
.h33{height:43.571253pt;}
.h12{height:44.583333pt;}
.h1a{height:44.869968pt;}
.h38{height:45.097552pt;}
.h7{height:47.253333pt;}
.h3e{height:47.690016pt;}
.h9{height:47.690667pt;}
.h3f{height:47.690829pt;}
.h25{height:49.946166pt;}
.h2c{height:50.557737pt;}
.h10{height:52.448000pt;}
.h6{height:52.746667pt;}
.h3b{height:57.424494pt;}
.h5{height:57.658667pt;}
.hf{height:63.296000pt;}
.h36{height:63.769742pt;}
.h2d{height:67.531568pt;}
.h34{height:70.205637pt;}
.h4{height:75.605333pt;}
.h2e{height:81.083205pt;}
.h20{height:84.599831pt;}
.h28{height:84.599836pt;}
.h2f{height:89.267632pt;}
.h32{height:103.321511pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.wb{width:42.240000pt;}
.w5{width:44.746668pt;}
.w9{width:45.065333pt;}
.w3{width:47.585332pt;}
.w2{width:60.997335pt;}
.wf{width:67.453333pt;}
.wa{width:88.039998pt;}
.wc{width:88.413330pt;}
.w4{width:90.545329pt;}
.w6{width:90.920003pt;}
.w11{width:95.946665pt;}
.wd{width:101.585337pt;}
.w7{width:107.053333pt;}
.we{width:164.000000pt;}
.w8{width:169.466665pt;}
.w10{width:174.305339pt;}
.w13{width:188.506673pt;}
.w12{width:215.840007pt;}
.w14{width:308.225342pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x18{left:-1.245728pt;}
.x0{left:0.000000pt;}
.x41{left:1.996785pt;}
.x51{left:11.428792pt;}
.xe{left:19.332438pt;}
.x1a{left:20.522257pt;}
.x38{left:24.623922pt;}
.x2c{left:40.049072pt;}
.x27{left:41.340658pt;}
.x10{left:42.949056pt;}
.xc{left:43.861043pt;}
.x17{left:46.180908pt;}
.x5{left:50.752563pt;}
.x42{left:51.833049pt;}
.x29{left:59.712524pt;}
.x36{left:60.852661pt;}
.x12{left:62.232381pt;}
.x30{left:63.409709pt;}
.x21{left:65.930135pt;}
.x2{left:68.031469pt;}
.x44{left:76.037581pt;}
.x9{left:83.124801pt;}
.x2a{left:85.852680pt;}
.x6{left:86.929867pt;}
.x13{left:88.361206pt;}
.x2e{left:90.062541pt;}
.x53{left:92.176799pt;}
.x3b{left:93.661051pt;}
.x1d{left:95.534790pt;}
.x3c{left:100.440674pt;}
.x47{left:102.568929pt;}
.x32{left:105.961873pt;}
.x5b{left:107.543579pt;}
.x23{left:108.482137pt;}
.x54{left:116.501302pt;}
.x3d{left:124.404785pt;}
.x4a{left:128.032918pt;}
.x56{left:143.513306pt;}
.x45{left:148.525581pt;}
.x34{left:152.473999pt;}
.x5d{left:157.007853pt;}
.x25{left:157.946533pt;}
.x4c{left:164.237061pt;}
.x3f{left:166.956909pt;}
.x58{left:173.789185pt;}
.x5e{left:181.319865pt;}
.x4e{left:206.801066pt;}
.x67{left:238.109608pt;}
.x60{left:244.427572pt;}
.x62{left:290.940023pt;}
.x64{left:302.459717pt;}
.xb{left:402.496012pt;}
.x50{left:406.460815pt;}
.x7{left:408.188924pt;}
.x19{left:415.578247pt;}
.x5a{left:416.991618pt;}
.xa{left:423.295586pt;}
.x15{left:425.829061pt;}
.x8{left:427.081599pt;}
.xf{left:429.076782pt;}
.x66{left:430.866924pt;}
.x39{left:434.380941pt;}
.x52{left:442.221191pt;}
.x46{left:443.276937pt;}
.x1b{left:445.566284pt;}
.x16{left:447.242269pt;}
.x20{left:449.190145pt;}
.xd{left:450.082153pt;}
.x28{left:451.936686pt;}
.x11{left:454.444539pt;}
.x3a{left:459.748657pt;}
.x2d{left:468.425618pt;}
.x37{left:469.948812pt;}
.x1c{left:470.946004pt;}
.x31{left:472.049479pt;}
.x22{left:474.569865pt;}
.x2b{left:490.535482pt;}
.x14{left:493.042114pt;}
.x43{left:498.442261pt;}
.x2f{left:499.446655pt;}
.x1e{left:504.918783pt;}
.x1f{left:509.548950pt;}
.x48{left:511.209188pt;}
.x33{left:514.602132pt;}
.x5c{left:516.183350pt;}
.x24{left:517.121867pt;}
.x49{left:523.076782pt;}
.x55{left:529.293213pt;}
.x3e{left:533.044515pt;}
.x4b{left:550.016927pt;}
.x57{left:552.153076pt;}
.x35{left:566.495483pt;}
.x26{left:571.962118pt;}
.x4d{left:572.876790pt;}
.x40{left:576.802124pt;}
.x59{left:591.002116pt;}
.x5f{left:594.123739pt;}
.x4f{left:618.335449pt;}
.x1{left:647.307210pt;}
.x61{left:653.067342pt;}
.x4{left:664.671997pt;}
.x3{left:685.546956pt;}
.x63{left:700.323975pt;}
.x65{left:710.722168pt;}
}




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