
    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_7cafcd921e99b1988352fd04.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.292000;font-style:normal;font-weight: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_80ba32dc9b2c03e0919f6f45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.291000;font-style:normal;font-weight: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_503c046541c8bc71db3e18f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.280000;font-style:normal;font-weight: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_0a43c48580ce01b254ebe172.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;font-style:normal;font-weight: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_00e9aafebff12dfe5685de8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.293000;font-style:normal;font-weight: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_5c1d001511270c73c7a9b98f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.293000;font-style:normal;font-weight: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_7d6ec67c4991758dd8fddecd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_39237a7320ca5fbc8fd7a493.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.291000;font-style:normal;font-weight: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_da0085ec506e7497817af08b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.293000;font-style:normal;font-weight: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_c9174bbe513093a2b8192e58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958000;font-style:normal;font-weight: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_d06f3c0fe623fca42a4e8ec0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight: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_9d1c3e0f4349bb951e56024d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.931000;font-style:normal;font-weight: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_65f93afcd44d48af922cc652.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.884000;font-style:normal;font-weight: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_b4e7bd7316a0ab133f4834db.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.746094;font-style:normal;font-weight: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_ae34935520a3e121ed7a43da.woff2')format("woff");}.fff{font-family:fff;line-height:0.884000;font-style:normal;font-weight: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_45b06c8dcc3bbf9cafef7e92.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.454000;font-style:normal;font-weight: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_0e10fbdc49fcce62faef6bf6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.279000;font-style:normal;font-weight: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_e3212e395408f2785001aefb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.891000;font-style:normal;font-weight: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_a44448f8c65f69a93c759d76.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8956f6a222290f1f056879bf.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.291000;font-style:normal;font-weight: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_cb4c181f384cf42b3e673073.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.376000;font-style:normal;font-weight: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_7cafcd921e99b1988352fd04.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.292000;font-style:normal;font-weight: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_1c02322d5f6b0c2f9d8658ce.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_6ef16ff4fd4adc51bbec8c48.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.931641;font-style:normal;font-weight: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_a4ff734ca718c75271bcccc4.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight: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_8e801fc72c9fcd2870c62118.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_94c864c44387cb3dac12b9b7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.043000;font-style:normal;font-weight: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_6cda2798cdaa3fe29d524ca5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.786000;font-style:normal;font-weight: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_874a560819ec406337ef8bfc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.944000;font-style:normal;font-weight: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_9ddf8f973db0c570ea213ba7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.786000;font-style:normal;font-weight: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_874a560819ec406337ef8bfc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.944000;font-style:normal;font-weight: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_2456416532922340b953f666.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.814000;font-style:normal;font-weight: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_1fb897e55d8126925cdc655c.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.786000;font-style:normal;font-weight: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_f11579c177e6a7e66dbb19ef.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.883000;font-style:normal;font-weight: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_945a207f135e51caa610d0de.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_7813fb47b57c217c09a33c1a.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.944000;font-style:normal;font-weight: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_76d30791d1dc6cbdddb1c65c.woff2')format("woff");}.ff25{font-family:ff25;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;}
