
    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_5faa8429e7aea875b767e343.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight: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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_c3883511e4b5631ef803f357.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight: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_7b58e9f04dbe9fd41f820557.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight: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_60be68087298e2dee26c6e48.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight: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_1ebda8ae2fd1225a7157067a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight: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_ac0ab6f58c54e1a6cda6cbbb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;font-style:normal;font-weight: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_5c0d38fa6b6dc4d8f21572d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;font-style:normal;font-weight: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_afa26aedd0ce27dd46f474d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;font-style:normal;font-weight: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_55cb9d6657e0ce08ca42044e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734863;font-style:normal;font-weight: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_a1d6e259ca16245087c15745.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.727539;font-style:normal;font-weight: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_e7a543aaa54dbf90e4332bc4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c02f3e00be8b669881b9df85.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.388000;font-style:normal;font-weight: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_1b65d7a352733448ac0bf089.woff2')format("woff");}.fff{font-family:fff;line-height:1.014160;font-style:normal;font-weight: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_032efebf79754822cfbd63f1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight: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_67296bc5880bef8a17726a39.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;font-style:normal;font-weight: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_c59bf33902432008a68e25d8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight: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_60f5a5fa23d6ddf89fca353e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;font-style:normal;font-weight: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_ac0ab6f58c54e1a6cda6cbbb.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight: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_8ba4656e65bacaf8999f657e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;font-style:normal;font-weight: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_f0f1d9b80fd65a49c9c9a781.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight: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_a1d6e259ca16245087c15745.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.727539;font-style:normal;font-weight: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_61c5e29de9989b62e1240d9d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26{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);}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.756000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.874000px;}
