
    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_28d01d6722a91021e1be0472.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_39bc94cbee6de05cbf794b2b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dea39045554aacce557a651e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a2afd36a9738ef22c5451d3f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_79f7b914d1b4f94e8697bda9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.873000;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_328e134bbea9242e8cc2e480.woff')format("woff");}.ff6{font-family:ff6;line-height:0.628000;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_90ac084e72161692130d14d9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.451000;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_c93fa06fbe8b2271556e105d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e73fcad92ce9b62f09dd04f7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4e259cc5774bd4dab1574f15.woff')format("woff");}.ffa{font-family:ffa;line-height:0.924000;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_ef8dee649e99ca3f4b751aa5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.907000;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_f4a0e92c09242282eb9859ce.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_61389791056699c97efde9a1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_8541b8dda0a77c71678a2d90.woff')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_7f9f9f67a9e6072d1395097a.woff')format("woff");}.fff{font-family:fff;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7cd3c2438d09d0da95477d4c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.685000;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_f3984fe53bd8efd9901a9d31.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5e5ad85483971037b2f23fab.woff')format("woff");}.ff12{font-family:ff12;line-height:0.690000;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_952dfe422b9fa8cb3e31b681.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666000;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_cad1f139a768a7f6488c176f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.701190;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_921c21870ac9b24c0e5a2b73.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_24bd23c8e11a8d8d6be0158f.woff')format("woff");}.ff16{font-family:ff16;line-height:0.967773;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_6b297db7962f49c5b0d23d37.woff')format("woff");}.ff17{font-family:ff17;line-height:0.874512;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;}
.ff18{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff19;src:url('chunks/assets/font_df1b4be452ec2a904fcc337b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{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(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);}
.m2{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);}
.v27{vertical-align:-84.238800px;}
.v13{vertical-align:-48.239040px;}
.v21{vertical-align:-43.919520px;}
.v1d{vertical-align:-23.758560px;}
.v2d{vertical-align:-22.319520px;}
.vf{vertical-align:-14.400000px;}
.v8{vertical-align:-8.641380px;}
.v2b{vertical-align:-3.147654px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:6.478140px;}
.v7{vertical-align:7.919580px;}
.v2c{vertical-align:12.239040px;}
.ve{vertical-align:15.119520px;}
.v1{vertical-align:16.560960px;}
.v2{vertical-align:21.600000px;}
.v1b{vertical-align:23.760960px;}
.v3{vertical-align:25.200000px;}
.v2a{vertical-align:26.639040px;}
.vb{vertical-align:28.080240px;}
.v2e{vertical-align:30.239040px;}
.v1e{vertical-align:33.121860px;}
.vd{vertical-align:35.280960px;}
.v5{vertical-align:36.721680px;}
.va{vertical-align:38.160960px;}
.v1a{vertical-align:39.600000px;}
.v25{vertical-align:41.039040px;}
.v29{vertical-align:43.919520px;}
.v14{vertical-align:45.358380px;}
.v22{vertical-align:46.800300px;}
.v16{vertical-align:48.239040px;}
.v9{vertical-align:51.839100px;}
.v15{vertical-align:53.999760px;}
.v23{vertical-align:55.441680px;}
.v6{vertical-align:58.321680px;}
.v19{vertical-align:63.360960px;}
.v28{vertical-align:65.519520px;}
.v11{vertical-align:66.958800px;}
.v1c{vertical-align:71.999880px;}
.v18{vertical-align:79.200240px;}
.v10{vertical-align:81.358800px;}
.v4{vertical-align:84.241200px;}
.v26{vertical-align:92.880600px;}
.v1f{vertical-align:95.760960px;}
.v20{vertical-align:99.361200px;}
.v12{vertical-align:102.238800px;}
.vc{vertical-align:119.519760px;}
.v24{vertical-align:125.280600px;}
.ls18{letter-spacing:0.000000px;}
.lsb1{letter-spacing:0.001732px;}
.lsc7{letter-spacing:0.002827px;}
.ls3d{letter-spacing:0.003052px;}
.ls3e{letter-spacing:0.005392px;}
.lsb6{letter-spacing:0.057497px;}
.ls8a{letter-spacing:0.065690px;}
.ls60{letter-spacing:0.079140px;}
.lsc4{letter-spacing:0.114995px;}
.lsa0{letter-spacing:0.127736px;}
.lsaa{letter-spacing:0.130076px;}
.ls21{letter-spacing:0.171792px;}
.ls9e{letter-spacing:0.229358px;}
.ls2e{letter-spacing:0.271917px;}
.ls78{letter-spacing:0.274257px;}
.lscc{letter-spacing:0.282374px;}
.ls93{letter-spacing:0.284454px;}
.lsd0{letter-spacing:0.284714px;}
.ls6b{letter-spacing:0.286794px;}
.ls62{letter-spacing:0.288474px;}
.ls1e{letter-spacing:0.289134px;}
.ls29{letter-spacing:0.291474px;}
.ls22{letter-spacing:0.293814px;}
.ls19{letter-spacing:0.333251px;}
.ls6a{letter-spacing:0.344360px;}
.ls56{letter-spacing:0.346700px;}
.ls49{letter-spacing:0.349040px;}
.ls7c{letter-spacing:0.351120px;}
.ls5a{letter-spacing:0.351380px;}
.ls5{letter-spacing:0.352080px;}
.ls25{letter-spacing:0.354172px;}
.ls61{letter-spacing:0.428825px;}
.lscb{letter-spacing:0.525711px;}
.lsc6{letter-spacing:0.528051px;}
.ls77{letter-spacing:0.565594px;}
.ls52{letter-spacing:0.567934px;}
.ls82{letter-spacing:0.700805px;}
.ls6f{letter-spacing:0.703145px;}
.ls28{letter-spacing:1.121576px;}
.ls34{letter-spacing:1.682560px;}
.ls1c{letter-spacing:1.684900px;}
.ls66{letter-spacing:1.687240px;}
.ls33{letter-spacing:1.927771px;}
.lsc2{letter-spacing:2.048105px;}
.ls5f{letter-spacing:2.071940px;}
.ls31{letter-spacing:2.110796px;}
.ls79{letter-spacing:2.113136px;}
.ls76{letter-spacing:2.124968px;}
.ls8b{letter-spacing:2.139251px;}
.lsb9{letter-spacing:2.139975px;}
.lsd2{letter-spacing:2.216117px;}
.lsb4{letter-spacing:2.346127px;}
.lsba{letter-spacing:2.348467px;}
.ls53{letter-spacing:2.507660px;}
.lsc{letter-spacing:2.791460px;}
.lsb{letter-spacing:2.793800px;}
.ls2f{letter-spacing:2.830316px;}
.ls32{letter-spacing:2.832656px;}
.ls4{letter-spacing:2.842294px;}
.ls7d{letter-spacing:2.858771px;}
.lsce{letter-spacing:2.937977px;}
.ls15{letter-spacing:3.513380px;}
.ls5b{letter-spacing:3.549896px;}
.ls4a{letter-spacing:3.552236px;}
.ls89{letter-spacing:3.578291px;}
.ls98{letter-spacing:3.580631px;}
.lsb2{letter-spacing:3.652171px;}
.lsa7{letter-spacing:3.674590px;}
.ls9b{letter-spacing:3.676930px;}
.lsae{letter-spacing:3.679270px;}
.lsc9{letter-spacing:3.681610px;}
.ls67{letter-spacing:4.269416px;}
.ls59{letter-spacing:4.271756px;}
.ls9a{letter-spacing:4.297811px;}
.ls87{letter-spacing:4.300151px;}
.lsca{letter-spacing:6.430316px;}
.ls30{letter-spacing:6.769614px;}
.lsa9{letter-spacing:6.831600px;}
.lsa2{letter-spacing:7.124502px;}
.lscd{letter-spacing:7.206693px;}
.lsb7{letter-spacing:7.257497px;}
.ls3{letter-spacing:7.466856px;}
.lsb5{letter-spacing:7.926213px;}
.lsd1{letter-spacing:7.928553px;}
.lsa{letter-spacing:8.361795px;}
.ls10{letter-spacing:8.364135px;}
.ls17{letter-spacing:8.366475px;}
.ls14{letter-spacing:8.368815px;}
.ls69{letter-spacing:8.583736px;}
.ls26{letter-spacing:8.586076px;}
.ls2{letter-spacing:8.931945px;}
.ls1d{letter-spacing:9.305596px;}
.lsbb{letter-spacing:9.917594px;}
.ls6c{letter-spacing:9.926494px;}
.lsa4{letter-spacing:10.004982px;}
.ls40{letter-spacing:10.025116px;}
.ls7e{letter-spacing:10.027456px;}
.ls45{letter-spacing:10.030316px;}
.ls4f{letter-spacing:10.032656px;}
.ls5e{letter-spacing:10.061705px;}
.ls5c{letter-spacing:10.064045px;}
.lsf{letter-spacing:10.081132px;}
.ls72{letter-spacing:10.413731px;}
.ls3b{letter-spacing:10.752236px;}
.ls4b{letter-spacing:10.783625px;}
.ls9c{letter-spacing:11.133251px;}
.ls68{letter-spacing:12.806974px;}
.ls3f{letter-spacing:12.910796px;}
.ls8d{letter-spacing:12.939251px;}
.ls5d{letter-spacing:12.942185px;}
.ls20{letter-spacing:13.315132px;}
.ls57{letter-spacing:13.387515px;}
.ls83{letter-spacing:13.389725px;}
.ls6d{letter-spacing:13.526494px;}
.ls58{letter-spacing:13.664045px;}
.ls81{letter-spacing:14.034772px;}
.ls0{letter-spacing:14.186310px;}
.ls7a{letter-spacing:14.246014px;}
.ls1{letter-spacing:14.382013px;}
.lsb3{letter-spacing:15.724811px;}
.ls1f{letter-spacing:15.791276px;}
.lsac{letter-spacing:15.819731px;}
.lsd5{letter-spacing:15.842092px;}
.lsa8{letter-spacing:16.128234px;}
.lsa6{letter-spacing:16.130574px;}
.ls2b{letter-spacing:16.192972px;}
.ls47{letter-spacing:16.195372px;}
.ls84{letter-spacing:16.267995px;}
.lsb8{letter-spacing:16.269553px;}
.lse{letter-spacing:16.350251px;}
.ls46{letter-spacing:16.406974px;}
.ls27{letter-spacing:16.510796px;}
.lsbc{letter-spacing:16.522758px;}
.ls9f{letter-spacing:16.539251px;}
.ls43{letter-spacing:16.543560px;}
.ls42{letter-spacing:16.561612px;}
.ls24{letter-spacing:16.915372px;}
.ls73{letter-spacing:16.987515px;}
.ls9d{letter-spacing:16.989725px;}
.ls2d{letter-spacing:17.069771px;}
.ls7f{letter-spacing:17.126494px;}
.ls71{letter-spacing:17.230316px;}
.ls6e{letter-spacing:17.232656px;}
.lsd{letter-spacing:17.242278px;}
.lsc8{letter-spacing:17.708593px;}
.ls92{letter-spacing:17.949896px;}
.ls3a{letter-spacing:18.567934px;}
.lsaf{letter-spacing:18.630560px;}
.lsa1{letter-spacing:18.666556px;}
.ls91{letter-spacing:18.671756px;}
.ls9{letter-spacing:18.722092px;}
.ls4d{letter-spacing:19.066220px;}
.ls86{letter-spacing:19.073040px;}
.ls64{letter-spacing:19.391276px;}
.lsa5{letter-spacing:19.393616px;}
.ls96{letter-spacing:19.419731px;}
.ls8{letter-spacing:19.442092px;}
.ls44{letter-spacing:19.480644px;}
.ls95{letter-spacing:19.792560px;}
.ls7b{letter-spacing:19.867995px;}
.ls75{letter-spacing:20.085582px;}
.ls23{letter-spacing:20.110796px;}
.ls74{letter-spacing:20.113136px;}
.lsd3{letter-spacing:20.122758px;}
.ls8e{letter-spacing:20.139251px;}
.ls70{letter-spacing:20.142185px;}
.ls6{letter-spacing:20.162092px;}
.lsab{letter-spacing:20.515372px;}
.lsc5{letter-spacing:20.726494px;}
.ls2a{letter-spacing:20.830316px;}
.ls16{letter-spacing:20.882092px;}
.ls8c{letter-spacing:21.231600px;}
.ls85{letter-spacing:22.088731px;}
.ls1a{letter-spacing:22.608654px;}
.ls94{letter-spacing:22.991276px;}
.ls41{letter-spacing:23.330574px;}
.ls88{letter-spacing:23.606974px;}
.lsbd{letter-spacing:23.739251px;}
.lsd6{letter-spacing:24.053865px;}
.lscf{letter-spacing:24.189073px;}
.ls63{letter-spacing:24.326494px;}
.ls4e{letter-spacing:24.391460px;}
.ls65{letter-spacing:24.432656px;}
.ls99{letter-spacing:24.458771px;}
.ls90{letter-spacing:25.152236px;}
.ls13{letter-spacing:25.708691px;}
.lsad{letter-spacing:25.866556px;}
.ls7{letter-spacing:25.922092px;}
.ls51{letter-spacing:26.266220px;}
.ls4c{letter-spacing:26.517271px;}
.ls3c{letter-spacing:26.583029px;}
.ls54{letter-spacing:26.585369px;}
.ls12{letter-spacing:26.603238px;}
.ls11{letter-spacing:27.802935px;}
.ls8f{letter-spacing:28.752236px;}
.ls39{letter-spacing:29.950685px;}
.ls1b{letter-spacing:30.048720px;}
.ls50{letter-spacing:30.530574px;}
.lsb0{letter-spacing:31.402935px;}
.ls38{letter-spacing:32.403052px;}
.ls37{letter-spacing:33.473572px;}
.ls36{letter-spacing:39.169614px;}
.ls35{letter-spacing:39.544396px;}
.ls80{letter-spacing:42.834772px;}
.ls55{letter-spacing:44.591276px;}
.ls48{letter-spacing:45.310676px;}
.ls97{letter-spacing:45.313076px;}
.ls2c{letter-spacing:50.350076px;}
.lsc3{letter-spacing:68.350784px;}
.lsc1{letter-spacing:68.378279px;}
.lsbe{letter-spacing:190.763238px;}
.lsc0{letter-spacing:238.270784px;}
.lsd4{letter-spacing:238.271252px;}
.lsbf{letter-spacing:238.990784px;}
.lsa3{letter-spacing:307.073280px;}
.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;}
}
.ws2f{word-spacing:-38.914072px;}
.ws5b{word-spacing:-28.835088px;}
.ws68{word-spacing:-28.834969px;}
.ws97{word-spacing:-28.833594px;}
.ws6e{word-spacing:-22.646077px;}
.ws5a{word-spacing:-22.643685px;}
.ws117{word-spacing:-11.512512px;}
.wsb4{word-spacing:-9.393654px;}
.wscb{word-spacing:-7.235088px;}
.wsc{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.047821px;}
.ws94{word-spacing:-0.041843px;}
.ws3e{word-spacing:0.000000px;}
.ws16b{word-spacing:3.933967px;}
.ws168{word-spacing:6.567833px;}
.ws166{word-spacing:11.765126px;}
.ws111{word-spacing:12.531782px;}
.ws91{word-spacing:12.747198px;}
.wsea{word-spacing:13.255241px;}
.ws93{word-spacing:13.255352px;}
.ws85{word-spacing:13.255475px;}
.wsf7{word-spacing:13.466720px;}
.wsf8{word-spacing:13.563736px;}
.wsd6{word-spacing:13.718854px;}
.ws74{word-spacing:13.829559px;}
.wsd7{word-spacing:13.972842px;}
.wsd5{word-spacing:14.341180px;}
.ws7{word-spacing:14.476270px;}
.ws100{word-spacing:14.519372px;}
.wsf9{word-spacing:14.691347px;}
.ws5{word-spacing:14.712507px;}
.ws10f{word-spacing:14.728827px;}
.ws101{word-spacing:14.922441px;}
.wsfa{word-spacing:15.004393px;}
.ws40{word-spacing:15.070666px;}
.ws12e{word-spacing:15.158914px;}
.ws153{word-spacing:15.365543px;}
.ws9a{word-spacing:15.411885px;}
.ws12b{word-spacing:15.447332px;}
.ws102{word-spacing:15.475606px;}
.ws8{word-spacing:15.541619px;}
.ws118{word-spacing:15.643337px;}
.wsf3{word-spacing:15.724632px;}
.ws9b{word-spacing:15.724812px;}
.ws99{word-spacing:15.726151px;}
.ws2c{word-spacing:15.779746px;}
.ws2b{word-spacing:15.779806px;}
.ws44{word-spacing:15.880229px;}
.ws15{word-spacing:15.957878px;}
.ws11b{word-spacing:15.958416px;}
.ws3f{word-spacing:15.962766px;}
.ws12f{word-spacing:15.987586px;}
.ws41{word-spacing:15.989619px;}
.ws3c{word-spacing:16.077593px;}
.ws3b{word-spacing:16.084144px;}
.ws155{word-spacing:16.084192px;}
.ws159{word-spacing:16.084622px;}
.ws142{word-spacing:16.085101px;}
.ws164{word-spacing:16.086057px;}
.ws3d{word-spacing:16.086105px;}
.ws11c{word-spacing:16.095481px;}
.wsbe{word-spacing:16.132597px;}
.wsc1{word-spacing:16.132657px;}
.wsf2{word-spacing:16.132782px;}
.ws5f{word-spacing:16.133499px;}
.wsa5{word-spacing:16.133675px;}
.wsb1{word-spacing:16.134997px;}
.ws98{word-spacing:16.136075px;}
.ws158{word-spacing:16.260889px;}
.ws9{word-spacing:16.261320px;}
.ws69{word-spacing:16.290471px;}
.ws88{word-spacing:16.290530px;}
.ws5e{word-spacing:16.347198px;}
.ws22{word-spacing:16.444154px;}
.ws70{word-spacing:16.499746px;}
.ws35{word-spacing:16.500284px;}
.ws6a{word-spacing:16.501180px;}
.ws67{word-spacing:16.501212px;}
.ws2{word-spacing:16.654310px;}
.ws13{word-spacing:16.708603px;}
.wsf{word-spacing:16.709619px;}
.ws156{word-spacing:16.804171px;}
.ws13d{word-spacing:16.804180px;}
.ws13b{word-spacing:16.804610px;}
.ws146{word-spacing:16.805184px;}
.ws15a{word-spacing:16.805318px;}
.ws160{word-spacing:16.805567px;}
.ws141{word-spacing:16.805997px;}
.ws15c{word-spacing:16.806093px;}
.ws105{word-spacing:16.852548px;}
.ws61{word-spacing:16.855352px;}
.wsb2{word-spacing:16.855475px;}
.ws59{word-spacing:16.855889px;}
.wsa{word-spacing:16.858217px;}
.ws11d{word-spacing:16.914829px;}
.ws119{word-spacing:16.929175px;}
.ws34{word-spacing:17.066720px;}
.ws11e{word-spacing:17.084174px;}
.ws14c{word-spacing:17.092156px;}
.ws11{word-spacing:17.164573px;}
.wsd{word-spacing:17.165594px;}
.ws165{word-spacing:17.167617px;}
.ws104{word-spacing:17.312697px;}
.wsf4{word-spacing:17.319452px;}
.ws6b{word-spacing:17.320289px;}
.ws147{word-spacing:17.525555px;}
.ws145{word-spacing:17.525602px;}
.ws15b{word-spacing:17.666386px;}
.ws4{word-spacing:17.700817px;}
.ws26{word-spacing:17.708473px;}
.ws103{word-spacing:17.803337px;}
.ws106{word-spacing:17.803397px;}
.ws154{word-spacing:17.886696px;}
.ws25{word-spacing:17.940224px;}
.wsbc{word-spacing:18.039811px;}
.ws167{word-spacing:18.059185px;}
.ws23{word-spacing:18.118356px;}
.ws1c{word-spacing:18.148543px;}
.ws13a{word-spacing:18.245064px;}
.ws143{word-spacing:18.245160px;}
.wse6{word-spacing:18.327811px;}
.ws13c{word-spacing:18.387379px;}
.wsc4{word-spacing:18.523816px;}
.ws139{word-spacing:18.529310px;}
.ws144{word-spacing:18.530219px;}
.ws130{word-spacing:18.603736px;}
.wse5{word-spacing:18.604393px;}
.wse9{word-spacing:18.604692px;}
.ws76{word-spacing:18.605529px;}
.ws157{word-spacing:18.605775px;}
.ws2d{word-spacing:18.660224px;}
.ws57{word-spacing:18.660284px;}
.wsac{word-spacing:18.661240px;}
.wsc3{word-spacing:18.750575px;}
.ws132{word-spacing:18.758794px;}
.ws134{word-spacing:18.759392px;}
.ws55{word-spacing:18.759811px;}
.ws6c{word-spacing:18.760707px;}
.ws14d{word-spacing:18.778695px;}
.ws151{word-spacing:18.779173px;}
.ws42{word-spacing:18.838416px;}
.ws33{word-spacing:18.868184px;}
.ws7b{word-spacing:18.868543px;}
.ws10a{word-spacing:18.868662px;}
.ws137{word-spacing:18.869021px;}
.wsba{word-spacing:18.871499px;}
.wsc2{word-spacing:18.994969px;}
.ws90{word-spacing:19.149011px;}
.ws10e{word-spacing:19.205021px;}
.wsaa{word-spacing:19.226301px;}
.wsbb{word-spacing:19.227556px;}
.ws95{word-spacing:19.227676px;}
.ws14a{word-spacing:19.248868px;}
.ws16a{word-spacing:19.249824px;}
.ws84{word-spacing:19.323676px;}
.ws37{word-spacing:19.323796px;}
.wsa4{word-spacing:19.323964px;}
.ws7c{word-spacing:19.324035px;}
.ws87{word-spacing:19.324038px;}
.ws5c{word-spacing:19.324214px;}
.wsf5{word-spacing:19.325111px;}
.ws43{word-spacing:19.325529px;}
.ws149{word-spacing:19.326194px;}
.ws72{word-spacing:19.327048px;}
.ws2e{word-spacing:19.327547px;}
.wsf6{word-spacing:19.351250px;}
.wseb{word-spacing:19.380224px;}
.ws4c{word-spacing:19.380284px;}
.wsb9{word-spacing:19.478735px;}
.wsdb{word-spacing:19.479751px;}
.ws86{word-spacing:19.479812px;}
.ws46{word-spacing:19.480229px;}
.wsab{word-spacing:19.481233px;}
.ws150{word-spacing:19.498157px;}
.ws109{word-spacing:19.557878px;}
.wse8{word-spacing:19.587358px;}
.ws71{word-spacing:19.587421px;}
.ws6f{word-spacing:19.587586px;}
.ws24{word-spacing:19.587706px;}
.ws112{word-spacing:19.694226px;}
.wse7{word-spacing:19.731825px;}
.ws96{word-spacing:19.732782px;}
.ws129{word-spacing:19.732901px;}
.wsda{word-spacing:19.733260px;}
.ws127{word-spacing:19.733499px;}
.ws12c{word-spacing:19.767033px;}
.ws113{word-spacing:19.795366px;}
.wsd9{word-spacing:19.871131px;}
.ws45{word-spacing:19.947198px;}
.ws73{word-spacing:19.947676px;}
.wsb0{word-spacing:19.947835px;}
.ws114{word-spacing:19.962859px;}
.ws14e{word-spacing:19.977033px;}
.ws56{word-spacing:20.044154px;}
.wsd8{word-spacing:20.045589px;}
.ws6d{word-spacing:20.100702px;}
.wsdc{word-spacing:20.199751px;}
.wsa3{word-spacing:20.200633px;}
.wsf0{word-spacing:20.277519px;}
.ws2a{word-spacing:20.308603px;}
.ws152{word-spacing:20.404597px;}
.ws80{word-spacing:20.423492px;}
.wsbf{word-spacing:20.456289px;}
.wsfb{word-spacing:20.666720px;}
.wsd3{word-spacing:20.765589px;}
.ws38{word-spacing:20.819208px;}
.ws3a{word-spacing:20.819387px;}
.ws75{word-spacing:20.819746px;}
.ws17{word-spacing:20.821300px;}
.wsc8{word-spacing:20.910784px;}
.ws7e{word-spacing:20.919273px;}
.ws16{word-spacing:20.919691px;}
.wsb8{word-spacing:20.920289px;}
.ws39{word-spacing:21.028543px;}
.ws107{word-spacing:21.065783px;}
.ws14b{word-spacing:21.124155px;}
.ws13e{word-spacing:21.125542px;}
.ws11f{word-spacing:21.233753px;}
.wse2{word-spacing:21.233873px;}
.wse4{word-spacing:21.234166px;}
.wsc9{word-spacing:21.235248px;}
.wsd2{word-spacing:21.307397px;}
.ws7f{word-spacing:21.307756px;}
.wsae{word-spacing:21.349957px;}
.wsaf{word-spacing:21.387342px;}
.wse3{word-spacing:21.389907px;}
.ws123{word-spacing:21.399571px;}
.wsa1{word-spacing:21.404294px;}
.wse1{word-spacing:21.404426px;}
.ws140{word-spacing:21.412418px;}
.ws79{word-spacing:21.484094px;}
.wsd4{word-spacing:21.484573px;}
.ws53{word-spacing:21.485170px;}
.ws4e{word-spacing:21.485708px;}
.ws4d{word-spacing:21.540224px;}
.ws7a{word-spacing:21.541121px;}
.ws8a{word-spacing:21.573613px;}
.ws8b{word-spacing:21.632219px;}
.ws12d{word-spacing:21.640229px;}
.wsdf{word-spacing:21.787218px;}
.ws15d{word-spacing:21.844095px;}
.ws21{word-spacing:21.926914px;}
.wsde{word-spacing:21.966485px;}
.ws7d{word-spacing:22.029489px;}
.wsee{word-spacing:22.113097px;}
.ws163{word-spacing:22.133553px;}
.ws133{word-spacing:22.180483px;}
.ws20{word-spacing:22.203736px;}
.ws1d{word-spacing:22.204214px;}
.ws52{word-spacing:22.204513px;}
.wsb7{word-spacing:22.205649px;}
.ws14f{word-spacing:22.206097px;}
.wsfd{word-spacing:22.259327px;}
.wsa0{word-spacing:22.351650px;}
.wsff{word-spacing:22.360707px;}
.ws50{word-spacing:22.360827px;}
.ws81{word-spacing:22.554799px;}
.ws161{word-spacing:22.564178px;}
.ws15f{word-spacing:22.564657px;}
.ws89{word-spacing:22.594969px;}
.ws13f{word-spacing:22.706923px;}
.ws138{word-spacing:22.741019px;}
.ws115{word-spacing:22.804662px;}
.ws108{word-spacing:22.805021px;}
.ws54{word-spacing:22.827676px;}
.wsfc{word-spacing:22.827807px;}
.wsef{word-spacing:22.843337px;}
.wsfe{word-spacing:22.923616px;}
.ws29{word-spacing:22.923915px;}
.ws4b{word-spacing:22.979746px;}
.wsed{word-spacing:23.071263px;}
.ws10{word-spacing:23.071956px;}
.ws8f{word-spacing:23.187706px;}
.ws14{word-spacing:23.189320px;}
.ws125{word-spacing:23.295481px;}
.ws128{word-spacing:23.394710px;}
.ws126{word-spacing:23.395429px;}
.ws15e{word-spacing:23.426433px;}
.wsad{word-spacing:23.475586px;}
.ws169{word-spacing:23.530586px;}
.ws1b{word-spacing:23.547198px;}
.ws162{word-spacing:23.568843px;}
.ws8e{word-spacing:23.643437px;}
.ws28{word-spacing:23.644632px;}
.ws19{word-spacing:23.699865px;}
.wsc6{word-spacing:23.791838px;}
.ws148{word-spacing:24.005637px;}
.wsf1{word-spacing:24.087452px;}
.ws9d{word-spacing:24.114231px;}
.ws9e{word-spacing:24.114766px;}
.ws9f{word-spacing:24.115128px;}
.wsc5{word-spacing:24.227985px;}
.ws8d{word-spacing:24.267235px;}
.wsc7{word-spacing:24.282441px;}
.wse{word-spacing:24.297226px;}
.ws51{word-spacing:24.421180px;}
.ws1e{word-spacing:24.519272px;}
.ws124{word-spacing:24.597519px;}
.ws4f{word-spacing:24.627646px;}
.wsa6{word-spacing:24.629140px;}
.wsce{word-spacing:24.773200px;}
.ws1f{word-spacing:24.907636px;}
.ws30{word-spacing:24.907756px;}
.wsec{word-spacing:24.916961px;}
.ws31{word-spacing:25.084094px;}
.wsa8{word-spacing:25.087024px;}
.wsd0{word-spacing:25.090108px;}
.wsd1{word-spacing:25.347945px;}
.ws9c{word-spacing:25.566485px;}
.wscd{word-spacing:25.627967px;}
.ws82{word-spacing:25.629489px;}
.wscf{word-spacing:25.859327px;}
.ws32{word-spacing:25.859746px;}
.ws27{word-spacing:25.959213px;}
.ws12a{word-spacing:25.960707px;}
.ws83{word-spacing:26.247512px;}
.ws18{word-spacing:26.579746px;}
.ws48{word-spacing:26.579805px;}
.wsbd{word-spacing:26.580164px;}
.ws12{word-spacing:27.008757px;}
.wsa9{word-spacing:27.301180px;}
.wsa7{word-spacing:27.303567px;}
.ws136{word-spacing:27.477399px;}
.ws47{word-spacing:27.507646px;}
.ws49{word-spacing:27.964573px;}
.ws4a{word-spacing:28.019208px;}
.ws78{word-spacing:28.684991px;}
.ws66{word-spacing:28.740224px;}
.ws64{word-spacing:28.838794px;}
.ws77{word-spacing:28.840707px;}
.ws62{word-spacing:28.841012px;}
.ws131{word-spacing:29.112096px;}
.ws0{word-spacing:29.355975px;}
.ws1{word-spacing:29.357350px;}
.wsb{word-spacing:29.461794px;}
.ws36{word-spacing:29.559213px;}
.ws63{word-spacing:29.668543px;}
.ws3{word-spacing:30.059161px;}
.ws135{word-spacing:30.550720px;}
.ws65{word-spacing:32.343809px;}
.ws1a{word-spacing:40.981061px;}
.wsa2{word-spacing:57.970038px;}
.ws121{word-spacing:62.086827px;}
.ws10d{word-spacing:63.715100px;}
.ws10c{word-spacing:64.435100px;}
.ws8c{word-spacing:73.089438px;}
.ws10b{word-spacing:75.183825px;}
.ws120{word-spacing:75.183896px;}
.wscc{word-spacing:79.570038px;}
.ws116{word-spacing:81.909331px;}
.ws122{word-spacing:82.434833px;}
.ws11a{word-spacing:129.285331px;}
.ws110{word-spacing:143.096944px;}
.wsb3{word-spacing:393.628150px;}
.ws58{word-spacing:487.949350px;}
.ws92{word-spacing:490.109350px;}
.wsb6{word-spacing:563.545100px;}
.wsdd{word-spacing:600.989350px;}
.wsca{word-spacing:691.709350px;}
.wsc0{word-spacing:773.068984px;}
.wsb5{word-spacing:847.229350px;}
.ws60{word-spacing:848.669350px;}
.ws5d{word-spacing:852.269350px;}
.wse0{word-spacing:881.069350px;}
._22{margin-left:-34.568136px;}
._6{margin-left:-28.774517px;}
._1a{margin-left:-27.493230px;}
._1b{margin-left:-26.447379px;}
._38{margin-left:-24.641310px;}
._35{margin-left:-23.608855px;}
._36{margin-left:-22.493273px;}
._37{margin-left:-19.570547px;}
._4{margin-left:-8.024249px;}
._1{margin-left:-5.995624px;}
._5{margin-left:-4.607162px;}
._a{margin-left:-3.114142px;}
._0{margin-left:-1.970359px;}
._3{width:1.143970px;}
._e{width:2.217470px;}
._18{width:3.946424px;}
._7{width:6.948198px;}
._23{width:8.740005px;}
._39{width:13.321622px;}
._21{width:15.312540px;}
._9{width:16.605675px;}
._8{width:18.061854px;}
._13{width:19.332473px;}
._f{width:20.334552px;}
._b{width:21.821200px;}
._10{width:23.280866px;}
._c{width:24.590547px;}
._d{width:26.114915px;}
._14{width:27.310192px;}
._1c{width:28.738046px;}
._2{width:30.588735px;}
._17{width:32.401194px;}
._1f{width:33.406360px;}
._1e{width:35.349040px;}
._12{width:36.948466px;}
._25{width:38.165760px;}
._16{width:42.639877px;}
._11{width:43.930416px;}
._15{width:45.935153px;}
._33{width:48.133716px;}
._1d{width:50.661218px;}
._2c{width:62.018243px;}
._2d{width:63.312565px;}
._30{width:64.912669px;}
._20{width:69.242063px;}
._2e{width:81.568988px;}
._2a{width:106.074311px;}
._2b{width:135.990100px;}
._2f{width:169.158565px;}
._27{width:198.005720px;}
._31{width:272.985921px;}
._29{width:438.999161px;}
._34{width:650.818555px;}
._24{width:674.577067px;}
._32{width:842.303072px;}
._19{width:866.110327px;}
._28{width:1770.925801px;}
._26{width:1847.984917px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,255,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:0.600000px;}
.fs7{font-size:13.431240px;}
.fs6{font-size:19.187520px;}
.fs5{font-size:29.887920px;}
.fs3{font-size:35.865480px;}
.fs4{font-size:41.843100px;}
.fs2{font-size:47.820660px;}
.fs1{font-size:59.775840px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y171{bottom:9.489990px;}
.y11e{bottom:9.491490px;}
.y170{bottom:15.660000px;}
.y13a{bottom:15.750000px;}
.y16f{bottom:15.793500px;}
.y11d{bottom:15.795000px;}
.y13d{bottom:28.108500px;}
.y11f{bottom:28.227000px;}
.y13c{bottom:35.146500px;}
.y160{bottom:35.940000px;}
.y161{bottom:35.980500px;}
.y172{bottom:35.982000px;}
.y153{bottom:40.740000px;}
.y154{bottom:40.831500px;}
.y12d{bottom:42.150000px;}
.y15f{bottom:42.184500px;}
.y12c{bottom:42.219000px;}
.y19b{bottom:42.369000px;}
.y120{bottom:47.578500px;}
.y1a2{bottom:48.129000px;}
.y15e{bottom:49.222500px;}
.y162{bottom:57.690000px;}
.y163{bottom:57.709500px;}
.y173{bottom:57.718500px;}
.y195{bottom:60.709500px;}
.y12f{bottom:66.450000px;}
.y12e{bottom:66.517500px;}
.y121{bottom:66.931500px;}
.y155{bottom:67.140000px;}
.y156{bottom:67.275000px;}
.y1a3{bottom:68.031000px;}
.y19d{bottom:70.020000px;}
.y1ab{bottom:70.050000px;}
.y19c{bottom:70.104000px;}
.y165{bottom:79.438500px;}
.y164{bottom:79.440000px;}
.y174{bottom:79.456500px;}
.y122{bottom:86.283000px;}
.y1a4{bottom:87.933000px;}
.y130{bottom:90.816000px;}
.y197{bottom:93.120000px;}
.y196{bottom:93.193500px;}
.y157{bottom:93.540000px;}
.y158{bottom:93.717000px;}
.y127{bottom:96.580500px;}
.y19f{bottom:97.770000px;}
.y1ad{bottom:97.800000px;}
.y19e{bottom:97.839000px;}
.y1ac{bottom:97.840500px;}
.y167{bottom:101.169000px;}
.y166{bottom:101.190000px;}
.y175{bottom:101.193000px;}
.y123{bottom:105.634500px;}
.y1a5{bottom:107.836500px;}
.y1a6{bottom:107.850000px;}
.y131{bottom:115.116000px;}
.y159{bottom:119.940000px;}
.y15a{bottom:120.159000px;}
.y168{bottom:122.898000px;}
.y176{bottom:122.931000px;}
.y124{bottom:124.987500px;}
.y1a0{bottom:125.575500px;}
.y199{bottom:125.670000px;}
.y198{bottom:125.677500px;}
.y1a7{bottom:127.738500px;}
.y133{bottom:139.350000px;}
.y132{bottom:139.414500px;}
.y125{bottom:144.340500px;}
.y169{bottom:144.627000px;}
.y177{bottom:144.667500px;}
.y15b{bottom:146.490000px;}
.y15c{bottom:146.602500px;}
.y1a9{bottom:147.600000px;}
.y1a8{bottom:147.640500px;}
.y12b{bottom:153.285000px;}
.y1a1{bottom:153.310500px;}
.y28{bottom:157.499760px;}
.y19a{bottom:158.161500px;}
.y12a{bottom:160.323000px;}
.y135{bottom:163.650000px;}
.y126{bottom:163.692000px;}
.y13b{bottom:163.693500px;}
.y134{bottom:163.713000px;}
.y16a{bottom:166.357500px;}
.y178{bottom:166.404000px;}
.y129{bottom:167.359500px;}
.y179{bottom:167.361000px;}
.y1aa{bottom:167.542500px;}
.y15d{bottom:173.044500px;}
.yea{bottom:173.520000px;}
.y128{bottom:174.397500px;}
.y13e{bottom:174.399000px;}
.y59{bottom:175.499550px;}
.y27{bottom:175.499760px;}
.y11a{bottom:175.499850px;}
.y1c6{bottom:175.499985px;}
.yba{bottom:175.500825px;}
.y91{bottom:177.840855px;}
.ye9{bottom:179.999850px;}
.y90{bottom:181.620735px;}
.ye8{bottom:183.599850px;}
.y148{bottom:183.780000px;}
.y26{bottom:190.440000px;}
.y1c5{bottom:190.440225px;}
.y58{bottom:193.319700px;}
.y119{bottom:193.320000px;}
.y17a{bottom:195.840120px;}
.y8f{bottom:201.240885px;}
.yb9{bottom:204.480675px;}
.y25{bottom:204.840000px;}
.y8e{bottom:204.840885px;}
.y1c4{bottom:205.379880px;}
.y147{bottom:209.700000px;}
.y57{bottom:211.319700px;}
.y1c3{bottom:220.320120px;}
.yb8{bottom:222.300825px;}
.y8d{bottom:224.461005px;}
.ye7{bottom:227.520000px;}
.y8c{bottom:228.240885px;}
.y56{bottom:229.319700px;}
.y1c2{bottom:235.260360px;}
.y146{bottom:235.800000px;}
.yb7{bottom:240.300825px;}
.y24{bottom:242.100000px;}
.y16e{bottom:242.640000px;}
.ye6{bottom:245.520000px;}
.y118{bottom:246.420240px;}
.y55{bottom:247.139850px;}
.y8b{bottom:247.861035px;}
.y1c1{bottom:250.200015px;}
.y117{bottom:250.380000px;}
.y8a{bottom:251.461035px;}
.y194{bottom:253.980000px;}
.y23{bottom:260.100000px;}
.y145{bottom:261.900000px;}
.ye5{bottom:263.520150px;}
.y54{bottom:265.139850px;}
.y1c0{bottom:265.140255px;}
.yb6{bottom:269.820975px;}
.y116{bottom:272.520240px;}
.y115{bottom:276.480000px;}
.y22{bottom:277.920150px;}
.y1bf{bottom:280.079910px;}
.ye4{bottom:281.340300px;}
.y89{bottom:282.240885px;}
.y53{bottom:283.139850px;}
.y144{bottom:287.999655px;}
.y143{bottom:288.000000px;}
.y1be{bottom:295.020150px;}
.y21{bottom:295.920150px;}
.y114{bottom:298.620120px;}
.yb5{bottom:298.800825px;}
.ye3{bottom:299.340300px;}
.y52{bottom:300.960000px;}
.y113{bottom:302.400000px;}
.y88{bottom:313.020735px;}
.y20{bottom:313.920150px;}
.y51{bottom:318.960450px;}
.y112{bottom:324.540240px;}
.ye2{bottom:326.160450px;}
.y111{bottom:328.500000px;}
.yb4{bottom:328.680675px;}
.y142{bottom:329.760150px;}
.y87{bottom:330.840885px;}
.y1f{bottom:331.740300px;}
.y50{bottom:336.779730px;}
.y1e{bottom:349.740300px;}
.y110{bottom:350.640000px;}
.y10f{bottom:350.640240px;}
.yb3{bottom:353.520975px;}
.y10e{bottom:354.600000px;}
.y4f{bottom:354.779730px;}
.ye1{bottom:360.720210px;}
.y86{bottom:361.620735px;}
.y1{bottom:364.500000px;}
.ye0{bottom:364.860450px;}
.y1d{bottom:367.740300px;}
.y4e{bottom:372.779730px;}
.yb2{bottom:374.580675px;}
.y141{bottom:376.199850px;}
.yb1{bottom:378.180675px;}
.y85{bottom:379.440885px;}
.y1c{bottom:385.560450px;}
.ydf{bottom:389.160495px;}
.y140{bottom:389.879760px;}
.y4d{bottom:390.599880px;}
.y1bd{bottom:391.680000px;}
.y10d{bottom:392.400000px;}
.yde{bottom:393.300150px;}
.y13f{bottom:394.020000px;}
.y1b{bottom:403.560450px;}
.yb0{bottom:405.720945px;}
.y1bc{bottom:409.500150px;}
.yaf{bottom:409.500825px;}
.y84{bottom:410.400735px;}
.ydd{bottom:411.300150px;}
.y4a{bottom:416.160300px;}
.y83{bottom:419.220915px;}
.y1a{bottom:421.380000px;}
.y4c{bottom:426.240180px;}
.y4b{bottom:429.840180px;}
.yae{bottom:438.300825px;}
.y19{bottom:439.380000px;}
.ydc{bottom:439.740450px;}
.y139{bottom:440.100000px;}
.y1bb{bottom:441.000150px;}
.y49{bottom:450.179850px;}
.yad{bottom:456.300825px;}
.y16d{bottom:456.660150px;}
.y18{bottom:457.379850px;}
.y82{bottom:459.000765px;}
.ydb{bottom:463.140450px;}
.yda{bottom:466.740450px;}
.y193{bottom:468.000000px;}
.y10c{bottom:468.360000px;}
.y48{bottom:469.079850px;}
.y1ba{bottom:472.320300px;}
.yac{bottom:474.300825px;}
.y17{bottom:475.200000px;}
.y47{bottom:483.299970px;}
.y81{bottom:484.380615px;}
.y46{bottom:487.079850px;}
.y16{bottom:493.200000px;}
.yd9{bottom:493.740450px;}
.y10b{bottom:494.460000px;}
.y1b9{bottom:499.140450px;}
.yab{bottom:503.100825px;}
.y1e7{bottom:504.540000px;}
.y45{bottom:505.079760px;}
.y44{bottom:509.759370px;}
.y15{bottom:511.199850px;}
.y43{bottom:513.899610px;}
.y80{bottom:515.160465px;}
.yd7{bottom:515.520210px;}
.y1e6{bottom:519.479655px;}
.y10a{bottom:520.560000px;}
.y16c{bottom:522.899850px;}
.yd6{bottom:525.600120px;}
.yd8{bottom:525.600150px;}
.y192{bottom:527.579850px;}
.y14{bottom:529.019850px;}
.yd5{bottom:529.200120px;}
.yaa{bottom:532.080675px;}
.y1e5{bottom:534.419895px;}
.y1b8{bottom:536.040450px;}
.y16b{bottom:540.720000px;}
.y191{bottom:545.400000px;}
.y7f{bottom:545.940915px;}
.y109{bottom:546.660000px;}
.y13{bottom:547.019850px;}
.y1e4{bottom:549.359550px;}
.y42{bottom:553.679460px;}
.y1b7{bottom:553.860000px;}
.ya9{bottom:561.060525px;}
.yd4{bottom:564.659820px;}
.y12{bottom:564.840000px;}
.y7e{bottom:571.500675px;}
.y1b6{bottom:571.859550px;}
.y108{bottom:572.579655px;}
.y107{bottom:572.580000px;}
.y1e3{bottom:577.440000px;}
.y7d{bottom:577.440915px;}
.y11{bottom:582.840000px;}
.yd2{bottom:586.440180px;}
.y1b5{bottom:589.859550px;}
.y152{bottom:589.860000px;}
.ya8{bottom:590.040375px;}
.y1e2{bottom:592.379655px;}
.yd1{bottom:596.340165px;}
.yd3{bottom:596.340240px;}
.y41{bottom:597.419760px;}
.yd0{bottom:600.120045px;}
.y190{bottom:600.300000px;}
.y10{bottom:600.840255px;}
.y1e1{bottom:607.319895px;}
.y1b4{bottom:607.679700px;}
.y7c{bottom:608.220765px;}
.y106{bottom:614.339955px;}
.yf{bottom:618.660405px;}
.ya7{bottom:618.840375px;}
.y1e0{bottom:622.260135px;}
.y18f{bottom:622.260240px;}
.y1b3{bottom:625.679700px;}
.y18e{bottom:626.220000px;}
.y40{bottom:628.199610px;}
.y79{bottom:632.880405px;}
.ycf{bottom:634.679745px;}
.ye{bottom:636.660405px;}
.y1df{bottom:637.199790px;}
.y7a{bottom:642.780405px;}
.y7b{bottom:642.780465px;}
.y1b2{bottom:643.679700px;}
.y78{bottom:646.380405px;}
.ya6{bottom:647.820225px;}
.y18d{bottom:648.360240px;}
.y1de{bottom:652.140030px;}
.y18c{bottom:652.320000px;}
.y3f{bottom:654.119685px;}
.y138{bottom:654.299850px;}
.yd{bottom:654.660405px;}
.yce{bottom:655.740105px;}
.y105{bottom:656.639955px;}
.y3e{bottom:658.259925px;}
.y1b1{bottom:661.499850px;}
.ya5{bottom:665.100075px;}
.ya4{bottom:665.100105px;}
.ycd{bottom:665.640165px;}
.y3c{bottom:667.079550px;}
.y1dd{bottom:667.079685px;}
.y3d{bottom:672.119730px;}
.yc{bottom:672.479955px;}
.y75{bottom:673.560750px;}
.ya3{bottom:673.920285px;}
.y18b{bottom:674.460240px;}
.y104{bottom:674.639955px;}
.y18a{bottom:678.420000px;}
.y1b0{bottom:679.499850px;}
.ycc{bottom:681.479805px;}
.y1dc{bottom:682.019925px;}
.y76{bottom:683.460810px;}
.y77{bottom:683.460825px;}
.y74{bottom:687.240630px;}
.y103{bottom:689.940000px;}
.yb{bottom:690.479955px;}
.y102{bottom:693.540000px;}
.y1db{bottom:696.960165px;}
.y1af{bottom:697.320000px;}
.y101{bottom:698.759700px;}
.y189{bottom:700.560240px;}
.y188{bottom:704.520000px;}
.ycb{bottom:704.879805px;}
.y3b{bottom:706.139850px;}
.ya{bottom:708.479955px;}
.y1da{bottom:711.899820px;}
.ya2{bottom:712.440435px;}
.y6c{bottom:714.240510px;}
.y70{bottom:714.240570px;}
.y137{bottom:717.299850px;}
.yca{bottom:722.699955px;}
.y3a{bottom:723.960000px;}
.y1ae{bottom:724.320000px;}
.y6e{bottom:724.320405px;}
.y6f{bottom:724.320420px;}
.y72{bottom:724.320465px;}
.y73{bottom:724.320480px;}
.y187{bottom:726.660240px;}
.y1d9{bottom:726.840060px;}
.y6b{bottom:727.920360px;}
.y6d{bottom:727.920390px;}
.y71{bottom:727.920450px;}
.y100{bottom:729.179850px;}
.y186{bottom:730.620000px;}
.y136{bottom:735.120000px;}
.y9{bottom:735.300105px;}
.y1d8{bottom:741.779715px;}
.y39{bottom:741.960450px;}
.ya1{bottom:742.140435px;}
.yff{bottom:747.000000px;}
.yc9{bottom:748.079835px;}
.yc8{bottom:748.260300px;}
.yc7{bottom:752.399955px;}
.y184{bottom:752.579655px;}
.y185{bottom:752.580000px;}
.y67{bottom:755.100090px;}
.y69{bottom:755.100150px;}
.y183{bottom:756.540000px;}
.y1d7{bottom:756.719955px;}
.y38{bottom:759.780000px;}
.yfe{bottom:760.860345px;}
.yfd{bottom:764.999850px;}
.y9f{bottom:765.000075px;}
.y68{bottom:765.000150px;}
.y6a{bottom:765.000210px;}
.y66{bottom:768.600090px;}
.y1d6{bottom:771.660195px;}
.ya0{bottom:774.900135px;}
.yc6{bottom:775.620075px;}
.y37{bottom:777.779850px;}
.y9e{bottom:778.500075px;}
.yc5{bottom:779.399955px;}
.y11c{bottom:781.200000px;}
.yfc{bottom:782.999850px;}
.y1d5{bottom:786.599850px;}
.y182{bottom:794.340000px;}
.y36{bottom:795.779850px;}
.yfb{bottom:800.820150px;}
.y1d4{bottom:801.720000px;}
.y151{bottom:804.060300px;}
.yc4{bottom:806.399955px;}
.y65{bottom:807.120240px;}
.y8{bottom:811.620255px;}
.y35{bottom:813.600000px;}
.yfa{bottom:814.679910px;}
.y9d{bottom:815.940375px;}
.y1d3{bottom:816.660240px;}
.yf9{bottom:818.820150px;}
.y64{bottom:824.940390px;}
.y7{bottom:826.740405px;}
.yc2{bottom:828.900000px;}
.y1d2{bottom:831.599895px;}
.y34{bottom:831.600000px;}
.yc3{bottom:838.799955px;}
.y99{bottom:839.700015px;}
.y6{bottom:841.680060px;}
.yc1{bottom:842.400000px;}
.y1d1{bottom:846.540135px;}
.yf8{bottom:846.540300px;}
.y33{bottom:849.599700px;}
.y9b{bottom:849.600015px;}
.y9c{bottom:849.600075px;}
.yf7{bottom:850.140300px;}
.y63{bottom:851.940360px;}
.y9a{bottom:853.200015px;}
.y62{bottom:855.720240px;}
.y5{bottom:856.620300px;}
.y1d0{bottom:861.479790px;}
.y181{bottom:865.980000px;}
.y32{bottom:867.419850px;}
.yf6{bottom:869.759835px;}
.y150{bottom:870.120000px;}
.yf5{bottom:873.540300px;}
.y98{bottom:873.540315px;}
.y1cf{bottom:876.420030px;}
.yc0{bottom:877.859700px;}
.y61{bottom:882.540360px;}
.y31{bottom:885.419850px;}
.y60{bottom:886.320240px;}
.y97{bottom:886.859850px;}
.y14f{bottom:888.120000px;}
.y1ce{bottom:891.359685px;}
.y180{bottom:892.080000px;}
.yf3{bottom:894.600000px;}
.y4{bottom:897.300150px;}
.yf4{bottom:901.079880px;}
.yf2{bottom:901.080270px;}
.y30{bottom:903.240000px;}
.ybf{bottom:903.240150px;}
.yf1{bottom:904.860150px;}
.y1cd{bottom:906.299925px;}
.y5e{bottom:913.320300px;}
.y96{bottom:916.020150px;}
.y17f{bottom:918.000000px;}
.y2f{bottom:921.240000px;}
.ybe{bottom:921.240150px;}
.y1cc{bottom:921.240165px;}
.y5f{bottom:923.220240px;}
.y5d{bottom:926.820300px;}
.y1cb{bottom:936.179820px;}
.yef{bottom:936.360000px;}
.y95{bottom:937.079850px;}
.ybd{bottom:939.240150px;}
.y2e{bottom:939.240450px;}
.y94{bottom:940.679850px;}
.y3{bottom:942.120300px;}
.yee{bottom:943.020000px;}
.yf0{bottom:943.020345px;}
.y17e{bottom:944.100000px;}
.y14e{bottom:945.540240px;}
.yed{bottom:946.620000px;}
.y14d{bottom:949.500000px;}
.y1ca{bottom:951.120060px;}
.ybc{bottom:957.059700px;}
.y2d{bottom:957.060000px;}
.y93{bottom:960.299970px;}
.y5c{bottom:962.460000px;}
.y2{bottom:963.180000px;}
.y92{bottom:964.079850px;}
.y1c9{bottom:966.059715px;}
.y5b{bottom:966.060000px;}
.y17c{bottom:970.200000px;}
.y17d{bottom:970.200240px;}
.y14c{bottom:971.640000px;}
.y14b{bottom:971.640240px;}
.ybb{bottom:975.059700px;}
.y2c{bottom:975.060000px;}
.y14a{bottom:975.600000px;}
.yec{bottom:976.859700px;}
.yeb{bottom:980.459700px;}
.y1c8{bottom:980.999955px;}
.y5a{bottom:984.059700px;}
.y2b{bottom:993.059700px;}
.y11b{bottom:995.400000px;}
.y1c7{bottom:995.940195px;}
.y2a{bottom:1010.879850px;}
.y17b{bottom:1011.959700px;}
.y149{bottom:1013.400000px;}
.y29{bottom:1046.700000px;}
.h55{height:0.570000px;}
.h32{height:6.117413px;}
.h54{height:12.788557px;}
.h53{height:14.578018px;}
.h11{height:15.475973px;}
.h7{height:31.382325px;}
.h5e{height:34.239593px;}
.h46{height:34.693898px;}
.h3{height:35.865495px;}
.h2c{height:41.066002px;}
.h2{height:41.843088px;}
.h4c{height:42.201743px;}
.h51{height:42.799501px;}
.h59{height:43.621365px;}
.h4{height:44.831880px;}
.h5{height:44.832480px;}
.h14{height:44.832960px;}
.h8{height:44.833080px;}
.h5b{height:44.833680px;}
.h5d{height:48.104535px;}
.h5c{height:48.106875px;}
.h58{height:50.532938px;}
.h28{height:50.630074px;}
.h2b{height:50.632414px;}
.h2a{height:51.351994px;}
.h6{height:51.475973px;}
.h44{height:51.476573px;}
.h9{height:52.195493px;}
.h50{height:52.981365px;}
.h4f{height:52.981845px;}
.h4e{height:53.700885px;}
.h37{height:54.354113px;}
.h25{height:54.356453px;}
.h1c{height:54.356513px;}
.h45{height:54.423705px;}
.h21{height:55.075973px;}
.h12{height:55.862805px;}
.h17{height:56.601743px;}
.h20{height:57.321263px;}
.h13{height:59.231880px;}
.h10{height:59.951400px;}
.h42{height:59.953740px;}
.h57{height:60.613418px;}
.h4d{height:60.669960px;}
.h49{height:60.670920px;}
.h4a{height:60.671880px;}
.h4b{height:60.673260px;}
.h5a{height:60.674640px;}
.h38{height:61.390500px;}
.hb{height:61.392840px;}
.h31{height:62.112360px;}
.h23{height:65.875973px;}
.h24{height:65.962703px;}
.hf{height:66.595493px;}
.h30{height:68.034593px;}
.h43{height:68.036933px;}
.h2f{height:68.756453px;}
.h1d{height:68.756513px;}
.h1a{height:69.475973px;}
.h1f{height:69.476033px;}
.h22{height:69.476213px;}
.h56{height:69.543285px;}
.h2e{height:70.262805px;}
.h48{height:80.112300px;}
.h29{height:85.382325px;}
.h26{height:86.629834px;}
.h3e{height:86.632234px;}
.ha{height:88.197653px;}
.h47{height:89.701845px;}
.h40{height:95.395493px;}
.h1e{height:96.115253px;}
.h3c{height:96.117353px;}
.hc{height:96.670980px;}
.h15{height:96.834773px;}
.h18{height:96.837173px;}
.h3b{height:100.270920px;}
.h3f{height:100.273260px;}
.h3d{height:101.030254px;}
.h41{height:101.752114px;}
.h39{height:101.752234px;}
.hd{height:103.192354px;}
.h16{height:108.356213px;}
.h19{height:109.076213px;}
.h2d{height:109.862625px;}
.h36{height:110.582565px;}
.h33{height:111.234533px;}
.h34{height:111.234833px;}
.h35{height:111.236933px;}
.h1b{height:111.237173px;}
.h1{height:117.773438px;}
.h27{height:121.910434px;}
.he{height:121.910794px;}
.h3a{height:127.671634px;}
.h52{height:207.225000px;}
.h0{height:1188.000000px;}
.w1{width:276.300000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6c{left:13.895700px;}
.x7a{left:15.979200px;}
.x6b{left:17.449200px;}
.x78{left:19.409700px;}
.x6e{left:20.499000px;}
.x79{left:23.551200px;}
.x6f{left:24.930000px;}
.x70{left:28.128000px;}
.x69{left:40.454700px;}
.x1{left:48.000000px;}
.x71{left:52.285500px;}
.x72{left:64.642200px;}
.x73{left:69.209700px;}
.x74{left:107.468700px;}
.x6a{left:140.164350px;}
.x8{left:146.339250px;}
.x81{left:152.639850px;}
.x75{left:154.859700px;}
.x16{left:156.599760px;}
.x56{left:158.757828px;}
.x7{left:164.159100px;}
.x82{left:172.439850px;}
.x4d{left:179.638362px;}
.x1d{left:182.158215px;}
.x7d{left:187.200000px;}
.x76{left:193.121700px;}
.x4e{left:195.657897px;}
.x5{left:199.980000px;}
.x62{left:203.040429px;}
.xd{left:204.299892px;}
.x3{left:213.659850px;}
.x6d{left:219.409200px;}
.x41{left:248.217930px;}
.x3d{left:250.738260px;}
.x64{left:255.780000px;}
.x2{left:258.480000px;}
.x42{left:260.638044px;}
.x3f{left:262.798260px;}
.x35{left:275.039550px;}
.x3a{left:283.138536px;}
.x36{left:287.459079px;}
.x3b{left:291.418431px;}
.x38{left:293.398983px;}
.x51{left:299.697546px;}
.x1a{left:302.579190px;}
.x45{left:306.537801px;}
.x34{left:309.234060px;}
.xf{left:311.579505px;}
.x17{left:314.819790px;}
.x24{left:316.258278px;}
.x15{left:320.760000px;}
.x3e{left:322.377930px;}
.x1e{left:326.338575px;}
.x4f{left:329.397756px;}
.x5b{left:331.559670px;}
.x33{left:333.174075px;}
.x43{left:335.517918px;}
.x4{left:338.940300px;}
.x2e{left:343.438152px;}
.x5f{left:351.720000px;}
.x25{left:356.758263px;}
.x1f{left:362.698344px;}
.x67{left:363.780000px;}
.xb{left:365.580159px;}
.x5c{left:370.440075px;}
.x46{left:374.577450px;}
.x18{left:376.919745px;}
.xa{left:378.000219px;}
.x31{left:379.617951px;}
.x61{left:381.240714px;}
.x4b{left:384.479388px;}
.x11{left:387.718695px;}
.xc{left:389.700273px;}
.x58{left:391.140495px;}
.x6{left:392.939250px;}
.x12{left:395.998590px;}
.x52{left:397.797615px;}
.x57{left:398.879805px;}
.x7e{left:400.680000px;}
.x7f{left:402.120000px;}
.x80{left:409.679850px;}
.x13{left:410.758350px;}
.x68{left:420.660000px;}
.x5e{left:422.459070px;}
.x40{left:427.858125px;}
.x53{left:430.917705px;}
.x7b{left:437.580042px;}
.x77{left:438.659700px;}
.x47{left:442.977450px;}
.x2a{left:445.138239px;}
.x4c{left:447.119652px;}
.x9{left:450.360300px;}
.x60{left:458.460000px;}
.x32{left:460.616226px;}
.x2f{left:464.218011px;}
.x14{left:465.478455px;}
.x4a{left:466.558989px;}
.x1c{left:471.778770px;}
.x20{left:478.078194px;}
.x5d{left:486.359835px;}
.x48{left:489.059445px;}
.x1b{left:491.399205px;}
.x2b{left:499.677888px;}
.x37{left:501.658923px;}
.x63{left:504.359262px;}
.x5a{left:506.879790px;}
.x54{left:514.257285px;}
.x59{left:516.420000px;}
.x44{left:518.757567px;}
.x21{left:523.078209px;}
.x39{left:534.778686px;}
.x26{left:536.218602px;}
.x65{left:541.079883px;}
.x27{left:553.498452px;}
.x49{left:556.559385px;}
.x19{left:573.299565px;}
.x10{left:575.099325px;}
.x22{left:577.978173px;}
.x30{left:579.957411px;}
.x2c{left:582.118107px;}
.x55{left:584.277345px;}
.xe{left:591.659580px;}
.x3c{left:600.838260px;}
.x28{left:604.978326px;}
.x66{left:614.699766px;}
.x2d{left:623.338212px;}
.x50{left:633.597546px;}
.x7c{left:688.320351px;}
.x23{left:692.998278px;}
.x29{left:705.778311px;}
@media print{
.v27{vertical-align:-74.878933pt;}
.v13{vertical-align:-42.879147pt;}
.v21{vertical-align:-39.039573pt;}
.v1d{vertical-align:-21.118720pt;}
.v2d{vertical-align:-19.839573pt;}
.vf{vertical-align:-12.800000pt;}
.v8{vertical-align:-7.681227pt;}
.v2b{vertical-align:-2.797915pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:5.758347pt;}
.v7{vertical-align:7.039627pt;}
.v2c{vertical-align:10.879147pt;}
.ve{vertical-align:13.439573pt;}
.v1{vertical-align:14.720853pt;}
.v2{vertical-align:19.200000pt;}
.v1b{vertical-align:21.120853pt;}
.v3{vertical-align:22.400000pt;}
.v2a{vertical-align:23.679147pt;}
.vb{vertical-align:24.960213pt;}
.v2e{vertical-align:26.879147pt;}
.v1e{vertical-align:29.441653pt;}
.vd{vertical-align:31.360853pt;}
.v5{vertical-align:32.641493pt;}
.va{vertical-align:33.920853pt;}
.v1a{vertical-align:35.200000pt;}
.v25{vertical-align:36.479147pt;}
.v29{vertical-align:39.039573pt;}
.v14{vertical-align:40.318560pt;}
.v22{vertical-align:41.600267pt;}
.v16{vertical-align:42.879147pt;}
.v9{vertical-align:46.079200pt;}
.v15{vertical-align:47.999787pt;}
.v23{vertical-align:49.281493pt;}
.v6{vertical-align:51.841493pt;}
.v19{vertical-align:56.320853pt;}
.v28{vertical-align:58.239573pt;}
.v11{vertical-align:59.518933pt;}
.v1c{vertical-align:63.999893pt;}
.v18{vertical-align:70.400213pt;}
.v10{vertical-align:72.318933pt;}
.v4{vertical-align:74.881067pt;}
.v26{vertical-align:82.560533pt;}
.v1f{vertical-align:85.120853pt;}
.v20{vertical-align:88.321067pt;}
.v12{vertical-align:90.878933pt;}
.vc{vertical-align:106.239787pt;}
.v24{vertical-align:111.360533pt;}
.ls18{letter-spacing:0.000000pt;}
.lsb1{letter-spacing:0.001540pt;}
.lsc7{letter-spacing:0.002513pt;}
.ls3d{letter-spacing:0.002713pt;}
.ls3e{letter-spacing:0.004793pt;}
.lsb6{letter-spacing:0.051109pt;}
.ls8a{letter-spacing:0.058391pt;}
.ls60{letter-spacing:0.070347pt;}
.lsc4{letter-spacing:0.102218pt;}
.lsa0{letter-spacing:0.113543pt;}
.lsaa{letter-spacing:0.115623pt;}
.ls21{letter-spacing:0.152704pt;}
.ls9e{letter-spacing:0.203874pt;}
.ls2e{letter-spacing:0.241704pt;}
.ls78{letter-spacing:0.243784pt;}
.lscc{letter-spacing:0.250999pt;}
.ls93{letter-spacing:0.252848pt;}
.lsd0{letter-spacing:0.253079pt;}
.ls6b{letter-spacing:0.254928pt;}
.ls62{letter-spacing:0.256422pt;}
.ls1e{letter-spacing:0.257008pt;}
.ls29{letter-spacing:0.259088pt;}
.ls22{letter-spacing:0.261168pt;}
.ls19{letter-spacing:0.296223pt;}
.ls6a{letter-spacing:0.306098pt;}
.ls56{letter-spacing:0.308178pt;}
.ls49{letter-spacing:0.310258pt;}
.ls7c{letter-spacing:0.312107pt;}
.ls5a{letter-spacing:0.312338pt;}
.ls5{letter-spacing:0.312960pt;}
.ls25{letter-spacing:0.314820pt;}
.ls61{letter-spacing:0.381178pt;}
.lscb{letter-spacing:0.467299pt;}
.lsc6{letter-spacing:0.469379pt;}
.ls77{letter-spacing:0.502750pt;}
.ls52{letter-spacing:0.504830pt;}
.ls82{letter-spacing:0.622938pt;}
.ls6f{letter-spacing:0.625018pt;}
.ls28{letter-spacing:0.996957pt;}
.ls34{letter-spacing:1.495609pt;}
.ls1c{letter-spacing:1.497689pt;}
.ls66{letter-spacing:1.499769pt;}
.ls33{letter-spacing:1.713574pt;}
.lsc2{letter-spacing:1.820538pt;}
.ls5f{letter-spacing:1.841724pt;}
.ls31{letter-spacing:1.876263pt;}
.ls79{letter-spacing:1.878343pt;}
.ls76{letter-spacing:1.888861pt;}
.ls8b{letter-spacing:1.901557pt;}
.lsb9{letter-spacing:1.902200pt;}
.lsd2{letter-spacing:1.969882pt;}
.lsb4{letter-spacing:2.085446pt;}
.lsba{letter-spacing:2.087526pt;}
.ls53{letter-spacing:2.229031pt;}
.lsc{letter-spacing:2.481298pt;}
.lsb{letter-spacing:2.483378pt;}
.ls2f{letter-spacing:2.515837pt;}
.ls32{letter-spacing:2.517917pt;}
.ls4{letter-spacing:2.526484pt;}
.ls7d{letter-spacing:2.541130pt;}
.lsce{letter-spacing:2.611535pt;}
.ls15{letter-spacing:3.123004pt;}
.ls5b{letter-spacing:3.155463pt;}
.ls4a{letter-spacing:3.157543pt;}
.ls89{letter-spacing:3.180703pt;}
.ls98{letter-spacing:3.182783pt;}
.lsb2{letter-spacing:3.246374pt;}
.lsa7{letter-spacing:3.266302pt;}
.ls9b{letter-spacing:3.268382pt;}
.lsae{letter-spacing:3.270462pt;}
.lsc9{letter-spacing:3.272542pt;}
.ls67{letter-spacing:3.795037pt;}
.ls59{letter-spacing:3.797117pt;}
.ls9a{letter-spacing:3.820277pt;}
.ls87{letter-spacing:3.822357pt;}
.lsca{letter-spacing:5.715837pt;}
.ls30{letter-spacing:6.017435pt;}
.lsa9{letter-spacing:6.072533pt;}
.lsa2{letter-spacing:6.332890pt;}
.lscd{letter-spacing:6.405950pt;}
.lsb7{letter-spacing:6.451109pt;}
.ls3{letter-spacing:6.637206pt;}
.lsb5{letter-spacing:7.045523pt;}
.lsd1{letter-spacing:7.047603pt;}
.lsa{letter-spacing:7.432707pt;}
.ls10{letter-spacing:7.434787pt;}
.ls17{letter-spacing:7.436867pt;}
.ls14{letter-spacing:7.438947pt;}
.ls69{letter-spacing:7.629987pt;}
.ls26{letter-spacing:7.632067pt;}
.ls2{letter-spacing:7.939507pt;}
.ls1d{letter-spacing:8.271641pt;}
.lsbb{letter-spacing:8.815639pt;}
.ls6c{letter-spacing:8.823550pt;}
.lsa4{letter-spacing:8.893317pt;}
.ls40{letter-spacing:8.911214pt;}
.ls7e{letter-spacing:8.913294pt;}
.ls45{letter-spacing:8.915837pt;}
.ls4f{letter-spacing:8.917917pt;}
.ls5e{letter-spacing:8.943738pt;}
.ls5c{letter-spacing:8.945818pt;}
.lsf{letter-spacing:8.961007pt;}
.ls72{letter-spacing:9.256649pt;}
.ls3b{letter-spacing:9.557543pt;}
.ls4b{letter-spacing:9.585445pt;}
.ls9c{letter-spacing:9.896223pt;}
.ls68{letter-spacing:11.383977pt;}
.ls3f{letter-spacing:11.476263pt;}
.ls8d{letter-spacing:11.501557pt;}
.ls5d{letter-spacing:11.504165pt;}
.ls20{letter-spacing:11.835673pt;}
.ls57{letter-spacing:11.900014pt;}
.ls83{letter-spacing:11.901978pt;}
.ls6d{letter-spacing:12.023550pt;}
.ls58{letter-spacing:12.145818pt;}
.ls81{letter-spacing:12.475353pt;}
.ls0{letter-spacing:12.610053pt;}
.ls7a{letter-spacing:12.663124pt;}
.ls1{letter-spacing:12.784011pt;}
.lsb3{letter-spacing:13.977610pt;}
.ls1f{letter-spacing:14.036690pt;}
.lsac{letter-spacing:14.061983pt;}
.lsd5{letter-spacing:14.081860pt;}
.lsa8{letter-spacing:14.336208pt;}
.lsa6{letter-spacing:14.338288pt;}
.ls2b{letter-spacing:14.393753pt;}
.ls47{letter-spacing:14.395887pt;}
.ls84{letter-spacing:14.460440pt;}
.lsb8{letter-spacing:14.461825pt;}
.lse{letter-spacing:14.533556pt;}
.ls46{letter-spacing:14.583977pt;}
.ls27{letter-spacing:14.676263pt;}
.lsbc{letter-spacing:14.686896pt;}
.ls9f{letter-spacing:14.701557pt;}
.ls43{letter-spacing:14.705387pt;}
.ls42{letter-spacing:14.721433pt;}
.ls24{letter-spacing:15.035887pt;}
.ls73{letter-spacing:15.100014pt;}
.ls9d{letter-spacing:15.101978pt;}
.ls2d{letter-spacing:15.173129pt;}
.ls7f{letter-spacing:15.223550pt;}
.ls71{letter-spacing:15.315837pt;}
.ls6e{letter-spacing:15.317917pt;}
.lsd{letter-spacing:15.326470pt;}
.lsc8{letter-spacing:15.740972pt;}
.ls92{letter-spacing:15.955463pt;}
.ls3a{letter-spacing:16.504830pt;}
.lsaf{letter-spacing:16.560498pt;}
.lsa1{letter-spacing:16.592494pt;}
.ls91{letter-spacing:16.597117pt;}
.ls9{letter-spacing:16.641860pt;}
.ls4d{letter-spacing:16.947751pt;}
.ls86{letter-spacing:16.953813pt;}
.ls64{letter-spacing:17.236690pt;}
.lsa5{letter-spacing:17.238770pt;}
.ls96{letter-spacing:17.261983pt;}
.ls8{letter-spacing:17.281860pt;}
.ls44{letter-spacing:17.316128pt;}
.ls95{letter-spacing:17.593387pt;}
.ls7b{letter-spacing:17.660440pt;}
.ls75{letter-spacing:17.853850pt;}
.ls23{letter-spacing:17.876263pt;}
.ls74{letter-spacing:17.878343pt;}
.lsd3{letter-spacing:17.886896pt;}
.ls8e{letter-spacing:17.901557pt;}
.ls70{letter-spacing:17.904165pt;}
.ls6{letter-spacing:17.921860pt;}
.lsab{letter-spacing:18.235887pt;}
.lsc5{letter-spacing:18.423550pt;}
.ls2a{letter-spacing:18.515837pt;}
.ls16{letter-spacing:18.561860pt;}
.ls8c{letter-spacing:18.872533pt;}
.ls85{letter-spacing:19.634428pt;}
.ls1a{letter-spacing:20.096582pt;}
.ls94{letter-spacing:20.436690pt;}
.ls41{letter-spacing:20.738288pt;}
.ls88{letter-spacing:20.983977pt;}
.lsbd{letter-spacing:21.101557pt;}
.lsd6{letter-spacing:21.381214pt;}
.lscf{letter-spacing:21.501398pt;}
.ls63{letter-spacing:21.623550pt;}
.ls4e{letter-spacing:21.681298pt;}
.ls65{letter-spacing:21.717917pt;}
.ls99{letter-spacing:21.741130pt;}
.ls90{letter-spacing:22.357543pt;}
.ls13{letter-spacing:22.852169pt;}
.lsad{letter-spacing:22.992494pt;}
.ls7{letter-spacing:23.041860pt;}
.ls51{letter-spacing:23.347751pt;}
.ls4c{letter-spacing:23.570907pt;}
.ls3c{letter-spacing:23.629359pt;}
.ls54{letter-spacing:23.631439pt;}
.ls12{letter-spacing:23.647323pt;}
.ls11{letter-spacing:24.713720pt;}
.ls8f{letter-spacing:25.557543pt;}
.ls39{letter-spacing:26.622831pt;}
.ls1b{letter-spacing:26.709973pt;}
.ls50{letter-spacing:27.138288pt;}
.lsb0{letter-spacing:27.913720pt;}
.ls38{letter-spacing:28.802713pt;}
.ls37{letter-spacing:29.754287pt;}
.ls36{letter-spacing:34.817435pt;}
.ls35{letter-spacing:35.150574pt;}
.ls80{letter-spacing:38.075353pt;}
.ls55{letter-spacing:39.636690pt;}
.ls48{letter-spacing:40.276157pt;}
.ls97{letter-spacing:40.278290pt;}
.ls2c{letter-spacing:44.755623pt;}
.lsc3{letter-spacing:60.756253pt;}
.lsc1{letter-spacing:60.780693pt;}
.lsbe{letter-spacing:169.567323pt;}
.lsc0{letter-spacing:211.796253pt;}
.lsd4{letter-spacing:211.796669pt;}
.lsbf{letter-spacing:212.436253pt;}
.lsa3{letter-spacing:272.954027pt;}
.ws2f{word-spacing:-34.590286pt;}
.ws5b{word-spacing:-25.631189pt;}
.ws68{word-spacing:-25.631083pt;}
.ws97{word-spacing:-25.629861pt;}
.ws6e{word-spacing:-20.129846pt;}
.ws5a{word-spacing:-20.127720pt;}
.ws117{word-spacing:-10.233344pt;}
.wsb4{word-spacing:-8.349914pt;}
.wscb{word-spacing:-6.431190pt;}
.wsc{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.042507pt;}
.ws94{word-spacing:-0.037194pt;}
.ws3e{word-spacing:0.000000pt;}
.ws16b{word-spacing:3.496859pt;}
.ws168{word-spacing:5.838074pt;}
.ws166{word-spacing:10.457890pt;}
.ws111{word-spacing:11.139362pt;}
.ws91{word-spacing:11.330843pt;}
.wsea{word-spacing:11.782436pt;}
.ws93{word-spacing:11.782535pt;}
.ws85{word-spacing:11.782644pt;}
.wsf7{word-spacing:11.970417pt;}
.wsf8{word-spacing:12.056654pt;}
.wsd6{word-spacing:12.194537pt;}
.ws74{word-spacing:12.292941pt;}
.wsd7{word-spacing:12.420304pt;}
.wsd5{word-spacing:12.747716pt;}
.ws7{word-spacing:12.867796pt;}
.ws100{word-spacing:12.906109pt;}
.wsf9{word-spacing:13.058975pt;}
.ws5{word-spacing:13.077784pt;}
.ws10f{word-spacing:13.092290pt;}
.ws101{word-spacing:13.264392pt;}
.wsfa{word-spacing:13.337239pt;}
.ws40{word-spacing:13.396148pt;}
.ws12e{word-spacing:13.474590pt;}
.ws153{word-spacing:13.658261pt;}
.ws9a{word-spacing:13.699454pt;}
.ws12b{word-spacing:13.730962pt;}
.ws102{word-spacing:13.756095pt;}
.ws8{word-spacing:13.814772pt;}
.ws118{word-spacing:13.905189pt;}
.wsf3{word-spacing:13.977451pt;}
.ws9b{word-spacing:13.977610pt;}
.ws99{word-spacing:13.978801pt;}
.ws2c{word-spacing:14.026441pt;}
.ws2b{word-spacing:14.026494pt;}
.ws44{word-spacing:14.115759pt;}
.ws15{word-spacing:14.184780pt;}
.ws11b{word-spacing:14.185258pt;}
.ws3f{word-spacing:14.189125pt;}
.ws12f{word-spacing:14.211188pt;}
.ws41{word-spacing:14.212994pt;}
.ws3c{word-spacing:14.291194pt;}
.ws3b{word-spacing:14.297017pt;}
.ws155{word-spacing:14.297060pt;}
.ws159{word-spacing:14.297442pt;}
.ws142{word-spacing:14.297867pt;}
.ws164{word-spacing:14.298717pt;}
.ws3d{word-spacing:14.298760pt;}
.ws11c{word-spacing:14.307094pt;}
.wsbe{word-spacing:14.340086pt;}
.wsc1{word-spacing:14.340139pt;}
.wsf2{word-spacing:14.340251pt;}
.ws5f{word-spacing:14.340888pt;}
.wsa5{word-spacing:14.341045pt;}
.wsb1{word-spacing:14.342219pt;}
.ws98{word-spacing:14.343178pt;}
.ws158{word-spacing:14.454124pt;}
.ws9{word-spacing:14.454506pt;}
.ws69{word-spacing:14.480418pt;}
.ws88{word-spacing:14.480471pt;}
.ws5e{word-spacing:14.530843pt;}
.ws22{word-spacing:14.617026pt;}
.ws70{word-spacing:14.666441pt;}
.ws35{word-spacing:14.666919pt;}
.ws6a{word-spacing:14.667716pt;}
.ws67{word-spacing:14.667744pt;}
.ws2{word-spacing:14.803831pt;}
.ws13{word-spacing:14.852091pt;}
.wsf{word-spacing:14.852994pt;}
.ws156{word-spacing:14.937041pt;}
.ws13d{word-spacing:14.937049pt;}
.ws13b{word-spacing:14.937431pt;}
.ws146{word-spacing:14.937941pt;}
.ws15a{word-spacing:14.938060pt;}
.ws160{word-spacing:14.938282pt;}
.ws141{word-spacing:14.938664pt;}
.ws15c{word-spacing:14.938749pt;}
.ws105{word-spacing:14.980043pt;}
.ws61{word-spacing:14.982535pt;}
.wsb2{word-spacing:14.982645pt;}
.ws59{word-spacing:14.983012pt;}
.wsa{word-spacing:14.985082pt;}
.ws11d{word-spacing:15.035403pt;}
.ws119{word-spacing:15.048156pt;}
.ws34{word-spacing:15.170417pt;}
.ws11e{word-spacing:15.185933pt;}
.ws14c{word-spacing:15.193028pt;}
.ws11{word-spacing:15.257398pt;}
.wsd{word-spacing:15.258306pt;}
.ws165{word-spacing:15.260104pt;}
.ws104{word-spacing:15.389064pt;}
.wsf4{word-spacing:15.395068pt;}
.ws6b{word-spacing:15.395812pt;}
.ws147{word-spacing:15.578271pt;}
.ws145{word-spacing:15.578313pt;}
.ws15b{word-spacing:15.703455pt;}
.ws4{word-spacing:15.734060pt;}
.ws26{word-spacing:15.740865pt;}
.ws103{word-spacing:15.825189pt;}
.ws106{word-spacing:15.825242pt;}
.ws154{word-spacing:15.899286pt;}
.ws25{word-spacing:15.946866pt;}
.wsbc{word-spacing:16.035387pt;}
.ws167{word-spacing:16.052609pt;}
.ws23{word-spacing:16.105205pt;}
.ws1c{word-spacing:16.132038pt;}
.ws13a{word-spacing:16.217835pt;}
.ws143{word-spacing:16.217920pt;}
.wse6{word-spacing:16.291387pt;}
.ws13c{word-spacing:16.344336pt;}
.wsc4{word-spacing:16.465614pt;}
.ws139{word-spacing:16.470498pt;}
.ws144{word-spacing:16.471306pt;}
.ws130{word-spacing:16.536654pt;}
.wse5{word-spacing:16.537239pt;}
.wse9{word-spacing:16.537504pt;}
.ws76{word-spacing:16.538248pt;}
.ws157{word-spacing:16.538467pt;}
.ws2d{word-spacing:16.586866pt;}
.ws57{word-spacing:16.586919pt;}
.wsac{word-spacing:16.587769pt;}
.wsc3{word-spacing:16.667178pt;}
.ws132{word-spacing:16.674484pt;}
.ws134{word-spacing:16.675015pt;}
.ws55{word-spacing:16.675387pt;}
.ws6c{word-spacing:16.676184pt;}
.ws14d{word-spacing:16.692173pt;}
.ws151{word-spacing:16.692598pt;}
.ws42{word-spacing:16.745258pt;}
.ws33{word-spacing:16.771719pt;}
.ws7b{word-spacing:16.772038pt;}
.ws10a{word-spacing:16.772144pt;}
.ws137{word-spacing:16.772463pt;}
.wsba{word-spacing:16.774666pt;}
.wsc2{word-spacing:16.884417pt;}
.ws90{word-spacing:17.021343pt;}
.ws10e{word-spacing:17.071130pt;}
.wsaa{word-spacing:17.090045pt;}
.wsbb{word-spacing:17.091161pt;}
.ws95{word-spacing:17.091268pt;}
.ws14a{word-spacing:17.110105pt;}
.ws16a{word-spacing:17.110955pt;}
.ws84{word-spacing:17.176601pt;}
.ws37{word-spacing:17.176707pt;}
.wsa4{word-spacing:17.176857pt;}
.ws7c{word-spacing:17.176920pt;}
.ws87{word-spacing:17.176922pt;}
.ws5c{word-spacing:17.177079pt;}
.wsf5{word-spacing:17.177876pt;}
.ws43{word-spacing:17.178248pt;}
.ws149{word-spacing:17.178839pt;}
.ws72{word-spacing:17.179598pt;}
.ws2e{word-spacing:17.180042pt;}
.wsf6{word-spacing:17.201111pt;}
.wseb{word-spacing:17.226866pt;}
.ws4c{word-spacing:17.226919pt;}
.wsb9{word-spacing:17.314431pt;}
.wsdb{word-spacing:17.315334pt;}
.ws86{word-spacing:17.315389pt;}
.ws46{word-spacing:17.315759pt;}
.wsab{word-spacing:17.316652pt;}
.ws150{word-spacing:17.331695pt;}
.ws109{word-spacing:17.384780pt;}
.wse8{word-spacing:17.410985pt;}
.ws71{word-spacing:17.411041pt;}
.ws6f{word-spacing:17.411188pt;}
.ws24{word-spacing:17.411294pt;}
.ws112{word-spacing:17.505979pt;}
.wse7{word-spacing:17.539400pt;}
.ws96{word-spacing:17.540251pt;}
.ws129{word-spacing:17.540357pt;}
.wsda{word-spacing:17.540676pt;}
.ws127{word-spacing:17.540888pt;}
.ws12c{word-spacing:17.570696pt;}
.ws113{word-spacing:17.595881pt;}
.wsd9{word-spacing:17.663228pt;}
.ws45{word-spacing:17.730842pt;}
.ws73{word-spacing:17.731268pt;}
.wsb0{word-spacing:17.731409pt;}
.ws114{word-spacing:17.744764pt;}
.ws14e{word-spacing:17.757363pt;}
.ws56{word-spacing:17.817026pt;}
.wsd8{word-spacing:17.818301pt;}
.ws6d{word-spacing:17.867291pt;}
.wsdc{word-spacing:17.955334pt;}
.wsa3{word-spacing:17.956119pt;}
.wsf0{word-spacing:18.024461pt;}
.ws2a{word-spacing:18.052091pt;}
.ws152{word-spacing:18.137420pt;}
.ws80{word-spacing:18.154215pt;}
.wsbf{word-spacing:18.183368pt;}
.wsfb{word-spacing:18.370417pt;}
.wsd3{word-spacing:18.458301pt;}
.ws38{word-spacing:18.505962pt;}
.ws3a{word-spacing:18.506122pt;}
.ws75{word-spacing:18.506441pt;}
.ws17{word-spacing:18.507822pt;}
.wsc8{word-spacing:18.587364pt;}
.ws7e{word-spacing:18.594909pt;}
.ws16{word-spacing:18.595281pt;}
.wsb8{word-spacing:18.595812pt;}
.ws39{word-spacing:18.692038pt;}
.ws107{word-spacing:18.725141pt;}
.ws14b{word-spacing:18.777027pt;}
.ws13e{word-spacing:18.778259pt;}
.ws11f{word-spacing:18.874447pt;}
.wse2{word-spacing:18.874554pt;}
.wse4{word-spacing:18.874815pt;}
.wsc9{word-spacing:18.875776pt;}
.wsd2{word-spacing:18.939909pt;}
.ws7f{word-spacing:18.940227pt;}
.wsae{word-spacing:18.977740pt;}
.wsaf{word-spacing:19.010970pt;}
.wse3{word-spacing:19.013251pt;}
.ws123{word-spacing:19.021841pt;}
.wsa1{word-spacing:19.026039pt;}
.wse1{word-spacing:19.026156pt;}
.ws140{word-spacing:19.033260pt;}
.ws79{word-spacing:19.096973pt;}
.wsd4{word-spacing:19.097398pt;}
.ws53{word-spacing:19.097929pt;}
.ws4e{word-spacing:19.098407pt;}
.ws4d{word-spacing:19.146866pt;}
.ws7a{word-spacing:19.147663pt;}
.ws8a{word-spacing:19.176545pt;}
.ws8b{word-spacing:19.228639pt;}
.ws12d{word-spacing:19.235759pt;}
.wsdf{word-spacing:19.366416pt;}
.ws15d{word-spacing:19.416973pt;}
.ws21{word-spacing:19.490590pt;}
.wsde{word-spacing:19.525765pt;}
.ws7d{word-spacing:19.581768pt;}
.wsee{word-spacing:19.656086pt;}
.ws163{word-spacing:19.674270pt;}
.ws133{word-spacing:19.715985pt;}
.ws20{word-spacing:19.736654pt;}
.ws1d{word-spacing:19.737079pt;}
.ws52{word-spacing:19.737345pt;}
.wsb7{word-spacing:19.738354pt;}
.ws14f{word-spacing:19.738753pt;}
.wsfd{word-spacing:19.786069pt;}
.wsa0{word-spacing:19.868133pt;}
.wsff{word-spacing:19.876184pt;}
.ws50{word-spacing:19.876290pt;}
.ws81{word-spacing:20.048710pt;}
.ws161{word-spacing:20.057047pt;}
.ws15f{word-spacing:20.057473pt;}
.ws89{word-spacing:20.084417pt;}
.ws13f{word-spacing:20.183932pt;}
.ws138{word-spacing:20.214239pt;}
.ws115{word-spacing:20.270811pt;}
.ws108{word-spacing:20.271130pt;}
.ws54{word-spacing:20.291268pt;}
.wsfc{word-spacing:20.291384pt;}
.wsef{word-spacing:20.305189pt;}
.wsfe{word-spacing:20.376548pt;}
.ws29{word-spacing:20.376813pt;}
.ws4b{word-spacing:20.426441pt;}
.wsed{word-spacing:20.507789pt;}
.ws10{word-spacing:20.508405pt;}
.ws8f{word-spacing:20.611294pt;}
.ws14{word-spacing:20.612729pt;}
.ws125{word-spacing:20.707094pt;}
.ws128{word-spacing:20.795297pt;}
.ws126{word-spacing:20.795937pt;}
.ws15e{word-spacing:20.823496pt;}
.wsad{word-spacing:20.867188pt;}
.ws169{word-spacing:20.916077pt;}
.ws1b{word-spacing:20.930842pt;}
.ws162{word-spacing:20.950082pt;}
.ws8e{word-spacing:21.016388pt;}
.ws28{word-spacing:21.017451pt;}
.ws19{word-spacing:21.066547pt;}
.wsc6{word-spacing:21.148301pt;}
.ws148{word-spacing:21.338344pt;}
.wsf1{word-spacing:21.411068pt;}
.ws9d{word-spacing:21.434872pt;}
.ws9e{word-spacing:21.435348pt;}
.ws9f{word-spacing:21.435669pt;}
.wsc5{word-spacing:21.535987pt;}
.ws8d{word-spacing:21.570876pt;}
.wsc7{word-spacing:21.584392pt;}
.wse{word-spacing:21.597534pt;}
.ws51{word-spacing:21.707716pt;}
.ws1e{word-spacing:21.794909pt;}
.ws124{word-spacing:21.864461pt;}
.ws4f{word-spacing:21.891241pt;}
.wsa6{word-spacing:21.892569pt;}
.wsce{word-spacing:22.020622pt;}
.ws1f{word-spacing:22.140121pt;}
.ws30{word-spacing:22.140227pt;}
.wsec{word-spacing:22.148410pt;}
.ws31{word-spacing:22.296973pt;}
.wsa8{word-spacing:22.299577pt;}
.wsd0{word-spacing:22.302319pt;}
.wsd1{word-spacing:22.531507pt;}
.ws9c{word-spacing:22.725765pt;}
.wscd{word-spacing:22.780416pt;}
.ws82{word-spacing:22.781768pt;}
.wscf{word-spacing:22.986069pt;}
.ws32{word-spacing:22.986441pt;}
.ws27{word-spacing:23.074856pt;}
.ws12a{word-spacing:23.076184pt;}
.ws83{word-spacing:23.331121pt;}
.ws18{word-spacing:23.626441pt;}
.ws48{word-spacing:23.626494pt;}
.wsbd{word-spacing:23.626813pt;}
.ws12{word-spacing:24.007784pt;}
.wsa9{word-spacing:24.267716pt;}
.wsa7{word-spacing:24.269837pt;}
.ws136{word-spacing:24.424355pt;}
.ws47{word-spacing:24.451241pt;}
.ws49{word-spacing:24.857398pt;}
.ws4a{word-spacing:24.905962pt;}
.ws78{word-spacing:25.497770pt;}
.ws66{word-spacing:25.546866pt;}
.ws64{word-spacing:25.634484pt;}
.ws77{word-spacing:25.636184pt;}
.ws62{word-spacing:25.636455pt;}
.ws131{word-spacing:25.877419pt;}
.ws0{word-spacing:26.094200pt;}
.ws1{word-spacing:26.095422pt;}
.wsb{word-spacing:26.188262pt;}
.ws36{word-spacing:26.274856pt;}
.ws63{word-spacing:26.372038pt;}
.ws3{word-spacing:26.719254pt;}
.ws135{word-spacing:27.156195pt;}
.ws65{word-spacing:28.750052pt;}
.ws1a{word-spacing:36.427609pt;}
.wsa2{word-spacing:51.528923pt;}
.ws121{word-spacing:55.188290pt;}
.ws10d{word-spacing:56.635645pt;}
.ws10c{word-spacing:57.275645pt;}
.ws8c{word-spacing:64.968390pt;}
.ws10b{word-spacing:66.830066pt;}
.ws120{word-spacing:66.830130pt;}
.wscc{word-spacing:70.728923pt;}
.ws116{word-spacing:72.808294pt;}
.ws122{word-spacing:73.275407pt;}
.ws11a{word-spacing:114.920294pt;}
.ws110{word-spacing:127.197283pt;}
.wsb3{word-spacing:349.891689pt;}
.ws58{word-spacing:433.732756pt;}
.ws92{word-spacing:435.652756pt;}
.wsb6{word-spacing:500.928978pt;}
.wsdd{word-spacing:534.212756pt;}
.wsca{word-spacing:614.852756pt;}
.wsc0{word-spacing:687.172430pt;}
.wsb5{word-spacing:753.092756pt;}
.ws60{word-spacing:754.372756pt;}
.ws5d{word-spacing:757.572756pt;}
.wse0{word-spacing:783.172756pt;}
._22{margin-left:-30.727232pt;}
._6{margin-left:-25.577348pt;}
._1a{margin-left:-24.438427pt;}
._1b{margin-left:-23.508781pt;}
._38{margin-left:-21.903386pt;}
._35{margin-left:-20.985649pt;}
._36{margin-left:-19.994021pt;}
._37{margin-left:-17.396042pt;}
._4{margin-left:-7.132666pt;}
._1{margin-left:-5.329444pt;}
._5{margin-left:-4.095255pt;}
._a{margin-left:-2.768126pt;}
._0{margin-left:-1.751430pt;}
._3{width:1.016862pt;}
._e{width:1.971084pt;}
._18{width:3.507932pt;}
._7{width:6.176176pt;}
._23{width:7.768893pt;}
._39{width:11.841442pt;}
._21{width:13.611147pt;}
._9{width:14.760600pt;}
._8{width:16.054982pt;}
._13{width:17.184421pt;}
._f{width:18.075158pt;}
._b{width:19.396622pt;}
._10{width:20.694103pt;}
._c{width:21.858264pt;}
._d{width:23.213258pt;}
._14{width:24.275726pt;}
._1c{width:25.544930pt;}
._2{width:27.189987pt;}
._17{width:28.801061pt;}
._1f{width:29.694542pt;}
._1e{width:31.421369pt;}
._12{width:32.843081pt;}
._25{width:33.925120pt;}
._16{width:37.902113pt;}
._11{width:39.049258pt;}
._15{width:40.831247pt;}
._33{width:42.785525pt;}
._1d{width:45.032194pt;}
._2c{width:55.127327pt;}
._2d{width:56.277835pt;}
._30{width:57.700150pt;}
._20{width:61.548501pt;}
._2e{width:72.505767pt;}
._2a{width:94.288277pt;}
._2b{width:120.880089pt;}
._2f{width:150.363169pt;}
._27{width:176.005085pt;}
._31{width:242.654152pt;}
._29{width:390.221477pt;}
._34{width:578.505382pt;}
._24{width:599.624059pt;}
._32{width:748.713842pt;}
._19{width:769.875846pt;}
._28{width:1574.156268pt;}
._26{width:1642.653259pt;}
.fs8{font-size:0.533333pt;}
.fs7{font-size:11.938880pt;}
.fs6{font-size:17.055573pt;}
.fs5{font-size:26.567040pt;}
.fs3{font-size:31.880427pt;}
.fs4{font-size:37.193867pt;}
.fs2{font-size:42.507253pt;}
.fs1{font-size:53.134080pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y171{bottom:8.435547pt;}
.y11e{bottom:8.436880pt;}
.y170{bottom:13.920000pt;}
.y13a{bottom:14.000000pt;}
.y16f{bottom:14.038667pt;}
.y11d{bottom:14.040000pt;}
.y13d{bottom:24.985333pt;}
.y11f{bottom:25.090667pt;}
.y13c{bottom:31.241333pt;}
.y160{bottom:31.946667pt;}
.y161{bottom:31.982667pt;}
.y172{bottom:31.984000pt;}
.y153{bottom:36.213333pt;}
.y154{bottom:36.294667pt;}
.y12d{bottom:37.466667pt;}
.y15f{bottom:37.497333pt;}
.y12c{bottom:37.528000pt;}
.y19b{bottom:37.661333pt;}
.y120{bottom:42.292000pt;}
.y1a2{bottom:42.781333pt;}
.y15e{bottom:43.753333pt;}
.y162{bottom:51.280000pt;}
.y163{bottom:51.297333pt;}
.y173{bottom:51.305333pt;}
.y195{bottom:53.964000pt;}
.y12f{bottom:59.066667pt;}
.y12e{bottom:59.126667pt;}
.y121{bottom:59.494667pt;}
.y155{bottom:59.680000pt;}
.y156{bottom:59.800000pt;}
.y1a3{bottom:60.472000pt;}
.y19d{bottom:62.240000pt;}
.y1ab{bottom:62.266667pt;}
.y19c{bottom:62.314667pt;}
.y165{bottom:70.612000pt;}
.y164{bottom:70.613333pt;}
.y174{bottom:70.628000pt;}
.y122{bottom:76.696000pt;}
.y1a4{bottom:78.162667pt;}
.y130{bottom:80.725333pt;}
.y197{bottom:82.773333pt;}
.y196{bottom:82.838667pt;}
.y157{bottom:83.146667pt;}
.y158{bottom:83.304000pt;}
.y127{bottom:85.849333pt;}
.y19f{bottom:86.906667pt;}
.y1ad{bottom:86.933333pt;}
.y19e{bottom:86.968000pt;}
.y1ac{bottom:86.969333pt;}
.y167{bottom:89.928000pt;}
.y166{bottom:89.946667pt;}
.y175{bottom:89.949333pt;}
.y123{bottom:93.897333pt;}
.y1a5{bottom:95.854667pt;}
.y1a6{bottom:95.866667pt;}
.y131{bottom:102.325333pt;}
.y159{bottom:106.613333pt;}
.y15a{bottom:106.808000pt;}
.y168{bottom:109.242667pt;}
.y176{bottom:109.272000pt;}
.y124{bottom:111.100000pt;}
.y1a0{bottom:111.622667pt;}
.y199{bottom:111.706667pt;}
.y198{bottom:111.713333pt;}
.y1a7{bottom:113.545333pt;}
.y133{bottom:123.866667pt;}
.y132{bottom:123.924000pt;}
.y125{bottom:128.302667pt;}
.y169{bottom:128.557333pt;}
.y177{bottom:128.593333pt;}
.y15b{bottom:130.213333pt;}
.y15c{bottom:130.313333pt;}
.y1a9{bottom:131.200000pt;}
.y1a8{bottom:131.236000pt;}
.y12b{bottom:136.253333pt;}
.y1a1{bottom:136.276000pt;}
.y28{bottom:139.999787pt;}
.y19a{bottom:140.588000pt;}
.y12a{bottom:142.509333pt;}
.y135{bottom:145.466667pt;}
.y126{bottom:145.504000pt;}
.y13b{bottom:145.505333pt;}
.y134{bottom:145.522667pt;}
.y16a{bottom:147.873333pt;}
.y178{bottom:147.914667pt;}
.y129{bottom:148.764000pt;}
.y179{bottom:148.765333pt;}
.y1aa{bottom:148.926667pt;}
.y15d{bottom:153.817333pt;}
.yea{bottom:154.240000pt;}
.y128{bottom:155.020000pt;}
.y13e{bottom:155.021333pt;}
.y59{bottom:155.999600pt;}
.y27{bottom:155.999787pt;}
.y11a{bottom:155.999867pt;}
.y1c6{bottom:155.999987pt;}
.yba{bottom:156.000733pt;}
.y91{bottom:158.080760pt;}
.ye9{bottom:159.999867pt;}
.y90{bottom:161.440653pt;}
.ye8{bottom:163.199867pt;}
.y148{bottom:163.360000pt;}
.y26{bottom:169.280000pt;}
.y1c5{bottom:169.280200pt;}
.y58{bottom:171.839733pt;}
.y119{bottom:171.840000pt;}
.y17a{bottom:174.080107pt;}
.y8f{bottom:178.880787pt;}
.yb9{bottom:181.760600pt;}
.y25{bottom:182.080000pt;}
.y8e{bottom:182.080787pt;}
.y1c4{bottom:182.559893pt;}
.y147{bottom:186.400000pt;}
.y57{bottom:187.839733pt;}
.y1c3{bottom:195.840107pt;}
.yb8{bottom:197.600733pt;}
.y8d{bottom:199.520893pt;}
.ye7{bottom:202.240000pt;}
.y8c{bottom:202.880787pt;}
.y56{bottom:203.839733pt;}
.y1c2{bottom:209.120320pt;}
.y146{bottom:209.600000pt;}
.yb7{bottom:213.600733pt;}
.y24{bottom:215.200000pt;}
.y16e{bottom:215.680000pt;}
.ye6{bottom:218.240000pt;}
.y118{bottom:219.040213pt;}
.y55{bottom:219.679867pt;}
.y8b{bottom:220.320920pt;}
.y1c1{bottom:222.400013pt;}
.y117{bottom:222.560000pt;}
.y8a{bottom:223.520920pt;}
.y194{bottom:225.760000pt;}
.y23{bottom:231.200000pt;}
.y145{bottom:232.800000pt;}
.ye5{bottom:234.240133pt;}
.y54{bottom:235.679867pt;}
.y1c0{bottom:235.680227pt;}
.yb6{bottom:239.840867pt;}
.y116{bottom:242.240213pt;}
.y115{bottom:245.760000pt;}
.y22{bottom:247.040133pt;}
.y1bf{bottom:248.959920pt;}
.ye4{bottom:250.080267pt;}
.y89{bottom:250.880787pt;}
.y53{bottom:251.679867pt;}
.y144{bottom:255.999693pt;}
.y143{bottom:256.000000pt;}
.y1be{bottom:262.240133pt;}
.y21{bottom:263.040133pt;}
.y114{bottom:265.440107pt;}
.yb5{bottom:265.600733pt;}
.ye3{bottom:266.080267pt;}
.y52{bottom:267.520000pt;}
.y113{bottom:268.800000pt;}
.y88{bottom:278.240653pt;}
.y20{bottom:279.040133pt;}
.y51{bottom:283.520400pt;}
.y112{bottom:288.480213pt;}
.ye2{bottom:289.920400pt;}
.y111{bottom:292.000000pt;}
.yb4{bottom:292.160600pt;}
.y142{bottom:293.120133pt;}
.y87{bottom:294.080787pt;}
.y1f{bottom:294.880267pt;}
.y50{bottom:299.359760pt;}
.y1e{bottom:310.880267pt;}
.y110{bottom:311.680000pt;}
.y10f{bottom:311.680213pt;}
.yb3{bottom:314.240867pt;}
.y10e{bottom:315.200000pt;}
.y4f{bottom:315.359760pt;}
.ye1{bottom:320.640187pt;}
.y86{bottom:321.440653pt;}
.y1{bottom:324.000000pt;}
.ye0{bottom:324.320400pt;}
.y1d{bottom:326.880267pt;}
.y4e{bottom:331.359760pt;}
.yb2{bottom:332.960600pt;}
.y141{bottom:334.399867pt;}
.yb1{bottom:336.160600pt;}
.y85{bottom:337.280787pt;}
.y1c{bottom:342.720400pt;}
.ydf{bottom:345.920440pt;}
.y140{bottom:346.559787pt;}
.y4d{bottom:347.199893pt;}
.y1bd{bottom:348.160000pt;}
.y10d{bottom:348.800000pt;}
.yde{bottom:349.600133pt;}
.y13f{bottom:350.240000pt;}
.y1b{bottom:358.720400pt;}
.yb0{bottom:360.640840pt;}
.y1bc{bottom:364.000133pt;}
.yaf{bottom:364.000733pt;}
.y84{bottom:364.800653pt;}
.ydd{bottom:365.600133pt;}
.y4a{bottom:369.920267pt;}
.y83{bottom:372.640813pt;}
.y1a{bottom:374.560000pt;}
.y4c{bottom:378.880160pt;}
.y4b{bottom:382.080160pt;}
.yae{bottom:389.600733pt;}
.y19{bottom:390.560000pt;}
.ydc{bottom:390.880400pt;}
.y139{bottom:391.200000pt;}
.y1bb{bottom:392.000133pt;}
.y49{bottom:400.159867pt;}
.yad{bottom:405.600733pt;}
.y16d{bottom:405.920133pt;}
.y18{bottom:406.559867pt;}
.y82{bottom:408.000680pt;}
.ydb{bottom:411.680400pt;}
.yda{bottom:414.880400pt;}
.y193{bottom:416.000000pt;}
.y10c{bottom:416.320000pt;}
.y48{bottom:416.959867pt;}
.y1ba{bottom:419.840267pt;}
.yac{bottom:421.600733pt;}
.y17{bottom:422.400000pt;}
.y47{bottom:429.599973pt;}
.y81{bottom:430.560547pt;}
.y46{bottom:432.959867pt;}
.y16{bottom:438.400000pt;}
.yd9{bottom:438.880400pt;}
.y10b{bottom:439.520000pt;}
.y1b9{bottom:443.680400pt;}
.yab{bottom:447.200733pt;}
.y1e7{bottom:448.480000pt;}
.y45{bottom:448.959787pt;}
.y44{bottom:453.119440pt;}
.y15{bottom:454.399867pt;}
.y43{bottom:456.799653pt;}
.y80{bottom:457.920413pt;}
.yd7{bottom:458.240187pt;}
.y1e6{bottom:461.759693pt;}
.y10a{bottom:462.720000pt;}
.y16c{bottom:464.799867pt;}
.yd6{bottom:467.200107pt;}
.yd8{bottom:467.200133pt;}
.y192{bottom:468.959867pt;}
.y14{bottom:470.239867pt;}
.yd5{bottom:470.400107pt;}
.yaa{bottom:472.960600pt;}
.y1e5{bottom:475.039907pt;}
.y1b8{bottom:476.480400pt;}
.y16b{bottom:480.640000pt;}
.y191{bottom:484.800000pt;}
.y7f{bottom:485.280813pt;}
.y109{bottom:485.920000pt;}
.y13{bottom:486.239867pt;}
.y1e4{bottom:488.319600pt;}
.y42{bottom:492.159520pt;}
.y1b7{bottom:492.320000pt;}
.ya9{bottom:498.720467pt;}
.yd4{bottom:501.919840pt;}
.y12{bottom:502.080000pt;}
.y7e{bottom:508.000600pt;}
.y1b6{bottom:508.319600pt;}
.y108{bottom:508.959693pt;}
.y107{bottom:508.960000pt;}
.y1e3{bottom:513.280000pt;}
.y7d{bottom:513.280813pt;}
.y11{bottom:518.080000pt;}
.yd2{bottom:521.280160pt;}
.y1b5{bottom:524.319600pt;}
.y152{bottom:524.320000pt;}
.ya8{bottom:524.480333pt;}
.y1e2{bottom:526.559693pt;}
.yd1{bottom:530.080147pt;}
.yd3{bottom:530.080213pt;}
.y41{bottom:531.039787pt;}
.yd0{bottom:533.440040pt;}
.y190{bottom:533.600000pt;}
.y10{bottom:534.080227pt;}
.y1e1{bottom:539.839907pt;}
.y1b4{bottom:540.159733pt;}
.y7c{bottom:540.640680pt;}
.y106{bottom:546.079960pt;}
.yf{bottom:549.920360pt;}
.ya7{bottom:550.080333pt;}
.y1e0{bottom:553.120120pt;}
.y18f{bottom:553.120213pt;}
.y1b3{bottom:556.159733pt;}
.y18e{bottom:556.640000pt;}
.y40{bottom:558.399653pt;}
.y79{bottom:562.560360pt;}
.ycf{bottom:564.159773pt;}
.ye{bottom:565.920360pt;}
.y1df{bottom:566.399813pt;}
.y7a{bottom:571.360360pt;}
.y7b{bottom:571.360413pt;}
.y1b2{bottom:572.159733pt;}
.y78{bottom:574.560360pt;}
.ya6{bottom:575.840200pt;}
.y18d{bottom:576.320213pt;}
.y1de{bottom:579.680027pt;}
.y18c{bottom:579.840000pt;}
.y3f{bottom:581.439720pt;}
.y138{bottom:581.599867pt;}
.yd{bottom:581.920360pt;}
.yce{bottom:582.880093pt;}
.y105{bottom:583.679960pt;}
.y3e{bottom:585.119933pt;}
.y1b1{bottom:587.999867pt;}
.ya5{bottom:591.200067pt;}
.ya4{bottom:591.200093pt;}
.ycd{bottom:591.680147pt;}
.y3c{bottom:592.959600pt;}
.y1dd{bottom:592.959720pt;}
.y3d{bottom:597.439760pt;}
.yc{bottom:597.759960pt;}
.y75{bottom:598.720667pt;}
.ya3{bottom:599.040253pt;}
.y18b{bottom:599.520213pt;}
.y104{bottom:599.679960pt;}
.y18a{bottom:603.040000pt;}
.y1b0{bottom:603.999867pt;}
.ycc{bottom:605.759827pt;}
.y1dc{bottom:606.239933pt;}
.y76{bottom:607.520720pt;}
.y77{bottom:607.520733pt;}
.y74{bottom:610.880560pt;}
.y103{bottom:613.280000pt;}
.yb{bottom:613.759960pt;}
.y102{bottom:616.480000pt;}
.y1db{bottom:619.520147pt;}
.y1af{bottom:619.840000pt;}
.y101{bottom:621.119733pt;}
.y189{bottom:622.720213pt;}
.y188{bottom:626.240000pt;}
.ycb{bottom:626.559827pt;}
.y3b{bottom:627.679867pt;}
.ya{bottom:629.759960pt;}
.y1da{bottom:632.799840pt;}
.ya2{bottom:633.280387pt;}
.y6c{bottom:634.880453pt;}
.y70{bottom:634.880507pt;}
.y137{bottom:637.599867pt;}
.yca{bottom:642.399960pt;}
.y3a{bottom:643.520000pt;}
.y1ae{bottom:643.840000pt;}
.y6e{bottom:643.840360pt;}
.y6f{bottom:643.840373pt;}
.y72{bottom:643.840413pt;}
.y73{bottom:643.840427pt;}
.y187{bottom:645.920213pt;}
.y1d9{bottom:646.080053pt;}
.y6b{bottom:647.040320pt;}
.y6d{bottom:647.040347pt;}
.y71{bottom:647.040400pt;}
.y100{bottom:648.159867pt;}
.y186{bottom:649.440000pt;}
.y136{bottom:653.440000pt;}
.y9{bottom:653.600093pt;}
.y1d8{bottom:659.359747pt;}
.y39{bottom:659.520400pt;}
.ya1{bottom:659.680387pt;}
.yff{bottom:664.000000pt;}
.yc9{bottom:664.959853pt;}
.yc8{bottom:665.120267pt;}
.yc7{bottom:668.799960pt;}
.y184{bottom:668.959693pt;}
.y185{bottom:668.960000pt;}
.y67{bottom:671.200080pt;}
.y69{bottom:671.200133pt;}
.y183{bottom:672.480000pt;}
.y1d7{bottom:672.639960pt;}
.y38{bottom:675.360000pt;}
.yfe{bottom:676.320307pt;}
.yfd{bottom:679.999867pt;}
.y9f{bottom:680.000067pt;}
.y68{bottom:680.000133pt;}
.y6a{bottom:680.000187pt;}
.y66{bottom:683.200080pt;}
.y1d6{bottom:685.920173pt;}
.ya0{bottom:688.800120pt;}
.yc6{bottom:689.440067pt;}
.y37{bottom:691.359867pt;}
.y9e{bottom:692.000067pt;}
.yc5{bottom:692.799960pt;}
.y11c{bottom:694.400000pt;}
.yfc{bottom:695.999867pt;}
.y1d5{bottom:699.199867pt;}
.y182{bottom:706.080000pt;}
.y36{bottom:707.359867pt;}
.yfb{bottom:711.840133pt;}
.y1d4{bottom:712.640000pt;}
.y151{bottom:714.720267pt;}
.yc4{bottom:716.799960pt;}
.y65{bottom:717.440213pt;}
.y8{bottom:721.440227pt;}
.y35{bottom:723.200000pt;}
.yfa{bottom:724.159920pt;}
.y9d{bottom:725.280333pt;}
.y1d3{bottom:725.920213pt;}
.yf9{bottom:727.840133pt;}
.y64{bottom:733.280347pt;}
.y7{bottom:734.880360pt;}
.yc2{bottom:736.800000pt;}
.y1d2{bottom:739.199907pt;}
.y34{bottom:739.200000pt;}
.yc3{bottom:745.599960pt;}
.y99{bottom:746.400013pt;}
.y6{bottom:748.160053pt;}
.yc1{bottom:748.800000pt;}
.y1d1{bottom:752.480120pt;}
.yf8{bottom:752.480267pt;}
.y33{bottom:755.199733pt;}
.y9b{bottom:755.200013pt;}
.y9c{bottom:755.200067pt;}
.yf7{bottom:755.680267pt;}
.y63{bottom:757.280320pt;}
.y9a{bottom:758.400013pt;}
.y62{bottom:760.640213pt;}
.y5{bottom:761.440267pt;}
.y1d0{bottom:765.759813pt;}
.y181{bottom:769.760000pt;}
.y32{bottom:771.039867pt;}
.yf6{bottom:773.119853pt;}
.y150{bottom:773.440000pt;}
.yf5{bottom:776.480267pt;}
.y98{bottom:776.480280pt;}
.y1cf{bottom:779.040027pt;}
.yc0{bottom:780.319733pt;}
.y61{bottom:784.480320pt;}
.y31{bottom:787.039867pt;}
.y60{bottom:787.840213pt;}
.y97{bottom:788.319867pt;}
.y14f{bottom:789.440000pt;}
.y1ce{bottom:792.319720pt;}
.y180{bottom:792.960000pt;}
.yf3{bottom:795.200000pt;}
.y4{bottom:797.600133pt;}
.yf4{bottom:800.959893pt;}
.yf2{bottom:800.960240pt;}
.y30{bottom:802.880000pt;}
.ybf{bottom:802.880133pt;}
.yf1{bottom:804.320133pt;}
.y1cd{bottom:805.599933pt;}
.y5e{bottom:811.840267pt;}
.y96{bottom:814.240133pt;}
.y17f{bottom:816.000000pt;}
.y2f{bottom:818.880000pt;}
.ybe{bottom:818.880133pt;}
.y1cc{bottom:818.880147pt;}
.y5f{bottom:820.640213pt;}
.y5d{bottom:823.840267pt;}
.y1cb{bottom:832.159840pt;}
.yef{bottom:832.320000pt;}
.y95{bottom:832.959867pt;}
.ybd{bottom:834.880133pt;}
.y2e{bottom:834.880400pt;}
.y94{bottom:836.159867pt;}
.y3{bottom:837.440267pt;}
.yee{bottom:838.240000pt;}
.yf0{bottom:838.240307pt;}
.y17e{bottom:839.200000pt;}
.y14e{bottom:840.480213pt;}
.yed{bottom:841.440000pt;}
.y14d{bottom:844.000000pt;}
.y1ca{bottom:845.440053pt;}
.ybc{bottom:850.719733pt;}
.y2d{bottom:850.720000pt;}
.y93{bottom:853.599973pt;}
.y5c{bottom:855.520000pt;}
.y2{bottom:856.160000pt;}
.y92{bottom:856.959867pt;}
.y1c9{bottom:858.719747pt;}
.y5b{bottom:858.720000pt;}
.y17c{bottom:862.400000pt;}
.y17d{bottom:862.400213pt;}
.y14c{bottom:863.680000pt;}
.y14b{bottom:863.680213pt;}
.ybb{bottom:866.719733pt;}
.y2c{bottom:866.720000pt;}
.y14a{bottom:867.200000pt;}
.yec{bottom:868.319733pt;}
.yeb{bottom:871.519733pt;}
.y1c8{bottom:871.999960pt;}
.y5a{bottom:874.719733pt;}
.y2b{bottom:882.719733pt;}
.y11b{bottom:884.800000pt;}
.y1c7{bottom:885.280173pt;}
.y2a{bottom:898.559867pt;}
.y17b{bottom:899.519733pt;}
.y149{bottom:900.800000pt;}
.y29{bottom:930.400000pt;}
.h55{height:0.506667pt;}
.h32{height:5.437701pt;}
.h54{height:11.367606pt;}
.h53{height:12.958238pt;}
.h11{height:13.756421pt;}
.h7{height:27.895400pt;}
.h5e{height:30.435193pt;}
.h46{height:30.839020pt;}
.h3{height:31.880440pt;}
.h2c{height:36.503113pt;}
.h2{height:37.193856pt;}
.h4c{height:37.512660pt;}
.h51{height:38.044001pt;}
.h59{height:38.774547pt;}
.h4{height:39.850560pt;}
.h5{height:39.851093pt;}
.h14{height:39.851520pt;}
.h8{height:39.851627pt;}
.h5b{height:39.852160pt;}
.h5d{height:42.759587pt;}
.h5c{height:42.761667pt;}
.h58{height:44.918167pt;}
.h28{height:45.004510pt;}
.h2b{height:45.006590pt;}
.h2a{height:45.646217pt;}
.h6{height:45.756421pt;}
.h44{height:45.756954pt;}
.h9{height:46.395994pt;}
.h50{height:47.094547pt;}
.h4f{height:47.094973pt;}
.h4e{height:47.734120pt;}
.h37{height:48.314767pt;}
.h25{height:48.316847pt;}
.h1c{height:48.316901pt;}
.h45{height:48.376627pt;}
.h21{height:48.956421pt;}
.h12{height:49.655827pt;}
.h17{height:50.312660pt;}
.h20{height:50.952234pt;}
.h13{height:52.650560pt;}
.h10{height:53.290133pt;}
.h42{height:53.292213pt;}
.h57{height:53.878593pt;}
.h4d{height:53.928853pt;}
.h49{height:53.929707pt;}
.h4a{height:53.930560pt;}
.h4b{height:53.931787pt;}
.h5a{height:53.933013pt;}
.h38{height:54.569333pt;}
.hb{height:54.571413pt;}
.h31{height:55.210987pt;}
.h23{height:58.556421pt;}
.h24{height:58.633514pt;}
.hf{height:59.195994pt;}
.h30{height:60.475194pt;}
.h43{height:60.477274pt;}
.h2f{height:61.116847pt;}
.h1d{height:61.116901pt;}
.h1a{height:61.756421pt;}
.h1f{height:61.756474pt;}
.h22{height:61.756634pt;}
.h56{height:61.816253pt;}
.h2e{height:62.455827pt;}
.h48{height:71.210933pt;}
.h29{height:75.895400pt;}
.h26{height:77.004297pt;}
.h3e{height:77.006430pt;}
.ha{height:78.397914pt;}
.h47{height:79.734973pt;}
.h40{height:84.795994pt;}
.h1e{height:85.435781pt;}
.h3c{height:85.437647pt;}
.hc{height:85.929760pt;}
.h15{height:86.075354pt;}
.h18{height:86.077487pt;}
.h3b{height:89.129707pt;}
.h3f{height:89.131787pt;}
.h3d{height:89.804670pt;}
.h41{height:90.446323pt;}
.h39{height:90.446430pt;}
.hd{height:91.726537pt;}
.h16{height:96.316634pt;}
.h19{height:96.956634pt;}
.h2d{height:97.655667pt;}
.h36{height:98.295613pt;}
.h33{height:98.875141pt;}
.h34{height:98.875407pt;}
.h35{height:98.877274pt;}
.h1b{height:98.877487pt;}
.h1{height:104.687500pt;}
.h27{height:108.364830pt;}
.he{height:108.365150pt;}
.h3a{height:113.485897pt;}
.h52{height:184.200000pt;}
.h0{height:1056.000000pt;}
.w1{width:245.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6c{left:12.351733pt;}
.x7a{left:14.203733pt;}
.x6b{left:15.510400pt;}
.x78{left:17.253067pt;}
.x6e{left:18.221333pt;}
.x79{left:20.934400pt;}
.x6f{left:22.160000pt;}
.x70{left:25.002667pt;}
.x69{left:35.959733pt;}
.x1{left:42.666667pt;}
.x71{left:46.476000pt;}
.x72{left:57.459733pt;}
.x73{left:61.519733pt;}
.x74{left:95.527733pt;}
.x6a{left:124.590533pt;}
.x8{left:130.079333pt;}
.x81{left:135.679867pt;}
.x75{left:137.653067pt;}
.x16{left:139.199787pt;}
.x56{left:141.118069pt;}
.x7{left:145.919200pt;}
.x82{left:153.279867pt;}
.x4d{left:159.678544pt;}
.x1d{left:161.918413pt;}
.x7d{left:166.400000pt;}
.x76{left:171.663733pt;}
.x4e{left:173.918131pt;}
.x5{left:177.760000pt;}
.x62{left:180.480381pt;}
.xd{left:181.599904pt;}
.x3{left:189.919867pt;}
.x6d{left:195.030400pt;}
.x41{left:220.638160pt;}
.x3d{left:222.878453pt;}
.x64{left:227.360000pt;}
.x2{left:229.760000pt;}
.x42{left:231.678261pt;}
.x3f{left:233.598453pt;}
.x35{left:244.479600pt;}
.x3a{left:251.678699pt;}
.x36{left:255.519181pt;}
.x3b{left:259.038605pt;}
.x38{left:260.799096pt;}
.x51{left:266.397819pt;}
.x1a{left:268.959280pt;}
.x45{left:272.478045pt;}
.x34{left:274.874720pt;}
.xf{left:276.959560pt;}
.x17{left:279.839813pt;}
.x24{left:281.118469pt;}
.x15{left:285.120000pt;}
.x3e{left:286.558160pt;}
.x1e{left:290.078733pt;}
.x4f{left:292.798005pt;}
.x5b{left:294.719707pt;}
.x33{left:296.154733pt;}
.x43{left:298.238149pt;}
.x4{left:301.280267pt;}
.x2e{left:305.278357pt;}
.x5f{left:312.640000pt;}
.x25{left:317.118456pt;}
.x1f{left:322.398528pt;}
.x67{left:323.360000pt;}
.xb{left:324.960141pt;}
.x5c{left:329.280067pt;}
.x46{left:332.957733pt;}
.x18{left:335.039773pt;}
.xa{left:336.000195pt;}
.x31{left:337.438179pt;}
.x61{left:338.880635pt;}
.x4b{left:341.759456pt;}
.x11{left:344.638840pt;}
.xc{left:346.400243pt;}
.x58{left:347.680440pt;}
.x6{left:349.279333pt;}
.x12{left:351.998747pt;}
.x52{left:353.597880pt;}
.x57{left:354.559827pt;}
.x7e{left:356.160000pt;}
.x7f{left:357.440000pt;}
.x80{left:364.159867pt;}
.x13{left:365.118533pt;}
.x68{left:373.920000pt;}
.x5e{left:375.519173pt;}
.x40{left:380.318333pt;}
.x53{left:383.037960pt;}
.x7b{left:388.960037pt;}
.x77{left:389.919733pt;}
.x47{left:393.757733pt;}
.x2a{left:395.678435pt;}
.x4c{left:397.439691pt;}
.x9{left:400.320267pt;}
.x60{left:407.520000pt;}
.x32{left:409.436645pt;}
.x2f{left:412.638232pt;}
.x14{left:413.758627pt;}
.x4a{left:414.719101pt;}
.x1c{left:419.358907pt;}
.x20{left:424.958395pt;}
.x5d{left:432.319853pt;}
.x48{left:434.719507pt;}
.x1b{left:436.799293pt;}
.x2b{left:444.158123pt;}
.x37{left:445.919043pt;}
.x63{left:448.319344pt;}
.x5a{left:450.559813pt;}
.x54{left:457.117587pt;}
.x59{left:459.040000pt;}
.x44{left:461.117837pt;}
.x21{left:464.958408pt;}
.x39{left:475.358832pt;}
.x26{left:476.638757pt;}
.x65{left:480.959896pt;}
.x27{left:491.998624pt;}
.x49{left:494.719453pt;}
.x19{left:509.599613pt;}
.x10{left:511.199400pt;}
.x22{left:513.758376pt;}
.x30{left:515.517699pt;}
.x2c{left:517.438317pt;}
.x55{left:519.357640pt;}
.xe{left:525.919627pt;}
.x3c{left:534.078453pt;}
.x28{left:537.758512pt;}
.x66{left:546.399792pt;}
.x2d{left:554.078411pt;}
.x50{left:563.197819pt;}
.x7c{left:611.840312pt;}
.x23{left:615.998469pt;}
.x29{left:627.358499pt;}
}




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