
    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_30eb0830796381890eaab1f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f1f331c91e694308fe0af24f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bccfc4cb23e19896c0044854.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.719000;font-style:normal;font-weight: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_4925a5628347be1240f945cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0996d86364eb26cabb4e2931.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738000;font-style:normal;font-weight: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_47d3409693bf03734941c421.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6b8ea5f165d0b67e6fa7ec9a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e3828653ef5448ae4e11e8e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983887;font-style:normal;font-weight: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_62423ee61e8bf368ea20831b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ffc44dd43609738b2a2535ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f99f95f6c539f2d6642bbbc1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694000;font-style:normal;font-weight: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_2a02dab4edd31515857c5cf1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888000;font-style:normal;font-weight: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_84c2f36c236f030a7ca22691.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8ea9a4915ab3d02c47243464.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3254674e77e261ee036dd212.woff2')format("woff");}.fff{font-family:fff;line-height:1.025000;font-style:normal;font-weight: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_97516fb51bbfa478b3135de4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.510000;font-style:normal;font-weight: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_18b71dad8e05b00ceb7b3572.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.898000;font-style:normal;font-weight: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_d5e6dbd3d2b7e6ad81a9339a.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d97e8f68c45687757a584ee2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.909000;font-style:normal;font-weight: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_92252c0c586184c0907e5fc3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.898200;font-style:normal;font-weight: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_b3832034fc559e369ca1d025.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.888000;font-style:normal;font-weight: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_b1e5670d30d953cde9b61bb8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.713000;font-style:normal;font-weight: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_183d188c9e3ac61e7eb0a1cb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.888000;font-style:normal;font-weight: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_3856d8188e3cc113f440d1d8.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ffc55e93a60b7a24d6dfa90a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_45b7e72ae9615e338ca06524.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_e5d696ff6c1db78cc92e9d18.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_863196b37c1270fc5cef1ad4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_1354d60133dcc6fdb501872a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_be34f074297fc0e305480d9f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.514000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_f267ac994075aaf220e19330.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_06bb37fb93ba541d63cce361.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_131994df844c40e9f23a2565.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_f847abc7c51176a8f5ead3a2.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v16{vertical-align:-38.850000px;}