.ls76{letter-spacing:-1.667729px;}
.ls2f{letter-spacing:-0.293085px;}
.ls24{letter-spacing:-0.247995px;}
.ls33{letter-spacing:-0.217935px;}
.ls6e{letter-spacing:-0.165631px;}
.ls75{letter-spacing:-0.159919px;}
.ls35{letter-spacing:-0.142785px;}
.ls7d{letter-spacing:-0.137074px;}
.ls32{letter-spacing:-0.135270px;}
.ls6c{letter-spacing:-0.131362px;}
.ls26{letter-spacing:-0.120240px;}
.ls67{letter-spacing:-0.119939px;}
.ls7c{letter-spacing:-0.114228px;}
.ls73{letter-spacing:-0.108517px;}
.ls2c{letter-spacing:-0.105210px;}
.ls2a{letter-spacing:-0.097695px;}
.ls79{letter-spacing:-0.097094px;}
.ls6b{letter-spacing:-0.091382px;}
.ls28{letter-spacing:-0.090180px;}
.ls78{letter-spacing:-0.085671px;}
.ls21{letter-spacing:-0.082665px;}
.ls7b{letter-spacing:-0.079960px;}
.ls31{letter-spacing:-0.075150px;}
.ls72{letter-spacing:-0.074248px;}
.ls4f{letter-spacing:-0.073440px;}
.ls7a{letter-spacing:-0.068537px;}
.ls37{letter-spacing:-0.067635px;}
.ls64{letter-spacing:-0.062825px;}
.ls25{letter-spacing:-0.060120px;}
.ls6a{letter-spacing:-0.057114px;}
.ls34{letter-spacing:-0.052605px;}
.ls69{letter-spacing:-0.051403px;}
.ls1f{letter-spacing:-0.047880px;}
.ls77{letter-spacing:-0.045691px;}
.ls30{letter-spacing:-0.045090px;}
.ls70{letter-spacing:-0.039980px;}
.ls23{letter-spacing:-0.037575px;}
.ls62{letter-spacing:-0.036389px;}
.ls74{letter-spacing:-0.034268px;}
.ls27{letter-spacing:-0.030060px;}
.ls71{letter-spacing:-0.028557px;}
.ls6f{letter-spacing:-0.022846px;}
.ls2b{letter-spacing:-0.022545px;}
.ls20{letter-spacing:-0.017955px;}
.ls6d{letter-spacing:-0.017134px;}
.ls22{letter-spacing:-0.015030px;}
.ls63{letter-spacing:-0.013646px;}
.ls66{letter-spacing:-0.011423px;}
.ls29{letter-spacing:-0.007515px;}
.ls65{letter-spacing:-0.005711px;}
.ls68{letter-spacing:-0.005130px;}
.ls0{letter-spacing:0.000000px;}
.ls7e{letter-spacing:0.000800px;}
.ls5e{letter-spacing:0.005711px;}
.ls1c{letter-spacing:0.007515px;}
.ls53{letter-spacing:0.010260px;}
.ls5d{letter-spacing:0.011423px;}
.ls50{letter-spacing:0.012240px;}
.ls19{letter-spacing:0.013500px;}
.ls11{letter-spacing:0.015030px;}
.ls58{letter-spacing:0.017134px;}
.ls1a{letter-spacing:0.020250px;}
.ls16{letter-spacing:0.022545px;}
.ls57{letter-spacing:0.022846px;}
.ls56{letter-spacing:0.028557px;}
.ls13{letter-spacing:0.030060px;}
.ls60{letter-spacing:0.034268px;}
.ls14{letter-spacing:0.037575px;}
.ls61{letter-spacing:0.039980px;}
.ls12{letter-spacing:0.045090px;}
.ls5b{letter-spacing:0.045691px;}
.ls54{letter-spacing:0.051403px;}
.ls10{letter-spacing:0.052605px;}
.ls59{letter-spacing:0.056430px;}
.ls5c{letter-spacing:0.057114px;}
.ls17{letter-spacing:0.060120px;}
.ls55{letter-spacing:0.062825px;}
.ls1b{letter-spacing:0.067635px;}
.ls5f{letter-spacing:0.068537px;}
.ls18{letter-spacing:0.075150px;}
.ls36{letter-spacing:0.082665px;}
.ls2e{letter-spacing:0.097695px;}
.ls4e{letter-spacing:0.122400px;}
.ls5a{letter-spacing:0.125651px;}
.lsf{letter-spacing:0.127755px;}
.ls52{letter-spacing:0.159201px;}
.ls51{letter-spacing:0.172847px;}
.lse{letter-spacing:0.209475px;}
.ls2d{letter-spacing:0.225450px;}
.lsd{letter-spacing:0.227430px;}
.ls1{letter-spacing:2.989200px;}
.ls5{letter-spacing:11.954850px;}
.ls7f{letter-spacing:13.342003px;}
.ls38{letter-spacing:13.449600px;}
.ls3b{letter-spacing:13.503398px;}
.ls3a{letter-spacing:13.557197px;}
.ls3c{letter-spacing:13.610995px;}
.ls7{letter-spacing:13.628837px;}
.ls39{letter-spacing:13.718592px;}
.ls49{letter-spacing:14.645022px;}
.ls3d{letter-spacing:14.704798px;}
.lsb{letter-spacing:14.764573px;}
.ls4a{letter-spacing:14.824349px;}
.ls40{letter-spacing:14.884124px;}
.ls4c{letter-spacing:14.941200px;}
.ls1e{letter-spacing:14.943900px;}
.ls1d{letter-spacing:15.003676px;}
.ls8{letter-spacing:15.063451px;}
.lsc{letter-spacing:15.123227px;}
.ls6{letter-spacing:15.183002px;}
.ls42{letter-spacing:15.242778px;}
.ls48{letter-spacing:15.481880px;}
.ls44{letter-spacing:15.720983px;}
.ls80{letter-spacing:16.139520px;}
.ls3e{letter-spacing:16.258963px;}
.ls46{letter-spacing:16.498066px;}
.ls43{letter-spacing:17.036046px;}
.ls45{letter-spacing:19.367294px;}
.ls47{letter-spacing:19.666172px;}
.lsa{letter-spacing:20.801909px;}
.ls4b{letter-spacing:21.220338px;}
.ls3f{letter-spacing:21.519216px;}
.ls41{letter-spacing:21.578992px;}
.ls9{letter-spacing:22.116972px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.ls15{letter-spacing:82.161495px;}
.ls4d{letter-spacing:94.292700px;}
.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;}
}
.ws4f{word-spacing:-75.150000px;}
.ws15b{word-spacing:-29.589120px;}
.ws152{word-spacing:-26.791603px;}
.wsd{word-spacing:-22.718660px;}
.ws4e{word-spacing:-19.012950px;}
.ws4b{word-spacing:-15.189930px;}
.ws4c{word-spacing:-14.962500px;}
.ws3d{word-spacing:-14.943900px;}
.wsd5{word-spacing:-14.289923px;}
.wsa7{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.wsd2{word-spacing:-11.544347px;}
.wsd3{word-spacing:-11.371500px;}
.wsf{word-spacing:-11.357400px;}
.wsc{word-spacing:-10.460700px;}
.wsd0{word-spacing:-9.192240px;}
.wsd1{word-spacing:-9.180000px;}
.wscf{word-spacing:-9.106560px;}
.wsce{word-spacing:-8.262000px;}
.wscd{word-spacing:-8.139600px;}
.ws66{word-spacing:-4.328640px;}
.ws65{word-spacing:-4.140765px;}
.ws80{word-spacing:-3.997980px;}
.ws127{word-spacing:-3.347434px;}
.ws141{word-spacing:-3.227882px;}
.ws13e{word-spacing:-3.048556px;}
.ws11f{word-spacing:-2.988780px;}
.ws124{word-spacing:-2.809453px;}
.ws96{word-spacing:-2.607705px;}
.ws13a{word-spacing:-2.570351px;}
.ws64{word-spacing:-2.502495px;}
.ws113{word-spacing:-2.211697px;}
.ws85{word-spacing:-2.171835px;}
.ws139{word-spacing:-2.151922px;}
.ws94{word-spacing:-2.141775px;}
.ws8b{word-spacing:-2.104200px;}
.ws63{word-spacing:-2.096685px;}
.ws11e{word-spacing:-2.092146px;}
.ws8a{word-spacing:-2.089170px;}
.ws2d{word-spacing:-2.032370px;}
.ws134{word-spacing:-1.990541px;}
.ws1e{word-spacing:-1.882944px;}
.ws11d{word-spacing:-1.793268px;}
.ws135{word-spacing:-1.775347px;}
.ws84{word-spacing:-1.766025px;}
.wsa0{word-spacing:-1.743480px;}
.ws83{word-spacing:-1.660815px;}
.wscc{word-spacing:-1.613941px;}
.ws148{word-spacing:-1.560154px;}
.ws2e{word-spacing:-1.554166px;}
.ws121{word-spacing:-1.494390px;}
.ws110{word-spacing:-1.434614px;}
.ws111{word-spacing:-1.374839px;}
.wsbd{word-spacing:-1.315063px;}
.ws14b{word-spacing:-1.291162px;}
.wsb9{word-spacing:-1.255288px;}
.wsa3{word-spacing:-1.195512px;}
.ws147{word-spacing:-1.183565px;}
.ws9a{word-spacing:-1.179855px;}
.wsa2{word-spacing:-1.135736px;}
.ws112{word-spacing:-1.016185px;}
.wse5{word-spacing:-1.005206px;}
.wse6{word-spacing:-0.965227px;}
.ws99{word-spacing:-0.871740px;}
.ws30{word-spacing:-0.836858px;}
.ws160{word-spacing:-0.806976px;}
.wsb8{word-spacing:-0.777083px;}
.ws10d{word-spacing:-0.717307px;}
.ws165{word-spacing:-0.699379px;}
.ws98{word-spacing:-0.646290px;}
.ws56{word-spacing:-0.597756px;}
.ws136{word-spacing:-0.591782px;}
.ws163{word-spacing:-0.537984px;}
.ws12c{word-spacing:-0.537980px;}
.ws126{word-spacing:-0.478205px;}
.ws162{word-spacing:-0.376589px;}
.ws73{word-spacing:-0.375750px;}
.ws79{word-spacing:-0.360720px;}
.ws51{word-spacing:-0.358654px;}
.ws5e{word-spacing:-0.341145px;}
.ws6a{word-spacing:-0.330660px;}
.wsf0{word-spacing:-0.325550px;}
.ws62{word-spacing:-0.323145px;}
.ws137{word-spacing:-0.322790px;}
.ws101{word-spacing:-0.319838px;}
.ws9d{word-spacing:-0.315630px;}
.ws77{word-spacing:-0.300600px;}
.ws35{word-spacing:-0.298878px;}
.wsfe{word-spacing:-0.296993px;}
.wsf8{word-spacing:-0.291281px;}
.wse0{word-spacing:-0.285570px;}
.wsff{word-spacing:-0.279859px;}
.ws9e{word-spacing:-0.270540px;}
.ws14e{word-spacing:-0.268992px;}
.wsf5{word-spacing:-0.268436px;}
.wsd9{word-spacing:-0.259270px;}
.ws61{word-spacing:-0.255510px;}
.ws69{word-spacing:-0.247995px;}
.ws164{word-spacing:-0.241002px;}
.ws47{word-spacing:-0.239102px;}
.wsf7{word-spacing:-0.217033px;}
.ws19{word-spacing:-0.215194px;}
.ws81{word-spacing:-0.202905px;}
.ws22{word-spacing:-0.179327px;}
.ws1f{word-spacing:-0.161395px;}
.ws34{word-spacing:-0.119551px;}
.ws1b{word-spacing:-0.107597px;}
.ws5f{word-spacing:-0.095760px;}
.ws4d{word-spacing:-0.075150px;}
.wsda{word-spacing:-0.072778px;}
.ws5d{word-spacing:-0.065835px;}
.ws26{word-spacing:-0.059776px;}
.wsd4{word-spacing:-0.057114px;}
.ws15{word-spacing:-0.053798px;}
.wsd8{word-spacing:-0.050035px;}
.ws146{word-spacing:-0.010339px;}
.ws151{word-spacing:-0.009667px;}
.ws156{word-spacing:-0.009302px;}
.ws15d{word-spacing:-0.008621px;}
.ws14f{word-spacing:-0.008467px;}
.ws157{word-spacing:-0.008170px;}
.ws158{word-spacing:-0.006682px;}
.ws149{word-spacing:-0.006461px;}
.ws159{word-spacing:-0.005222px;}
.ws166{word-spacing:-0.004838px;}
.wsc3{word-spacing:-0.002621px;}
.wse{word-spacing:-0.002380px;}
.ws14d{word-spacing:-0.000067px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.003599px;}
.ws76{word-spacing:0.015030px;}
.wsf3{word-spacing:0.028557px;}
.ws86{word-spacing:0.037575px;}
.wsf2{word-spacing:0.039980px;}
.ws103{word-spacing:0.051403px;}
.wsaa{word-spacing:0.053798px;}
.ws31{word-spacing:0.059776px;}
.wsed{word-spacing:0.062825px;}
.ws7a{word-spacing:0.067635px;}
.wsef{word-spacing:0.079960px;}
.ws104{word-spacing:0.091382px;}
.ws10b{word-spacing:0.097094px;}
.wsf4{word-spacing:0.102805px;}
.wsa5{word-spacing:0.107597px;}
.wsfd{word-spacing:0.108517px;}
.wseb{word-spacing:0.112860px;}
.wsf9{word-spacing:0.114228px;}
.ws28{word-spacing:0.119551px;}
.wsfc{word-spacing:0.119939px;}
.ws108{word-spacing:0.125651px;}
.ws102{word-spacing:0.131362px;}
.ws100{word-spacing:0.137074px;}
.ws75{word-spacing:0.142785px;}
.ws107{word-spacing:0.148496px;}
.ws9b{word-spacing:0.150300px;}
.ws109{word-spacing:0.154208px;}
.ws9c{word-spacing:0.157815px;}
.wsdd{word-spacing:0.159030px;}
.wsfa{word-spacing:0.159919px;}
.ws50{word-spacing:0.161395px;}
.wsdc{word-spacing:0.169290px;}
.ws105{word-spacing:0.171342px;}
.ws78{word-spacing:0.172845px;}
.wsea{word-spacing:0.174420px;}
.wsf1{word-spacing:0.177053px;}
.ws3a{word-spacing:0.179327px;}
.ws106{word-spacing:0.182765px;}
.wsfb{word-spacing:0.194188px;}
.ws10a{word-spacing:0.199899px;}
.ws89{word-spacing:0.202500px;}
.wse9{word-spacing:0.205610px;}
.ws88{word-spacing:0.209250px;}
.ws13{word-spacing:0.215194px;}
.ws10c{word-spacing:0.222745px;}
.ws87{word-spacing:0.222750px;}
.ws2b{word-spacing:0.239102px;}
.wsf6{word-spacing:0.251302px;}
.ws145{word-spacing:0.268992px;}
.ws44{word-spacing:0.298878px;}
.ws1a{word-spacing:0.322790px;}
.ws45{word-spacing:0.358654px;}
.wsdf{word-spacing:0.365530px;}
.ws7b{word-spacing:0.405810px;}
.wsa4{word-spacing:0.418429px;}
.ws40{word-spacing:0.478205px;}
.wsb0{word-spacing:0.537980px;}
.ws20{word-spacing:0.591782px;}
.wsbe{word-spacing:0.657532px;}
.wsab{word-spacing:0.717307px;}
.wse8{word-spacing:0.753905px;}
.wsae{word-spacing:0.777083px;}
.wse7{word-spacing:0.782462px;}
.wsaf{word-spacing:0.836858px;}
.wsc0{word-spacing:0.896634px;}
.wsb7{word-spacing:0.956410px;}
.ws13b{word-spacing:1.016185px;}
.ws58{word-spacing:1.075961px;}
.ws132{word-spacing:1.075968px;}
.wsba{word-spacing:1.135736px;}
.wsc9{word-spacing:1.195512px;}
.ws1d{word-spacing:1.237363px;}
.ws128{word-spacing:1.255288px;}
.ws2f{word-spacing:1.315063px;}
.ws118{word-spacing:1.374839px;}
.ws53{word-spacing:1.434614px;}
.ws150{word-spacing:1.452557px;}
.ws52{word-spacing:1.494390px;}
.ws68{word-spacing:1.495485px;}
.ws67{word-spacing:1.585665px;}
.ws115{word-spacing:1.613941px;}
.ws133{word-spacing:1.667750px;}
.ws11b{word-spacing:1.673717px;}
.ws122{word-spacing:1.733492px;}
.wse4{word-spacing:1.741977px;}
.wse3{word-spacing:1.764823px;}
.ws5c{word-spacing:1.793268px;}
.wse2{word-spacing:1.799091px;}
.wsb2{word-spacing:1.853044px;}
.wse1{word-spacing:1.856205px;}
.ws17{word-spacing:1.882944px;}
.ws59{word-spacing:1.912819px;}
.ws7f{word-spacing:1.916325px;}
.ws11a{word-spacing:1.972595px;}
.ws7e{word-spacing:1.983960px;}
.ws55{word-spacing:2.032370px;}
.ws14a{word-spacing:2.044339px;}
.ws5b{word-spacing:2.211697px;}
.ws46{word-spacing:2.271473px;}
.ws15e{word-spacing:2.313331px;}
.ws9f{word-spacing:2.329650px;}
.ws129{word-spacing:2.331248px;}
.ws11{word-spacing:2.420928px;}
.wsbc{word-spacing:2.450800px;}
.ws15c{word-spacing:2.474726px;}
.ws3{word-spacing:2.509700px;}
.ws2{word-spacing:2.510568px;}
.ws3e{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wsb1{word-spacing:2.570351px;}
.ws90{word-spacing:2.577645px;}
.ws10f{word-spacing:2.630126px;}
.ws48{word-spacing:2.689902px;}
.ws15a{word-spacing:2.689920px;}
.ws10e{word-spacing:2.749678px;}
.wsb5{word-spacing:2.809453px;}
.ws8e{word-spacing:2.833155px;}
.ws16{word-spacing:2.851315px;}
.wsb6{word-spacing:2.869229px;}
.ws10{word-spacing:2.869236px;}
.ws8f{word-spacing:2.870730px;}
.ws57{word-spacing:2.929004px;}
.ws32{word-spacing:2.988780px;}
.ws1c{word-spacing:3.012710px;}
.ws33{word-spacing:3.048556px;}
.ws155{word-spacing:3.066509px;}
.ws12b{word-spacing:3.108331px;}
.ws131{word-spacing:3.120307px;}
.ws123{word-spacing:3.168107px;}
.ws168{word-spacing:3.218102px;}
.ws167{word-spacing:3.222010px;}
.ws161{word-spacing:3.222758px;}
.wsbf{word-spacing:3.227882px;}
.ws144{word-spacing:3.227904px;}
.ws8d{word-spacing:3.246480px;}
.wsd7{word-spacing:3.287658px;}
.ws117{word-spacing:3.407209px;}
.ws153{word-spacing:3.443098px;}
.ws21{word-spacing:3.586536px;}
.ws39{word-spacing:3.646312px;}
.wsb4{word-spacing:3.706087px;}
.ws14{word-spacing:3.712090px;}
.ws8c{word-spacing:3.749985px;}
.ws12a{word-spacing:3.765863px;}
.ws12e{word-spacing:3.825638px;}
.ws2c{word-spacing:3.885414px;}
.ws119{word-spacing:3.945190px;}
.ws18{word-spacing:3.981082px;}
.wsd6{word-spacing:4.004965px;}
.ws23{word-spacing:4.064741px;}
.ws12{word-spacing:4.088678px;}
.ws91{word-spacing:4.103190px;}
.ws92{word-spacing:4.118220px;}
.wsbb{word-spacing:4.124516px;}
.ws11c{word-spacing:4.184292px;}
.ws16a{word-spacing:4.250074px;}
.ws27{word-spacing:4.303843px;}
.ws54{word-spacing:4.363619px;}
.ws5a{word-spacing:4.423394px;}
.wsac{word-spacing:4.542946px;}
.ws143{word-spacing:4.572864px;}
.ws42{word-spacing:4.602721px;}
.ws169{word-spacing:4.626662px;}
.ws25{word-spacing:4.662497px;}
.ws49{word-spacing:4.722272px;}
.wsa{word-spacing:4.770079px;}
.ws116{word-spacing:4.782048px;}
.wsb{word-spacing:4.853765px;}
.ws154{word-spacing:5.003251px;}
.ws13f{word-spacing:5.080926px;}
.wsc8{word-spacing:5.140702px;}
.ws12d{word-spacing:5.200477px;}
.ws3f{word-spacing:5.260253px;}
.ws15f{word-spacing:5.272243px;}
.ws114{word-spacing:5.379804px;}
.ws6d{word-spacing:5.463405px;}
.ws125{word-spacing:5.499355px;}
.ws142{word-spacing:5.618906px;}
.wsca{word-spacing:5.678682px;}
.ws140{word-spacing:5.738458px;}
.wscb{word-spacing:5.798233px;}
.wsde{word-spacing:5.848474px;}
.ws43{word-spacing:5.858009px;}
.ws37{word-spacing:5.917784px;}
.ws6c{word-spacing:5.944365px;}
.ws3b{word-spacing:5.977560px;}
.ws7d{word-spacing:5.981940px;}
.ws7c{word-spacing:6.004485px;}
.ws3c{word-spacing:6.037336px;}
.ws130{word-spacing:6.133018px;}
.wsad{word-spacing:6.156887px;}
.ws14c{word-spacing:6.240614px;}
.ws24{word-spacing:6.336214px;}
.ws93{word-spacing:6.342660px;}
.ws6b{word-spacing:6.357690px;}
.wsc7{word-spacing:6.455765px;}
.ws12f{word-spacing:6.509606px;}
.ws13c{word-spacing:6.694867px;}
.ws70{word-spacing:6.823620px;}
.ws95{word-spacing:6.831135px;}
.ws38{word-spacing:6.874194px;}
.ws6f{word-spacing:6.883740px;}
.ws36{word-spacing:6.933970px;}
.ws120{word-spacing:7.113296px;}
.wsc1{word-spacing:7.292623px;}
.ws4a{word-spacing:7.471950px;}
.ws41{word-spacing:7.651277px;}
.ws6e{word-spacing:7.732935px;}
.wsb3{word-spacing:7.770828px;}
.ws8{word-spacing:7.782761px;}
.ws13d{word-spacing:8.009930px;}
.ws138{word-spacing:8.308808px;}
.wsa1{word-spacing:8.785035px;}
.ws97{word-spacing:9.513990px;}
.wsdb{word-spacing:11.039452px;}
.ws71{word-spacing:11.467890px;}
.ws74{word-spacing:11.843640px;}
.ws72{word-spacing:11.896245px;}
.ws6{word-spacing:12.176255px;}
.ws82{word-spacing:13.572090px;}
.wsec{word-spacing:13.981507px;}
.wsee{word-spacing:14.050044px;}
.ws60{word-spacing:14.525595px;}
.ws4{word-spacing:15.481836px;}
.ws7{word-spacing:16.109478px;}
.wsc2{word-spacing:16.318739px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
.wsc5{word-spacing:185.012698px;}
.wsc6{word-spacing:199.323072px;}
.wsc4{word-spacing:215.785382px;}
.wsa6{word-spacing:315.947366px;}
.wsa9{word-spacing:368.734234px;}
.wsa8{word-spacing:370.948224px;}
._1d{margin-left:-19.583586px;}
._36{margin-left:-15.260861px;}
._5{margin-left:-11.943245px;}
._12{margin-left:-7.110994px;}
._7{margin-left:-6.070832px;}
._1f{margin-left:-5.040707px;}
._2{margin-left:-3.849538px;}
._0{margin-left:-2.301354px;}
._9{margin-left:-1.030556px;}
._1b{width:1.526175px;}
._8{width:3.001610px;}
._18{width:4.437766px;}
._1e{width:6.673320px;}
._34{width:7.698960px;}
._1{width:10.460700px;}
._32{width:12.313774px;}
._3{width:13.766281px;}
._e{width:15.452118px;}
._a{width:16.516109px;}
._14{width:18.066602px;}
._d{width:19.185665px;}
._f{width:21.184592px;}
._15{width:22.535401px;}
._23{width:24.866650px;}
._c{width:26.080247px;}
._43{width:27.152494px;}
._b{width:28.612362px;}
._4{width:30.587087px;}
._3a{width:31.788712px;}
._6{width:33.355008px;}
._44{width:34.819280px;}
._17{width:36.477487px;}
._22{width:37.613224px;}
._13{width:39.690998px;}
._24{width:40.795702px;}
._16{width:42.512520px;}
._1a{width:93.548814px;}
._19{width:96.537594px;}
._2c{width:126.480038px;}
._2f{width:133.204838px;}
._2b{width:138.154291px;}
._29{width:142.673357px;}
._2a{width:149.613350px;}
._28{width:151.978646px;}
._26{width:171.616896px;}
._40{width:194.174371px;}
._31{width:206.747251px;}
._25{width:208.683994px;}
._30{width:210.136550px;}
._2e{width:214.279027px;}
._41{width:217.690157px;}
._2d{width:227.674829px;}
._3e{width:234.409828px;}
._39{width:286.181120px;}
._38{width:294.542609px;}
._37{width:307.044864px;}
._21{width:343.395187px;}
._3d{width:345.706445px;}
._3c{width:358.992979px;}
._3b{width:370.930934px;}
._3f{width:373.866912px;}
._27{width:532.227571px;}
._20{width:547.398720px;}
._10{width:929.535010px;}
._35{width:1999.002688px;}
._33{width:2437.490736px;}
._42{width:2561.189868px;}
._11{width:2585.099868px;}
._1c{width:2630.748645px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:32.558400px;}
.fsa{font-size:35.865600px;}
.fs12{font-size:36.720000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fs13{font-size:45.486000px;}
.fsb{font-size:47.820600px;}
.fs15{font-size:51.300000px;}
.fsc{font-size:53.798400px;}
.fs14{font-size:57.114000px;}
.fs7{font-size:59.775600px;}
.fsd{font-size:59.850000px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:67.500000px;}
.fs0{font-size:72.000000px;}
.fse{font-size:75.150000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:90.874640px;}
.fs8{font-size:107.596800px;}
.y1bf{bottom:-817.888298px;}
.y1f2{bottom:-690.236798px;}
.y1ee{bottom:-680.660798px;}
.y1f1{bottom:-670.999298px;}
.y1ec{bottom:-661.423298px;}
.y1f0{bottom:-651.761798px;}
.y1ed{bottom:-642.185798px;}
.y1ef{bottom:-632.609798px;}
.y1eb{bottom:-612.602655px;}
.y1e9{bottom:-593.365297px;}
.y1ea{bottom:-574.213298px;}
.yb1{bottom:-564.771937px;}
.y1e6{bottom:-554.206298px;}
.y1e8{bottom:-544.630298px;}
.y1e5{bottom:-535.054298px;}
.y1e2{bottom:-525.392655px;}
.y1e4{bottom:-515.816798px;}
.y1e7{bottom:-506.155155px;}
.y1e3{bottom:-496.579298px;}
.yde{bottom:-480.498581px;}
.y1e1{bottom:-476.657798px;}
.y1df{bottom:-457.420298px;}
.ydd{bottom:-456.537004px;}
.y1e0{bottom:-438.182798px;}
.ydc{bottom:-432.462701px;}
.y1dd{bottom:-418.261155px;}
.y1de{bottom:-408.599655px;}
.y1da{bottom:-408.599550px;}
.ydb{bottom:-408.499245px;}
.y1dc{bottom:-399.023655px;}
.y1d9{bottom:-389.447798px;}
.yda{bottom:-384.424942px;}
.y1db{bottom:-379.786155px;}
.yd9{bottom:-360.350640px;}
.y1d8{bottom:-359.864798px;}
.y1d2{bottom:-359.864567px;}
.y1d5{bottom:-350.203298px;}
.y1d7{bottom:-340.627298px;}
.y1d1{bottom:-340.627144px;}
.yd8{bottom:-336.389062px;}
.y1d4{bottom:-331.051298px;}
.y1d6{bottom:-321.389798px;}
.y1d0{bottom:-321.389721px;}
.yd7{bottom:-312.314760px;}
.y1d3{bottom:-311.813798px;}
.y1cf{bottom:-302.152298px;}
.yd6{bottom:-288.240457px;}
.y1cd{bottom:-282.230644px;}
.y1ce{bottom:-272.996798px;}
.yd5{bottom:-264.278880px;}
.y1cc{bottom:-262.993221px;}
.y1cb{bottom:-243.755797px;}
.yd4{bottom:-240.204578px;}
.yd3{bottom:-216.243000px;}
.y1ca{bottom:-215.284298px;}
.yd2{bottom:-192.168698px;}
.y1c9{bottom:-181.336745px;}
.yd1{bottom:-168.094395px;}
.y1c8{bottom:-163.040275px;}
.y1c7{bottom:-144.743805px;}
.yd0{bottom:-144.132818px;}
.y1c6{bottom:-126.533006px;}
.ycf{bottom:-120.058515px;}
.y1c5{bottom:-108.236536px;}
.yce{bottom:-96.096938px;}
.y1c4{bottom:-90.025737px;}
.y1c3{bottom:-71.729267px;}
.y1c2{bottom:-53.432797px;}
.ycd{bottom:-50.083875px;}
.y16f{bottom:-45.983844px;}
.ycc{bottom:-28.259437px;}
.y1c1{bottom:-18.548797px;}
.ycb{bottom:-0.233944px;}
.y0{bottom:0.000000px;}
.y19d{bottom:0.550800px;}
.y191{bottom:0.612000px;}
.y187{bottom:0.673200px;}
.y1a6{bottom:1.040400px;}
.y190{bottom:1.101600px;}
.y188{bottom:1.795200px;}
.y19a{bottom:2.325600px;}
.y192{bottom:2.386800px;}
.y182{bottom:2.713200px;}
.y172{bottom:2.754000px;}
.y17a{bottom:2.815200px;}
.y186{bottom:2.835600px;}
.y1c0{bottom:2.911845px;}
.y194{bottom:2.937600px;}
.y1a3{bottom:3.794400px;}
.y1a7{bottom:4.100400px;}
.y19b{bottom:4.406400px;}
.y1a4{bottom:5.263200px;}
.y195{bottom:6.181200px;}
.y189{bottom:6.568800px;}
.y18a{bottom:6.874800px;}
.y1a8{bottom:7.038000px;}
.y18d{bottom:8.200800px;}
.y193{bottom:8.262000px;}
.y17f{bottom:8.935200px;}
.y178{bottom:8.996400px;}
.y3d{bottom:9.233944px;}
.y196{bottom:9.975600px;}
.y19e{bottom:10.587600px;}
.y18b{bottom:10.669200px;}
.y183{bottom:11.036400px;}
.y18f{bottom:14.504400px;}
.y17c{bottom:15.116400px;}
.y179{bottom:15.177600px;}
.y185{bottom:15.198000px;}
.y17e{bottom:21.358800px;}
.y198{bottom:23.766000px;}
.y1a0{bottom:26.805600px;}
.y3c{bottom:26.903761px;}
.y17b{bottom:27.540000px;}
.y184{bottom:27.560400px;}
.y176{bottom:27.784800px;}
.y6a{bottom:31.890000px;}
.y17d{bottom:33.721200px;}
.y174{bottom:33.966000px;}
.y1a1{bottom:37.087200px;}
.y180{bottom:39.902400px;}
.y175{bottom:40.147200px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y160{bottom:91.665000px;}
.y2a2{bottom:94.371000px;}
.y271{bottom:94.729500px;}
.y122{bottom:97.801500px;}
.y1ad{bottom:99.009000px;}
.y2c4{bottom:100.050000px;}
.y4{bottom:100.995005px;}
.y260{bottom:101.677500px;}
.yf1{bottom:102.928500px;}
.y69{bottom:103.621500px;}
.y2fa{bottom:104.503500px;}
.y3a{bottom:104.646000px;}
.y26d{bottom:107.193000px;}
.ya1{bottom:107.641500px;}
.y20e{bottom:108.505500px;}
.y15f{bottom:110.494500px;}
.y270{bottom:112.303500px;}
.y2a1{bottom:113.200500px;}
.y121{bottom:116.631000px;}
.y20a{bottom:116.725500px;}
.y2c3{bottom:117.310500px;}
.y1ac{bottom:117.838500px;}
.y25f{bottom:120.507000px;}
.yf0{bottom:121.758000px;}
.y2f9{bottom:121.762500px;}
.y68{bottom:122.449500px;}
.y39{bottom:122.535000px;}
.y20d{bottom:124.944000px;}
.y26c{bottom:126.022500px;}
.ya0{bottom:126.471000px;}
.y15e{bottom:129.324000px;}
.y26f{bottom:129.877500px;}
.y2a0{bottom:132.030000px;}
.y208{bottom:133.164000px;}
.y2c2{bottom:134.571000px;}
.y120{bottom:135.460500px;}
.y1ab{bottom:136.668000px;}
.y2f8{bottom:139.023000px;}
.y23{bottom:139.264499px;}
.y25e{bottom:139.336500px;}
.y38{bottom:140.422500px;}
.yef{bottom:140.587500px;}
.y67{bottom:141.279000px;}
.y20c{bottom:141.382500px;}
.y12f{bottom:144.403500px;}
.y26b{bottom:144.852000px;}
.y9f{bottom:145.300500px;}
.y26e{bottom:147.451500px;}
.y15d{bottom:148.153500px;}
.y209{bottom:149.602500px;}
.y29f{bottom:150.859500px;}
.y2c1{bottom:151.830000px;}
.y11f{bottom:154.290000px;}
.y1aa{bottom:155.497500px;}
.y2f7{bottom:156.283500px;}
.y20b{bottom:157.821000px;}
.y25d{bottom:158.166000px;}
.y37{bottom:158.310000px;}
.yee{bottom:159.417000px;}
.y66{bottom:160.108500px;}
.y12e{bottom:163.233000px;}
.y26a{bottom:163.681500px;}
.y9e{bottom:164.130000px;}
.y15c{bottom:166.983000px;}
.y2c0{bottom:169.090500px;}
.yca{bottom:170.991574px;}
.y11e{bottom:173.119500px;}
.y2f6{bottom:173.544000px;}
.y29e{bottom:174.172500px;}
.y1a9{bottom:174.327000px;}
.y207{bottom:175.006500px;}
.y36{bottom:176.199000px;}
.y25c{bottom:176.995500px;}
.yed{bottom:178.246500px;}
.y65{bottom:178.938000px;}
.y12d{bottom:182.062500px;}
.y269{bottom:182.511000px;}
.y9d{bottom:182.959500px;}
.y203{bottom:183.226500px;}
.y15b{bottom:185.812500px;}
.y2bf{bottom:186.351000px;}
.y2f5{bottom:190.804500px;}
.y206{bottom:191.445000px;}
.y11d{bottom:191.949000px;}
.y29d{bottom:193.002000px;}
.y35{bottom:194.086500px;}
.yc9{bottom:194.955030px;}
.y25b{bottom:195.825000px;}
.y1a{bottom:196.933500px;}
.yec{bottom:197.076000px;}
.y64{bottom:197.767500px;}
.y202{bottom:199.665000px;}
.y12c{bottom:200.892000px;}
.y268{bottom:201.340500px;}
.y9c{bottom:201.789000px;}
.y2be{bottom:203.611500px;}
.y15a{bottom:204.642000px;}
.y16c{bottom:205.111704px;}
.y205{bottom:207.883500px;}
.y2f4{bottom:208.065000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y11c{bottom:210.778500px;}
.y19f{bottom:211.963860px;}
.y34{bottom:211.974000px;}
.y25a{bottom:214.654500px;}
.yeb{bottom:215.905500px;}
.y201{bottom:216.102000px;}
.y29c{bottom:216.315000px;}
.y63{bottom:216.597000px;}
.yc8{bottom:219.029333px;}
.y12b{bottom:219.721500px;}
.y267{bottom:220.170000px;}
.y9b{bottom:220.618500px;}
.y2bd{bottom:220.872000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y159{bottom:223.471500px;}
.y204{bottom:224.322000px;}
.y2f3{bottom:225.325500px;}
.y11b{bottom:229.608000px;}
.y33{bottom:229.863000px;}
.y259{bottom:233.484000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.yea{bottom:234.733500px;}
.y62{bottom:235.426500px;}
.y2bc{bottom:238.132500px;}
.y12a{bottom:238.551000px;}
.y266{bottom:238.999500px;}
.y9a{bottom:239.446500px;}
.y1fe{bottom:240.612000px;}
.y200{bottom:241.507500px;}
.y158{bottom:242.301000px;}
.y2f2{bottom:242.586000px;}
.y1a5{bottom:248.316660px;}
.y11a{bottom:248.437500px;}
.yc7{bottom:248.615888px;}
.y258{bottom:252.313500px;}
.y29b{bottom:253.077000px;}
.ye9{bottom:253.563000px;}
.y61{bottom:254.256000px;}
.y2bb{bottom:255.393000px;}
.y1fd{bottom:257.050500px;}
.y129{bottom:257.380500px;}
.y265{bottom:257.829000px;}
.y99{bottom:258.276000px;}
.y1ff{bottom:258.543000px;}
.y2f1{bottom:259.846500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y157{bottom:261.130500px;}
.y1be{bottom:261.463831px;}
.y119{bottom:267.267000px;}
.y1bd{bottom:270.612202px;}
.y257{bottom:271.143000px;}
.y29a{bottom:271.906500px;}
.ye8{bottom:272.392500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y2ba{bottom:272.653500px;}
.yc6{bottom:272.690190px;}
.y60{bottom:273.085500px;}
.y128{bottom:276.210000px;}
.y264{bottom:276.658500px;}
.y98{bottom:277.105500px;}
.y156{bottom:279.960000px;}
.y1a2{bottom:284.669460px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y118{bottom:286.096500px;}
.y1fc{bottom:289.270500px;}
.y2b9{bottom:289.912500px;}
.y256{bottom:289.972500px;}
.y299{bottom:290.736000px;}
.ye7{bottom:291.222000px;}
.y2f0{bottom:294.366000px;}
.y127{bottom:295.039500px;}
.y263{bottom:295.488000px;}
.y97{bottom:295.935000px;}
.y5f{bottom:296.398500px;}
.y32{bottom:297.166500px;}
.y155{bottom:298.789500px;}
.y117{bottom:304.926000px;}
.y2b8{bottom:307.173000px;}
.y255{bottom:308.802000px;}
.y298{bottom:309.565500px;}
.ye6{bottom:310.051500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y2ef{bottom:311.626500px;}
.y262{bottom:314.317500px;}
.y96{bottom:314.764500px;}
.y31{bottom:315.054000px;}
.y126{bottom:318.351000px;}
.yc5{bottom:319.264403px;}
.y197{bottom:321.022260px;}
.y154{bottom:322.102500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y116{bottom:323.755500px;}
.y2b7{bottom:324.433500px;}
.y1fb{bottom:326.374500px;}
.y254{bottom:327.631500px;}
.y297{bottom:328.395000px;}
.ye5{bottom:328.881000px;}
.y2ee{bottom:328.887000px;}
.y30{bottom:332.941500px;}
.y261{bottom:333.145500px;}
.y95{bottom:333.594000px;}
.y2b6{bottom:341.694000px;}
.y115{bottom:342.585000px;}
.yc4{bottom:343.225980px;}
.y1fa{bottom:345.204000px;}
.y2ed{bottom:346.147500px;}
.y253{bottom:346.461000px;}
.y296{bottom:347.223000px;}
.ye4{bottom:347.710500px;}
.y11{bottom:348.133500px;}
.y2f{bottom:350.830500px;}
.y125{bottom:351.975000px;}
.y94{bottom:352.423500px;}
.y19c{bottom:357.395460px;}
.y2b5{bottom:358.954500px;}
.y114{bottom:361.414500px;}
.y153{bottom:363.366000px;}
.y2ec{bottom:363.408000px;}
.y1f9{bottom:364.033500px;}
.y252{bottom:365.290500px;}
.y295{bottom:366.052500px;}
.ye3{bottom:366.540000px;}
.yc3{bottom:367.300283px;}
.y124{bottom:370.804500px;}
.y93{bottom:371.253000px;}
.y5e{bottom:371.548500px;}
.y2b4{bottom:376.215000px;}
.y2e{bottom:377.685000px;}
.y152{bottom:379.774500px;}
.y113{bottom:380.242500px;}
.y2eb{bottom:380.668500px;}
.y1f8{bottom:382.863000px;}
.y251{bottom:384.120000px;}
.y294{bottom:384.882000px;}
.ye2{bottom:385.369500px;}
.y10{bottom:386.785499px;}
.y92{bottom:390.082500px;}
.y5d{bottom:391.005000px;}
.yc2{bottom:391.261860px;}
.y2b3{bottom:393.475500px;}
.y199{bottom:393.748260px;}
.y123{bottom:394.117500px;}
.y2d{bottom:395.572500px;}
.y2ea{bottom:397.929000px;}
.y1f7{bottom:401.692500px;}
.y250{bottom:402.949500px;}
.y151{bottom:403.414500px;}
.y293{bottom:403.711500px;}
.ye1{bottom:404.199000px;}
.yf{bottom:408.044999px;}
.y91{bottom:408.912000px;}
.y2b2{bottom:410.736000px;}
.y2c{bottom:413.460000px;}
.y2e9{bottom:415.188000px;}
.yc1{bottom:415.336163px;}
.y1f6{bottom:420.520500px;}
.y24f{bottom:421.779000px;}
.y292{bottom:422.541000px;}
.y150{bottom:427.056000px;}
.y90{bottom:427.741500px;}
.y2b1{bottom:427.996500px;}
.y5c{bottom:428.395500px;}
.y112{bottom:428.694000px;}
.y18c{bottom:430.101060px;}
.y2b{bottom:431.349000px;}
.y2e8{bottom:432.448500px;}
.y170{bottom:432.844956px;}
.ye0{bottom:437.764500px;}
.y1f5{bottom:439.350000px;}
.y24e{bottom:440.608500px;}
.y291{bottom:441.370500px;}
.y14e{bottom:443.494500px;}
.yc0{bottom:444.924596px;}
.y110{bottom:445.132500px;}
.y2b0{bottom:445.255500px;}
.y8f{bottom:446.571000px;}
.y5b{bottom:447.852000px;}
.y2a{bottom:449.236500px;}
.y2e7{bottom:449.709000px;}
.ydf{bottom:456.997500px;}
.y1f4{bottom:458.179500px;}
.y24d{bottom:459.438000px;}
.y14f{bottom:459.933000px;}
.y290{bottom:460.200000px;}
.y111{bottom:461.571000px;}
.y2af{bottom:462.516000px;}
.y8e{bottom:465.400500px;}
.y18e{bottom:466.453860px;}
.y2e6{bottom:466.969500px;}
.y29{bottom:467.124000px;}
.y5a{bottom:467.310000px;}
.ybf{bottom:468.998899px;}
.y16e{bottom:475.154556px;}
.y28f{bottom:479.029500px;}
.y2ae{bottom:479.776500px;}
.y16d{bottom:481.702956px;}
.yae{bottom:482.416500px;}
.y24c{bottom:482.749500px;}
.y14d{bottom:483.573000px;}
.y8d{bottom:484.230000px;}
.ye{bottom:484.864502px;}
.y28{bottom:485.013000px;}
.y10f{bottom:485.211000px;}
.y59{bottom:486.766500px;}
.y1f3{bottom:491.746500px;}
.y14b{bottom:491.793000px;}
.y2ad{bottom:497.037000px;}
.y28e{bottom:497.859000px;}
.ybe{bottom:498.698179px;}
.y14c{bottom:500.011500px;}
.y2e5{bottom:501.490500px;}
.y10e{bottom:501.649500px;}
.y181{bottom:502.806660px;}
.yd{bottom:502.864502px;}
.y27{bottom:502.900500px;}
.y8c{bottom:503.059500px;}
.y58{bottom:506.223000px;}
.y107{bottom:509.245500px;}
.y10b{bottom:509.869500px;}
.y1bc{bottom:514.174500px;}
.y2ac{bottom:514.297500px;}
.y28d{bottom:516.688500px;}
.y10d{bottom:518.088000px;}
.y2e4{bottom:518.751000px;}
.y26{bottom:520.788000px;}
.yc{bottom:520.864502px;}
.y8b{bottom:521.889000px;}
.ybd{bottom:522.659756px;}
.y14a{bottom:523.651500px;}
.y57{bottom:525.681000px;}
.y24b{bottom:528.063000px;}
.y2ab{bottom:531.558000px;}
.y10c{bottom:534.526500px;}
.y28c{bottom:535.518000px;}
.y2e3{bottom:536.011500px;}
.y25{bottom:538.677000px;}
.yb{bottom:538.864499px;}
.y148{bottom:540.090000px;}
.y173{bottom:540.526260px;}
.y8a{bottom:540.718500px;}
.y56{bottom:545.137500px;}
.y248{bottom:545.248500px;}
.ybc{bottom:546.734059px;}
.y2aa{bottom:548.818500px;}
.y2e2{bottom:553.272000px;}
.y24a{bottom:553.467000px;}
.y28b{bottom:554.347500px;}
.y149{bottom:556.528500px;}
.y24{bottom:556.564500px;}
.ya{bottom:556.864499px;}
.y10a{bottom:558.166500px;}
.y89{bottom:559.548000px;}
.y247{bottom:561.687000px;}
.y55{bottom:564.595500px;}
.y2a9{bottom:566.079000px;}
.y244{bottom:569.905500px;}
.y2e1{bottom:570.531000px;}
.ybb{bottom:570.808361px;}
.y28a{bottom:573.177000px;}
.y108{bottom:574.605000px;}
.y246{bottom:578.125500px;}
.y88{bottom:578.377500px;}
.y147{bottom:580.363500px;}
.y2a8{bottom:583.338000px;}
.y54{bottom:584.052000px;}
.y249{bottom:586.344000px;}
.y2e0{bottom:587.791500px;}
.y177{bottom:590.526660px;}
.y109{bottom:591.043500px;}
.y289{bottom:592.006500px;}
.y245{bottom:594.562500px;}
.yba{bottom:594.769939px;}
.y87{bottom:597.207000px;}
.y2a7{bottom:600.598500px;}
.y53{bottom:603.508500px;}
.y2df{bottom:605.052000px;}
.y288{bottom:610.836000px;}
.y23f{bottom:611.748000px;}
.y146{bottom:612.178500px;}
.y106{bottom:614.685000px;}
.y171{bottom:615.863460px;}
.y86{bottom:616.036500px;}
.y2a6{bottom:617.859000px;}
.yb9{bottom:618.844241px;}
.y243{bottom:619.968000px;}
.y2de{bottom:622.312500px;}
.y52{bottom:622.966500px;}
.y23e{bottom:628.186500px;}
.y287{bottom:629.665500px;}
.y104{bottom:631.123500px;}
.y85{bottom:634.866000px;}
.y2a5{bottom:635.119500px;}
.y242{bottom:636.406500px;}
.y2dd{bottom:639.573000px;}
.y51{bottom:642.423000px;}
.yb8{bottom:642.918544px;}
.y23b{bottom:644.625000px;}
.y16b{bottom:645.283500px;}
.y9{bottom:645.510000px;}
.yad{bottom:647.418000px;}
.y105{bottom:647.562000px;}
.y286{bottom:648.495000px;}
.y145{bottom:649.212000px;}
.y2a4{bottom:652.380000px;}
.y241{bottom:652.845000px;}
.y84{bottom:653.695500px;}
.y2dc{bottom:656.833500px;}
.y23d{bottom:661.063500px;}
.y50{bottom:661.879500px;}
.yac{bottom:666.247500px;}
.y8{bottom:666.771000px;}
.yb7{bottom:666.880121px;}
.y285{bottom:667.324500px;}
.y144{bottom:668.041500px;}
.y240{bottom:669.283500px;}
.yff{bottom:670.578000px;}
.y103{bottom:671.202000px;}
.y83{bottom:672.525000px;}
.y2db{bottom:674.094000px;}
.y2a3{bottom:674.124000px;}
.y23c{bottom:677.502000px;}
.y4f{bottom:681.337500px;}
.y16a{bottom:682.387500px;}
.yab{bottom:685.077000px;}
.y284{bottom:686.154000px;}
.y143{bottom:686.871000px;}
.yb6{bottom:690.954424px;}
.y82{bottom:691.354500px;}
.y23a{bottom:694.687500px;}
.y102{bottom:694.843500px;}
.y4e{bottom:700.794000px;}
.y169{bottom:701.217000px;}
.y236{bottom:702.907500px;}
.y283{bottom:704.983500px;}
.y142{bottom:705.700500px;}
.yaa{bottom:708.390000px;}
.y2da{bottom:708.613500px;}
.y81{bottom:710.184000px;}
.y239{bottom:711.126000px;}
.y100{bottom:711.280500px;}
.yb5{bottom:714.916001px;}
.y234{bottom:719.346000px;}
.y168{bottom:720.046500px;}
.y4d{bottom:720.252000px;}
.y2fd{bottom:721.317000px;}
.y282{bottom:723.813000px;}
.ya9{bottom:724.081500px;}
.y141{bottom:724.530000px;}
.y2d9{bottom:725.874000px;}
.y7{bottom:726.298500px;}
.y238{bottom:727.564500px;}
.y101{bottom:727.719000px;}
.y80{bottom:729.013500px;}
.y235{bottom:735.783000px;}
.y2fc{bottom:738.577500px;}
.y167{bottom:738.876000px;}
.yb4{bottom:738.990304px;}
.y4c{bottom:739.708500px;}
.y281{bottom:742.642500px;}
.y2d8{bottom:743.134500px;}
.y140{bottom:743.359500px;}
.y237{bottom:744.003000px;}
.y7f{bottom:747.843000px;}
.yfe{bottom:751.360500px;}
.y3{bottom:752.599495px;}
.y2fb{bottom:755.838000px;}
.ya8{bottom:757.705500px;}
.y4b{bottom:759.165000px;}
.yfd{bottom:759.579000px;}
.y2d7{bottom:760.395000px;}
.y22f{bottom:761.188500px;}
.y280{bottom:761.472000px;}
.y13f{bottom:762.189000px;}
.yb3{bottom:763.064606px;}
.y1bb{bottom:765.775500px;}
.y7e{bottom:766.671000px;}
.y233{bottom:769.407000px;}
.ya7{bottom:776.535000px;}
.y22d{bottom:777.627000px;}
.y2d6{bottom:777.655500px;}
.y4a{bottom:778.623000px;}
.y27f{bottom:780.301500px;}
.y13e{bottom:781.018500px;}
.y1ba{bottom:784.605000px;}
.y7d{bottom:785.500500px;}
.y232{bottom:785.845500px;}
.yb2{bottom:787.028063px;}
.yfc{bottom:791.439000px;}
.y22b{bottom:794.065500px;}
.y2d5{bottom:794.916000px;}
.ya6{bottom:795.364500px;}
.y49{bottom:798.079500px;}
.y27e{bottom:799.131000px;}
.y13d{bottom:799.848000px;}
.y231{bottom:802.284000px;}
.y1b9{bottom:803.434500px;}
.y7c{bottom:804.330000px;}
.yf7{bottom:806.520000px;}
.yfb{bottom:807.877500px;}
.y22c{bottom:810.504000px;}
.y2d4{bottom:812.176500px;}
.ya5{bottom:814.194000px;}
.y48{bottom:817.536000px;}
.y27d{bottom:817.960500px;}
.y13c{bottom:818.677500px;}
.y230{bottom:818.722500px;}
.y1b8{bottom:822.264000px;}
.y7b{bottom:823.159500px;}
.yf8{bottom:824.316000px;}
.y22e{bottom:826.942500px;}
.y2d3{bottom:829.437000px;}
.ya4{bottom:833.023500px;}
.y13b{bottom:837.507000px;}
.yfa{bottom:840.754500px;}
.y27c{bottom:841.272000px;}
.y7a{bottom:841.989000px;}
.y22a{bottom:844.128000px;}
.y1b7{bottom:845.575500px;}
.y2d2{bottom:846.697500px;}
.y166{bottom:851.853000px;}
.y226{bottom:852.346500px;}
.yb0{bottom:855.428231px;}
.y47{bottom:855.496500px;}
.ya3{bottom:856.335000px;}
.yf9{bottom:857.193000px;}
.y27b{bottom:860.101500px;}
.y229{bottom:860.565000px;}
.y79{bottom:860.818500px;}
.y2d1{bottom:863.956500px;}
.yaf{bottom:867.465563px;}
.y224{bottom:868.785000px;}
.y165{bottom:870.682500px;}
.y46{bottom:871.636500px;}
.ya2{bottom:875.164500px;}
.y228{bottom:877.003500px;}
.y1b6{bottom:879.199500px;}
.y2{bottom:879.369000px;}
.y78{bottom:879.648000px;}
.yf5{bottom:880.833000px;}
.y2d0{bottom:881.217000px;}
.y27a{bottom:883.414500px;}
.y225{bottom:885.223500px;}
.yf4{bottom:889.053000px;}
.y164{bottom:889.512000px;}
.y45{bottom:892.116000px;}
.y227{bottom:893.442000px;}
.y13a{bottom:893.994000px;}
.yf6{bottom:897.271500px;}
.y1b5{bottom:898.029000px;}
.y77{bottom:898.477500px;}
.y44{bottom:908.254500px;}
.y163{bottom:908.341500px;}
.y21f{bottom:909.880500px;}
.y139{bottom:912.823500px;}
.y2cf{bottom:915.738000px;}
.y1b4{bottom:916.858500px;}
.y76{bottom:917.307000px;}
.y223{bottom:918.100500px;}
.y279{bottom:920.176500px;}
.yf3{bottom:920.913000px;}
.y43{bottom:924.394500px;}
.y21e{bottom:926.319000px;}
.y162{bottom:927.171000px;}
.y138{bottom:931.653000px;}
.y2ce{bottom:932.998500px;}
.y222{bottom:934.539000px;}
.y1b3{bottom:935.688000px;}
.y75{bottom:936.136500px;}
.y21b{bottom:942.757500px;}
.y161{bottom:946.000500px;}
.y278{bottom:946.717500px;}
.y2cd{bottom:950.259000px;}
.y137{bottom:950.482500px;}
.y221{bottom:950.976000px;}
.y1b2{bottom:954.517500px;}
.y74{bottom:954.966000px;}
.yf2{bottom:955.521000px;}
.y21d{bottom:959.196000px;}
.y277{bottom:964.291500px;}
.y1{bottom:966.726000px;}
.y220{bottom:967.414500px;}
.y2cc{bottom:967.519500px;}
.y42{bottom:968.446500px;}
.y136{bottom:969.312000px;}
.y1b1{bottom:973.347000px;}
.y73{bottom:973.795500px;}
.y21c{bottom:975.634500px;}
.y2cb{bottom:984.780000px;}
.y135{bottom:988.141500px;}
.y276{bottom:990.832500px;}
.y1b0{bottom:992.176500px;}
.y72{bottom:992.625000px;}
.y21a{bottom:992.820000px;}
.y216{bottom:1001.038500px;}
.y2ca{bottom:1002.040500px;}
.y134{bottom:1006.971000px;}
.y41{bottom:1008.364500px;}
.y219{bottom:1009.258500px;}
.y1af{bottom:1011.006000px;}
.y71{bottom:1011.454500px;}
.y275{bottom:1017.372000px;}
.y214{bottom:1017.477000px;}
.y2c9{bottom:1019.299500px;}
.y218{bottom:1025.697000px;}
.y133{bottom:1025.800500px;}
.y70{bottom:1030.284000px;}
.y215{bottom:1033.915500px;}
.y1ae{bottom:1034.319000px;}
.y2c8{bottom:1036.560000px;}
.y40{bottom:1036.609500px;}
.y217{bottom:1042.135500px;}
.y274{bottom:1043.913000px;}
.y132{bottom:1044.630000px;}
.y6f{bottom:1049.113500px;}
.y2c7{bottom:1053.820500px;}
.y211{bottom:1058.424000px;}
.y213{bottom:1059.321000px;}
.y273{bottom:1061.487000px;}
.y131{bottom:1063.459500px;}
.y3f{bottom:1064.853000px;}
.y6e{bottom:1067.943000px;}
.y2c6{bottom:1071.081000px;}
.y210{bottom:1074.862500px;}
.y212{bottom:1076.356500px;}
.y130{bottom:1082.289000px;}
.y6d{bottom:1086.772500px;}
.y272{bottom:1088.028000px;}
.y2c5{bottom:1088.341500px;}
.y3e{bottom:1093.098000px;}
.y6c{bottom:1105.602000px;}
.y20f{bottom:1107.082500px;}
.y3b{bottom:1136.584500px;}
.y6b{bottom:1168.366500px;}
.h3a{height:-665.698725px;}
.h38{height:-529.668225px;}
.h39{height:-520.092225px;}
.h37{height:-384.061725px;}
.h25{height:12.362400px;}
.h23{height:23.766996px;}
.h22{height:23.973666px;}
.h27{height:24.786000px;}
.h10{height:26.110157px;}
.h2a{height:26.804883px;}
.h24{height:27.037969px;}
.h20{height:27.655250px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h33{height:33.203892px;}
.h32{height:33.492621px;}
.h11{height:34.813397px;}
.h16{height:35.052500px;}
.h30{height:35.802000px;}
.h2c{height:35.863200px;}
.h2e{height:35.883600px;}
.h29{height:37.168800px;}
.h35{height:37.773633px;}
.h12{height:38.734848px;}
.h13{height:39.165235px;}
.h3b{height:39.434227px;}
.h34{height:41.692104px;}
.h36{height:42.054645px;}
.h14{height:43.038432px;}
.h15{height:43.516637px;}
.h19{height:43.689331px;}
.hd{height:43.815515px;}
.h18{height:44.069238px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1f{height:48.882816px;}
.h28{height:49.510800px;}
.h1c{height:49.702148px;}
.hb{height:50.930649px;}
.hf{height:54.405312px;}
.h1a{height:54.858032px;}
.h2{height:55.080000px;}
.h1b{height:55.335059px;}
.hc{height:61.613006px;}
.h5{height:64.260000px;}
.h1d{height:72.039235px;}
.h1e{height:72.045235px;}
.h2b{height:72.216000px;}
.h26{height:74.786400px;}
.he{height:77.469696px;}
.h2f{height:108.507600px;}
.h2d{height:108.589200px;}
.h4{height:119.055004px;}
.h17{height:141.361875px;}
.h31{height:227.960100px;}
.h21{height:429.924696px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w1b{width:-68.885925px;}
.w1a{width:21.118500px;}
.w19{width:30.694500px;}
.w18{width:40.554075px;}
.w7{width:43.390800px;}
.wf{width:43.452000px;}
.w12{width:44.023200px;}
.w16{width:50.612400px;}
.w15{width:57.160800px;}
.wd{width:57.834000px;}
.w14{width:57.854400px;}
.w8{width:79.519200px;}
.w13{width:108.446400px;}
.w11{width:114.994800px;}
.we{width:115.668000px;}
.w10{width:115.688400px;}
.wc{width:152.469600px;}
.wa{width:159.140400px;}
.wb{width:172.828800px;}
.w9{width:173.502000px;}
.w4{width:197.527766px;}
.w17{width:563.805525px;}
.w2{width:637.794021px;}
.w5{width:737.100000px;}
.w6{width:789.280794px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x10{left:-239.574375px;}
.x55{left:-183.883425px;}
.x58{left:-181.916805px;}
.x57{left:-166.270425px;}
.x59{left:-154.386429px;}
.x5c{left:-99.580425px;}
.x63{left:-96.245925px;}
.x5f{left:-91.714425px;}
.x5b{left:-53.495925px;}
.x0{left:0.000000px;}
.x2c{left:1.435854px;}
.x47{left:2.570400px;}
.x41{left:3.672000px;}
.x11{left:4.888125px;}
.x45{left:6.609600px;}
.x39{left:7.711200px;}
.x44{left:9.975600px;}
.x43{left:12.546000px;}
.x4c{left:15.912000px;}
.x48{left:17.380800px;}
.x4a{left:18.849600px;}
.x2e{left:21.664800px;}
.x54{left:22.888800px;}
.x38{left:24.174000px;}
.x51{left:25.275600px;}
.x3c{left:27.234000px;}
.x4f{left:28.886400px;}
.x50{left:29.926800px;}
.x4b{left:31.518000px;}
.x40{left:33.843600px;}
.x52{left:35.496000px;}
.x3b{left:37.454400px;}
.x2f{left:39.718800px;}
.x53{left:43.023600px;}
.x12{left:44.713868px;}
.x4e{left:45.716400px;}
.x4d{left:46.818000px;}
.x37{left:50.082000px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x33{left:54.896400px;}
.x6{left:58.054042px;}
.x35{left:61.016400px;}
.x67{left:62.137500px;}
.x31{left:63.403200px;}
.x5d{left:65.776575px;}
.x60{left:69.111075px;}
.x1f{left:74.142000px;}
.xf{left:77.695500px;}
.x70{left:85.848000px;}
.x1d{left:96.622500px;}
.x64{left:98.490000px;}
.x1a{left:100.333500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x17{left:113.541000px;}
.x2d{left:134.443854px;}
.x30{left:180.184560px;}
.x68{left:198.522000px;}
.x5a{left:199.840310px;}
.x4{left:203.484001px;}
.x5e{left:231.219075px;}
.x62{left:234.553575px;}
.x3a{left:238.018560px;}
.x66{left:239.259000px;}
.x15{left:247.348500px;}
.xa{left:248.526000px;}
.x8{left:249.591000px;}
.x2b{left:260.245500px;}
.x2a{left:261.477000px;}
.x25{left:262.498500px;}
.x28{left:264.340500px;}
.x24{left:267.831000px;}
.x9{left:269.316000px;}
.xd{left:281.479500px;}
.x42{left:295.852560px;}
.x1b{left:299.277000px;}
.x16{left:300.388500px;}
.x14{left:306.798000px;}
.xb{left:309.507000px;}
.x6d{left:311.023500px;}
.x20{left:312.954000px;}
.x1c{left:315.948000px;}
.xc{left:319.897500px;}
.x22{left:322.857000px;}
.x21{left:324.198000px;}
.x18{left:326.472000px;}
.x1e{left:328.657500px;}
.x32{left:353.686560px;}
.xe{left:362.356500px;}
.x69{left:366.903000px;}
.x6c{left:395.589000px;}
.x3d{left:397.138560px;}
.x23{left:422.533500px;}
.x6f{left:427.638000px;}
.x6e{left:433.692000px;}
.x26{left:451.086000px;}
.x3{left:454.959000px;}
.x19{left:477.816000px;}
.x61{left:480.810075px;}
.x65{left:485.532000px;}
.x34{left:512.826960px;}
.x6a{left:524.482500px;}
.x56{left:559.795432px;}
.x3e{left:570.660960px;}
.x46{left:628.494960px;}
.x29{left:678.988500px;}
.x27{left:683.110500px;}
.x36{left:685.655760px;}
.x6b{left:692.863500px;}
.x3f{left:729.678960px;}
.x13{left:737.602504px;}
.x49{left:780.291360px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.672000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.221333pt;}
.ls76{letter-spacing:-1.482426pt;}
.ls2f{letter-spacing:-0.260520pt;}
.ls24{letter-spacing:-0.220440pt;}
.ls33{letter-spacing:-0.193720pt;}
.ls6e{letter-spacing:-0.147227pt;}
.ls75{letter-spacing:-0.142150pt;}
.ls35{letter-spacing:-0.126920pt;}
.ls7d{letter-spacing:-0.121843pt;}
.ls32{letter-spacing:-0.120240pt;}
.ls6c{letter-spacing:-0.116766pt;}
.ls26{letter-spacing:-0.106880pt;}
.ls67{letter-spacing:-0.106613pt;}
.ls7c{letter-spacing:-0.101536pt;}
.ls73{letter-spacing:-0.096459pt;}
.ls2c{letter-spacing:-0.093520pt;}
.ls2a{letter-spacing:-0.086840pt;}
.ls79{letter-spacing:-0.086306pt;}
.ls6b{letter-spacing:-0.081229pt;}
.ls28{letter-spacing:-0.080160pt;}
.ls78{letter-spacing:-0.076152pt;}
.ls21{letter-spacing:-0.073480pt;}
.ls7b{letter-spacing:-0.071075pt;}
.ls31{letter-spacing:-0.066800pt;}
.ls72{letter-spacing:-0.065998pt;}
.ls4f{letter-spacing:-0.065280pt;}
.ls7a{letter-spacing:-0.060922pt;}
.ls37{letter-spacing:-0.060120pt;}
.ls64{letter-spacing:-0.055845pt;}
.ls25{letter-spacing:-0.053440pt;}
.ls6a{letter-spacing:-0.050768pt;}
.ls34{letter-spacing:-0.046760pt;}
.ls69{letter-spacing:-0.045691pt;}
.ls1f{letter-spacing:-0.042560pt;}
.ls77{letter-spacing:-0.040614pt;}
.ls30{letter-spacing:-0.040080pt;}
.ls70{letter-spacing:-0.035538pt;}
.ls23{letter-spacing:-0.033400pt;}
.ls62{letter-spacing:-0.032346pt;}
.ls74{letter-spacing:-0.030461pt;}
.ls27{letter-spacing:-0.026720pt;}
.ls71{letter-spacing:-0.025384pt;}
.ls6f{letter-spacing:-0.020307pt;}
.ls2b{letter-spacing:-0.020040pt;}
.ls20{letter-spacing:-0.015960pt;}
.ls6d{letter-spacing:-0.015230pt;}
.ls22{letter-spacing:-0.013360pt;}
.ls63{letter-spacing:-0.012130pt;}
.ls66{letter-spacing:-0.010154pt;}
.ls29{letter-spacing:-0.006680pt;}
.ls65{letter-spacing:-0.005077pt;}
.ls68{letter-spacing:-0.004560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7e{letter-spacing:0.000711pt;}
.ls5e{letter-spacing:0.005077pt;}
.ls1c{letter-spacing:0.006680pt;}
.ls53{letter-spacing:0.009120pt;}
.ls5d{letter-spacing:0.010154pt;}
.ls50{letter-spacing:0.010880pt;}
.ls19{letter-spacing:0.012000pt;}
.ls11{letter-spacing:0.013360pt;}
.ls58{letter-spacing:0.015230pt;}
.ls1a{letter-spacing:0.018000pt;}
.ls16{letter-spacing:0.020040pt;}
.ls57{letter-spacing:0.020307pt;}
.ls56{letter-spacing:0.025384pt;}
.ls13{letter-spacing:0.026720pt;}
.ls60{letter-spacing:0.030461pt;}
.ls14{letter-spacing:0.033400pt;}
.ls61{letter-spacing:0.035538pt;}
.ls12{letter-spacing:0.040080pt;}
.ls5b{letter-spacing:0.040614pt;}
.ls54{letter-spacing:0.045691pt;}
.ls10{letter-spacing:0.046760pt;}
.ls59{letter-spacing:0.050160pt;}
.ls5c{letter-spacing:0.050768pt;}
.ls17{letter-spacing:0.053440pt;}
.ls55{letter-spacing:0.055845pt;}
.ls1b{letter-spacing:0.060120pt;}
.ls5f{letter-spacing:0.060922pt;}
.ls18{letter-spacing:0.066800pt;}
.ls36{letter-spacing:0.073480pt;}
.ls2e{letter-spacing:0.086840pt;}
.ls4e{letter-spacing:0.108800pt;}
.ls5a{letter-spacing:0.111690pt;}
.lsf{letter-spacing:0.113560pt;}
.ls52{letter-spacing:0.141512pt;}
.ls51{letter-spacing:0.153642pt;}
.lse{letter-spacing:0.186200pt;}
.ls2d{letter-spacing:0.200400pt;}
.lsd{letter-spacing:0.202160pt;}
.ls1{letter-spacing:2.657067pt;}
.ls5{letter-spacing:10.626533pt;}
.ls7f{letter-spacing:11.859558pt;}
.ls38{letter-spacing:11.955200pt;}
.ls3b{letter-spacing:12.003021pt;}
.ls3a{letter-spacing:12.050842pt;}
.ls3c{letter-spacing:12.098662pt;}
.ls7{letter-spacing:12.114522pt;}
.ls39{letter-spacing:12.194304pt;}
.ls49{letter-spacing:13.017797pt;}
.ls3d{letter-spacing:13.070931pt;}
.lsb{letter-spacing:13.124065pt;}
.ls4a{letter-spacing:13.177199pt;}
.ls40{letter-spacing:13.230333pt;}
.ls4c{letter-spacing:13.281067pt;}
.ls1e{letter-spacing:13.283467pt;}
.ls1d{letter-spacing:13.336601pt;}
.ls8{letter-spacing:13.389734pt;}
.lsc{letter-spacing:13.442868pt;}
.ls6{letter-spacing:13.496002pt;}
.ls42{letter-spacing:13.549136pt;}
.ls48{letter-spacing:13.761671pt;}
.ls44{letter-spacing:13.974207pt;}
.ls80{letter-spacing:14.346240pt;}
.ls3e{letter-spacing:14.452412pt;}
.ls46{letter-spacing:14.664947pt;}
.ls43{letter-spacing:15.143152pt;}
.ls45{letter-spacing:17.215373pt;}
.ls47{letter-spacing:17.481042pt;}
.lsa{letter-spacing:18.490586pt;}
.ls4b{letter-spacing:18.862523pt;}
.ls3f{letter-spacing:19.128192pt;}
.ls41{letter-spacing:19.181326pt;}
.ls9{letter-spacing:19.659531pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.ls15{letter-spacing:73.032440pt;}
.ls4d{letter-spacing:83.815733pt;}
.ws4f{word-spacing:-66.800000pt;}
.ws15b{word-spacing:-26.301440pt;}
.ws152{word-spacing:-23.814758pt;}
.wsd{word-spacing:-20.194365pt;}
.ws4e{word-spacing:-16.900400pt;}
.ws4b{word-spacing:-13.502160pt;}
.ws4c{word-spacing:-13.300000pt;}
.ws3d{word-spacing:-13.283467pt;}
.wsd5{word-spacing:-12.702154pt;}
.wsa7{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.wsd2{word-spacing:-10.261642pt;}
.wsd3{word-spacing:-10.108000pt;}
.wsf{word-spacing:-10.095467pt;}
.wsc{word-spacing:-9.298400pt;}
.wsd0{word-spacing:-8.170880pt;}
.wsd1{word-spacing:-8.160000pt;}
.wscf{word-spacing:-8.094720pt;}
.wsce{word-spacing:-7.344000pt;}
.wscd{word-spacing:-7.235200pt;}
.ws66{word-spacing:-3.847680pt;}
.ws65{word-spacing:-3.680680pt;}
.ws80{word-spacing:-3.553760pt;}
.ws127{word-spacing:-2.975497pt;}
.ws141{word-spacing:-2.869229pt;}
.ws13e{word-spacing:-2.709827pt;}
.ws11f{word-spacing:-2.656693pt;}
.ws124{word-spacing:-2.497292pt;}
.ws96{word-spacing:-2.317960pt;}
.ws13a{word-spacing:-2.284756pt;}
.ws64{word-spacing:-2.224440pt;}
.ws113{word-spacing:-1.965953pt;}
.ws85{word-spacing:-1.930520pt;}
.ws139{word-spacing:-1.912819pt;}
.ws94{word-spacing:-1.903800pt;}
.ws8b{word-spacing:-1.870400pt;}
.ws63{word-spacing:-1.863720pt;}
.ws11e{word-spacing:-1.859685pt;}
.ws8a{word-spacing:-1.857040pt;}
.ws2d{word-spacing:-1.806551pt;}
.ws134{word-spacing:-1.769370pt;}
.ws1e{word-spacing:-1.673728pt;}
.ws11d{word-spacing:-1.594016pt;}
.ws135{word-spacing:-1.578086pt;}
.ws84{word-spacing:-1.569800pt;}
.wsa0{word-spacing:-1.549760pt;}
.ws83{word-spacing:-1.476280pt;}
.wscc{word-spacing:-1.434614pt;}
.ws148{word-spacing:-1.386803pt;}
.ws2e{word-spacing:-1.381481pt;}
.ws121{word-spacing:-1.328347pt;}
.ws110{word-spacing:-1.275213pt;}
.ws111{word-spacing:-1.222079pt;}
.wsbd{word-spacing:-1.168945pt;}
.ws14b{word-spacing:-1.147699pt;}
.wsb9{word-spacing:-1.115811pt;}
.wsa3{word-spacing:-1.062677pt;}
.ws147{word-spacing:-1.052058pt;}
.ws9a{word-spacing:-1.048760pt;}
.wsa2{word-spacing:-1.009543pt;}
.ws112{word-spacing:-0.903276pt;}
.wse5{word-spacing:-0.893517pt;}
.wse6{word-spacing:-0.857979pt;}
.ws99{word-spacing:-0.774880pt;}
.ws30{word-spacing:-0.743874pt;}
.ws160{word-spacing:-0.717312pt;}
.wsb8{word-spacing:-0.690740pt;}
.ws10d{word-spacing:-0.637606pt;}
.ws165{word-spacing:-0.621670pt;}
.ws98{word-spacing:-0.574480pt;}
.ws56{word-spacing:-0.531339pt;}
.ws136{word-spacing:-0.526029pt;}
.ws163{word-spacing:-0.478208pt;}
.ws12c{word-spacing:-0.478205pt;}
.ws126{word-spacing:-0.425071pt;}
.ws162{word-spacing:-0.334746pt;}
.ws73{word-spacing:-0.334000pt;}
.ws79{word-spacing:-0.320640pt;}
.ws51{word-spacing:-0.318803pt;}
.ws5e{word-spacing:-0.303240pt;}
.ws6a{word-spacing:-0.293920pt;}
.wsf0{word-spacing:-0.289378pt;}
.ws62{word-spacing:-0.287240pt;}
.ws137{word-spacing:-0.286925pt;}
.ws101{word-spacing:-0.284301pt;}
.ws9d{word-spacing:-0.280560pt;}
.ws77{word-spacing:-0.267200pt;}
.ws35{word-spacing:-0.265669pt;}
.wsfe{word-spacing:-0.263994pt;}
.wsf8{word-spacing:-0.258917pt;}
.wse0{word-spacing:-0.253840pt;}
.wsff{word-spacing:-0.248763pt;}
.ws9e{word-spacing:-0.240480pt;}
.ws14e{word-spacing:-0.239104pt;}
.wsf5{word-spacing:-0.238610pt;}
.wsd9{word-spacing:-0.230462pt;}
.ws61{word-spacing:-0.227120pt;}
.ws69{word-spacing:-0.220440pt;}
.ws164{word-spacing:-0.214224pt;}
.ws47{word-spacing:-0.212535pt;}
.wsf7{word-spacing:-0.192918pt;}
.ws19{word-spacing:-0.191283pt;}
.ws81{word-spacing:-0.180360pt;}
.ws22{word-spacing:-0.159402pt;}
.ws1f{word-spacing:-0.143462pt;}
.ws34{word-spacing:-0.106268pt;}
.ws1b{word-spacing:-0.095642pt;}
.ws5f{word-spacing:-0.085120pt;}
.ws4d{word-spacing:-0.066800pt;}
.wsda{word-spacing:-0.064691pt;}
.ws5d{word-spacing:-0.058520pt;}
.ws26{word-spacing:-0.053134pt;}
.wsd4{word-spacing:-0.050768pt;}
.ws15{word-spacing:-0.047821pt;}
.wsd8{word-spacing:-0.044475pt;}
.ws146{word-spacing:-0.009190pt;}
.ws151{word-spacing:-0.008593pt;}
.ws156{word-spacing:-0.008269pt;}
.ws15d{word-spacing:-0.007663pt;}
.ws14f{word-spacing:-0.007526pt;}
.ws157{word-spacing:-0.007262pt;}
.ws158{word-spacing:-0.005939pt;}
.ws149{word-spacing:-0.005743pt;}
.ws159{word-spacing:-0.004642pt;}
.ws166{word-spacing:-0.004301pt;}
.wsc3{word-spacing:-0.002330pt;}
.wse{word-spacing:-0.002115pt;}
.ws14d{word-spacing:-0.000060pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.003199pt;}
.ws76{word-spacing:0.013360pt;}
.wsf3{word-spacing:0.025384pt;}
.ws86{word-spacing:0.033400pt;}
.wsf2{word-spacing:0.035538pt;}
.ws103{word-spacing:0.045691pt;}
.wsaa{word-spacing:0.047821pt;}
.ws31{word-spacing:0.053134pt;}
.wsed{word-spacing:0.055845pt;}
.ws7a{word-spacing:0.060120pt;}
.wsef{word-spacing:0.071075pt;}
.ws104{word-spacing:0.081229pt;}
.ws10b{word-spacing:0.086306pt;}
.wsf4{word-spacing:0.091382pt;}
.wsa5{word-spacing:0.095642pt;}
.wsfd{word-spacing:0.096459pt;}
.wseb{word-spacing:0.100320pt;}
.wsf9{word-spacing:0.101536pt;}
.ws28{word-spacing:0.106268pt;}
.wsfc{word-spacing:0.106613pt;}
.ws108{word-spacing:0.111690pt;}
.ws102{word-spacing:0.116766pt;}
.ws100{word-spacing:0.121843pt;}
.ws75{word-spacing:0.126920pt;}
.ws107{word-spacing:0.131997pt;}
.ws9b{word-spacing:0.133600pt;}
.ws109{word-spacing:0.137074pt;}
.ws9c{word-spacing:0.140280pt;}
.wsdd{word-spacing:0.141360pt;}
.wsfa{word-spacing:0.142150pt;}
.ws50{word-spacing:0.143462pt;}
.wsdc{word-spacing:0.150480pt;}
.ws105{word-spacing:0.152304pt;}
.ws78{word-spacing:0.153640pt;}
.wsea{word-spacing:0.155040pt;}
.wsf1{word-spacing:0.157381pt;}
.ws3a{word-spacing:0.159402pt;}
.ws106{word-spacing:0.162458pt;}
.wsfb{word-spacing:0.172611pt;}
.ws10a{word-spacing:0.177688pt;}
.ws89{word-spacing:0.180000pt;}
.wse9{word-spacing:0.182765pt;}
.ws88{word-spacing:0.186000pt;}
.ws13{word-spacing:0.191283pt;}
.ws10c{word-spacing:0.197995pt;}
.ws87{word-spacing:0.198000pt;}
.ws2b{word-spacing:0.212535pt;}
.wsf6{word-spacing:0.223379pt;}
.ws145{word-spacing:0.239104pt;}
.ws44{word-spacing:0.265669pt;}
.ws1a{word-spacing:0.286925pt;}
.ws45{word-spacing:0.318803pt;}
.wsdf{word-spacing:0.324915pt;}
.ws7b{word-spacing:0.360720pt;}
.wsa4{word-spacing:0.371937pt;}
.ws40{word-spacing:0.425071pt;}
.wsb0{word-spacing:0.478205pt;}
.ws20{word-spacing:0.526029pt;}
.wsbe{word-spacing:0.584473pt;}
.wsab{word-spacing:0.637606pt;}
.wse8{word-spacing:0.670138pt;}
.wsae{word-spacing:0.690740pt;}
.wse7{word-spacing:0.695522pt;}
.wsaf{word-spacing:0.743874pt;}
.wsc0{word-spacing:0.797008pt;}
.wsb7{word-spacing:0.850142pt;}
.ws13b{word-spacing:0.903276pt;}
.ws58{word-spacing:0.956410pt;}
.ws132{word-spacing:0.956416pt;}
.wsba{word-spacing:1.009543pt;}
.wsc9{word-spacing:1.062677pt;}
.ws1d{word-spacing:1.099878pt;}
.ws128{word-spacing:1.115811pt;}
.ws2f{word-spacing:1.168945pt;}
.ws118{word-spacing:1.222079pt;}
.ws53{word-spacing:1.275213pt;}
.ws150{word-spacing:1.291162pt;}
.ws52{word-spacing:1.328347pt;}
.ws68{word-spacing:1.329320pt;}
.ws67{word-spacing:1.409480pt;}
.ws115{word-spacing:1.434614pt;}
.ws133{word-spacing:1.482445pt;}
.ws11b{word-spacing:1.487748pt;}
.ws122{word-spacing:1.540882pt;}
.wse4{word-spacing:1.548424pt;}
.wse3{word-spacing:1.568731pt;}
.ws5c{word-spacing:1.594016pt;}
.wse2{word-spacing:1.599192pt;}
.wsb2{word-spacing:1.647150pt;}
.wse1{word-spacing:1.649960pt;}
.ws17{word-spacing:1.673728pt;}
.ws59{word-spacing:1.700284pt;}
.ws7f{word-spacing:1.703400pt;}
.ws11a{word-spacing:1.753418pt;}
.ws7e{word-spacing:1.763520pt;}
.ws55{word-spacing:1.806551pt;}
.ws14a{word-spacing:1.817190pt;}
.ws5b{word-spacing:1.965953pt;}
.ws46{word-spacing:2.019087pt;}
.ws15e{word-spacing:2.056294pt;}
.ws9f{word-spacing:2.070800pt;}
.ws129{word-spacing:2.072221pt;}
.ws11{word-spacing:2.151936pt;}
.wsbc{word-spacing:2.178489pt;}
.ws15c{word-spacing:2.199757pt;}
.ws3{word-spacing:2.230845pt;}
.ws2{word-spacing:2.231616pt;}
.ws3e{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wsb1{word-spacing:2.284756pt;}
.ws90{word-spacing:2.291240pt;}
.ws10f{word-spacing:2.337890pt;}
.ws48{word-spacing:2.391024pt;}
.ws15a{word-spacing:2.391040pt;}
.ws10e{word-spacing:2.444158pt;}
.wsb5{word-spacing:2.497292pt;}
.ws8e{word-spacing:2.518360pt;}
.ws16{word-spacing:2.534502pt;}
.wsb6{word-spacing:2.550426pt;}
.ws10{word-spacing:2.550432pt;}
.ws8f{word-spacing:2.551760pt;}
.ws57{word-spacing:2.603559pt;}
.ws32{word-spacing:2.656693pt;}
.ws1c{word-spacing:2.677965pt;}
.ws33{word-spacing:2.709827pt;}
.ws155{word-spacing:2.725786pt;}
.ws12b{word-spacing:2.762961pt;}
.ws131{word-spacing:2.773606pt;}
.ws123{word-spacing:2.816095pt;}
.ws168{word-spacing:2.860535pt;}
.ws167{word-spacing:2.864009pt;}
.ws161{word-spacing:2.864674pt;}
.wsbf{word-spacing:2.869229pt;}
.ws144{word-spacing:2.869248pt;}
.ws8d{word-spacing:2.885760pt;}
.wsd7{word-spacing:2.922363pt;}
.ws117{word-spacing:3.028630pt;}
.ws153{word-spacing:3.060531pt;}
.ws21{word-spacing:3.188032pt;}
.ws39{word-spacing:3.241166pt;}
.wsb4{word-spacing:3.294300pt;}
.ws14{word-spacing:3.299635pt;}
.ws8c{word-spacing:3.333320pt;}
.ws12a{word-spacing:3.347434pt;}
.ws12e{word-spacing:3.400567pt;}
.ws2c{word-spacing:3.453701pt;}
.ws119{word-spacing:3.506835pt;}
.ws18{word-spacing:3.538739pt;}
.wsd6{word-spacing:3.559969pt;}
.ws23{word-spacing:3.613103pt;}
.ws12{word-spacing:3.634381pt;}
.ws91{word-spacing:3.647280pt;}
.ws92{word-spacing:3.660640pt;}
.wsbb{word-spacing:3.666237pt;}
.ws11c{word-spacing:3.719371pt;}
.ws16a{word-spacing:3.777843pt;}
.ws27{word-spacing:3.825638pt;}
.ws54{word-spacing:3.878772pt;}
.ws5a{word-spacing:3.931906pt;}
.wsac{word-spacing:4.038174pt;}
.ws143{word-spacing:4.064768pt;}
.ws42{word-spacing:4.091308pt;}
.ws169{word-spacing:4.112589pt;}
.ws25{word-spacing:4.144442pt;}
.ws49{word-spacing:4.197575pt;}
.wsa{word-spacing:4.240070pt;}
.ws116{word-spacing:4.250709pt;}
.wsb{word-spacing:4.314458pt;}
.ws154{word-spacing:4.447334pt;}
.ws13f{word-spacing:4.516379pt;}
.wsc8{word-spacing:4.569513pt;}
.ws12d{word-spacing:4.622646pt;}
.ws3f{word-spacing:4.675780pt;}
.ws15f{word-spacing:4.686438pt;}
.ws114{word-spacing:4.782048pt;}
.ws6d{word-spacing:4.856360pt;}
.ws125{word-spacing:4.888316pt;}
.ws142{word-spacing:4.994583pt;}
.wsca{word-spacing:5.047717pt;}
.ws140{word-spacing:5.100851pt;}
.wscb{word-spacing:5.153985pt;}
.wsde{word-spacing:5.198643pt;}
.ws43{word-spacing:5.207119pt;}
.ws37{word-spacing:5.260253pt;}
.ws6c{word-spacing:5.283880pt;}
.ws3b{word-spacing:5.313387pt;}
.ws7d{word-spacing:5.317280pt;}
.ws7c{word-spacing:5.337320pt;}
.ws3c{word-spacing:5.366521pt;}
.ws130{word-spacing:5.451571pt;}
.wsad{word-spacing:5.472788pt;}
.ws14c{word-spacing:5.547213pt;}
.ws24{word-spacing:5.632190pt;}
.ws93{word-spacing:5.637920pt;}
.ws6b{word-spacing:5.651280pt;}
.wsc7{word-spacing:5.738458pt;}
.ws12f{word-spacing:5.786317pt;}
.ws13c{word-spacing:5.950993pt;}
.ws70{word-spacing:6.065440pt;}
.ws95{word-spacing:6.072120pt;}
.ws38{word-spacing:6.110395pt;}
.ws6f{word-spacing:6.118880pt;}
.ws36{word-spacing:6.163529pt;}
.ws120{word-spacing:6.322930pt;}
.wsc1{word-spacing:6.482332pt;}
.ws4a{word-spacing:6.641733pt;}
.ws41{word-spacing:6.801135pt;}
.ws6e{word-spacing:6.873720pt;}
.wsb3{word-spacing:6.907403pt;}
.ws8{word-spacing:6.918010pt;}
.ws13d{word-spacing:7.119938pt;}
.ws138{word-spacing:7.385607pt;}
.wsa1{word-spacing:7.808920pt;}
.ws97{word-spacing:8.456880pt;}
.wsdb{word-spacing:9.812846pt;}
.ws71{word-spacing:10.193680pt;}
.ws74{word-spacing:10.527680pt;}
.ws72{word-spacing:10.574440pt;}
.ws6{word-spacing:10.823338pt;}
.ws82{word-spacing:12.064080pt;}
.wsec{word-spacing:12.428006pt;}
.wsee{word-spacing:12.488928pt;}
.ws60{word-spacing:12.911640pt;}
.ws4{word-spacing:13.761632pt;}
.ws7{word-spacing:14.319536pt;}
.wsc2{word-spacing:14.505546pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
.wsc5{word-spacing:164.455731pt;}
.wsc6{word-spacing:177.176064pt;}
.wsc4{word-spacing:191.809229pt;}
.wsa6{word-spacing:280.842103pt;}
.wsa9{word-spacing:327.763763pt;}
.wsa8{word-spacing:329.731755pt;}
._1d{margin-left:-17.407632pt;}
._36{margin-left:-13.565210pt;}
._5{margin-left:-10.616218pt;}
._12{margin-left:-6.320883pt;}
._7{margin-left:-5.396295pt;}
._1f{margin-left:-4.480629pt;}
._2{margin-left:-3.421811pt;}
._0{margin-left:-2.045648pt;}
._9{margin-left:-0.916050pt;}
._1b{width:1.356600pt;}
._8{width:2.668098pt;}
._18{width:3.944681pt;}
._1e{width:5.931840pt;}
._34{width:6.843520pt;}
._1{width:9.298400pt;}
._32{width:10.945577pt;}
._3{width:12.236694pt;}
._e{width:13.735216pt;}
._a{width:14.680986pt;}
._14{width:16.059202pt;}
._d{width:17.053924pt;}
._f{width:18.830749pt;}
._15{width:20.031468pt;}
._23{width:22.103689pt;}
._c{width:23.182442pt;}
._43{width:24.135550pt;}
._b{width:25.433211pt;}
._4{width:27.188522pt;}
._3a{width:28.256633pt;}
._6{width:29.648896pt;}
._44{width:30.950471pt;}
._17{width:32.424433pt;}
._22{width:33.433977pt;}
._13{width:35.280887pt;}
._24{width:36.262846pt;}
._16{width:37.788907pt;}
._1a{width:83.154501pt;}
._19{width:85.811195pt;}
._2c{width:112.426701pt;}
._2f{width:118.404301pt;}
._2b{width:122.803814pt;}
._29{width:126.820762pt;}
._2a{width:132.989645pt;}
._28{width:135.092130pt;}
._26{width:152.548352pt;}
._40{width:172.599441pt;}
._31{width:183.775334pt;}
._25{width:185.496883pt;}
._30{width:186.788045pt;}
._2e{width:190.470246pt;}
._41{width:193.502362pt;}
._2d{width:202.377626pt;}
._3e{width:208.364291pt;}
._39{width:254.383218pt;}
._38{width:261.815653pt;}
._37{width:272.928768pt;}
._21{width:305.240166pt;}
._3d{width:307.294618pt;}
._3c{width:319.104870pt;}
._3b{width:329.716386pt;}
._3f{width:332.326144pt;}
._27{width:473.091174pt;}
._20{width:486.576640pt;}
._10{width:826.253342pt;}
._35{width:1776.891278pt;}
._33{width:2166.658432pt;}
._42{width:2276.613216pt;}
._11{width:2297.866549pt;}
._1c{width:2338.443240pt;}
.fs11{font-size:28.940800pt;}
.fsa{font-size:31.880533pt;}
.fs12{font-size:32.640000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fs13{font-size:40.432000pt;}
.fsb{font-size:42.507200pt;}
.fs15{font-size:45.600000pt;}
.fsc{font-size:47.820800pt;}
.fs14{font-size:50.768000pt;}
.fs7{font-size:53.133867pt;}
.fsd{font-size:53.200000pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:60.000000pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:66.800000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:80.777458pt;}
.fs8{font-size:95.641600pt;}
.y1bf{bottom:-727.011820pt;}
.y1f2{bottom:-613.543820pt;}
.y1ee{bottom:-605.031820pt;}
.y1f1{bottom:-596.443820pt;}
.y1ec{bottom:-587.931820pt;}
.y1f0{bottom:-579.343820pt;}
.y1ed{bottom:-570.831820pt;}
.y1ef{bottom:-562.319820pt;}
.y1eb{bottom:-544.535693pt;}
.y1e9{bottom:-527.435820pt;}
.y1ea{bottom:-510.411820pt;}
.yb1{bottom:-502.019500pt;}
.y1e6{bottom:-492.627820pt;}
.y1e8{bottom:-484.115820pt;}
.y1e5{bottom:-475.603820pt;}
.y1e2{bottom:-467.015693pt;}
.y1e4{bottom:-458.503820pt;}
.y1e7{bottom:-449.915693pt;}
.y1e3{bottom:-441.403820pt;}
.yde{bottom:-427.109850pt;}
.y1e1{bottom:-423.695820pt;}
.y1df{bottom:-406.595820pt;}
.ydd{bottom:-405.810670pt;}
.y1e0{bottom:-389.495820pt;}
.ydc{bottom:-384.411290pt;}
.y1dd{bottom:-371.787693pt;}
.y1de{bottom:-363.199693pt;}
.y1da{bottom:-363.199600pt;}
.ydb{bottom:-363.110440pt;}
.y1dc{bottom:-354.687693pt;}
.y1d9{bottom:-346.175820pt;}
.yda{bottom:-341.711060pt;}
.y1db{bottom:-337.587693pt;}
.yd9{bottom:-320.311680pt;}
.y1d8{bottom:-319.879820pt;}
.y1d2{bottom:-319.879615pt;}
.y1d5{bottom:-311.291820pt;}
.y1d7{bottom:-302.779820pt;}
.y1d1{bottom:-302.779683pt;}
.yd8{bottom:-299.012500pt;}
.y1d4{bottom:-294.267820pt;}
.y1d6{bottom:-285.679820pt;}
.y1d0{bottom:-285.679752pt;}
.yd7{bottom:-277.613120pt;}
.y1d3{bottom:-277.167820pt;}
.y1cf{bottom:-268.579820pt;}
.yd6{bottom:-256.213740pt;}
.y1cd{bottom:-250.871683pt;}
.y1ce{bottom:-242.663820pt;}
.yd5{bottom:-234.914560pt;}
.y1cc{bottom:-233.771752pt;}
.y1cb{bottom:-216.671820pt;}
.yd4{bottom:-213.515180pt;}
.yd3{bottom:-192.216000pt;}
.y1ca{bottom:-191.363820pt;}
.yd2{bottom:-170.816620pt;}
.y1c9{bottom:-161.188218pt;}
.yd1{bottom:-149.417240pt;}
.y1c8{bottom:-144.924689pt;}
.y1c7{bottom:-128.661160pt;}
.yd0{bottom:-128.118060pt;}
.y1c6{bottom:-112.473783pt;}
.ycf{bottom:-106.718680pt;}
.y1c5{bottom:-96.210254pt;}
.yce{bottom:-85.419500pt;}
.y1c4{bottom:-80.022878pt;}
.y1c3{bottom:-63.759349pt;}
.y1c2{bottom:-47.495820pt;}
.ycd{bottom:-44.519000pt;}
.y16f{bottom:-40.874528pt;}
.ycc{bottom:-25.119500pt;}
.y1c1{bottom:-16.487820pt;}
.ycb{bottom:-0.207950pt;}
.y0{bottom:0.000000pt;}
.y19d{bottom:0.489600pt;}
.y191{bottom:0.544000pt;}
.y187{bottom:0.598400pt;}
.y1a6{bottom:0.924800pt;}
.y190{bottom:0.979200pt;}
.y188{bottom:1.595733pt;}
.y19a{bottom:2.067200pt;}
.y192{bottom:2.121600pt;}
.y182{bottom:2.411733pt;}
.y172{bottom:2.448000pt;}
.y17a{bottom:2.502400pt;}
.y186{bottom:2.520533pt;}
.y1c0{bottom:2.588307pt;}
.y194{bottom:2.611200pt;}
.y1a3{bottom:3.372800pt;}
.y1a7{bottom:3.644800pt;}
.y19b{bottom:3.916800pt;}
.y1a4{bottom:4.678400pt;}
.y195{bottom:5.494400pt;}
.y189{bottom:5.838933pt;}
.y18a{bottom:6.110933pt;}
.y1a8{bottom:6.256000pt;}
.y18d{bottom:7.289600pt;}
.y193{bottom:7.344000pt;}
.y17f{bottom:7.942400pt;}
.y178{bottom:7.996800pt;}
.y3d{bottom:8.207950pt;}
.y196{bottom:8.867200pt;}
.y19e{bottom:9.411200pt;}
.y18b{bottom:9.483733pt;}
.y183{bottom:9.810133pt;}
.y18f{bottom:12.892800pt;}
.y17c{bottom:13.436800pt;}
.y179{bottom:13.491200pt;}
.y185{bottom:13.509333pt;}
.y17e{bottom:18.985600pt;}
.y198{bottom:21.125333pt;}
.y1a0{bottom:23.827200pt;}
.y3c{bottom:23.914454pt;}
.y17b{bottom:24.480000pt;}
.y184{bottom:24.498133pt;}
.y176{bottom:24.697600pt;}
.y6a{bottom:28.346667pt;}
.y17d{bottom:29.974400pt;}
.y174{bottom:30.192000pt;}
.y1a1{bottom:32.966400pt;}
.y180{bottom:35.468800pt;}
.y175{bottom:35.686400pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y160{bottom:81.480000pt;}
.y2a2{bottom:83.885333pt;}
.y271{bottom:84.204000pt;}
.y122{bottom:86.934667pt;}
.y1ad{bottom:88.008000pt;}
.y2c4{bottom:88.933333pt;}
.y4{bottom:89.773337pt;}
.y260{bottom:90.380000pt;}
.yf1{bottom:91.492000pt;}
.y69{bottom:92.108000pt;}
.y2fa{bottom:92.892000pt;}
.y3a{bottom:93.018667pt;}
.y26d{bottom:95.282667pt;}
.ya1{bottom:95.681333pt;}
.y20e{bottom:96.449333pt;}
.y15f{bottom:98.217333pt;}
.y270{bottom:99.825333pt;}
.y2a1{bottom:100.622667pt;}
.y121{bottom:103.672000pt;}
.y20a{bottom:103.756000pt;}
.y2c3{bottom:104.276000pt;}
.y1ac{bottom:104.745333pt;}
.y25f{bottom:107.117333pt;}
.yf0{bottom:108.229333pt;}
.y2f9{bottom:108.233333pt;}
.y68{bottom:108.844000pt;}
.y39{bottom:108.920000pt;}
.y20d{bottom:111.061333pt;}
.y26c{bottom:112.020000pt;}
.ya0{bottom:112.418667pt;}
.y15e{bottom:114.954667pt;}
.y26f{bottom:115.446667pt;}
.y2a0{bottom:117.360000pt;}
.y208{bottom:118.368000pt;}
.y2c2{bottom:119.618667pt;}
.y120{bottom:120.409333pt;}
.y1ab{bottom:121.482667pt;}
.y2f8{bottom:123.576000pt;}
.y23{bottom:123.790666pt;}
.y25e{bottom:123.854667pt;}
.y38{bottom:124.820000pt;}
.yef{bottom:124.966667pt;}
.y67{bottom:125.581333pt;}
.y20c{bottom:125.673333pt;}
.y12f{bottom:128.358667pt;}
.y26b{bottom:128.757333pt;}
.y9f{bottom:129.156000pt;}
.y26e{bottom:131.068000pt;}
.y15d{bottom:131.692000pt;}
.y209{bottom:132.980000pt;}
.y29f{bottom:134.097333pt;}
.y2c1{bottom:134.960000pt;}
.y11f{bottom:137.146667pt;}
.y1aa{bottom:138.220000pt;}
.y2f7{bottom:138.918667pt;}
.y20b{bottom:140.285333pt;}
.y25d{bottom:140.592000pt;}
.y37{bottom:140.720000pt;}
.yee{bottom:141.704000pt;}
.y66{bottom:142.318667pt;}
.y12e{bottom:145.096000pt;}
.y26a{bottom:145.494667pt;}
.y9e{bottom:145.893333pt;}
.y15c{bottom:148.429333pt;}
.y2c0{bottom:150.302667pt;}
.yca{bottom:151.992510pt;}
.y11e{bottom:153.884000pt;}
.y2f6{bottom:154.261333pt;}
.y29e{bottom:154.820000pt;}
.y1a9{bottom:154.957333pt;}
.y207{bottom:155.561333pt;}
.y36{bottom:156.621333pt;}
.y25c{bottom:157.329333pt;}
.yed{bottom:158.441333pt;}
.y65{bottom:159.056000pt;}
.y12d{bottom:161.833333pt;}
.y269{bottom:162.232000pt;}
.y9d{bottom:162.630667pt;}
.y203{bottom:162.868000pt;}
.y15b{bottom:165.166667pt;}
.y2bf{bottom:165.645333pt;}
.y2f5{bottom:169.604000pt;}
.y206{bottom:170.173333pt;}
.y11d{bottom:170.621333pt;}
.y29d{bottom:171.557333pt;}
.y35{bottom:172.521333pt;}
.yc9{bottom:173.293360pt;}
.y25b{bottom:174.066667pt;}
.y1a{bottom:175.052000pt;}
.yec{bottom:175.178667pt;}
.y64{bottom:175.793333pt;}
.y202{bottom:177.480000pt;}
.y12c{bottom:178.570667pt;}
.y268{bottom:178.969333pt;}
.y9c{bottom:179.368000pt;}
.y2be{bottom:180.988000pt;}
.y15a{bottom:181.904000pt;}
.y16c{bottom:182.321515pt;}
.y205{bottom:184.785333pt;}
.y2f4{bottom:184.946667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y11c{bottom:187.358667pt;}
.y19f{bottom:188.412320pt;}
.y34{bottom:188.421333pt;}
.y25a{bottom:190.804000pt;}
.yeb{bottom:191.916000pt;}
.y201{bottom:192.090667pt;}
.y29c{bottom:192.280000pt;}
.y63{bottom:192.530667pt;}
.yc8{bottom:194.692740pt;}
.y12b{bottom:195.308000pt;}
.y267{bottom:195.706667pt;}
.y9b{bottom:196.105333pt;}
.y2bd{bottom:196.330667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y159{bottom:198.641333pt;}
.y204{bottom:199.397333pt;}
.y2f3{bottom:200.289333pt;}
.y11b{bottom:204.096000pt;}
.y33{bottom:204.322667pt;}
.y259{bottom:207.541333pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.yea{bottom:208.652000pt;}
.y62{bottom:209.268000pt;}
.y2bc{bottom:211.673333pt;}
.y12a{bottom:212.045333pt;}
.y266{bottom:212.444000pt;}
.y9a{bottom:212.841333pt;}
.y1fe{bottom:213.877333pt;}
.y200{bottom:214.673333pt;}
.y158{bottom:215.378667pt;}
.y2f2{bottom:215.632000pt;}
.y1a5{bottom:220.725920pt;}
.y11a{bottom:220.833333pt;}
.yc7{bottom:220.991900pt;}
.y258{bottom:224.278667pt;}
.y29b{bottom:224.957333pt;}
.ye9{bottom:225.389333pt;}
.y61{bottom:226.005333pt;}
.y2bb{bottom:227.016000pt;}
.y1fd{bottom:228.489333pt;}
.y129{bottom:228.782667pt;}
.y265{bottom:229.181333pt;}
.y99{bottom:229.578667pt;}
.y1ff{bottom:229.816000pt;}
.y2f1{bottom:230.974667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y157{bottom:232.116000pt;}
.y1be{bottom:232.412294pt;}
.y119{bottom:237.570667pt;}
.y1bd{bottom:240.544180pt;}
.y257{bottom:241.016000pt;}
.y29a{bottom:241.694667pt;}
.ye8{bottom:242.126667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y2ba{bottom:242.358667pt;}
.yc6{bottom:242.391280pt;}
.y60{bottom:242.742667pt;}
.y128{bottom:245.520000pt;}
.y264{bottom:245.918667pt;}
.y98{bottom:246.316000pt;}
.y156{bottom:248.853333pt;}
.y1a2{bottom:253.039520pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y118{bottom:254.308000pt;}
.y1fc{bottom:257.129333pt;}
.y2b9{bottom:257.700000pt;}
.y256{bottom:257.753333pt;}
.y299{bottom:258.432000pt;}
.ye7{bottom:258.864000pt;}
.y2f0{bottom:261.658667pt;}
.y127{bottom:262.257333pt;}
.y263{bottom:262.656000pt;}
.y97{bottom:263.053333pt;}
.y5f{bottom:263.465333pt;}
.y32{bottom:264.148000pt;}
.y155{bottom:265.590667pt;}
.y117{bottom:271.045333pt;}
.y2b8{bottom:273.042667pt;}
.y255{bottom:274.490667pt;}
.y298{bottom:275.169333pt;}
.ye6{bottom:275.601333pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y2ef{bottom:277.001333pt;}
.y262{bottom:279.393333pt;}
.y96{bottom:279.790667pt;}
.y31{bottom:280.048000pt;}
.y126{bottom:282.978667pt;}
.yc5{bottom:283.790580pt;}
.y197{bottom:285.353120pt;}
.y154{bottom:286.313333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y116{bottom:287.782667pt;}
.y2b7{bottom:288.385333pt;}
.y1fb{bottom:290.110667pt;}
.y254{bottom:291.228000pt;}
.y297{bottom:291.906667pt;}
.ye5{bottom:292.338667pt;}
.y2ee{bottom:292.344000pt;}
.y30{bottom:295.948000pt;}
.y261{bottom:296.129333pt;}
.y95{bottom:296.528000pt;}
.y2b6{bottom:303.728000pt;}
.y115{bottom:304.520000pt;}
.yc4{bottom:305.089760pt;}
.y1fa{bottom:306.848000pt;}
.y2ed{bottom:307.686667pt;}
.y253{bottom:307.965333pt;}
.y296{bottom:308.642667pt;}
.ye4{bottom:309.076000pt;}
.y11{bottom:309.452000pt;}
.y2f{bottom:311.849333pt;}
.y125{bottom:312.866667pt;}
.y94{bottom:313.265333pt;}
.y19c{bottom:317.684853pt;}
.y2b5{bottom:319.070667pt;}
.y114{bottom:321.257333pt;}
.y153{bottom:322.992000pt;}
.y2ec{bottom:323.029333pt;}
.y1f9{bottom:323.585333pt;}
.y252{bottom:324.702667pt;}
.y295{bottom:325.380000pt;}
.ye3{bottom:325.813333pt;}
.yc3{bottom:326.489140pt;}
.y124{bottom:329.604000pt;}
.y93{bottom:330.002667pt;}
.y5e{bottom:330.265333pt;}
.y2b4{bottom:334.413333pt;}
.y2e{bottom:335.720000pt;}
.y152{bottom:337.577333pt;}
.y113{bottom:337.993333pt;}
.y2eb{bottom:338.372000pt;}
.y1f8{bottom:340.322667pt;}
.y251{bottom:341.440000pt;}
.y294{bottom:342.117333pt;}
.ye2{bottom:342.550667pt;}
.y10{bottom:343.809333pt;}
.y92{bottom:346.740000pt;}
.y5d{bottom:347.560000pt;}
.yc2{bottom:347.788320pt;}
.y2b3{bottom:349.756000pt;}
.y199{bottom:349.998453pt;}
.y123{bottom:350.326667pt;}
.y2d{bottom:351.620000pt;}
.y2ea{bottom:353.714667pt;}
.y1f7{bottom:357.060000pt;}
.y250{bottom:358.177333pt;}
.y151{bottom:358.590667pt;}
.y293{bottom:358.854667pt;}
.ye1{bottom:359.288000pt;}
.yf{bottom:362.706666pt;}
.y91{bottom:363.477333pt;}
.y2b2{bottom:365.098667pt;}
.y2c{bottom:367.520000pt;}
.y2e9{bottom:369.056000pt;}
.yc1{bottom:369.187700pt;}
.y1f6{bottom:373.796000pt;}
.y24f{bottom:374.914667pt;}
.y292{bottom:375.592000pt;}
.y150{bottom:379.605333pt;}
.y90{bottom:380.214667pt;}
.y2b1{bottom:380.441333pt;}
.y5c{bottom:380.796000pt;}
.y112{bottom:381.061333pt;}
.y18c{bottom:382.312053pt;}
.y2b{bottom:383.421333pt;}
.y2e8{bottom:384.398667pt;}
.y170{bottom:384.751072pt;}
.ye0{bottom:389.124000pt;}
.y1f5{bottom:390.533333pt;}
.y24e{bottom:391.652000pt;}
.y291{bottom:392.329333pt;}
.y14e{bottom:394.217333pt;}
.yc0{bottom:395.488530pt;}
.y110{bottom:395.673333pt;}
.y2b0{bottom:395.782667pt;}
.y8f{bottom:396.952000pt;}
.y5b{bottom:398.090667pt;}
.y2a{bottom:399.321333pt;}
.y2e7{bottom:399.741333pt;}
.ydf{bottom:406.220000pt;}
.y1f4{bottom:407.270667pt;}
.y24d{bottom:408.389333pt;}
.y14f{bottom:408.829333pt;}
.y290{bottom:409.066667pt;}
.y111{bottom:410.285333pt;}
.y2af{bottom:411.125333pt;}
.y8e{bottom:413.689333pt;}
.y18e{bottom:414.625653pt;}
.y2e6{bottom:415.084000pt;}
.y29{bottom:415.221333pt;}
.y5a{bottom:415.386667pt;}
.ybf{bottom:416.887910pt;}
.y16e{bottom:422.359605pt;}
.y28f{bottom:425.804000pt;}
.y2ae{bottom:426.468000pt;}
.y16d{bottom:428.180405pt;}
.yae{bottom:428.814667pt;}
.y24c{bottom:429.110667pt;}
.y14d{bottom:429.842667pt;}
.y8d{bottom:430.426667pt;}
.ye{bottom:430.990669pt;}
.y28{bottom:431.122667pt;}
.y10f{bottom:431.298667pt;}
.y59{bottom:432.681333pt;}
.y1f3{bottom:437.108000pt;}
.y14b{bottom:437.149333pt;}
.y2ad{bottom:441.810667pt;}
.y28e{bottom:442.541333pt;}
.ybe{bottom:443.287270pt;}
.y14c{bottom:444.454667pt;}
.y2e5{bottom:445.769333pt;}
.y10e{bottom:445.910667pt;}
.y181{bottom:446.939253pt;}
.yd{bottom:446.990669pt;}
.y27{bottom:447.022667pt;}
.y8c{bottom:447.164000pt;}
.y58{bottom:449.976000pt;}
.y107{bottom:452.662667pt;}
.y10b{bottom:453.217333pt;}
.y1bc{bottom:457.044000pt;}
.y2ac{bottom:457.153333pt;}
.y28d{bottom:459.278667pt;}
.y10d{bottom:460.522667pt;}
.y2e4{bottom:461.112000pt;}
.y26{bottom:462.922667pt;}
.yc{bottom:462.990669pt;}
.y8b{bottom:463.901333pt;}
.ybd{bottom:464.586450pt;}
.y14a{bottom:465.468000pt;}
.y57{bottom:467.272000pt;}
.y24b{bottom:469.389333pt;}
.y2ab{bottom:472.496000pt;}
.y10c{bottom:475.134667pt;}
.y28c{bottom:476.016000pt;}
.y2e3{bottom:476.454667pt;}
.y25{bottom:478.824000pt;}
.yb{bottom:478.990666pt;}
.y148{bottom:480.080000pt;}
.y173{bottom:480.467787pt;}
.y8a{bottom:480.638667pt;}
.y56{bottom:484.566667pt;}
.y248{bottom:484.665333pt;}
.ybc{bottom:485.985830pt;}
.y2aa{bottom:487.838667pt;}
.y2e2{bottom:491.797333pt;}
.y24a{bottom:491.970667pt;}
.y28b{bottom:492.753333pt;}
.y149{bottom:494.692000pt;}
.y24{bottom:494.724000pt;}
.ya{bottom:494.990666pt;}
.y10a{bottom:496.148000pt;}
.y89{bottom:497.376000pt;}
.y247{bottom:499.277333pt;}
.y55{bottom:501.862667pt;}
.y2a9{bottom:503.181333pt;}
.y244{bottom:506.582667pt;}
.y2e1{bottom:507.138667pt;}
.ybb{bottom:507.385210pt;}
.y28a{bottom:509.490667pt;}
.y108{bottom:510.760000pt;}
.y246{bottom:513.889333pt;}
.y88{bottom:514.113333pt;}
.y147{bottom:515.878667pt;}
.y2a8{bottom:518.522667pt;}
.y54{bottom:519.157333pt;}
.y249{bottom:521.194667pt;}
.y2e0{bottom:522.481333pt;}
.y177{bottom:524.912587pt;}
.y109{bottom:525.372000pt;}
.y289{bottom:526.228000pt;}
.y245{bottom:528.500000pt;}
.yba{bottom:528.684390pt;}
.y87{bottom:530.850667pt;}
.y2a7{bottom:533.865333pt;}
.y53{bottom:536.452000pt;}
.y2df{bottom:537.824000pt;}
.y288{bottom:542.965333pt;}
.y23f{bottom:543.776000pt;}
.y146{bottom:544.158667pt;}
.y106{bottom:546.386667pt;}
.y171{bottom:547.434187pt;}
.y86{bottom:547.588000pt;}
.y2a6{bottom:549.208000pt;}
.yb9{bottom:550.083770pt;}
.y243{bottom:551.082667pt;}
.y2de{bottom:553.166667pt;}
.y52{bottom:553.748000pt;}
.y23e{bottom:558.388000pt;}
.y287{bottom:559.702667pt;}
.y104{bottom:560.998667pt;}
.y85{bottom:564.325333pt;}
.y2a5{bottom:564.550667pt;}
.y242{bottom:565.694667pt;}
.y2dd{bottom:568.509333pt;}
.y51{bottom:571.042667pt;}
.yb8{bottom:571.483150pt;}
.y23b{bottom:573.000000pt;}
.y16b{bottom:573.585333pt;}
.y9{bottom:573.786667pt;}
.yad{bottom:575.482667pt;}
.y105{bottom:575.610667pt;}
.y286{bottom:576.440000pt;}
.y145{bottom:577.077333pt;}
.y2a4{bottom:579.893333pt;}
.y241{bottom:580.306667pt;}
.y84{bottom:581.062667pt;}
.y2dc{bottom:583.852000pt;}
.y23d{bottom:587.612000pt;}
.y50{bottom:588.337333pt;}
.yac{bottom:592.220000pt;}
.y8{bottom:592.685334pt;}
.yb7{bottom:592.782330pt;}
.y285{bottom:593.177333pt;}
.y144{bottom:593.814667pt;}
.y240{bottom:594.918667pt;}
.yff{bottom:596.069333pt;}
.y103{bottom:596.624000pt;}
.y83{bottom:597.800000pt;}
.y2db{bottom:599.194667pt;}
.y2a3{bottom:599.221333pt;}
.y23c{bottom:602.224000pt;}
.y4f{bottom:605.633333pt;}
.y16a{bottom:606.566667pt;}
.yab{bottom:608.957333pt;}
.y284{bottom:609.914667pt;}
.y143{bottom:610.552000pt;}
.yb6{bottom:614.181710pt;}
.y82{bottom:614.537333pt;}
.y23a{bottom:617.500000pt;}
.y102{bottom:617.638667pt;}
.y4e{bottom:622.928000pt;}
.y169{bottom:623.304000pt;}
.y236{bottom:624.806667pt;}
.y283{bottom:626.652000pt;}
.y142{bottom:627.289333pt;}
.yaa{bottom:629.680000pt;}
.y2da{bottom:629.878667pt;}
.y81{bottom:631.274667pt;}
.y239{bottom:632.112000pt;}
.y100{bottom:632.249333pt;}
.yb5{bottom:635.480890pt;}
.y234{bottom:639.418667pt;}
.y168{bottom:640.041333pt;}
.y4d{bottom:640.224000pt;}
.y2fd{bottom:641.170667pt;}
.y282{bottom:643.389333pt;}
.ya9{bottom:643.628000pt;}
.y141{bottom:644.026667pt;}
.y2d9{bottom:645.221333pt;}
.y7{bottom:645.598667pt;}
.y238{bottom:646.724000pt;}
.y101{bottom:646.861333pt;}
.y80{bottom:648.012000pt;}
.y235{bottom:654.029333pt;}
.y2fc{bottom:656.513333pt;}
.y167{bottom:656.778667pt;}
.yb4{bottom:656.880270pt;}
.y4c{bottom:657.518667pt;}
.y281{bottom:660.126667pt;}
.y2d8{bottom:660.564000pt;}
.y140{bottom:660.764000pt;}
.y237{bottom:661.336000pt;}
.y7f{bottom:664.749333pt;}
.yfe{bottom:667.876000pt;}
.y3{bottom:668.977329pt;}
.y2fb{bottom:671.856000pt;}
.ya8{bottom:673.516000pt;}
.y4b{bottom:674.813333pt;}
.yfd{bottom:675.181333pt;}
.y2d7{bottom:675.906667pt;}
.y22f{bottom:676.612000pt;}
.y280{bottom:676.864000pt;}
.y13f{bottom:677.501333pt;}
.yb3{bottom:678.279650pt;}
.y1bb{bottom:680.689333pt;}
.y7e{bottom:681.485333pt;}
.y233{bottom:683.917333pt;}
.ya7{bottom:690.253333pt;}
.y22d{bottom:691.224000pt;}
.y2d6{bottom:691.249333pt;}
.y4a{bottom:692.109333pt;}
.y27f{bottom:693.601333pt;}
.y13e{bottom:694.238667pt;}
.y1ba{bottom:697.426667pt;}
.y7d{bottom:698.222667pt;}
.y232{bottom:698.529333pt;}
.yb2{bottom:699.580500pt;}
.yfc{bottom:703.501333pt;}
.y22b{bottom:705.836000pt;}
.y2d5{bottom:706.592000pt;}
.ya6{bottom:706.990667pt;}
.y49{bottom:709.404000pt;}
.y27e{bottom:710.338667pt;}
.y13d{bottom:710.976000pt;}
.y231{bottom:713.141333pt;}
.y1b9{bottom:714.164000pt;}
.y7c{bottom:714.960000pt;}
.yf7{bottom:716.906667pt;}
.yfb{bottom:718.113333pt;}
.y22c{bottom:720.448000pt;}
.y2d4{bottom:721.934667pt;}
.ya5{bottom:723.728000pt;}
.y48{bottom:726.698667pt;}
.y27d{bottom:727.076000pt;}
.y13c{bottom:727.713333pt;}
.y230{bottom:727.753333pt;}
.y1b8{bottom:730.901333pt;}
.y7b{bottom:731.697333pt;}
.yf8{bottom:732.725333pt;}
.y22e{bottom:735.060000pt;}
.y2d3{bottom:737.277333pt;}
.ya4{bottom:740.465333pt;}
.y13b{bottom:744.450667pt;}
.yfa{bottom:747.337333pt;}
.y27c{bottom:747.797333pt;}
.y7a{bottom:748.434667pt;}
.y22a{bottom:750.336000pt;}
.y1b7{bottom:751.622667pt;}
.y2d2{bottom:752.620000pt;}
.y166{bottom:757.202667pt;}
.y226{bottom:757.641333pt;}
.yb0{bottom:760.380650pt;}
.y47{bottom:760.441333pt;}
.ya3{bottom:761.186667pt;}
.yf9{bottom:761.949333pt;}
.y27b{bottom:764.534667pt;}
.y229{bottom:764.946667pt;}
.y79{bottom:765.172000pt;}
.y2d1{bottom:767.961333pt;}
.yaf{bottom:771.080500pt;}
.y224{bottom:772.253333pt;}
.y165{bottom:773.940000pt;}
.y46{bottom:774.788000pt;}
.ya2{bottom:777.924000pt;}
.y228{bottom:779.558667pt;}
.y1b6{bottom:781.510667pt;}
.y2{bottom:781.661334pt;}
.y78{bottom:781.909333pt;}
.yf5{bottom:782.962667pt;}
.y2d0{bottom:783.304000pt;}
.y27a{bottom:785.257333pt;}
.y225{bottom:786.865333pt;}
.yf4{bottom:790.269333pt;}
.y164{bottom:790.677333pt;}
.y45{bottom:792.992000pt;}
.y227{bottom:794.170667pt;}
.y13a{bottom:794.661333pt;}
.yf6{bottom:797.574667pt;}
.y1b5{bottom:798.248000pt;}
.y77{bottom:798.646667pt;}
.y44{bottom:807.337333pt;}
.y163{bottom:807.414667pt;}
.y21f{bottom:808.782667pt;}
.y139{bottom:811.398667pt;}
.y2cf{bottom:813.989333pt;}
.y1b4{bottom:814.985333pt;}
.y76{bottom:815.384000pt;}
.y223{bottom:816.089333pt;}
.y279{bottom:817.934667pt;}
.yf3{bottom:818.589333pt;}
.y43{bottom:821.684000pt;}
.y21e{bottom:823.394667pt;}
.y162{bottom:824.152000pt;}
.y138{bottom:828.136000pt;}
.y2ce{bottom:829.332000pt;}
.y222{bottom:830.701333pt;}
.y1b3{bottom:831.722667pt;}
.y75{bottom:832.121333pt;}
.y21b{bottom:838.006667pt;}
.y161{bottom:840.889333pt;}
.y278{bottom:841.526667pt;}
.y2cd{bottom:844.674667pt;}
.y137{bottom:844.873333pt;}
.y221{bottom:845.312000pt;}
.y1b2{bottom:848.460000pt;}
.y74{bottom:848.858667pt;}
.yf2{bottom:849.352000pt;}
.y21d{bottom:852.618667pt;}
.y277{bottom:857.148000pt;}
.y1{bottom:859.312000pt;}
.y220{bottom:859.924000pt;}
.y2cc{bottom:860.017333pt;}
.y42{bottom:860.841333pt;}
.y136{bottom:861.610667pt;}
.y1b1{bottom:865.197333pt;}
.y73{bottom:865.596000pt;}
.y21c{bottom:867.230667pt;}
.y2cb{bottom:875.360000pt;}
.y135{bottom:878.348000pt;}
.y276{bottom:880.740000pt;}
.y1b0{bottom:881.934667pt;}
.y72{bottom:882.333333pt;}
.y21a{bottom:882.506667pt;}
.y216{bottom:889.812000pt;}
.y2ca{bottom:890.702667pt;}
.y134{bottom:895.085333pt;}
.y41{bottom:896.324000pt;}
.y219{bottom:897.118667pt;}
.y1af{bottom:898.672000pt;}
.y71{bottom:899.070667pt;}
.y275{bottom:904.330667pt;}
.y214{bottom:904.424000pt;}
.y2c9{bottom:906.044000pt;}
.y218{bottom:911.730667pt;}
.y133{bottom:911.822667pt;}
.y70{bottom:915.808000pt;}
.y215{bottom:919.036000pt;}
.y1ae{bottom:919.394667pt;}
.y2c8{bottom:921.386667pt;}
.y40{bottom:921.430667pt;}
.y217{bottom:926.342667pt;}
.y274{bottom:927.922667pt;}
.y132{bottom:928.560000pt;}
.y6f{bottom:932.545333pt;}
.y2c7{bottom:936.729333pt;}
.y211{bottom:940.821333pt;}
.y213{bottom:941.618667pt;}
.y273{bottom:943.544000pt;}
.y131{bottom:945.297333pt;}
.y3f{bottom:946.536000pt;}
.y6e{bottom:949.282667pt;}
.y2c6{bottom:952.072000pt;}
.y210{bottom:955.433333pt;}
.y212{bottom:956.761333pt;}
.y130{bottom:962.034667pt;}
.y6d{bottom:966.020000pt;}
.y272{bottom:967.136000pt;}
.y2c5{bottom:967.414667pt;}
.y3e{bottom:971.642667pt;}
.y6c{bottom:982.757333pt;}
.y20f{bottom:984.073333pt;}
.y3b{bottom:1010.297333pt;}
.y6b{bottom:1038.548000pt;}
.h3a{height:-591.732200pt;}
.h38{height:-470.816200pt;}
.h39{height:-462.304200pt;}
.h37{height:-341.388200pt;}
.h25{height:10.988800pt;}
.h23{height:21.126219pt;}
.h22{height:21.309925pt;}
.h27{height:22.032000pt;}
.h10{height:23.209028pt;}
.h2a{height:23.826563pt;}
.h24{height:24.033750pt;}
.h20{height:24.582445pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h33{height:29.514570pt;}
.h32{height:29.771219pt;}
.h11{height:30.945242pt;}
.h16{height:31.157778pt;}
.h30{height:31.824000pt;}
.h2c{height:31.878400pt;}
.h2e{height:31.896533pt;}
.h29{height:33.038933pt;}
.h35{height:33.576563pt;}
.h12{height:34.430976pt;}
.h13{height:34.813542pt;}
.h3b{height:35.052646pt;}
.h34{height:37.059648pt;}
.h36{height:37.381906pt;}
.h14{height:38.256384pt;}
.h15{height:38.681455pt;}
.h19{height:38.834961pt;}
.hd{height:38.947124pt;}
.h18{height:39.172656pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1f{height:43.451392pt;}
.h28{height:44.009600pt;}
.h1c{height:44.179688pt;}
.hb{height:45.271688pt;}
.hf{height:48.360277pt;}
.h1a{height:48.762695pt;}
.h2{height:48.960000pt;}
.h1b{height:49.186719pt;}
.hc{height:54.767117pt;}
.h5{height:57.120000pt;}
.h1d{height:64.034876pt;}
.h1e{height:64.040209pt;}
.h2b{height:64.192000pt;}
.h26{height:66.476800pt;}
.he{height:68.861952pt;}
.h2f{height:96.451200pt;}
.h2d{height:96.523733pt;}
.h4{height:105.826671pt;}
.h17{height:125.655000pt;}
.h31{height:202.631200pt;}
.h21{height:382.155285pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w1b{width:-61.231933pt;}
.w1a{width:18.772000pt;}
.w19{width:27.284000pt;}
.w18{width:36.048067pt;}
.w7{width:38.569600pt;}
.wf{width:38.624000pt;}
.w12{width:39.131733pt;}
.w16{width:44.988800pt;}
.w15{width:50.809600pt;}
.wd{width:51.408000pt;}
.w14{width:51.426133pt;}
.w8{width:70.683733pt;}
.w13{width:96.396800pt;}
.w11{width:102.217600pt;}
.we{width:102.816000pt;}
.w10{width:102.834133pt;}
.wc{width:135.528533pt;}
.wa{width:141.458133pt;}
.wb{width:153.625600pt;}
.w9{width:154.224000pt;}
.w4{width:175.580236pt;}
.w17{width:501.160467pt;}
.w2{width:566.928019pt;}
.w5{width:655.200000pt;}
.w6{width:701.582928pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x10{left:-212.955000pt;}
.x55{left:-163.451933pt;}
.x58{left:-161.703827pt;}
.x57{left:-147.795933pt;}
.x59{left:-137.232382pt;}
.x5c{left:-88.515933pt;}
.x63{left:-85.551933pt;}
.x5f{left:-81.523933pt;}
.x5b{left:-47.551933pt;}
.x0{left:0.000000pt;}
.x2c{left:1.276315pt;}
.x47{left:2.284800pt;}
.x41{left:3.264000pt;}
.x11{left:4.345000pt;}
.x45{left:5.875200pt;}
.x39{left:6.854400pt;}
.x44{left:8.867200pt;}
.x43{left:11.152000pt;}
.x4c{left:14.144000pt;}
.x48{left:15.449600pt;}
.x4a{left:16.755200pt;}
.x2e{left:19.257600pt;}
.x54{left:20.345600pt;}
.x38{left:21.488000pt;}
.x51{left:22.467200pt;}
.x3c{left:24.208000pt;}
.x4f{left:25.676800pt;}
.x50{left:26.601600pt;}
.x4b{left:28.016000pt;}
.x40{left:30.083200pt;}
.x52{left:31.552000pt;}
.x3b{left:33.292800pt;}
.x2f{left:35.305600pt;}
.x53{left:38.243200pt;}
.x12{left:39.745660pt;}
.x4e{left:40.636800pt;}
.x4d{left:41.616000pt;}
.x37{left:44.517333pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x33{left:48.796800pt;}
.x6{left:51.603593pt;}
.x35{left:54.236800pt;}
.x67{left:55.233333pt;}
.x31{left:56.358400pt;}
.x5d{left:58.468067pt;}
.x60{left:61.432067pt;}
.x1f{left:65.904000pt;}
.xf{left:69.062667pt;}
.x70{left:76.309333pt;}
.x1d{left:85.886667pt;}
.x64{left:87.546667pt;}
.x1a{left:89.185333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x17{left:100.925333pt;}
.x2d{left:119.505648pt;}
.x30{left:160.164053pt;}
.x68{left:176.464000pt;}
.x5a{left:177.635831pt;}
.x4{left:180.874667pt;}
.x5e{left:205.528067pt;}
.x62{left:208.492067pt;}
.x3a{left:211.572053pt;}
.x66{left:212.674667pt;}
.x15{left:219.865333pt;}
.xa{left:220.912000pt;}
.x8{left:221.858667pt;}
.x2b{left:231.329333pt;}
.x2a{left:232.424000pt;}
.x25{left:233.332000pt;}
.x28{left:234.969333pt;}
.x24{left:238.072000pt;}
.x9{left:239.392000pt;}
.xd{left:250.204000pt;}
.x42{left:262.980053pt;}
.x1b{left:266.024000pt;}
.x16{left:267.012000pt;}
.x14{left:272.709333pt;}
.xb{left:275.117333pt;}
.x6d{left:276.465333pt;}
.x20{left:278.181333pt;}
.x1c{left:280.842667pt;}
.xc{left:284.353333pt;}
.x22{left:286.984000pt;}
.x21{left:288.176000pt;}
.x18{left:290.197333pt;}
.x1e{left:292.140000pt;}
.x32{left:314.388053pt;}
.xe{left:322.094667pt;}
.x69{left:326.136000pt;}
.x6c{left:351.634667pt;}
.x3d{left:353.012053pt;}
.x23{left:375.585333pt;}
.x6f{left:380.122667pt;}
.x6e{left:385.504000pt;}
.x26{left:400.965333pt;}
.x3{left:404.408000pt;}
.x19{left:424.725333pt;}
.x61{left:427.386733pt;}
.x65{left:431.584000pt;}
.x34{left:455.846187pt;}
.x6a{left:466.206667pt;}
.x56{left:497.595940pt;}
.x3e{left:507.254187pt;}
.x46{left:558.662187pt;}
.x29{left:603.545333pt;}
.x27{left:607.209333pt;}
.x36{left:609.471787pt;}
.x6b{left:615.878667pt;}
.x3f{left:648.603520pt;}
.x13{left:655.646670pt;}
.x49{left:693.592320pt;}
}




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