
    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_ea4ebde1384b3729f3c6d9e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight: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_14f6b355fb16841efd6ad120.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_912df2c945ca79c84129b3e0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f123e1b95d84478a1fd5db5d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2317ac743da8d43892f8984a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_95813a0fcad982a33e31d7b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844000;font-style:normal;font-weight: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_f4bfe8f3ee6369bb037cad20.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;font-style:normal;font-weight: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_bb136934c3371206f094a5cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704474;font-style:normal;font-weight: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_e17be914c29d1d5c50fa0212.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932000;font-style:normal;font-weight: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_c7e1cdb0f1b7b3299ecc7565.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;font-style:normal;font-weight: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_0aab26b508e7ef417e89b0e4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.106000;font-style:normal;font-weight: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_36bbc0b063556a88020924dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.899000;font-style:normal;font-weight: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_87d151a423f61cc8535bfcf2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8d9ade29b2c464305bde9439.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_07cfe10fb758f0dff3c823ee.woff2')format("woff");}.fff{font-family:fff;line-height:3.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:ff10;src:url('chunks/assets/font_e2d18abcf8cc7397042df886.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.844000;font-style:normal;font-weight: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_7e746e91bd4c89f0562629f5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921000;font-style:normal;font-weight: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_80f66636132425d86808bd41.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.521000;font-style:normal;font-weight: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_e07d86f49c0631f59ef78d36.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.950000;font-style:normal;font-weight: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_47b067b289594c4bc980b443.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.899000;font-style:normal;font-weight: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_da860e15d198bedcecc8916a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.917000;font-style:normal;font-weight: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_d8bf2491d7d2c06e731515b0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.704000;font-style:normal;font-weight: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_e579862fc4b808d408562f06.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.636000;font-style:normal;font-weight: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_8d3eb27e96c57cf44ea96c61.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.764000;font-style:normal;font-weight: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_561e02ca804069a961503e6e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.765000;font-style:normal;font-weight: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_b9176e2b37a964bc5deb7535.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.959000;font-style:normal;font-weight: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_231ebf88862482b14b4575a0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.959000;font-style:normal;font-weight: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_d27e77322e2db74f51fc7ae6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.959000;font-style:normal;font-weight: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_43854d7dcca3a5930c850e05.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.959000;font-style:normal;font-weight: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_88a844383e9010cce99ef3b9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.959000;font-style:normal;font-weight: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_6abab3a09b352f7060823756.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.959000;font-style:normal;font-weight: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_4f16e14fa9b4e915d4c20570.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.959000;font-style:normal;font-weight: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_2e4be584f8e2e9d85a88a25a.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.959000;font-style:normal;font-weight: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_4af4b32df61505819edde83d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.959000;font-style:normal;font-weight: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_231ebf88862482b14b4575a0.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.964000px;}
