
    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_f33cb37f572c92aa68826b64.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_b32209e5fec57ab02fd11607.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_58bb346b07db7e5ff2e64e7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_dd5f85ab56977ba2a1487aee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_9d98bf3543332490b69ccf41.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a69412d2b12f69b07ca7496e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_d17382dfaf46c3db25abbb77.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.384000;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_08d3351ec95b467916b64729.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bf0e7ff4112e7c5c11bbe40a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d554e9065756fa174b36d569.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3eaa4054150c98e94046ce1f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_27050ab92b6cfb9895dbd8a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_63a1284888bb12d25ead15bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.724000;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_412f295a2a3139281e4066df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964000;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_49166c192bc635e53ae194fb.woff2')format("woff");}.fff{font-family:fff;line-height:0.829000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a4a5af724026e95738941b72.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.258000;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_dae08e26251d68a799b01d64.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_43b5b2bbcc4622fbae2ba6bf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.724000;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_1ea6285ca148f76fc9d7bbbf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d918f868be312d5074754a50.woff2')format("woff");}.ff14{font-family:ff14;line-height:2.399000;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_bbf5973c1c11476d439a9952.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.952000;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_8688c4fae4ae29cfe318ebfc.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_581edcffab699fe1b9c1f444.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.957000;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_b463d29dd98b009266ecea06.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.460000;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_ad6df796fc443f6396f687e0.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_856e369a49913367fef5d6d1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.640000;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_732a7e4882766c7f7053da99.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ee15259abeb81e5d6350884a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.711000;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_417ddf66b70fd5cf8b37693d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_cbd31c2987acf5fbfe5c6420.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_b006607dfec71d50dd28bcf0.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_9b035407c6689fe415c02e8a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.474000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_61c3ee006db07e4e38280c1e.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.727000;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_9e55471d16c6b1f16eb212cd.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.850000;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_a4a0debf665149d8600d0deb.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_71d2bdb4f5d14187a7a9b73e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.716000;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_bc763903c41cadb6813758c0.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.453000;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_67c3b336fc56142241458427.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.780000;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_b3128470b8597ba4a67328ad.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.969000;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_6408c16ec8df1ced0328cae7.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.700000;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_44af90ab5927486ee2739641.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.969000;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_586b32d5d9fd8a09ac6ccbb7.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.460000;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_d8d42e7515d27d0fc6100b4a.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.640000;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_b6f45dfd252de8da71a0d4c0.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_6fcbd96754024160bf57f0d0.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.474000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_23fa626797dfbed4abc18815.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_48d592ce5c36efd1d5f9221a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.864000;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_d0af224d42cb466df5ec9fdc.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.709000;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_27fa96265a8d90ebcb9362d3.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.400000;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:ff32;src:url('chunks/assets/font_70496b0212fa8688bab69c3f.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.871000;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:ff33;src:url('chunks/assets/font_ed883917411fd4d93def14e0.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.871000;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:ff34;src:url('chunks/assets/font_eeed8baf9ef1dafebbc94df9.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.872000;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:ff35;src:url('chunks/assets/font_012ad9e2da02db478fac01b2.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.964000;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:ff36;src:url('chunks/assets/font_b76b1992531e2f083170dfa9.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.546000;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:ff37;src:url('chunks/assets/font_2cb8b33714271c0e9d008e06.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_201d9714bc0ffa29df8e3728.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.870000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_bc041e7ac7c6480b40d2ad68.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.199000;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:ff3a;src:url('chunks/assets/font_277fccc44b292f5d4fcd510c.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.871000;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:ff3b;src:url('chunks/assets/font_6db658f13a542915ced99d48.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_46fbdf78a5841006caad33c8.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.450000;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:ff3d;src:url('chunks/assets/font_d422e067cd94998375258d6f.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.871000;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:ff3e;src:url('chunks/assets/font_f5dafff5e148249e7a26071c.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.871000;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:ff3f;src:url('chunks/assets/font_4793a52030d20a9937564534.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.872000;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:ff40;src:url('chunks/assets/font_7ca2d53d59e1da1a9c6439b3.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.871000;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:ff41;src:url('chunks/assets/font_0cfa3ddf9a823756fba142bf.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.644000;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:ff42;src:url('chunks/assets/font_65cdf030c0c5333cfb7cc6d7.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.724000;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:ff43;src:url('chunks/assets/font_c2781e3825c341e3e043585e.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_b8b668985e2767099ec09cb2.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_aab6ca6e30ae18ef75cd16c7.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.957000;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:ff46;src:url('chunks/assets/font_2c22664f941b43648ea768be.woff2')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_0f180d2be199e19a4434f232.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_1a3c82817d3f48bf90696f4a.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.479000;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:ff49;src:url('chunks/assets/font_a8fe83b03c2c724ffbba5927.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_cdaa8d27fcb803e3a22f50a7.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_ab45c8da0681e512e2618b26.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.969000;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:ff4c;src:url('chunks/assets/font_80427c2c629736eaef6c79ae.woff2')format("woff");}.ff4c{font-family:ff4c;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:ff4d;src:url('chunks/assets/font_1c25d7ba153278cb753e7b0a.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.969000;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:ff4e;src:url('chunks/assets/font_9958e93f3c59e211c578a1e9.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_51655db3825592da2680d613.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.969000;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:ff50;src:url('chunks/assets/font_17d360ad0f3aa9da2596d9d4.woff2')format("woff");}.ff50{font-family:ff50;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:ff51;src:url('chunks/assets/font_96631190c91cad78f74d675e.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_c80343f4ce1b5bf21cee7f80.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.400000;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:ff53;src:url('chunks/assets/font_a0d1d6095821b96dc5bb23d2.woff2')format("woff");}.ff53{font-family:ff53;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:ff54;src:url('chunks/assets/font_871bd2e6f6c5eb8e83fb9d80.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.648000;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:ff55;src:url('chunks/assets/font_89dbeb634a5f28ad58bd6444.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.450000;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:ff56;src:url('chunks/assets/font_df563da821b332ef40435de7.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.957000;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:ff57;src:url('chunks/assets/font_76e1b3bac455b38a8bc0433b.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.258000;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:ff58;src:url('chunks/assets/font_8b2f9fd9d3ab9f0aaf5c24a3.woff2')format("woff");}.ff58{font-family:ff58;line-height:2.999000;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:ff59;src:url('chunks/assets/font_1df9d2c521490d4fd62d2147.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.715000;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:ff5a;src:url('chunks/assets/font_1626d027d9d919e07348ef6e.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.199000;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:ff5b;src:url('chunks/assets/font_60d1fdc3fcaed7d3372bb4f9.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.458000;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:ff5c;src:url('chunks/assets/font_3284c398f28062118713b504.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.715000;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:ff5d;src:url('chunks/assets/font_612c30a1098762cedb08f6da.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.479000;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:ff5e;src:url('chunks/assets/font_560c07dc51d7253ff490e1ad.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.866000;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:ff5f;src:url('chunks/assets/font_ff618abab911efdb598143f3.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.910156;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:ff60;src:url('chunks/assets/font_8f16db85ef6c8fdfa537e5cf.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-36.637221px;}
.v14{vertical-align:-31.071389px;}
.ve{vertical-align:-22.355347px;}
.vc{vertical-align:-18.899963px;}
.v4{vertical-align:-17.849995px;}
.vb{vertical-align:-13.715424px;}
.v5{vertical-align:-10.805927px;}
.v7{vertical-align:-9.126526px;}
.v6{vertical-align:-8.100037px;}
.v11{vertical-align:-6.154175px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:6.437996px;}
.v9{vertical-align:8.099945px;}
.v12{vertical-align:14.537393px;}
.va{vertical-align:15.607178px;}
.v3{vertical-align:18.690110px;}
.v2{vertical-align:21.000000px;}
.vd{vertical-align:22.300781px;}
.v8{vertical-align:37.880077px;}
.v16{vertical-align:43.770131px;}
.v10{vertical-align:122.633789px;}
.v15{vertical-align:150.601674px;}
.ls82{letter-spacing:-2.653451px;}
.ls71{letter-spacing:-2.550469px;}
.ls73{letter-spacing:-1.200221px;}
.ls85{letter-spacing:-1.122614px;}
.ls83{letter-spacing:-1.020558px;}
.ls76{letter-spacing:-0.975179px;}
.lsb9{letter-spacing:-0.945000px;}
.lsac{letter-spacing:-0.765000px;}
.ls72{letter-spacing:-0.675124px;}
.ls69{letter-spacing:-0.671242px;}
.ls66{letter-spacing:-0.420000px;}
.ls10{letter-spacing:-0.378000px;}
.ls5d{letter-spacing:-0.373365px;}
.lsb2{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.324000px;}
.ls6c{letter-spacing:-0.298330px;}
.ls12{letter-spacing:-0.270000px;}
.lsb3{letter-spacing:-0.225000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls9d{letter-spacing:-0.210000px;}
.lsb1{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.162000px;}
.ls74{letter-spacing:-0.150028px;}
.ls6b{letter-spacing:-0.149165px;}
.lsb0{letter-spacing:-0.135000px;}
.ls2a{letter-spacing:-0.108000px;}
.lsb6{letter-spacing:-0.090000px;}
.ls77{letter-spacing:-0.075014px;}
.ls5e{letter-spacing:-0.074673px;}
.ls6a{letter-spacing:-0.074582px;}
.ls7e{letter-spacing:-0.057462px;}
.ls80{letter-spacing:-0.057335px;}
.ls9b{letter-spacing:-0.057329px;}
.ls87{letter-spacing:-0.056678px;}
.ls75{letter-spacing:-0.056386px;}
.ls5f{letter-spacing:-0.056005px;}
.ls11{letter-spacing:-0.054000px;}
.lsb7{letter-spacing:-0.045000px;}
.ls22{letter-spacing:-0.035100px;}
.lsf{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.003191px;}
.ls91{letter-spacing:0.010130px;}
.ls3{letter-spacing:0.013223px;}
.ls4{letter-spacing:0.013406px;}
.ls1{letter-spacing:0.013772px;}
.ls34{letter-spacing:0.015380px;}
.ls3d{letter-spacing:0.021496px;}
.lsab{letter-spacing:0.022500px;}
.ls3f{letter-spacing:0.025497px;}
.ls45{letter-spacing:0.025518px;}
.ls46{letter-spacing:0.026067px;}
.lse{letter-spacing:0.027644px;}
.ls2{letter-spacing:0.027699px;}
.ls33{letter-spacing:0.031891px;}
.ls4a{letter-spacing:0.031953px;}
.ls30{letter-spacing:0.033539px;}
.ls3e{letter-spacing:0.033911px;}
.ls28{letter-spacing:0.035100px;}
.ls59{letter-spacing:0.041068px;}
.lsa6{letter-spacing:0.045000px;}
.ls19{letter-spacing:0.054000px;}
.lsa3{letter-spacing:0.054037px;}
.ls60{letter-spacing:0.056005px;}
.ls7c{letter-spacing:0.056678px;}
.ls7d{letter-spacing:0.056804px;}
.ls98{letter-spacing:0.057329px;}
.ls7b{letter-spacing:0.057335px;}
.ls1d{letter-spacing:0.070200px;}
.ls65{letter-spacing:0.074582px;}
.ls6d{letter-spacing:0.075014px;}
.lsa9{letter-spacing:0.090000px;}
.ls1a{letter-spacing:0.092369px;}
.lsb4{letter-spacing:0.094468px;}
.ls29{letter-spacing:0.105300px;}
.ls14{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.113060px;}
.ls2f{letter-spacing:0.114302px;}
.ls17{letter-spacing:0.135033px;}
.ls23{letter-spacing:0.140400px;}
.lsb{letter-spacing:0.142173px;}
.ls61{letter-spacing:0.156600px;}
.ls78{letter-spacing:0.157950px;}
.ls18{letter-spacing:0.158836px;}
.lsc{letter-spacing:0.159019px;}
.lsa{letter-spacing:0.159568px;}
.ls13{letter-spacing:0.160118px;}
.ls6{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.175500px;}
.lsa8{letter-spacing:0.180000px;}
.lsa7{letter-spacing:0.202500px;}
.ls86{letter-spacing:0.204112px;}
.ls55{letter-spacing:0.210600px;}
.ls5{letter-spacing:0.216000px;}
.lsaa{letter-spacing:0.225000px;}
.ls81{letter-spacing:0.229339px;}
.ls41{letter-spacing:0.232200px;}
.lsa5{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.270000px;}
.ls4f{letter-spacing:0.270186px;}
.ls44{letter-spacing:0.291600px;}
.ls62{letter-spacing:0.304954px;}
.ls84{letter-spacing:0.306167px;}
.lsad{letter-spacing:0.315000px;}
.ls16{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.326927px;}
.lsb5{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.378000px;}
.ls15{letter-spacing:0.379844px;}
.ls21{letter-spacing:0.386100px;}
.lsaf{letter-spacing:0.405000px;}
.ls26{letter-spacing:0.421200px;}
.ls1b{letter-spacing:0.432000px;}
.lsb8{letter-spacing:0.450000px;}
.ls7{letter-spacing:0.486000px;}
.ls58{letter-spacing:0.526500px;}
.ls47{letter-spacing:0.529258px;}
.lsa4{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.594000px;}
.ls56{letter-spacing:0.616023px;}
.lsae{letter-spacing:0.630000px;}
.ls25{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.702000px;}
.ls9c{letter-spacing:0.745282px;}
.ls57{letter-spacing:0.756000px;}
.ls79{letter-spacing:0.772200px;}
.ls93{letter-spacing:0.780296px;}
.ls24{letter-spacing:0.810000px;}
.ls5a{letter-spacing:0.918632px;}
.ls53{letter-spacing:0.944569px;}
.ls94{letter-spacing:1.056074px;}
.ls40{letter-spacing:1.080744px;}
.ls39{letter-spacing:1.134781px;}
.ls8c{letter-spacing:1.621116px;}
.ls8f{letter-spacing:1.675153px;}
.ls8d{letter-spacing:2.107451px;}
.ls90{letter-spacing:2.161488px;}
.ls35{letter-spacing:2.972226px;}
.ls54{letter-spacing:2.979135px;}
.ls32{letter-spacing:2.995678px;}
.ls0{letter-spacing:3.000000px;}
.ls3c{letter-spacing:3.014012px;}
.ls3b{letter-spacing:3.016777px;}
.ls63{letter-spacing:3.021818px;}
.ls4e{letter-spacing:3.709944px;}
.ls92{letter-spacing:3.907761px;}
.ls8e{letter-spacing:3.907766px;}
.ls8b{letter-spacing:3.910147px;}
.lsd{letter-spacing:4.210050px;}
.ls2e{letter-spacing:4.398857px;}
.ls43{letter-spacing:4.627735px;}
.ls42{letter-spacing:4.627741px;}
.ls4c{letter-spacing:4.643722px;}
.lsa1{letter-spacing:6.998384px;}
.ls88{letter-spacing:7.001313px;}
.ls51{letter-spacing:7.132910px;}
.lsa0{letter-spacing:11.023589px;}
.ls37{letter-spacing:11.996258px;}
.ls8a{letter-spacing:12.050295px;}
.ls49{letter-spacing:14.968304px;}
.ls31{letter-spacing:15.022341px;}
.ls4d{letter-spacing:15.054091px;}
.ls96{letter-spacing:15.806328px;}
.ls95{letter-spacing:15.806383px;}
.ls89{letter-spacing:15.949881px;}
.lsa2{letter-spacing:18.018764px;}
.ls50{letter-spacing:18.022963px;}
.ls9f{letter-spacing:18.047067px;}
.ls4b{letter-spacing:18.056848px;}
.ls36{letter-spacing:19.799220px;}
.ls9e{letter-spacing:23.992516px;}
.ls38{letter-spacing:62.629114px;}
.ls52{letter-spacing:62.825401px;}
.ls48{letter-spacing:108.614770px;}
.ls5b{letter-spacing:198.594439px;}
.ls5c{letter-spacing:198.706450px;}
.ls97{letter-spacing:199.105006px;}
.ls9a{letter-spacing:199.219665px;}
.ls99{letter-spacing:213.781333px;}
.ls6f{letter-spacing:226.784866px;}
.ls70{letter-spacing:226.897387px;}
.ls7a{letter-spacing:229.453861px;}
.ls68{letter-spacing:231.913965px;}
.ls64{letter-spacing:232.025825px;}
.ls6e{letter-spacing:241.018697px;}
.ls7f{letter-spacing:243.959574px;}
.ls67{letter-spacing:246.233785px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(127,127,127);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5c{word-spacing:-258.875502px;}
.ws73{word-spacing:-256.917239px;}
.ws66{word-spacing:-253.733502px;}
.ws5d{word-spacing:-244.667542px;}
.ws5e{word-spacing:-244.555681px;}
.ws74{word-spacing:-242.411526px;}
.ws67{word-spacing:-239.499671px;}
.ws6e{word-spacing:-226.897387px;}
.ws85{word-spacing:-226.737777px;}
.ws87{word-spacing:-212.176109px;}
.ws86{word-spacing:-212.061451px;}
.ws54{word-spacing:-211.363625px;}
.ws53{word-spacing:-211.251614px;}
.ws0{word-spacing:-48.000000px;}
.ws79{word-spacing:-23.370778px;}
.ws77{word-spacing:-23.064611px;}
.ws78{word-spacing:-22.044053px;}
.ws76{word-spacing:-20.411160px;}
.ws6b{word-spacing:-16.953119px;}
.ws5f{word-spacing:-16.855622px;}
.ws69{word-spacing:-16.277995px;}
.ws60{word-spacing:-16.184381px;}
.ws6c{word-spacing:-15.977939px;}
.ws6a{word-spacing:-15.752898px;}
.ws1{word-spacing:-15.000000px;}
.ws51{word-spacing:-14.968304px;}
.ws68{word-spacing:-14.402650px;}
.ws9a{word-spacing:-13.860000px;}
.ws89{word-spacing:-13.701727px;}
.ws43{word-spacing:-13.596000px;}
.ws75{word-spacing:-13.187004px;}
.ws4e{word-spacing:-13.068000px;}
.ws88{word-spacing:-12.899115px;}
.ws7b{word-spacing:-12.752640px;}
.ws14{word-spacing:-12.528000px;}
.ws39{word-spacing:-12.420000px;}
.ws33{word-spacing:-12.258000px;}
.ws42{word-spacing:-12.042000px;}
.ws6d{word-spacing:-11.880000px;}
.ws3b{word-spacing:-11.718000px;}
.wsa0{word-spacing:-10.440000px;}
.wsaf{word-spacing:-10.417500px;}
.wsa8{word-spacing:-10.395000px;}
.ws9d{word-spacing:-9.945000px;}
.ws9c{word-spacing:-9.765000px;}
.ws13{word-spacing:-9.600000px;}
.ws9b{word-spacing:-9.540000px;}
.ws58{word-spacing:-8.694000px;}
.ws41{word-spacing:-8.494200px;}
.ws1a{word-spacing:-8.388900px;}
.ws17{word-spacing:-8.353800px;}
.ws3f{word-spacing:-8.178300px;}
.ws16{word-spacing:-8.143200px;}
.ws19{word-spacing:-8.108100px;}
.ws1c{word-spacing:-8.073000px;}
.ws15{word-spacing:-8.037900px;}
.ws1b{word-spacing:-8.002800px;}
.ws2{word-spacing:-7.967700px;}
.ws18{word-spacing:-7.932600px;}
.ws3{word-spacing:-6.630000px;}
.wsae{word-spacing:-5.850000px;}
.ws99{word-spacing:-5.508000px;}
.ws2f{word-spacing:-2.268000px;}
.ws98{word-spacing:-1.296000px;}
.ws6{word-spacing:-1.242000px;}
.wsb{word-spacing:-1.188000px;}
.ws3e{word-spacing:-1.080744px;}
.ws23{word-spacing:-1.080000px;}
.wsa7{word-spacing:-1.035000px;}
.ws22{word-spacing:-1.026000px;}
.wsa1{word-spacing:-0.990000px;}
.ws46{word-spacing:-0.972670px;}
.ws11{word-spacing:-0.918000px;}
.ws24{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.810000px;}
.ws2b{word-spacing:-0.756000px;}
.wsb5{word-spacing:-0.720000px;}
.ws21{word-spacing:-0.702000px;}
.ws40{word-spacing:-0.657091px;}
.wsd{word-spacing:-0.648000px;}
.wsac{word-spacing:-0.630000px;}
.ws4f{word-spacing:-0.594000px;}
.ws50{word-spacing:-0.540000px;}
.ws30{word-spacing:-0.378000px;}
.wsb3{word-spacing:-0.360000px;}
.ws26{word-spacing:-0.324000px;}
.wsab{word-spacing:-0.315000px;}
.ws1f{word-spacing:-0.270000px;}
.ws9e{word-spacing:-0.264000px;}
.ws9f{word-spacing:-0.225000px;}
.ws5{word-spacing:-0.216000px;}
.ws81{word-spacing:-0.204112px;}
.wsa6{word-spacing:-0.180000px;}
.ws31{word-spacing:-0.162000px;}
.wsa4{word-spacing:-0.135000px;}
.wsc{word-spacing:-0.108000px;}
.ws8a{word-spacing:-0.102173px;}
.ws7c{word-spacing:-0.100887px;}
.wsb4{word-spacing:-0.090000px;}
.ws56{word-spacing:-0.082136px;}
.ws6f{word-spacing:-0.075014px;}
.ws7f{word-spacing:-0.057335px;}
.ws8f{word-spacing:-0.057329px;}
.ws83{word-spacing:-0.056804px;}
.ws82{word-spacing:-0.056678px;}
.ws37{word-spacing:-0.054037px;}
.ws29{word-spacing:-0.054000px;}
.wsa2{word-spacing:-0.045000px;}
.ws38{word-spacing:-0.041068px;}
.ws84{word-spacing:-0.032423px;}
.ws4{word-spacing:0.000000px;}
.wsb0{word-spacing:0.045000px;}
.wsf{word-spacing:0.054000px;}
.ws71{word-spacing:0.056386px;}
.ws7e{word-spacing:0.057335px;}
.ws7d{word-spacing:0.057462px;}
.ws72{word-spacing:0.075014px;}
.ws1d{word-spacing:0.108000px;}
.ws70{word-spacing:0.150028px;}
.ws34{word-spacing:0.162000px;}
.wsa9{word-spacing:0.180000px;}
.ws90{word-spacing:0.210000px;}
.ws8{word-spacing:0.216000px;}
.wsaa{word-spacing:0.270000px;}
.ws55{word-spacing:0.373365px;}
.ws27{word-spacing:0.378000px;}
.ws4a{word-spacing:0.432000px;}
.ws3c{word-spacing:0.486000px;}
.ws2c{word-spacing:0.540000px;}
.ws7{word-spacing:0.594000px;}
.ws20{word-spacing:0.702000px;}
.wsa{word-spacing:0.756000px;}
.ws2a{word-spacing:0.810000px;}
.ws25{word-spacing:0.864000px;}
.wsb2{word-spacing:0.945000px;}
.wsad{word-spacing:0.990000px;}
.ws35{word-spacing:1.026000px;}
.wsa3{word-spacing:1.035000px;}
.ws32{word-spacing:1.080000px;}
.ws80{word-spacing:1.122614px;}
.ws62{word-spacing:1.134000px;}
.wse{word-spacing:1.188000px;}
.wsb1{word-spacing:1.215000px;}
.ws9{word-spacing:1.242000px;}
.ws3d{word-spacing:1.296000px;}
.ws64{word-spacing:1.350000px;}
.wsbe{word-spacing:1.458000px;}
.wsa5{word-spacing:1.485000px;}
.ws1e{word-spacing:1.512000px;}
.ws12{word-spacing:1.530000px;}
.ws61{word-spacing:1.566000px;}
.ws63{word-spacing:1.620000px;}
.ws97{word-spacing:1.728000px;}
.ws4b{word-spacing:1.890000px;}
.ws8e{word-spacing:1.944000px;}
.wsbc{word-spacing:2.052000px;}
.ws4c{word-spacing:2.106000px;}
.ws28{word-spacing:2.160000px;}
.ws4d{word-spacing:2.214000px;}
.ws2e{word-spacing:2.538000px;}
.wsb8{word-spacing:3.024000px;}
.wsb9{word-spacing:3.132000px;}
.wsb6{word-spacing:3.186000px;}
.wsb7{word-spacing:3.348000px;}
.ws2d{word-spacing:3.726000px;}
.wsbd{word-spacing:5.670000px;}
.wsbf{word-spacing:6.264000px;}
.wsba{word-spacing:6.480000px;}
.wsbb{word-spacing:6.750000px;}
.ws44{word-spacing:7.840029px;}
.ws96{word-spacing:11.077626px;}
.ws65{word-spacing:11.942221px;}
.ws36{word-spacing:15.282000px;}
.ws45{word-spacing:15.995011px;}
.ws48{word-spacing:16.049048px;}
.ws57{word-spacing:17.886313px;}
.ws3a{word-spacing:17.935001px;}
.ws49{word-spacing:17.960282px;}
.ws91{word-spacing:17.966539px;}
.ws94{word-spacing:21.993140px;}
.ws95{word-spacing:31.881947px;}
.ws93{word-spacing:43.067648px;}
.ws92{word-spacing:56.090613px;}
.ws47{word-spacing:123.583074px;}
.ws52{word-spacing:185.937264px;}
.ws7a{word-spacing:215.774662px;}
.ws59{word-spacing:239.987994px;}
.ws5a{word-spacing:281.610000px;}
.ws8d{word-spacing:609.503979px;}
.ws8b{word-spacing:610.218000px;}
.ws8c{word-spacing:629.663979px;}
.ws5b{word-spacing:713.621989px;}
._1a{margin-left:-246.233791px;}
._1f{margin-left:-243.959574px;}
._1d{margin-left:-241.018705px;}
._1b{margin-left:-232.025812px;}
._20{margin-left:-229.511195px;}
._1e{margin-left:-226.784866px;}
._2a{margin-left:-213.838662px;}
._2b{margin-left:-200.014130px;}
._15{margin-left:-198.650444px;}
._26{margin-left:-54.777033px;}
._24{margin-left:-51.855363px;}
._23{margin-left:-50.646233px;}
._22{margin-left:-48.728421px;}
._2c{margin-left:-42.565169px;}
._25{margin-left:-41.204450px;}
._12{margin-left:-30.260831px;}
._29{margin-left:-26.050026px;}
._e{margin-left:-20.952007px;}
._10{margin-left:-15.660000px;}
._b{margin-left:-13.633301px;}
._a{margin-left:-11.203837px;}
._28{margin-left:-8.802000px;}
._d{margin-left:-7.061408px;}
._5{margin-left:-5.506800px;}
._3{margin-left:-4.338600px;}
._2{margin-left:-2.953208px;}
._0{margin-left:-1.876800px;}
._4{width:1.039208px;}
._6{width:2.110776px;}
._7{width:3.537099px;}
._9{width:5.473603px;}
._8{width:6.497400px;}
._38{width:7.505991px;}
._36{width:9.630000px;}
._f{width:10.746000px;}
._1c{width:11.880000px;}
._35{width:13.590000px;}
._11{width:14.985605px;}
._34{width:16.920000px;}
._37{width:18.585000px;}
._33{width:43.181124px;}
._c{width:48.309499px;}
._17{width:55.857592px;}
._32{width:64.077313px;}
._16{width:74.715585px;}
._21{width:199.583185px;}
._27{width:204.884568px;}
._2d{width:207.241107px;}
._14{width:212.763755px;}
._18{width:291.144000px;}
._19{width:310.001994px;}
._1{width:328.372800px;}
._13{width:367.615819px;}
._2f{width:403.281592px;}
._2e{width:423.339584px;}
._31{width:788.717960px;}
._30{width:807.449985px;}
.fc5{color:transparent;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc8{color:rgb(127,127,127);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(68,84,106);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs1d{font-size:32.422800px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsb{font-size:41.068199px;}
.fs11{font-size:42.000000px;}
.fs21{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:54.037199px;}
.fsc{font-size:55.057200px;}
.fs12{font-size:55.936798px;}
.fse{font-size:56.005200px;}
.fsf{font-size:56.129400px;}
.fs14{font-size:56.260200px;}
.fs16{font-size:56.385600px;}
.fs1a{font-size:56.678398px;}
.fs1b{font-size:56.803800px;}
.fs1e{font-size:57.329400px;}
.fs17{font-size:57.334800px;}
.fs1f{font-size:57.456600px;}
.fs18{font-size:57.461998px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fsd{font-size:67.169998px;}
.fs13{font-size:74.582399px;}
.fs10{font-size:74.673000px;}
.fs15{font-size:75.013800px;}
.fs1c{font-size:100.887000px;}
.fs19{font-size:102.055800px;}
.fs20{font-size:102.173400px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1f8{bottom:0.045307px;}
.y12e{bottom:0.046188px;}
.y1e5{bottom:0.193954px;}
.y190{bottom:0.195145px;}
.y202{bottom:0.198143px;}
.y208{bottom:1.080460px;}
.y1e9{bottom:2.143799px;}
.ya2{bottom:2.144852px;}
.ycf{bottom:2.144989px;}
.y1e3{bottom:2.145309px;}
.y262{bottom:2.305664px;}
.y254{bottom:2.307129px;}
.ya5{bottom:2.355148px;}
.yc0{bottom:2.444870px;}
.ya7{bottom:2.444984px;}
.y265{bottom:2.505295px;}
.y11f{bottom:2.610168px;}
.y211{bottom:2.613304px;}
.y16f{bottom:2.623798px;}
.yd9{bottom:3.195006px;}
.y9f{bottom:3.195007px;}
.y98{bottom:3.199200px;}
.y37{bottom:3.199350px;}
.yc6{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.yba{bottom:3.254974px;}
.y126{bottom:3.285095px;}
.ycd{bottom:3.494934px;}
.y141{bottom:4.301422px;}
.yc1{bottom:4.469856px;}
.yab{bottom:4.544838px;}
.yd4{bottom:4.544861px;}
.y116{bottom:4.605011px;}
.y1ec{bottom:4.693955px;}
.y1f3{bottom:4.695454px;}
.y257{bottom:4.755157px;}
.y16c{bottom:4.905453px;}
.y259{bottom:5.146637px;}
.y184{bottom:5.825684px;}
.y19e{bottom:5.858414px;}
.y1af{bottom:5.860497px;}
.y14e{bottom:6.517822px;}
.y170{bottom:10.480648px;}
.y205{bottom:10.770607px;}
.y10a{bottom:12.093433px;}
.y122{bottom:12.884949px;}
.y119{bottom:14.219971px;}
.y130{bottom:14.369980px;}
.y25a{bottom:15.703491px;}
.y16e{bottom:15.853649px;}
.y12a{bottom:16.394989px;}
.y1fd{bottom:16.560448px;}
.y25d{bottom:16.858658px;}
.y24f{bottom:16.860168px;}
.y20c{bottom:18.975449px;}
.y207{bottom:20.233955px;}
.y106{bottom:20.880066px;}
.y113{bottom:20.880157px;}
.y124{bottom:22.348297px;}
.y11d{bottom:24.115448px;}
.y215{bottom:24.550804px;}
.y182{bottom:25.031708px;}
.y19c{bottom:26.270416px;}
.y1ad{bottom:26.302505px;}
.y36{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y99{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y12d{bottom:29.233658px;}
.y201{bottom:29.398796px;}
.y10f{bottom:30.546295px;}
.y210{bottom:31.814117px;}
.yc2{bottom:33.117165px;}
.ybe{bottom:33.118217px;}
.y11b{bottom:33.268341px;}
.y12c{bottom:33.283493px;}
.y1ff{bottom:34.191284px;}
.y109{bottom:36.423682px;}
.y14c{bottom:37.195816px;}
.y20e{bottom:38.253616px;}
.y25f{bottom:39.957458px;}
.y251{bottom:39.958923px;}
.y10b{bottom:41.980682px;}
.y108{bottom:48.568542px;}
.y35{bottom:68.037600px;}
.y13a{bottom:70.993648px;}
.y1da{bottom:72.603287px;}
.y222{bottom:73.373428px;}
.y1c6{bottom:73.404327px;}
.y195{bottom:75.483148px;}
.y92{bottom:79.660499px;}
.y7b{bottom:80.047052px;}
.y34{bottom:83.037600px;}
.y139{bottom:85.992148px;}
.y103{bottom:88.242148px;}
.y1bc{bottom:88.986148px;}
.y194{bottom:90.481648px;}
.y292{bottom:92.048681px;}
.y91{bottom:94.662004px;}
.y7a{bottom:95.045552px;}
.y1fa{bottom:95.560948px;}
.yb7{bottom:97.811853px;}
.y33{bottom:98.037600px;}
.y138{bottom:100.990648px;}
.y16b{bottom:103.209000px;}
.y102{bottom:103.240648px;}
.y1bb{bottom:103.984648px;}
.y291{bottom:104.794931px;}
.y193{bottom:105.480148px;}
.y140{bottom:105.944458px;}
.y16a{bottom:106.861948px;}
.y14d{bottom:107.922295px;}
.y16d{bottom:108.114452px;}
.y90{bottom:109.660504px;}
.y79{bottom:110.045552px;}
.y1f7{bottom:110.504997px;}
.y1f9{bottom:110.559448px;}
.y1f6{bottom:110.560948px;}
.yb6{bottom:112.810353px;}
.y137{bottom:115.989148px;}
.y32{bottom:117.494099px;}
.y290{bottom:117.541181px;}
.y101{bottom:118.239148px;}
.y1ba{bottom:118.983148px;}
.y192{bottom:120.480148px;}
.y1f2{bottom:120.860996px;}
.y1f5{bottom:123.425995px;}
.y8f{bottom:124.659004px;}
.y78{bottom:125.063552px;}
.y1f4{bottom:125.559448px;}
.y1f1{bottom:125.566948px;}
.yb5{bottom:127.817853px;}
.y268{bottom:128.072995px;}
.y28f{bottom:130.287431px;}
.y136{bottom:130.987648px;}
.y100{bottom:133.237648px;}
.y1b9{bottom:133.981648px;}
.y169{bottom:135.319948px;}
.y1c7{bottom:136.444794px;}
.y8e{bottom:139.659004px;}
.y77{bottom:140.062052px;}
.y1f0{bottom:140.565448px;}
.yb4{bottom:142.816353px;}
.y28e{bottom:143.033681px;}
.y267{bottom:143.071495px;}
.y135{bottom:145.986148px;}
.yff{bottom:148.236148px;}
.y1b8{bottom:148.980148px;}
.y168{bottom:150.318448px;}
.y183{bottom:151.699219px;}
.y18f{bottom:153.291000px;}
.y191{bottom:153.480148px;}
.y18e{bottom:153.481648px;}
.y76{bottom:155.060552px;}
.y1ef{bottom:155.563948px;}
.y28d{bottom:155.779931px;}
.y30{bottom:156.072454px;}
.yb3{bottom:157.814853px;}
.y1ae{bottom:159.388527px;}
.y19d{bottom:159.389420px;}
.y134{bottom:160.984648px;}
.yfe{bottom:163.234648px;}
.y167{bottom:165.316948px;}
.y18d{bottom:168.480148px;}
.y28c{bottom:168.526181px;}
.y75{bottom:170.059052px;}
.y1ee{bottom:170.562448px;}
.y2f{bottom:171.070954px;}
.y8d{bottom:172.671004px;}
.y1db{bottom:172.704300px;}
.yb2{bottom:172.813353px;}
.y133{bottom:175.983148px;}
.y2ce{bottom:176.162404px;}
.yfd{bottom:178.233148px;}
.y166{bottom:180.315448px;}
.y28b{bottom:181.272431px;}
.y74{bottom:185.057552px;}
.y1ed{bottom:185.560948px;}
.y2e{bottom:186.070943px;}
.y1e0{bottom:186.742940px;}
.y8c{bottom:187.669504px;}
.yb1{bottom:187.811853px;}
.y223{bottom:188.927582px;}
.y132{bottom:190.981648px;}
.yfc{bottom:193.231648px;}
.y28a{bottom:194.018681px;}
.y165{bottom:195.313948px;}
.y1eb{bottom:195.862495px;}
.y1e8{bottom:198.427505px;}
.y73{bottom:200.056052px;}
.y1ea{bottom:200.559448px;}
.y1e7{bottom:200.562448px;}
.y2d{bottom:201.070805px;}
.y1df{bottom:201.741440px;}
.y8b{bottom:202.668004px;}
.yb0{bottom:202.810353px;}
.y131{bottom:205.980148px;}
.y2cd{bottom:206.159403px;}
.y289{bottom:206.764931px;}
.yfb{bottom:208.230148px;}
.y164{bottom:210.312448px;}
.y1b7{bottom:211.191149px;}
.y72{bottom:215.054552px;}
.y2c{bottom:216.076805px;}
.y8a{bottom:217.666504px;}
.yaf{bottom:217.813353px;}
.y288{bottom:219.511181px;}
.y2cc{bottom:221.157903px;}
.y20b{bottom:223.058990px;}
.yfa{bottom:223.230148px;}
.y163{bottom:225.310948px;}
.y212{bottom:225.672295px;}
.y1b6{bottom:226.189649px;}
.y1d9{bottom:228.564011px;}
.y71{bottom:230.053052px;}
.y2b{bottom:231.075305px;}
.y287{bottom:232.257431px;}
.y89{bottom:232.665004px;}
.yae{bottom:232.811853px;}
.y2cb{bottom:236.156403px;}
.y1de{bottom:238.317307px;}
.y214{bottom:238.400251px;}
.y216{bottom:238.402954px;}
.y20d{bottom:240.009453px;}
.y162{bottom:240.322948px;}
.y20a{bottom:240.652199px;}
.y1b5{bottom:241.188149px;}
.y213{bottom:242.034599px;}
.y286{bottom:245.003681px;}
.y70{bottom:245.051552px;}
.y2a{bottom:246.073805px;}
.y88{bottom:247.663504px;}
.yad{bottom:247.810353px;}
.y158{bottom:248.931441px;}
.y24c{bottom:250.099656px;}
.y2ca{bottom:251.154903px;}
.y161{bottom:255.321448px;}
.yf9{bottom:256.239148px;}
.y285{bottom:257.749931px;}
.yaa{bottom:258.273010px;}
.y20f{bottom:259.773445px;}
.y6f{bottom:260.050052px;}
.y29{bottom:261.072305px;}
.y87{bottom:262.662004px;}
.ya9{bottom:262.806009px;}
.yac{bottom:262.808853px;}
.y157{bottom:263.929941px;}
.y24b{bottom:265.098156px;}
.y2c9{bottom:266.153403px;}
.y1ac{bottom:268.010994px;}
.y1dc{bottom:269.929802px;}
.y160{bottom:270.319948px;}
.y284{bottom:270.496181px;}
.yf8{bottom:271.237648px;}
.y6e{bottom:275.048552px;}
.y28{bottom:276.070805px;}
.y86{bottom:277.660504px;}
.y156{bottom:278.928441px;}
.y24a{bottom:280.096656px;}
.y2c8{bottom:281.151903px;}
.y283{bottom:283.242431px;}
.ybd{bottom:285.308990px;}
.y15f{bottom:285.318448px;}
.yf7{bottom:286.236148px;}
.ybf{bottom:289.778847px;}
.y6d{bottom:290.047052px;}
.y204{bottom:290.558990px;}
.y27{bottom:291.073805px;}
.y85{bottom:292.660504px;}
.y155{bottom:293.926941px;}
.y1ab{bottom:294.312435px;}
.y249{bottom:295.095156px;}
.y209{bottom:295.553993px;}
.y282{bottom:295.988681px;}
.y2c7{bottom:296.150403px;}
.ybb{bottom:298.551750px;}
.y206{bottom:299.304611px;}
.ybc{bottom:299.378860px;}
.y203{bottom:300.052208px;}
.y15e{bottom:300.316948px;}
.y1d8{bottom:301.124314px;}
.yf6{bottom:301.234648px;}
.y6c{bottom:305.045552px;}
.y26{bottom:306.072305px;}
.y84{bottom:307.662004px;}
.y281{bottom:308.734931px;}
.y248{bottom:310.093656px;}
.y2c6{bottom:311.148903px;}
.y1a7{bottom:312.596992px;}
.y15d{bottom:315.315448px;}
.yf5{bottom:316.233148px;}
.y1cf{bottom:319.587296px;}
.y6b{bottom:320.044052px;}
.y14b{bottom:320.749489px;}
.y25{bottom:321.070805px;}
.y280{bottom:321.481181px;}
.y83{bottom:322.660504px;}
.y247{bottom:325.092156px;}
.y1b4{bottom:328.474503px;}
.y15c{bottom:330.313948px;}
.yf4{bottom:331.231648px;}
.y2c5{bottom:333.638243px;}
.y27f{bottom:334.227431px;}
.y6a{bottom:335.044052px;}
.y24{bottom:336.079805px;}
.ya8{bottom:336.610509px;}
.y82{bottom:337.660504px;}
.y1c9{bottom:338.419189px;}
.y246{bottom:340.090656px;}
.y1fc{bottom:341.859009px;}
.y142{bottom:344.310425px;}
.y15b{bottom:345.312448px;}
.y1b0{bottom:345.429216px;}
.y185{bottom:346.163817px;}
.yf3{bottom:346.231648px;}
.y27e{bottom:346.973681px;}
.y2c4{bottom:348.636743px;}
.ya4{bottom:349.152008px;}
.y1b3{bottom:349.167000px;}
.y23{bottom:351.078305px;}
.ya6{bottom:351.609009px;}
.ya3{bottom:351.610509px;}
.y1d0{bottom:351.794795px;}
.y81{bottom:352.664981px;}
.y19f{bottom:354.766342px;}
.y245{bottom:355.089156px;}
.y1fb{bottom:357.433948px;}
.y14a{bottom:357.945305px;}
.y1fe{bottom:358.419456px;}
.y27d{bottom:359.719931px;}
.y15a{bottom:360.310948px;}
.yf2{bottom:361.237648px;}
.y9e{bottom:363.422997px;}
.ya1{bottom:364.475990px;}
.y22{bottom:366.076805px;}
.ya0{bottom:366.609009px;}
.y9d{bottom:366.609128px;}
.y80{bottom:367.663481px;}
.y69{bottom:368.054552px;}
.y1b2{bottom:369.858009px;}
.y244{bottom:370.087656px;}
.y2c3{bottom:371.141243px;}
.y27c{bottom:372.466181px;}
.y200{bottom:374.106148px;}
.y159{bottom:375.309448px;}
.y147{bottom:376.147797px;}
.yf1{bottom:376.236148px;}
.y1dd{bottom:379.231018px;}
.y21{bottom:381.075305px;}
.y7f{bottom:382.661981px;}
.y68{bottom:383.053052px;}
.y225{bottom:383.556610px;}
.y1d1{bottom:384.002295px;}
.y243{bottom:385.086156px;}
.y27b{bottom:385.212431px;}
.yb9{bottom:389.109009px;}
.yb8{bottom:390.424343px;}
.y1b1{bottom:390.547485px;}
.yf0{bottom:391.234648px;}
.y2c2{bottom:393.645743px;}
.y20{bottom:396.073805px;}
.y7e{bottom:397.660481px;}
.y1e6{bottom:397.810948px;}
.y27a{bottom:397.958681px;}
.y67{bottom:398.051552px;}
.y242{bottom:400.084656px;}
.yef{bottom:406.233148px;}
.y1a8{bottom:406.706242px;}
.y1e2{bottom:410.675995px;}
.y279{bottom:410.704931px;}
.y1f{bottom:411.072305px;}
.y1e4{bottom:412.621490px;}
.y7d{bottom:412.658981px;}
.y1e1{bottom:412.809448px;}
.y66{bottom:413.050052px;}
.y241{bottom:415.083156px;}
.y2c1{bottom:416.150243px;}
.y1d2{bottom:416.209795px;}
.y9c{bottom:416.560628px;}
.y18c{bottom:416.779337px;}
.yee{bottom:421.231648px;}
.y278{bottom:423.451181px;}
.y1e{bottom:426.070805px;}
.y65{bottom:428.048552px;}
.y240{bottom:430.081656px;}
.y2c0{bottom:431.148743px;}
.y9b{bottom:431.559128px;}
.y18b{bottom:431.777837px;}
.y277{bottom:436.197431px;}
.yed{bottom:436.234648px;}
.y1d{bottom:441.121769px;}
.y64{bottom:443.047052px;}
.y23f{bottom:445.080156px;}
.y2bf{bottom:446.148743px;}
.y18a{bottom:446.776337px;}
.y1d3{bottom:448.417294px;}
.y276{bottom:448.943681px;}
.yec{bottom:451.233148px;}
.y154{bottom:452.406281px;}
.y1c{bottom:456.120269px;}
.y63{bottom:458.045552px;}
.y23e{bottom:460.078656px;}
.y275{bottom:461.689931px;}
.y97{bottom:464.904169px;}
.yeb{bottom:466.231648px;}
.y1b{bottom:471.118769px;}
.y62{bottom:473.047052px;}
.y181{bottom:473.599503px;}
.y274{bottom:474.436181px;}
.y23d{bottom:475.077156px;}
.y2be{bottom:476.148743px;}
.y153{bottom:478.356308px;}
.y96{bottom:479.902669px;}
.y1d4{bottom:480.624794px;}
.y22a{bottom:481.212880px;}
.yea{bottom:481.230148px;}
.yc5{bottom:483.111008px;}
.y148{bottom:484.699872px;}
.y1a{bottom:486.117269px;}
.y273{bottom:487.182431px;}
.y61{bottom:488.045552px;}
.y23c{bottom:490.075656px;}
.y2bd{bottom:491.148743px;}
.y95{bottom:494.901169px;}
.y229{bottom:496.211380px;}
.y180{bottom:498.630242px;}
.y272{bottom:499.928681px;}
.y1a9{bottom:500.787362px;}
.y19{bottom:501.115769px;}
.y60{bottom:503.045552px;}
.y152{bottom:504.336136px;}
.y23b{bottom:505.074156px;}
.y271{bottom:512.674931px;}
.y1d5{bottom:512.832294px;}
.ye9{bottom:514.236148px;}
.y18{bottom:516.114269px;}
.y17c{bottom:516.809692px;}
.y5f{bottom:518.045552px;}
.y23a{bottom:520.072656px;}
.y2bc{bottom:522.617238px;}
.y270{bottom:525.421181px;}
.y22f{bottom:528.248260px;}
.ye8{bottom:529.234648px;}
.y151{bottom:530.284332px;}
.y5e{bottom:533.047052px;}
.y189{bottom:533.777710px;}
.y239{bottom:535.071156px;}
.y2bb{bottom:537.615738px;}
.y26f{bottom:538.167431px;}
.ye7{bottom:544.233148px;}
.y1d6{bottom:545.039794px;}
.y22e{bottom:545.783260px;}
.y5d{bottom:548.045552px;}
.y238{bottom:550.069656px;}
.y26e{bottom:550.913681px;}
.y2ba{bottom:552.615738px;}
.y150{bottom:556.234039px;}
.ye6{bottom:559.231648px;}
.y17{bottom:561.258269px;}
.y188{bottom:562.585190px;}
.y5c{bottom:563.047052px;}
.y22d{bottom:563.318260px;}
.y26d{bottom:563.663681px;}
.y237{bottom:565.069656px;}
.ye5{bottom:574.240484px;}
.y1d7{bottom:577.247293px;}
.y16{bottom:577.755269px;}
.y5b{bottom:578.045552px;}
.y22c{bottom:580.853260px;}
.y14f{bottom:582.183746px;}
.y2b9{bottom:582.621738px;}
.ye4{bottom:589.238984px;}
.y187{bottom:591.392715px;}
.y5a{bottom:593.045552px;}
.y149{bottom:593.290192px;}
.y15{bottom:594.252269px;}
.y1aa{bottom:594.868481px;}
.y2b8{bottom:597.620238px;}
.y236{bottom:598.078656px;}
.y22b{bottom:598.388260px;}
.ye3{bottom:604.237484px;}
.y59{bottom:608.056052px;}
.y14{bottom:610.749269px;}
.y17d{bottom:611.622565px;}
.y2b7{bottom:612.618738px;}
.y235{bottom:613.077156px;}
.y26c{bottom:613.163681px;}
.ye2{bottom:619.235984px;}
.y186{bottom:620.231689px;}
.y58{bottom:623.054552px;}
.y13{bottom:627.246269px;}
.y2b6{bottom:627.617238px;}
.y234{bottom:628.075656px;}
.y57{bottom:638.053052px;}
.y129{bottom:641.730011px;}
.y2b5{bottom:642.615738px;}
.y233{bottom:643.074156px;}
.y26b{bottom:643.165181px;}
.y12{bottom:643.743269px;}
.y228{bottom:651.210881px;}
.y56{bottom:653.051552px;}
.y12b{bottom:656.099991px;}
.y128{bottom:656.847885px;}
.y2b4{bottom:657.615738px;}
.y232{bottom:658.072656px;}
.y12f{bottom:658.125000px;}
.y26a{bottom:658.163681px;}
.y11{bottom:660.240269px;}
.y227{bottom:666.209381px;}
.y1ce{bottom:666.739943px;}
.y55{bottom:668.050052px;}
.y1a6{bottom:670.904550px;}
.y231{bottom:673.071156px;}
.y269{bottom:673.163681px;}
.y10{bottom:676.737269px;}
.y1cd{bottom:681.738443px;}
.y146{bottom:682.963052px;}
.y54{bottom:683.048552px;}
.y1a5{bottom:685.903050px;}
.y2b3{bottom:687.615738px;}
.y230{bottom:688.069656px;}
.y221{bottom:693.031494px;}
.yf{bottom:693.234269px;}
.y1cc{bottom:696.736943px;}
.ye1{bottom:696.785984px;}
.y145{bottom:697.961552px;}
.y53{bottom:698.047052px;}
.y1a4{bottom:700.901550px;}
.y2b2{bottom:702.615738px;}
.y226{bottom:702.833405px;}
.y17e{bottom:706.435438px;}
.ye{bottom:709.731269px;}
.y264{bottom:710.569519px;}
.y1cb{bottom:711.735443px;}
.ye0{bottom:711.784484px;}
.y263{bottom:712.412567px;}
.y144{bottom:712.960052px;}
.y52{bottom:713.045552px;}
.yd{bottom:726.228269px;}
.ydf{bottom:726.782984px;}
.y294{bottom:727.653157px;}
.y19b{bottom:727.724991px;}
.y51{bottom:728.047052px;}
.y2b1{bottom:732.720784px;}
.y1c5{bottom:738.558014px;}
.y13f{bottom:739.781982px;}
.yde{bottom:741.781484px;}
.y293{bottom:742.651657px;}
.yc{bottom:742.725269px;}
.y50{bottom:743.045552px;}
.y224{bottom:744.141907px;}
.y2b0{bottom:745.467034px;}
.y25c{bottom:746.570984px;}
.y261{bottom:748.879698px;}
.y1ca{bottom:749.308823px;}
.ydc{bottom:753.593994px;}
.y19a{bottom:753.999164px;}
.ydd{bottom:756.779984px;}
.ydb{bottom:756.781529px;}
.y4f{bottom:758.048506px;}
.y2af{bottom:758.213284px;}
.yb{bottom:759.222269px;}
.y25b{bottom:762.062393px;}
.y25e{bottom:763.429642px;}
.y260{bottom:763.820984px;}
.y220{bottom:766.380616px;}
.yd8{bottom:768.593994px;}
.y2ae{bottom:770.959534px;}
.yda{bottom:771.780029px;}
.yd7{bottom:771.781529px;}
.y196{bottom:772.311859px;}
.y4e{bottom:773.047006px;}
.y13b{bottom:775.466400px;}
.ya{bottom:775.719269px;}
.yd3{bottom:782.243958px;}
.y2ad{bottom:783.705784px;}
.yd6{bottom:784.647034px;}
.y217{bottom:785.068085px;}
.yd2{bottom:786.775474px;}
.yd5{bottom:786.780029px;}
.y4d{bottom:788.045506px;}
.y1c8{bottom:789.666321px;}
.y1a3{bottom:789.750916px;}
.yc4{bottom:791.552983px;}
.y2ac{bottom:796.452034px;}
.y17f{bottom:801.248311px;}
.y4c{bottom:803.045506px;}
.y9{bottom:805.719269px;}
.yc3{bottom:806.551483px;}
.y2ab{bottom:809.198284px;}
.y121{bottom:809.280029px;}
.y256{bottom:809.869537px;}
.y1c4{bottom:811.961056px;}
.y127{bottom:812.565125px;}
.y255{bottom:813.062439px;}
.y1a2{bottom:813.693878px;}
.y258{bottom:815.016174px;}
.y218{bottom:817.645516px;}
.y4b{bottom:818.045506px;}
.y120{bottom:819.972931px;}
.y2aa{bottom:821.944534px;}
.y123{bottom:822.164978px;}
.y8{bottom:823.719269px;}
.y125{bottom:829.603455px;}
.y1bd{bottom:830.596619px;}
.y4a{bottom:833.045506px;}
.y2a9{bottom:834.690784px;}
.y1a1{bottom:837.603882px;}
.y2a8{bottom:847.437034px;}
.y49{bottom:848.048506px;}
.y24e{bottom:848.569519px;}
.y219{bottom:850.230927px;}
.y94{bottom:850.593144px;}
.y253{bottom:850.879698px;}
.y7{bottom:856.707269px;}
.y2a7{bottom:860.183284px;}
.y13c{bottom:860.653653px;}
.y1a0{bottom:861.513885px;}
.y118{bottom:862.980011px;}
.y48{bottom:863.047006px;}
.y250{bottom:863.404633px;}
.y24d{bottom:864.093143px;}
.y93{bottom:865.591644px;}
.y252{bottom:865.820984px;}
.y197{bottom:866.392979px;}
.y1be{bottom:866.488203px;}
.y11e{bottom:867.614960px;}
.y2a6{bottom:872.929534px;}
.y117{bottom:875.022858px;}
.y47{bottom:878.045506px;}
.y11a{bottom:882.788818px;}
.y21a{bottom:882.808817px;}
.y11c{bottom:885.070496px;}
.y2a5{bottom:885.675784px;}
.y46{bottom:893.047006px;}
.y2a4{bottom:898.422034px;}
.y172{bottom:899.718602px;}
.y6{bottom:901.713269px;}
.y1bf{bottom:902.422789px;}
.y45{bottom:908.045506px;}
.yd0{bottom:908.397034px;}
.y2a3{bottom:911.168284px;}
.yd1{bottom:911.879974px;}
.y171{bottom:914.717102px;}
.y21b{bottom:915.365387px;}
.y44{bottom:923.050006px;}
.ycc{bottom:923.397034px;}
.y2a2{bottom:923.914534px;}
.yce{bottom:924.746979px;}
.ycb{bottom:926.879974px;}
.y2a1{bottom:936.660784px;}
.y43{bottom:938.048506px;}
.y1c0{bottom:938.357375px;}
.y266{bottom:940.471619px;}
.y13d{bottom:945.868434px;}
.y17b{bottom:945.918486px;}
.y5{bottom:946.719269px;}
.y21c{bottom:947.942819px;}
.y115{bottom:949.379974px;}
.y2a0{bottom:949.407034px;}
.y114{bottom:951.972931px;}
.y42{bottom:953.047006px;}
.y31{bottom:954.366760px;}
.y198{bottom:960.474098px;}
.y29f{bottom:962.153284px;}
.y17a{bottom:963.453486px;}
.y41{bottom:968.045506px;}
.y1c1{bottom:974.284332px;}
.y29e{bottom:974.899534px;}
.yca{bottom:979.381474px;}
.y21d{bottom:980.520250px;}
.y179{bottom:980.988486px;}
.y40{bottom:983.045506px;}
.y29d{bottom:987.645784px;}
.yc9{bottom:994.382974px;}
.y3f{bottom:998.045506px;}
.y178{bottom:998.523486px;}
.y29c{bottom:1000.392034px;}
.yc8{bottom:1009.381474px;}
.y1c2{bottom:1010.181793px;}
.y3e{bottom:1013.045506px;}
.y21e{bottom:1013.097682px;}
.y29b{bottom:1013.138284px;}
.y177{bottom:1016.058486px;}
.yc7{bottom:1024.379974px;}
.y29a{bottom:1025.884534px;}
.y3d{bottom:1028.045506px;}
.y13e{bottom:1031.083215px;}
.y176{bottom:1033.593486px;}
.y299{bottom:1038.630784px;}
.y3c{bottom:1043.045506px;}
.y21f{bottom:1045.675113px;}
.y1c3{bottom:1046.116379px;}
.y105{bottom:1046.879974px;}
.y175{bottom:1051.128486px;}
.y111{bottom:1051.226119px;}
.y298{bottom:1051.377034px;}
.y143{bottom:1053.260376px;}
.y199{bottom:1054.583348px;}
.y3b{bottom:1058.047006px;}
.y10e{bottom:1061.684967px;}
.y297{bottom:1064.123284px;}
.y107{bottom:1065.478821px;}
.y104{bottom:1066.290122px;}
.y110{bottom:1066.478119px;}
.y112{bottom:1067.761502px;}
.y174{bottom:1068.663486px;}
.y10d{bottom:1071.938141px;}
.y3a{bottom:1073.045506px;}
.y296{bottom:1076.869534px;}
.y10c{bottom:1078.620117px;}
.y173{bottom:1086.198486px;}
.y39{bottom:1088.044006px;}
.y295{bottom:1089.615784px;}
.y7c{bottom:1140.640320px;}
.y9a{bottom:1140.746521px;}
.y38{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h48{height:0.000000px;}
.h2c{height:2.161488px;}
.h6e{height:6.150000px;}
.h82{height:6.754650px;}
.h6c{height:8.100000px;}
.h6b{height:8.998500px;}
.h70{height:10.348500px;}
.h36{height:10.650000px;}
.h22{height:10.950000px;}
.h35{height:11.100000px;}
.h25{height:11.250000px;}
.h23{height:11.550000px;}
.h58{height:11.700000px;}
.h6a{height:11.850000px;}
.h20{height:12.000000px;}
.h2a{height:12.450000px;}
.h33{height:13.200000px;}
.h38{height:13.349999px;}
.h87{height:13.500000px;}
.h28{height:14.250000px;}
.h3f{height:15.001500px;}
.h31{height:15.525134px;}
.h85{height:16.200000px;}
.h51{height:17.099999px;}
.h42{height:19.178849px;}
.h83{height:19.615503px;}
.h75{height:23.085034px;}
.h6d{height:23.776368px;}
.h6f{height:24.208665px;}
.h37{height:24.370777px;}
.h45{height:25.181335px;}
.h3c{height:28.747739px;}
.h76{height:28.800000px;}
.h3b{height:29.240558px;}
.h11{height:30.684673px;}
.h44{height:31.199999px;}
.h74{height:32.690287px;}
.h41{height:33.900000px;}
.h2{height:34.523438px;}
.h89{height:35.411133px;}
.h47{height:36.042812px;}
.h2b{height:36.300000px;}
.h2e{height:36.529147px;}
.h52{height:36.745295px;}
.h21{height:37.826039px;}
.h49{height:38.154640px;}
.h24{height:38.204300px;}
.h26{height:38.474486px;}
.h55{height:38.764201px;}
.h34{height:38.782120px;}
.h4c{height:38.811604px;}
.h8{height:38.838867px;}
.h4d{height:38.897674px;}
.h5b{height:38.988319px;}
.h5e{height:39.075221px;}
.h65{height:39.278130px;}
.h67{height:39.391487px;}
.h68{height:39.478641px;}
.h7c{height:39.729274px;}
.h60{height:39.733016px;}
.h7d{height:39.817424px;}
.h61{height:39.821165px;}
.h7f{height:39.843933px;}
.h63{height:39.847686px;}
.h46{height:40.048499px;}
.h81{height:40.800000px;}
.h71{height:40.876507px;}
.h72{height:40.951500px;}
.h54{height:41.538000px;}
.h12{height:41.668744px;}
.h53{height:43.008000px;}
.h73{height:43.013610px;}
.h88{height:43.574108px;}
.h8a{height:44.505000px;}
.h30{height:44.847736px;}
.h78{height:45.001499px;}
.h8b{height:45.090000px;}
.h3{height:45.679688px;}
.h86{height:45.931619px;}
.h8c{height:46.080000px;}
.h4b{height:46.548809px;}
.h2f{height:46.574431px;}
.h1b{height:47.469727px;}
.h3e{height:48.348447px;}
.h59{height:48.350959px;}
.h14{height:48.534668px;}
.h3a{height:48.600002px;}
.h7{height:49.050293px;}
.h6{height:49.183594px;}
.h13{height:49.373529px;}
.h8d{height:50.439000px;}
.h40{height:50.925316px;}
.h77{height:51.112055px;}
.h79{height:51.112696px;}
.h57{height:51.685603px;}
.h4f{height:51.897735px;}
.h5d{height:51.984563px;}
.h9{height:53.406000px;}
.h27{height:53.417377px;}
.h1c{height:53.535909px;}
.h50{height:53.559863px;}
.h19{height:53.565863px;}
.ha{height:53.571863px;}
.h39{height:53.572523px;}
.h29{height:53.577909px;}
.hc{height:53.583863px;}
.h1d{height:53.589955px;}
.h17{height:53.590046px;}
.hb{height:53.595863px;}
.h18{height:53.596046px;}
.hf{height:53.601863px;}
.h15{height:53.602046px;}
.h32{height:53.602779px;}
.h1f{height:53.607314px;}
.h1a{height:53.607863px;}
.he{height:53.607909px;}
.h16{height:53.608046px;}
.hd{height:53.608504px;}
.h5a{height:53.613907px;}
.h7a{height:54.991068px;}
.h1e{height:55.296000px;}
.h4{height:57.099609px;}
.h7b{height:57.551004px;}
.h3d{height:57.646361px;}
.h69{height:64.365906px;}
.h80{height:65.390976px;}
.h64{height:70.928781px;}
.h2d{height:76.354562px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h43{height:124.795277px;}
.h84{height:152.763162px;}
.h4e{height:326.734497px;}
.h4a{height:358.012505px;}
.h62{height:359.236496px;}
.h5f{height:360.722992px;}
.h56{height:361.385994px;}
.h5c{height:370.069496px;}
.h66{height:400.169998px;}
.h7e{height:404.763016px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w1b{width:4.590000px;}
.w1e{width:7.290000px;}
.w1a{width:9.135000px;}
.w6{width:11.010000px;}
.w1c{width:11.235000px;}
.w1f{width:11.280000px;}
.wb{width:11.820000px;}
.w9{width:12.270000px;}
.wa{width:12.538500px;}
.w1d{width:13.951499px;}
.w5{width:14.370000px;}
.wc{width:14.385000px;}
.wd{width:14.490000px;}
.w3{width:16.770000px;}
.we{width:17.070000px;}
.w2{width:22.755000px;}
.wf{width:23.505000px;}
.w4{width:23.805000px;}
.w19{width:48.600002px;}
.w13{width:87.044998px;}
.w14{width:88.080002px;}
.w25{width:88.455002px;}
.w21{width:92.774998px;}
.w26{width:96.930004px;}
.w7{width:98.834999px;}
.w12{width:104.384995px;}
.w11{width:126.884995px;}
.w22{width:150.779995px;}
.w8{width:159.464996px;}
.w20{width:161.265003px;}
.w24{width:183.089996px;}
.w17{width:191.535004px;}
.w23{width:199.695007px;}
.w10{width:240.330002px;}
.w15{width:637.794022px;}
.w16{width:637.795486px;}
.w18{width:637.796997px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xf{left:-1.190689px;}
.x0{left:0.000000px;}
.x39{left:2.304611px;}
.x8{left:7.228350px;}
.x50{left:11.230499px;}
.x2f{left:14.079941px;}
.x56{left:15.232498px;}
.x9c{left:24.819901px;}
.x42{left:27.631989px;}
.x30{left:30.913971px;}
.x18{left:33.446091px;}
.x45{left:36.812119px;}
.x31{left:42.901978px;}
.x48{left:44.796158px;}
.x84{left:46.422775px;}
.x44{left:48.637802px;}
.x8d{left:55.032898px;}
.x86{left:57.249755px;}
.x47{left:59.842987px;}
.x3{left:61.653603px;}
.x3c{left:67.010284px;}
.x40{left:76.581299px;}
.x98{left:79.784409px;}
.x3e{left:82.265121px;}
.x1b{left:83.936417px;}
.x4a{left:85.485489px;}
.x1d{left:111.800079px;}
.x66{left:123.670378px;}
.x33{left:131.488678px;}
.x1f{left:137.571899px;}
.x7{left:141.395702px;}
.x6c{left:144.317216px;}
.x5b{left:146.709595px;}
.x8f{left:148.142395px;}
.x87{left:155.219101px;}
.x6e{left:160.634992px;}
.x9a{left:180.197113px;}
.x5d{left:181.742112px;}
.x4f{left:193.465508px;}
.x52{left:195.304802px;}
.x4e{left:210.344917px;}
.x62{left:212.459412px;}
.x4b{left:213.841049px;}
.x37{left:214.918350px;}
.x5f{left:216.011398px;}
.x4d{left:217.323417px;}
.x61{left:219.549401px;}
.x6f{left:221.017223px;}
.x54{left:222.355823px;}
.x4c{left:224.301917px;}
.x60{left:226.639390px;}
.x69{left:229.201799px;}
.x72{left:231.600746px;}
.x5{left:233.858253px;}
.x68{left:236.332779px;}
.x5e{left:238.570953px;}
.x91{left:241.559268px;}
.x63{left:243.126761px;}
.x73{left:244.735965px;}
.x23{left:246.189606px;}
.x6{left:251.847298px;}
.x6a{left:252.915473px;}
.x9f{left:254.108253px;}
.xa{left:269.610008px;}
.x93{left:279.675156px;}
.x20{left:282.199654px;}
.x75{left:283.804802px;}
.xb{left:292.396957px;}
.x65{left:301.829086px;}
.x80{left:303.254997px;}
.x81{left:310.606200px;}
.x94{left:318.093750px;}
.x6b{left:321.387291px;}
.x51{left:322.884270px;}
.x76{left:323.954842px;}
.x53{left:333.865952px;}
.x24{left:367.753510px;}
.x25{left:379.634399px;}
.x71{left:403.888046px;}
.x2d{left:412.393478px;}
.x2e{left:420.074387px;}
.x95{left:432.710999px;}
.x67{left:435.256485px;}
.x58{left:436.791000px;}
.x35{left:441.248033px;}
.x2b{left:442.652985px;}
.x83{left:451.925995px;}
.x17{left:453.156600px;}
.x8c{left:457.169998px;}
.x74{left:459.699280px;}
.x32{left:461.478287px;}
.x13{left:464.140503px;}
.x2c{left:466.219482px;}
.x38{left:469.117493px;}
.x14{left:475.194305px;}
.x97{left:476.368336px;}
.x3a{left:480.365982px;}
.x96{left:481.636963px;}
.x16{left:483.142502px;}
.x89{left:486.171021px;}
.x21{left:487.355988px;}
.x41{left:489.035980px;}
.x8a{left:492.486740px;}
.x19{left:496.221909px;}
.x9b{left:498.867462px;}
.x22{left:499.957352px;}
.x59{left:502.311905px;}
.x70{left:512.696548px;}
.x85{left:516.627731px;}
.x1a{left:521.034622px;}
.x9e{left:523.812102px;}
.x43{left:524.916138px;}
.x57{left:527.209030px;}
.x9d{left:529.094238px;}
.x99{left:531.341263px;}
.x46{left:535.338593px;}
.x82{left:536.511017px;}
.x7b{left:538.210510px;}
.x3b{left:541.611877px;}
.x8e{left:543.751968px;}
.x3f{left:547.389587px;}
.x34{left:550.078949px;}
.x7c{left:552.221420px;}
.x49{left:553.699950px;}
.x3d{left:556.934097px;}
.x64{left:558.520477px;}
.x1c{left:559.590591px;}
.x8b{left:561.795593px;}
.x7d{left:563.243271px;}
.x92{left:566.227341px;}
.x36{left:571.329081px;}
.x78{left:573.408005px;}
.x5a{left:575.414108px;}
.x1e{left:577.896881px;}
.x79{left:582.732605px;}
.x4{left:586.814117px;}
.x90{left:603.962265px;}
.x26{left:606.979523px;}
.x5c{left:613.497620px;}
.x27{left:621.424667px;}
.xc{left:624.384018px;}
.x55{left:630.699944px;}
.x7a{left:635.153229px;}
.xd{left:641.186096px;}
.xe{left:642.511505px;}
.x28{left:647.765991px;}
.x29{left:662.317200px;}
.x10{left:666.378021px;}
.x7e{left:689.171997px;}
.x11{left:693.349503px;}
.x7f{left:700.358231px;}
.x12{left:707.780411px;}
.x6d{left:772.057617px;}
.x2a{left:781.790955px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x88{left:808.958130px;}
.x15{left:815.442957px;}
.x77{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.vf{vertical-align:-32.566419pt;}
.v14{vertical-align:-27.619013pt;}
.ve{vertical-align:-19.871419pt;}
.vc{vertical-align:-16.799967pt;}
.v4{vertical-align:-15.866662pt;}
.vb{vertical-align:-12.191488pt;}
.v5{vertical-align:-9.605268pt;}
.v7{vertical-align:-8.112467pt;}
.v6{vertical-align:-7.200033pt;}
.v11{vertical-align:-5.470378pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:5.722663pt;}
.v9{vertical-align:7.199951pt;}
.v12{vertical-align:12.922127pt;}
.va{vertical-align:13.873047pt;}
.v3{vertical-align:16.613431pt;}
.v2{vertical-align:18.666667pt;}
.vd{vertical-align:19.822917pt;}
.v8{vertical-align:33.671179pt;}
.v16{vertical-align:38.906783pt;}
.v10{vertical-align:109.007813pt;}
.v15{vertical-align:133.868154pt;}
.ls82{letter-spacing:-2.358623pt;}
.ls71{letter-spacing:-2.267084pt;}
.ls73{letter-spacing:-1.066863pt;}
.ls85{letter-spacing:-0.997879pt;}
.ls83{letter-spacing:-0.907163pt;}
.ls76{letter-spacing:-0.866826pt;}
.lsb9{letter-spacing:-0.840000pt;}
.lsac{letter-spacing:-0.680000pt;}
.ls72{letter-spacing:-0.600110pt;}
.ls69{letter-spacing:-0.596659pt;}
.ls66{letter-spacing:-0.373333pt;}
.ls10{letter-spacing:-0.336000pt;}
.ls5d{letter-spacing:-0.331880pt;}
.lsb2{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.288000pt;}
.ls6c{letter-spacing:-0.265182pt;}
.ls12{letter-spacing:-0.240000pt;}
.lsb3{letter-spacing:-0.200000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls9d{letter-spacing:-0.186667pt;}
.lsb1{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.144000pt;}
.ls74{letter-spacing:-0.133358pt;}
.ls6b{letter-spacing:-0.132591pt;}
.lsb0{letter-spacing:-0.120000pt;}
.ls2a{letter-spacing:-0.096000pt;}
.lsb6{letter-spacing:-0.080000pt;}
.ls77{letter-spacing:-0.066679pt;}
.ls5e{letter-spacing:-0.066376pt;}
.ls6a{letter-spacing:-0.066295pt;}
.ls7e{letter-spacing:-0.051077pt;}
.ls80{letter-spacing:-0.050964pt;}
.ls9b{letter-spacing:-0.050959pt;}
.ls87{letter-spacing:-0.050381pt;}
.ls75{letter-spacing:-0.050121pt;}
.ls5f{letter-spacing:-0.049782pt;}
.ls11{letter-spacing:-0.048000pt;}
.lsb7{letter-spacing:-0.040000pt;}
.ls22{letter-spacing:-0.031200pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.002837pt;}
.ls91{letter-spacing:0.009004pt;}
.ls3{letter-spacing:0.011754pt;}
.ls4{letter-spacing:0.011917pt;}
.ls1{letter-spacing:0.012242pt;}
.ls34{letter-spacing:0.013671pt;}
.ls3d{letter-spacing:0.019107pt;}
.lsab{letter-spacing:0.020000pt;}
.ls3f{letter-spacing:0.022664pt;}
.ls45{letter-spacing:0.022682pt;}
.ls46{letter-spacing:0.023171pt;}
.lse{letter-spacing:0.024572pt;}
.ls2{letter-spacing:0.024621pt;}
.ls33{letter-spacing:0.028348pt;}
.ls4a{letter-spacing:0.028403pt;}
.ls30{letter-spacing:0.029812pt;}
.ls3e{letter-spacing:0.030143pt;}
.ls28{letter-spacing:0.031200pt;}
.ls59{letter-spacing:0.036505pt;}
.lsa6{letter-spacing:0.040000pt;}
.ls19{letter-spacing:0.048000pt;}
.lsa3{letter-spacing:0.048033pt;}
.ls60{letter-spacing:0.049782pt;}
.ls7c{letter-spacing:0.050381pt;}
.ls7d{letter-spacing:0.050492pt;}
.ls98{letter-spacing:0.050959pt;}
.ls7b{letter-spacing:0.050964pt;}
.ls1d{letter-spacing:0.062400pt;}
.ls65{letter-spacing:0.066295pt;}
.ls6d{letter-spacing:0.066679pt;}
.lsa9{letter-spacing:0.080000pt;}
.ls1a{letter-spacing:0.082106pt;}
.lsb4{letter-spacing:0.083972pt;}
.ls29{letter-spacing:0.093600pt;}
.ls14{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.100497pt;}
.ls2f{letter-spacing:0.101602pt;}
.ls17{letter-spacing:0.120029pt;}
.ls23{letter-spacing:0.124800pt;}
.lsb{letter-spacing:0.126376pt;}
.ls61{letter-spacing:0.139200pt;}
.ls78{letter-spacing:0.140400pt;}
.ls18{letter-spacing:0.141187pt;}
.lsc{letter-spacing:0.141350pt;}
.lsa{letter-spacing:0.141839pt;}
.ls13{letter-spacing:0.142327pt;}
.ls6{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.156000pt;}
.lsa8{letter-spacing:0.160000pt;}
.lsa7{letter-spacing:0.180000pt;}
.ls86{letter-spacing:0.181433pt;}
.ls55{letter-spacing:0.187200pt;}
.ls5{letter-spacing:0.192000pt;}
.lsaa{letter-spacing:0.200000pt;}
.ls81{letter-spacing:0.203857pt;}
.ls41{letter-spacing:0.206400pt;}
.lsa5{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.240000pt;}
.ls4f{letter-spacing:0.240165pt;}
.ls44{letter-spacing:0.259200pt;}
.ls62{letter-spacing:0.271070pt;}
.ls84{letter-spacing:0.272149pt;}
.lsad{letter-spacing:0.280000pt;}
.ls16{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.290602pt;}
.lsb5{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.336000pt;}
.ls15{letter-spacing:0.337639pt;}
.ls21{letter-spacing:0.343200pt;}
.lsaf{letter-spacing:0.360000pt;}
.ls26{letter-spacing:0.374400pt;}
.ls1b{letter-spacing:0.384000pt;}
.lsb8{letter-spacing:0.400000pt;}
.ls7{letter-spacing:0.432000pt;}
.ls58{letter-spacing:0.468000pt;}
.ls47{letter-spacing:0.470452pt;}
.lsa4{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.528000pt;}
.ls56{letter-spacing:0.547576pt;}
.lsae{letter-spacing:0.560000pt;}
.ls25{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.624000pt;}
.ls9c{letter-spacing:0.662473pt;}
.ls57{letter-spacing:0.672000pt;}
.ls79{letter-spacing:0.686400pt;}
.ls93{letter-spacing:0.693596pt;}
.ls24{letter-spacing:0.720000pt;}
.ls5a{letter-spacing:0.816562pt;}
.ls53{letter-spacing:0.839617pt;}
.ls94{letter-spacing:0.938733pt;}
.ls40{letter-spacing:0.960661pt;}
.ls39{letter-spacing:1.008694pt;}
.ls8c{letter-spacing:1.440992pt;}
.ls8f{letter-spacing:1.489025pt;}
.ls8d{letter-spacing:1.873290pt;}
.ls90{letter-spacing:1.921323pt;}
.ls35{letter-spacing:2.641979pt;}
.ls54{letter-spacing:2.648120pt;}
.ls32{letter-spacing:2.662825pt;}
.ls0{letter-spacing:2.666667pt;}
.ls3c{letter-spacing:2.679122pt;}
.ls3b{letter-spacing:2.681580pt;}
.ls63{letter-spacing:2.686061pt;}
.ls4e{letter-spacing:3.297728pt;}
.ls92{letter-spacing:3.473565pt;}
.ls8e{letter-spacing:3.473570pt;}
.ls8b{letter-spacing:3.475686pt;}
.lsd{letter-spacing:3.742267pt;}
.ls2e{letter-spacing:3.910095pt;}
.ls43{letter-spacing:4.113542pt;}
.ls42{letter-spacing:4.113547pt;}
.ls4c{letter-spacing:4.127753pt;}
.lsa1{letter-spacing:6.220786pt;}
.ls88{letter-spacing:6.223390pt;}
.ls51{letter-spacing:6.340365pt;}
.lsa0{letter-spacing:9.798745pt;}
.ls37{letter-spacing:10.663341pt;}
.ls8a{letter-spacing:10.711374pt;}
.ls49{letter-spacing:13.305159pt;}
.ls31{letter-spacing:13.353192pt;}
.ls4d{letter-spacing:13.381414pt;}
.ls96{letter-spacing:14.050069pt;}
.ls95{letter-spacing:14.050118pt;}
.ls89{letter-spacing:14.177672pt;}
.lsa2{letter-spacing:16.016679pt;}
.ls50{letter-spacing:16.020411pt;}
.ls9f{letter-spacing:16.041838pt;}
.ls4b{letter-spacing:16.050531pt;}
.ls36{letter-spacing:17.599307pt;}
.ls9e{letter-spacing:21.326681pt;}
.ls38{letter-spacing:55.670323pt;}
.ls52{letter-spacing:55.844801pt;}
.ls48{letter-spacing:96.546462pt;}
.ls5b{letter-spacing:176.528390pt;}
.ls5c{letter-spacing:176.627955pt;}
.ls97{letter-spacing:176.982228pt;}
.ls9a{letter-spacing:177.084147pt;}
.ls99{letter-spacing:190.027851pt;}
.ls6f{letter-spacing:201.586548pt;}
.ls70{letter-spacing:201.686566pt;}
.ls7a{letter-spacing:203.958988pt;}
.ls68{letter-spacing:206.145747pt;}
.ls64{letter-spacing:206.245178pt;}
.ls6e{letter-spacing:214.238842pt;}
.ls7f{letter-spacing:216.852955pt;}
.ls67{letter-spacing:218.874476pt;}
.ws5c{word-spacing:-230.111557pt;}
.ws73{word-spacing:-228.370879pt;}
.ws66{word-spacing:-225.540891pt;}
.ws5d{word-spacing:-217.482259pt;}
.ws5e{word-spacing:-217.382828pt;}
.ws74{word-spacing:-215.476912pt;}
.ws67{word-spacing:-212.888597pt;}
.ws6e{word-spacing:-201.686566pt;}
.ws85{word-spacing:-201.544691pt;}
.ws87{word-spacing:-188.600986pt;}
.ws86{word-spacing:-188.499067pt;}
.ws54{word-spacing:-187.878778pt;}
.ws53{word-spacing:-187.779213pt;}
.ws0{word-spacing:-42.666667pt;}
.ws79{word-spacing:-20.774025pt;}
.ws77{word-spacing:-20.501876pt;}
.ws78{word-spacing:-19.594714pt;}
.ws76{word-spacing:-18.143253pt;}
.ws6b{word-spacing:-15.069439pt;}
.ws5f{word-spacing:-14.982775pt;}
.ws69{word-spacing:-14.469329pt;}
.ws60{word-spacing:-14.386116pt;}
.ws6c{word-spacing:-14.202613pt;}
.ws6a{word-spacing:-14.002576pt;}
.ws1{word-spacing:-13.333333pt;}
.ws51{word-spacing:-13.305159pt;}
.ws68{word-spacing:-12.802355pt;}
.ws9a{word-spacing:-12.320000pt;}
.ws89{word-spacing:-12.179313pt;}
.ws43{word-spacing:-12.085333pt;}
.ws75{word-spacing:-11.721781pt;}
.ws4e{word-spacing:-11.616000pt;}
.ws88{word-spacing:-11.465880pt;}
.ws7b{word-spacing:-11.335680pt;}
.ws14{word-spacing:-11.136000pt;}
.ws39{word-spacing:-11.040000pt;}
.ws33{word-spacing:-10.896000pt;}
.ws42{word-spacing:-10.704000pt;}
.ws6d{word-spacing:-10.560000pt;}
.ws3b{word-spacing:-10.416000pt;}
.wsa0{word-spacing:-9.280000pt;}
.wsaf{word-spacing:-9.260000pt;}
.wsa8{word-spacing:-9.240000pt;}
.ws9d{word-spacing:-8.840000pt;}
.ws9c{word-spacing:-8.680000pt;}
.ws13{word-spacing:-8.533333pt;}
.ws9b{word-spacing:-8.480000pt;}
.ws58{word-spacing:-7.728000pt;}
.ws41{word-spacing:-7.550400pt;}
.ws1a{word-spacing:-7.456800pt;}
.ws17{word-spacing:-7.425600pt;}
.ws3f{word-spacing:-7.269600pt;}
.ws16{word-spacing:-7.238400pt;}
.ws19{word-spacing:-7.207200pt;}
.ws1c{word-spacing:-7.176000pt;}
.ws15{word-spacing:-7.144800pt;}
.ws1b{word-spacing:-7.113600pt;}
.ws2{word-spacing:-7.082400pt;}
.ws18{word-spacing:-7.051200pt;}
.ws3{word-spacing:-5.893333pt;}
.wsae{word-spacing:-5.200000pt;}
.ws99{word-spacing:-4.896000pt;}
.ws2f{word-spacing:-2.016000pt;}
.ws98{word-spacing:-1.152000pt;}
.ws6{word-spacing:-1.104000pt;}
.wsb{word-spacing:-1.056000pt;}
.ws3e{word-spacing:-0.960661pt;}
.ws23{word-spacing:-0.960000pt;}
.wsa7{word-spacing:-0.920000pt;}
.ws22{word-spacing:-0.912000pt;}
.wsa1{word-spacing:-0.880000pt;}
.ws46{word-spacing:-0.864595pt;}
.ws11{word-spacing:-0.816000pt;}
.ws24{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.720000pt;}
.ws2b{word-spacing:-0.672000pt;}
.wsb5{word-spacing:-0.640000pt;}
.ws21{word-spacing:-0.624000pt;}
.ws40{word-spacing:-0.584081pt;}
.wsd{word-spacing:-0.576000pt;}
.wsac{word-spacing:-0.560000pt;}
.ws4f{word-spacing:-0.528000pt;}
.ws50{word-spacing:-0.480000pt;}
.ws30{word-spacing:-0.336000pt;}
.wsb3{word-spacing:-0.320000pt;}
.ws26{word-spacing:-0.288000pt;}
.wsab{word-spacing:-0.280000pt;}
.ws1f{word-spacing:-0.240000pt;}
.ws9e{word-spacing:-0.234667pt;}
.ws9f{word-spacing:-0.200000pt;}
.ws5{word-spacing:-0.192000pt;}
.ws81{word-spacing:-0.181433pt;}
.wsa6{word-spacing:-0.160000pt;}
.ws31{word-spacing:-0.144000pt;}
.wsa4{word-spacing:-0.120000pt;}
.wsc{word-spacing:-0.096000pt;}
.ws8a{word-spacing:-0.090821pt;}
.ws7c{word-spacing:-0.089677pt;}
.wsb4{word-spacing:-0.080000pt;}
.ws56{word-spacing:-0.073010pt;}
.ws6f{word-spacing:-0.066679pt;}
.ws7f{word-spacing:-0.050964pt;}
.ws8f{word-spacing:-0.050959pt;}
.ws83{word-spacing:-0.050492pt;}
.ws82{word-spacing:-0.050381pt;}
.ws37{word-spacing:-0.048033pt;}
.ws29{word-spacing:-0.048000pt;}
.wsa2{word-spacing:-0.040000pt;}
.ws38{word-spacing:-0.036505pt;}
.ws84{word-spacing:-0.028820pt;}
.ws4{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.040000pt;}
.wsf{word-spacing:0.048000pt;}
.ws71{word-spacing:0.050121pt;}
.ws7e{word-spacing:0.050964pt;}
.ws7d{word-spacing:0.051077pt;}
.ws72{word-spacing:0.066679pt;}
.ws1d{word-spacing:0.096000pt;}
.ws70{word-spacing:0.133358pt;}
.ws34{word-spacing:0.144000pt;}
.wsa9{word-spacing:0.160000pt;}
.ws90{word-spacing:0.186667pt;}
.ws8{word-spacing:0.192000pt;}
.wsaa{word-spacing:0.240000pt;}
.ws55{word-spacing:0.331880pt;}
.ws27{word-spacing:0.336000pt;}
.ws4a{word-spacing:0.384000pt;}
.ws3c{word-spacing:0.432000pt;}
.ws2c{word-spacing:0.480000pt;}
.ws7{word-spacing:0.528000pt;}
.ws20{word-spacing:0.624000pt;}
.wsa{word-spacing:0.672000pt;}
.ws2a{word-spacing:0.720000pt;}
.ws25{word-spacing:0.768000pt;}
.wsb2{word-spacing:0.840000pt;}
.wsad{word-spacing:0.880000pt;}
.ws35{word-spacing:0.912000pt;}
.wsa3{word-spacing:0.920000pt;}
.ws32{word-spacing:0.960000pt;}
.ws80{word-spacing:0.997879pt;}
.ws62{word-spacing:1.008000pt;}
.wse{word-spacing:1.056000pt;}
.wsb1{word-spacing:1.080000pt;}
.ws9{word-spacing:1.104000pt;}
.ws3d{word-spacing:1.152000pt;}
.ws64{word-spacing:1.200000pt;}
.wsbe{word-spacing:1.296000pt;}
.wsa5{word-spacing:1.320000pt;}
.ws1e{word-spacing:1.344000pt;}
.ws12{word-spacing:1.360000pt;}
.ws61{word-spacing:1.392000pt;}
.ws63{word-spacing:1.440000pt;}
.ws97{word-spacing:1.536000pt;}
.ws4b{word-spacing:1.680000pt;}
.ws8e{word-spacing:1.728000pt;}
.wsbc{word-spacing:1.824000pt;}
.ws4c{word-spacing:1.872000pt;}
.ws28{word-spacing:1.920000pt;}
.ws4d{word-spacing:1.968000pt;}
.ws2e{word-spacing:2.256000pt;}
.wsb8{word-spacing:2.688000pt;}
.wsb9{word-spacing:2.784000pt;}
.wsb6{word-spacing:2.832000pt;}
.wsb7{word-spacing:2.976000pt;}
.ws2d{word-spacing:3.312000pt;}
.wsbd{word-spacing:5.040000pt;}
.wsbf{word-spacing:5.568000pt;}
.wsba{word-spacing:5.760000pt;}
.wsbb{word-spacing:6.000000pt;}
.ws44{word-spacing:6.968915pt;}
.ws96{word-spacing:9.846778pt;}
.ws65{word-spacing:10.615308pt;}
.ws36{word-spacing:13.584000pt;}
.ws45{word-spacing:14.217787pt;}
.ws48{word-spacing:14.265821pt;}
.ws57{word-spacing:15.898945pt;}
.ws3a{word-spacing:15.942223pt;}
.ws49{word-spacing:15.964695pt;}
.ws91{word-spacing:15.970257pt;}
.ws94{word-spacing:19.549458pt;}
.ws95{word-spacing:28.339509pt;}
.ws93{word-spacing:38.282353pt;}
.ws92{word-spacing:49.858322pt;}
.ws47{word-spacing:109.851621pt;}
.ws52{word-spacing:165.277568pt;}
.ws7a{word-spacing:191.799699pt;}
.ws59{word-spacing:213.322661pt;}
.ws5a{word-spacing:250.320000pt;}
.ws8d{word-spacing:541.781315pt;}
.ws8b{word-spacing:542.416000pt;}
.ws8c{word-spacing:559.701315pt;}
.ws5b{word-spacing:634.330657pt;}
._1a{margin-left:-218.874481pt;}
._1f{margin-left:-216.852955pt;}
._1d{margin-left:-214.238849pt;}
._1b{margin-left:-206.245166pt;}
._20{margin-left:-204.009952pt;}
._1e{margin-left:-201.586548pt;}
._2a{margin-left:-190.078811pt;}
._2b{margin-left:-177.790338pt;}
._15{margin-left:-176.578173pt;}
._26{margin-left:-48.690696pt;}
._24{margin-left:-46.093656pt;}
._23{margin-left:-45.018874pt;}
._22{margin-left:-43.314152pt;}
._2c{margin-left:-37.835706pt;}
._25{margin-left:-36.626177pt;}
._12{margin-left:-26.898517pt;}
._29{margin-left:-23.155579pt;}
._e{margin-left:-18.624006pt;}
._10{margin-left:-13.920000pt;}
._b{margin-left:-12.118490pt;}
._a{margin-left:-9.958967pt;}
._28{margin-left:-7.824000pt;}
._d{margin-left:-6.276808pt;}
._5{margin-left:-4.894934pt;}
._3{margin-left:-3.856533pt;}
._2{margin-left:-2.625074pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.923741pt;}
._6{width:1.876245pt;}
._7{width:3.144088pt;}
._9{width:4.865425pt;}
._8{width:5.775467pt;}
._38{width:6.671992pt;}
._36{width:8.560000pt;}
._f{width:9.552000pt;}
._1c{width:10.560000pt;}
._35{width:12.080000pt;}
._11{width:13.320538pt;}
._34{width:15.040000pt;}
._37{width:16.520000pt;}
._33{width:38.383222pt;}
._c{width:42.941777pt;}
._17{width:49.651193pt;}
._32{width:56.957612pt;}
._16{width:66.413854pt;}
._21{width:177.407276pt;}
._27{width:182.119616pt;}
._2d{width:184.214317pt;}
._14{width:189.123338pt;}
._18{width:258.794667pt;}
._19{width:275.557328pt;}
._1{width:291.886933pt;}
._13{width:326.769616pt;}
._2f{width:358.472526pt;}
._2e{width:376.301852pt;}
._31{width:701.082631pt;}
._30{width:717.733320pt;}
.fs1d{font-size:28.820267pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsb{font-size:36.505066pt;}
.fs11{font-size:37.333333pt;}
.fs21{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:48.033066pt;}
.fsc{font-size:48.939733pt;}
.fs12{font-size:49.721598pt;}
.fse{font-size:49.782400pt;}
.fsf{font-size:49.892800pt;}
.fs14{font-size:50.009067pt;}
.fs16{font-size:50.120533pt;}
.fs1a{font-size:50.380798pt;}
.fs1b{font-size:50.492267pt;}
.fs1e{font-size:50.959467pt;}
.fs17{font-size:50.964267pt;}
.fs1f{font-size:51.072533pt;}
.fs18{font-size:51.077332pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fsd{font-size:59.706665pt;}
.fs13{font-size:66.295466pt;}
.fs10{font-size:66.376000pt;}
.fs15{font-size:66.678933pt;}
.fs1c{font-size:89.677333pt;}
.fs19{font-size:90.716267pt;}
.fs20{font-size:90.820800pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1f8{bottom:0.040273pt;}
.y12e{bottom:0.041056pt;}
.y1e5{bottom:0.172404pt;}
.y190{bottom:0.173462pt;}
.y202{bottom:0.176127pt;}
.y208{bottom:0.960408pt;}
.y1e9{bottom:1.905599pt;}
.ya2{bottom:1.906535pt;}
.ycf{bottom:1.906657pt;}
.y1e3{bottom:1.906942pt;}
.y262{bottom:2.049479pt;}
.y254{bottom:2.050781pt;}
.ya5{bottom:2.093465pt;}
.yc0{bottom:2.173218pt;}
.ya7{bottom:2.173320pt;}
.y265{bottom:2.226929pt;}
.y11f{bottom:2.320150pt;}
.y211{bottom:2.322937pt;}
.y16f{bottom:2.332265pt;}
.yd9{bottom:2.840005pt;}
.y9f{bottom:2.840007pt;}
.y98{bottom:2.843733pt;}
.y37{bottom:2.843867pt;}
.yc6{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.yba{bottom:2.893311pt;}
.y126{bottom:2.920085pt;}
.ycd{bottom:3.106608pt;}
.y141{bottom:3.823486pt;}
.yc1{bottom:3.973206pt;}
.yab{bottom:4.039856pt;}
.yd4{bottom:4.039876pt;}
.y116{bottom:4.093343pt;}
.y1ec{bottom:4.172404pt;}
.y1f3{bottom:4.173737pt;}
.y257{bottom:4.226807pt;}
.y16c{bottom:4.360402pt;}
.y259{bottom:4.574788pt;}
.y184{bottom:5.178385pt;}
.y19e{bottom:5.207479pt;}
.y1af{bottom:5.209330pt;}
.y14e{bottom:5.793620pt;}
.y170{bottom:9.316132pt;}
.y205{bottom:9.573873pt;}
.y10a{bottom:10.749718pt;}
.y122{bottom:11.453288pt;}
.y119{bottom:12.639974pt;}
.y130{bottom:12.773315pt;}
.y25a{bottom:13.958659pt;}
.y16e{bottom:14.092133pt;}
.y12a{bottom:14.573324pt;}
.y1fd{bottom:14.720398pt;}
.y25d{bottom:14.985474pt;}
.y24f{bottom:14.986816pt;}
.y20c{bottom:16.867065pt;}
.y207{bottom:17.985738pt;}
.y106{bottom:18.560059pt;}
.y113{bottom:18.560140pt;}
.y124{bottom:19.865153pt;}
.y11d{bottom:21.435954pt;}
.y215{bottom:21.822937pt;}
.y182{bottom:22.250407pt;}
.y19c{bottom:23.351481pt;}
.y1ad{bottom:23.380005pt;}
.y36{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y99{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y12d{bottom:25.985474pt;}
.y201{bottom:26.132263pt;}
.y10f{bottom:27.152262pt;}
.y210{bottom:28.279215pt;}
.yc2{bottom:29.437480pt;}
.ybe{bottom:29.438416pt;}
.y11b{bottom:29.571859pt;}
.y12c{bottom:29.585327pt;}
.y1ff{bottom:30.392253pt;}
.y109{bottom:32.376606pt;}
.y14c{bottom:33.062948pt;}
.y20e{bottom:34.003215pt;}
.y25f{bottom:35.517741pt;}
.y251{bottom:35.519043pt;}
.y10b{bottom:37.316162pt;}
.y108{bottom:43.172038pt;}
.y35{bottom:60.477867pt;}
.y13a{bottom:63.105465pt;}
.y1da{bottom:64.536255pt;}
.y222{bottom:65.220825pt;}
.y1c6{bottom:65.248291pt;}
.y195{bottom:67.096132pt;}
.y92{bottom:70.809332pt;}
.y7b{bottom:71.152935pt;}
.y34{bottom:73.811200pt;}
.y139{bottom:76.437465pt;}
.y103{bottom:78.437465pt;}
.y1bc{bottom:79.098799pt;}
.y194{bottom:80.428132pt;}
.y292{bottom:81.821050pt;}
.y91{bottom:84.144004pt;}
.y7a{bottom:84.484935pt;}
.y1fa{bottom:84.943065pt;}
.yb7{bottom:86.943869pt;}
.y33{bottom:87.144533pt;}
.y138{bottom:89.769465pt;}
.y16b{bottom:91.741333pt;}
.y102{bottom:91.769465pt;}
.y1bb{bottom:92.430799pt;}
.y291{bottom:93.151050pt;}
.y193{bottom:93.760132pt;}
.y140{bottom:94.172852pt;}
.y16a{bottom:94.988398pt;}
.y14d{bottom:95.930929pt;}
.y16d{bottom:96.101735pt;}
.y90{bottom:97.476004pt;}
.y79{bottom:97.818269pt;}
.y1f7{bottom:98.226664pt;}
.y1f9{bottom:98.275065pt;}
.y1f6{bottom:98.276398pt;}
.yb6{bottom:100.275869pt;}
.y137{bottom:103.101465pt;}
.y32{bottom:104.439199pt;}
.y290{bottom:104.481050pt;}
.y101{bottom:105.101465pt;}
.y1ba{bottom:105.762799pt;}
.y192{bottom:107.093465pt;}
.y1f2{bottom:107.431997pt;}
.y1f5{bottom:109.711995pt;}
.y8f{bottom:110.808004pt;}
.y78{bottom:111.167602pt;}
.y1f4{bottom:111.608398pt;}
.y1f1{bottom:111.615065pt;}
.yb5{bottom:113.615869pt;}
.y268{bottom:113.842662pt;}
.y28f{bottom:115.811050pt;}
.y136{bottom:116.433465pt;}
.y100{bottom:118.433465pt;}
.y1b9{bottom:119.094799pt;}
.y169{bottom:120.284398pt;}
.y1c7{bottom:121.284261pt;}
.y8e{bottom:124.141337pt;}
.y77{bottom:124.499602pt;}
.y1f0{bottom:124.947065pt;}
.yb4{bottom:126.947869pt;}
.y28e{bottom:127.141050pt;}
.y267{bottom:127.174662pt;}
.y135{bottom:129.765465pt;}
.yff{bottom:131.765465pt;}
.y1b8{bottom:132.426799pt;}
.y168{bottom:133.616398pt;}
.y183{bottom:134.843750pt;}
.y18f{bottom:136.258667pt;}
.y191{bottom:136.426799pt;}
.y18e{bottom:136.428132pt;}
.y76{bottom:137.831602pt;}
.y1ef{bottom:138.279065pt;}
.y28d{bottom:138.471050pt;}
.y30{bottom:138.731070pt;}
.yb3{bottom:140.279869pt;}
.y1ae{bottom:141.678691pt;}
.y19d{bottom:141.679484pt;}
.y134{bottom:143.097465pt;}
.yfe{bottom:145.097465pt;}
.y167{bottom:146.948398pt;}
.y18d{bottom:149.760132pt;}
.y28c{bottom:149.801050pt;}
.y75{bottom:151.163602pt;}
.y1ee{bottom:151.611065pt;}
.y2f{bottom:152.063070pt;}
.y8d{bottom:153.485337pt;}
.y1db{bottom:153.514933pt;}
.yb2{bottom:153.611869pt;}
.y133{bottom:156.429465pt;}
.y2ce{bottom:156.588804pt;}
.yfd{bottom:158.429465pt;}
.y166{bottom:160.280398pt;}
.y28b{bottom:161.131050pt;}
.y74{bottom:164.495602pt;}
.y1ed{bottom:164.943065pt;}
.y2e{bottom:165.396394pt;}
.y1e0{bottom:165.993724pt;}
.y8c{bottom:166.817337pt;}
.yb1{bottom:166.943869pt;}
.y223{bottom:167.935628pt;}
.y132{bottom:169.761465pt;}
.yfc{bottom:171.761465pt;}
.y28a{bottom:172.461050pt;}
.y165{bottom:173.612398pt;}
.y1eb{bottom:174.099996pt;}
.y1e8{bottom:176.380005pt;}
.y73{bottom:177.827602pt;}
.y1ea{bottom:178.275065pt;}
.y1e7{bottom:178.277732pt;}
.y2d{bottom:178.729605pt;}
.y1df{bottom:179.325724pt;}
.y8b{bottom:180.149337pt;}
.yb0{bottom:180.275869pt;}
.y131{bottom:183.093465pt;}
.y2cd{bottom:183.252803pt;}
.y289{bottom:183.791050pt;}
.yfb{bottom:185.093465pt;}
.y164{bottom:186.944398pt;}
.y1b7{bottom:187.725465pt;}
.y72{bottom:191.159602pt;}
.y2c{bottom:192.068271pt;}
.y8a{bottom:193.481337pt;}
.yaf{bottom:193.611869pt;}
.y288{bottom:195.121050pt;}
.y2cc{bottom:196.584803pt;}
.y20b{bottom:198.274658pt;}
.yfa{bottom:198.426799pt;}
.y163{bottom:200.276398pt;}
.y212{bottom:200.597595pt;}
.y1b6{bottom:201.057465pt;}
.y1d9{bottom:203.168009pt;}
.y71{bottom:204.491602pt;}
.y2b{bottom:205.400271pt;}
.y287{bottom:206.451050pt;}
.y89{bottom:206.813337pt;}
.yae{bottom:206.943869pt;}
.y2cb{bottom:209.916803pt;}
.y1de{bottom:211.837606pt;}
.y214{bottom:211.911334pt;}
.y216{bottom:211.913737pt;}
.y20d{bottom:213.341736pt;}
.y162{bottom:213.620398pt;}
.y20a{bottom:213.913066pt;}
.y1b5{bottom:214.389465pt;}
.y213{bottom:215.141866pt;}
.y286{bottom:217.781050pt;}
.y70{bottom:217.823602pt;}
.y2a{bottom:218.732271pt;}
.y88{bottom:220.145337pt;}
.yad{bottom:220.275869pt;}
.y158{bottom:221.272392pt;}
.y24c{bottom:222.310806pt;}
.y2ca{bottom:223.248803pt;}
.y161{bottom:226.952398pt;}
.yf9{bottom:227.768132pt;}
.y285{bottom:229.111050pt;}
.yaa{bottom:229.576009pt;}
.y20f{bottom:230.909729pt;}
.y6f{bottom:231.155602pt;}
.y29{bottom:232.064271pt;}
.y87{bottom:233.477337pt;}
.ya9{bottom:233.605341pt;}
.yac{bottom:233.607869pt;}
.y157{bottom:234.604392pt;}
.y24b{bottom:235.642806pt;}
.y2c9{bottom:236.580803pt;}
.y1ac{bottom:238.231995pt;}
.y1dc{bottom:239.937602pt;}
.y160{bottom:240.284398pt;}
.y284{bottom:240.441050pt;}
.yf8{bottom:241.100132pt;}
.y6e{bottom:244.487602pt;}
.y28{bottom:245.396271pt;}
.y86{bottom:246.809337pt;}
.y156{bottom:247.936392pt;}
.y24a{bottom:248.974806pt;}
.y2c8{bottom:249.912803pt;}
.y283{bottom:251.771050pt;}
.ybd{bottom:253.607992pt;}
.y15f{bottom:253.616398pt;}
.yf7{bottom:254.432132pt;}
.ybf{bottom:257.581197pt;}
.y6d{bottom:257.819602pt;}
.y204{bottom:258.274658pt;}
.y27{bottom:258.732271pt;}
.y85{bottom:260.142670pt;}
.y155{bottom:261.268392pt;}
.y1ab{bottom:261.611053pt;}
.y249{bottom:262.306806pt;}
.y209{bottom:262.714661pt;}
.y282{bottom:263.101050pt;}
.y2c7{bottom:263.244803pt;}
.ybb{bottom:265.379333pt;}
.y206{bottom:266.048543pt;}
.ybc{bottom:266.114543pt;}
.y203{bottom:266.713074pt;}
.y15e{bottom:266.948398pt;}
.y1d8{bottom:267.666057pt;}
.yf6{bottom:267.764132pt;}
.y6c{bottom:271.151602pt;}
.y26{bottom:272.064271pt;}
.y84{bottom:273.477337pt;}
.y281{bottom:274.431050pt;}
.y248{bottom:275.638806pt;}
.y2c6{bottom:276.576803pt;}
.y1a7{bottom:277.863993pt;}
.y15d{bottom:280.280398pt;}
.yf5{bottom:281.096132pt;}
.y1cf{bottom:284.077596pt;}
.y6b{bottom:284.483602pt;}
.y14b{bottom:285.110657pt;}
.y25{bottom:285.396271pt;}
.y280{bottom:285.761050pt;}
.y83{bottom:286.809337pt;}
.y247{bottom:288.970806pt;}
.y1b4{bottom:291.977336pt;}
.y15c{bottom:293.612398pt;}
.yf4{bottom:294.428132pt;}
.y2c5{bottom:296.567327pt;}
.y27f{bottom:297.091050pt;}
.y6a{bottom:297.816935pt;}
.y24{bottom:298.737605pt;}
.ya8{bottom:299.209341pt;}
.y82{bottom:300.142670pt;}
.y1c9{bottom:300.817057pt;}
.y246{bottom:302.302806pt;}
.y1fc{bottom:303.874674pt;}
.y142{bottom:306.053711pt;}
.y15b{bottom:306.944398pt;}
.y1b0{bottom:307.048192pt;}
.y185{bottom:307.701171pt;}
.yf3{bottom:307.761465pt;}
.y27e{bottom:308.421050pt;}
.y2c4{bottom:309.899327pt;}
.ya4{bottom:310.357340pt;}
.y1b3{bottom:310.370667pt;}
.y23{bottom:312.069605pt;}
.ya6{bottom:312.541341pt;}
.ya3{bottom:312.542674pt;}
.y1d0{bottom:312.706485pt;}
.y81{bottom:313.479983pt;}
.y19f{bottom:315.347860pt;}
.y245{bottom:315.634806pt;}
.y1fb{bottom:317.719065pt;}
.y14a{bottom:318.173604pt;}
.y1fe{bottom:318.595072pt;}
.y27d{bottom:319.751050pt;}
.y15a{bottom:320.276398pt;}
.yf2{bottom:321.100132pt;}
.y9e{bottom:323.042664pt;}
.ya1{bottom:323.978658pt;}
.y22{bottom:325.401605pt;}
.ya0{bottom:325.874674pt;}
.y9d{bottom:325.874780pt;}
.y80{bottom:326.811983pt;}
.y69{bottom:327.159602pt;}
.y1b2{bottom:328.762675pt;}
.y244{bottom:328.966806pt;}
.y2c3{bottom:329.903327pt;}
.y27c{bottom:331.081050pt;}
.y200{bottom:332.538798pt;}
.y159{bottom:333.608398pt;}
.y147{bottom:334.353597pt;}
.yf1{bottom:334.432132pt;}
.y1dd{bottom:337.094238pt;}
.y21{bottom:338.733605pt;}
.y7f{bottom:340.143983pt;}
.y68{bottom:340.491602pt;}
.y225{bottom:340.939209pt;}
.y1d1{bottom:341.335373pt;}
.y243{bottom:342.298806pt;}
.y27b{bottom:342.411050pt;}
.yb9{bottom:345.874674pt;}
.yb8{bottom:347.043860pt;}
.y1b1{bottom:347.153320pt;}
.yf0{bottom:347.764132pt;}
.y2c2{bottom:349.907327pt;}
.y20{bottom:352.065605pt;}
.y7e{bottom:353.475983pt;}
.y1e6{bottom:353.609732pt;}
.y27a{bottom:353.741050pt;}
.y67{bottom:353.823602pt;}
.y242{bottom:355.630806pt;}
.yef{bottom:361.096132pt;}
.y1a8{bottom:361.516660pt;}
.y1e2{bottom:365.045329pt;}
.y279{bottom:365.071050pt;}
.y1f{bottom:365.397605pt;}
.y1e4{bottom:366.774658pt;}
.y7d{bottom:366.807983pt;}
.y1e1{bottom:366.941732pt;}
.y66{bottom:367.155602pt;}
.y241{bottom:368.962806pt;}
.y2c1{bottom:369.911327pt;}
.y1d2{bottom:369.964262pt;}
.y9c{bottom:370.276114pt;}
.y18c{bottom:370.470521pt;}
.yee{bottom:374.428132pt;}
.y278{bottom:376.401050pt;}
.y1e{bottom:378.729605pt;}
.y65{bottom:380.487602pt;}
.y240{bottom:382.294806pt;}
.y2c0{bottom:383.243327pt;}
.y9b{bottom:383.608114pt;}
.y18b{bottom:383.802521pt;}
.y277{bottom:387.731050pt;}
.yed{bottom:387.764132pt;}
.y1d{bottom:392.108239pt;}
.y64{bottom:393.819602pt;}
.y23f{bottom:395.626806pt;}
.y2bf{bottom:396.576660pt;}
.y18a{bottom:397.134521pt;}
.y1d3{bottom:398.593151pt;}
.y276{bottom:399.061050pt;}
.yec{bottom:401.096132pt;}
.y154{bottom:402.138916pt;}
.y1c{bottom:405.440239pt;}
.y63{bottom:407.151602pt;}
.y23e{bottom:408.958806pt;}
.y275{bottom:410.391050pt;}
.y97{bottom:413.248150pt;}
.yeb{bottom:414.428132pt;}
.y1b{bottom:418.772239pt;}
.y62{bottom:420.486269pt;}
.y181{bottom:420.977336pt;}
.y274{bottom:421.721050pt;}
.y23d{bottom:422.290806pt;}
.y2be{bottom:423.243327pt;}
.y153{bottom:425.205607pt;}
.y96{bottom:426.580150pt;}
.y1d4{bottom:427.222039pt;}
.y22a{bottom:427.744782pt;}
.yea{bottom:427.760132pt;}
.yc5{bottom:429.432007pt;}
.y148{bottom:430.844331pt;}
.y1a{bottom:432.104239pt;}
.y273{bottom:433.051050pt;}
.y61{bottom:433.818269pt;}
.y23c{bottom:435.622806pt;}
.y2bd{bottom:436.576660pt;}
.y95{bottom:439.912150pt;}
.y229{bottom:441.076782pt;}
.y180{bottom:443.226881pt;}
.y272{bottom:444.381050pt;}
.y1a9{bottom:445.144321pt;}
.y19{bottom:445.436239pt;}
.y60{bottom:447.151602pt;}
.y152{bottom:448.298787pt;}
.y23b{bottom:448.954806pt;}
.y271{bottom:455.711050pt;}
.y1d5{bottom:455.850928pt;}
.ye9{bottom:457.098799pt;}
.y18{bottom:458.768239pt;}
.y17c{bottom:459.386393pt;}
.y5f{bottom:460.484935pt;}
.y23a{bottom:462.286806pt;}
.y2bc{bottom:464.548656pt;}
.y270{bottom:467.041050pt;}
.y22f{bottom:469.554009pt;}
.ye8{bottom:470.430799pt;}
.y151{bottom:471.363851pt;}
.y5e{bottom:473.819602pt;}
.y189{bottom:474.469076pt;}
.y239{bottom:475.618806pt;}
.y2bb{bottom:477.880656pt;}
.y26f{bottom:478.371050pt;}
.ye7{bottom:483.762799pt;}
.y1d6{bottom:484.479817pt;}
.y22e{bottom:485.140675pt;}
.y5d{bottom:487.151602pt;}
.y238{bottom:488.950806pt;}
.y26e{bottom:489.701050pt;}
.y2ba{bottom:491.213989pt;}
.y150{bottom:494.430257pt;}
.ye6{bottom:497.094799pt;}
.y17{bottom:498.896239pt;}
.y188{bottom:500.075724pt;}
.y5c{bottom:500.486269pt;}
.y22d{bottom:500.727342pt;}
.y26d{bottom:501.034383pt;}
.y237{bottom:502.284139pt;}
.ye5{bottom:510.435985pt;}
.y1d7{bottom:513.108705pt;}
.y16{bottom:513.560239pt;}
.y5b{bottom:513.818269pt;}
.y22c{bottom:516.314009pt;}
.y14f{bottom:517.496663pt;}
.y2b9{bottom:517.885989pt;}
.ye4{bottom:523.767985pt;}
.y187{bottom:525.682414pt;}
.y5a{bottom:527.151602pt;}
.y149{bottom:527.369059pt;}
.y15{bottom:528.224239pt;}
.y1aa{bottom:528.771983pt;}
.y2b8{bottom:531.217989pt;}
.y236{bottom:531.625472pt;}
.y22b{bottom:531.900675pt;}
.ye3{bottom:537.099985pt;}
.y59{bottom:540.494269pt;}
.y14{bottom:542.888239pt;}
.y17d{bottom:543.664502pt;}
.y2b7{bottom:544.549989pt;}
.y235{bottom:544.957472pt;}
.y26c{bottom:545.034383pt;}
.ye2{bottom:550.431985pt;}
.y186{bottom:551.317057pt;}
.y58{bottom:553.826269pt;}
.y13{bottom:557.552239pt;}
.y2b6{bottom:557.881989pt;}
.y234{bottom:558.289472pt;}
.y57{bottom:567.158269pt;}
.y129{bottom:570.426676pt;}
.y2b5{bottom:571.213989pt;}
.y233{bottom:571.621472pt;}
.y26b{bottom:571.702383pt;}
.y12{bottom:572.216239pt;}
.y228{bottom:578.854117pt;}
.y56{bottom:580.490269pt;}
.y12b{bottom:583.199992pt;}
.y128{bottom:583.864787pt;}
.y2b4{bottom:584.547323pt;}
.y232{bottom:584.953472pt;}
.y12f{bottom:585.000000pt;}
.y26a{bottom:585.034383pt;}
.y11{bottom:586.880239pt;}
.y227{bottom:592.186117pt;}
.y1ce{bottom:592.657727pt;}
.y55{bottom:593.822269pt;}
.y1a6{bottom:596.359600pt;}
.y231{bottom:598.285472pt;}
.y269{bottom:598.367716pt;}
.y10{bottom:601.544239pt;}
.y1cd{bottom:605.989727pt;}
.y146{bottom:607.078269pt;}
.y54{bottom:607.154269pt;}
.y1a5{bottom:609.691600pt;}
.y2b3{bottom:611.213989pt;}
.y230{bottom:611.617472pt;}
.y221{bottom:616.027995pt;}
.yf{bottom:616.208239pt;}
.y1cc{bottom:619.321727pt;}
.ye1{bottom:619.365319pt;}
.y145{bottom:620.410269pt;}
.y53{bottom:620.486269pt;}
.y1a4{bottom:623.023600pt;}
.y2b2{bottom:624.547323pt;}
.y226{bottom:624.740804pt;}
.y17e{bottom:627.942611pt;}
.ye{bottom:630.872239pt;}
.y264{bottom:631.617350pt;}
.y1cb{bottom:632.653727pt;}
.ye0{bottom:632.697319pt;}
.y263{bottom:633.255615pt;}
.y144{bottom:633.742269pt;}
.y52{bottom:633.818269pt;}
.yd{bottom:645.536239pt;}
.ydf{bottom:646.029319pt;}
.y294{bottom:646.802806pt;}
.y19b{bottom:646.866659pt;}
.y51{bottom:647.152935pt;}
.y2b1{bottom:651.307363pt;}
.y1c5{bottom:656.496012pt;}
.y13f{bottom:657.583984pt;}
.yde{bottom:659.361319pt;}
.y293{bottom:660.134806pt;}
.yc{bottom:660.200239pt;}
.y50{bottom:660.484935pt;}
.y224{bottom:661.459473pt;}
.y2b0{bottom:662.637363pt;}
.y25c{bottom:663.618652pt;}
.y261{bottom:665.670843pt;}
.y1ca{bottom:666.052287pt;}
.ydc{bottom:669.861328pt;}
.y19a{bottom:670.221479pt;}
.ydd{bottom:672.693319pt;}
.ydb{bottom:672.694693pt;}
.y4f{bottom:673.820895pt;}
.y2af{bottom:673.967363pt;}
.yb{bottom:674.864239pt;}
.y25b{bottom:677.388794pt;}
.y25e{bottom:678.604126pt;}
.y260{bottom:678.951986pt;}
.y220{bottom:681.227214pt;}
.yd8{bottom:683.194661pt;}
.y2ae{bottom:685.297363pt;}
.yda{bottom:686.026693pt;}
.yd7{bottom:686.028026pt;}
.y196{bottom:686.499430pt;}
.y4e{bottom:687.152895pt;}
.y13b{bottom:689.303467pt;}
.ya{bottom:689.528239pt;}
.yd3{bottom:695.327962pt;}
.y2ad{bottom:696.627363pt;}
.yd6{bottom:697.464030pt;}
.y217{bottom:697.838298pt;}
.yd2{bottom:699.355977pt;}
.yd5{bottom:699.360026pt;}
.y4d{bottom:700.484895pt;}
.y1c8{bottom:701.925618pt;}
.y1a3{bottom:702.000814pt;}
.yc4{bottom:703.602652pt;}
.y2ac{bottom:707.957363pt;}
.y17f{bottom:712.220721pt;}
.y4c{bottom:713.818228pt;}
.y9{bottom:716.194906pt;}
.yc3{bottom:716.934652pt;}
.y2ab{bottom:719.287363pt;}
.y121{bottom:719.360026pt;}
.y256{bottom:719.884033pt;}
.y1c4{bottom:721.743161pt;}
.y127{bottom:722.280111pt;}
.y255{bottom:722.722168pt;}
.y1a2{bottom:723.283447pt;}
.y258{bottom:724.458822pt;}
.y218{bottom:726.796014pt;}
.y4b{bottom:727.151561pt;}
.y120{bottom:728.864827pt;}
.y2aa{bottom:730.617363pt;}
.y123{bottom:730.813314pt;}
.y8{bottom:732.194906pt;}
.y125{bottom:737.425293pt;}
.y1bd{bottom:738.308105pt;}
.y4a{bottom:740.484895pt;}
.y2a9{bottom:741.947363pt;}
.y1a1{bottom:744.536784pt;}
.y2a8{bottom:753.277363pt;}
.y49{bottom:753.820895pt;}
.y24e{bottom:754.284017pt;}
.y219{bottom:755.760824pt;}
.y94{bottom:756.082795pt;}
.y253{bottom:756.337510pt;}
.y7{bottom:761.517572pt;}
.y2a7{bottom:764.607363pt;}
.y13c{bottom:765.025469pt;}
.y1a0{bottom:765.790120pt;}
.y118{bottom:767.093343pt;}
.y48{bottom:767.152895pt;}
.y250{bottom:767.470785pt;}
.y24d{bottom:768.082794pt;}
.y93{bottom:769.414795pt;}
.y252{bottom:769.618652pt;}
.y197{bottom:770.127092pt;}
.y1be{bottom:770.211736pt;}
.y11e{bottom:771.213298pt;}
.y2a6{bottom:775.937363pt;}
.y117{bottom:777.798096pt;}
.y47{bottom:780.484895pt;}
.y11a{bottom:784.701172pt;}
.y21a{bottom:784.718949pt;}
.y11c{bottom:786.729329pt;}
.y2a5{bottom:787.267363pt;}
.y46{bottom:793.819561pt;}
.y2a4{bottom:798.597363pt;}
.y172{bottom:799.749868pt;}
.y6{bottom:801.522906pt;}
.y1bf{bottom:802.153591pt;}
.y45{bottom:807.151561pt;}
.yd0{bottom:807.464030pt;}
.y2a3{bottom:809.927363pt;}
.yd1{bottom:810.559977pt;}
.y171{bottom:813.081868pt;}
.y21b{bottom:813.658122pt;}
.y44{bottom:820.488895pt;}
.ycc{bottom:820.797363pt;}
.y2a2{bottom:821.257363pt;}
.yce{bottom:821.997314pt;}
.ycb{bottom:823.893311pt;}
.y2a1{bottom:832.587363pt;}
.y43{bottom:833.820895pt;}
.y1c0{bottom:834.095445pt;}
.y266{bottom:835.974772pt;}
.y13d{bottom:840.771941pt;}
.y17b{bottom:840.816432pt;}
.y5{bottom:841.528239pt;}
.y21c{bottom:842.615839pt;}
.y115{bottom:843.893311pt;}
.y2a0{bottom:843.917363pt;}
.y114{bottom:846.198161pt;}
.y42{bottom:847.152895pt;}
.y31{bottom:848.326009pt;}
.y198{bottom:853.754754pt;}
.y29f{bottom:855.247363pt;}
.y17a{bottom:856.403099pt;}
.y41{bottom:860.484895pt;}
.y1c1{bottom:866.030518pt;}
.y29e{bottom:866.577363pt;}
.yca{bottom:870.561311pt;}
.y21d{bottom:871.573556pt;}
.y179{bottom:871.989766pt;}
.y40{bottom:873.818228pt;}
.y29d{bottom:877.907363pt;}
.yc9{bottom:883.895977pt;}
.y3f{bottom:887.151561pt;}
.y178{bottom:887.576432pt;}
.y29c{bottom:889.237363pt;}
.yc8{bottom:897.227977pt;}
.y1c2{bottom:897.939372pt;}
.y3e{bottom:900.484895pt;}
.y21e{bottom:900.531273pt;}
.y29b{bottom:900.567363pt;}
.y177{bottom:903.163099pt;}
.yc7{bottom:910.559977pt;}
.y29a{bottom:911.897363pt;}
.y3d{bottom:913.818228pt;}
.y13e{bottom:916.518414pt;}
.y176{bottom:918.749766pt;}
.y299{bottom:923.227363pt;}
.y3c{bottom:927.151561pt;}
.y21f{bottom:929.488989pt;}
.y1c3{bottom:929.881226pt;}
.y105{bottom:930.559977pt;}
.y175{bottom:934.336432pt;}
.y111{bottom:934.423217pt;}
.y298{bottom:934.557363pt;}
.y143{bottom:936.231445pt;}
.y199{bottom:937.407420pt;}
.y3b{bottom:940.486228pt;}
.y10e{bottom:943.719971pt;}
.y297{bottom:945.887363pt;}
.y107{bottom:947.092285pt;}
.y104{bottom:947.813442pt;}
.y110{bottom:947.980550pt;}
.y112{bottom:949.121335pt;}
.y174{bottom:949.923099pt;}
.y10d{bottom:952.833903pt;}
.y3a{bottom:953.818228pt;}
.y296{bottom:957.217363pt;}
.y10c{bottom:958.773438pt;}
.y173{bottom:965.509766pt;}
.y39{bottom:967.150228pt;}
.y295{bottom:968.547363pt;}
.y7c{bottom:1013.902507pt;}
.y9a{bottom:1013.996908pt;}
.y38{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h48{height:0.000000pt;}
.h2c{height:1.921323pt;}
.h6e{height:5.466667pt;}
.h82{height:6.004133pt;}
.h6c{height:7.200000pt;}
.h6b{height:7.998667pt;}
.h70{height:9.198667pt;}
.h36{height:9.466667pt;}
.h22{height:9.733333pt;}
.h35{height:9.866667pt;}
.h25{height:10.000000pt;}
.h23{height:10.266666pt;}
.h58{height:10.400000pt;}
.h6a{height:10.533333pt;}
.h20{height:10.666667pt;}
.h2a{height:11.066667pt;}
.h33{height:11.733333pt;}
.h38{height:11.866666pt;}
.h87{height:12.000000pt;}
.h28{height:12.666667pt;}
.h3f{height:13.334667pt;}
.h31{height:13.800119pt;}
.h85{height:14.400000pt;}
.h51{height:15.199999pt;}
.h42{height:17.047866pt;}
.h83{height:17.436003pt;}
.h75{height:20.520030pt;}
.h6d{height:21.134549pt;}
.h6f{height:21.518813pt;}
.h37{height:21.662913pt;}
.h45{height:22.383409pt;}
.h3c{height:25.553546pt;}
.h76{height:25.600000pt;}
.h3b{height:25.991607pt;}
.h11{height:27.275265pt;}
.h44{height:27.733332pt;}
.h74{height:29.058032pt;}
.h41{height:30.133333pt;}
.h2{height:30.687500pt;}
.h89{height:31.476562pt;}
.h47{height:32.038055pt;}
.h2b{height:32.266667pt;}
.h2e{height:32.470352pt;}
.h52{height:32.662485pt;}
.h21{height:33.623146pt;}
.h49{height:33.915235pt;}
.h24{height:33.959378pt;}
.h26{height:34.199543pt;}
.h55{height:34.457068pt;}
.h34{height:34.472996pt;}
.h4c{height:34.499203pt;}
.h8{height:34.523438pt;}
.h4d{height:34.575710pt;}
.h5b{height:34.656283pt;}
.h5e{height:34.733530pt;}
.h65{height:34.913893pt;}
.h67{height:35.014655pt;}
.h68{height:35.092125pt;}
.h7c{height:35.314910pt;}
.h60{height:35.318237pt;}
.h7d{height:35.393266pt;}
.h61{height:35.396591pt;}
.h7f{height:35.416829pt;}
.h63{height:35.420165pt;}
.h46{height:35.598666pt;}
.h81{height:36.266667pt;}
.h71{height:36.334673pt;}
.h72{height:36.401333pt;}
.h54{height:36.922667pt;}
.h12{height:37.038883pt;}
.h53{height:38.229333pt;}
.h73{height:38.234320pt;}
.h88{height:38.732541pt;}
.h8a{height:39.560000pt;}
.h30{height:39.864654pt;}
.h78{height:40.001333pt;}
.h8b{height:40.080000pt;}
.h3{height:40.604167pt;}
.h86{height:40.828106pt;}
.h8c{height:40.960000pt;}
.h4b{height:41.376719pt;}
.h2f{height:41.399494pt;}
.h1b{height:42.195312pt;}
.h3e{height:42.976398pt;}
.h59{height:42.978631pt;}
.h14{height:43.141927pt;}
.h3a{height:43.200002pt;}
.h7{height:43.600260pt;}
.h6{height:43.718750pt;}
.h13{height:43.887581pt;}
.h8d{height:44.834667pt;}
.h40{height:45.266948pt;}
.h77{height:45.432938pt;}
.h79{height:45.433508pt;}
.h57{height:45.942758pt;}
.h4f{height:46.131320pt;}
.h5d{height:46.208501pt;}
.h9{height:47.472000pt;}
.h27{height:47.482113pt;}
.h1c{height:47.587475pt;}
.h50{height:47.608767pt;}
.h19{height:47.614101pt;}
.ha{height:47.619434pt;}
.h39{height:47.620020pt;}
.h29{height:47.624808pt;}
.hc{height:47.630101pt;}
.h1d{height:47.635515pt;}
.h17{height:47.635597pt;}
.hb{height:47.640767pt;}
.h18{height:47.640930pt;}
.hf{height:47.646101pt;}
.h15{height:47.646264pt;}
.h32{height:47.646915pt;}
.h1f{height:47.650946pt;}
.h1a{height:47.651434pt;}
.he{height:47.651475pt;}
.h16{height:47.651597pt;}
.hd{height:47.652004pt;}
.h5a{height:47.656806pt;}
.h7a{height:48.880949pt;}
.h1e{height:49.152000pt;}
.h4{height:50.755208pt;}
.h7b{height:51.156448pt;}
.h3d{height:51.241210pt;}
.h69{height:57.214139pt;}
.h80{height:58.125312pt;}
.h64{height:63.047805pt;}
.h2d{height:67.870722pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h43{height:110.929135pt;}
.h84{height:135.789477pt;}
.h4e{height:290.430664pt;}
.h4a{height:318.233337pt;}
.h62{height:319.321330pt;}
.h5f{height:320.642660pt;}
.h56{height:321.231995pt;}
.h5c{height:328.950663pt;}
.h66{height:355.706665pt;}
.h7e{height:359.789347pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w1b{width:4.080000pt;}
.w1e{width:6.480000pt;}
.w1a{width:8.120000pt;}
.w6{width:9.786667pt;}
.w1c{width:9.986666pt;}
.w1f{width:10.026667pt;}
.wb{width:10.506667pt;}
.w9{width:10.906667pt;}
.wa{width:11.145333pt;}
.w1d{width:12.401333pt;}
.w5{width:12.773333pt;}
.wc{width:12.786667pt;}
.wd{width:12.880000pt;}
.w3{width:14.906667pt;}
.we{width:15.173333pt;}
.w2{width:20.226667pt;}
.wf{width:20.893333pt;}
.w4{width:21.160000pt;}
.w19{width:43.200002pt;}
.w13{width:77.373332pt;}
.w14{width:78.293335pt;}
.w25{width:78.626668pt;}
.w21{width:82.466665pt;}
.w26{width:86.160004pt;}
.w7{width:87.853333pt;}
.w12{width:92.786662pt;}
.w11{width:112.786662pt;}
.w22{width:134.026662pt;}
.w8{width:141.746663pt;}
.w20{width:143.346670pt;}
.w24{width:162.746663pt;}
.w17{width:170.253337pt;}
.w23{width:177.506673pt;}
.w10{width:213.626668pt;}
.w15{width:566.928019pt;}
.w16{width:566.929321pt;}
.w18{width:566.930664pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xf{left:-1.058390pt;}
.x0{left:0.000000pt;}
.x39{left:2.048543pt;}
.x8{left:6.425200pt;}
.x50{left:9.982666pt;}
.x2f{left:12.515503pt;}
.x56{left:13.539998pt;}
.x9c{left:22.062134pt;}
.x42{left:24.561768pt;}
.x30{left:27.479085pt;}
.x18{left:29.729858pt;}
.x45{left:32.721883pt;}
.x31{left:38.135091pt;}
.x48{left:39.818807pt;}
.x84{left:41.264689pt;}
.x44{left:43.233602pt;}
.x8d{left:48.918132pt;}
.x86{left:50.888671pt;}
.x47{left:53.193766pt;}
.x3{left:54.803202pt;}
.x3c{left:59.564697pt;}
.x40{left:68.072266pt;}
.x98{left:70.919474pt;}
.x3e{left:73.124552pt;}
.x1b{left:74.610148pt;}
.x4a{left:75.987101pt;}
.x1d{left:99.377848pt;}
.x66{left:109.929225pt;}
.x33{left:116.878825pt;}
.x1f{left:122.286133pt;}
.x7{left:125.685069pt;}
.x6c{left:128.281970pt;}
.x5b{left:130.408529pt;}
.x8f{left:131.682129pt;}
.x87{left:137.972534pt;}
.x6e{left:142.786660pt;}
.x9a{left:160.175212pt;}
.x5d{left:161.548544pt;}
.x4f{left:171.969340pt;}
.x52{left:173.604268pt;}
.x4e{left:186.973260pt;}
.x62{left:188.852810pt;}
.x4b{left:190.080933pt;}
.x37{left:191.038534pt;}
.x5f{left:192.010132pt;}
.x4d{left:193.176371pt;}
.x61{left:195.155023pt;}
.x6f{left:196.459753pt;}
.x54{left:197.649620pt;}
.x4c{left:199.379482pt;}
.x60{left:201.457236pt;}
.x69{left:203.734932pt;}
.x72{left:205.867330pt;}
.x5{left:207.874003pt;}
.x68{left:210.073581pt;}
.x5e{left:212.063070pt;}
.x91{left:214.719349pt;}
.x63{left:216.112677pt;}
.x73{left:217.543080pt;}
.x23{left:218.835205pt;}
.x6{left:223.864265pt;}
.x6a{left:224.813754pt;}
.x9f{left:225.874003pt;}
.xa{left:239.653341pt;}
.x93{left:248.600138pt;}
.x20{left:250.844137pt;}
.x75{left:252.270935pt;}
.xb{left:259.908407pt;}
.x65{left:268.292521pt;}
.x80{left:269.559998pt;}
.x81{left:276.094400pt;}
.x94{left:282.750000pt;}
.x6b{left:285.677592pt;}
.x51{left:287.008240pt;}
.x76{left:287.959859pt;}
.x53{left:296.769735pt;}
.x24{left:326.892008pt;}
.x25{left:337.452799pt;}
.x71{left:359.011597pt;}
.x2d{left:366.571981pt;}
.x2e{left:373.399455pt;}
.x95{left:384.631999pt;}
.x67{left:386.894653pt;}
.x58{left:388.258667pt;}
.x35{left:392.220474pt;}
.x2b{left:393.469320pt;}
.x83{left:401.711995pt;}
.x17{left:402.805867pt;}
.x8c{left:406.373332pt;}
.x74{left:408.621582pt;}
.x32{left:410.202922pt;}
.x13{left:412.569336pt;}
.x2c{left:414.417318pt;}
.x38{left:416.993327pt;}
.x14{left:422.394938pt;}
.x97{left:423.438521pt;}
.x3a{left:426.991984pt;}
.x96{left:428.121745pt;}
.x16{left:429.460002pt;}
.x89{left:432.152018pt;}
.x21{left:433.205322pt;}
.x41{left:434.698649pt;}
.x8a{left:437.765991pt;}
.x19{left:441.086141pt;}
.x9b{left:443.437744pt;}
.x22{left:444.406535pt;}
.x59{left:446.499471pt;}
.x70{left:455.730265pt;}
.x85{left:459.224650pt;}
.x1a{left:463.141886pt;}
.x9e{left:465.610757pt;}
.x43{left:466.592122pt;}
.x57{left:468.630249pt;}
.x9d{left:470.305990pt;}
.x99{left:472.303345pt;}
.x46{left:475.856527pt;}
.x82{left:476.898682pt;}
.x7b{left:478.409342pt;}
.x3b{left:481.432780pt;}
.x8e{left:483.335083pt;}
.x3f{left:486.568522pt;}
.x34{left:488.959066pt;}
.x7c{left:490.863485pt;}
.x49{left:492.177733pt;}
.x3d{left:495.052531pt;}
.x64{left:496.462646pt;}
.x1c{left:497.413859pt;}
.x8b{left:499.373861pt;}
.x7d{left:500.660685pt;}
.x92{left:503.313192pt;}
.x36{left:507.848072pt;}
.x78{left:509.696004pt;}
.x5a{left:511.479207pt;}
.x1e{left:513.686117pt;}
.x79{left:517.984538pt;}
.x4{left:521.612549pt;}
.x90{left:536.855347pt;}
.x26{left:539.537354pt;}
.x5c{left:545.331217pt;}
.x27{left:552.377482pt;}
.xc{left:555.008016pt;}
.x55{left:560.622172pt;}
.x7a{left:564.580648pt;}
.xd{left:569.943197pt;}
.xe{left:571.121338pt;}
.x28{left:575.791992pt;}
.x29{left:588.726400pt;}
.x10{left:592.336019pt;}
.x7e{left:612.597331pt;}
.x11{left:616.310669pt;}
.x7f{left:622.540649pt;}
.x12{left:629.138143pt;}
.x6d{left:686.273438pt;}
.x2a{left:694.925293pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x88{left:719.073893pt;}
.x15{left:724.838184pt;}
.x77{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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