
    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_054f1f65e6f1d644f62771da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_e449dbc65126b9bfb13ce4c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_e5b9565b7cd86a39cce69693.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_945e95238ecf1d90f3a13a2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_8363cbc78d4f4aeafaa65e74.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4961abde3ab3c43a35515fe3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.887000;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_e1d7278ff3c417a8ab03a464.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f8afc70274e72ee093d8d94f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.799000;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_398dd6240c9bfd60d41440a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e91175aa4a2db91d6ce974b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;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_0f0c0095efc9acaed4376c52.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.683000;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_02e7d7a0e91ef99954287209.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.106000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_686aeb10388abd0c4e7151c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.906000;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_5dbab1b1f74064109c34c5e7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.500000;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_8f59159b3a529ad1d0119ac4.woff2')format("woff");}.fff{font-family:fff;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8817efe2cebf00296fd6a441.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.897000;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_e1dbd4c20c658007fb464b61.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.890000;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_1d9b04b6245ed37230b0c96d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f4764abe3bb60c7e5fc6dcdf.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b9907117a837db55e1499204.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_6f97f4f4ee08435a583b2090.woff2')format("woff");}.ff15{font-family:ff15;line-height:3.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_3fb003f3d90cad23d76de156.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.510000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_57a6e7054c0356d1cf3d01cb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.918000;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_e539de159ddf0fd41fa02e56.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.834000;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_634092a9b87e402c07ae27bc.woff2')format("woff");}.ff19{font-family:ff19;line-height:2.271000;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_7fbbf24146ffde8c73916797.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.570000;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_4d6ec0df3513c75d61cbefa3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.687000;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_7be3114c1257212baa253e1b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-66.354000px;}
.v2d{vertical-align:-54.426000px;}
.v2c{vertical-align:-48.420000px;}
.v22{vertical-align:-36.030000px;}
.v1a{vertical-align:-33.534000px;}
.vd{vertical-align:-16.878000px;}
.v19{vertical-align:-14.778000px;}
.v21{vertical-align:-12.390000px;}
.v2e{vertical-align:-10.128000px;}
.v2{vertical-align:-8.964000px;}
.v8{vertical-align:-6.012000px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:3.936000px;}
.va{vertical-align:8.970000px;}
.ve{vertical-align:10.758000px;}
.v26{vertical-align:11.958000px;}
.v29{vertical-align:15.108000px;}
.v9{vertical-align:17.934000px;}
.v27{vertical-align:20.616000px;}
.v1{vertical-align:21.690000px;}
.v25{vertical-align:23.532000px;}
.v31{vertical-align:24.678000px;}
.v5{vertical-align:30.054000px;}
.v16{vertical-align:31.470000px;}
.v1f{vertical-align:33.534000px;}
.v23{vertical-align:35.868000px;}
.v1c{vertical-align:37.470000px;}
.v20{vertical-align:40.440000px;}
.v11{vertical-align:43.350000px;}
.v4{vertical-align:44.832000px;}
.v7{vertical-align:47.988000px;}
.v12{vertical-align:51.336000px;}
.v2b{vertical-align:52.500000px;}
.vf{vertical-align:53.970000px;}
.v2a{vertical-align:56.106000px;}
.v30{vertical-align:60.486000px;}
.v6{vertical-align:62.766000px;}
.v3{vertical-align:66.354000px;}
.v32{vertical-align:72.474000px;}
.v13{vertical-align:81.360000px;}
.vb{vertical-align:84.288000px;}
.v28{vertical-align:85.638000px;}
.v18{vertical-align:95.976000px;}
.v2f{vertical-align:98.328000px;}
.v10{vertical-align:102.216000px;}
.v1e{vertical-align:103.752000px;}
.v1d{vertical-align:118.530000px;}
.v15{vertical-align:121.050000px;}
.v14{vertical-align:135.828000px;}
.v17{vertical-align:150.000000px;}
.v24{vertical-align:176.340000px;}
.ls1f{letter-spacing:0.000000px;}
.ls78{letter-spacing:0.000305px;}
.ls67{letter-spacing:0.000312px;}
.ls4a{letter-spacing:0.000532px;}
.ls92{letter-spacing:0.000560px;}
.ls9{letter-spacing:0.000564px;}
.ls25{letter-spacing:0.000777px;}
.ls84{letter-spacing:0.000843px;}
.ls47{letter-spacing:0.000993px;}
.ls8b{letter-spacing:0.001140px;}
.ls7e{letter-spacing:0.001202px;}
.ls39{letter-spacing:0.001319px;}
.lsc{letter-spacing:0.001923px;}
.ls7{letter-spacing:0.002012px;}
.ls4d{letter-spacing:0.002017px;}
.ls11{letter-spacing:0.002245px;}
.ls8d{letter-spacing:0.002338px;}
.ls51{letter-spacing:0.002446px;}
.ls7a{letter-spacing:0.002450px;}
.ls7d{letter-spacing:0.002481px;}
.ls32{letter-spacing:0.003014px;}
.ls14{letter-spacing:0.003269px;}
.lsf{letter-spacing:0.003333px;}
.ls9d{letter-spacing:0.003694px;}
.lsa{letter-spacing:0.003798px;}
.ls62{letter-spacing:0.004200px;}
.ls69{letter-spacing:0.004618px;}
.ls34{letter-spacing:0.005374px;}
.ls98{letter-spacing:0.006560px;}
.lsa3{letter-spacing:0.006843px;}
.ls76{letter-spacing:0.007923px;}
.ls96{letter-spacing:0.688738px;}
.ls4e{letter-spacing:1.287333px;}
.ls4c{letter-spacing:1.293333px;}
.ls35{letter-spacing:1.503008px;}
.ls3e{letter-spacing:1.507024px;}
.ls56{letter-spacing:1.659333px;}
.ls9e{letter-spacing:1.763996px;}
.ls2d{letter-spacing:2.141039px;}
.ls52{letter-spacing:2.143908px;}
.ls31{letter-spacing:2.148767px;}
.ls72{letter-spacing:2.371909px;}
.lsb6{letter-spacing:2.389613px;}
.ls71{letter-spacing:2.391527px;}
.ls81{letter-spacing:2.414908px;}
.lsb{letter-spacing:2.420908px;}
.ls8{letter-spacing:2.933096px;}
.ls1d{letter-spacing:2.964877px;}
.ls43{letter-spacing:2.984525px;}
.ls33{letter-spacing:2.986363px;}
.ls3{letter-spacing:2.987675px;}
.ls2{letter-spacing:2.988017px;}
.ls1e{letter-spacing:2.988780px;}
.ls5b{letter-spacing:2.989140px;}
.ls20{letter-spacing:2.989800px;}
.ls41{letter-spacing:2.990525px;}
.ls4{letter-spacing:2.994017px;}
.ls0{letter-spacing:2.994600px;}
.ls77{letter-spacing:3.422408px;}
.ls75{letter-spacing:4.276583px;}
.ls66{letter-spacing:4.688646px;}
.ls3a{letter-spacing:4.691376px;}
.ls10{letter-spacing:4.854544px;}
.ls23{letter-spacing:6.433866px;}
.ls87{letter-spacing:6.516305px;}
.ls6b{letter-spacing:7.472450px;}
.ls6a{letter-spacing:7.474454px;}
.ls50{letter-spacing:8.159374px;}
.ls4f{letter-spacing:8.164362px;}
.ls4b{letter-spacing:8.164851px;}
.ls3b{letter-spacing:8.165374px;}
.ls97{letter-spacing:8.166843px;}
.ls13{letter-spacing:8.298312px;}
.ls9b{letter-spacing:8.304065px;}
.ls9f{letter-spacing:8.646843px;}
.ls6c{letter-spacing:9.420479px;}
.lsae{letter-spacing:9.425732px;}
.lsa7{letter-spacing:9.960843px;}
.ls5c{letter-spacing:9.962338px;}
.ls2c{letter-spacing:9.963269px;}
.ls7b{letter-spacing:9.964350px;}
.ls48{letter-spacing:9.966300px;}
.lsa6{letter-spacing:9.966843px;}
.lsa0{letter-spacing:10.296560px;}
.ls82{letter-spacing:10.710843px;}
.lsa5{letter-spacing:10.716843px;}
.ls3d{letter-spacing:10.883864px;}
.lsa1{letter-spacing:10.884564px;}
.ls3c{letter-spacing:10.886234px;}
.ls1b{letter-spacing:11.606727px;}
.ls89{letter-spacing:12.950877px;}
.ls86{letter-spacing:13.276287px;}
.lse{letter-spacing:13.278538px;}
.ls83{letter-spacing:13.282287px;}
.ls30{letter-spacing:13.284538px;}
.ls2f{letter-spacing:13.286245px;}
.lsd{letter-spacing:13.286338px;}
.ls8f{letter-spacing:13.601864px;}
.ls93{letter-spacing:13.607864px;}
.lsa2{letter-spacing:13.611413px;}
.ls94{letter-spacing:15.708564px;}
.ls6{letter-spacing:16.393866px;}
.ls46{letter-spacing:16.598469px;}
.ls27{letter-spacing:16.599269px;}
.ls59{letter-spacing:16.600618px;}
.ls2a{letter-spacing:16.602300px;}
.ls5{letter-spacing:16.602538px;}
.ls28{letter-spacing:16.607607px;}
.ls5a{letter-spacing:16.608538px;}
.ls60{letter-spacing:16.706408px;}
.lsb4{letter-spacing:16.976270px;}
.lsb3{letter-spacing:16.984200px;}
.lsb7{letter-spacing:17.066387px;}
.ls42{letter-spacing:17.865269px;}
.ls73{letter-spacing:17.906400px;}
.lsb1{letter-spacing:18.058738px;}
.ls5d{letter-spacing:18.267333px;}
.ls49{letter-spacing:18.750767px;}
.ls58{letter-spacing:18.809607px;}
.ls91{letter-spacing:18.895708px;}
.ls54{letter-spacing:19.455269px;}
.ls16{letter-spacing:19.512538px;}
.ls15{letter-spacing:19.521269px;}
.ls68{letter-spacing:19.595251px;}
.ls1c{letter-spacing:20.020200px;}
.ls44{letter-spacing:20.259269px;}
.lsaa{letter-spacing:20.456338px;}
.ls57{letter-spacing:20.481333px;}
.ls38{letter-spacing:20.588077px;}
.ls3f{letter-spacing:20.594077px;}
.ls37{letter-spacing:20.777864px;}
.ls9a{letter-spacing:20.878583px;}
.lsad{letter-spacing:20.918400px;}
.ls74{letter-spacing:20.922538px;}
.lsb2{letter-spacing:21.124618px;}
.lsb5{letter-spacing:21.128100px;}
.ls55{letter-spacing:21.607908px;}
.ls5e{letter-spacing:22.010908px;}
.ls79{letter-spacing:22.059798px;}
.ls45{letter-spacing:22.334800px;}
.ls65{letter-spacing:22.839269px;}
.ls6f{letter-spacing:22.874100px;}
.lsab{letter-spacing:23.243134px;}
.lsa9{letter-spacing:23.249134px;}
.lsb8{letter-spacing:23.772538px;}
.ls5f{letter-spacing:23.778538px;}
.ls1{letter-spacing:24.068383px;}
.ls88{letter-spacing:24.149732px;}
.ls99{letter-spacing:24.490738px;}
.ls7f{letter-spacing:24.561403px;}
.ls22{letter-spacing:24.842646px;}
.ls29{letter-spacing:25.610646px;}
.ls80{letter-spacing:26.027732px;}
.ls1a{letter-spacing:26.239200px;}
.ls2e{letter-spacing:26.560677px;}
.ls2b{letter-spacing:26.566677px;}
.ls8e{letter-spacing:26.612408px;}
.ls70{letter-spacing:26.748305px;}
.ls6e{letter-spacing:26.749690px;}
.ls19{letter-spacing:29.342245px;}
.ls64{letter-spacing:29.991333px;}
.ls12{letter-spacing:30.015269px;}
.ls18{letter-spacing:32.190538px;}
.ls17{letter-spacing:34.334023px;}
.ls63{letter-spacing:34.849690px;}
.ls24{letter-spacing:34.899269px;}
.lsb9{letter-spacing:36.638338px;}
.ls8a{letter-spacing:38.933732px;}
.ls21{letter-spacing:44.616620px;}
.ls40{letter-spacing:50.800738px;}
.ls95{letter-spacing:53.278738px;}
.lsaf{letter-spacing:54.548017px;}
.ls26{letter-spacing:59.774338px;}
.ls90{letter-spacing:61.122564px;}
.ls9c{letter-spacing:61.667864px;}
.ls7c{letter-spacing:61.874338px;}
.lsb0{letter-spacing:67.586017px;}
.ls36{letter-spacing:71.914851px;}
.ls61{letter-spacing:93.264305px;}
.ls6d{letter-spacing:97.226338px;}
.lsa4{letter-spacing:103.486738px;}
.lsac{letter-spacing:128.624338px;}
.lsa8{letter-spacing:238.022338px;}
.ls8c{letter-spacing:261.290338px;}
.ls85{letter-spacing:307.994338px;}
.ls53{letter-spacing:399.308338px;}
.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;}
}
.wsf5{word-spacing:-59.775600px;}
.ws122{word-spacing:-55.914096px;}
.ws107{word-spacing:-47.654765px;}
.ws29{word-spacing:-47.324343px;}
.ws27{word-spacing:-38.937826px;}
.wsba{word-spacing:-38.001631px;}
.wsf7{word-spacing:-37.494792px;}
.ws6e{word-spacing:-35.865450px;}
.wsbb{word-spacing:-31.633157px;}
.ws115{word-spacing:-30.631941px;}
.wsfa{word-spacing:-30.516148px;}
.wsa2{word-spacing:-28.955301px;}
.wsa8{word-spacing:-28.726966px;}
.wsaf{word-spacing:-26.924023px;}
.wsff{word-spacing:-25.189366px;}
.wsad{word-spacing:-23.473811px;}
.wsc3{word-spacing:-22.354307px;}
.wsf4{word-spacing:-22.319651px;}
.wsc0{word-spacing:-20.744671px;}
.wsca{word-spacing:-19.032551px;}
.wsc5{word-spacing:-18.931205px;}
.ws108{word-spacing:-18.688093px;}
.wsf2{word-spacing:-18.682093px;}
.ws118{word-spacing:-18.680219px;}
.wsf1{word-spacing:-18.058051px;}
.ws62{word-spacing:-17.932680px;}
.wsa3{word-spacing:-16.605662px;}
.wsbd{word-spacing:-15.314465px;}
.ws2{word-spacing:-14.943900px;}
.ws5d{word-spacing:-14.920027px;}
.wsa7{word-spacing:-13.531962px;}
.wsf3{word-spacing:-12.942451px;}
.wsf0{word-spacing:-12.037916px;}
.ws1e{word-spacing:-11.955150px;}
.wse7{word-spacing:-10.554148px;}
.ws119{word-spacing:-9.624148px;}
.ws106{word-spacing:-9.618148px;}
.ws142{word-spacing:-9.564150px;}
.ws117{word-spacing:-8.186219px;}
.wse5{word-spacing:-8.161916px;}
.ws123{word-spacing:-7.513916px;}
.wsed{word-spacing:-6.841916px;}
.wsb8{word-spacing:-6.646143px;}
.ws116{word-spacing:-6.645993px;}
.ws105{word-spacing:-6.639993px;}
.wsb7{word-spacing:-6.639235px;}
.wsbe{word-spacing:-5.372781px;}
.wsbf{word-spacing:-5.371446px;}
.ws10f{word-spacing:-5.369352px;}
.wsc1{word-spacing:-5.366781px;}
.wsbc{word-spacing:-5.365446px;}
.ws10d{word-spacing:-5.363352px;}
.ws124{word-spacing:-5.304451px;}
.wsf6{word-spacing:-3.335478px;}
.wsfe{word-spacing:-1.757572px;}
.ws11c{word-spacing:-0.956410px;}
.ws13a{word-spacing:-0.896634px;}
.ws138{word-spacing:-0.597756px;}
.ws12c{word-spacing:-0.478205px;}
.ws102{word-spacing:-0.239102px;}
.ws13d{word-spacing:-0.179327px;}
.ws35{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws2b{word-spacing:-0.041843px;}
.wsb0{word-spacing:-0.029888px;}
.wsa4{word-spacing:-0.021471px;}
.wsa9{word-spacing:-0.015471px;}
.ws4c{word-spacing:0.000000px;}
.wsc4{word-spacing:0.011955px;}
.wsfb{word-spacing:0.059776px;}
.wsf8{word-spacing:0.066126px;}
.wsae{word-spacing:0.066948px;}
.ws8f{word-spacing:0.095641px;}
.ws101{word-spacing:0.418429px;}
.ws6{word-spacing:0.430387px;}
.ws67{word-spacing:0.591782px;}
.ws13e{word-spacing:0.657532px;}
.wse8{word-spacing:0.717307px;}
.ws9e{word-spacing:0.896634px;}
.wsc{word-spacing:1.075968px;}
.ws94{word-spacing:1.135736px;}
.ws16{word-spacing:1.189534px;}
.ws17{word-spacing:1.195512px;}
.wsab{word-spacing:1.554166px;}
.ws9a{word-spacing:1.613941px;}
.ws10{word-spacing:1.853044px;}
.ws139{word-spacing:1.912819px;}
.wsce{word-spacing:1.972595px;}
.ws8b{word-spacing:2.056286px;}
.wsd1{word-spacing:2.092146px;}
.ws1b{word-spacing:2.211697px;}
.wse9{word-spacing:2.271473px;}
.ws147{word-spacing:2.331248px;}
.ws13b{word-spacing:2.391024px;}
.ws141{word-spacing:2.391226px;}
.wscf{word-spacing:2.510575px;}
.ws129{word-spacing:2.689902px;}
.ws60{word-spacing:2.749678px;}
.ws3c{word-spacing:2.869229px;}
.wsb1{word-spacing:2.929004px;}
.ws1f{word-spacing:2.991720px;}
.wsd6{word-spacing:3.168107px;}
.ws5b{word-spacing:3.227882px;}
.ws12f{word-spacing:3.287658px;}
.ws9c{word-spacing:3.407209px;}
.ws13f{word-spacing:3.466985px;}
.ws109{word-spacing:3.526760px;}
.ws6a{word-spacing:3.550694px;}
.ws55{word-spacing:3.586536px;}
.wscd{word-spacing:3.598491px;}
.ws131{word-spacing:3.646312px;}
.ws8c{word-spacing:3.777827px;}
.ws98{word-spacing:3.825638px;}
.ws135{word-spacing:3.885414px;}
.ws136{word-spacing:4.064741px;}
.wsee{word-spacing:4.122317px;}
.ws88{word-spacing:4.124516px;}
.ws33{word-spacing:4.244068px;}
.ws6d{word-spacing:4.357670px;}
.ws149{word-spacing:4.363619px;}
.wsa{word-spacing:4.411469px;}
.ws49{word-spacing:4.483170px;}
.wsc2{word-spacing:4.542946px;}
.ws128{word-spacing:4.602721px;}
.wsb2{word-spacing:4.662497px;}
.ws114{word-spacing:4.707851px;}
.ws120{word-spacing:4.721327px;}
.ws110{word-spacing:4.722522px;}
.ws12a{word-spacing:4.743818px;}
.ws3d{word-spacing:4.782048px;}
.ws8d{word-spacing:4.782060px;}
.ws134{word-spacing:4.841824px;}
.ws6b{word-spacing:4.841856px;}
.ws80{word-spacing:4.961375px;}
.ws47{word-spacing:5.080926px;}
.ws71{word-spacing:5.164646px;}
.ws112{word-spacing:5.170589px;}
.wsa0{word-spacing:5.200477px;}
.ws79{word-spacing:5.218445px;}
.ws140{word-spacing:5.260253px;}
.wsb3{word-spacing:5.320028px;}
.wsb6{word-spacing:5.379804px;}
.ws65{word-spacing:5.379840px;}
.ws25{word-spacing:5.439580px;}
.wse6{word-spacing:5.499355px;}
.ws53{word-spacing:5.559131px;}
.ws51{word-spacing:5.570734px;}
.ws132{word-spacing:5.618906px;}
.ws125{word-spacing:5.678682px;}
.ws26{word-spacing:5.738458px;}
.wsf{word-spacing:5.810227px;}
.ws21{word-spacing:5.929754px;}
.ws20{word-spacing:5.943884px;}
.wsef{word-spacing:5.976317px;}
.ws111{word-spacing:5.977550px;}
.ws3{word-spacing:5.977560px;}
.wse2{word-spacing:5.978134px;}
.wsa5{word-spacing:5.981750px;}
.ws1d{word-spacing:5.988413px;}
.wsdd{word-spacing:6.156887px;}
.ws121{word-spacing:6.184309px;}
.ws93{word-spacing:6.455765px;}
.ws3e{word-spacing:6.515540px;}
.wsac{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsfd{word-spacing:6.635092px;}
.wsd{word-spacing:6.724800px;}
.wsfc{word-spacing:6.754643px;}
.wsea{word-spacing:6.814418px;}
.wsec{word-spacing:6.838289px;}
.wseb{word-spacing:6.874194px;}
.ws13c{word-spacing:7.053521px;}
.ws4e{word-spacing:7.173072px;}
.wsd9{word-spacing:7.232848px;}
.wsb5{word-spacing:7.352399px;}
.wsb4{word-spacing:7.412174px;}
.ws42{word-spacing:7.460014px;}
.ws12b{word-spacing:7.471950px;}
.ws30{word-spacing:7.591501px;}
.ws61{word-spacing:7.651277px;}
.ws7d{word-spacing:7.770828px;}
.wsc9{word-spacing:7.890379px;}
.wsc8{word-spacing:7.893025px;}
.wscc{word-spacing:7.950155px;}
.ws113{word-spacing:8.135795px;}
.ws5{word-spacing:8.231155px;}
.ws10b{word-spacing:8.236326px;}
.ws10a{word-spacing:8.249033px;}
.wsd8{word-spacing:8.488135px;}
.ws8a{word-spacing:8.607708px;}
.ws95{word-spacing:8.622595px;}
.wsd0{word-spacing:8.667462px;}
.ws6f{word-spacing:8.751170px;}
.ws18{word-spacing:8.846789px;}
.ws9b{word-spacing:9.078595px;}
.wsd4{word-spacing:9.085891px;}
.ws15{word-spacing:9.145667px;}
.ws14a{word-spacing:9.324994px;}
.ws8e{word-spacing:9.325017px;}
.wse4{word-spacing:9.384769px;}
.ws59{word-spacing:9.444545px;}
.ws4a{word-spacing:9.862974px;}
.wscb{word-spacing:9.922750px;}
.ws143{word-spacing:10.042301px;}
.ws130{word-spacing:10.221628px;}
.ws133{word-spacing:10.341179px;}
.ws146{word-spacing:10.520506px;}
.ws73{word-spacing:10.544486px;}
.ws12e{word-spacing:10.640057px;}
.ws7c{word-spacing:10.699832px;}
.ws14b{word-spacing:10.819384px;}
.ws58{word-spacing:10.938935px;}
.ws85{word-spacing:10.998710px;}
.ws11f{word-spacing:11.124396px;}
.ws100{word-spacing:11.148126px;}
.ws40{word-spacing:11.285662px;}
.ws126{word-spacing:11.297588px;}
.ws99{word-spacing:11.298595px;}
.ws11a{word-spacing:11.357364px;}
.ws48{word-spacing:11.536691px;}
.wsdc{word-spacing:11.775793px;}
.ws5c{word-spacing:11.955120px;}
.ws91{word-spacing:12.014896px;}
.ws19{word-spacing:12.074671px;}
.ws1a{word-spacing:12.114922px;}
.ws2f{word-spacing:12.134447px;}
.ws5f{word-spacing:12.313774px;}
.ws92{word-spacing:12.433325px;}
.ws41{word-spacing:12.433356px;}
.ws89{word-spacing:12.552876px;}
.ws10e{word-spacing:12.582522px;}
.ws11b{word-spacing:12.851754px;}
.ws2c{word-spacing:12.902547px;}
.ws23{word-spacing:12.911530px;}
.ws8{word-spacing:13.126810px;}
.ws3b{word-spacing:13.150632px;}
.ws4b{word-spacing:13.210408px;}
.ws83{word-spacing:13.329959px;}
.wsc6{word-spacing:13.378309px;}
.wsc7{word-spacing:13.389734px;}
.ws127{word-spacing:13.509286px;}
.ws63{word-spacing:13.610995px;}
.ws87{word-spacing:13.628837px;}
.ws7e{word-spacing:13.688612px;}
.wsb{word-spacing:14.095181px;}
.ws9d{word-spacing:14.107042px;}
.ws78{word-spacing:14.148979px;}
.wsa1{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws38{word-spacing:14.385964px;}
.ws36{word-spacing:14.392550px;}
.ws148{word-spacing:14.465695px;}
.ws103{word-spacing:14.561725px;}
.ws74{word-spacing:14.579366px;}
.ws104{word-spacing:14.585246px;}
.ws9{word-spacing:14.633165px;}
.wsd2{word-spacing:14.645022px;}
.ws145{word-spacing:14.884124px;}
.wsf9{word-spacing:15.015631px;}
.ws34{word-spacing:15.063451px;}
.ws7b{word-spacing:15.493939px;}
.ws3a{word-spacing:15.601432px;}
.ws72{word-spacing:15.709133px;}
.ws68{word-spacing:16.031923px;}
.wsaa{word-spacing:16.258963px;}
.ws32{word-spacing:16.438290px;}
.ws7f{word-spacing:16.856719px;}
.ws96{word-spacing:16.916495px;}
.ws31{word-spacing:17.095822px;}
.ws82{word-spacing:17.275148px;}
.ws43{word-spacing:17.334924px;}
.ws6c{word-spacing:17.753472px;}
.ws24{word-spacing:17.813129px;}
.wsda{word-spacing:17.872904px;}
.ws1c{word-spacing:17.932680px;}
.ws90{word-spacing:18.112007px;}
.ws64{word-spacing:18.237658px;}
.ws11d{word-spacing:18.329611px;}
.ws10c{word-spacing:18.330522px;}
.ws75{word-spacing:18.399053px;}
.wsd5{word-spacing:18.410885px;}
.ws56{word-spacing:18.487183px;}
.ws76{word-spacing:18.560448px;}
.wse3{word-spacing:18.649987px;}
.ws2d{word-spacing:18.654104px;}
.ws2e{word-spacing:18.654863px;}
.ws66{word-spacing:18.775642px;}
.ws137{word-spacing:18.829314px;}
.ws77{word-spacing:18.937037px;}
.wse{word-spacing:19.259827px;}
.ws81{word-spacing:19.427070px;}
.ws39{word-spacing:19.427411px;}
.ws28{word-spacing:19.553398px;}
.ws14{word-spacing:19.845499px;}
.ws12{word-spacing:19.881967px;}
.ws11{word-spacing:19.900088px;}
.ws84{word-spacing:19.965050px;}
.wsdb{word-spacing:20.144377px;}
.wsd3{word-spacing:20.204153px;}
.ws50{word-spacing:20.443255px;}
.ws52{word-spacing:20.453822px;}
.ws22{word-spacing:20.861684px;}
.ws11e{word-spacing:21.018396px;}
.ws46{word-spacing:21.339889px;}
.ws44{word-spacing:21.353100px;}
.ws4f{word-spacing:21.519216px;}
.ws5a{word-spacing:21.937645px;}
.ws4d{word-spacing:22.043394px;}
.ws86{word-spacing:23.073382px;}
.wsd7{word-spacing:23.133157px;}
.ws3f{word-spacing:23.192991px;}
.ws70{word-spacing:23.671296px;}
.ws2a{word-spacing:23.876547px;}
.ws97{word-spacing:24.378595px;}
.ws9f{word-spacing:25.344854px;}
.ws57{word-spacing:25.763284px;}
.ws7{word-spacing:26.506992px;}
.ws54{word-spacing:27.805264px;}
.ws7a{word-spacing:28.889741px;}
.ws69{word-spacing:29.427725px;}
.ws37{word-spacing:32.099497px;}
.ws13{word-spacing:35.834383px;}
.ws45{word-spacing:36.297191px;}
.ws5e{word-spacing:42.500452px;}
.wse1{word-spacing:59.176500px;}
.ws144{word-spacing:64.258770px;}
.wse0{word-spacing:87.388483px;}
.wsdf{word-spacing:89.064300px;}
.wsde{word-spacing:143.816767px;}
.ws12d{word-spacing:250.392300px;}
.wsa6{word-spacing:268.938662px;}
.wsb9{word-spacing:452.966129px;}
._16{margin-left:-7.715628px;}
._1{margin-left:-6.575340px;}
._4{margin-left:-4.949453px;}
._0{margin-left:-3.586545px;}
._2{margin-left:-2.092146px;}
._3{margin-left:-1.087951px;}
._8{width:1.051505px;}
._7{width:2.988780px;}
._c{width:4.900539px;}
._2f{width:5.909182px;}
._10{width:11.342150px;}
._d{width:12.391097px;}
._12{width:14.919033px;}
._11{width:17.126374px;}
._9{width:19.636416px;}
._f{width:21.240613px;}
._35{width:22.415850px;}
._40{width:24.747098px;}
._38{width:26.297957px;}
._6{width:29.544826px;}
._17{width:33.474420px;}
._b{width:35.865360px;}
._a{width:37.001096px;}
._5{width:38.615038px;}
._2c{width:59.775600px;}
._36{width:62.107126px;}
._13{width:69.756743px;}
._18{width:74.122600px;}
._e{width:77.340901px;}
._2a{width:80.756400px;}
._1a{width:89.062200px;}
._25{width:95.702400px;}
._2e{width:97.152715px;}
._26{width:102.326383px;}
._2d{width:106.624391px;}
._30{width:109.927126px;}
._1e{width:117.284383px;}
._37{width:121.062167px;}
._32{width:125.583540px;}
._33{width:140.541421px;}
._19{width:158.759639px;}
._3b{width:179.158050px;}
._3e{width:183.296250px;}
._34{width:194.437097px;}
._31{width:201.110605px;}
._15{width:207.809433px;}
._27{width:210.890383px;}
._3c{width:213.184050px;}
._22{width:220.630200px;}
._24{width:251.090400px;}
._1b{width:265.942200px;}
._1d{width:272.666400px;}
._23{width:279.267557px;}
._3d{width:291.243300px;}
._29{width:294.213557px;}
._1f{width:298.898383px;}
._28{width:301.023241px;}
._3a{width:321.131100px;}
._1c{width:324.575366px;}
._14{width:360.363636px;}
._39{width:391.724400px;}
._20{width:438.842383px;}
._21{width:487.826383px;}
._3f{width:723.646582px;}
._2b{width:749.225738px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs9{font-size:38.256600px;}
.fs4{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs8{font-size:103.292400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yf4{bottom:52.687500px;}
.y117{bottom:109.791000px;}
.y119{bottom:110.017500px;}
.yc6{bottom:110.284500px;}
.y34{bottom:113.332500px;}
.y5f{bottom:113.467500px;}
.ya4{bottom:115.921500px;}
.y111{bottom:117.816000px;}
.y110{bottom:122.299500px;}
.y33{bottom:126.783000px;}
.y113{bottom:127.650000px;}
.y8b{bottom:128.128500px;}
.y5e{bottom:128.410500px;}
.y114{bottom:130.788000px;}
.y10f{bottom:131.266500px;}
.yf3{bottom:133.059000px;}
.yc5{bottom:135.262500px;}
.y32{bottom:137.542500px;}
.y30{bottom:140.232000px;}
.y10a{bottom:140.980500px;}
.y116{bottom:141.846000px;}
.y31{bottom:141.936000px;}
.y8a{bottom:142.923000px;}
.y5d{bottom:143.355000px;}
.y115{bottom:146.329500px;}
.y118{bottom:146.503500px;}
.yf2{bottom:152.785500px;}
.y89{bottom:157.717500px;}
.y2f{bottom:157.900500px;}
.y10e{bottom:158.166000px;}
.y5c{bottom:158.299500px;}
.y10d{bottom:162.648000px;}
.y10c{bottom:167.131500px;}
.y112{bottom:168.375000px;}
.yc4{bottom:169.515000px;}
.y10b{bottom:171.615000px;}
.y88{bottom:172.512000px;}
.y5b{bottom:172.968000px;}
.y128{bottom:178.438500px;}
.y2e{bottom:184.276500px;}
.y125{bottom:185.820000px;}
.y87{bottom:187.306500px;}
.y5a{bottom:187.912500px;}
.yc3{bottom:189.240000px;}
.yf1{bottom:192.237000px;}
.y124{bottom:196.071000px;}
.y86{bottom:202.101000px;}
.y2d{bottom:202.210500px;}
.y59{bottom:202.857000px;}
.y109{bottom:204.738000px;}
.yc2{bottom:208.966500px;}
.y127{bottom:210.268500px;}
.y165{bottom:211.963500px;}
.y126{bottom:214.926000px;}
.y1a5{bottom:215.926500px;}
.yf0{bottom:216.663000px;}
.y58{bottom:217.525500px;}
.y2c{bottom:220.143000px;}
.y108{bottom:224.464500px;}
.yc1{bottom:228.693000px;}
.y164{bottom:231.690000px;}
.y57{bottom:232.470000px;}
.y85{bottom:233.226000px;}
.y1a4{bottom:235.653000px;}
.y2b{bottom:238.075500px;}
.y107{bottom:244.191000px;}
.yef{bottom:246.429000px;}
.y56{bottom:247.414500px;}
.yc0{bottom:248.419500px;}
.y163{bottom:251.416500px;}
.y84{bottom:252.952500px;}
.y123{bottom:255.069000px;}
.y1a3{bottom:255.378000px;}
.y2a{bottom:256.008000px;}
.y55{bottom:262.357500px;}
.y106{bottom:263.917500px;}
.yee{bottom:266.154000px;}
.ybf{bottom:268.144500px;}
.y162{bottom:271.141500px;}
.y83{bottom:272.679000px;}
.y29{bottom:273.940500px;}
.y122{bottom:274.794000px;}
.y1a2{bottom:275.104500px;}
.y54{bottom:281.734500px;}
.y105{bottom:283.642500px;}
.yed{bottom:285.880500px;}
.y28{bottom:291.873000px;}
.y82{bottom:292.405500px;}
.y1a1{bottom:294.831000px;}
.y161{bottom:295.977000px;}
.y121{bottom:296.431500px;}
.y188{bottom:298.506000px;}
.y104{bottom:303.369000px;}
.ybd{bottom:306.400500px;}
.y53{bottom:308.109000px;}
.yec{bottom:310.306500px;}
.y81{bottom:312.132000px;}
.ya3{bottom:313.731000px;}
.y1a0{bottom:314.557500px;}
.y27{bottom:314.817000px;}
.y160{bottom:315.702000px;}
.ybe{bottom:316.156500px;}
.y120{bottom:316.158000px;}
.yb9{bottom:322.977000px;}
.y103{bottom:323.095500px;}
.y52{bottom:326.041500px;}
.ybc{bottom:330.394500px;}
.y11f{bottom:330.730500px;}
.yb8{bottom:330.844500px;}
.y80{bottom:331.857000px;}
.y187{bottom:332.472000px;}
.ya2{bottom:333.457500px;}
.y19f{bottom:334.282500px;}
.y15f{bottom:335.428500px;}
.y11e{bottom:335.884500px;}
.yba{bottom:336.483000px;}
.yeb{bottom:340.071000px;}
.y102{bottom:342.822000px;}
.y26{bottom:343.572000px;}
.y51{bottom:343.975500px;}
.y15e{bottom:345.519000px;}
.ybb{bottom:346.239000px;}
.y7f{bottom:351.844500px;}
.y186{bottom:352.198500px;}
.y15d{bottom:353.386500px;}
.y19e{bottom:354.009000px;}
.ya1{bottom:356.808000px;}
.yea{bottom:359.797500px;}
.y25{bottom:361.504500px;}
.y11d{bottom:361.528500px;}
.y50{bottom:361.908000px;}
.y101{bottom:362.547000px;}
.y7e{bottom:371.571000px;}
.y11c{bottom:371.779500px;}
.y185{bottom:372.412500px;}
.y19d{bottom:373.735500px;}
.ya0{bottom:376.534500px;}
.y24{bottom:379.437000px;}
.ye9{bottom:379.524000px;}
.y4f{bottom:379.840500px;}
.yb7{bottom:380.308500px;}
.y100{bottom:383.553000px;}
.y15c{bottom:389.025000px;}
.y7d{bottom:391.297500px;}
.y184{bottom:392.139000px;}
.y19c{bottom:393.462000px;}
.y23{bottom:397.369500px;}
.ye8{bottom:399.249000px;}
.y9f{bottom:399.885000px;}
.y11b{bottom:401.592000px;}
.y4e{bottom:402.205500px;}
.yff{bottom:403.278000px;}
.y15b{bottom:408.751500px;}
.yb6{bottom:409.399500px;}
.y7c{bottom:411.024000px;}
.y183{bottom:411.865500px;}
.y19b{bottom:413.187000px;}
.y22{bottom:415.302000px;}
.ye7{bottom:418.975500px;}
.y9e{bottom:419.611500px;}
.y15a{bottom:428.478000px;}
.y4d{bottom:428.580000px;}
.yb5{bottom:429.126000px;}
.y7b{bottom:430.750500px;}
.y182{bottom:431.590500px;}
.y19a{bottom:432.913500px;}
.y21{bottom:433.234500px;}
.ye6{bottom:438.702000px;}
.y9d{bottom:442.962000px;}
.y4c{bottom:446.512500px;}
.y159{bottom:448.203000px;}
.yb4{bottom:448.851000px;}
.y7a{bottom:450.475500px;}
.y20{bottom:451.168500px;}
.y181{bottom:451.317000px;}
.y199{bottom:452.640000px;}
.yfe{bottom:455.004000px;}
.y11a{bottom:455.005500px;}
.ye5{bottom:458.428500px;}
.y9c{bottom:462.688500px;}
.y4b{bottom:464.172000px;}
.y1f{bottom:466.530000px;}
.y158{bottom:467.929500px;}
.yb3{bottom:468.577500px;}
.y79{bottom:470.202000px;}
.y1e{bottom:471.013500px;}
.y180{bottom:471.531000px;}
.y198{bottom:472.366500px;}
.y4a{bottom:482.104500px;}
.y9b{bottom:482.413500px;}
.ye4{bottom:482.853000px;}
.yb2{bottom:488.304000px;}
.y78{bottom:489.928500px;}
.y17f{bottom:491.257500px;}
.y1d{bottom:491.434500px;}
.y197{bottom:496.800000px;}
.y155{bottom:497.299500px;}
.y157{bottom:497.526000px;}
.y49{bottom:500.037000px;}
.y9a{bottom:505.765500px;}
.y1c{bottom:509.367000px;}
.y77{bottom:509.655000px;}
.y17e{bottom:510.984000px;}
.ye3{bottom:512.619000px;}
.y152{bottom:515.158500px;}
.y48{bottom:517.969500px;}
.y99{bottom:525.490500px;}
.y196{bottom:526.612500px;}
.y1b{bottom:527.299500px;}
.y154{bottom:529.354500px;}
.y76{bottom:529.380000px;}
.y17d{bottom:530.710500px;}
.ye2{bottom:532.345500px;}
.y153{bottom:533.838000px;}
.y156{bottom:534.012000px;}
.y47{bottom:535.902000px;}
.yb1{bottom:541.297500px;}
.y195{bottom:546.339000px;}
.y75{bottom:549.106500px;}
.y1a{bottom:550.243500px;}
.y17c{bottom:550.437000px;}
.y98{bottom:550.978500px;}
.ye1{bottom:552.070500px;}
.y46{bottom:553.836000px;}
.y151{bottom:561.745500px;}
.y74{bottom:568.833000px;}
.y17b{bottom:570.162000px;}
.y45{bottom:571.768500px;}
.ye0{bottom:571.797000px;}
.y19{bottom:573.402000px;}
.y97{bottom:583.351500px;}
.y44{bottom:589.701000px;}
.y14d{bottom:591.115500px;}
.y14f{bottom:591.342000px;}
.ydf{bottom:591.523500px;}
.y194{bottom:594.655500px;}
.y73{bottom:594.835500px;}
.y17a{bottom:600.516000px;}
.y18{bottom:602.157000px;}
.y96{bottom:603.078000px;}
.y43{bottom:607.633500px;}
.y14a{bottom:608.973000px;}
.y179{bottom:610.767000px;}
.yde{bottom:611.250000px;}
.y193{bottom:615.810000px;}
.y17{bottom:620.089500px;}
.y95{bottom:622.804500px;}
.y14c{bottom:623.170500px;}
.y42{bottom:625.566000px;}
.y14b{bottom:627.654000px;}
.y14e{bottom:627.828000px;}
.y72{bottom:631.027500px;}
.y150{bottom:634.975500px;}
.y16{bottom:638.022000px;}
.y94{bottom:642.529500px;}
.y41{bottom:643.498500px;}
.y147{bottom:643.693500px;}
.y149{bottom:643.920000px;}
.ydd{bottom:647.406000px;}
.y71{bottom:647.466000px;}
.y178{bottom:650.742000px;}
.y143{bottom:651.301500px;}
.y15{bottom:655.954500px;}
.y40{bottom:661.432500px;}
.y144{bottom:661.551000px;}
.y93{bottom:662.256000px;}
.y70{bottom:664.165500px;}
.y177{bottom:670.468500px;}
.y142{bottom:671.661000px;}
.y14{bottom:673.887000px;}
.y146{bottom:675.748500px;}
.y145{bottom:680.232000px;}
.y148{bottom:680.406000px;}
.y6f{bottom:680.604000px;}
.y92{bottom:681.982500px;}
.ydc{bottom:683.571000px;}
.y3f{bottom:683.797500px;}
.y176{bottom:690.195000px;}
.y13{bottom:691.821000px;}
.y6e{bottom:697.042500px;}
.y91{bottom:701.709000px;}
.ydb{bottom:703.297500px;}
.y141{bottom:708.721500px;}
.y12{bottom:709.753500px;}
.y175{bottom:709.920000px;}
.y3e{bottom:710.172000px;}
.y6d{bottom:713.481000px;}
.y90{bottom:721.434000px;}
.yda{bottom:723.022500px;}
.y11{bottom:727.686000px;}
.y3d{bottom:728.104500px;}
.y174{bottom:729.646500px;}
.y6c{bottom:729.919500px;}
.yfd{bottom:736.380000px;}
.yd9{bottom:742.741500px;}
.y3c{bottom:746.037000px;}
.y6b{bottom:746.358000px;}
.y8f{bottom:746.922000px;}
.y10{bottom:749.859000px;}
.y140{bottom:749.995500px;}
.yfc{bottom:754.911000px;}
.yd8{bottom:762.468000px;}
.y6a{bottom:762.796500px;}
.y3b{bottom:763.969500px;}
.yf{bottom:764.803500px;}
.y173{bottom:768.660000px;}
.y8e{bottom:773.163000px;}
.yfb{bottom:773.440500px;}
.yb0{bottom:777.723000px;}
.y69{bottom:779.235000px;}
.ye{bottom:779.833500px;}
.y3a{bottom:781.903500px;}
.yd7{bottom:782.707500px;}
.y13f{bottom:786.159000px;}
.y172{bottom:787.191000px;}
.yaf{bottom:791.338500px;}
.yfa{bottom:791.971500px;}
.yd6{bottom:792.958500px;}
.yd{bottom:794.778000px;}
.y68{bottom:795.673500px;}
.y39{bottom:799.836000px;}
.y8d{bottom:805.536000px;}
.y171{bottom:805.722000px;}
.yc{bottom:809.721000px;}
.yf9{bottom:810.502500px;}
.y67{bottom:812.110500px;}
.y13e{bottom:816.526500px;}
.y38{bottom:817.768500px;}
.yf8{bottom:819.468000px;}
.y138{bottom:821.136000px;}
.y170{bottom:823.654500px;}
.yb{bottom:824.665500px;}
.y8c{bottom:825.262500px;}
.y66{bottom:828.549000px;}
.y139{bottom:829.003500px;}
.yae{bottom:831.070500px;}
.y13b{bottom:831.111000px;}
.y137{bottom:836.664000px;}
.yd5{bottom:836.908500px;}
.y13d{bottom:838.942500px;}
.ya{bottom:839.610000px;}
.y37{bottom:840.133500px;}
.y16f{bottom:841.587000px;}
.y13c{bottom:843.682500px;}
.y65{bottom:844.987500px;}
.y13a{bottom:849.940500px;}
.y9{bottom:854.553000px;}
.yf7{bottom:857.425500px;}
.y16e{bottom:859.519500px;}
.yd4{bottom:866.497500px;}
.y36{bottom:866.508000px;}
.yad{bottom:868.309500px;}
.y8{bottom:869.497500px;}
.y136{bottom:870.123000px;}
.yf6{bottom:870.876000px;}
.yac{bottom:881.926500px;}
.y35{bottom:884.440500px;}
.y7{bottom:884.442000px;}
.yd3{bottom:886.224000px;}
.y16d{bottom:888.511500px;}
.y192{bottom:894.514500px;}
.y16c{bottom:901.960500px;}
.y134{bottom:904.836000px;}
.yd2{bottom:905.950500px;}
.yf5{bottom:906.639000px;}
.y133{bottom:912.703500px;}
.y191{bottom:915.138000px;}
.yab{bottom:924.721500px;}
.y135{bottom:924.808500px;}
.y190{bottom:935.760000px;}
.y6{bottom:936.678000px;}
.y16b{bottom:939.673500px;}
.y64{bottom:941.590500px;}
.yd1{bottom:942.106500px;}
.y132{bottom:947.302500px;}
.y5{bottom:955.171500px;}
.y18f{bottom:956.980500px;}
.y16a{bottom:959.400000px;}
.yaa{bottom:961.261500px;}
.y63{bottom:961.933500px;}
.y131{bottom:967.029000px;}
.y4{bottom:973.663500px;}
.ya9{bottom:974.095500px;}
.y18e{bottom:977.602500px;}
.yd0{bottom:978.271500px;}
.y169{bottom:979.126500px;}
.y62{bottom:982.519500px;}
.y130{bottom:986.755500px;}
.y3{bottom:992.379000px;}
.ycf{bottom:997.989000px;}
.y18d{bottom:998.224500px;}
.y168{bottom:998.853000px;}
.ycd{bottom:1006.369500px;}
.y12f{bottom:1006.480500px;}
.yce{bottom:1016.124000px;}
.y167{bottom:1018.578000px;}
.y18c{bottom:1019.445000px;}
.ycc{bottom:1030.362000px;}
.yc9{bottom:1030.812000px;}
.y61{bottom:1033.180500px;}
.y12c{bottom:1034.605500px;}
.y12e{bottom:1034.832000px;}
.yca{bottom:1036.450500px;}
.y18b{bottom:1037.377500px;}
.y2{bottom:1039.452000px;}
.ya8{bottom:1040.455500px;}
.y166{bottom:1045.942500px;}
.ycb{bottom:1046.206500px;}
.y129{bottom:1052.464500px;}
.y18a{bottom:1055.311500px;}
.ya7{bottom:1060.182000px;}
.y12b{bottom:1066.660500px;}
.yc7{bottom:1070.160000px;}
.y12a{bottom:1071.144000px;}
.y12d{bottom:1071.318000px;}
.yc8{bottom:1078.543500px;}
.y60{bottom:1079.208000px;}
.ya6{bottom:1079.908500px;}
.y1{bottom:1081.296000px;}
.y189{bottom:1086.184500px;}
.ya5{bottom:1099.635000px;}
.h3c{height:2.050297px;}
.h2f{height:2.988780px;}
.h21{height:5.157163px;}
.h1f{height:16.707280px;}
.h3d{height:20.413367px;}
.h1a{height:23.390125px;}
.hd{height:24.675533px;}
.h25{height:27.326125px;}
.h29{height:28.787846px;}
.h22{height:29.875759px;}
.h20{height:31.382100px;}
.he{height:32.900573px;}
.h10{height:37.013299px;}
.h12{height:37.174694px;}
.h5{height:37.336090px;}
.h4{height:37.605082px;}
.h8{height:40.826735px;}
.h3{height:41.125613px;}
.h45{height:41.304940px;}
.h6{height:41.484266px;}
.h15{height:42.799330px;}
.h40{height:42.978780px;}
.hf{height:43.658573px;}
.hc{height:44.831700px;}
.h2{height:45.238339px;}
.h38{height:47.820780px;}
.h7{height:50.477846px;}
.h13{height:50.483846px;}
.h42{height:51.402780px;}
.h41{height:51.408780px;}
.h14{height:53.072100px;}
.h33{height:54.914100px;}
.h37{height:59.939700px;}
.h39{height:60.517759px;}
.h27{height:60.860125px;}
.h34{height:61.741613px;}
.h1c{height:62.024100px;}
.h2c{height:65.905759px;}
.h36{height:67.412100px;}
.h9{height:68.745024px;}
.h3b{height:69.207280px;}
.ha{height:76.566632px;}
.h2d{height:76.993613px;}
.h46{height:81.565613px;}
.h31{height:81.895613px;}
.h32{height:83.803330px;}
.h2a{height:85.271700px;}
.h3f{height:85.798297px;}
.h23{height:85.810824px;}
.h2b{height:85.835700px;}
.hb{height:86.679024px;}
.h3a{height:91.987759px;}
.h17{height:92.461613px;}
.h24{height:93.457613px;}
.h44{height:93.494100px;}
.h18{height:97.964100px;}
.h1b{height:97.970100px;}
.h1{height:98.701718px;}
.h28{height:101.127163px;}
.h1e{height:101.133163px;}
.h3e{height:101.316780px;}
.h16{height:105.204780px;}
.h11{height:109.747896px;}
.h30{height:123.138780px;}
.h26{height:123.687163px;}
.h43{height:126.269700px;}
.h35{height:130.469700px;}
.h19{height:152.432100px;}
.h1d{height:155.157163px;}
.h2e{height:179.328780px;}
.h0{height:1188.000000px;}
.h47{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:73.446000px;}
.x5c{left:79.569000px;}
.x43{left:83.010000px;}
.xc{left:85.401000px;}
.x46{left:87.121500px;}
.x7{left:88.390500px;}
.x22{left:92.998500px;}
.x1{left:95.398500px;}
.x26{left:98.343000px;}
.x64{left:101.112000px;}
.x63{left:102.655500px;}
.x15{left:111.358500px;}
.x44{left:112.591500px;}
.x9{left:113.677500px;}
.x89{left:117.141000px;}
.x5d{left:126.951000px;}
.x8a{left:130.008000px;}
.x47{left:131.472000px;}
.x65{left:133.777500px;}
.x6e{left:135.396000px;}
.x48{left:144.756000px;}
.x66{left:148.146000px;}
.x49{left:153.681000px;}
.x6c{left:157.848000px;}
.x45{left:162.315000px;}
.x23{left:163.489500px;}
.x1d{left:166.041000px;}
.x1f{left:167.052000px;}
.x4a{left:168.999000px;}
.x27{left:172.383000px;}
.x6f{left:173.476500px;}
.x67{left:179.451000px;}
.x2{left:181.582500px;}
.x5e{left:183.502500px;}
.x68{left:189.297000px;}
.x84{left:192.039000px;}
.x4b{left:195.318000px;}
.x24{left:197.778000px;}
.x69{left:199.576500px;}
.x18{left:203.430000px;}
.x20{left:206.487000px;}
.x6d{left:207.924000px;}
.x2f{left:214.680000px;}
.x4c{left:219.394500px;}
.x28{left:220.483500px;}
.x8d{left:223.588500px;}
.x6a{left:226.258500px;}
.x25{left:228.744000px;}
.x56{left:235.074000px;}
.x70{left:236.131500px;}
.x57{left:237.316500px;}
.x1e{left:241.597500px;}
.x5f{left:243.343500px;}
.x77{left:246.583500px;}
.xa{left:249.766500px;}
.x8b{left:251.151000px;}
.x75{left:252.751500px;}
.x2a{left:253.804500px;}
.x72{left:259.095000px;}
.x2b{left:260.571000px;}
.x59{left:263.635500px;}
.x5a{left:264.748500px;}
.x58{left:265.752000px;}
.x74{left:269.782500px;}
.x21{left:271.741500px;}
.x29{left:274.738500px;}
.x6{left:280.129500px;}
.x5b{left:287.712000px;}
.x2c{left:289.041000px;}
.xb{left:294.850500px;}
.x5{left:296.397000px;}
.x17{left:298.354500px;}
.x60{left:299.895000px;}
.x85{left:304.914000px;}
.x78{left:312.928500px;}
.x2d{left:314.826000px;}
.x76{left:322.596000px;}
.x61{left:323.604000px;}
.x4d{left:329.697000px;}
.x42{left:336.927000px;}
.x6b{left:338.088000px;}
.x16{left:341.721000px;}
.x71{left:346.273500px;}
.x40{left:358.660500px;}
.x8c{left:364.333500px;}
.x62{left:366.943500px;}
.x79{left:376.915500px;}
.x4{left:379.342500px;}
.xd{left:384.483000px;}
.xe{left:389.164500px;}
.xf{left:394.476000px;}
.x3{left:415.767000px;}
.x2e{left:421.587000px;}
.x73{left:425.137500px;}
.x86{left:426.292500px;}
.x7a{left:432.606000px;}
.x41{left:436.213500px;}
.x3f{left:455.263500px;}
.x10{left:467.967000px;}
.x55{left:473.197500px;}
.x81{left:477.127500px;}
.x1b{left:479.160000px;}
.x11{left:482.910000px;}
.x1a{left:487.468500px;}
.x80{left:491.605500px;}
.x19{left:501.943500px;}
.x3d{left:509.697000px;}
.x54{left:512.469000px;}
.x31{left:519.448500px;}
.x3e{left:528.580500px;}
.x3c{left:537.322500px;}
.x32{left:540.583500px;}
.x7b{left:543.846000px;}
.x30{left:545.119500px;}
.x87{left:547.669500px;}
.x4e{left:551.419500px;}
.x82{left:557.082000px;}
.x7d{left:565.591500px;}
.x12{left:567.591000px;}
.x33{left:569.053500px;}
.x3b{left:575.460000px;}
.x50{left:583.734000px;}
.x3a{left:585.217500px;}
.x34{left:594.838500px;}
.x13{left:598.861500px;}
.x83{left:602.641500px;}
.x4f{left:603.966000px;}
.x14{left:605.982000px;}
.x51{left:612.577500px;}
.x35{left:618.909000px;}
.x52{left:624.333000px;}
.x36{left:625.675500px;}
.x7c{left:631.483500px;}
.x1c{left:636.031500px;}
.x37{left:654.145500px;}
.x53{left:656.088000px;}
.x88{left:677.553000px;}
.x38{left:679.930500px;}
.x7e{left:704.700000px;}
.x7f{left:778.506000px;}
.x39{left:831.696000px;}
@media print{
.vc{vertical-align:-58.981333pt;}
.v2d{vertical-align:-48.378667pt;}
.v2c{vertical-align:-43.040000pt;}
.v22{vertical-align:-32.026667pt;}
.v1a{vertical-align:-29.808000pt;}
.vd{vertical-align:-15.002667pt;}
.v19{vertical-align:-13.136000pt;}
.v21{vertical-align:-11.013333pt;}
.v2e{vertical-align:-9.002667pt;}
.v2{vertical-align:-7.968000pt;}
.v8{vertical-align:-5.344000pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:3.498667pt;}
.va{vertical-align:7.973333pt;}
.ve{vertical-align:9.562667pt;}
.v26{vertical-align:10.629333pt;}
.v29{vertical-align:13.429333pt;}
.v9{vertical-align:15.941333pt;}
.v27{vertical-align:18.325333pt;}
.v1{vertical-align:19.280000pt;}
.v25{vertical-align:20.917333pt;}
.v31{vertical-align:21.936000pt;}
.v5{vertical-align:26.714667pt;}
.v16{vertical-align:27.973333pt;}
.v1f{vertical-align:29.808000pt;}
.v23{vertical-align:31.882667pt;}
.v1c{vertical-align:33.306667pt;}
.v20{vertical-align:35.946667pt;}
.v11{vertical-align:38.533333pt;}
.v4{vertical-align:39.850667pt;}
.v7{vertical-align:42.656000pt;}
.v12{vertical-align:45.632000pt;}
.v2b{vertical-align:46.666667pt;}
.vf{vertical-align:47.973333pt;}
.v2a{vertical-align:49.872000pt;}
.v30{vertical-align:53.765333pt;}
.v6{vertical-align:55.792000pt;}
.v3{vertical-align:58.981333pt;}
.v32{vertical-align:64.421333pt;}
.v13{vertical-align:72.320000pt;}
.vb{vertical-align:74.922667pt;}
.v28{vertical-align:76.122667pt;}
.v18{vertical-align:85.312000pt;}
.v2f{vertical-align:87.402667pt;}
.v10{vertical-align:90.858667pt;}
.v1e{vertical-align:92.224000pt;}
.v1d{vertical-align:105.360000pt;}
.v15{vertical-align:107.600000pt;}
.v14{vertical-align:120.736000pt;}
.v17{vertical-align:133.333333pt;}
.v24{vertical-align:156.746667pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls78{letter-spacing:0.000271pt;}
.ls67{letter-spacing:0.000277pt;}
.ls4a{letter-spacing:0.000473pt;}
.ls92{letter-spacing:0.000498pt;}
.ls9{letter-spacing:0.000501pt;}
.ls25{letter-spacing:0.000690pt;}
.ls84{letter-spacing:0.000749pt;}
.ls47{letter-spacing:0.000882pt;}
.ls8b{letter-spacing:0.001014pt;}
.ls7e{letter-spacing:0.001069pt;}
.ls39{letter-spacing:0.001173pt;}
.lsc{letter-spacing:0.001710pt;}
.ls7{letter-spacing:0.001788pt;}
.ls4d{letter-spacing:0.001793pt;}
.ls11{letter-spacing:0.001995pt;}
.ls8d{letter-spacing:0.002079pt;}
.ls51{letter-spacing:0.002174pt;}
.ls7a{letter-spacing:0.002178pt;}
.ls7d{letter-spacing:0.002205pt;}
.ls32{letter-spacing:0.002679pt;}
.ls14{letter-spacing:0.002906pt;}
.lsf{letter-spacing:0.002963pt;}
.ls9d{letter-spacing:0.003283pt;}
.lsa{letter-spacing:0.003376pt;}
.ls62{letter-spacing:0.003733pt;}
.ls69{letter-spacing:0.004105pt;}
.ls34{letter-spacing:0.004777pt;}
.ls98{letter-spacing:0.005831pt;}
.lsa3{letter-spacing:0.006082pt;}
.ls76{letter-spacing:0.007043pt;}
.ls96{letter-spacing:0.612212pt;}
.ls4e{letter-spacing:1.144296pt;}
.ls4c{letter-spacing:1.149629pt;}
.ls35{letter-spacing:1.336007pt;}
.ls3e{letter-spacing:1.339577pt;}
.ls56{letter-spacing:1.474963pt;}
.ls9e{letter-spacing:1.567996pt;}
.ls2d{letter-spacing:1.903146pt;}
.ls52{letter-spacing:1.905696pt;}
.ls31{letter-spacing:1.910015pt;}
.ls72{letter-spacing:2.108364pt;}
.lsb6{letter-spacing:2.124101pt;}
.ls71{letter-spacing:2.125802pt;}
.ls81{letter-spacing:2.146585pt;}
.lsb{letter-spacing:2.151919pt;}
.ls8{letter-spacing:2.607197pt;}
.ls1d{letter-spacing:2.635446pt;}
.ls43{letter-spacing:2.652911pt;}
.ls33{letter-spacing:2.654545pt;}
.ls3{letter-spacing:2.655711pt;}
.ls2{letter-spacing:2.656015pt;}
.ls1e{letter-spacing:2.656693pt;}
.ls5b{letter-spacing:2.657014pt;}
.ls20{letter-spacing:2.657600pt;}
.ls41{letter-spacing:2.658245pt;}
.ls4{letter-spacing:2.661348pt;}
.ls0{letter-spacing:2.661867pt;}
.ls77{letter-spacing:3.042140pt;}
.ls75{letter-spacing:3.801407pt;}
.ls66{letter-spacing:4.167686pt;}
.ls3a{letter-spacing:4.170112pt;}
.ls10{letter-spacing:4.315150pt;}
.ls23{letter-spacing:5.718992pt;}
.ls87{letter-spacing:5.792271pt;}
.ls6b{letter-spacing:6.642178pt;}
.ls6a{letter-spacing:6.643959pt;}
.ls50{letter-spacing:7.252777pt;}
.ls4f{letter-spacing:7.257211pt;}
.ls4b{letter-spacing:7.257645pt;}
.ls3b{letter-spacing:7.258110pt;}
.ls97{letter-spacing:7.259416pt;}
.ls13{letter-spacing:7.376277pt;}
.ls9b{letter-spacing:7.381391pt;}
.ls9f{letter-spacing:7.686082pt;}
.ls6c{letter-spacing:8.373759pt;}
.lsae{letter-spacing:8.378428pt;}
.lsa7{letter-spacing:8.854082pt;}
.ls5c{letter-spacing:8.855412pt;}
.ls2c{letter-spacing:8.856239pt;}
.ls7b{letter-spacing:8.857200pt;}
.ls48{letter-spacing:8.858933pt;}
.lsa6{letter-spacing:8.859416pt;}
.lsa0{letter-spacing:9.152498pt;}
.ls82{letter-spacing:9.520749pt;}
.lsa5{letter-spacing:9.526082pt;}
.ls3d{letter-spacing:9.674546pt;}
.lsa1{letter-spacing:9.675168pt;}
.ls3c{letter-spacing:9.676653pt;}
.ls1b{letter-spacing:10.317090pt;}
.ls89{letter-spacing:11.511890pt;}
.ls86{letter-spacing:11.801144pt;}
.lse{letter-spacing:11.803145pt;}
.ls83{letter-spacing:11.806477pt;}
.ls30{letter-spacing:11.808479pt;}
.ls2f{letter-spacing:11.809995pt;}
.lsd{letter-spacing:11.810079pt;}
.ls8f{letter-spacing:12.090546pt;}
.ls93{letter-spacing:12.095879pt;}
.lsa2{letter-spacing:12.099033pt;}
.ls94{letter-spacing:13.963168pt;}
.ls6{letter-spacing:14.572326pt;}
.ls46{letter-spacing:14.754195pt;}
.ls27{letter-spacing:14.754906pt;}
.ls59{letter-spacing:14.756105pt;}
.ls2a{letter-spacing:14.757600pt;}
.ls5{letter-spacing:14.757812pt;}
.ls28{letter-spacing:14.762318pt;}
.ls5a{letter-spacing:14.763145pt;}
.ls60{letter-spacing:14.850140pt;}
.lsb4{letter-spacing:15.090018pt;}
.lsb3{letter-spacing:15.097067pt;}
.lsb7{letter-spacing:15.170122pt;}
.ls42{letter-spacing:15.880239pt;}
.ls73{letter-spacing:15.916800pt;}
.lsb1{letter-spacing:16.052212pt;}
.ls5d{letter-spacing:16.237630pt;}
.ls49{letter-spacing:16.667348pt;}
.ls58{letter-spacing:16.719651pt;}
.ls91{letter-spacing:16.796185pt;}
.ls54{letter-spacing:17.293573pt;}
.ls16{letter-spacing:17.344479pt;}
.ls15{letter-spacing:17.352239pt;}
.ls68{letter-spacing:17.418001pt;}
.ls1c{letter-spacing:17.795733pt;}
.ls44{letter-spacing:18.008239pt;}
.lsaa{letter-spacing:18.183412pt;}
.ls57{letter-spacing:18.205630pt;}
.ls38{letter-spacing:18.300513pt;}
.ls3f{letter-spacing:18.305846pt;}
.ls37{letter-spacing:18.469213pt;}
.ls9a{letter-spacing:18.558740pt;}
.lsad{letter-spacing:18.594133pt;}
.ls74{letter-spacing:18.597812pt;}
.lsb2{letter-spacing:18.777438pt;}
.lsb5{letter-spacing:18.780533pt;}
.ls55{letter-spacing:19.207029pt;}
.ls5e{letter-spacing:19.565252pt;}
.ls79{letter-spacing:19.608709pt;}
.ls45{letter-spacing:19.853156pt;}
.ls65{letter-spacing:20.301573pt;}
.ls6f{letter-spacing:20.332533pt;}
.lsab{letter-spacing:20.660564pt;}
.lsa9{letter-spacing:20.665897pt;}
.lsb8{letter-spacing:21.131145pt;}
.ls5f{letter-spacing:21.136479pt;}
.ls1{letter-spacing:21.394118pt;}
.ls88{letter-spacing:21.466428pt;}
.ls99{letter-spacing:21.769545pt;}
.ls7f{letter-spacing:21.832358pt;}
.ls22{letter-spacing:22.082352pt;}
.ls29{letter-spacing:22.765019pt;}
.ls80{letter-spacing:23.135761pt;}
.ls1a{letter-spacing:23.323733pt;}
.ls2e{letter-spacing:23.609490pt;}
.ls2b{letter-spacing:23.614824pt;}
.ls8e{letter-spacing:23.655474pt;}
.ls70{letter-spacing:23.776271pt;}
.ls6e{letter-spacing:23.777503pt;}
.ls19{letter-spacing:26.081995pt;}
.ls64{letter-spacing:26.658963pt;}
.ls12{letter-spacing:26.680239pt;}
.ls18{letter-spacing:28.613812pt;}
.ls17{letter-spacing:30.519132pt;}
.ls63{letter-spacing:30.977503pt;}
.ls24{letter-spacing:31.021573pt;}
.lsb9{letter-spacing:32.567412pt;}
.ls8a{letter-spacing:34.607761pt;}
.ls21{letter-spacing:39.659218pt;}
.ls40{letter-spacing:45.156212pt;}
.ls95{letter-spacing:47.358878pt;}
.lsaf{letter-spacing:48.487126pt;}
.ls26{letter-spacing:53.132745pt;}
.ls90{letter-spacing:54.331168pt;}
.ls9c{letter-spacing:54.815879pt;}
.ls7c{letter-spacing:54.999412pt;}
.lsb0{letter-spacing:60.076459pt;}
.ls36{letter-spacing:63.924312pt;}
.ls61{letter-spacing:82.901605pt;}
.ls6d{letter-spacing:86.423412pt;}
.lsa4{letter-spacing:91.988212pt;}
.lsac{letter-spacing:114.332745pt;}
.lsa8{letter-spacing:211.575412pt;}
.ls8c{letter-spacing:232.258079pt;}
.ls85{letter-spacing:273.772745pt;}
.ls53{letter-spacing:354.940745pt;}
.wsf5{word-spacing:-53.133867pt;}
.ws122{word-spacing:-49.701419pt;}
.ws107{word-spacing:-42.359791pt;}
.ws29{word-spacing:-42.066082pt;}
.ws27{word-spacing:-34.611401pt;}
.wsba{word-spacing:-33.779228pt;}
.wsf7{word-spacing:-33.328704pt;}
.ws6e{word-spacing:-31.880400pt;}
.wsbb{word-spacing:-28.118362pt;}
.ws115{word-spacing:-27.228392pt;}
.wsfa{word-spacing:-27.125465pt;}
.wsa2{word-spacing:-25.738045pt;}
.wsa8{word-spacing:-25.535081pt;}
.wsaf{word-spacing:-23.932465pt;}
.wsff{word-spacing:-22.390547pt;}
.wsad{word-spacing:-20.865610pt;}
.wsc3{word-spacing:-19.870495pt;}
.wsf4{word-spacing:-19.839689pt;}
.wsc0{word-spacing:-18.439708pt;}
.wsca{word-spacing:-16.917823pt;}
.wsc5{word-spacing:-16.827738pt;}
.ws108{word-spacing:-16.611638pt;}
.wsf2{word-spacing:-16.606305pt;}
.ws118{word-spacing:-16.604639pt;}
.wsf1{word-spacing:-16.051601pt;}
.ws62{word-spacing:-15.940160pt;}
.wsa3{word-spacing:-14.760588pt;}
.wsbd{word-spacing:-13.612858pt;}
.ws2{word-spacing:-13.283467pt;}
.ws5d{word-spacing:-13.262246pt;}
.wsa7{word-spacing:-12.028410pt;}
.wsf3{word-spacing:-11.504401pt;}
.wsf0{word-spacing:-10.700370pt;}
.ws1e{word-spacing:-10.626800pt;}
.wse7{word-spacing:-9.381465pt;}
.ws119{word-spacing:-8.554798pt;}
.ws106{word-spacing:-8.549465pt;}
.ws142{word-spacing:-8.501467pt;}
.ws117{word-spacing:-7.276639pt;}
.wse5{word-spacing:-7.255037pt;}
.ws123{word-spacing:-6.679037pt;}
.wsed{word-spacing:-6.081703pt;}
.wsb8{word-spacing:-5.907683pt;}
.ws116{word-spacing:-5.907549pt;}
.ws105{word-spacing:-5.902216pt;}
.wsb7{word-spacing:-5.901542pt;}
.wsbe{word-spacing:-4.775805pt;}
.wsbf{word-spacing:-4.774618pt;}
.ws10f{word-spacing:-4.772758pt;}
.wsc1{word-spacing:-4.770472pt;}
.wsbc{word-spacing:-4.769285pt;}
.ws10d{word-spacing:-4.767424pt;}
.ws124{word-spacing:-4.715067pt;}
.wsf6{word-spacing:-2.964870pt;}
.wsfe{word-spacing:-1.562286pt;}
.ws11c{word-spacing:-0.850142pt;}
.ws13a{word-spacing:-0.797008pt;}
.ws138{word-spacing:-0.531339pt;}
.ws12c{word-spacing:-0.425071pt;}
.ws102{word-spacing:-0.212535pt;}
.ws13d{word-spacing:-0.159402pt;}
.ws35{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws2b{word-spacing:-0.037194pt;}
.wsb0{word-spacing:-0.026567pt;}
.wsa4{word-spacing:-0.019085pt;}
.wsa9{word-spacing:-0.013752pt;}
.ws4c{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.010627pt;}
.wsfb{word-spacing:0.053134pt;}
.wsf8{word-spacing:0.058779pt;}
.wsae{word-spacing:0.059510pt;}
.ws8f{word-spacing:0.085014pt;}
.ws101{word-spacing:0.371937pt;}
.ws6{word-spacing:0.382566pt;}
.ws67{word-spacing:0.526029pt;}
.ws13e{word-spacing:0.584473pt;}
.wse8{word-spacing:0.637606pt;}
.ws9e{word-spacing:0.797008pt;}
.wsc{word-spacing:0.956416pt;}
.ws94{word-spacing:1.009543pt;}
.ws16{word-spacing:1.057363pt;}
.ws17{word-spacing:1.062677pt;}
.wsab{word-spacing:1.381481pt;}
.ws9a{word-spacing:1.434614pt;}
.ws10{word-spacing:1.647150pt;}
.ws139{word-spacing:1.700284pt;}
.wsce{word-spacing:1.753418pt;}
.ws8b{word-spacing:1.827810pt;}
.wsd1{word-spacing:1.859685pt;}
.ws1b{word-spacing:1.965953pt;}
.wse9{word-spacing:2.019087pt;}
.ws147{word-spacing:2.072221pt;}
.ws13b{word-spacing:2.125355pt;}
.ws141{word-spacing:2.125534pt;}
.wscf{word-spacing:2.231622pt;}
.ws129{word-spacing:2.391024pt;}
.ws60{word-spacing:2.444158pt;}
.ws3c{word-spacing:2.550426pt;}
.wsb1{word-spacing:2.603559pt;}
.ws1f{word-spacing:2.659307pt;}
.wsd6{word-spacing:2.816095pt;}
.ws5b{word-spacing:2.869229pt;}
.ws12f{word-spacing:2.922363pt;}
.ws9c{word-spacing:3.028630pt;}
.ws13f{word-spacing:3.081764pt;}
.ws109{word-spacing:3.134898pt;}
.ws6a{word-spacing:3.156173pt;}
.ws55{word-spacing:3.188032pt;}
.wscd{word-spacing:3.198659pt;}
.ws131{word-spacing:3.241166pt;}
.ws8c{word-spacing:3.358069pt;}
.ws98{word-spacing:3.400567pt;}
.ws135{word-spacing:3.453701pt;}
.ws136{word-spacing:3.613103pt;}
.wsee{word-spacing:3.664282pt;}
.ws88{word-spacing:3.666237pt;}
.ws33{word-spacing:3.772505pt;}
.ws6d{word-spacing:3.873485pt;}
.ws149{word-spacing:3.878772pt;}
.wsa{word-spacing:3.921306pt;}
.ws49{word-spacing:3.985040pt;}
.wsc2{word-spacing:4.038174pt;}
.ws128{word-spacing:4.091308pt;}
.wsb2{word-spacing:4.144442pt;}
.ws114{word-spacing:4.184756pt;}
.ws120{word-spacing:4.196735pt;}
.ws110{word-spacing:4.197798pt;}
.ws12a{word-spacing:4.216727pt;}
.ws3d{word-spacing:4.250709pt;}
.ws8d{word-spacing:4.250720pt;}
.ws134{word-spacing:4.303843pt;}
.ws6b{word-spacing:4.303872pt;}
.ws80{word-spacing:4.410111pt;}
.ws47{word-spacing:4.516379pt;}
.ws71{word-spacing:4.590797pt;}
.ws112{word-spacing:4.596079pt;}
.wsa0{word-spacing:4.622646pt;}
.ws79{word-spacing:4.638618pt;}
.ws140{word-spacing:4.675780pt;}
.wsb3{word-spacing:4.728914pt;}
.wsb6{word-spacing:4.782048pt;}
.ws65{word-spacing:4.782080pt;}
.ws25{word-spacing:4.835182pt;}
.wse6{word-spacing:4.888316pt;}
.ws53{word-spacing:4.941450pt;}
.ws51{word-spacing:4.951763pt;}
.ws132{word-spacing:4.994583pt;}
.ws125{word-spacing:5.047717pt;}
.ws26{word-spacing:5.100851pt;}
.wsf{word-spacing:5.164646pt;}
.ws21{word-spacing:5.270893pt;}
.ws20{word-spacing:5.283452pt;}
.wsef{word-spacing:5.312282pt;}
.ws111{word-spacing:5.313378pt;}
.ws3{word-spacing:5.313387pt;}
.wse2{word-spacing:5.313897pt;}
.wsa5{word-spacing:5.317111pt;}
.ws1d{word-spacing:5.323034pt;}
.wsdd{word-spacing:5.472788pt;}
.ws121{word-spacing:5.497164pt;}
.ws93{word-spacing:5.738458pt;}
.ws3e{word-spacing:5.791591pt;}
.wsac{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsfd{word-spacing:5.897859pt;}
.wsd{word-spacing:5.977600pt;}
.wsfc{word-spacing:6.004127pt;}
.wsea{word-spacing:6.057261pt;}
.wsec{word-spacing:6.078479pt;}
.wseb{word-spacing:6.110395pt;}
.ws13c{word-spacing:6.269796pt;}
.ws4e{word-spacing:6.376064pt;}
.wsd9{word-spacing:6.429198pt;}
.wsb5{word-spacing:6.535466pt;}
.wsb4{word-spacing:6.588599pt;}
.ws42{word-spacing:6.631123pt;}
.ws12b{word-spacing:6.641733pt;}
.ws30{word-spacing:6.748001pt;}
.ws61{word-spacing:6.801135pt;}
.ws7d{word-spacing:6.907403pt;}
.wsc9{word-spacing:7.013670pt;}
.wsc8{word-spacing:7.016022pt;}
.wscc{word-spacing:7.066804pt;}
.ws113{word-spacing:7.231817pt;}
.ws5{word-spacing:7.316582pt;}
.ws10b{word-spacing:7.321179pt;}
.ws10a{word-spacing:7.332474pt;}
.wsd8{word-spacing:7.545009pt;}
.ws8a{word-spacing:7.651296pt;}
.ws95{word-spacing:7.664529pt;}
.wsd0{word-spacing:7.704411pt;}
.ws6f{word-spacing:7.778818pt;}
.ws18{word-spacing:7.863812pt;}
.ws9b{word-spacing:8.069862pt;}
.wsd4{word-spacing:8.076348pt;}
.ws15{word-spacing:8.129482pt;}
.ws14a{word-spacing:8.288883pt;}
.ws8e{word-spacing:8.288904pt;}
.wse4{word-spacing:8.342017pt;}
.ws59{word-spacing:8.395151pt;}
.ws4a{word-spacing:8.767088pt;}
.wscb{word-spacing:8.820222pt;}
.ws143{word-spacing:8.926490pt;}
.ws130{word-spacing:9.085891pt;}
.ws133{word-spacing:9.192159pt;}
.ws146{word-spacing:9.351561pt;}
.ws73{word-spacing:9.372877pt;}
.ws12e{word-spacing:9.457828pt;}
.ws7c{word-spacing:9.510962pt;}
.ws14b{word-spacing:9.617230pt;}
.ws58{word-spacing:9.723498pt;}
.ws85{word-spacing:9.776631pt;}
.ws11f{word-spacing:9.888352pt;}
.ws100{word-spacing:9.909445pt;}
.ws40{word-spacing:10.031699pt;}
.ws126{word-spacing:10.042301pt;}
.ws99{word-spacing:10.043196pt;}
.ws11a{word-spacing:10.095435pt;}
.ws48{word-spacing:10.254836pt;}
.wsdc{word-spacing:10.467372pt;}
.ws5c{word-spacing:10.626773pt;}
.ws91{word-spacing:10.679907pt;}
.ws19{word-spacing:10.733041pt;}
.ws1a{word-spacing:10.768819pt;}
.ws2f{word-spacing:10.786175pt;}
.ws5f{word-spacing:10.945577pt;}
.ws92{word-spacing:11.051844pt;}
.ws41{word-spacing:11.051872pt;}
.ws89{word-spacing:11.158112pt;}
.ws10e{word-spacing:11.184464pt;}
.ws11b{word-spacing:11.423781pt;}
.ws2c{word-spacing:11.468931pt;}
.ws23{word-spacing:11.476915pt;}
.ws8{word-spacing:11.668275pt;}
.ws3b{word-spacing:11.689451pt;}
.ws4b{word-spacing:11.742585pt;}
.ws83{word-spacing:11.848852pt;}
.wsc6{word-spacing:11.891830pt;}
.wsc7{word-spacing:11.901986pt;}
.ws127{word-spacing:12.008254pt;}
.ws63{word-spacing:12.098662pt;}
.ws87{word-spacing:12.114522pt;}
.ws7e{word-spacing:12.167655pt;}
.wsb{word-spacing:12.529050pt;}
.ws9d{word-spacing:12.539593pt;}
.ws78{word-spacing:12.576870pt;}
.wsa1{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws38{word-spacing:12.787523pt;}
.ws36{word-spacing:12.793378pt;}
.ws148{word-spacing:12.858396pt;}
.ws103{word-spacing:12.943756pt;}
.ws74{word-spacing:12.959437pt;}
.ws104{word-spacing:12.964663pt;}
.ws9{word-spacing:13.007258pt;}
.wsd2{word-spacing:13.017797pt;}
.ws145{word-spacing:13.230333pt;}
.wsf9{word-spacing:13.347227pt;}
.ws34{word-spacing:13.389734pt;}
.ws7b{word-spacing:13.772390pt;}
.ws3a{word-spacing:13.867939pt;}
.ws72{word-spacing:13.963674pt;}
.ws68{word-spacing:14.250598pt;}
.wsaa{word-spacing:14.452412pt;}
.ws32{word-spacing:14.611813pt;}
.ws7f{word-spacing:14.983750pt;}
.ws96{word-spacing:15.036884pt;}
.ws31{word-spacing:15.196286pt;}
.ws82{word-spacing:15.355687pt;}
.ws43{word-spacing:15.408821pt;}
.ws6c{word-spacing:15.780864pt;}
.ws24{word-spacing:15.833892pt;}
.wsda{word-spacing:15.887026pt;}
.ws1c{word-spacing:15.940160pt;}
.ws90{word-spacing:16.099562pt;}
.ws64{word-spacing:16.211251pt;}
.ws11d{word-spacing:16.292987pt;}
.ws10c{word-spacing:16.293798pt;}
.ws75{word-spacing:16.354714pt;}
.wsd5{word-spacing:16.365231pt;}
.ws56{word-spacing:16.433052pt;}
.ws76{word-spacing:16.498176pt;}
.wse3{word-spacing:16.577766pt;}
.ws2d{word-spacing:16.581426pt;}
.ws2e{word-spacing:16.582101pt;}
.ws66{word-spacing:16.689459pt;}
.ws137{word-spacing:16.737168pt;}
.ws77{word-spacing:16.832922pt;}
.wse{word-spacing:17.119846pt;}
.ws81{word-spacing:17.268507pt;}
.ws39{word-spacing:17.268809pt;}
.ws28{word-spacing:17.380798pt;}
.ws14{word-spacing:17.640444pt;}
.ws12{word-spacing:17.672860pt;}
.ws11{word-spacing:17.688967pt;}
.ws84{word-spacing:17.746711pt;}
.wsdb{word-spacing:17.906113pt;}
.wsd3{word-spacing:17.959247pt;}
.ws50{word-spacing:18.171782pt;}
.ws52{word-spacing:18.181175pt;}
.ws22{word-spacing:18.543719pt;}
.ws11e{word-spacing:18.683019pt;}
.ws46{word-spacing:18.968790pt;}
.ws44{word-spacing:18.980533pt;}
.ws4f{word-spacing:19.128192pt;}
.ws5a{word-spacing:19.500129pt;}
.ws4d{word-spacing:19.594128pt;}
.ws86{word-spacing:20.509673pt;}
.wsd7{word-spacing:20.562806pt;}
.ws3f{word-spacing:20.615992pt;}
.ws70{word-spacing:21.041152pt;}
.ws2a{word-spacing:21.223597pt;}
.ws97{word-spacing:21.669862pt;}
.ws9f{word-spacing:22.528759pt;}
.ws57{word-spacing:22.900697pt;}
.ws7{word-spacing:23.561771pt;}
.ws54{word-spacing:24.715790pt;}
.ws7a{word-spacing:25.679770pt;}
.ws69{word-spacing:26.157978pt;}
.ws37{word-spacing:28.532886pt;}
.ws13{word-spacing:31.852785pt;}
.ws45{word-spacing:32.264170pt;}
.ws5e{word-spacing:37.778179pt;}
.wse1{word-spacing:52.601333pt;}
.ws144{word-spacing:57.118907pt;}
.wse0{word-spacing:77.678652pt;}
.wsdf{word-spacing:79.168267pt;}
.wsde{word-spacing:127.837126pt;}
.ws12d{word-spacing:222.570933pt;}
.wsa6{word-spacing:239.056588pt;}
.wsb9{word-spacing:402.636559pt;}
._16{margin-left:-6.858336pt;}
._1{margin-left:-5.844747pt;}
._4{margin-left:-4.399514pt;}
._0{margin-left:-3.188040pt;}
._2{margin-left:-1.859685pt;}
._3{margin-left:-0.967068pt;}
._8{width:0.934671pt;}
._7{width:2.656693pt;}
._c{width:4.356034pt;}
._2f{width:5.252607pt;}
._10{width:10.081911pt;}
._d{width:11.014308pt;}
._12{width:13.261363pt;}
._11{width:15.223444pt;}
._9{width:17.454592pt;}
._f{width:18.880545pt;}
._35{width:19.925200pt;}
._40{width:21.997421pt;}
._38{width:23.375962pt;}
._6{width:26.262067pt;}
._17{width:29.755040pt;}
._b{width:31.880320pt;}
._a{width:32.889863pt;}
._5{width:34.324478pt;}
._2c{width:53.133867pt;}
._36{width:55.206334pt;}
._13{width:62.005994pt;}
._18{width:65.886755pt;}
._e{width:68.747468pt;}
._2a{width:71.783467pt;}
._1a{width:79.166400pt;}
._25{width:85.068800pt;}
._2e{width:86.357969pt;}
._26{width:90.956785pt;}
._2d{width:94.777236pt;}
._30{width:97.713001pt;}
._1e{width:104.252785pt;}
._37{width:107.610815pt;}
._32{width:111.629813pt;}
._33{width:124.925707pt;}
._19{width:141.119679pt;}
._3b{width:159.251600pt;}
._3e{width:162.930000pt;}
._34{width:172.832975pt;}
._31{width:178.764982pt;}
._15{width:184.719496pt;}
._27{width:187.458118pt;}
._3c{width:189.496933pt;}
._22{width:196.115733pt;}
._24{width:223.191467pt;}
._1b{width:236.393067pt;}
._1d{width:242.370133pt;}
._23{width:248.237828pt;}
._3d{width:258.882933pt;}
._29{width:261.523162pt;}
._1f{width:265.687452pt;}
._28{width:267.576214pt;}
._3a{width:285.449867pt;}
._1c{width:288.511437pt;}
._14{width:320.323232pt;}
._39{width:348.199467pt;}
._20{width:390.082118pt;}
._21{width:433.623452pt;}
._3f{width:643.241406pt;}
._2b{width:665.978434pt;}
.fs6{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs9{font-size:34.005867pt;}
.fs4{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs8{font-size:91.815467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:46.833333pt;}
.y117{bottom:97.592000pt;}
.y119{bottom:97.793333pt;}
.yc6{bottom:98.030667pt;}
.y34{bottom:100.740000pt;}
.y5f{bottom:100.860000pt;}
.ya4{bottom:103.041333pt;}
.y111{bottom:104.725333pt;}
.y110{bottom:108.710667pt;}
.y33{bottom:112.696000pt;}
.y113{bottom:113.466667pt;}
.y8b{bottom:113.892000pt;}
.y5e{bottom:114.142667pt;}
.y114{bottom:116.256000pt;}
.y10f{bottom:116.681333pt;}
.yf3{bottom:118.274667pt;}
.yc5{bottom:120.233333pt;}
.y32{bottom:122.260000pt;}
.y30{bottom:124.650667pt;}
.y10a{bottom:125.316000pt;}
.y116{bottom:126.085333pt;}
.y31{bottom:126.165333pt;}
.y8a{bottom:127.042667pt;}
.y5d{bottom:127.426667pt;}
.y115{bottom:130.070667pt;}
.y118{bottom:130.225333pt;}
.yf2{bottom:135.809333pt;}
.y89{bottom:140.193333pt;}
.y2f{bottom:140.356000pt;}
.y10e{bottom:140.592000pt;}
.y5c{bottom:140.710667pt;}
.y10d{bottom:144.576000pt;}
.y10c{bottom:148.561333pt;}
.y112{bottom:149.666667pt;}
.yc4{bottom:150.680000pt;}
.y10b{bottom:152.546667pt;}
.y88{bottom:153.344000pt;}
.y5b{bottom:153.749333pt;}
.y128{bottom:158.612000pt;}
.y2e{bottom:163.801333pt;}
.y125{bottom:165.173333pt;}
.y87{bottom:166.494667pt;}
.y5a{bottom:167.033333pt;}
.yc3{bottom:168.213333pt;}
.yf1{bottom:170.877333pt;}
.y124{bottom:174.285333pt;}
.y86{bottom:179.645333pt;}
.y2d{bottom:179.742667pt;}
.y59{bottom:180.317333pt;}
.y109{bottom:181.989333pt;}
.yc2{bottom:185.748000pt;}
.y127{bottom:186.905333pt;}
.y165{bottom:188.412000pt;}
.y126{bottom:191.045333pt;}
.y1a5{bottom:191.934667pt;}
.yf0{bottom:192.589333pt;}
.y58{bottom:193.356000pt;}
.y2c{bottom:195.682667pt;}
.y108{bottom:199.524000pt;}
.yc1{bottom:203.282667pt;}
.y164{bottom:205.946667pt;}
.y57{bottom:206.640000pt;}
.y85{bottom:207.312000pt;}
.y1a4{bottom:209.469333pt;}
.y2b{bottom:211.622667pt;}
.y107{bottom:217.058667pt;}
.yef{bottom:219.048000pt;}
.y56{bottom:219.924000pt;}
.yc0{bottom:220.817333pt;}
.y163{bottom:223.481333pt;}
.y84{bottom:224.846667pt;}
.y123{bottom:226.728000pt;}
.y1a3{bottom:227.002667pt;}
.y2a{bottom:227.562667pt;}
.y55{bottom:233.206667pt;}
.y106{bottom:234.593333pt;}
.yee{bottom:236.581333pt;}
.ybf{bottom:238.350667pt;}
.y162{bottom:241.014667pt;}
.y83{bottom:242.381333pt;}
.y29{bottom:243.502667pt;}
.y122{bottom:244.261333pt;}
.y1a2{bottom:244.537333pt;}
.y54{bottom:250.430667pt;}
.y105{bottom:252.126667pt;}
.yed{bottom:254.116000pt;}
.y28{bottom:259.442667pt;}
.y82{bottom:259.916000pt;}
.y1a1{bottom:262.072000pt;}
.y161{bottom:263.090667pt;}
.y121{bottom:263.494667pt;}
.y188{bottom:265.338667pt;}
.y104{bottom:269.661333pt;}
.ybd{bottom:272.356000pt;}
.y53{bottom:273.874667pt;}
.yec{bottom:275.828000pt;}
.y81{bottom:277.450667pt;}
.ya3{bottom:278.872000pt;}
.y1a0{bottom:279.606667pt;}
.y27{bottom:279.837333pt;}
.y160{bottom:280.624000pt;}
.ybe{bottom:281.028000pt;}
.y120{bottom:281.029333pt;}
.yb9{bottom:287.090667pt;}
.y103{bottom:287.196000pt;}
.y52{bottom:289.814667pt;}
.ybc{bottom:293.684000pt;}
.y11f{bottom:293.982667pt;}
.yb8{bottom:294.084000pt;}
.y80{bottom:294.984000pt;}
.y187{bottom:295.530667pt;}
.ya2{bottom:296.406667pt;}
.y19f{bottom:297.140000pt;}
.y15f{bottom:298.158667pt;}
.y11e{bottom:298.564000pt;}
.yba{bottom:299.096000pt;}
.yeb{bottom:302.285333pt;}
.y102{bottom:304.730667pt;}
.y26{bottom:305.397333pt;}
.y51{bottom:305.756000pt;}
.y15e{bottom:307.128000pt;}
.ybb{bottom:307.768000pt;}
.y7f{bottom:312.750667pt;}
.y186{bottom:313.065333pt;}
.y15d{bottom:314.121333pt;}
.y19e{bottom:314.674667pt;}
.ya1{bottom:317.162667pt;}
.yea{bottom:319.820000pt;}
.y25{bottom:321.337333pt;}
.y11d{bottom:321.358667pt;}
.y50{bottom:321.696000pt;}
.y101{bottom:322.264000pt;}
.y7e{bottom:330.285333pt;}
.y11c{bottom:330.470667pt;}
.y185{bottom:331.033333pt;}
.y19d{bottom:332.209333pt;}
.ya0{bottom:334.697333pt;}
.y24{bottom:337.277333pt;}
.ye9{bottom:337.354667pt;}
.y4f{bottom:337.636000pt;}
.yb7{bottom:338.052000pt;}
.y100{bottom:340.936000pt;}
.y15c{bottom:345.800000pt;}
.y7d{bottom:347.820000pt;}
.y184{bottom:348.568000pt;}
.y19c{bottom:349.744000pt;}
.y23{bottom:353.217333pt;}
.ye8{bottom:354.888000pt;}
.y9f{bottom:355.453333pt;}
.y11b{bottom:356.970667pt;}
.y4e{bottom:357.516000pt;}
.yff{bottom:358.469333pt;}
.y15b{bottom:363.334667pt;}
.yb6{bottom:363.910667pt;}
.y7c{bottom:365.354667pt;}
.y183{bottom:366.102667pt;}
.y19b{bottom:367.277333pt;}
.y22{bottom:369.157333pt;}
.ye7{bottom:372.422667pt;}
.y9e{bottom:372.988000pt;}
.y15a{bottom:380.869333pt;}
.y4d{bottom:380.960000pt;}
.yb5{bottom:381.445333pt;}
.y7b{bottom:382.889333pt;}
.y182{bottom:383.636000pt;}
.y19a{bottom:384.812000pt;}
.y21{bottom:385.097333pt;}
.ye6{bottom:389.957333pt;}
.y9d{bottom:393.744000pt;}
.y4c{bottom:396.900000pt;}
.y159{bottom:398.402667pt;}
.yb4{bottom:398.978667pt;}
.y7a{bottom:400.422667pt;}
.y20{bottom:401.038667pt;}
.y181{bottom:401.170667pt;}
.y199{bottom:402.346667pt;}
.yfe{bottom:404.448000pt;}
.y11a{bottom:404.449333pt;}
.ye5{bottom:407.492000pt;}
.y9c{bottom:411.278667pt;}
.y4b{bottom:412.597333pt;}
.y1f{bottom:414.693333pt;}
.y158{bottom:415.937333pt;}
.yb3{bottom:416.513333pt;}
.y79{bottom:417.957333pt;}
.y1e{bottom:418.678667pt;}
.y180{bottom:419.138667pt;}
.y198{bottom:419.881333pt;}
.y4a{bottom:428.537333pt;}
.y9b{bottom:428.812000pt;}
.ye4{bottom:429.202667pt;}
.yb2{bottom:434.048000pt;}
.y78{bottom:435.492000pt;}
.y17f{bottom:436.673333pt;}
.y1d{bottom:436.830667pt;}
.y197{bottom:441.600000pt;}
.y155{bottom:442.044000pt;}
.y157{bottom:442.245333pt;}
.y49{bottom:444.477333pt;}
.y9a{bottom:449.569333pt;}
.y1c{bottom:452.770667pt;}
.y77{bottom:453.026667pt;}
.y17e{bottom:454.208000pt;}
.ye3{bottom:455.661333pt;}
.y152{bottom:457.918667pt;}
.y48{bottom:460.417333pt;}
.y99{bottom:467.102667pt;}
.y196{bottom:468.100000pt;}
.y1b{bottom:468.710667pt;}
.y154{bottom:470.537333pt;}
.y76{bottom:470.560000pt;}
.y17d{bottom:471.742667pt;}
.ye2{bottom:473.196000pt;}
.y153{bottom:474.522667pt;}
.y156{bottom:474.677333pt;}
.y47{bottom:476.357333pt;}
.yb1{bottom:481.153333pt;}
.y195{bottom:485.634667pt;}
.y75{bottom:488.094667pt;}
.y1a{bottom:489.105333pt;}
.y17c{bottom:489.277333pt;}
.y98{bottom:489.758667pt;}
.ye1{bottom:490.729333pt;}
.y46{bottom:492.298667pt;}
.y151{bottom:499.329333pt;}
.y74{bottom:505.629333pt;}
.y17b{bottom:506.810667pt;}
.y45{bottom:508.238667pt;}
.ye0{bottom:508.264000pt;}
.y19{bottom:509.690667pt;}
.y97{bottom:518.534667pt;}
.y44{bottom:524.178667pt;}
.y14d{bottom:525.436000pt;}
.y14f{bottom:525.637333pt;}
.ydf{bottom:525.798667pt;}
.y194{bottom:528.582667pt;}
.y73{bottom:528.742667pt;}
.y17a{bottom:533.792000pt;}
.y18{bottom:535.250667pt;}
.y96{bottom:536.069333pt;}
.y43{bottom:540.118667pt;}
.y14a{bottom:541.309333pt;}
.y179{bottom:542.904000pt;}
.yde{bottom:543.333333pt;}
.y193{bottom:547.386667pt;}
.y17{bottom:551.190667pt;}
.y95{bottom:553.604000pt;}
.y14c{bottom:553.929333pt;}
.y42{bottom:556.058667pt;}
.y14b{bottom:557.914667pt;}
.y14e{bottom:558.069333pt;}
.y72{bottom:560.913333pt;}
.y150{bottom:564.422667pt;}
.y16{bottom:567.130667pt;}
.y94{bottom:571.137333pt;}
.y41{bottom:571.998667pt;}
.y147{bottom:572.172000pt;}
.y149{bottom:572.373333pt;}
.ydd{bottom:575.472000pt;}
.y71{bottom:575.525333pt;}
.y178{bottom:578.437333pt;}
.y143{bottom:578.934667pt;}
.y15{bottom:583.070667pt;}
.y40{bottom:587.940000pt;}
.y144{bottom:588.045333pt;}
.y93{bottom:588.672000pt;}
.y70{bottom:590.369333pt;}
.y177{bottom:595.972000pt;}
.y142{bottom:597.032000pt;}
.y14{bottom:599.010667pt;}
.y146{bottom:600.665333pt;}
.y145{bottom:604.650667pt;}
.y148{bottom:604.805333pt;}
.y6f{bottom:604.981333pt;}
.y92{bottom:606.206667pt;}
.ydc{bottom:607.618667pt;}
.y3f{bottom:607.820000pt;}
.y176{bottom:613.506667pt;}
.y13{bottom:614.952000pt;}
.y6e{bottom:619.593333pt;}
.y91{bottom:623.741333pt;}
.ydb{bottom:625.153333pt;}
.y141{bottom:629.974667pt;}
.y12{bottom:630.892000pt;}
.y175{bottom:631.040000pt;}
.y3e{bottom:631.264000pt;}
.y6d{bottom:634.205333pt;}
.y90{bottom:641.274667pt;}
.yda{bottom:642.686667pt;}
.y11{bottom:646.832000pt;}
.y3d{bottom:647.204000pt;}
.y174{bottom:648.574667pt;}
.y6c{bottom:648.817333pt;}
.yfd{bottom:654.560000pt;}
.yd9{bottom:660.214667pt;}
.y3c{bottom:663.144000pt;}
.y6b{bottom:663.429333pt;}
.y8f{bottom:663.930667pt;}
.y10{bottom:666.541333pt;}
.y140{bottom:666.662667pt;}
.yfc{bottom:671.032000pt;}
.yd8{bottom:677.749333pt;}
.y6a{bottom:678.041333pt;}
.y3b{bottom:679.084000pt;}
.yf{bottom:679.825333pt;}
.y173{bottom:683.253333pt;}
.y8e{bottom:687.256000pt;}
.yfb{bottom:687.502667pt;}
.yb0{bottom:691.309333pt;}
.y69{bottom:692.653333pt;}
.ye{bottom:693.185333pt;}
.y3a{bottom:695.025333pt;}
.yd7{bottom:695.740000pt;}
.y13f{bottom:698.808000pt;}
.y172{bottom:699.725333pt;}
.yaf{bottom:703.412000pt;}
.yfa{bottom:703.974667pt;}
.yd6{bottom:704.852000pt;}
.yd{bottom:706.469333pt;}
.y68{bottom:707.265333pt;}
.y39{bottom:710.965333pt;}
.y8d{bottom:716.032000pt;}
.y171{bottom:716.197333pt;}
.yc{bottom:719.752000pt;}
.yf9{bottom:720.446667pt;}
.y67{bottom:721.876000pt;}
.y13e{bottom:725.801333pt;}
.y38{bottom:726.905333pt;}
.yf8{bottom:728.416000pt;}
.y138{bottom:729.898667pt;}
.y170{bottom:732.137333pt;}
.yb{bottom:733.036000pt;}
.y8c{bottom:733.566667pt;}
.y66{bottom:736.488000pt;}
.y139{bottom:736.892000pt;}
.yae{bottom:738.729333pt;}
.y13b{bottom:738.765333pt;}
.y137{bottom:743.701333pt;}
.yd5{bottom:743.918667pt;}
.y13d{bottom:745.726667pt;}
.ya{bottom:746.320000pt;}
.y37{bottom:746.785333pt;}
.y16f{bottom:748.077333pt;}
.y13c{bottom:749.940000pt;}
.y65{bottom:751.100000pt;}
.y13a{bottom:755.502667pt;}
.y9{bottom:759.602667pt;}
.yf7{bottom:762.156000pt;}
.y16e{bottom:764.017333pt;}
.yd4{bottom:770.220000pt;}
.y36{bottom:770.229333pt;}
.yad{bottom:771.830667pt;}
.y8{bottom:772.886667pt;}
.y136{bottom:773.442667pt;}
.yf6{bottom:774.112000pt;}
.yac{bottom:783.934667pt;}
.y35{bottom:786.169333pt;}
.y7{bottom:786.170667pt;}
.yd3{bottom:787.754667pt;}
.y16d{bottom:789.788000pt;}
.y192{bottom:795.124000pt;}
.y16c{bottom:801.742667pt;}
.y134{bottom:804.298667pt;}
.yd2{bottom:805.289333pt;}
.yf5{bottom:805.901333pt;}
.y133{bottom:811.292000pt;}
.y191{bottom:813.456000pt;}
.yab{bottom:821.974667pt;}
.y135{bottom:822.052000pt;}
.y190{bottom:831.786667pt;}
.y6{bottom:832.602667pt;}
.y16b{bottom:835.265333pt;}
.y64{bottom:836.969333pt;}
.yd1{bottom:837.428000pt;}
.y132{bottom:842.046667pt;}
.y5{bottom:849.041333pt;}
.y18f{bottom:850.649333pt;}
.y16a{bottom:852.800000pt;}
.yaa{bottom:854.454667pt;}
.y63{bottom:855.052000pt;}
.y131{bottom:859.581333pt;}
.y4{bottom:865.478667pt;}
.ya9{bottom:865.862667pt;}
.y18e{bottom:868.980000pt;}
.yd0{bottom:869.574667pt;}
.y169{bottom:870.334667pt;}
.y62{bottom:873.350667pt;}
.y130{bottom:877.116000pt;}
.y3{bottom:882.114667pt;}
.ycf{bottom:887.101333pt;}
.y18d{bottom:887.310667pt;}
.y168{bottom:887.869333pt;}
.ycd{bottom:894.550667pt;}
.y12f{bottom:894.649333pt;}
.yce{bottom:903.221333pt;}
.y167{bottom:905.402667pt;}
.y18c{bottom:906.173333pt;}
.ycc{bottom:915.877333pt;}
.yc9{bottom:916.277333pt;}
.y61{bottom:918.382667pt;}
.y12c{bottom:919.649333pt;}
.y12e{bottom:919.850667pt;}
.yca{bottom:921.289333pt;}
.y18b{bottom:922.113333pt;}
.y2{bottom:923.957333pt;}
.ya8{bottom:924.849333pt;}
.y166{bottom:929.726667pt;}
.ycb{bottom:929.961333pt;}
.y129{bottom:935.524000pt;}
.y18a{bottom:938.054667pt;}
.ya7{bottom:942.384000pt;}
.y12b{bottom:948.142667pt;}
.yc7{bottom:951.253333pt;}
.y12a{bottom:952.128000pt;}
.y12d{bottom:952.282667pt;}
.yc8{bottom:958.705333pt;}
.y60{bottom:959.296000pt;}
.ya6{bottom:959.918667pt;}
.y1{bottom:961.152000pt;}
.y189{bottom:965.497333pt;}
.ya5{bottom:977.453333pt;}
.h3c{height:1.822486pt;}
.h2f{height:2.656693pt;}
.h21{height:4.584145pt;}
.h1f{height:14.850916pt;}
.h3d{height:18.145215pt;}
.h1a{height:20.791222pt;}
.hd{height:21.933807pt;}
.h25{height:24.289889pt;}
.h29{height:25.589197pt;}
.h22{height:26.556230pt;}
.h20{height:27.895200pt;}
.he{height:29.244954pt;}
.h10{height:32.900710pt;}
.h12{height:33.044173pt;}
.h5{height:33.187635pt;}
.h4{height:33.426739pt;}
.h8{height:36.290431pt;}
.h3{height:36.556100pt;}
.h45{height:36.715502pt;}
.h6{height:36.874903pt;}
.h15{height:38.043849pt;}
.h40{height:38.203360pt;}
.hf{height:38.807620pt;}
.hc{height:39.850400pt;}
.h2{height:40.211857pt;}
.h38{height:42.507360pt;}
.h7{height:44.869197pt;}
.h13{height:44.874530pt;}
.h42{height:45.691360pt;}
.h41{height:45.696693pt;}
.h14{height:47.175200pt;}
.h33{height:48.812533pt;}
.h37{height:53.279733pt;}
.h39{height:53.793564pt;}
.h27{height:54.097889pt;}
.h34{height:54.881434pt;}
.h1c{height:55.132533pt;}
.h2c{height:58.582897pt;}
.h36{height:59.921867pt;}
.h9{height:61.106688pt;}
.h3b{height:61.517582pt;}
.ha{height:68.059229pt;}
.h2d{height:68.438767pt;}
.h46{height:72.502767pt;}
.h31{height:72.796100pt;}
.h32{height:74.491849pt;}
.h2a{height:75.797067pt;}
.h3f{height:76.265153pt;}
.h23{height:76.276288pt;}
.h2b{height:76.298400pt;}
.hb{height:77.048021pt;}
.h3a{height:81.766897pt;}
.h17{height:82.188100pt;}
.h24{height:83.073434pt;}
.h44{height:83.105867pt;}
.h18{height:87.079200pt;}
.h1b{height:87.084533pt;}
.h1{height:87.734861pt;}
.h28{height:89.890811pt;}
.h1e{height:89.896145pt;}
.h3e{height:90.059360pt;}
.h16{height:93.515360pt;}
.h11{height:97.553685pt;}
.h30{height:109.456693pt;}
.h26{height:109.944145pt;}
.h43{height:112.239733pt;}
.h35{height:115.973067pt;}
.h19{height:135.495200pt;}
.h1d{height:137.917478pt;}
.h2e{height:159.403360pt;}
.h0{height:1056.000000pt;}
.h47{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:65.285333pt;}
.x5c{left:70.728000pt;}
.x43{left:73.786667pt;}
.xc{left:75.912000pt;}
.x46{left:77.441333pt;}
.x7{left:78.569333pt;}
.x22{left:82.665333pt;}
.x1{left:84.798667pt;}
.x26{left:87.416000pt;}
.x64{left:89.877333pt;}
.x63{left:91.249333pt;}
.x15{left:98.985333pt;}
.x44{left:100.081333pt;}
.x9{left:101.046667pt;}
.x89{left:104.125333pt;}
.x5d{left:112.845333pt;}
.x8a{left:115.562667pt;}
.x47{left:116.864000pt;}
.x65{left:118.913333pt;}
.x6e{left:120.352000pt;}
.x48{left:128.672000pt;}
.x66{left:131.685333pt;}
.x49{left:136.605333pt;}
.x6c{left:140.309333pt;}
.x45{left:144.280000pt;}
.x23{left:145.324000pt;}
.x1d{left:147.592000pt;}
.x1f{left:148.490667pt;}
.x4a{left:150.221333pt;}
.x27{left:153.229333pt;}
.x6f{left:154.201333pt;}
.x67{left:159.512000pt;}
.x2{left:161.406667pt;}
.x5e{left:163.113333pt;}
.x68{left:168.264000pt;}
.x84{left:170.701333pt;}
.x4b{left:173.616000pt;}
.x24{left:175.802667pt;}
.x69{left:177.401333pt;}
.x18{left:180.826667pt;}
.x20{left:183.544000pt;}
.x6d{left:184.821333pt;}
.x2f{left:190.826667pt;}
.x4c{left:195.017333pt;}
.x28{left:195.985333pt;}
.x8d{left:198.745333pt;}
.x6a{left:201.118667pt;}
.x25{left:203.328000pt;}
.x56{left:208.954667pt;}
.x70{left:209.894667pt;}
.x57{left:210.948000pt;}
.x1e{left:214.753333pt;}
.x5f{left:216.305333pt;}
.x77{left:219.185333pt;}
.xa{left:222.014667pt;}
.x8b{left:223.245333pt;}
.x75{left:224.668000pt;}
.x2a{left:225.604000pt;}
.x72{left:230.306667pt;}
.x2b{left:231.618667pt;}
.x59{left:234.342667pt;}
.x5a{left:235.332000pt;}
.x58{left:236.224000pt;}
.x74{left:239.806667pt;}
.x21{left:241.548000pt;}
.x29{left:244.212000pt;}
.x6{left:249.004000pt;}
.x5b{left:255.744000pt;}
.x2c{left:256.925333pt;}
.xb{left:262.089333pt;}
.x5{left:263.464000pt;}
.x17{left:265.204000pt;}
.x60{left:266.573333pt;}
.x85{left:271.034667pt;}
.x78{left:278.158667pt;}
.x2d{left:279.845333pt;}
.x76{left:286.752000pt;}
.x61{left:287.648000pt;}
.x4d{left:293.064000pt;}
.x42{left:299.490667pt;}
.x6b{left:300.522667pt;}
.x16{left:303.752000pt;}
.x71{left:307.798667pt;}
.x40{left:318.809333pt;}
.x8c{left:323.852000pt;}
.x62{left:326.172000pt;}
.x79{left:335.036000pt;}
.x4{left:337.193333pt;}
.xd{left:341.762667pt;}
.xe{left:345.924000pt;}
.xf{left:350.645333pt;}
.x3{left:369.570667pt;}
.x2e{left:374.744000pt;}
.x73{left:377.900000pt;}
.x86{left:378.926667pt;}
.x7a{left:384.538667pt;}
.x41{left:387.745333pt;}
.x3f{left:404.678667pt;}
.x10{left:415.970667pt;}
.x55{left:420.620000pt;}
.x81{left:424.113333pt;}
.x1b{left:425.920000pt;}
.x11{left:429.253333pt;}
.x1a{left:433.305333pt;}
.x80{left:436.982667pt;}
.x19{left:446.172000pt;}
.x3d{left:453.064000pt;}
.x54{left:455.528000pt;}
.x31{left:461.732000pt;}
.x3e{left:469.849333pt;}
.x3c{left:477.620000pt;}
.x32{left:480.518667pt;}
.x7b{left:483.418667pt;}
.x30{left:484.550667pt;}
.x87{left:486.817333pt;}
.x4e{left:490.150667pt;}
.x82{left:495.184000pt;}
.x7d{left:502.748000pt;}
.x12{left:504.525333pt;}
.x33{left:505.825333pt;}
.x3b{left:511.520000pt;}
.x50{left:518.874667pt;}
.x3a{left:520.193333pt;}
.x34{left:528.745333pt;}
.x13{left:532.321333pt;}
.x83{left:535.681333pt;}
.x4f{left:536.858667pt;}
.x14{left:538.650667pt;}
.x51{left:544.513333pt;}
.x35{left:550.141333pt;}
.x52{left:554.962667pt;}
.x36{left:556.156000pt;}
.x7c{left:561.318667pt;}
.x1c{left:565.361333pt;}
.x37{left:581.462667pt;}
.x53{left:583.189333pt;}
.x88{left:602.269333pt;}
.x38{left:604.382667pt;}
.x7e{left:626.400000pt;}
.x7f{left:692.005333pt;}
.x39{left:739.285333pt;}
}




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