
    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_f7161ba24e6f1a54a1620fda.woff')format("woff");}.ff1{font-family:ff1;line-height:0.865000;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_6755a54b564d8e96ea53e165.woff')format("woff");}.ff2{font-family:ff2;line-height:1.142000;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_0a66d03c955e2c285a298bba.woff')format("woff");}.ff3{font-family:ff3;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ed390d54a0abc3764dddf767.woff')format("woff");}.ff4{font-family:ff4;line-height:0.054000;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_23b14822af82799188eba783.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fba7a65c231b084c9983906a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cbac844bbc2c4062f5644024.woff')format("woff");}.ff7{font-family:ff7;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_116aad592e56b01d7439248b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.167000;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_c65a19e2ea1b41b20e8abf89.woff')format("woff");}.ff9{font-family:ff9;line-height:0.452000;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_9b4943afbeca8bf1d0bdd210.woff')format("woff");}.ffa{font-family:ffa;line-height:0.452000;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_88d8acf38e5cd8126589529e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.167000;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_d2f7b9bf9420159aca83fd89.woff')format("woff");}.ffc{font-family:ffc;line-height:0.455000;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_f67acf45ac981a7adf2281db.woff')format("woff");}.ffd{font-family:ffd;line-height:1.142000;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_3ded84f7dd6b7df5921c06c4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.167000;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_f66bf2e87f4d9d5ccfe71ff1.woff')format("woff");}.fff{font-family:fff;line-height:0.455000;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_7006f1fa23173278ba025e6e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.880371;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_44a5b6236134e7c36c9d71cc.woff')format("woff");}.ff11{font-family:ff11;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0d0388ba2fceb3f88572ce70.woff')format("woff");}.ff12{font-family:ff12;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f003aa27f567a643553afaed.woff')format("woff");}.ff13{font-family:ff13;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_805b9f284c0e3201a2e67860.woff')format("woff");}.ff14{font-family:ff14;line-height:0.391000;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_89d1bb3d121c8a117a940d37.woff')format("woff");}.ff15{font-family:ff15;line-height:1.142000;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_03ebe9a0cec5ac3656447ea5.woff')format("woff");}.ff16{font-family:ff16;line-height:1.363000;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_5e5d10baee91c20a18289f69.woff')format("woff");}.ff17{font-family:ff17;line-height:0.893066;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_7107c8f5c594d4dd6937fe8a.woff')format("woff");}.ff18{font-family:ff18;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_9699f9a32d97259be5093382.woff')format("woff");}.ff19{font-family:ff19;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_235d96b9165e98a25bdb2d33.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.167000;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_bb5b477d5a413dfbfc1a0f67.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.392000;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_700d0e58701a7606abda48cd.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.848000;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_f49284b3f3ec740b6b2aeff3.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.853000;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_2683dacce2a5ae54062d4003.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.853000;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_9ffeb718b075576524d2541a.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.653000;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_e486388d24e3293ba7a2d6c0.woff')format("woff");}.ff20{font-family:ff20;line-height:0.243000;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_ec8bdc19eac7571926c3483f.woff')format("woff");}.ff21{font-family:ff21;line-height:0.853000;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_742a776b7b3703744b4e1dc2.woff')format("woff");}.ff22{font-family:ff22;line-height:0.653000;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_8c07eb0ab8a68301c4d8d316.woff')format("woff");}.ff23{font-family:ff23;line-height:0.438000;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_bffa33d451ff3a2e95323191.woff')format("woff");}.ff24{font-family:ff24;line-height:0.653000;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_fcca6c7493fe57dc1cce295b.woff')format("woff");}.ff25{font-family:ff25;line-height:0.819000;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_938af410f63b2180072bdeea.woff')format("woff");}.ff26{font-family:ff26;line-height:0.819000;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_5ceaeb0000b0f6cbda5c103f.woff')format("woff");}.ff27{font-family:ff27;line-height:0.653000;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_18326e79a61b1803bfe2f8a6.woff')format("woff");}.ff28{font-family:ff28;line-height:0.653000;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_bacb97ff53f67d76c8c4f087.woff')format("woff");}.ff29{font-family:ff29;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_18371910f01ad9d6ce305c62.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.391000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_8b2ee665dd174117ce806c98.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_e96a628e0137366b4fd65da6.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_1cc70d98a77003b3bfe6e0ae.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_a15cfa1ad1e58c3cd74ddd9b.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_8a588802e1a17283b96471ee.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_5af5c7680b5ec8f4ebbdafa7.woff')format("woff");}.ff30{font-family:ff30;line-height:0.455000;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:ff31;src:url('chunks/assets/font_aaac991c62a8d56c472b986c.woff')format("woff");}.ff31{font-family:ff31;line-height:0.833496;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);}