.v9{vertical-align:-35.478000px;}
.v3{vertical-align:-14.616000px;}
.ve{vertical-align:-11.124000px;}
.v7{vertical-align:-8.970000px;}
.vd{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.656000px;}
.v10{vertical-align:3.558000px;}
.v19{vertical-align:5.310000px;}
.v11{vertical-align:9.198000px;}
.v6{vertical-align:14.778000px;}
.v1a{vertical-align:16.234818px;}
.vf{vertical-align:18.168000px;}
.v1{vertical-align:21.690000px;}
.v5{vertical-align:24.678000px;}
.v2{vertical-align:26.736000px;}
.v18{vertical-align:32.040000px;}
.va{vertical-align:36.036000px;}
.v14{vertical-align:40.440000px;}
.v12{vertical-align:42.846000px;}
.v17{vertical-align:44.376000px;}
.v8{vertical-align:48.414000px;}
.v13{vertical-align:102.450000px;}
.v15{vertical-align:127.680000px;}
.vc{vertical-align:131.844000px;}
.vb{vertical-align:134.928000px;}
.ls0{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.000305px;}
.lsd{letter-spacing:0.000312px;}
.ls2b{letter-spacing:0.000387px;}
.ls2d{letter-spacing:0.000532px;}
.ls2c{letter-spacing:0.000564px;}
.ls12{letter-spacing:0.000993px;}
.ls3a{letter-spacing:0.001406px;}
.ls45{letter-spacing:0.002015px;}
.ls56{letter-spacing:0.002222px;}
.ls66{letter-spacing:0.002338px;}
.ls2f{letter-spacing:0.002450px;}
.ls5b{letter-spacing:0.002789px;}
.ls3f{letter-spacing:0.002793px;}
.ls4d{letter-spacing:0.002823px;}
.ls9{letter-spacing:0.003269px;}
.ls40{letter-spacing:0.004797px;}
.lsf{letter-spacing:0.005369px;}
.ls5a{letter-spacing:0.006843px;}
.ls58{letter-spacing:0.666146px;}
.lsa{letter-spacing:1.806063px;}
.ls4{letter-spacing:1.812063px;}
.ls68{letter-spacing:2.478538px;}
.ls31{letter-spacing:2.982564px;}
.ls10{letter-spacing:2.983140px;}
.ls2a{letter-spacing:2.988564px;}
.ls13{letter-spacing:2.989140px;}
.lsb{letter-spacing:2.989409px;}
.ls65{letter-spacing:2.989444px;}
.ls5f{letter-spacing:2.995409px;}
.ls3b{letter-spacing:3.317134px;}
.ls4c{letter-spacing:3.323134px;}
.ls24{letter-spacing:3.422408px;}
.ls2{letter-spacing:4.276379px;}
.ls1e{letter-spacing:4.448338px;}
.ls1f{letter-spacing:5.402908px;}
.ls1b{letter-spacing:5.408908px;}
.ls2e{letter-spacing:5.975870px;}
.ls61{letter-spacing:5.977590px;}
.ls63{letter-spacing:5.983590px;}
.ls30{letter-spacing:7.739996px;}
.ls37{letter-spacing:8.068200px;}
.ls38{letter-spacing:8.076538px;}
.ls51{letter-spacing:9.962338px;}
.ls69{letter-spacing:11.289056px;}
.ls15{letter-spacing:13.278538px;}
.ls1d{letter-spacing:13.280338px;}
.ls3d{letter-spacing:13.284538px;}
.ls14{letter-spacing:13.287269px;}
.ls3c{letter-spacing:15.090063px;}
.ls44{letter-spacing:16.008538px;}
.ls1c{letter-spacing:16.272564px;}
.ls55{letter-spacing:16.602538px;}
.ls67{letter-spacing:17.052538px;}
.ls8{letter-spacing:17.147607px;}
.ls17{letter-spacing:17.749140px;}
.ls39{letter-spacing:18.106200px;}
.ls60{letter-spacing:18.414063px;}
.ls34{letter-spacing:18.468775px;}
.ls35{letter-spacing:18.716196px;}
.ls7{letter-spacing:18.954063px;}
.ls27{letter-spacing:19.591409px;}
.ls54{letter-spacing:19.598234px;}
.lse{letter-spacing:20.206274px;}
.ls41{letter-spacing:20.821557px;}
.ls11{letter-spacing:20.925269px;}
.ls57{letter-spacing:21.092282px;}
.ls22{letter-spacing:21.381269px;}
.ls29{letter-spacing:21.654300px;}
.ls48{letter-spacing:21.749870px;}
.ls59{letter-spacing:22.579590px;}
.ls4a{letter-spacing:22.583870px;}
.ls42{letter-spacing:23.424538px;}
.ls43{letter-spacing:23.426338px;}
.ls4b{letter-spacing:23.772538px;}
.ls36{letter-spacing:24.083870px;}
.ls53{letter-spacing:24.581920px;}
.ls3{letter-spacing:24.640982px;}
.ls26{letter-spacing:25.063409px;}
.ls1{letter-spacing:25.930379px;}
.lsc{letter-spacing:27.339269px;}
.ls1a{letter-spacing:28.172908px;}
.ls64{letter-spacing:28.717409px;}
.ls18{letter-spacing:29.445269px;}
.ls5d{letter-spacing:31.731269px;}
.ls47{letter-spacing:31.959199px;}
.ls5e{letter-spacing:33.051269px;}
.ls6{letter-spacing:33.203607px;}
.ls5{letter-spacing:33.207269px;}
.ls52{letter-spacing:33.226200px;}
.ls23{letter-spacing:35.402908px;}
.ls20{letter-spacing:36.405269px;}
.ls19{letter-spacing:37.562908px;}
.ls49{letter-spacing:39.355140px;}
.ls4e{letter-spacing:39.448211px;}
.ls50{letter-spacing:41.264823px;}
.ls25{letter-spacing:47.421269px;}
.ls28{letter-spacing:79.716146px;}
.ls3e{letter-spacing:105.628663px;}
.ls32{letter-spacing:143.952300px;}
.ls21{letter-spacing:251.316564px;}
.ls5c{letter-spacing:259.800710px;}
.ls16{letter-spacing:393.901140px;}
.ls46{letter-spacing:437.409269px;}
.ls62{letter-spacing:455.397269px;}
.ls4f{letter-spacing:552.788153px;}
.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;}
}
.wse0{word-spacing:-47.654765px;}
.wsd1{word-spacing:-47.324343px;}
.wse6{word-spacing:-45.327837px;}
.ws113{word-spacing:-43.157983px;}
.wsb6{word-spacing:-38.937826px;}
.wsec{word-spacing:-36.349200px;}
.ws178{word-spacing:-26.234381px;}
.ws105{word-spacing:-20.383480px;}
.ws10{word-spacing:-17.306945px;}
.ws6{word-spacing:-16.661364px;}
.wsb5{word-spacing:-16.605662px;}
.wsa0{word-spacing:-16.139412px;}
.ws15d{word-spacing:-16.079636px;}
.ws13{word-spacing:-16.069582px;}
.ws13c{word-spacing:-16.019861px;}
.ws20{word-spacing:-15.960085px;}
.ws68{word-spacing:-15.840534px;}
.wsee{word-spacing:-15.780758px;}
.ws4f{word-spacing:-15.720983px;}
.ws161{word-spacing:-15.601432px;}
.ws132{word-spacing:-15.481880px;}
.wscf{word-spacing:-15.422105px;}
.ws84{word-spacing:-15.183002px;}
.wsc4{word-spacing:-15.160761px;}
.wsc3{word-spacing:-15.129454px;}
.wsc5{word-spacing:-15.123227px;}
.ws115{word-spacing:-15.063451px;}
.ws4b{word-spacing:-14.943900px;}
.ws75{word-spacing:-14.884124px;}
.ws10a{word-spacing:-14.824349px;}
.wse5{word-spacing:-14.764573px;}
.ws8b{word-spacing:-14.645022px;}
.ws66{word-spacing:-14.585246px;}
.ws3c{word-spacing:-14.465695px;}
.wsdd{word-spacing:-14.415673px;}
.wsde{word-spacing:-14.412247px;}
.wsdf{word-spacing:-14.405920px;}
.ws134{word-spacing:-14.346144px;}
.wsfd{word-spacing:-14.166817px;}
.wsfe{word-spacing:-14.124247px;}
.wsda{word-spacing:-14.107042px;}
.ws8a{word-spacing:-14.047266px;}
.ws1a0{word-spacing:-14.040128px;}
.ws2d{word-spacing:-13.927715px;}
.wsfa{word-spacing:-13.867939px;}
.ws15f{word-spacing:-13.808164px;}
.ws3e{word-spacing:-13.688612px;}
.ws139{word-spacing:-13.643217px;}
.wsac{word-spacing:-13.628837px;}
.ws189{word-spacing:-13.595397px;}
.wse7{word-spacing:-13.531962px;}
.ws11a{word-spacing:-13.449510px;}
.ws1b1{word-spacing:-13.356294px;}
.wsd8{word-spacing:-13.329959px;}
.ws7e{word-spacing:-13.216385px;}
.ws19f{word-spacing:-13.212832px;}
.ws156{word-spacing:-13.210408px;}
.ws148{word-spacing:-13.150632px;}
.ws74{word-spacing:-13.090856px;}
.ws19a{word-spacing:-13.035896px;}
.ws11b{word-spacing:-12.977283px;}
.ws61{word-spacing:-12.971305px;}
.ws1b7{word-spacing:-12.878088px;}
.ws136{word-spacing:-12.851754px;}
.ws44{word-spacing:-12.791978px;}
.wsb3{word-spacing:-12.732203px;}
.ws10e{word-spacing:-12.612652px;}
.ws7f{word-spacing:-12.552876px;}
.wsf2{word-spacing:-12.373549px;}
.ws1ba{word-spacing:-12.352061px;}
.ws11c{word-spacing:-12.313774px;}
.wsc{word-spacing:-12.249896px;}
.ws69{word-spacing:-12.194222px;}
.ws12a{word-spacing:-12.134447px;}
.ws128{word-spacing:-11.955120px;}
.ws162{word-spacing:-11.835569px;}
.ws3{word-spacing:-11.819508px;}
.wse2{word-spacing:-11.790272px;}
.wse1{word-spacing:-11.784247px;}
.wse3{word-spacing:-11.775793px;}
.ws119{word-spacing:-11.716018px;}
.ws18{word-spacing:-11.658113px;}
.ws23{word-spacing:-11.656242px;}
.ws184{word-spacing:-11.601278px;}
.wsa4{word-spacing:-11.536691px;}
.ws8d{word-spacing:-11.476915px;}
.ws8f{word-spacing:-11.417140px;}
.ws1be{word-spacing:-11.362175px;}
.ws159{word-spacing:-11.357364px;}
.ws37{word-spacing:-11.347828px;}
.wsab{word-spacing:-11.237813px;}
.ws4{word-spacing:-11.227726px;}
.ws7a{word-spacing:-11.178037px;}
.ws11{word-spacing:-11.173928px;}
.ws38{word-spacing:-11.118262px;}
.ws109{word-spacing:-11.058486px;}
.ws67{word-spacing:-10.998710px;}
.ws62{word-spacing:-10.938935px;}
.ws1af{word-spacing:-10.883969px;}
.ws87{word-spacing:-10.879159px;}
.ws103{word-spacing:-10.821802px;}
.ws114{word-spacing:-10.819384px;}
.ws32{word-spacing:-10.773981px;}
.ws1a1{word-spacing:-10.726161px;}
.ws5f{word-spacing:-10.699832px;}
.ws76{word-spacing:-10.640057px;}
.ws195{word-spacing:-10.630519px;}
.ws1b9{word-spacing:-10.597045px;}
.wsd{word-spacing:-10.582145px;}
.wsad{word-spacing:-10.580281px;}
.ws8{word-spacing:-10.528347px;}
.wsf8{word-spacing:-10.400954px;}
.ws93{word-spacing:-10.341179px;}
.ws6e{word-spacing:-10.281403px;}
.ws182{word-spacing:-10.200134px;}
.ws81{word-spacing:-10.161852px;}
.ws8e{word-spacing:-10.102076px;}
.ws7d{word-spacing:-10.042301px;}
.ws1ae{word-spacing:-10.008852px;}
.wsae{word-spacing:-9.982525px;}
.ws110{word-spacing:-9.922750px;}
.wsbb{word-spacing:-9.862974px;}
.wsba{word-spacing:-9.856542px;}
.wsff{word-spacing:-9.803198px;}
.ws1b8{word-spacing:-9.769749px;}
.wsc8{word-spacing:-9.743423px;}
.wsc0{word-spacing:-9.683647px;}
.wsaf{word-spacing:-9.629849px;}
.wsdb{word-spacing:-9.623872px;}
.ws1ad{word-spacing:-9.578466px;}
.ws127{word-spacing:-9.564096px;}
.ws55{word-spacing:-9.504320px;}
.ws190{word-spacing:-9.497171px;}
.wsa5{word-spacing:-9.444545px;}
.wsfc{word-spacing:-9.384769px;}
.ws140{word-spacing:-9.324994px;}
.ws107{word-spacing:-9.265218px;}
.ws16{word-spacing:-9.237185px;}
.ws22{word-spacing:-9.205442px;}
.ws5d{word-spacing:-9.145667px;}
.wse8{word-spacing:-9.085891px;}
.ws4a{word-spacing:-9.026116px;}
.ws5e{word-spacing:-8.966340px;}
.ws31{word-spacing:-8.956798px;}
.ws2c{word-spacing:-8.906564px;}
.ws196{word-spacing:-8.875503px;}
.ws1b6{word-spacing:-8.861157px;}
.ws83{word-spacing:-8.846789px;}
.ws183{word-spacing:-8.813337px;}
.ws28{word-spacing:-8.787013px;}
.ws163{word-spacing:-8.717695px;}
.wsb7{word-spacing:-8.685673px;}
.ws30{word-spacing:-8.669875px;}
.wsb9{word-spacing:-8.667462px;}
.ws11e{word-spacing:-8.607686px;}
.wsf9{word-spacing:-8.547911px;}
.ws177{word-spacing:-8.540759px;}
.wsd4{word-spacing:-8.488135px;}
.ws92{word-spacing:-8.428360px;}
.ws172{word-spacing:-8.382951px;}
.ws10b{word-spacing:-8.368584px;}
.ws5{word-spacing:-8.322612px;}
.ws5c{word-spacing:-8.308808px;}
.ws108{word-spacing:-8.296331px;}
.ws1a4{word-spacing:-8.287310px;}
.wsb2{word-spacing:-8.249033px;}
.wsb1{word-spacing:-8.238247px;}
.wsb0{word-spacing:-8.236535px;}
.ws1bd{word-spacing:-8.206015px;}
.ws88{word-spacing:-8.135459px;}
.ws56{word-spacing:-8.129482px;}
.ws175{word-spacing:-8.096028px;}
.wsc9{word-spacing:-8.069706px;}
.ws64{word-spacing:-7.890379px;}
.wsd9{word-spacing:-7.830604px;}
.ws176{word-spacing:-7.729777px;}
.ws17a{word-spacing:-7.713463px;}
.ws18b{word-spacing:-7.679988px;}
.ws3b{word-spacing:-7.651277px;}
.ws135{word-spacing:-7.591501px;}
.ws1b2{word-spacing:-7.584347px;}
.ws89{word-spacing:-7.471950px;}
.ws4c{word-spacing:-7.412174px;}
.ws1bc{word-spacing:-7.378719px;}
.ws138{word-spacing:-7.302637px;}
.ws14{word-spacing:-7.246644px;}
.wse4{word-spacing:-7.173072px;}
.ws170{word-spacing:-7.139616px;}
.wscd{word-spacing:-7.134247px;}
.wsce{word-spacing:-7.113296px;}
.ws17c{word-spacing:-7.106141px;}
.ws180{word-spacing:-7.010500px;}
.ws1f{word-spacing:-6.993745px;}
.ws9d{word-spacing:-6.939947px;}
.ws129{word-spacing:-6.933970px;}
.ws18a{word-spacing:-6.900513px;}
.wsf1{word-spacing:-6.874194px;}
.ws18c{word-spacing:-6.852692px;}
.ws1b5{word-spacing:-6.771397px;}
.ws9f{word-spacing:-6.694867px;}
.ws91{word-spacing:-6.635092px;}
.ws125{word-spacing:-6.575316px;}
.ws7{word-spacing:-6.547265px;}
.ws14b{word-spacing:-6.515540px;}
.ws94{word-spacing:-6.455765px;}
.ws45{word-spacing:-6.395989px;}
.ws191{word-spacing:-6.374486px;}
.ws4d{word-spacing:-6.336214px;}
.ws188{word-spacing:-6.278845px;}
.ws9e{word-spacing:-6.276438px;}
.ws17b{word-spacing:-6.231024px;}
.ws11d{word-spacing:-6.216662px;}
.ws181{word-spacing:-6.183204px;}
.ws133{word-spacing:-6.097111px;}
.ws19e{word-spacing:-6.087562px;}
.wsef{word-spacing:-6.037336px;}
.ws73{word-spacing:-5.977560px;}
.ws1b4{word-spacing:-5.965444px;}
.ws4e{word-spacing:-5.917784px;}
.ws13e{word-spacing:-5.858009px;}
.ws9b{word-spacing:-5.798233px;}
.wsaa{word-spacing:-5.678682px;}
.ws80{word-spacing:-5.618906px;}
.ws1ab{word-spacing:-5.561536px;}
.ws85{word-spacing:-5.559131px;}
.ws24{word-spacing:-5.499355px;}
.ws179{word-spacing:-5.418074px;}
.ws6d{word-spacing:-5.320028px;}
.wsd3{word-spacing:-5.316247px;}
.ws102{word-spacing:-5.291630px;}
.ws1bb{word-spacing:-5.274612px;}
.wse9{word-spacing:-5.260253px;}
.wsa2{word-spacing:-5.140702px;}
.ws118{word-spacing:-5.021150px;}
.ws111{word-spacing:-4.961375px;}
.ws112{word-spacing:-4.901599px;}
.ws1a3{word-spacing:-4.858573px;}
.ws46{word-spacing:-4.841824px;}
.wsf{word-spacing:-4.825716px;}
.ws21{word-spacing:-4.722272px;}
.ws70{word-spacing:-4.662497px;}
.ws1b{word-spacing:-4.602721px;}
.wsbe{word-spacing:-4.483170px;}
.wsf0{word-spacing:-4.423394px;}
.ws13b{word-spacing:-4.366021px;}
.wsd2{word-spacing:-4.365673px;}
.ws3a{word-spacing:-4.363619px;}
.ws126{word-spacing:-4.303843px;}
.ws54{word-spacing:-4.244068px;}
.ws1aa{word-spacing:-4.236905px;}
.ws6b{word-spacing:-4.184292px;}
.ws13a{word-spacing:-4.174738px;}
.ws1a2{word-spacing:-4.020157px;}
.ws145{word-spacing:-4.004965px;}
.ws33{word-spacing:-3.983456px;}
.ws15a{word-spacing:-3.885414px;}
.ws12b{word-spacing:-3.825638px;}
.ws79{word-spacing:-3.765863px;}
.ws40{word-spacing:-3.706087px;}
.ws147{word-spacing:-3.646312px;}
.ws124{word-spacing:-3.526760px;}
.ws12e{word-spacing:-3.466985px;}
.wsc1{word-spacing:-3.407209px;}
.wscc{word-spacing:-3.347434px;}
.wsf4{word-spacing:-3.335478px;}
.ws96{word-spacing:-3.233860px;}
.wsed{word-spacing:-3.168107px;}
.ws14c{word-spacing:-3.108331px;}
.ws117{word-spacing:-2.988780px;}
.ws116{word-spacing:-2.929004px;}
.ws25{word-spacing:-2.869229px;}
.ws149{word-spacing:-2.809453px;}
.ws36{word-spacing:-2.787941px;}
.wsa9{word-spacing:-2.749678px;}
.ws155{word-spacing:-2.630126px;}
.ws192{word-spacing:-2.596659px;}
.ws97{word-spacing:-2.570351px;}
.ws194{word-spacing:-2.515364px;}
.ws121{word-spacing:-2.510575px;}
.wsbd{word-spacing:-2.450800px;}
.wsf3{word-spacing:-2.391024px;}
.ws12d{word-spacing:-2.271473px;}
.ws14d{word-spacing:-2.211697px;}
.wsb{word-spacing:-2.189595px;}
.ws171{word-spacing:-2.166273px;}
.ws12c{word-spacing:-2.032370px;}
.ws9{word-spacing:-1.974401px;}
.ws47{word-spacing:-1.972595px;}
.ws3f{word-spacing:-1.912819px;}
.ws43{word-spacing:-1.853044px;}
.ws58{word-spacing:-1.793268px;}
.ws193{word-spacing:-1.688067px;}
.ws51{word-spacing:-1.673717px;}
.ws86{word-spacing:-1.613941px;}
.ws77{word-spacing:-1.554166px;}
.ws29{word-spacing:-1.494390px;}
.wsbf{word-spacing:-1.374839px;}
.ws42{word-spacing:-1.315063px;}
.ws35{word-spacing:-1.257682px;}
.wsa7{word-spacing:-1.195512px;}
.ws1a9{word-spacing:-1.176387px;}
.ws143{word-spacing:-1.135736px;}
.wsfb{word-spacing:-1.075961px;}
.ws185{word-spacing:-1.018579px;}
.ws82{word-spacing:-1.016185px;}
.ws17{word-spacing:-0.898433px;}
.ws142{word-spacing:-0.896634px;}
.ws53{word-spacing:-0.836858px;}
.ws98{word-spacing:-0.657532px;}
.wsea{word-spacing:-0.592923px;}
.ws1c{word-spacing:-0.537980px;}
.ws90{word-spacing:-0.478205px;}
.wsc7{word-spacing:-0.418429px;}
.ws1a8{word-spacing:-0.396911px;}
.ws144{word-spacing:-0.358654px;}
.ws1b0{word-spacing:-0.349090px;}
.wse{word-spacing:-0.252852px;}
.ws65{word-spacing:-0.239102px;}
.ws72{word-spacing:-0.119551px;}
.wsb4{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053798px;}
.wsdc{word-spacing:-0.041843px;}
.wsd0{word-spacing:-0.015471px;}
.ws130{word-spacing:-0.005978px;}
.ws52{word-spacing:0.000000px;}
.wsc2{word-spacing:0.011955px;}
.ws13f{word-spacing:0.059776px;}
.wsd6{word-spacing:0.075405px;}
.wsd5{word-spacing:0.095753px;}
.ws7c{word-spacing:0.119551px;}
.ws1ac{word-spacing:0.176936px;}
.ws12{word-spacing:0.338930px;}
.ws173{word-spacing:0.368219px;}
.ws50{word-spacing:0.418429px;}
.ws15b{word-spacing:0.446938px;}
.ws7b{word-spacing:0.657532px;}
.ws12f{word-spacing:0.717307px;}
.ws9c{word-spacing:0.777083px;}
.ws1b3{word-spacing:0.894245px;}
.ws1d{word-spacing:0.896634px;}
.ws49{word-spacing:0.956410px;}
.ws157{word-spacing:1.075961px;}
.ws1a5{word-spacing:1.085528px;}
.ws19d{word-spacing:1.166823px;}
.ws19c{word-spacing:1.214643px;}
.wsbc{word-spacing:1.255288px;}
.ws146{word-spacing:1.374839px;}
.ws15{word-spacing:1.414898px;}
.ws2a{word-spacing:1.554166px;}
.ws17f{word-spacing:1.597208px;}
.ws14a{word-spacing:1.613941px;}
.ws1a7{word-spacing:1.755016px;}
.ws10c{word-spacing:1.832327px;}
.ws10d{word-spacing:1.853044px;}
.ws95{word-spacing:1.912819px;}
.ws160{word-spacing:1.972595px;}
.wsf5{word-spacing:2.032370px;}
.ws19b{word-spacing:2.041940px;}
.wsf6{word-spacing:2.092146px;}
.ws1e{word-spacing:2.151922px;}
.wsca{word-spacing:2.263677px;}
.wscb{word-spacing:2.271473px;}
.ws6a{word-spacing:2.391024px;}
.ws17e{word-spacing:2.424504px;}
.wsf7{word-spacing:2.510575px;}
.ws6c{word-spacing:2.570351px;}
.ws8c{word-spacing:2.689902px;}
.ws63{word-spacing:2.749678px;}
.ws60{word-spacing:2.809453px;}
.ws187{word-spacing:2.840544px;}
.ws11f{word-spacing:2.929004px;}
.ws48{word-spacing:2.988780px;}
.ws123{word-spacing:3.048556px;}
.ws199{word-spacing:3.079647px;}
.ws13d{word-spacing:3.108331px;}
.ws39{word-spacing:3.168107px;}
.ws104{word-spacing:3.287658px;}
.ws106{word-spacing:3.347434px;}
.ws71{word-spacing:3.526760px;}
.ws186{word-spacing:3.620019px;}
.ws3d{word-spacing:3.646312px;}
.wsc6{word-spacing:3.707753px;}
.ws197{word-spacing:3.715661px;}
.ws198{word-spacing:3.906943px;}
.ws17d{word-spacing:3.954764px;}
.wsa6{word-spacing:4.004965px;}
.ws6f{word-spacing:4.064741px;}
.ws158{word-spacing:4.184292px;}
.wsa{word-spacing:4.427608px;}
.ws122{word-spacing:4.483170px;}
.ws18d{word-spacing:4.576431px;}
.wsb8{word-spacing:4.609077px;}
.ws18f{word-spacing:4.609906px;}
.ws120{word-spacing:5.379804px;}
.ws18e{word-spacing:5.437202px;}
.ws27{word-spacing:5.678682px;}
.ws141{word-spacing:5.798233px;}
.ws174{word-spacing:5.867588px;}
.wsa1{word-spacing:5.917784px;}
.ws59{word-spacing:5.977560px;}
.ws5b{word-spacing:6.037336px;}
.ws1a{word-spacing:6.336214px;}
.ws57{word-spacing:6.455765px;}
.ws100{word-spacing:6.479753px;}
.ws2b{word-spacing:6.635092px;}
.ws41{word-spacing:6.694867px;}
.wseb{word-spacing:6.823077px;}
.ws131{word-spacing:6.933970px;}
.wsa3{word-spacing:7.053521px;}
.ws10f{word-spacing:7.232848px;}
.ws15e{word-spacing:7.471950px;}
.ws2f{word-spacing:7.684770px;}
.wsa8{word-spacing:7.711052px;}
.ws99{word-spacing:8.009930px;}
.ws150{word-spacing:8.377138px;}
.ws5a{word-spacing:8.547911px;}
.ws26{word-spacing:8.607686px;}
.ws9a{word-spacing:9.145667px;}
.ws15c{word-spacing:9.404938px;}
.ws14e{word-spacing:11.081731px;}
.ws14f{word-spacing:11.087731px;}
.ws16b{word-spacing:11.231840px;}
.ws167{word-spacing:11.234925px;}
.ws151{word-spacing:13.039138px;}
.wsd7{word-spacing:17.514251px;}
.ws1a6{word-spacing:17.966199px;}
.ws152{word-spacing:18.028366px;}
.ws2e{word-spacing:20.118126px;}
.ws78{word-spacing:22.535401px;}
.ws1{word-spacing:22.947937px;}
.ws16d{word-spacing:27.248886px;}
.ws19{word-spacing:32.996131px;}
.ws0{word-spacing:35.769809px;}
.ws101{word-spacing:41.877794px;}
.ws153{word-spacing:46.323815px;}
.ws137{word-spacing:58.162793px;}
.ws166{word-spacing:59.050211px;}
.ws165{word-spacing:61.530766px;}
.ws16c{word-spacing:71.678925px;}
.ws16e{word-spacing:80.409105px;}
.ws168{word-spacing:84.380925px;}
.ws16a{word-spacing:86.278412px;}
.ws169{word-spacing:98.980412px;}
.ws154{word-spacing:158.319660px;}
.ws16f{word-spacing:222.391575px;}
.ws164{word-spacing:309.446281px;}
.ws34{word-spacing:653.714887px;}
._12{margin-left:-90.566817px;}
._13{margin-left:-79.336380px;}
._10{margin-left:-19.923207px;}
._5{margin-left:-6.533467px;}
._6{margin-left:-4.961375px;}
._0{margin-left:-2.964877px;}
._1{margin-left:-1.775342px;}
._2{width:1.775342px;}
._3{width:2.908122px;}
._e{width:4.161178px;}
._14{width:8.791042px;}
._4{width:10.598285px;}
._8{width:18.123977px;}
._f{width:20.738829px;}
._2d{width:22.339816px;}
._17{width:23.981986px;}
._c{width:27.761591px;}
._b{width:30.545332px;}
._a{width:33.014057px;}
._d{width:37.464401px;}
._29{width:41.937305px;}
._15{width:46.312399px;}
._28{width:51.351205px;}
._11{width:58.005210px;}
._16{width:66.559950px;}
._27{width:71.730900px;}
._2c{width:73.022056px;}
._25{width:85.156521px;}
._2b{width:89.988570px;}
._21{width:91.719911px;}
._7{width:96.645433px;}
._22{width:99.036463px;}
._26{width:101.128313px;}
._2a{width:104.060376px;}
._24{width:117.175108px;}
._1f{width:127.497457px;}
._23{width:141.453335px;}
._1c{width:183.678925px;}
._1a{width:197.020872px;}
._1e{width:278.286571px;}
._20{width:324.503135px;}
._1b{width:355.501296px;}
._1d{width:380.880886px;}
._18{width:400.741552px;}
._19{width:521.424432px;}
._9{width:529.344000px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:17.010000px;}
.fsa{font-size:17.512320px;}
.fs8{font-size:19.034640px;}
.fs9{font-size:26.268480px;}
.fs7{font-size:29.887800px;}
.fs6{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y1d6{bottom:3.396048px;}
.y11e{bottom:3.800267px;}
.y1cd{bottom:8.150626px;}
.y115{bottom:9.120766px;}
.y1ce{bottom:11.546673px;}
.y1d8{bottom:11.576157px;}
.y116{bottom:12.921032px;}
.y11f{bottom:12.954025px;}
.y170{bottom:20.576976px;}
.y1cf{bottom:25.426407px;}
.y174{bottom:25.867229px;}
.y1e0{bottom:27.729845px;}
.y117{bottom:28.452822px;}
.y171{bottom:31.385361px;}
.y121{bottom:34.665412px;}
.y173{bottom:36.128354px;}
.y1d0{bottom:39.305929px;}
.y1e1{bottom:43.912804px;}
.y118{bottom:43.984375px;}
.y1d1{bottom:53.156322px;}
.y59{bottom:54.600000px;}
.y122{bottom:56.376719px;}
.y1d7{bottom:57.143041px;}
.y119{bottom:59.483331px;}
.y1e2{bottom:60.096048px;}
.y120{bottom:63.812125px;}
.y125{bottom:63.944574px;}
.y1d2{bottom:67.035773px;}
.y11a{bottom:75.014804px;}
.y1e3{bottom:76.279291px;}
.y123{bottom:78.121416px;}
.y1d3{bottom:80.886166px;}
.y110{bottom:84.732000px;}
.y1c2{bottom:85.111500px;}
.y172{bottom:88.802238px;}
.y1dc{bottom:89.804367px;}
.y1e7{bottom:90.365697px;}
.y11b{bottom:90.513759px;}
.y36{bottom:90.709500px;}
.y1e4{bottom:92.462179px;}
.y12a{bottom:92.926003px;}
.y1df{bottom:93.318704px;}
.ydb{bottom:94.237500px;}
.y1d4{bottom:94.765617px;}
.y10f{bottom:94.983000px;}
.y1db{bottom:96.478666px;}
.y1e6{bottom:97.039641px;}
.y1de{bottom:98.545735px;}
.y129{bottom:98.742276px;}
.y124{bottom:99.832802px;}
.y175{bottom:100.795879px;}
.y1c1{bottom:103.044000px;}
.y1da{bottom:103.182023px;}
.y1e5{bottom:103.743353px;}
.y1dd{bottom:103.802179px;}
.y35{bottom:104.158500px;}
.y21a{bottom:104.160000px;}
.y128{bottom:104.558151px;}
.y111{bottom:105.093000px;}
.y11c{bottom:106.045232px;}
.ydc{bottom:107.328000px;}
.y1d5{bottom:108.616009px;}
.y56{bottom:108.642000px;}
.y1d9{bottom:108.674907px;}
.y127{bottom:110.407337px;}
.yd8{bottom:111.870000px;}
.y112{bottom:112.098000px;}
.y249{bottom:115.027500px;}
.y126{bottom:116.223610px;}
.y34{bottom:117.609000px;}
.y1c0{bottom:120.976500px;}
.y11d{bottom:121.544188px;}
.yda{bottom:126.066000px;}
.y55{bottom:126.574500px;}
.y248{bottom:128.476500px;}
.yd9{bottom:130.807500px;}
.y33{bottom:131.058000px;}
.y219{bottom:131.059500px;}
.y16b{bottom:131.168919px;}
.y10e{bottom:135.549000px;}
.y16e{bottom:136.459281px;}
.y1bf{bottom:138.909000px;}
.y247{bottom:141.925500px;}
.y78{bottom:144.507000px;}
.y32{bottom:144.508500px;}
.y218{bottom:144.607500px;}
.yd6{bottom:145.426500px;}
.y16d{bottom:146.446776px;}
.yd4{bottom:150.397500px;}
.y10d{bottom:153.481500px;}
.y246{bottom:155.376000px;}
.y1be{bottom:156.843000px;}
.y31{bottom:157.957500px;}
.y217{bottom:158.058000px;}
.yd7{bottom:158.517000px;}
.ya3{bottom:162.439500px;}
.y54{bottom:162.441000px;}
.yd3{bottom:163.059000px;}
.y16c{bottom:164.460933px;}
.y245{bottom:168.825000px;}
.y30{bottom:171.406500px;}
.y10c{bottom:171.414000px;}
.y216{bottom:171.507000px;}
.y1bd{bottom:174.775500px;}
.yd5{bottom:177.255000px;}
.y53{bottom:180.373500px;}
.y244{bottom:182.275500px;}
.y151{bottom:184.722000px;}
.y215{bottom:184.956000px;}
.ya2{bottom:186.064500px;}
.y10b{bottom:189.346500px;}
.y1bc{bottom:192.708000px;}
.y243{bottom:195.724500px;}
.y52{bottom:198.306000px;}
.y214{bottom:198.505500px;}
.y2f{bottom:203.784000px;}
.yd2{bottom:206.242500px;}
.y10a{bottom:207.279000px;}
.y16f{bottom:209.108046px;}
.y242{bottom:209.173500px;}
.y1bb{bottom:210.640500px;}
.y150{bottom:211.407000px;}
.y213{bottom:211.954500px;}
.ya1{bottom:215.328000px;}
.y51{bottom:216.238500px;}
.y2e{bottom:221.716500px;}
.y241{bottom:222.624000px;}
.yd1{bottom:224.176500px;}
.y109{bottom:225.213000px;}
.y212{bottom:225.405000px;}
.y1ba{bottom:228.573000px;}
.y14f{bottom:229.341000px;}
.ya0{bottom:233.260500px;}
.y50{bottom:234.171000px;}
.y240{bottom:236.073000px;}
.y108{bottom:238.603500px;}
.y211{bottom:238.854000px;}
.y2d{bottom:239.650500px;}
.yd0{bottom:242.109000px;}
.y107{bottom:243.145500px;}
.y1b9{bottom:246.505500px;}
.y14e{bottom:247.273500px;}
.y23f{bottom:249.522000px;}
.y9f{bottom:251.193000px;}
.y169{bottom:252.103500px;}
.y4f{bottom:252.105000px;}
.y210{bottom:252.403500px;}
.y2c{bottom:257.583000px;}
.y77{bottom:258.174000px;}
.ycf{bottom:260.041500px;}
.y106{bottom:261.078000px;}
.y23e{bottom:262.972500px;}
.y1b8{bottom:264.439500px;}
.y14d{bottom:265.206000px;}
.y20f{bottom:265.852500px;}
.y9e{bottom:269.125500px;}
.y168{bottom:270.036000px;}
.y4e{bottom:270.037500px;}
.y2b{bottom:275.515500px;}
.y23d{bottom:276.421500px;}
.yce{bottom:277.974000px;}
.y105{bottom:279.010500px;}
.y20e{bottom:279.303000px;}
.y1b7{bottom:282.372000px;}
.y9d{bottom:287.058000px;}
.y14c{bottom:287.487000px;}
.y4d{bottom:287.970000px;}
.y23c{bottom:289.872000px;}
.y20d{bottom:292.851000px;}
.y2a{bottom:293.448000px;}
.ycd{bottom:295.906500px;}
.y104{bottom:296.943000px;}
.y1b6{bottom:300.304500px;}
.y23b{bottom:303.321000px;}
.y9c{bottom:304.990500px;}
.y4c{bottom:305.902500px;}
.y20c{bottom:306.301500px;}
.y194{bottom:311.299500px;}
.y29{bottom:311.380500px;}
.ycc{bottom:313.839000px;}
.y14b{bottom:314.173500px;}
.y103{bottom:314.875500px;}
.y23a{bottom:316.770000px;}
.y1b5{bottom:318.237000px;}
.y20b{bottom:319.750500px;}
.y9b{bottom:322.924500px;}
.y4b{bottom:323.835000px;}
.y28{bottom:329.313000px;}
.y239{bottom:330.220500px;}
.y14a{bottom:332.106000px;}
.y102{bottom:332.809500px;}
.y20a{bottom:333.300000px;}
.y1b4{bottom:336.169500px;}
.ycb{bottom:337.230000px;}
.y9a{bottom:340.857000px;}
.y193{bottom:341.035500px;}
.y76{bottom:341.767500px;}
.y4a{bottom:341.769000px;}
.y238{bottom:343.669500px;}
.y209{bottom:346.749000px;}
.y27{bottom:347.247000px;}
.y149{bottom:350.038500px;}
.y101{bottom:350.742000px;}
.y1b3{bottom:354.103500px;}
.y237{bottom:357.118500px;}
.y99{bottom:358.789500px;}
.y192{bottom:358.968000px;}
.y167{bottom:359.700000px;}
.y49{bottom:359.701500px;}
.y208{bottom:360.298500px;}
.y26{bottom:365.179500px;}
.yca{bottom:367.113000px;}
.y148{bottom:367.971000px;}
.y100{bottom:368.674500px;}
.y236{bottom:370.569000px;}
.y207{bottom:373.747500px;}
.y98{bottom:376.722000px;}
.y191{bottom:376.900500px;}
.y48{bottom:377.634000px;}
.yc9{bottom:381.351000px;}
.y25{bottom:383.112000px;}
.y235{bottom:384.018000px;}
.yc8{bottom:385.045500px;}
.y147{bottom:385.903500px;}
.y1b2{bottom:385.938000px;}
.y206{bottom:387.196500px;}
.y97{bottom:394.654500px;}
.y190{bottom:394.833000px;}
.yff{bottom:395.266500px;}
.y47{bottom:395.566500px;}
.y234{bottom:397.467000px;}
.y205{bottom:400.746000px;}
.y24{bottom:401.044500px;}
.yc7{bottom:403.296000px;}
.y146{bottom:403.837500px;}
.y233{bottom:410.917500px;}
.y18f{bottom:412.765500px;}
.y96{bottom:412.891500px;}
.y46{bottom:413.499000px;}
.y204{bottom:414.195000px;}
.y23{bottom:418.977000px;}
.y145{bottom:421.770000px;}
.y232{bottom:424.366500px;}
.y1b1{bottom:426.808500px;}
.y203{bottom:427.645500px;}
.yfe{bottom:428.724000px;}
.yc4{bottom:428.872500px;}
.y18e{bottom:430.699500px;}
.y95{bottom:430.824000px;}
.y45{bottom:431.431500px;}
.yc6{bottom:432.565500px;}
.yc3{bottom:432.567000px;}
.y22{bottom:436.911000px;}
.y166{bottom:437.773500px;}
.y231{bottom:437.817000px;}
.y144{bottom:439.702500px;}
.y202{bottom:441.193500px;}
.yc5{bottom:441.435000px;}
.y1b0{bottom:444.741000px;}
.yfd{bottom:446.656500px;}
.y18d{bottom:448.632000px;}
.y94{bottom:448.756500px;}
.y75{bottom:449.364000px;}
.y44{bottom:449.365500px;}
.y230{bottom:451.266000px;}
.y201{bottom:454.644000px;}
.y21{bottom:454.843500px;}
.y165{bottom:455.706000px;}
.y143{bottom:457.635000px;}
.y1af{bottom:462.675000px;}
.yc2{bottom:463.081500px;}
.yfc{bottom:464.590500px;}
.y22f{bottom:464.715000px;}
.y18c{bottom:466.564500px;}
.y93{bottom:466.689000px;}
.y43{bottom:467.298000px;}
.y200{bottom:468.093000px;}
.y20{bottom:472.776000px;}
.y164{bottom:473.638500px;}
.y142{bottom:475.567500px;}
.y22e{bottom:478.165500px;}
.y1ae{bottom:480.607500px;}
.yc1{bottom:481.014000px;}
.y1ff{bottom:481.543500px;}
.yfb{bottom:482.523000px;}
.y18b{bottom:484.497000px;}
.y92{bottom:484.623000px;}
.y42{bottom:485.230500px;}
.y1f{bottom:490.708500px;}
.y163{bottom:491.572500px;}
.y22d{bottom:491.614500px;}
.y141{bottom:493.501500px;}
.y1fe{bottom:495.091500px;}
.y1ad{bottom:498.540000px;}
.yc0{bottom:498.946500px;}
.yfa{bottom:500.455500px;}
.y18a{bottom:502.429500px;}
.y91{bottom:502.555500px;}
.y41{bottom:503.163000px;}
.y22c{bottom:505.063500px;}
.y1fd{bottom:508.542000px;}
.y1e{bottom:508.641000px;}
.y162{bottom:509.505000px;}
.y140{bottom:511.434000px;}
.ybf{bottom:512.989500px;}
.y1ac{bottom:516.472500px;}
.ybe{bottom:516.879000px;}
.yf9{bottom:518.388000px;}
.y22b{bottom:518.514000px;}
.y189{bottom:520.362000px;}
.y90{bottom:520.488000px;}
.y40{bottom:521.095500px;}
.y1fc{bottom:521.991000px;}
.y1d{bottom:526.573500px;}
.y161{bottom:527.437500px;}
.y13f{bottom:529.366500px;}
.ybd{bottom:530.922000px;}
.y22a{bottom:531.963000px;}
.y1ab{bottom:534.405000px;}
.ybc{bottom:534.813000px;}
.y1fb{bottom:535.440000px;}
.yf8{bottom:536.320500px;}
.y188{bottom:538.296000px;}
.y8f{bottom:538.420500px;}
.y3f{bottom:539.028000px;}
.y1c{bottom:544.507500px;}
.y160{bottom:545.370000px;}
.y229{bottom:545.413500px;}
.y1fa{bottom:548.989500px;}
.ybb{bottom:549.051000px;}
.y13e{bottom:551.647500px;}
.y1aa{bottom:552.339000px;}
.yba{bottom:552.745500px;}
.y187{bottom:556.228500px;}
.y8e{bottom:556.353000px;}
.y74{bottom:556.960500px;}
.y3e{bottom:556.962000px;}
.y228{bottom:558.862500px;}
.y1f9{bottom:562.438500px;}
.y15f{bottom:563.302500px;}
.yf7{bottom:567.534000px;}
.y1a9{bottom:570.271500px;}
.yb9{bottom:570.678000px;}
.y1b{bottom:571.192500px;}
.y227{bottom:572.311500px;}
.y186{bottom:574.161000px;}
.y8d{bottom:574.285500px;}
.y3d{bottom:574.894500px;}
.y1f8{bottom:575.889000px;}
.y13d{bottom:578.821500px;}
.y15e{bottom:581.235000px;}
.y226{bottom:585.762000px;}
.y1a8{bottom:588.204000px;}
.yb8{bottom:588.610500px;}
.y1f7{bottom:589.338000px;}
.y185{bottom:592.093500px;}
.y8c{bottom:592.522500px;}
.y73{bottom:592.827000px;}
.y13c{bottom:596.755500px;}
.yf6{bottom:598.747500px;}
.y15d{bottom:599.169000px;}
.y225{bottom:599.211000px;}
.y3c{bottom:602.161500px;}
.y1f6{bottom:602.887500px;}
.y1a{bottom:604.782000px;}
.y1a7{bottom:606.136500px;}
.yb7{bottom:606.543000px;}
.y184{bottom:610.026000px;}
.y8b{bottom:610.455000px;}
.y72{bottom:610.759500px;}
.y224{bottom:612.660000px;}
.y13b{bottom:614.688000px;}
.y3b{bottom:615.610500px;}
.y1f5{bottom:616.336500px;}
.yf5{bottom:616.680000px;}
.y15c{bottom:617.101500px;}
.y19{bottom:619.726500px;}
.yb6{bottom:620.586000px;}
.y1a6{bottom:624.069000px;}
.yb5{bottom:624.475500px;}
.y223{bottom:626.110500px;}
.y183{bottom:627.960000px;}
.y8a{bottom:628.387500px;}
.y71{bottom:628.692000px;}
.y3a{bottom:629.061000px;}
.y1f4{bottom:629.787000px;}
.y13a{bottom:632.620500px;}
.yf4{bottom:634.612500px;}
.y18{bottom:634.669500px;}
.y15b{bottom:635.034000px;}
.y222{bottom:639.559500px;}
.y1a5{bottom:642.001500px;}
.y39{bottom:642.510000px;}
.y1f3{bottom:643.335000px;}
.y182{bottom:645.892500px;}
.y89{bottom:646.321500px;}
.y70{bottom:646.624500px;}
.y17{bottom:649.614000px;}
.yb4{bottom:650.052000px;}
.y139{bottom:650.553000px;}
.yf3{bottom:652.545000px;}
.y15a{bottom:652.966500px;}
.y221{bottom:653.010000px;}
.yb3{bottom:653.746500px;}
.y1f2{bottom:656.785500px;}
.y1a4{bottom:659.935500px;}
.y181{bottom:663.825000px;}
.y88{bottom:664.254000px;}
.y6f{bottom:664.557000px;}
.y16{bottom:664.558500px;}
.y220{bottom:666.459000px;}
.y138{bottom:668.485500px;}
.y1f1{bottom:670.333500px;}
.yf2{bottom:670.477500px;}
.y159{bottom:670.899000px;}
.y38{bottom:670.903500px;}
.y1a3{bottom:677.868000px;}
.y15{bottom:679.501500px;}
.y21f{bottom:679.908000px;}
.y180{bottom:681.757500px;}
.y87{bottom:682.186500px;}
.y6e{bottom:682.491000px;}
.yb2{bottom:683.016000px;}
.y1f0{bottom:683.784000px;}
.y137{bottom:686.419500px;}
.yf1{bottom:688.410000px;}
.y158{bottom:688.831500px;}
.y21e{bottom:693.358500px;}
.y14{bottom:694.446000px;}
.y1a2{bottom:695.800500px;}
.y1ef{bottom:697.233000px;}
.y17f{bottom:699.690000px;}
.y86{bottom:700.119000px;}
.y6d{bottom:700.423500px;}
.yb1{bottom:700.948500px;}
.y136{bottom:704.352000px;}
.yf0{bottom:706.344000px;}
.y157{bottom:706.765500px;}
.y21d{bottom:706.807500px;}
.y13{bottom:709.389000px;}
.y1ee{bottom:710.682000px;}
.y1a1{bottom:713.733000px;}
.y17e{bottom:717.622500px;}
.y85{bottom:718.051500px;}
.y6c{bottom:718.356000px;}
.yb0{bottom:718.881000px;}
.y21c{bottom:720.256500px;}
.y1ed{bottom:724.132500px;}
.yef{bottom:724.276500px;}
.y12{bottom:724.333500px;}
.y156{bottom:724.698000px;}
.y1a0{bottom:731.665500px;}
.y135{bottom:731.682000px;}
.y21b{bottom:733.707000px;}
.y17d{bottom:735.556500px;}
.y84{bottom:735.984000px;}
.y6b{bottom:736.288500px;}
.yaf{bottom:736.813500px;}
.y11{bottom:739.278000px;}
.yee{bottom:742.209000px;}
.y155{bottom:742.630500px;}
.y1ec{bottom:747.156000px;}
.y17c{bottom:753.489000px;}
.y83{bottom:753.918000px;}
.y10{bottom:754.221000px;}
.yae{bottom:754.746000px;}
.y19f{bottom:759.615000px;}
.yed{bottom:760.141500px;}
.y134{bottom:760.563000px;}
.yf{bottom:769.165500px;}
.y17b{bottom:771.421500px;}
.y82{bottom:771.850500px;}
.y6a{bottom:772.155000px;}
.yad{bottom:772.680000px;}
.y1eb{bottom:773.052000px;}
.yec{bottom:778.074000px;}
.y154{bottom:778.495500px;}
.y133{bottom:778.497000px;}
.ye{bottom:784.110000px;}
.y1ea{bottom:786.501000px;}
.y17a{bottom:789.354000px;}
.y81{bottom:789.783000px;}
.y69{bottom:790.087500px;}
.yac{bottom:790.612500px;}
.y153{bottom:796.428000px;}
.y132{bottom:796.429500px;}
.yd{bottom:799.053000px;}
.y1e9{bottom:799.950000px;}
.yeb{bottom:802.948500px;}
.y19e{bottom:805.015500px;}
.y80{bottom:807.715500px;}
.y68{bottom:808.020000px;}
.yab{bottom:808.545000px;}
.y37{bottom:809.842500px;}
.y1e8{bottom:813.400500px;}
.yc{bottom:813.997500px;}
.y131{bottom:814.362000px;}
.y179{bottom:815.952000px;}
.y19d{bottom:818.464500px;}
.y7f{bottom:825.648000px;}
.y67{bottom:825.952500px;}
.yaa{bottom:826.477500px;}
.yb{bottom:828.942000px;}
.y178{bottom:829.401000px;}
.y19c{bottom:831.913500px;}
.y130{bottom:832.294500px;}
.yea{bottom:836.406000px;}
.y1cb{bottom:841.794000px;}
.y177{bottom:842.850000px;}
.y7e{bottom:843.580500px;}
.ya{bottom:843.885000px;}
.ya9{bottom:844.410000px;}
.y19b{bottom:845.364000px;}
.y12f{bottom:850.227000px;}
.ye9{bottom:854.338500px;}
.y176{bottom:856.300500px;}
.y19a{bottom:858.813000px;}
.y9{bottom:858.829500px;}
.y1cc{bottom:860.051390px;}
.y66{bottom:861.817500px;}
.ya8{bottom:862.342500px;}
.y12e{bottom:868.159500px;}
.y199{bottom:872.263500px;}
.ye8{bottom:872.271000px;}
.y8{bottom:873.774000px;}
.y7d{bottom:879.750000px;}
.y65{bottom:879.751500px;}
.ya7{bottom:880.276500px;}
.y16a{bottom:884.342904px;}
.y152{bottom:886.092000px;}
.y12d{bottom:886.093500px;}
.y7{bottom:888.717000px;}
.y198{bottom:889.299000px;}
.ye7{bottom:890.205000px;}
.y7c{bottom:897.682500px;}
.y64{bottom:897.684000px;}
.ya6{bottom:898.209000px;}
.y6{bottom:903.661500px;}
.ye6{bottom:908.137500px;}
.y12c{bottom:911.988000px;}
.y63{bottom:915.616500px;}
.ya5{bottom:916.141500px;}
.y197{bottom:917.244000px;}
.y5{bottom:918.604500px;}
.y12b{bottom:925.438500px;}
.y4{bottom:933.549000px;}
.y196{bottom:935.176500px;}
.ye5{bottom:936.556500px;}
.ya4{bottom:939.531000px;}
.ye4{bottom:946.807500px;}
.y62{bottom:951.481500px;}
.y195{bottom:953.109000px;}
.y113{bottom:953.832000px;}
.y61{bottom:969.414000px;}
.y114{bottom:972.128060px;}
.y3{bottom:983.601000px;}
.ye3{bottom:984.663000px;}
.y7b{bottom:987.346500px;}
.y60{bottom:987.348000px;}
.y1ca{bottom:987.928500px;}
.y1c9{bottom:1001.379000px;}
.ye2{bottom:1002.595500px;}
.y7a{bottom:1005.279000px;}
.y5f{bottom:1005.280500px;}
.y1c8{bottom:1014.828000px;}
.ye1{bottom:1020.528000px;}
.y5e{bottom:1023.213000px;}
.y1c7{bottom:1028.277000px;}
.y2{bottom:1030.674000px;}
.ye0{bottom:1038.460500px;}
.y5d{bottom:1041.145500px;}
.y1c6{bottom:1045.314000px;}
.ydf{bottom:1051.851000px;}
.yde{bottom:1056.393000px;}
.y1c5{bottom:1058.763000px;}
.y5c{bottom:1059.078000px;}
.y1{bottom:1060.563000px;}
.ydd{bottom:1072.468500px;}
.y5b{bottom:1077.010500px;}
.y1c4{bottom:1086.708000px;}
.y79{bottom:1094.943000px;}
.y5a{bottom:1094.944500px;}
.y1c3{bottom:1104.640500px;}
.y58{bottom:1123.200000px;}
.y57{bottom:1137.600000px;}
.h18{height:2.391024px;}
.h32{height:12.604410px;}
.h25{height:13.876253px;}
.h27{height:14.104668px;}
.h26{height:14.140209px;}
.h28{height:14.368625px;}
.h2d{height:19.149722px;}
.h2e{height:29.001299px;}
.h2f{height:29.002153px;}
.h13{height:29.038903px;}
.h1d{height:29.833916px;}
.h30{height:34.239550px;}
.h7{height:35.865450px;}
.h8{height:37.125000px;}
.h4{height:37.658880px;}
.h3{height:38.250662px;}
.h2a{height:41.484266px;}
.h5{height:42.799330px;}
.h6{height:44.831700px;}
.h2{height:46.290394px;}
.ha{height:46.326090px;}
.hc{height:46.487700px;}
.h11{height:46.493700px;}
.h2b{height:50.149104px;}
.h9{height:50.728903px;}
.hf{height:50.734903px;}
.hd{height:53.716903px;}
.h16{height:55.768903px;}
.hb{height:55.774903px;}
.h1b{height:56.041916px;}
.h12{height:56.044903px;}
.h19{height:56.047916px;}
.h15{height:56.050903px;}
.he{height:59.609700px;}
.h10{height:60.389700px;}
.h1a{height:62.999700px;}
.h1e{height:64.494090px;}
.h14{height:65.074903px;}
.h29{height:65.863916px;}
.h1{height:66.948840px;}
.h21{height:74.209916px;}
.h23{height:82.488266px;}
.h22{height:85.271700px;}
.h1f{height:86.766090px;}
.h1c{height:104.841024px;}
.h31{height:119.099413px;}
.h20{height:130.071024px;}
.h24{height:133.275394px;}
.h17{height:160.882903px;}
.h2c{height:228.535776px;}
.h0{height:1188.000000px;}
.w3{width:158.760000px;}
.w1{width:177.656640px;}
.w2{width:325.072440px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5d{left:5.108953px;}
.x58{left:7.471359px;}
.x42{left:9.682604px;}
.x3c{left:11.004401px;}
.x40{left:12.557628px;}
.x38{left:13.879425px;}
.x41{left:15.333513px;}
.x39{left:16.523178px;}
.x37{left:19.001647px;}
.x59{left:20.051671px;}
.x3b{left:22.438351px;}
.x4a{left:24.444353px;}
.x49{left:28.411988px;}
.x5b{left:35.998476px;}
.x48{left:40.497240px;}
.x57{left:77.519531px;}
.x5{left:81.000000px;}
.x3a{left:86.746406px;}
.x7{left:94.449000px;}
.x4{left:95.944500px;}
.x47{left:102.063000px;}
.x63{left:108.231000px;}
.x13{left:112.438500px;}
.x5e{left:114.167931px;}
.x1e{left:117.348000px;}
.x16{left:119.836500px;}
.x12{left:123.295500px;}
.x1c{left:124.576500px;}
.x43{left:127.756935px;}
.x1{left:128.790000px;}
.x14{left:132.001500px;}
.x1f{left:136.081500px;}
.x5a{left:143.108390px;}
.x3f{left:156.672139px;}
.x55{left:160.581000px;}
.x17{left:162.178500px;}
.x45{left:164.298000px;}
.x54{left:179.353500px;}
.xb{left:186.319500px;}
.x20{left:190.689000px;}
.x1d{left:194.860500px;}
.xf{left:197.823000px;}
.x6{left:204.270000px;}
.x2{left:210.967500px;}
.x46{left:213.943500px;}
.x26{left:218.911500px;}
.x62{left:221.029500px;}
.x25{left:222.802500px;}
.x27{left:226.929000px;}
.x21{left:230.434500px;}
.x18{left:236.298000px;}
.x22{left:239.113500px;}
.x19{left:242.595000px;}
.x52{left:244.905000px;}
.x23{left:254.511000px;}
.x10{left:264.396000px;}
.x1a{left:267.700500px;}
.x56{left:279.313500px;}
.x3{left:285.034500px;}
.x4b{left:293.513707px;}
.x28{left:308.682000px;}
.x1b{left:311.518500px;}
.x24{left:323.658000px;}
.x11{left:326.401500px;}
.x5c{left:350.376000px;}
.x36{left:359.992500px;}
.x51{left:430.560000px;}
.x3d{left:437.889000px;}
.x15{left:441.903000px;}
.xe{left:445.656000px;}
.xa{left:469.800000px;}
.x4f{left:479.556000px;}
.x4d{left:482.841000px;}
.xc{left:484.744500px;}
.x2f{left:495.015000px;}
.x53{left:496.149000px;}
.xd{left:502.879500px;}
.x2a{left:510.816000px;}
.x5f{left:541.230000px;}
.x8{left:549.636000px;}
.x3e{left:563.806500px;}
.x31{left:573.652500px;}
.x2b{left:579.571500px;}
.x50{left:591.300000px;}
.x2e{left:598.246500px;}
.x4e{left:617.155500px;}
.x4c{left:627.424500px;}
.x32{left:637.504500px;}
.x9{left:640.555500px;}
.x44{left:642.408000px;}
.x2c{left:656.253000px;}
.x60{left:659.608500px;}
.x30{left:665.958000px;}
.x33{left:687.295500px;}
.x34{left:695.364000px;}
.x35{left:723.060000px;}
.x61{left:730.672500px;}
.x29{left:814.188000px;}
.x2d{left:817.905000px;}
@media print{
.v16{vertical-align:-34.533333pt;}
.v9{vertical-align:-31.536000pt;}
.v3{vertical-align:-12.992000pt;}
.ve{vertical-align:-9.888000pt;}
.v7{vertical-align:-7.973333pt;}
.vd{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.472000pt;}
.v10{vertical-align:3.162667pt;}
.v19{vertical-align:4.720000pt;}
.v11{vertical-align:8.176000pt;}
.v6{vertical-align:13.136000pt;}
.v1a{vertical-align:14.430949pt;}
.vf{vertical-align:16.149333pt;}
.v1{vertical-align:19.280000pt;}
.v5{vertical-align:21.936000pt;}
.v2{vertical-align:23.765333pt;}
.v18{vertical-align:28.480000pt;}
.va{vertical-align:32.032000pt;}
.v14{vertical-align:35.946667pt;}
.v12{vertical-align:38.085333pt;}
.v17{vertical-align:39.445333pt;}
.v8{vertical-align:43.034667pt;}
.v13{vertical-align:91.066667pt;}
.v15{vertical-align:113.493333pt;}
.vc{vertical-align:117.194667pt;}
.vb{vertical-align:119.936000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.000271pt;}
.lsd{letter-spacing:0.000278pt;}
.ls2b{letter-spacing:0.000344pt;}
.ls2d{letter-spacing:0.000473pt;}
.ls2c{letter-spacing:0.000501pt;}
.ls12{letter-spacing:0.000882pt;}
.ls3a{letter-spacing:0.001250pt;}
.ls45{letter-spacing:0.001791pt;}
.ls56{letter-spacing:0.001975pt;}
.ls66{letter-spacing:0.002079pt;}
.ls2f{letter-spacing:0.002178pt;}
.ls5b{letter-spacing:0.002479pt;}
.ls3f{letter-spacing:0.002482pt;}
.ls4d{letter-spacing:0.002509pt;}
.ls9{letter-spacing:0.002906pt;}
.ls40{letter-spacing:0.004264pt;}
.lsf{letter-spacing:0.004773pt;}
.ls5a{letter-spacing:0.006082pt;}
.ls58{letter-spacing:0.592130pt;}
.lsa{letter-spacing:1.605389pt;}
.ls4{letter-spacing:1.610722pt;}
.ls68{letter-spacing:2.203145pt;}
.ls31{letter-spacing:2.651168pt;}
.ls10{letter-spacing:2.651680pt;}
.ls2a{letter-spacing:2.656501pt;}
.ls13{letter-spacing:2.657014pt;}
.lsb{letter-spacing:2.657253pt;}
.ls65{letter-spacing:2.657283pt;}
.ls5f{letter-spacing:2.662586pt;}
.ls3b{letter-spacing:2.948564pt;}
.ls4c{letter-spacing:2.953897pt;}
.ls24{letter-spacing:3.042140pt;}
.ls2{letter-spacing:3.801225pt;}
.ls1e{letter-spacing:3.954079pt;}
.ls1f{letter-spacing:4.802585pt;}
.ls1b{letter-spacing:4.807919pt;}
.ls2e{letter-spacing:5.311884pt;}
.ls61{letter-spacing:5.313414pt;}
.ls63{letter-spacing:5.318747pt;}
.ls30{letter-spacing:6.879996pt;}
.ls37{letter-spacing:7.171733pt;}
.ls38{letter-spacing:7.179145pt;}
.ls51{letter-spacing:8.855412pt;}
.ls69{letter-spacing:10.034717pt;}
.ls15{letter-spacing:11.803145pt;}
.ls1d{letter-spacing:11.804745pt;}
.ls3d{letter-spacing:11.808479pt;}
.ls14{letter-spacing:11.810906pt;}
.ls3c{letter-spacing:13.413389pt;}
.ls44{letter-spacing:14.229812pt;}
.ls1c{letter-spacing:14.464501pt;}
.ls55{letter-spacing:14.757812pt;}
.ls67{letter-spacing:15.157812pt;}
.ls8{letter-spacing:15.242318pt;}
.ls17{letter-spacing:15.777014pt;}
.ls39{letter-spacing:16.094400pt;}
.ls60{letter-spacing:16.368056pt;}
.ls34{letter-spacing:16.416689pt;}
.ls35{letter-spacing:16.636619pt;}
.ls7{letter-spacing:16.848056pt;}
.ls27{letter-spacing:17.414586pt;}
.ls54{letter-spacing:17.420653pt;}
.lse{letter-spacing:17.961133pt;}
.ls41{letter-spacing:18.508050pt;}
.ls11{letter-spacing:18.600239pt;}
.ls57{letter-spacing:18.748695pt;}
.ls22{letter-spacing:19.005573pt;}
.ls29{letter-spacing:19.248267pt;}
.ls48{letter-spacing:19.333218pt;}
.ls59{letter-spacing:20.070747pt;}
.ls4a{letter-spacing:20.074551pt;}
.ls42{letter-spacing:20.821812pt;}
.ls43{letter-spacing:20.823412pt;}
.ls4b{letter-spacing:21.131145pt;}
.ls36{letter-spacing:21.407884pt;}
.ls53{letter-spacing:21.850596pt;}
.ls3{letter-spacing:21.903095pt;}
.ls26{letter-spacing:22.278586pt;}
.ls1{letter-spacing:23.049225pt;}
.lsc{letter-spacing:24.301573pt;}
.ls1a{letter-spacing:25.042585pt;}
.ls64{letter-spacing:25.526586pt;}
.ls18{letter-spacing:26.173573pt;}
.ls5d{letter-spacing:28.205573pt;}
.ls47{letter-spacing:28.408177pt;}
.ls5e{letter-spacing:29.378906pt;}
.ls6{letter-spacing:29.514318pt;}
.ls5{letter-spacing:29.517573pt;}
.ls52{letter-spacing:29.534400pt;}
.ls23{letter-spacing:31.469252pt;}
.ls20{letter-spacing:32.360239pt;}
.ls19{letter-spacing:33.389252pt;}
.ls49{letter-spacing:34.982347pt;}
.ls4e{letter-spacing:35.065076pt;}
.ls50{letter-spacing:36.679842pt;}
.ls25{letter-spacing:42.152239pt;}
.ls28{letter-spacing:70.858797pt;}
.ls3e{letter-spacing:93.892145pt;}
.ls32{letter-spacing:127.957600pt;}
.ls21{letter-spacing:223.392501pt;}
.ls5c{letter-spacing:230.933964pt;}
.ls16{letter-spacing:350.134347pt;}
.ls46{letter-spacing:388.808239pt;}
.ls62{letter-spacing:404.797573pt;}
.ls4f{letter-spacing:491.367247pt;}
.wse0{word-spacing:-42.359791pt;}
.wsd1{word-spacing:-42.066082pt;}
.wse6{word-spacing:-40.291411pt;}
.ws113{word-spacing:-38.362652pt;}
.wsb6{word-spacing:-34.611401pt;}
.wsec{word-spacing:-32.310400pt;}
.ws178{word-spacing:-23.319450pt;}
.ws105{word-spacing:-18.118649pt;}
.ws10{word-spacing:-15.383951pt;}
.ws6{word-spacing:-14.810102pt;}
.wsb5{word-spacing:-14.760588pt;}
.wsa0{word-spacing:-14.346144pt;}
.ws15d{word-spacing:-14.293010pt;}
.ws13{word-spacing:-14.284073pt;}
.ws13c{word-spacing:-14.239876pt;}
.ws20{word-spacing:-14.186742pt;}
.ws68{word-spacing:-14.080475pt;}
.wsee{word-spacing:-14.027341pt;}
.ws4f{word-spacing:-13.974207pt;}
.ws161{word-spacing:-13.867939pt;}
.ws132{word-spacing:-13.761671pt;}
.wscf{word-spacing:-13.708538pt;}
.ws84{word-spacing:-13.496002pt;}
.wsc4{word-spacing:-13.476232pt;}
.wsc3{word-spacing:-13.448404pt;}
.wsc5{word-spacing:-13.442868pt;}
.ws115{word-spacing:-13.389734pt;}
.ws4b{word-spacing:-13.283467pt;}
.ws75{word-spacing:-13.230333pt;}
.ws10a{word-spacing:-13.177199pt;}
.wse5{word-spacing:-13.124065pt;}
.ws8b{word-spacing:-13.017797pt;}
.ws66{word-spacing:-12.964663pt;}
.ws3c{word-spacing:-12.858396pt;}
.wsdd{word-spacing:-12.813931pt;}
.wsde{word-spacing:-12.810886pt;}
.wsdf{word-spacing:-12.805262pt;}
.ws134{word-spacing:-12.752128pt;}
.wsfd{word-spacing:-12.592726pt;}
.wsfe{word-spacing:-12.554886pt;}
.wsda{word-spacing:-12.539593pt;}
.ws8a{word-spacing:-12.486459pt;}
.ws1a0{word-spacing:-12.480114pt;}
.ws2d{word-spacing:-12.380191pt;}
.wsfa{word-spacing:-12.327057pt;}
.ws15f{word-spacing:-12.273923pt;}
.ws3e{word-spacing:-12.167655pt;}
.ws139{word-spacing:-12.127304pt;}
.wsac{word-spacing:-12.114522pt;}
.ws189{word-spacing:-12.084797pt;}
.wse7{word-spacing:-12.028410pt;}
.ws11a{word-spacing:-11.955120pt;}
.ws1b1{word-spacing:-11.872261pt;}
.wsd8{word-spacing:-11.848852pt;}
.ws7e{word-spacing:-11.747898pt;}
.ws19f{word-spacing:-11.744739pt;}
.ws156{word-spacing:-11.742585pt;}
.ws148{word-spacing:-11.689451pt;}
.ws74{word-spacing:-11.636317pt;}
.ws19a{word-spacing:-11.587463pt;}
.ws11b{word-spacing:-11.535362pt;}
.ws61{word-spacing:-11.530049pt;}
.ws1b7{word-spacing:-11.447189pt;}
.ws136{word-spacing:-11.423781pt;}
.ws44{word-spacing:-11.370647pt;}
.wsb3{word-spacing:-11.317514pt;}
.ws10e{word-spacing:-11.211246pt;}
.ws7f{word-spacing:-11.158112pt;}
.wsf2{word-spacing:-10.998710pt;}
.ws1ba{word-spacing:-10.979610pt;}
.ws11c{word-spacing:-10.945577pt;}
.wsc{word-spacing:-10.888796pt;}
.ws69{word-spacing:-10.839309pt;}
.ws12a{word-spacing:-10.786175pt;}
.ws128{word-spacing:-10.626773pt;}
.ws162{word-spacing:-10.520506pt;}
.ws3{word-spacing:-10.506230pt;}
.wse2{word-spacing:-10.480242pt;}
.wse1{word-spacing:-10.474886pt;}
.wse3{word-spacing:-10.467372pt;}
.ws119{word-spacing:-10.414238pt;}
.ws18{word-spacing:-10.362767pt;}
.ws23{word-spacing:-10.361104pt;}
.ws184{word-spacing:-10.312247pt;}
.wsa4{word-spacing:-10.254836pt;}
.ws8d{word-spacing:-10.201702pt;}
.ws8f{word-spacing:-10.148569pt;}
.ws1be{word-spacing:-10.099711pt;}
.ws159{word-spacing:-10.095435pt;}
.ws37{word-spacing:-10.086959pt;}
.wsab{word-spacing:-9.989167pt;}
.ws4{word-spacing:-9.980201pt;}
.ws7a{word-spacing:-9.936033pt;}
.ws11{word-spacing:-9.932380pt;}
.ws38{word-spacing:-9.882899pt;}
.ws109{word-spacing:-9.829765pt;}
.ws67{word-spacing:-9.776631pt;}
.ws62{word-spacing:-9.723498pt;}
.ws1af{word-spacing:-9.674639pt;}
.ws87{word-spacing:-9.670364pt;}
.ws103{word-spacing:-9.619379pt;}
.ws114{word-spacing:-9.617230pt;}
.ws32{word-spacing:-9.576872pt;}
.ws1a1{word-spacing:-9.534365pt;}
.ws5f{word-spacing:-9.510962pt;}
.ws76{word-spacing:-9.457828pt;}
.ws195{word-spacing:-9.449351pt;}
.ws1b9{word-spacing:-9.419596pt;}
.wsd{word-spacing:-9.406351pt;}
.wsad{word-spacing:-9.404694pt;}
.ws8{word-spacing:-9.358531pt;}
.wsf8{word-spacing:-9.245293pt;}
.ws93{word-spacing:-9.192159pt;}
.ws6e{word-spacing:-9.139025pt;}
.ws182{word-spacing:-9.066786pt;}
.ws81{word-spacing:-9.032757pt;}
.ws8e{word-spacing:-8.979623pt;}
.ws7d{word-spacing:-8.926490pt;}
.ws1ae{word-spacing:-8.896757pt;}
.wsae{word-spacing:-8.873356pt;}
.ws110{word-spacing:-8.820222pt;}
.wsbb{word-spacing:-8.767088pt;}
.wsba{word-spacing:-8.761370pt;}
.wsff{word-spacing:-8.713954pt;}
.ws1b8{word-spacing:-8.684221pt;}
.wsc8{word-spacing:-8.660820pt;}
.wsc0{word-spacing:-8.607686pt;}
.wsaf{word-spacing:-8.559866pt;}
.wsdb{word-spacing:-8.554553pt;}
.ws1ad{word-spacing:-8.514192pt;}
.ws127{word-spacing:-8.501419pt;}
.ws55{word-spacing:-8.448285pt;}
.ws190{word-spacing:-8.441930pt;}
.wsa5{word-spacing:-8.395151pt;}
.wsfc{word-spacing:-8.342017pt;}
.ws140{word-spacing:-8.288883pt;}
.ws107{word-spacing:-8.235749pt;}
.ws16{word-spacing:-8.210831pt;}
.ws22{word-spacing:-8.182615pt;}
.ws5d{word-spacing:-8.129482pt;}
.wse8{word-spacing:-8.076348pt;}
.ws4a{word-spacing:-8.023214pt;}
.ws5e{word-spacing:-7.970080pt;}
.ws31{word-spacing:-7.961599pt;}
.ws2c{word-spacing:-7.916946pt;}
.ws196{word-spacing:-7.889336pt;}
.ws1b6{word-spacing:-7.876584pt;}
.ws83{word-spacing:-7.863812pt;}
.ws183{word-spacing:-7.834077pt;}
.ws28{word-spacing:-7.810678pt;}
.ws163{word-spacing:-7.749063pt;}
.wsb7{word-spacing:-7.720598pt;}
.ws30{word-spacing:-7.706555pt;}
.wsb9{word-spacing:-7.704411pt;}
.ws11e{word-spacing:-7.651277pt;}
.wsf9{word-spacing:-7.598143pt;}
.ws177{word-spacing:-7.591786pt;}
.wsd4{word-spacing:-7.545009pt;}
.ws92{word-spacing:-7.491875pt;}
.ws172{word-spacing:-7.451512pt;}
.ws10b{word-spacing:-7.438741pt;}
.ws5{word-spacing:-7.397878pt;}
.ws5c{word-spacing:-7.385607pt;}
.ws108{word-spacing:-7.374516pt;}
.ws1a4{word-spacing:-7.366498pt;}
.wsb2{word-spacing:-7.332474pt;}
.wsb1{word-spacing:-7.322886pt;}
.wsb0{word-spacing:-7.321364pt;}
.ws1bd{word-spacing:-7.294236pt;}
.ws88{word-spacing:-7.231519pt;}
.ws56{word-spacing:-7.226206pt;}
.ws175{word-spacing:-7.196469pt;}
.wsc9{word-spacing:-7.173072pt;}
.ws64{word-spacing:-7.013670pt;}
.wsd9{word-spacing:-6.960537pt;}
.ws176{word-spacing:-6.870913pt;}
.ws17a{word-spacing:-6.856411pt;}
.ws18b{word-spacing:-6.826656pt;}
.ws3b{word-spacing:-6.801135pt;}
.ws135{word-spacing:-6.748001pt;}
.ws1b2{word-spacing:-6.741642pt;}
.ws89{word-spacing:-6.641733pt;}
.ws4c{word-spacing:-6.588599pt;}
.ws1bc{word-spacing:-6.558861pt;}
.ws138{word-spacing:-6.491233pt;}
.ws14{word-spacing:-6.441462pt;}
.wse4{word-spacing:-6.376064pt;}
.ws170{word-spacing:-6.346325pt;}
.wscd{word-spacing:-6.341553pt;}
.wsce{word-spacing:-6.322930pt;}
.ws17c{word-spacing:-6.316570pt;}
.ws180{word-spacing:-6.231556pt;}
.ws1f{word-spacing:-6.216662pt;}
.ws9d{word-spacing:-6.168842pt;}
.ws129{word-spacing:-6.163529pt;}
.ws18a{word-spacing:-6.133789pt;}
.wsf1{word-spacing:-6.110395pt;}
.ws18c{word-spacing:-6.091282pt;}
.ws1b5{word-spacing:-6.019020pt;}
.ws9f{word-spacing:-5.950993pt;}
.ws91{word-spacing:-5.897859pt;}
.ws125{word-spacing:-5.844725pt;}
.ws7{word-spacing:-5.819791pt;}
.ws14b{word-spacing:-5.791591pt;}
.ws94{word-spacing:-5.738458pt;}
.ws45{word-spacing:-5.685324pt;}
.ws191{word-spacing:-5.666210pt;}
.ws4d{word-spacing:-5.632190pt;}
.ws188{word-spacing:-5.581195pt;}
.ws9e{word-spacing:-5.579056pt;}
.ws17b{word-spacing:-5.538688pt;}
.ws11d{word-spacing:-5.525922pt;}
.ws181{word-spacing:-5.496181pt;}
.ws133{word-spacing:-5.419654pt;}
.ws19e{word-spacing:-5.411167pt;}
.wsef{word-spacing:-5.366521pt;}
.ws73{word-spacing:-5.313387pt;}
.ws1b4{word-spacing:-5.302617pt;}
.ws4e{word-spacing:-5.260253pt;}
.ws13e{word-spacing:-5.207119pt;}
.ws9b{word-spacing:-5.153985pt;}
.wsaa{word-spacing:-5.047717pt;}
.ws80{word-spacing:-4.994583pt;}
.ws1ab{word-spacing:-4.943587pt;}
.ws85{word-spacing:-4.941450pt;}
.ws24{word-spacing:-4.888316pt;}
.ws179{word-spacing:-4.816066pt;}
.ws6d{word-spacing:-4.728914pt;}
.wsd3{word-spacing:-4.725553pt;}
.ws102{word-spacing:-4.703671pt;}
.ws1bb{word-spacing:-4.688544pt;}
.wse9{word-spacing:-4.675780pt;}
.wsa2{word-spacing:-4.569513pt;}
.ws118{word-spacing:-4.463245pt;}
.ws111{word-spacing:-4.410111pt;}
.ws112{word-spacing:-4.356977pt;}
.ws1a3{word-spacing:-4.318732pt;}
.ws46{word-spacing:-4.303843pt;}
.wsf{word-spacing:-4.289526pt;}
.ws21{word-spacing:-4.197575pt;}
.ws70{word-spacing:-4.144442pt;}
.ws1b{word-spacing:-4.091308pt;}
.wsbe{word-spacing:-3.985040pt;}
.wsf0{word-spacing:-3.931906pt;}
.ws13b{word-spacing:-3.880907pt;}
.wsd2{word-spacing:-3.880598pt;}
.ws3a{word-spacing:-3.878772pt;}
.ws126{word-spacing:-3.825638pt;}
.ws54{word-spacing:-3.772505pt;}
.ws1aa{word-spacing:-3.766138pt;}
.ws6b{word-spacing:-3.719371pt;}
.ws13a{word-spacing:-3.710879pt;}
.ws1a2{word-spacing:-3.573473pt;}
.ws145{word-spacing:-3.559969pt;}
.ws33{word-spacing:-3.540850pt;}
.ws15a{word-spacing:-3.453701pt;}
.ws12b{word-spacing:-3.400567pt;}
.ws79{word-spacing:-3.347434pt;}
.ws40{word-spacing:-3.294300pt;}
.ws147{word-spacing:-3.241166pt;}
.ws124{word-spacing:-3.134898pt;}
.ws12e{word-spacing:-3.081764pt;}
.wsc1{word-spacing:-3.028630pt;}
.wscc{word-spacing:-2.975497pt;}
.wsf4{word-spacing:-2.964870pt;}
.ws96{word-spacing:-2.874542pt;}
.wsed{word-spacing:-2.816095pt;}
.ws14c{word-spacing:-2.762961pt;}
.ws117{word-spacing:-2.656693pt;}
.ws116{word-spacing:-2.603559pt;}
.ws25{word-spacing:-2.550426pt;}
.ws149{word-spacing:-2.497292pt;}
.ws36{word-spacing:-2.478170pt;}
.wsa9{word-spacing:-2.444158pt;}
.ws155{word-spacing:-2.337890pt;}
.ws192{word-spacing:-2.308141pt;}
.ws97{word-spacing:-2.284756pt;}
.ws194{word-spacing:-2.235879pt;}
.ws121{word-spacing:-2.231622pt;}
.wsbd{word-spacing:-2.178489pt;}
.wsf3{word-spacing:-2.125355pt;}
.ws12d{word-spacing:-2.019087pt;}
.ws14d{word-spacing:-1.965953pt;}
.wsb{word-spacing:-1.946307pt;}
.ws171{word-spacing:-1.925576pt;}
.ws12c{word-spacing:-1.806551pt;}
.ws9{word-spacing:-1.755023pt;}
.ws47{word-spacing:-1.753418pt;}
.ws3f{word-spacing:-1.700284pt;}
.ws43{word-spacing:-1.647150pt;}
.ws58{word-spacing:-1.594016pt;}
.ws193{word-spacing:-1.500504pt;}
.ws51{word-spacing:-1.487748pt;}
.ws86{word-spacing:-1.434614pt;}
.ws77{word-spacing:-1.381481pt;}
.ws29{word-spacing:-1.328347pt;}
.wsbf{word-spacing:-1.222079pt;}
.ws42{word-spacing:-1.168945pt;}
.ws35{word-spacing:-1.117939pt;}
.wsa7{word-spacing:-1.062677pt;}
.ws1a9{word-spacing:-1.045677pt;}
.ws143{word-spacing:-1.009543pt;}
.wsfb{word-spacing:-0.956410pt;}
.ws185{word-spacing:-0.905403pt;}
.ws82{word-spacing:-0.903276pt;}
.ws17{word-spacing:-0.798607pt;}
.ws142{word-spacing:-0.797008pt;}
.ws53{word-spacing:-0.743874pt;}
.ws98{word-spacing:-0.584473pt;}
.wsea{word-spacing:-0.527043pt;}
.ws1c{word-spacing:-0.478205pt;}
.ws90{word-spacing:-0.425071pt;}
.wsc7{word-spacing:-0.371937pt;}
.ws1a8{word-spacing:-0.352810pt;}
.ws144{word-spacing:-0.318803pt;}
.ws1b0{word-spacing:-0.310303pt;}
.wse{word-spacing:-0.224758pt;}
.ws65{word-spacing:-0.212535pt;}
.ws72{word-spacing:-0.106268pt;}
.wsb4{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047821pt;}
.wsdc{word-spacing:-0.037194pt;}
.wsd0{word-spacing:-0.013752pt;}
.ws130{word-spacing:-0.005313pt;}
.ws52{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.010627pt;}
.ws13f{word-spacing:0.053134pt;}
.wsd6{word-spacing:0.067026pt;}
.wsd5{word-spacing:0.085114pt;}
.ws7c{word-spacing:0.106268pt;}
.ws1ac{word-spacing:0.157277pt;}
.ws12{word-spacing:0.301271pt;}
.ws173{word-spacing:0.327305pt;}
.ws50{word-spacing:0.371937pt;}
.ws15b{word-spacing:0.397279pt;}
.ws7b{word-spacing:0.584473pt;}
.ws12f{word-spacing:0.637606pt;}
.ws9c{word-spacing:0.690740pt;}
.ws1b3{word-spacing:0.794885pt;}
.ws1d{word-spacing:0.797008pt;}
.ws49{word-spacing:0.850142pt;}
.ws157{word-spacing:0.956410pt;}
.ws1a5{word-spacing:0.964913pt;}
.ws19d{word-spacing:1.037176pt;}
.ws19c{word-spacing:1.079683pt;}
.wsbc{word-spacing:1.115811pt;}
.ws146{word-spacing:1.222079pt;}
.ws15{word-spacing:1.257687pt;}
.ws2a{word-spacing:1.381481pt;}
.ws17f{word-spacing:1.419740pt;}
.ws14a{word-spacing:1.434614pt;}
.ws1a7{word-spacing:1.560014pt;}
.ws10c{word-spacing:1.628735pt;}
.ws10d{word-spacing:1.647150pt;}
.ws95{word-spacing:1.700284pt;}
.ws160{word-spacing:1.753418pt;}
.wsf5{word-spacing:1.806551pt;}
.ws19b{word-spacing:1.815057pt;}
.wsf6{word-spacing:1.859685pt;}
.ws1e{word-spacing:1.912819pt;}
.wsca{word-spacing:2.012157pt;}
.wscb{word-spacing:2.019087pt;}
.ws6a{word-spacing:2.125355pt;}
.ws17e{word-spacing:2.155115pt;}
.wsf7{word-spacing:2.231622pt;}
.ws6c{word-spacing:2.284756pt;}
.ws8c{word-spacing:2.391024pt;}
.ws63{word-spacing:2.444158pt;}
.ws60{word-spacing:2.497292pt;}
.ws187{word-spacing:2.524928pt;}
.ws11f{word-spacing:2.603559pt;}
.ws48{word-spacing:2.656693pt;}
.ws123{word-spacing:2.709827pt;}
.ws199{word-spacing:2.737464pt;}
.ws13d{word-spacing:2.762961pt;}
.ws39{word-spacing:2.816095pt;}
.ws104{word-spacing:2.922363pt;}
.ws106{word-spacing:2.975497pt;}
.ws71{word-spacing:3.134898pt;}
.ws186{word-spacing:3.217795pt;}
.ws3d{word-spacing:3.241166pt;}
.wsc6{word-spacing:3.295781pt;}
.ws197{word-spacing:3.302809pt;}
.ws198{word-spacing:3.472838pt;}
.ws17d{word-spacing:3.515345pt;}
.wsa6{word-spacing:3.559969pt;}
.ws6f{word-spacing:3.613103pt;}
.ws158{word-spacing:3.719371pt;}
.wsa{word-spacing:3.935652pt;}
.ws122{word-spacing:3.985040pt;}
.ws18d{word-spacing:4.067939pt;}
.wsb8{word-spacing:4.096957pt;}
.ws18f{word-spacing:4.097694pt;}
.ws120{word-spacing:4.782048pt;}
.ws18e{word-spacing:4.833069pt;}
.ws27{word-spacing:5.047717pt;}
.ws141{word-spacing:5.153985pt;}
.ws174{word-spacing:5.215633pt;}
.wsa1{word-spacing:5.260253pt;}
.ws59{word-spacing:5.313387pt;}
.ws5b{word-spacing:5.366521pt;}
.ws1a{word-spacing:5.632190pt;}
.ws57{word-spacing:5.738458pt;}
.ws100{word-spacing:5.759781pt;}
.ws2b{word-spacing:5.897859pt;}
.ws41{word-spacing:5.950993pt;}
.wseb{word-spacing:6.064957pt;}
.ws131{word-spacing:6.163529pt;}
.wsa3{word-spacing:6.269796pt;}
.ws10f{word-spacing:6.429198pt;}
.ws15e{word-spacing:6.641733pt;}
.ws2f{word-spacing:6.830907pt;}
.wsa8{word-spacing:6.854269pt;}
.ws99{word-spacing:7.119938pt;}
.ws150{word-spacing:7.446345pt;}
.ws5a{word-spacing:7.598143pt;}
.ws26{word-spacing:7.651277pt;}
.ws9a{word-spacing:8.129482pt;}
.ws15c{word-spacing:8.359945pt;}
.ws14e{word-spacing:9.850427pt;}
.ws14f{word-spacing:9.855761pt;}
.ws16b{word-spacing:9.983858pt;}
.ws167{word-spacing:9.986600pt;}
.ws151{word-spacing:11.590345pt;}
.wsd7{word-spacing:15.568223pt;}
.ws1a6{word-spacing:15.969955pt;}
.ws152{word-spacing:16.025214pt;}
.ws2e{word-spacing:17.882779pt;}
.ws78{word-spacing:20.031468pt;}
.ws1{word-spacing:20.398166pt;}
.ws16d{word-spacing:24.221232pt;}
.ws19{word-spacing:29.329894pt;}
.ws0{word-spacing:31.795386pt;}
.ws101{word-spacing:37.224706pt;}
.ws153{word-spacing:41.176725pt;}
.ws137{word-spacing:51.700260pt;}
.ws166{word-spacing:52.489076pt;}
.ws165{word-spacing:54.694014pt;}
.ws16c{word-spacing:63.714600pt;}
.ws16e{word-spacing:71.474760pt;}
.ws168{word-spacing:75.005267pt;}
.ws16a{word-spacing:76.691922pt;}
.ws169{word-spacing:87.982588pt;}
.ws154{word-spacing:140.728587pt;}
.ws16f{word-spacing:197.681400pt;}
.ws164{word-spacing:275.063361pt;}
.ws34{word-spacing:581.079899pt;}
._12{margin-left:-80.503837pt;}
._13{margin-left:-70.521226pt;}
._10{margin-left:-17.709518pt;}
._5{margin-left:-5.807526pt;}
._6{margin-left:-4.410111pt;}
._0{margin-left:-2.635446pt;}
._1{margin-left:-1.578082pt;}
._2{width:1.578082pt;}
._3{width:2.584997pt;}
._e{width:3.698825pt;}
._14{width:7.814259pt;}
._4{width:9.420698pt;}
._8{width:16.110202pt;}
._f{width:18.434515pt;}
._2d{width:19.857614pt;}
._17{width:21.317321pt;}
._c{width:24.676969pt;}
._b{width:27.151406pt;}
._a{width:29.345829pt;}
._d{width:33.301690pt;}
._29{width:37.277604pt;}
._15{width:41.166577pt;}
._28{width:45.645516pt;}
._11{width:51.560187pt;}
._16{width:59.164400pt;}
._27{width:63.760800pt;}
._2c{width:64.908494pt;}
._25{width:75.694685pt;}
._2b{width:79.989840pt;}
._21{width:81.528810pt;}
._7{width:85.907051pt;}
._22{width:88.032411pt;}
._26{width:89.891833pt;}
._2a{width:92.498112pt;}
._24{width:104.155651pt;}
._1f{width:113.331073pt;}
._23{width:125.736298pt;}
._1c{width:163.270155pt;}
._1a{width:175.129664pt;}
._1e{width:247.365841pt;}
._20{width:288.447231pt;}
._1b{width:316.001152pt;}
._1d{width:338.560788pt;}
._18{width:356.214713pt;}
._19{width:463.488384pt;}
._9{width:470.528000pt;}
.fsb{font-size:15.120000pt;}
.fsa{font-size:15.566507pt;}
.fs8{font-size:16.919680pt;}
.fs9{font-size:23.349760pt;}
.fs7{font-size:26.566933pt;}
.fs6{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y1d6{bottom:3.018709pt;}
.y11e{bottom:3.378015pt;}
.y1cd{bottom:7.245001pt;}
.y115{bottom:8.107348pt;}
.y1ce{bottom:10.263709pt;}
.y1d8{bottom:10.289917pt;}
.y116{bottom:11.485362pt;}
.y11f{bottom:11.514689pt;}
.y170{bottom:18.290645pt;}
.y1cf{bottom:22.601251pt;}
.y174{bottom:22.993092pt;}
.y1e0{bottom:24.648751pt;}
.y117{bottom:25.291398pt;}
.y171{bottom:27.898099pt;}
.y121{bottom:30.813699pt;}
.y173{bottom:32.114092pt;}
.y1d0{bottom:34.938604pt;}
.y1e1{bottom:39.033604pt;}
.y118{bottom:39.097222pt;}
.y1d1{bottom:47.250064pt;}
.y59{bottom:48.533333pt;}
.y122{bottom:50.112639pt;}
.y1d7{bottom:50.793814pt;}
.y119{bottom:52.874072pt;}
.y1e2{bottom:53.418709pt;}
.y120{bottom:56.721889pt;}
.y125{bottom:56.839622pt;}
.y1d2{bottom:59.587354pt;}
.y11a{bottom:66.679825pt;}
.y1e3{bottom:67.803814pt;}
.y123{bottom:69.441258pt;}
.y1d3{bottom:71.898814pt;}
.y110{bottom:75.317333pt;}
.y1c2{bottom:75.654667pt;}
.y172{bottom:78.935323pt;}
.y1dc{bottom:79.826104pt;}
.y1e7{bottom:80.325064pt;}
.y11b{bottom:80.456675pt;}
.y36{bottom:80.630667pt;}
.y1e4{bottom:82.188604pt;}
.y12a{bottom:82.600892pt;}
.y1df{bottom:82.949959pt;}
.ydb{bottom:83.766667pt;}
.y1d4{bottom:84.236104pt;}
.y10f{bottom:84.429333pt;}
.y1db{bottom:85.758814pt;}
.y1e6{bottom:86.257459pt;}
.y1de{bottom:87.596209pt;}
.y129{bottom:87.770912pt;}
.y124{bottom:88.740268pt;}
.y175{bottom:89.596337pt;}
.y1c1{bottom:91.594667pt;}
.y1da{bottom:91.717354pt;}
.y1e5{bottom:92.216314pt;}
.y1dd{bottom:92.268604pt;}
.y35{bottom:92.585333pt;}
.y21a{bottom:92.586667pt;}
.y128{bottom:92.940579pt;}
.y111{bottom:93.416000pt;}
.y11c{bottom:94.262429pt;}
.ydc{bottom:95.402667pt;}
.y1d5{bottom:96.547564pt;}
.y56{bottom:96.570667pt;}
.y1d9{bottom:96.599917pt;}
.y127{bottom:98.139855pt;}
.yd8{bottom:99.440000pt;}
.y112{bottom:99.642667pt;}
.y249{bottom:102.246667pt;}
.y126{bottom:103.309875pt;}
.y34{bottom:104.541333pt;}
.y1c0{bottom:107.534667pt;}
.y11d{bottom:108.039278pt;}
.yda{bottom:112.058667pt;}
.y55{bottom:112.510667pt;}
.y248{bottom:114.201333pt;}
.yd9{bottom:116.273333pt;}
.y33{bottom:116.496000pt;}
.y219{bottom:116.497333pt;}
.y16b{bottom:116.594594pt;}
.y10e{bottom:120.488000pt;}
.y16e{bottom:121.297139pt;}
.y1bf{bottom:123.474667pt;}
.y247{bottom:126.156000pt;}
.y78{bottom:128.450667pt;}
.y32{bottom:128.452000pt;}
.y218{bottom:128.540000pt;}
.yd6{bottom:129.268000pt;}
.y16d{bottom:130.174912pt;}
.yd4{bottom:133.686667pt;}
.y10d{bottom:136.428000pt;}
.y246{bottom:138.112000pt;}
.y1be{bottom:139.416000pt;}
.y31{bottom:140.406667pt;}
.y217{bottom:140.496000pt;}
.yd7{bottom:140.904000pt;}
.ya3{bottom:144.390667pt;}
.y54{bottom:144.392000pt;}
.yd3{bottom:144.941333pt;}
.y16c{bottom:146.187496pt;}
.y245{bottom:150.066667pt;}
.y30{bottom:152.361333pt;}
.y10c{bottom:152.368000pt;}
.y216{bottom:152.450667pt;}
.y1bd{bottom:155.356000pt;}
.yd5{bottom:157.560000pt;}
.y53{bottom:160.332000pt;}
.y244{bottom:162.022667pt;}
.y151{bottom:164.197333pt;}
.y215{bottom:164.405333pt;}
.ya2{bottom:165.390667pt;}
.y10b{bottom:168.308000pt;}
.y1bc{bottom:171.296000pt;}
.y243{bottom:173.977333pt;}
.y52{bottom:176.272000pt;}
.y214{bottom:176.449333pt;}
.y2f{bottom:181.141333pt;}
.yd2{bottom:183.326667pt;}
.y10a{bottom:184.248000pt;}
.y16f{bottom:185.873819pt;}
.y242{bottom:185.932000pt;}
.y1bb{bottom:187.236000pt;}
.y150{bottom:187.917333pt;}
.y213{bottom:188.404000pt;}
.ya1{bottom:191.402667pt;}
.y51{bottom:192.212000pt;}
.y2e{bottom:197.081333pt;}
.y241{bottom:197.888000pt;}
.yd1{bottom:199.268000pt;}
.y109{bottom:200.189333pt;}
.y212{bottom:200.360000pt;}
.y1ba{bottom:203.176000pt;}
.y14f{bottom:203.858667pt;}
.ya0{bottom:207.342667pt;}
.y50{bottom:208.152000pt;}
.y240{bottom:209.842667pt;}
.y108{bottom:212.092000pt;}
.y211{bottom:212.314667pt;}
.y2d{bottom:213.022667pt;}
.yd0{bottom:215.208000pt;}
.y107{bottom:216.129333pt;}
.y1b9{bottom:219.116000pt;}
.y14e{bottom:219.798667pt;}
.y23f{bottom:221.797333pt;}
.y9f{bottom:223.282667pt;}
.y169{bottom:224.092000pt;}
.y4f{bottom:224.093333pt;}
.y210{bottom:224.358667pt;}
.y2c{bottom:228.962667pt;}
.y77{bottom:229.488000pt;}
.ycf{bottom:231.148000pt;}
.y106{bottom:232.069333pt;}
.y23e{bottom:233.753333pt;}
.y1b8{bottom:235.057333pt;}
.y14d{bottom:235.738667pt;}
.y20f{bottom:236.313333pt;}
.y9e{bottom:239.222667pt;}
.y168{bottom:240.032000pt;}
.y4e{bottom:240.033333pt;}
.y2b{bottom:244.902667pt;}
.y23d{bottom:245.708000pt;}
.yce{bottom:247.088000pt;}
.y105{bottom:248.009333pt;}
.y20e{bottom:248.269333pt;}
.y1b7{bottom:250.997333pt;}
.y9d{bottom:255.162667pt;}
.y14c{bottom:255.544000pt;}
.y4d{bottom:255.973333pt;}
.y23c{bottom:257.664000pt;}
.y20d{bottom:260.312000pt;}
.y2a{bottom:260.842667pt;}
.ycd{bottom:263.028000pt;}
.y104{bottom:263.949333pt;}
.y1b6{bottom:266.937333pt;}
.y23b{bottom:269.618667pt;}
.y9c{bottom:271.102667pt;}
.y4c{bottom:271.913333pt;}
.y20c{bottom:272.268000pt;}
.y194{bottom:276.710667pt;}
.y29{bottom:276.782667pt;}
.ycc{bottom:278.968000pt;}
.y14b{bottom:279.265333pt;}
.y103{bottom:279.889333pt;}
.y23a{bottom:281.573333pt;}
.y1b5{bottom:282.877333pt;}
.y20b{bottom:284.222667pt;}
.y9b{bottom:287.044000pt;}
.y4b{bottom:287.853333pt;}
.y28{bottom:292.722667pt;}
.y239{bottom:293.529333pt;}
.y14a{bottom:295.205333pt;}
.y102{bottom:295.830667pt;}
.y20a{bottom:296.266667pt;}
.y1b4{bottom:298.817333pt;}
.ycb{bottom:299.760000pt;}
.y9a{bottom:302.984000pt;}
.y193{bottom:303.142667pt;}
.y76{bottom:303.793333pt;}
.y4a{bottom:303.794667pt;}
.y238{bottom:305.484000pt;}
.y209{bottom:308.221333pt;}
.y27{bottom:308.664000pt;}
.y149{bottom:311.145333pt;}
.y101{bottom:311.770667pt;}
.y1b3{bottom:314.758667pt;}
.y237{bottom:317.438667pt;}
.y99{bottom:318.924000pt;}
.y192{bottom:319.082667pt;}
.y167{bottom:319.733333pt;}
.y49{bottom:319.734667pt;}
.y208{bottom:320.265333pt;}
.y26{bottom:324.604000pt;}
.yca{bottom:326.322667pt;}
.y148{bottom:327.085333pt;}
.y100{bottom:327.710667pt;}
.y236{bottom:329.394667pt;}
.y207{bottom:332.220000pt;}
.y98{bottom:334.864000pt;}
.y191{bottom:335.022667pt;}
.y48{bottom:335.674667pt;}
.yc9{bottom:338.978667pt;}
.y25{bottom:340.544000pt;}
.y235{bottom:341.349333pt;}
.yc8{bottom:342.262667pt;}
.y147{bottom:343.025333pt;}
.y1b2{bottom:343.056000pt;}
.y206{bottom:344.174667pt;}
.y97{bottom:350.804000pt;}
.y190{bottom:350.962667pt;}
.yff{bottom:351.348000pt;}
.y47{bottom:351.614667pt;}
.y234{bottom:353.304000pt;}
.y205{bottom:356.218667pt;}
.y24{bottom:356.484000pt;}
.yc7{bottom:358.485333pt;}
.y146{bottom:358.966667pt;}
.y233{bottom:365.260000pt;}
.y18f{bottom:366.902667pt;}
.y96{bottom:367.014667pt;}
.y46{bottom:367.554667pt;}
.y204{bottom:368.173333pt;}
.y23{bottom:372.424000pt;}
.y145{bottom:374.906667pt;}
.y232{bottom:377.214667pt;}
.y1b1{bottom:379.385333pt;}
.y203{bottom:380.129333pt;}
.yfe{bottom:381.088000pt;}
.yc4{bottom:381.220000pt;}
.y18e{bottom:382.844000pt;}
.y95{bottom:382.954667pt;}
.y45{bottom:383.494667pt;}
.yc6{bottom:384.502667pt;}
.yc3{bottom:384.504000pt;}
.y22{bottom:388.365333pt;}
.y166{bottom:389.132000pt;}
.y231{bottom:389.170667pt;}
.y144{bottom:390.846667pt;}
.y202{bottom:392.172000pt;}
.yc5{bottom:392.386667pt;}
.y1b0{bottom:395.325333pt;}
.yfd{bottom:397.028000pt;}
.y18d{bottom:398.784000pt;}
.y94{bottom:398.894667pt;}
.y75{bottom:399.434667pt;}
.y44{bottom:399.436000pt;}
.y230{bottom:401.125333pt;}
.y201{bottom:404.128000pt;}
.y21{bottom:404.305333pt;}
.y165{bottom:405.072000pt;}
.y143{bottom:406.786667pt;}
.y1af{bottom:411.266667pt;}
.yc2{bottom:411.628000pt;}
.yfc{bottom:412.969333pt;}
.y22f{bottom:413.080000pt;}
.y18c{bottom:414.724000pt;}
.y93{bottom:414.834667pt;}
.y43{bottom:415.376000pt;}
.y200{bottom:416.082667pt;}
.y20{bottom:420.245333pt;}
.y164{bottom:421.012000pt;}
.y142{bottom:422.726667pt;}
.y22e{bottom:425.036000pt;}
.y1ae{bottom:427.206667pt;}
.yc1{bottom:427.568000pt;}
.y1ff{bottom:428.038667pt;}
.yfb{bottom:428.909333pt;}
.y18b{bottom:430.664000pt;}
.y92{bottom:430.776000pt;}
.y42{bottom:431.316000pt;}
.y1f{bottom:436.185333pt;}
.y163{bottom:436.953333pt;}
.y22d{bottom:436.990667pt;}
.y141{bottom:438.668000pt;}
.y1fe{bottom:440.081333pt;}
.y1ad{bottom:443.146667pt;}
.yc0{bottom:443.508000pt;}
.yfa{bottom:444.849333pt;}
.y18a{bottom:446.604000pt;}
.y91{bottom:446.716000pt;}
.y41{bottom:447.256000pt;}
.y22c{bottom:448.945333pt;}
.y1fd{bottom:452.037333pt;}
.y1e{bottom:452.125333pt;}
.y162{bottom:452.893333pt;}
.y140{bottom:454.608000pt;}
.ybf{bottom:455.990667pt;}
.y1ac{bottom:459.086667pt;}
.ybe{bottom:459.448000pt;}
.yf9{bottom:460.789333pt;}
.y22b{bottom:460.901333pt;}
.y189{bottom:462.544000pt;}
.y90{bottom:462.656000pt;}
.y40{bottom:463.196000pt;}
.y1fc{bottom:463.992000pt;}
.y1d{bottom:468.065333pt;}
.y161{bottom:468.833333pt;}
.y13f{bottom:470.548000pt;}
.ybd{bottom:471.930667pt;}
.y22a{bottom:472.856000pt;}
.y1ab{bottom:475.026667pt;}
.ybc{bottom:475.389333pt;}
.y1fb{bottom:475.946667pt;}
.yf8{bottom:476.729333pt;}
.y188{bottom:478.485333pt;}
.y8f{bottom:478.596000pt;}
.y3f{bottom:479.136000pt;}
.y1c{bottom:484.006667pt;}
.y160{bottom:484.773333pt;}
.y229{bottom:484.812000pt;}
.y1fa{bottom:487.990667pt;}
.ybb{bottom:488.045333pt;}
.y13e{bottom:490.353333pt;}
.y1aa{bottom:490.968000pt;}
.yba{bottom:491.329333pt;}
.y187{bottom:494.425333pt;}
.y8e{bottom:494.536000pt;}
.y74{bottom:495.076000pt;}
.y3e{bottom:495.077333pt;}
.y228{bottom:496.766667pt;}
.y1f9{bottom:499.945333pt;}
.y15f{bottom:500.713333pt;}
.yf7{bottom:504.474667pt;}
.y1a9{bottom:506.908000pt;}
.yb9{bottom:507.269333pt;}
.y1b{bottom:507.726667pt;}
.y227{bottom:508.721333pt;}
.y186{bottom:510.365333pt;}
.y8d{bottom:510.476000pt;}
.y3d{bottom:511.017333pt;}
.y1f8{bottom:511.901333pt;}
.y13d{bottom:514.508000pt;}
.y15e{bottom:516.653333pt;}
.y226{bottom:520.677333pt;}
.y1a8{bottom:522.848000pt;}
.yb8{bottom:523.209333pt;}
.y1f7{bottom:523.856000pt;}
.y185{bottom:526.305333pt;}
.y8c{bottom:526.686667pt;}
.y73{bottom:526.957333pt;}
.y13c{bottom:530.449333pt;}
.yf6{bottom:532.220000pt;}
.y15d{bottom:532.594667pt;}
.y225{bottom:532.632000pt;}
.y3c{bottom:535.254667pt;}
.y1f6{bottom:535.900000pt;}
.y1a{bottom:537.584000pt;}
.y1a7{bottom:538.788000pt;}
.yb7{bottom:539.149333pt;}
.y184{bottom:542.245333pt;}
.y8b{bottom:542.626667pt;}
.y72{bottom:542.897333pt;}
.y224{bottom:544.586667pt;}
.y13b{bottom:546.389333pt;}
.y3b{bottom:547.209333pt;}
.y1f5{bottom:547.854667pt;}
.yf5{bottom:548.160000pt;}
.y15c{bottom:548.534667pt;}
.y19{bottom:550.868000pt;}
.yb6{bottom:551.632000pt;}
.y1a6{bottom:554.728000pt;}
.yb5{bottom:555.089333pt;}
.y223{bottom:556.542667pt;}
.y183{bottom:558.186667pt;}
.y8a{bottom:558.566667pt;}
.y71{bottom:558.837333pt;}
.y3a{bottom:559.165333pt;}
.y1f4{bottom:559.810667pt;}
.y13a{bottom:562.329333pt;}
.yf4{bottom:564.100000pt;}
.y18{bottom:564.150667pt;}
.y15b{bottom:564.474667pt;}
.y222{bottom:568.497333pt;}
.y1a5{bottom:570.668000pt;}
.y39{bottom:571.120000pt;}
.y1f3{bottom:571.853333pt;}
.y182{bottom:574.126667pt;}
.y89{bottom:574.508000pt;}
.y70{bottom:574.777333pt;}
.y17{bottom:577.434667pt;}
.yb4{bottom:577.824000pt;}
.y139{bottom:578.269333pt;}
.yf3{bottom:580.040000pt;}
.y15a{bottom:580.414667pt;}
.y221{bottom:580.453333pt;}
.yb3{bottom:581.108000pt;}
.y1f2{bottom:583.809333pt;}
.y1a4{bottom:586.609333pt;}
.y181{bottom:590.066667pt;}
.y88{bottom:590.448000pt;}
.y6f{bottom:590.717333pt;}
.y16{bottom:590.718667pt;}
.y220{bottom:592.408000pt;}
.y138{bottom:594.209333pt;}
.y1f1{bottom:595.852000pt;}
.yf2{bottom:595.980000pt;}
.y159{bottom:596.354667pt;}
.y38{bottom:596.358667pt;}
.y1a3{bottom:602.549333pt;}
.y15{bottom:604.001333pt;}
.y21f{bottom:604.362667pt;}
.y180{bottom:606.006667pt;}
.y87{bottom:606.388000pt;}
.y6e{bottom:606.658667pt;}
.yb2{bottom:607.125333pt;}
.y1f0{bottom:607.808000pt;}
.y137{bottom:610.150667pt;}
.yf1{bottom:611.920000pt;}
.y158{bottom:612.294667pt;}
.y21e{bottom:616.318667pt;}
.y14{bottom:617.285333pt;}
.y1a2{bottom:618.489333pt;}
.y1ef{bottom:619.762667pt;}
.y17f{bottom:621.946667pt;}
.y86{bottom:622.328000pt;}
.y6d{bottom:622.598667pt;}
.yb1{bottom:623.065333pt;}
.y136{bottom:626.090667pt;}
.yf0{bottom:627.861333pt;}
.y157{bottom:628.236000pt;}
.y21d{bottom:628.273333pt;}
.y13{bottom:630.568000pt;}
.y1ee{bottom:631.717333pt;}
.y1a1{bottom:634.429333pt;}
.y17e{bottom:637.886667pt;}
.y85{bottom:638.268000pt;}
.y6c{bottom:638.538667pt;}
.yb0{bottom:639.005333pt;}
.y21c{bottom:640.228000pt;}
.y1ed{bottom:643.673333pt;}
.yef{bottom:643.801333pt;}
.y12{bottom:643.852000pt;}
.y156{bottom:644.176000pt;}
.y1a0{bottom:650.369333pt;}
.y135{bottom:650.384000pt;}
.y21b{bottom:652.184000pt;}
.y17d{bottom:653.828000pt;}
.y84{bottom:654.208000pt;}
.y6b{bottom:654.478667pt;}
.yaf{bottom:654.945333pt;}
.y11{bottom:657.136000pt;}
.yee{bottom:659.741333pt;}
.y155{bottom:660.116000pt;}
.y1ec{bottom:664.138667pt;}
.y17c{bottom:669.768000pt;}
.y83{bottom:670.149333pt;}
.y10{bottom:670.418667pt;}
.yae{bottom:670.885333pt;}
.y19f{bottom:675.213333pt;}
.yed{bottom:675.681333pt;}
.y134{bottom:676.056000pt;}
.yf{bottom:683.702667pt;}
.y17b{bottom:685.708000pt;}
.y82{bottom:686.089333pt;}
.y6a{bottom:686.360000pt;}
.yad{bottom:686.826667pt;}
.y1eb{bottom:687.157333pt;}
.yec{bottom:691.621333pt;}
.y154{bottom:691.996000pt;}
.y133{bottom:691.997333pt;}
.ye{bottom:696.986667pt;}
.y1ea{bottom:699.112000pt;}
.y17a{bottom:701.648000pt;}
.y81{bottom:702.029333pt;}
.y69{bottom:702.300000pt;}
.yac{bottom:702.766667pt;}
.y153{bottom:707.936000pt;}
.y132{bottom:707.937333pt;}
.yd{bottom:710.269333pt;}
.y1e9{bottom:711.066667pt;}
.yeb{bottom:713.732000pt;}
.y19e{bottom:715.569333pt;}
.y80{bottom:717.969333pt;}
.y68{bottom:718.240000pt;}
.yab{bottom:718.706667pt;}
.y37{bottom:719.860000pt;}
.y1e8{bottom:723.022667pt;}
.yc{bottom:723.553333pt;}
.y131{bottom:723.877333pt;}
.y179{bottom:725.290667pt;}
.y19d{bottom:727.524000pt;}
.y7f{bottom:733.909333pt;}
.y67{bottom:734.180000pt;}
.yaa{bottom:734.646667pt;}
.yb{bottom:736.837333pt;}
.y178{bottom:737.245333pt;}
.y19c{bottom:739.478667pt;}
.y130{bottom:739.817333pt;}
.yea{bottom:743.472000pt;}
.y1cb{bottom:748.261333pt;}
.y177{bottom:749.200000pt;}
.y7e{bottom:749.849333pt;}
.ya{bottom:750.120000pt;}
.ya9{bottom:750.586667pt;}
.y19b{bottom:751.434667pt;}
.y12f{bottom:755.757333pt;}
.ye9{bottom:759.412000pt;}
.y176{bottom:761.156000pt;}
.y19a{bottom:763.389333pt;}
.y9{bottom:763.404000pt;}
.y1cc{bottom:764.490124pt;}
.y66{bottom:766.060000pt;}
.ya8{bottom:766.526667pt;}
.y12e{bottom:771.697333pt;}
.y199{bottom:775.345333pt;}
.ye8{bottom:775.352000pt;}
.y8{bottom:776.688000pt;}
.y7d{bottom:782.000000pt;}
.y65{bottom:782.001333pt;}
.ya7{bottom:782.468000pt;}
.y16a{bottom:786.082581pt;}
.y152{bottom:787.637333pt;}
.y12d{bottom:787.638667pt;}
.y7{bottom:789.970667pt;}
.y198{bottom:790.488000pt;}
.ye7{bottom:791.293333pt;}
.y7c{bottom:797.940000pt;}
.y64{bottom:797.941333pt;}
.ya6{bottom:798.408000pt;}
.y6{bottom:803.254667pt;}
.ye6{bottom:807.233333pt;}
.y12c{bottom:810.656000pt;}
.y63{bottom:813.881333pt;}
.ya5{bottom:814.348000pt;}
.y197{bottom:815.328000pt;}
.y5{bottom:816.537333pt;}
.y12b{bottom:822.612000pt;}
.y4{bottom:829.821333pt;}
.y196{bottom:831.268000pt;}
.ye5{bottom:832.494667pt;}
.ya4{bottom:835.138667pt;}
.ye4{bottom:841.606667pt;}
.y62{bottom:845.761333pt;}
.y195{bottom:847.208000pt;}
.y113{bottom:847.850667pt;}
.y61{bottom:861.701333pt;}
.y114{bottom:864.113831pt;}
.y3{bottom:874.312000pt;}
.ye3{bottom:875.256000pt;}
.y7b{bottom:877.641333pt;}
.y60{bottom:877.642667pt;}
.y1ca{bottom:878.158667pt;}
.y1c9{bottom:890.114667pt;}
.ye2{bottom:891.196000pt;}
.y7a{bottom:893.581333pt;}
.y5f{bottom:893.582667pt;}
.y1c8{bottom:902.069333pt;}
.ye1{bottom:907.136000pt;}
.y5e{bottom:909.522667pt;}
.y1c7{bottom:914.024000pt;}
.y2{bottom:916.154667pt;}
.ye0{bottom:923.076000pt;}
.y5d{bottom:925.462667pt;}
.y1c6{bottom:929.168000pt;}
.ydf{bottom:934.978667pt;}
.yde{bottom:939.016000pt;}
.y1c5{bottom:941.122667pt;}
.y5c{bottom:941.402667pt;}
.y1{bottom:942.722667pt;}
.ydd{bottom:953.305333pt;}
.y5b{bottom:957.342667pt;}
.y1c4{bottom:965.962667pt;}
.y79{bottom:973.282667pt;}
.y5a{bottom:973.284000pt;}
.y1c3{bottom:981.902667pt;}
.y58{bottom:998.400000pt;}
.y57{bottom:1011.200000pt;}
.h18{height:2.125355pt;}
.h32{height:11.203920pt;}
.h25{height:12.334447pt;}
.h27{height:12.537483pt;}
.h26{height:12.569075pt;}
.h28{height:12.772111pt;}
.h2d{height:17.021975pt;}
.h2e{height:25.778933pt;}
.h2f{height:25.779692pt;}
.h13{height:25.812358pt;}
.h1d{height:26.519037pt;}
.h30{height:30.435155pt;}
.h7{height:31.880400pt;}
.h8{height:33.000000pt;}
.h4{height:33.474560pt;}
.h3{height:34.000589pt;}
.h2a{height:36.874903pt;}
.h5{height:38.043849pt;}
.h6{height:39.850400pt;}
.h2{height:41.147017pt;}
.ha{height:41.178747pt;}
.hc{height:41.322400pt;}
.h11{height:41.327733pt;}
.h2b{height:44.576981pt;}
.h9{height:45.092358pt;}
.hf{height:45.097692pt;}
.hd{height:47.748358pt;}
.h16{height:49.572358pt;}
.hb{height:49.577692pt;}
.h1b{height:49.815037pt;}
.h12{height:49.817692pt;}
.h19{height:49.820370pt;}
.h15{height:49.823025pt;}
.he{height:52.986400pt;}
.h10{height:53.679733pt;}
.h1a{height:55.999733pt;}
.h1e{height:57.328080pt;}
.h14{height:57.844358pt;}
.h29{height:58.545703pt;}
.h1{height:59.510080pt;}
.h21{height:65.964370pt;}
.h23{height:73.322903pt;}
.h22{height:75.797067pt;}
.h1f{height:77.125413pt;}
.h1c{height:93.192021pt;}
.h31{height:105.866145pt;}
.h20{height:115.618688pt;}
.h24{height:118.467017pt;}
.h17{height:143.007025pt;}
.h2c{height:203.142912pt;}
.h0{height:1056.000000pt;}
.w3{width:141.120000pt;}
.w1{width:157.917013pt;}
.w2{width:288.953280pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5d{left:4.541292pt;}
.x58{left:6.641208pt;}
.x42{left:8.606759pt;}
.x3c{left:9.781690pt;}
.x40{left:11.162336pt;}
.x38{left:12.337267pt;}
.x41{left:13.629789pt;}
.x39{left:14.687269pt;}
.x37{left:16.890353pt;}
.x59{left:17.823708pt;}
.x3b{left:19.945201pt;}
.x4a{left:21.728314pt;}
.x49{left:25.255100pt;}
.x5b{left:31.998645pt;}
.x48{left:35.997547pt;}
.x57{left:68.906250pt;}
.x5{left:72.000000pt;}
.x3a{left:77.107917pt;}
.x7{left:83.954667pt;}
.x4{left:85.284000pt;}
.x47{left:90.722667pt;}
.x63{left:96.205333pt;}
.x13{left:99.945333pt;}
.x5e{left:101.482605pt;}
.x1e{left:104.309333pt;}
.x16{left:106.521333pt;}
.x12{left:109.596000pt;}
.x1c{left:110.734667pt;}
.x43{left:113.561720pt;}
.x1{left:114.480000pt;}
.x14{left:117.334667pt;}
.x1f{left:120.961333pt;}
.x5a{left:127.207458pt;}
.x3f{left:139.264124pt;}
.x55{left:142.738667pt;}
.x17{left:144.158667pt;}
.x45{left:146.042667pt;}
.x54{left:159.425333pt;}
.xb{left:165.617333pt;}
.x20{left:169.501333pt;}
.x1d{left:173.209333pt;}
.xf{left:175.842667pt;}
.x6{left:181.573333pt;}
.x2{left:187.526667pt;}
.x46{left:190.172000pt;}
.x26{left:194.588000pt;}
.x62{left:196.470667pt;}
.x25{left:198.046667pt;}
.x27{left:201.714667pt;}
.x21{left:204.830667pt;}
.x18{left:210.042667pt;}
.x22{left:212.545333pt;}
.x19{left:215.640000pt;}
.x52{left:217.693333pt;}
.x23{left:226.232000pt;}
.x10{left:235.018667pt;}
.x1a{left:237.956000pt;}
.x56{left:248.278667pt;}
.x3{left:253.364000pt;}
.x4b{left:260.901073pt;}
.x28{left:274.384000pt;}
.x1b{left:276.905333pt;}
.x24{left:287.696000pt;}
.x11{left:290.134667pt;}
.x5c{left:311.445333pt;}
.x36{left:319.993333pt;}
.x51{left:382.720000pt;}
.x3d{left:389.234667pt;}
.x15{left:392.802667pt;}
.xe{left:396.138667pt;}
.xa{left:417.600000pt;}
.x4f{left:426.272000pt;}
.x4d{left:429.192000pt;}
.xc{left:430.884000pt;}
.x2f{left:440.013333pt;}
.x53{left:441.021333pt;}
.xd{left:447.004000pt;}
.x2a{left:454.058667pt;}
.x5f{left:481.093333pt;}
.x8{left:488.565333pt;}
.x3e{left:501.161333pt;}
.x31{left:509.913333pt;}
.x2b{left:515.174667pt;}
.x50{left:525.600000pt;}
.x2e{left:531.774667pt;}
.x4e{left:548.582667pt;}
.x4c{left:557.710667pt;}
.x32{left:566.670667pt;}
.x9{left:569.382667pt;}
.x44{left:571.029333pt;}
.x2c{left:583.336000pt;}
.x60{left:586.318667pt;}
.x30{left:591.962667pt;}
.x33{left:610.929333pt;}
.x34{left:618.101333pt;}
.x35{left:642.720000pt;}
.x61{left:649.486667pt;}
.x29{left:723.722667pt;}
.x2d{left:727.026667pt;}
}




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