
    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_ea9acaa88d984d61d4532fad.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_f85bdc24b7cd7b2b62d210b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.114258;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_e130f091b972713022161ad6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.143066;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_4cff6ff30c19fc90d61c25d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132324;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_d703c334e729978cb2e1ac3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125000;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_2364ecb2258eab0e988bc831.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_3a6cc0881ea4aa7de67ed971.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.147461;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_3eae47d0150d2955eb238f4a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b51ecb5955918cfe7f78260a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.054688;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_4d97cb2383974844ff5abc61.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c089ed568a5338ebdc06e4b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f36253a1ff60587902d9311d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e5a6aa73f55e026acba25876.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916000;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_bf5e51c3b947ea89ee0f4246.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2d35427ff05de2dfaefc0ec0.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_02e7f2ee1bda5fa66d0eb619.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910000;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_5822aec5ef44d5521bd777e6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7372ec0032f4a5338299acfc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.858000;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_b01616a3f3a9f391549cfd8d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;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_d6dfe3bb7acc361d031da165.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_4f40240f8fab2001f2bfaf8e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.831000;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_508228664141a8ef73a20fa8.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_fdc9aea36b9e21fca434f722.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.663000;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_7bcbf5d1612dd1a07449c889.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.710000;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_b3d86442522c3e82f07e4eb3.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_364ec9361f9185dd3cb35a36.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_60a7119297daf5d46dd1f7ec.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.665000;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_1d02abe7d2ee708b3bc63471.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.806000;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_b0b02e627f5a1c22a8d12335.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.637000;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_f69d92bcdc0703ded7aa38b3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.945143;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);}
