
    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_cf6f2b066bc5cdcb549982d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_f8cf562edaff9d4a2ff512c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4e806d295fc371ef14e963a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_395076df6aeb0f143f5fb5ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b158bd4bffc5ad7f80862d2d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.457000;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_e238c049333eff310f97db98.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fc52abadfe17613ef562f758.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_a4bc5a02b138b58d4d974203.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.508000;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_472c5be527e4b7c637facfac.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ce99b811a1b684a3c95cb572.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.131000;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_05015593051878f503abd3c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;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_49ec49ec21a10bbb6a45ba8a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.545000;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_a37cc38022a0ee42aef7da02.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.264000;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_cc21003d4b43243acd5c14b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.279000;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;}
.m8{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);}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-1.740462px;}
.ls7{letter-spacing:-1.322987px;}
.ls61{letter-spacing:-1.240667px;}
.ls2d{letter-spacing:-1.205388px;}
.ls20{letter-spacing:-1.193628px;}
.ls23{letter-spacing:-1.164228px;}
.ls60{letter-spacing:-1.123069px;}
.ls30{letter-spacing:-1.117189px;}
.ls19{letter-spacing:-1.111309px;}
.ls2f{letter-spacing:-1.105429px;}
.ls13{letter-spacing:-1.099549px;}
.lsd{letter-spacing:-1.093663px;}
.ls2c{letter-spacing:-1.087789px;}
.ls1d{letter-spacing:-1.081909px;}
.lsc{letter-spacing:-1.076029px;}
.ls5{letter-spacing:-1.070149px;}
.ls10{letter-spacing:-1.064269px;}
.ls1c{letter-spacing:-1.058389px;}
.lsb{letter-spacing:-1.052509px;}
.ls9{letter-spacing:-1.046629px;}
.ls2e{letter-spacing:-1.040749px;}
.ls24{letter-spacing:-1.034869px;}
.lsf{letter-spacing:-1.028990px;}
.ls11{letter-spacing:-1.023110px;}
.ls8{letter-spacing:-1.017230px;}
.ls66{letter-spacing:-1.011350px;}
.ls1b{letter-spacing:-0.999590px;}
.lsa{letter-spacing:-0.987830px;}
.ls12{letter-spacing:-0.981950px;}
.lse{letter-spacing:-0.970190px;}
.ls1a{letter-spacing:-0.905511px;}
.ls6{letter-spacing:-0.854438px;}
.ls21{letter-spacing:-0.829072px;}
.ls68{letter-spacing:-0.770272px;}
.ls46{letter-spacing:-0.014400px;}
.ls47{letter-spacing:-0.009600px;}
.ls44{letter-spacing:-0.005400px;}
.ls45{letter-spacing:-0.004800px;}
.ls4{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.044968px;}
.ls70{letter-spacing:0.045032px;}
.ls4a{letter-spacing:0.117613px;}
.ls31{letter-spacing:0.176371px;}
.ls2{letter-spacing:0.176400px;}
.ls16{letter-spacing:0.176402px;}
.ls35{letter-spacing:0.529200px;}
.ls43{letter-spacing:0.535075px;}
.ls59{letter-spacing:0.548993px;}
.ls58{letter-spacing:0.553493px;}
.ls56{letter-spacing:0.557993px;}
.ls5c{letter-spacing:0.566992px;}
.ls63{letter-spacing:0.576234px;}
.ls5b{letter-spacing:0.580492px;}
.ls5a{letter-spacing:0.589492px;}
.ls5e{letter-spacing:0.593992px;}
.ls40{letter-spacing:0.599754px;}
.ls5d{letter-spacing:0.607492px;}
.ls3b{letter-spacing:0.611514px;}
.ls3d{letter-spacing:0.623274px;}
.ls3c{letter-spacing:0.629154px;}
.ls3e{letter-spacing:0.640913px;}
.ls32{letter-spacing:0.646793px;}
.ls6a{letter-spacing:0.656991px;}
.ls64{letter-spacing:0.658553px;}
.ls62{letter-spacing:0.664433px;}
.ls3f{letter-spacing:0.670313px;}
.ls73{letter-spacing:0.670491px;}
.ls55{letter-spacing:0.682067px;}
.ls33{letter-spacing:0.711473px;}
.ls69{letter-spacing:0.737990px;}
.ls53{letter-spacing:0.823153px;}
.ls34{letter-spacing:0.823213px;}
.ls37{letter-spacing:0.882000px;}
.ls6b{letter-spacing:1.214984px;}
.ls6d{letter-spacing:1.228484px;}
.ls6e{letter-spacing:1.241983px;}
.ls6c{letter-spacing:1.394980px;}
.ls57{letter-spacing:9.620942px;}
.ls25{letter-spacing:11.113051px;}
.ls26{letter-spacing:11.289492px;}
.ls4b{letter-spacing:11.583437px;}
.ls28{letter-spacing:11.583492px;}
.ls2b{letter-spacing:11.759905px;}
.ls0{letter-spacing:11.820120px;}
.ls17{letter-spacing:11.877497px;}
.ls29{letter-spacing:11.936292px;}
.ls1{letter-spacing:12.180060px;}
.ls5f{letter-spacing:14.541092px;}
.ls4e{letter-spacing:15.087911px;}
.ls4d{letter-spacing:15.381911px;}
.ls18{letter-spacing:16.200000px;}
.ls67{letter-spacing:16.575551px;}
.ls65{letter-spacing:17.539861px;}
.ls27{letter-spacing:17.698618px;}
.ls49{letter-spacing:17.992618px;}
.ls2a{letter-spacing:18.227820px;}
.ls72{letter-spacing:18.515280px;}
.ls4c{letter-spacing:18.698158px;}
.ls71{letter-spacing:18.998747px;}
.ls15{letter-spacing:19.051018px;}
.ls4f{letter-spacing:20.520971px;}
.ls1e{letter-spacing:21.050158px;}
.ls3{letter-spacing:22.226171px;}
.ls41{letter-spacing:22.578971px;}
.ls42{letter-spacing:22.872971px;}
.ls54{letter-spacing:23.214011px;}
.ls22{letter-spacing:27.665118px;}
.ls52{letter-spacing:28.576498px;}
.ls36{letter-spacing:29.693651px;}
.ls38{letter-spacing:29.693711px;}
.ls3a{letter-spacing:30.034751px;}
.ls39{letter-spacing:30.046511px;}
.ls51{letter-spacing:32.398451px;}
.ls50{letter-spacing:32.398511px;}
.ls14{letter-spacing:35.456051px;}
.ls48{letter-spacing:330.442269px;}
.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;}
}
.wsb8{word-spacing:-27.723917px;}
.ws1a3{word-spacing:-19.043746px;}
.ws1ad{word-spacing:-18.577080px;}
.ws179{word-spacing:-17.598660px;}
.ws18d{word-spacing:-16.634350px;}
.ws158{word-spacing:-14.599891px;}
.ws1ba{word-spacing:-0.715490px;}
.ws11e{word-spacing:-0.593874px;}
.ws19{word-spacing:-0.061800px;}
.ws12{word-spacing:-0.060001px;}
.ws24{word-spacing:-0.058799px;}
.ws5e{word-spacing:-0.055201px;}
.ws8c{word-spacing:-0.054000px;}
.ws3f{word-spacing:-0.047999px;}
.ws3a{word-spacing:-0.044999px;}
.ws35{word-spacing:-0.041999px;}
.ws40{word-spacing:0.000000px;}
.ws190{word-spacing:0.711473px;}
.wsb7{word-spacing:0.770272px;}
.wsd4{word-spacing:1.052509px;}
.wsbb{word-spacing:1.105429px;}
.ws164{word-spacing:1.181868px;}
.ws21{word-spacing:1.264187px;}
.ws195{word-spacing:8.221390px;}
.ws133{word-spacing:9.167885px;}
.ws97{word-spacing:9.263884px;}
.ws16c{word-spacing:10.525093px;}
.ws1b3{word-spacing:10.889855px;}
.ws1bb{word-spacing:11.024853px;}
.wse4{word-spacing:11.054300px;}
.ws1b5{word-spacing:11.069852px;}
.ws1b4{word-spacing:11.204851px;}
.wseb{word-spacing:11.230685px;}
.ws78{word-spacing:11.583482px;}
.ws14{word-spacing:11.640116px;}
.ws79{word-spacing:11.701081px;}
.ws88{word-spacing:11.877479px;}
.ws39{word-spacing:11.879842px;}
.ws13d{word-spacing:11.936278px;}
.ws36{word-spacing:12.305824px;}
.ws12a{word-spacing:12.335846px;}
.ws31{word-spacing:12.431822px;}
.ws37{word-spacing:12.515821px;}
.ws38{word-spacing:12.599820px;}
.wsdb{word-spacing:12.659511px;}
.ws34{word-spacing:12.683819px;}
.ws136{word-spacing:12.725818px;}
.ws33{word-spacing:12.809817px;}
.ws70{word-spacing:12.818269px;}
.ws32{word-spacing:12.893816px;}
.ws1af{word-spacing:13.184824px;}
.ws1b6{word-spacing:13.229764px;}
.ws1b2{word-spacing:13.229824px;}
.ws1b1{word-spacing:13.274766px;}
.ws1a7{word-spacing:13.274823px;}
.ws3c{word-spacing:13.319822px;}
.ws1b0{word-spacing:13.364822px;}
.ws1aa{word-spacing:13.409821px;}
.ws192{word-spacing:13.454821px;}
.ws1a1{word-spacing:13.499820px;}
.ws1a8{word-spacing:13.544819px;}
.ws197{word-spacing:13.544852px;}
.ws198{word-spacing:13.589819px;}
.ws193{word-spacing:13.589843px;}
.ws1a6{word-spacing:13.634818px;}
.ws3b{word-spacing:13.679818px;}
.ws146{word-spacing:13.679829px;}
.ws1a9{word-spacing:13.724817px;}
.ws199{word-spacing:13.769816px;}
.ws99{word-spacing:13.775828px;}
.ws1ac{word-spacing:13.814816px;}
.ws1ab{word-spacing:13.859815px;}
.ws3e{word-spacing:13.871827px;}
.ws94{word-spacing:13.919826px;}
.ws1ae{word-spacing:13.949814px;}
.ws92{word-spacing:13.967825px;}
.ws8e{word-spacing:14.015825px;}
.ws12e{word-spacing:14.025425px;}
.ws96{word-spacing:14.063824px;}
.ws135{word-spacing:14.073424px;}
.ws9b{word-spacing:14.111771px;}
.ws93{word-spacing:14.111824px;}
.ws3d{word-spacing:14.111831px;}
.ws9a{word-spacing:14.159823px;}
.ws134{word-spacing:14.164623px;}
.ws12f{word-spacing:14.169423px;}
.wsc5{word-spacing:14.207822px;}
.ws12c{word-spacing:14.212622px;}
.ws12d{word-spacing:14.222222px;}
.ws8f{word-spacing:14.255822px;}
.ws130{word-spacing:14.265422px;}
.ws144{word-spacing:14.303821px;}
.ws98{word-spacing:14.351821px;}
.ws95{word-spacing:14.399820px;}
.ws132{word-spacing:14.404620px;}
.ws143{word-spacing:14.447819px;}
.ws147{word-spacing:14.495819px;}
.ws131{word-spacing:14.591818px;}
.ws16e{word-spacing:14.817449px;}
.wsab{word-spacing:14.876248px;}
.wsa3{word-spacing:14.993847px;}
.wse7{word-spacing:15.052646px;}
.wse8{word-spacing:15.170245px;}
.ws17b{word-spacing:15.229045px;}
.wsb2{word-spacing:15.405443px;}
.wsfd{word-spacing:15.523042px;}
.wsa8{word-spacing:15.817039px;}
.ws16f{word-spacing:15.875838px;}
.ws8b{word-spacing:16.092000px;}
.ws12b{word-spacing:16.151400px;}
.ws145{word-spacing:16.200000px;}
.wsf7{word-spacing:16.346233px;}
.wsd0{word-spacing:16.394578px;}
.wsd3{word-spacing:16.410913px;}
.ws42{word-spacing:16.428552px;}
.wscc{word-spacing:16.463832px;}
.ws1a2{word-spacing:16.514780px;}
.wsa4{word-spacing:16.522631px;}
.ws7c{word-spacing:16.560180px;}
.ws1a5{word-spacing:16.667778px;}
.wsf1{word-spacing:16.670581px;}
.ws155{word-spacing:16.681390px;}
.ws1a4{word-spacing:16.771276px;}
.wsdc{word-spacing:16.787229px;}
.wse2{word-spacing:16.836183px;}
.ws5d{word-spacing:16.840148px;}
.wsc7{word-spacing:16.846028px;}
.wsf2{word-spacing:16.891384px;}
.wscf{word-spacing:16.951867px;}
.wsca{word-spacing:16.981267px;}
.ws19d{word-spacing:17.081772px;}
.ws156{word-spacing:17.092986px;}
.ws17c{word-spacing:17.110625px;}
.ws19e{word-spacing:17.122272px;}
.ws19f{word-spacing:17.135772px;}
.ws19a{word-spacing:17.140271px;}
.ws170{word-spacing:17.169425px;}
.ws153{word-spacing:17.228224px;}
.ws18c{word-spacing:17.287024px;}
.ws1b8{word-spacing:17.315769px;}
.ws19b{word-spacing:17.329269px;}
.wsf0{word-spacing:17.345823px;}
.ws196{word-spacing:17.360769px;}
.ws1b9{word-spacing:17.392268px;}
.wsba{word-spacing:17.404622px;}
.ws194{word-spacing:17.441767px;}
.ws71{word-spacing:17.463422px;}
.ws14c{word-spacing:17.522221px;}
.ws19c{word-spacing:17.522766px;}
.ws1f{word-spacing:17.581021px;}
.ws1a0{word-spacing:17.581266px;}
.wsf5{word-spacing:17.639820px;}
.wsc2{word-spacing:17.645700px;}
.wsd5{word-spacing:17.692739px;}
.ws7b{word-spacing:17.698619px;}
.ws138{word-spacing:17.757419px;}
.wsf4{word-spacing:17.816218px;}
.wsd{word-spacing:17.820178px;}
.wsfa{word-spacing:17.875018px;}
.ws64{word-spacing:17.933817px;}
.ws11{word-spacing:17.940179px;}
.ws11b{word-spacing:17.992616px;}
.wse{word-spacing:18.000180px;}
.ws86{word-spacing:18.051416px;}
.wsc9{word-spacing:18.092575px;}
.wsa1{word-spacing:18.110215px;}
.ws10{word-spacing:18.120181px;}
.wse6{word-spacing:18.169015px;}
.wsb{word-spacing:18.180170px;}
.ws9{word-spacing:18.180182px;}
.ws15{word-spacing:18.180188px;}
.ws16{word-spacing:18.240167px;}
.wsc{word-spacing:18.240182px;}
.ws66{word-spacing:18.286613px;}
.wsa{word-spacing:18.300183px;}
.wsf{word-spacing:18.300187px;}
.ws13{word-spacing:18.360162px;}
.ws8{word-spacing:18.360184px;}
.ws16d{word-spacing:18.404212px;}
.ws17{word-spacing:18.420147px;}
.ws18{word-spacing:18.420184px;}
.ws6f{word-spacing:18.463012px;}
.ws191{word-spacing:18.478200px;}
.ws15b{word-spacing:18.504171px;}
.ws81{word-spacing:18.521811px;}
.ws14f{word-spacing:18.580610px;}
.ws10a{word-spacing:18.580634px;}
.ws7{word-spacing:18.600220px;}
.ws6c{word-spacing:18.698209px;}
.wsc8{word-spacing:18.727609px;}
.ws14e{word-spacing:18.757009px;}
.ws15a{word-spacing:18.804048px;}
.wsea{word-spacing:18.815808px;}
.ws55{word-spacing:18.874607px;}
.ws51{word-spacing:18.933407px;}
.wsa6{word-spacing:18.992206px;}
.wse9{word-spacing:19.051006px;}
.wsda{word-spacing:19.109805px;}
.ws44{word-spacing:19.168604px;}
.wsc0{word-spacing:19.403802px;}
.ws63{word-spacing:19.462601px;}
.ws50{word-spacing:19.580200px;}
.ws6{word-spacing:19.734179px;}
.ws128{word-spacing:19.756598px;}
.ws5{word-spacing:19.800180px;}
.ws68{word-spacing:19.815398px;}
.wsc1{word-spacing:19.821278px;}
.ws174{word-spacing:19.833038px;}
.ws129{word-spacing:19.874197px;}
.ws4{word-spacing:19.932181px;}
.ws168{word-spacing:19.932997px;}
.wsbc{word-spacing:19.985916px;}
.wsed{word-spacing:20.109395px;}
.ws105{word-spacing:20.168194px;}
.ws59{word-spacing:20.226994px;}
.wsec{word-spacing:20.344592px;}
.ws41{word-spacing:20.397512px;}
.ws181{word-spacing:20.403392px;}
.wsbf{word-spacing:20.426912px;}
.ws18e{word-spacing:20.432792px;}
.ws5f{word-spacing:20.462191px;}
.ws189{word-spacing:20.491591px;}
.ws113{word-spacing:20.520991px;}
.ws46{word-spacing:20.579790px;}
.ws16b{word-spacing:20.638589px;}
.ws127{word-spacing:20.697389px;}
.wsf3{word-spacing:20.756188px;}
.ws188{word-spacing:20.820868px;}
.ws137{word-spacing:20.873787px;}
.ws56{word-spacing:20.891427px;}
.ws43{word-spacing:20.932586px;}
.ws10d{word-spacing:21.050185px;}
.ws45{word-spacing:21.108985px;}
.ws84{word-spacing:21.226583px;}
.ws141{word-spacing:21.285383px;}
.ws58{word-spacing:21.314783px;}
.ws4b{word-spacing:21.344182px;}
.ws4a{word-spacing:21.461781px;}
.ws57{word-spacing:21.526460px;}
.ws9c{word-spacing:21.579380px;}
.wsd8{word-spacing:21.626419px;}
.wsa9{word-spacing:21.638179px;}
.ws85{word-spacing:21.873377px;}
.ws172{word-spacing:21.879257px;}
.ws17d{word-spacing:21.932176px;}
.wsd2{word-spacing:21.938056px;}
.ws142{word-spacing:21.990976px;}
.ws165{word-spacing:22.049775px;}
.ws10e{word-spacing:22.108574px;}
.wse1{word-spacing:22.226173px;}
.ws10f{word-spacing:22.284973px;}
.ws167{word-spacing:22.343772px;}
.ws14a{word-spacing:22.520170px;}
.ws67{word-spacing:22.578970px;}
.ws1d{word-spacing:22.637769px;}
.ws15e{word-spacing:22.773008px;}
.ws87{word-spacing:22.872967px;}
.ws125{word-spacing:22.978806px;}
.ws9e{word-spacing:22.990565px;}
.wsc6{word-spacing:23.019965px;}
.ws77{word-spacing:23.049365px;}
.ws13b{word-spacing:23.166964px;}
.wsb4{word-spacing:23.302202px;}
.ws5c{word-spacing:23.308082px;}
.ws175{word-spacing:23.308088px;}
.ws2b{word-spacing:23.431561px;}
.ws8a{word-spacing:23.460961px;}
.ws152{word-spacing:23.519760px;}
.wsef{word-spacing:23.578559px;}
.wsbd{word-spacing:23.590319px;}
.ws0{word-spacing:23.634000px;}
.ws72{word-spacing:23.637359px;}
.ws1c{word-spacing:23.696158px;}
.wsdf{word-spacing:23.754958px;}
.ws1b{word-spacing:23.931356px;}
.ws9f{word-spacing:23.990155px;}
.ws100{word-spacing:24.048955px;}
.ws2e{word-spacing:24.266512px;}
.ws166{word-spacing:24.284152px;}
.ws13e{word-spacing:24.342952px;}
.ws150{word-spacing:24.401751px;}
.wsb3{word-spacing:24.437031px;}
.ws11d{word-spacing:24.454670px;}
.ws52{word-spacing:24.460550px;}
.ws159{word-spacing:24.489950px;}
.ws60{word-spacing:24.519350px;}
.ws126{word-spacing:24.636949px;}
.ws61{word-spacing:24.754526px;}
.ws11c{word-spacing:24.754547px;}
.wscd{word-spacing:24.766307px;}
.wse0{word-spacing:24.813347px;}
.ws161{word-spacing:24.866266px;}
.ws112{word-spacing:24.872146px;}
.ws176{word-spacing:24.895672px;}
.ws111{word-spacing:24.930946px;}
.ws1a{word-spacing:25.048544px;}
.ws160{word-spacing:25.054424px;}
.ws114{word-spacing:25.166143px;}
.wse5{word-spacing:25.224943px;}
.ws120{word-spacing:25.242582px;}
.ws184{word-spacing:25.248462px;}
.ws101{word-spacing:25.342541px;}
.ws117{word-spacing:25.518940px;}
.wsaa{word-spacing:25.577739px;}
.ws177{word-spacing:25.624779px;}
.ws14b{word-spacing:25.636538px;}
.ws106{word-spacing:25.695338px;}
.ws124{word-spacing:25.730617px;}
.ws17a{word-spacing:25.812937px;}
.wsce{word-spacing:25.977575px;}
.ws6e{word-spacing:25.989335px;}
.ws7a{word-spacing:26.106934px;}
.ws2c{word-spacing:26.112814px;}
.ws173{word-spacing:26.118693px;}
.ws151{word-spacing:26.165733px;}
.wse3{word-spacing:26.224532px;}
.wsde{word-spacing:26.283332px;}
.ws4f{word-spacing:26.400931px;}
.wsee{word-spacing:26.459730px;}
.ws123{word-spacing:26.465610px;}
.wsd1{word-spacing:26.677288px;}
.ws140{word-spacing:26.753727px;}
.wsa2{word-spacing:26.812526px;}
.ws171{word-spacing:26.971285px;}
.ws20{word-spacing:27.000684px;}
.ws11f{word-spacing:27.083004px;}
.wsb1{word-spacing:27.106523px;}
.ws185{word-spacing:27.124163px;}
.ws103{word-spacing:27.165323px;}
.wsb0{word-spacing:27.282922px;}
.wsfe{word-spacing:27.341721px;}
.wsf6{word-spacing:27.400520px;}
.ws186{word-spacing:27.523999px;}
.ws162{word-spacing:27.665118px;}
.ws54{word-spacing:27.694517px;}
.wsa5{word-spacing:27.753317px;}
.wsc4{word-spacing:27.782716px;}
.wsd7{word-spacing:27.823876px;}
.ws110{word-spacing:27.870916px;}
.ws157{word-spacing:28.012034px;}
.ws5b{word-spacing:28.047314px;}
.wsc3{word-spacing:28.082593px;}
.ws53{word-spacing:28.106113px;}
.ws183{word-spacing:28.129633px;}
.wsb9{word-spacing:28.153153px;}
.wsfc{word-spacing:28.164913px;}
.wsd9{word-spacing:28.182552px;}
.ws6b{word-spacing:28.635308px;}
.ws27{word-spacing:28.652948px;}
.ws28{word-spacing:28.670582px;}
.wsf8{word-spacing:28.694107px;}
.ws6a{word-spacing:28.752907px;}
.ws14d{word-spacing:29.046904px;}
.ws18a{word-spacing:29.058663px;}
.ws2d{word-spacing:29.070423px;}
.ws82{word-spacing:29.105703px;}
.ws187{word-spacing:29.123343px;}
.ws80{word-spacing:29.282101px;}
.ws26{word-spacing:29.393820px;}
.ws48{word-spacing:29.399700px;}
.ws122{word-spacing:29.434980px;}
.ws30{word-spacing:29.546698px;}
.ws47{word-spacing:29.576098px;}
.wsac{word-spacing:29.693697px;}
.wsff{word-spacing:29.752496px;}
.ws76{word-spacing:29.870095px;}
.ws2f{word-spacing:29.911255px;}
.ws180{word-spacing:29.928895px;}
.ws6d{word-spacing:30.046493px;}
.ws5a{word-spacing:30.058253px;}
.wsb6{word-spacing:30.064133px;}
.ws10b{word-spacing:30.222892px;}
.ws1e{word-spacing:30.516889px;}
.ws178{word-spacing:30.575688px;}
.ws10c{word-spacing:30.693287px;}
.wsbe{word-spacing:30.775606px;}
.ws17e{word-spacing:31.163682px;}
.ws115{word-spacing:31.986874px;}
.ws116{word-spacing:32.045673px;}
.ws22{word-spacing:32.063313px;}
.ws16a{word-spacing:32.163272px;}
.wscb{word-spacing:32.457269px;}
.ws15f{word-spacing:32.480789px;}
.ws9d{word-spacing:32.516068px;}
.wsdd{word-spacing:32.574868px;}
.ws74{word-spacing:32.692466px;}
.wsa7{word-spacing:32.927664px;}
.ws154{word-spacing:33.221661px;}
.ws11a{word-spacing:33.280460px;}
.ws17f{word-spacing:33.398059px;}
.wsd6{word-spacing:33.574457px;}
.ws15d{word-spacing:33.603857px;}
.ws119{word-spacing:33.692056px;}
.wsae{word-spacing:33.750856px;}
.ws15c{word-spacing:33.862574px;}
.ws118{word-spacing:34.515248px;}
.wsf9{word-spacing:34.574047px;}
.ws23{word-spacing:34.856284px;}
.ws169{word-spacing:34.868044px;}
.ws25{word-spacing:35.032683px;}
.ws104{word-spacing:35.220841px;}
.ws4d{word-spacing:35.338439px;}
.ws4e{word-spacing:35.514838px;}
.ws29{word-spacing:35.544237px;}
.ws4c{word-spacing:35.808835px;}
.ws102{word-spacing:35.867634px;}
.ws2a{word-spacing:35.879394px;}
.ws163{word-spacing:35.914674px;}
.ws62{word-spacing:36.044032px;}
.ws109{word-spacing:36.220430px;}
.ws69{word-spacing:37.043622px;}
.ws18f{word-spacing:37.296459px;}
.wsaf{word-spacing:37.690415px;}
.ws139{word-spacing:37.866814px;}
.ws7f{word-spacing:38.102011px;}
.ws18b{word-spacing:38.172570px;}
.ws121{word-spacing:38.184330px;}
.wsa0{word-spacing:38.278409px;}
.ws65{word-spacing:38.513607px;}
.ws83{word-spacing:38.866403px;}
.ws108{word-spacing:39.101601px;}
.ws107{word-spacing:39.219200px;}
.ws73{word-spacing:39.336799px;}
.ws182{word-spacing:39.571996px;}
.ws13f{word-spacing:39.807194px;}
.wsb5{word-spacing:40.753864px;}
.wsfb{word-spacing:42.864763px;}
.ws1{word-spacing:42.912179px;}
.ws2{word-spacing:43.056179px;}
.ws3{word-spacing:43.200180px;}
.ws13a{word-spacing:43.981951px;}
.ws1b7{word-spacing:44.257657px;}
.ws7e{word-spacing:45.863532px;}
.wsad{word-spacing:45.981131px;}
.ws7d{word-spacing:46.216328px;}
.ws49{word-spacing:46.333927px;}
.ws13c{word-spacing:48.215508px;}
.ws75{word-spacing:48.509505px;}
.ws89{word-spacing:53.272256px;}
.ws149{word-spacing:260.396745px;}
.ws148{word-spacing:350.635617px;}
.ws8d{word-spacing:403.674935px;}
.ws91{word-spacing:403.674995px;}
.ws90{word-spacing:426.666648px;}
._31{margin-left:-28.507283px;}
._5f{margin-left:-18.757009px;}
._5e{margin-left:-16.816628px;}
._5c{margin-left:-15.640640px;}
._5d{margin-left:-14.523452px;}
._14{margin-left:-5.409545px;}
._33{margin-left:-4.293617px;}
._10{margin-left:-2.638409px;}
._a{margin-left:-1.029620px;}
._4{width:1.500015px;}
._9{width:2.587174px;}
._0{width:8.970000px;}
._18{width:11.407049px;}
._7{width:12.720189px;}
._c{width:13.745798px;}
._d{width:15.071816px;}
._6{width:17.160172px;}
._5{width:18.960190px;}
._e{width:20.579790px;}
._f{width:22.167374px;}
._11{width:23.548529px;}
._16{width:25.166143px;}
._8{width:26.518529px;}
._15{width:27.576919px;}
._b{width:28.658843px;}
._13{width:29.870095px;}
._32{width:30.898454px;}
._1{width:32.682000px;}
._17{width:34.367619px;}
._30{width:35.397239px;}
._19{width:36.926023px;}
._12{width:38.160811px;}
._35{width:39.390556px;}
._34{width:40.806784px;}
._3{width:44.064184px;}
._1a{width:47.097059px;}
._60{width:65.879122px;}
._4a{width:93.598830px;}
._43{width:109.534631px;}
._4f{width:126.896083px;}
._44{width:145.975768px;}
._4d{width:148.030150px;}
._3a{width:149.566130px;}
._47{width:152.542093px;}
._42{width:161.997975px;}
._3b{width:168.957888px;}
._38{width:171.741853px;}
._3f{width:174.573818px;}
._3d{width:193.101586px;}
._49{width:196.077549px;}
._1c{width:234.957063px;}
._41{width:243.683405px;}
._2a{width:254.792856px;}
._58{width:259.724753px;}
._27{width:268.268630px;}
._28{width:272.252581px;}
._40{width:276.303734px;}
._45{width:285.836415px;}
._50{width:300.754632px;}
._57{width:308.204101px;}
._1e{width:321.883960px;}
._59{width:331.819835px;}
._46{width:341.755744px;}
._55{width:350.155623px;}
._39{width:359.501112px;}
._48{width:363.979381px;}
._3e{width:382.521552px;}
._52{width:385.963046px;}
._2b{width:397.387016px;}
._56{width:399.307009px;}
._24{width:403.722935px;}
._3c{width:405.508521px;}
._23{width:419.322742px;}
._29{width:422.634701px;}
._26{width:426.714707px;}
._25{width:429.066620px;}
._37{width:433.208981px;}
._54{width:434.298571px;}
._5b{width:455.802286px;}
._51{width:467.840431px;}
._2c{width:470.394104px;}
._2d{width:502.217706px;}
._5a{width:546.425170px;}
._2e{width:556.889023px;}
._1b{width:652.167891px;}
._21{width:709.527175px;}
._22{width:713.511065px;}
._20{width:714.567052px;}
._1f{width:717.543014px;}
._1d{width:726.038968px;}
._36{width:730.881996px;}
._4b{width:1004.771364px;}
._4e{width:1026.755149px;}
._53{width:1049.410806px;}
._4c{width:1070.290616px;}
._2{width:1602.275940px;}
._2f{width:1737.002234px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:29.995200px;}
.fs7{font-size:39.194400px;}
.fs8{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs9{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y34{bottom:65.394090px;}
.y33{bottom:77.384925px;}
.y138{bottom:89.275065px;}
.y12f{bottom:89.287050px;}
.y12d{bottom:89.291415px;}
.y1fb{bottom:89.292645px;}
.y1bc{bottom:89.297025px;}
.ye5{bottom:89.297580px;}
.y11d{bottom:89.298855px;}
.y7f{bottom:89.305035px;}
.y12a{bottom:89.328270px;}
.yb4{bottom:89.335965px;}
.y11a{bottom:89.349735px;}
.y6f{bottom:89.351865px;}
.y141{bottom:89.358945px;}
.y32{bottom:89.375745px;}
.yc7{bottom:89.380080px;}
.y187{bottom:89.418900px;}
.y161{bottom:98.667375px;}
.y139{bottom:101.262930px;}
.y13a{bottom:101.274945px;}
.y13b{bottom:101.286915px;}
.y146{bottom:101.310735px;}
.y13c{bottom:101.310930px;}
.y145{bottom:101.322750px;}
.y13d{bottom:101.322900px;}
.y144{bottom:101.334765px;}
.y13e{bottom:101.334870px;}
.y142{bottom:101.346795px;}
.y143{bottom:101.358795px;}
.y31{bottom:101.366580px;}
.y1fa{bottom:102.814965px;}
.y1bb{bottom:102.819345px;}
.ye4{bottom:107.319600px;}
.y11c{bottom:107.320875px;}
.y7e{bottom:107.327055px;}
.y129{bottom:107.350290px;}
.yb3{bottom:107.357970px;}
.y119{bottom:107.371755px;}
.y6e{bottom:107.373885px;}
.yc6{bottom:107.402100px;}
.y186{bottom:107.440905px;}
.y147{bottom:113.214555px;}
.y13f{bottom:113.238675px;}
.y140{bottom:113.250660px;}
.y30{bottom:113.357400px;}
.y160{bottom:113.715195px;}
.y1f9{bottom:116.337285px;}
.y1ba{bottom:116.341665px;}
.ye3{bottom:125.268405px;}
.y11b{bottom:125.269395px;}
.y118{bottom:125.320260px;}
.y7d{bottom:125.349075px;}
.y128{bottom:125.372295px;}
.yb2{bottom:125.379990px;}
.y6d{bottom:125.395890px;}
.yc5{bottom:125.424105px;}
.y185{bottom:125.462925px;}
.y15f{bottom:128.679000px;}
.y1f8{bottom:129.769605px;}
.y1b9{bottom:129.773985px;}
.y39{bottom:138.782160px;}
.y2f{bottom:143.053222px;}
.ye2{bottom:143.291400px;}
.y1f7{bottom:143.291925px;}
.y7c{bottom:143.297580px;}
.y127{bottom:143.320815px;}
.yb1{bottom:143.328510px;}
.y117{bottom:143.342280px;}
.y6c{bottom:143.344410px;}
.yc4{bottom:143.372625px;}
.y184{bottom:143.411445px;}
.y15e{bottom:143.726805px;}
.y38{bottom:152.304480px;}
.y23e{bottom:152.307210px;}
.y1f6{bottom:156.814245px;}
.y15d{bottom:158.690625px;}
.y2e{bottom:161.001742px;}
.y7b{bottom:161.319600px;}
.y79{bottom:161.335620px;}
.y126{bottom:161.342835px;}
.yb0{bottom:161.350530px;}
.y116{bottom:161.364300px;}
.y6b{bottom:161.366430px;}
.yc3{bottom:161.394645px;}
.y183{bottom:161.433450px;}
.y37{bottom:165.826800px;}
.y23d{bottom:165.829530px;}
.y1b8{bottom:166.763490px;}
.y7a{bottom:167.867700px;}
.y1f5{bottom:170.336565px;}
.y36{bottom:170.844150px;}
.y15c{bottom:173.654430px;}
.y2d{bottom:179.023762px;}
.y23c{bottom:179.261850px;}
.ye1{bottom:179.292720px;}
.y115{bottom:179.312820px;}
.y35{bottom:179.347950px;}
.y78{bottom:179.357640px;}
.y125{bottom:179.364855px;}
.yaf{bottom:179.372535px;}
.y6a{bottom:179.388435px;}
.yc2{bottom:179.416665px;}
.y182{bottom:179.455470px;}
.y1b7{bottom:180.195810px;}
.y1f4{bottom:183.768885px;}
.y15b{bottom:188.702250px;}
.y23b{bottom:192.784170px;}
.y1b6{bottom:193.718130px;}
.y12e{bottom:195.845715px;}
.y2c{bottom:197.045782px;}
.y1f3{bottom:197.291205px;}
.y77{bottom:197.306145px;}
.y124{bottom:197.313360px;}
.ye0{bottom:197.314740px;}
.yae{bottom:197.321055px;}
.y114{bottom:197.334825px;}
.y69{bottom:197.336955px;}
.yc1{bottom:197.365170px;}
.y181{bottom:197.403990px;}
.y23a{bottom:206.306490px;}
.y1b5{bottom:207.240450px;}
.y1f2{bottom:210.813525px;}
.y2b{bottom:214.994287px;}
.y76{bottom:215.328165px;}
.y123{bottom:215.335380px;}
.ydf{bottom:215.336745px;}
.yad{bottom:215.343075px;}
.y113{bottom:215.356845px;}
.y68{bottom:215.358975px;}
.yc0{bottom:215.387190px;}
.y180{bottom:215.426010px;}
.y239{bottom:219.828810px;}
.y1b4{bottom:220.762770px;}
.y1f1{bottom:224.335845px;}
.y2a{bottom:233.016307px;}
.y23{bottom:233.021542px;}
.y238{bottom:233.261130px;}
.yde{bottom:233.285265px;}
.y112{bottom:233.305365px;}
.y75{bottom:233.350185px;}
.y122{bottom:233.357400px;}
.yac{bottom:233.365080px;}
.y67{bottom:233.380995px;}
.ybf{bottom:233.409210px;}
.y17f{bottom:233.448015px;}
.y1b3{bottom:234.195090px;}
.y1f0{bottom:237.768165px;}
.y237{bottom:246.783450px;}
.y1b2{bottom:247.717410px;}
.y29{bottom:251.038327px;}
.y22{bottom:251.043562px;}
.y1ef{bottom:251.290485px;}
.y74{bottom:251.298690px;}
.y121{bottom:251.305905px;}
.ydd{bottom:251.307285px;}
.yab{bottom:251.313600px;}
.y111{bottom:251.327370px;}
.y66{bottom:251.329500px;}
.ybe{bottom:251.357715px;}
.y17e{bottom:251.396535px;}
.y236{bottom:260.305770px;}
.y1b1{bottom:261.239730px;}
.y1ee{bottom:264.812805px;}
.y28{bottom:268.986832px;}
.y21{bottom:268.992067px;}
.y73{bottom:269.320710px;}
.y120{bottom:269.327925px;}
.ydc{bottom:269.329305px;}
.yaa{bottom:269.335620px;}
.y110{bottom:269.349390px;}
.y65{bottom:269.351520px;}
.ybd{bottom:269.379735px;}
.y17d{bottom:269.418555px;}
.y235{bottom:273.828090px;}
.y1ae{bottom:274.760190px;}
.y1b0{bottom:274.762050px;}
.y1ed{bottom:278.335125px;}
.y1af{bottom:279.694500px;}
.y27{bottom:287.008852px;}
.y20{bottom:287.014087px;}
.y234{bottom:287.260410px;}
.ydb{bottom:287.277810px;}
.y10f{bottom:287.297910px;}
.y64{bottom:287.300040px;}
.y72{bottom:287.342730px;}
.y11f{bottom:287.349945px;}
.ya9{bottom:287.357640px;}
.ybc{bottom:287.401755px;}
.y17c{bottom:287.440560px;}
.y1ad{bottom:288.192510px;}
.y1ec{bottom:291.767445px;}
.y233{bottom:300.782730px;}
.y26{bottom:305.030872px;}
.y1f{bottom:305.036107px;}
.y1eb{bottom:305.289765px;}
.y71{bottom:305.291250px;}
.y11e{bottom:305.298465px;}
.yda{bottom:305.299830px;}
.ya8{bottom:305.306145px;}
.y10e{bottom:305.319930px;}
.y63{bottom:305.322045px;}
.ybb{bottom:305.350275px;}
.y17b{bottom:305.389080px;}
.y232{bottom:314.305050px;}
.y130{bottom:318.556185px;}
.y1ea{bottom:318.812085px;}
.y1e{bottom:322.979392px;}
.y24{bottom:322.999312px;}
.y70{bottom:323.319600px;}
.yd9{bottom:323.321850px;}
.ya7{bottom:323.328165px;}
.y10d{bottom:323.341935px;}
.y62{bottom:323.344065px;}
.yba{bottom:323.372280px;}
.y17a{bottom:323.411100px;}
.y231{bottom:327.827370px;}
.y25{bottom:329.527492px;}
.y1e9{bottom:332.334405px;}
.y1ac{bottom:333.011910px;}
.y230{bottom:341.259690px;}
.yd8{bottom:341.270355px;}
.ya6{bottom:341.276685px;}
.y10c{bottom:341.290455px;}
.y61{bottom:341.292585px;}
.yb9{bottom:341.320800px;}
.y179{bottom:341.359620px;}
.y1e8{bottom:345.766725px;}
.y1ab{bottom:346.534230px;}
.y12b{bottom:353.423565px;}
.y22f{bottom:354.782010px;}
.y1e7{bottom:359.289045px;}
.yd7{bottom:359.292375px;}
.ya5{bottom:359.298690px;}
.y10b{bottom:359.312475px;}
.y60{bottom:359.314605px;}
.yb8{bottom:359.342820px;}
.y178{bottom:359.381625px;}
.y1aa{bottom:360.056550px;}
.y22e{bottom:368.311455px;}
.y1d{bottom:368.668762px;}
.y1e6{bottom:372.811365px;}
.ya0{bottom:374.406960px;}
.yd6{bottom:377.314395px;}
.ya4{bottom:377.320710px;}
.y10a{bottom:377.334480px;}
.y5f{bottom:377.336610px;}
.yb7{bottom:377.364825px;}
.y177{bottom:377.403645px;}
.y22d{bottom:381.845025px;}
.y1e5{bottom:386.333685px;}
.y1a9{bottom:393.392115px;}
.y1c{bottom:394.184017px;}
.yd5{bottom:395.262915px;}
.ya3{bottom:395.269230px;}
.y22c{bottom:395.277345px;}
.y109{bottom:395.283000px;}
.y5e{bottom:395.285130px;}
.yb6{bottom:395.313345px;}
.y176{bottom:395.352165px;}
.y9f{bottom:395.406705px;}
.y131{bottom:396.279210px;}
.y1e4{bottom:399.769965px;}
.y22b{bottom:408.799665px;}
.ya2{bottom:413.291250px;}
.y108{bottom:413.305020px;}
.y5d{bottom:413.307150px;}
.yb5{bottom:413.335365px;}
.y175{bottom:413.374170px;}
.y9e{bottom:416.322435px;}
.y1b{bottom:416.714242px;}
.y22a{bottom:422.321985px;}
.y107{bottom:431.327040px;}
.y5c{bottom:431.329155px;}
.y174{bottom:431.396190px;}
.y1a{bottom:434.654422px;}
.y229{bottom:435.844290px;}
.y9d{bottom:437.322180px;}
.y1a8{bottom:439.422915px;}
.y1e3{bottom:444.161220px;}
.y106{bottom:449.275545px;}
.y228{bottom:449.276625px;}
.y5b{bottom:449.277675px;}
.y173{bottom:449.344710px;}
.yc8{bottom:452.239200px;}
.y19{bottom:457.184647px;}
.y1a7{bottom:457.371420px;}
.y9c{bottom:458.321910px;}
.y227{bottom:462.798945px;}
.y105{bottom:467.297565px;}
.y5a{bottom:467.299695px;}
.y172{bottom:467.366730px;}
.y1e2{bottom:471.115860px;}
.y18{bottom:475.214827px;}
.y1a6{bottom:475.393440px;}
.y226{bottom:476.321250px;}
.y132{bottom:478.850175px;}
.y9b{bottom:479.321655px;}
.y1e1{bottom:484.638165px;}
.y104{bottom:485.319585px;}
.y59{bottom:485.321715px;}
.y171{bottom:485.388735px;}
.y225{bottom:489.843570px;}
.y17{bottom:493.155007px;}
.y1a5{bottom:493.415460px;}
.y1e0{bottom:498.160485px;}
.y1de{bottom:498.163275px;}
.y9a{bottom:500.321385px;}
.y1df{bottom:503.177850px;}
.y103{bottom:503.262915px;}
.y58{bottom:503.270220px;}
.y224{bottom:503.275905px;}
.y170{bottom:503.337255px;}
.y16{bottom:511.185187px;}
.y1a4{bottom:511.363965px;}
.y1dd{bottom:511.685595px;}
.y223{bottom:516.798210px;}
.y57{bottom:521.292240px;}
.y99{bottom:521.321130px;}
.y16f{bottom:521.359275px;}
.y1da{bottom:525.116880px;}
.y1dc{bottom:525.117915px;}
.y15{bottom:529.215367px;}
.y1a3{bottom:529.385985px;}
.y1db{bottom:530.135235px;}
.y222{bottom:530.320530px;}
.y1d9{bottom:538.639200px;}
.y56{bottom:539.314260px;}
.y102{bottom:539.377665px;}
.y16e{bottom:539.381280px;}
.y98{bottom:542.320860px;}
.y1d8{bottom:543.656565px;}
.y221{bottom:543.842850px;}
.y14{bottom:547.155547px;}
.y1a2{bottom:547.408005px;}
.y1d7{bottom:552.162240px;}
.y55{bottom:557.262765px;}
.y220{bottom:557.275170px;}
.y101{bottom:557.326185px;}
.y16d{bottom:557.329800px;}
.y97{bottom:563.320590px;}
.y13{bottom:565.185727px;}
.y1a1{bottom:565.356525px;}
.y21f{bottom:570.797490px;}
.y54{bottom:575.291100px;}
.y100{bottom:575.348205px;}
.y16c{bottom:575.351820px;}
.y1d6{bottom:579.116880px;}
.y1a0{bottom:583.378530px;}
.y21e{bottom:584.319810px;}
.y96{bottom:584.320335px;}
.y12{bottom:587.715952px;}
.y1d5{bottom:592.639200px;}
.y53{bottom:593.319585px;}
.yff{bottom:593.370225px;}
.y16b{bottom:593.373840px;}
.y21d{bottom:597.842130px;}
.y19f{bottom:601.400550px;}
.y133{bottom:601.560645px;}
.y95{bottom:605.320065px;}
.y11{bottom:605.656132px;}
.y1d4{bottom:606.160485px;}
.y21c{bottom:611.274450px;}
.yd4{bottom:611.285085px;}
.yfe{bottom:611.318730px;}
.y16a{bottom:611.322345px;}
.y19e{bottom:619.349070px;}
.y10{bottom:623.686312px;}
.y21b{bottom:624.796770px;}
.y94{bottom:626.319810px;}
.yd3{bottom:629.307105px;}
.yfd{bottom:629.340750px;}
.y169{bottom:629.344365px;}
.y19d{bottom:637.371075px;}
.y21a{bottom:638.319090px;}
.yf{bottom:641.716507px;}
.y1d3{bottom:646.053030px;}
.y93{bottom:647.319540px;}
.yd2{bottom:647.329110px;}
.yfc{bottom:647.362770px;}
.y52{bottom:647.366385px;}
.y219{bottom:651.841410px;}
.y19c{bottom:655.393095px;}
.y1d2{bottom:659.485350px;}
.ye{bottom:659.656672px;}
.y218{bottom:665.273730px;}
.yd1{bottom:665.277630px;}
.yfb{bottom:665.311290px;}
.y51{bottom:665.314890px;}
.y92{bottom:668.319285px;}
.y19b{bottom:673.341615px;}
.y217{bottom:678.796050px;}
.yd{bottom:682.186897px;}
.yd0{bottom:683.299650px;}
.yfa{bottom:683.333295px;}
.y50{bottom:683.336910px;}
.y91{bottom:689.319015px;}
.y134{bottom:690.167535px;}
.y1d1{bottom:690.354930px;}
.y19a{bottom:691.369950px;}
.y216{bottom:692.318370px;}
.yc{bottom:700.217092px;}
.ycf{bottom:701.321655px;}
.yf9{bottom:701.355315px;}
.y4f{bottom:701.358930px;}
.y1d0{bottom:703.877250px;}
.y215{bottom:705.840690px;}
.y90{bottom:710.318760px;}
.y1cf{bottom:717.399570px;}
.yb{bottom:718.157257px;}
.yce{bottom:719.270175px;}
.y214{bottom:719.273010px;}
.yf8{bottom:719.303835px;}
.y4e{bottom:719.307450px;}
.y8f{bottom:731.318490px;}
.y213{bottom:732.795330px;}
.ycd{bottom:737.292195px;}
.y151{bottom:737.307105px;}
.y15a{bottom:737.321805px;}
.yf7{bottom:737.325840px;}
.y4d{bottom:737.329455px;}
.y199{bottom:737.403045px;}
.ya{bottom:745.199842px;}
.y212{bottom:746.317650px;}
.y1ce{bottom:748.269165px;}
.y8e{bottom:752.318235px;}
.ycc{bottom:755.314215px;}
.y150{bottom:755.329110px;}
.y159{bottom:755.343810px;}
.yf6{bottom:755.347860px;}
.y4c{bottom:755.351475px;}
.y198{bottom:755.469165px;}
.y211{bottom:759.839970px;}
.y1cd{bottom:761.701485px;}
.y135{bottom:772.738500px;}
.ycb{bottom:773.262720px;}
.y210{bottom:773.272290px;}
.y14f{bottom:773.277630px;}
.y158{bottom:773.292330px;}
.yf5{bottom:773.296380px;}
.y4b{bottom:773.299995px;}
.y8d{bottom:773.317965px;}
.y197{bottom:773.417685px;}
.y1cc{bottom:775.223805px;}
.y20f{bottom:786.794610px;}
.y1cb{bottom:788.746125px;}
.yca{bottom:791.291100px;}
.y14e{bottom:791.299650px;}
.y157{bottom:791.314350px;}
.yf4{bottom:791.318400px;}
.y4a{bottom:791.322000px;}
.y196{bottom:791.439705px;}
.y8c{bottom:794.233710px;}
.y20e{bottom:800.316930px;}
.y8{bottom:802.941532px;}
.y14d{bottom:809.321655px;}
.y156{bottom:809.336370px;}
.yf3{bottom:809.340405px;}
.y49{bottom:809.344020px;}
.y195{bottom:809.461710px;}
.y9{bottom:810.254872px;}
.y20d{bottom:813.839250px;}
.y8b{bottom:815.233440px;}
.y1ca{bottom:819.615705px;}
.y6{bottom:823.946227px;}
.y14c{bottom:827.270175px;}
.y20c{bottom:827.271570px;}
.y155{bottom:827.284875px;}
.yf2{bottom:827.288925px;}
.y48{bottom:827.292540px;}
.y194{bottom:827.410230px;}
.y7{bottom:831.259642px;}
.y1c9{bottom:833.048025px;}
.y8a{bottom:836.233185px;}
.y20b{bottom:840.793890px;}
.y14b{bottom:845.292195px;}
.y154{bottom:845.306895px;}
.yf1{bottom:845.310945px;}
.y47{bottom:845.314560px;}
.y193{bottom:845.432250px;}
.y1c8{bottom:846.570345px;}
.y20a{bottom:854.316210px;}
.y89{bottom:857.232915px;}
.y5{bottom:859.931542px;}
.y1c7{bottom:860.092665px;}
.y14a{bottom:863.314215px;}
.y153{bottom:863.328915px;}
.yf0{bottom:863.332950px;}
.y46{bottom:863.336565px;}
.y192{bottom:863.454255px;}
.y209{bottom:867.838530px;}
.y1c6{bottom:873.614985px;}
.y88{bottom:878.232660px;}
.y149{bottom:881.262720px;}
.y208{bottom:881.270850px;}
.y152{bottom:881.277420px;}
.yef{bottom:881.281470px;}
.y45{bottom:881.285085px;}
.y191{bottom:881.402775px;}
.y1c5{bottom:887.047305px;}
.y207{bottom:894.793170px;}
.y136{bottom:895.448955px;}
.y4{bottom:898.955707px;}
.y87{bottom:899.232390px;}
.yee{bottom:899.303490px;}
.y44{bottom:899.307105px;}
.y190{bottom:899.424795px;}
.y1c4{bottom:900.569625px;}
.y206{bottom:908.315490px;}
.y1c3{bottom:914.091945px;}
.yed{bottom:917.325495px;}
.y43{bottom:917.329110px;}
.y18f{bottom:917.446815px;}
.y86{bottom:920.232135px;}
.y205{bottom:921.837810px;}
.y167{bottom:927.708045px;}
.y166{bottom:935.267940px;}
.y204{bottom:935.270130px;}
.yec{bottom:935.274015px;}
.y42{bottom:935.277630px;}
.y18e{bottom:935.395320px;}
.y3{bottom:937.907872px;}
.y85{bottom:941.231865px;}
.y1c2{bottom:944.961540px;}
.y165{bottom:948.707775px;}
.y203{bottom:948.792450px;}
.yeb{bottom:953.296035px;}
.y41{bottom:953.299650px;}
.y18d{bottom:953.417340px;}
.y1c1{bottom:958.483860px;}
.y84{bottom:962.231610px;}
.y202{bottom:962.314770px;}
.y164{bottom:969.707505px;}
.yea{bottom:971.318055px;}
.y40{bottom:971.321655px;}
.y18c{bottom:971.439360px;}
.y1c0{bottom:971.916180px;}
.y201{bottom:975.837090px;}
.y2{bottom:976.932022px;}
.y83{bottom:983.231340px;}
.y137{bottom:983.971845px;}
.ye9{bottom:989.266560px;}
.y200{bottom:989.269410px;}
.y3f{bottom:989.270175px;}
.y18b{bottom:989.387865px;}
.y163{bottom:990.707250px;}
.y1bf{bottom:1002.785760px;}
.y1ff{bottom:1002.791730px;}
.y82{bottom:1004.231085px;}
.ye8{bottom:1007.288580px;}
.y3e{bottom:1007.292195px;}
.y18a{bottom:1007.409885px;}
.y162{bottom:1010.434995px;}
.y1be{bottom:1016.308080px;}
.y1fe{bottom:1016.314050px;}
.y81{bottom:1023.958830px;}
.ye7{bottom:1025.310600px;}
.y3d{bottom:1025.314215px;}
.y189{bottom:1025.431905px;}
.y1bd{bottom:1029.830400px;}
.y1fd{bottom:1029.836370px;}
.y1{bottom:1033.908345px;}
.ye6{bottom:1043.259120px;}
.y3c{bottom:1043.262720px;}
.y1fc{bottom:1043.268690px;}
.y188{bottom:1043.380425px;}
.y80{bottom:1043.687985px;}
.y3b{bottom:1112.827995px;}
.y12c{bottom:1127.785845px;}
.y3a{bottom:1127.791815px;}
.y148{bottom:1127.791830px;}
.yc9{bottom:1127.794755px;}
.y168{bottom:1127.805525px;}
.ya1{bottom:1127.937510px;}
.hc{height:21.626539px;}
.h9{height:28.376746px;}
.ha{height:30.281567px;}
.h5{height:31.721260px;}
.hb{height:32.444567px;}
.he{height:34.607567px;}
.h10{height:38.934000px;}
.hf{height:39.799633px;}
.hd{height:42.287471px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039410px;}
.x16{left:89.036250px;}
.x1{left:91.077180px;}
.x10{left:94.818960px;}
.x17{left:97.034430px;}
.x3b{left:107.578980px;}
.x3{left:165.826710px;}
.x4{left:189.212610px;}
.xf{left:203.244060px;}
.x1a{left:226.629885px;}
.x1b{left:246.358950px;}
.x1c{left:266.086710px;}
.x15{left:270.510150px;}
.x1d{left:279.610545px;}
.x1e{left:299.338290px;}
.x5{left:314.220510px;}
.x39{left:318.727500px;}
.x6{left:319.918110px;}
.x3a{left:322.809315px;}
.x1f{left:341.337765px;}
.x30{left:342.453465px;}
.x20{left:362.253510px;}
.x37{left:366.009450px;}
.x38{left:370.006215px;}
.x21{left:383.253240px;}
.x22{left:404.252985px;}
.x23{left:425.252715px;}
.x7{left:427.577925px;}
.x8{left:433.190475px;}
.x24{left:446.252460px;}
.x14{left:457.090785px;}
.x34{left:464.995200px;}
.x25{left:467.252190px;}
.x11{left:469.058280px;}
.x3c{left:479.626980px;}
.x31{left:482.935695px;}
.x26{left:488.251935px;}
.x27{left:509.251665px;}
.x28{left:530.251410px;}
.x9{left:537.278745px;}
.xa{left:542.976345px;}
.x29{left:551.251140px;}
.x2a{left:572.250870px;}
.x2b{left:593.250615px;}
.x2c{left:614.250345px;}
.x2d{left:635.250090px;}
.x32{left:639.917730px;}
.xb{left:641.366925px;}
.xc{left:646.979475px;}
.x2e{left:656.249820px;}
.x35{left:658.204515px;}
.x36{left:666.283350px;}
.x2f{left:676.062885px;}
.x18{left:701.829765px;}
.x19{left:712.884885px;}
.x12{left:747.495960px;}
.x13{left:758.040810px;}
.xd{left:760.421925px;}
.xe{left:770.711580px;}
.x33{left:774.112050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-1.547078pt;}
.ls7{letter-spacing:-1.175988pt;}
.ls61{letter-spacing:-1.102815pt;}
.ls2d{letter-spacing:-1.071456pt;}
.ls20{letter-spacing:-1.061003pt;}
.ls23{letter-spacing:-1.034869pt;}
.ls60{letter-spacing:-0.998283pt;}
.ls30{letter-spacing:-0.993057pt;}
.ls19{letter-spacing:-0.987830pt;}
.ls2f{letter-spacing:-0.982603pt;}
.ls13{letter-spacing:-0.977377pt;}
.lsd{letter-spacing:-0.972145pt;}
.ls2c{letter-spacing:-0.966923pt;}
.ls1d{letter-spacing:-0.961697pt;}
.lsc{letter-spacing:-0.956470pt;}
.ls5{letter-spacing:-0.951244pt;}
.ls10{letter-spacing:-0.946017pt;}
.ls1c{letter-spacing:-0.940790pt;}
.lsb{letter-spacing:-0.935564pt;}
.ls9{letter-spacing:-0.930337pt;}
.ls2e{letter-spacing:-0.925111pt;}
.ls24{letter-spacing:-0.919884pt;}
.lsf{letter-spacing:-0.914657pt;}
.ls11{letter-spacing:-0.909431pt;}
.ls8{letter-spacing:-0.904204pt;}
.ls66{letter-spacing:-0.898977pt;}
.ls1b{letter-spacing:-0.888524pt;}
.lsa{letter-spacing:-0.878071pt;}
.ls12{letter-spacing:-0.872844pt;}
.lse{letter-spacing:-0.862391pt;}
.ls1a{letter-spacing:-0.804898pt;}
.ls6{letter-spacing:-0.759500pt;}
.ls21{letter-spacing:-0.736952pt;}
.ls68{letter-spacing:-0.684686pt;}
.ls46{letter-spacing:-0.012800pt;}
.ls47{letter-spacing:-0.008533pt;}
.ls44{letter-spacing:-0.004800pt;}
.ls45{letter-spacing:-0.004267pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.039972pt;}
.ls70{letter-spacing:0.040028pt;}
.ls4a{letter-spacing:0.104545pt;}
.ls31{letter-spacing:0.156774pt;}
.ls2{letter-spacing:0.156800pt;}
.ls16{letter-spacing:0.156802pt;}
.ls35{letter-spacing:0.470400pt;}
.ls43{letter-spacing:0.475622pt;}
.ls59{letter-spacing:0.487993pt;}
.ls58{letter-spacing:0.491993pt;}
.ls56{letter-spacing:0.495993pt;}
.ls5c{letter-spacing:0.503993pt;}
.ls63{letter-spacing:0.512208pt;}
.ls5b{letter-spacing:0.515993pt;}
.ls5a{letter-spacing:0.523993pt;}
.ls5e{letter-spacing:0.527993pt;}
.ls40{letter-spacing:0.533115pt;}
.ls5d{letter-spacing:0.539993pt;}
.ls3b{letter-spacing:0.543568pt;}
.ls3d{letter-spacing:0.554021pt;}
.ls3c{letter-spacing:0.559248pt;}
.ls3e{letter-spacing:0.569701pt;}
.ls32{letter-spacing:0.574927pt;}
.ls6a{letter-spacing:0.583992pt;}
.ls64{letter-spacing:0.585381pt;}
.ls62{letter-spacing:0.590607pt;}
.ls3f{letter-spacing:0.595834pt;}
.ls73{letter-spacing:0.595992pt;}
.ls55{letter-spacing:0.606282pt;}
.ls33{letter-spacing:0.632420pt;}
.ls69{letter-spacing:0.655991pt;}
.ls53{letter-spacing:0.731692pt;}
.ls34{letter-spacing:0.731745pt;}
.ls37{letter-spacing:0.784000pt;}
.ls6b{letter-spacing:1.079986pt;}
.ls6d{letter-spacing:1.091985pt;}
.ls6e{letter-spacing:1.103985pt;}
.ls6c{letter-spacing:1.239982pt;}
.ls57{letter-spacing:8.551949pt;}
.ls25{letter-spacing:9.878268pt;}
.ls26{letter-spacing:10.035104pt;}
.ls4b{letter-spacing:10.296389pt;}
.ls28{letter-spacing:10.296437pt;}
.ls2b{letter-spacing:10.453249pt;}
.ls0{letter-spacing:10.506773pt;}
.ls17{letter-spacing:10.557775pt;}
.ls29{letter-spacing:10.610037pt;}
.ls1{letter-spacing:10.826720pt;}
.ls5f{letter-spacing:12.925415pt;}
.ls4e{letter-spacing:13.411476pt;}
.ls4d{letter-spacing:13.672810pt;}
.ls18{letter-spacing:14.400000pt;}
.ls67{letter-spacing:14.733823pt;}
.ls65{letter-spacing:15.590988pt;}
.ls27{letter-spacing:15.732105pt;}
.ls49{letter-spacing:15.993438pt;}
.ls2a{letter-spacing:16.202507pt;}
.ls72{letter-spacing:16.458027pt;}
.ls4c{letter-spacing:16.620585pt;}
.ls71{letter-spacing:16.887775pt;}
.ls15{letter-spacing:16.934238pt;}
.ls4f{letter-spacing:18.240863pt;}
.ls1e{letter-spacing:18.711252pt;}
.ls3{letter-spacing:19.756596pt;}
.ls41{letter-spacing:20.070196pt;}
.ls42{letter-spacing:20.331530pt;}
.ls54{letter-spacing:20.634676pt;}
.ls22{letter-spacing:24.591216pt;}
.ls52{letter-spacing:25.401332pt;}
.ls36{letter-spacing:26.394356pt;}
.ls38{letter-spacing:26.394410pt;}
.ls3a{letter-spacing:26.697556pt;}
.ls39{letter-spacing:26.708010pt;}
.ls51{letter-spacing:28.798623pt;}
.ls50{letter-spacing:28.798676pt;}
.ls14{letter-spacing:31.516490pt;}
.ls48{letter-spacing:293.726462pt;}
.wsb8{word-spacing:-24.643482pt;}
.ws1a3{word-spacing:-16.927774pt;}
.ws1ad{word-spacing:-16.512960pt;}
.ws179{word-spacing:-15.643254pt;}
.ws18d{word-spacing:-14.786089pt;}
.ws158{word-spacing:-12.977681pt;}
.ws1ba{word-spacing:-0.635992pt;}
.ws11e{word-spacing:-0.527888pt;}
.ws19{word-spacing:-0.054933pt;}
.ws12{word-spacing:-0.053334pt;}
.ws24{word-spacing:-0.052266pt;}
.ws5e{word-spacing:-0.049067pt;}
.ws8c{word-spacing:-0.048000pt;}
.ws3f{word-spacing:-0.042666pt;}
.ws3a{word-spacing:-0.039999pt;}
.ws35{word-spacing:-0.037333pt;}
.ws40{word-spacing:0.000000pt;}
.ws190{word-spacing:0.632420pt;}
.wsb7{word-spacing:0.684686pt;}
.wsd4{word-spacing:0.935564pt;}
.wsbb{word-spacing:0.982603pt;}
.ws164{word-spacing:1.050549pt;}
.ws21{word-spacing:1.123722pt;}
.ws195{word-spacing:7.307903pt;}
.ws133{word-spacing:8.149231pt;}
.ws97{word-spacing:8.234564pt;}
.ws16c{word-spacing:9.355638pt;}
.ws1b3{word-spacing:9.679871pt;}
.ws1bb{word-spacing:9.799869pt;}
.wse4{word-spacing:9.826044pt;}
.ws1b5{word-spacing:9.839869pt;}
.ws1b4{word-spacing:9.959867pt;}
.wseb{word-spacing:9.982831pt;}
.ws78{word-spacing:10.296428pt;}
.ws14{word-spacing:10.346770pt;}
.ws79{word-spacing:10.400961pt;}
.ws88{word-spacing:10.557759pt;}
.ws39{word-spacing:10.559859pt;}
.ws13d{word-spacing:10.610025pt;}
.ws36{word-spacing:10.938510pt;}
.ws12a{word-spacing:10.965196pt;}
.ws31{word-spacing:11.050509pt;}
.ws37{word-spacing:11.125174pt;}
.ws38{word-spacing:11.199840pt;}
.wsdb{word-spacing:11.252899pt;}
.ws34{word-spacing:11.274506pt;}
.ws136{word-spacing:11.311838pt;}
.ws33{word-spacing:11.386504pt;}
.ws70{word-spacing:11.394017pt;}
.ws32{word-spacing:11.461170pt;}
.ws1af{word-spacing:11.719844pt;}
.ws1b6{word-spacing:11.759790pt;}
.ws1b2{word-spacing:11.759843pt;}
.ws1b1{word-spacing:11.799792pt;}
.ws1a7{word-spacing:11.799843pt;}
.ws3c{word-spacing:11.839842pt;}
.ws1b0{word-spacing:11.879842pt;}
.ws1aa{word-spacing:11.919841pt;}
.ws192{word-spacing:11.959841pt;}
.ws1a1{word-spacing:11.999840pt;}
.ws1a8{word-spacing:12.039839pt;}
.ws197{word-spacing:12.039868pt;}
.ws198{word-spacing:12.079839pt;}
.ws193{word-spacing:12.079861pt;}
.ws1a6{word-spacing:12.119838pt;}
.ws3b{word-spacing:12.159838pt;}
.ws146{word-spacing:12.159848pt;}
.ws1a9{word-spacing:12.199837pt;}
.ws199{word-spacing:12.239837pt;}
.ws99{word-spacing:12.245180pt;}
.ws1ac{word-spacing:12.279836pt;}
.ws1ab{word-spacing:12.319836pt;}
.ws3e{word-spacing:12.330513pt;}
.ws94{word-spacing:12.373179pt;}
.ws1ae{word-spacing:12.399835pt;}
.ws92{word-spacing:12.415845pt;}
.ws8e{word-spacing:12.458511pt;}
.ws12e{word-spacing:12.467044pt;}
.ws96{word-spacing:12.501177pt;}
.ws135{word-spacing:12.509710pt;}
.ws9b{word-spacing:12.543797pt;}
.ws93{word-spacing:12.543843pt;}
.ws3d{word-spacing:12.543850pt;}
.ws9a{word-spacing:12.586509pt;}
.ws134{word-spacing:12.590776pt;}
.ws12f{word-spacing:12.595043pt;}
.wsc5{word-spacing:12.629175pt;}
.ws12c{word-spacing:12.633442pt;}
.ws12d{word-spacing:12.641975pt;}
.ws8f{word-spacing:12.671842pt;}
.ws130{word-spacing:12.680375pt;}
.ws144{word-spacing:12.714508pt;}
.ws98{word-spacing:12.757174pt;}
.ws95{word-spacing:12.799840pt;}
.ws132{word-spacing:12.804107pt;}
.ws143{word-spacing:12.842506pt;}
.ws147{word-spacing:12.885172pt;}
.ws131{word-spacing:12.970505pt;}
.ws16e{word-spacing:13.171066pt;}
.wsab{word-spacing:13.223332pt;}
.wsa3{word-spacing:13.327864pt;}
.wse7{word-spacing:13.380130pt;}
.wse8{word-spacing:13.484662pt;}
.ws17b{word-spacing:13.536929pt;}
.wsb2{word-spacing:13.693727pt;}
.wsfd{word-spacing:13.798259pt;}
.wsa8{word-spacing:14.059590pt;}
.ws16f{word-spacing:14.111856pt;}
.ws8b{word-spacing:14.304000pt;}
.ws12b{word-spacing:14.356800pt;}
.ws145{word-spacing:14.400000pt;}
.wsf7{word-spacing:14.529985pt;}
.wsd0{word-spacing:14.572958pt;}
.wsd3{word-spacing:14.587478pt;}
.ws42{word-spacing:14.603158pt;}
.wscc{word-spacing:14.634517pt;}
.ws1a2{word-spacing:14.679804pt;}
.wsa4{word-spacing:14.686783pt;}
.ws7c{word-spacing:14.720160pt;}
.ws1a5{word-spacing:14.815802pt;}
.wsf1{word-spacing:14.818294pt;}
.ws155{word-spacing:14.827902pt;}
.ws1a4{word-spacing:14.907801pt;}
.wsdc{word-spacing:14.921981pt;}
.wse2{word-spacing:14.965496pt;}
.ws5d{word-spacing:14.969021pt;}
.wsc7{word-spacing:14.974247pt;}
.wsf2{word-spacing:15.014563pt;}
.wscf{word-spacing:15.068326pt;}
.wsca{word-spacing:15.094459pt;}
.ws19d{word-spacing:15.183798pt;}
.ws156{word-spacing:15.193765pt;}
.ws17c{word-spacing:15.209445pt;}
.ws19e{word-spacing:15.219797pt;}
.ws19f{word-spacing:15.231797pt;}
.ws19a{word-spacing:15.235797pt;}
.ws170{word-spacing:15.261711pt;}
.ws153{word-spacing:15.313977pt;}
.ws18c{word-spacing:15.366243pt;}
.ws1b8{word-spacing:15.391795pt;}
.ws19b{word-spacing:15.403795pt;}
.wsf0{word-spacing:15.418509pt;}
.ws196{word-spacing:15.431794pt;}
.ws1b9{word-spacing:15.459794pt;}
.wsba{word-spacing:15.470775pt;}
.ws194{word-spacing:15.503793pt;}
.ws71{word-spacing:15.523042pt;}
.ws14c{word-spacing:15.575308pt;}
.ws19c{word-spacing:15.575792pt;}
.ws1f{word-spacing:15.627574pt;}
.ws1a0{word-spacing:15.627792pt;}
.wsf5{word-spacing:15.679840pt;}
.wsc2{word-spacing:15.685067pt;}
.wsd5{word-spacing:15.726880pt;}
.ws7b{word-spacing:15.732106pt;}
.ws138{word-spacing:15.784372pt;}
.wsf4{word-spacing:15.836638pt;}
.wsd{word-spacing:15.840158pt;}
.wsfa{word-spacing:15.888905pt;}
.ws64{word-spacing:15.941171pt;}
.ws11{word-spacing:15.946826pt;}
.ws11b{word-spacing:15.993437pt;}
.wse{word-spacing:16.000160pt;}
.ws86{word-spacing:16.045703pt;}
.wsc9{word-spacing:16.082289pt;}
.wsa1{word-spacing:16.097969pt;}
.ws10{word-spacing:16.106828pt;}
.wse6{word-spacing:16.150235pt;}
.wsb{word-spacing:16.160151pt;}
.ws9{word-spacing:16.160162pt;}
.ws15{word-spacing:16.160167pt;}
.ws16{word-spacing:16.213482pt;}
.wsc{word-spacing:16.213495pt;}
.ws66{word-spacing:16.254767pt;}
.wsa{word-spacing:16.266829pt;}
.wsf{word-spacing:16.266833pt;}
.ws13{word-spacing:16.320144pt;}
.ws8{word-spacing:16.320163pt;}
.ws16d{word-spacing:16.359300pt;}
.ws17{word-spacing:16.373464pt;}
.ws18{word-spacing:16.373497pt;}
.ws6f{word-spacing:16.411566pt;}
.ws191{word-spacing:16.425067pt;}
.ws15b{word-spacing:16.448152pt;}
.ws81{word-spacing:16.463832pt;}
.ws14f{word-spacing:16.516098pt;}
.ws10a{word-spacing:16.516119pt;}
.ws7{word-spacing:16.533529pt;}
.ws6c{word-spacing:16.620630pt;}
.wsc8{word-spacing:16.646763pt;}
.ws14e{word-spacing:16.672897pt;}
.ws15a{word-spacing:16.714709pt;}
.wsea{word-spacing:16.725163pt;}
.ws55{word-spacing:16.777429pt;}
.ws51{word-spacing:16.829695pt;}
.wsa6{word-spacing:16.881961pt;}
.wse9{word-spacing:16.934227pt;}
.wsda{word-spacing:16.986493pt;}
.ws44{word-spacing:17.038759pt;}
.wsc0{word-spacing:17.247824pt;}
.ws63{word-spacing:17.300090pt;}
.ws50{word-spacing:17.404622pt;}
.ws6{word-spacing:17.541493pt;}
.ws128{word-spacing:17.561421pt;}
.ws5{word-spacing:17.600160pt;}
.ws68{word-spacing:17.613687pt;}
.wsc1{word-spacing:17.618914pt;}
.ws174{word-spacing:17.629367pt;}
.ws129{word-spacing:17.665953pt;}
.ws4{word-spacing:17.717494pt;}
.ws168{word-spacing:17.718219pt;}
.wsbc{word-spacing:17.765259pt;}
.wsed{word-spacing:17.875018pt;}
.ws105{word-spacing:17.927284pt;}
.ws59{word-spacing:17.979550pt;}
.wsec{word-spacing:18.084082pt;}
.ws41{word-spacing:18.131122pt;}
.ws181{word-spacing:18.136348pt;}
.wsbf{word-spacing:18.157255pt;}
.ws18e{word-spacing:18.162481pt;}
.ws5f{word-spacing:18.188614pt;}
.ws189{word-spacing:18.214747pt;}
.ws113{word-spacing:18.240881pt;}
.ws46{word-spacing:18.293147pt;}
.ws16b{word-spacing:18.345413pt;}
.ws127{word-spacing:18.397679pt;}
.wsf3{word-spacing:18.449945pt;}
.ws188{word-spacing:18.507438pt;}
.ws137{word-spacing:18.554477pt;}
.ws56{word-spacing:18.570157pt;}
.ws43{word-spacing:18.606743pt;}
.ws10d{word-spacing:18.711276pt;}
.ws45{word-spacing:18.763542pt;}
.ws84{word-spacing:18.868074pt;}
.ws141{word-spacing:18.920340pt;}
.ws58{word-spacing:18.946473pt;}
.ws4b{word-spacing:18.972606pt;}
.ws4a{word-spacing:19.077139pt;}
.ws57{word-spacing:19.134631pt;}
.ws9c{word-spacing:19.181671pt;}
.wsd8{word-spacing:19.223484pt;}
.wsa9{word-spacing:19.233937pt;}
.ws85{word-spacing:19.443002pt;}
.ws172{word-spacing:19.448228pt;}
.ws17d{word-spacing:19.495268pt;}
.wsd2{word-spacing:19.500494pt;}
.ws142{word-spacing:19.547534pt;}
.ws165{word-spacing:19.599800pt;}
.ws10e{word-spacing:19.652066pt;}
.wse1{word-spacing:19.756598pt;}
.ws10f{word-spacing:19.808865pt;}
.ws167{word-spacing:19.861131pt;}
.ws14a{word-spacing:20.017929pt;}
.ws67{word-spacing:20.070195pt;}
.ws1d{word-spacing:20.122461pt;}
.ws15e{word-spacing:20.242673pt;}
.ws87{word-spacing:20.331526pt;}
.ws125{word-spacing:20.425605pt;}
.ws9e{word-spacing:20.436058pt;}
.wsc6{word-spacing:20.462191pt;}
.ws77{word-spacing:20.488324pt;}
.ws13b{word-spacing:20.592857pt;}
.wsb4{word-spacing:20.713069pt;}
.ws5c{word-spacing:20.718295pt;}
.ws175{word-spacing:20.718300pt;}
.ws2b{word-spacing:20.828054pt;}
.ws8a{word-spacing:20.854187pt;}
.ws152{word-spacing:20.906453pt;}
.wsef{word-spacing:20.958719pt;}
.wsbd{word-spacing:20.969173pt;}
.ws0{word-spacing:21.008000pt;}
.ws72{word-spacing:21.010986pt;}
.ws1c{word-spacing:21.063252pt;}
.wsdf{word-spacing:21.115518pt;}
.ws1b{word-spacing:21.272316pt;}
.ws9f{word-spacing:21.324582pt;}
.ws100{word-spacing:21.376849pt;}
.ws2e{word-spacing:21.570233pt;}
.ws166{word-spacing:21.585913pt;}
.ws13e{word-spacing:21.638179pt;}
.ws150{word-spacing:21.690445pt;}
.wsb3{word-spacing:21.721805pt;}
.ws11d{word-spacing:21.737485pt;}
.ws52{word-spacing:21.742711pt;}
.ws159{word-spacing:21.768845pt;}
.ws60{word-spacing:21.794978pt;}
.ws126{word-spacing:21.899510pt;}
.ws61{word-spacing:22.004023pt;}
.ws11c{word-spacing:22.004042pt;}
.wscd{word-spacing:22.014495pt;}
.wse0{word-spacing:22.056308pt;}
.ws161{word-spacing:22.103348pt;}
.ws112{word-spacing:22.108574pt;}
.ws176{word-spacing:22.129486pt;}
.ws111{word-spacing:22.160841pt;}
.ws1a{word-spacing:22.265373pt;}
.ws160{word-spacing:22.270599pt;}
.ws114{word-spacing:22.369905pt;}
.wse5{word-spacing:22.422171pt;}
.ws120{word-spacing:22.437851pt;}
.ws184{word-spacing:22.443078pt;}
.ws101{word-spacing:22.526703pt;}
.ws117{word-spacing:22.683502pt;}
.wsaa{word-spacing:22.735768pt;}
.ws177{word-spacing:22.777581pt;}
.ws14b{word-spacing:22.788034pt;}
.ws106{word-spacing:22.840300pt;}
.ws124{word-spacing:22.871660pt;}
.ws17a{word-spacing:22.944833pt;}
.wsce{word-spacing:23.091178pt;}
.ws6e{word-spacing:23.101631pt;}
.ws7a{word-spacing:23.206163pt;}
.ws2c{word-spacing:23.211390pt;}
.ws173{word-spacing:23.216616pt;}
.ws151{word-spacing:23.258429pt;}
.wse3{word-spacing:23.310695pt;}
.wsde{word-spacing:23.362962pt;}
.ws4f{word-spacing:23.467494pt;}
.wsee{word-spacing:23.519760pt;}
.ws123{word-spacing:23.524987pt;}
.wsd1{word-spacing:23.713145pt;}
.ws140{word-spacing:23.781091pt;}
.wsa2{word-spacing:23.833357pt;}
.ws171{word-spacing:23.974475pt;}
.ws20{word-spacing:24.000608pt;}
.ws11f{word-spacing:24.073781pt;}
.wsb1{word-spacing:24.094687pt;}
.ws185{word-spacing:24.110367pt;}
.ws103{word-spacing:24.146954pt;}
.wsb0{word-spacing:24.251486pt;}
.wsfe{word-spacing:24.303752pt;}
.wsf6{word-spacing:24.356018pt;}
.ws186{word-spacing:24.465777pt;}
.ws162{word-spacing:24.591216pt;}
.ws54{word-spacing:24.617349pt;}
.wsa5{word-spacing:24.669615pt;}
.wsc4{word-spacing:24.695748pt;}
.wsd7{word-spacing:24.732334pt;}
.ws110{word-spacing:24.774147pt;}
.ws157{word-spacing:24.899586pt;}
.ws5b{word-spacing:24.930946pt;}
.wsc3{word-spacing:24.962305pt;}
.ws53{word-spacing:24.983212pt;}
.ws183{word-spacing:25.004118pt;}
.wsb9{word-spacing:25.025025pt;}
.wsfc{word-spacing:25.035478pt;}
.wsd9{word-spacing:25.051158pt;}
.ws6b{word-spacing:25.453607pt;}
.ws27{word-spacing:25.469287pt;}
.ws28{word-spacing:25.484961pt;}
.wsf8{word-spacing:25.505873pt;}
.ws6a{word-spacing:25.558139pt;}
.ws14d{word-spacing:25.819470pt;}
.ws18a{word-spacing:25.829923pt;}
.ws2d{word-spacing:25.840376pt;}
.ws82{word-spacing:25.871736pt;}
.ws187{word-spacing:25.887416pt;}
.ws80{word-spacing:26.028534pt;}
.ws26{word-spacing:26.127840pt;}
.ws48{word-spacing:26.133067pt;}
.ws122{word-spacing:26.164426pt;}
.ws30{word-spacing:26.263732pt;}
.ws47{word-spacing:26.289865pt;}
.wsac{word-spacing:26.394397pt;}
.wsff{word-spacing:26.446663pt;}
.ws76{word-spacing:26.551196pt;}
.ws2f{word-spacing:26.587782pt;}
.ws180{word-spacing:26.603462pt;}
.ws6d{word-spacing:26.707994pt;}
.ws5a{word-spacing:26.718447pt;}
.wsb6{word-spacing:26.723674pt;}
.ws10b{word-spacing:26.864793pt;}
.ws1e{word-spacing:27.126123pt;}
.ws178{word-spacing:27.178389pt;}
.ws10c{word-spacing:27.282922pt;}
.wsbe{word-spacing:27.356094pt;}
.ws17e{word-spacing:27.701051pt;}
.ws115{word-spacing:28.432777pt;}
.ws116{word-spacing:28.485043pt;}
.ws22{word-spacing:28.500723pt;}
.ws16a{word-spacing:28.589575pt;}
.wscb{word-spacing:28.850906pt;}
.ws15f{word-spacing:28.871812pt;}
.ws9d{word-spacing:28.903172pt;}
.wsdd{word-spacing:28.955438pt;}
.ws74{word-spacing:29.059970pt;}
.wsa7{word-spacing:29.269035pt;}
.ws154{word-spacing:29.530365pt;}
.ws11a{word-spacing:29.582631pt;}
.ws17f{word-spacing:29.687164pt;}
.wsd6{word-spacing:29.843962pt;}
.ws15d{word-spacing:29.870095pt;}
.ws119{word-spacing:29.948494pt;}
.wsae{word-spacing:30.000761pt;}
.ws15c{word-spacing:30.100066pt;}
.ws118{word-spacing:30.680220pt;}
.wsf9{word-spacing:30.732486pt;}
.ws23{word-spacing:30.983364pt;}
.ws169{word-spacing:30.993817pt;}
.ws25{word-spacing:31.140162pt;}
.ws104{word-spacing:31.307414pt;}
.ws4d{word-spacing:31.411946pt;}
.ws4e{word-spacing:31.568745pt;}
.ws29{word-spacing:31.594878pt;}
.ws4c{word-spacing:31.830075pt;}
.ws102{word-spacing:31.882341pt;}
.ws2a{word-spacing:31.892795pt;}
.ws163{word-spacing:31.924154pt;}
.ws62{word-spacing:32.039140pt;}
.ws109{word-spacing:32.195938pt;}
.ws69{word-spacing:32.927664pt;}
.ws18f{word-spacing:33.152408pt;}
.wsaf{word-spacing:33.502591pt;}
.ws139{word-spacing:33.659390pt;}
.ws7f{word-spacing:33.868454pt;}
.ws18b{word-spacing:33.931174pt;}
.ws121{word-spacing:33.941627pt;}
.wsa0{word-spacing:34.025253pt;}
.ws65{word-spacing:34.234317pt;}
.ws83{word-spacing:34.547914pt;}
.ws108{word-spacing:34.756979pt;}
.ws107{word-spacing:34.861511pt;}
.ws73{word-spacing:34.966043pt;}
.ws182{word-spacing:35.175108pt;}
.ws13f{word-spacing:35.384172pt;}
.wsb5{word-spacing:36.225657pt;}
.wsfb{word-spacing:38.102011pt;}
.ws1{word-spacing:38.144159pt;}
.ws2{word-spacing:38.272159pt;}
.ws3{word-spacing:38.400160pt;}
.ws13a{word-spacing:39.095068pt;}
.ws1b7{word-spacing:39.340140pt;}
.ws7e{word-spacing:40.767584pt;}
.wsad{word-spacing:40.872116pt;}
.ws7d{word-spacing:41.081181pt;}
.ws49{word-spacing:41.185713pt;}
.ws13c{word-spacing:42.858229pt;}
.ws75{word-spacing:43.119560pt;}
.ws89{word-spacing:47.353117pt;}
.ws149{word-spacing:231.463773pt;}
.ws148{word-spacing:311.676104pt;}
.ws8d{word-spacing:358.822165pt;}
.ws91{word-spacing:358.822218pt;}
.ws90{word-spacing:379.259243pt;}
._31{margin-left:-25.339807pt;}
._5f{margin-left:-16.672897pt;}
._5e{margin-left:-14.948114pt;}
._5c{margin-left:-13.902791pt;}
._5d{margin-left:-12.909735pt;}
._14{margin-left:-4.808484pt;}
._33{margin-left:-3.816548pt;}
._10{margin-left:-2.345253pt;}
._a{margin-left:-0.915218pt;}
._4{width:1.333347pt;}
._9{width:2.299710pt;}
._0{width:7.973333pt;}
._18{width:10.139599pt;}
._7{width:11.306835pt;}
._c{width:12.218487pt;}
._d{width:13.397170pt;}
._6{width:15.253486pt;}
._5{width:16.853502pt;}
._e{width:18.293147pt;}
._f{width:19.704332pt;}
._11{width:20.932026pt;}
._16{width:22.369905pt;}
._8{width:23.572026pt;}
._15{width:24.512817pt;}
._b{width:25.474527pt;}
._13{width:26.551196pt;}
._32{width:27.465293pt;}
._1{width:29.050667pt;}
._17{width:30.548995pt;}
._30{width:31.464212pt;}
._19{width:32.823132pt;}
._12{width:33.920721pt;}
._35{width:35.013827pt;}
._34{width:36.272697pt;}
._3{width:39.168163pt;}
._1a{width:41.864052pt;}
._60{width:58.559219pt;}
._4a{width:83.198960pt;}
._43{width:97.364116pt;}
._4f{width:112.796519pt;}
._44{width:129.756238pt;}
._4d{width:131.582355pt;}
._3a{width:132.947671pt;}
._47{width:135.592972pt;}
._42{width:143.998200pt;}
._3b{width:150.184789pt;}
._38{width:152.659425pt;}
._3f{width:155.176727pt;}
._3d{width:171.645854pt;}
._49{width:174.291155pt;}
._1c{width:208.850723pt;}
._41{width:216.607471pt;}
._2a{width:226.482539pt;}
._58{width:230.866447pt;}
._27{width:238.461005pt;}
._28{width:242.002294pt;}
._40{width:245.603319pt;}
._45{width:254.076813pt;}
._50{width:267.337450pt;}
._57{width:273.959201pt;}
._1e{width:286.119075pt;}
._59{width:294.950965pt;}
._46{width:303.782883pt;}
._55{width:311.249443pt;}
._39{width:319.556544pt;}
._48{width:323.537228pt;}
._3e{width:340.019158pt;}
._52{width:343.078263pt;}
._2b{width:353.232903pt;}
._56{width:354.939563pt;}
._24{width:358.864831pt;}
._3c{width:360.452019pt;}
._23{width:372.731326pt;}
._29{width:375.675290pt;}
._26{width:379.301962pt;}
._25{width:381.392551pt;}
._37{width:385.074649pt;}
._54{width:386.043174pt;}
._5b{width:405.157587pt;}
._51{width:415.858161pt;}
._2c{width:418.128092pt;}
._2d{width:446.415739pt;}
._5a{width:485.711262pt;}
._2e{width:495.012465pt;}
._1b{width:579.704792pt;}
._21{width:630.690822pt;}
._22{width:634.232058pt;}
._20{width:635.170713pt;}
._1f{width:637.816013pt;}
._1d{width:645.367971pt;}
._36{width:649.672885pt;}
._4b{width:893.130101pt;}
._4e{width:912.671244pt;}
._53{width:932.809605pt;}
._4c{width:951.369437pt;}
._2{width:1424.245280pt;}
._2f{width:1544.001986pt;}
.fsa{font-size:26.662400pt;}
.fs7{font-size:34.839467pt;}
.fs8{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs9{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:58.128080pt;}
.y33{bottom:68.786600pt;}
.y138{bottom:79.355613pt;}
.y12f{bottom:79.366267pt;}
.y12d{bottom:79.370147pt;}
.y1fb{bottom:79.371240pt;}
.y1bc{bottom:79.375133pt;}
.ye5{bottom:79.375627pt;}
.y11d{bottom:79.376760pt;}
.y7f{bottom:79.382253pt;}
.y12a{bottom:79.402907pt;}
.yb4{bottom:79.409747pt;}
.y11a{bottom:79.421987pt;}
.y6f{bottom:79.423880pt;}
.y141{bottom:79.430173pt;}
.y32{bottom:79.445107pt;}
.yc7{bottom:79.448960pt;}
.y187{bottom:79.483467pt;}
.y161{bottom:87.704333pt;}
.y139{bottom:90.011493pt;}
.y13a{bottom:90.022173pt;}
.y13b{bottom:90.032813pt;}
.y146{bottom:90.053987pt;}
.y13c{bottom:90.054160pt;}
.y145{bottom:90.064667pt;}
.y13d{bottom:90.064800pt;}
.y144{bottom:90.075347pt;}
.y13e{bottom:90.075440pt;}
.y142{bottom:90.086040pt;}
.y143{bottom:90.096707pt;}
.y31{bottom:90.103627pt;}
.y1fa{bottom:91.391080pt;}
.y1bb{bottom:91.394973pt;}
.ye4{bottom:95.395200pt;}
.y11c{bottom:95.396333pt;}
.y7e{bottom:95.401827pt;}
.y129{bottom:95.422480pt;}
.yb3{bottom:95.429307pt;}
.y119{bottom:95.441560pt;}
.y6e{bottom:95.443453pt;}
.yc6{bottom:95.468533pt;}
.y186{bottom:95.503027pt;}
.y147{bottom:100.635160pt;}
.y13f{bottom:100.656600pt;}
.y140{bottom:100.667253pt;}
.y30{bottom:100.762133pt;}
.y160{bottom:101.080173pt;}
.y1f9{bottom:103.410920pt;}
.y1ba{bottom:103.414813pt;}
.ye3{bottom:111.349693pt;}
.y11b{bottom:111.350573pt;}
.y118{bottom:111.395787pt;}
.y7d{bottom:111.421400pt;}
.y128{bottom:111.442040pt;}
.yb2{bottom:111.448880pt;}
.y6d{bottom:111.463013pt;}
.yc5{bottom:111.488093pt;}
.y185{bottom:111.522600pt;}
.y15f{bottom:114.381333pt;}
.y1f8{bottom:115.350760pt;}
.y1b9{bottom:115.354653pt;}
.y39{bottom:123.361920pt;}
.y2f{bottom:127.158419pt;}
.ye2{bottom:127.370133pt;}
.y1f7{bottom:127.370600pt;}
.y7c{bottom:127.375627pt;}
.y127{bottom:127.396280pt;}
.yb1{bottom:127.403120pt;}
.y117{bottom:127.415360pt;}
.y6c{bottom:127.417253pt;}
.yc4{bottom:127.442333pt;}
.y184{bottom:127.476840pt;}
.y15e{bottom:127.757160pt;}
.y38{bottom:135.381760pt;}
.y23e{bottom:135.384187pt;}
.y1f6{bottom:139.390440pt;}
.y15d{bottom:141.058333pt;}
.y2e{bottom:143.112659pt;}
.y7b{bottom:143.395200pt;}
.y79{bottom:143.409440pt;}
.y126{bottom:143.415853pt;}
.yb0{bottom:143.422693pt;}
.y116{bottom:143.434933pt;}
.y6b{bottom:143.436827pt;}
.yc3{bottom:143.461907pt;}
.y183{bottom:143.496400pt;}
.y37{bottom:147.401600pt;}
.y23d{bottom:147.404027pt;}
.y1b8{bottom:148.234213pt;}
.y7a{bottom:149.215733pt;}
.y1f5{bottom:151.410280pt;}
.y36{bottom:151.861467pt;}
.y15c{bottom:154.359493pt;}
.y2d{bottom:159.132233pt;}
.y23c{bottom:159.343867pt;}
.ye1{bottom:159.371307pt;}
.y115{bottom:159.389173pt;}
.y35{bottom:159.420400pt;}
.y78{bottom:159.429013pt;}
.y125{bottom:159.435427pt;}
.yaf{bottom:159.442253pt;}
.y6a{bottom:159.456387pt;}
.yc2{bottom:159.481480pt;}
.y182{bottom:159.515973pt;}
.y1b7{bottom:160.174053pt;}
.y1f4{bottom:163.350120pt;}
.y15b{bottom:167.735333pt;}
.y23b{bottom:171.363707pt;}
.y1b6{bottom:172.193893pt;}
.y12e{bottom:174.085080pt;}
.y2c{bottom:175.151806pt;}
.y1f3{bottom:175.369960pt;}
.y77{bottom:175.383240pt;}
.y124{bottom:175.389653pt;}
.ye0{bottom:175.390880pt;}
.yae{bottom:175.396493pt;}
.y114{bottom:175.408733pt;}
.y69{bottom:175.410627pt;}
.yc1{bottom:175.435707pt;}
.y181{bottom:175.470213pt;}
.y23a{bottom:183.383547pt;}
.y1b5{bottom:184.213733pt;}
.y1f2{bottom:187.389800pt;}
.y2b{bottom:191.106033pt;}
.y76{bottom:191.402813pt;}
.y123{bottom:191.409227pt;}
.ydf{bottom:191.410440pt;}
.yad{bottom:191.416067pt;}
.y113{bottom:191.428307pt;}
.y68{bottom:191.430200pt;}
.yc0{bottom:191.455280pt;}
.y180{bottom:191.489787pt;}
.y239{bottom:195.403387pt;}
.y1b4{bottom:196.233573pt;}
.y1f1{bottom:199.409640pt;}
.y2a{bottom:207.125606pt;}
.y23{bottom:207.130259pt;}
.y238{bottom:207.343227pt;}
.yde{bottom:207.364680pt;}
.y112{bottom:207.382547pt;}
.y75{bottom:207.422387pt;}
.y122{bottom:207.428800pt;}
.yac{bottom:207.435627pt;}
.y67{bottom:207.449773pt;}
.ybf{bottom:207.474853pt;}
.y17f{bottom:207.509347pt;}
.y1b3{bottom:208.173413pt;}
.y1f0{bottom:211.349480pt;}
.y237{bottom:219.363067pt;}
.y1b2{bottom:220.193253pt;}
.y29{bottom:223.145179pt;}
.y22{bottom:223.149833pt;}
.y1ef{bottom:223.369320pt;}
.y74{bottom:223.376613pt;}
.y121{bottom:223.383027pt;}
.ydd{bottom:223.384253pt;}
.yab{bottom:223.389867pt;}
.y111{bottom:223.402107pt;}
.y66{bottom:223.404000pt;}
.ybe{bottom:223.429080pt;}
.y17e{bottom:223.463587pt;}
.y236{bottom:231.382907pt;}
.y1b1{bottom:232.213093pt;}
.y1ee{bottom:235.389160pt;}
.y28{bottom:239.099406pt;}
.y21{bottom:239.104059pt;}
.y73{bottom:239.396187pt;}
.y120{bottom:239.402600pt;}
.ydc{bottom:239.403827pt;}
.yaa{bottom:239.409440pt;}
.y110{bottom:239.421680pt;}
.y65{bottom:239.423573pt;}
.ybd{bottom:239.448653pt;}
.y17d{bottom:239.483160pt;}
.y235{bottom:243.402747pt;}
.y1ae{bottom:244.231280pt;}
.y1b0{bottom:244.232933pt;}
.y1ed{bottom:247.409000pt;}
.y1af{bottom:248.617333pt;}
.y27{bottom:255.118979pt;}
.y20{bottom:255.123633pt;}
.y234{bottom:255.342587pt;}
.ydb{bottom:255.358053pt;}
.y10f{bottom:255.375920pt;}
.y64{bottom:255.377813pt;}
.y72{bottom:255.415760pt;}
.y11f{bottom:255.422173pt;}
.ya9{bottom:255.429013pt;}
.ybc{bottom:255.468227pt;}
.y17c{bottom:255.502720pt;}
.y1ad{bottom:256.171120pt;}
.y1ec{bottom:259.348840pt;}
.y233{bottom:267.362427pt;}
.y26{bottom:271.138553pt;}
.y1f{bottom:271.143206pt;}
.y1eb{bottom:271.368680pt;}
.y71{bottom:271.370000pt;}
.y11e{bottom:271.376413pt;}
.yda{bottom:271.377627pt;}
.ya8{bottom:271.383240pt;}
.y10e{bottom:271.395493pt;}
.y63{bottom:271.397373pt;}
.ybb{bottom:271.422467pt;}
.y17b{bottom:271.456960pt;}
.y232{bottom:279.382267pt;}
.y130{bottom:283.161053pt;}
.y1ea{bottom:283.388520pt;}
.y1e{bottom:287.092793pt;}
.y24{bottom:287.110499pt;}
.y70{bottom:287.395200pt;}
.yd9{bottom:287.397200pt;}
.ya7{bottom:287.402813pt;}
.y10d{bottom:287.415053pt;}
.y62{bottom:287.416947pt;}
.yba{bottom:287.442027pt;}
.y17a{bottom:287.476533pt;}
.y231{bottom:291.402107pt;}
.y25{bottom:292.913326pt;}
.y1e9{bottom:295.408360pt;}
.y1ac{bottom:296.010587pt;}
.y230{bottom:303.341947pt;}
.yd8{bottom:303.351427pt;}
.ya6{bottom:303.357053pt;}
.y10c{bottom:303.369293pt;}
.y61{bottom:303.371187pt;}
.yb9{bottom:303.396267pt;}
.y179{bottom:303.430773pt;}
.y1e8{bottom:307.348200pt;}
.y1ab{bottom:308.030427pt;}
.y12b{bottom:314.154280pt;}
.y22f{bottom:315.361787pt;}
.y1e7{bottom:319.368040pt;}
.yd7{bottom:319.371000pt;}
.ya5{bottom:319.376613pt;}
.y10b{bottom:319.388867pt;}
.y60{bottom:319.390760pt;}
.yb8{bottom:319.415840pt;}
.y178{bottom:319.450333pt;}
.y1aa{bottom:320.050267pt;}
.y22e{bottom:327.387960pt;}
.y1d{bottom:327.705566pt;}
.y1e6{bottom:331.387880pt;}
.ya0{bottom:332.806187pt;}
.yd6{bottom:335.390573pt;}
.ya4{bottom:335.396187pt;}
.y10a{bottom:335.408427pt;}
.y5f{bottom:335.410320pt;}
.yb7{bottom:335.435400pt;}
.y177{bottom:335.469907pt;}
.y22d{bottom:339.417800pt;}
.y1e5{bottom:343.407720pt;}
.y1a9{bottom:349.681880pt;}
.y1c{bottom:350.385793pt;}
.yd5{bottom:351.344813pt;}
.ya3{bottom:351.350427pt;}
.y22c{bottom:351.357640pt;}
.y109{bottom:351.362667pt;}
.y5e{bottom:351.364560pt;}
.yb6{bottom:351.389640pt;}
.y176{bottom:351.424147pt;}
.y9f{bottom:351.472627pt;}
.y131{bottom:352.248187pt;}
.y1e4{bottom:355.351080pt;}
.y22b{bottom:363.377480pt;}
.ya2{bottom:367.370000pt;}
.y108{bottom:367.382240pt;}
.y5d{bottom:367.384133pt;}
.yb5{bottom:367.409213pt;}
.y175{bottom:367.443707pt;}
.y9e{bottom:370.064387pt;}
.y1b{bottom:370.412659pt;}
.y22a{bottom:375.397320pt;}
.y107{bottom:383.401813pt;}
.y5c{bottom:383.403693pt;}
.y174{bottom:383.463280pt;}
.y1a{bottom:386.359486pt;}
.y229{bottom:387.417147pt;}
.y9d{bottom:388.730827pt;}
.y1a8{bottom:390.598147pt;}
.y1e3{bottom:394.809973pt;}
.y106{bottom:399.356040pt;}
.y228{bottom:399.357000pt;}
.y5b{bottom:399.357933pt;}
.y173{bottom:399.417520pt;}
.yc8{bottom:401.990400pt;}
.y19{bottom:406.386353pt;}
.y1a7{bottom:406.552373pt;}
.y9c{bottom:407.397253pt;}
.y227{bottom:411.376840pt;}
.y105{bottom:415.375613pt;}
.y5a{bottom:415.377507pt;}
.y172{bottom:415.437093pt;}
.y1e2{bottom:418.769653pt;}
.y18{bottom:422.413179pt;}
.y1a6{bottom:422.571947pt;}
.y226{bottom:423.396667pt;}
.y132{bottom:425.644600pt;}
.y9b{bottom:426.063693pt;}
.y1e1{bottom:430.789480pt;}
.y104{bottom:431.395187pt;}
.y59{bottom:431.397080pt;}
.y171{bottom:431.456653pt;}
.y225{bottom:435.416507pt;}
.y17{bottom:438.360006pt;}
.y1a5{bottom:438.591520pt;}
.y1e0{bottom:442.809320pt;}
.y1de{bottom:442.811800pt;}
.y9a{bottom:444.730120pt;}
.y1df{bottom:447.269200pt;}
.y103{bottom:447.344813pt;}
.y58{bottom:447.351307pt;}
.y224{bottom:447.356360pt;}
.y170{bottom:447.410893pt;}
.y16{bottom:454.386833pt;}
.y1a4{bottom:454.545747pt;}
.y1dd{bottom:454.831640pt;}
.y223{bottom:459.376187pt;}
.y57{bottom:463.370880pt;}
.y99{bottom:463.396560pt;}
.y16f{bottom:463.430467pt;}
.y1da{bottom:466.770560pt;}
.y1dc{bottom:466.771480pt;}
.y15{bottom:470.413659pt;}
.y1a3{bottom:470.565320pt;}
.y1db{bottom:471.231320pt;}
.y222{bottom:471.396027pt;}
.y1d9{bottom:478.790400pt;}
.y56{bottom:479.390453pt;}
.y102{bottom:479.446813pt;}
.y16e{bottom:479.450027pt;}
.y98{bottom:482.062987pt;}
.y1d8{bottom:483.250280pt;}
.y221{bottom:483.415867pt;}
.y14{bottom:486.360486pt;}
.y1a2{bottom:486.584893pt;}
.y1d7{bottom:490.810880pt;}
.y55{bottom:495.344680pt;}
.y220{bottom:495.355707pt;}
.y101{bottom:495.401053pt;}
.y16d{bottom:495.404267pt;}
.y97{bottom:500.729413pt;}
.y13{bottom:502.387313pt;}
.y1a1{bottom:502.539133pt;}
.y21f{bottom:507.375547pt;}
.y54{bottom:511.369867pt;}
.y100{bottom:511.420627pt;}
.y16c{bottom:511.423840pt;}
.y1d6{bottom:514.770560pt;}
.y1a0{bottom:518.558693pt;}
.y21e{bottom:519.395387pt;}
.y96{bottom:519.395853pt;}
.y12{bottom:522.414179pt;}
.y1d5{bottom:526.790400pt;}
.y53{bottom:527.395187pt;}
.yff{bottom:527.440200pt;}
.y16b{bottom:527.443413pt;}
.y21d{bottom:531.415227pt;}
.y19f{bottom:534.578267pt;}
.y133{bottom:534.720573pt;}
.y95{bottom:538.062280pt;}
.y11{bottom:538.361006pt;}
.y1d4{bottom:538.809320pt;}
.y21c{bottom:543.355067pt;}
.yd4{bottom:543.364520pt;}
.yfe{bottom:543.394427pt;}
.y16a{bottom:543.397640pt;}
.y19e{bottom:550.532507pt;}
.y10{bottom:554.387833pt;}
.y21b{bottom:555.374907pt;}
.y94{bottom:556.728720pt;}
.yd3{bottom:559.384093pt;}
.yfd{bottom:559.414000pt;}
.y169{bottom:559.417213pt;}
.y19d{bottom:566.552067pt;}
.y21a{bottom:567.394747pt;}
.yf{bottom:570.414673pt;}
.y1d3{bottom:574.269360pt;}
.y93{bottom:575.395147pt;}
.yd2{bottom:575.403653pt;}
.yfc{bottom:575.433573pt;}
.y52{bottom:575.436787pt;}
.y219{bottom:579.414587pt;}
.y19c{bottom:582.571640pt;}
.y1d2{bottom:586.209200pt;}
.ye{bottom:586.361486pt;}
.y218{bottom:591.354427pt;}
.yd1{bottom:591.357893pt;}
.yfb{bottom:591.387813pt;}
.y51{bottom:591.391013pt;}
.y92{bottom:594.061587pt;}
.y19b{bottom:598.525880pt;}
.y217{bottom:603.374267pt;}
.yd{bottom:606.388353pt;}
.yd0{bottom:607.377467pt;}
.yfa{bottom:607.407373pt;}
.y50{bottom:607.410587pt;}
.y91{bottom:612.728013pt;}
.y134{bottom:613.482253pt;}
.y1d1{bottom:613.648827pt;}
.y19a{bottom:614.551067pt;}
.y216{bottom:615.394107pt;}
.yc{bottom:622.415193pt;}
.ycf{bottom:623.397027pt;}
.yf9{bottom:623.426947pt;}
.y4f{bottom:623.430160pt;}
.y1d0{bottom:625.668667pt;}
.y215{bottom:627.413947pt;}
.y90{bottom:631.394453pt;}
.y1cf{bottom:637.688507pt;}
.yb{bottom:638.362006pt;}
.yce{bottom:639.351267pt;}
.y214{bottom:639.353787pt;}
.yf8{bottom:639.381187pt;}
.y4e{bottom:639.384400pt;}
.y8f{bottom:650.060880pt;}
.y213{bottom:651.373627pt;}
.ycd{bottom:655.370840pt;}
.y151{bottom:655.384093pt;}
.y15a{bottom:655.397160pt;}
.yf7{bottom:655.400747pt;}
.y4d{bottom:655.403960pt;}
.y199{bottom:655.469373pt;}
.ya{bottom:662.399859pt;}
.y212{bottom:663.393467pt;}
.y1ce{bottom:665.128147pt;}
.y8e{bottom:668.727320pt;}
.ycc{bottom:671.390413pt;}
.y150{bottom:671.403653pt;}
.y159{bottom:671.416720pt;}
.yf6{bottom:671.420320pt;}
.y4c{bottom:671.423533pt;}
.y198{bottom:671.528147pt;}
.y211{bottom:675.413307pt;}
.y1cd{bottom:677.067987pt;}
.y135{bottom:686.878667pt;}
.ycb{bottom:687.344640pt;}
.y210{bottom:687.353147pt;}
.y14f{bottom:687.357893pt;}
.y158{bottom:687.370960pt;}
.yf5{bottom:687.374560pt;}
.y4b{bottom:687.377773pt;}
.y8d{bottom:687.393747pt;}
.y197{bottom:687.482387pt;}
.y1cc{bottom:689.087827pt;}
.y20f{bottom:699.372987pt;}
.y1cb{bottom:701.107667pt;}
.yca{bottom:703.369867pt;}
.y14e{bottom:703.377467pt;}
.y157{bottom:703.390533pt;}
.yf4{bottom:703.394133pt;}
.y4a{bottom:703.397333pt;}
.y196{bottom:703.501960pt;}
.y8c{bottom:705.985520pt;}
.y20e{bottom:711.392827pt;}
.y8{bottom:713.725806pt;}
.y14d{bottom:719.397027pt;}
.y156{bottom:719.410107pt;}
.yf3{bottom:719.413693pt;}
.y49{bottom:719.416907pt;}
.y195{bottom:719.521520pt;}
.y9{bottom:720.226553pt;}
.y20d{bottom:723.412667pt;}
.y8b{bottom:724.651947pt;}
.y1ca{bottom:728.547293pt;}
.y6{bottom:732.396646pt;}
.y14c{bottom:735.351267pt;}
.y20c{bottom:735.352507pt;}
.y155{bottom:735.364333pt;}
.yf2{bottom:735.367933pt;}
.y48{bottom:735.371147pt;}
.y194{bottom:735.475760pt;}
.y7{bottom:738.897459pt;}
.y1c9{bottom:740.487133pt;}
.y8a{bottom:743.318387pt;}
.y20b{bottom:747.372347pt;}
.y14b{bottom:751.370840pt;}
.y154{bottom:751.383907pt;}
.yf1{bottom:751.387507pt;}
.y47{bottom:751.390720pt;}
.y193{bottom:751.495333pt;}
.y1c8{bottom:752.506973pt;}
.y20a{bottom:759.392187pt;}
.y89{bottom:761.984813pt;}
.y5{bottom:764.383593pt;}
.y1c7{bottom:764.526813pt;}
.y14a{bottom:767.390413pt;}
.y153{bottom:767.403480pt;}
.yf0{bottom:767.407067pt;}
.y46{bottom:767.410280pt;}
.y192{bottom:767.514893pt;}
.y209{bottom:771.412027pt;}
.y1c6{bottom:776.546653pt;}
.y88{bottom:780.651253pt;}
.y149{bottom:783.344640pt;}
.y208{bottom:783.351867pt;}
.y152{bottom:783.357707pt;}
.yef{bottom:783.361307pt;}
.y45{bottom:783.364520pt;}
.y191{bottom:783.469133pt;}
.y1c5{bottom:788.486493pt;}
.y207{bottom:795.371707pt;}
.y136{bottom:795.954627pt;}
.y4{bottom:799.071739pt;}
.y87{bottom:799.317680pt;}
.yee{bottom:799.380880pt;}
.y44{bottom:799.384093pt;}
.y190{bottom:799.488707pt;}
.y1c4{bottom:800.506333pt;}
.y206{bottom:807.391547pt;}
.y1c3{bottom:812.526173pt;}
.yed{bottom:815.400440pt;}
.y43{bottom:815.403653pt;}
.y18f{bottom:815.508280pt;}
.y86{bottom:817.984120pt;}
.y205{bottom:819.411387pt;}
.y167{bottom:824.629373pt;}
.y166{bottom:831.349280pt;}
.y204{bottom:831.351227pt;}
.yec{bottom:831.354680pt;}
.y42{bottom:831.357893pt;}
.y18e{bottom:831.462507pt;}
.y3{bottom:833.695886pt;}
.y85{bottom:836.650547pt;}
.y1c2{bottom:839.965813pt;}
.y165{bottom:843.295800pt;}
.y203{bottom:843.371067pt;}
.yeb{bottom:847.374253pt;}
.y41{bottom:847.377467pt;}
.y18d{bottom:847.482080pt;}
.y1c1{bottom:851.985653pt;}
.y84{bottom:855.316987pt;}
.y202{bottom:855.390907pt;}
.y164{bottom:861.962227pt;}
.yea{bottom:863.393827pt;}
.y40{bottom:863.397027pt;}
.y18c{bottom:863.501653pt;}
.y1c0{bottom:863.925493pt;}
.y201{bottom:867.410747pt;}
.y2{bottom:868.384019pt;}
.y83{bottom:873.983413pt;}
.y137{bottom:874.641640pt;}
.ye9{bottom:879.348053pt;}
.y200{bottom:879.350587pt;}
.y3f{bottom:879.351267pt;}
.y18b{bottom:879.455880pt;}
.y163{bottom:880.628667pt;}
.y1bf{bottom:891.365120pt;}
.y1ff{bottom:891.370427pt;}
.y82{bottom:892.649853pt;}
.ye8{bottom:895.367627pt;}
.y3e{bottom:895.370840pt;}
.y18a{bottom:895.475453pt;}
.y162{bottom:898.164440pt;}
.y1be{bottom:903.384960pt;}
.y1fe{bottom:903.390267pt;}
.y81{bottom:910.185627pt;}
.ye7{bottom:911.387200pt;}
.y3d{bottom:911.390413pt;}
.y189{bottom:911.495027pt;}
.y1bd{bottom:915.404800pt;}
.y1fd{bottom:915.410107pt;}
.y1{bottom:919.029640pt;}
.ye6{bottom:927.341440pt;}
.y3c{bottom:927.344640pt;}
.y1fc{bottom:927.349947pt;}
.y188{bottom:927.449267pt;}
.y80{bottom:927.722653pt;}
.y3b{bottom:989.180440pt;}
.y12c{bottom:1002.476307pt;}
.y3a{bottom:1002.481613pt;}
.y148{bottom:1002.481627pt;}
.yc9{bottom:1002.484227pt;}
.y168{bottom:1002.493800pt;}
.ya1{bottom:1002.611120pt;}
.hc{height:19.223590pt;}
.h9{height:25.223774pt;}
.ha{height:26.916949pt;}
.h5{height:28.196676pt;}
.hb{height:28.839615pt;}
.he{height:30.762282pt;}
.h10{height:34.608000pt;}
.hf{height:35.377451pt;}
.hd{height:37.588863pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590587pt;}
.x16{left:79.143333pt;}
.x1{left:80.957493pt;}
.x10{left:84.283520pt;}
.x17{left:86.252827pt;}
.x3b{left:95.625760pt;}
.x3{left:147.401520pt;}
.x4{left:168.188987pt;}
.xf{left:180.661387pt;}
.x1a{left:201.448787pt;}
.x1b{left:218.985733pt;}
.x1c{left:236.521520pt;}
.x15{left:240.453467pt;}
.x1d{left:248.542707pt;}
.x1e{left:266.078480pt;}
.x5{left:279.307120pt;}
.x39{left:283.313333pt;}
.x6{left:284.371653pt;}
.x3a{left:286.941613pt;}
.x1f{left:303.411347pt;}
.x30{left:304.403080pt;}
.x20{left:322.003120pt;}
.x37{left:325.341733pt;}
.x38{left:328.894413pt;}
.x21{left:340.669547pt;}
.x22{left:359.335987pt;}
.x23{left:378.002413pt;}
.x7{left:380.069267pt;}
.x8{left:385.058200pt;}
.x24{left:396.668853pt;}
.x14{left:406.302920pt;}
.x34{left:413.329067pt;}
.x25{left:415.335280pt;}
.x11{left:416.940693pt;}
.x3c{left:426.335093pt;}
.x31{left:429.276173pt;}
.x26{left:434.001720pt;}
.x27{left:452.668147pt;}
.x28{left:471.334587pt;}
.x9{left:477.581107pt;}
.xa{left:482.645640pt;}
.x29{left:490.001013pt;}
.x2a{left:508.667440pt;}
.x2b{left:527.333880pt;}
.x2c{left:546.000307pt;}
.x2d{left:564.666747pt;}
.x32{left:568.815760pt;}
.xb{left:570.103933pt;}
.xc{left:575.092867pt;}
.x2e{left:583.333173pt;}
.x35{left:585.070680pt;}
.x36{left:592.251867pt;}
.x2f{left:600.944787pt;}
.x18{left:623.848680pt;}
.x19{left:633.675453pt;}
.x12{left:664.440853pt;}
.x13{left:673.814053pt;}
.xd{left:675.930600pt;}
.xe{left:685.076960pt;}
.x33{left:688.099600pt;}
}




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