.v6{vertical-align:-24.000000px;}
.v2{vertical-align:-19.199982px;}
.v4{vertical-align:-15.011353px;}
.v3{vertical-align:-3.826904px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.007690px;}
.v1{vertical-align:24.000000px;}
.ls2b{letter-spacing:-2.640000px;}
.ls34{letter-spacing:-2.220000px;}
.ls4{letter-spacing:-2.112000px;}
.ls37{letter-spacing:-1.968000px;}
.ls2c{letter-spacing:-1.776000px;}
.ls2f{letter-spacing:-1.260000px;}
.ls35{letter-spacing:-1.200000px;}
.ls30{letter-spacing:-1.008000px;}
.ls29{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.060000px;}
.ls28{letter-spacing:-0.042000px;}
.ls1{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.015847px;}
.ls21{letter-spacing:0.016484px;}
.lsb{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.191991px;}
.ls15{letter-spacing:0.210000px;}
.ls1f{letter-spacing:0.239994px;}
.ls7{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.365984px;}
.ls17{letter-spacing:0.419975px;}
.ls8{letter-spacing:0.420000px;}
.ls36{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.600000px;}
.ls23{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.780000px;}
.ls26{letter-spacing:0.870000px;}
.ls18{letter-spacing:0.900000px;}
.ls27{letter-spacing:0.960000px;}
.ls19{letter-spacing:1.812000px;}
.ls3{letter-spacing:1.824000px;}
.ls2{letter-spacing:1.872000px;}
.ls2a{letter-spacing:2.280570px;}
.ls6{letter-spacing:2.340585px;}
.ls0{letter-spacing:2.400000px;}
.ls16{letter-spacing:2.760690px;}
.ls24{letter-spacing:2.785154px;}
.ls22{letter-spacing:2.970917px;}
.ls33{letter-spacing:2.971554px;}
.ls9{letter-spacing:3.240810px;}
.ls2e{letter-spacing:4.560000px;}
.ls5{letter-spacing:4.621155px;}
.ls2d{letter-spacing:5.701425px;}
.ls31{letter-spacing:5.820000px;}
.lsd{letter-spacing:9.962490px;}
.lsa{letter-spacing:10.022505px;}
.ls13{letter-spacing:16.684169px;}
.ls12{letter-spacing:19.444859px;}
.lsc{letter-spacing:19.924979px;}
.lse{letter-spacing:19.984994px;}
.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;}
}
.ws9f{word-spacing:-16.744184px;}
.ws127{word-spacing:-16.500000px;}
.wsb6{word-spacing:-15.360000px;}
.wsa0{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.000000px;}
.wsf2{word-spacing:-13.740000px;}
.ws25{word-spacing:-12.480000px;}
.wsc0{word-spacing:-12.360000px;}
.ws1{word-spacing:-12.000000px;}
.ws136{word-spacing:-10.800000px;}
.ws9e{word-spacing:-10.710000px;}
.ws3{word-spacing:-10.500000px;}
.wsb3{word-spacing:-10.458000px;}
.wse9{word-spacing:-10.224000px;}
.ws13d{word-spacing:-10.032000px;}
.ws33{word-spacing:-9.888000px;}
.ws4{word-spacing:-8.400000px;}
.ws144{word-spacing:-2.016000px;}
.wsa7{word-spacing:-1.500000px;}
.wsb8{word-spacing:-1.440000px;}
.ws10a{word-spacing:-1.380000px;}
.wsbb{word-spacing:-1.140000px;}
.wsb7{word-spacing:-1.080000px;}
.wsb4{word-spacing:-1.020000px;}
.wsab{word-spacing:-0.900000px;}
.wsec{word-spacing:-0.840000px;}
.wsa9{word-spacing:-0.720000px;}
.ws64{word-spacing:-0.660000px;}
.wsa3{word-spacing:-0.600000px;}
.ws95{word-spacing:-0.540000px;}
.wsaa{word-spacing:-0.480000px;}
.ws5d{word-spacing:-0.420000px;}
.ws6{word-spacing:-0.360000px;}
.wsb5{word-spacing:-0.300000px;}
.ws4a{word-spacing:-0.240000px;}
.wsfe{word-spacing:-0.180000px;}
.ws92{word-spacing:-0.120000px;}
.ws12{word-spacing:-0.060015px;}
.ws84{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws29{word-spacing:0.048000px;}
.ws6e{word-spacing:0.060000px;}
.ws12d{word-spacing:0.096000px;}
.ws98{word-spacing:0.120000px;}
.ws11b{word-spacing:0.144000px;}
.ws17{word-spacing:0.180000px;}
.wsd2{word-spacing:0.192000px;}
.wsb0{word-spacing:0.240000px;}
.ws11f{word-spacing:0.288000px;}
.ws99{word-spacing:0.300000px;}
.ws68{word-spacing:0.360000px;}
.wsbf{word-spacing:0.384000px;}
.ws119{word-spacing:0.420000px;}
.ws13e{word-spacing:0.432000px;}
.ws4f{word-spacing:0.480000px;}
.ws8a{word-spacing:0.528000px;}
.ws80{word-spacing:0.540000px;}
.wsc8{word-spacing:0.576000px;}
.ws82{word-spacing:0.600000px;}
.ws6a{word-spacing:0.624000px;}
.ws75{word-spacing:0.660000px;}
.ws28{word-spacing:0.672000px;}
.wsfc{word-spacing:0.720000px;}
.wsae{word-spacing:0.780000px;}
.wsd7{word-spacing:0.816000px;}
.wsc1{word-spacing:0.840000px;}
.ws59{word-spacing:0.900000px;}
.ws56{word-spacing:0.912000px;}
.ws90{word-spacing:0.960000px;}
.ws87{word-spacing:1.008000px;}
.wsad{word-spacing:1.020000px;}
.wse7{word-spacing:1.056000px;}
.wsac{word-spacing:1.080000px;}
.ws140{word-spacing:1.104000px;}
.ws44{word-spacing:1.140000px;}
.wsbe{word-spacing:1.152000px;}
.wsa2{word-spacing:1.200000px;}
.ws115{word-spacing:1.248000px;}
.wsdf{word-spacing:1.260000px;}
.wsd1{word-spacing:1.296000px;}
.ws61{word-spacing:1.320000px;}
.wsf6{word-spacing:1.344000px;}
.ws1b{word-spacing:1.380000px;}
.ws31{word-spacing:1.440000px;}
.ws109{word-spacing:1.488000px;}
.wsa8{word-spacing:1.500000px;}
.ws8e{word-spacing:1.536000px;}
.wsbc{word-spacing:1.560000px;}
.ws2f{word-spacing:1.584000px;}
.ws93{word-spacing:1.620000px;}
.ws43{word-spacing:1.680000px;}
.ws53{word-spacing:1.728000px;}
.ws100{word-spacing:1.740000px;}
.ws134{word-spacing:1.776000px;}
.ws62{word-spacing:1.800000px;}
.wsef{word-spacing:1.824000px;}
.ws22{word-spacing:1.860000px;}
.wsb1{word-spacing:1.872000px;}
.ws5a{word-spacing:1.920000px;}
.ws108{word-spacing:1.968000px;}
.ws11c{word-spacing:2.016000px;}
.wsdd{word-spacing:2.040000px;}
.ws2b{word-spacing:2.064000px;}
.wsb9{word-spacing:2.100000px;}
.wsd0{word-spacing:2.112000px;}
.ws8f{word-spacing:2.160000px;}
.wsf9{word-spacing:2.208000px;}
.ws7a{word-spacing:2.220000px;}
.ws106{word-spacing:2.256000px;}
.ws91{word-spacing:2.280000px;}
.ws54{word-spacing:2.304000px;}
.wsaf{word-spacing:2.340000px;}
.ws12e{word-spacing:2.352000px;}
.ws83{word-spacing:2.400000px;}
.ws4b{word-spacing:2.460000px;}
.ws131{word-spacing:2.496000px;}
.ws67{word-spacing:2.520000px;}
.wscf{word-spacing:2.580000px;}
.wsbd{word-spacing:2.592000px;}
.wsf{word-spacing:2.640000px;}
.ws107{word-spacing:2.688000px;}
.ws39{word-spacing:2.700000px;}
.wse5{word-spacing:2.736000px;}
.wsc4{word-spacing:2.760000px;}
.ws7e{word-spacing:2.784000px;}
.ws5b{word-spacing:2.820000px;}
.ws125{word-spacing:2.832000px;}
.ws1a{word-spacing:2.880000px;}
.ws11d{word-spacing:2.928000px;}
.ws7b{word-spacing:2.940000px;}
.ws8d{word-spacing:2.976000px;}
.ws60{word-spacing:3.000000px;}
.ws133{word-spacing:3.024000px;}
.wsee{word-spacing:3.060000px;}
.ws52{word-spacing:3.120000px;}
.ws12c{word-spacing:3.168000px;}
.ws9d{word-spacing:3.180000px;}
.wsfa{word-spacing:3.216000px;}
.wsc5{word-spacing:3.240000px;}
.ws135{word-spacing:3.264000px;}
.ws10{word-spacing:3.300000px;}
.wsf8{word-spacing:3.312000px;}
.wsd{word-spacing:3.360000px;}
.wsf1{word-spacing:3.408000px;}
.ws65{word-spacing:3.420000px;}
.wse8{word-spacing:3.456000px;}
.wse1{word-spacing:3.480000px;}
.ws104{word-spacing:3.540000px;}
.ws2c{word-spacing:3.552000px;}
.ws7{word-spacing:3.600000px;}
.wsf7{word-spacing:3.648000px;}
.wscd{word-spacing:3.660000px;}
.ws11e{word-spacing:3.696000px;}
.ws9b{word-spacing:3.720000px;}
.ws50{word-spacing:3.744000px;}
.ws128{word-spacing:3.780000px;}
.ws13a{word-spacing:3.792000px;}
.ws6b{word-spacing:3.840000px;}
.ws18{word-spacing:3.900000px;}
.ws7c{word-spacing:3.960000px;}
.ws66{word-spacing:4.020000px;}
.ws96{word-spacing:4.080000px;}
.ws1d{word-spacing:4.140000px;}
.ws34{word-spacing:4.200000px;}
.ws10b{word-spacing:4.260000px;}
.ws139{word-spacing:4.272000px;}
.ws5c{word-spacing:4.320000px;}
.ws130{word-spacing:4.368000px;}
.wsa{word-spacing:4.380000px;}
.ws123{word-spacing:4.440000px;}
.ws55{word-spacing:4.464000px;}
.wsfd{word-spacing:4.500000px;}
.ws89{word-spacing:4.512000px;}
.ws4d{word-spacing:4.560000px;}
.ws143{word-spacing:4.608000px;}
.ws10c{word-spacing:4.620000px;}
.ws12f{word-spacing:4.656000px;}
.ws71{word-spacing:4.740000px;}
.ws4e{word-spacing:4.800000px;}
.wsa4{word-spacing:4.860000px;}
.wse3{word-spacing:4.896000px;}
.ws116{word-spacing:4.920000px;}
.ws129{word-spacing:4.980000px;}
.wsf0{word-spacing:4.992000px;}
.ws72{word-spacing:5.040000px;}
.wscc{word-spacing:5.100000px;}
.wse0{word-spacing:5.160000px;}
.ws69{word-spacing:5.220000px;}
.ws20{word-spacing:5.280000px;}
.ws132{word-spacing:5.328000px;}
.ws124{word-spacing:5.340000px;}
.ws7d{word-spacing:5.376000px;}
.ws23{word-spacing:5.400000px;}
.ws113{word-spacing:5.424000px;}
.ws19{word-spacing:5.460000px;}
.wsd9{word-spacing:5.472000px;}
.ws101{word-spacing:5.520000px;}
.ws110{word-spacing:5.580000px;}
.wse4{word-spacing:5.616000px;}
.ws48{word-spacing:5.640000px;}
.ws42{word-spacing:5.700000px;}
.ws8{word-spacing:5.760000px;}
.ws13f{word-spacing:5.808000px;}
.ws36{word-spacing:5.820000px;}
.wsc9{word-spacing:5.856000px;}
.ws6c{word-spacing:5.880000px;}
.wsba{word-spacing:5.940000px;}
.wsd5{word-spacing:6.000000px;}
.ws58{word-spacing:6.060000px;}
.ws32{word-spacing:6.096000px;}
.wse{word-spacing:6.120000px;}
.ws1f{word-spacing:6.180000px;}
.wse2{word-spacing:6.192000px;}
.wsed{word-spacing:6.240000px;}
.ws3a{word-spacing:6.300000px;}
.wsff{word-spacing:6.360000px;}
.ws2a{word-spacing:6.384000px;}
.ws86{word-spacing:6.420000px;}
.wsc7{word-spacing:6.480000px;}
.ws15{word-spacing:6.540000px;}
.wsb{word-spacing:6.600000px;}
.wsdc{word-spacing:6.660000px;}
.ws141{word-spacing:6.672000px;}
.wscb{word-spacing:6.720000px;}
.wse6{word-spacing:6.768000px;}
.ws3e{word-spacing:6.780000px;}
.ws9{word-spacing:6.840000px;}
.wsd6{word-spacing:6.900000px;}
.ws8c{word-spacing:6.912000px;}
.ws73{word-spacing:6.960000px;}
.wsce{word-spacing:7.020000px;}
.ws88{word-spacing:7.056000px;}
.wsea{word-spacing:7.080000px;}
.ws114{word-spacing:7.104000px;}
.ws63{word-spacing:7.140000px;}
.ws38{word-spacing:7.200000px;}
.ws47{word-spacing:7.260000px;}
.wsa1{word-spacing:7.320000px;}
.ws4c{word-spacing:7.380000px;}
.ws6f{word-spacing:7.440000px;}
.ws13c{word-spacing:7.488000px;}
.wsf4{word-spacing:7.500000px;}
.wsd4{word-spacing:7.560000px;}
.ws41{word-spacing:7.620000px;}
.wsd3{word-spacing:7.680000px;}
.wsa5{word-spacing:7.740000px;}
.ws2e{word-spacing:7.776000px;}
.ws1e{word-spacing:7.800000px;}
.ws142{word-spacing:7.824000px;}
.ws3b{word-spacing:7.860000px;}
.ws76{word-spacing:7.920000px;}
.ws5f{word-spacing:7.980000px;}
.ws7f{word-spacing:8.040000px;}
.ws9c{word-spacing:8.100000px;}
.ws37{word-spacing:8.160000px;}
.ws3f{word-spacing:8.220000px;}
.wsc{word-spacing:8.340000px;}
.ws3c{word-spacing:8.400000px;}
.ws94{word-spacing:8.460000px;}
.wsf3{word-spacing:8.520000px;}
.ws112{word-spacing:8.580000px;}
.ws40{word-spacing:8.640000px;}
.ws102{word-spacing:8.700000px;}
.wsdb{word-spacing:8.760000px;}
.ws30{word-spacing:8.784000px;}
.ws70{word-spacing:8.820000px;}
.ws8b{word-spacing:8.880000px;}
.ws85{word-spacing:8.940000px;}
.wsca{word-spacing:9.060000px;}
.ws6d{word-spacing:9.180000px;}
.ws118{word-spacing:9.240000px;}
.wsc3{word-spacing:9.300000px;}
.ws51{word-spacing:9.360000px;}
.ws120{word-spacing:9.504000px;}
.ws126{word-spacing:9.552000px;}
.ws9a{word-spacing:9.600000px;}
.ws11a{word-spacing:9.720000px;}
.wsd8{word-spacing:9.936000px;}
.wsb2{word-spacing:9.938484px;}
.ws3d{word-spacing:10.020000px;}
.ws122{word-spacing:10.080000px;}
.ws13b{word-spacing:10.128000px;}
.ws5e{word-spacing:10.260000px;}
.wsc2{word-spacing:10.320000px;}
.ws10f{word-spacing:10.380000px;}
.wsde{word-spacing:10.440000px;}
.ws97{word-spacing:10.500000px;}
.ws111{word-spacing:10.620000px;}
.wsc6{word-spacing:10.680000px;}
.wsa6{word-spacing:11.100000px;}
.wseb{word-spacing:11.160000px;}
.ws117{word-spacing:11.280000px;}
.wsda{word-spacing:11.340000px;}
.ws35{word-spacing:11.520000px;}
.ws138{word-spacing:11.568000px;}
.ws10d{word-spacing:11.760000px;}
.ws137{word-spacing:11.952000px;}
.ws14{word-spacing:12.060000px;}
.ws103{word-spacing:12.180000px;}
.ws12b{word-spacing:12.360000px;}
.ws79{word-spacing:12.480000px;}
.ws26{word-spacing:12.540000px;}
.ws57{word-spacing:12.600000px;}
.ws121{word-spacing:12.660000px;}
.ws21{word-spacing:13.080000px;}
.ws27{word-spacing:13.320000px;}
.ws12a{word-spacing:13.500000px;}
.ws24{word-spacing:13.560000px;}
.ws1c{word-spacing:13.920000px;}
.ws2d{word-spacing:13.968000px;}
.ws49{word-spacing:14.280000px;}
.ws16{word-spacing:14.880000px;}
.ws77{word-spacing:14.940000px;}
.wsfb{word-spacing:15.360000px;}
.ws46{word-spacing:15.480000px;}
.ws105{word-spacing:15.540000px;}
.ws10e{word-spacing:15.840000px;}
.wsf5{word-spacing:15.900000px;}
.ws78{word-spacing:16.080000px;}
.ws13{word-spacing:16.500000px;}
.ws74{word-spacing:16.740000px;}
.ws45{word-spacing:18.120000px;}
.ws81{word-spacing:48.000000px;}
.ws11{word-spacing:73.056000px;}
._19{margin-left:-62.250008px;}
._a{margin-left:-24.306074px;}
._23{margin-left:-22.740000px;}
._b{margin-left:-21.005249px;}
._e{margin-left:-19.440000px;}
._13{margin-left:-16.800000px;}
._4{margin-left:-15.600000px;}
._1a{margin-left:-13.080000px;}
._1c{margin-left:-11.040000px;}
._1d{margin-left:-9.984000px;}
._1b{margin-left:-4.800000px;}
._0{margin-left:-3.600000px;}
._9{margin-left:-2.310000px;}
._1{margin-left:-1.248000px;}
._3{width:1.428000px;}
._f{width:3.215991px;}
._15{width:4.459200px;}
._d{width:5.615991px;}
._17{width:6.623991px;}
._12{width:7.890000px;}
._18{width:9.215991px;}
._c{width:11.327991px;}
._16{width:14.994000px;}
._1f{width:16.524009px;}
._14{width:18.552001px;}
._5{width:22.320000px;}
._26{width:31.686000px;}
._1e{width:33.600000px;}
._11{width:36.047990px;}
._27{width:37.440000px;}
._22{width:41.010000px;}
._24{width:42.450000px;}
._2{width:44.748000px;}
._20{width:47.970000px;}
._6{width:56.255991px;}
._25{width:63.750000px;}
._8{width:84.000000px;}
._21{width:494.329280px;}
._10{width:518.329280px;}
._7{width:1696.079956px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:56.399998px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:60.014997px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:78.007198px;}
.ye8{bottom:-0.856201px;}
.y14b{bottom:-0.854736px;}
.y0{bottom:0.000000px;}
.y137{bottom:0.044701px;}
.y12c{bottom:0.044724px;}
.y4b{bottom:0.194550px;}
.y2e{bottom:0.194687px;}
.y1a4{bottom:0.194733px;}
.y119{bottom:0.195006px;}
.y80{bottom:0.196049px;}
.y20f{bottom:0.196060px;}
.ya3{bottom:0.196198px;}
.y9{bottom:0.208049px;}
.y8{bottom:1.124634px;}
.y12f{bottom:2.294357px;}
.y134{bottom:2.295889px;}
.y129{bottom:2.594559px;}
.y13c{bottom:2.596069px;}
.yaa{bottom:2.744522px;}
.yb5{bottom:2.744545px;}
.y114{bottom:2.744843px;}
.ya5{bottom:2.746033px;}
.y14d{bottom:3.794403px;}
.y1ef{bottom:3.796051px;}
.y1{bottom:50.758198px;}
.y146{bottom:89.813999px;}
.y147{bottom:90.002552px;}
.y53{bottom:90.008552px;}
.y145{bottom:90.014552px;}
.yc4{bottom:90.020552px;}
.y172{bottom:90.026552px;}
.y1ff{bottom:90.797562px;}
.y106{bottom:94.802547px;}
.y1d{bottom:95.795998px;}
.y243{bottom:99.047516px;}
.y25b{bottom:99.071552px;}
.y8c{bottom:104.063999px;}
.y8d{bottom:104.252552px;}
.y144{bottom:104.258552px;}
.y8b{bottom:104.264552px;}
.y171{bottom:104.270552px;}
.y1fe{bottom:108.797562px;}
.y52{bottom:109.052547px;}
.y28e{bottom:112.523543px;}
.y105{bottom:112.802547px;}
.y25a{bottom:113.315552px;}
.y242{bottom:117.047516px;}
.y203{bottom:118.313999px;}
.y204{bottom:118.502552px;}
.y8a{bottom:118.508552px;}
.y170{bottom:118.514552px;}
.y1c{bottom:119.652000px;}
.y51{bottom:122.258552px;}
.y1b6{bottom:122.264552px;}
.y21d{bottom:122.288541px;}
.y15a{bottom:122.294541px;}
.y143{bottom:123.302547px;}
.y104{bottom:126.020552px;}
.y28d{bottom:126.767543px;}
.y1fd{bottom:126.797562px;}
.y259{bottom:127.559552px;}
.y88{bottom:132.563999px;}
.y89{bottom:132.752552px;}
.y16f{bottom:132.758552px;}
.y87{bottom:132.770552px;}
.y1b{bottom:133.896000px;}
.y241{bottom:135.047516px;}
.y1a2{bottom:136.508552px;}
.y202{bottom:136.514552px;}
.y1e8{bottom:136.520552px;}
.y21c{bottom:136.532541px;}
.y159{bottom:136.538541px;}
.yc3{bottom:137.552547px;}
.y103{bottom:140.264552px;}
.y28c{bottom:141.011543px;}
.y50{bottom:141.302547px;}
.y258{bottom:141.803552px;}
.y1fc{bottom:144.797562px;}
.y86{bottom:147.014552px;}
.y1d3{bottom:150.563999px;}
.y1d4{bottom:150.752552px;}
.y188{bottom:150.758552px;}
.y1e7{bottom:150.764552px;}
.y21b{bottom:150.776541px;}
.y158{bottom:150.782541px;}
.y16e{bottom:151.802547px;}
.y240{bottom:153.047516px;}
.y4f{bottom:154.508552px;}
.y28b{bottom:155.255543px;}
.y1a1{bottom:155.552547px;}
.y257{bottom:156.047552px;}
.y1ce{bottom:159.302547px;}
.y85{bottom:161.258552px;}
.y1fb{bottom:162.797562px;}
.y194{bottom:165.008552px;}
.y21a{bottom:165.020541px;}
.y157{bottom:165.026541px;}
.y101{bottom:168.563999px;}
.y102{bottom:168.752552px;}
.y1a0{bottom:168.758552px;}
.y100{bottom:168.764541px;}
.y28a{bottom:169.499543px;}
.y16d{bottom:169.802547px;}
.y256{bottom:170.291552px;}
.y23f{bottom:171.047516px;}
.y1cd{bottom:172.508552px;}
.y4e{bottom:173.552547px;}
.y2be{bottom:175.007516px;}
.y83{bottom:175.313999px;}
.y84{bottom:175.502552px;}
.y82{bottom:175.508552px;}
.y219{bottom:179.264541px;}
.y156{bottom:179.270541px;}
.y142{bottom:180.047539px;}
.yc2{bottom:180.797539px;}
.y1fa{bottom:180.797562px;}
.yff{bottom:183.008541px;}
.y289{bottom:183.743543px;}
.y193{bottom:184.052547px;}
.y4d{bottom:186.758541px;}
.y19f{bottom:187.802547px;}
.y23e{bottom:189.047516px;}
.y2bd{bottom:189.251516px;}
.y7f{bottom:189.562500px;}
.y81{bottom:189.752552px;}
.y7e{bottom:189.758541px;}
.y1cc{bottom:191.552547px;}
.y218{bottom:193.508541px;}
.y155{bottom:193.514541px;}
.yfd{bottom:197.064011px;}
.yfe{bottom:197.252541px;}
.yfc{bottom:197.270541px;}
.y288{bottom:197.987543px;}
.y141{bottom:198.047539px;}
.y255{bottom:198.767552px;}
.yc1{bottom:198.797539px;}
.y1f9{bottom:198.797562px;}
.y11f{bottom:199.200005px;}
.y4a{bottom:200.814011px;}
.y4c{bottom:201.002541px;}
.y19e{bottom:201.008541px;}
.y49{bottom:201.014541px;}
.y192{bottom:202.052559px;}
.y7c{bottom:203.814011px;}
.y7d{bottom:204.002541px;}
.y7b{bottom:204.008541px;}
.yd7{bottom:205.802559px;}
.y23d{bottom:207.047516px;}
.y154{bottom:207.758541px;}
.y1cb{bottom:209.552559px;}
.yfb{bottom:211.514541px;}
.y287{bottom:212.231543px;}
.y217{bottom:212.552559px;}
.y254{bottom:213.011552px;}
.y16c{bottom:213.422562px;}
.y140{bottom:213.454491px;}
.y48{bottom:215.258541px;}
.y13f{bottom:216.047539px;}
.yc0{bottom:216.797539px;}
.y1f8{bottom:216.797562px;}
.y11e{bottom:217.200005px;}
.y79{bottom:218.064011px;}
.y7a{bottom:218.252541px;}
.y78{bottom:218.258541px;}
.y1bd{bottom:218.814011px;}
.y1bc{bottom:219.002541px;}
.y2bc{bottom:219.335516px;}
.y191{bottom:220.052559px;}
.y1ca{bottom:222.758541px;}
.y23c{bottom:225.047516px;}
.yfa{bottom:225.758541px;}
.y286{bottom:226.475543px;}
.y153{bottom:226.802559px;}
.y253{bottom:227.255552px;}
.y16b{bottom:231.422562px;}
.y1ba{bottom:233.064011px;}
.y1bb{bottom:233.252541px;}
.y19d{bottom:233.258541px;}
.y2bb{bottom:233.579516px;}
.y13e{bottom:234.047539px;}
.y47{bottom:234.302559px;}
.ybf{bottom:234.797539px;}
.y1f7{bottom:234.797562px;}
.y11d{bottom:235.200005px;}
.y77{bottom:237.302559px;}
.y215{bottom:239.814011px;}
.y216{bottom:240.002541px;}
.y214{bottom:240.026541px;}
.y285{bottom:240.719543px;}
.y252{bottom:241.499552px;}
.y1c9{bottom:241.802559px;}
.y23b{bottom:243.047516px;}
.yf9{bottom:244.802559px;}
.y1b8{bottom:247.314011px;}
.y1b9{bottom:247.502541px;}
.y1b7{bottom:247.508552px;}
.y46{bottom:247.526541px;}
.y2ba{bottom:247.823516px;}
.y16a{bottom:249.422562px;}
.y187{bottom:250.547562px;}
.y13d{bottom:252.047539px;}
.y19c{bottom:252.302559px;}
.ybe{bottom:252.797539px;}
.y1f6{bottom:252.797562px;}
.y11c{bottom:253.200005px;}
.y213{bottom:254.270541px;}
.y284{bottom:254.963543px;}
.y251{bottom:255.743552px;}
.y1c8{bottom:259.802559px;}
.y23a{bottom:261.047516px;}
.y45{bottom:261.770541px;}
.y2b9{bottom:262.067516px;}
.yf8{bottom:262.802559px;}
.y1be{bottom:265.502541px;}
.y19b{bottom:265.508541px;}
.y169{bottom:267.422562px;}
.y13b{bottom:267.454491px;}
.y212{bottom:268.514541px;}
.y190{bottom:268.547539px;}
.y186{bottom:268.547562px;}
.y283{bottom:269.207543px;}
.y250{bottom:269.987552px;}
.y13a{bottom:270.047539px;}
.ybd{bottom:270.797539px;}
.y1f5{bottom:270.797562px;}
.y11b{bottom:271.200005px;}
.y44{bottom:276.014541px;}
.yf7{bottom:276.032541px;}
.y2b8{bottom:276.311516px;}
.y239{bottom:279.047516px;}
.y211{bottom:282.758541px;}
.y282{bottom:283.451543px;}
.y24f{bottom:284.231552px;}
.y19a{bottom:284.552559px;}
.y168{bottom:285.422562px;}
.y18f{bottom:286.357498px;}
.y18e{bottom:286.547539px;}
.y185{bottom:286.547562px;}
.y139{bottom:288.047539px;}
.y76{bottom:288.479828px;}
.ybc{bottom:288.797539px;}
.y1f4{bottom:288.797562px;}
.y11a{bottom:289.200005px;}
.y43{bottom:290.258541px;}
.yf6{bottom:290.276541px;}
.y2b7{bottom:290.555516px;}
.y210{bottom:297.002541px;}
.y238{bottom:297.047516px;}
.y281{bottom:297.695543px;}
.y167{bottom:303.422562px;}
.ybb{bottom:304.042511px;}
.yf5{bottom:304.520541px;}
.y18d{bottom:304.547539px;}
.y184{bottom:304.547562px;}
.y2b6{bottom:304.799516px;}
.y1c7{bottom:305.297539px;}
.y136{bottom:306.004509px;}
.y138{bottom:306.047539px;}
.y75{bottom:306.479828px;}
.y1e6{bottom:306.797539px;}
.y1f3{bottom:306.797562px;}
.y118{bottom:307.010994px;}
.y42{bottom:309.302559px;}
.y20e{bottom:311.062500px;}
.y20d{bottom:311.258541px;}
.y280{bottom:311.939543px;}
.y24e{bottom:312.707552px;}
.yd6{bottom:314.672562px;}
.y237{bottom:315.047516px;}
.yf4{bottom:318.764541px;}
.y2b5{bottom:319.043516px;}
.y166{bottom:321.422562px;}
.y133{bottom:321.751511px;}
.y41{bottom:322.514541px;}
.y18c{bottom:322.547539px;}
.y183{bottom:322.547562px;}
.y1c6{bottom:323.109009px;}
.y1c5{bottom:323.297539px;}
.y135{bottom:324.047539px;}
.y132{bottom:324.047562px;}
.y74{bottom:324.479828px;}
.yba{bottom:324.797539px;}
.y1f2{bottom:324.797562px;}
.y117{bottom:325.200005px;}
.y27f{bottom:326.183543px;}
.y24d{bottom:326.951552px;}
.y20c{bottom:330.302559px;}
.yd5{bottom:332.672562px;}
.yf3{bottom:333.008541px;}
.y236{bottom:333.047516px;}
.y2b4{bottom:333.287516px;}
.y40{bottom:336.758541px;}
.y165{bottom:339.422562px;}
.y27e{bottom:340.427543px;}
.y115{bottom:340.446007px;}
.y18b{bottom:340.547539px;}
.y182{bottom:340.547562px;}
.y1c3{bottom:341.109009px;}
.y24c{bottom:341.195552px;}
.y1c4{bottom:341.297539px;}
.y1b5{bottom:341.297562px;}
.y131{bottom:342.047562px;}
.y73{bottom:342.479828px;}
.yb9{bottom:342.609009px;}
.y1e5{bottom:342.797539px;}
.y1f1{bottom:342.797562px;}
.y116{bottom:343.190849px;}
.y2b3{bottom:347.531516px;}
.yd4{bottom:350.672562px;}
.y235{bottom:351.047516px;}
.yf2{bottom:352.052559px;}
.y27d{bottom:354.671543px;}
.y24b{bottom:355.439552px;}
.y3f{bottom:355.802559px;}
.y164{bottom:357.422562px;}
.yb7{bottom:358.042511px;}
.y113{bottom:358.446007px;}
.y18a{bottom:358.547539px;}
.y181{bottom:358.547562px;}
.y1b4{bottom:359.297562px;}
.y199{bottom:360.047539px;}
.y130{bottom:360.047562px;}
.y72{bottom:360.479828px;}
.yb8{bottom:360.788544px;}
.y1e4{bottom:360.797539px;}
.y1f0{bottom:360.797562px;}
.y2b2{bottom:361.775516px;}
.y27c{bottom:368.915543px;}
.y234{bottom:369.047516px;}
.y24a{bottom:369.683552px;}
.y1a{bottom:372.613037px;}
.y163{bottom:375.422562px;}
.y2b1{bottom:376.019516px;}
.yb4{bottom:376.043999px;}
.y180{bottom:376.547562px;}
.y1b3{bottom:377.297562px;}
.yd3{bottom:378.047562px;}
.y71{bottom:378.479828px;}
.y1e3{bottom:378.609009px;}
.y1e2{bottom:378.797516px;}
.yb6{bottom:378.797539px;}
.yb3{bottom:378.797562px;}
.y112{bottom:379.199982px;}
.y27b{bottom:383.159543px;}
.y249{bottom:383.927552px;}
.y233{bottom:387.047516px;}
.y2b0{bottom:390.263516px;}
.y12e{bottom:393.753021px;}
.y1d2{bottom:394.357498px;}
.y17f{bottom:394.547562px;}
.y1b2{bottom:395.297562px;}
.y1c2{bottom:395.859009px;}
.yd2{bottom:396.047562px;}
.y70{bottom:396.479828px;}
.yb2{bottom:396.609009px;}
.y1e1{bottom:396.797516px;}
.yb1{bottom:396.797562px;}
.y111{bottom:397.199982px;}
.y27a{bottom:397.403543px;}
.y248{bottom:398.171552px;}
.y2af{bottom:404.507516px;}
.y232{bottom:405.047516px;}
.y19{bottom:409.363037px;}
.y162{bottom:411.422562px;}
.y279{bottom:411.647543px;}
.yf1{bottom:411.797562px;}
.y20b{bottom:412.359009px;}
.y247{bottom:412.415552px;}
.y17e{bottom:412.547562px;}
.y1b1{bottom:413.297562px;}
.y189{bottom:413.859009px;}
.yd1{bottom:414.047562px;}
.y6f{bottom:414.479828px;}
.y198{bottom:414.607498px;}
.y1e0{bottom:414.797516px;}
.yb0{bottom:414.797562px;}
.y110{bottom:415.199982px;}
.y2ae{bottom:418.751516px;}
.y231{bottom:423.047516px;}
.y278{bottom:425.891543px;}
.y246{bottom:426.659552px;}
.y18{bottom:427.363037px;}
.y161{bottom:429.234009px;}
.y160{bottom:429.422562px;}
.yf0{bottom:429.609009px;}
.yef{bottom:429.797562px;}
.y20a{bottom:430.359009px;}
.y17d{bottom:430.547562px;}
.y1b0{bottom:431.297562px;}
.y3e{bottom:431.672562px;}
.y12d{bottom:432.004486px;}
.yd0{bottom:432.047562px;}
.y6e{bottom:432.479828px;}
.y1df{bottom:432.797516px;}
.yaf{bottom:432.797562px;}
.y2ad{bottom:432.995516px;}
.y10f{bottom:433.199982px;}
.y277{bottom:440.135543px;}
.y245{bottom:440.903552px;}
.y230{bottom:441.047516px;}
.y17{bottom:445.363037px;}
.y2ac{bottom:447.239516px;}
.y17c{bottom:448.547562px;}
.y1af{bottom:449.297562px;}
.y3d{bottom:449.484009px;}
.y3c{bottom:449.672562px;}
.ycf{bottom:450.047562px;}
.y6d{bottom:450.479828px;}
.y1c1{bottom:450.609009px;}
.y1de{bottom:450.797516px;}
.yae{bottom:450.797562px;}
.y10e{bottom:451.199982px;}
.y276{bottom:454.379543px;}
.y244{bottom:455.147552px;}
.yee{bottom:456.982498px;}
.yed{bottom:457.172562px;}
.y22f{bottom:459.047516px;}
.y2ab{bottom:461.483516px;}
.y16{bottom:463.363037px;}
.y1ee{bottom:464.989517px;}
.y12a{bottom:465.455978px;}
.yad{bottom:466.042511px;}
.y17b{bottom:466.547562px;}
.y1ae{bottom:467.297562px;}
.y3b{bottom:467.484009px;}
.y3a{bottom:467.672562px;}
.y12b{bottom:468.004486px;}
.yce{bottom:468.047562px;}
.y6c{bottom:468.479828px;}
.yac{bottom:468.607498px;}
.y275{bottom:468.623543px;}
.y1dd{bottom:468.797516px;}
.yab{bottom:468.797562px;}
.y10d{bottom:469.199982px;}
.y1ed{bottom:469.697571px;}
.yec{bottom:475.172562px;}
.y2aa{bottom:475.727516px;}
.y22e{bottom:477.047516px;}
.y15{bottom:481.363037px;}
.y274{bottom:482.867543px;}
.ya9{bottom:484.044022px;}
.y1eb{bottom:484.205978px;}
.y209{bottom:484.359009px;}
.y17a{bottom:484.547562px;}
.y15f{bottom:484.734009px;}
.y15e{bottom:484.922562px;}
.y1ad{bottom:485.297562px;}
.y39{bottom:485.672562px;}
.ycd{bottom:486.047562px;}
.y6b{bottom:486.479828px;}
.ya8{bottom:486.609009px;}
.y1dc{bottom:486.797516px;}
.ya7{bottom:486.797562px;}
.y1ec{bottom:486.800537px;}
.y10c{bottom:487.199982px;}
.y1ea{bottom:487.697571px;}
.y2a9{bottom:489.971516px;}
.yeb{bottom:493.172562px;}
.y22d{bottom:495.047516px;}
.y273{bottom:497.111543px;}
.y14{bottom:499.363037px;}
.y179{bottom:502.547562px;}
.y1ac{bottom:503.297562px;}
.y38{bottom:503.672562px;}
.ycc{bottom:504.047562px;}
.y2a8{bottom:504.215516px;}
.y6a{bottom:504.479828px;}
.y1db{bottom:504.797516px;}
.ya6{bottom:504.797562px;}
.y10b{bottom:505.199982px;}
.ye9{bottom:508.417511px;}
.yea{bottom:511.172562px;}
.y272{bottom:511.355543px;}
.y22c{bottom:513.047516px;}
.y13{bottom:517.363037px;}
.y2a7{bottom:518.459516px;}
.y128{bottom:519.455978px;}
.ya4{bottom:520.042511px;}
.y201{bottom:520.547562px;}
.y37{bottom:521.672562px;}
.ycb{bottom:522.047562px;}
.y69{bottom:522.479828px;}
.ya2{bottom:522.607498px;}
.y1da{bottom:522.797516px;}
.ya1{bottom:522.797562px;}
.y10a{bottom:523.199982px;}
.y271{bottom:525.599543px;}
.ye6{bottom:528.984009px;}
.ye5{bottom:529.172562px;}
.ye7{bottom:530.029495px;}
.y22b{bottom:531.047516px;}
.y2a6{bottom:532.703516px;}
.y12{bottom:535.363037px;}
.y178{bottom:538.547562px;}
.y1ab{bottom:539.297516px;}
.y36{bottom:539.672562px;}
.y270{bottom:539.843543px;}
.y127{bottom:540.047562px;}
.y68{bottom:540.479828px;}
.y1d9{bottom:540.797516px;}
.ya0{bottom:540.797562px;}
.y109{bottom:541.199982px;}
.y2a5{bottom:546.947516px;}
.ye4{bottom:547.172562px;}
.y22a{bottom:549.047516px;}
.yca{bottom:549.422562px;}
.y11{bottom:553.363037px;}
.y26f{bottom:554.087543px;}
.y177{bottom:556.547562px;}
.y1aa{bottom:557.297516px;}
.y15d{bottom:557.484009px;}
.y35{bottom:557.672562px;}
.y1d1{bottom:557.859009px;}
.y126{bottom:558.047562px;}
.y67{bottom:558.479828px;}
.y1c0{bottom:558.609009px;}
.y1d8{bottom:558.797516px;}
.y9f{bottom:558.797562px;}
.y108{bottom:559.199982px;}
.y2a4{bottom:561.191516px;}
.ye3{bottom:562.417511px;}
.ye2{bottom:565.172562px;}
.y229{bottom:567.047516px;}
.yc9{bottom:567.422562px;}
.y26e{bottom:568.331543px;}
.y10{bottom:571.363037px;}
.y176{bottom:574.547562px;}
.y1a9{bottom:575.297516px;}
.y2a3{bottom:575.435516px;}
.y34{bottom:575.672562px;}
.y125{bottom:576.047562px;}
.y66{bottom:576.479828px;}
.y1d7{bottom:576.797516px;}
.y9e{bottom:576.797562px;}
.y26d{bottom:582.575543px;}
.y228{bottom:585.047516px;}
.yc8{bottom:585.422562px;}
.yf{bottom:589.363037px;}
.y2a2{bottom:589.679516px;}
.ye1{bottom:592.547562px;}
.y33{bottom:593.672562px;}
.y124{bottom:593.857498px;}
.y123{bottom:594.047562px;}
.y65{bottom:594.479828px;}
.y1d6{bottom:594.797516px;}
.y152{bottom:594.797562px;}
.y107{bottom:595.199982px;}
.y26c{bottom:596.819543px;}
.y227{bottom:603.047516px;}
.yc7{bottom:603.422562px;}
.y2a1{bottom:603.923516px;}
.ye{bottom:607.363037px;}
.ydf{bottom:607.792511px;}
.y121{bottom:609.294022px;}
.ye0{bottom:610.357498px;}
.yde{bottom:610.547562px;}
.y26b{bottom:611.063543px;}
.y32{bottom:611.672562px;}
.y200{bottom:611.859009px;}
.y120{bottom:612.047516px;}
.y122{bottom:612.047562px;}
.y64{bottom:612.479828px;}
.y1d0{bottom:612.609009px;}
.y151{bottom:612.754486px;}
.y1d5{bottom:612.797516px;}
.y9d{bottom:612.797562px;}
.y2a0{bottom:618.167516px;}
.y226{bottom:621.047516px;}
.y26a{bottom:625.307543px;}
.y31{bottom:629.672562px;}
.y174{bottom:629.859009px;}
.y173{bottom:630.047516px;}
.y175{bottom:630.047562px;}
.y63{bottom:630.479828px;}
.y1bf{bottom:630.797516px;}
.yc6{bottom:630.797562px;}
.y29f{bottom:632.411516px;}
.y225{bottom:639.047516px;}
.y269{bottom:639.551543px;}
.ydd{bottom:646.359009px;}
.ydc{bottom:646.547562px;}
.y29e{bottom:646.655516px;}
.y15c{bottom:647.482498px;}
.y15b{bottom:647.672516px;}
.y30{bottom:647.672562px;}
.y1a8{bottom:648.047516px;}
.y62{bottom:648.479828px;}
.yc5{bottom:648.797516px;}
.y150{bottom:648.797562px;}
.y268{bottom:653.795543px;}
.yd{bottom:656.168567px;}
.y224{bottom:657.047516px;}
.y29d{bottom:660.899516px;}
.ydb{bottom:664.547562px;}
.y2d{bottom:665.484009px;}
.y2c{bottom:665.672516px;}
.y2f{bottom:665.672562px;}
.y1a7{bottom:666.047516px;}
.y61{bottom:666.479828px;}
.y208{bottom:666.609009px;}
.y9c{bottom:666.797516px;}
.y14f{bottom:666.797562px;}
.y267{bottom:668.039543px;}
.yc{bottom:670.412567px;}
.y29c{bottom:675.143516px;}
.y266{bottom:682.283543px;}
.y2b{bottom:683.672516px;}
.y223{bottom:684.422516px;}
.y60{bottom:684.479828px;}
.y9b{bottom:684.797516px;}
.y14e{bottom:684.797562px;}
.y29b{bottom:689.387516px;}
.y265{bottom:696.527543px;}
.y2a{bottom:701.672516px;}
.y1a6{bottom:702.047516px;}
.y222{bottom:702.422516px;}
.y5f{bottom:702.479828px;}
.y1cf{bottom:702.609009px;}
.y9a{bottom:702.797516px;}
.y197{bottom:702.797562px;}
.y29a{bottom:703.631516px;}
.y264{bottom:710.771543px;}
.y299{bottom:717.875516px;}
.y29{bottom:719.672516px;}
.yd9{bottom:719.859009px;}
.yd8{bottom:720.047516px;}
.yda{bottom:720.047562px;}
.y221{bottom:720.422516px;}
.y5e{bottom:720.479828px;}
.y195{bottom:720.609009px;}
.y99{bottom:720.797516px;}
.y196{bottom:720.797562px;}
.y263{bottom:725.015543px;}
.y298{bottom:732.119516px;}
.y28{bottom:737.672516px;}
.y220{bottom:738.422516px;}
.y5d{bottom:738.479828px;}
.y205{bottom:738.607498px;}
.y98{bottom:738.797516px;}
.y206{bottom:738.797562px;}
.y262{bottom:739.259543px;}
.y207{bottom:744.797562px;}
.y297{bottom:746.363516px;}
.y261{bottom:753.503543px;}
.y27{bottom:755.672516px;}
.y21f{bottom:756.422516px;}
.y5c{bottom:756.479828px;}
.y97{bottom:756.797516px;}
.y1e9{bottom:756.797562px;}
.y296{bottom:760.607516px;}
.y260{bottom:767.747543px;}
.y26{bottom:773.672516px;}
.y21e{bottom:774.422516px;}
.y5b{bottom:774.479828px;}
.y96{bottom:774.797516px;}
.y295{bottom:774.851516px;}
.yb{bottom:781.663605px;}
.y294{bottom:789.095516px;}
.y25{bottom:791.672516px;}
.y5a{bottom:792.479828px;}
.y95{bottom:792.797516px;}
.y25f{bottom:800.297516px;}
.y293{bottom:803.339516px;}
.y14c{bottom:806.991028px;}
.y24{bottom:809.672516px;}
.y59{bottom:810.479828px;}
.y94{bottom:810.797516px;}
.y292{bottom:817.583516px;}
.y7{bottom:824.221527px;}
.y6{bottom:824.407217px;}
.ya{bottom:824.410217px;}
.y23{bottom:827.672516px;}
.y58{bottom:828.479828px;}
.y93{bottom:828.797516px;}
.y291{bottom:831.827516px;}
.y22{bottom:845.672516px;}
.y290{bottom:846.071516px;}
.y57{bottom:846.479828px;}
.y1a5{bottom:846.607544px;}
.y92{bottom:846.797516px;}
.y5{bottom:846.910217px;}
.y28f{bottom:860.315516px;}
.y21{bottom:863.672516px;}
.y56{bottom:864.479828px;}
.y91{bottom:864.797516px;}
.y25e{bottom:874.559516px;}
.y55{bottom:882.479828px;}
.y1a3{bottom:882.609009px;}
.y90{bottom:882.797516px;}
.y14a{bottom:883.667999px;}
.y25d{bottom:888.803516px;}
.y148{bottom:898.204468px;}
.y20{bottom:899.672516px;}
.y4{bottom:899.785217px;}
.y54{bottom:900.479828px;}
.y8f{bottom:900.797516px;}
.y149{bottom:900.800537px;}
.y25c{bottom:903.047516px;}
.y3{bottom:926.489276px;}
.y1f{bottom:940.520691px;}
.y8e{bottom:940.626892px;}
.y1e{bottom:940.627075px;}
.y2{bottom:940.733276px;}
.h20{height:5.850000px;}
.h2c{height:5.851500px;}
.h1c{height:6.900000px;}
.h18{height:6.901500px;}
.h23{height:7.498500px;}
.h21{height:7.500000px;}
.h15{height:8.250000px;}
.h17{height:8.251500px;}
.h12{height:9.300000px;}
.h27{height:9.900000px;}
.h29{height:9.901500px;}
.hf{height:10.348500px;}
.h11{height:10.350000px;}
.h2a{height:12.300000px;}
.h1d{height:12.750000px;}
.h1a{height:12.751500px;}
.h25{height:12.898500px;}
.h5{height:12.900000px;}
.h2d{height:13.800000px;}
.h31{height:13.801500px;}
.h19{height:26.466614px;}
.h1e{height:26.886719px;}
.h24{height:26.946734px;}
.h22{height:28.848000px;}
.hb{height:31.046400px;}
.h16{height:32.352000px;}
.h2{height:33.024000px;}
.h13{height:36.069013px;}
.h32{height:38.808000px;}
.h28{height:39.189793px;}
.h2b{height:39.729928px;}
.h1b{height:40.090018px;}
.h10{height:40.450108px;}
.h26{height:40.570138px;}
.h3{height:44.352000px;}
.h6{height:46.882326px;}
.h2e{height:48.986484px;}
.h14{height:49.104000px;}
.h33{height:50.640000px;}
.h2f{height:52.113598px;}
.h7{height:54.605039px;}
.ha{height:55.440000px;}
.h30{height:57.779963px;}
.he{height:61.380000px;}
.hd{height:62.808000px;}
.h1f{height:62.808183px;}
.h9{height:63.300000px;}
.h8{height:68.310000px;}
.hc{height:69.630000px;}
.h4{height:82.290000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w7{width:5.190000px;}
.w6{width:5.248500px;}
.w5{width:5.250000px;}
.w22{width:5.503500px;}
.w11{width:5.505000px;}
.w20{width:5.700000px;}
.w3{width:6.495000px;}
.w21{width:6.496500px;}
.w4{width:6.885000px;}
.wb{width:7.335000px;}
.wf{width:7.336500px;}
.wd{width:7.393500px;}
.wc{width:7.395000px;}
.wa{width:8.863500px;}
.w23{width:8.865000px;}
.w2{width:8.970000px;}
.w26{width:10.185000px;}
.w8{width:10.198500px;}
.w9{width:10.200000px;}
.w1f{width:11.085000px;}
.w10{width:11.790000px;}
.w1c{width:12.090000px;}
.w24{width:12.735000px;}
.w25{width:12.736500px;}
.w1e{width:18.885000px;}
.w16{width:21.750000px;}
.we{width:37.861499px;}
.w17{width:41.099999px;}
.w13{width:42.166500px;}
.w12{width:47.581500px;}
.w1d{width:49.485003px;}
.w18{width:52.125000px;}
.w19{width:59.446500px;}
.w14{width:68.730000px;}
.w1a{width:80.264997px;}
.w15{width:80.745003px;}
.w27{width:100.423496px;}
.w1b{width:100.424995px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x49{left:-1.056587px;}
.x0{left:0.000000px;}
.x5{left:1.500447px;}
.x39{left:30.079948px;}
.x5b{left:33.878998px;}
.x50{left:39.799496px;}
.x2{left:76.535402px;}
.x3{left:80.787449px;}
.x7e{left:84.875999px;}
.x7{left:93.551241px;}
.x7f{left:97.610400px;}
.x4b{left:100.938297px;}
.x9f{left:102.047402px;}
.x38{left:105.559650px;}
.x51{left:109.534504px;}
.x8d{left:112.536003px;}
.x6d{left:115.699505px;}
.x6e{left:122.194645px;}
.x26{left:125.087997px;}
.x1c{left:127.083000px;}
.x8e{left:128.350204px;}
.x22{left:130.287003px;}
.x1d{left:132.273445px;}
.x4{left:133.416000px;}
.x23{left:135.476704px;}
.x2b{left:137.556747px;}
.x6{left:142.386452px;}
.x5f{left:147.944996px;}
.x57{left:150.619045px;}
.x52{left:151.775402px;}
.x5d{left:160.036503px;}
.x58{left:161.855700px;}
.x3c{left:164.390400px;}
.x5a{left:165.874500px;}
.x60{left:166.905304px;}
.x59{left:169.055397px;}
.x16{left:170.633995px;}
.x5e{left:172.200153px;}
.x17{left:177.519000px;}
.x2e{left:181.028995px;}
.x18{left:183.354000px;}
.x4f{left:184.750500px;}
.x2f{left:188.364304px;}
.x19{left:189.848854px;}
.x8{left:191.698505px;}
.x90{left:194.801559px;}
.x9{left:198.193497px;}
.x37{left:206.493599px;}
.x5c{left:210.035408px;}
.x53{left:213.343208px;}
.x56{left:218.464508px;}
.x82{left:219.631508px;}
.x30{left:220.785004px;}
.x83{left:225.331810px;}
.x31{left:228.178802px;}
.x1e{left:230.185500px;}
.x20{left:233.837997px;}
.x91{left:237.243004px;}
.x1f{left:240.385208px;}
.x44{left:242.896500px;}
.x21{left:244.038002px;}
.x45{left:250.230606px;}
.x2c{left:251.563499px;}
.x88{left:255.506996px;}
.x2d{left:258.958054px;}
.x89{left:260.756104px;}
.x72{left:272.944496px;}
.x73{left:279.828758px;}
.x98{left:282.399010px;}
.x92{left:285.971100px;}
.x46{left:287.084999px;}
.x61{left:288.648010px;}
.x8f{left:292.910706px;}
.x47{left:293.969994px;}
.x62{left:299.732391px;}
.x9d{left:303.361496px;}
.x9e{left:309.060745px;}
.x42{left:310.970993px;}
.x79{left:312.153008px;}
.x43{left:318.366302px;}
.x48{left:321.644989px;}
.x3f{left:324.649498px;}
.x6b{left:327.044998px;}
.x80{left:328.220993px;}
.x40{left:332.043755px;}
.x4a{left:333.434395px;}
.x6f{left:340.961861px;}
.x81{left:347.622002px;}
.x93{left:352.090508px;}
.x94{left:358.585648px;}
.x8a{left:369.556503px;}
.x4c{left:373.320007px;}
.x8b{left:374.746948px;}
.xa{left:380.726990px;}
.x29{left:384.472504px;}
.x99{left:385.501511px;}
.xb{left:387.222153px;}
.x67{left:389.251511px;}
.x9a{left:391.997269px;}
.x2a{left:393.336456px;}
.x32{left:394.489197px;}
.x68{left:395.747406px;}
.x4e{left:399.496948px;}
.x76{left:406.167023px;}
.x77{left:411.865952px;}
.x4d{left:416.910004px;}
.x1a{left:418.271988px;}
.x9b{left:419.314499px;}
.x69{left:421.210510px;}
.x1b{left:423.461700px;}
.x6c{left:424.733231px;}
.x9c{left:426.199631px;}
.x6a{left:428.095642px;}
.x27{left:432.613495px;}
.x33{left:435.352478px;}
.x70{left:439.259995px;}
.x28{left:441.477448px;}
.x34{left:442.746918px;}
.x71{left:446.145172px;}
.x41{left:449.855118px;}
.x54{left:452.144989px;}
.x7a{left:455.284515px;}
.x65{left:457.117813px;}
.x66{left:458.267258px;}
.x3d{left:460.141479px;}
.x7b{left:462.169785px;}
.x3e{left:467.026520px;}
.xc{left:472.236008px;}
.x55{left:473.969833px;}
.xd{left:479.121002px;}
.x1{left:481.537811px;}
.xe{left:486.257996px;}
.x74{left:488.422485px;}
.x8c{left:490.359009px;}
.xf{left:491.507996px;}
.x75{left:493.927780px;}
.x63{left:496.740005px;}
.x64{left:503.236221px;}
.x3a{left:504.241516px;}
.x3b{left:510.736221px;}
.x84{left:513.055481px;}
.x96{left:518.166000px;}
.x85{left:523.240219px;}
.x97{left:525.050858px;}
.x7c{left:529.355988px;}
.x10{left:533.177994px;}
.x11{left:538.427856px;}
.x7d{left:542.090378px;}
.x87{left:545.191498px;}
.x24{left:554.568008px;}
.x12{left:556.757996px;}
.x25{left:559.757721px;}
.x13{left:562.007538px;}
.x86{left:566.334000px;}
.x14{left:569.144989px;}
.x35{left:570.810013px;}
.x15{left:574.394714px;}
.x95{left:575.634018px;}
.x78{left:577.013992px;}
.x36{left:578.144714px;}
@media print{
.v6{vertical-align:-21.333333pt;}
.v2{vertical-align:-17.066650pt;}
.v4{vertical-align:-13.343424pt;}
.v3{vertical-align:-3.401693pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.673503pt;}
.v1{vertical-align:21.333333pt;}
.ls2b{letter-spacing:-2.346667pt;}
.ls34{letter-spacing:-1.973333pt;}
.ls4{letter-spacing:-1.877333pt;}
.ls37{letter-spacing:-1.749333pt;}
.ls2c{letter-spacing:-1.578667pt;}
.ls2f{letter-spacing:-1.120000pt;}
.ls35{letter-spacing:-1.066667pt;}
.ls30{letter-spacing:-0.896000pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls28{letter-spacing:-0.037333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.014086pt;}
.ls21{letter-spacing:0.014653pt;}
.lsb{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.170659pt;}
.ls15{letter-spacing:0.186667pt;}
.ls1f{letter-spacing:0.213328pt;}
.ls7{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.325319pt;}
.ls17{letter-spacing:0.373311pt;}
.ls8{letter-spacing:0.373333pt;}
.ls36{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.533333pt;}
.ls23{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.693333pt;}
.ls26{letter-spacing:0.773333pt;}
.ls18{letter-spacing:0.800000pt;}
.ls27{letter-spacing:0.853333pt;}
.ls19{letter-spacing:1.610667pt;}
.ls3{letter-spacing:1.621333pt;}
.ls2{letter-spacing:1.664000pt;}
.ls2a{letter-spacing:2.027173pt;}
.ls6{letter-spacing:2.080520pt;}
.ls0{letter-spacing:2.133333pt;}
.ls16{letter-spacing:2.453947pt;}
.ls24{letter-spacing:2.475692pt;}
.ls22{letter-spacing:2.640815pt;}
.ls33{letter-spacing:2.641381pt;}
.ls9{letter-spacing:2.880720pt;}
.ls2e{letter-spacing:4.053333pt;}
.ls5{letter-spacing:4.107693pt;}
.ls2d{letter-spacing:5.067933pt;}
.ls31{letter-spacing:5.173333pt;}
.lsd{letter-spacing:8.855546pt;}
.lsa{letter-spacing:8.908893pt;}
.ls13{letter-spacing:14.830373pt;}
.ls12{letter-spacing:17.284319pt;}
.lsc{letter-spacing:17.711093pt;}
.lse{letter-spacing:17.764439pt;}
.ws9f{word-spacing:-14.883719pt;}
.ws127{word-spacing:-14.666667pt;}
.wsb6{word-spacing:-13.653333pt;}
.wsa0{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.333333pt;}
.wsf2{word-spacing:-12.213333pt;}
.ws25{word-spacing:-11.093333pt;}
.wsc0{word-spacing:-10.986667pt;}
.ws1{word-spacing:-10.666667pt;}
.ws136{word-spacing:-9.600000pt;}
.ws9e{word-spacing:-9.520000pt;}
.ws3{word-spacing:-9.333333pt;}
.wsb3{word-spacing:-9.296000pt;}
.wse9{word-spacing:-9.088000pt;}
.ws13d{word-spacing:-8.917333pt;}
.ws33{word-spacing:-8.789333pt;}
.ws4{word-spacing:-7.466667pt;}
.ws144{word-spacing:-1.792000pt;}
.wsa7{word-spacing:-1.333333pt;}
.wsb8{word-spacing:-1.280000pt;}
.ws10a{word-spacing:-1.226667pt;}
.wsbb{word-spacing:-1.013333pt;}
.wsb7{word-spacing:-0.960000pt;}
.wsb4{word-spacing:-0.906667pt;}
.wsab{word-spacing:-0.800000pt;}
.wsec{word-spacing:-0.746667pt;}
.wsa9{word-spacing:-0.640000pt;}
.ws64{word-spacing:-0.586667pt;}
.wsa3{word-spacing:-0.533333pt;}
.ws95{word-spacing:-0.480000pt;}
.wsaa{word-spacing:-0.426667pt;}
.ws5d{word-spacing:-0.373333pt;}
.ws6{word-spacing:-0.320000pt;}
.wsb5{word-spacing:-0.266667pt;}
.ws4a{word-spacing:-0.213333pt;}
.wsfe{word-spacing:-0.160000pt;}
.ws92{word-spacing:-0.106667pt;}
.ws12{word-spacing:-0.053347pt;}
.ws84{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws29{word-spacing:0.042667pt;}
.ws6e{word-spacing:0.053333pt;}
.ws12d{word-spacing:0.085333pt;}
.ws98{word-spacing:0.106667pt;}
.ws11b{word-spacing:0.128000pt;}
.ws17{word-spacing:0.160000pt;}
.wsd2{word-spacing:0.170667pt;}
.wsb0{word-spacing:0.213333pt;}
.ws11f{word-spacing:0.256000pt;}
.ws99{word-spacing:0.266667pt;}
.ws68{word-spacing:0.320000pt;}
.wsbf{word-spacing:0.341333pt;}
.ws119{word-spacing:0.373333pt;}
.ws13e{word-spacing:0.384000pt;}
.ws4f{word-spacing:0.426667pt;}
.ws8a{word-spacing:0.469333pt;}
.ws80{word-spacing:0.480000pt;}
.wsc8{word-spacing:0.512000pt;}
.ws82{word-spacing:0.533333pt;}
.ws6a{word-spacing:0.554667pt;}
.ws75{word-spacing:0.586667pt;}
.ws28{word-spacing:0.597333pt;}
.wsfc{word-spacing:0.640000pt;}
.wsae{word-spacing:0.693333pt;}
.wsd7{word-spacing:0.725333pt;}
.wsc1{word-spacing:0.746667pt;}
.ws59{word-spacing:0.800000pt;}
.ws56{word-spacing:0.810667pt;}
.ws90{word-spacing:0.853333pt;}
.ws87{word-spacing:0.896000pt;}
.wsad{word-spacing:0.906667pt;}
.wse7{word-spacing:0.938667pt;}
.wsac{word-spacing:0.960000pt;}
.ws140{word-spacing:0.981333pt;}
.ws44{word-spacing:1.013333pt;}
.wsbe{word-spacing:1.024000pt;}
.wsa2{word-spacing:1.066667pt;}
.ws115{word-spacing:1.109333pt;}
.wsdf{word-spacing:1.120000pt;}
.wsd1{word-spacing:1.152000pt;}
.ws61{word-spacing:1.173333pt;}
.wsf6{word-spacing:1.194667pt;}
.ws1b{word-spacing:1.226667pt;}
.ws31{word-spacing:1.280000pt;}
.ws109{word-spacing:1.322667pt;}
.wsa8{word-spacing:1.333333pt;}
.ws8e{word-spacing:1.365333pt;}
.wsbc{word-spacing:1.386667pt;}
.ws2f{word-spacing:1.408000pt;}
.ws93{word-spacing:1.440000pt;}
.ws43{word-spacing:1.493333pt;}
.ws53{word-spacing:1.536000pt;}
.ws100{word-spacing:1.546667pt;}
.ws134{word-spacing:1.578667pt;}
.ws62{word-spacing:1.600000pt;}
.wsef{word-spacing:1.621333pt;}
.ws22{word-spacing:1.653333pt;}
.wsb1{word-spacing:1.664000pt;}
.ws5a{word-spacing:1.706667pt;}
.ws108{word-spacing:1.749333pt;}
.ws11c{word-spacing:1.792000pt;}
.wsdd{word-spacing:1.813333pt;}
.ws2b{word-spacing:1.834667pt;}
.wsb9{word-spacing:1.866667pt;}
.wsd0{word-spacing:1.877333pt;}
.ws8f{word-spacing:1.920000pt;}
.wsf9{word-spacing:1.962667pt;}
.ws7a{word-spacing:1.973333pt;}
.ws106{word-spacing:2.005333pt;}
.ws91{word-spacing:2.026667pt;}
.ws54{word-spacing:2.048000pt;}
.wsaf{word-spacing:2.080000pt;}
.ws12e{word-spacing:2.090667pt;}
.ws83{word-spacing:2.133333pt;}
.ws4b{word-spacing:2.186667pt;}
.ws131{word-spacing:2.218667pt;}
.ws67{word-spacing:2.240000pt;}
.wscf{word-spacing:2.293333pt;}
.wsbd{word-spacing:2.304000pt;}
.wsf{word-spacing:2.346667pt;}
.ws107{word-spacing:2.389333pt;}
.ws39{word-spacing:2.400000pt;}
.wse5{word-spacing:2.432000pt;}
.wsc4{word-spacing:2.453333pt;}
.ws7e{word-spacing:2.474667pt;}
.ws5b{word-spacing:2.506667pt;}
.ws125{word-spacing:2.517333pt;}
.ws1a{word-spacing:2.560000pt;}
.ws11d{word-spacing:2.602667pt;}
.ws7b{word-spacing:2.613333pt;}
.ws8d{word-spacing:2.645333pt;}
.ws60{word-spacing:2.666667pt;}
.ws133{word-spacing:2.688000pt;}
.wsee{word-spacing:2.720000pt;}
.ws52{word-spacing:2.773333pt;}
.ws12c{word-spacing:2.816000pt;}
.ws9d{word-spacing:2.826667pt;}
.wsfa{word-spacing:2.858667pt;}
.wsc5{word-spacing:2.880000pt;}
.ws135{word-spacing:2.901333pt;}
.ws10{word-spacing:2.933333pt;}
.wsf8{word-spacing:2.944000pt;}
.wsd{word-spacing:2.986667pt;}
.wsf1{word-spacing:3.029333pt;}
.ws65{word-spacing:3.040000pt;}
.wse8{word-spacing:3.072000pt;}
.wse1{word-spacing:3.093333pt;}
.ws104{word-spacing:3.146667pt;}
.ws2c{word-spacing:3.157333pt;}
.ws7{word-spacing:3.200000pt;}
.wsf7{word-spacing:3.242667pt;}
.wscd{word-spacing:3.253333pt;}
.ws11e{word-spacing:3.285333pt;}
.ws9b{word-spacing:3.306667pt;}
.ws50{word-spacing:3.328000pt;}
.ws128{word-spacing:3.360000pt;}
.ws13a{word-spacing:3.370667pt;}
.ws6b{word-spacing:3.413333pt;}
.ws18{word-spacing:3.466667pt;}
.ws7c{word-spacing:3.520000pt;}
.ws66{word-spacing:3.573333pt;}
.ws96{word-spacing:3.626667pt;}
.ws1d{word-spacing:3.680000pt;}
.ws34{word-spacing:3.733333pt;}
.ws10b{word-spacing:3.786667pt;}
.ws139{word-spacing:3.797333pt;}
.ws5c{word-spacing:3.840000pt;}
.ws130{word-spacing:3.882667pt;}
.wsa{word-spacing:3.893333pt;}
.ws123{word-spacing:3.946667pt;}
.ws55{word-spacing:3.968000pt;}
.wsfd{word-spacing:4.000000pt;}
.ws89{word-spacing:4.010667pt;}
.ws4d{word-spacing:4.053333pt;}
.ws143{word-spacing:4.096000pt;}
.ws10c{word-spacing:4.106667pt;}
.ws12f{word-spacing:4.138667pt;}
.ws71{word-spacing:4.213333pt;}
.ws4e{word-spacing:4.266667pt;}
.wsa4{word-spacing:4.320000pt;}
.wse3{word-spacing:4.352000pt;}
.ws116{word-spacing:4.373333pt;}
.ws129{word-spacing:4.426667pt;}
.wsf0{word-spacing:4.437333pt;}
.ws72{word-spacing:4.480000pt;}
.wscc{word-spacing:4.533333pt;}
.wse0{word-spacing:4.586667pt;}
.ws69{word-spacing:4.640000pt;}
.ws20{word-spacing:4.693333pt;}
.ws132{word-spacing:4.736000pt;}
.ws124{word-spacing:4.746667pt;}
.ws7d{word-spacing:4.778667pt;}
.ws23{word-spacing:4.800000pt;}
.ws113{word-spacing:4.821333pt;}
.ws19{word-spacing:4.853333pt;}
.wsd9{word-spacing:4.864000pt;}
.ws101{word-spacing:4.906667pt;}
.ws110{word-spacing:4.960000pt;}
.wse4{word-spacing:4.992000pt;}
.ws48{word-spacing:5.013333pt;}
.ws42{word-spacing:5.066667pt;}
.ws8{word-spacing:5.120000pt;}
.ws13f{word-spacing:5.162667pt;}
.ws36{word-spacing:5.173333pt;}
.wsc9{word-spacing:5.205333pt;}
.ws6c{word-spacing:5.226667pt;}
.wsba{word-spacing:5.280000pt;}
.wsd5{word-spacing:5.333333pt;}
.ws58{word-spacing:5.386667pt;}
.ws32{word-spacing:5.418667pt;}
.wse{word-spacing:5.440000pt;}
.ws1f{word-spacing:5.493333pt;}
.wse2{word-spacing:5.504000pt;}
.wsed{word-spacing:5.546667pt;}
.ws3a{word-spacing:5.600000pt;}
.wsff{word-spacing:5.653333pt;}
.ws2a{word-spacing:5.674667pt;}
.ws86{word-spacing:5.706667pt;}
.wsc7{word-spacing:5.760000pt;}
.ws15{word-spacing:5.813333pt;}
.wsb{word-spacing:5.866667pt;}
.wsdc{word-spacing:5.920000pt;}
.ws141{word-spacing:5.930667pt;}
.wscb{word-spacing:5.973333pt;}
.wse6{word-spacing:6.016000pt;}
.ws3e{word-spacing:6.026667pt;}
.ws9{word-spacing:6.080000pt;}
.wsd6{word-spacing:6.133333pt;}
.ws8c{word-spacing:6.144000pt;}
.ws73{word-spacing:6.186667pt;}
.wsce{word-spacing:6.240000pt;}
.ws88{word-spacing:6.272000pt;}
.wsea{word-spacing:6.293333pt;}
.ws114{word-spacing:6.314667pt;}
.ws63{word-spacing:6.346667pt;}
.ws38{word-spacing:6.400000pt;}
.ws47{word-spacing:6.453333pt;}
.wsa1{word-spacing:6.506667pt;}
.ws4c{word-spacing:6.560000pt;}
.ws6f{word-spacing:6.613333pt;}
.ws13c{word-spacing:6.656000pt;}
.wsf4{word-spacing:6.666667pt;}
.wsd4{word-spacing:6.720000pt;}
.ws41{word-spacing:6.773333pt;}
.wsd3{word-spacing:6.826667pt;}
.wsa5{word-spacing:6.880000pt;}
.ws2e{word-spacing:6.912000pt;}
.ws1e{word-spacing:6.933333pt;}
.ws142{word-spacing:6.954667pt;}
.ws3b{word-spacing:6.986667pt;}
.ws76{word-spacing:7.040000pt;}
.ws5f{word-spacing:7.093333pt;}
.ws7f{word-spacing:7.146667pt;}
.ws9c{word-spacing:7.200000pt;}
.ws37{word-spacing:7.253333pt;}
.ws3f{word-spacing:7.306667pt;}
.wsc{word-spacing:7.413333pt;}
.ws3c{word-spacing:7.466667pt;}
.ws94{word-spacing:7.520000pt;}
.wsf3{word-spacing:7.573333pt;}
.ws112{word-spacing:7.626667pt;}
.ws40{word-spacing:7.680000pt;}
.ws102{word-spacing:7.733333pt;}
.wsdb{word-spacing:7.786667pt;}
.ws30{word-spacing:7.808000pt;}
.ws70{word-spacing:7.840000pt;}
.ws8b{word-spacing:7.893333pt;}
.ws85{word-spacing:7.946667pt;}
.wsca{word-spacing:8.053333pt;}
.ws6d{word-spacing:8.160000pt;}
.ws118{word-spacing:8.213333pt;}
.wsc3{word-spacing:8.266667pt;}
.ws51{word-spacing:8.320000pt;}
.ws120{word-spacing:8.448000pt;}
.ws126{word-spacing:8.490667pt;}
.ws9a{word-spacing:8.533333pt;}
.ws11a{word-spacing:8.640000pt;}
.wsd8{word-spacing:8.832000pt;}
.wsb2{word-spacing:8.834208pt;}
.ws3d{word-spacing:8.906667pt;}
.ws122{word-spacing:8.960000pt;}
.ws13b{word-spacing:9.002667pt;}
.ws5e{word-spacing:9.120000pt;}
.wsc2{word-spacing:9.173333pt;}
.ws10f{word-spacing:9.226667pt;}
.wsde{word-spacing:9.280000pt;}
.ws97{word-spacing:9.333333pt;}
.ws111{word-spacing:9.440000pt;}
.wsc6{word-spacing:9.493333pt;}
.wsa6{word-spacing:9.866667pt;}
.wseb{word-spacing:9.920000pt;}
.ws117{word-spacing:10.026667pt;}
.wsda{word-spacing:10.080000pt;}
.ws35{word-spacing:10.240000pt;}
.ws138{word-spacing:10.282667pt;}
.ws10d{word-spacing:10.453333pt;}
.ws137{word-spacing:10.624000pt;}
.ws14{word-spacing:10.720000pt;}
.ws103{word-spacing:10.826667pt;}
.ws12b{word-spacing:10.986667pt;}
.ws79{word-spacing:11.093333pt;}
.ws26{word-spacing:11.146667pt;}
.ws57{word-spacing:11.200000pt;}
.ws121{word-spacing:11.253333pt;}
.ws21{word-spacing:11.626667pt;}
.ws27{word-spacing:11.840000pt;}
.ws12a{word-spacing:12.000000pt;}
.ws24{word-spacing:12.053333pt;}
.ws1c{word-spacing:12.373333pt;}
.ws2d{word-spacing:12.416000pt;}
.ws49{word-spacing:12.693333pt;}
.ws16{word-spacing:13.226667pt;}
.ws77{word-spacing:13.280000pt;}
.wsfb{word-spacing:13.653333pt;}
.ws46{word-spacing:13.760000pt;}
.ws105{word-spacing:13.813333pt;}
.ws10e{word-spacing:14.080000pt;}
.wsf5{word-spacing:14.133333pt;}
.ws78{word-spacing:14.293333pt;}
.ws13{word-spacing:14.666667pt;}
.ws74{word-spacing:14.880000pt;}
.ws45{word-spacing:16.106667pt;}
.ws81{word-spacing:42.666667pt;}
.ws11{word-spacing:64.938667pt;}
._19{margin-left:-55.333340pt;}
._a{margin-left:-21.605399pt;}
._23{margin-left:-20.213333pt;}
._b{margin-left:-18.671333pt;}
._e{margin-left:-17.280000pt;}
._13{margin-left:-14.933333pt;}
._4{margin-left:-13.866667pt;}
._1a{margin-left:-11.626667pt;}
._1c{margin-left:-9.813333pt;}
._1d{margin-left:-8.874667pt;}
._1b{margin-left:-4.266667pt;}
._0{margin-left:-3.200000pt;}
._9{margin-left:-2.053333pt;}
._1{margin-left:-1.109333pt;}
._3{width:1.269333pt;}
._f{width:2.858659pt;}
._15{width:3.963733pt;}
._d{width:4.991992pt;}
._17{width:5.887992pt;}
._12{width:7.013333pt;}
._18{width:8.191992pt;}
._c{width:10.069325pt;}
._16{width:13.328000pt;}
._1f{width:14.688008pt;}
._14{width:16.490667pt;}
._5{width:19.840000pt;}
._26{width:28.165333pt;}
._1e{width:29.866667pt;}
._11{width:32.042657pt;}
._27{width:33.280000pt;}
._22{width:36.453333pt;}
._24{width:37.733333pt;}
._2{width:39.776000pt;}
._20{width:42.640000pt;}
._6{width:50.005325pt;}
._25{width:56.666667pt;}
._8{width:74.666667pt;}
._21{width:439.403805pt;}
._10{width:460.737138pt;}
._7{width:1507.626628pt;}
.fs5{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:50.133331pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:53.346664pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:69.339732pt;}
.ye8{bottom:-0.761068pt;}
.y14b{bottom:-0.759766pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:0.039734pt;}
.y12c{bottom:0.039754pt;}
.y4b{bottom:0.172933pt;}
.y2e{bottom:0.173055pt;}
.y1a4{bottom:0.173096pt;}
.y119{bottom:0.173339pt;}
.y80{bottom:0.174266pt;}
.y20f{bottom:0.174276pt;}
.ya3{bottom:0.174398pt;}
.y9{bottom:0.184933pt;}
.y8{bottom:0.999674pt;}
.y12f{bottom:2.039429pt;}
.y134{bottom:2.040791pt;}
.y129{bottom:2.306274pt;}
.y13c{bottom:2.307617pt;}
.yaa{bottom:2.439575pt;}
.yb5{bottom:2.439596pt;}
.y114{bottom:2.439860pt;}
.ya5{bottom:2.440918pt;}
.y14d{bottom:3.372803pt;}
.y1ef{bottom:3.374268pt;}
.y1{bottom:45.118398pt;}
.y146{bottom:79.834666pt;}
.y147{bottom:80.002268pt;}
.y53{bottom:80.007602pt;}
.y145{bottom:80.012935pt;}
.yc4{bottom:80.018268pt;}
.y172{bottom:80.023602pt;}
.y1ff{bottom:80.708944pt;}
.y106{bottom:84.268931pt;}
.y1d{bottom:85.151998pt;}
.y243{bottom:88.042236pt;}
.y25b{bottom:88.063602pt;}
.y8c{bottom:92.501333pt;}
.y8d{bottom:92.668935pt;}
.y144{bottom:92.674268pt;}
.y8b{bottom:92.679602pt;}
.y171{bottom:92.684935pt;}
.y1fe{bottom:96.708944pt;}
.y52{bottom:96.935598pt;}
.y28e{bottom:100.020927pt;}
.y105{bottom:100.268931pt;}
.y25a{bottom:100.724936pt;}
.y242{bottom:104.042236pt;}
.y203{bottom:105.167999pt;}
.y204{bottom:105.335602pt;}
.y8a{bottom:105.340935pt;}
.y170{bottom:105.346268pt;}
.y1c{bottom:106.357333pt;}
.y51{bottom:108.674268pt;}
.y1b6{bottom:108.679602pt;}
.y21d{bottom:108.700925pt;}
.y15a{bottom:108.706258pt;}
.y143{bottom:109.602264pt;}
.y104{bottom:112.018268pt;}
.y28d{bottom:112.682261pt;}
.y1fd{bottom:112.708944pt;}
.y259{bottom:113.386269pt;}
.y88{bottom:117.834666pt;}
.y89{bottom:118.002268pt;}
.y16f{bottom:118.007602pt;}
.y87{bottom:118.018268pt;}
.y1b{bottom:119.018667pt;}
.y241{bottom:120.042236pt;}
.y1a2{bottom:121.340935pt;}
.y202{bottom:121.346268pt;}
.y1e8{bottom:121.351602pt;}
.y21c{bottom:121.362258pt;}
.y159{bottom:121.367592pt;}
.yc3{bottom:122.268931pt;}
.y103{bottom:124.679602pt;}
.y28c{bottom:125.343594pt;}
.y50{bottom:125.602264pt;}
.y258{bottom:126.047602pt;}
.y1fc{bottom:128.708944pt;}
.y86{bottom:130.679602pt;}
.y1d3{bottom:133.834666pt;}
.y1d4{bottom:134.002268pt;}
.y188{bottom:134.007602pt;}
.y1e7{bottom:134.012935pt;}
.y21b{bottom:134.023592pt;}
.y158{bottom:134.028925pt;}
.y16e{bottom:134.935598pt;}
.y240{bottom:136.042236pt;}
.y4f{bottom:137.340935pt;}
.y28b{bottom:138.004927pt;}
.y1a1{bottom:138.268931pt;}
.y257{bottom:138.708936pt;}
.y1ce{bottom:141.602264pt;}
.y85{bottom:143.340935pt;}
.y1fb{bottom:144.708944pt;}
.y194{bottom:146.674268pt;}
.y21a{bottom:146.684925pt;}
.y157{bottom:146.690258pt;}
.y101{bottom:149.834666pt;}
.y102{bottom:150.002268pt;}
.y1a0{bottom:150.007602pt;}
.y100{bottom:150.012925pt;}
.y28a{bottom:150.666261pt;}
.y16d{bottom:150.935598pt;}
.y256{bottom:151.370269pt;}
.y23f{bottom:152.042236pt;}
.y1cd{bottom:153.340935pt;}
.y4e{bottom:154.268931pt;}
.y2be{bottom:155.562236pt;}
.y83{bottom:155.834666pt;}
.y84{bottom:156.002268pt;}
.y82{bottom:156.007602pt;}
.y219{bottom:159.346258pt;}
.y156{bottom:159.351592pt;}
.y142{bottom:160.042257pt;}
.yc2{bottom:160.708923pt;}
.y1fa{bottom:160.708944pt;}
.yff{bottom:162.674258pt;}
.y289{bottom:163.327594pt;}
.y193{bottom:163.602264pt;}
.y4d{bottom:166.007592pt;}
.y19f{bottom:166.935598pt;}
.y23e{bottom:168.042236pt;}
.y2bd{bottom:168.223570pt;}
.y7f{bottom:168.500000pt;}
.y81{bottom:168.668935pt;}
.y7e{bottom:168.674258pt;}
.y1cc{bottom:170.268931pt;}
.y218{bottom:172.007592pt;}
.y155{bottom:172.012925pt;}
.yfd{bottom:175.168009pt;}
.yfe{bottom:175.335592pt;}
.yfc{bottom:175.351592pt;}
.y288{bottom:175.988927pt;}
.y141{bottom:176.042257pt;}
.y255{bottom:176.682269pt;}
.yc1{bottom:176.708923pt;}
.y1f9{bottom:176.708944pt;}
.y11f{bottom:177.066671pt;}
.y4a{bottom:178.501343pt;}
.y4c{bottom:178.668925pt;}
.y19e{bottom:178.674258pt;}
.y49{bottom:178.679592pt;}
.y192{bottom:179.602275pt;}
.y7c{bottom:181.168009pt;}
.y7d{bottom:181.335592pt;}
.y7b{bottom:181.340925pt;}
.yd7{bottom:182.935608pt;}
.y23d{bottom:184.042236pt;}
.y154{bottom:184.674258pt;}
.y1cb{bottom:186.268941pt;}
.yfb{bottom:188.012925pt;}
.y287{bottom:188.650261pt;}
.y217{bottom:188.935608pt;}
.y254{bottom:189.343602pt;}
.y16c{bottom:189.708944pt;}
.y140{bottom:189.737325pt;}
.y48{bottom:191.340925pt;}
.y13f{bottom:192.042257pt;}
.yc0{bottom:192.708923pt;}
.y1f8{bottom:192.708944pt;}
.y11e{bottom:193.066671pt;}
.y79{bottom:193.834676pt;}
.y7a{bottom:194.002258pt;}
.y78{bottom:194.007592pt;}
.y1bd{bottom:194.501343pt;}
.y1bc{bottom:194.668925pt;}
.y2bc{bottom:194.964903pt;}
.y191{bottom:195.602275pt;}
.y1ca{bottom:198.007592pt;}
.y23c{bottom:200.042236pt;}
.yfa{bottom:200.674258pt;}
.y286{bottom:201.311594pt;}
.y153{bottom:201.602275pt;}
.y253{bottom:202.004936pt;}
.y16b{bottom:205.708944pt;}
.y1ba{bottom:207.168009pt;}
.y1bb{bottom:207.335592pt;}
.y19d{bottom:207.340925pt;}
.y2bb{bottom:207.626236pt;}
.y13e{bottom:208.042257pt;}
.y47{bottom:208.268941pt;}
.ybf{bottom:208.708923pt;}
.y1f7{bottom:208.708944pt;}
.y11d{bottom:209.066671pt;}
.y77{bottom:210.935608pt;}
.y215{bottom:213.168009pt;}
.y216{bottom:213.335592pt;}
.y214{bottom:213.356925pt;}
.y285{bottom:213.972927pt;}
.y252{bottom:214.666269pt;}
.y1c9{bottom:214.935608pt;}
.y23b{bottom:216.042236pt;}
.yf9{bottom:217.602275pt;}
.y1b8{bottom:219.834676pt;}
.y1b9{bottom:220.002258pt;}
.y1b7{bottom:220.007602pt;}
.y46{bottom:220.023592pt;}
.y2ba{bottom:220.287570pt;}
.y16a{bottom:221.708944pt;}
.y187{bottom:222.708944pt;}
.y13d{bottom:224.042257pt;}
.y19c{bottom:224.268941pt;}
.ybe{bottom:224.708923pt;}
.y1f6{bottom:224.708944pt;}
.y11c{bottom:225.066671pt;}
.y213{bottom:226.018258pt;}
.y284{bottom:226.634261pt;}
.y251{bottom:227.327602pt;}
.y1c8{bottom:230.935608pt;}
.y23a{bottom:232.042236pt;}
.y45{bottom:232.684925pt;}
.y2b9{bottom:232.948903pt;}
.yf8{bottom:233.602275pt;}
.y1be{bottom:236.002258pt;}
.y19b{bottom:236.007592pt;}
.y169{bottom:237.708944pt;}
.y13b{bottom:237.737325pt;}
.y212{bottom:238.679592pt;}
.y190{bottom:238.708923pt;}
.y186{bottom:238.708944pt;}
.y283{bottom:239.295594pt;}
.y250{bottom:239.988936pt;}
.y13a{bottom:240.042257pt;}
.ybd{bottom:240.708923pt;}
.y1f5{bottom:240.708944pt;}
.y11b{bottom:241.066671pt;}
.y44{bottom:245.346258pt;}
.yf7{bottom:245.362258pt;}
.y2b8{bottom:245.610236pt;}
.y239{bottom:248.042236pt;}
.y211{bottom:251.340925pt;}
.y282{bottom:251.956927pt;}
.y24f{bottom:252.650269pt;}
.y19a{bottom:252.935608pt;}
.y168{bottom:253.708944pt;}
.y18f{bottom:254.539998pt;}
.y18e{bottom:254.708923pt;}
.y185{bottom:254.708944pt;}
.y139{bottom:256.042257pt;}
.y76{bottom:256.426514pt;}
.ybc{bottom:256.708923pt;}
.y1f4{bottom:256.708944pt;}
.y11a{bottom:257.066671pt;}
.y43{bottom:258.007592pt;}
.yf6{bottom:258.023592pt;}
.y2b7{bottom:258.271570pt;}
.y210{bottom:264.002258pt;}
.y238{bottom:264.042236pt;}
.y281{bottom:264.618261pt;}
.y167{bottom:269.708944pt;}
.ybb{bottom:270.260010pt;}
.yf5{bottom:270.684925pt;}
.y18d{bottom:270.708923pt;}
.y184{bottom:270.708944pt;}
.y2b6{bottom:270.932903pt;}
.y1c7{bottom:271.375590pt;}
.y136{bottom:272.004008pt;}
.y138{bottom:272.042257pt;}
.y75{bottom:272.426514pt;}
.y1e6{bottom:272.708923pt;}
.y1f3{bottom:272.708944pt;}
.y118{bottom:272.898661pt;}
.y42{bottom:274.935608pt;}
.y20e{bottom:276.500000pt;}
.y20d{bottom:276.674258pt;}
.y280{bottom:277.279594pt;}
.y24e{bottom:277.962269pt;}
.yd6{bottom:279.708944pt;}
.y237{bottom:280.042236pt;}
.yf4{bottom:283.346258pt;}
.y2b5{bottom:283.594236pt;}
.y166{bottom:285.708944pt;}
.y133{bottom:286.001343pt;}
.y41{bottom:286.679592pt;}
.y18c{bottom:286.708923pt;}
.y183{bottom:286.708944pt;}
.y1c6{bottom:287.208008pt;}
.y1c5{bottom:287.375590pt;}
.y135{bottom:288.042257pt;}
.y132{bottom:288.042277pt;}
.y74{bottom:288.426514pt;}
.yba{bottom:288.708923pt;}
.y1f2{bottom:288.708944pt;}
.y117{bottom:289.066671pt;}
.y27f{bottom:289.940927pt;}
.y24d{bottom:290.623602pt;}
.y20c{bottom:293.602275pt;}
.yd5{bottom:295.708944pt;}
.yf3{bottom:296.007592pt;}
.y236{bottom:296.042236pt;}
.y2b4{bottom:296.255570pt;}
.y40{bottom:299.340925pt;}
.y165{bottom:301.708944pt;}
.y27e{bottom:302.602261pt;}
.y115{bottom:302.618673pt;}
.y18b{bottom:302.708923pt;}
.y182{bottom:302.708944pt;}
.y1c3{bottom:303.208008pt;}
.y24c{bottom:303.284936pt;}
.y1c4{bottom:303.375590pt;}
.y1b5{bottom:303.375610pt;}
.y131{bottom:304.042277pt;}
.y73{bottom:304.426514pt;}
.yb9{bottom:304.541341pt;}
.y1e5{bottom:304.708923pt;}
.y1f1{bottom:304.708944pt;}
.y116{bottom:305.058533pt;}
.y2b3{bottom:308.916903pt;}
.yd4{bottom:311.708944pt;}
.y235{bottom:312.042236pt;}
.yf2{bottom:312.935608pt;}
.y27d{bottom:315.263594pt;}
.y24b{bottom:315.946269pt;}
.y3f{bottom:316.268941pt;}
.y164{bottom:317.708944pt;}
.yb7{bottom:318.260010pt;}
.y113{bottom:318.618673pt;}
.y18a{bottom:318.708923pt;}
.y181{bottom:318.708944pt;}
.y1b4{bottom:319.375610pt;}
.y199{bottom:320.042257pt;}
.y130{bottom:320.042277pt;}
.y72{bottom:320.426514pt;}
.yb8{bottom:320.700928pt;}
.y1e4{bottom:320.708923pt;}
.y1f0{bottom:320.708944pt;}
.y2b2{bottom:321.578236pt;}
.y27c{bottom:327.924927pt;}
.y234{bottom:328.042236pt;}
.y24a{bottom:328.607602pt;}
.y1a{bottom:331.211589pt;}
.y163{bottom:333.708944pt;}
.y2b1{bottom:334.239570pt;}
.yb4{bottom:334.261332pt;}
.y180{bottom:334.708944pt;}
.y1b3{bottom:335.375610pt;}
.yd3{bottom:336.042277pt;}
.y71{bottom:336.426514pt;}
.y1e3{bottom:336.541341pt;}
.y1e2{bottom:336.708903pt;}
.yb6{bottom:336.708923pt;}
.yb3{bottom:336.708944pt;}
.y112{bottom:337.066650pt;}
.y27b{bottom:340.586261pt;}
.y249{bottom:341.268936pt;}
.y233{bottom:344.042236pt;}
.y2b0{bottom:346.900903pt;}
.y12e{bottom:350.002686pt;}
.y1d2{bottom:350.539998pt;}
.y17f{bottom:350.708944pt;}
.y1b2{bottom:351.375610pt;}
.y1c2{bottom:351.874674pt;}
.yd2{bottom:352.042277pt;}
.y70{bottom:352.426514pt;}
.yb2{bottom:352.541341pt;}
.y1e1{bottom:352.708903pt;}
.yb1{bottom:352.708944pt;}
.y111{bottom:353.066650pt;}
.y27a{bottom:353.247594pt;}
.y248{bottom:353.930269pt;}
.y2af{bottom:359.562236pt;}
.y232{bottom:360.042236pt;}
.y19{bottom:363.878255pt;}
.y162{bottom:365.708944pt;}
.y279{bottom:365.908927pt;}
.yf1{bottom:366.042277pt;}
.y20b{bottom:366.541341pt;}
.y247{bottom:366.591602pt;}
.y17e{bottom:366.708944pt;}
.y1b1{bottom:367.375610pt;}
.y189{bottom:367.874674pt;}
.yd1{bottom:368.042277pt;}
.y6f{bottom:368.426514pt;}
.y198{bottom:368.539998pt;}
.y1e0{bottom:368.708903pt;}
.yb0{bottom:368.708944pt;}
.y110{bottom:369.066650pt;}
.y2ae{bottom:372.223570pt;}
.y231{bottom:376.042236pt;}
.y278{bottom:378.570261pt;}
.y246{bottom:379.252936pt;}
.y18{bottom:379.878255pt;}
.y161{bottom:381.541341pt;}
.y160{bottom:381.708944pt;}
.yf0{bottom:381.874674pt;}
.yef{bottom:382.042277pt;}
.y20a{bottom:382.541341pt;}
.y17d{bottom:382.708944pt;}
.y1b0{bottom:383.375610pt;}
.y3e{bottom:383.708944pt;}
.y12d{bottom:384.003988pt;}
.yd0{bottom:384.042277pt;}
.y6e{bottom:384.426514pt;}
.y1df{bottom:384.708903pt;}
.yaf{bottom:384.708944pt;}
.y2ad{bottom:384.884903pt;}
.y10f{bottom:385.066650pt;}
.y277{bottom:391.231594pt;}
.y245{bottom:391.914269pt;}
.y230{bottom:392.042236pt;}
.y17{bottom:395.878255pt;}
.y2ac{bottom:397.546236pt;}
.y17c{bottom:398.708944pt;}
.y1af{bottom:399.375610pt;}
.y3d{bottom:399.541341pt;}
.y3c{bottom:399.708944pt;}
.ycf{bottom:400.042277pt;}
.y6d{bottom:400.426514pt;}
.y1c1{bottom:400.541341pt;}
.y1de{bottom:400.708903pt;}
.yae{bottom:400.708944pt;}
.y10e{bottom:401.066650pt;}
.y276{bottom:403.892927pt;}
.y244{bottom:404.575602pt;}
.yee{bottom:406.206665pt;}
.yed{bottom:406.375610pt;}
.y22f{bottom:408.042236pt;}
.y2ab{bottom:410.207570pt;}
.y16{bottom:411.878255pt;}
.y1ee{bottom:413.324015pt;}
.y12a{bottom:413.738647pt;}
.yad{bottom:414.260010pt;}
.y17b{bottom:414.708944pt;}
.y1ae{bottom:415.375610pt;}
.y3b{bottom:415.541341pt;}
.y3a{bottom:415.708944pt;}
.y12b{bottom:416.003988pt;}
.yce{bottom:416.042277pt;}
.y6c{bottom:416.426514pt;}
.yac{bottom:416.539998pt;}
.y275{bottom:416.554261pt;}
.y1dd{bottom:416.708903pt;}
.yab{bottom:416.708944pt;}
.y10d{bottom:417.066650pt;}
.y1ed{bottom:417.508952pt;}
.yec{bottom:422.375610pt;}
.y2aa{bottom:422.868903pt;}
.y22e{bottom:424.042236pt;}
.y15{bottom:427.878255pt;}
.y274{bottom:429.215594pt;}
.ya9{bottom:430.261353pt;}
.y1eb{bottom:430.405314pt;}
.y209{bottom:430.541341pt;}
.y17a{bottom:430.708944pt;}
.y15f{bottom:430.874674pt;}
.y15e{bottom:431.042277pt;}
.y1ad{bottom:431.375610pt;}
.y39{bottom:431.708944pt;}
.ycd{bottom:432.042277pt;}
.y6b{bottom:432.426514pt;}
.ya8{bottom:432.541341pt;}
.y1dc{bottom:432.708903pt;}
.ya7{bottom:432.708944pt;}
.y1ec{bottom:432.711589pt;}
.y10c{bottom:433.066650pt;}
.y1ea{bottom:433.508952pt;}
.y2a9{bottom:435.530236pt;}
.yeb{bottom:438.375610pt;}
.y22d{bottom:440.042236pt;}
.y273{bottom:441.876927pt;}
.y14{bottom:443.878255pt;}
.y179{bottom:446.708944pt;}
.y1ac{bottom:447.375610pt;}
.y38{bottom:447.708944pt;}
.ycc{bottom:448.042277pt;}
.y2a8{bottom:448.191570pt;}
.y6a{bottom:448.426514pt;}
.y1db{bottom:448.708903pt;}
.ya6{bottom:448.708944pt;}
.y10b{bottom:449.066650pt;}
.ye9{bottom:451.926676pt;}
.yea{bottom:454.375610pt;}
.y272{bottom:454.538261pt;}
.y22c{bottom:456.042236pt;}
.y13{bottom:459.878255pt;}
.y2a7{bottom:460.852903pt;}
.y128{bottom:461.738647pt;}
.ya4{bottom:462.260010pt;}
.y201{bottom:462.708944pt;}
.y37{bottom:463.708944pt;}
.ycb{bottom:464.042277pt;}
.y69{bottom:464.426514pt;}
.ya2{bottom:464.539998pt;}
.y1da{bottom:464.708903pt;}
.ya1{bottom:464.708944pt;}
.y10a{bottom:465.066650pt;}
.y271{bottom:467.199594pt;}
.ye6{bottom:470.208008pt;}
.ye5{bottom:470.375610pt;}
.ye7{bottom:471.137329pt;}
.y22b{bottom:472.042236pt;}
.y2a6{bottom:473.514236pt;}
.y12{bottom:475.878255pt;}
.y178{bottom:478.708944pt;}
.y1ab{bottom:479.375570pt;}
.y36{bottom:479.708944pt;}
.y270{bottom:479.860927pt;}
.y127{bottom:480.042277pt;}
.y68{bottom:480.426514pt;}
.y1d9{bottom:480.708903pt;}
.ya0{bottom:480.708944pt;}
.y109{bottom:481.066650pt;}
.y2a5{bottom:486.175570pt;}
.ye4{bottom:486.375610pt;}
.y22a{bottom:488.042236pt;}
.yca{bottom:488.375610pt;}
.y11{bottom:491.878255pt;}
.y26f{bottom:492.522261pt;}
.y177{bottom:494.708944pt;}
.y1aa{bottom:495.375570pt;}
.y15d{bottom:495.541341pt;}
.y35{bottom:495.708944pt;}
.y1d1{bottom:495.874674pt;}
.y126{bottom:496.042277pt;}
.y67{bottom:496.426514pt;}
.y1c0{bottom:496.541341pt;}
.y1d8{bottom:496.708903pt;}
.y9f{bottom:496.708944pt;}
.y108{bottom:497.066650pt;}
.y2a4{bottom:498.836903pt;}
.ye3{bottom:499.926676pt;}
.ye2{bottom:502.375610pt;}
.y229{bottom:504.042236pt;}
.yc9{bottom:504.375610pt;}
.y26e{bottom:505.183594pt;}
.y10{bottom:507.878255pt;}
.y176{bottom:510.708944pt;}
.y1a9{bottom:511.375570pt;}
.y2a3{bottom:511.498236pt;}
.y34{bottom:511.708944pt;}
.y125{bottom:512.042277pt;}
.y66{bottom:512.426514pt;}
.y1d7{bottom:512.708903pt;}
.y9e{bottom:512.708944pt;}
.y26d{bottom:517.844927pt;}
.y228{bottom:520.042236pt;}
.yc8{bottom:520.375610pt;}
.yf{bottom:523.878255pt;}
.y2a2{bottom:524.159570pt;}
.ye1{bottom:526.708944pt;}
.y33{bottom:527.708944pt;}
.y124{bottom:527.873332pt;}
.y123{bottom:528.042277pt;}
.y65{bottom:528.426514pt;}
.y1d6{bottom:528.708903pt;}
.y152{bottom:528.708944pt;}
.y107{bottom:529.066650pt;}
.y26c{bottom:530.506261pt;}
.y227{bottom:536.042236pt;}
.yc7{bottom:536.375610pt;}
.y2a1{bottom:536.820903pt;}
.ye{bottom:539.878255pt;}
.ydf{bottom:540.260010pt;}
.y121{bottom:541.594686pt;}
.ye0{bottom:542.539998pt;}
.yde{bottom:542.708944pt;}
.y26b{bottom:543.167594pt;}
.y32{bottom:543.708944pt;}
.y200{bottom:543.874674pt;}
.y120{bottom:544.042236pt;}
.y122{bottom:544.042277pt;}
.y64{bottom:544.426514pt;}
.y1d0{bottom:544.541341pt;}
.y151{bottom:544.670654pt;}
.y1d5{bottom:544.708903pt;}
.y9d{bottom:544.708944pt;}
.y2a0{bottom:549.482236pt;}
.y226{bottom:552.042236pt;}
.y26a{bottom:555.828927pt;}
.y31{bottom:559.708944pt;}
.y174{bottom:559.874674pt;}
.y173{bottom:560.042236pt;}
.y175{bottom:560.042277pt;}
.y63{bottom:560.426514pt;}
.y1bf{bottom:560.708903pt;}
.yc6{bottom:560.708944pt;}
.y29f{bottom:562.143570pt;}
.y225{bottom:568.042236pt;}
.y269{bottom:568.490261pt;}
.ydd{bottom:574.541341pt;}
.ydc{bottom:574.708944pt;}
.y29e{bottom:574.804903pt;}
.y15c{bottom:575.539998pt;}
.y15b{bottom:575.708903pt;}
.y30{bottom:575.708944pt;}
.y1a8{bottom:576.042236pt;}
.y62{bottom:576.426514pt;}
.yc5{bottom:576.708903pt;}
.y150{bottom:576.708944pt;}
.y268{bottom:581.151594pt;}
.yd{bottom:583.260949pt;}
.y224{bottom:584.042236pt;}
.y29d{bottom:587.466236pt;}
.ydb{bottom:590.708944pt;}
.y2d{bottom:591.541341pt;}
.y2c{bottom:591.708903pt;}
.y2f{bottom:591.708944pt;}
.y1a7{bottom:592.042236pt;}
.y61{bottom:592.426514pt;}
.y208{bottom:592.541341pt;}
.y9c{bottom:592.708903pt;}
.y14f{bottom:592.708944pt;}
.y267{bottom:593.812927pt;}
.yc{bottom:595.922282pt;}
.y29c{bottom:600.127570pt;}
.y266{bottom:606.474261pt;}
.y2b{bottom:607.708903pt;}
.y223{bottom:608.375570pt;}
.y60{bottom:608.426514pt;}
.y9b{bottom:608.708903pt;}
.y14e{bottom:608.708944pt;}
.y29b{bottom:612.788903pt;}
.y265{bottom:619.135594pt;}
.y2a{bottom:623.708903pt;}
.y1a6{bottom:624.042236pt;}
.y222{bottom:624.375570pt;}
.y5f{bottom:624.426514pt;}
.y1cf{bottom:624.541341pt;}
.y9a{bottom:624.708903pt;}
.y197{bottom:624.708944pt;}
.y29a{bottom:625.450236pt;}
.y264{bottom:631.796927pt;}
.y299{bottom:638.111570pt;}
.y29{bottom:639.708903pt;}
.yd9{bottom:639.874674pt;}
.yd8{bottom:640.042236pt;}
.yda{bottom:640.042277pt;}
.y221{bottom:640.375570pt;}
.y5e{bottom:640.426514pt;}
.y195{bottom:640.541341pt;}
.y99{bottom:640.708903pt;}
.y196{bottom:640.708944pt;}
.y263{bottom:644.458261pt;}
.y298{bottom:650.772903pt;}
.y28{bottom:655.708903pt;}
.y220{bottom:656.375570pt;}
.y5d{bottom:656.426514pt;}
.y205{bottom:656.539998pt;}
.y98{bottom:656.708903pt;}
.y206{bottom:656.708944pt;}
.y262{bottom:657.119594pt;}
.y207{bottom:662.042277pt;}
.y297{bottom:663.434236pt;}
.y261{bottom:669.780927pt;}
.y27{bottom:671.708903pt;}
.y21f{bottom:672.375570pt;}
.y5c{bottom:672.426514pt;}
.y97{bottom:672.708903pt;}
.y1e9{bottom:672.708944pt;}
.y296{bottom:676.095570pt;}
.y260{bottom:682.442261pt;}
.y26{bottom:687.708903pt;}
.y21e{bottom:688.375570pt;}
.y5b{bottom:688.426514pt;}
.y96{bottom:688.708903pt;}
.y295{bottom:688.756903pt;}
.yb{bottom:694.812093pt;}
.y294{bottom:701.418236pt;}
.y25{bottom:703.708903pt;}
.y5a{bottom:704.426514pt;}
.y95{bottom:704.708903pt;}
.y25f{bottom:711.375570pt;}
.y293{bottom:714.079570pt;}
.y14c{bottom:717.325358pt;}
.y24{bottom:719.708903pt;}
.y59{bottom:720.426514pt;}
.y94{bottom:720.708903pt;}
.y292{bottom:726.740903pt;}
.y7{bottom:732.641357pt;}
.y6{bottom:732.806415pt;}
.ya{bottom:732.809082pt;}
.y23{bottom:735.708903pt;}
.y58{bottom:736.426514pt;}
.y93{bottom:736.708903pt;}
.y291{bottom:739.402236pt;}
.y22{bottom:751.708903pt;}
.y290{bottom:752.063570pt;}
.y57{bottom:752.426514pt;}
.y1a5{bottom:752.540039pt;}
.y92{bottom:752.708903pt;}
.y5{bottom:752.809082pt;}
.y28f{bottom:764.724903pt;}
.y21{bottom:767.708903pt;}
.y56{bottom:768.426514pt;}
.y91{bottom:768.708903pt;}
.y25e{bottom:777.386236pt;}
.y55{bottom:784.426514pt;}
.y1a3{bottom:784.541341pt;}
.y90{bottom:784.708903pt;}
.y14a{bottom:785.482666pt;}
.y25d{bottom:790.047570pt;}
.y148{bottom:798.403971pt;}
.y20{bottom:799.708903pt;}
.y4{bottom:799.809082pt;}
.y54{bottom:800.426514pt;}
.y8f{bottom:800.708903pt;}
.y149{bottom:800.711589pt;}
.y25c{bottom:802.708903pt;}
.y3{bottom:823.546023pt;}
.y1f{bottom:836.018392pt;}
.y8e{bottom:836.112793pt;}
.y1e{bottom:836.112956pt;}
.y2{bottom:836.207357pt;}
.h20{height:5.200000pt;}
.h2c{height:5.201333pt;}
.h1c{height:6.133333pt;}
.h18{height:6.134666pt;}
.h23{height:6.665333pt;}
.h21{height:6.666667pt;}
.h15{height:7.333333pt;}
.h17{height:7.334667pt;}
.h12{height:8.266666pt;}
.h27{height:8.800000pt;}
.h29{height:8.801333pt;}
.hf{height:9.198667pt;}
.h11{height:9.200000pt;}
.h2a{height:10.933333pt;}
.h1d{height:11.333333pt;}
.h1a{height:11.334667pt;}
.h25{height:11.465333pt;}
.h5{height:11.466667pt;}
.h2d{height:12.266666pt;}
.h31{height:12.268000pt;}
.h19{height:23.525879pt;}
.h1e{height:23.899306pt;}
.h24{height:23.952652pt;}
.h22{height:25.642667pt;}
.hb{height:27.596800pt;}
.h16{height:28.757333pt;}
.h2{height:29.354667pt;}
.h13{height:32.061345pt;}
.h32{height:34.496000pt;}
.h28{height:34.835372pt;}
.h2b{height:35.315492pt;}
.h1b{height:35.635572pt;}
.h10{height:35.955652pt;}
.h26{height:36.062345pt;}
.h3{height:39.424000pt;}
.h6{height:41.673179pt;}
.h2e{height:43.543541pt;}
.h14{height:43.648000pt;}
.h33{height:45.013333pt;}
.h2f{height:46.323198pt;}
.h7{height:48.537812pt;}
.ha{height:49.280000pt;}
.h30{height:51.359967pt;}
.he{height:54.560000pt;}
.hd{height:55.829333pt;}
.h1f{height:55.829496pt;}
.h9{height:56.266667pt;}
.h8{height:60.720000pt;}
.hc{height:61.893333pt;}
.h4{height:73.146667pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w7{width:4.613333pt;}
.w6{width:4.665333pt;}
.w5{width:4.666667pt;}
.w22{width:4.892000pt;}
.w11{width:4.893333pt;}
.w20{width:5.066667pt;}
.w3{width:5.773333pt;}
.w21{width:5.774666pt;}
.w4{width:6.120000pt;}
.wb{width:6.520000pt;}
.wf{width:6.521333pt;}
.wd{width:6.572000pt;}
.wc{width:6.573333pt;}
.wa{width:7.878667pt;}
.w23{width:7.880000pt;}
.w2{width:7.973333pt;}
.w26{width:9.053333pt;}
.w8{width:9.065333pt;}
.w9{width:9.066667pt;}
.w1f{width:9.853333pt;}
.w10{width:10.480000pt;}
.w1c{width:10.746667pt;}
.w24{width:11.320000pt;}
.w25{width:11.321333pt;}
.w1e{width:16.786667pt;}
.w16{width:19.333333pt;}
.we{width:33.654666pt;}
.w17{width:36.533333pt;}
.w13{width:37.481333pt;}
.w12{width:42.294667pt;}
.w1d{width:43.986669pt;}
.w18{width:46.333333pt;}
.w19{width:52.841333pt;}
.w14{width:61.093333pt;}
.w1a{width:71.346664pt;}
.w15{width:71.773336pt;}
.w27{width:89.265330pt;}
.w1b{width:89.266663pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x49{left:-0.939189pt;}
.x0{left:0.000000pt;}
.x5{left:1.333730pt;}
.x39{left:26.737732pt;}
.x5b{left:30.114665pt;}
.x50{left:35.377330pt;}
.x2{left:68.031469pt;}
.x3{left:71.811066pt;}
.x7e{left:75.445333pt;}
.x7{left:83.156659pt;}
.x7f{left:86.764800pt;}
.x4b{left:89.722931pt;}
.x9f{left:90.708802pt;}
.x38{left:93.830800pt;}
.x51{left:97.364003pt;}
.x8d{left:100.032003pt;}
.x6d{left:102.844004pt;}
.x6e{left:108.617462pt;}
.x26{left:111.189331pt;}
.x1c{left:112.962667pt;}
.x8e{left:114.089071pt;}
.x22{left:115.810669pt;}
.x1d{left:117.576396pt;}
.x4{left:118.592000pt;}
.x23{left:120.423737pt;}
.x2b{left:122.272664pt;}
.x6{left:126.565735pt;}
.x5f{left:131.506663pt;}
.x57{left:133.883596pt;}
.x52{left:134.911469pt;}
.x5d{left:142.254669pt;}
.x58{left:143.871733pt;}
.x3c{left:146.124800pt;}
.x5a{left:147.444000pt;}
.x60{left:148.360270pt;}
.x59{left:150.271464pt;}
.x16{left:151.674662pt;}
.x5e{left:153.066803pt;}
.x17{left:157.794667pt;}
.x2e{left:160.914663pt;}
.x18{left:162.981333pt;}
.x4f{left:164.222666pt;}
.x2f{left:167.434937pt;}
.x19{left:168.754537pt;}
.x8{left:170.398671pt;}
.x90{left:173.156942pt;}
.x9{left:176.171997pt;}
.x37{left:183.549866pt;}
.x5c{left:186.698140pt;}
.x53{left:189.638407pt;}
.x56{left:194.190674pt;}
.x82{left:195.228007pt;}
.x30{left:196.253337pt;}
.x83{left:200.294942pt;}
.x31{left:202.825602pt;}
.x1e{left:204.609333pt;}
.x20{left:207.855998pt;}
.x91{left:210.882670pt;}
.x1f{left:213.675741pt;}
.x44{left:215.908000pt;}
.x21{left:216.922668pt;}
.x45{left:222.427205pt;}
.x2c{left:223.612000pt;}
.x88{left:227.117330pt;}
.x2d{left:230.184937pt;}
.x89{left:231.783203pt;}
.x72{left:242.617330pt;}
.x73{left:248.736674pt;}
.x98{left:251.021342pt;}
.x92{left:254.196533pt;}
.x46{left:255.186666pt;}
.x61{left:256.576009pt;}
.x8f{left:260.365072pt;}
.x47{left:261.306661pt;}
.x62{left:266.428792pt;}
.x9d{left:269.654663pt;}
.x9e{left:274.720662pt;}
.x42{left:276.418660pt;}
.x79{left:277.469340pt;}
.x43{left:282.992269pt;}
.x48{left:285.906657pt;}
.x3f{left:288.577332pt;}
.x6b{left:290.706665pt;}
.x80{left:291.751994pt;}
.x40{left:295.150004pt;}
.x4a{left:296.386129pt;}
.x6f{left:303.077209pt;}
.x81{left:308.997335pt;}
.x93{left:312.969340pt;}
.x94{left:318.742798pt;}
.x8a{left:328.494670pt;}
.x4c{left:331.840007pt;}
.x8b{left:333.108398pt;}
.xa{left:338.423991pt;}
.x29{left:341.753337pt;}
.x99{left:342.668009pt;}
.xb{left:344.197469pt;}
.x67{left:346.001343pt;}
.x9a{left:348.442017pt;}
.x2a{left:349.632406pt;}
.x32{left:350.657064pt;}
.x68{left:351.775472pt;}
.x4e{left:355.108398pt;}
.x76{left:361.037354pt;}
.x77{left:366.103068pt;}
.x4d{left:370.586670pt;}
.x1a{left:371.797323pt;}
.x9b{left:372.723999pt;}
.x69{left:374.409342pt;}
.x1b{left:376.410400pt;}
.x6c{left:377.540649pt;}
.x9c{left:378.844116pt;}
.x6a{left:380.529460pt;}
.x27{left:384.545329pt;}
.x33{left:386.979980pt;}
.x70{left:390.453328pt;}
.x28{left:392.424398pt;}
.x34{left:393.552816pt;}
.x71{left:396.573486pt;}
.x41{left:399.871216pt;}
.x54{left:401.906657pt;}
.x7a{left:404.697347pt;}
.x65{left:406.326945pt;}
.x66{left:407.348674pt;}
.x3d{left:409.014648pt;}
.x7b{left:410.817586pt;}
.x3e{left:415.134684pt;}
.xc{left:419.765340pt;}
.x55{left:421.306519pt;}
.xd{left:425.885335pt;}
.x1{left:428.033610pt;}
.xe{left:432.229329pt;}
.x74{left:434.153320pt;}
.x8c{left:435.874674pt;}
.xf{left:436.895996pt;}
.x75{left:439.046916pt;}
.x63{left:441.546672pt;}
.x64{left:447.321086pt;}
.x3a{left:448.214681pt;}
.x3b{left:453.987752pt;}
.x84{left:456.049316pt;}
.x96{left:460.592000pt;}
.x85{left:465.102417pt;}
.x97{left:466.711873pt;}
.x7c{left:470.538656pt;}
.x10{left:473.935994pt;}
.x11{left:478.602539pt;}
.x7d{left:481.858114pt;}
.x87{left:484.614665pt;}
.x24{left:492.949341pt;}
.x12{left:494.895996pt;}
.x25{left:497.562419pt;}
.x13{left:499.562256pt;}
.x86{left:503.408000pt;}
.x14{left:505.906657pt;}
.x35{left:507.386678pt;}
.x15{left:510.573079pt;}
.x95{left:511.674683pt;}
.x78{left:512.901326pt;}
.x36{left:513.906413pt;}
}




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