.vc{vertical-align:-32.862269px;}
.v2{vertical-align:-8.964705px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:6.801000px;}
.v6{vertical-align:8.966400px;}
.v1e{vertical-align:13.434000px;}
.v9{vertical-align:17.260800px;}
.vf{vertical-align:20.235000px;}
.v4{vertical-align:21.684869px;}
.vd{vertical-align:22.843138px;}
.v10{vertical-align:26.868600px;}
.vb{vertical-align:32.026200px;}
.v11{vertical-align:33.669000px;}
.v1{vertical-align:39.240000px;}
.v3{vertical-align:40.420740px;}
.v23{vertical-align:45.826200px;}
.v12{vertical-align:47.103600px;}
.v24{vertical-align:52.471200px;}
.v13{vertical-align:53.736600px;}
.v5{vertical-align:56.768285px;}
.v25{vertical-align:58.942800px;}
.v14{vertical-align:60.538200px;}
.v8{vertical-align:62.103000px;}
.v26{vertical-align:65.587800px;}
.v15{vertical-align:67.171200px;}
.v27{vertical-align:72.064800px;}
.v16{vertical-align:73.978200px;}
.v28{vertical-align:78.703800px;}
.v17{vertical-align:80.611200px;}
.v7{vertical-align:84.247218px;}
.v18{vertical-align:87.412800px;}
.v29{vertical-align:91.820400px;}
.v19{vertical-align:94.045800px;}
.v2a{vertical-align:98.297400px;}
.v1a{vertical-align:100.846800px;}
.v2b{vertical-align:104.942400px;}
.v1f{vertical-align:107.473800px;}
.v2c{vertical-align:111.414000px;}
.v20{vertical-align:113.184000px;}
.v1b{vertical-align:114.280800px;}
.v2d{vertical-align:118.059000px;}
.v1c{vertical-align:120.914400px;}
.va{vertical-align:125.229606px;}
.v21{vertical-align:126.510000px;}
.v1d{vertical-align:127.715400px;}
.v2e{vertical-align:131.175600px;}
.v22{vertical-align:133.257000px;}
.lsd5{letter-spacing:-5.318407px;}
.lsd7{letter-spacing:-4.581681px;}
.lsa5{letter-spacing:-3.298189px;}
.ls112{letter-spacing:-2.796331px;}
.ls113{letter-spacing:-2.790954px;}
.ls10f{letter-spacing:-2.780199px;}
.lse6{letter-spacing:-1.637145px;}
.lse{letter-spacing:-0.479424px;}
.ls3e{letter-spacing:-0.410177px;}
.ls1d{letter-spacing:-0.200711px;}
.ls4e{letter-spacing:-0.140758px;}
.lsc{letter-spacing:-0.121728px;}
.ls14{letter-spacing:-0.087700px;}
.lsd{letter-spacing:-0.081853px;}
.lsf{letter-spacing:-0.076006px;}
.ls9{letter-spacing:-0.074781px;}
.ls9f{letter-spacing:-0.071700px;}
.ls8{letter-spacing:-0.065433px;}
.ls10{letter-spacing:-0.052620px;}
.ls19{letter-spacing:-0.046773px;}
.ls42{letter-spacing:-0.041901px;}
.ls40{letter-spacing:-0.041855px;}
.ls15{letter-spacing:-0.040926px;}
.ls11{letter-spacing:-0.035080px;}
.ls13{letter-spacing:-0.029233px;}
.ls12{letter-spacing:-0.023387px;}
.lsb{letter-spacing:-0.019220px;}
.ls18{letter-spacing:-0.017540px;}
.ls41{letter-spacing:-0.012556px;}
.ls17{letter-spacing:-0.011693px;}
.ls1a{letter-spacing:-0.005847px;}
.ls43{letter-spacing:-0.004185px;}
.ls7{letter-spacing:0.000000px;}
.ls75{letter-spacing:0.004182px;}
.ls6e{letter-spacing:0.005975px;}
.ls6b{letter-spacing:0.008384px;}
.ls99{letter-spacing:0.008764px;}
.ls116{letter-spacing:0.010755px;}
.ls95{letter-spacing:0.011330px;}
.ls4d{letter-spacing:0.011950px;}
.ls35{letter-spacing:0.012556px;}
.ls38{letter-spacing:0.012570px;}
.ls8b{letter-spacing:0.013365px;}
.ls8f{letter-spacing:0.014911px;}
.ls10d{letter-spacing:0.016133px;}
.ls74{letter-spacing:0.016730px;}
.ls36{letter-spacing:0.016742px;}
.ls2b{letter-spacing:0.017925px;}
.ls28{letter-spacing:0.021510px;}
.ls4{letter-spacing:0.023387px;}
.ls1f{letter-spacing:0.023900px;}
.ls66{letter-spacing:0.023976px;}
.ls9e{letter-spacing:0.025095px;}
.ls34{letter-spacing:0.025113px;}
.ls94{letter-spacing:0.026093px;}
.ls25{letter-spacing:0.026888px;}
.ls64{letter-spacing:0.026999px;}
.ls5f{letter-spacing:0.027180px;}
.ls2{letter-spacing:0.028008px;}
.ls27{letter-spacing:0.028680px;}
.ls67{letter-spacing:0.029272px;}
.ls60{letter-spacing:0.029277px;}
.ls39{letter-spacing:0.029298px;}
.ls6f{letter-spacing:0.029751px;}
.ls21{letter-spacing:0.029875px;}
.ls7d{letter-spacing:0.029909px;}
.ls22{letter-spacing:0.032265px;}
.ls97{letter-spacing:0.032761px;}
.ls51{letter-spacing:0.033138px;}
.ls8d{letter-spacing:0.033361px;}
.ls3a{letter-spacing:0.033484px;}
.ls1e{letter-spacing:0.034416px;}
.ls52{letter-spacing:0.034678px;}
.ls6c{letter-spacing:0.034851px;}
.ls1{letter-spacing:0.035010px;}
.ls20{letter-spacing:0.035850px;}
.ls69{letter-spacing:0.036287px;}
.ls57{letter-spacing:0.036295px;}
.ls26{letter-spacing:0.037643px;}
.ls3b{letter-spacing:0.041825px;}
.ls37{letter-spacing:0.041855px;}
.ls9c{letter-spacing:0.042456px;}
.ls23{letter-spacing:0.043020px;}
.lsb1{letter-spacing:0.043027px;}
.lsc1{letter-spacing:0.045070px;}
.ls3d{letter-spacing:0.046040px;}
.ls5c{letter-spacing:0.046367px;}
.lsae{letter-spacing:0.047096px;}
.ls5e{letter-spacing:0.047800px;}
.ls24{letter-spacing:0.048398px;}
.ls92{letter-spacing:0.049870px;}
.ls61{letter-spacing:0.050219px;}
.ls3{letter-spacing:0.051254px;}
.ls30{letter-spacing:0.053775px;}
.ls3f{letter-spacing:0.058597px;}
.ls88{letter-spacing:0.059750px;}
.ls6{letter-spacing:0.141791px;}
.ls4f{letter-spacing:0.147899px;}
.ls5{letter-spacing:0.151230px;}
.ls16{letter-spacing:0.321565px;}
.ls1b{letter-spacing:0.350798px;}
.ls111{letter-spacing:0.709838px;}
.ls73{letter-spacing:1.664834px;}
.ls78{letter-spacing:1.672840px;}
.ls63{letter-spacing:2.162943px;}
.lsa7{letter-spacing:2.168918px;}
.lsb3{letter-spacing:2.288417px;}
.ls6d{letter-spacing:2.990381px;}
.lscd{letter-spacing:2.990850px;}
.lsce{letter-spacing:2.991450px;}
.ls8c{letter-spacing:2.995781px;}
.ls58{letter-spacing:2.996381px;}
.ls96{letter-spacing:2.996981px;}
.lsbf{letter-spacing:3.000492px;}
.lsbd{letter-spacing:3.001092px;}
.lsb2{letter-spacing:4.504841px;}
.ls3c{letter-spacing:4.690359px;}
.ls2f{letter-spacing:4.869609px;}
.ls29{letter-spacing:6.124354px;}
.ls72{letter-spacing:7.175951px;}
.lse2{letter-spacing:7.205826px;}
.lsfa{letter-spacing:9.222515px;}
.lsc9{letter-spacing:9.488268px;}
.lsca{letter-spacing:9.494243px;}
.lse1{letter-spacing:9.685443px;}
.lsbc{letter-spacing:9.978217px;}
.lsc3{letter-spacing:9.984192px;}
.ls83{letter-spacing:10.002117px;}
.ls80{letter-spacing:10.008092px;}
.lsa1{letter-spacing:10.026016px;}
.lsc6{letter-spacing:11.471962px;}
.lscf{letter-spacing:12.298480px;}
.lsd1{letter-spacing:12.303857px;}
.lsd0{letter-spacing:12.325368px;}
.lsd2{letter-spacing:12.330745px;}
.lsf3{letter-spacing:12.583490px;}
.lsf9{letter-spacing:12.899982px;}
.ls90{letter-spacing:12.951581px;}
.ls93{letter-spacing:12.952181px;}
.lsaa{letter-spacing:13.300305px;}
.ls91{letter-spacing:13.312255px;}
.ls7a{letter-spacing:13.318230px;}
.ls77{letter-spacing:13.324205px;}
.ls106{letter-spacing:13.951578px;}
.ls87{letter-spacing:15.194374px;}
.lse4{letter-spacing:15.347556px;}
.ls103{letter-spacing:15.369066px;}
.lse0{letter-spacing:15.401332px;}
.ls115{letter-spacing:15.783139px;}
.ls86{letter-spacing:16.000996px;}
.lsf4{letter-spacing:16.046639px;}
.lsf2{letter-spacing:16.095037px;}
.ls8e{letter-spacing:16.274981px;}
.ls76{letter-spacing:16.276854px;}
.lsc7{letter-spacing:16.598494px;}
.ls4b{letter-spacing:16.604469px;}
.ls7b{letter-spacing:16.610444px;}
.ls55{letter-spacing:16.628369px;}
.ls56{letter-spacing:16.634344px;}
.ls2e{letter-spacing:16.640319px;}
.ls4c{letter-spacing:16.658244px;}
.ls59{letter-spacing:16.664219px;}
.ls65{letter-spacing:16.825544px;}
.lse5{letter-spacing:16.861394px;}
.ls79{letter-spacing:17.289746px;}
.ls102{letter-spacing:17.294233px;}
.ls84{letter-spacing:17.889090px;}
.lsba{letter-spacing:18.098214px;}
.ls108{letter-spacing:18.205764px;}
.lsf6{letter-spacing:18.493429px;}
.lsc4{letter-spacing:18.510488px;}
.lsf7{letter-spacing:18.737537px;}
.lsb4{letter-spacing:18.785337px;}
.lsf5{letter-spacing:18.869858px;}
.lse3{letter-spacing:18.880937px;}
.ls33{letter-spacing:18.892887px;}
.ls31{letter-spacing:19.209561px;}
.ls2d{letter-spacing:19.227486px;}
.ls47{letter-spacing:19.588433px;}
.ls70{letter-spacing:19.597181px;}
.ls104{letter-spacing:19.603909px;}
.ls10a{letter-spacing:19.645734px;}
.ls7c{letter-spacing:19.920583px;}
.ls8a{letter-spacing:19.944483px;}
.ls71{letter-spacing:19.968383px;}
.ls107{letter-spacing:20.344807px;}
.ls54{letter-spacing:20.775005px;}
.ls10c{letter-spacing:20.852680px;}
.ls32{letter-spacing:21.342629px;}
.ls10b{letter-spacing:21.748927px;}
.ls105{letter-spacing:21.886352px;}
.lsb8{letter-spacing:21.934152px;}
.ls5b{letter-spacing:22.071576px;}
.ls110{letter-spacing:22.128659px;}
.ls114{letter-spacing:22.397537px;}
.ls7e{letter-spacing:22.872223px;}
.ls7f{letter-spacing:22.884173px;}
.ls6a{letter-spacing:22.907381px;}
.ls46{letter-spacing:22.910633px;}
.ls68{letter-spacing:22.913981px;}
.lsa6{letter-spacing:23.350222px;}
.ls82{letter-spacing:23.362172px;}
.lsa9{letter-spacing:23.529471px;}
.ls81{letter-spacing:23.696771px;}
.ls53{letter-spacing:23.747381px;}
.ls48{letter-spacing:23.816270px;}
.lsb6{letter-spacing:23.870045px;}
.ls85{letter-spacing:23.989545px;}
.ls44{letter-spacing:24.443643px;}
.lsa4{letter-spacing:24.509368px;}
.lsd3{letter-spacing:24.545218px;}
.ls10e{letter-spacing:24.887348px;}
.lsc0{letter-spacing:24.957491px;}
.lsbb{letter-spacing:24.999316px;}
.lsa3{letter-spacing:25.202466px;}
.lsc2{letter-spacing:25.208441px;}
.lsbe{letter-spacing:25.221492px;}
.lsad{letter-spacing:25.465365px;}
.lsac{letter-spacing:25.477315px;}
.lsa8{letter-spacing:25.668514px;}
.ls89{letter-spacing:26.140181px;}
.ls9b{letter-spacing:26.738035px;}
.lsb5{letter-spacing:26.822292px;}
.lsb7{letter-spacing:26.828892px;}
.lsc8{letter-spacing:27.042759px;}
.ls50{letter-spacing:27.263834px;}
.lsb0{letter-spacing:27.598433px;}
.lsab{letter-spacing:27.616358px;}
.lsa2{letter-spacing:27.652207px;}
.ls2c{letter-spacing:27.670132px;}
.lsb9{letter-spacing:28.010706px;}
.lsaf{letter-spacing:28.241954px;}
.lsc5{letter-spacing:28.745629px;}
.lsa0{letter-spacing:29.444701px;}
.ls9a{letter-spacing:29.678981px;}
.ls9d{letter-spacing:29.684381px;}
.lsf8{letter-spacing:30.137799px;}
.lsfb{letter-spacing:30.161699px;}
.lsd4{letter-spacing:30.281199px;}
.ls109{letter-spacing:30.350949px;}
.ls101{letter-spacing:30.377836px;}
.ls45{letter-spacing:30.986246px;}
.ls5d{letter-spacing:32.433554px;}
.ls62{letter-spacing:33.916241px;}
.ls2a{letter-spacing:36.668452px;}
.lsf0{letter-spacing:41.554344px;}
.lsee{letter-spacing:41.554944px;}
.lsed{letter-spacing:41.560344px;}
.lsef{letter-spacing:41.560944px;}
.lsf1{letter-spacing:41.728344px;}
.lsec{letter-spacing:42.212270px;}
.lse8{letter-spacing:42.212870px;}
.lse9{letter-spacing:42.218270px;}
.lse7{letter-spacing:42.218870px;}
.lseb{letter-spacing:42.219470px;}
.lsfd{letter-spacing:42.377902px;}
.lsff{letter-spacing:42.383902px;}
.lsfc{letter-spacing:42.384502px;}
.lsea{letter-spacing:42.386870px;}
.lsfe{letter-spacing:42.390502px;}
.ls100{letter-spacing:42.552502px;}
.lsda{letter-spacing:42.558197px;}
.lsde{letter-spacing:42.558530px;}
.lsdc{letter-spacing:42.559130px;}
.lsd8{letter-spacing:42.564197px;}
.lsdd{letter-spacing:42.564530px;}
.lsd9{letter-spacing:42.564797px;}
.lsdb{letter-spacing:42.732197px;}
.lsdf{letter-spacing:42.732530px;}
.lscb{letter-spacing:53.474457px;}
.lscc{letter-spacing:53.485212px;}
.ls1c{letter-spacing:60.109306px;}
.lsd6{letter-spacing:128.346225px;}
.ls49{letter-spacing:172.390123px;}
.ls5a{letter-spacing:643.923595px;}
.ls4a{letter-spacing:673.499746px;}
.ls98{letter-spacing:795.364781px;}
.ls0{letter-spacing:1585.215000px;}
.lsa{letter-spacing:1645.353340px;}
.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;}
}
.ws127{word-spacing:-155.234025px;}
.ws10c{word-spacing:-60.156099px;}
.ws17f{word-spacing:-60.036599px;}
.wsb1{word-spacing:-59.319601px;}
.wse5{word-spacing:-57.885606px;}
.wsb4{word-spacing:-57.527107px;}
.ws198{word-spacing:-57.238749px;}
.wsb6{word-spacing:-55.077366px;}
.wsfa{word-spacing:-54.874216px;}
.ws105{word-spacing:-54.420118px;}
.wsbe{word-spacing:-54.384268px;}
.wsc4{word-spacing:-53.225122px;}
.wsda{word-spacing:-51.809052px;}
.ws1af{word-spacing:-51.775148px;}
.ws19c{word-spacing:-51.623827px;}
.ws19f{word-spacing:-50.727580px;}
.ws19b{word-spacing:-49.520634px;}
.ws1f7{word-spacing:-49.285337px;}
.ws1cb{word-spacing:-49.016459px;}
.wsea{word-spacing:-47.973114px;}
.ws14a{word-spacing:-46.736294px;}
.wsa9{word-spacing:-46.539119px;}
.ws93{word-spacing:-46.533144px;}
.wsc7{word-spacing:-45.875896px;}
.ws168{word-spacing:-45.757658px;}
.ws16a{word-spacing:-45.381229px;}
.wsc8{word-spacing:-43.187155px;}
.ws167{word-spacing:-42.934439px;}
.ws207{word-spacing:-42.670939px;}
.ws141{word-spacing:-42.235356px;}
.wsfe{word-spacing:-39.853117px;}
.wsb5{word-spacing:-29.922700px;}
.ws94{word-spacing:-29.892825px;}
.wsc1{word-spacing:-29.874900px;}
.ws19d{word-spacing:-28.124231px;}
.ws135{word-spacing:-26.909310px;}
.wsc2{word-spacing:-26.576711px;}
.ws12b{word-spacing:-22.306119px;}
.ws11d{word-spacing:-20.518081px;}
.ws146{word-spacing:-20.350782px;}
.ws115{word-spacing:-20.040083px;}
.wsc0{word-spacing:-20.004233px;}
.ws79{word-spacing:-19.968383px;}
.wsf5{word-spacing:-19.956433px;}
.wsfb{word-spacing:-19.944483px;}
.ws109{word-spacing:-19.920583px;}
.ws6d{word-spacing:-19.908633px;}
.ws95{word-spacing:-19.884733px;}
.ws86{word-spacing:-16.634344px;}
.wsc9{word-spacing:-16.622394px;}
.ws52{word-spacing:-16.287795px;}
.ws91{word-spacing:-16.275846px;}
.ws1aa{word-spacing:-15.558848px;}
.ws152{word-spacing:-15.451298px;}
.ws1a2{word-spacing:-15.092799px;}
.wsca{word-spacing:-15.033050px;}
.ws92{word-spacing:-14.841850px;}
.ws87{word-spacing:-14.782101px;}
.ws129{word-spacing:-14.659229px;}
.ws12d{word-spacing:-14.653851px;}
.wsef{word-spacing:-14.602851px;}
.wsf2{word-spacing:-14.584926px;}
.ws150{word-spacing:-14.578951px;}
.wsaa{word-spacing:-14.555051px;}
.ws0{word-spacing:-14.485639px;}
.wsac{word-spacing:-14.435552px;}
.ws53{word-spacing:-14.423602px;}
.ws184{word-spacing:-14.196552px;}
.ws55{word-spacing:-14.065103px;}
.ws66{word-spacing:-13.766354px;}
.ws153{word-spacing:-13.742454px;}
.ws11c{word-spacing:-13.718554px;}
.ws70{word-spacing:-13.658804px;}
.ws2{word-spacing:-13.651904px;}
.ws112{word-spacing:-13.646854px;}
.ws1a6{word-spacing:-13.640879px;}
.ws186{word-spacing:-13.479555px;}
.ws54{word-spacing:-13.407855px;}
.ws36{word-spacing:-13.406257px;}
.wsff{word-spacing:-13.383955px;}
.ws14c{word-spacing:-13.336155px;}
.ws3{word-spacing:-13.301106px;}
.ws1{word-spacing:-13.248486px;}
.wsbb{word-spacing:-13.228606px;}
.ws154{word-spacing:-13.186781px;}
.ws156{word-spacing:-13.168856px;}
.ws149{word-spacing:-13.061306px;}
.ws96{word-spacing:-13.013506px;}
.ws97{word-spacing:-13.001556px;}
.ws200{word-spacing:-12.981430px;}
.ws63{word-spacing:-12.953757px;}
.ws7f{word-spacing:-12.882057px;}
.ws37{word-spacing:-12.803970px;}
.ws145{word-spacing:-12.762557px;}
.ws159{word-spacing:-12.750607px;}
.ws1d6{word-spacing:-12.717929px;}
.ws1db{word-spacing:-12.696419px;}
.ws81{word-spacing:-12.690858px;}
.ws5f{word-spacing:-12.619158px;}
.ws7d{word-spacing:-12.583308px;}
.wsd4{word-spacing:-12.565383px;}
.wsad{word-spacing:-12.511608px;}
.wsf4{word-spacing:-12.475758px;}
.wsf7{word-spacing:-12.463808px;}
.wsf8{word-spacing:-12.445883px;}
.ws157{word-spacing:-12.439908px;}
.ws1ab{word-spacing:-12.404058px;}
.ws1ec{word-spacing:-12.363010px;}
.ws30{word-spacing:-12.260837px;}
.wse1{word-spacing:-12.260659px;}
.ws18c{word-spacing:-12.224809px;}
.ws18f{word-spacing:-12.212859px;}
.ws1c2{word-spacing:-12.147908px;}
.ws1ba{word-spacing:-12.029602px;}
.ws6b{word-spacing:-12.021660px;}
.wsab{word-spacing:-12.003735px;}
.ws35{word-spacing:-11.981204px;}
.ws222{word-spacing:-11.975826px;}
.ws14f{word-spacing:-11.973860px;}
.ws11e{word-spacing:-11.926060px;}
.ws11f{word-spacing:-11.902160px;}
.ws147{word-spacing:-11.890210px;}
.ws185{word-spacing:-11.866310px;}
.ws8d{word-spacing:-11.854360px;}
.ws90{word-spacing:-11.848385px;}
.wse9{word-spacing:-11.842410px;}
.ws8e{word-spacing:-11.824485px;}
.ws51{word-spacing:-11.806560px;}
.ws151{word-spacing:-11.746811px;}
.ws116{word-spacing:-11.699011px;}
.wsdb{word-spacing:-11.687061px;}
.ws77{word-spacing:-11.507811px;}
.ws13f{word-spacing:-11.443448px;}
.ws83{word-spacing:-11.364412px;}
.ws43{word-spacing:-11.316612px;}
.ws5e{word-spacing:-11.256862px;}
.ws17d{word-spacing:-11.191138px;}
.ws205{word-spacing:-11.169192px;}
.ws100{word-spacing:-11.137363px;}
.ws42{word-spacing:-10.970063px;}
.ws67{word-spacing:-10.958113px;}
.ws118{word-spacing:-10.910313px;}
.ws187{word-spacing:-10.898364px;}
.ws1f4{word-spacing:-10.889559px;}
.ws80{word-spacing:-10.790814px;}
.wsf1{word-spacing:-10.778864px;}
.ws61{word-spacing:-10.766914px;}
.ws6e{word-spacing:-10.748989px;}
.ws6c{word-spacing:-10.731064px;}
.ws6f{word-spacing:-10.701189px;}
.wsae{word-spacing:-10.623514px;}
.wsd5{word-spacing:-10.611564px;}
.ws1b4{word-spacing:-10.502375px;}
.ws143{word-spacing:-10.462190px;}
.ws1b2{word-spacing:-10.421711px;}
.wse7{word-spacing:-10.372565px;}
.ws3a{word-spacing:-10.351803px;}
.ws16e{word-spacing:-10.335670px;}
.ws1ff{word-spacing:-10.330293px;}
.ws181{word-spacing:-10.253066px;}
.ws1a3{word-spacing:-10.241116px;}
.ws182{word-spacing:-10.235141px;}
.ws183{word-spacing:-10.229166px;}
.ws16f{word-spacing:-10.217364px;}
.ws126{word-spacing:-10.206609px;}
.ws16d{word-spacing:-10.163588px;}
.ws1f1{word-spacing:-10.099058px;}
.ws119{word-spacing:-10.067841px;}
.ws48{word-spacing:-10.049916px;}
.ws29{word-spacing:-10.037966px;}
.wscd{word-spacing:-10.031991px;}
.wsba{word-spacing:-10.026016px;}
.ws64{word-spacing:-10.014066px;}
.ws148{word-spacing:-10.008091px;}
.ws28{word-spacing:-10.002117px;}
.ws88{word-spacing:-9.996142px;}
.ws82{word-spacing:-9.990167px;}
.ws5a{word-spacing:-9.978217px;}
.wsaf{word-spacing:-9.960292px;}
.wsd7{word-spacing:-9.954317px;}
.ws57{word-spacing:-9.942367px;}
.ws46{word-spacing:-9.930417px;}
.ws27{word-spacing:-9.918467px;}
.ws98{word-spacing:-9.912492px;}
.ws7e{word-spacing:-9.882617px;}
.ws1f8{word-spacing:-9.771027px;}
.ws4b{word-spacing:-9.715317px;}
.ws8f{word-spacing:-9.697393px;}
.ws4c{word-spacing:-9.655568px;}
.ws1f9{word-spacing:-9.561302px;}
.ws1fb{word-spacing:-9.534414px;}
.ws211{word-spacing:-9.529036px;}
.ws1ed{word-spacing:-9.512904px;}
.ws208{word-spacing:-9.507526px;}
.ws144{word-spacing:-9.416568px;}
.ws1ef{word-spacing:-9.373087px;}
.ws1cd{word-spacing:-9.244026px;}
.ws210{word-spacing:-9.211760px;}
.wsa6{word-spacing:-9.207444px;}
.ws20e{word-spacing:-9.206383px;}
.ws155{word-spacing:-9.201469px;}
.wsa5{word-spacing:-9.165619px;}
.wsa2{word-spacing:-9.153669px;}
.wsa4{word-spacing:-9.141719px;}
.ws1be{word-spacing:-9.125719px;}
.ws1d5{word-spacing:-9.114964px;}
.wsa0{word-spacing:-9.105870px;}
.ws49{word-spacing:-9.093920px;}
.ws1a0{word-spacing:-9.058070px;}
.ws1d3{word-spacing:-9.050433px;}
.ws19e{word-spacing:-9.046120px;}
.ws1a5{word-spacing:-8.998320px;}
.ws1a8{word-spacing:-8.938570px;}
.ws1fe{word-spacing:-8.889107px;}
.ws4a{word-spacing:-8.819070px;}
.ws20c{word-spacing:-8.803066px;}
.ws1b1{word-spacing:-8.776178px;}
.ws15a{word-spacing:-8.639821px;}
.ws2e{word-spacing:-8.566453px;}
.ws121{word-spacing:-8.561076px;}
.ws2b{word-spacing:-8.555698px;}
.ws17a{word-spacing:-8.550320px;}
.ws140{word-spacing:-8.544943px;}
.ws2d{word-spacing:-8.539565px;}
.ws190{word-spacing:-8.528810px;}
.ws169{word-spacing:-8.523433px;}
.ws199{word-spacing:-8.518055px;}
.ws1b9{word-spacing:-8.512677px;}
.ws16b{word-spacing:-8.507300px;}
.ws1b5{word-spacing:-8.501922px;}
.ws2a{word-spacing:-8.496545px;}
.ws1cc{word-spacing:-8.491167px;}
.ws9b{word-spacing:-8.485790px;}
.ws177{word-spacing:-8.480412px;}
.ws1df{word-spacing:-8.475035px;}
.ws103{word-spacing:-8.469657px;}
.wsf6{word-spacing:-8.460572px;}
.ws172{word-spacing:-8.458902px;}
.ws3d{word-spacing:-8.453524px;}
.ws2c{word-spacing:-8.448147px;}
.ws72{word-spacing:-8.442769px;}
.ws41{word-spacing:-8.400822px;}
.ws59{word-spacing:-8.376922px;}
.wse6{word-spacing:-8.341072px;}
.ws20d{word-spacing:-8.292198px;}
.ws38{word-spacing:-8.270687px;}
.ws204{word-spacing:-8.238422px;}
.ws19a{word-spacing:-8.221572px;}
.ws142{word-spacing:-8.209623px;}
.ws166{word-spacing:-8.125493px;}
.ws1dc{word-spacing:-8.087850px;}
.ws14e{word-spacing:-8.030373px;}
.wsa7{word-spacing:-8.018423px;}
.wsd9{word-spacing:-7.958673px;}
.ws21e{word-spacing:-7.942656px;}
.ws60{word-spacing:-7.922823px;}
.ws21c{word-spacing:-7.910391px;}
.wse8{word-spacing:-7.851124px;}
.ws84{word-spacing:-7.791374px;}
.ws1fc{word-spacing:-7.781329px;}
.ws108{word-spacing:-7.755524px;}
.ws107{word-spacing:-7.683824px;}
.ws45{word-spacing:-7.659924px;}
.ws58{word-spacing:-7.564325px;}
.wsa1{word-spacing:-7.474700px;}
.ws50{word-spacing:-7.420925px;}
.ws209{word-spacing:-7.415655px;}
.ws56{word-spacing:-7.241676px;}
.ws11b{word-spacing:-7.205826px;}
.ws11a{word-spacing:-7.146076px;}
.ws12a{word-spacing:-7.136022px;}
.ws1e1{word-spacing:-7.093002px;}
.ws3f{word-spacing:-7.082247px;}
.ws4e{word-spacing:-7.074376px;}
.ws1a4{word-spacing:-7.014627px;}
.ws3c{word-spacing:-6.937052px;}
.ws9e{word-spacing:-6.907077px;}
.ws44{word-spacing:-6.835377px;}
.ws224{word-spacing:-6.813369px;}
.ws223{word-spacing:-6.802613px;}
.wscb{word-spacing:-6.775627px;}
.ws3b{word-spacing:-6.743460px;}
.wscc{word-spacing:-6.727827px;}
.ws225{word-spacing:-6.587511px;}
.ws6a{word-spacing:-6.548578px;}
.ws68{word-spacing:-6.536628px;}
.ws69{word-spacing:-6.524678px;}
.ws158{word-spacing:-6.488828px;}
.ws189{word-spacing:-6.476878px;}
.wsbf{word-spacing:-6.273729px;}
.wsbd{word-spacing:-6.255804px;}
.ws18a{word-spacing:-6.166179px;}
.ws101{word-spacing:-6.106430px;}
.ws102{word-spacing:-6.058630px;}
.ws113{word-spacing:-6.034730px;}
.ws78{word-spacing:-5.986930px;}
.wsc6{word-spacing:-5.963030px;}
.ws202{word-spacing:-5.952959px;}
.ws203{word-spacing:-5.942204px;}
.ws7a{word-spacing:-5.939130px;}
.wsc3{word-spacing:-5.927180px;}
.wsc5{word-spacing:-5.915230px;}
.wsdc{word-spacing:-5.891330px;}
.ws17c{word-spacing:-5.843530px;}
.ws21b{word-spacing:-5.775499px;}
.ws1e7{word-spacing:-5.748612px;}
.ws9f{word-spacing:-5.724031px;}
.wsf0{word-spacing:-5.712081px;}
.ws39{word-spacing:-5.538887px;}
.ws8c{word-spacing:-5.508932px;}
.ws8b{word-spacing:-5.491007px;}
.ws8a{word-spacing:-5.485032px;}
.ws4f{word-spacing:-5.473082px;}
.ws104{word-spacing:-5.407357px;}
.ws34{word-spacing:-5.302274px;}
.ws10f{word-spacing:-5.281882px;}
.ws106{word-spacing:-5.269932px;}
.ws110{word-spacing:-5.222133px;}
.ws5b{word-spacing:-5.210183px;}
.ws18e{word-spacing:-5.192258px;}
.ws5d{word-spacing:-5.174333px;}
.ws1b6{word-spacing:-5.146325px;}
.ws1bd{word-spacing:-5.071039px;}
.ws1bb{word-spacing:-5.044151px;}
.ws32{word-spacing:-5.011886px;}
.wsd3{word-spacing:-4.971183px;}
.wsd0{word-spacing:-4.947283px;}
.wsfc{word-spacing:-4.917409px;}
.wscf{word-spacing:-4.875584px;}
.ws1c9{word-spacing:-4.807539px;}
.wsb7{word-spacing:-4.779984px;}
.ws1d2{word-spacing:-4.769896px;}
.ws20a{word-spacing:-4.699987px;}
.wsdd{word-spacing:-4.696334px;}
.ws1a9{word-spacing:-4.684384px;}
.ws9d{word-spacing:-4.672434px;}
.wsde{word-spacing:-4.666459px;}
.wsdf{word-spacing:-4.660484px;}
.ws1ad{word-spacing:-4.636584px;}
.ws33{word-spacing:-4.560171px;}
.ws1f5{word-spacing:-4.527906px;}
.ws1e5{word-spacing:-4.350446px;}
.ws1de{word-spacing:-4.296670px;}
.ws18b{word-spacing:-4.146636px;}
.ws62{word-spacing:-4.110786px;}
.ws1c3{word-spacing:-4.103078px;}
.wsd2{word-spacing:-3.943487px;}
.wsd1{word-spacing:-3.919587px;}
.ws1a7{word-spacing:-3.835937px;}
.ws1c8{word-spacing:-3.667496px;}
.ws1d9{word-spacing:-3.640608px;}
.ws227{word-spacing:-3.586833px;}
.ws1d1{word-spacing:-3.554567px;}
.ws1ce{word-spacing:-3.549190px;}
.wse0{word-spacing:-3.549138px;}
.wseb{word-spacing:-3.375864px;}
.wsd6{word-spacing:-3.369889px;}
.wsec{word-spacing:-3.322089px;}
.ws18d{word-spacing:-3.310139px;}
.ws1b7{word-spacing:-3.291067px;}
.ws174{word-spacing:-3.086719px;}
.ws173{word-spacing:-3.075964px;}
.wsfd{word-spacing:-3.071140px;}
.ws214{word-spacing:-2.973791px;}
.ws212{word-spacing:-2.952280px;}
.ws14b{word-spacing:-2.891890px;}
.ws188{word-spacing:-2.885915px;}
.ws47{word-spacing:-2.820191px;}
.ws85{word-spacing:-2.640941px;}
.ws1c7{word-spacing:-2.538208px;}
.wsb0{word-spacing:-2.318292px;}
.wsb3{word-spacing:-2.294392px;}
.ws7b{word-spacing:-2.210743px;}
.ws7c{word-spacing:-2.162943px;}
.ws1b0{word-spacing:-2.081116px;}
.ws1c1{word-spacing:-2.059605px;}
.ws1ae{word-spacing:-2.054228px;}
.ws1bf{word-spacing:-2.032718px;}
.wse4{word-spacing:-2.013568px;}
.wse2{word-spacing:-2.007593px;}
.ws17b{word-spacing:-1.989668px;}
.ws17e{word-spacing:-1.911994px;}
.ws22a{word-spacing:-1.898279px;}
.ws21a{word-spacing:-1.892901px;}
.ws10d{word-spacing:-1.870169px;}
.ws180{word-spacing:-1.852244px;}
.ws10e{word-spacing:-1.828344px;}
.ws10a{word-spacing:-1.816394px;}
.ws1e2{word-spacing:-1.365900px;}
.ws1e9{word-spacing:-1.220706px;}
.ws117{word-spacing:-1.135246px;}
.ws1ea{word-spacing:-1.118532px;}
.ws1f0{word-spacing:-1.005604px;}
.ws1cf{word-spacing:-0.763614px;}
.ws7{word-spacing:-0.439339px;}
.ws89{word-spacing:-0.382399px;}
.ws21f{word-spacing:-0.317276px;}
.ws23{word-spacing:-0.236318px;}
.ws8{word-spacing:-0.161046px;}
.ws9{word-spacing:-0.154044px;}
.ws5c{word-spacing:-0.101575px;}
.ws1ac{word-spacing:-0.100381px;}
.ws1f3{word-spacing:-0.096796px;}
.ws5{word-spacing:-0.093476px;}
.wsf9{word-spacing:-0.089625px;}
.wsf3{word-spacing:-0.083650px;}
.ws229{word-spacing:-0.080663px;}
.wsb2{word-spacing:-0.071102px;}
.ws1e4{word-spacing:-0.069908px;}
.ws99{word-spacing:-0.043634px;}
.ws9a{word-spacing:-0.042654px;}
.ws21{word-spacing:-0.035080px;}
.ws4{word-spacing:0.000000px;}
.ws1e{word-spacing:0.005847px;}
.ws1d{word-spacing:0.023387px;}
.ws22{word-spacing:0.029233px;}
.ws1c{word-spacing:0.040926px;}
.ws75{word-spacing:0.054411px;}
.ws6{word-spacing:0.065433px;}
.wsa{word-spacing:0.102508px;}
.wsc{word-spacing:0.153762px;}
.ws73{word-spacing:0.154863px;}
.wsb{word-spacing:0.172982px;}
.ws74{word-spacing:0.209274px;}
.ws197{word-spacing:0.489358px;}
.ws1c6{word-spacing:0.586154px;}
.ws178{word-spacing:0.720593px;}
.ws219{word-spacing:1.064757px;}
.ws218{word-spacing:1.102400px;}
.ws216{word-spacing:1.371278px;}
.ws215{word-spacing:1.382033px;}
.ws217{word-spacing:1.414298px;}
.ws17{word-spacing:1.824152px;}
.wse3{word-spacing:2.025518px;}
.ws1a{word-spacing:2.169103px;}
.ws13{word-spacing:2.174950px;}
.ws1b{word-spacing:2.186643px;}
.ws31{word-spacing:2.409147px;}
.ws10b{word-spacing:2.503517px;}
.ws19{word-spacing:2.584215px;}
.ws18{word-spacing:2.595908px;}
.ws1e0{word-spacing:2.737178px;}
.ws1d7{word-spacing:2.742556px;}
.ws130{word-spacing:3.049077px;}
.ws12e{word-spacing:3.054454px;}
.ws134{word-spacing:3.059832px;}
.ws133{word-spacing:3.065209px;}
.ws132{word-spacing:3.070587px;}
.ws12c{word-spacing:3.086719px;}
.ws128{word-spacing:3.092097px;}
.ws12{word-spacing:3.969869px;}
.ws11{word-spacing:3.981562px;}
.ws22c{word-spacing:4.673100px;}
.wsf{word-spacing:4.718238px;}
.wse{word-spacing:4.741625px;}
.ws10{word-spacing:5.104117px;}
.ws14{word-spacing:5.776480px;}
.ws16{word-spacing:5.782327px;}
.wsd{word-spacing:5.870027px;}
.ws15{word-spacing:6.133125px;}
.ws12f{word-spacing:6.146551px;}
.ws171{word-spacing:8.276065px;}
.ws71{word-spacing:10.502375px;}
.ws175{word-spacing:13.191155px;}
.ws20{word-spacing:15.476056px;}
.ws201{word-spacing:15.481995px;}
.ws1f{word-spacing:15.516983px;}
.ws221{word-spacing:16.503732px;}
.ws123{word-spacing:17.128531px;}
.ws206{word-spacing:17.235080px;}
.ws125{word-spacing:17.358764px;}
.ws1b3{word-spacing:17.815856px;}
.ws1f2{word-spacing:18.272949px;}
.ws1fa{word-spacing:18.719286px;}
.ws1ee{word-spacing:18.923634px;}
.ws160{word-spacing:18.992778px;}
.ws20f{word-spacing:19.047318px;}
.ws1d4{word-spacing:19.101093px;}
.ws15b{word-spacing:19.285205px;}
.ws1fd{word-spacing:19.326951px;}
.ws191{word-spacing:19.365784px;}
.ws1da{word-spacing:19.617339px;}
.ws1e6{word-spacing:19.622716px;}
.ws4d{word-spacing:19.644227px;}
.ws1e8{word-spacing:19.649604px;}
.ws1b8{word-spacing:19.671114px;}
.ws1d8{word-spacing:19.687247px;}
.wsb8{word-spacing:19.703147px;}
.ws226{word-spacing:19.735645px;}
.ws131{word-spacing:19.966880px;}
.ws1dd{word-spacing:20.036789px;}
.ws21d{word-spacing:20.219626px;}
.ws111{word-spacing:22.794549px;}
.wsee{word-spacing:22.800524px;}
.ws1bc{word-spacing:22.827742px;}
.ws14d{word-spacing:22.830399px;}
.ws76{word-spacing:22.836374px;}
.wsd8{word-spacing:22.842349px;}
.ws9c{word-spacing:22.890148px;}
.ws1ca{word-spacing:23.026712px;}
.ws20b{word-spacing:23.236437px;}
.ws1f6{word-spacing:23.327855px;}
.wsa3{word-spacing:23.679435px;}
.ws1c4{word-spacing:23.768815px;}
.ws1d0{word-spacing:24.274306px;}
.ws228{word-spacing:24.683000px;}
.ws213{word-spacing:24.790552px;}
.ws1c5{word-spacing:25.279910px;}
.ws1c0{word-spacing:25.640206px;}
.ws114{word-spacing:26.216147px;}
.ws1e3{word-spacing:26.231738px;}
.ws1eb{word-spacing:26.457595px;}
.ws65{word-spacing:26.773004px;}
.wsed{word-spacing:26.780175px;}
.ws220{word-spacing:27.167433px;}
.ws3e{word-spacing:27.559995px;}
.wsb9{word-spacing:28.087547px;}
.ws120{word-spacing:29.033446px;}
.ws2f{word-spacing:29.786305px;}
.ws161{word-spacing:29.897634px;}
.ws164{word-spacing:29.898234px;}
.ws163{word-spacing:29.903634px;}
.ws162{word-spacing:29.904234px;}
.ws165{word-spacing:30.065634px;}
.ws15d{word-spacing:30.370934px;}
.ws15e{word-spacing:30.371534px;}
.ws15c{word-spacing:30.377534px;}
.ws195{word-spacing:30.490483px;}
.ws193{word-spacing:30.495883px;}
.ws192{word-spacing:30.496483px;}
.ws196{word-spacing:30.501883px;}
.ws15f{word-spacing:30.544934px;}
.ws136{word-spacing:30.619985px;}
.ws13a{word-spacing:30.620669px;}
.ws13c{word-spacing:30.621269px;}
.ws138{word-spacing:30.625985px;}
.ws137{word-spacing:30.626585px;}
.ws13e{word-spacing:30.626669px;}
.ws13b{word-spacing:30.627269px;}
.ws194{word-spacing:30.670483px;}
.ws13d{word-spacing:30.794669px;}
.ws139{word-spacing:30.800585px;}
.ws122{word-spacing:30.818796px;}
.ws22b{word-spacing:31.792135px;}
.ws25{word-spacing:32.110352px;}
.ws26{word-spacing:32.136164px;}
.ws24{word-spacing:32.153372px;}
.ws124{word-spacing:33.787209px;}
.wsa8{word-spacing:40.014441px;}
.ws40{word-spacing:80.569964px;}
.ws1a1{word-spacing:80.584304px;}
.ws176{word-spacing:84.470712px;}
.ws179{word-spacing:84.502978px;}
.ws16c{word-spacing:160.536299px;}
.ws170{word-spacing:410.291695px;}
.wsbc{word-spacing:586.790147px;}
.wsce{word-spacing:588.475780px;}
._2c{margin-left:-128.254492px;}
._2d{margin-left:-84.108736px;}
._4c{margin-left:-46.145807px;}
._9{margin-left:-31.442993px;}
._24{margin-left:-30.233399px;}
._6{margin-left:-29.145124px;}
._c{margin-left:-28.092517px;}
._a{margin-left:-26.887656px;}
._1b{margin-left:-24.995899px;}
._8{margin-left:-23.212797px;}
._20{margin-left:-22.197675px;}
._b{margin-left:-21.029343px;}
._4a{margin-left:-19.978819px;}
._3c{margin-left:-18.977560px;}
._21{margin-left:-17.893163px;}
._1a{margin-left:-16.700069px;}
._1e{margin-left:-15.266074px;}
._1f{margin-left:-13.240556px;}
._23{margin-left:-10.637596px;}
._49{margin-left:-9.281966px;}
._2{margin-left:-8.105025px;}
._7{margin-left:-6.584428px;}
._3{margin-left:-5.291497px;}
._f{margin-left:-3.322089px;}
._5{margin-left:-2.231831px;}
._1{margin-left:-1.078308px;}
._0{width:1.514318px;}
._4{width:2.822132px;}
._11{width:3.965731px;}
._12{width:5.258498px;}
._1d{width:8.513124px;}
._d{width:9.954317px;}
._26{width:12.133052px;}
._18{width:14.287005px;}
._3b{width:15.487373px;}
._19{width:17.085631px;}
._14{width:18.428898px;}
._e{width:19.583173px;}
._17{width:20.946148px;}
._25{width:23.136476px;}
._22{width:24.363886px;}
._1c{width:25.490487px;}
._27{width:26.863179px;}
._16{width:28.716270px;}
._4b{width:29.904611px;}
._30{width:33.077372px;}
._2b{width:40.247957px;}
._4d{width:43.416064px;}
._47{width:44.633892px;}
._31{width:46.897701px;}
._35{width:47.967835px;}
._40{width:50.979269px;}
._46{width:56.200880px;}
._29{width:62.604573px;}
._28{width:63.627268px;}
._15{width:68.682395px;}
._45{width:72.403468px;}
._39{width:75.081493px;}
._41{width:77.576681px;}
._13{width:80.677515px;}
._36{width:82.868200px;}
._33{width:90.558110px;}
._2f{width:95.112904px;}
._38{width:96.688529px;}
._3a{width:124.329187px;}
._44{width:140.567942px;}
._3d{width:141.725594px;}
._48{width:142.935545px;}
._10{width:170.570826px;}
._42{width:174.186447px;}
._37{width:185.946659px;}
._2a{width:196.151879px;}
._2e{width:199.109537px;}
._43{width:201.303029px;}
._3e{width:202.361289px;}
._34{width:221.262318px;}
._3f{width:229.782320px;}
._32{width:548.534620px;}
.fc8{color:rgb(11,12,63);}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(0,51,101);}
.fc7{color:rgb(35,31,32);}
.fc6{color:rgb(128,128,128);}
.fc4{color:rgb(126,126,126);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:19.926000px;}
.fs16{font-size:20.241600px;}
.fs1a{font-size:20.321400px;}
.fs14{font-size:20.406600px;}
.fs12{font-size:20.407200px;}
.fs10{font-size:26.890800px;}
.fs19{font-size:29.889000px;}
.fs17{font-size:30.361800px;}
.fs1b{font-size:30.482400px;}
.fs15{font-size:30.609600px;}
.fs13{font-size:30.611400px;}
.fs11{font-size:35.850000px;}
.fs5{font-size:40.961400px;}
.fsd{font-size:41.824800px;}
.fsb{font-size:41.854800px;}
.fsc{font-size:41.901000px;}
.fsf{font-size:42.654000px;}
.fse{font-size:43.634400px;}
.fs4{font-size:43.762800px;}
.fs6{font-size:52.515000px;}
.fs9{font-size:53.775600px;}
.fs3{font-size:58.466400px;}
.fs8{font-size:59.749800px;}
.fs1{font-size:64.067400px;}
.fs0{font-size:70.020000px;}
.fsa{font-size:71.700600px;}
.fs7{font-size:86.040600px;}
.fs2{font-size:93.476400px;}
.y144{bottom:-0.398700px;}
.y15b{bottom:-0.212100px;}
.y0{bottom:0.000000px;}
.yc3{bottom:5.727450px;}
.yc5{bottom:5.775150px;}
.ybb{bottom:5.791050px;}
.yc7{bottom:5.843850px;}
.yb9{bottom:5.859000px;}
.yca{bottom:6.558750px;}
.yc1{bottom:6.673500px;}
.ycc{bottom:6.674550px;}
.ybf{bottom:6.827550px;}
.ybd{bottom:6.946050px;}
.yb7{bottom:6.946200px;}
.y3c{bottom:161.940450px;}
.y3b{bottom:177.510450px;}
.y3a{bottom:193.712083px;}
.y39{bottom:206.491915px;}
.y38{bottom:219.361460px;}
.y37{bottom:232.141292px;}
.y36{bottom:244.921123px;}
.y35{bottom:257.790669px;}
.y187{bottom:267.298161px;}
.y243{bottom:267.299010px;}
.y62{bottom:267.299226px;}
.yfa{bottom:267.299910px;}
.y208{bottom:267.301104px;}
.y273{bottom:267.314969px;}
.y9a{bottom:269.914050px;}
.y34{bottom:270.570500px;}
.y141{bottom:272.825850px;}
.y140{bottom:281.042250px;}
.y33{bottom:283.350332px;}
.y272{bottom:283.746103px;}
.y2a4{bottom:284.627313px;}
.y186{bottom:285.223101px;}
.y242{bottom:285.223950px;}
.y61{bottom:285.224166px;}
.yf9{bottom:285.224850px;}
.y207{bottom:285.226044px;}
.y32{bottom:296.040894px;}
.y271{bottom:300.177238px;}
.y2a3{bottom:301.058448px;}
.y1c6{bottom:302.246100px;}
.y185{bottom:303.148041px;}
.y60{bottom:303.149106px;}
.yf8{bottom:303.149790px;}
.y206{bottom:303.150984px;}
.y13f{bottom:305.688750px;}
.y1c7{bottom:306.771150px;}
.y96{bottom:307.429500px;}
.y31{bottom:308.010840px;}
.y1d7{bottom:308.597400px;}
.yc6{bottom:308.758500px;}
.y1c8{bottom:311.254350px;}
.yc8{bottom:313.095450px;}
.y13e{bottom:313.905150px;}
.y1c9{bottom:315.777900px;}
.y241{bottom:316.503600px;}
.y270{bottom:316.543842px;}
.y2a2{bottom:317.489582px;}
.yc2{bottom:318.147000px;}
.yb8{bottom:319.009500px;}
.y30{bottom:319.890670px;}
.y95{bottom:319.986600px;}
.y1ca{bottom:320.262450px;}
.y184{bottom:321.072981px;}
.y5f{bottom:321.074046px;}
.yf7{bottom:321.074730px;}
.y1d8{bottom:322.088700px;}
.y87{bottom:322.811220px;}
.y8d{bottom:324.461764px;}
.y1cb{bottom:324.787350px;}
.y1cc{bottom:329.270700px;}
.y139{bottom:330.336600px;}
.y2f{bottom:331.950730px;}
.y205{bottom:332.516517px;}
.y26f{bottom:332.974976px;}
.y1cd{bottom:333.795750px;}
.y2a1{bottom:333.875008px;}
.y86{bottom:335.368706px;}
.y8c{bottom:337.019250px;}
.y1ce{bottom:338.278650px;}
.y13d{bottom:338.551650px;}
.y183{bottom:338.997921px;}
.y5e{bottom:338.998986px;}
.yf6{bottom:338.999670px;}
.y1cf{bottom:342.803850px;}
.y2e{bottom:343.920675px;}
.y137{bottom:346.766550px;}
.y1d0{bottom:347.286900px;}
.y85{bottom:347.924100px;}
.y26e{bottom:349.341580px;}
.y8b{bottom:349.575000px;}
.y2a0{bottom:350.306142px;}
.y1d1{bottom:351.811950px;}
.y2d{bottom:355.800505px;}
.y182{bottom:356.922861px;}
.y5d{bottom:356.923926px;}
.yf5{bottom:356.924610px;}
.y240{bottom:359.729959px;}
.y99{bottom:359.852970px;}
.y26d{bottom:365.772715px;}
.y29f{bottom:366.737277px;}
.y2c{bottom:367.770450px;}
.y13c{bottom:371.414550px;}
.y98{bottom:372.410456px;}
.y1d2{bottom:374.269350px;}
.y181{bottom:374.847801px;}
.y5c{bottom:374.848866px;}
.yf4{bottom:374.850228px;}
.y204{bottom:376.819500px;}
.y23f{bottom:377.654899px;}
.y13b{bottom:379.629450px;}
.y2b{bottom:379.920768px;}
.y26c{bottom:382.139319px;}
.y29e{bottom:383.124047px;}
.y97{bottom:384.965850px;}
.y1d9{bottom:384.979200px;}
.y1d3{bottom:387.429150px;}
.y2a{bottom:392.700600px;}
.y180{bottom:392.772741px;}
.y5b{bottom:392.773806px;}
.y203{bottom:394.744440px;}
.y23e{bottom:395.579839px;}
.y84{bottom:395.894370px;}
.y8a{bottom:398.231970px;}
.y26b{bottom:398.570453px;}
.y90{bottom:398.999670px;}
.y29d{bottom:399.553837px;}
.y1d4{bottom:400.587600px;}
.yf3{bottom:401.771088px;}
.y13a{bottom:404.278050px;}
.y29{bottom:405.747314px;}
.yc9{bottom:407.280000px;}
.y83{bottom:408.451856px;}
.ybc{bottom:410.071500px;}
.y17f{bottom:410.699174px;}
.y5a{bottom:410.700240px;}
.y89{bottom:410.787364px;}
.y8f{bottom:411.555064px;}
.y138{bottom:412.492433px;}
.y202{bottom:412.669380px;}
.y23d{bottom:413.504779px;}
.y1d5{bottom:413.747400px;}
.ycb{bottom:414.003000px;}
.y26a{bottom:415.001588px;}
.y29c{bottom:415.984971px;}
.ybe{bottom:417.067500px;}
.y82{bottom:421.007250px;}
.y28{bottom:422.487706px;}
.y88{bottom:423.344850px;}
.y8e{bottom:424.112550px;}
.y1d6{bottom:426.907350px;}
.y17e{bottom:428.624114px;}
.y59{bottom:428.625180px;}
.yf2{bottom:428.691360px;}
.y201{bottom:430.594320px;}
.y269{bottom:431.366847px;}
.y23c{bottom:431.429719px;}
.y29b{bottom:432.371741px;}
.y94{bottom:434.656912px;}
.y92{bottom:435.016864px;}
.y136{bottom:437.737200px;}
.y27{bottom:439.228098px;}
.yf1{bottom:444.376200px;}
.y135{bottom:445.952100px;}
.y58{bottom:446.550120px;}
.yf0{bottom:446.617059px;}
.y93{bottom:447.212306px;}
.y91{bottom:447.574350px;}
.y268{bottom:447.797982px;}
.y200{bottom:448.519260px;}
.y29a{bottom:448.802876px;}
.y23b{bottom:449.354659px;}
.y17d{bottom:455.024563px;}
.y26{bottom:455.968490px;}
.yc0{bottom:458.164500px;}
.y1b2{bottom:458.932050px;}
.yb6{bottom:462.243000px;}
.y1b3{bottom:463.457100px;}
.y267{bottom:464.164586px;}
.y57{bottom:464.475060px;}
.y299{bottom:465.188301px;}
.y1c3{bottom:465.283350px;}
.y1ff{bottom:466.444200px;}
.y23a{bottom:467.281093px;}
.y1b4{bottom:467.940150px;}
.yef{bottom:469.938570px;}
.y134{bottom:470.599950px;}
.y1b5{bottom:472.465350px;}
.y25{bottom:472.708882px;}
.y1b6{bottom:476.948400px;}
.y117{bottom:478.273896px;}
.y1c4{bottom:478.774500px;}
.y133{bottom:478.815000px;}
.y266{bottom:480.595720px;}
.y1b7{bottom:481.473450px;}
.y298{bottom:481.619435px;}
.y56{bottom:482.400000px;}
.y1fe{bottom:484.369140px;}
.y239{bottom:485.206033px;}
.y1b8{bottom:485.956350px;}
.yee{bottom:487.863510px;}
.y24{bottom:489.449274px;}
.yc4{bottom:490.155000px;}
.y1b9{bottom:490.481550px;}
.y81{bottom:492.731466px;}
.y1ba{bottom:494.964600px;}
.yba{bottom:495.085500px;}
.y116{bottom:496.198836px;}
.y17c{bottom:496.362463px;}
.y265{bottom:497.026855px;}
.y297{bottom:498.050570px;}
.y1bb{bottom:499.489800px;}
.y1fd{bottom:502.294080px;}
.y238{bottom:503.130973px;}
.y132{bottom:503.463000px;}
.y1bc{bottom:503.972700px;}
.yed{bottom:505.787882px;}
.y23{bottom:506.189666px;}
.y1bd{bottom:508.497750px;}
.y80{bottom:510.657900px;}
.y12d{bottom:511.678050px;}
.y264{bottom:513.393459px;}
.y115{bottom:514.123776px;}
.y17b{bottom:514.287403px;}
.y296{bottom:514.435995px;}
.y55{bottom:516.685800px;}
.y1fc{bottom:520.219020px;}
.y237{bottom:521.055913px;}
.y22{bottom:522.930058px;}
.yec{bottom:523.712822px;}
.y7f{bottom:528.582840px;}
.y263{bottom:529.824593px;}
.y295{bottom:530.867130px;}
.y1be{bottom:530.955300px;}
.y114{bottom:532.177178px;}
.y17a{bottom:532.212343px;}
.y131{bottom:536.324400px;}
.y1fb{bottom:538.143960px;}
.y236{bottom:538.982346px;}
.y21{bottom:539.670450px;}
.yeb{bottom:541.639256px;}
.y1c5{bottom:541.666650px;}
.y1bf{bottom:544.115100px;}
.y130{bottom:544.540950px;}
.y262{bottom:546.255728px;}
.y7e{bottom:546.507780px;}
.y294{bottom:547.298265px;}
.y113{bottom:550.103612px;}
.y179{bottom:550.138776px;}
.y1fa{bottom:556.068900px;}
.y20{bottom:556.405002px;}
.y235{bottom:556.908780px;}
.y1c0{bottom:557.274900px;}
.yea{bottom:559.564196px;}
.yb5{bottom:562.184831px;}
.y261{bottom:562.622332px;}
.y293{bottom:563.729399px;}
.y7d{bottom:564.432720px;}
.y54{bottom:565.459393px;}
.y112{bottom:568.028552px;}
.y178{bottom:568.063716px;}
.y12f{bottom:569.187450px;}
.y1c1{bottom:570.433350px;}
.y1f{bottom:573.145394px;}
.y1f9{bottom:573.993840px;}
.y234{bottom:574.833720px;}
.y12e{bottom:577.403933px;}
.ye9{bottom:577.489136px;}
.y260{bottom:579.053466px;}
.yb4{bottom:580.109771px;}
.y292{bottom:580.114824px;}
.y53{bottom:581.890528px;}
.y7c{bottom:582.357660px;}
.y1c2{bottom:583.593150px;}
.y111{bottom:585.953492px;}
.y177{bottom:585.988656px;}
.y1e{bottom:589.885786px;}
.y1f8{bottom:591.918780px;}
.y233{bottom:592.758660px;}
.y25f{bottom:595.484601px;}
.y291{bottom:596.545959px;}
.y7b{bottom:600.282600px;}
.ye8{bottom:602.296200px;}
.y12c{bottom:602.647365px;}
.y110{bottom:603.878432px;}
.y176{bottom:603.913596px;}
.yb3{bottom:605.130000px;}
.y1d{bottom:606.626178px;}
.y1f7{bottom:609.843720px;}
.y232{bottom:610.683600px;}
.y25e{bottom:611.851205px;}
.ye7{bottom:612.543213px;}
.y290{bottom:612.977094px;}
.y52{bottom:614.362924px;}
.yb2{bottom:615.376792px;}
.y12b{bottom:619.078500px;}
.y10f{bottom:621.803372px;}
.y175{bottom:621.838536px;}
.y1c{bottom:623.366570px;}
.y1f6{bottom:627.768660px;}
.y25d{bottom:628.282339px;}
.y28f{bottom:629.363863px;}
.y51{bottom:630.794058px;}
.y7a{bottom:633.310350px;}
.y1b1{bottom:634.292715px;}
.y10e{bottom:639.728312px;}
.y174{bottom:639.764970px;}
.y1b{bottom:640.106962px;}
.y231{bottom:641.963250px;}
.y25c{bottom:644.713474px;}
.y1f5{bottom:645.693600px;}
.y28e{bottom:645.794998px;}
.y50{bottom:647.225193px;}
.ye6{bottom:650.134470px;}
.y12a{bottom:650.223150px;}
.y1b0{bottom:650.723850px;}
.yb1{bottom:652.164476px;}
.y1a{bottom:656.847354px;}
.y10d{bottom:657.653252px;}
.y173{bottom:657.689910px;}
.y25b{bottom:661.080078px;}
.y28d{bottom:662.226132px;}
.y4f{bottom:663.656327px;}
.ye5{bottom:668.059410px;}
.yb0{bottom:670.089416px;}
.y19{bottom:673.587746px;}
.y172{bottom:675.614850px;}
.y25a{bottom:677.509868px;}
.y79{bottom:678.287089px;}
.y28c{bottom:678.655923px;}
.y4e{bottom:680.086117px;}
.y19c{bottom:683.057700px;}
.ye4{bottom:683.744250px;}
.y230{bottom:685.190976px;}
.ye3{bottom:685.984266px;}
.y19d{bottom:687.582750px;}
.yaf{bottom:688.015850px;}
.y10c{bottom:688.173450px;}
.y1ad{bottom:689.408850px;}
.y18{bottom:690.328138px;}
.y19e{bottom:692.065800px;}
.y259{bottom:693.941003px;}
.y28b{bottom:695.042692px;}
.y129{bottom:695.384263px;}
.y78{bottom:696.213523px;}
.y4d{bottom:696.517252px;}
.y19f{bottom:696.589350px;}
.y1f4{bottom:699.649500px;}
.y1a0{bottom:701.073900px;}
.ye2{bottom:701.669100px;}
.y1ae{bottom:702.900000px;}
.y22f{bottom:703.117410px;}
.ye1{bottom:703.905564px;}
.y1a1{bottom:705.598950px;}
.yae{bottom:705.942284px;}
.y17{bottom:707.068530px;}
.y1f3{bottom:707.865900px;}
.y1a2{bottom:710.082000px;}
.y258{bottom:710.307606px;}
.y28a{bottom:711.473827px;}
.y4c{bottom:712.948387px;}
.y128{bottom:713.309203px;}
.y77{bottom:714.138463px;}
.y1a3{bottom:714.607050px;}
.y1a4{bottom:719.090100px;}
.y22e{bottom:721.042350px;}
.ye0{bottom:721.830504px;}
.y1a5{bottom:723.613650px;}
.y171{bottom:723.693615px;}
.y16{bottom:723.808922px;}
.yad{bottom:723.867224px;}
.y10b{bottom:724.669350px;}
.y257{bottom:726.738741px;}
.y289{bottom:727.904962px;}
.y1a6{bottom:728.098350px;}
.y4b{bottom:729.379521px;}
.y127{bottom:731.235636px;}
.y76{bottom:732.063403px;}
.y1f2{bottom:732.512400px;}
.y1a7{bottom:732.623400px;}
.ydf{bottom:739.755444px;}
.y170{bottom:740.124750px;}
.y15{bottom:740.549314px;}
.y1ef{bottom:740.727450px;}
.yac{bottom:741.792164px;}
.y256{bottom:743.169876px;}
.y288{bottom:744.336096px;}
.y4a{bottom:745.810656px;}
.y1f1{bottom:748.944000px;}
.y126{bottom:749.160576px;}
.y75{bottom:749.988343px;}
.y1a8{bottom:755.080650px;}
.y14{bottom:757.289706px;}
.yde{bottom:757.681878px;}
.y255{bottom:759.601010px;}
.yab{bottom:759.717104px;}
.y287{bottom:760.721521px;}
.y49{bottom:762.241790px;}
.y1f0{bottom:765.375496px;}
.y1af{bottom:765.790650px;}
.y125{bottom:767.085516px;}
.y74{bottom:767.913283px;}
.y22d{bottom:768.023565px;}
.y1a9{bottom:768.240600px;}
.y159{bottom:771.281400px;}
.y15a{bottom:771.493500px;}
.y15c{bottom:772.938150px;}
.y10a{bottom:773.114136px;}
.y13{bottom:774.030098px;}
.ydd{bottom:775.608312px;}
.y15d{bottom:775.914300px;}
.y254{bottom:776.032145px;}
.y286{bottom:777.152656px;}
.yaa{bottom:777.642044px;}
.y16d{bottom:777.785550px;}
.y48{bottom:778.672925px;}
.y15e{bottom:780.505350px;}
.y1aa{bottom:781.398900px;}
.y1ee{bottom:782.403600px;}
.y22c{bottom:784.454700px;}
.y124{bottom:785.010456px;}
.y15f{bottom:785.139900px;}
.y73{bottom:785.838223px;}
.y160{bottom:789.730950px;}
.y1ed{bottom:790.620000px;}
.y109{bottom:791.039076px;}
.y12{bottom:791.040897px;}
.y16e{bottom:791.602050px;}
.y253{bottom:792.398749px;}
.ydc{bottom:793.534745px;}
.y285{bottom:793.583791px;}
.y161{bottom:794.365500px;}
.y1ab{bottom:794.558850px;}
.y47{bottom:795.104060px;}
.ya9{bottom:795.566984px;}
.y162{bottom:798.956400px;}
.y123{bottom:802.935396px;}
.y163{bottom:803.590950px;}
.y72{bottom:803.763163px;}
.y1ac{bottom:807.718800px;}
.y11{bottom:807.870450px;}
.y164{bottom:808.182000px;}
.y252{bottom:808.829883px;}
.y108{bottom:808.964016px;}
.y284{bottom:810.014925px;}
.ydb{bottom:811.461179px;}
.y46{bottom:811.535194px;}
.y165{bottom:812.816550px;}
.ya8{bottom:813.491924px;}
.y1ec{bottom:815.266500px;}
.y218{bottom:816.788250px;}
.y166{bottom:817.407600px;}
.y122{bottom:820.860336px;}
.y219{bottom:821.313300px;}
.y71{bottom:821.688103px;}
.y167{bottom:822.042150px;}
.y229{bottom:823.139700px;}
.y1e9{bottom:823.481550px;}
.y10{bottom:825.150450px;}
.y251{bottom:825.261018px;}
.y21a{bottom:825.796500px;}
.y283{bottom:826.400350px;}
.y107{bottom:826.888956px;}
.y45{bottom:827.966329px;}
.yd9{bottom:830.218200px;}
.y21b{bottom:830.320050px;}
.ya7{bottom:831.416864px;}
.y1eb{bottom:831.697950px;}
.y21c{bottom:834.804600px;}
.y22a{bottom:836.630850px;}
.y121{bottom:838.786770px;}
.y21d{bottom:839.329650px;}
.y70{bottom:839.613043px;}
.y188{bottom:841.191900px;}
.y250{bottom:841.627622px;}
.y282{bottom:842.831485px;}
.y21e{bottom:843.812850px;}
.y106{bottom:844.813896px;}
.yf{bottom:844.860410px;}
.y168{bottom:845.040750px;}
.y189{bottom:845.788950px;}
.y199{bottom:847.643700px;}
.y1ea{bottom:848.129596px;}
.yda{bottom:848.184900px;}
.yd8{bottom:848.185118px;}
.y21f{bottom:848.337750px;}
.ya6{bottom:849.341804px;}
.y18a{bottom:850.342500px;}
.y220{bottom:852.820950px;}
.y18b{bottom:854.939550px;}
.y16f{bottom:856.009950px;}
.y120{bottom:856.711710px;}
.y221{bottom:857.344500px;}
.y6f{bottom:857.537983px;}
.y24f{bottom:858.058756px;}
.y169{bottom:858.518400px;}
.y281{bottom:859.262620px;}
.y18c{bottom:859.493100px;}
.y19a{bottom:861.349200px;}
.y222{bottom:861.829050px;}
.y105{bottom:862.738836px;}
.ye{bottom:863.220525px;}
.y18d{bottom:864.090150px;}
.y1e8{bottom:865.157550px;}
.y223{bottom:866.354250px;}
.ya5{bottom:867.266744px;}
.yd7{bottom:868.268520px;}
.y18e{bottom:868.645200px;}
.y16a{bottom:871.994700px;}
.y18f{bottom:873.240750px;}
.y1e7{bottom:873.374100px;}
.y24e{bottom:874.488546px;}
.y11f{bottom:874.637302px;}
.y6e{bottom:875.462923px;}
.y280{bottom:875.648045px;}
.y190{bottom:877.795650px;}
.y104{bottom:880.665270px;}
.yd{bottom:881.670335px;}
.y191{bottom:882.391350px;}
.y44{bottom:884.844781px;}
.ya4{bottom:885.191684px;}
.y16b{bottom:885.471000px;}
.yd6{bottom:886.193460px;}
.y192{bottom:886.946250px;}
.y224{bottom:888.811500px;}
.y24d{bottom:890.855150px;}
.y193{bottom:891.543300px;}
.y27f{bottom:892.079180px;}
.y11e{bottom:892.562242px;}
.y6d{bottom:893.387863px;}
.y1e6{bottom:898.020600px;}
.y103{bottom:898.590210px;}
.y16c{bottom:898.948650px;}
.y22b{bottom:899.521350px;}
.yc{bottom:900.030450px;}
.y43{bottom:901.275915px;}
.y225{bottom:901.971300px;}
.ya3{bottom:903.116624px;}
.yd5{bottom:904.117433px;}
.y1e3{bottom:906.235500px;}
.y24c{bottom:907.286285px;}
.y27e{bottom:908.465949px;}
.y11d{bottom:910.487182px;}
.y6c{bottom:911.312803px;}
.y194{bottom:914.356050px;}
.y1e5{bottom:914.452050px;}
.y226{bottom:915.129750px;}
.y102{bottom:916.517010px;}
.y42{bottom:917.707050px;}
.yb{bottom:918.750968px;}
.ya2{bottom:921.041564px;}
.yd4{bottom:922.042373px;}
.y24b{bottom:923.717419px;}
.y27d{bottom:924.897084px;}
.y19b{bottom:925.235400px;}
.y195{bottom:927.724350px;}
.y227{bottom:928.289550px;}
.y6b{bottom:929.237743px;}
.y142{bottom:929.973300px;}
.y143{bottom:930.372000px;}
.y1e4{bottom:930.883546px;}
.y145{bottom:931.631700px;}
.y101{bottom:934.441950px;}
.y146{bottom:934.607850px;}
.y156{bottom:936.477600px;}
.ya{bottom:938.820450px;}
.ya1{bottom:938.966504px;}
.y147{bottom:939.198900px;}
.y11c{bottom:939.282104px;}
.yd3{bottom:939.967313px;}
.y24a{bottom:940.084023px;}
.y196{bottom:941.091150px;}
.y27c{bottom:941.326874px;}
.y228{bottom:941.449350px;}
.y148{bottom:943.833450px;}
.y6a{bottom:947.162683px;}
.y1e2{bottom:947.911650px;}
.y149{bottom:948.424500px;}
.y41{bottom:949.013610px;}
.y157{bottom:950.295750px;}
.y100{bottom:952.495352px;}
.y14a{bottom:953.059050px;}
.y197{bottom:954.459450px;}
.y1e1{bottom:956.128200px;}
.y249{bottom:956.515158px;}
.ya0{bottom:956.891444px;}
.y14b{bottom:957.651450px;}
.y27b{bottom:957.713644px;}
.yd2{bottom:957.892253px;}
.y9{bottom:958.260450px;}
.y14c{bottom:962.284500px;}
.y69{bottom:965.087623px;}
.y14d{bottom:966.877050px;}
.y40{bottom:966.938550px;}
.y198{bottom:967.827600px;}
.yff{bottom:970.420292px;}
.y14e{bottom:971.511600px;}
.y248{bottom:972.946292px;}
.y27a{bottom:974.144778px;}
.y9f{bottom:974.816384px;}
.yd1{bottom:975.818687px;}
.y14f{bottom:976.102650px;}
.y8{bottom:976.889734px;}
.y209{bottom:978.732450px;}
.y150{bottom:980.737200px;}
.y1e0{bottom:980.774550px;}
.y68{bottom:983.014056px;}
.y11b{bottom:983.014476px;}
.y20a{bottom:983.347500px;}
.y20b{bottom:987.962550px;}
.yfe{bottom:988.345232px;}
.y217{bottom:988.512750px;}
.y1dd{bottom:988.991100px;}
.y247{bottom:989.312896px;}
.y279{bottom:990.575913px;}
.y20c{bottom:992.534100px;}
.y9e{bottom:992.741324px;}
.yd0{bottom:993.743627px;}
.y20d{bottom:997.149150px;}
.y1df{bottom:997.206150px;}
.y67{bottom:1000.940490px;}
.y11a{bottom:1000.940910px;}
.y20e{bottom:1001.722200px;}
.y7{bottom:1003.710450px;}
.y151{bottom:1003.737300px;}
.y246{bottom:1005.744031px;}
.yfd{bottom:1006.270172px;}
.y20f{bottom:1006.335600px;}
.y278{bottom:1006.961338px;}
.y9d{bottom:1010.666264px;}
.y210{bottom:1010.908650px;}
.ycf{bottom:1011.668567px;}
.y1de{bottom:1013.637802px;}
.y158{bottom:1014.706650px;}
.y211{bottom:1015.523700px;}
.y152{bottom:1017.214950px;}
.y66{bottom:1018.865430px;}
.y119{bottom:1018.865670px;}
.y3f{bottom:1018.867026px;}
.y212{bottom:1020.095250px;}
.y245{bottom:1022.175165px;}
.y277{bottom:1023.392473px;}
.yfc{bottom:1024.195112px;}
.y213{bottom:1024.710450px;}
.y9c{bottom:1028.591204px;}
.y214{bottom:1029.283350px;}
.y6{bottom:1029.448924px;}
.yce{bottom:1029.593507px;}
.y1dc{bottom:1030.666583px;}
.y153{bottom:1030.692750px;}
.y65{bottom:1036.790370px;}
.y118{bottom:1036.790610px;}
.y244{bottom:1038.606300px;}
.y215{bottom:1038.766800px;}
.y1db{bottom:1038.882150px;}
.y276{bottom:1039.823607px;}
.yfb{bottom:1042.120052px;}
.y154{bottom:1044.170400px;}
.y3e{bottom:1045.752563px;}
.y9b{bottom:1046.516144px;}
.ycd{bottom:1047.518447px;}
.y5{bottom:1049.609433px;}
.y216{bottom:1052.187600px;}
.y64{bottom:1054.715310px;}
.y275{bottom:1056.209033px;}
.y155{bottom:1057.648200px;}
.y4{bottom:1069.769942px;}
.y274{bottom:1072.640167px;}
.y3d{bottom:1072.640250px;}
.y1da{bottom:1078.242240px;}
.y3{bottom:1089.930450px;}
.y63{bottom:1111.478250px;}
.y2{bottom:1132.500567px;}
.y1{bottom:1141.590450px;}
.h49{height:14.605758px;}
.h46{height:14.837093px;}
.h4f{height:14.895586px;}
.h41{height:14.958038px;}
.h3d{height:14.958478px;}
.h29{height:16.227000px;}
.h23{height:16.342500px;}
.h25{height:16.458000px;}
.h27{height:16.459500px;}
.h22{height:16.717500px;}
.h20{height:16.720500px;}
.h1d{height:16.836000px;}
.h21{height:16.837500px;}
.h28{height:18.285744px;}
.h4a{height:21.908637px;}
.h47{height:22.255199px;}
.h50{height:22.343599px;}
.h44{height:22.436837px;}
.h40{height:22.438156px;}
.h24{height:28.279602px;}
.h16{height:28.461264px;}
.h17{height:28.492680px;}
.h1e{height:28.929607px;}
.hd{height:29.168077px;}
.h26{height:29.644530px;}
.h1f{height:30.325908px;}
.h18{height:30.470294px;}
.h19{height:30.503928px;}
.h2c{height:31.368600px;}
.he{height:34.801189px;}
.hf{height:37.179508px;}
.h10{height:37.181285px;}
.h14{height:37.320266px;}
.h13{height:40.331700px;}
.h1a{height:41.824860px;}
.h35{height:44.810000px;}
.h12{height:44.812350px;}
.h30{height:44.813670px;}
.h33{height:44.814621px;}
.h2d{height:44.832893px;}
.h4d{height:46.680719px;}
.h3a{height:46.683388px;}
.h15{height:50.190420px;}
.h2a{height:50.711280px;}
.ha{height:51.300840px;}
.h34{height:51.741257px;}
.h36{height:53.043215px;}
.h39{height:53.049720px;}
.h38{height:53.049960px;}
.h37{height:53.055600px;}
.h2f{height:53.772750px;}
.h2e{height:53.778750px;}
.hc{height:53.898712px;}
.h5{height:54.526770px;}
.hb{height:54.698058px;}
.h2{height:57.904667px;}
.h7{height:58.592891px;}
.h8{height:59.062134px;}
.h2b{height:59.158277px;}
.h11{height:60.228420px;}
.h3{height:61.438447px;}
.h9{height:61.609395px;}
.h6{height:64.549687px;}
.h3b{height:73.193969px;}
.h3c{height:73.199347px;}
.h1b{height:85.231922px;}
.h1c{height:85.800713px;}
.h4{height:87.177697px;}
.h31{height:93.470147px;}
.h1{height:97.144667px;}
.h32{height:127.619598px;}
.h43{height:142.673438px;}
.h3f{height:142.673878px;}
.h48{height:145.781358px;}
.h4c{height:145.781958px;}
.h4b{height:145.787358px;}
.h45{height:148.094093px;}
.h4e{height:148.680586px;}
.h3e{height:157.206000px;}
.h42{height:157.384500px;}
.h0{height:1263.000000px;}
.w8{width:22.369500px;}
.w9{width:22.371000px;}
.w6{width:22.485000px;}
.w5{width:22.486500px;}
.w4{width:22.884000px;}
.w2{width:22.885500px;}
.w3{width:23.004000px;}
.w7{width:37.438500px;}
.wb{width:362.947500px;}
.wa{width:362.965500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2b{left:7.164300px;}
.x4b{left:87.272100px;}
.x1{left:113.760000px;}
.x3{left:120.780000px;}
.x14{left:202.060950px;}
.x41{left:205.588950px;}
.x40{left:206.896350px;}
.x70{left:208.968450px;}
.x66{left:211.249050px;}
.x9{left:215.279600px;}
.x15{left:224.467125px;}
.x71{left:227.183590px;}
.x39{left:228.869550px;}
.x3f{left:230.910150px;}
.xc{left:239.118898px;}
.x47{left:241.479150px;}
.x13{left:244.560065px;}
.x7{left:247.499609px;}
.x6c{left:249.077850px;}
.x46{left:250.305750px;}
.x42{left:251.456848px;}
.x27{left:255.887850px;}
.xb{left:257.030400px;}
.xf{left:260.688622px;}
.x2e{left:262.099500px;}
.x11{left:263.654436px;}
.x6{left:265.500000px;}
.xe{left:272.980650px;}
.x4a{left:279.838500px;}
.x1d{left:284.807550px;}
.x1e{left:287.842023px;}
.x60{left:291.295200px;}
.x65{left:292.527750px;}
.x55{left:295.213050px;}
.x56{left:297.253650px;}
.x26{left:298.255350px;}
.x57{left:300.231450px;}
.x54{left:302.951250px;}
.x64{left:304.110300px;}
.x5e{left:305.759550px;}
.x63{left:306.767100px;}
.x53{left:307.840650px;}
.x5d{left:310.608450px;}
.x52{left:312.772050px;}
.x2a{left:314.271000px;}
.x5c{left:315.499350px;}
.x51{left:317.661450px;}
.x2f{left:318.895500px;}
.x5b{left:320.349750px;}
.x50{left:322.594350px;}
.x8{left:324.269460px;}
.x62{left:325.945350px;}
.x4f{left:327.482250px;}
.x5a{left:330.091200px;}
.x45{left:332.259150px;}
.x12{left:334.276587px;}
.x61{left:335.535300px;}
.x4e{left:337.304550px;}
.x4{left:338.311267px;}
.x10{left:340.552200px;}
.x4d{left:342.193950px;}
.x6e{left:344.089200px;}
.x1f{left:345.521100px;}
.x4c{left:347.125350px;}
.x59{left:349.572300px;}
.x6d{left:361.024350px;}
.xa{left:364.048908px;}
.x3a{left:367.115299px;}
.x3c{left:376.811473px;}
.x37{left:382.116231px;}
.xd{left:383.135805px;}
.x28{left:389.511361px;}
.x2d{left:390.867000px;}
.x18{left:395.524239px;}
.x16{left:398.967150px;}
.x2c{left:402.487500px;}
.x17{left:405.139687px;}
.x3d{left:414.443550px;}
.x3e{left:419.242182px;}
.x67{left:434.290672px;}
.x68{left:437.745000px;}
.x69{left:440.445450px;}
.x5{left:444.600000px;}
.x6b{left:445.819050px;}
.x6a{left:450.575100px;}
.x21{left:454.110239px;}
.x20{left:459.585894px;}
.x3b{left:462.016650px;}
.x22{left:464.085750px;}
.x48{left:465.501150px;}
.x43{left:471.573600px;}
.x38{left:473.035500px;}
.x29{left:478.367100px;}
.x6f{left:494.004000px;}
.x58{left:496.100100px;}
.x5f{left:497.334000px;}
.x1c{left:507.789000px;}
.x1a{left:508.869945px;}
.x44{left:512.728067px;}
.x2{left:514.440000px;}
.x19{left:516.752250px;}
.x1b{left:518.636762px;}
.x33{left:530.955000px;}
.x35{left:532.810500px;}
.x34{left:550.032000px;}
.x30{left:583.809000px;}
.x36{left:588.330000px;}
.x49{left:593.528657px;}
.x23{left:603.857400px;}
.x25{left:606.159414px;}
.x24{left:609.054720px;}
.x32{left:658.686000px;}
.x31{left:670.045500px;}
@media print{
.vc{vertical-align:-29.210906pt;}
.v2{vertical-align:-7.968627pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:6.045333pt;}
.v6{vertical-align:7.970133pt;}
.v1e{vertical-align:11.941333pt;}
.v9{vertical-align:15.342933pt;}
.vf{vertical-align:17.986667pt;}
.v4{vertical-align:19.275439pt;}
.vd{vertical-align:20.305012pt;}
.v10{vertical-align:23.883200pt;}
.vb{vertical-align:28.467733pt;}
.v11{vertical-align:29.928000pt;}
.v1{vertical-align:34.880000pt;}
.v3{vertical-align:35.929546pt;}
.v23{vertical-align:40.734400pt;}
.v12{vertical-align:41.869867pt;}
.v24{vertical-align:46.641067pt;}
.v13{vertical-align:47.765867pt;}
.v5{vertical-align:50.460698pt;}
.v25{vertical-align:52.393600pt;}
.v14{vertical-align:53.811733pt;}
.v8{vertical-align:55.202667pt;}
.v26{vertical-align:58.300267pt;}
.v15{vertical-align:59.707733pt;}
.v27{vertical-align:64.057600pt;}
.v16{vertical-align:65.758400pt;}
.v28{vertical-align:69.958933pt;}
.v17{vertical-align:71.654400pt;}
.v7{vertical-align:74.886416pt;}
.v18{vertical-align:77.700267pt;}
.v29{vertical-align:81.618133pt;}
.v19{vertical-align:83.596267pt;}
.v2a{vertical-align:87.375467pt;}
.v1a{vertical-align:89.641600pt;}
.v2b{vertical-align:93.282133pt;}
.v1f{vertical-align:95.532267pt;}
.v2c{vertical-align:99.034667pt;}
.v20{vertical-align:100.608000pt;}
.v1b{vertical-align:101.582933pt;}
.v2d{vertical-align:104.941333pt;}
.v1c{vertical-align:107.479467pt;}
.va{vertical-align:111.315205pt;}
.v21{vertical-align:112.453333pt;}
.v1d{vertical-align:113.524800pt;}
.v2e{vertical-align:116.600533pt;}
.v22{vertical-align:118.450667pt;}
.lsd5{letter-spacing:-4.727473pt;}
.lsd7{letter-spacing:-4.072605pt;}
.lsa5{letter-spacing:-2.931724pt;}
.ls112{letter-spacing:-2.485628pt;}
.ls113{letter-spacing:-2.480848pt;}
.ls10f{letter-spacing:-2.471288pt;}
.lse6{letter-spacing:-1.455240pt;}
.lse{letter-spacing:-0.426155pt;}
.ls3e{letter-spacing:-0.364602pt;}
.ls1d{letter-spacing:-0.178410pt;}
.ls4e{letter-spacing:-0.125118pt;}
.lsc{letter-spacing:-0.108203pt;}
.ls14{letter-spacing:-0.077955pt;}
.lsd{letter-spacing:-0.072758pt;}
.lsf{letter-spacing:-0.067561pt;}
.ls9{letter-spacing:-0.066472pt;}
.ls9f{letter-spacing:-0.063733pt;}
.ls8{letter-spacing:-0.058163pt;}
.ls10{letter-spacing:-0.046773pt;}
.ls19{letter-spacing:-0.041576pt;}
.ls42{letter-spacing:-0.037245pt;}
.ls40{letter-spacing:-0.037204pt;}
.ls15{letter-spacing:-0.036379pt;}
.ls11{letter-spacing:-0.031182pt;}
.ls13{letter-spacing:-0.025985pt;}
.ls12{letter-spacing:-0.020788pt;}
.lsb{letter-spacing:-0.017085pt;}
.ls18{letter-spacing:-0.015591pt;}
.ls41{letter-spacing:-0.011161pt;}
.ls17{letter-spacing:-0.010394pt;}
.ls1a{letter-spacing:-0.005197pt;}
.ls43{letter-spacing:-0.003720pt;}
.ls7{letter-spacing:0.000000pt;}
.ls75{letter-spacing:0.003718pt;}
.ls6e{letter-spacing:0.005311pt;}
.ls6b{letter-spacing:0.007453pt;}
.ls99{letter-spacing:0.007790pt;}
.ls116{letter-spacing:0.009560pt;}
.ls95{letter-spacing:0.010071pt;}
.ls4d{letter-spacing:0.010622pt;}
.ls35{letter-spacing:0.011161pt;}
.ls38{letter-spacing:0.011174pt;}
.ls8b{letter-spacing:0.011880pt;}
.ls8f{letter-spacing:0.013254pt;}
.ls10d{letter-spacing:0.014340pt;}
.ls74{letter-spacing:0.014871pt;}
.ls36{letter-spacing:0.014882pt;}
.ls2b{letter-spacing:0.015933pt;}
.ls28{letter-spacing:0.019120pt;}
.ls4{letter-spacing:0.020788pt;}
.ls1f{letter-spacing:0.021244pt;}
.ls66{letter-spacing:0.021312pt;}
.ls9e{letter-spacing:0.022307pt;}
.ls34{letter-spacing:0.022323pt;}
.ls94{letter-spacing:0.023194pt;}
.ls25{letter-spacing:0.023900pt;}
.ls64{letter-spacing:0.023999pt;}
.ls5f{letter-spacing:0.024160pt;}
.ls2{letter-spacing:0.024896pt;}
.ls27{letter-spacing:0.025494pt;}
.ls67{letter-spacing:0.026020pt;}
.ls60{letter-spacing:0.026024pt;}
.ls39{letter-spacing:0.026043pt;}
.ls6f{letter-spacing:0.026445pt;}
.ls21{letter-spacing:0.026555pt;}
.ls7d{letter-spacing:0.026586pt;}
.ls22{letter-spacing:0.028680pt;}
.ls97{letter-spacing:0.029121pt;}
.ls51{letter-spacing:0.029456pt;}
.ls8d{letter-spacing:0.029654pt;}
.ls3a{letter-spacing:0.029763pt;}
.ls1e{letter-spacing:0.030592pt;}
.ls52{letter-spacing:0.030825pt;}
.ls6c{letter-spacing:0.030978pt;}
.ls1{letter-spacing:0.031120pt;}
.ls20{letter-spacing:0.031867pt;}
.ls69{letter-spacing:0.032255pt;}
.ls57{letter-spacing:0.032262pt;}
.ls26{letter-spacing:0.033460pt;}
.ls3b{letter-spacing:0.037178pt;}
.ls37{letter-spacing:0.037204pt;}
.ls9c{letter-spacing:0.037739pt;}
.ls23{letter-spacing:0.038240pt;}
.lsb1{letter-spacing:0.038246pt;}
.lsc1{letter-spacing:0.040062pt;}
.ls3d{letter-spacing:0.040925pt;}
.ls5c{letter-spacing:0.041215pt;}
.lsae{letter-spacing:0.041863pt;}
.ls5e{letter-spacing:0.042489pt;}
.ls24{letter-spacing:0.043020pt;}
.ls92{letter-spacing:0.044329pt;}
.ls61{letter-spacing:0.044639pt;}
.ls3{letter-spacing:0.045559pt;}
.ls30{letter-spacing:0.047800pt;}
.ls3f{letter-spacing:0.052086pt;}
.ls88{letter-spacing:0.053111pt;}
.ls6{letter-spacing:0.126036pt;}
.ls4f{letter-spacing:0.131466pt;}
.ls5{letter-spacing:0.134427pt;}
.ls16{letter-spacing:0.285836pt;}
.ls1b{letter-spacing:0.311821pt;}
.ls111{letter-spacing:0.630967pt;}
.ls73{letter-spacing:1.479853pt;}
.ls78{letter-spacing:1.486969pt;}
.ls63{letter-spacing:1.922616pt;}
.lsa7{letter-spacing:1.927927pt;}
.lsb3{letter-spacing:2.034149pt;}
.ls6d{letter-spacing:2.658116pt;}
.lscd{letter-spacing:2.658533pt;}
.lsce{letter-spacing:2.659067pt;}
.ls8c{letter-spacing:2.662916pt;}
.ls58{letter-spacing:2.663450pt;}
.ls96{letter-spacing:2.663983pt;}
.lsbf{letter-spacing:2.667104pt;}
.lsbd{letter-spacing:2.667637pt;}
.lsb2{letter-spacing:4.004303pt;}
.ls3c{letter-spacing:4.169208pt;}
.ls2f{letter-spacing:4.328541pt;}
.ls29{letter-spacing:5.443871pt;}
.ls72{letter-spacing:6.378623pt;}
.lse2{letter-spacing:6.405179pt;}
.lsfa{letter-spacing:8.197791pt;}
.lsc9{letter-spacing:8.434016pt;}
.lsca{letter-spacing:8.439327pt;}
.lse1{letter-spacing:8.609282pt;}
.lsbc{letter-spacing:8.869526pt;}
.lsc3{letter-spacing:8.874837pt;}
.ls83{letter-spacing:8.890770pt;}
.ls80{letter-spacing:8.896081pt;}
.lsa1{letter-spacing:8.912015pt;}
.lsc6{letter-spacing:10.197299pt;}
.lscf{letter-spacing:10.931982pt;}
.lsd1{letter-spacing:10.936762pt;}
.lsd0{letter-spacing:10.955882pt;}
.lsd2{letter-spacing:10.960662pt;}
.lsf3{letter-spacing:11.185325pt;}
.lsf9{letter-spacing:11.466651pt;}
.ls90{letter-spacing:11.512516pt;}
.ls93{letter-spacing:11.513050pt;}
.lsaa{letter-spacing:11.822494pt;}
.ls91{letter-spacing:11.833116pt;}
.ls7a{letter-spacing:11.838427pt;}
.ls77{letter-spacing:11.843738pt;}
.ls106{letter-spacing:12.401403pt;}
.ls87{letter-spacing:13.506110pt;}
.lse4{letter-spacing:13.642272pt;}
.ls103{letter-spacing:13.661392pt;}
.lse0{letter-spacing:13.690073pt;}
.ls115{letter-spacing:14.029457pt;}
.ls86{letter-spacing:14.223108pt;}
.lsf4{letter-spacing:14.263679pt;}
.lsf2{letter-spacing:14.306700pt;}
.ls8e{letter-spacing:14.466650pt;}
.ls76{letter-spacing:14.468315pt;}
.lsc7{letter-spacing:14.754217pt;}
.ls4b{letter-spacing:14.759528pt;}
.ls7b{letter-spacing:14.764839pt;}
.ls55{letter-spacing:14.780773pt;}
.ls56{letter-spacing:14.786084pt;}
.ls2e{letter-spacing:14.791395pt;}
.ls4c{letter-spacing:14.807328pt;}
.ls59{letter-spacing:14.812639pt;}
.ls65{letter-spacing:14.956039pt;}
.lse5{letter-spacing:14.987905pt;}
.ls79{letter-spacing:15.368663pt;}
.ls102{letter-spacing:15.372652pt;}
.ls84{letter-spacing:15.901413pt;}
.lsba{letter-spacing:16.087302pt;}
.ls108{letter-spacing:16.182901pt;}
.lsf6{letter-spacing:16.438603pt;}
.lsc4{letter-spacing:16.453767pt;}
.lsf7{letter-spacing:16.655589pt;}
.lsb4{letter-spacing:16.698077pt;}
.lsf5{letter-spacing:16.773207pt;}
.lse3{letter-spacing:16.783055pt;}
.ls33{letter-spacing:16.793677pt;}
.ls31{letter-spacing:17.075165pt;}
.ls2d{letter-spacing:17.091098pt;}
.ls47{letter-spacing:17.411940pt;}
.ls70{letter-spacing:17.419716pt;}
.ls104{letter-spacing:17.425697pt;}
.ls10a{letter-spacing:17.462875pt;}
.ls7c{letter-spacing:17.707185pt;}
.ls8a{letter-spacing:17.728430pt;}
.ls71{letter-spacing:17.749674pt;}
.ls107{letter-spacing:18.084273pt;}
.ls54{letter-spacing:18.466672pt;}
.ls10c{letter-spacing:18.535716pt;}
.ls32{letter-spacing:18.971225pt;}
.ls10b{letter-spacing:19.332380pt;}
.ls105{letter-spacing:19.454535pt;}
.lsb8{letter-spacing:19.497024pt;}
.ls5b{letter-spacing:19.619179pt;}
.ls110{letter-spacing:19.669919pt;}
.ls114{letter-spacing:19.908922pt;}
.ls7e{letter-spacing:20.330865pt;}
.ls7f{letter-spacing:20.341487pt;}
.ls6a{letter-spacing:20.362116pt;}
.ls46{letter-spacing:20.365007pt;}
.ls68{letter-spacing:20.367983pt;}
.lsa6{letter-spacing:20.755753pt;}
.ls82{letter-spacing:20.766375pt;}
.lsa9{letter-spacing:20.915086pt;}
.ls81{letter-spacing:21.063796pt;}
.ls53{letter-spacing:21.108783pt;}
.ls48{letter-spacing:21.170018pt;}
.lsb6{letter-spacing:21.217818pt;}
.ls85{letter-spacing:21.324040pt;}
.ls44{letter-spacing:21.727683pt;}
.lsa4{letter-spacing:21.786105pt;}
.lsd3{letter-spacing:21.817971pt;}
.ls10e{letter-spacing:22.122087pt;}
.lsc0{letter-spacing:22.184437pt;}
.lsbb{letter-spacing:22.221615pt;}
.lsa3{letter-spacing:22.402192pt;}
.lsc2{letter-spacing:22.407503pt;}
.lsbe{letter-spacing:22.419104pt;}
.lsad{letter-spacing:22.635880pt;}
.lsac{letter-spacing:22.646502pt;}
.lsa8{letter-spacing:22.816457pt;}
.ls89{letter-spacing:23.235716pt;}
.ls9b{letter-spacing:23.767143pt;}
.lsb5{letter-spacing:23.842037pt;}
.lsb7{letter-spacing:23.847904pt;}
.lsc8{letter-spacing:24.038008pt;}
.ls50{letter-spacing:24.234519pt;}
.lsb0{letter-spacing:24.531940pt;}
.lsab{letter-spacing:24.547873pt;}
.lsa2{letter-spacing:24.579740pt;}
.ls2c{letter-spacing:24.595673pt;}
.lsb9{letter-spacing:24.898406pt;}
.lsaf{letter-spacing:25.103959pt;}
.lsc5{letter-spacing:25.551670pt;}
.lsa0{letter-spacing:26.173068pt;}
.ls9a{letter-spacing:26.381316pt;}
.ls9d{letter-spacing:26.386116pt;}
.lsf8{letter-spacing:26.789155pt;}
.lsfb{letter-spacing:26.810399pt;}
.lsd4{letter-spacing:26.916621pt;}
.ls109{letter-spacing:26.978621pt;}
.ls101{letter-spacing:27.002521pt;}
.ls45{letter-spacing:27.543330pt;}
.ls5d{letter-spacing:28.829826pt;}
.ls62{letter-spacing:30.147770pt;}
.ls2a{letter-spacing:32.594180pt;}
.lsf0{letter-spacing:36.937195pt;}
.lsee{letter-spacing:36.937728pt;}
.lsed{letter-spacing:36.942528pt;}
.lsef{letter-spacing:36.943061pt;}
.lsf1{letter-spacing:37.091861pt;}
.lsec{letter-spacing:37.522018pt;}
.lse8{letter-spacing:37.522551pt;}
.lse9{letter-spacing:37.527351pt;}
.lse7{letter-spacing:37.527885pt;}
.lseb{letter-spacing:37.528418pt;}
.lsfd{letter-spacing:37.669246pt;}
.lsff{letter-spacing:37.674579pt;}
.lsfc{letter-spacing:37.675113pt;}
.lsea{letter-spacing:37.677218pt;}
.lsfe{letter-spacing:37.680446pt;}
.ls100{letter-spacing:37.824446pt;}
.lsda{letter-spacing:37.829508pt;}
.lsde{letter-spacing:37.829805pt;}
.lsdc{letter-spacing:37.830338pt;}
.lsd8{letter-spacing:37.834842pt;}
.lsdd{letter-spacing:37.835138pt;}
.lsd9{letter-spacing:37.835375pt;}
.lsdb{letter-spacing:37.984175pt;}
.lsdf{letter-spacing:37.984471pt;}
.lscb{letter-spacing:47.532850pt;}
.lscc{letter-spacing:47.542410pt;}
.ls1c{letter-spacing:53.430494pt;}
.lsd6{letter-spacing:114.085533pt;}
.ls49{letter-spacing:153.235665pt;}
.ls5a{letter-spacing:572.376529pt;}
.ls4a{letter-spacing:598.666441pt;}
.ls98{letter-spacing:706.990916pt;}
.ls0{letter-spacing:1409.080000pt;}
.lsa{letter-spacing:1462.536302pt;}
.ws127{word-spacing:-137.985800pt;}
.ws10c{word-spacing:-53.472088pt;}
.ws17f{word-spacing:-53.365866pt;}
.wsb1{word-spacing:-52.728535pt;}
.wse5{word-spacing:-51.453872pt;}
.wsb4{word-spacing:-51.135207pt;}
.ws198{word-spacing:-50.878888pt;}
.wsb6{word-spacing:-48.957658pt;}
.wsfa{word-spacing:-48.777081pt;}
.ws105{word-spacing:-48.373438pt;}
.wsbe{word-spacing:-48.341572pt;}
.wsc4{word-spacing:-47.311219pt;}
.wsda{word-spacing:-46.052490pt;}
.ws1af{word-spacing:-46.022353pt;}
.ws19c{word-spacing:-45.887846pt;}
.ws19f{word-spacing:-45.091182pt;}
.ws19b{word-spacing:-44.018342pt;}
.ws1f7{word-spacing:-43.809189pt;}
.ws1cb{word-spacing:-43.570186pt;}
.wsea{word-spacing:-42.642768pt;}
.ws14a{word-spacing:-41.543372pt;}
.wsa9{word-spacing:-41.368106pt;}
.ws93{word-spacing:-41.362795pt;}
.wsc7{word-spacing:-40.778575pt;}
.ws168{word-spacing:-40.673474pt;}
.ws16a{word-spacing:-40.338870pt;}
.wsc8{word-spacing:-38.388583pt;}
.ws167{word-spacing:-38.163946pt;}
.ws207{word-spacing:-37.929723pt;}
.ws141{word-spacing:-37.542539pt;}
.wsfe{word-spacing:-35.424993pt;}
.wsb5{word-spacing:-26.597955pt;}
.ws94{word-spacing:-26.571400pt;}
.wsc1{word-spacing:-26.555467pt;}
.ws19d{word-spacing:-24.999316pt;}
.ws135{word-spacing:-23.919387pt;}
.wsc2{word-spacing:-23.623743pt;}
.ws12b{word-spacing:-19.827661pt;}
.ws11d{word-spacing:-18.238295pt;}
.ws146{word-spacing:-18.089584pt;}
.ws115{word-spacing:-17.813407pt;}
.wsc0{word-spacing:-17.781540pt;}
.ws79{word-spacing:-17.749674pt;}
.wsf5{word-spacing:-17.739052pt;}
.wsfb{word-spacing:-17.728430pt;}
.ws109{word-spacing:-17.707185pt;}
.ws6d{word-spacing:-17.696563pt;}
.ws95{word-spacing:-17.675319pt;}
.ws86{word-spacing:-14.786084pt;}
.wsc9{word-spacing:-14.775462pt;}
.ws52{word-spacing:-14.478040pt;}
.ws91{word-spacing:-14.467418pt;}
.ws1aa{word-spacing:-13.830087pt;}
.ws152{word-spacing:-13.734487pt;}
.ws1a2{word-spacing:-13.415822pt;}
.wsca{word-spacing:-13.362711pt;}
.ws92{word-spacing:-13.192756pt;}
.ws87{word-spacing:-13.139645pt;}
.ws129{word-spacing:-13.030425pt;}
.ws12d{word-spacing:-13.025645pt;}
.wsef{word-spacing:-12.980312pt;}
.wsf2{word-spacing:-12.964379pt;}
.ws150{word-spacing:-12.959068pt;}
.wsaa{word-spacing:-12.937823pt;}
.ws0{word-spacing:-12.876124pt;}
.wsac{word-spacing:-12.831601pt;}
.ws53{word-spacing:-12.820979pt;}
.ws184{word-spacing:-12.619158pt;}
.ws55{word-spacing:-12.502314pt;}
.ws66{word-spacing:-12.236759pt;}
.ws153{word-spacing:-12.215515pt;}
.ws11c{word-spacing:-12.194270pt;}
.ws70{word-spacing:-12.141159pt;}
.ws2{word-spacing:-12.135026pt;}
.ws112{word-spacing:-12.130537pt;}
.ws1a6{word-spacing:-12.125226pt;}
.ws186{word-spacing:-11.981827pt;}
.ws54{word-spacing:-11.918093pt;}
.ws36{word-spacing:-11.916673pt;}
.wsff{word-spacing:-11.896849pt;}
.ws14c{word-spacing:-11.854360pt;}
.ws3{word-spacing:-11.823205pt;}
.ws1{word-spacing:-11.776432pt;}
.wsbb{word-spacing:-11.758761pt;}
.ws154{word-spacing:-11.721583pt;}
.ws156{word-spacing:-11.705650pt;}
.ws149{word-spacing:-11.610050pt;}
.ws96{word-spacing:-11.567561pt;}
.ws97{word-spacing:-11.556939pt;}
.ws200{word-spacing:-11.539049pt;}
.ws63{word-spacing:-11.514450pt;}
.ws7f{word-spacing:-11.450717pt;}
.ws37{word-spacing:-11.381307pt;}
.ws145{word-spacing:-11.344495pt;}
.ws159{word-spacing:-11.333873pt;}
.ws1d6{word-spacing:-11.304826pt;}
.ws1db{word-spacing:-11.285706pt;}
.ws81{word-spacing:-11.280762pt;}
.ws5f{word-spacing:-11.217029pt;}
.ws7d{word-spacing:-11.185163pt;}
.wsd4{word-spacing:-11.169229pt;}
.wsad{word-spacing:-11.121429pt;}
.wsf4{word-spacing:-11.089563pt;}
.wsf7{word-spacing:-11.078941pt;}
.wsf8{word-spacing:-11.063007pt;}
.ws157{word-spacing:-11.057696pt;}
.ws1ab{word-spacing:-11.025830pt;}
.ws1ec{word-spacing:-10.989343pt;}
.ws30{word-spacing:-10.898522pt;}
.wse1{word-spacing:-10.898364pt;}
.ws18c{word-spacing:-10.866497pt;}
.ws18f{word-spacing:-10.855875pt;}
.ws1c2{word-spacing:-10.798140pt;}
.ws1ba{word-spacing:-10.692979pt;}
.ws6b{word-spacing:-10.685920pt;}
.wsab{word-spacing:-10.669987pt;}
.ws35{word-spacing:-10.649959pt;}
.ws222{word-spacing:-10.645179pt;}
.ws14f{word-spacing:-10.643431pt;}
.ws11e{word-spacing:-10.600942pt;}
.ws11f{word-spacing:-10.579698pt;}
.ws147{word-spacing:-10.569076pt;}
.ws185{word-spacing:-10.547831pt;}
.ws8d{word-spacing:-10.537209pt;}
.ws90{word-spacing:-10.531898pt;}
.wse9{word-spacing:-10.526587pt;}
.ws8e{word-spacing:-10.510654pt;}
.ws51{word-spacing:-10.494720pt;}
.ws151{word-spacing:-10.441609pt;}
.ws116{word-spacing:-10.399121pt;}
.wsdb{word-spacing:-10.388499pt;}
.ws77{word-spacing:-10.229166pt;}
.ws13f{word-spacing:-10.171953pt;}
.ws83{word-spacing:-10.101700pt;}
.ws43{word-spacing:-10.059211pt;}
.ws5e{word-spacing:-10.006100pt;}
.ws17d{word-spacing:-9.947678pt;}
.ws205{word-spacing:-9.928171pt;}
.ws100{word-spacing:-9.899878pt;}
.ws42{word-spacing:-9.751167pt;}
.ws67{word-spacing:-9.740545pt;}
.ws118{word-spacing:-9.698056pt;}
.ws187{word-spacing:-9.687434pt;}
.ws1f4{word-spacing:-9.679608pt;}
.ws80{word-spacing:-9.591835pt;}
.wsf1{word-spacing:-9.581212pt;}
.ws61{word-spacing:-9.570590pt;}
.ws6e{word-spacing:-9.554657pt;}
.ws6c{word-spacing:-9.538724pt;}
.ws6f{word-spacing:-9.512168pt;}
.wsae{word-spacing:-9.443124pt;}
.wsd5{word-spacing:-9.432502pt;}
.ws1b4{word-spacing:-9.335444pt;}
.ws143{word-spacing:-9.299724pt;}
.ws1b2{word-spacing:-9.263743pt;}
.wse7{word-spacing:-9.220058pt;}
.ws3a{word-spacing:-9.201603pt;}
.ws16e{word-spacing:-9.187263pt;}
.ws1ff{word-spacing:-9.182482pt;}
.ws181{word-spacing:-9.113836pt;}
.ws1a3{word-spacing:-9.103214pt;}
.ws182{word-spacing:-9.097903pt;}
.ws183{word-spacing:-9.092592pt;}
.ws16f{word-spacing:-9.082101pt;}
.ws126{word-spacing:-9.072541pt;}
.ws16d{word-spacing:-9.034301pt;}
.ws1f1{word-spacing:-8.976940pt;}
.ws119{word-spacing:-8.949192pt;}
.ws48{word-spacing:-8.933259pt;}
.ws29{word-spacing:-8.922637pt;}
.wscd{word-spacing:-8.917326pt;}
.wsba{word-spacing:-8.912015pt;}
.ws64{word-spacing:-8.901392pt;}
.ws148{word-spacing:-8.896081pt;}
.ws28{word-spacing:-8.890770pt;}
.ws88{word-spacing:-8.885459pt;}
.ws82{word-spacing:-8.880148pt;}
.ws5a{word-spacing:-8.869526pt;}
.wsaf{word-spacing:-8.853593pt;}
.wsd7{word-spacing:-8.848281pt;}
.ws57{word-spacing:-8.837659pt;}
.ws46{word-spacing:-8.827037pt;}
.ws27{word-spacing:-8.816415pt;}
.ws98{word-spacing:-8.811104pt;}
.ws7e{word-spacing:-8.784548pt;}
.ws1f8{word-spacing:-8.685357pt;}
.ws4b{word-spacing:-8.635838pt;}
.ws8f{word-spacing:-8.619904pt;}
.ws4c{word-spacing:-8.582727pt;}
.ws1f9{word-spacing:-8.498935pt;}
.ws1fb{word-spacing:-8.475035pt;}
.ws211{word-spacing:-8.470255pt;}
.ws1ed{word-spacing:-8.455914pt;}
.ws208{word-spacing:-8.451134pt;}
.ws144{word-spacing:-8.370283pt;}
.ws1ef{word-spacing:-8.331633pt;}
.ws1cd{word-spacing:-8.216912pt;}
.ws210{word-spacing:-8.188231pt;}
.wsa6{word-spacing:-8.184395pt;}
.ws20e{word-spacing:-8.183451pt;}
.ws155{word-spacing:-8.179084pt;}
.wsa5{word-spacing:-8.147217pt;}
.wsa2{word-spacing:-8.136595pt;}
.wsa4{word-spacing:-8.125973pt;}
.ws1be{word-spacing:-8.111751pt;}
.ws1d5{word-spacing:-8.102190pt;}
.wsa0{word-spacing:-8.094106pt;}
.ws49{word-spacing:-8.083484pt;}
.ws1a0{word-spacing:-8.051617pt;}
.ws1d3{word-spacing:-8.044830pt;}
.ws19e{word-spacing:-8.040995pt;}
.ws1a5{word-spacing:-7.998507pt;}
.ws1a8{word-spacing:-7.945396pt;}
.ws1fe{word-spacing:-7.901428pt;}
.ws4a{word-spacing:-7.839174pt;}
.ws20c{word-spacing:-7.824947pt;}
.ws1b1{word-spacing:-7.801047pt;}
.ws15a{word-spacing:-7.679841pt;}
.ws2e{word-spacing:-7.614625pt;}
.ws121{word-spacing:-7.609845pt;}
.ws2b{word-spacing:-7.605065pt;}
.ws17a{word-spacing:-7.600285pt;}
.ws140{word-spacing:-7.595505pt;}
.ws2d{word-spacing:-7.590725pt;}
.ws190{word-spacing:-7.581165pt;}
.ws169{word-spacing:-7.576385pt;}
.ws199{word-spacing:-7.571604pt;}
.ws1b9{word-spacing:-7.566824pt;}
.ws16b{word-spacing:-7.562044pt;}
.ws1b5{word-spacing:-7.557264pt;}
.ws2a{word-spacing:-7.552484pt;}
.ws1cc{word-spacing:-7.547704pt;}
.ws9b{word-spacing:-7.542924pt;}
.ws177{word-spacing:-7.538144pt;}
.ws1df{word-spacing:-7.533364pt;}
.ws103{word-spacing:-7.528584pt;}
.wsf6{word-spacing:-7.520508pt;}
.ws172{word-spacing:-7.519024pt;}
.ws3d{word-spacing:-7.514244pt;}
.ws2c{word-spacing:-7.509464pt;}
.ws72{word-spacing:-7.504684pt;}
.ws41{word-spacing:-7.467397pt;}
.ws59{word-spacing:-7.446153pt;}
.wse6{word-spacing:-7.414286pt;}
.ws20d{word-spacing:-7.370842pt;}
.ws38{word-spacing:-7.351722pt;}
.ws204{word-spacing:-7.323042pt;}
.ws19a{word-spacing:-7.308064pt;}
.ws142{word-spacing:-7.297442pt;}
.ws166{word-spacing:-7.222661pt;}
.ws1dc{word-spacing:-7.189200pt;}
.ws14e{word-spacing:-7.138109pt;}
.wsa7{word-spacing:-7.127487pt;}
.wsd9{word-spacing:-7.074376pt;}
.ws21e{word-spacing:-7.060139pt;}
.ws60{word-spacing:-7.042510pt;}
.ws21c{word-spacing:-7.031458pt;}
.wse8{word-spacing:-6.978777pt;}
.ws84{word-spacing:-6.925666pt;}
.ws1fc{word-spacing:-6.916737pt;}
.ws108{word-spacing:-6.893799pt;}
.ws107{word-spacing:-6.830066pt;}
.ws45{word-spacing:-6.808822pt;}
.ws58{word-spacing:-6.723844pt;}
.wsa1{word-spacing:-6.644178pt;}
.ws50{word-spacing:-6.596378pt;}
.ws209{word-spacing:-6.591694pt;}
.ws56{word-spacing:-6.437045pt;}
.ws11b{word-spacing:-6.405179pt;}
.ws11a{word-spacing:-6.352068pt;}
.ws12a{word-spacing:-6.343131pt;}
.ws1e1{word-spacing:-6.304890pt;}
.ws3f{word-spacing:-6.295330pt;}
.ws4e{word-spacing:-6.288335pt;}
.ws1a4{word-spacing:-6.235224pt;}
.ws3c{word-spacing:-6.166269pt;}
.ws9e{word-spacing:-6.139624pt;}
.ws44{word-spacing:-6.075891pt;}
.ws224{word-spacing:-6.056328pt;}
.ws223{word-spacing:-6.046767pt;}
.wscb{word-spacing:-6.022780pt;}
.ws3b{word-spacing:-5.994187pt;}
.wscc{word-spacing:-5.980291pt;}
.ws225{word-spacing:-5.855565pt;}
.ws6a{word-spacing:-5.820958pt;}
.ws68{word-spacing:-5.810336pt;}
.ws69{word-spacing:-5.799714pt;}
.ws158{word-spacing:-5.767847pt;}
.ws189{word-spacing:-5.757225pt;}
.wsbf{word-spacing:-5.576648pt;}
.wsbd{word-spacing:-5.560715pt;}
.ws18a{word-spacing:-5.481048pt;}
.ws101{word-spacing:-5.427937pt;}
.ws102{word-spacing:-5.385449pt;}
.ws113{word-spacing:-5.364204pt;}
.ws78{word-spacing:-5.321716pt;}
.wsc6{word-spacing:-5.300471pt;}
.ws202{word-spacing:-5.291519pt;}
.ws203{word-spacing:-5.281959pt;}
.ws7a{word-spacing:-5.279227pt;}
.wsc3{word-spacing:-5.268605pt;}
.wsc5{word-spacing:-5.257982pt;}
.wsdc{word-spacing:-5.236738pt;}
.ws17c{word-spacing:-5.194249pt;}
.ws21b{word-spacing:-5.133777pt;}
.ws1e7{word-spacing:-5.109877pt;}
.ws9f{word-spacing:-5.088027pt;}
.wsf0{word-spacing:-5.077405pt;}
.ws39{word-spacing:-4.923455pt;}
.ws8c{word-spacing:-4.896828pt;}
.ws8b{word-spacing:-4.880895pt;}
.ws8a{word-spacing:-4.875584pt;}
.ws4f{word-spacing:-4.864961pt;}
.ws104{word-spacing:-4.806539pt;}
.ws34{word-spacing:-4.713133pt;}
.ws10f{word-spacing:-4.695007pt;}
.ws106{word-spacing:-4.684384pt;}
.ws110{word-spacing:-4.641896pt;}
.ws5b{word-spacing:-4.631273pt;}
.ws18e{word-spacing:-4.615340pt;}
.ws5d{word-spacing:-4.599407pt;}
.ws1b6{word-spacing:-4.574511pt;}
.ws1bd{word-spacing:-4.507590pt;}
.ws1bb{word-spacing:-4.483690pt;}
.ws32{word-spacing:-4.455010pt;}
.wsd3{word-spacing:-4.418830pt;}
.wsd0{word-spacing:-4.397585pt;}
.wsfc{word-spacing:-4.371030pt;}
.wscf{word-spacing:-4.333852pt;}
.ws1c9{word-spacing:-4.273368pt;}
.wsb7{word-spacing:-4.248875pt;}
.ws1d2{word-spacing:-4.239907pt;}
.ws20a{word-spacing:-4.177767pt;}
.wsdd{word-spacing:-4.174519pt;}
.ws1a9{word-spacing:-4.163897pt;}
.ws9d{word-spacing:-4.153275pt;}
.wsde{word-spacing:-4.147964pt;}
.wsdf{word-spacing:-4.142653pt;}
.ws1ad{word-spacing:-4.121408pt;}
.ws33{word-spacing:-4.053485pt;}
.ws1f5{word-spacing:-4.024805pt;}
.ws1e5{word-spacing:-3.867063pt;}
.ws1de{word-spacing:-3.819263pt;}
.ws18b{word-spacing:-3.685899pt;}
.ws62{word-spacing:-3.654032pt;}
.ws1c3{word-spacing:-3.647181pt;}
.wsd2{word-spacing:-3.505322pt;}
.wsd1{word-spacing:-3.484077pt;}
.ws1a7{word-spacing:-3.409722pt;}
.ws1c8{word-spacing:-3.259996pt;}
.ws1d9{word-spacing:-3.236096pt;}
.ws227{word-spacing:-3.188296pt;}
.ws1d1{word-spacing:-3.159615pt;}
.ws1ce{word-spacing:-3.154835pt;}
.wse0{word-spacing:-3.154789pt;}
.wseb{word-spacing:-3.000768pt;}
.wsd6{word-spacing:-2.995457pt;}
.wsec{word-spacing:-2.952968pt;}
.ws18d{word-spacing:-2.942346pt;}
.ws1b7{word-spacing:-2.925393pt;}
.ws174{word-spacing:-2.743751pt;}
.ws173{word-spacing:-2.734191pt;}
.wsfd{word-spacing:-2.729902pt;}
.ws214{word-spacing:-2.643369pt;}
.ws212{word-spacing:-2.624249pt;}
.ws14b{word-spacing:-2.570569pt;}
.ws188{word-spacing:-2.565258pt;}
.ws47{word-spacing:-2.506836pt;}
.ws85{word-spacing:-2.347503pt;}
.ws1c7{word-spacing:-2.256185pt;}
.wsb0{word-spacing:-2.060704pt;}
.wsb3{word-spacing:-2.039460pt;}
.ws7b{word-spacing:-1.965105pt;}
.ws7c{word-spacing:-1.922616pt;}
.ws1b0{word-spacing:-1.849881pt;}
.ws1c1{word-spacing:-1.830760pt;}
.ws1ae{word-spacing:-1.825980pt;}
.ws1bf{word-spacing:-1.806860pt;}
.wse4{word-spacing:-1.789838pt;}
.wse2{word-spacing:-1.784527pt;}
.ws17b{word-spacing:-1.768594pt;}
.ws17e{word-spacing:-1.699550pt;}
.ws22a{word-spacing:-1.687359pt;}
.ws21a{word-spacing:-1.682579pt;}
.ws10d{word-spacing:-1.662372pt;}
.ws180{word-spacing:-1.646439pt;}
.ws10e{word-spacing:-1.625195pt;}
.ws10a{word-spacing:-1.614572pt;}
.ws1e2{word-spacing:-1.214134pt;}
.ws1e9{word-spacing:-1.085072pt;}
.ws117{word-spacing:-1.009108pt;}
.ws1ea{word-spacing:-0.994251pt;}
.ws1f0{word-spacing:-0.893870pt;}
.ws1cf{word-spacing:-0.678768pt;}
.ws7{word-spacing:-0.390524pt;}
.ws89{word-spacing:-0.339910pt;}
.ws21f{word-spacing:-0.282023pt;}
.ws23{word-spacing:-0.210060pt;}
.ws8{word-spacing:-0.143152pt;}
.ws9{word-spacing:-0.136928pt;}
.ws5c{word-spacing:-0.090289pt;}
.ws1ac{word-spacing:-0.089227pt;}
.ws1f3{word-spacing:-0.086041pt;}
.ws5{word-spacing:-0.083090pt;}
.wsf9{word-spacing:-0.079666pt;}
.wsf3{word-spacing:-0.074355pt;}
.ws229{word-spacing:-0.071701pt;}
.wsb2{word-spacing:-0.063202pt;}
.ws1e4{word-spacing:-0.062141pt;}
.ws99{word-spacing:-0.038786pt;}
.ws9a{word-spacing:-0.037915pt;}
.ws21{word-spacing:-0.031182pt;}
.ws4{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.005197pt;}
.ws1d{word-spacing:0.020788pt;}
.ws22{word-spacing:0.025985pt;}
.ws1c{word-spacing:0.036379pt;}
.ws75{word-spacing:0.048366pt;}
.ws6{word-spacing:0.058163pt;}
.wsa{word-spacing:0.091118pt;}
.wsc{word-spacing:0.136677pt;}
.ws73{word-spacing:0.137656pt;}
.wsb{word-spacing:0.153762pt;}
.ws74{word-spacing:0.186021pt;}
.ws197{word-spacing:0.434985pt;}
.ws1c6{word-spacing:0.521026pt;}
.ws178{word-spacing:0.640527pt;}
.ws219{word-spacing:0.946451pt;}
.ws218{word-spacing:0.979911pt;}
.ws216{word-spacing:1.218914pt;}
.ws215{word-spacing:1.228474pt;}
.ws217{word-spacing:1.257154pt;}
.ws17{word-spacing:1.621468pt;}
.wse3{word-spacing:1.800461pt;}
.ws1a{word-spacing:1.928092pt;}
.ws13{word-spacing:1.933289pt;}
.ws1b{word-spacing:1.943683pt;}
.ws31{word-spacing:2.141464pt;}
.ws10b{word-spacing:2.225348pt;}
.ws19{word-spacing:2.297080pt;}
.ws18{word-spacing:2.307474pt;}
.ws1e0{word-spacing:2.433047pt;}
.ws1d7{word-spacing:2.437827pt;}
.ws130{word-spacing:2.710290pt;}
.ws12e{word-spacing:2.715070pt;}
.ws134{word-spacing:2.719850pt;}
.ws133{word-spacing:2.724630pt;}
.ws132{word-spacing:2.729410pt;}
.ws12c{word-spacing:2.743751pt;}
.ws128{word-spacing:2.748531pt;}
.ws12{word-spacing:3.528772pt;}
.ws11{word-spacing:3.539166pt;}
.ws22c{word-spacing:4.153866pt;}
.wsf{word-spacing:4.193990pt;}
.wse{word-spacing:4.214778pt;}
.ws10{word-spacing:4.536993pt;}
.ws14{word-spacing:5.134649pt;}
.ws16{word-spacing:5.139846pt;}
.wsd{word-spacing:5.217801pt;}
.ws15{word-spacing:5.451667pt;}
.ws12f{word-spacing:5.463601pt;}
.ws171{word-spacing:7.356502pt;}
.ws71{word-spacing:9.335444pt;}
.ws175{word-spacing:11.725471pt;}
.ws20{word-spacing:13.756494pt;}
.ws201{word-spacing:13.761774pt;}
.ws1f{word-spacing:13.792873pt;}
.ws221{word-spacing:14.669984pt;}
.ws123{word-spacing:15.225361pt;}
.ws206{word-spacing:15.320071pt;}
.ws125{word-spacing:15.430012pt;}
.ws1b3{word-spacing:15.836317pt;}
.ws1f2{word-spacing:16.242621pt;}
.ws1fa{word-spacing:16.639366pt;}
.ws1ee{word-spacing:16.821008pt;}
.ws160{word-spacing:16.882469pt;}
.ws20f{word-spacing:16.930949pt;}
.ws1d4{word-spacing:16.978749pt;}
.ws15b{word-spacing:17.142404pt;}
.ws1fd{word-spacing:17.179512pt;}
.ws191{word-spacing:17.214030pt;}
.ws1da{word-spacing:17.437635pt;}
.ws1e6{word-spacing:17.442415pt;}
.ws4d{word-spacing:17.461535pt;}
.ws1e8{word-spacing:17.466315pt;}
.ws1b8{word-spacing:17.485435pt;}
.ws1d8{word-spacing:17.499775pt;}
.wsb8{word-spacing:17.513908pt;}
.ws226{word-spacing:17.542796pt;}
.ws131{word-spacing:17.748338pt;}
.ws1dd{word-spacing:17.810479pt;}
.ws21d{word-spacing:17.973001pt;}
.ws111{word-spacing:20.261821pt;}
.wsee{word-spacing:20.267132pt;}
.ws1bc{word-spacing:20.291326pt;}
.ws14d{word-spacing:20.293688pt;}
.ws76{word-spacing:20.298999pt;}
.wsd8{word-spacing:20.304310pt;}
.ws9c{word-spacing:20.346799pt;}
.ws1ca{word-spacing:20.468188pt;}
.ws20b{word-spacing:20.654610pt;}
.ws1f6{word-spacing:20.735871pt;}
.wsa3{word-spacing:21.048387pt;}
.ws1c4{word-spacing:21.127836pt;}
.ws1d0{word-spacing:21.577161pt;}
.ws228{word-spacing:21.940445pt;}
.ws213{word-spacing:22.036046pt;}
.ws1c5{word-spacing:22.471031pt;}
.ws1c0{word-spacing:22.791294pt;}
.ws114{word-spacing:23.303241pt;}
.ws1e3{word-spacing:23.317100pt;}
.ws1eb{word-spacing:23.517862pt;}
.ws65{word-spacing:23.798226pt;}
.wsed{word-spacing:23.804600pt;}
.ws220{word-spacing:24.148829pt;}
.ws3e{word-spacing:24.497773pt;}
.wsb9{word-spacing:24.966708pt;}
.ws120{word-spacing:25.807508pt;}
.ws2f{word-spacing:26.476715pt;}
.ws161{word-spacing:26.575675pt;}
.ws164{word-spacing:26.576208pt;}
.ws163{word-spacing:26.581008pt;}
.ws162{word-spacing:26.581541pt;}
.ws165{word-spacing:26.725008pt;}
.ws15d{word-spacing:26.996386pt;}
.ws15e{word-spacing:26.996919pt;}
.ws15c{word-spacing:27.002253pt;}
.ws195{word-spacing:27.102651pt;}
.ws193{word-spacing:27.107451pt;}
.ws192{word-spacing:27.107985pt;}
.ws196{word-spacing:27.112785pt;}
.ws15f{word-spacing:27.151053pt;}
.ws136{word-spacing:27.217764pt;}
.ws13a{word-spacing:27.218373pt;}
.ws13c{word-spacing:27.218906pt;}
.ws138{word-spacing:27.223098pt;}
.ws137{word-spacing:27.223631pt;}
.ws13e{word-spacing:27.223706pt;}
.ws13b{word-spacing:27.224239pt;}
.ws194{word-spacing:27.262651pt;}
.ws13d{word-spacing:27.373039pt;}
.ws139{word-spacing:27.378298pt;}
.ws122{word-spacing:27.394486pt;}
.ws22b{word-spacing:28.259675pt;}
.ws25{word-spacing:28.542535pt;}
.ws26{word-spacing:28.565479pt;}
.ws24{word-spacing:28.580775pt;}
.ws124{word-spacing:30.033075pt;}
.wsa8{word-spacing:35.568392pt;}
.ws40{word-spacing:71.617746pt;}
.ws1a1{word-spacing:71.630493pt;}
.ws176{word-spacing:75.085078pt;}
.ws179{word-spacing:75.113758pt;}
.ws16c{word-spacing:142.698932pt;}
.ws170{word-spacing:364.703729pt;}
.wsbc{word-spacing:521.591241pt;}
.wsce{word-spacing:523.089582pt;}
._2c{margin-left:-114.003993pt;}
._2d{margin-left:-74.763321pt;}
._4c{margin-left:-41.018495pt;}
._9{margin-left:-27.949327pt;}
._24{margin-left:-26.874132pt;}
._6{margin-left:-25.906777pt;}
._c{margin-left:-24.971126pt;}
._a{margin-left:-23.900139pt;}
._1b{margin-left:-22.218577pt;}
._8{margin-left:-20.633598pt;}
._20{margin-left:-19.731267pt;}
._b{margin-left:-18.692749pt;}
._4a{margin-left:-17.758950pt;}
._3c{margin-left:-16.868942pt;}
._21{margin-left:-15.905034pt;}
._1a{margin-left:-14.844506pt;}
._1e{margin-left:-13.569843pt;}
._1f{margin-left:-11.769383pt;}
._23{margin-left:-9.455641pt;}
._49{margin-left:-8.250637pt;}
._2{margin-left:-7.204466pt;}
._7{margin-left:-5.852825pt;}
._3{margin-left:-4.703553pt;}
._f{margin-left:-2.952968pt;}
._5{margin-left:-1.983850pt;}
._1{margin-left:-0.958496pt;}
._0{width:1.346060pt;}
._4{width:2.508561pt;}
._11{width:3.525094pt;}
._12{width:4.674220pt;}
._1d{width:7.567222pt;}
._d{width:8.848281pt;}
._26{width:10.784935pt;}
._18{width:12.699560pt;}
._3b{width:13.766554pt;}
._19{width:15.187228pt;}
._14{width:16.381243pt;}
._e{width:17.407265pt;}
._17{width:18.618798pt;}
._25{width:20.565756pt;}
._22{width:21.656788pt;}
._1c{width:22.658211pt;}
._27{width:23.878381pt;}
._16{width:25.525573pt;}
._4b{width:26.581877pt;}
._30{width:29.402108pt;}
._2b{width:35.775962pt;}
._4d{width:38.592057pt;}
._47{width:39.674570pt;}
._31{width:41.686845pt;}
._35{width:42.638076pt;}
._40{width:45.314906pt;}
._46{width:49.956337pt;}
._29{width:55.648509pt;}
._28{width:56.557571pt;}
._15{width:61.051018pt;}
._45{width:64.358638pt;}
._39{width:66.739105pt;}
._41{width:68.957049pt;}
._13{width:71.713347pt;}
._36{width:73.660622pt;}
._33{width:80.496098pt;}
._2f{width:84.544803pt;}
._38{width:85.945359pt;}
._3a{width:110.514833pt;}
._44{width:124.949282pt;}
._3d{width:125.978306pt;}
._48{width:127.053818pt;}
._10{width:151.618512pt;}
._42{width:154.832397pt;}
._37{width:165.285919pt;}
._2a{width:174.357225pt;}
._2e{width:176.986255pt;}
._43{width:178.936026pt;}
._3e{width:179.876701pt;}
._34{width:196.677616pt;}
._3f{width:204.250951pt;}
._32{width:487.586329pt;}
.fs18{font-size:17.712000pt;}
.fs16{font-size:17.992533pt;}
.fs1a{font-size:18.063467pt;}
.fs14{font-size:18.139200pt;}
.fs12{font-size:18.139733pt;}
.fs10{font-size:23.902933pt;}
.fs19{font-size:26.568000pt;}
.fs17{font-size:26.988267pt;}
.fs1b{font-size:27.095467pt;}
.fs15{font-size:27.208533pt;}
.fs13{font-size:27.210133pt;}
.fs11{font-size:31.866667pt;}
.fs5{font-size:36.410133pt;}
.fsd{font-size:37.177600pt;}
.fsb{font-size:37.204267pt;}
.fsc{font-size:37.245333pt;}
.fsf{font-size:37.914667pt;}
.fse{font-size:38.786133pt;}
.fs4{font-size:38.900267pt;}
.fs6{font-size:46.680000pt;}
.fs9{font-size:47.800533pt;}
.fs3{font-size:51.970133pt;}
.fs8{font-size:53.110933pt;}
.fs1{font-size:56.948800pt;}
.fs0{font-size:62.240000pt;}
.fsa{font-size:63.733867pt;}
.fs7{font-size:76.480533pt;}
.fs2{font-size:83.090133pt;}
.y144{bottom:-0.354400pt;}
.y15b{bottom:-0.188533pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:5.091067pt;}
.yc5{bottom:5.133467pt;}
.ybb{bottom:5.147600pt;}
.yc7{bottom:5.194533pt;}
.yb9{bottom:5.208000pt;}
.yca{bottom:5.830000pt;}
.yc1{bottom:5.932000pt;}
.ycc{bottom:5.932933pt;}
.ybf{bottom:6.068933pt;}
.ybd{bottom:6.174267pt;}
.yb7{bottom:6.174400pt;}
.y3c{bottom:143.947067pt;}
.y3b{bottom:157.787067pt;}
.y3a{bottom:172.188518pt;}
.y39{bottom:183.548369pt;}
.y38{bottom:194.987964pt;}
.y37{bottom:206.347815pt;}
.y36{bottom:217.707665pt;}
.y35{bottom:229.147261pt;}
.y187{bottom:237.598365pt;}
.y243{bottom:237.599120pt;}
.y62{bottom:237.599312pt;}
.yfa{bottom:237.599920pt;}
.y208{bottom:237.600981pt;}
.y273{bottom:237.613306pt;}
.y9a{bottom:239.923600pt;}
.y34{bottom:240.507111pt;}
.y141{bottom:242.511867pt;}
.y140{bottom:249.815333pt;}
.y33{bottom:251.866962pt;}
.y272{bottom:252.218758pt;}
.y2a4{bottom:253.002056pt;}
.y186{bottom:253.531645pt;}
.y242{bottom:253.532400pt;}
.y61{bottom:253.532592pt;}
.yf9{bottom:253.533200pt;}
.y207{bottom:253.534261pt;}
.y32{bottom:263.147462pt;}
.y271{bottom:266.824211pt;}
.y2a3{bottom:267.607509pt;}
.y1c6{bottom:268.663200pt;}
.y185{bottom:269.464925pt;}
.y60{bottom:269.465872pt;}
.yf8{bottom:269.466480pt;}
.y206{bottom:269.467541pt;}
.y13f{bottom:271.723333pt;}
.y1c7{bottom:272.685467pt;}
.y96{bottom:273.270667pt;}
.y31{bottom:273.787413pt;}
.y1d7{bottom:274.308800pt;}
.yc6{bottom:274.452000pt;}
.y1c8{bottom:276.670533pt;}
.yc8{bottom:278.307067pt;}
.y13e{bottom:279.026800pt;}
.y1c9{bottom:280.691467pt;}
.y241{bottom:281.336533pt;}
.y270{bottom:281.372304pt;}
.y2a2{bottom:282.212962pt;}
.yc2{bottom:282.797333pt;}
.yb8{bottom:283.564000pt;}
.y30{bottom:284.347262pt;}
.y95{bottom:284.432533pt;}
.y1ca{bottom:284.677733pt;}
.y184{bottom:285.398205pt;}
.y5f{bottom:285.399152pt;}
.yf7{bottom:285.399760pt;}
.y1d8{bottom:286.301067pt;}
.y87{bottom:286.943307pt;}
.y8d{bottom:288.410457pt;}
.y1cb{bottom:288.699867pt;}
.y1cc{bottom:292.685067pt;}
.y139{bottom:293.632533pt;}
.y2f{bottom:295.067315pt;}
.y205{bottom:295.570237pt;}
.y26f{bottom:295.977757pt;}
.y1cd{bottom:296.707333pt;}
.y2a1{bottom:296.777785pt;}
.y86{bottom:298.105517pt;}
.y8c{bottom:299.572667pt;}
.y1ce{bottom:300.692133pt;}
.y13d{bottom:300.934800pt;}
.y183{bottom:301.331485pt;}
.y5e{bottom:301.332432pt;}
.yf6{bottom:301.333040pt;}
.y1cf{bottom:304.714533pt;}
.y2e{bottom:305.707267pt;}
.y137{bottom:308.236933pt;}
.y1d0{bottom:308.699467pt;}
.y85{bottom:309.265867pt;}
.y26e{bottom:310.525849pt;}
.y8b{bottom:310.733333pt;}
.y2a0{bottom:311.383238pt;}
.y1d1{bottom:312.721733pt;}
.y2d{bottom:316.267115pt;}
.y182{bottom:317.264765pt;}
.y5d{bottom:317.265712pt;}
.yf5{bottom:317.266320pt;}
.y240{bottom:319.759963pt;}
.y99{bottom:319.869307pt;}
.y26d{bottom:325.131302pt;}
.y29f{bottom:325.988691pt;}
.y2c{bottom:326.907067pt;}
.y13c{bottom:330.146267pt;}
.y98{bottom:331.031517pt;}
.y1d2{bottom:332.683867pt;}
.y181{bottom:333.198045pt;}
.y5c{bottom:333.198992pt;}
.yf4{bottom:333.200202pt;}
.y204{bottom:334.950667pt;}
.y23f{bottom:335.693243pt;}
.y13b{bottom:337.448400pt;}
.y2b{bottom:337.707350pt;}
.y26c{bottom:339.679394pt;}
.y29e{bottom:340.554708pt;}
.y97{bottom:342.191867pt;}
.y1d9{bottom:342.203733pt;}
.y1d3{bottom:344.381467pt;}
.y2a{bottom:349.067200pt;}
.y180{bottom:349.131325pt;}
.y5b{bottom:349.132272pt;}
.y203{bottom:350.883947pt;}
.y23e{bottom:351.626523pt;}
.y84{bottom:351.906107pt;}
.y8a{bottom:353.983973pt;}
.y26b{bottom:354.284847pt;}
.y90{bottom:354.666373pt;}
.y29d{bottom:355.158966pt;}
.y1d4{bottom:356.077867pt;}
.yf3{bottom:357.129856pt;}
.y13a{bottom:359.358267pt;}
.y29{bottom:360.664279pt;}
.yc9{bottom:362.026667pt;}
.y83{bottom:363.068317pt;}
.ybc{bottom:364.508000pt;}
.y17f{bottom:365.065933pt;}
.y5a{bottom:365.066880pt;}
.y89{bottom:365.144323pt;}
.y8f{bottom:365.826723pt;}
.y138{bottom:366.659940pt;}
.y202{bottom:366.817227pt;}
.y23d{bottom:367.559803pt;}
.y1d5{bottom:367.775467pt;}
.ycb{bottom:368.002667pt;}
.y26a{bottom:368.890300pt;}
.y29c{bottom:369.764419pt;}
.ybe{bottom:370.726667pt;}
.y82{bottom:374.228667pt;}
.y28{bottom:375.544628pt;}
.y88{bottom:376.306533pt;}
.y8e{bottom:376.988933pt;}
.y1d6{bottom:379.473200pt;}
.y17e{bottom:380.999213pt;}
.y59{bottom:381.000160pt;}
.yf2{bottom:381.058987pt;}
.y201{bottom:382.750507pt;}
.y269{bottom:383.437198pt;}
.y23c{bottom:383.493083pt;}
.y29b{bottom:384.330436pt;}
.y94{bottom:386.361700pt;}
.y92{bottom:386.681657pt;}
.y136{bottom:389.099733pt;}
.y27{bottom:390.424976pt;}
.yf1{bottom:395.001067pt;}
.y135{bottom:396.401867pt;}
.y58{bottom:396.933440pt;}
.yf0{bottom:396.992942pt;}
.y93{bottom:397.522050pt;}
.y91{bottom:397.843867pt;}
.y268{bottom:398.042651pt;}
.y200{bottom:398.683787pt;}
.y29a{bottom:398.935889pt;}
.y23b{bottom:399.426363pt;}
.y17d{bottom:404.466279pt;}
.y26{bottom:405.305325pt;}
.yc0{bottom:407.257333pt;}
.y1b2{bottom:407.939600pt;}
.yb6{bottom:410.882667pt;}
.y1b3{bottom:411.961867pt;}
.y267{bottom:412.590743pt;}
.y57{bottom:412.866720pt;}
.y299{bottom:413.500712pt;}
.y1c3{bottom:413.585200pt;}
.y1ff{bottom:414.617067pt;}
.y23a{bottom:415.360971pt;}
.y1b4{bottom:415.946800pt;}
.yef{bottom:417.723173pt;}
.y134{bottom:418.311067pt;}
.y1b5{bottom:419.969200pt;}
.y25{bottom:420.185673pt;}
.y1b6{bottom:423.954133pt;}
.y117{bottom:425.132352pt;}
.y1c4{bottom:425.577333pt;}
.y133{bottom:425.613333pt;}
.y266{bottom:427.196196pt;}
.y1b7{bottom:427.976400pt;}
.y298{bottom:428.106165pt;}
.y56{bottom:428.800000pt;}
.y1fe{bottom:430.550347pt;}
.y239{bottom:431.294251pt;}
.y1b8{bottom:431.961200pt;}
.yee{bottom:433.656453pt;}
.y24{bottom:435.066021pt;}
.yc4{bottom:435.693333pt;}
.y1b9{bottom:435.983600pt;}
.y81{bottom:437.983526pt;}
.y1ba{bottom:439.968533pt;}
.yba{bottom:440.076000pt;}
.y116{bottom:441.065632pt;}
.y17c{bottom:441.211078pt;}
.y265{bottom:441.801649pt;}
.y297{bottom:442.711618pt;}
.y1bb{bottom:443.990933pt;}
.y1fd{bottom:446.483627pt;}
.y238{bottom:447.227531pt;}
.y132{bottom:447.522667pt;}
.y1bc{bottom:447.975733pt;}
.yed{bottom:449.589229pt;}
.y23{bottom:449.946370pt;}
.y1bd{bottom:451.998000pt;}
.y80{bottom:453.918133pt;}
.y12d{bottom:454.824933pt;}
.y264{bottom:456.349741pt;}
.y115{bottom:456.998912pt;}
.y17b{bottom:457.144358pt;}
.y296{bottom:457.276440pt;}
.y55{bottom:459.276267pt;}
.y1fc{bottom:462.416907pt;}
.y237{bottom:463.160811pt;}
.y22{bottom:464.826718pt;}
.yec{bottom:465.522509pt;}
.y7f{bottom:469.851413pt;}
.y263{bottom:470.955194pt;}
.y295{bottom:471.881893pt;}
.y1be{bottom:471.960267pt;}
.y114{bottom:473.046381pt;}
.y17a{bottom:473.077638pt;}
.y131{bottom:476.732800pt;}
.y1fb{bottom:478.350187pt;}
.y236{bottom:479.095419pt;}
.y21{bottom:479.707067pt;}
.yeb{bottom:481.457117pt;}
.y1c5{bottom:481.481467pt;}
.y1bf{bottom:483.657867pt;}
.y130{bottom:484.036400pt;}
.y262{bottom:485.560647pt;}
.y7e{bottom:485.784693pt;}
.y294{bottom:486.487346pt;}
.y113{bottom:488.980989pt;}
.y179{bottom:489.012246pt;}
.y1fa{bottom:494.283467pt;}
.y20{bottom:494.582224pt;}
.y235{bottom:495.030027pt;}
.y1c0{bottom:495.355467pt;}
.yea{bottom:497.390397pt;}
.yb5{bottom:499.719850pt;}
.y261{bottom:500.108739pt;}
.y293{bottom:501.092799pt;}
.y7d{bottom:501.717973pt;}
.y54{bottom:502.630571pt;}
.y112{bottom:504.914269pt;}
.y178{bottom:504.945526pt;}
.y12f{bottom:505.944400pt;}
.y1c1{bottom:507.051867pt;}
.y1f{bottom:509.462572pt;}
.y1f9{bottom:510.216747pt;}
.y234{bottom:510.963307pt;}
.y12e{bottom:513.247940pt;}
.ye9{bottom:513.323677pt;}
.y260{bottom:514.714192pt;}
.yb4{bottom:515.653130pt;}
.y292{bottom:515.657622pt;}
.y53{bottom:517.236024pt;}
.y7c{bottom:517.651253pt;}
.y1c2{bottom:518.749467pt;}
.y111{bottom:520.847549pt;}
.y177{bottom:520.878806pt;}
.y1e{bottom:524.342921pt;}
.y1f8{bottom:526.150027pt;}
.y233{bottom:526.896587pt;}
.y25f{bottom:529.319645pt;}
.y291{bottom:530.263075pt;}
.y7b{bottom:533.584533pt;}
.ye8{bottom:535.374400pt;}
.y12c{bottom:535.686547pt;}
.y110{bottom:536.780829pt;}
.y176{bottom:536.812086pt;}
.yb3{bottom:537.893333pt;}
.y1d{bottom:539.223269pt;}
.y1f7{bottom:542.083307pt;}
.y232{bottom:542.829867pt;}
.y25e{bottom:543.867738pt;}
.ye7{bottom:544.482856pt;}
.y290{bottom:544.868528pt;}
.y52{bottom:546.100377pt;}
.yb2{bottom:547.001593pt;}
.y12b{bottom:550.292000pt;}
.y10f{bottom:552.714109pt;}
.y175{bottom:552.745366pt;}
.y1c{bottom:554.103618pt;}
.y1f6{bottom:558.016587pt;}
.y25d{bottom:558.473191pt;}
.y28f{bottom:559.434545pt;}
.y51{bottom:560.705829pt;}
.y7a{bottom:562.942533pt;}
.y1b1{bottom:563.815747pt;}
.y10e{bottom:568.647389pt;}
.y174{bottom:568.679973pt;}
.y1b{bottom:568.983966pt;}
.y231{bottom:570.634000pt;}
.y25c{bottom:573.078643pt;}
.y1f5{bottom:573.949867pt;}
.y28e{bottom:574.039998pt;}
.y50{bottom:575.311282pt;}
.ye6{bottom:577.897307pt;}
.y12a{bottom:577.976133pt;}
.y1b0{bottom:578.421200pt;}
.yb1{bottom:579.701757pt;}
.y1a{bottom:583.864315pt;}
.y10d{bottom:584.580669pt;}
.y173{bottom:584.613253pt;}
.y25b{bottom:587.626736pt;}
.y28d{bottom:588.645451pt;}
.y4f{bottom:589.916735pt;}
.ye5{bottom:593.830587pt;}
.yb0{bottom:595.635037pt;}
.y19{bottom:598.744663pt;}
.y172{bottom:600.546533pt;}
.y25a{bottom:602.230994pt;}
.y79{bottom:602.921857pt;}
.y28c{bottom:603.249709pt;}
.y4e{bottom:604.520993pt;}
.y19c{bottom:607.162400pt;}
.ye4{bottom:607.772667pt;}
.y230{bottom:609.058646pt;}
.ye3{bottom:609.763792pt;}
.y19d{bottom:611.184667pt;}
.yaf{bottom:611.569644pt;}
.y10c{bottom:611.709733pt;}
.y1ad{bottom:612.807867pt;}
.y18{bottom:613.625011pt;}
.y19e{bottom:615.169600pt;}
.y259{bottom:616.836447pt;}
.y28b{bottom:617.815727pt;}
.y129{bottom:618.119344pt;}
.y78{bottom:618.856464pt;}
.y4d{bottom:619.126446pt;}
.y19f{bottom:619.190533pt;}
.y1f4{bottom:621.910667pt;}
.y1a0{bottom:623.176800pt;}
.ye2{bottom:623.705867pt;}
.y1ae{bottom:624.800000pt;}
.y22f{bottom:624.993253pt;}
.ye1{bottom:625.693835pt;}
.y1a1{bottom:627.199067pt;}
.yae{bottom:627.504252pt;}
.y17{bottom:628.505360pt;}
.y1f3{bottom:629.214133pt;}
.y1a2{bottom:631.184000pt;}
.y258{bottom:631.384539pt;}
.y28a{bottom:632.421180pt;}
.y4c{bottom:633.731899pt;}
.y128{bottom:634.052624pt;}
.y77{bottom:634.789744pt;}
.y1a3{bottom:635.206267pt;}
.y1a4{bottom:639.191200pt;}
.y22e{bottom:640.926533pt;}
.ye0{bottom:641.627115pt;}
.y1a5{bottom:643.212133pt;}
.y171{bottom:643.283214pt;}
.y16{bottom:643.385708pt;}
.yad{bottom:643.437532pt;}
.y10b{bottom:644.150533pt;}
.y257{bottom:645.989992pt;}
.y289{bottom:647.026632pt;}
.y1a6{bottom:647.198533pt;}
.y4b{bottom:648.337352pt;}
.y127{bottom:649.987232pt;}
.y76{bottom:650.723024pt;}
.y1f2{bottom:651.122133pt;}
.y1a7{bottom:651.220800pt;}
.ydf{bottom:657.560395pt;}
.y170{bottom:657.888667pt;}
.y15{bottom:658.266057pt;}
.y1ef{bottom:658.424400pt;}
.yac{bottom:659.370812pt;}
.y256{bottom:660.595445pt;}
.y288{bottom:661.632085pt;}
.y4a{bottom:662.942805pt;}
.y1f1{bottom:665.728000pt;}
.y126{bottom:665.920512pt;}
.y75{bottom:666.656304pt;}
.y1a8{bottom:671.182800pt;}
.y14{bottom:673.146405pt;}
.yde{bottom:673.495003pt;}
.y255{bottom:675.200898pt;}
.yab{bottom:675.304092pt;}
.y287{bottom:676.196908pt;}
.y49{bottom:677.548258pt;}
.y1f0{bottom:680.333774pt;}
.y1af{bottom:680.702800pt;}
.y125{bottom:681.853792pt;}
.y74{bottom:682.589584pt;}
.y22d{bottom:682.687614pt;}
.y1a9{bottom:682.880533pt;}
.y159{bottom:685.583467pt;}
.y15a{bottom:685.772000pt;}
.y15c{bottom:687.056133pt;}
.y10a{bottom:687.212566pt;}
.y13{bottom:688.026753pt;}
.ydd{bottom:689.429610pt;}
.y15d{bottom:689.701600pt;}
.y254{bottom:689.806351pt;}
.y286{bottom:690.802361pt;}
.yaa{bottom:691.237372pt;}
.y16d{bottom:691.364933pt;}
.y48{bottom:692.153711pt;}
.y15e{bottom:693.782533pt;}
.y1aa{bottom:694.576800pt;}
.y1ee{bottom:695.469867pt;}
.y22c{bottom:697.293067pt;}
.y124{bottom:697.787072pt;}
.y15f{bottom:697.902133pt;}
.y73{bottom:698.522864pt;}
.y160{bottom:701.983067pt;}
.y1ed{bottom:702.773333pt;}
.y109{bottom:703.145846pt;}
.y12{bottom:703.147464pt;}
.y16e{bottom:703.646267pt;}
.y253{bottom:704.354443pt;}
.ydc{bottom:705.364218pt;}
.y285{bottom:705.407814pt;}
.y161{bottom:706.102667pt;}
.y1ab{bottom:706.274533pt;}
.y47{bottom:706.759164pt;}
.ya9{bottom:707.170652pt;}
.y162{bottom:710.183467pt;}
.y123{bottom:713.720352pt;}
.y163{bottom:714.303067pt;}
.y72{bottom:714.456144pt;}
.y1ac{bottom:717.972267pt;}
.y11{bottom:718.107067pt;}
.y164{bottom:718.384000pt;}
.y252{bottom:718.959896pt;}
.y108{bottom:719.079126pt;}
.y284{bottom:720.013267pt;}
.ydb{bottom:721.298826pt;}
.y46{bottom:721.364617pt;}
.y165{bottom:722.503600pt;}
.ya8{bottom:723.103932pt;}
.y1ec{bottom:724.681333pt;}
.y218{bottom:726.034000pt;}
.y166{bottom:726.584533pt;}
.y122{bottom:729.653632pt;}
.y219{bottom:730.056267pt;}
.y71{bottom:730.389424pt;}
.y167{bottom:730.704133pt;}
.y229{bottom:731.679733pt;}
.y1e9{bottom:731.983600pt;}
.y10{bottom:733.467067pt;}
.y251{bottom:733.565349pt;}
.y21a{bottom:734.041333pt;}
.y283{bottom:734.578089pt;}
.y107{bottom:735.012406pt;}
.y45{bottom:735.970070pt;}
.yd9{bottom:737.971733pt;}
.y21b{bottom:738.062267pt;}
.ya7{bottom:739.037212pt;}
.y1eb{bottom:739.287067pt;}
.y21c{bottom:742.048533pt;}
.y22a{bottom:743.671867pt;}
.y121{bottom:745.588240pt;}
.y21d{bottom:746.070800pt;}
.y70{bottom:746.322704pt;}
.y188{bottom:747.726133pt;}
.y250{bottom:748.113441pt;}
.y282{bottom:749.183542pt;}
.y21e{bottom:750.055867pt;}
.y106{bottom:750.945686pt;}
.yf{bottom:750.987031pt;}
.y168{bottom:751.147333pt;}
.y189{bottom:751.812400pt;}
.y199{bottom:753.461067pt;}
.y1ea{bottom:753.892974pt;}
.yda{bottom:753.942133pt;}
.yd8{bottom:753.942328pt;}
.y21f{bottom:754.078000pt;}
.ya6{bottom:754.970492pt;}
.y18a{bottom:755.860000pt;}
.y220{bottom:758.063067pt;}
.y18b{bottom:759.946267pt;}
.y16f{bottom:760.897733pt;}
.y120{bottom:761.521520pt;}
.y221{bottom:762.084000pt;}
.y6f{bottom:762.255984pt;}
.y24f{bottom:762.718894pt;}
.y169{bottom:763.127467pt;}
.y281{bottom:763.788995pt;}
.y18c{bottom:763.993867pt;}
.y19a{bottom:765.643733pt;}
.y222{bottom:766.070267pt;}
.y105{bottom:766.878966pt;}
.ye{bottom:767.307134pt;}
.y18d{bottom:768.080133pt;}
.y1e8{bottom:769.028933pt;}
.y223{bottom:770.092667pt;}
.ya5{bottom:770.903772pt;}
.yd7{bottom:771.794240pt;}
.y18e{bottom:772.129067pt;}
.y16a{bottom:775.106400pt;}
.y18f{bottom:776.214000pt;}
.y1e7{bottom:776.332533pt;}
.y24e{bottom:777.323152pt;}
.y11f{bottom:777.455379pt;}
.y6e{bottom:778.189264pt;}
.y280{bottom:778.353818pt;}
.y190{bottom:780.262800pt;}
.y104{bottom:782.813573pt;}
.yd{bottom:783.706964pt;}
.y191{bottom:784.347867pt;}
.y44{bottom:786.528694pt;}
.ya4{bottom:786.837052pt;}
.y16b{bottom:787.085333pt;}
.yd6{bottom:787.727520pt;}
.y192{bottom:788.396667pt;}
.y224{bottom:790.054667pt;}
.y24d{bottom:791.871245pt;}
.y193{bottom:792.482933pt;}
.y27f{bottom:792.959271pt;}
.y11e{bottom:793.388659pt;}
.y6d{bottom:794.122544pt;}
.y1e6{bottom:798.240533pt;}
.y103{bottom:798.746853pt;}
.y16c{bottom:799.065467pt;}
.y22b{bottom:799.574533pt;}
.yc{bottom:800.027067pt;}
.y43{bottom:801.134147pt;}
.y225{bottom:801.752267pt;}
.ya3{bottom:802.770332pt;}
.yd5{bottom:803.659940pt;}
.y1e3{bottom:805.542667pt;}
.y24c{bottom:806.476698pt;}
.y27e{bottom:807.525288pt;}
.y11d{bottom:809.321939pt;}
.y6c{bottom:810.055824pt;}
.y194{bottom:812.760933pt;}
.y1e5{bottom:812.846267pt;}
.y226{bottom:813.448667pt;}
.y102{bottom:814.681787pt;}
.y42{bottom:815.739600pt;}
.yb{bottom:816.667527pt;}
.ya2{bottom:818.703612pt;}
.yd4{bottom:819.593220pt;}
.y24b{bottom:821.082151pt;}
.y27d{bottom:822.130741pt;}
.y19b{bottom:822.431467pt;}
.y195{bottom:824.643867pt;}
.y227{bottom:825.146267pt;}
.y6b{bottom:825.989104pt;}
.y142{bottom:826.642933pt;}
.y143{bottom:826.997333pt;}
.y1e4{bottom:827.452041pt;}
.y145{bottom:828.117067pt;}
.y101{bottom:830.615067pt;}
.y146{bottom:830.762533pt;}
.y156{bottom:832.424533pt;}
.ya{bottom:834.507067pt;}
.ya1{bottom:834.636892pt;}
.y147{bottom:834.843467pt;}
.y11c{bottom:834.917426pt;}
.yd3{bottom:835.526500pt;}
.y24a{bottom:835.630243pt;}
.y196{bottom:836.525467pt;}
.y27c{bottom:836.734999pt;}
.y228{bottom:836.843867pt;}
.y148{bottom:838.963067pt;}
.y6a{bottom:841.922384pt;}
.y1e2{bottom:842.588133pt;}
.y149{bottom:843.044000pt;}
.y41{bottom:843.567653pt;}
.y157{bottom:844.707333pt;}
.y100{bottom:846.662535pt;}
.y14a{bottom:847.163600pt;}
.y197{bottom:848.408400pt;}
.y1e1{bottom:849.891733pt;}
.y249{bottom:850.235696pt;}
.ya0{bottom:850.570172pt;}
.y14b{bottom:851.245733pt;}
.y27b{bottom:851.301017pt;}
.yd2{bottom:851.459780pt;}
.y9{bottom:851.787067pt;}
.y14c{bottom:855.364000pt;}
.y69{bottom:857.855664pt;}
.y14d{bottom:859.446267pt;}
.y40{bottom:859.500933pt;}
.y198{bottom:860.291200pt;}
.yff{bottom:862.595815pt;}
.y14e{bottom:863.565867pt;}
.y248{bottom:864.841149pt;}
.y27a{bottom:865.906470pt;}
.y9f{bottom:866.503452pt;}
.yd1{bottom:867.394388pt;}
.y14f{bottom:867.646800pt;}
.y8{bottom:868.346430pt;}
.y209{bottom:869.984400pt;}
.y150{bottom:871.766400pt;}
.y1e0{bottom:871.799600pt;}
.y68{bottom:873.790272pt;}
.y11b{bottom:873.790646pt;}
.y20a{bottom:874.086667pt;}
.y20b{bottom:878.188933pt;}
.yfe{bottom:878.529095pt;}
.y217{bottom:878.678000pt;}
.y1dd{bottom:879.103200pt;}
.y247{bottom:879.389241pt;}
.y279{bottom:880.511923pt;}
.y20c{bottom:882.252533pt;}
.y9e{bottom:882.436732pt;}
.yd0{bottom:883.327668pt;}
.y20d{bottom:886.354800pt;}
.y1df{bottom:886.405467pt;}
.y67{bottom:889.724880pt;}
.y11a{bottom:889.725253pt;}
.y20e{bottom:890.419733pt;}
.y7{bottom:892.187067pt;}
.y151{bottom:892.210933pt;}
.y246{bottom:893.994694pt;}
.yfd{bottom:894.462375pt;}
.y20f{bottom:894.520533pt;}
.y278{bottom:895.076745pt;}
.y9d{bottom:898.370012pt;}
.y210{bottom:898.585467pt;}
.ycf{bottom:899.260948pt;}
.y1de{bottom:901.011379pt;}
.y158{bottom:901.961467pt;}
.y211{bottom:902.687733pt;}
.y152{bottom:904.191067pt;}
.y66{bottom:905.658160pt;}
.y119{bottom:905.658373pt;}
.y3f{bottom:905.659579pt;}
.y212{bottom:906.751333pt;}
.y245{bottom:908.600147pt;}
.y277{bottom:909.682198pt;}
.yfc{bottom:910.395655pt;}
.y213{bottom:910.853733pt;}
.y9c{bottom:914.303292pt;}
.y214{bottom:914.918533pt;}
.y6{bottom:915.065711pt;}
.yce{bottom:915.194228pt;}
.y1dc{bottom:916.148074pt;}
.y153{bottom:916.171333pt;}
.y65{bottom:921.591440pt;}
.y118{bottom:921.591653pt;}
.y244{bottom:923.205600pt;}
.y215{bottom:923.348267pt;}
.y1db{bottom:923.450800pt;}
.y276{bottom:924.287651pt;}
.yfb{bottom:926.328935pt;}
.y154{bottom:928.151467pt;}
.y3e{bottom:929.557833pt;}
.y9b{bottom:930.236572pt;}
.ycd{bottom:931.127508pt;}
.y5{bottom:932.986163pt;}
.y216{bottom:935.277867pt;}
.y64{bottom:937.524720pt;}
.y275{bottom:938.852474pt;}
.y155{bottom:940.131733pt;}
.y4{bottom:950.906615pt;}
.y274{bottom:953.457926pt;}
.y3d{bottom:953.458000pt;}
.y1da{bottom:958.437547pt;}
.y3{bottom:968.827067pt;}
.y63{bottom:987.980667pt;}
.y2{bottom:1006.667171pt;}
.y1{bottom:1014.747067pt;}
.h49{height:12.982896pt;}
.h46{height:13.188527pt;}
.h4f{height:13.240521pt;}
.h41{height:13.296034pt;}
.h3d{height:13.296425pt;}
.h29{height:14.424000pt;}
.h23{height:14.526667pt;}
.h25{height:14.629333pt;}
.h27{height:14.630667pt;}
.h22{height:14.860000pt;}
.h20{height:14.862667pt;}
.h1d{height:14.965333pt;}
.h21{height:14.966667pt;}
.h28{height:16.253995pt;}
.h4a{height:19.474344pt;}
.h47{height:19.782399pt;}
.h50{height:19.860977pt;}
.h44{height:19.943855pt;}
.h40{height:19.945028pt;}
.h24{height:25.137424pt;}
.h16{height:25.298901pt;}
.h17{height:25.326827pt;}
.h1e{height:25.715206pt;}
.hd{height:25.927180pt;}
.h26{height:26.350693pt;}
.h1f{height:26.956363pt;}
.h18{height:27.084706pt;}
.h19{height:27.114603pt;}
.h2c{height:27.883200pt;}
.he{height:30.934391pt;}
.hf{height:33.048451pt;}
.h10{height:33.050031pt;}
.h14{height:33.173570pt;}
.h13{height:35.850400pt;}
.h1a{height:37.177653pt;}
.h35{height:39.831111pt;}
.h12{height:39.833200pt;}
.h30{height:39.834373pt;}
.h33{height:39.835218pt;}
.h2d{height:39.851461pt;}
.h4d{height:41.493973pt;}
.h3a{height:41.496345pt;}
.h15{height:44.613707pt;}
.h2a{height:45.076693pt;}
.ha{height:45.600747pt;}
.h34{height:45.992228pt;}
.h36{height:47.149524pt;}
.h39{height:47.155307pt;}
.h38{height:47.155520pt;}
.h37{height:47.160533pt;}
.h2f{height:47.798000pt;}
.h2e{height:47.803333pt;}
.hc{height:47.909967pt;}
.h5{height:48.468240pt;}
.hb{height:48.620496pt;}
.h2{height:51.470815pt;}
.h7{height:52.082570pt;}
.h8{height:52.499675pt;}
.h2b{height:52.585135pt;}
.h11{height:53.536373pt;}
.h3{height:54.611953pt;}
.h9{height:54.763906pt;}
.h6{height:57.377500pt;}
.h3b{height:65.061306pt;}
.h3c{height:65.066086pt;}
.h1b{height:75.761709pt;}
.h1c{height:76.267300pt;}
.h4{height:77.491286pt;}
.h31{height:83.084575pt;}
.h1{height:86.350815pt;}
.h32{height:113.439643pt;}
.h43{height:126.820834pt;}
.h3f{height:126.821225pt;}
.h48{height:129.583429pt;}
.h4c{height:129.583963pt;}
.h4b{height:129.588763pt;}
.h45{height:131.639194pt;}
.h4e{height:132.160521pt;}
.h3e{height:139.738667pt;}
.h42{height:139.897333pt;}
.h0{height:1122.666667pt;}
.w8{width:19.884000pt;}
.w9{width:19.885333pt;}
.w6{width:19.986667pt;}
.w5{width:19.988000pt;}
.w4{width:20.341333pt;}
.w2{width:20.342667pt;}
.w3{width:20.448000pt;}
.w7{width:33.278667pt;}
.wb{width:322.620000pt;}
.wa{width:322.636000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2b{left:6.368267pt;}
.x4b{left:77.575200pt;}
.x1{left:101.120000pt;}
.x3{left:107.360000pt;}
.x14{left:179.609733pt;}
.x41{left:182.745733pt;}
.x40{left:183.907867pt;}
.x70{left:185.749733pt;}
.x66{left:187.776933pt;}
.x9{left:191.359645pt;}
.x15{left:199.526333pt;}
.x71{left:201.940969pt;}
.x39{left:203.439600pt;}
.x3f{left:205.253467pt;}
.xc{left:212.550132pt;}
.x47{left:214.648133pt;}
.x13{left:217.386725pt;}
.x7{left:219.999652pt;}
.x6c{left:221.402533pt;}
.x46{left:222.494000pt;}
.x42{left:223.517198pt;}
.x27{left:227.455867pt;}
.xb{left:228.471467pt;}
.xf{left:231.723220pt;}
.x2e{left:232.977333pt;}
.x11{left:234.359499pt;}
.x6{left:236.000000pt;}
.xe{left:242.649467pt;}
.x4a{left:248.745333pt;}
.x1d{left:253.162267pt;}
.x1e{left:255.859576pt;}
.x60{left:258.929067pt;}
.x65{left:260.024667pt;}
.x55{left:262.411600pt;}
.x56{left:264.225467pt;}
.x26{left:265.115867pt;}
.x57{left:266.872400pt;}
.x54{left:269.290000pt;}
.x64{left:270.320267pt;}
.x5e{left:271.786267pt;}
.x63{left:272.681867pt;}
.x53{left:273.636133pt;}
.x5d{left:276.096400pt;}
.x52{left:278.019600pt;}
.x2a{left:279.352000pt;}
.x5c{left:280.443867pt;}
.x51{left:282.365733pt;}
.x2f{left:283.462667pt;}
.x5b{left:284.755333pt;}
.x50{left:286.750533pt;}
.x8{left:288.239520pt;}
.x62{left:289.729200pt;}
.x4f{left:291.095333pt;}
.x5a{left:293.414400pt;}
.x45{left:295.341467pt;}
.x12{left:297.134744pt;}
.x61{left:298.253600pt;}
.x4e{left:299.826267pt;}
.x4{left:300.721127pt;}
.x10{left:302.713067pt;}
.x4d{left:304.172400pt;}
.x6e{left:305.857067pt;}
.x1f{left:307.129867pt;}
.x4c{left:308.555867pt;}
.x59{left:310.730933pt;}
.x6d{left:320.910533pt;}
.xa{left:323.599030pt;}
.x3a{left:326.324711pt;}
.x3c{left:334.943532pt;}
.x37{left:339.658872pt;}
.xd{left:340.565160pt;}
.x28{left:346.232321pt;}
.x2d{left:347.437333pt;}
.x18{left:351.577102pt;}
.x16{left:354.637467pt;}
.x2c{left:357.766667pt;}
.x17{left:360.124166pt;}
.x3d{left:368.394267pt;}
.x3e{left:372.659717pt;}
.x67{left:386.036153pt;}
.x68{left:389.106667pt;}
.x69{left:391.507067pt;}
.x5{left:395.200000pt;}
.x6b{left:396.283600pt;}
.x6a{left:400.511200pt;}
.x21{left:403.653546pt;}
.x20{left:408.520794pt;}
.x3b{left:410.681467pt;}
.x22{left:412.520667pt;}
.x48{left:413.778800pt;}
.x43{left:419.176533pt;}
.x38{left:420.476000pt;}
.x29{left:425.215200pt;}
.x6f{left:439.114667pt;}
.x58{left:440.977867pt;}
.x5f{left:442.074667pt;}
.x1c{left:451.368000pt;}
.x1a{left:452.328840pt;}
.x44{left:455.758281pt;}
.x2{left:457.280000pt;}
.x19{left:459.335333pt;}
.x1b{left:461.010455pt;}
.x33{left:471.960000pt;}
.x35{left:473.609333pt;}
.x34{left:488.917333pt;}
.x30{left:518.941333pt;}
.x36{left:522.960000pt;}
.x49{left:527.581029pt;}
.x23{left:536.762133pt;}
.x25{left:538.808368pt;}
.x24{left:541.381973pt;}
.x32{left:585.498667pt;}
.x31{left:595.596000pt;}
}




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