.v17{vertical-align:-6.342000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:7.398000px;}
.v10{vertical-align:10.566000px;}
.ve{vertical-align:11.958000px;}
.v11{vertical-align:14.778000px;}
.v5{vertical-align:18.036000px;}
.v7{vertical-align:19.410000px;}
.vb{vertical-align:20.586000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:25.572000px;}
.vf{vertical-align:29.994000px;}
.va{vertical-align:31.470000px;}
.v14{vertical-align:39.024000px;}
.v9{vertical-align:40.434000px;}
.v6{vertical-align:43.608000px;}
.v8{vertical-align:56.784000px;}
.v15{vertical-align:67.746000px;}
.v12{vertical-align:94.110000px;}
.v13{vertical-align:97.788000px;}
.vc{vertical-align:102.216000px;}
.vd{vertical-align:159.882000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000300px;}
.ls38{letter-spacing:0.000312px;}
.ls54{letter-spacing:0.000421px;}
.lsc{letter-spacing:0.000538px;}
.ls10{letter-spacing:0.000564px;}
.ls5f{letter-spacing:0.000691px;}
.ls62{letter-spacing:0.000990px;}
.ls48{letter-spacing:0.001328px;}
.ls60{letter-spacing:0.001405px;}
.ls2a{letter-spacing:0.001409px;}
.ls13{letter-spacing:0.001923px;}
.ls50{letter-spacing:0.002338px;}
.ls66{letter-spacing:0.002346px;}
.ls51{letter-spacing:0.002379px;}
.ls28{letter-spacing:0.002481px;}
.ls21{letter-spacing:0.002638px;}
.ls42{letter-spacing:0.002646px;}
.ls41{letter-spacing:0.002685px;}
.ls4{letter-spacing:0.002727px;}
.ls19{letter-spacing:0.003031px;}
.ls22{letter-spacing:0.003269px;}
.lsd{letter-spacing:0.003652px;}
.ls55{letter-spacing:0.003959px;}
.ls1f{letter-spacing:0.004172px;}
.ls57{letter-spacing:0.004363px;}
.ls1c{letter-spacing:0.004379px;}
.ls58{letter-spacing:0.004546px;}
.ls36{letter-spacing:0.004618px;}
.ls65{letter-spacing:0.004643px;}
.ls56{letter-spacing:0.004738px;}
.ls27{letter-spacing:0.004893px;}
.ls5e{letter-spacing:0.004896px;}
.ls5a{letter-spacing:0.006421px;}
.ls17{letter-spacing:0.007923px;}
.lsf{letter-spacing:0.212086px;}
.ls2d{letter-spacing:0.218086px;}
.ls5{letter-spacing:0.464387px;}
.ls29{letter-spacing:1.284579px;}
.ls2b{letter-spacing:1.502066px;}
.lsb{letter-spacing:1.537590px;}
.ls16{letter-spacing:1.655249px;}
.ls1d{letter-spacing:1.661249px;}
.ls8{letter-spacing:1.665333px;}
.ls20{letter-spacing:2.983140px;}
.ls0{letter-spacing:2.984525px;}
.ls2c{letter-spacing:2.986363px;}
.ls61{letter-spacing:2.986491px;}
.ls43{letter-spacing:2.987864px;}
.ls24{letter-spacing:2.989140px;}
.ls63{letter-spacing:2.989319px;}
.ls18{letter-spacing:3.447652px;}
.ls26{letter-spacing:5.408908px;}
.ls1b{letter-spacing:7.167657px;}
.ls14{letter-spacing:7.173269px;}
.ls3f{letter-spacing:7.472450px;}
.ls4a{letter-spacing:8.164738px;}
.ls1a{letter-spacing:9.963269px;}
.ls1e{letter-spacing:9.963657px;}
.ls5b{letter-spacing:10.878564px;}
.ls53{letter-spacing:10.884564px;}
.ls52{letter-spacing:10.885202px;}
.ls59{letter-spacing:10.891202px;}
.ls23{letter-spacing:13.278538px;}
.ls11{letter-spacing:13.284538px;}
.lsa{letter-spacing:15.392685px;}
.ls4e{letter-spacing:16.532525px;}
.ls4d{letter-spacing:16.538525px;}
.lse{letter-spacing:16.602538px;}
.ls12{letter-spacing:16.605411px;}
.ls45{letter-spacing:17.865297px;}
.ls4f{letter-spacing:18.214648px;}
.ls3a{letter-spacing:18.433559px;}
.ls25{letter-spacing:18.692908px;}
.ls3d{letter-spacing:19.001306px;}
.ls3e{letter-spacing:19.099140px;}
.ls39{letter-spacing:19.289306px;}
.ls32{letter-spacing:19.502400px;}
.ls49{letter-spacing:19.727782px;}
.ls31{letter-spacing:19.920312px;}
.ls30{letter-spacing:19.924618px;}
.ls37{letter-spacing:19.931306px;}
.ls9{letter-spacing:20.060685px;}
.ls2e{letter-spacing:20.582338px;}
.ls2f{letter-spacing:20.588338px;}
.ls5c{letter-spacing:20.920491px;}
.ls6{letter-spacing:21.314727px;}
.ls44{letter-spacing:21.420532px;}
.ls40{letter-spacing:21.425306px;}
.ls7{letter-spacing:21.782387px;}
.ls33{letter-spacing:23.652305px;}
.ls3c{letter-spacing:25.512305px;}
.ls5d{letter-spacing:26.597864px;}
.ls4b{letter-spacing:27.164525px;}
.ls35{letter-spacing:28.254305px;}
.ls1{letter-spacing:30.630532px;}
.ls2{letter-spacing:30.636532px;}
.ls3b{letter-spacing:32.618450px;}
.ls64{letter-spacing:33.472706px;}
.ls4c{letter-spacing:36.105954px;}
.ls34{letter-spacing:56.101460px;}
.ls46{letter-spacing:551.524363px;}
.ls47{letter-spacing:662.459110px;}
.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;}
}
.wsde{word-spacing:-40.680285px;}
.ws56{word-spacing:-38.937826px;}
.ws10a{word-spacing:-36.071827px;}
.ws5f{word-spacing:-31.633157px;}
.wsec{word-spacing:-29.388273px;}
.ws3d{word-spacing:-29.015076px;}
.ws47{word-spacing:-28.955301px;}
.wse0{word-spacing:-27.813587px;}
.ws113{word-spacing:-25.189366px;}
.ws6c{word-spacing:-23.951070px;}
.ws62{word-spacing:-23.061721px;}
.ws73{word-spacing:-22.320209px;}
.ws5c{word-spacing:-18.687898px;}
.ws5e{word-spacing:-18.686362px;}
.ws60{word-spacing:-18.441753px;}
.wsb6{word-spacing:-18.368329px;}
.wscf{word-spacing:-18.332486px;}
.ws5a{word-spacing:-17.559277px;}
.ws3e{word-spacing:-16.605662px;}
.ws110{word-spacing:-16.511818px;}
.ws58{word-spacing:-15.364060px;}
.ws4f{word-spacing:-15.359443px;}
.ws61{word-spacing:-13.531962px;}
.ws100{word-spacing:-12.084597px;}
.ws74{word-spacing:-12.044963px;}
.ws72{word-spacing:-12.038963px;}
.ws57{word-spacing:-10.536375px;}
.ws133{word-spacing:-9.802836px;}
.ws130{word-spacing:-8.436597px;}
.ws63{word-spacing:-7.882060px;}
.ws66{word-spacing:-7.876060px;}
.ws6d{word-spacing:-7.815753px;}
.wsbe{word-spacing:-7.641699px;}
.ws48{word-spacing:-6.640488px;}
.ws12a{word-spacing:-5.292597px;}
.ws114{word-spacing:-5.224024px;}
.ws117{word-spacing:-5.218024px;}
.ws54{word-spacing:-5.202375px;}
.ws107{word-spacing:-4.644597px;}
.ws5b{word-spacing:-3.335478px;}
.ws78{word-spacing:-3.215927px;}
.wsc6{word-spacing:-3.062108px;}
.wsc5{word-spacing:-3.059836px;}
.ws120{word-spacing:-3.048597px;}
.wsc7{word-spacing:-3.036600px;}
.ws27{word-spacing:-2.917049px;}
.ws103{word-spacing:-2.904597px;}
.ws77{word-spacing:-2.797498px;}
.wsfe{word-spacing:-2.737722px;}
.ws5d{word-spacing:-2.691108px;}
.ws125{word-spacing:-2.677947px;}
.wse1{word-spacing:-2.652834px;}
.ws9{word-spacing:-2.609222px;}
.ws85{word-spacing:-2.550597px;}
.ws1a{word-spacing:-2.498620px;}
.ws6{word-spacing:-2.447827px;}
.ws31{word-spacing:-2.379069px;}
.ws134{word-spacing:-2.286597px;}
.ws83{word-spacing:-2.020415px;}
.wsca{word-spacing:-1.900864px;}
.ws165{word-spacing:-1.640851px;}
.wsff{word-spacing:-1.542210px;}
.ws159{word-spacing:-1.533254px;}
.wsae{word-spacing:-1.482435px;}
.ws33{word-spacing:-1.422659px;}
.ws157{word-spacing:-1.318061px;}
.ws150{word-spacing:-1.264262px;}
.ws44{word-spacing:-1.243332px;}
.ws45{word-spacing:-1.183557px;}
.wsd{word-spacing:-1.102867px;}
.ws10b{word-spacing:-1.049069px;}
.wsc8{word-spacing:-1.004230px;}
.wsad{word-spacing:-0.944454px;}
.wsb{word-spacing:-0.833875px;}
.ws2e{word-spacing:-0.824903px;}
.wsd7{word-spacing:-0.805402px;}
.ws7b{word-spacing:-0.765128px;}
.ws26{word-spacing:-0.705352px;}
.ws14d{word-spacing:-0.511085px;}
.ws9d{word-spacing:-0.478693px;}
.ws9e{word-spacing:-0.466250px;}
.ws10{word-spacing:-0.349690px;}
.ws79{word-spacing:-0.167372px;}
.ws8{word-spacing:-0.134496px;}
.ws3b{word-spacing:-0.107596px;}
.ws18{word-spacing:-0.047820px;}
.ws65{word-spacing:-0.041843px;}
.wsdd{word-spacing:-0.029888px;}
.ws1f{word-spacing:0.000000px;}
.ws87{word-spacing:0.011955px;}
.wsd1{word-spacing:0.029403px;}
.wsb7{word-spacing:0.071731px;}
.ws163{word-spacing:0.080698px;}
.ws6f{word-spacing:0.131506px;}
.ws12d{word-spacing:0.251058px;}
.wsb1{word-spacing:0.310833px;}
.wsb0{word-spacing:0.370609px;}
.ws123{word-spacing:0.399671px;}
.ws152{word-spacing:0.457286px;}
.wsfd{word-spacing:0.490160px;}
.wsaf{word-spacing:0.549936px;}
.ws5{word-spacing:0.564883px;}
.ws138{word-spacing:0.603514px;}
.ws38{word-spacing:0.609711px;}
.ws1d{word-spacing:0.669487px;}
.ws4e{word-spacing:0.672480px;}
.wscb{word-spacing:0.789038px;}
.wsac{word-spacing:0.848814px;}
.wsd6{word-spacing:0.887674px;}
.ws86{word-spacing:0.908589px;}
.wsd8{word-spacing:0.941472px;}
.ws105{word-spacing:0.958469px;}
.ws76{word-spacing:1.028140px;}
.ws3c{word-spacing:1.087916px;}
.wsa2{word-spacing:1.147692px;}
.ws7{word-spacing:1.210464px;}
.wsc{word-spacing:1.264262px;}
.wsc2{word-spacing:1.267243px;}
.ws10e{word-spacing:1.312733px;}
.ws12c{word-spacing:1.341671px;}
.ws82{word-spacing:1.386794px;}
.ws3f{word-spacing:1.446570px;}
.ws81{word-spacing:1.566121px;}
.wscc{word-spacing:1.593514px;}
.ws70{word-spacing:1.625896px;}
.ws96{word-spacing:1.685672px;}
.ws25{word-spacing:1.805223px;}
.ws15d{word-spacing:2.017440px;}
.ws28{word-spacing:2.044326px;}
.ws12f{word-spacing:2.104101px;}
.ws122{word-spacing:2.139601px;}
.ws124{word-spacing:2.163877px;}
.wsa6{word-spacing:2.283428px;}
.ws137{word-spacing:2.310794px;}
.wsa4{word-spacing:2.343204px;}
.wsfb{word-spacing:2.351403px;}
.ws9c{word-spacing:2.402979px;}
.ws7c{word-spacing:2.462755px;}
.wsba{word-spacing:2.522530px;}
.wsf{word-spacing:2.555424px;}
.wsa9{word-spacing:2.577516px;}
.ws127{word-spacing:2.582306px;}
.ws7f{word-spacing:2.681731px;}
.ws80{word-spacing:2.701857px;}
.wsb8{word-spacing:2.761633px;}
.ws158{word-spacing:2.824416px;}
.ws14a{word-spacing:2.881184px;}
.ws69{word-spacing:2.940960px;}
.ws1c{word-spacing:3.000735px;}
.ws3{word-spacing:3.039610px;}
.ws90{word-spacing:3.058913px;}
.ws20{word-spacing:3.060547px;}
.ws91{word-spacing:3.062051px;}
.ws132{word-spacing:3.065927px;}
.ws10d{word-spacing:3.068339px;}
.ws10f{word-spacing:3.069786px;}
.ws2{word-spacing:3.093408px;}
.ws12b{word-spacing:3.120286px;}
.ws95{word-spacing:3.180062px;}
.wsd3{word-spacing:3.231671px;}
.ws139{word-spacing:3.239838px;}
.ws75{word-spacing:3.295830px;}
.ws1{word-spacing:3.299613px;}
.ws71{word-spacing:3.315892px;}
.wscd{word-spacing:3.359389px;}
.ws42{word-spacing:3.478940px;}
.ws14f{word-spacing:3.523795px;}
.ws131{word-spacing:3.538716px;}
.ws151{word-spacing:3.631392px;}
.ws88{word-spacing:3.718042px;}
.wsc9{word-spacing:3.777818px;}
.ws9f{word-spacing:3.873353px;}
.wsa0{word-spacing:3.897369px;}
.ws6b{word-spacing:3.957145px;}
.ws6a{word-spacing:4.016920px;}
.ws161{word-spacing:4.061779px;}
.ws67{word-spacing:4.136472px;}
.ws64{word-spacing:4.155892px;}
.ws156{word-spacing:4.169376px;}
.ws147{word-spacing:4.196247px;}
.wsa1{word-spacing:4.256023px;}
.ws109{word-spacing:4.276973px;}
.wse{word-spacing:4.330771px;}
.ws7e{word-spacing:4.375574px;}
.ws24{word-spacing:4.435350px;}
.ws154{word-spacing:4.545965px;}
.ws30{word-spacing:4.614676px;}
.ws15a{word-spacing:4.653562px;}
.ws39{word-spacing:4.713892px;}
.ws3a{word-spacing:4.734228px;}
.ws7d{word-spacing:4.794003px;}
.wsa{word-spacing:4.868755px;}
.ws16{word-spacing:4.913554px;}
.wsd2{word-spacing:4.973330px;}
.ws8b{word-spacing:5.033106px;}
.wsa8{word-spacing:5.083949px;}
.ws43{word-spacing:5.152657px;}
.ws129{word-spacing:5.212432px;}
.ws7a{word-spacing:5.272208px;}
.ws53{word-spacing:5.330007px;}
.ws55{word-spacing:5.331984px;}
.ws19{word-spacing:5.451535px;}
.ws97{word-spacing:5.511310px;}
.wsf4{word-spacing:5.590876px;}
.wse7{word-spacing:5.596876px;}
.ws2c{word-spacing:5.690637px;}
.ws15f{word-spacing:5.729530px;}
.ws4b{word-spacing:5.750413px;}
.ws162{word-spacing:5.783328px;}
.ws4a{word-spacing:5.810188px;}
.ws10c{word-spacing:5.837126px;}
.ws46{word-spacing:5.869964px;}
.ws1b{word-spacing:5.929740px;}
.ws11e{word-spacing:5.989515px;}
.ws15{word-spacing:6.049291px;}
.ws6e{word-spacing:6.109066px;}
.wsf5{word-spacing:6.126464px;}
.wse8{word-spacing:6.132464px;}
.ws68{word-spacing:6.288393px;}
.ws14c{word-spacing:6.348169px;}
.ws15b{word-spacing:6.536506px;}
.ws8a{word-spacing:6.587271px;}
.wsce{word-spacing:6.766598px;}
.ws4d{word-spacing:6.805498px;}
.wsb4{word-spacing:6.826374px;}
.wsa5{word-spacing:6.886149px;}
.wsfc{word-spacing:7.005700px;}
.ws155{word-spacing:7.128288px;}
.ws149{word-spacing:7.185027px;}
.ws29{word-spacing:7.244803px;}
.ws164{word-spacing:7.289683px;}
.ws37{word-spacing:7.304578px;}
.ws17{word-spacing:7.364354px;}
.ws11f{word-spacing:7.483905px;}
.ws153{word-spacing:7.504877px;}
.ws121{word-spacing:7.543681px;}
.wsc1{word-spacing:7.603456px;}
.ws13{word-spacing:7.663232px;}
.ws23{word-spacing:7.723008px;}
.wsd4{word-spacing:7.737671px;}
.ws13a{word-spacing:7.902334px;}
.ws84{word-spacing:7.962110px;}
.ws101{word-spacing:7.983671px;}
.ws146{word-spacing:8.141437px;}
.ws50{word-spacing:8.201212px;}
.ws135{word-spacing:8.260988px;}
.ws12e{word-spacing:8.320764px;}
.ws148{word-spacing:8.500090px;}
.ws9b{word-spacing:8.559866px;}
.ws89{word-spacing:8.619642px;}
.ws115{word-spacing:8.649658px;}
.ws2f{word-spacing:8.679417px;}
.wsf9{word-spacing:8.691514px;}
.ws41{word-spacing:8.978295px;}
.ws2d{word-spacing:9.038071px;}
.ws36{word-spacing:9.277173px;}
.wsf1{word-spacing:9.281411px;}
.wse5{word-spacing:9.287411px;}
.ws14e{word-spacing:9.334022px;}
.ws126{word-spacing:9.336949px;}
.ws52{word-spacing:9.396724px;}
.ws22{word-spacing:9.456500px;}
.wsb9{word-spacing:9.516276px;}
.ws2a{word-spacing:9.576051px;}
.wsab{word-spacing:9.635827px;}
.ws102{word-spacing:9.741892px;}
.wsb3{word-spacing:9.755378px;}
.ws49{word-spacing:9.862974px;}
.ws145{word-spacing:9.934705px;}
.ws15e{word-spacing:9.979603px;}
.ws98{word-spacing:10.293358px;}
.wsf8{word-spacing:10.412910px;}
.ws1e{word-spacing:10.472685px;}
.wsd0{word-spacing:10.532461px;}
.ws4c{word-spacing:10.544486px;}
.wsb5{word-spacing:10.831339px;}
.ws2b{word-spacing:10.950890px;}
.ws136{word-spacing:11.010666px;}
.ws32{word-spacing:11.070441px;}
.wsa3{word-spacing:11.130217px;}
.wsc3{word-spacing:11.189992px;}
.ws34{word-spacing:11.488870px;}
.ws160{word-spacing:11.593555px;}
.ws14{word-spacing:11.668197px;}
.wsf2{word-spacing:11.733399px;}
.wse6{word-spacing:11.739399px;}
.ws9a{word-spacing:12.026851px;}
.ws128{word-spacing:12.146402px;}
.ws8e{word-spacing:12.284116px;}
.ws93{word-spacing:12.285118px;}
.ws8d{word-spacing:12.292934px;}
.ws15c{word-spacing:12.669523px;}
.ws99{word-spacing:12.684382px;}
.wsfa{word-spacing:12.863709px;}
.ws106{word-spacing:12.983260px;}
.ws104{word-spacing:13.043036px;}
.wsc4{word-spacing:13.222363px;}
.wsef{word-spacing:14.599631px;}
.wse3{word-spacing:14.605631px;}
.ws13c{word-spacing:15.162580px;}
.wsee{word-spacing:15.595490px;}
.wse2{word-spacing:15.601490px;}
.wsd5{word-spacing:16.209118px;}
.wsed{word-spacing:17.005592px;}
.wsdc{word-spacing:17.011592px;}
.wsbc{word-spacing:17.825033px;}
.wseb{word-spacing:17.878174px;}
.ws142{word-spacing:18.298213px;}
.wsbb{word-spacing:18.366392px;}
.ws8f{word-spacing:18.375421px;}
.ws94{word-spacing:18.399053px;}
.wsf6{word-spacing:19.453396px;}
.wse9{word-spacing:19.459396px;}
.ws108{word-spacing:19.625633px;}
.ws21{word-spacing:19.690214px;}
.wsdf{word-spacing:19.694839px;}
.ws8c{word-spacing:19.892739px;}
.ws11d{word-spacing:19.933452px;}
.wsf7{word-spacing:20.160539px;}
.wsea{word-spacing:20.166539px;}
.wsa7{word-spacing:20.421060px;}
.wsf3{word-spacing:21.358158px;}
.ws11{word-spacing:22.595328px;}
.wsf0{word-spacing:24.143974px;}
.wse4{word-spacing:24.149974px;}
.ws35{word-spacing:26.827469px;}
.ws4{word-spacing:29.829450px;}
.ws51{word-spacing:29.928630px;}
.ws40{word-spacing:30.724658px;}
.ws118{word-spacing:31.165607px;}
.ws0{word-spacing:32.192873px;}
.ws14b{word-spacing:33.854300px;}
.ws112{word-spacing:58.243607px;}
.ws116{word-spacing:58.249607px;}
.ws13e{word-spacing:63.247639px;}
.ws13f{word-spacing:64.546396px;}
.ws144{word-spacing:66.088639px;}
.ws140{word-spacing:67.166935px;}
.ws143{word-spacing:68.538199px;}
.wsb2{word-spacing:68.682164px;}
.ws92{word-spacing:72.062957px;}
.ws11c{word-spacing:78.344301px;}
.ws12{word-spacing:80.625869px;}
.ws119{word-spacing:82.514301px;}
.ws11b{word-spacing:82.520301px;}
.ws141{word-spacing:88.061927px;}
.ws13d{word-spacing:88.503093px;}
.ws13b{word-spacing:96.169236px;}
.wsda{word-spacing:143.780301px;}
.wsdb{word-spacing:168.400533px;}
.ws11a{word-spacing:182.769056px;}
.wsd9{word-spacing:204.385341px;}
.ws111{word-spacing:321.087413px;}
.wsbd{word-spacing:489.531186px;}
.wsbf{word-spacing:500.063019px;}
.ws59{word-spacing:544.231927px;}
.wsc0{word-spacing:630.822053px;}
.wsaa{word-spacing:808.971958px;}
._9{margin-left:-31.452757px;}
._6{margin-left:-29.798484px;}
._3{margin-left:-27.219407px;}
._10{margin-left:-26.038436px;}
._5{margin-left:-23.252708px;}
._11{margin-left:-20.984425px;}
._4{margin-left:-6.635092px;}
._b{margin-left:-4.572864px;}
._0{margin-left:-2.668393px;}
._8{margin-left:-1.613941px;}
._7{width:1.613941px;}
._2{width:2.668393px;}
._d{width:4.282334px;}
._1{width:5.422864px;}
._18{width:6.993745px;}
._15{width:13.645595px;}
._1a{width:15.639698px;}
._19{width:17.492742px;}
._13{width:19.465337px;}
._a{width:20.959727px;}
._12{width:22.095463px;}
._e{width:23.589853px;}
._30{width:25.837416px;}
._17{width:27.048490px;}
._c{width:28.545756px;}
._35{width:29.743401px;}
._16{width:31.202863px;}
._2f{width:33.113097px;}
._3d{width:36.744286px;}
._14{width:80.697600px;}
._1b{width:87.422400px;}
._3b{width:109.171388px;}
._28{width:111.050791px;}
._25{width:114.732958px;}
._26{width:117.201683px;}
._22{width:120.046993px;}
._20{width:121.051220px;}
._1d{width:122.473876px;}
._1f{width:124.900758px;}
._23{width:129.587152px;}
._3c{width:142.996147px;}
._34{width:143.997860px;}
._37{width:145.532190px;}
._f{width:170.648525px;}
._3a{width:171.753670px;}
._39{width:179.654994px;}
._33{width:182.754143px;}
._31{width:183.754545px;}
._38{width:184.952190px;}
._36{width:218.743135px;}
._21{width:246.220963px;}
._2c{width:260.933246px;}
._2d{width:335.405062px;}
._32{width:349.537836px;}
._2b{width:431.070242px;}
._2e{width:438.442943px;}
._2a{width:453.860199px;}
._27{width:856.145531px;}
._1c{width:886.583174px;}
._1e{width:893.469308px;}
._24{width:916.399163px;}
._29{width:939.329017px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:24.495600px;}
.fs7{font-size:28.209600px;}
.fsa{font-size:29.394720px;}
.fs6{font-size:29.887800px;}
.fs8{font-size:35.262000px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1a4{bottom:1.381512px;}
.y1a6{bottom:2.559210px;}
.y1a5{bottom:3.736908px;}
.y1a3{bottom:8.828547px;}
.y1b6{bottom:9.516418px;}
.y1b4{bottom:24.213778px;}
.y1bc{bottom:33.399873px;}
.y1b5{bottom:41.440615px;}
.y1bf{bottom:42.683828px;}
.y1a7{bottom:43.169415px;}
.y1a8{bottom:54.717720px;}
.y1c1{bottom:58.575348px;}
.y1bd{bottom:58.979587px;}
.y1af{bottom:62.933678px;}
.y1a9{bottom:66.266025px;}
.y1aa{bottom:77.805691px;}
.y1b0{bottom:82.698294px;}
.y1b7{bottom:82.807376px;}
.y1ab{bottom:89.353996px;}
.y1bb{bottom:91.864746px;}
.y1ba{bottom:99.213426px;}
.y1ac{bottom:100.902301px;}
.y1b1{bottom:102.453653px;}
.y1ad{bottom:112.441614px;}
.y1ae{bottom:138.288748px;}
.y16e{bottom:138.341642px;}
.y179{bottom:138.376904px;}
.y1b8{bottom:158.633506px;}
.y192{bottom:160.060689px;}
.y194{bottom:161.238386px;}
.y193{bottom:162.416084px;}
.y191{bottom:167.507723px;}
.y50{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.ye9{bottom:199.330500px;}
.y195{bottom:201.848503px;}
.y202{bottom:205.488000px;}
.y25{bottom:211.549500px;}
.y19e{bottom:219.126884px;}
.y19a{bottom:220.325968px;}
.y201{bottom:221.926500px;}
.y196{bottom:222.529843px;}
.y115{bottom:222.883500px;}
.ye8{bottom:224.146500px;}
.y24{bottom:229.482000px;}
.y4f{bottom:229.794000px;}
.y19f{bottom:236.405264px;}
.y200{bottom:238.365000px;}
.y19b{bottom:238.811983px;}
.y114{bottom:240.816000px;}
.ye7{bottom:242.079000px;}
.y197{bottom:243.202190px;}
.ybd{bottom:246.934500px;}
.y23{bottom:247.414500px;}
.y4e{bottom:247.726500px;}
.y1ff{bottom:253.516500px;}
.y1a0{bottom:253.683644px;}
.y19c{bottom:257.289447px;}
.y113{bottom:258.750000px;}
.ye6{bottom:260.011500px;}
.y198{bottom:263.883177px;}
.y22{bottom:265.347000px;}
.y4d{bottom:265.660500px;}
.y6d{bottom:266.497500px;}
.y1fe{bottom:269.955000px;}
.y1a1{bottom:270.962024px;}
.y19d{bottom:275.766559px;}
.y112{bottom:276.682500px;}
.ye5{bottom:278.611500px;}
.y21{bottom:283.279500px;}
.y4c{bottom:283.593000px;}
.y6c{bottom:284.430000px;}
.y1fd{bottom:286.393500px;}
.ybc{bottom:294.276000px;}
.y111{bottom:294.615000px;}
.ye4{bottom:296.544000px;}
.y95{bottom:301.212000px;}
.y13b{bottom:301.213500px;}
.y20{bottom:301.399500px;}
.y4b{bottom:301.525500px;}
.y1fc{bottom:301.545000px;}
.y161{bottom:302.170500px;}
.y6b{bottom:302.364000px;}
.y1d1{bottom:310.834500px;}
.ybb{bottom:312.208500px;}
.y110{bottom:312.547500px;}
.ye3{bottom:314.476500px;}
.y1fb{bottom:317.983500px;}
.y17b{bottom:318.739689px;}
.y94{bottom:319.146000px;}
.y1f{bottom:319.332000px;}
.y4a{bottom:319.771500px;}
.y17d{bottom:319.917386px;}
.y6a{bottom:320.296500px;}
.y17c{bottom:321.095084px;}
.y17a{bottom:326.186723px;}
.y1d0{bottom:328.767000px;}
.yba{bottom:330.141000px;}
.y10f{bottom:330.480000px;}
.ye2{bottom:332.409000px;}
.y1fa{bottom:333.135000px;}
.y93{bottom:337.078500px;}
.y1e{bottom:337.266000px;}
.y49{bottom:337.704000px;}
.y69{bottom:338.229000px;}
.y1cf{bottom:346.699500px;}
.yb9{bottom:348.075000px;}
.y1b2{bottom:348.141000px;}
.y10e{bottom:348.765000px;}
.y1f9{bottom:349.573500px;}
.ye1{bottom:350.343000px;}
.y160{bottom:350.947500px;}
.y92{bottom:355.011000px;}
.y1d{bottom:355.198500px;}
.y48{bottom:355.636500px;}
.y68{bottom:356.161500px;}
.y13a{bottom:359.490000px;}
.y17e{bottom:360.527504px;}
.y1ce{bottom:364.633500px;}
.y1f8{bottom:364.725000px;}
.yb8{bottom:366.007500px;}
.y10d{bottom:366.697500px;}
.ye0{bottom:368.275500px;}
.y15f{bottom:368.880000px;}
.y67{bottom:369.586500px;}
.y189{bottom:371.370569px;}
.y91{bottom:372.943500px;}
.y1c{bottom:373.131000px;}
.y17f{bottom:373.336513px;}
.y47{bottom:373.569000px;}
.y66{bottom:374.094000px;}
.y139{bottom:377.422500px;}
.y162{bottom:379.524000px;}
.y1f7{bottom:381.163500px;}
.y186{bottom:381.314541px;}
.y18a{bottom:382.204994px;}
.y1cd{bottom:382.638000px;}
.yb7{bottom:383.940000px;}
.y10c{bottom:384.630000px;}
.y180{bottom:386.145523px;}
.ydf{bottom:386.208000px;}
.y15e{bottom:386.812500px;}
.y90{bottom:390.876000px;}
.y1b{bottom:391.063500px;}
.y46{bottom:391.501500px;}
.y18b{bottom:393.048059px;}
.y138{bottom:395.355000px;}
.y1f6{bottom:397.600500px;}
.y181{bottom:398.945541px;}
.y1cc{bottom:400.570500px;}
.yb6{bottom:401.872500px;}
.y187{bottom:402.092586px;}
.y10b{bottom:402.562500px;}
.y18c{bottom:403.891124px;}
.yde{bottom:404.140500px;}
.y15d{bottom:404.745000px;}
.y8f{bottom:408.810000px;}
.y45{bottom:409.434000px;}
.y61{bottom:409.903500px;}
.y182{bottom:411.754550px;}
.y1f5{bottom:412.752000px;}
.y137{bottom:413.287500px;}
.y18d{bottom:414.725198px;}
.y63{bottom:417.285000px;}
.y1cb{bottom:418.504500px;}
.yb5{bottom:419.805000px;}
.y10a{bottom:420.495000px;}
.ydd{bottom:422.073000px;}
.y15c{bottom:422.679000px;}
.y188{bottom:422.870631px;}
.y183{bottom:424.563560px;}
.y18e{bottom:425.568263px;}
.y8e{bottom:426.742500px;}
.y44{bottom:427.368000px;}
.y60{bottom:427.534500px;}
.y1a{bottom:427.863000px;}
.y1f4{bottom:429.190500px;}
.y64{bottom:430.716000px;}
.y136{bottom:431.220000px;}
.y18f{bottom:436.402336px;}
.y1ca{bottom:436.437000px;}
.y184{bottom:437.363578px;}
.y62{bottom:437.644500px;}
.yb4{bottom:437.737500px;}
.ydc{bottom:440.005500px;}
.y15b{bottom:440.611500px;}
.y8d{bottom:444.675000px;}
.y43{bottom:445.300500px;}
.y1f3{bottom:445.629000px;}
.y65{bottom:448.135500px;}
.y5c{bottom:453.585000px;}
.y135{bottom:453.631500px;}
.y1c9{bottom:454.369500px;}
.yb3{bottom:455.671500px;}
.y5e{bottom:456.801000px;}
.ydb{bottom:457.939500px;}
.y109{bottom:458.118000px;}
.y15a{bottom:458.734500px;}
.y1f2{bottom:460.780500px;}
.y5d{bottom:460.966500px;}
.y8c{bottom:462.607500px;}
.y42{bottom:463.233000px;}
.y5b{bottom:471.217500px;}
.y134{bottom:471.564000px;}
.y1c8{bottom:472.302000px;}
.yb2{bottom:473.604000px;}
.yda{bottom:475.872000px;}
.y159{bottom:476.668500px;}
.y1f1{bottom:477.219000px;}
.y164{bottom:477.418151px;}
.y166{bottom:478.595849px;}
.y19{bottom:479.358000px;}
.y165{bottom:479.773547px;}
.y8b{bottom:480.540000px;}
.y5f{bottom:481.326000px;}
.y163{bottom:484.864842px;}
.y133{bottom:489.496500px;}
.y1c7{bottom:490.234500px;}
.yb1{bottom:491.536500px;}
.y1f0{bottom:492.370500px;}
.y158{bottom:494.601000px;}
.y18{bottom:495.796500px;}
.y8a{bottom:498.472500px;}
.y41{bottom:500.661000px;}
.y132{bottom:507.429000px;}
.y108{bottom:507.696000px;}
.y1c6{bottom:508.168500px;}
.y1ef{bottom:508.809000px;}
.yd9{bottom:509.094000px;}
.yb0{bottom:509.469000px;}
.y157{bottom:512.533500px;}
.y89{bottom:516.406500px;}
.y167{bottom:519.206504px;}
.y1ee{bottom:523.960500px;}
.y107{bottom:525.628500px;}
.y1c5{bottom:526.101000px;}
.yaf{bottom:527.401500px;}
.y17{bottom:528.859500px;}
.y131{bottom:529.840500px;}
.y156{bottom:530.466000px;}
.y16f{bottom:533.082277px;}
.y168{bottom:533.478974px;}
.y88{bottom:534.339000px;}
.y174{bottom:536.423263px;}
.y1a2{bottom:538.114845px;}
.y199{bottom:538.150107px;}
.y1ed{bottom:540.399000px;}
.y106{bottom:543.561000px;}
.y1c4{bottom:544.033500px;}
.y16{bottom:545.298000px;}
.yae{bottom:545.334000px;}
.y170{bottom:546.966689px;}
.y169{bottom:547.751093px;}
.y130{bottom:547.773000px;}
.y155{bottom:548.398500px;}
.y5a{bottom:549.825000px;}
.y40{bottom:550.045500px;}
.y87{bottom:552.271500px;}
.y175{bottom:553.640023px;}
.y59{bottom:554.334000px;}
.y1ec{bottom:556.837500px;}
.yd8{bottom:557.260500px;}
.y171{bottom:560.842110px;}
.y105{bottom:561.493500px;}
.y15{bottom:561.736500px;}
.y1c3{bottom:561.966000px;}
.y16a{bottom:562.023211px;}
.yad{bottom:563.268000px;}
.y154{bottom:566.332500px;}
.y3f{bottom:567.978000px;}
.y86{bottom:570.204000px;}
.y176{bottom:570.856782px;}
.y1eb{bottom:571.989000px;}
.y172{bottom:574.717531px;}
.yd7{bottom:575.193000px;}
.y16b{bottom:576.304321px;}
.y14{bottom:578.175000px;}
.y104{bottom:579.427500px;}
.yac{bottom:581.200500px;}
.y153{bottom:584.265000px;}
.y3e{bottom:585.910500px;}
.y177{bottom:588.073542px;}
.y85{bottom:588.136500px;}
.y1ea{bottom:588.427500px;}
.y173{bottom:588.593304px;}
.y16c{bottom:590.576792px;}
.yd6{bottom:593.125500px;}
.y13{bottom:594.613500px;}
.y103{bottom:597.360000px;}
.yab{bottom:599.133000px;}
.y152{bottom:602.197500px;}
.y3d{bottom:603.844500px;}
.y1e9{bottom:604.866000px;}
.y84{bottom:606.069000px;}
.y12{bottom:611.052000px;}
.yd5{bottom:611.059500px;}
.y58{bottom:611.181000px;}
.y12f{bottom:611.367000px;}
.y102{bottom:615.643500px;}
.yaa{bottom:617.065500px;}
.y1e8{bottom:620.017500px;}
.y151{bottom:620.322000px;}
.y3c{bottom:621.777000px;}
.y12e{bottom:623.323500px;}
.y83{bottom:624.003000px;}
.y11{bottom:627.490500px;}
.y1c2{bottom:628.630500px;}
.yd4{bottom:628.992000px;}
.y57{bottom:629.113500px;}
.y101{bottom:633.576000px;}
.ya9{bottom:634.998000px;}
.y12d{bottom:635.278500px;}
.y1e7{bottom:636.456000px;}
.y150{bottom:638.254500px;}
.y3b{bottom:640.021500px;}
.y82{bottom:641.935500px;}
.y10{bottom:643.929000px;}
.yd3{bottom:646.924500px;}
.y56{bottom:647.046000px;}
.y12c{bottom:647.233500px;}
.y100{bottom:651.510000px;}
.y1e6{bottom:652.893000px;}
.ya8{bottom:652.932000px;}
.y14f{bottom:656.187000px;}
.y3a{bottom:657.955500px;}
.y12b{bottom:659.188500px;}
.y81{bottom:659.868000px;}
.y1be{bottom:660.013500px;}
.yf{bottom:660.366000px;}
.yd2{bottom:664.857000px;}
.y55{bottom:666.129000px;}
.y1e5{bottom:668.044500px;}
.yff{bottom:669.442500px;}
.ya7{bottom:670.864500px;}
.y12a{bottom:671.143500px;}
.y14e{bottom:674.119500px;}
.y39{bottom:675.888000px;}
.ye{bottom:676.804500px;}
.y80{bottom:677.800500px;}
.y129{bottom:683.098500px;}
.yd1{bottom:683.457000px;}
.y54{bottom:684.063000px;}
.y1e4{bottom:684.483000px;}
.yfe{bottom:687.375000px;}
.ya6{bottom:688.797000px;}
.y14d{bottom:692.052000px;}
.yd{bottom:693.243000px;}
.y38{bottom:693.820500px;}
.y128{bottom:695.053500px;}
.y7f{bottom:695.733000px;}
.y190{bottom:696.793845px;}
.y185{bottom:696.829107px;}
.y1c0{bottom:697.454902px;}
.y1e3{bottom:700.921500px;}
.yd0{bottom:701.389500px;}
.yfd{bottom:705.307500px;}
.ya5{bottom:706.729500px;}
.y127{bottom:707.008500px;}
.yc{bottom:709.681500px;}
.y14c{bottom:709.984500px;}
.y37{bottom:711.753000px;}
.y7e{bottom:713.665500px;}
.y1e2{bottom:716.073000px;}
.y126{bottom:718.963500px;}
.ycf{bottom:719.322000px;}
.yfc{bottom:723.591000px;}
.ya4{bottom:724.662000px;}
.yb{bottom:726.120000px;}
.y14b{bottom:727.918500px;}
.y36{bottom:729.685500px;}
.y125{bottom:730.920000px;}
.y7d{bottom:731.599500px;}
.y1e1{bottom:732.511500px;}
.yce{bottom:737.254500px;}
.yfb{bottom:741.525000px;}
.y124{bottom:743.472000px;}
.y14a{bottom:745.851000px;}
.y35{bottom:747.931500px;}
.y1e0{bottom:748.950000px;}
.y7c{bottom:749.532000px;}
.y53{bottom:753.630000px;}
.ycd{bottom:755.188500px;}
.y149{bottom:763.783500px;}
.y1df{bottom:764.101500px;}
.y34{bottom:765.864000px;}
.y7b{bottom:767.464500px;}
.y52{bottom:770.067000px;}
.y123{bottom:771.492000px;}
.ycc{bottom:773.121000px;}
.y1de{bottom:780.540000px;}
.y148{bottom:781.716000px;}
.yfa{bottom:782.616000px;}
.ya3{bottom:782.856000px;}
.y33{bottom:783.796500px;}
.y7a{bottom:785.397000px;}
.y51{bottom:786.505500px;}
.y122{bottom:787.930500px;}
.ya{bottom:788.823000px;}
.yf9{bottom:794.571000px;}
.y1dd{bottom:795.691500px;}
.ya2{bottom:799.294500px;}
.y147{bottom:799.648500px;}
.y32{bottom:801.729000px;}
.y79{bottom:803.329500px;}
.yf8{bottom:806.526000px;}
.y9{bottom:810.975000px;}
.y1dc{bottom:812.130000px;}
.ya1{bottom:815.733000px;}
.yf7{bottom:818.481000px;}
.y31{bottom:819.663000px;}
.y8{bottom:821.700000px;}
.y1db{bottom:827.281500px;}
.ycb{bottom:827.598000px;}
.y121{bottom:828.343500px;}
.yf6{bottom:830.436000px;}
.ya0{bottom:832.171500px;}
.y78{bottom:836.137500px;}
.y30{bottom:837.595500px;}
.y1b3{bottom:837.877500px;}
.y7{bottom:838.138500px;}
.yca{bottom:839.553000px;}
.y120{bottom:840.298500px;}
.yf5{bottom:842.989500px;}
.y1da{bottom:843.720000px;}
.y9f{bottom:848.610000px;}
.yc9{bottom:851.508000px;}
.y11f{bottom:852.253500px;}
.y146{bottom:853.176000px;}
.y6{bottom:854.577000px;}
.y178{bottom:855.472845px;}
.y16d{bottom:855.508107px;}
.y2f{bottom:855.528000px;}
.yf4{bottom:855.541500px;}
.y1d9{bottom:860.158500px;}
.yc8{bottom:863.464500px;}
.y11e{bottom:864.210000px;}
.y9e{bottom:865.047000px;}
.y145{bottom:865.131000px;}
.yf3{bottom:867.496500px;}
.y2e{bottom:873.460500px;}
.y1d8{bottom:875.310000px;}
.y1b9{bottom:875.318902px;}
.yc7{bottom:875.419500px;}
.y11d{bottom:876.165000px;}
.y5{bottom:876.727500px;}
.y144{bottom:877.086000px;}
.yf2{bottom:879.451500px;}
.y77{bottom:880.902000px;}
.y9d{bottom:881.485500px;}
.yc6{bottom:887.374500px;}
.y11c{bottom:888.120000px;}
.y143{bottom:889.041000px;}
.y2d{bottom:891.393000px;}
.yf1{bottom:891.408000px;}
.y1d7{bottom:891.748500px;}
.y9c{bottom:897.924000px;}
.y76{bottom:898.834500px;}
.yc5{bottom:899.329500px;}
.y11b{bottom:900.075000px;}
.y142{bottom:901.594500px;}
.y4{bottom:902.335500px;}
.yf0{bottom:903.363000px;}
.y1d6{bottom:908.185500px;}
.y2c{bottom:909.325500px;}
.yc4{bottom:911.284500px;}
.y11a{bottom:912.030000px;}
.y141{bottom:914.146500px;}
.y9b{bottom:914.362500px;}
.yef{bottom:915.318000px;}
.y3{bottom:920.268000px;}
.yc3{bottom:923.239500px;}
.y1d5{bottom:923.337000px;}
.y119{bottom:923.985000px;}
.y140{bottom:926.700000px;}
.y75{bottom:927.208500px;}
.y2b{bottom:927.259500px;}
.yee{bottom:927.273000px;}
.y9a{bottom:930.801000px;}
.yc2{bottom:935.194500px;}
.y118{bottom:935.940000px;}
.y1d4{bottom:939.775500px;}
.yed{bottom:939.825000px;}
.y72{bottom:944.331000px;}
.y2a{bottom:945.504000px;}
.yc1{bottom:947.149500px;}
.y99{bottom:947.239500px;}
.y117{bottom:947.895000px;}
.y71{bottom:951.712500px;}
.y73{bottom:952.207500px;}
.yec{bottom:952.378500px;}
.y13f{bottom:954.844500px;}
.y1d3{bottom:954.927000px;}
.y74{bottom:957.978000px;}
.y70{bottom:958.269000px;}
.yc0{bottom:959.703000px;}
.y116{bottom:960.448500px;}
.y6e{bottom:961.963500px;}
.y29{bottom:963.436500px;}
.y98{bottom:963.678000px;}
.yeb{bottom:964.333500px;}
.y13e{bottom:971.283000px;}
.y1d2{bottom:971.365500px;}
.y2{bottom:972.403500px;}
.y6f{bottom:972.643500px;}
.yea{bottom:976.887000px;}
.y97{bottom:980.116500px;}
.y28{bottom:981.370500px;}
.y13d{bottom:987.721500px;}
.ybf{bottom:988.468500px;}
.y1{bottom:999.303000px;}
.y96{bottom:999.684000px;}
.y13c{bottom:1004.160000px;}
.ybe{bottom:1004.907000px;}
.y27{bottom:1038.157500px;}
.h19{height:16.707280px;}
.hf{height:18.112007px;}
.h28{height:18.151240px;}
.h23{height:20.903314px;}
.h29{height:21.781488px;}
.h3{height:24.209280px;}
.h25{height:26.129142px;}
.hc{height:31.382100px;}
.h5{height:33.139814px;}
.h20{height:38.780100px;}
.h4{height:40.348800px;}
.h21{height:41.723369px;}
.h10{height:42.799330px;}
.h7{height:44.831700px;}
.h6{height:50.211840px;}
.h15{height:50.228041px;}
.he{height:51.968100px;}
.h2{height:53.072100px;}
.h1f{height:53.078100px;}
.h18{height:55.397700px;}
.h8{height:56.954100px;}
.h1a{height:57.577330px;}
.hb{height:59.175024px;}
.h13{height:59.181024px;}
.h1b{height:59.609700px;}
.h1{height:60.254040px;}
.h17{height:62.861700px;}
.h14{height:62.954041px;}
.ha{height:64.241700px;}
.h16{height:74.984100px;}
.h9{height:74.990100px;}
.hd{height:83.233330px;}
.h1e{height:99.128100px;}
.h1d{height:100.179024px;}
.h11{height:104.607024px;}
.h2a{height:108.760464px;}
.h1c{height:111.279024px;}
.h24{height:158.679000px;}
.h26{height:158.767155px;}
.h12{height:162.273024px;}
.h27{height:176.368320px;}
.h22{height:634.716000px;}
.h0{height:1188.000000px;}
.w7{width:130.806504px;}
.w4{width:164.144610px;}
.w3{width:164.338551px;}
.w2{width:164.347367px;}
.w5{width:164.409075px;}
.w6{width:176.184603px;}
.w1{width:492.786450px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x54{left:6.393229px;}
.x42{left:16.168509px;}
.x52{left:21.090589px;}
.x5c{left:23.840649px;}
.x56{left:26.124864px;}
.x57{left:28.549561px;}
.x5a{left:30.184581px;}
.x59{left:31.715801px;}
.x55{left:32.842537px;}
.x5e{left:38.513575px;}
.x3d{left:51.455985px;}
.x51{left:56.517841px;}
.x4f{left:71.202794px;}
.x3e{left:72.269557px;}
.x53{left:85.612122px;}
.x3f{left:93.082776px;}
.x40{left:113.896348px;}
.x41{left:134.709920px;}
.x47{left:180.515875px;}
.xc{left:202.147500px;}
.x35{left:206.256000px;}
.x32{left:207.984000px;}
.x61{left:209.058000px;}
.x3{left:214.257000px;}
.x33{left:216.204000px;}
.x2c{left:219.139500px;}
.xd{left:224.563500px;}
.x2{left:226.237500px;}
.x6{left:227.527500px;}
.x50{left:229.554000px;}
.x9{left:231.481500px;}
.x43{left:236.608196px;}
.x3c{left:240.348000px;}
.x3a{left:243.187500px;}
.xb{left:244.666500px;}
.x4{left:246.064500px;}
.x44{left:257.421768px;}
.x12{left:260.016000px;}
.x3b{left:270.984000px;}
.x1{left:277.147500px;}
.x45{left:278.234987px;}
.x2b{left:289.444500px;}
.x8{left:292.054500px;}
.x38{left:293.737500px;}
.x60{left:294.946500px;}
.x5b{left:297.726000px;}
.x46{left:299.057110px;}
.x23{left:305.244000px;}
.x5d{left:327.635005px;}
.x13{left:334.737000px;}
.x4d{left:344.854426px;}
.xe{left:347.470500px;}
.x7{left:352.387500px;}
.x24{left:358.867500px;}
.x14{left:360.756000px;}
.xf{left:364.461000px;}
.x15{left:367.498500px;}
.x37{left:371.128500px;}
.x36{left:372.580500px;}
.x48{left:379.463867px;}
.x25{left:380.607000px;}
.x5{left:385.386000px;}
.x16{left:386.646000px;}
.x39{left:390.504000px;}
.xa{left:394.438500px;}
.x49{left:400.955563px;}
.x17{left:403.383000px;}
.x18{left:405.679500px;}
.x19{left:412.420500px;}
.x4a{left:421.768782px;}
.x1a{left:427.036500px;}
.x26{left:438.847500px;}
.x4b{left:442.582354px;}
.x10{left:448.891500px;}
.x2d{left:456.423000px;}
.x4c{left:463.395926px;}
.x27{left:490.651500px;}
.x5f{left:493.730005px;}
.x1b{left:504.351000px;}
.x28{left:508.107000px;}
.x11{left:511.545000px;}
.x1c{left:524.298000px;}
.x58{left:539.427000px;}
.x4e{left:543.758340px;}
.x1d{left:570.019500px;}
.x1e{left:576.762000px;}
.x1f{left:595.645500px;}
.x20{left:612.382500px;}
.x21{left:613.921500px;}
.x22{left:620.664000px;}
.x29{left:622.818000px;}
.x2e{left:641.085000px;}
.x34{left:654.556500px;}
.x2f{left:656.482500px;}
.x30{left:668.017500px;}
.x31{left:692.955000px;}
.x2a{left:701.791500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.968000pt;}
.v17{vertical-align:-5.637333pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:6.576000pt;}
.v10{vertical-align:9.392000pt;}
.ve{vertical-align:10.629333pt;}
.v11{vertical-align:13.136000pt;}
.v5{vertical-align:16.032000pt;}
.v7{vertical-align:17.253333pt;}
.vb{vertical-align:18.298667pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:22.730667pt;}
.vf{vertical-align:26.661333pt;}
.va{vertical-align:27.973333pt;}
.v14{vertical-align:34.688000pt;}
.v9{vertical-align:35.941333pt;}
.v6{vertical-align:38.762667pt;}
.v8{vertical-align:50.474667pt;}
.v15{vertical-align:60.218667pt;}
.v12{vertical-align:83.653333pt;}
.v13{vertical-align:86.922667pt;}
.vc{vertical-align:90.858667pt;}
.vd{vertical-align:142.117333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000267pt;}
.ls38{letter-spacing:0.000278pt;}
.ls54{letter-spacing:0.000374pt;}
.lsc{letter-spacing:0.000479pt;}
.ls10{letter-spacing:0.000501pt;}
.ls5f{letter-spacing:0.000614pt;}
.ls62{letter-spacing:0.000880pt;}
.ls48{letter-spacing:0.001180pt;}
.ls60{letter-spacing:0.001249pt;}
.ls2a{letter-spacing:0.001253pt;}
.ls13{letter-spacing:0.001710pt;}
.ls50{letter-spacing:0.002079pt;}
.ls66{letter-spacing:0.002086pt;}
.ls51{letter-spacing:0.002115pt;}
.ls28{letter-spacing:0.002205pt;}
.ls21{letter-spacing:0.002345pt;}
.ls42{letter-spacing:0.002352pt;}
.ls41{letter-spacing:0.002387pt;}
.ls4{letter-spacing:0.002424pt;}
.ls19{letter-spacing:0.002694pt;}
.ls22{letter-spacing:0.002906pt;}
.lsd{letter-spacing:0.003246pt;}
.ls55{letter-spacing:0.003519pt;}
.ls1f{letter-spacing:0.003709pt;}
.ls57{letter-spacing:0.003879pt;}
.ls1c{letter-spacing:0.003892pt;}
.ls58{letter-spacing:0.004041pt;}
.ls36{letter-spacing:0.004105pt;}
.ls65{letter-spacing:0.004127pt;}
.ls56{letter-spacing:0.004212pt;}
.ls27{letter-spacing:0.004349pt;}
.ls5e{letter-spacing:0.004352pt;}
.ls5a{letter-spacing:0.005708pt;}
.ls17{letter-spacing:0.007043pt;}
.lsf{letter-spacing:0.188521pt;}
.ls2d{letter-spacing:0.193855pt;}
.ls5{letter-spacing:0.412788pt;}
.ls29{letter-spacing:1.141848pt;}
.ls2b{letter-spacing:1.335170pt;}
.lsb{letter-spacing:1.366746pt;}
.ls16{letter-spacing:1.471333pt;}
.ls1d{letter-spacing:1.476666pt;}
.ls8{letter-spacing:1.480296pt;}
.ls20{letter-spacing:2.651680pt;}
.ls0{letter-spacing:2.652911pt;}
.ls2c{letter-spacing:2.654545pt;}
.ls61{letter-spacing:2.654659pt;}
.ls43{letter-spacing:2.655879pt;}
.ls24{letter-spacing:2.657014pt;}
.ls63{letter-spacing:2.657173pt;}
.ls18{letter-spacing:3.064580pt;}
.ls26{letter-spacing:4.807919pt;}
.ls1b{letter-spacing:6.371251pt;}
.ls14{letter-spacing:6.376239pt;}
.ls3f{letter-spacing:6.642178pt;}
.ls4a{letter-spacing:7.257545pt;}
.ls1a{letter-spacing:8.856239pt;}
.ls1e{letter-spacing:8.856584pt;}
.ls5b{letter-spacing:9.669835pt;}
.ls53{letter-spacing:9.675168pt;}
.ls52{letter-spacing:9.675735pt;}
.ls59{letter-spacing:9.681069pt;}
.ls23{letter-spacing:11.803145pt;}
.ls11{letter-spacing:11.808479pt;}
.lsa{letter-spacing:13.682387pt;}
.ls4e{letter-spacing:14.695578pt;}
.ls4d{letter-spacing:14.700911pt;}
.lse{letter-spacing:14.757812pt;}
.ls12{letter-spacing:14.760365pt;}
.ls45{letter-spacing:15.880264pt;}
.ls4f{letter-spacing:16.190798pt;}
.ls3a{letter-spacing:16.385386pt;}
.ls25{letter-spacing:16.615919pt;}
.ls3d{letter-spacing:16.890050pt;}
.ls3e{letter-spacing:16.977014pt;}
.ls39{letter-spacing:17.146050pt;}
.ls32{letter-spacing:17.335467pt;}
.ls49{letter-spacing:17.535806pt;}
.ls31{letter-spacing:17.706944pt;}
.ls30{letter-spacing:17.710771pt;}
.ls37{letter-spacing:17.716716pt;}
.ls9{letter-spacing:17.831720pt;}
.ls2e{letter-spacing:18.295412pt;}
.ls2f{letter-spacing:18.300745pt;}
.ls5c{letter-spacing:18.595992pt;}
.ls6{letter-spacing:18.946424pt;}
.ls44{letter-spacing:19.040473pt;}
.ls40{letter-spacing:19.044716pt;}
.ls7{letter-spacing:19.362122pt;}
.ls33{letter-spacing:21.024271pt;}
.ls3c{letter-spacing:22.677605pt;}
.ls5d{letter-spacing:23.642546pt;}
.ls4b{letter-spacing:24.146245pt;}
.ls35{letter-spacing:25.114938pt;}
.ls1{letter-spacing:27.227139pt;}
.ls2{letter-spacing:27.232473pt;}
.ls3b{letter-spacing:28.994178pt;}
.ls64{letter-spacing:29.753517pt;}
.ls4c{letter-spacing:32.094181pt;}
.ls34{letter-spacing:49.867964pt;}
.ls46{letter-spacing:490.243879pt;}
.ls47{letter-spacing:588.852542pt;}
.wsde{word-spacing:-36.160253pt;}
.ws56{word-spacing:-34.611401pt;}
.ws10a{word-spacing:-32.063846pt;}
.ws5f{word-spacing:-28.118362pt;}
.wsec{word-spacing:-26.122909pt;}
.ws3d{word-spacing:-25.791179pt;}
.ws47{word-spacing:-25.738045pt;}
.wse0{word-spacing:-24.723188pt;}
.ws113{word-spacing:-22.390547pt;}
.ws6c{word-spacing:-21.289840pt;}
.ws62{word-spacing:-20.499307pt;}
.ws73{word-spacing:-19.840186pt;}
.ws5c{word-spacing:-16.611465pt;}
.ws5e{word-spacing:-16.610099pt;}
.ws60{word-spacing:-16.392669pt;}
.wsb6{word-spacing:-16.327404pt;}
.wscf{word-spacing:-16.295543pt;}
.ws5a{word-spacing:-15.608246pt;}
.ws3e{word-spacing:-14.760588pt;}
.ws110{word-spacing:-14.677171pt;}
.ws58{word-spacing:-13.656942pt;}
.ws4f{word-spacing:-13.652838pt;}
.ws61{word-spacing:-12.028410pt;}
.ws100{word-spacing:-10.741864pt;}
.ws74{word-spacing:-10.706633pt;}
.ws72{word-spacing:-10.701300pt;}
.ws57{word-spacing:-9.365667pt;}
.ws133{word-spacing:-8.713632pt;}
.ws130{word-spacing:-7.499198pt;}
.ws63{word-spacing:-7.006276pt;}
.ws66{word-spacing:-7.000942pt;}
.ws6d{word-spacing:-6.947336pt;}
.wsbe{word-spacing:-6.792621pt;}
.ws48{word-spacing:-5.902656pt;}
.ws12a{word-spacing:-4.704531pt;}
.ws114{word-spacing:-4.643577pt;}
.ws117{word-spacing:-4.638244pt;}
.ws54{word-spacing:-4.624334pt;}
.ws107{word-spacing:-4.128531pt;}
.ws5b{word-spacing:-2.964870pt;}
.ws78{word-spacing:-2.858602pt;}
.wsc6{word-spacing:-2.721874pt;}
.wsc5{word-spacing:-2.719854pt;}
.ws120{word-spacing:-2.709864pt;}
.wsc7{word-spacing:-2.699200pt;}
.ws27{word-spacing:-2.592933pt;}
.ws103{word-spacing:-2.581864pt;}
.ws77{word-spacing:-2.486665pt;}
.wsfe{word-spacing:-2.433531pt;}
.ws5d{word-spacing:-2.392096pt;}
.ws125{word-spacing:-2.380397pt;}
.wse1{word-spacing:-2.358074pt;}
.ws9{word-spacing:-2.319309pt;}
.ws85{word-spacing:-2.267198pt;}
.ws1a{word-spacing:-2.220996pt;}
.ws6{word-spacing:-2.175846pt;}
.ws31{word-spacing:-2.114728pt;}
.ws134{word-spacing:-2.032531pt;}
.ws83{word-spacing:-1.795925pt;}
.wsca{word-spacing:-1.689657pt;}
.ws165{word-spacing:-1.458534pt;}
.wsff{word-spacing:-1.370854pt;}
.ws159{word-spacing:-1.362893pt;}
.wsae{word-spacing:-1.317720pt;}
.ws33{word-spacing:-1.264586pt;}
.ws157{word-spacing:-1.171610pt;}
.ws150{word-spacing:-1.123789pt;}
.ws44{word-spacing:-1.105184pt;}
.ws45{word-spacing:-1.052051pt;}
.wsd{word-spacing:-0.980326pt;}
.ws10b{word-spacing:-0.932506pt;}
.wsc8{word-spacing:-0.892649pt;}
.wsad{word-spacing:-0.839515pt;}
.wsb{word-spacing:-0.741222pt;}
.ws2e{word-spacing:-0.733247pt;}
.wsd7{word-spacing:-0.715913pt;}
.ws7b{word-spacing:-0.680113pt;}
.ws26{word-spacing:-0.626980pt;}
.ws14d{word-spacing:-0.454298pt;}
.ws9d{word-spacing:-0.425505pt;}
.ws9e{word-spacing:-0.414444pt;}
.ws10{word-spacing:-0.310835pt;}
.ws79{word-spacing:-0.148775pt;}
.ws8{word-spacing:-0.119552pt;}
.ws3b{word-spacing:-0.095641pt;}
.ws18{word-spacing:-0.042507pt;}
.ws65{word-spacing:-0.037194pt;}
.wsdd{word-spacing:-0.026567pt;}
.ws1f{word-spacing:0.000000pt;}
.ws87{word-spacing:0.010627pt;}
.wsd1{word-spacing:0.026136pt;}
.wsb7{word-spacing:0.063761pt;}
.ws163{word-spacing:0.071731pt;}
.ws6f{word-spacing:0.116895pt;}
.ws12d{word-spacing:0.223162pt;}
.wsb1{word-spacing:0.276296pt;}
.wsb0{word-spacing:0.329430pt;}
.ws123{word-spacing:0.355263pt;}
.ws152{word-spacing:0.406477pt;}
.wsfd{word-spacing:0.435698pt;}
.wsaf{word-spacing:0.488832pt;}
.ws5{word-spacing:0.502118pt;}
.ws138{word-spacing:0.536457pt;}
.ws38{word-spacing:0.541965pt;}
.ws1d{word-spacing:0.595099pt;}
.ws4e{word-spacing:0.597760pt;}
.wscb{word-spacing:0.701367pt;}
.wsac{word-spacing:0.754501pt;}
.wsd6{word-spacing:0.789043pt;}
.ws86{word-spacing:0.807635pt;}
.wsd8{word-spacing:0.836864pt;}
.ws105{word-spacing:0.851972pt;}
.ws76{word-spacing:0.913903pt;}
.ws3c{word-spacing:0.967036pt;}
.wsa2{word-spacing:1.020170pt;}
.ws7{word-spacing:1.075968pt;}
.wsc{word-spacing:1.123789pt;}
.wsc2{word-spacing:1.126438pt;}
.ws10e{word-spacing:1.166874pt;}
.ws12c{word-spacing:1.192596pt;}
.ws82{word-spacing:1.232706pt;}
.ws3f{word-spacing:1.285840pt;}
.ws81{word-spacing:1.392107pt;}
.wscc{word-spacing:1.416457pt;}
.ws70{word-spacing:1.445241pt;}
.ws96{word-spacing:1.498375pt;}
.ws25{word-spacing:1.604643pt;}
.ws15d{word-spacing:1.793280pt;}
.ws28{word-spacing:1.817178pt;}
.ws12f{word-spacing:1.870312pt;}
.ws122{word-spacing:1.901868pt;}
.ws124{word-spacing:1.923446pt;}
.wsa6{word-spacing:2.029714pt;}
.ws137{word-spacing:2.054039pt;}
.wsa4{word-spacing:2.082848pt;}
.wsfb{word-spacing:2.090136pt;}
.ws9c{word-spacing:2.135981pt;}
.ws7c{word-spacing:2.189115pt;}
.wsba{word-spacing:2.242249pt;}
.wsf{word-spacing:2.271488pt;}
.wsa9{word-spacing:2.291126pt;}
.ws127{word-spacing:2.295383pt;}
.ws7f{word-spacing:2.383761pt;}
.ws80{word-spacing:2.401651pt;}
.wsb8{word-spacing:2.454785pt;}
.ws158{word-spacing:2.510592pt;}
.ws14a{word-spacing:2.561052pt;}
.ws69{word-spacing:2.614186pt;}
.ws1c{word-spacing:2.667320pt;}
.ws3{word-spacing:2.701875pt;}
.ws90{word-spacing:2.719034pt;}
.ws20{word-spacing:2.720486pt;}
.ws91{word-spacing:2.721823pt;}
.ws132{word-spacing:2.725268pt;}
.ws10d{word-spacing:2.727412pt;}
.ws10f{word-spacing:2.728699pt;}
.ws2{word-spacing:2.749696pt;}
.ws12b{word-spacing:2.773588pt;}
.ws95{word-spacing:2.826722pt;}
.wsd3{word-spacing:2.872596pt;}
.ws139{word-spacing:2.879856pt;}
.ws75{word-spacing:2.929626pt;}
.ws1{word-spacing:2.932989pt;}
.ws71{word-spacing:2.947459pt;}
.wscd{word-spacing:2.986123pt;}
.ws42{word-spacing:3.092391pt;}
.ws14f{word-spacing:3.132262pt;}
.ws131{word-spacing:3.145525pt;}
.ws151{word-spacing:3.227904pt;}
.ws88{word-spacing:3.304927pt;}
.wsc9{word-spacing:3.358060pt;}
.ws9f{word-spacing:3.442981pt;}
.wsa0{word-spacing:3.464328pt;}
.ws6b{word-spacing:3.517462pt;}
.ws6a{word-spacing:3.570596pt;}
.ws161{word-spacing:3.610470pt;}
.ws67{word-spacing:3.676864pt;}
.ws64{word-spacing:3.694126pt;}
.ws156{word-spacing:3.706112pt;}
.ws147{word-spacing:3.729997pt;}
.wsa1{word-spacing:3.783131pt;}
.ws109{word-spacing:3.801754pt;}
.wse{word-spacing:3.849574pt;}
.ws7e{word-spacing:3.889399pt;}
.ws24{word-spacing:3.942533pt;}
.ws154{word-spacing:4.040858pt;}
.ws30{word-spacing:4.101935pt;}
.ws15a{word-spacing:4.136499pt;}
.ws39{word-spacing:4.190126pt;}
.ws3a{word-spacing:4.208202pt;}
.ws7d{word-spacing:4.261336pt;}
.wsa{word-spacing:4.327782pt;}
.ws16{word-spacing:4.367604pt;}
.wsd2{word-spacing:4.420738pt;}
.ws8b{word-spacing:4.473872pt;}
.wsa8{word-spacing:4.519066pt;}
.ws43{word-spacing:4.580139pt;}
.ws129{word-spacing:4.633273pt;}
.ws7a{word-spacing:4.686407pt;}
.ws53{word-spacing:4.737784pt;}
.ws55{word-spacing:4.739541pt;}
.ws19{word-spacing:4.845809pt;}
.ws97{word-spacing:4.898943pt;}
.wsf4{word-spacing:4.969668pt;}
.wse7{word-spacing:4.975001pt;}
.ws2c{word-spacing:5.058344pt;}
.ws15f{word-spacing:5.092915pt;}
.ws4b{word-spacing:5.111478pt;}
.ws162{word-spacing:5.140736pt;}
.ws4a{word-spacing:5.164612pt;}
.ws10c{word-spacing:5.188557pt;}
.ws46{word-spacing:5.217746pt;}
.ws1b{word-spacing:5.270880pt;}
.ws11e{word-spacing:5.324013pt;}
.ws15{word-spacing:5.377147pt;}
.ws6e{word-spacing:5.430281pt;}
.wsf5{word-spacing:5.445746pt;}
.wse8{word-spacing:5.451079pt;}
.ws68{word-spacing:5.589683pt;}
.ws14c{word-spacing:5.642817pt;}
.ws15b{word-spacing:5.810227pt;}
.ws8a{word-spacing:5.855352pt;}
.wsce{word-spacing:6.014754pt;}
.ws4d{word-spacing:6.049331pt;}
.wsb4{word-spacing:6.067888pt;}
.wsa5{word-spacing:6.121021pt;}
.wsfc{word-spacing:6.227289pt;}
.ws155{word-spacing:6.336256pt;}
.ws149{word-spacing:6.386691pt;}
.ws29{word-spacing:6.439825pt;}
.ws164{word-spacing:6.479718pt;}
.ws37{word-spacing:6.492959pt;}
.ws17{word-spacing:6.546092pt;}
.ws11f{word-spacing:6.652360pt;}
.ws153{word-spacing:6.671002pt;}
.ws121{word-spacing:6.705494pt;}
.wsc1{word-spacing:6.758628pt;}
.ws13{word-spacing:6.811762pt;}
.ws23{word-spacing:6.864896pt;}
.wsd4{word-spacing:6.877930pt;}
.ws13a{word-spacing:7.024297pt;}
.ws84{word-spacing:7.077431pt;}
.ws101{word-spacing:7.096596pt;}
.ws146{word-spacing:7.236833pt;}
.ws50{word-spacing:7.289967pt;}
.ws135{word-spacing:7.343100pt;}
.ws12e{word-spacing:7.396234pt;}
.ws148{word-spacing:7.555636pt;}
.ws9b{word-spacing:7.608770pt;}
.ws89{word-spacing:7.661904pt;}
.ws115{word-spacing:7.688585pt;}
.ws2f{word-spacing:7.715037pt;}
.wsf9{word-spacing:7.725790pt;}
.ws41{word-spacing:7.980707pt;}
.ws2d{word-spacing:8.033841pt;}
.ws36{word-spacing:8.246376pt;}
.wsf1{word-spacing:8.250143pt;}
.wse5{word-spacing:8.255477pt;}
.ws14e{word-spacing:8.296909pt;}
.ws126{word-spacing:8.299510pt;}
.ws52{word-spacing:8.352644pt;}
.ws22{word-spacing:8.405778pt;}
.wsb9{word-spacing:8.458912pt;}
.ws2a{word-spacing:8.512045pt;}
.wsab{word-spacing:8.565179pt;}
.ws102{word-spacing:8.659459pt;}
.wsb3{word-spacing:8.671447pt;}
.ws49{word-spacing:8.767088pt;}
.ws145{word-spacing:8.830849pt;}
.ws15e{word-spacing:8.870758pt;}
.ws98{word-spacing:9.149652pt;}
.wsf8{word-spacing:9.255920pt;}
.ws1e{word-spacing:9.309053pt;}
.wsd0{word-spacing:9.362187pt;}
.ws4c{word-spacing:9.372877pt;}
.wsb5{word-spacing:9.627857pt;}
.ws2b{word-spacing:9.734124pt;}
.ws136{word-spacing:9.787258pt;}
.ws32{word-spacing:9.840392pt;}
.wsa3{word-spacing:9.893526pt;}
.wsc3{word-spacing:9.946660pt;}
.ws34{word-spacing:10.212329pt;}
.ws160{word-spacing:10.305382pt;}
.ws14{word-spacing:10.371731pt;}
.wsf2{word-spacing:10.429688pt;}
.wse6{word-spacing:10.435022pt;}
.ws9a{word-spacing:10.690534pt;}
.ws128{word-spacing:10.796802pt;}
.ws8e{word-spacing:10.919214pt;}
.ws93{word-spacing:10.920105pt;}
.ws8d{word-spacing:10.927053pt;}
.ws15c{word-spacing:11.261798pt;}
.ws99{word-spacing:11.275007pt;}
.wsfa{word-spacing:11.434408pt;}
.ws106{word-spacing:11.540676pt;}
.ws104{word-spacing:11.593810pt;}
.wsc4{word-spacing:11.753211pt;}
.wsef{word-spacing:12.977450pt;}
.wse3{word-spacing:12.982783pt;}
.ws13c{word-spacing:13.477849pt;}
.wsee{word-spacing:13.862658pt;}
.wse2{word-spacing:13.867991pt;}
.wsd5{word-spacing:14.408105pt;}
.wsed{word-spacing:15.116082pt;}
.wsdc{word-spacing:15.121415pt;}
.wsbc{word-spacing:15.844474pt;}
.wseb{word-spacing:15.891710pt;}
.ws142{word-spacing:16.265078pt;}
.wsbb{word-spacing:16.325681pt;}
.ws8f{word-spacing:16.333708pt;}
.ws94{word-spacing:16.354714pt;}
.wsf6{word-spacing:17.291908pt;}
.wse9{word-spacing:17.297241pt;}
.ws108{word-spacing:17.445007pt;}
.ws21{word-spacing:17.502413pt;}
.wsdf{word-spacing:17.506523pt;}
.ws8c{word-spacing:17.682435pt;}
.ws11d{word-spacing:17.718624pt;}
.wsf7{word-spacing:17.920479pt;}
.wsea{word-spacing:17.925813pt;}
.wsa7{word-spacing:18.152054pt;}
.wsf3{word-spacing:18.985029pt;}
.ws11{word-spacing:20.084736pt;}
.wsf0{word-spacing:21.461310pt;}
.wse4{word-spacing:21.466643pt;}
.ws35{word-spacing:23.846639pt;}
.ws4{word-spacing:26.515067pt;}
.ws51{word-spacing:26.603226pt;}
.ws40{word-spacing:27.310807pt;}
.ws118{word-spacing:27.702761pt;}
.ws0{word-spacing:28.615887pt;}
.ws14b{word-spacing:30.092711pt;}
.ws112{word-spacing:51.772095pt;}
.ws116{word-spacing:51.777428pt;}
.ws13e{word-spacing:56.220124pt;}
.ws13f{word-spacing:57.374574pt;}
.ws144{word-spacing:58.745457pt;}
.ws140{word-spacing:59.703942pt;}
.ws143{word-spacing:60.922843pt;}
.wsb2{word-spacing:61.050813pt;}
.ws92{word-spacing:64.055962pt;}
.ws11c{word-spacing:69.639379pt;}
.ws12{word-spacing:71.667439pt;}
.ws119{word-spacing:73.346045pt;}
.ws11b{word-spacing:73.351379pt;}
.ws141{word-spacing:78.277268pt;}
.ws13d{word-spacing:78.669416pt;}
.ws13b{word-spacing:85.483765pt;}
.wsda{word-spacing:127.804712pt;}
.wsdb{word-spacing:149.689363pt;}
.ws11a{word-spacing:162.461383pt;}
.wsd9{word-spacing:181.675859pt;}
.ws111{word-spacing:285.411033pt;}
.wsbd{word-spacing:435.138832pt;}
.wsbf{word-spacing:444.500461pt;}
.ws59{word-spacing:483.761713pt;}
.wsc0{word-spacing:560.730714pt;}
.wsaa{word-spacing:719.086185pt;}
._9{margin-left:-27.958006pt;}
._6{margin-left:-26.487541pt;}
._3{margin-left:-24.195028pt;}
._10{margin-left:-23.145277pt;}
._5{margin-left:-20.669074pt;}
._11{margin-left:-18.652822pt;}
._4{margin-left:-5.897859pt;}
._b{margin-left:-4.064768pt;}
._0{margin-left:-2.371905pt;}
._8{margin-left:-1.434614pt;}
._7{width:1.434614pt;}
._2{width:2.371905pt;}
._d{width:3.806519pt;}
._1{width:4.820323pt;}
._18{width:6.216662pt;}
._15{width:12.129418pt;}
._1a{width:13.901954pt;}
._19{width:15.549104pt;}
._13{width:17.302522pt;}
._a{width:18.630868pt;}
._12{width:19.640412pt;}
._e{width:20.968758pt;}
._30{width:22.966592pt;}
._17{width:24.043102pt;}
._c{width:25.374005pt;}
._35{width:26.438579pt;}
._16{width:27.735878pt;}
._2f{width:29.433864pt;}
._3d{width:32.661587pt;}
._14{width:71.731200pt;}
._1b{width:77.708800pt;}
._3b{width:97.041234pt;}
._28{width:98.711814pt;}
._25{width:101.984851pt;}
._26{width:104.179274pt;}
._22{width:106.708438pt;}
._20{width:107.601085pt;}
._1d{width:108.865667pt;}
._1f{width:111.022896pt;}
._23{width:115.188579pt;}
._3c{width:127.107686pt;}
._34{width:127.998098pt;}
._37{width:129.361947pt;}
._f{width:151.687578pt;}
._3a{width:152.669929pt;}
._39{width:159.693328pt;}
._33{width:162.448127pt;}
._31{width:163.337373pt;}
._38{width:164.401947pt;}
._36{width:194.438342pt;}
._21{width:218.863078pt;}
._2c{width:231.940663pt;}
._2d{width:298.137833pt;}
._32{width:310.700299pt;}
._2b{width:383.173548pt;}
._2e{width:389.727061pt;}
._2a{width:403.431288pt;}
._27{width:761.018250pt;}
._1c{width:788.073933pt;}
._1e{width:794.194941pt;}
._24{width:814.577034pt;}
._29{width:834.959126pt;}
.fs9{font-size:21.773867pt;}
.fs7{font-size:25.075200pt;}
.fsa{font-size:26.128640pt;}
.fs6{font-size:26.566933pt;}
.fs8{font-size:31.344000pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1a4{bottom:1.228011pt;}
.y1a6{bottom:2.274853pt;}
.y1a5{bottom:3.321696pt;}
.y1a3{bottom:7.847597pt;}
.y1b6{bottom:8.459038pt;}
.y1b4{bottom:21.523358pt;}
.y1bc{bottom:29.688776pt;}
.y1b5{bottom:36.836102pt;}
.y1bf{bottom:37.941180pt;}
.y1a7{bottom:38.372814pt;}
.y1a8{bottom:48.637974pt;}
.y1c1{bottom:52.066976pt;}
.y1bd{bottom:52.426300pt;}
.y1af{bottom:55.941047pt;}
.y1a9{bottom:58.903134pt;}
.y1aa{bottom:69.160614pt;}
.y1b0{bottom:73.509594pt;}
.y1b7{bottom:73.606556pt;}
.y1ab{bottom:79.425774pt;}
.y1bb{bottom:81.657552pt;}
.y1ba{bottom:88.189712pt;}
.y1ac{bottom:89.690934pt;}
.y1b1{bottom:91.069914pt;}
.y1ad{bottom:99.948102pt;}
.y1ae{bottom:122.923332pt;}
.y16e{bottom:122.970348pt;}
.y179{bottom:123.001692pt;}
.y1b8{bottom:141.007561pt;}
.y192{bottom:142.276168pt;}
.y194{bottom:143.323010pt;}
.y193{bottom:144.369853pt;}
.y191{bottom:148.895754pt;}
.y50{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.ye9{bottom:177.182667pt;}
.y195{bottom:179.420892pt;}
.y202{bottom:182.656000pt;}
.y25{bottom:188.044000pt;}
.y19e{bottom:194.779452pt;}
.y19a{bottom:195.845305pt;}
.y201{bottom:197.268000pt;}
.y196{bottom:197.804305pt;}
.y115{bottom:198.118667pt;}
.ye8{bottom:199.241333pt;}
.y24{bottom:203.984000pt;}
.y4f{bottom:204.261333pt;}
.y19f{bottom:210.138012pt;}
.y200{bottom:211.880000pt;}
.y19b{bottom:212.277318pt;}
.y114{bottom:214.058667pt;}
.ye7{bottom:215.181333pt;}
.y197{bottom:216.179725pt;}
.ybd{bottom:219.497333pt;}
.y23{bottom:219.924000pt;}
.y4e{bottom:220.201333pt;}
.y1ff{bottom:225.348000pt;}
.y1a0{bottom:225.496572pt;}
.y19c{bottom:228.701731pt;}
.y113{bottom:230.000000pt;}
.ye6{bottom:231.121333pt;}
.y198{bottom:234.562824pt;}
.y22{bottom:235.864000pt;}
.y4d{bottom:236.142667pt;}
.y6d{bottom:236.886667pt;}
.y1fe{bottom:239.960000pt;}
.y1a1{bottom:240.855132pt;}
.y19d{bottom:245.125830pt;}
.y112{bottom:245.940000pt;}
.ye5{bottom:247.654667pt;}
.y21{bottom:251.804000pt;}
.y4c{bottom:252.082667pt;}
.y6c{bottom:252.826667pt;}
.y1fd{bottom:254.572000pt;}
.ybc{bottom:261.578667pt;}
.y111{bottom:261.880000pt;}
.ye4{bottom:263.594667pt;}
.y95{bottom:267.744000pt;}
.y13b{bottom:267.745333pt;}
.y20{bottom:267.910667pt;}
.y4b{bottom:268.022667pt;}
.y1fc{bottom:268.040000pt;}
.y161{bottom:268.596000pt;}
.y6b{bottom:268.768000pt;}
.y1d1{bottom:276.297333pt;}
.ybb{bottom:277.518667pt;}
.y110{bottom:277.820000pt;}
.ye3{bottom:279.534667pt;}
.y1fb{bottom:282.652000pt;}
.y17b{bottom:283.324168pt;}
.y94{bottom:283.685333pt;}
.y1f{bottom:283.850667pt;}
.y4a{bottom:284.241333pt;}
.y17d{bottom:284.371010pt;}
.y6a{bottom:284.708000pt;}
.y17c{bottom:285.417853pt;}
.y17a{bottom:289.943754pt;}
.y1d0{bottom:292.237333pt;}
.yba{bottom:293.458667pt;}
.y10f{bottom:293.760000pt;}
.ye2{bottom:295.474667pt;}
.y1fa{bottom:296.120000pt;}
.y93{bottom:299.625333pt;}
.y1e{bottom:299.792000pt;}
.y49{bottom:300.181333pt;}
.y69{bottom:300.648000pt;}
.y1cf{bottom:308.177333pt;}
.yb9{bottom:309.400000pt;}
.y1b2{bottom:309.458667pt;}
.y10e{bottom:310.013333pt;}
.y1f9{bottom:310.732000pt;}
.ye1{bottom:311.416000pt;}
.y160{bottom:311.953333pt;}
.y92{bottom:315.565333pt;}
.y1d{bottom:315.732000pt;}
.y48{bottom:316.121333pt;}
.y68{bottom:316.588000pt;}
.y13a{bottom:319.546667pt;}
.y17e{bottom:320.468892pt;}
.y1ce{bottom:324.118667pt;}
.y1f8{bottom:324.200000pt;}
.yb8{bottom:325.340000pt;}
.y10d{bottom:325.953333pt;}
.ye0{bottom:327.356000pt;}
.y15f{bottom:327.893333pt;}
.y67{bottom:328.521333pt;}
.y189{bottom:330.107172pt;}
.y91{bottom:331.505333pt;}
.y1c{bottom:331.672000pt;}
.y17f{bottom:331.854678pt;}
.y47{bottom:332.061333pt;}
.y66{bottom:332.528000pt;}
.y139{bottom:335.486667pt;}
.y162{bottom:337.354667pt;}
.y1f7{bottom:338.812000pt;}
.y186{bottom:338.946258pt;}
.y18a{bottom:339.737773pt;}
.y1cd{bottom:340.122667pt;}
.yb7{bottom:341.280000pt;}
.y10c{bottom:341.893333pt;}
.y180{bottom:343.240465pt;}
.ydf{bottom:343.296000pt;}
.y15e{bottom:343.833333pt;}
.y90{bottom:347.445333pt;}
.y1b{bottom:347.612000pt;}
.y46{bottom:348.001333pt;}
.y18b{bottom:349.376053pt;}
.y138{bottom:351.426667pt;}
.y1f6{bottom:353.422667pt;}
.y181{bottom:354.618258pt;}
.y1cc{bottom:356.062667pt;}
.yb6{bottom:357.220000pt;}
.y187{bottom:357.415632pt;}
.y10b{bottom:357.833333pt;}
.y18c{bottom:359.014333pt;}
.yde{bottom:359.236000pt;}
.y15d{bottom:359.773333pt;}
.y8f{bottom:363.386667pt;}
.y45{bottom:363.941333pt;}
.y61{bottom:364.358667pt;}
.y182{bottom:366.004045pt;}
.y1f5{bottom:366.890667pt;}
.y137{bottom:367.366667pt;}
.y18d{bottom:368.644620pt;}
.y63{bottom:370.920000pt;}
.y1cb{bottom:372.004000pt;}
.yb5{bottom:373.160000pt;}
.y10a{bottom:373.773333pt;}
.ydd{bottom:375.176000pt;}
.y15c{bottom:375.714667pt;}
.y188{bottom:375.885006pt;}
.y183{bottom:377.389831pt;}
.y18e{bottom:378.282900pt;}
.y8e{bottom:379.326667pt;}
.y44{bottom:379.882667pt;}
.y60{bottom:380.030667pt;}
.y1a{bottom:380.322667pt;}
.y1f4{bottom:381.502667pt;}
.y64{bottom:382.858667pt;}
.y136{bottom:383.306667pt;}
.y18f{bottom:387.913187pt;}
.y1ca{bottom:387.944000pt;}
.y184{bottom:388.767625pt;}
.y62{bottom:389.017333pt;}
.yb4{bottom:389.100000pt;}
.ydc{bottom:391.116000pt;}
.y15b{bottom:391.654667pt;}
.y8d{bottom:395.266667pt;}
.y43{bottom:395.822667pt;}
.y1f3{bottom:396.114667pt;}
.y65{bottom:398.342667pt;}
.y5c{bottom:403.186667pt;}
.y135{bottom:403.228000pt;}
.y1c9{bottom:403.884000pt;}
.yb3{bottom:405.041333pt;}
.y5e{bottom:406.045333pt;}
.ydb{bottom:407.057333pt;}
.y109{bottom:407.216000pt;}
.y15a{bottom:407.764000pt;}
.y1f2{bottom:409.582667pt;}
.y5d{bottom:409.748000pt;}
.y8c{bottom:411.206667pt;}
.y42{bottom:411.762667pt;}
.y5b{bottom:418.860000pt;}
.y134{bottom:419.168000pt;}
.y1c8{bottom:419.824000pt;}
.yb2{bottom:420.981333pt;}
.yda{bottom:422.997333pt;}
.y159{bottom:423.705333pt;}
.y1f1{bottom:424.194667pt;}
.y164{bottom:424.371690pt;}
.y166{bottom:425.418532pt;}
.y19{bottom:426.096000pt;}
.y165{bottom:426.465375pt;}
.y8b{bottom:427.146667pt;}
.y5f{bottom:427.845333pt;}
.y163{bottom:430.990970pt;}
.y133{bottom:435.108000pt;}
.y1c7{bottom:435.764000pt;}
.yb1{bottom:436.921333pt;}
.y1f0{bottom:437.662667pt;}
.y158{bottom:439.645333pt;}
.y18{bottom:440.708000pt;}
.y8a{bottom:443.086667pt;}
.y41{bottom:445.032000pt;}
.y132{bottom:451.048000pt;}
.y108{bottom:451.285333pt;}
.y1c6{bottom:451.705333pt;}
.y1ef{bottom:452.274667pt;}
.yd9{bottom:452.528000pt;}
.yb0{bottom:452.861333pt;}
.y157{bottom:455.585333pt;}
.y89{bottom:459.028000pt;}
.y167{bottom:461.516892pt;}
.y1ee{bottom:465.742667pt;}
.y107{bottom:467.225333pt;}
.y1c5{bottom:467.645333pt;}
.yaf{bottom:468.801333pt;}
.y17{bottom:470.097333pt;}
.y131{bottom:470.969333pt;}
.y156{bottom:471.525333pt;}
.y16f{bottom:473.850913pt;}
.y168{bottom:474.203533pt;}
.y88{bottom:474.968000pt;}
.y174{bottom:476.820678pt;}
.y1a2{bottom:478.324307pt;}
.y199{bottom:478.355651pt;}
.y1ed{bottom:480.354667pt;}
.y106{bottom:483.165333pt;}
.y1c4{bottom:483.585333pt;}
.y16{bottom:484.709333pt;}
.yae{bottom:484.741333pt;}
.y170{bottom:486.192613pt;}
.y169{bottom:486.889860pt;}
.y130{bottom:486.909333pt;}
.y155{bottom:487.465333pt;}
.y5a{bottom:488.733333pt;}
.y40{bottom:488.929333pt;}
.y87{bottom:490.908000pt;}
.y175{bottom:492.124465pt;}
.y59{bottom:492.741333pt;}
.y1ec{bottom:494.966667pt;}
.yd8{bottom:495.342667pt;}
.y171{bottom:498.526320pt;}
.y105{bottom:499.105333pt;}
.y15{bottom:499.321333pt;}
.y1c3{bottom:499.525333pt;}
.y16a{bottom:499.576187pt;}
.yad{bottom:500.682667pt;}
.y154{bottom:503.406667pt;}
.y3f{bottom:504.869333pt;}
.y86{bottom:506.848000pt;}
.y176{bottom:507.428251pt;}
.y1eb{bottom:508.434667pt;}
.y172{bottom:510.860027pt;}
.yd7{bottom:511.282667pt;}
.y16b{bottom:512.270507pt;}
.y14{bottom:513.933333pt;}
.y104{bottom:515.046667pt;}
.yac{bottom:516.622667pt;}
.y153{bottom:519.346667pt;}
.y3e{bottom:520.809333pt;}
.y177{bottom:522.732037pt;}
.y85{bottom:522.788000pt;}
.y1ea{bottom:523.046667pt;}
.y173{bottom:523.194048pt;}
.y16c{bottom:524.957148pt;}
.yd6{bottom:527.222667pt;}
.y13{bottom:528.545333pt;}
.y103{bottom:530.986667pt;}
.yab{bottom:532.562667pt;}
.y152{bottom:535.286667pt;}
.y3d{bottom:536.750667pt;}
.y1e9{bottom:537.658667pt;}
.y84{bottom:538.728000pt;}
.y12{bottom:543.157333pt;}
.yd5{bottom:543.164000pt;}
.y58{bottom:543.272000pt;}
.y12f{bottom:543.437333pt;}
.y102{bottom:547.238667pt;}
.yaa{bottom:548.502667pt;}
.y1e8{bottom:551.126667pt;}
.y151{bottom:551.397333pt;}
.y3c{bottom:552.690667pt;}
.y12e{bottom:554.065333pt;}
.y83{bottom:554.669333pt;}
.y11{bottom:557.769333pt;}
.y1c2{bottom:558.782667pt;}
.yd4{bottom:559.104000pt;}
.y57{bottom:559.212000pt;}
.y101{bottom:563.178667pt;}
.ya9{bottom:564.442667pt;}
.y12d{bottom:564.692000pt;}
.y1e7{bottom:565.738667pt;}
.y150{bottom:567.337333pt;}
.y3b{bottom:568.908000pt;}
.y82{bottom:570.609333pt;}
.y10{bottom:572.381333pt;}
.yd3{bottom:575.044000pt;}
.y56{bottom:575.152000pt;}
.y12c{bottom:575.318667pt;}
.y100{bottom:579.120000pt;}
.y1e6{bottom:580.349333pt;}
.ya8{bottom:580.384000pt;}
.y14f{bottom:583.277333pt;}
.y3a{bottom:584.849333pt;}
.y12b{bottom:585.945333pt;}
.y81{bottom:586.549333pt;}
.y1be{bottom:586.678667pt;}
.yf{bottom:586.992000pt;}
.yd2{bottom:590.984000pt;}
.y55{bottom:592.114667pt;}
.y1e5{bottom:593.817333pt;}
.yff{bottom:595.060000pt;}
.ya7{bottom:596.324000pt;}
.y12a{bottom:596.572000pt;}
.y14e{bottom:599.217333pt;}
.y39{bottom:600.789333pt;}
.ye{bottom:601.604000pt;}
.y80{bottom:602.489333pt;}
.y129{bottom:607.198667pt;}
.yd1{bottom:607.517333pt;}
.y54{bottom:608.056000pt;}
.y1e4{bottom:608.429333pt;}
.yfe{bottom:611.000000pt;}
.ya6{bottom:612.264000pt;}
.y14d{bottom:615.157333pt;}
.yd{bottom:616.216000pt;}
.y38{bottom:616.729333pt;}
.y128{bottom:617.825333pt;}
.y7f{bottom:618.429333pt;}
.y190{bottom:619.372307pt;}
.y185{bottom:619.403651pt;}
.y1c0{bottom:619.959913pt;}
.y1e3{bottom:623.041333pt;}
.yd0{bottom:623.457333pt;}
.yfd{bottom:626.940000pt;}
.ya5{bottom:628.204000pt;}
.y127{bottom:628.452000pt;}
.yc{bottom:630.828000pt;}
.y14c{bottom:631.097333pt;}
.y37{bottom:632.669333pt;}
.y7e{bottom:634.369333pt;}
.y1e2{bottom:636.509333pt;}
.y126{bottom:639.078667pt;}
.ycf{bottom:639.397333pt;}
.yfc{bottom:643.192000pt;}
.ya4{bottom:644.144000pt;}
.yb{bottom:645.440000pt;}
.y14b{bottom:647.038667pt;}
.y36{bottom:648.609333pt;}
.y125{bottom:649.706667pt;}
.y7d{bottom:650.310667pt;}
.y1e1{bottom:651.121333pt;}
.yce{bottom:655.337333pt;}
.yfb{bottom:659.133333pt;}
.y124{bottom:660.864000pt;}
.y14a{bottom:662.978667pt;}
.y35{bottom:664.828000pt;}
.y1e0{bottom:665.733333pt;}
.y7c{bottom:666.250667pt;}
.y53{bottom:669.893333pt;}
.ycd{bottom:671.278667pt;}
.y149{bottom:678.918667pt;}
.y1df{bottom:679.201333pt;}
.y34{bottom:680.768000pt;}
.y7b{bottom:682.190667pt;}
.y52{bottom:684.504000pt;}
.y123{bottom:685.770667pt;}
.ycc{bottom:687.218667pt;}
.y1de{bottom:693.813333pt;}
.y148{bottom:694.858667pt;}
.yfa{bottom:695.658667pt;}
.ya3{bottom:695.872000pt;}
.y33{bottom:696.708000pt;}
.y7a{bottom:698.130667pt;}
.y51{bottom:699.116000pt;}
.y122{bottom:700.382667pt;}
.ya{bottom:701.176000pt;}
.yf9{bottom:706.285333pt;}
.y1dd{bottom:707.281333pt;}
.ya2{bottom:710.484000pt;}
.y147{bottom:710.798667pt;}
.y32{bottom:712.648000pt;}
.y79{bottom:714.070667pt;}
.yf8{bottom:716.912000pt;}
.y9{bottom:720.866667pt;}
.y1dc{bottom:721.893333pt;}
.ya1{bottom:725.096000pt;}
.yf7{bottom:727.538667pt;}
.y31{bottom:728.589333pt;}
.y8{bottom:730.400000pt;}
.y1db{bottom:735.361333pt;}
.ycb{bottom:735.642667pt;}
.y121{bottom:736.305333pt;}
.yf6{bottom:738.165333pt;}
.ya0{bottom:739.708000pt;}
.y78{bottom:743.233333pt;}
.y30{bottom:744.529333pt;}
.y1b3{bottom:744.780000pt;}
.y7{bottom:745.012000pt;}
.yca{bottom:746.269333pt;}
.y120{bottom:746.932000pt;}
.yf5{bottom:749.324000pt;}
.y1da{bottom:749.973333pt;}
.y9f{bottom:754.320000pt;}
.yc9{bottom:756.896000pt;}
.y11f{bottom:757.558667pt;}
.y146{bottom:758.378667pt;}
.y6{bottom:759.624000pt;}
.y178{bottom:760.420307pt;}
.y16d{bottom:760.451651pt;}
.y2f{bottom:760.469333pt;}
.yf4{bottom:760.481333pt;}
.y1d9{bottom:764.585333pt;}
.yc8{bottom:767.524000pt;}
.y11e{bottom:768.186667pt;}
.y9e{bottom:768.930667pt;}
.y145{bottom:769.005333pt;}
.yf3{bottom:771.108000pt;}
.y2e{bottom:776.409333pt;}
.y1d8{bottom:778.053333pt;}
.y1b9{bottom:778.061246pt;}
.yc7{bottom:778.150667pt;}
.y11d{bottom:778.813333pt;}
.y5{bottom:779.313333pt;}
.y144{bottom:779.632000pt;}
.yf2{bottom:781.734667pt;}
.y77{bottom:783.024000pt;}
.y9d{bottom:783.542667pt;}
.yc6{bottom:788.777333pt;}
.y11c{bottom:789.440000pt;}
.y143{bottom:790.258667pt;}
.y2d{bottom:792.349333pt;}
.yf1{bottom:792.362667pt;}
.y1d7{bottom:792.665333pt;}
.y9c{bottom:798.154667pt;}
.y76{bottom:798.964000pt;}
.yc5{bottom:799.404000pt;}
.y11b{bottom:800.066667pt;}
.y142{bottom:801.417333pt;}
.y4{bottom:802.076000pt;}
.yf0{bottom:802.989333pt;}
.y1d6{bottom:807.276000pt;}
.y2c{bottom:808.289333pt;}
.yc4{bottom:810.030667pt;}
.y11a{bottom:810.693333pt;}
.y141{bottom:812.574667pt;}
.y9b{bottom:812.766667pt;}
.yef{bottom:813.616000pt;}
.y3{bottom:818.016000pt;}
.yc3{bottom:820.657333pt;}
.y1d5{bottom:820.744000pt;}
.y119{bottom:821.320000pt;}
.y140{bottom:823.733333pt;}
.y75{bottom:824.185333pt;}
.y2b{bottom:824.230667pt;}
.yee{bottom:824.242667pt;}
.y9a{bottom:827.378667pt;}
.yc2{bottom:831.284000pt;}
.y118{bottom:831.946667pt;}
.y1d4{bottom:835.356000pt;}
.yed{bottom:835.400000pt;}
.y72{bottom:839.405333pt;}
.y2a{bottom:840.448000pt;}
.yc1{bottom:841.910667pt;}
.y99{bottom:841.990667pt;}
.y117{bottom:842.573333pt;}
.y71{bottom:845.966667pt;}
.y73{bottom:846.406667pt;}
.yec{bottom:846.558667pt;}
.y13f{bottom:848.750667pt;}
.y1d3{bottom:848.824000pt;}
.y74{bottom:851.536000pt;}
.y70{bottom:851.794667pt;}
.yc0{bottom:853.069333pt;}
.y116{bottom:853.732000pt;}
.y6e{bottom:855.078667pt;}
.y29{bottom:856.388000pt;}
.y98{bottom:856.602667pt;}
.yeb{bottom:857.185333pt;}
.y13e{bottom:863.362667pt;}
.y1d2{bottom:863.436000pt;}
.y2{bottom:864.358667pt;}
.y6f{bottom:864.572000pt;}
.yea{bottom:868.344000pt;}
.y97{bottom:871.214667pt;}
.y28{bottom:872.329333pt;}
.y13d{bottom:877.974667pt;}
.ybf{bottom:878.638667pt;}
.y1{bottom:888.269333pt;}
.y96{bottom:888.608000pt;}
.y13c{bottom:892.586667pt;}
.ybe{bottom:893.250667pt;}
.y27{bottom:922.806667pt;}
.h19{height:14.850916pt;}
.hf{height:16.099562pt;}
.h28{height:16.134435pt;}
.h23{height:18.580723pt;}
.h29{height:19.361322pt;}
.h3{height:21.519360pt;}
.h25{height:23.225904pt;}
.hc{height:27.895200pt;}
.h5{height:29.457613pt;}
.h20{height:34.471200pt;}
.h4{height:35.865600pt;}
.h21{height:37.087439pt;}
.h10{height:38.043849pt;}
.h7{height:39.850400pt;}
.h6{height:44.632747pt;}
.h15{height:44.647147pt;}
.he{height:46.193867pt;}
.h2{height:47.175200pt;}
.h1f{height:47.180533pt;}
.h18{height:49.242400pt;}
.h8{height:50.625867pt;}
.h1a{height:51.179849pt;}
.hb{height:52.600021pt;}
.h13{height:52.605355pt;}
.h1b{height:52.986400pt;}
.h1{height:53.559147pt;}
.h17{height:55.877067pt;}
.h14{height:55.959147pt;}
.ha{height:57.103733pt;}
.h16{height:66.652533pt;}
.h9{height:66.657867pt;}
.hd{height:73.985182pt;}
.h1e{height:88.113867pt;}
.h1d{height:89.048021pt;}
.h11{height:92.984021pt;}
.h2a{height:96.675968pt;}
.h1c{height:98.914688pt;}
.h24{height:141.048000pt;}
.h26{height:141.126360pt;}
.h12{height:144.242688pt;}
.h27{height:156.771840pt;}
.h22{height:564.192000pt;}
.h0{height:1056.000000pt;}
.w7{width:116.272448pt;}
.w4{width:145.906320pt;}
.w3{width:146.078712pt;}
.w2{width:146.086548pt;}
.w5{width:146.141400pt;}
.w6{width:156.608536pt;}
.w1{width:438.032400pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x54{left:5.682870pt;}
.x42{left:14.372008pt;}
.x52{left:18.747190pt;}
.x5c{left:21.191688pt;}
.x56{left:23.222101pt;}
.x57{left:25.377387pt;}
.x5a{left:26.830738pt;}
.x59{left:28.191823pt;}
.x55{left:29.193366pt;}
.x5e{left:34.234288pt;}
.x3d{left:45.738654pt;}
.x51{left:50.238080pt;}
.x4f{left:63.291372pt;}
.x3e{left:64.239606pt;}
.x53{left:76.099664pt;}
.x3f{left:82.740246pt;}
.x40{left:101.241198pt;}
.x41{left:119.742151pt;}
.x47{left:160.458556pt;}
.xc{left:179.686667pt;}
.x35{left:183.338667pt;}
.x32{left:184.874667pt;}
.x61{left:185.829333pt;}
.x3{left:190.450667pt;}
.x33{left:192.181333pt;}
.x2c{left:194.790667pt;}
.xd{left:199.612000pt;}
.x2{left:201.100000pt;}
.x6{left:202.246667pt;}
.x50{left:204.048000pt;}
.x9{left:205.761333pt;}
.x43{left:210.318397pt;}
.x3c{left:213.642667pt;}
.x3a{left:216.166667pt;}
.xb{left:217.481333pt;}
.x4{left:218.724000pt;}
.x44{left:228.819349pt;}
.x12{left:231.125333pt;}
.x3b{left:240.874667pt;}
.x1{left:246.353333pt;}
.x45{left:247.319989pt;}
.x2b{left:257.284000pt;}
.x8{left:259.604000pt;}
.x38{left:261.100000pt;}
.x60{left:262.174667pt;}
.x5b{left:264.645333pt;}
.x46{left:265.828542pt;}
.x23{left:271.328000pt;}
.x5d{left:291.231116pt;}
.x13{left:297.544000pt;}
.x4d{left:306.537268pt;}
.xe{left:308.862667pt;}
.x7{left:313.233333pt;}
.x24{left:318.993333pt;}
.x14{left:320.672000pt;}
.xf{left:323.965333pt;}
.x15{left:326.665333pt;}
.x37{left:329.892000pt;}
.x36{left:331.182667pt;}
.x48{left:337.301215pt;}
.x25{left:338.317333pt;}
.x5{left:342.565333pt;}
.x16{left:343.685333pt;}
.x39{left:347.114667pt;}
.xa{left:350.612000pt;}
.x49{left:356.404945pt;}
.x17{left:358.562667pt;}
.x18{left:360.604000pt;}
.x19{left:366.596000pt;}
.x4a{left:374.905584pt;}
.x1a{left:379.588000pt;}
.x26{left:390.086667pt;}
.x4b{left:393.406537pt;}
.x10{left:399.014667pt;}
.x2d{left:405.709333pt;}
.x4c{left:411.907489pt;}
.x27{left:436.134667pt;}
.x5f{left:438.871116pt;}
.x1b{left:448.312000pt;}
.x28{left:451.650667pt;}
.x11{left:454.706667pt;}
.x1c{left:466.042667pt;}
.x58{left:479.490667pt;}
.x4e{left:483.340747pt;}
.x1d{left:506.684000pt;}
.x1e{left:512.677333pt;}
.x1f{left:529.462667pt;}
.x20{left:544.340000pt;}
.x21{left:545.708000pt;}
.x22{left:551.701333pt;}
.x29{left:553.616000pt;}
.x2e{left:569.853333pt;}
.x34{left:581.828000pt;}
.x2f{left:583.540000pt;}
.x30{left:593.793333pt;}
.x31{left:615.960000pt;}
.x2a{left:623.814667pt;}
}




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