@font-face{font-family:ff26;src:url('chunks/assets/font_874a560819ec406337ef8bfc.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.944000;font-style:normal;font-weight: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_874a560819ec406337ef8bfc.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.944000;font-style:normal;font-weight: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_1c02322d5f6b0c2f9d8658ce.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_4f65f443e347be08045abb0f.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.718000;font-style:normal;font-weight: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_452de1df046140bb34793081.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.000000;font-style:normal;font-weight: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_c9174bbe513093a2b8192e58.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.958000;font-style:normal;font-weight: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_9d1c3e0f4349bb951e56024d.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.931000;font-style:normal;font-weight: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_d291c712a77ebe71d136fcf9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.000000;font-style:normal;font-weight: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_ae17f2aced44b82a012e184e.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.908000;font-style:normal;font-weight: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_545733c2a6923f4d09ca7c1b.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.883000;font-style:normal;font-weight: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_16844fffb4dca40faa40b41f.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.737000;font-style:normal;font-weight: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_b5ad40bc8424a6eb1b7000a6.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.814000;font-style:normal;font-weight: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_ef8914d88f29e5f04894edb4.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_3dbd099bac331c3840f6e01f.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.814000;font-style:normal;font-weight: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_69bb30ea4bc2db4c6d4b0381.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.737000;font-style:normal;font-weight: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_f6549083f0b7fcede01b99c0.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.049000;font-style:normal;font-weight: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_2ddbd6b255d0d5441dde4fcb.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_1ac8da3ae0de02de96c71c16.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.814000;font-style:normal;font-weight: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_9900ee2cc2c7acda851a0fce.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.688000;font-style:normal;font-weight: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_25659df9718f53ea1bb9d87f.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_8eb9f16ce056701f59a77043.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{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);}
.m8{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);}
.m9{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);}
.m4{transform:matrix(0.237766,-0.077250,0.077250,0.237766,0,0);-ms-transform:matrix(0.237766,-0.077250,0.077250,0.237766,0,0);-webkit-transform:matrix(0.237766,-0.077250,0.077250,0.237766,0,0);}
.m3{transform:matrix(0.237767,-0.077245,0.077245,0.237767,0,0);-ms-transform:matrix(0.237767,-0.077245,0.077245,0.237767,0,0);-webkit-transform:matrix(0.237767,-0.077245,0.077245,0.237767,0,0);}
.m5{transform:matrix(0.242958,-0.058918,0.058918,0.242958,0,0);-ms-transform:matrix(0.242958,-0.058918,0.058918,0.242958,0,0);-webkit-transform:matrix(0.242958,-0.058918,0.058918,0.242958,0,0);}
.m6{transform:matrix(0.242959,-0.058916,0.058916,0.242959,0,0);-ms-transform:matrix(0.242959,-0.058916,0.058916,0.242959,0,0);-webkit-transform:matrix(0.242959,-0.058916,0.058916,0.242959,0,0);}
.m2{transform:matrix(0.248099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248099,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252923,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:-27.128906px;}
.v8{vertical-align:-23.760132px;}
.v5{vertical-align:-18.810059px;}
.v1{vertical-align:-15.839996px;}
.v12{vertical-align:-14.380806px;}
.vb{vertical-align:-12.899998px;}
.v6{vertical-align:-11.176130px;}
.v9{vertical-align:-9.600037px;}
.v13{vertical-align:-5.976608px;}
.ve{vertical-align:-1.968000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:1.398758px;}
.vd{vertical-align:2.457000px;}
.v14{vertical-align:3.627000px;}
.v10{vertical-align:5.226000px;}
.vc{vertical-align:8.801514px;}
.v3{vertical-align:12.000000px;}
.v15{vertical-align:14.834256px;}
.v2{vertical-align:15.839996px;}
.v4{vertical-align:18.794876px;}
.v7{vertical-align:23.760132px;}
.va{vertical-align:60.000000px;}
.ls6{letter-spacing:-11.016000px;}
.ls7{letter-spacing:-3.777840px;}
.ls71{letter-spacing:-1.350000px;}
.ls42{letter-spacing:-1.305000px;}
.ls12{letter-spacing:-1.283400px;}
.ls73{letter-spacing:-1.218000px;}
.ls4d{letter-spacing:-0.990000px;}
.ls47{letter-spacing:-0.870000px;}
.ls4c{letter-spacing:-0.855000px;}
.ls44{letter-spacing:-0.765000px;}
.ls6a{letter-spacing:-0.720000px;}
.ls6d{letter-spacing:-0.675000px;}
.ls45{letter-spacing:-0.630000px;}
.ls6f{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.478500px;}
.ls6b{letter-spacing:-0.405000px;}
.ls46{letter-spacing:-0.315000px;}
.ls6e{letter-spacing:-0.270000px;}
.ls43{letter-spacing:-0.180000px;}
.ls41{letter-spacing:-0.167400px;}
.ls70{letter-spacing:-0.104940px;}
.ls5{letter-spacing:-0.096000px;}
.ls6c{letter-spacing:-0.045000px;}
.ls4{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.000004px;}
.ls2{letter-spacing:0.000009px;}
.lsc{letter-spacing:0.000030px;}
.ls0{letter-spacing:0.000146px;}
.ls5c{letter-spacing:0.000190px;}
.ls23{letter-spacing:0.000195px;}
.ls1{letter-spacing:0.000447px;}
.ls9{letter-spacing:0.000579px;}
.ls10{letter-spacing:0.000590px;}
.lsa{letter-spacing:0.002979px;}
.ls15{letter-spacing:0.002994px;}
.ls14{letter-spacing:0.003601px;}
.ls26{letter-spacing:0.003648px;}
.lsd{letter-spacing:0.007740px;}
.ls27{letter-spacing:0.007798px;}
.ls11{letter-spacing:0.009030px;}
.ls68{letter-spacing:0.014090px;}
.lsb{letter-spacing:0.015022px;}
.ls67{letter-spacing:0.015243px;}
.ls24{letter-spacing:0.018505px;}
.ls66{letter-spacing:0.020151px;}
.ls5b{letter-spacing:0.044967px;}
.ls55{letter-spacing:0.047194px;}
.ls5a{letter-spacing:0.047330px;}
.ls58{letter-spacing:0.047353px;}
.ls61{letter-spacing:0.047428px;}
.ls57{letter-spacing:0.052469px;}
.ls5f{letter-spacing:0.063000px;}
.ls56{letter-spacing:0.075598px;}
.ls54{letter-spacing:0.075612px;}
.ls3{letter-spacing:0.081000px;}
.ls8{letter-spacing:0.087000px;}
.ls53{letter-spacing:0.089999px;}
.ls52{letter-spacing:0.090000px;}
.ls60{letter-spacing:0.102639px;}
.ls59{letter-spacing:0.116404px;}
.ls1f{letter-spacing:0.165821px;}
.ls63{letter-spacing:0.188294px;}
.ls2a{letter-spacing:0.223198px;}
.ls29{letter-spacing:0.223200px;}
.ls1d{letter-spacing:0.249191px;}
.ls1a{letter-spacing:0.259523px;}
.ls2c{letter-spacing:0.292784px;}
.ls2b{letter-spacing:0.502200px;}
.ls65{letter-spacing:1.688073px;}
.ls1c{letter-spacing:2.501631px;}
.ls1b{letter-spacing:2.989886px;}
.ls1e{letter-spacing:2.990527px;}
.ls72{letter-spacing:3.014997px;}
.ls35{letter-spacing:3.015001px;}
.ls3b{letter-spacing:3.015006px;}
.ls32{letter-spacing:3.015012px;}
.ls31{letter-spacing:3.019481px;}
.ls4a{letter-spacing:3.019505px;}
.ls3a{letter-spacing:3.019506px;}
.ls49{letter-spacing:3.019508px;}
.ls3d{letter-spacing:3.019509px;}
.ls4b{letter-spacing:3.023972px;}
.ls69{letter-spacing:3.023985px;}
.ls3f{letter-spacing:3.024004px;}
.ls40{letter-spacing:3.024006px;}
.ls33{letter-spacing:3.024015px;}
.ls48{letter-spacing:3.024017px;}
.ls3e{letter-spacing:3.024032px;}
.ls36{letter-spacing:3.028517px;}
.ls3c{letter-spacing:3.033029px;}
.ls2d{letter-spacing:3.059999px;}
.ls34{letter-spacing:3.060004px;}
.ls39{letter-spacing:3.060021px;}
.ls2e{letter-spacing:3.064521px;}
.ls30{letter-spacing:3.068982px;}
.ls37{letter-spacing:3.069007px;}
.ls38{letter-spacing:3.069013px;}
.ls2f{letter-spacing:3.082490px;}
.ls4f{letter-spacing:10.167100px;}
.ls5e{letter-spacing:13.611506px;}
.ls64{letter-spacing:15.336295px;}
.ls25{letter-spacing:15.343336px;}
.ls51{letter-spacing:15.349921px;}
.ls4e{letter-spacing:15.475970px;}
.ls62{letter-spacing:21.749068px;}
.ls50{letter-spacing:54.067392px;}
.lsf{letter-spacing:63.999009px;}
.ls18{letter-spacing:66.066000px;}
.ls19{letter-spacing:73.476002px;}
.lse{letter-spacing:75.971992px;}
.ls22{letter-spacing:87.711003px;}
.ls28{letter-spacing:88.647000px;}
.ls17{letter-spacing:137.789999px;}
.ls20{letter-spacing:339.837588px;}
.ls21{letter-spacing:341.832614px;}
.ls16{letter-spacing:998.016021px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa8{word-spacing:-70.935135px;}
.wsa9{word-spacing:-55.591799px;}
.wsb{word-spacing:-49.968000px;}
.ws2{word-spacing:-48.000000px;}
.ws110{word-spacing:-44.832001px;}
.ws112{word-spacing:-35.955266px;}
.ws8{word-spacing:-30.816000px;}
.ws8b{word-spacing:-27.000000px;}
.ws9{word-spacing:-15.408000px;}
.wsa6{word-spacing:-13.950000px;}
.wsd8{word-spacing:-13.168800px;}
.wsda{word-spacing:-12.840000px;}
.wsaa{word-spacing:-12.778200px;}
.ws7{word-spacing:-12.666600px;}
.ws5d{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.913000px;}
.ws59{word-spacing:-11.383200px;}
.ws113{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.848000px;}
.wsb1{word-spacing:-10.842000px;}
.ws5a{word-spacing:-10.368000px;}
.wsdd{word-spacing:-10.305000px;}
.ws111{word-spacing:-10.215000px;}
.ws0{word-spacing:-10.176000px;}
.wsde{word-spacing:-9.990000px;}
.ws10f{word-spacing:-9.945000px;}
.ws5c{word-spacing:-9.792000px;}
.wsdc{word-spacing:-9.675000px;}
.ws109{word-spacing:-9.534000px;}
.ws108{word-spacing:-9.450000px;}
.wsd{word-spacing:-9.234000px;}
.ws10d{word-spacing:-9.090000px;}
.wsdb{word-spacing:-9.000000px;}
.wsa{word-spacing:-8.982864px;}
.ws115{word-spacing:-8.955000px;}
.ws61{word-spacing:-8.613000px;}
.wse0{word-spacing:-8.221500px;}
.wsd9{word-spacing:-7.677410px;}
.wsab{word-spacing:-7.449690px;}
.ws6{word-spacing:-7.384628px;}
.ws4{word-spacing:-6.945279px;}
.ws1{word-spacing:-6.324384px;}
.wsb2{word-spacing:-6.044544px;}
.ws10c{word-spacing:-6.007815px;}
.ws10e{word-spacing:-5.955345px;}
.ws114{word-spacing:-5.850405px;}
.wsc{word-spacing:-5.205024px;}
.ws11d{word-spacing:-4.590000px;}
.ws8e{word-spacing:-4.392000px;}
.ws62{word-spacing:-4.248000px;}
.wsa2{word-spacing:-4.017600px;}
.wsf5{word-spacing:-3.738600px;}
.ws31{word-spacing:-3.403800px;}
.wsa0{word-spacing:-2.957400px;}
.ws3b{word-spacing:-2.511000px;}
.ws86{word-spacing:-2.455200px;}
.ws34{word-spacing:-2.064600px;}
.ws69{word-spacing:-1.674000px;}
.wsc4{word-spacing:-1.562400px;}
.ws48{word-spacing:-1.450800px;}
.ws80{word-spacing:-1.227600px;}
.ws37{word-spacing:-1.116000px;}
.ws30{word-spacing:-1.060200px;}
.wsed{word-spacing:-1.004400px;}
.ws33{word-spacing:-0.948600px;}
.ws119{word-spacing:-0.945000px;}
.ws66{word-spacing:-0.837000px;}
.ws57{word-spacing:-0.810000px;}
.ws2f{word-spacing:-0.781200px;}
.wsd7{word-spacing:-0.725400px;}
.ws9f{word-spacing:-0.558000px;}
.ws11b{word-spacing:-0.540000px;}
.ws9e{word-spacing:-0.502200px;}
.ws55{word-spacing:-0.360000px;}
.ws96{word-spacing:-0.334800px;}
.wsf3{word-spacing:-0.292783px;}
.ws4d{word-spacing:-0.223200px;}
.wsc0{word-spacing:-0.167400px;}
.ws118{word-spacing:-0.090000px;}
.ws58{word-spacing:-0.087000px;}
.wsa7{word-spacing:-0.053798px;}
.wsaf{word-spacing:-0.048000px;}
.wsac{word-spacing:-0.039000px;}
.wsad{word-spacing:-0.027000px;}
.wse{word-spacing:0.000000px;}
.ws11a{word-spacing:0.045000px;}
.wsfa{word-spacing:0.111600px;}
.ws3d{word-spacing:0.167400px;}
.ws10a{word-spacing:0.180000px;}
.ws50{word-spacing:0.279000px;}
.ws22{word-spacing:0.285000px;}
.ws39{word-spacing:0.334800px;}
.wsa3{word-spacing:0.390600px;}
.ws117{word-spacing:0.405000px;}
.wsd2{word-spacing:0.502200px;}
.ws11c{word-spacing:0.540000px;}
.ws4b{word-spacing:0.558000px;}
.ws3a{word-spacing:0.613800px;}
.ws116{word-spacing:0.720000px;}
.wsee{word-spacing:0.781200px;}
.ws7c{word-spacing:0.948600px;}
.wsd6{word-spacing:1.004400px;}
.ws4c{word-spacing:1.060200px;}
.wsfe{word-spacing:1.116000px;}
.ws11e{word-spacing:1.218000px;}
.ws38{word-spacing:1.283400px;}
.ws3f{word-spacing:1.339200px;}
.ws4a{word-spacing:1.450800px;}
.wse9{word-spacing:1.506600px;}
.ws54{word-spacing:1.562400px;}
.wsb5{word-spacing:1.618200px;}
.wsbd{word-spacing:1.729800px;}
.ws94{word-spacing:1.785600px;}
.ws13{word-spacing:1.995000px;}
.ws9d{word-spacing:2.064600px;}
.ws64{word-spacing:2.176200px;}
.wsc9{word-spacing:2.232000px;}
.ws7e{word-spacing:2.287800px;}
.wsce{word-spacing:2.343600px;}
.wsc7{word-spacing:2.399400px;}
.ws70{word-spacing:2.566800px;}
.ws49{word-spacing:2.622600px;}
.wsd5{word-spacing:2.678400px;}
.wsbf{word-spacing:2.734200px;}
.wsb9{word-spacing:2.845800px;}
.wsf2{word-spacing:2.901600px;}
.ws3c{word-spacing:3.013200px;}
.ws102{word-spacing:3.060000px;}
.wse3{word-spacing:3.069000px;}
.ws104{word-spacing:3.105000px;}
.wscc{word-spacing:3.124800px;}
.ws103{word-spacing:3.285000px;}
.wsd4{word-spacing:3.348000px;}
.wsbc{word-spacing:3.403800px;}
.ws107{word-spacing:3.420000px;}
.ws65{word-spacing:3.459600px;}
.ws40{word-spacing:3.515400px;}
.ws6a{word-spacing:3.571200px;}
.wse7{word-spacing:3.627000px;}
.ws67{word-spacing:3.682800px;}
.ws71{word-spacing:3.794400px;}
.wsfc{word-spacing:3.850200px;}
.ws106{word-spacing:3.870000px;}
.wscb{word-spacing:3.906000px;}
.ws3e{word-spacing:4.017600px;}
.ws72{word-spacing:4.073400px;}
.ws10b{word-spacing:4.095000px;}
.ws84{word-spacing:4.185000px;}
.ws14{word-spacing:4.275000px;}
.ws105{word-spacing:4.410000px;}
.wsfd{word-spacing:4.464000px;}
.ws46{word-spacing:4.519800px;}
.ws95{word-spacing:4.575600px;}
.wsba{word-spacing:4.631400px;}
.ws23{word-spacing:4.674000px;}
.wscd{word-spacing:4.687200px;}
.ws53{word-spacing:4.798800px;}
.wsc1{word-spacing:4.854600px;}
.wsa4{word-spacing:4.910400px;}
.wse1{word-spacing:4.966200px;}
.ws29{word-spacing:5.016000px;}
.wsbe{word-spacing:5.022000px;}
.ws98{word-spacing:5.133600px;}
.wsb8{word-spacing:5.189400px;}
.ws8f{word-spacing:5.245200px;}
.wsf1{word-spacing:5.301000px;}
.wsa1{word-spacing:5.356800px;}
.wsec{word-spacing:5.580000px;}
.ws45{word-spacing:5.635800px;}
.ws28{word-spacing:5.643000px;}
.ws44{word-spacing:5.691600px;}
.ws7f{word-spacing:5.914800px;}
.ws97{word-spacing:5.970600px;}
.wsbb{word-spacing:6.026400px;}
.ws43{word-spacing:6.082200px;}
.ws63{word-spacing:6.138000px;}
.ws75{word-spacing:6.193800px;}
.wse5{word-spacing:6.249600px;}
.ws87{word-spacing:6.305400px;}
.wse8{word-spacing:6.361200px;}
.ws17{word-spacing:6.384000px;}
.ws32{word-spacing:6.417000px;}
.ws21{word-spacing:6.498000px;}
.ws93{word-spacing:6.584400px;}
.ws85{word-spacing:6.696000px;}
.ws81{word-spacing:6.807600px;}
.ws12{word-spacing:6.840000px;}
.ws99{word-spacing:6.975000px;}
.ws51{word-spacing:7.030800px;}
.ws2a{word-spacing:7.068000px;}
.ws91{word-spacing:7.086600px;}
.wsf9{word-spacing:7.142400px;}
.ws1f{word-spacing:7.239000px;}
.wsc5{word-spacing:7.254000px;}
.wsc3{word-spacing:7.365600px;}
.ws10{word-spacing:7.467000px;}
.ws41{word-spacing:7.477200px;}
.wse4{word-spacing:7.644600px;}
.ws16{word-spacing:7.695000px;}
.ws35{word-spacing:7.700400px;}
.ws1c{word-spacing:7.809000px;}
.wsc6{word-spacing:7.867800px;}
.wse2{word-spacing:8.091000px;}
.ws77{word-spacing:8.146800px;}
.wse6{word-spacing:8.202600px;}
.ws1a{word-spacing:8.322000px;}
.wsea{word-spacing:8.370000px;}
.ws88{word-spacing:8.481600px;}
.ws7a{word-spacing:8.537400px;}
.wseb{word-spacing:8.593200px;}
.ws73{word-spacing:8.704800px;}
.wsb4{word-spacing:8.872200px;}
.wsfb{word-spacing:8.928000px;}
.ws7d{word-spacing:8.983800px;}
.ws90{word-spacing:9.151200px;}
.ws52{word-spacing:9.262800px;}
.wsc8{word-spacing:9.318600px;}
.ws26{word-spacing:9.348000px;}
.wsca{word-spacing:9.374400px;}
.wsf{word-spacing:9.405000px;}
.wsc2{word-spacing:9.430200px;}
.ws6b{word-spacing:9.486000px;}
.ws24{word-spacing:9.519000px;}
.ws74{word-spacing:9.597600px;}
.ws18{word-spacing:9.633000px;}
.ws6e{word-spacing:9.709200px;}
.ws9c{word-spacing:9.765000px;}
.wsef{word-spacing:9.876600px;}
.ws101{word-spacing:10.099800px;}
.ws47{word-spacing:10.211400px;}
.wsf8{word-spacing:10.267200px;}
.wsf6{word-spacing:10.378800px;}
.ws11{word-spacing:10.431000px;}
.ws15{word-spacing:10.716000px;}
.ws92{word-spacing:10.769400px;}
.ws56{word-spacing:11.016000px;}
.ws83{word-spacing:11.048400px;}
.wsb7{word-spacing:11.327400px;}
.wsb6{word-spacing:11.383200px;}
.ws6c{word-spacing:11.439000px;}
.ws25{word-spacing:11.571000px;}
.ws19{word-spacing:11.685000px;}
.ws9b{word-spacing:11.718000px;}
.wsf0{word-spacing:11.941200px;}
.ws76{word-spacing:12.052800px;}
.ws2b{word-spacing:12.312000px;}
.ws89{word-spacing:12.331800px;}
.ws78{word-spacing:12.555000px;}
.wscf{word-spacing:12.610800px;}
.ws6d{word-spacing:12.889800px;}
.wsa5{word-spacing:13.057200px;}
.ws20{word-spacing:13.110000px;}
.ws1d{word-spacing:13.680000px;}
.ws68{word-spacing:13.838400px;}
.ws82{word-spacing:14.005799px;}
.ws9a{word-spacing:14.173200px;}
.ws42{word-spacing:14.340600px;}
.ws2d{word-spacing:14.619600px;}
.ws100{word-spacing:15.289199px;}
.ws27{word-spacing:15.333000px;}
.wsf4{word-spacing:15.568201px;}
.ws79{word-spacing:15.735600px;}
.ws2e{word-spacing:16.349401px;}
.ws4e{word-spacing:16.851599px;}
.ws7b{word-spacing:17.130601px;}
.ws4f{word-spacing:18.023401px;}
.ws36{word-spacing:19.697399px;}
.wsf7{word-spacing:19.864800px;}
.ws1e{word-spacing:20.691000px;}
.wsd3{word-spacing:20.869201px;}
.ws6f{word-spacing:22.096800px;}
.wsff{word-spacing:23.324401px;}
.ws2c{word-spacing:24.161401px;}
.ws1b{word-spacing:25.935001px;}
.ws5f{word-spacing:52.368005px;}
.ws5e{word-spacing:60.816005px;}
.ws5b{word-spacing:76.560011px;}
.wsae{word-spacing:82.407001px;}
.wsb0{word-spacing:104.402997px;}
.wsd0{word-spacing:333.293990px;}
.ws8d{word-spacing:419.406001px;}
.ws8c{word-spacing:1007.184015px;}
.wsd1{word-spacing:1040.879965px;}
.wsb3{word-spacing:1118.573916px;}
.ws60{word-spacing:1120.705264px;}
.wsdf{word-spacing:1124.098940px;}
.ws8a{word-spacing:1696.200517px;}
._1a{margin-left:-1844.976029px;}
._15{margin-left:-522.444002px;}
._17{margin-left:-519.792005px;}
._1b{margin-left:-175.289429px;}
._18{margin-left:-154.674003px;}
._16{margin-left:-22.777631px;}
._1d{margin-left:-12.690000px;}
._0{margin-left:-9.436800px;}
._8{margin-left:-7.279247px;}
._1{margin-left:-5.640000px;}
._6{margin-left:-4.561740px;}
._3{margin-left:-3.316800px;}
._9{margin-left:-2.299200px;}
._4{margin-left:-1.219200px;}
._5{width:1.070549px;}
._2{width:2.198400px;}
._c{width:3.387648px;}
._7{width:4.622996px;}
._1c{width:7.747804px;}
._19{width:8.773853px;}
._1e{width:22.275001px;}
._b{width:52.452980px;}
._a{width:53.726987px;}
._13{width:67.776011px;}
._e{width:79.584009px;}
._12{width:86.496009px;}
._14{width:89.519992px;}
._10{width:93.407992px;}
._f{width:142.704011px;}
._11{width:170.212797px;}
._d{width:239.499012px;}
.fc4{color:rgb(211,192,229);}
.fc3{color:rgb(237,29,36);}
.fc2{color:rgb(59,105,158);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1f{font-size:26.235000px;}
.fs13{font-size:27.000000px;}
.fs10{font-size:27.000118px;}
.fs12{font-size:27.000276px;}
.fs2{font-size:27.984000px;}
.fs1e{font-size:31.382400px;}
.fs6{font-size:32.531399px;}
.fs4{font-size:33.230999px;}
.fs18{font-size:38.794799px;}
.fs14{font-size:38.999399px;}
.fsd{font-size:39.000000px;}
.fsf{font-size:39.000368px;}
.fs11{font-size:39.000556px;}
.fse{font-size:39.298799px;}
.fsa{font-size:40.500000px;}
.fs1d{font-size:41.842801px;}
.fs9{font-size:41.975999px;}
.fs1b{font-size:42.000000px;}
.fsb{font-size:43.500000px;}
.fs1c{font-size:44.832001px;}
.fs1a{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs16{font-size:53.798401px;}
.fs15{font-size:54.000000px;}
.fs17{font-size:55.591799px;}
.fs5{font-size:55.800001px;}
.fs3{font-size:57.000000px;}
.fs19{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fsc{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y220{bottom:0.735992px;}
.y116{bottom:0.745045px;}
.y131{bottom:0.746086px;}
.y13e{bottom:0.746103px;}
.y273{bottom:0.836243px;}
.y130{bottom:1.098289px;}
.y11b{bottom:1.987347px;}
.y25a{bottom:2.310585px;}
.y128{bottom:4.120800px;}
.y21e{bottom:4.248688px;}
.y271{bottom:4.436920px;}
.y122{bottom:4.463848px;}
.y127{bottom:4.472998px;}
.y258{bottom:17.840240px;}
.y21c{bottom:19.778320px;}
.y223{bottom:19.778961px;}
.y5c{bottom:37.314451px;}
.y15f{bottom:40.539299px;}
.y5b{bottom:40.539451px;}
.y126{bottom:64.860003px;}
.y13d{bottom:68.263498px;}
.y6f{bottom:69.012302px;}
.ye1{bottom:69.012753px;}
.y89{bottom:69.013654px;}
.y125{bottom:69.013802px;}
.y162{bottom:69.014703px;}
.y165{bottom:69.015604px;}
.y1ad{bottom:69.016054px;}
.yd6{bottom:69.016796px;}
.y13c{bottom:69.361799px;}
.y1f6{bottom:69.557109px;}
.y26a{bottom:69.863998px;}
.y2b7{bottom:69.913653px;}
.y7{bottom:70.024498px;}
.y121{bottom:80.287502px;}
.y1f5{bottom:82.607108px;}
.y269{bottom:82.913998px;}
.y2b6{bottom:82.963652px;}
.y123{bottom:84.751350px;}
.ye0{bottom:84.762302px;}
.y6e{bottom:84.762753px;}
.y88{bottom:84.763203px;}
.y124{bottom:84.763802px;}
.y120{bottom:84.764252px;}
.y13b{bottom:84.764703px;}
.y164{bottom:84.765153px;}
.y1ac{bottom:84.765604px;}
.yd5{bottom:84.766345px;}
.y6{bottom:85.024498px;}
.y1f4{bottom:95.657108px;}
.y268{bottom:95.963997px;}
.y2b5{bottom:96.013652px;}
.y5{bottom:100.024498px;}
.y87{bottom:100.512753px;}
.y6d{bottom:100.513203px;}
.ydf{bottom:100.513654px;}
.y11f{bottom:100.513802px;}
.y13a{bottom:100.514252px;}
.y163{bottom:100.514703px;}
.y1ab{bottom:100.515153px;}
.yd4{bottom:100.515895px;}
.y1f3{bottom:108.707108px;}
.y267{bottom:109.013997px;}
.y2b4{bottom:109.063651px;}
.y4{bottom:115.024498px;}
.y86{bottom:116.262302px;}
.y6c{bottom:116.262753px;}
.yde{bottom:116.263203px;}
.y139{bottom:116.263802px;}
.y161{bottom:116.264252px;}
.y11e{bottom:116.264703px;}
.yd3{bottom:116.265444px;}
.y1f2{bottom:121.757107px;}
.y266{bottom:122.063996px;}
.y2b3{bottom:122.113651px;}
.y6b{bottom:132.012302px;}
.y85{bottom:132.012753px;}
.y160{bottom:132.013802px;}
.y11d{bottom:132.014252px;}
.yd2{bottom:132.014994px;}
.y138{bottom:132.015153px;}
.y3{bottom:133.984497px;}
.y1f1{bottom:134.807107px;}
.y265{bottom:135.113996px;}
.y2b2{bottom:135.163651px;}
.y11a{bottom:145.764004px;}
.y84{bottom:147.762302px;}
.y6a{bottom:147.763203px;}
.y11c{bottom:147.763802px;}
.y119{bottom:147.764252px;}
.yd1{bottom:147.764543px;}
.y137{bottom:147.764703px;}
.y1f0{bottom:147.857106px;}
.y264{bottom:148.163995px;}
.y2b1{bottom:148.213646px;}
.y1ef{bottom:160.907106px;}
.y263{bottom:161.213995px;}
.y115{bottom:161.514004px;}
.y117{bottom:162.611252px;}
.y83{bottom:163.512302px;}
.y69{bottom:163.512753px;}
.y118{bottom:163.513802px;}
.yd0{bottom:163.514093px;}
.y136{bottom:163.514252px;}
.y114{bottom:163.515153px;}
.y1ee{bottom:173.957105px;}
.y262{bottom:174.263995px;}
.y175{bottom:176.002353px;}
.y68{bottom:179.262302px;}
.y82{bottom:179.262741px;}
.ycf{bottom:179.263642px;}
.y135{bottom:179.263802px;}
.ydd{bottom:179.264093px;}
.y2e{bottom:179.264252px;}
.y113{bottom:179.264703px;}
.y2b0{bottom:184.213798px;}
.y1ed{bottom:187.007105px;}
.y261{bottom:187.313994px;}
.y174{bottom:191.770352px;}
.y134{bottom:194.263504px;}
.y67{bottom:195.012291px;}
.yce{bottom:195.013192px;}
.ydc{bottom:195.013642px;}
.y54{bottom:195.013802px;}
.y112{bottom:195.014252px;}
.y133{bottom:195.014703px;}
.y2d{bottom:195.016054px;}
.y2af{bottom:197.263797px;}
.y1ec{bottom:200.057104px;}
.y260{bottom:200.363994px;}
.y173{bottom:207.514352px;}
.y2ae{bottom:210.313797px;}
.y66{bottom:210.762741px;}
.y81{bottom:210.763192px;}
.y111{bottom:210.763802px;}
.y132{bottom:210.764252px;}
.y1aa{bottom:210.764703px;}
.y53{bottom:210.765153px;}
.y2c{bottom:210.765604px;}
.y1eb{bottom:213.107104px;}
.y25f{bottom:213.413993px;}
.y172{bottom:223.258352px;}
.y2ad{bottom:223.363792px;}
.y12f{bottom:225.763504px;}
.y1ea{bottom:226.157103px;}
.y25e{bottom:226.463993px;}
.y65{bottom:226.512291px;}
.y80{bottom:226.512741px;}
.y110{bottom:226.513802px;}
.y1a9{bottom:226.514252px;}
.y52{bottom:226.514703px;}
.y2b{bottom:226.515153px;}
.y171{bottom:239.002353px;}
.y1e9{bottom:239.207103px;}
.y25d{bottom:239.514011px;}
.y64{bottom:242.262291px;}
.ycd{bottom:242.262741px;}
.y63{bottom:242.263192px;}
.y12e{bottom:242.263802px;}
.y51{bottom:242.264252px;}
.y2a{bottom:242.264703px;}
.y1a8{bottom:242.265153px;}
.y1e8{bottom:252.257103px;}
.y25c{bottom:252.564011px;}
.y170{bottom:254.746353px;}
.y2ac{bottom:254.863651px;}
.ycc{bottom:258.012291px;}
.y62{bottom:258.012741px;}
.y50{bottom:258.013802px;}
.y29{bottom:258.014252px;}
.y1a7{bottom:258.014703px;}
.y7f{bottom:258.014994px;}
.ydb{bottom:258.025361px;}
.y1e7{bottom:265.307102px;}
.y2ab{bottom:267.913651px;}
.y61{bottom:273.762291px;}
.ycb{bottom:273.763642px;}
.y28{bottom:273.763802px;}
.y1a6{bottom:273.764252px;}
.y7e{bottom:273.764543px;}
.y4f{bottom:273.764703px;}
.yda{bottom:273.774910px;}
.y1e6{bottom:278.357102px;}
.y257{bottom:279.376511px;}
.y2aa{bottom:280.963646px;}
.y25b{bottom:281.687096px;}
.y16d{bottom:289.403549px;}
.y60{bottom:289.512741px;}
.yca{bottom:289.513192px;}
.y27{bottom:289.513802px;}
.y7d{bottom:289.514093px;}
.y4e{bottom:289.514252px;}
.y10f{bottom:289.515604px;}
.y12d{bottom:289.521459px;}
.yd9{bottom:289.524460px;}
.y256{bottom:289.556259px;}
.y1e5{bottom:291.407101px;}
.y259{bottom:297.216751px;}
.y1e4{bottom:304.457101px;}
.y5f{bottom:305.262291px;}
.yc9{bottom:305.262741px;}
.y7c{bottom:305.263642px;}
.y4d{bottom:305.263802px;}
.y10e{bottom:305.265153px;}
.y1a5{bottom:305.265604px;}
.y26{bottom:305.267551px;}
.y12c{bottom:305.271008px;}
.yd8{bottom:305.274009px;}
.y16c{bottom:311.815659px;}
.y2a9{bottom:312.463802px;}
.y1e3{bottom:317.507100px;}
.y255{bottom:318.041863px;}
.yc8{bottom:321.012291px;}
.y7b{bottom:321.013192px;}
.y10d{bottom:321.014703px;}
.y1a4{bottom:321.015153px;}
.y4c{bottom:321.015581px;}
.y12b{bottom:321.020558px;}
.yd7{bottom:321.023559px;}
.y25{bottom:321.025051px;}
.y2a8{bottom:325.513802px;}
.y1e2{bottom:330.557100px;}
.y254{bottom:331.091862px;}
.y7a{bottom:336.762741px;}
.y10c{bottom:336.764252px;}
.y1a3{bottom:336.764703px;}
.y4b{bottom:336.765130px;}
.y12a{bottom:336.770107px;}
.y24{bottom:336.771301px;}
.y2a7{bottom:338.563801px;}
.y1e1{bottom:343.607099px;}
.y253{bottom:344.141862px;}
.y2a6{bottom:351.613801px;}
.y79{bottom:352.512291px;}
.y10b{bottom:352.513802px;}
.y1a2{bottom:352.514252px;}
.y4a{bottom:352.514680px;}
.y23{bottom:352.517551px;}
.y129{bottom:352.519657px;}
.yc7{bottom:353.057854px;}
.y1e0{bottom:356.657099px;}
.y252{bottom:357.191862px;}
.y2a5{bottom:364.663801px;}
.y109{bottom:367.550835px;}
.y78{bottom:368.262764px;}
.y1a1{bottom:368.263802px;}
.y49{bottom:368.264229px;}
.y22{bottom:368.286278px;}
.y1df{bottom:369.707099px;}
.y251{bottom:370.241861px;}
.yc6{bottom:373.433853px;}
.y2a4{bottom:377.713800px;}
.y1de{bottom:382.757098px;}
.y250{bottom:383.291861px;}
.y108{bottom:383.294836px;}
.y77{bottom:384.012314px;}
.y48{bottom:384.013779px;}
.y1a0{bottom:384.015130px;}
.y21{bottom:384.032528px;}
.y2a3{bottom:390.763800px;}
.yc5{bottom:394.621353px;}
.y15e{bottom:394.710577px;}
.y1dd{bottom:395.807098px;}
.y24f{bottom:396.341860px;}
.y107{bottom:399.038836px;}
.y76{bottom:399.763215px;}
.y19f{bottom:399.764680px;}
.y47{bottom:399.765581px;}
.y20{bottom:399.778778px;}
.y2a2{bottom:403.813799px;}
.y1dc{bottom:408.857097px;}
.y24e{bottom:409.391860px;}
.yc4{bottom:409.621353px;}
.y15d{bottom:410.454578px;}
.y106{bottom:414.782836px;}
.y75{bottom:415.512764px;}
.y19e{bottom:415.514229px;}
.y46{bottom:415.515130px;}
.y1f{bottom:415.525028px;}
.y2a1{bottom:416.863799px;}
.y1db{bottom:421.907097px;}
.y24d{bottom:422.441859px;}
.yc3{bottom:424.621353px;}
.y15c{bottom:426.204578px;}
.y2a0{bottom:429.913798px;}
.y105{bottom:430.526837px;}
.y19d{bottom:431.263779px;}
.y45{bottom:431.264680px;}
.y74{bottom:431.265903px;}
.y1e{bottom:431.271278px;}
.y1da{bottom:434.957096px;}
.y24c{bottom:435.491859px;}
.y15b{bottom:441.954578px;}
.y29f{bottom:442.963798px;}
.y104{bottom:446.270837px;}
.y44{bottom:447.014229px;}
.y19c{bottom:447.015130px;}
.y73{bottom:447.015453px;}
.y1d{bottom:447.017529px;}
.y1d9{bottom:448.007096px;}
.y24b{bottom:448.541858px;}
.yc2{bottom:448.613679px;}
.y29e{bottom:456.013797px;}
.y15a{bottom:457.704578px;}
.y1d8{bottom:461.057095px;}
.y24a{bottom:461.591831px;}
.y103{bottom:462.014837px;}
.y43{bottom:462.763779px;}
.y19b{bottom:462.764680px;}
.y72{bottom:462.765002px;}
.y1c{bottom:462.801277px;}
.yc1{bottom:464.368180px;}
.y29d{bottom:469.063633px;}
.y159{bottom:473.448578px;}
.y1d7{bottom:474.107095px;}
.y249{bottom:474.641849px;}
.y102{bottom:477.758838px;}
.y19a{bottom:478.514229px;}
.y71{bottom:478.514552px;}
.y42{bottom:478.515130px;}
.y1b{bottom:478.547527px;}
.yc0{bottom:480.122681px;}
.y29c{bottom:482.113791px;}
.y1d6{bottom:487.157094px;}
.y248{bottom:487.691840px;}
.y101{bottom:493.502838px;}
.y70{bottom:494.264101px;}
.y41{bottom:494.264680px;}
.y1a{bottom:494.293778px;}
.y29b{bottom:495.163790px;}
.y1d5{bottom:500.207094px;}
.y247{bottom:500.741840px;}
.y155{bottom:504.932866px;}
.y156{bottom:504.934799px;}
.y29a{bottom:508.213790px;}
.y158{bottom:509.734821px;}
.y40{bottom:510.014229px;}
.y19{bottom:510.040028px;}
.y1d4{bottom:513.257094px;}
.y246{bottom:513.791850px;}
.y299{bottom:521.263789px;}
.y3f{bottom:525.763779px;}
.y18{bottom:525.786278px;}
.y1d3{bottom:526.307093px;}
.y245{bottom:526.841850px;}
.y154{bottom:531.482117px;}
.y157{bottom:534.187820px;}
.y298{bottom:534.313789px;}
.ybf{bottom:534.391634px;}
.y1d2{bottom:539.357093px;}
.y244{bottom:539.891849px;}
.y3e{bottom:541.514680px;}
.y199{bottom:541.515581px;}
.y17{bottom:541.532528px;}
.y100{bottom:543.875565px;}
.y297{bottom:547.363788px;}
.ybe{bottom:550.135635px;}
.y1d1{bottom:552.407092px;}
.y243{bottom:552.945619px;}
.y3d{bottom:557.264229px;}
.y198{bottom:557.265130px;}
.y16{bottom:557.278778px;}
.ye4{bottom:558.731097px;}
.y296{bottom:560.413636px;}
.y1d0{bottom:565.457092px;}
.ybd{bottom:565.879635px;}
.y242{bottom:565.995619px;}
.ye6{bottom:572.332352px;}
.y197{bottom:573.014680px;}
.y3c{bottom:573.017833px;}
.y15{bottom:573.025028px;}
.y295{bottom:573.463636px;}
.y1cf{bottom:578.507091px;}
.ybc{bottom:581.623636px;}
.y294{bottom:586.513635px;}
.y196{bottom:588.764229px;}
.y3b{bottom:588.767383px;}
.y14{bottom:588.771278px;}
.y1ce{bottom:591.557091px;}
.y241{bottom:594.041869px;}
.ybb{bottom:597.367636px;}
.y293{bottom:599.563635px;}
.y195{bottom:604.513779px;}
.y3a{bottom:604.516932px;}
.y13{bottom:604.517529px;}
.y1cd{bottom:604.607090px;}
.y240{bottom:607.091868px;}
.y292{bottom:612.613634px;}
.yba{bottom:613.111636px;}
.y168{bottom:615.752275px;}
.yeb{bottom:616.382401px;}
.y1cc{bottom:617.657090px;}
.yff{bottom:618.069584px;}
.y152{bottom:619.539772px;}
.y23f{bottom:620.141868px;}
.y194{bottom:620.265581px;}
.y39{bottom:620.266482px;}
.y12{bottom:620.267529px;}
.yb9{bottom:628.861636px;}
.y1cb{bottom:630.707090px;}
.y169{bottom:630.855025px;}
.y23e{bottom:633.191868px;}
.y193{bottom:636.015130px;}
.y38{bottom:636.016031px;}
.y11{bottom:636.017529px;}
.y291{bottom:638.713634px;}
.yfe{bottom:638.866333px;}
.y1ca{bottom:643.757089px;}
.yb8{bottom:644.605637px;}
.ye7{bottom:645.847778px;}
.y23d{bottom:646.241859px;}
.ye2{bottom:648.997192px;}
.y290{bottom:651.763633px;}
.y192{bottom:651.764680px;}
.y37{bottom:651.765581px;}
.y10{bottom:651.786278px;}
.y1c9{bottom:656.807089px;}
.y23c{bottom:659.291858px;}
.y28f{bottom:664.813633px;}
.ye5{bottom:667.180349px;}
.y191{bottom:667.514229px;}
.y36{bottom:667.515130px;}
.yf{bottom:667.532528px;}
.y1c8{bottom:669.857088px;}
.y23b{bottom:672.341841px;}
.y16e{bottom:674.163757px;}
.y16f{bottom:674.343757px;}
.ye3{bottom:674.580597px;}
.y28e{bottom:677.863788px;}
.y1c7{bottom:682.907088px;}
.y190{bottom:683.263779px;}
.y35{bottom:683.264680px;}
.ye{bottom:683.278778px;}
.y23a{bottom:685.391841px;}
.y9b{bottom:686.273571px;}
.y28d{bottom:690.913780px;}
.ya8{bottom:692.066500px;}
.y9d{bottom:694.297820px;}
.y144{bottom:695.683152px;}
.y1c6{bottom:695.957087px;}
.y239{bottom:698.441840px;}
.y34{bottom:699.014229px;}
.y18f{bottom:699.016077px;}
.yd{bottom:699.025028px;}
.y16b{bottom:702.302231px;}
.y28c{bottom:703.963779px;}
.y9c{bottom:705.997821px;}
.y1c5{bottom:709.007087px;}
.y238{bottom:711.491840px;}
.y2ca{bottom:713.862288px;}
.y2e3{bottom:714.339748px;}
.y33{bottom:714.763779px;}
.y18e{bottom:714.765626px;}
.yc{bottom:714.771278px;}
.y28b{bottom:717.013625px;}
.ye9{bottom:721.058716px;}
.y151{bottom:721.632019px;}
.y1c4{bottom:722.057086px;}
.y237{bottom:724.541898px;}
.yf4{bottom:724.881912px;}
.yea{bottom:725.237869px;}
.y2c9{bottom:726.913788px;}
.y16a{bottom:726.969731px;}
.y28a{bottom:730.063624px;}
.y32{bottom:730.514229px;}
.y18d{bottom:730.515176px;}
.yb{bottom:730.517529px;}
.y2e2{bottom:731.643748px;}
.y1c3{bottom:735.107086px;}
.y9f{bottom:735.793818px;}
.y236{bottom:737.591898px;}
.yf9{bottom:739.442980px;}
.yfa{bottom:739.608730px;}
.y2c8{bottom:739.963669px;}
.y289{bottom:743.113624px;}
.y140{bottom:743.856726px;}
.y2e1{bottom:744.695248px;}
.y31{bottom:746.262014px;}
.y18c{bottom:746.264725px;}
.ya{bottom:746.267529px;}
.y9e{bottom:747.493819px;}
.y1c2{bottom:748.157085px;}
.y235{bottom:750.641897px;}
.y288{bottom:756.163623px;}
.y2e0{bottom:757.746749px;}
.y1c1{bottom:761.207085px;}
.y30{bottom:762.011564px;}
.y18b{bottom:762.014275px;}
.y9{bottom:762.017574px;}
.y234{bottom:763.691897px;}
.y287{bottom:769.213606px;}
.y2c7{bottom:771.453341px;}
.ya1{bottom:772.171070px;}
.y1c0{bottom:774.257085px;}
.y2df{bottom:775.050749px;}
.y233{bottom:776.741896px;}
.y2f{bottom:777.761113px;}
.y8{bottom:777.763824px;}
.ya0{bottom:783.871071px;}
.y2c6{bottom:784.504841px;}
.y1bf{bottom:787.307084px;}
.y2de{bottom:788.102249px;}
.yb3{bottom:789.625305px;}
.y232{bottom:789.791896px;}
.y18a{bottom:793.513824px;}
.y286{bottom:795.313606px;}
.y2c5{bottom:797.556341px;}
.yfc{bottom:798.098985px;}
.y153{bottom:800.264832px;}
.y1be{bottom:800.357084px;}
.y231{bottom:802.841895px;}
.y2e6{bottom:803.388617px;}
.yb7{bottom:803.984518px;}
.yb0{bottom:804.379028px;}
.y2dd{bottom:805.406249px;}
.y8f{bottom:805.684376px;}
.y285{bottom:808.363605px;}
.y189{bottom:809.264275px;}
.y2c4{bottom:810.607842px;}
.y1bd{bottom:813.407083px;}
.yb6{bottom:815.684518px;}
.y230{bottom:815.891895px;}
.y2dc{bottom:818.457749px;}
.y2e5{bottom:819.132617px;}
.y145{bottom:819.246299px;}
.y284{bottom:821.413830px;}
.y2c3{bottom:823.659342px;}
.y188{bottom:825.013824px;}
.yfd{bottom:826.120485px;}
.y1bc{bottom:826.457083px;}
.y14f{bottom:827.246713px;}
.y5a{bottom:827.448720px;}
.y14d{bottom:828.034799px;}
.y14b{bottom:828.821420px;}
.y22f{bottom:828.945611px;}
.y8a{bottom:833.160645px;}
.yb2{bottom:833.938477px;}
.y283{bottom:834.463829px;}
.y2e4{bottom:834.876617px;}
.y2db{bottom:835.761749px;}
.y2c2{bottom:836.710842px;}
.y1bb{bottom:839.507082px;}
.y187{bottom:840.764275px;}
.y22e{bottom:841.995610px;}
.y142{bottom:843.803980px;}
.y282{bottom:847.513829px;}
.y2da{bottom:848.811768px;}
.y14e{bottom:849.457214px;}
.y2c1{bottom:849.762342px;}
.y14c{bottom:850.245300px;}
.y14a{bottom:851.031921px;}
.y13f{bottom:851.165222px;}
.y59{bottom:851.448720px;}
.y1ba{bottom:852.557082px;}
.y22d{bottom:855.045610px;}
.y186{bottom:856.513824px;}
.yf7{bottom:860.058464px;}
.y281{bottom:860.563828px;}
.y2c0{bottom:862.813843px;}
.y1b9{bottom:865.607081px;}
.y22c{bottom:868.095609px;}
.y185{bottom:872.264275px;}
.y216{bottom:872.945246px;}
.y208{bottom:873.613631px;}
.y280{bottom:873.613828px;}
.y58{bottom:875.442719px;}
.y96{bottom:875.542969px;}
.y2bf{bottom:875.863770px;}
.y1b8{bottom:878.657081px;}
.y22b{bottom:881.145609px;}
.ya4{bottom:885.460373px;}
.yab{bottom:885.475209px;}
.y215{bottom:885.996746px;}
.y207{bottom:886.663630px;}
.y27f{bottom:886.663828px;}
.y184{bottom:888.013824px;}
.y2d9{bottom:888.313843px;}
.y1b7{bottom:891.707081px;}
.y22a{bottom:894.195608px;}
.yb5{bottom:894.454773px;}
.y214{bottom:899.048246px;}
.y206{bottom:899.713630px;}
.y27e{bottom:899.713827px;}
.yac{bottom:901.268555px;}
.y2d8{bottom:901.363770px;}
.y183{bottom:903.764275px;}
.y1b6{bottom:904.757080px;}
.y229{bottom:907.245608px;}
.y2be{bottom:907.356268px;}
.ya7{bottom:908.180420px;}
.y91{bottom:909.656982px;}
.y90{bottom:910.834625px;}
.y213{bottom:912.099747px;}
.y205{bottom:912.763629px;}
.y27d{bottom:912.763827px;}
.y92{bottom:914.016266px;}
.yee{bottom:914.958031px;}
.yf1{bottom:916.128030px;}
.y1b5{bottom:917.806915px;}
.y182{bottom:919.514725px;}
.y2bd{bottom:920.407768px;}
.y57{bottom:921.918715px;}
.y143{bottom:922.245300px;}
.y212{bottom:925.151247px;}
.y204{bottom:925.813629px;}
.y27c{bottom:925.813826px;}
.yed{bottom:926.658032px;}
.yf0{bottom:927.828031px;}
.ya5{bottom:928.796722px;}
.ye8{bottom:930.847627px;}
.y2bc{bottom:933.459269px;}
.y181{bottom:935.264275px;}
.y228{bottom:935.291858px;}
.y211{bottom:938.202747px;}
.yec{bottom:938.358032px;}
.y2d7{bottom:938.845768px;}
.y203{bottom:938.863628px;}
.y27b{bottom:938.863826px;}
.yef{bottom:939.528031px;}
.y8e{bottom:942.280380px;}
.y9a{bottom:942.298828px;}
.y2bb{bottom:946.510769px;}
.y227{bottom:948.341895px;}
.y141{bottom:950.468976px;}
.y180{bottom:951.013824px;}
.y210{bottom:951.254248px;}
.y2d6{bottom:951.897268px;}
.y202{bottom:951.913628px;}
.y27a{bottom:951.913825px;}
.y1b4{bottom:953.808416px;}
.yf6{bottom:954.964966px;}
.y2ba{bottom:959.562269px;}
.y226{bottom:961.391895px;}
.y56{bottom:963.930717px;}
.y8b{bottom:963.958832px;}
.y20f{bottom:964.305748px;}
.y2d5{bottom:964.948769px;}
.y201{bottom:964.963628px;}
.y279{bottom:964.963825px;}
.y147{bottom:965.319122px;}
.y17f{bottom:966.764275px;}
.y1b3{bottom:968.806915px;}
.y2b9{bottom:972.613770px;}
.y225{bottom:974.441822px;}
.y20e{bottom:977.357248px;}
.y2d4{bottom:978.000269px;}
.y278{bottom:978.013625px;}
.y200{bottom:978.013627px;}
.y17e{bottom:982.513824px;}
.y2b8{bottom:985.663605px;}
.y224{bottom:987.491821px;}
.y20d{bottom:990.408749px;}
.y2d3{bottom:991.051769px;}
.y277{bottom:991.063624px;}
.y1ff{bottom:991.063627px;}
.yb1{bottom:991.752045px;}
.y17d{bottom:998.263824px;}
.y1b2{bottom:998.265176px;}
.y20c{bottom:1003.460249px;}
.y97{bottom:1003.609221px;}
.y2d2{bottom:1004.103270px;}
.y276{bottom:1004.113624px;}
.y1fe{bottom:1004.113626px;}
.y55{bottom:1005.942719px;}
.yaf{bottom:1008.379028px;}
.y21b{bottom:1012.803040px;}
.y17c{bottom:1014.013824px;}
.y17b{bottom:1014.014275px;}
.y1b1{bottom:1014.014725px;}
.y20b{bottom:1016.511749px;}
.ya2{bottom:1016.996979px;}
.y221{bottom:1017.051727px;}
.y2d1{bottom:1017.154770px;}
.y275{bottom:1017.163623px;}
.y1fd{bottom:1017.163626px;}
.y222{bottom:1020.041290px;}
.y21f{bottom:1020.655243px;}
.y148{bottom:1022.373322px;}
.y21a{bottom:1024.920868px;}
.y270{bottom:1025.755463px;}
.y17a{bottom:1029.763824px;}
.y1b0{bottom:1029.764275px;}
.y272{bottom:1030.192383px;}
.y2d0{bottom:1030.206270px;}
.y274{bottom:1030.213623px;}
.y1fc{bottom:1030.213625px;}
.y21d{bottom:1031.084290px;}
.yae{bottom:1032.500977px;}
.y20a{bottom:1033.812269px;}
.y166{bottom:1036.999786px;}
.ya3{bottom:1041.296722px;}
.y2cf{bottom:1043.257771px;}
.y26f{bottom:1043.259016px;}
.y1fb{bottom:1043.263625px;}
.y94{bottom:1044.657257px;}
.y179{bottom:1045.513824px;}
.y93{bottom:1046.295044px;}
.y209{bottom:1046.863770px;}
.y99{bottom:1047.359528px;}
.y95{bottom:1048.721741px;}
.y167{bottom:1052.112286px;}
.y219{bottom:1053.613624px;}
.y26e{bottom:1056.309016px;}
.y2ce{bottom:1056.309271px;}
.y1fa{bottom:1056.313624px;}
.y146{bottom:1060.399200px;}
.y1af{bottom:1061.263824px;}
.y178{bottom:1061.264725px;}
.y218{bottom:1066.663623px;}
.y26d{bottom:1069.359015px;}
.y2cd{bottom:1069.360771px;}
.y1f9{bottom:1069.363624px;}
.y8d{bottom:1071.700378px;}
.ya9{bottom:1071.724365px;}
.y98{bottom:1071.855469px;}
.yaa{bottom:1071.856201px;}
.y1ae{bottom:1077.013824px;}
.y177{bottom:1077.014275px;}
.y217{bottom:1079.713623px;}
.yfb{bottom:1081.609476px;}
.yb4{bottom:1081.703522px;}
.yf2{bottom:1082.180282px;}
.y26c{bottom:1082.409015px;}
.y2cc{bottom:1082.412271px;}
.y1f8{bottom:1082.413623px;}
.yf3{bottom:1082.862782px;}
.y149{bottom:1084.066681px;}
.ya6{bottom:1088.277476px;}
.yf8{bottom:1088.391724px;}
.yad{bottom:1088.397858px;}
.yf5{bottom:1088.397908px;}
.y150{bottom:1088.412872px;}
.y8c{bottom:1089.545654px;}
.y176{bottom:1092.763824px;}
.y26b{bottom:1095.459015px;}
.y1f7{bottom:1095.463623px;}
.y2cb{bottom:1095.463772px;}
.y2{bottom:1096.060913px;}
.y1{bottom:1116.773895px;}
.y5d{bottom:1128.710083px;}
.y10a{bottom:1130.910278px;}
.y5e{bottom:1130.910461px;}
.h27{height:11.158500px;}
.h30{height:11.160000px;}
.h4e{height:11.506770px;}
.h2b{height:12.405001px;}
.h4f{height:13.784999px;}
.h2d{height:14.219999px;}
.h2e{height:14.534999px;}
.h28{height:14.633165px;}
.h13{height:19.899087px;}
.h16{height:19.899203px;}
.h46{height:21.967680px;}
.h4d{height:25.875000px;}
.h47{height:25.900694px;}
.h1a{height:27.962569px;}
.h19{height:27.963000px;}
.h12{height:27.963264px;}
.h15{height:27.963399px;}
.h24{height:27.974121px;}
.h33{height:28.002000px;}
.h44{height:28.020000px;}
.h37{height:28.709018px;}
.h31{height:28.725004px;}
.h21{height:28.725776px;}
.h18{height:28.727991px;}
.h38{height:28.739832px;}
.hf{height:28.743000px;}
.h14{height:28.743271px;}
.h17{height:28.743410px;}
.h32{height:28.749019px;}
.h10{height:28.963215px;}
.h43{height:30.396096px;}
.h25{height:31.094121px;}
.h22{height:31.200000px;}
.h45{height:31.382401px;}
.h39{height:31.629000px;}
.h34{height:32.370000px;}
.h4{height:32.736004px;}
.h23{height:33.200121px;}
.h36{height:33.228000px;}
.h29{height:37.336090px;}
.h3c{height:37.476000px;}
.h50{height:38.033720px;}
.h11{height:38.400000px;}
.h2c{height:38.734849px;}
.h2a{height:38.914259px;}
.hb{height:41.026500px;}
.h41{height:41.538000px;}
.h40{height:43.008000px;}
.hc{height:44.283000px;}
.h3d{height:44.505000px;}
.h4b{height:44.505033px;}
.h4a{height:44.505066px;}
.h4c{height:44.505108px;}
.h54{height:44.505607px;}
.h52{height:44.505798px;}
.h3f{height:45.090000px;}
.h53{height:45.090033px;}
.h51{height:45.785110px;}
.h42{height:46.035000px;}
.h49{height:46.035291px;}
.h3e{height:46.080000px;}
.h5{height:48.576000px;}
.h3{height:48.624000px;}
.h20{height:48.816000px;}
.h35{height:48.840001px;}
.h1c{height:48.864000px;}
.h1b{height:49.104000px;}
.h48{height:50.900711px;}
.h1e{height:54.702000px;}
.h1d{height:54.972000px;}
.h7{height:55.186201px;}
.h8{height:55.193260px;}
.h3a{height:55.907997px;}
.h2f{height:55.911601px;}
.h26{height:57.139201px;}
.h6{height:58.026000px;}
.h3b{height:60.780000px;}
.ha{height:72.936000px;}
.he{height:73.296000px;}
.h1f{height:108.624000px;}
.hd{height:108.972000px;}
.h2{height:121.080000px;}
.h9{height:145.872000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w7{width:7.933500px;}
.w6{width:7.935000px;}
.w5{width:7.950000px;}
.w2{width:17.655001px;}
.w3{width:18.000000px;}
.w9{width:72.208500px;}
.w4{width:112.709999px;}
.w8{width:375.886505px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x51{left:10.410461px;}
.x7e{left:24.867462px;}
.x55{left:27.790203px;}
.x7f{left:32.853745px;}
.x33{left:61.897202px;}
.x3{left:63.779549px;}
.x48{left:67.038752px;}
.x2d{left:68.279549px;}
.x1{left:75.446697px;}
.x2{left:76.650152px;}
.x4{left:80.749952px;}
.x4f{left:83.921848px;}
.x56{left:117.422997px;}
.x2e{left:124.772095px;}
.x26{left:127.626297px;}
.x3b{left:132.293255px;}
.x54{left:144.161545px;}
.x72{left:145.490553px;}
.x2c{left:148.373703px;}
.x74{left:149.593351px;}
.x28{left:152.254051px;}
.x29{left:153.754051px;}
.x70{left:158.160902px;}
.x76{left:170.966543px;}
.x6f{left:172.080002px;}
.x2b{left:183.750446px;}
.x27{left:184.875446px;}
.x2a{left:186.375446px;}
.x2f{left:192.392097px;}
.x7c{left:204.776991px;}
.x7d{left:207.033903px;}
.x73{left:212.267853px;}
.x75{left:221.746056px;}
.x71{left:224.936394px;}
.x79{left:226.537039px;}
.x77{left:233.870390px;}
.x69{left:240.590842px;}
.xd{left:244.742111px;}
.x30{left:246.105743px;}
.x7a{left:247.910849px;}
.x36{left:254.404640px;}
.x68{left:255.986092px;}
.x35{left:257.037140px;}
.x52{left:261.181503px;}
.x34{left:274.420349px;}
.x5a{left:275.884506px;}
.x53{left:279.181801px;}
.x50{left:280.939499px;}
.x78{left:289.211540px;}
.x3c{left:291.111603px;}
.x45{left:292.594048px;}
.x31{left:299.454002px;}
.x4b{left:301.985275px;}
.x63{left:304.541244px;}
.x7b{left:316.795189px;}
.x18{left:320.011783px;}
.x11{left:323.984711px;}
.x15{left:325.131300px;}
.x12{left:329.961159px;}
.x13{left:333.991791px;}
.x14{left:335.447411px;}
.xe{left:338.673157px;}
.x5f{left:340.489952px;}
.x66{left:341.556290px;}
.xf{left:344.756859px;}
.x65{left:345.792755px;}
.x10{left:348.466347px;}
.x4a{left:352.022275px;}
.x4d{left:355.122776px;}
.x4c{left:358.028277px;}
.x6d{left:361.179749px;}
.x7{left:362.473961px;}
.x47{left:364.097397px;}
.x3a{left:377.277995px;}
.x32{left:378.568954px;}
.x19{left:402.691779px;}
.x46{left:405.490047px;}
.x16{left:406.605298px;}
.x62{left:432.996135px;}
.xb{left:436.197144px;}
.x9{left:437.457458px;}
.x1a{left:442.793530px;}
.x44{left:450.654601px;}
.x5{left:455.456251px;}
.x59{left:463.766693px;}
.x6a{left:465.626678px;}
.x6{left:472.461744px;}
.x57{left:485.070007px;}
.x6c{left:487.433532px;}
.x17{left:493.536301px;}
.x1d{left:495.451028px;}
.x22{left:500.069550px;}
.x6b{left:501.594425px;}
.x58{left:503.266479px;}
.x3e{left:506.970586px;}
.xc{left:511.664383px;}
.x4e{left:516.031815px;}
.x6e{left:518.008942px;}
.x3d{left:527.016586px;}
.x24{left:534.088943px;}
.x67{left:537.722397px;}
.x3f{left:539.477087px;}
.x80{left:545.049454px;}
.x61{left:563.771572px;}
.x60{left:566.092072px;}
.x43{left:603.485843px;}
.x49{left:607.569766px;}
.x1f{left:615.355034px;}
.x1e{left:618.691034px;}
.x23{left:620.833046px;}
.x21{left:640.058396px;}
.x25{left:656.819550px;}
.x40{left:668.537842px;}
.x41{left:669.893092px;}
.x42{left:673.422592px;}
.x64{left:675.443985px;}
.x5e{left:694.715711px;}
.x5c{left:697.679239px;}
.x5b{left:701.842489px;}
.x5d{left:714.586212px;}
.x8{left:728.919617px;}
.x20{left:735.169647px;}
.x1c{left:737.815063px;}
.x1b{left:756.052368px;}
.x38{left:804.918887px;}
.x37{left:807.112637px;}
.x39{left:822.024261px;}
.xa{left:829.133881px;}
@media print{
.vf{vertical-align:-24.114583pt;}
.v8{vertical-align:-21.120117pt;}
.v5{vertical-align:-16.720052pt;}
.v1{vertical-align:-14.079997pt;}
.v12{vertical-align:-12.782939pt;}
.vb{vertical-align:-11.466665pt;}
.v6{vertical-align:-9.934338pt;}
.v9{vertical-align:-8.533366pt;}
.v13{vertical-align:-5.312541pt;}
.ve{vertical-align:-1.749333pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:1.243341pt;}
.vd{vertical-align:2.184000pt;}
.v14{vertical-align:3.224000pt;}
.v10{vertical-align:4.645333pt;}
.vc{vertical-align:7.823568pt;}
.v3{vertical-align:10.666667pt;}
.v15{vertical-align:13.186006pt;}
.v2{vertical-align:14.079997pt;}
.v4{vertical-align:16.706557pt;}
.v7{vertical-align:21.120117pt;}
.va{vertical-align:53.333333pt;}
.ls6{letter-spacing:-9.792000pt;}
.ls7{letter-spacing:-3.358080pt;}
.ls71{letter-spacing:-1.200000pt;}
.ls42{letter-spacing:-1.160000pt;}
.ls12{letter-spacing:-1.140800pt;}
.ls73{letter-spacing:-1.082667pt;}
.ls4d{letter-spacing:-0.880000pt;}
.ls47{letter-spacing:-0.773333pt;}
.ls4c{letter-spacing:-0.760000pt;}
.ls44{letter-spacing:-0.680000pt;}
.ls6a{letter-spacing:-0.640000pt;}
.ls6d{letter-spacing:-0.600000pt;}
.ls45{letter-spacing:-0.560000pt;}
.ls6f{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.425333pt;}
.ls6b{letter-spacing:-0.360000pt;}
.ls46{letter-spacing:-0.280000pt;}
.ls6e{letter-spacing:-0.240000pt;}
.ls43{letter-spacing:-0.160000pt;}
.ls41{letter-spacing:-0.148800pt;}
.ls70{letter-spacing:-0.093280pt;}
.ls5{letter-spacing:-0.085333pt;}
.ls6c{letter-spacing:-0.040000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.000004pt;}
.ls2{letter-spacing:0.000008pt;}
.lsc{letter-spacing:0.000027pt;}
.ls0{letter-spacing:0.000130pt;}
.ls5c{letter-spacing:0.000169pt;}
.ls23{letter-spacing:0.000173pt;}
.ls1{letter-spacing:0.000397pt;}
.ls9{letter-spacing:0.000515pt;}
.ls10{letter-spacing:0.000524pt;}
.lsa{letter-spacing:0.002648pt;}
.ls15{letter-spacing:0.002661pt;}
.ls14{letter-spacing:0.003201pt;}
.ls26{letter-spacing:0.003243pt;}
.lsd{letter-spacing:0.006880pt;}
.ls27{letter-spacing:0.006932pt;}
.ls11{letter-spacing:0.008026pt;}
.ls68{letter-spacing:0.012524pt;}
.lsb{letter-spacing:0.013353pt;}
.ls67{letter-spacing:0.013549pt;}
.ls24{letter-spacing:0.016449pt;}
.ls66{letter-spacing:0.017912pt;}
.ls5b{letter-spacing:0.039971pt;}
.ls55{letter-spacing:0.041950pt;}
.ls5a{letter-spacing:0.042072pt;}
.ls58{letter-spacing:0.042092pt;}
.ls61{letter-spacing:0.042159pt;}
.ls57{letter-spacing:0.046639pt;}
.ls5f{letter-spacing:0.056000pt;}
.ls56{letter-spacing:0.067198pt;}
.ls54{letter-spacing:0.067210pt;}
.ls3{letter-spacing:0.072000pt;}
.ls8{letter-spacing:0.077333pt;}
.ls53{letter-spacing:0.079999pt;}
.ls52{letter-spacing:0.080000pt;}
.ls60{letter-spacing:0.091235pt;}
.ls59{letter-spacing:0.103471pt;}
.ls1f{letter-spacing:0.147397pt;}
.ls63{letter-spacing:0.167372pt;}
.ls2a{letter-spacing:0.198399pt;}
.ls29{letter-spacing:0.198400pt;}
.ls1d{letter-spacing:0.221504pt;}
.ls1a{letter-spacing:0.230687pt;}
.ls2c{letter-spacing:0.260252pt;}
.ls2b{letter-spacing:0.446400pt;}
.ls65{letter-spacing:1.500509pt;}
.ls1c{letter-spacing:2.223672pt;}
.ls1b{letter-spacing:2.657676pt;}
.ls1e{letter-spacing:2.658246pt;}
.ls72{letter-spacing:2.679998pt;}
.ls35{letter-spacing:2.680001pt;}
.ls3b{letter-spacing:2.680005pt;}
.ls32{letter-spacing:2.680011pt;}
.ls31{letter-spacing:2.683983pt;}
.ls4a{letter-spacing:2.684004pt;}
.ls3a{letter-spacing:2.684005pt;}
.ls49{letter-spacing:2.684007pt;}
.ls3d{letter-spacing:2.684008pt;}
.ls4b{letter-spacing:2.687975pt;}
.ls69{letter-spacing:2.687986pt;}
.ls3f{letter-spacing:2.688003pt;}
.ls40{letter-spacing:2.688005pt;}
.ls33{letter-spacing:2.688014pt;}
.ls48{letter-spacing:2.688015pt;}
.ls3e{letter-spacing:2.688028pt;}
.ls36{letter-spacing:2.692015pt;}
.ls3c{letter-spacing:2.696026pt;}
.ls2d{letter-spacing:2.719999pt;}
.ls34{letter-spacing:2.720004pt;}
.ls39{letter-spacing:2.720019pt;}
.ls2e{letter-spacing:2.724019pt;}
.ls30{letter-spacing:2.727984pt;}
.ls37{letter-spacing:2.728006pt;}
.ls38{letter-spacing:2.728012pt;}
.ls2f{letter-spacing:2.739991pt;}
.ls4f{letter-spacing:9.037422pt;}
.ls5e{letter-spacing:12.099117pt;}
.ls64{letter-spacing:13.632262pt;}
.ls25{letter-spacing:13.638521pt;}
.ls51{letter-spacing:13.644375pt;}
.ls4e{letter-spacing:13.756418pt;}
.ls62{letter-spacing:19.332504pt;}
.ls50{letter-spacing:48.059904pt;}
.lsf{letter-spacing:56.888008pt;}
.ls18{letter-spacing:58.725333pt;}
.ls19{letter-spacing:65.312002pt;}
.lse{letter-spacing:67.530660pt;}
.ls22{letter-spacing:77.965336pt;}
.ls28{letter-spacing:78.797333pt;}
.ls17{letter-spacing:122.480000pt;}
.ls20{letter-spacing:302.077856pt;}
.ls21{letter-spacing:303.851212pt;}
.ls16{letter-spacing:887.125352pt;}
.wsa8{word-spacing:-63.053454pt;}
.wsa9{word-spacing:-49.414932pt;}
.wsb{word-spacing:-44.416000pt;}
.ws2{word-spacing:-42.666667pt;}
.ws110{word-spacing:-39.850667pt;}
.ws112{word-spacing:-31.960237pt;}
.ws8{word-spacing:-27.392000pt;}
.ws8b{word-spacing:-24.000000pt;}
.ws9{word-spacing:-13.696000pt;}
.wsa6{word-spacing:-12.400000pt;}
.wsd8{word-spacing:-11.705600pt;}
.wsda{word-spacing:-11.413333pt;}
.wsaa{word-spacing:-11.358400pt;}
.ws7{word-spacing:-11.259200pt;}
.ws5d{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.589333pt;}
.ws59{word-spacing:-10.118400pt;}
.ws113{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.642667pt;}
.wsb1{word-spacing:-9.637333pt;}
.ws5a{word-spacing:-9.216000pt;}
.wsdd{word-spacing:-9.160000pt;}
.ws111{word-spacing:-9.080000pt;}
.ws0{word-spacing:-9.045333pt;}
.wsde{word-spacing:-8.880000pt;}
.ws10f{word-spacing:-8.840000pt;}
.ws5c{word-spacing:-8.704000pt;}
.wsdc{word-spacing:-8.600000pt;}
.ws109{word-spacing:-8.474667pt;}
.ws108{word-spacing:-8.400000pt;}
.wsd{word-spacing:-8.208000pt;}
.ws10d{word-spacing:-8.080000pt;}
.wsdb{word-spacing:-8.000000pt;}
.wsa{word-spacing:-7.984768pt;}
.ws115{word-spacing:-7.960000pt;}
.ws61{word-spacing:-7.656000pt;}
.wse0{word-spacing:-7.308000pt;}
.wsd9{word-spacing:-6.824365pt;}
.wsab{word-spacing:-6.621947pt;}
.ws6{word-spacing:-6.564113pt;}
.ws4{word-spacing:-6.173581pt;}
.ws1{word-spacing:-5.621675pt;}
.wsb2{word-spacing:-5.372928pt;}
.ws10c{word-spacing:-5.340280pt;}
.ws10e{word-spacing:-5.293640pt;}
.ws114{word-spacing:-5.200360pt;}
.wsc{word-spacing:-4.626688pt;}
.ws11d{word-spacing:-4.080000pt;}
.ws8e{word-spacing:-3.904000pt;}
.ws62{word-spacing:-3.776000pt;}
.wsa2{word-spacing:-3.571200pt;}
.wsf5{word-spacing:-3.323200pt;}
.ws31{word-spacing:-3.025600pt;}
.wsa0{word-spacing:-2.628800pt;}
.ws3b{word-spacing:-2.232000pt;}
.ws86{word-spacing:-2.182400pt;}
.ws34{word-spacing:-1.835200pt;}
.ws69{word-spacing:-1.488000pt;}
.wsc4{word-spacing:-1.388800pt;}
.ws48{word-spacing:-1.289600pt;}
.ws80{word-spacing:-1.091200pt;}
.ws37{word-spacing:-0.992000pt;}
.ws30{word-spacing:-0.942400pt;}
.wsed{word-spacing:-0.892800pt;}
.ws33{word-spacing:-0.843200pt;}
.ws119{word-spacing:-0.840000pt;}
.ws66{word-spacing:-0.744000pt;}
.ws57{word-spacing:-0.720000pt;}
.ws2f{word-spacing:-0.694400pt;}
.wsd7{word-spacing:-0.644800pt;}
.ws9f{word-spacing:-0.496000pt;}
.ws11b{word-spacing:-0.480000pt;}
.ws9e{word-spacing:-0.446400pt;}
.ws55{word-spacing:-0.320000pt;}
.ws96{word-spacing:-0.297600pt;}
.wsf3{word-spacing:-0.260251pt;}
.ws4d{word-spacing:-0.198400pt;}
.wsc0{word-spacing:-0.148800pt;}
.ws118{word-spacing:-0.080000pt;}
.ws58{word-spacing:-0.077333pt;}
.wsa7{word-spacing:-0.047821pt;}
.wsaf{word-spacing:-0.042667pt;}
.wsac{word-spacing:-0.034667pt;}
.wsad{word-spacing:-0.024000pt;}
.wse{word-spacing:0.000000pt;}
.ws11a{word-spacing:0.040000pt;}
.wsfa{word-spacing:0.099200pt;}
.ws3d{word-spacing:0.148800pt;}
.ws10a{word-spacing:0.160000pt;}
.ws50{word-spacing:0.248000pt;}
.ws22{word-spacing:0.253333pt;}
.ws39{word-spacing:0.297600pt;}
.wsa3{word-spacing:0.347200pt;}
.ws117{word-spacing:0.360000pt;}
.wsd2{word-spacing:0.446400pt;}
.ws11c{word-spacing:0.480000pt;}
.ws4b{word-spacing:0.496000pt;}
.ws3a{word-spacing:0.545600pt;}
.ws116{word-spacing:0.640000pt;}
.wsee{word-spacing:0.694400pt;}
.ws7c{word-spacing:0.843200pt;}
.wsd6{word-spacing:0.892800pt;}
.ws4c{word-spacing:0.942400pt;}
.wsfe{word-spacing:0.992000pt;}
.ws11e{word-spacing:1.082667pt;}
.ws38{word-spacing:1.140800pt;}
.ws3f{word-spacing:1.190400pt;}
.ws4a{word-spacing:1.289600pt;}
.wse9{word-spacing:1.339200pt;}
.ws54{word-spacing:1.388800pt;}
.wsb5{word-spacing:1.438400pt;}
.wsbd{word-spacing:1.537600pt;}
.ws94{word-spacing:1.587200pt;}
.ws13{word-spacing:1.773333pt;}
.ws9d{word-spacing:1.835200pt;}
.ws64{word-spacing:1.934400pt;}
.wsc9{word-spacing:1.984000pt;}
.ws7e{word-spacing:2.033600pt;}
.wsce{word-spacing:2.083200pt;}
.wsc7{word-spacing:2.132800pt;}
.ws70{word-spacing:2.281600pt;}
.ws49{word-spacing:2.331200pt;}
.wsd5{word-spacing:2.380800pt;}
.wsbf{word-spacing:2.430400pt;}
.wsb9{word-spacing:2.529600pt;}
.wsf2{word-spacing:2.579200pt;}
.ws3c{word-spacing:2.678400pt;}
.ws102{word-spacing:2.720000pt;}
.wse3{word-spacing:2.728000pt;}
.ws104{word-spacing:2.760000pt;}
.wscc{word-spacing:2.777600pt;}
.ws103{word-spacing:2.920000pt;}
.wsd4{word-spacing:2.976000pt;}
.wsbc{word-spacing:3.025600pt;}
.ws107{word-spacing:3.040000pt;}
.ws65{word-spacing:3.075200pt;}
.ws40{word-spacing:3.124800pt;}
.ws6a{word-spacing:3.174400pt;}
.wse7{word-spacing:3.224000pt;}
.ws67{word-spacing:3.273600pt;}
.ws71{word-spacing:3.372800pt;}
.wsfc{word-spacing:3.422400pt;}
.ws106{word-spacing:3.440000pt;}
.wscb{word-spacing:3.472000pt;}
.ws3e{word-spacing:3.571200pt;}
.ws72{word-spacing:3.620800pt;}
.ws10b{word-spacing:3.640000pt;}
.ws84{word-spacing:3.720000pt;}
.ws14{word-spacing:3.800000pt;}
.ws105{word-spacing:3.920000pt;}
.wsfd{word-spacing:3.968000pt;}
.ws46{word-spacing:4.017600pt;}
.ws95{word-spacing:4.067200pt;}
.wsba{word-spacing:4.116800pt;}
.ws23{word-spacing:4.154667pt;}
.wscd{word-spacing:4.166400pt;}
.ws53{word-spacing:4.265600pt;}
.wsc1{word-spacing:4.315200pt;}
.wsa4{word-spacing:4.364800pt;}
.wse1{word-spacing:4.414400pt;}
.ws29{word-spacing:4.458667pt;}
.wsbe{word-spacing:4.464000pt;}
.ws98{word-spacing:4.563200pt;}
.wsb8{word-spacing:4.612800pt;}
.ws8f{word-spacing:4.662400pt;}
.wsf1{word-spacing:4.712000pt;}
.wsa1{word-spacing:4.761600pt;}
.wsec{word-spacing:4.960000pt;}
.ws45{word-spacing:5.009600pt;}
.ws28{word-spacing:5.016000pt;}
.ws44{word-spacing:5.059200pt;}
.ws7f{word-spacing:5.257600pt;}
.ws97{word-spacing:5.307200pt;}
.wsbb{word-spacing:5.356800pt;}
.ws43{word-spacing:5.406400pt;}
.ws63{word-spacing:5.456000pt;}
.ws75{word-spacing:5.505600pt;}
.wse5{word-spacing:5.555200pt;}
.ws87{word-spacing:5.604800pt;}
.wse8{word-spacing:5.654400pt;}
.ws17{word-spacing:5.674667pt;}
.ws32{word-spacing:5.704000pt;}
.ws21{word-spacing:5.776000pt;}
.ws93{word-spacing:5.852800pt;}
.ws85{word-spacing:5.952000pt;}
.ws81{word-spacing:6.051200pt;}
.ws12{word-spacing:6.080000pt;}
.ws99{word-spacing:6.200000pt;}
.ws51{word-spacing:6.249600pt;}
.ws2a{word-spacing:6.282667pt;}
.ws91{word-spacing:6.299200pt;}
.wsf9{word-spacing:6.348800pt;}
.ws1f{word-spacing:6.434667pt;}
.wsc5{word-spacing:6.448000pt;}
.wsc3{word-spacing:6.547200pt;}
.ws10{word-spacing:6.637333pt;}
.ws41{word-spacing:6.646400pt;}
.wse4{word-spacing:6.795200pt;}
.ws16{word-spacing:6.840000pt;}
.ws35{word-spacing:6.844800pt;}
.ws1c{word-spacing:6.941333pt;}
.wsc6{word-spacing:6.993600pt;}
.wse2{word-spacing:7.192000pt;}
.ws77{word-spacing:7.241600pt;}
.wse6{word-spacing:7.291200pt;}
.ws1a{word-spacing:7.397333pt;}
.wsea{word-spacing:7.440000pt;}
.ws88{word-spacing:7.539200pt;}
.ws7a{word-spacing:7.588800pt;}
.wseb{word-spacing:7.638400pt;}
.ws73{word-spacing:7.737600pt;}
.wsb4{word-spacing:7.886400pt;}
.wsfb{word-spacing:7.936000pt;}
.ws7d{word-spacing:7.985600pt;}
.ws90{word-spacing:8.134400pt;}
.ws52{word-spacing:8.233600pt;}
.wsc8{word-spacing:8.283200pt;}
.ws26{word-spacing:8.309333pt;}
.wsca{word-spacing:8.332800pt;}
.wsf{word-spacing:8.360000pt;}
.wsc2{word-spacing:8.382400pt;}
.ws6b{word-spacing:8.432000pt;}
.ws24{word-spacing:8.461333pt;}
.ws74{word-spacing:8.531200pt;}
.ws18{word-spacing:8.562667pt;}
.ws6e{word-spacing:8.630400pt;}
.ws9c{word-spacing:8.680000pt;}
.wsef{word-spacing:8.779200pt;}
.ws101{word-spacing:8.977600pt;}
.ws47{word-spacing:9.076800pt;}
.wsf8{word-spacing:9.126400pt;}
.wsf6{word-spacing:9.225600pt;}
.ws11{word-spacing:9.272000pt;}
.ws15{word-spacing:9.525333pt;}
.ws92{word-spacing:9.572800pt;}
.ws56{word-spacing:9.792000pt;}
.ws83{word-spacing:9.820800pt;}
.wsb7{word-spacing:10.068800pt;}
.wsb6{word-spacing:10.118400pt;}
.ws6c{word-spacing:10.168000pt;}
.ws25{word-spacing:10.285333pt;}
.ws19{word-spacing:10.386667pt;}
.ws9b{word-spacing:10.416000pt;}
.wsf0{word-spacing:10.614400pt;}
.ws76{word-spacing:10.713600pt;}
.ws2b{word-spacing:10.944000pt;}
.ws89{word-spacing:10.961600pt;}
.ws78{word-spacing:11.160000pt;}
.wscf{word-spacing:11.209600pt;}
.ws6d{word-spacing:11.457600pt;}
.wsa5{word-spacing:11.606400pt;}
.ws20{word-spacing:11.653333pt;}
.ws1d{word-spacing:12.160000pt;}
.ws68{word-spacing:12.300800pt;}
.ws82{word-spacing:12.449599pt;}
.ws9a{word-spacing:12.598400pt;}
.ws42{word-spacing:12.747200pt;}
.ws2d{word-spacing:12.995200pt;}
.ws100{word-spacing:13.590399pt;}
.ws27{word-spacing:13.629333pt;}
.wsf4{word-spacing:13.838401pt;}
.ws79{word-spacing:13.987200pt;}
.ws2e{word-spacing:14.532801pt;}
.ws4e{word-spacing:14.979199pt;}
.ws7b{word-spacing:15.227201pt;}
.ws4f{word-spacing:16.020801pt;}
.ws36{word-spacing:17.508799pt;}
.wsf7{word-spacing:17.657600pt;}
.ws1e{word-spacing:18.392000pt;}
.wsd3{word-spacing:18.550401pt;}
.ws6f{word-spacing:19.641600pt;}
.wsff{word-spacing:20.732801pt;}
.ws2c{word-spacing:21.476800pt;}
.ws1b{word-spacing:23.053334pt;}
.ws5f{word-spacing:46.549338pt;}
.ws5e{word-spacing:54.058671pt;}
.ws5b{word-spacing:68.053343pt;}
.wsae{word-spacing:73.250668pt;}
.wsb0{word-spacing:92.802664pt;}
.wsd0{word-spacing:296.261324pt;}
.ws8d{word-spacing:372.805334pt;}
.ws8c{word-spacing:895.274680pt;}
.wsd1{word-spacing:925.226636pt;}
.wsb3{word-spacing:994.287925pt;}
.ws60{word-spacing:996.182457pt;}
.wsdf{word-spacing:999.199058pt;}
.ws8a{word-spacing:1507.733793pt;}
._1a{margin-left:-1639.978693pt;}
._15{margin-left:-464.394668pt;}
._17{margin-left:-462.037338pt;}
._1b{margin-left:-155.812826pt;}
._18{margin-left:-137.488003pt;}
._16{margin-left:-20.246784pt;}
._1d{margin-left:-11.280000pt;}
._0{margin-left:-8.388267pt;}
._8{margin-left:-6.470442pt;}
._1{margin-left:-5.013333pt;}
._6{margin-left:-4.054880pt;}
._3{margin-left:-2.948267pt;}
._9{margin-left:-2.043733pt;}
._4{margin-left:-1.083733pt;}
._5{width:0.951599pt;}
._2{width:1.954133pt;}
._c{width:3.011242pt;}
._7{width:4.109330pt;}
._1c{width:6.886937pt;}
._19{width:7.798981pt;}
._1e{width:19.800001pt;}
._b{width:46.624871pt;}
._a{width:47.757322pt;}
._13{width:60.245343pt;}
._e{width:70.741341pt;}
._12{width:76.885341pt;}
._14{width:79.573326pt;}
._10{width:83.029326pt;}
._f{width:126.848009pt;}
._11{width:151.300264pt;}
._d{width:212.888010pt;}
.fs1f{font-size:23.320000pt;}
.fs13{font-size:24.000000pt;}
.fs10{font-size:24.000105pt;}
.fs12{font-size:24.000245pt;}
.fs2{font-size:24.874667pt;}
.fs1e{font-size:27.895467pt;}
.fs6{font-size:28.916799pt;}
.fs4{font-size:29.538666pt;}
.fs18{font-size:34.484266pt;}
.fs14{font-size:34.666133pt;}
.fsd{font-size:34.666667pt;}
.fsf{font-size:34.666993pt;}
.fs11{font-size:34.667161pt;}
.fse{font-size:34.932266pt;}
.fsa{font-size:36.000000pt;}
.fs1d{font-size:37.193601pt;}
.fs9{font-size:37.311999pt;}
.fs1b{font-size:37.333333pt;}
.fsb{font-size:38.666667pt;}
.fs1c{font-size:39.850667pt;}
.fs1a{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs16{font-size:47.820801pt;}
.fs15{font-size:48.000000pt;}
.fs17{font-size:49.414932pt;}
.fs5{font-size:49.600001pt;}
.fs3{font-size:50.666667pt;}
.fs19{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fsc{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y220{bottom:0.654215pt;}
.y116{bottom:0.662262pt;}
.y131{bottom:0.663188pt;}
.y13e{bottom:0.663203pt;}
.y273{bottom:0.743327pt;}
.y130{bottom:0.976257pt;}
.y11b{bottom:1.766530pt;}
.y25a{bottom:2.053853pt;}
.y128{bottom:3.662933pt;}
.y21e{bottom:3.776611pt;}
.y271{bottom:3.943929pt;}
.y122{bottom:3.967865pt;}
.y127{bottom:3.975998pt;}
.y258{bottom:15.857992pt;}
.y21c{bottom:17.580729pt;}
.y223{bottom:17.581299pt;}
.y5c{bottom:33.168401pt;}
.y15f{bottom:36.034932pt;}
.y5b{bottom:36.035067pt;}
.y126{bottom:57.653336pt;}
.y13d{bottom:60.678665pt;}
.y6f{bottom:61.344269pt;}
.ye1{bottom:61.344669pt;}
.y89{bottom:61.345470pt;}
.y125{bottom:61.345601pt;}
.y162{bottom:61.346402pt;}
.y165{bottom:61.347203pt;}
.y1ad{bottom:61.347604pt;}
.yd6{bottom:61.348263pt;}
.y13c{bottom:61.654933pt;}
.y1f6{bottom:61.828541pt;}
.y26a{bottom:62.101332pt;}
.y2b7{bottom:62.145469pt;}
.y7{bottom:62.243998pt;}
.y121{bottom:71.366669pt;}
.y1f5{bottom:73.428541pt;}
.y269{bottom:73.701331pt;}
.y2b6{bottom:73.745469pt;}
.y123{bottom:75.334534pt;}
.ye0{bottom:75.344269pt;}
.y6e{bottom:75.344669pt;}
.y88{bottom:75.345070pt;}
.y124{bottom:75.345601pt;}
.y120{bottom:75.346002pt;}
.y13b{bottom:75.346402pt;}
.y164{bottom:75.346803pt;}
.y1ac{bottom:75.347203pt;}
.yd5{bottom:75.347863pt;}
.y6{bottom:75.577332pt;}
.y1f4{bottom:85.028540pt;}
.y268{bottom:85.301331pt;}
.y2b5{bottom:85.345468pt;}
.y5{bottom:88.910665pt;}
.y87{bottom:89.344669pt;}
.y6d{bottom:89.345070pt;}
.ydf{bottom:89.345470pt;}
.y11f{bottom:89.345601pt;}
.y13a{bottom:89.346002pt;}
.y163{bottom:89.346402pt;}
.y1ab{bottom:89.346803pt;}
.yd4{bottom:89.347462pt;}
.y1f3{bottom:96.628540pt;}
.y267{bottom:96.901330pt;}
.y2b4{bottom:96.945468pt;}
.y4{bottom:102.243998pt;}
.y86{bottom:103.344269pt;}
.y6c{bottom:103.344669pt;}
.yde{bottom:103.345070pt;}
.y139{bottom:103.345601pt;}
.y161{bottom:103.346002pt;}
.y11e{bottom:103.346402pt;}
.yd3{bottom:103.347062pt;}
.y1f2{bottom:108.228540pt;}
.y266{bottom:108.501330pt;}
.y2b3{bottom:108.545468pt;}
.y6b{bottom:117.344269pt;}
.y85{bottom:117.344669pt;}
.y160{bottom:117.345601pt;}
.y11d{bottom:117.346002pt;}
.yd2{bottom:117.346661pt;}
.y138{bottom:117.346803pt;}
.y3{bottom:119.097331pt;}
.y1f1{bottom:119.828539pt;}
.y265{bottom:120.101330pt;}
.y2b2{bottom:120.145467pt;}
.y11a{bottom:129.568003pt;}
.y84{bottom:131.344269pt;}
.y6a{bottom:131.345070pt;}
.y11c{bottom:131.345601pt;}
.y119{bottom:131.346002pt;}
.yd1{bottom:131.346261pt;}
.y137{bottom:131.346402pt;}
.y1f0{bottom:131.428539pt;}
.y264{bottom:131.701329pt;}
.y2b1{bottom:131.745463pt;}
.y1ef{bottom:143.028538pt;}
.y263{bottom:143.301329pt;}
.y115{bottom:143.568003pt;}
.y117{bottom:144.543335pt;}
.y83{bottom:145.344269pt;}
.y69{bottom:145.344669pt;}
.y118{bottom:145.345601pt;}
.yd0{bottom:145.345860pt;}
.y136{bottom:145.346002pt;}
.y114{bottom:145.346803pt;}
.y1ee{bottom:154.628538pt;}
.y262{bottom:154.901328pt;}
.y175{bottom:156.446536pt;}
.y68{bottom:159.344269pt;}
.y82{bottom:159.344659pt;}
.ycf{bottom:159.345460pt;}
.y135{bottom:159.345601pt;}
.ydd{bottom:159.345860pt;}
.y2e{bottom:159.346002pt;}
.y113{bottom:159.346402pt;}
.y2b0{bottom:163.745598pt;}
.y1ed{bottom:166.228538pt;}
.y261{bottom:166.501328pt;}
.y174{bottom:170.462535pt;}
.y134{bottom:172.678670pt;}
.y67{bottom:173.344259pt;}
.yce{bottom:173.345059pt;}
.ydc{bottom:173.345460pt;}
.y54{bottom:173.345601pt;}
.y112{bottom:173.346002pt;}
.y133{bottom:173.346402pt;}
.y2d{bottom:173.347604pt;}
.y2af{bottom:175.345598pt;}
.y1ec{bottom:177.828537pt;}
.y260{bottom:178.101328pt;}
.y173{bottom:184.457202pt;}
.y2ae{bottom:186.945597pt;}
.y66{bottom:187.344659pt;}
.y81{bottom:187.345059pt;}
.y111{bottom:187.345601pt;}
.y132{bottom:187.346002pt;}
.y1aa{bottom:187.346402pt;}
.y53{bottom:187.346803pt;}
.y2c{bottom:187.347203pt;}
.y1eb{bottom:189.428537pt;}
.y25f{bottom:189.701327pt;}
.y172{bottom:198.451869pt;}
.y2ad{bottom:198.545593pt;}
.y12f{bottom:200.678670pt;}
.y1ea{bottom:201.028536pt;}
.y25e{bottom:201.301327pt;}
.y65{bottom:201.344259pt;}
.y80{bottom:201.344659pt;}
.y110{bottom:201.345601pt;}
.y1a9{bottom:201.346002pt;}
.y52{bottom:201.346402pt;}
.y2b{bottom:201.346803pt;}
.y171{bottom:212.446536pt;}
.y1e9{bottom:212.628536pt;}
.y25d{bottom:212.901343pt;}
.y64{bottom:215.344259pt;}
.ycd{bottom:215.344659pt;}
.y63{bottom:215.345059pt;}
.y12e{bottom:215.345601pt;}
.y51{bottom:215.346002pt;}
.y2a{bottom:215.346402pt;}
.y1a8{bottom:215.346803pt;}
.y1e8{bottom:224.228536pt;}
.y25c{bottom:224.501343pt;}
.y170{bottom:226.441203pt;}
.y2ac{bottom:226.545468pt;}
.ycc{bottom:229.344259pt;}
.y62{bottom:229.344659pt;}
.y50{bottom:229.345601pt;}
.y29{bottom:229.346002pt;}
.y1a7{bottom:229.346402pt;}
.y7f{bottom:229.346661pt;}
.ydb{bottom:229.355876pt;}
.y1e7{bottom:235.828535pt;}
.y2ab{bottom:238.145467pt;}
.y61{bottom:243.344259pt;}
.ycb{bottom:243.345460pt;}
.y28{bottom:243.345601pt;}
.y1a6{bottom:243.346002pt;}
.y7e{bottom:243.346261pt;}
.y4f{bottom:243.346402pt;}
.yda{bottom:243.355476pt;}
.y1e6{bottom:247.428535pt;}
.y257{bottom:248.334676pt;}
.y2aa{bottom:249.745463pt;}
.y25b{bottom:250.388529pt;}
.y16d{bottom:257.247599pt;}
.y60{bottom:257.344659pt;}
.yca{bottom:257.345059pt;}
.y27{bottom:257.345601pt;}
.y7d{bottom:257.345860pt;}
.y4e{bottom:257.346002pt;}
.y10f{bottom:257.347203pt;}
.y12d{bottom:257.352408pt;}
.yd9{bottom:257.355075pt;}
.y256{bottom:257.383341pt;}
.y1e5{bottom:259.028534pt;}
.y259{bottom:264.192668pt;}
.y1e4{bottom:270.628534pt;}
.y5f{bottom:271.344259pt;}
.yc9{bottom:271.344659pt;}
.y7c{bottom:271.345460pt;}
.y4d{bottom:271.345601pt;}
.y10e{bottom:271.346803pt;}
.y1a5{bottom:271.347203pt;}
.y26{bottom:271.348935pt;}
.y12c{bottom:271.352008pt;}
.yd8{bottom:271.354675pt;}
.y16c{bottom:277.169474pt;}
.y2a9{bottom:277.745602pt;}
.y1e3{bottom:282.228534pt;}
.y255{bottom:282.703878pt;}
.yc8{bottom:285.344259pt;}
.y7b{bottom:285.345059pt;}
.y10d{bottom:285.346402pt;}
.y1a4{bottom:285.346803pt;}
.y4c{bottom:285.347183pt;}
.y12b{bottom:285.351607pt;}
.yd7{bottom:285.354274pt;}
.y25{bottom:285.355601pt;}
.y2a8{bottom:289.345602pt;}
.y1e2{bottom:293.828533pt;}
.y254{bottom:294.303878pt;}
.y7a{bottom:299.344659pt;}
.y10c{bottom:299.346002pt;}
.y1a3{bottom:299.346402pt;}
.y4b{bottom:299.346782pt;}
.y12a{bottom:299.351207pt;}
.y24{bottom:299.352268pt;}
.y2a7{bottom:300.945601pt;}
.y1e1{bottom:305.428533pt;}
.y253{bottom:305.903877pt;}
.y2a6{bottom:312.545601pt;}
.y79{bottom:313.344259pt;}
.y10b{bottom:313.345601pt;}
.y1a2{bottom:313.346002pt;}
.y4a{bottom:313.346382pt;}
.y23{bottom:313.348935pt;}
.y129{bottom:313.350806pt;}
.yc7{bottom:313.829203pt;}
.y1e0{bottom:317.028532pt;}
.y252{bottom:317.503877pt;}
.y2a5{bottom:324.145601pt;}
.y109{bottom:326.711854pt;}
.y78{bottom:327.344679pt;}
.y1a1{bottom:327.345601pt;}
.y49{bottom:327.345982pt;}
.y22{bottom:327.365580pt;}
.y1df{bottom:328.628532pt;}
.y251{bottom:329.103876pt;}
.yc6{bottom:331.941203pt;}
.y2a4{bottom:335.745600pt;}
.y1de{bottom:340.228532pt;}
.y250{bottom:340.703876pt;}
.y108{bottom:340.706521pt;}
.y77{bottom:341.344279pt;}
.y48{bottom:341.345581pt;}
.y1a0{bottom:341.346782pt;}
.y21{bottom:341.362247pt;}
.y2a3{bottom:347.345600pt;}
.yc5{bottom:350.774536pt;}
.y15e{bottom:350.853846pt;}
.y1dd{bottom:351.828531pt;}
.y24f{bottom:352.303876pt;}
.y107{bottom:354.701188pt;}
.y76{bottom:355.345080pt;}
.y19f{bottom:355.346382pt;}
.y47{bottom:355.347183pt;}
.y20{bottom:355.358914pt;}
.y2a2{bottom:358.945599pt;}
.y1dc{bottom:363.428531pt;}
.y24e{bottom:363.903875pt;}
.yc4{bottom:364.107869pt;}
.y15d{bottom:364.848513pt;}
.y106{bottom:368.695855pt;}
.y75{bottom:369.344679pt;}
.y19e{bottom:369.345982pt;}
.y46{bottom:369.346782pt;}
.y1f{bottom:369.355581pt;}
.y2a1{bottom:370.545599pt;}
.y1db{bottom:375.028530pt;}
.y24d{bottom:375.503875pt;}
.yc3{bottom:377.441203pt;}
.y15c{bottom:378.848513pt;}
.y2a0{bottom:382.145599pt;}
.y105{bottom:382.690521pt;}
.y19d{bottom:383.345581pt;}
.y45{bottom:383.346382pt;}
.y74{bottom:383.347469pt;}
.y1e{bottom:383.352247pt;}
.y1da{bottom:386.628530pt;}
.y24c{bottom:387.103874pt;}
.y15b{bottom:392.848513pt;}
.y29f{bottom:393.745598pt;}
.y104{bottom:396.685188pt;}
.y44{bottom:397.345982pt;}
.y19c{bottom:397.346782pt;}
.y73{bottom:397.347069pt;}
.y1d{bottom:397.348914pt;}
.y1d9{bottom:398.228530pt;}
.y24b{bottom:398.703874pt;}
.yc2{bottom:398.767715pt;}
.y29e{bottom:405.345598pt;}
.y15a{bottom:406.848513pt;}
.y1d8{bottom:409.828529pt;}
.y24a{bottom:410.303850pt;}
.y103{bottom:410.679855pt;}
.y43{bottom:411.345581pt;}
.y19b{bottom:411.346382pt;}
.y72{bottom:411.346669pt;}
.y1c{bottom:411.378913pt;}
.yc1{bottom:412.771716pt;}
.y29d{bottom:416.945451pt;}
.y159{bottom:420.843180pt;}
.y1d7{bottom:421.428529pt;}
.y249{bottom:421.903866pt;}
.y102{bottom:424.674522pt;}
.y19a{bottom:425.345982pt;}
.y71{bottom:425.346268pt;}
.y42{bottom:425.346782pt;}
.y1b{bottom:425.375580pt;}
.yc0{bottom:426.775716pt;}
.y29c{bottom:428.545592pt;}
.y1d6{bottom:433.028528pt;}
.y248{bottom:433.503858pt;}
.y101{bottom:438.669189pt;}
.y70{bottom:439.345868pt;}
.y41{bottom:439.346382pt;}
.y1a{bottom:439.372247pt;}
.y29b{bottom:440.145591pt;}
.y1d5{bottom:444.628528pt;}
.y247{bottom:445.103858pt;}
.y155{bottom:448.829214pt;}
.y156{bottom:448.830933pt;}
.y29a{bottom:451.745591pt;}
.y158{bottom:453.097619pt;}
.y40{bottom:453.345982pt;}
.y19{bottom:453.368914pt;}
.y1d4{bottom:456.228528pt;}
.y246{bottom:456.703867pt;}
.y299{bottom:463.345590pt;}
.y3f{bottom:467.345581pt;}
.y18{bottom:467.365580pt;}
.y1d3{bottom:467.828527pt;}
.y245{bottom:468.303866pt;}
.y154{bottom:472.428548pt;}
.y157{bottom:474.833618pt;}
.y298{bottom:474.945590pt;}
.ybf{bottom:475.014786pt;}
.y1d2{bottom:479.428527pt;}
.y244{bottom:479.903866pt;}
.y3e{bottom:481.346382pt;}
.y199{bottom:481.347183pt;}
.y17{bottom:481.362247pt;}
.y100{bottom:483.444946pt;}
.y297{bottom:486.545590pt;}
.ybe{bottom:489.009453pt;}
.y1d1{bottom:491.028526pt;}
.y243{bottom:491.507217pt;}
.y3d{bottom:495.345982pt;}
.y198{bottom:495.346782pt;}
.y16{bottom:495.358914pt;}
.ye4{bottom:496.649864pt;}
.y296{bottom:498.145454pt;}
.y1d0{bottom:502.628526pt;}
.ybd{bottom:503.004120pt;}
.y242{bottom:503.107216pt;}
.ye6{bottom:508.739868pt;}
.y197{bottom:509.346382pt;}
.y3c{bottom:509.349185pt;}
.y15{bottom:509.355581pt;}
.y295{bottom:509.745454pt;}
.y1cf{bottom:514.228526pt;}
.ybc{bottom:516.998787pt;}
.y294{bottom:521.345454pt;}
.y196{bottom:523.345982pt;}
.y3b{bottom:523.348785pt;}
.y14{bottom:523.352247pt;}
.y1ce{bottom:525.828525pt;}
.y241{bottom:528.037217pt;}
.ybb{bottom:530.993454pt;}
.y293{bottom:532.945453pt;}
.y195{bottom:537.345581pt;}
.y3a{bottom:537.348384pt;}
.y13{bottom:537.348914pt;}
.y1cd{bottom:537.428525pt;}
.y240{bottom:539.637216pt;}
.y292{bottom:544.545453pt;}
.yba{bottom:544.988121pt;}
.y168{bottom:547.335355pt;}
.yeb{bottom:547.895467pt;}
.y1cc{bottom:549.028524pt;}
.yff{bottom:549.395186pt;}
.y152{bottom:550.702019pt;}
.y23f{bottom:551.237216pt;}
.y194{bottom:551.347183pt;}
.y39{bottom:551.347984pt;}
.y12{bottom:551.348914pt;}
.yb9{bottom:558.988121pt;}
.y1cb{bottom:560.628524pt;}
.y169{bottom:560.760022pt;}
.y23e{bottom:562.837216pt;}
.y193{bottom:565.346782pt;}
.y38{bottom:565.347583pt;}
.y11{bottom:565.348914pt;}
.y291{bottom:567.745452pt;}
.yfe{bottom:567.881185pt;}
.y1ca{bottom:572.228524pt;}
.yb8{bottom:572.982788pt;}
.ye7{bottom:574.086914pt;}
.y23d{bottom:574.437208pt;}
.ye2{bottom:576.886393pt;}
.y290{bottom:579.345452pt;}
.y192{bottom:579.346382pt;}
.y37{bottom:579.347183pt;}
.y10{bottom:579.365580pt;}
.y1c9{bottom:583.828523pt;}
.y23c{bottom:586.037207pt;}
.y28f{bottom:590.945451pt;}
.ye5{bottom:593.049199pt;}
.y191{bottom:593.345982pt;}
.y36{bottom:593.346782pt;}
.yf{bottom:593.362247pt;}
.y1c8{bottom:595.428523pt;}
.y23b{bottom:597.637192pt;}
.y16e{bottom:599.256673pt;}
.y16f{bottom:599.416673pt;}
.ye3{bottom:599.627197pt;}
.y28e{bottom:602.545590pt;}
.y1c7{bottom:607.028522pt;}
.y190{bottom:607.345581pt;}
.y35{bottom:607.346382pt;}
.ye{bottom:607.358914pt;}
.y23a{bottom:609.237192pt;}
.y9b{bottom:610.020952pt;}
.y28d{bottom:614.145582pt;}
.ya8{bottom:615.170222pt;}
.y9d{bottom:617.153618pt;}
.y144{bottom:618.385024pt;}
.y1c6{bottom:618.628522pt;}
.y239{bottom:620.837192pt;}
.y34{bottom:621.345982pt;}
.y18f{bottom:621.347624pt;}
.yd{bottom:621.355581pt;}
.y16b{bottom:624.268650pt;}
.y28c{bottom:625.745581pt;}
.y9c{bottom:627.553618pt;}
.y1c5{bottom:630.228522pt;}
.y238{bottom:632.437191pt;}
.y2ca{bottom:634.544256pt;}
.y2e3{bottom:634.968665pt;}
.y33{bottom:635.345581pt;}
.y18e{bottom:635.347224pt;}
.yc{bottom:635.352247pt;}
.y28b{bottom:637.345444pt;}
.ye9{bottom:640.941081pt;}
.y151{bottom:641.450684pt;}
.y1c4{bottom:641.828521pt;}
.y237{bottom:644.037243pt;}
.yf4{bottom:644.339478pt;}
.yea{bottom:644.655884pt;}
.y2c9{bottom:646.145589pt;}
.y16a{bottom:646.195316pt;}
.y28a{bottom:648.945444pt;}
.y32{bottom:649.345982pt;}
.y18d{bottom:649.346823pt;}
.yb{bottom:649.348914pt;}
.y2e2{bottom:650.349998pt;}
.y1c3{bottom:653.428521pt;}
.y9f{bottom:654.038950pt;}
.y236{bottom:655.637242pt;}
.yf9{bottom:657.282649pt;}
.yfa{bottom:657.429982pt;}
.y2c8{bottom:657.745483pt;}
.y289{bottom:660.545444pt;}
.y140{bottom:661.205979pt;}
.y2e1{bottom:661.951332pt;}
.y31{bottom:663.344013pt;}
.y18c{bottom:663.346423pt;}
.ya{bottom:663.348914pt;}
.y9e{bottom:664.438950pt;}
.y1c2{bottom:665.028520pt;}
.y235{bottom:667.237242pt;}
.y288{bottom:672.145443pt;}
.y2e0{bottom:673.552665pt;}
.y1c1{bottom:676.628520pt;}
.y30{bottom:677.343612pt;}
.y18b{bottom:677.346022pt;}
.y9{bottom:677.348955pt;}
.y234{bottom:678.837242pt;}
.y287{bottom:683.745428pt;}
.y2c7{bottom:685.736303pt;}
.ya1{bottom:686.374285pt;}
.y1c0{bottom:688.228520pt;}
.y2df{bottom:688.933999pt;}
.y233{bottom:690.437241pt;}
.y2f{bottom:691.343212pt;}
.y8{bottom:691.345622pt;}
.ya0{bottom:696.774285pt;}
.y2c6{bottom:697.337636pt;}
.y1bf{bottom:699.828519pt;}
.y2de{bottom:700.535332pt;}
.yb3{bottom:701.889160pt;}
.y232{bottom:702.037241pt;}
.y18a{bottom:705.345622pt;}
.y286{bottom:706.945427pt;}
.y2c5{bottom:708.938970pt;}
.yfc{bottom:709.421320pt;}
.y153{bottom:711.346517pt;}
.y1be{bottom:711.428519pt;}
.y231{bottom:713.637240pt;}
.y2e6{bottom:714.123215pt;}
.yb7{bottom:714.652904pt;}
.yb0{bottom:715.003581pt;}
.y2dd{bottom:715.916666pt;}
.y8f{bottom:716.163890pt;}
.y285{bottom:718.545427pt;}
.y189{bottom:719.346022pt;}
.y2c4{bottom:720.540304pt;}
.y1bd{bottom:723.028518pt;}
.yb6{bottom:725.052905pt;}
.y230{bottom:725.237240pt;}
.y2dc{bottom:727.517999pt;}
.y2e5{bottom:728.117882pt;}
.y145{bottom:728.218932pt;}
.y284{bottom:730.145627pt;}
.y2c3{bottom:732.141637pt;}
.y188{bottom:733.345622pt;}
.yfd{bottom:734.329320pt;}
.y1bc{bottom:734.628518pt;}
.y14f{bottom:735.330412pt;}
.y5a{bottom:735.509973pt;}
.y14d{bottom:736.030933pt;}
.y14b{bottom:736.730151pt;}
.y22f{bottom:736.840543pt;}
.y8a{bottom:740.587240pt;}
.yb2{bottom:741.278646pt;}
.y283{bottom:741.745626pt;}
.y2e4{bottom:742.112549pt;}
.y2db{bottom:742.899333pt;}
.y2c2{bottom:743.742971pt;}
.y1bb{bottom:746.228518pt;}
.y187{bottom:747.346022pt;}
.y22e{bottom:748.440542pt;}
.y142{bottom:750.047983pt;}
.y282{bottom:753.345626pt;}
.y2da{bottom:754.499349pt;}
.y14e{bottom:755.073079pt;}
.y2c1{bottom:755.344304pt;}
.y14c{bottom:755.773600pt;}
.y14a{bottom:756.472819pt;}
.y13f{bottom:756.591309pt;}
.y59{bottom:756.843306pt;}
.y1ba{bottom:757.828517pt;}
.y22d{bottom:760.040542pt;}
.y186{bottom:761.345622pt;}
.yf7{bottom:764.496412pt;}
.y281{bottom:764.945625pt;}
.y2c0{bottom:766.945638pt;}
.y1b9{bottom:769.428517pt;}
.y22c{bottom:771.640542pt;}
.y185{bottom:775.346022pt;}
.y216{bottom:775.951330pt;}
.y208{bottom:776.545450pt;}
.y280{bottom:776.545625pt;}
.y58{bottom:778.171305pt;}
.y96{bottom:778.260417pt;}
.y2bf{bottom:778.545573pt;}
.y1b8{bottom:781.028516pt;}
.y22b{bottom:783.240541pt;}
.ya4{bottom:787.075887pt;}
.yab{bottom:787.089074pt;}
.y215{bottom:787.552663pt;}
.y207{bottom:788.145449pt;}
.y27f{bottom:788.145625pt;}
.y184{bottom:789.345622pt;}
.y2d9{bottom:789.612305pt;}
.y1b7{bottom:792.628516pt;}
.y22a{bottom:794.840541pt;}
.yb5{bottom:795.070909pt;}
.y214{bottom:799.153997pt;}
.y206{bottom:799.745449pt;}
.y27e{bottom:799.745624pt;}
.yac{bottom:801.127604pt;}
.y2d8{bottom:801.212240pt;}
.y183{bottom:803.346022pt;}
.y1b6{bottom:804.228516pt;}
.y229{bottom:806.440540pt;}
.y2be{bottom:806.538905pt;}
.ya7{bottom:807.271484pt;}
.y91{bottom:808.583984pt;}
.y90{bottom:809.630778pt;}
.y213{bottom:810.755330pt;}
.y205{bottom:811.345448pt;}
.y27d{bottom:811.345624pt;}
.y92{bottom:812.458903pt;}
.yee{bottom:813.296028pt;}
.yf1{bottom:814.336027pt;}
.y1b5{bottom:815.828369pt;}
.y182{bottom:817.346423pt;}
.y2bd{bottom:818.140238pt;}
.y57{bottom:819.483302pt;}
.y143{bottom:819.773600pt;}
.y212{bottom:822.356664pt;}
.y204{bottom:822.945448pt;}
.y27c{bottom:822.945623pt;}
.yed{bottom:823.696028pt;}
.yf0{bottom:824.736027pt;}
.ya5{bottom:825.597087pt;}
.ye8{bottom:827.420113pt;}
.y2bc{bottom:829.741572pt;}
.y181{bottom:831.346022pt;}
.y228{bottom:831.370541pt;}
.y211{bottom:833.957998pt;}
.yec{bottom:834.096029pt;}
.y2d7{bottom:834.529572pt;}
.y203{bottom:834.545448pt;}
.y27b{bottom:834.545623pt;}
.yef{bottom:835.136028pt;}
.y8e{bottom:837.582560pt;}
.y9a{bottom:837.598958pt;}
.y2bb{bottom:841.342906pt;}
.y227{bottom:842.970574pt;}
.y141{bottom:844.861312pt;}
.y180{bottom:845.345622pt;}
.y210{bottom:845.559331pt;}
.y2d6{bottom:846.130905pt;}
.y202{bottom:846.145447pt;}
.y27a{bottom:846.145623pt;}
.y1b4{bottom:847.829703pt;}
.yf6{bottom:848.857747pt;}
.y2ba{bottom:852.944239pt;}
.y226{bottom:854.570573pt;}
.y56{bottom:856.827304pt;}
.y8b{bottom:856.852295pt;}
.y20f{bottom:857.160665pt;}
.y2d5{bottom:857.732239pt;}
.y201{bottom:857.745447pt;}
.y279{bottom:857.745622pt;}
.y147{bottom:858.061442pt;}
.y17f{bottom:859.346022pt;}
.y1b3{bottom:861.161702pt;}
.y2b9{bottom:864.545573pt;}
.y225{bottom:866.170508pt;}
.y20e{bottom:868.761999pt;}
.y2d4{bottom:869.333572pt;}
.y278{bottom:869.345444pt;}
.y200{bottom:869.345446pt;}
.y17e{bottom:873.345622pt;}
.y2b8{bottom:876.145426pt;}
.y224{bottom:877.770508pt;}
.y20d{bottom:880.363332pt;}
.y2d3{bottom:880.934906pt;}
.y277{bottom:880.945444pt;}
.y1ff{bottom:880.945446pt;}
.yb1{bottom:881.557373pt;}
.y17d{bottom:887.345622pt;}
.y1b2{bottom:887.346823pt;}
.y20c{bottom:891.964666pt;}
.y97{bottom:892.097085pt;}
.y2d2{bottom:892.536240pt;}
.y276{bottom:892.545444pt;}
.y1fe{bottom:892.545446pt;}
.y55{bottom:894.171305pt;}
.yaf{bottom:896.336914pt;}
.y21b{bottom:900.269368pt;}
.y17c{bottom:901.345622pt;}
.y17b{bottom:901.346022pt;}
.y1b1{bottom:901.346423pt;}
.y20b{bottom:903.565999pt;}
.ya2{bottom:903.997314pt;}
.y221{bottom:904.045980pt;}
.y2d1{bottom:904.137573pt;}
.y275{bottom:904.145443pt;}
.y1fd{bottom:904.145445pt;}
.y222{bottom:906.703369pt;}
.y21f{bottom:907.249105pt;}
.y148{bottom:908.776286pt;}
.y21a{bottom:911.040771pt;}
.y270{bottom:911.782633pt;}
.y17a{bottom:915.345622pt;}
.y1b0{bottom:915.346022pt;}
.y272{bottom:915.726562pt;}
.y2d0{bottom:915.738907pt;}
.y274{bottom:915.745443pt;}
.y1fc{bottom:915.745445pt;}
.y21d{bottom:916.519368pt;}
.yae{bottom:917.778646pt;}
.y20a{bottom:918.944239pt;}
.y166{bottom:921.777588pt;}
.ya3{bottom:925.597087pt;}
.y2cf{bottom:927.340240pt;}
.y26f{bottom:927.341348pt;}
.y1fb{bottom:927.345444pt;}
.y94{bottom:928.584229pt;}
.y179{bottom:929.345622pt;}
.y93{bottom:930.040039pt;}
.y209{bottom:930.545573pt;}
.y99{bottom:930.986247pt;}
.y95{bottom:932.197103pt;}
.y167{bottom:935.210921pt;}
.y219{bottom:936.545444pt;}
.y26e{bottom:938.941347pt;}
.y2ce{bottom:938.941574pt;}
.y1fa{bottom:938.945444pt;}
.y146{bottom:942.577067pt;}
.y1af{bottom:943.345622pt;}
.y178{bottom:943.346423pt;}
.y218{bottom:948.145443pt;}
.y26d{bottom:950.541347pt;}
.y2cd{bottom:950.542908pt;}
.y1f9{bottom:950.545444pt;}
.y8d{bottom:952.622559pt;}
.ya9{bottom:952.643880pt;}
.y98{bottom:952.760417pt;}
.yaa{bottom:952.761068pt;}
.y1ae{bottom:957.345622pt;}
.y177{bottom:957.346022pt;}
.y217{bottom:959.745443pt;}
.yfb{bottom:961.430646pt;}
.yb4{bottom:961.514242pt;}
.yf2{bottom:961.938028pt;}
.y26c{bottom:962.141347pt;}
.y2cc{bottom:962.144241pt;}
.y1f8{bottom:962.145443pt;}
.yf3{bottom:962.544695pt;}
.y149{bottom:963.614827pt;}
.ya6{bottom:967.357756pt;}
.yf8{bottom:967.459310pt;}
.yad{bottom:967.464762pt;}
.yf5{bottom:967.464807pt;}
.y150{bottom:967.478109pt;}
.y8c{bottom:968.485026pt;}
.y176{bottom:971.345622pt;}
.y26b{bottom:973.741346pt;}
.y1f7{bottom:973.745443pt;}
.y2cb{bottom:973.745575pt;}
.y2{bottom:974.276367pt;}
.y1{bottom:992.687907pt;}
.y5d{bottom:1003.297852pt;}
.y10a{bottom:1005.253581pt;}
.y5e{bottom:1005.253743pt;}
.h27{height:9.918667pt;}
.h30{height:9.920000pt;}
.h4e{height:10.228240pt;}
.h2b{height:11.026667pt;}
.h4f{height:12.253333pt;}
.h2d{height:12.639999pt;}
.h2e{height:12.919999pt;}
.h28{height:13.007258pt;}
.h13{height:17.688078pt;}
.h16{height:17.688181pt;}
.h46{height:19.526827pt;}
.h4d{height:23.000000pt;}
.h47{height:23.022839pt;}
.h1a{height:24.855617pt;}
.h19{height:24.856000pt;}
.h12{height:24.856234pt;}
.h15{height:24.856355pt;}
.h24{height:24.865885pt;}
.h33{height:24.890667pt;}
.h44{height:24.906667pt;}
.h37{height:25.519127pt;}
.h31{height:25.533337pt;}
.h21{height:25.534023pt;}
.h18{height:25.535992pt;}
.h38{height:25.546518pt;}
.hf{height:25.549333pt;}
.h14{height:25.549574pt;}
.h17{height:25.549698pt;}
.h32{height:25.554684pt;}
.h10{height:25.745080pt;}
.h43{height:27.018752pt;}
.h25{height:27.639219pt;}
.h22{height:27.733333pt;}
.h45{height:27.895467pt;}
.h39{height:28.114667pt;}
.h34{height:28.773333pt;}
.h4{height:29.098670pt;}
.h23{height:29.511219pt;}
.h36{height:29.536000pt;}
.h29{height:33.187636pt;}
.h3c{height:33.312000pt;}
.h50{height:33.807751pt;}
.h11{height:34.133333pt;}
.h2c{height:34.430977pt;}
.h2a{height:34.590453pt;}
.hb{height:36.468000pt;}
.h41{height:36.922667pt;}
.h40{height:38.229333pt;}
.hc{height:39.362667pt;}
.h3d{height:39.560000pt;}
.h4b{height:39.560029pt;}
.h4a{height:39.560059pt;}
.h4c{height:39.560096pt;}
.h54{height:39.560539pt;}
.h52{height:39.560710pt;}
.h3f{height:40.080000pt;}
.h53{height:40.080029pt;}
.h51{height:40.697876pt;}
.h42{height:40.920000pt;}
.h49{height:40.920259pt;}
.h3e{height:40.960000pt;}
.h5{height:43.178667pt;}
.h3{height:43.221333pt;}
.h20{height:43.392000pt;}
.h35{height:43.413335pt;}
.h1c{height:43.434667pt;}
.h1b{height:43.648000pt;}
.h48{height:45.245077pt;}
.h1e{height:48.624000pt;}
.h1d{height:48.864000pt;}
.h7{height:49.054401pt;}
.h8{height:49.060675pt;}
.h3a{height:49.695998pt;}
.h2f{height:49.699201pt;}
.h26{height:50.790401pt;}
.h6{height:51.578667pt;}
.h3b{height:54.026667pt;}
.ha{height:64.832000pt;}
.he{height:65.152000pt;}
.h1f{height:96.554667pt;}
.hd{height:96.864000pt;}
.h2{height:107.626667pt;}
.h9{height:129.664000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w7{width:7.052000pt;}
.w6{width:7.053333pt;}
.w5{width:7.066667pt;}
.w2{width:15.693334pt;}
.w3{width:16.000000pt;}
.w9{width:64.185333pt;}
.w4{width:100.186666pt;}
.w8{width:334.121338pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x51{left:9.253743pt;}
.x7e{left:22.104411pt;}
.x55{left:24.702403pt;}
.x7f{left:29.203328pt;}
.x33{left:55.019735pt;}
.x3{left:56.692932pt;}
.x48{left:59.590001pt;}
.x2d{left:60.692932pt;}
.x1{left:67.063731pt;}
.x2{left:68.133469pt;}
.x4{left:71.777735pt;}
.x4f{left:74.597198pt;}
.x56{left:104.375997pt;}
.x2e{left:110.908529pt;}
.x26{left:113.445597pt;}
.x3b{left:117.594004pt;}
.x54{left:128.143595pt;}
.x72{left:129.324936pt;}
.x2c{left:131.887736pt;}
.x74{left:132.971868pt;}
.x28{left:135.336934pt;}
.x29{left:136.670268pt;}
.x70{left:140.587468pt;}
.x76{left:151.970261pt;}
.x6f{left:152.960002pt;}
.x2b{left:163.333730pt;}
.x27{left:164.333730pt;}
.x2a{left:165.667063pt;}
.x2f{left:171.015198pt;}
.x7c{left:182.023992pt;}
.x7d{left:184.030136pt;}
.x73{left:188.682536pt;}
.x75{left:197.107605pt;}
.x71{left:199.943461pt;}
.x79{left:201.366257pt;}
.x77{left:207.884791pt;}
.x69{left:213.858526pt;}
.xd{left:217.548543pt;}
.x30{left:218.760661pt;}
.x7a{left:220.365199pt;}
.x36{left:226.137458pt;}
.x68{left:227.543193pt;}
.x35{left:228.477458pt;}
.x52{left:232.161336pt;}
.x34{left:243.929199pt;}
.x5a{left:245.230672pt;}
.x53{left:248.161601pt;}
.x50{left:249.723999pt;}
.x78{left:257.076925pt;}
.x3c{left:258.765869pt;}
.x45{left:260.083598pt;}
.x31{left:266.181335pt;}
.x4b{left:268.431356pt;}
.x63{left:270.703328pt;}
.x7b{left:281.595723pt;}
.x18{left:284.454919pt;}
.x11{left:287.986409pt;}
.x15{left:289.005600pt;}
.x12{left:293.298808pt;}
.x13{left:296.881592pt;}
.x14{left:298.175476pt;}
.xe{left:301.042806pt;}
.x5f{left:302.657735pt;}
.x66{left:303.605591pt;}
.xf{left:306.450541pt;}
.x65{left:307.371338pt;}
.x10{left:309.747864pt;}
.x4a{left:312.908689pt;}
.x4d{left:315.664690pt;}
.x4c{left:318.247357pt;}
.x6d{left:321.048665pt;}
.x7{left:322.199076pt;}
.x47{left:323.642131pt;}
.x3a{left:335.358218pt;}
.x32{left:336.505737pt;}
.x19{left:357.948248pt;}
.x46{left:360.435598pt;}
.x16{left:361.426931pt;}
.x62{left:384.885453pt;}
.xb{left:387.730794pt;}
.x9{left:388.851074pt;}
.x1a{left:393.594249pt;}
.x44{left:400.581867pt;}
.x5{left:404.850001pt;}
.x59{left:412.237061pt;}
.x6a{left:413.890381pt;}
.x6{left:419.965994pt;}
.x57{left:431.173340pt;}
.x6c{left:433.274250pt;}
.x17{left:438.698934pt;}
.x1d{left:440.400914pt;}
.x22{left:444.506266pt;}
.x6b{left:445.861711pt;}
.x58{left:447.347982pt;}
.x3e{left:450.640521pt;}
.xc{left:454.812785pt;}
.x4e{left:458.694946pt;}
.x6e{left:460.452393pt;}
.x3d{left:468.459188pt;}
.x24{left:474.745728pt;}
.x67{left:477.975464pt;}
.x3f{left:479.535189pt;}
.x80{left:484.488403pt;}
.x61{left:501.130286pt;}
.x60{left:503.192952pt;}
.x43{left:536.431861pt;}
.x49{left:540.062014pt;}
.x1f{left:546.982252pt;}
.x1e{left:549.947586pt;}
.x23{left:551.851597pt;}
.x21{left:568.940797pt;}
.x25{left:583.839600pt;}
.x40{left:594.255859pt;}
.x41{left:595.460526pt;}
.x42{left:598.597859pt;}
.x64{left:600.394653pt;}
.x5e{left:617.525077pt;}
.x5c{left:620.159324pt;}
.x5b{left:623.859990pt;}
.x5d{left:635.187744pt;}
.x8{left:647.928548pt;}
.x20{left:653.484131pt;}
.x1c{left:655.835612pt;}
.x1b{left:672.046549pt;}
.x38{left:715.483455pt;}
.x37{left:717.433455pt;}
.x39{left:730.688232pt;}
.xa{left:737.007894pt;}
}




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