
    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_26a2379f92827ec2b804c3d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_6eab1622dc448febb8c59d43.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e72042fa4430d399e51e0513.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62d83eab465adf03cae3cb32.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.077148;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_d34430b1feb0b49eee144974.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ac0b7ecb22ddab3120146372.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929688;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_87318f0767410ff69615bffc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890625;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_80054cdbb2e4f2e66a57cec9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_d023bcf6abf35a43387fe026.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905762;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_5040aca0ecfd451477c14b27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.m13{transform:matrix(0.000000,-0.203389,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.203389,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.203389,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.210224,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.210224,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.210224,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249389,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249389,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249389,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.250108,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250108,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250108,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250938,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250938,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250938,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.285854,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.285854,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.285854,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.153607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153607,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.203389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203389,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.203394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203394,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.203396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203396,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.210224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210224,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.210228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210228,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.210232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210232,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);}
.mc{transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249389,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);}
.m18{transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.285854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.285865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285865,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.285868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285868,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-28.081214px;}
.v5{vertical-align:-8.950752px;}
.v4{vertical-align:-6.115320px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.358081px;}
.v2{vertical-align:39.598081px;}
.ls7b{letter-spacing:-2.269985px;}
.ls34{letter-spacing:-1.308254px;}
.ls33{letter-spacing:-1.168006px;}
.ls83{letter-spacing:-1.150974px;}
.ls7d{letter-spacing:-0.950834px;}
.ls71{letter-spacing:-0.766246px;}
.ls59{letter-spacing:-0.736711px;}
.ls81{letter-spacing:-0.625346px;}
.ls85{letter-spacing:-0.581090px;}
.ls36{letter-spacing:-0.578643px;}
.ls7a{letter-spacing:-0.569153px;}
.ls79{letter-spacing:-0.549676px;}
.ls77{letter-spacing:-0.530200px;}
.ls80{letter-spacing:-0.519379px;}
.ls49{letter-spacing:-0.485944px;}
.ls47{letter-spacing:-0.468700px;}
.ls31{letter-spacing:-0.457573px;}
.ls56{letter-spacing:-0.454564px;}
.ls6f{letter-spacing:-0.444639px;}
.ls75{letter-spacing:-0.429530px;}
.ls53{letter-spacing:-0.402553px;}
.ls5a{letter-spacing:-0.400599px;}
.ls54{letter-spacing:-0.388874px;}
.ls55{letter-spacing:-0.373241px;}
.ls82{letter-spacing:-0.265531px;}
.ls57{letter-spacing:-0.173167px;}
.ls35{letter-spacing:-0.147917px;}
.ls6c{letter-spacing:-0.144288px;}
.ls32{letter-spacing:-0.142435px;}
.ls48{letter-spacing:-0.109729px;}
.ls63{letter-spacing:-0.095760px;}
.ls78{letter-spacing:-0.088727px;}
.ls61{letter-spacing:-0.081396px;}
.ls5d{letter-spacing:-0.078156px;}
.ls84{letter-spacing:-0.073416px;}
.ls5e{letter-spacing:-0.072144px;}
.ls9c{letter-spacing:-0.071820px;}
.ls5f{letter-spacing:-0.067032px;}
.ls6d{letter-spacing:-0.066132px;}
.ls58{letter-spacing:-0.062232px;}
.ls52{letter-spacing:-0.060120px;}
.ls9a{letter-spacing:-0.058716px;}
.ls2c{letter-spacing:-0.054108px;}
.ls46{letter-spacing:-0.048096px;}
.ls9e{letter-spacing:-0.043092px;}
.ls26{letter-spacing:-0.042084px;}
.ls9b{letter-spacing:-0.038304px;}
.ls30{letter-spacing:-0.036072px;}
.ls23{letter-spacing:-0.036000px;}
.lsa0{letter-spacing:-0.033516px;}
.ls76{letter-spacing:-0.032377px;}
.ls28{letter-spacing:-0.030060px;}
.ls60{letter-spacing:-0.028728px;}
.ls2a{letter-spacing:-0.024048px;}
.ls65{letter-spacing:-0.023940px;}
.lsa1{letter-spacing:-0.019152px;}
.ls27{letter-spacing:-0.018036px;}
.ls70{letter-spacing:-0.017268px;}
.ls45{letter-spacing:-0.012024px;}
.ls24{letter-spacing:-0.006012px;}
.ls9f{letter-spacing:-0.004788px;}
.ls22{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.004788px;}
.ls8{letter-spacing:0.006012px;}
.ls4e{letter-spacing:0.007776px;}
.ls0{letter-spacing:0.009576px;}
.ls21{letter-spacing:0.011988px;}
.ls3{letter-spacing:0.012024px;}
.ls4c{letter-spacing:0.014364px;}
.ls1{letter-spacing:0.014400px;}
.ls66{letter-spacing:0.016776px;}
.ls2d{letter-spacing:0.018036px;}
.ls6b{letter-spacing:0.018650px;}
.ls3f{letter-spacing:0.019152px;}
.ls2{letter-spacing:0.024048px;}
.ls2b{letter-spacing:0.025164px;}
.ls42{letter-spacing:0.028728px;}
.ls15{letter-spacing:0.030060px;}
.ls3b{letter-spacing:0.033516px;}
.ls6e{letter-spacing:0.033552px;}
.ls3a{letter-spacing:0.036072px;}
.ls8d{letter-spacing:0.038304px;}
.ls13{letter-spacing:0.041940px;}
.ls6{letter-spacing:0.042084px;}
.ls38{letter-spacing:0.047880px;}
.ls14{letter-spacing:0.048096px;}
.lsb{letter-spacing:0.050328px;}
.ls43{letter-spacing:0.052668px;}
.ls1a{letter-spacing:0.054108px;}
.ls5c{letter-spacing:0.058716px;}
.ls11{letter-spacing:0.060120px;}
.ls3d{letter-spacing:0.062244px;}
.ls20{letter-spacing:0.066132px;}
.ls4f{letter-spacing:0.067032px;}
.ls1f{letter-spacing:0.071820px;}
.ls5{letter-spacing:0.072144px;}
.ls8a{letter-spacing:0.075492px;}
.ls39{letter-spacing:0.076608px;}
.lse{letter-spacing:0.078156px;}
.ls8f{letter-spacing:0.081396px;}
.ls10{letter-spacing:0.084168px;}
.ls92{letter-spacing:0.086184px;}
.ls12{letter-spacing:0.090180px;}
.ls69{letter-spacing:0.090972px;}
.ls99{letter-spacing:0.092268px;}
.ls3e{letter-spacing:0.095760px;}
.ls7{letter-spacing:0.096192px;}
.ls4d{letter-spacing:0.100548px;}
.ls1d{letter-spacing:0.102204px;}
.ls50{letter-spacing:0.102564px;}
.ls51{letter-spacing:0.102924px;}
.ls90{letter-spacing:0.105336px;}
.ls4{letter-spacing:0.108216px;}
.ls1e{letter-spacing:0.110124px;}
.ls17{letter-spacing:0.114228px;}
.lsa{letter-spacing:0.120240px;}
.lsd{letter-spacing:0.125820px;}
.lsf{letter-spacing:0.126252px;}
.ls9d{letter-spacing:0.126360px;}
.ls62{letter-spacing:0.128484px;}
.ls9{letter-spacing:0.132264px;}
.ls86{letter-spacing:0.138276px;}
.ls95{letter-spacing:0.138852px;}
.ls29{letter-spacing:0.144288px;}
.ls2f{letter-spacing:0.150300px;}
.ls94{letter-spacing:0.153216px;}
.ls1b{letter-spacing:0.156312px;}
.ls91{letter-spacing:0.158004px;}
.ls3c{letter-spacing:0.162324px;}
.ls98{letter-spacing:0.167760px;}
.ls93{letter-spacing:0.172368px;}
.ls40{letter-spacing:0.174348px;}
.ls25{letter-spacing:0.176148px;}
.ls89{letter-spacing:0.178632px;}
.ls5b{letter-spacing:0.179280px;}
.ls44{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.180360px;}
.ls37{letter-spacing:0.181944px;}
.ls88{letter-spacing:0.182700px;}
.ls87{letter-spacing:0.192024px;}
.ls96{letter-spacing:0.201096px;}
.ls8b{letter-spacing:0.220248px;}
.ls2e{letter-spacing:0.492984px;}
.ls74{letter-spacing:0.507403px;}
.ls7f{letter-spacing:0.676504px;}
.ls41{letter-spacing:0.769672px;}
.ls72{letter-spacing:1.241294px;}
.ls64{letter-spacing:1.278396px;}
.ls8e{letter-spacing:1.350216px;}
.ls68{letter-spacing:2.071147px;}
.ls73{letter-spacing:2.475614px;}
.ls7c{letter-spacing:2.997126px;}
.ls7e{letter-spacing:3.041407px;}
.ls97{letter-spacing:8.288028px;}
.ls8c{letter-spacing:32.409972px;}
.ls16{letter-spacing:40.887612px;}
.lsc{letter-spacing:41.117976px;}
.ls4b{letter-spacing:76.108617px;}
.ls67{letter-spacing:90.744556px;}
.ls6a{letter-spacing:91.068310px;}
.ls18{letter-spacing:255.327675px;}
.ls19{letter-spacing:395.477973px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws6{word-spacing:-60.120000px;}
.ws66{word-spacing:-47.880000px;}
.ws2{word-spacing:-21.146148px;}
.ws14e{word-spacing:-21.137760px;}
.ws5{word-spacing:-15.676200px;}
.ws3{word-spacing:-15.210360px;}
.ws1{word-spacing:-15.102144px;}
.wsb4{word-spacing:-15.030000px;}
.wsf8{word-spacing:-14.885712px;}
.wsb7{word-spacing:-13.310640px;}
.ws14f{word-spacing:-12.190248px;}
.ws155{word-spacing:-12.171096px;}
.ws153{word-spacing:-12.065760px;}
.ws151{word-spacing:-12.046608px;}
.ws152{word-spacing:-12.032244px;}
.ws150{word-spacing:-11.970000px;}
.ws154{word-spacing:-11.936484px;}
.wsb5{word-spacing:-9.727776px;}
.wsad{word-spacing:-9.720000px;}
.wsb6{word-spacing:-8.435124px;}
.wsb3{word-spacing:-7.649280px;}
.wsfe{word-spacing:-5.968087px;}
.ws104{word-spacing:-5.927415px;}
.wsfd{word-spacing:-5.570934px;}
.wsfc{word-spacing:-5.555825px;}
.ws105{word-spacing:-5.496763px;}
.wsfb{word-spacing:-5.234217px;}
.wsb2{word-spacing:-5.031911px;}
.wsb0{word-spacing:-5.029956px;}
.wsb1{word-spacing:-4.695798px;}
.wsd{word-spacing:-4.492050px;}
.ws16b{word-spacing:-1.602108px;}
.ws13d{word-spacing:-0.857653px;}
.ws140{word-spacing:-0.697811px;}
.ws136{word-spacing:-0.629945px;}
.ws137{word-spacing:-0.581130px;}
.wsa1{word-spacing:-0.462430px;}
.ws13f{word-spacing:-0.459124px;}
.ws42{word-spacing:-0.402804px;}
.ws138{word-spacing:-0.300191px;}
.ws55{word-spacing:-0.272916px;}
.ws198{word-spacing:-0.263340px;}
.ws18c{word-spacing:-0.248976px;}
.ws139{word-spacing:-0.202233px;}
.ws18b{word-spacing:-0.196308px;}
.wse0{word-spacing:-0.191520px;}
.ws9b{word-spacing:-0.186732px;}
.ws13b{word-spacing:-0.181944px;}
.ws195{word-spacing:-0.177156px;}
.wsd4{word-spacing:-0.162792px;}
.wsf0{word-spacing:-0.158004px;}
.ws99{word-spacing:-0.153216px;}
.wsd9{word-spacing:-0.150984px;}
.ws31{word-spacing:-0.134208px;}
.ws11d{word-spacing:-0.125820px;}
.ws85{word-spacing:-0.124488px;}
.wsf1{word-spacing:-0.119700px;}
.ws30{word-spacing:-0.117432px;}
.ws9c{word-spacing:-0.110124px;}
.ws12e{word-spacing:-0.109044px;}
.wsd3{word-spacing:-0.105336px;}
.ws10{word-spacing:-0.095904px;}
.wscf{word-spacing:-0.095760px;}
.ws149{word-spacing:-0.089994px;}
.ws19f{word-spacing:-0.086184px;}
.ws19d{word-spacing:-0.071820px;}
.ws19e{word-spacing:-0.062244px;}
.ws16a{word-spacing:-0.036072px;}
.wsdf{word-spacing:-0.030060px;}
.ws47{word-spacing:-0.024048px;}
.ws75{word-spacing:-0.018036px;}
.ws11{word-spacing:-0.014400px;}
.ws11a{word-spacing:-0.012024px;}
.ws1c{word-spacing:-0.006012px;}
.wsf{word-spacing:0.000000px;}
.wse{word-spacing:0.009576px;}
.ws50{word-spacing:0.012024px;}
.ws84{word-spacing:0.024048px;}
.ws15{word-spacing:0.030060px;}
.ws12{word-spacing:0.036000px;}
.ws98{word-spacing:0.036072px;}
.ws188{word-spacing:0.042084px;}
.ws45{word-spacing:0.048096px;}
.ws87{word-spacing:0.054108px;}
.ws166{word-spacing:0.060120px;}
.ws13{word-spacing:0.066132px;}
.ws14{word-spacing:0.078156px;}
.ws183{word-spacing:0.120240px;}
.ws176{word-spacing:0.126252px;}
.ws9a{word-spacing:0.172368px;}
.ws13a{word-spacing:0.251048px;}
.ws9e{word-spacing:0.276552px;}
.wsd1{word-spacing:0.295827px;}
.ws2c{word-spacing:0.324648px;}
.ws111{word-spacing:0.330660px;}
.wse5{word-spacing:0.342684px;}
.ws9f{word-spacing:0.348696px;}
.ws112{word-spacing:0.438876px;}
.ws52{word-spacing:0.552228px;}
.wsd0{word-spacing:0.577224px;}
.ws14b{word-spacing:0.677297px;}
.ws83{word-spacing:0.703404px;}
.ws11f{word-spacing:0.709416px;}
.ws46{word-spacing:0.715428px;}
.ws128{word-spacing:0.727452px;}
.wsa2{word-spacing:0.793185px;}
.ws14a{word-spacing:0.876555px;}
.wsd2{word-spacing:0.876666px;}
.ws53{word-spacing:0.909688px;}
.ws13e{word-spacing:0.929527px;}
.ws54{word-spacing:0.984583px;}
.ws14c{word-spacing:1.037111px;}
.wsa0{word-spacing:1.082160px;}
.ws122{word-spacing:1.094184px;}
.ws18a{word-spacing:1.268820px;}
.wsa5{word-spacing:1.278396px;}
.wsa6{word-spacing:1.297548px;}
.ws148{word-spacing:1.347540px;}
.ws14d{word-spacing:1.352670px;}
.ws51{word-spacing:1.356464px;}
.ws181{word-spacing:1.424844px;}
.ws2d{word-spacing:1.430856px;}
.wse2{word-spacing:1.442880px;}
.ws144{word-spacing:1.599192px;}
.wsa4{word-spacing:1.656648px;}
.ws189{word-spacing:1.671012px;}
.ws16d{word-spacing:1.779552px;}
.ws160{word-spacing:1.797588px;}
.ws108{word-spacing:1.809612px;}
.ws10b{word-spacing:1.833660px;}
.ws26{word-spacing:1.863720px;}
.ws96{word-spacing:1.935864px;}
.ws120{word-spacing:2.134260px;}
.ws95{word-spacing:2.146284px;}
.ws27{word-spacing:2.158308px;}
.ws127{word-spacing:2.513016px;}
.ws90{word-spacing:2.519028px;}
.wsf3{word-spacing:2.531052px;}
.ws74{word-spacing:2.555100px;}
.ws3a{word-spacing:2.579148px;}
.wse7{word-spacing:2.681352px;}
.ws169{word-spacing:2.861712px;}
.ws4f{word-spacing:2.867724px;}
.wse6{word-spacing:2.873736px;}
.wscd{word-spacing:2.879748px;}
.ws15b{word-spacing:2.885760px;}
.ws39{word-spacing:2.927844px;}
.ws73{word-spacing:2.939868px;}
.ws64{word-spacing:2.957904px;}
.wse8{word-spacing:2.963916px;}
.wse9{word-spacing:3.042072px;}
.ws13c{word-spacing:3.081027px;}
.wsde{word-spacing:3.228444px;}
.ws164{word-spacing:3.240468px;}
.ws119{word-spacing:3.252492px;}
.ws35{word-spacing:3.282552px;}
.ws8d{word-spacing:3.342672px;}
.ws32{word-spacing:3.354696px;}
.ws33{word-spacing:3.384756px;}
.ws163{word-spacing:3.565116px;}
.ws12d{word-spacing:3.583152px;}
.ws179{word-spacing:3.589164px;}
.ws110{word-spacing:3.595176px;}
.ws15c{word-spacing:3.601188px;}
.ws165{word-spacing:3.607200px;}
.ws8c{word-spacing:3.613212px;}
.ws167{word-spacing:3.625236px;}
.ws4a{word-spacing:3.685356px;}
.ws49{word-spacing:3.691368px;}
.wsf4{word-spacing:3.703392px;}
.ws20{word-spacing:3.931848px;}
.wsdb{word-spacing:3.943872px;}
.ws17{word-spacing:3.955896px;}
.ws17a{word-spacing:3.973932px;}
.wsc1{word-spacing:3.979944px;}
.wsc2{word-spacing:3.997980px;}
.ws143{word-spacing:4.010004px;}
.ws182{word-spacing:4.034052px;}
.wsda{word-spacing:4.298580px;}
.ws9d{word-spacing:4.304592px;}
.ws142{word-spacing:4.346676px;}
.ws118{word-spacing:4.352688px;}
.wsc7{word-spacing:4.364712px;}
.ws125{word-spacing:4.382748px;}
.ws126{word-spacing:4.394772px;}
.ws194{word-spacing:4.486356px;}
.ws175{word-spacing:4.665312px;}
.ws168{word-spacing:4.677336px;}
.wse3{word-spacing:4.683348px;}
.wsbe{word-spacing:4.695372px;}
.wsb9{word-spacing:4.731444px;}
.ws4c{word-spacing:4.803588px;}
.ws191{word-spacing:4.888548px;}
.ws192{word-spacing:4.931640px;}
.ws193{word-spacing:4.993884px;}
.ws17f{word-spacing:5.020020px;}
.ws4b{word-spacing:5.026032px;}
.ws178{word-spacing:5.068116px;}
.wsb8{word-spacing:5.128236px;}
.ws129{word-spacing:5.188356px;}
.ws117{word-spacing:5.194368px;}
.wseb{word-spacing:5.362704px;}
.ws11b{word-spacing:5.374728px;}
.ws190{word-spacing:5.381712px;}
.wsd6{word-spacing:5.392764px;}
.ws145{word-spacing:5.416812px;}
.ws186{word-spacing:5.422824px;}
.ws177{word-spacing:5.452884px;}
.wsf5{word-spacing:5.543064px;}
.wsea{word-spacing:5.735448px;}
.ws91{word-spacing:5.765508px;}
.ws81{word-spacing:5.801580px;}
.ws80{word-spacing:5.819616px;}
.ws2f{word-spacing:5.837652px;}
.ws2e{word-spacing:5.843664px;}
.ws76{word-spacing:5.980212px;}
.ws174{word-spacing:6.102180px;}
.wsd7{word-spacing:6.114204px;}
.ws38{word-spacing:6.120216px;}
.ws141{word-spacing:6.144264px;}
.wsbd{word-spacing:6.186348px;}
.ws8e{word-spacing:6.480936px;}
.ws11e{word-spacing:6.517008px;}
.wsa3{word-spacing:6.722352px;}
.ws2b{word-spacing:6.847668px;}
.ws17c{word-spacing:6.853680px;}
.wsf2{word-spacing:6.865704px;}
.ws19{word-spacing:6.937848px;}
.ws61{word-spacing:6.967908px;}
.ws88{word-spacing:7.208388px;}
.ws173{word-spacing:7.214400px;}
.ws18{word-spacing:7.286544px;}
.ws19c{word-spacing:7.330428px;}
.ws19b{word-spacing:7.368732px;}
.ws15e{word-spacing:7.539048px;}
.wsce{word-spacing:7.545060px;}
.ws15a{word-spacing:7.551072px;}
.ws135{word-spacing:7.557084px;}
.ws89{word-spacing:7.563096px;}
.ws159{word-spacing:7.713396px;}
.ws18f{word-spacing:7.794864px;}
.ws15d{word-spacing:7.869708px;}
.ws3e{word-spacing:7.911792px;}
.wse4{word-spacing:7.929828px;}
.ws134{word-spacing:7.965900px;}
.ws24{word-spacing:8.026020px;}
.ws23{word-spacing:8.050068px;}
.ws18e{word-spacing:8.096508px;}
.ws18d{word-spacing:8.230572px;}
.ws161{word-spacing:8.242452px;}
.ws12f{word-spacing:8.254476px;}
.ws130{word-spacing:8.266500px;}
.wsa8{word-spacing:8.278524px;}
.ws2a{word-spacing:8.284536px;}
.ws147{word-spacing:8.290548px;}
.ws79{word-spacing:8.314596px;}
.wsa7{word-spacing:8.332632px;}
.ws162{word-spacing:8.338644px;}
.ws4d{word-spacing:8.627220px;}
.ws5c{word-spacing:8.633232px;}
.ws10a{word-spacing:8.645256px;}
.ws172{word-spacing:8.675316px;}
.ws58{word-spacing:8.705376px;}
.ws132{word-spacing:8.711388px;}
.ws156{word-spacing:8.717400px;}
.ws113{word-spacing:8.777520px;}
.ws146{word-spacing:8.975916px;}
.wsba{word-spacing:8.987940px;}
.ws65{word-spacing:9.005976px;}
.ws10e{word-spacing:9.036036px;}
.ws12b{word-spacing:9.054072px;}
.ws123{word-spacing:9.078120px;}
.ws63{word-spacing:9.366696px;}
.ws180{word-spacing:9.372708px;}
.ws197{word-spacing:9.561636px;}
.ws196{word-spacing:9.652608px;}
.ws11c{word-spacing:9.715392px;}
.wscb{word-spacing:9.745452px;}
.ws36{word-spacing:9.799560px;}
.ws7c{word-spacing:10.070100px;}
.ws92{word-spacing:10.076112px;}
.ws3d{word-spacing:10.082124px;}
.ws1d{word-spacing:10.094148px;}
.ws40{word-spacing:10.154268px;}
.ws157{word-spacing:10.418796px;}
.ws12c{word-spacing:10.436832px;}
.wsca{word-spacing:10.454868px;}
.ws3f{word-spacing:10.484928px;}
.ws3c{word-spacing:10.496952px;}
.ws171{word-spacing:10.593144px;}
.ws1a{word-spacing:10.755468px;}
.ws72{word-spacing:10.791540px;}
.ws7a{word-spacing:10.809576px;}
.ws12a{word-spacing:10.923804px;}
.wsc9{word-spacing:10.947852px;}
.ws10c{word-spacing:11.134224px;}
.ws3b{word-spacing:11.152260px;}
.ws29{word-spacing:11.158272px;}
.wsc5{word-spacing:11.164284px;}
.ws59{word-spacing:11.194344px;}
.ws115{word-spacing:11.488932px;}
.ws8f{word-spacing:11.525004px;}
.ws131{word-spacing:11.573100px;}
.ws44{word-spacing:11.585124px;}
.ws5b{word-spacing:11.609172px;}
.ws28{word-spacing:11.633220px;}
.ws6c{word-spacing:11.879712px;}
.ws37{word-spacing:11.885724px;}
.ws10f{word-spacing:11.897748px;}
.ws5a{word-spacing:11.903760px;}
.wsab{word-spacing:11.939832px;}
.wsaa{word-spacing:11.969892px;}
.ws19a{word-spacing:12.075336px;}
.ws94{word-spacing:12.252456px;}
.ws109{word-spacing:12.258468px;}
.ws77{word-spacing:12.300552px;}
.wsc6{word-spacing:12.318588px;}
.ws199{word-spacing:12.434436px;}
.ws93{word-spacing:12.529008px;}
.ws6d{word-spacing:12.607164px;}
.ws6e{word-spacing:12.613176px;}
.ws43{word-spacing:12.631212px;}
.ws7f{word-spacing:12.955860px;}
.ws124{word-spacing:13.040028px;}
.ws5e{word-spacing:13.310568px;}
.ws21{word-spacing:13.328604px;}
.wse1{word-spacing:13.340628px;}
.ws60{word-spacing:13.370688px;}
.ws22{word-spacing:13.382712px;}
.ws5f{word-spacing:13.406760px;}
.ws71{word-spacing:13.454856px;}
.ws62{word-spacing:13.683312px;}
.wsf6{word-spacing:13.719384px;}
.wsbc{word-spacing:13.743432px;}
.ws8a{word-spacing:14.068080px;}
.wsc3{word-spacing:14.092128px;}
.wsc4{word-spacing:14.110164px;}
.ws1f{word-spacing:14.362668px;}
.ws116{word-spacing:14.380704px;}
.wsa9{word-spacing:14.404752px;}
.ws41{word-spacing:14.416776px;}
.ws6f{word-spacing:14.741424px;}
.wscc{word-spacing:14.759460px;}
.ws70{word-spacing:14.849640px;}
.ws34{word-spacing:15.138216px;}
.ws121{word-spacing:15.192324px;}
.ws17e{word-spacing:15.492924px;}
.ws7b{word-spacing:15.853644px;}
.wsd8{word-spacing:15.859656px;}
.ws78{word-spacing:15.985908px;}
.ws133{word-spacing:16.178292px;}
.ws114{word-spacing:16.184304px;}
.ws97{word-spacing:16.190316px;}
.ws170{word-spacing:16.196328px;}
.ws16{word-spacing:16.250436px;}
.wsbf{word-spacing:16.262460px;}
.wsc0{word-spacing:16.286508px;}
.wsdd{word-spacing:16.965864px;}
.wsdc{word-spacing:17.086104px;}
.ws158{word-spacing:17.272476px;}
.ws10d{word-spacing:17.332596px;}
.ws185{word-spacing:17.993916px;}
.ws25{word-spacing:18.120168px;}
.ws57{word-spacing:18.199188px;}
.wsbb{word-spacing:18.348624px;}
.wsf7{word-spacing:18.360648px;}
.ws16c{word-spacing:18.426780px;}
.ws56{word-spacing:18.519984px;}
.wsd5{word-spacing:18.703332px;}
.ws1e{word-spacing:18.739404px;}
.ws82{word-spacing:18.751428px;}
.ws8b{word-spacing:18.781488px;}
.ws16e{word-spacing:19.202328px;}
.wsac{word-spacing:19.424772px;}
.ws5d{word-spacing:19.484892px;}
.ws86{word-spacing:20.579076px;}
.ws9{word-spacing:21.015289px;}
.wsb{word-spacing:21.645040px;}
.ws184{word-spacing:21.955824px;}
.wsa{word-spacing:22.271273px;}
.ws4e{word-spacing:22.340592px;}
.ws7{word-spacing:22.904902px;}
.ws17b{word-spacing:23.194296px;}
.ws8{word-spacing:23.845444px;}
.ws17d{word-spacing:24.132168px;}
.wsc8{word-spacing:25.214328px;}
.ws15f{word-spacing:25.569036px;}
.wsc{word-spacing:29.830730px;}
.ws16f{word-spacing:29.837556px;}
.ws1b{word-spacing:30.306492px;}
.ws7d{word-spacing:31.015908px;}
.ws7e{word-spacing:31.033944px;}
.wsae{word-spacing:57.771127px;}
.wsaf{word-spacing:58.130689px;}
.ws107{word-spacing:58.250528px;}
.ws106{word-spacing:58.970156px;}
.ws187{word-spacing:60.907572px;}
.wsfa{word-spacing:68.088380px;}
.ws102{word-spacing:68.421356px;}
.wsf9{word-spacing:68.942388px;}
.ws103{word-spacing:69.303563px;}
.ws101{word-spacing:69.745773px;}
.ws100{word-spacing:75.056031px;}
.wsff{word-spacing:80.805367px;}
.wsef{word-spacing:91.809900px;}
.wsee{word-spacing:101.529540px;}
.wsed{word-spacing:121.327920px;}
.wsec{word-spacing:140.058576px;}
.ws4{word-spacing:156.165356px;}
.ws6a{word-spacing:170.420351px;}
.ws69{word-spacing:170.779005px;}
.ws68{word-spacing:171.497264px;}
.ws67{word-spacing:174.144286px;}
.ws48{word-spacing:722.816748px;}
.ws6b{word-spacing:910.816452px;}
._d{margin-left:-910.797300px;}
._7{margin-left:-168.870297px;}
._5{margin-left:-146.808658px;}
._6{margin-left:-115.849208px;}
._1f{margin-left:-41.401836px;}
._1e{margin-left:-39.601548px;}
._15{margin-left:-37.625765px;}
._1d{margin-left:-29.508444px;}
._17{margin-left:-26.281332px;}
._14{margin-left:-20.822652px;}
._f{margin-left:-18.361980px;}
._28{margin-left:-17.278488px;}
._16{margin-left:-16.197804px;}
._2{margin-left:-14.182308px;}
._19{margin-left:-9.719640px;}
._29{margin-left:-8.044092px;}
._4{margin-left:-5.071680px;}
._18{margin-left:-3.565584px;}
._b{margin-left:-2.353160px;}
._1{margin-left:-1.244484px;}
._3{width:1.208412px;}
._10{width:2.789568px;}
._8{width:4.094172px;}
._21{width:7.555464px;}
._1a{width:18.357192px;}
._23{width:25.917444px;}
._a{width:27.637268px;}
._9{width:29.112029px;}
._c{width:30.686292px;}
._22{width:33.118596px;}
._20{width:36.811980px;}
._1b{width:43.197336px;}
._1c{width:56.158452px;}
._12{width:64.508343px;}
._11{width:68.832497px;}
._27{width:70.404670px;}
._26{width:76.210637px;}
._13{width:78.121614px;}
._25{width:80.917226px;}
._24{width:86.482606px;}
._e{width:183.164614px;}
._0{width:1626.790032px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:15.675600px;}
.fs9{font-size:17.804400px;}
.fs19{font-size:19.241400px;}
.fsf{font-size:19.541400px;}
.fs13{font-size:21.584400px;}
.fs16{font-size:21.640800px;}
.fsa{font-size:21.913800px;}
.fs14{font-size:23.245200px;}
.fs17{font-size:23.305800px;}
.fs1a{font-size:23.682600px;}
.fs10{font-size:24.051000px;}
.fsb{font-size:24.652800px;}
.fs15{font-size:26.565600px;}
.fs18{font-size:26.634000px;}
.fs1b{font-size:26.643000px;}
.fs11{font-size:27.057600px;}
.fsd{font-size:29.880000px;}
.fs12{font-size:36.000000px;}
.fs7{font-size:36.577800px;}
.fse{font-size:38.880000px;}
.fs1c{font-size:42.120000px;}
.fs0{font-size:47.880000px;}
.fs3{font-size:60.120000px;}
.fs8{font-size:62.704800px;}
.fs6{font-size:66.270571px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs5{font-size:100.426200px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.150450px;}
.y36{bottom:5.490450px;}
.y2c{bottom:110.275140px;}
.y6c{bottom:111.534645px;}
.y8c{bottom:125.398542px;}
.yb9{bottom:126.299007px;}
.y2b{bottom:127.825671px;}
.y6b{bottom:129.085176px;}
.y106{bottom:129.896733px;}
.ye2{bottom:130.080450px;}
.y8b{bottom:142.949073px;}
.yb8{bottom:143.849538px;}
.y2a{bottom:145.376202px;}
.y6a{bottom:146.635707px;}
.y105{bottom:147.447264px;}
.ye1{bottom:150.600450px;}
.yd9{bottom:159.780450px;}
.y8a{bottom:160.499604px;}
.yb7{bottom:161.400069px;}
.y29{bottom:162.926733px;}
.y69{bottom:164.186238px;}
.y104{bottom:164.997795px;}
.ycf{bottom:167.250450px;}
.ydc{bottom:170.940450px;}
.yd0{bottom:171.390450px;}
.y199{bottom:172.020450px;}
.y133{bottom:174.897795px;}
.yb6{bottom:178.950600px;}
.y28{bottom:180.477264px;}
.y68{bottom:181.736769px;}
.y103{bottom:182.548326px;}
.ye0{bottom:185.610450px;}
.y89{bottom:186.869739px;}
.y1b5{bottom:192.000450px;}
.y132{bottom:192.448326px;}
.y198{bottom:192.540600px;}
.y1df{bottom:194.880474px;}
.y18f{bottom:195.960600px;}
.yd1{bottom:197.310450px;}
.y27{bottom:198.027795px;}
.y67{bottom:199.287300px;}
.y102{bottom:200.098857px;}
.y183{bottom:203.340450px;}
.y88{bottom:204.510450px;}
.yb5{bottom:204.959280px;}
.y192{bottom:207.030600px;}
.y184{bottom:207.390450px;}
.y131{bottom:209.998857px;}
.y1b4{bottom:212.520450px;}
.y26{bottom:215.578326px;}
.y66{bottom:216.837831px;}
.y101{bottom:217.649388px;}
.y1de{bottom:218.010105px;}
.yb4{bottom:219.089865px;}
.yd2{bottom:222.870600px;}
.y130{bottom:227.549388px;}
.y185{bottom:227.730450px;}
.y87{bottom:231.510819px;}
.y25{bottom:233.128857px;}
.yb3{bottom:233.219280px;}
.y65{bottom:234.388362px;}
.y100{bottom:235.199919px;}
.y197{bottom:236.280600px;}
.y1dd{bottom:241.139736px;}
.y12f{bottom:245.099919px;}
.yda{bottom:247.170450px;}
.yb2{bottom:247.349865px;}
.y186{bottom:248.160450px;}
.yd3{bottom:248.790450px;}
.y24{bottom:250.679388px;}
.y64{bottom:251.938893px;}
.yff{bottom:252.750450px;}
.y86{bottom:254.640450px;}
.yb1{bottom:261.480450px;}
.y12e{bottom:262.650450px;}
.y1dc{bottom:264.269367px;}
.y23{bottom:268.229919px;}
.y187{bottom:268.500450px;}
.yd4{bottom:274.350450px;}
.y190{bottom:274.980450px;}
.y85{bottom:275.160450px;}
.y63{bottom:278.309028px;}
.yfe{bottom:278.760450px;}
.yb0{bottom:282.000450px;}
.yae{bottom:285.420450px;}
.y22{bottom:285.780450px;}
.y1db{bottom:287.398998px;}
.y188{bottom:288.480450px;}
.y12d{bottom:290.280450px;}
.ya3{bottom:290.550450px;}
.ya4{bottom:293.880450px;}
.y62{bottom:295.949739px;}
.yd5{bottom:299.910450px;}
.y1da{bottom:301.529583px;}
.ya5{bottom:304.410450px;}
.yfc{bottom:307.199430px;}
.y189{bottom:308.820450px;}
.y21{bottom:313.410108px;}
.y61{bottom:313.590450px;}
.ya6{bottom:314.940450px;}
.y1d9{bottom:315.660168px;}
.yfb{bottom:321.330015px;}
.ya7{bottom:325.200450px;}
.yd6{bottom:325.830450px;}
.y18a{bottom:329.160450px;}
.yaf{bottom:333.930450px;}
.yfd{bottom:335.459403px;}
.yfa{bottom:335.460600px;}
.ya8{bottom:335.730450px;}
.y20{bottom:337.980657px;}
.y1d8{bottom:338.789799px;}
.y60{bottom:340.589865px;}
.ya9{bottom:346.260450px;}
.y18b{bottom:349.140450px;}
.y12c{bottom:349.760361px;}
.yd7{bottom:351.390450px;}
.y1d7{bottom:352.920384px;}
.y5f{bottom:354.720450px;}
.yaa{bottom:356.520450px;}
.yf9{bottom:357.060450px;}
.ydf{bottom:362.640450px;}
.yab{bottom:367.050450px;}
.y12b{bottom:367.310892px;}
.y18c{bottom:369.480450px;}
.yde{bottom:369.750600px;}
.y5e{bottom:375.240450px;}
.y1d6{bottom:376.050015px;}
.yd8{bottom:376.950450px;}
.ydd{bottom:376.953217px;}
.y195{bottom:377.220450px;}
.yac{bottom:377.670450px;}
.yf8{bottom:378.660450px;}
.y5a{bottom:381.000600px;}
.ydb{bottom:382.260450px;}
.y196{bottom:383.520450px;}
.y194{bottom:384.690450px;}
.y12a{bottom:384.861423px;}
.y44{bottom:387.750600px;}
.yad{bottom:387.930600px;}
.y18d{bottom:389.820450px;}
.y1d5{bottom:390.180600px;}
.y45{bottom:391.530450px;}
.y1f{bottom:397.462485px;}
.yf7{bottom:400.260450px;}
.y46{bottom:401.160450px;}
.y129{bottom:402.411954px;}
.y193{bottom:409.797916px;}
.y18e{bottom:409.800450px;}
.y47{bottom:410.340600px;}
.yce{bottom:412.320450px;}
.y5d{bottom:413.130450px;}
.y1d4{bottom:413.310780px;}
.y1e{bottom:415.013016px;}
.y191{bottom:415.020600px;}
.y128{bottom:419.962485px;}
.y48{bottom:419.970450px;}
.yf6{bottom:421.860501px;}
.y1d3{bottom:427.440168px;}
.y49{bottom:429.240450px;}
.y1d{bottom:432.563547px;}
.ycd{bottom:432.840600px;}
.y127{bottom:437.513016px;}
.y4a{bottom:438.420450px;}
.yf5{bottom:441.930600px;}
.y182{bottom:444.177264px;}
.y4b{bottom:448.050450px;}
.y1c{bottom:450.114078px;}
.y1d2{bottom:450.569799px;}
.y1b3{bottom:454.614078px;}
.y126{bottom:455.063547px;}
.y4c{bottom:457.320450px;}
.yf4{bottom:460.740450px;}
.y181{bottom:461.727795px;}
.ya2{bottom:462.808326px;}
.y1d1{bottom:464.700384px;}
.y4d{bottom:466.500600px;}
.y1b{bottom:467.664609px;}
.y5b{bottom:469.920450px;}
.y1b2{bottom:472.164609px;}
.y125{bottom:472.614078px;}
.yf3{bottom:472.619919px;}
.y4e{bottom:476.130450px;}
.y180{bottom:479.278326px;}
.ya1{bottom:480.358857px;}
.y1a{bottom:485.215140px;}
.y4f{bottom:485.400450px;}
.y1d0{bottom:487.830015px;}
.y1b1{bottom:489.715140px;}
.y124{bottom:490.164609px;}
.yf2{bottom:490.166202px;}
.y50{bottom:494.580450px;}
.y17f{bottom:496.828857px;}
.ya0{bottom:497.909388px;}
.y84{bottom:500.244474px;}
.y1cf{bottom:501.960600px;}
.y19{bottom:502.765671px;}
.y51{bottom:504.210600px;}
.y1b0{bottom:507.265671px;}
.y123{bottom:507.715140px;}
.yf1{bottom:507.716733px;}
.y52{bottom:513.390450px;}
.y17e{bottom:514.379388px;}
.y9f{bottom:515.459919px;}
.y83{bottom:517.795005px;}
.y18{bottom:520.316202px;}
.y53{bottom:522.660450px;}
.y1af{bottom:524.816202px;}
.y122{bottom:525.265671px;}
.yf0{bottom:525.267264px;}
.y1ce{bottom:526.710450px;}
.y17d{bottom:531.929919px;}
.y54{bottom:532.290450px;}
.y9e{bottom:533.010450px;}
.y82{bottom:535.345536px;}
.y17{bottom:537.866733px;}
.y55{bottom:541.470450px;}
.y1ae{bottom:542.366733px;}
.y121{bottom:542.816202px;}
.yef{bottom:542.817795px;}
.y17c{bottom:549.480450px;}
.y56{bottom:550.740450px;}
.y81{bottom:552.896067px;}
.y16{bottom:555.417264px;}
.y1ad{bottom:559.917264px;}
.y120{bottom:560.366733px;}
.yee{bottom:560.368326px;}
.y57{bottom:560.370450px;}
.y9d{bottom:561.989865px;}
.y58{bottom:569.550450px;}
.y80{bottom:570.446598px;}
.y15{bottom:572.967795px;}
.y17b{bottom:575.490450px;}
.y9c{bottom:576.120450px;}
.y1ac{bottom:577.467795px;}
.y11f{bottom:577.917264px;}
.yed{bottom:577.918857px;}
.y59{bottom:578.820450px;}
.y5c{bottom:583.770450px;}
.y7f{bottom:587.997129px;}
.y14{bottom:590.518326px;}
.y1ab{bottom:595.018326px;}
.y11e{bottom:595.467795px;}
.yec{bottom:595.469388px;}
.y17a{bottom:596.010450px;}
.y9b{bottom:596.640450px;}
.y170{bottom:600.690450px;}
.y7e{bottom:605.547660px;}
.y13{bottom:608.068857px;}
.y165{bottom:608.160450px;}
.y173{bottom:612.390450px;}
.y1aa{bottom:612.568857px;}
.y166{bottom:612.750450px;}
.y11d{bottom:613.018326px;}
.yeb{bottom:613.019919px;}
.y43{bottom:614.818200px;}
.y179{bottom:621.120450px;}
.y7d{bottom:623.098191px;}
.y167{bottom:624.450450px;}
.y12{bottom:625.619388px;}
.y1a9{bottom:630.119388px;}
.y11c{bottom:630.568857px;}
.yea{bottom:630.570450px;}
.y1cd{bottom:631.197795px;}
.y42{bottom:632.368731px;}
.y168{bottom:636.060450px;}
.y7c{bottom:640.648722px;}
.y11{bottom:643.169919px;}
.y1a8{bottom:647.669919px;}
.y169{bottom:647.760450px;}
.y11b{bottom:648.119388px;}
.y171{bottom:648.390450px;}
.y1cc{bottom:648.748326px;}
.y41{bottom:649.919262px;}
.ycc{bottom:654.768138px;}
.ye9{bottom:656.580450px;}
.y7b{bottom:658.199253px;}
.y16a{bottom:659.370450px;}
.y10{bottom:660.720450px;}
.y1a7{bottom:665.220450px;}
.y11a{bottom:665.669919px;}
.y1cb{bottom:666.298857px;}
.y40{bottom:667.469793px;}
.y16b{bottom:671.070450px;}
.ycb{bottom:672.318669px;}
.y7a{bottom:675.749784px;}
.ye8{bottom:677.100450px;}
.y16c{bottom:682.680450px;}
.y119{bottom:683.220450px;}
.y1ca{bottom:683.849388px;}
.y3f{bottom:685.020324px;}
.yf{bottom:688.350450px;}
.yca{bottom:689.869200px;}
.y178{bottom:692.310450px;}
.y1a6{bottom:692.850450px;}
.y79{bottom:693.300315px;}
.y16d{bottom:694.380450px;}
.y177{bottom:700.140450px;}
.y1c9{bottom:701.399919px;}
.y3e{bottom:702.570855px;}
.y16e{bottom:705.990450px;}
.yc9{bottom:707.419731px;}
.y16f{bottom:708.060450px;}
.y174{bottom:708.061181px;}
.y118{bottom:710.850450px;}
.y172{bottom:714.270450px;}
.y1c8{bottom:718.950450px;}
.y78{bottom:719.670450px;}
.yc8{bottom:724.970262px;}
.y39{bottom:725.700000px;}
.y160{bottom:732.990450px;}
.y3b{bottom:735.870450px;}
.y9a{bottom:737.400450px;}
.y155{bottom:740.550450px;}
.y38{bottom:741.360450px;}
.y3d{bottom:741.360930px;}
.yc7{bottom:742.520793px;}
.y163{bottom:744.690450px;}
.y156{bottom:745.140450px;}
.y35{bottom:745.770000px;}
.y1c7{bottom:746.580450px;}
.y77{bottom:746.669865px;}
.ye{bottom:747.840450px;}
.y37{bottom:751.260450px;}
.y1a5{bottom:752.335176px;}
.y157{bottom:756.750450px;}
.y99{bottom:757.920450px;}
.y3c{bottom:758.280754px;}
.yc6{bottom:760.071324px;}
.y76{bottom:760.800450px;}
.y158{bottom:768.450450px;}
.y1a4{bottom:769.885707px;}
.y117{bottom:770.336202px;}
.yd{bottom:775.470450px;}
.y159{bottom:780.060450px;}
.y161{bottom:780.780450px;}
.y34{bottom:781.223358px;}
.y75{bottom:781.320450px;}
.yc5{bottom:786.621819px;}
.y1a3{bottom:787.436238px;}
.y116{bottom:787.886733px;}
.y15a{bottom:791.760450px;}
.y33{bottom:798.773889px;}
.y15b{bottom:803.370450px;}
.yc4{bottom:804.172350px;}
.y1a2{bottom:804.986769px;}
.y115{bottom:805.437264px;}
.y15c{bottom:815.070450px;}
.yc3{bottom:821.722881px;}
.y1a1{bottom:822.537300px;}
.y114{bottom:822.987795px;}
.y176{bottom:824.610600px;}
.y32{bottom:825.144024px;}
.y15d{bottom:826.680600px;}
.y175{bottom:832.530450px;}
.y15e{bottom:838.380450px;}
.yc2{bottom:839.273412px;}
.y1a0{bottom:840.087831px;}
.y164{bottom:840.450990px;}
.y113{bottom:840.538326px;}
.y15f{bottom:840.810450px;}
.y1c6{bottom:842.062485px;}
.y31{bottom:842.784735px;}
.yc{bottom:843.957309px;}
.y162{bottom:846.660450px;}
.yc1{bottom:856.823943px;}
.y19f{bottom:857.638362px;}
.y112{bottom:858.088857px;}
.y1c5{bottom:859.613016px;}
.yb{bottom:861.507840px;}
.y30{bottom:870.324204px;}
.y154{bottom:874.290600px;}
.yc0{bottom:874.374474px;}
.y111{bottom:875.639388px;}
.y1c4{bottom:877.163547px;}
.ya{bottom:879.058371px;}
.y19e{bottom:884.188857px;}
.y2f{bottom:887.874735px;}
.ybf{bottom:891.925005px;}
.y110{bottom:893.189919px;}
.y1c3{bottom:894.714078px;}
.y153{bottom:894.810450px;}
.y9{bottom:896.608902px;}
.y14b{bottom:899.400450px;}
.y19d{bottom:901.739388px;}
.y142{bottom:906.960450px;}
.ybe{bottom:909.475536px;}
.y10f{bottom:910.735671px;}
.y14e{bottom:911.100450px;}
.y143{bottom:911.460450px;}
.y1c2{bottom:912.264609px;}
.y8{bottom:914.159433px;}
.y2e{bottom:914.425230px;}
.y19c{bottom:919.289919px;}
.y152{bottom:921.450450px;}
.y144{bottom:924.780450px;}
.ybd{bottom:927.026067px;}
.y10e{bottom:928.286202px;}
.ye7{bottom:928.918857px;}
.y1c1{bottom:929.815140px;}
.y7{bottom:931.709964px;}
.y2d{bottom:931.975761px;}
.y98{bottom:936.832170px;}
.y19b{bottom:936.839919px;}
.y145{bottom:938.100450px;}
.y10d{bottom:945.836733px;}
.ye6{bottom:946.469388px;}
.y14c{bottom:947.100450px;}
.y1c0{bottom:947.365671px;}
.y6{bottom:949.529532px;}
.y146{bottom:951.330450px;}
.ybc{bottom:953.396202px;}
.y97{bottom:954.382701px;}
.y19a{bottom:954.385176px;}
.y10c{bottom:963.387264px;}
.ye5{bottom:964.019919px;}
.y147{bottom:964.650450px;}
.y1bf{bottom:964.916202px;}
.y96{bottom:971.933232px;}
.y148{bottom:977.880450px;}
.ybb{bottom:980.935671px;}
.y10b{bottom:980.937795px;}
.ye4{bottom:981.570450px;}
.y1be{bottom:982.466733px;}
.y5{bottom:985.079991px;}
.y95{bottom:989.483763px;}
.y149{bottom:990.750450px;}
.yba{bottom:998.486202px;}
.y10a{bottom:998.488326px;}
.y150{bottom:998.670450px;}
.y1bd{bottom:1000.017264px;}
.y14a{bottom:1004.070450px;}
.y14f{bottom:1006.589836px;}
.y94{bottom:1007.034294px;}
.ye3{bottom:1009.200450px;}
.y14d{bottom:1012.800450px;}
.y74{bottom:1016.036733px;}
.y109{bottom:1016.038857px;}
.y1bc{bottom:1017.567795px;}
.y4{bottom:1020.630450px;}
.y93{bottom:1024.584825px;}
.y13d{bottom:1031.430450px;}
.y73{bottom:1033.587264px;}
.y108{bottom:1033.589388px;}
.y1bb{bottom:1035.118326px;}
.y134{bottom:1038.900450px;}
.y140{bottom:1043.040450px;}
.y135{bottom:1043.490450px;}
.y92{bottom:1051.135320px;}
.y72{bottom:1051.137795px;}
.y107{bottom:1051.139919px;}
.y1ba{bottom:1052.668857px;}
.y3{bottom:1056.720450px;}
.y136{bottom:1056.810450px;}
.y91{bottom:1068.685851px;}
.y71{bottom:1068.688326px;}
.y137{bottom:1070.040450px;}
.y1b9{bottom:1070.219388px;}
.y13e{bottom:1079.040450px;}
.y138{bottom:1083.360450px;}
.y90{bottom:1086.236382px;}
.y70{bottom:1086.238857px;}
.y1b8{bottom:1087.769919px;}
.y139{bottom:1096.590450px;}
.y8f{bottom:1103.786913px;}
.y6f{bottom:1103.789388px;}
.y1b7{bottom:1105.320450px;}
.y2{bottom:1107.030450px;}
.y13a{bottom:1109.910450px;}
.y8e{bottom:1121.337444px;}
.y6e{bottom:1121.339919px;}
.y13b{bottom:1122.780450px;}
.y151{bottom:1130.700450px;}
.y1b6{bottom:1132.950450px;}
.y13c{bottom:1136.100450px;}
.y141{bottom:1138.529836px;}
.y8d{bottom:1138.887975px;}
.y6d{bottom:1138.890450px;}
.y13f{bottom:1144.740450px;}
.y1{bottom:1189.740450px;}
.h15{height:14.052930px;}
.h10{height:15.961366px;}
.h26{height:17.249614px;}
.h18{height:17.518560px;}
.hc{height:18.900000px;}
.h20{height:19.350077px;}
.h23{height:19.400639px;}
.h11{height:22.085002px;}
.h9{height:23.040000px;}
.h21{height:23.426803px;}
.h24{height:23.487877px;}
.h27{height:23.867620px;}
.h19{height:24.238898px;}
.h12{height:24.845400px;}
.h22{height:26.773144px;}
.h25{height:26.842078px;}
.h28{height:26.851148px;}
.h1a{height:27.268988px;}
.h1c{height:31.587891px;}
.hd{height:32.094876px;}
.h1d{height:34.857949px;}
.h14{height:42.011895px;}
.h16{height:42.016575px;}
.h2a{height:42.128789px;}
.h1{height:42.923672px;}
.hb{height:46.014039px;}
.h13{height:48.254063px;}
.h4{height:52.751777px;}
.h1e{height:52.760273px;}
.h1b{height:52.768769px;}
.h1f{height:52.770893px;}
.h17{height:52.801025px;}
.h6{height:52.898555px;}
.h29{height:52.919651px;}
.h5{height:60.589687px;}
.hf{height:62.109859px;}
.h3{height:63.351562px;}
.ha{height:69.729520px;}
.he{height:83.136277px;}
.h7{height:84.535312px;}
.h8{height:84.567172px;}
.h2{height:120.816562px;}
.h0{height:1263.000000px;}
.w1{width:5.130000px;}
.w2{width:8.910000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1d{left:63.810000px;}
.x20{left:74.430000px;}
.x1{left:85.140000px;}
.x21{left:95.670396px;}
.x34{left:110.520000px;}
.x32{left:114.750000px;}
.x7{left:117.000000px;}
.x31{left:119.250000px;}
.x36{left:121.860000px;}
.x1f{left:127.620333px;}
.x2{left:130.410000px;}
.x60{left:137.430000px;}
.x4{left:140.490000px;}
.x23{left:148.140000px;}
.x30{left:169.650000px;}
.x3b{left:172.440000px;}
.x35{left:203.850000px;}
.x33{left:226.260000px;}
.x24{left:244.530819px;}
.x39{left:310.050000px;}
.x3{left:314.730000px;}
.x22{left:362.070000px;}
.x1e{left:370.350000px;}
.x5{left:397.080657px;}
.x2f{left:403.200000px;}
.x38{left:406.530000px;}
.x37{left:419.311740px;}
.x5f{left:425.520000px;}
.x3a{left:442.170000px;}
.x25{left:448.559766px;}
.x6{left:457.200657px;}
.x8{left:469.889370px;}
.x52{left:471.330000px;}
.x48{left:473.850000px;}
.x2d{left:476.730000px;}
.x58{left:478.980000px;}
.xa{left:480.509568px;}
.x2b{left:481.860000px;}
.x2a{left:484.290000px;}
.x4c{left:485.460000px;}
.x18{left:486.540000px;}
.x4a{left:488.520000px;}
.x3d{left:490.230000px;}
.x16{left:491.670000px;}
.x54{left:492.750000px;}
.x15{left:494.370000px;}
.x14{left:496.350000px;}
.x53{left:499.140000px;}
.x9{left:501.749964px;}
.x12{left:503.639795px;}
.x19{left:505.710000px;}
.x27{left:508.230000px;}
.x29{left:512.370333px;}
.x13{left:519.569949px;}
.x3e{left:530.549748px;}
.xf{left:532.620000px;}
.x1c{left:533.700333px;}
.x49{left:535.860585px;}
.x5e{left:549.630000px;}
.xb{left:551.520000px;}
.xe{left:564.750000px;}
.x10{left:573.660000px;}
.x40{left:578.519523px;}
.x3f{left:580.769883px;}
.x4d{left:581.850000px;}
.x55{left:583.290000px;}
.x5a{left:599.760000px;}
.x11{left:601.200340px;}
.xc{left:608.490000px;}
.x59{left:612.000000px;}
.xd{left:613.260000px;}
.x4b{left:621.180000px;}
.x2c{left:624.870000px;}
.x41{left:628.199811px;}
.x42{left:634.499595px;}
.x17{left:640.890000px;}
.x50{left:666.450000px;}
.x43{left:681.119154px;}
.x44{left:687.780270px;}
.x1a{left:695.160000px;}
.x5c{left:713.610000px;}
.x45{left:739.709721px;}
.x46{left:743.940405px;}
.x4f{left:747.270000px;}
.x5b{left:750.870000px;}
.x56{left:768.063624px;}
.x4e{left:772.381872px;}
.x57{left:775.620000px;}
.x51{left:780.210000px;}
.x26{left:782.460000px;}
.x28{left:783.810000px;}
.x5d{left:789.479850px;}
.x2e{left:795.240000px;}
.x47{left:800.009733px;}
.x3c{left:813.510000px;}
.x1b{left:819.990000px;}
@media print{
.v1{vertical-align:-24.961080pt;}
.v5{vertical-align:-7.956224pt;}
.v4{vertical-align:-5.435840pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.318294pt;}
.v2{vertical-align:35.198294pt;}
.ls7b{letter-spacing:-2.017764pt;}
.ls34{letter-spacing:-1.162892pt;}
.ls33{letter-spacing:-1.038227pt;}
.ls83{letter-spacing:-1.023088pt;}
.ls7d{letter-spacing:-0.845186pt;}
.ls71{letter-spacing:-0.681108pt;}
.ls59{letter-spacing:-0.654854pt;}
.ls81{letter-spacing:-0.555863pt;}
.ls85{letter-spacing:-0.516525pt;}
.ls36{letter-spacing:-0.514349pt;}
.ls7a{letter-spacing:-0.505914pt;}
.ls79{letter-spacing:-0.488601pt;}
.ls77{letter-spacing:-0.471289pt;}
.ls80{letter-spacing:-0.461670pt;}
.ls49{letter-spacing:-0.431950pt;}
.ls47{letter-spacing:-0.416623pt;}
.ls31{letter-spacing:-0.406732pt;}
.ls56{letter-spacing:-0.404057pt;}
.ls6f{letter-spacing:-0.395234pt;}
.ls75{letter-spacing:-0.381804pt;}
.ls53{letter-spacing:-0.357825pt;}
.ls5a{letter-spacing:-0.356088pt;}
.ls54{letter-spacing:-0.345666pt;}
.ls55{letter-spacing:-0.331770pt;}
.ls82{letter-spacing:-0.236028pt;}
.ls57{letter-spacing:-0.153926pt;}
.ls35{letter-spacing:-0.131482pt;}
.ls6c{letter-spacing:-0.128256pt;}
.ls32{letter-spacing:-0.126609pt;}
.ls48{letter-spacing:-0.097537pt;}
.ls63{letter-spacing:-0.085120pt;}
.ls78{letter-spacing:-0.078869pt;}
.ls61{letter-spacing:-0.072352pt;}
.ls5d{letter-spacing:-0.069472pt;}
.ls84{letter-spacing:-0.065259pt;}
.ls5e{letter-spacing:-0.064128pt;}
.ls9c{letter-spacing:-0.063840pt;}
.ls5f{letter-spacing:-0.059584pt;}
.ls6d{letter-spacing:-0.058784pt;}
.ls58{letter-spacing:-0.055318pt;}
.ls52{letter-spacing:-0.053440pt;}
.ls9a{letter-spacing:-0.052192pt;}
.ls2c{letter-spacing:-0.048096pt;}
.ls46{letter-spacing:-0.042752pt;}
.ls9e{letter-spacing:-0.038304pt;}
.ls26{letter-spacing:-0.037408pt;}
.ls9b{letter-spacing:-0.034048pt;}
.ls30{letter-spacing:-0.032064pt;}
.ls23{letter-spacing:-0.032000pt;}
.lsa0{letter-spacing:-0.029792pt;}
.ls76{letter-spacing:-0.028779pt;}
.ls28{letter-spacing:-0.026720pt;}
.ls60{letter-spacing:-0.025536pt;}
.ls2a{letter-spacing:-0.021376pt;}
.ls65{letter-spacing:-0.021280pt;}
.lsa1{letter-spacing:-0.017024pt;}
.ls27{letter-spacing:-0.016032pt;}
.ls70{letter-spacing:-0.015349pt;}
.ls45{letter-spacing:-0.010688pt;}
.ls24{letter-spacing:-0.005344pt;}
.ls9f{letter-spacing:-0.004256pt;}
.ls22{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.004256pt;}
.ls8{letter-spacing:0.005344pt;}
.ls4e{letter-spacing:0.006912pt;}
.ls0{letter-spacing:0.008512pt;}
.ls21{letter-spacing:0.010656pt;}
.ls3{letter-spacing:0.010688pt;}
.ls4c{letter-spacing:0.012768pt;}
.ls1{letter-spacing:0.012800pt;}
.ls66{letter-spacing:0.014912pt;}
.ls2d{letter-spacing:0.016032pt;}
.ls6b{letter-spacing:0.016578pt;}
.ls3f{letter-spacing:0.017024pt;}
.ls2{letter-spacing:0.021376pt;}
.ls2b{letter-spacing:0.022368pt;}
.ls42{letter-spacing:0.025536pt;}
.ls15{letter-spacing:0.026720pt;}
.ls3b{letter-spacing:0.029792pt;}
.ls6e{letter-spacing:0.029824pt;}
.ls3a{letter-spacing:0.032064pt;}
.ls8d{letter-spacing:0.034048pt;}
.ls13{letter-spacing:0.037280pt;}
.ls6{letter-spacing:0.037408pt;}
.ls38{letter-spacing:0.042560pt;}
.ls14{letter-spacing:0.042752pt;}
.lsb{letter-spacing:0.044736pt;}
.ls43{letter-spacing:0.046816pt;}
.ls1a{letter-spacing:0.048096pt;}
.ls5c{letter-spacing:0.052192pt;}
.ls11{letter-spacing:0.053440pt;}
.ls3d{letter-spacing:0.055328pt;}
.ls20{letter-spacing:0.058784pt;}
.ls4f{letter-spacing:0.059584pt;}
.ls1f{letter-spacing:0.063840pt;}
.ls5{letter-spacing:0.064128pt;}
.ls8a{letter-spacing:0.067104pt;}
.ls39{letter-spacing:0.068096pt;}
.lse{letter-spacing:0.069472pt;}
.ls8f{letter-spacing:0.072352pt;}
.ls10{letter-spacing:0.074816pt;}
.ls92{letter-spacing:0.076608pt;}
.ls12{letter-spacing:0.080160pt;}
.ls69{letter-spacing:0.080864pt;}
.ls99{letter-spacing:0.082016pt;}
.ls3e{letter-spacing:0.085120pt;}
.ls7{letter-spacing:0.085504pt;}
.ls4d{letter-spacing:0.089376pt;}
.ls1d{letter-spacing:0.090848pt;}
.ls50{letter-spacing:0.091168pt;}
.ls51{letter-spacing:0.091488pt;}
.ls90{letter-spacing:0.093632pt;}
.ls4{letter-spacing:0.096192pt;}
.ls1e{letter-spacing:0.097888pt;}
.ls17{letter-spacing:0.101536pt;}
.lsa{letter-spacing:0.106880pt;}
.lsd{letter-spacing:0.111840pt;}
.lsf{letter-spacing:0.112224pt;}
.ls9d{letter-spacing:0.112320pt;}
.ls62{letter-spacing:0.114208pt;}
.ls9{letter-spacing:0.117568pt;}
.ls86{letter-spacing:0.122912pt;}
.ls95{letter-spacing:0.123424pt;}
.ls29{letter-spacing:0.128256pt;}
.ls2f{letter-spacing:0.133600pt;}
.ls94{letter-spacing:0.136192pt;}
.ls1b{letter-spacing:0.138944pt;}
.ls91{letter-spacing:0.140448pt;}
.ls3c{letter-spacing:0.144288pt;}
.ls98{letter-spacing:0.149120pt;}
.ls93{letter-spacing:0.153216pt;}
.ls40{letter-spacing:0.154976pt;}
.ls25{letter-spacing:0.156576pt;}
.ls89{letter-spacing:0.158784pt;}
.ls5b{letter-spacing:0.159360pt;}
.ls44{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.160320pt;}
.ls37{letter-spacing:0.161728pt;}
.ls88{letter-spacing:0.162400pt;}
.ls87{letter-spacing:0.170688pt;}
.ls96{letter-spacing:0.178752pt;}
.ls8b{letter-spacing:0.195776pt;}
.ls2e{letter-spacing:0.438208pt;}
.ls74{letter-spacing:0.451025pt;}
.ls7f{letter-spacing:0.601337pt;}
.ls41{letter-spacing:0.684153pt;}
.ls72{letter-spacing:1.103372pt;}
.ls64{letter-spacing:1.136352pt;}
.ls8e{letter-spacing:1.200192pt;}
.ls68{letter-spacing:1.841020pt;}
.ls73{letter-spacing:2.200546pt;}
.ls7c{letter-spacing:2.664112pt;}
.ls7e{letter-spacing:2.703473pt;}
.ls97{letter-spacing:7.367136pt;}
.ls8c{letter-spacing:28.808864pt;}
.ls16{letter-spacing:36.344544pt;}
.lsc{letter-spacing:36.549312pt;}
.ls4b{letter-spacing:67.652104pt;}
.ls67{letter-spacing:80.661828pt;}
.ls6a{letter-spacing:80.949608pt;}
.ls18{letter-spacing:226.957933pt;}
.ls19{letter-spacing:351.535976pt;}
.ws0{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.440000pt;}
.ws66{word-spacing:-42.560000pt;}
.ws2{word-spacing:-18.796576pt;}
.ws14e{word-spacing:-18.789120pt;}
.ws5{word-spacing:-13.934400pt;}
.ws3{word-spacing:-13.520320pt;}
.ws1{word-spacing:-13.424128pt;}
.wsb4{word-spacing:-13.360000pt;}
.wsf8{word-spacing:-13.231744pt;}
.wsb7{word-spacing:-11.831680pt;}
.ws14f{word-spacing:-10.835776pt;}
.ws155{word-spacing:-10.818752pt;}
.ws153{word-spacing:-10.725120pt;}
.ws151{word-spacing:-10.708096pt;}
.ws152{word-spacing:-10.695328pt;}
.ws150{word-spacing:-10.640000pt;}
.ws154{word-spacing:-10.610208pt;}
.wsb5{word-spacing:-8.646912pt;}
.wsad{word-spacing:-8.640000pt;}
.wsb6{word-spacing:-7.497888pt;}
.wsb3{word-spacing:-6.799360pt;}
.wsfe{word-spacing:-5.304966pt;}
.ws104{word-spacing:-5.268813pt;}
.wsfd{word-spacing:-4.951941pt;}
.wsfc{word-spacing:-4.938511pt;}
.ws105{word-spacing:-4.886012pt;}
.wsfb{word-spacing:-4.652637pt;}
.wsb2{word-spacing:-4.472809pt;}
.wsb0{word-spacing:-4.471072pt;}
.wsb1{word-spacing:-4.174043pt;}
.wsd{word-spacing:-3.992933pt;}
.ws16b{word-spacing:-1.424096pt;}
.ws13d{word-spacing:-0.762359pt;}
.ws140{word-spacing:-0.620276pt;}
.ws136{word-spacing:-0.559951pt;}
.ws137{word-spacing:-0.516560pt;}
.wsa1{word-spacing:-0.411049pt;}
.ws13f{word-spacing:-0.408110pt;}
.ws42{word-spacing:-0.358048pt;}
.ws138{word-spacing:-0.266837pt;}
.ws55{word-spacing:-0.242592pt;}
.ws198{word-spacing:-0.234080pt;}
.ws18c{word-spacing:-0.221312pt;}
.ws139{word-spacing:-0.179763pt;}
.ws18b{word-spacing:-0.174496pt;}
.wse0{word-spacing:-0.170240pt;}
.ws9b{word-spacing:-0.165984pt;}
.ws13b{word-spacing:-0.161728pt;}
.ws195{word-spacing:-0.157472pt;}
.wsd4{word-spacing:-0.144704pt;}
.wsf0{word-spacing:-0.140448pt;}
.ws99{word-spacing:-0.136192pt;}
.wsd9{word-spacing:-0.134208pt;}
.ws31{word-spacing:-0.119296pt;}
.ws11d{word-spacing:-0.111840pt;}
.ws85{word-spacing:-0.110656pt;}
.wsf1{word-spacing:-0.106400pt;}
.ws30{word-spacing:-0.104384pt;}
.ws9c{word-spacing:-0.097888pt;}
.ws12e{word-spacing:-0.096928pt;}
.wsd3{word-spacing:-0.093632pt;}
.ws10{word-spacing:-0.085248pt;}
.wscf{word-spacing:-0.085120pt;}
.ws149{word-spacing:-0.079995pt;}
.ws19f{word-spacing:-0.076608pt;}
.ws19d{word-spacing:-0.063840pt;}
.ws19e{word-spacing:-0.055328pt;}
.ws16a{word-spacing:-0.032064pt;}
.wsdf{word-spacing:-0.026720pt;}
.ws47{word-spacing:-0.021376pt;}
.ws75{word-spacing:-0.016032pt;}
.ws11{word-spacing:-0.012800pt;}
.ws11a{word-spacing:-0.010688pt;}
.ws1c{word-spacing:-0.005344pt;}
.wsf{word-spacing:0.000000pt;}
.wse{word-spacing:0.008512pt;}
.ws50{word-spacing:0.010688pt;}
.ws84{word-spacing:0.021376pt;}
.ws15{word-spacing:0.026720pt;}
.ws12{word-spacing:0.032000pt;}
.ws98{word-spacing:0.032064pt;}
.ws188{word-spacing:0.037408pt;}
.ws45{word-spacing:0.042752pt;}
.ws87{word-spacing:0.048096pt;}
.ws166{word-spacing:0.053440pt;}
.ws13{word-spacing:0.058784pt;}
.ws14{word-spacing:0.069472pt;}
.ws183{word-spacing:0.106880pt;}
.ws176{word-spacing:0.112224pt;}
.ws9a{word-spacing:0.153216pt;}
.ws13a{word-spacing:0.223154pt;}
.ws9e{word-spacing:0.245824pt;}
.wsd1{word-spacing:0.262958pt;}
.ws2c{word-spacing:0.288576pt;}
.ws111{word-spacing:0.293920pt;}
.wse5{word-spacing:0.304608pt;}
.ws9f{word-spacing:0.309952pt;}
.ws112{word-spacing:0.390112pt;}
.ws52{word-spacing:0.490869pt;}
.wsd0{word-spacing:0.513088pt;}
.ws14b{word-spacing:0.602042pt;}
.ws83{word-spacing:0.625248pt;}
.ws11f{word-spacing:0.630592pt;}
.ws46{word-spacing:0.635936pt;}
.ws128{word-spacing:0.646624pt;}
.wsa2{word-spacing:0.705054pt;}
.ws14a{word-spacing:0.779160pt;}
.wsd2{word-spacing:0.779259pt;}
.ws53{word-spacing:0.808612pt;}
.ws13e{word-spacing:0.826246pt;}
.ws54{word-spacing:0.875185pt;}
.ws14c{word-spacing:0.921877pt;}
.wsa0{word-spacing:0.961920pt;}
.ws122{word-spacing:0.972608pt;}
.ws18a{word-spacing:1.127840pt;}
.wsa5{word-spacing:1.136352pt;}
.wsa6{word-spacing:1.153376pt;}
.ws148{word-spacing:1.197813pt;}
.ws14d{word-spacing:1.202374pt;}
.ws51{word-spacing:1.205746pt;}
.ws181{word-spacing:1.266528pt;}
.ws2d{word-spacing:1.271872pt;}
.wse2{word-spacing:1.282560pt;}
.ws144{word-spacing:1.421504pt;}
.wsa4{word-spacing:1.472576pt;}
.ws189{word-spacing:1.485344pt;}
.ws16d{word-spacing:1.581824pt;}
.ws160{word-spacing:1.597856pt;}
.ws108{word-spacing:1.608544pt;}
.ws10b{word-spacing:1.629920pt;}
.ws26{word-spacing:1.656640pt;}
.ws96{word-spacing:1.720768pt;}
.ws120{word-spacing:1.897120pt;}
.ws95{word-spacing:1.907808pt;}
.ws27{word-spacing:1.918496pt;}
.ws127{word-spacing:2.233792pt;}
.ws90{word-spacing:2.239136pt;}
.wsf3{word-spacing:2.249824pt;}
.ws74{word-spacing:2.271200pt;}
.ws3a{word-spacing:2.292576pt;}
.wse7{word-spacing:2.383424pt;}
.ws169{word-spacing:2.543744pt;}
.ws4f{word-spacing:2.549088pt;}
.wse6{word-spacing:2.554432pt;}
.wscd{word-spacing:2.559776pt;}
.ws15b{word-spacing:2.565120pt;}
.ws39{word-spacing:2.602528pt;}
.ws73{word-spacing:2.613216pt;}
.ws64{word-spacing:2.629248pt;}
.wse8{word-spacing:2.634592pt;}
.wse9{word-spacing:2.704064pt;}
.ws13c{word-spacing:2.738690pt;}
.wsde{word-spacing:2.869728pt;}
.ws164{word-spacing:2.880416pt;}
.ws119{word-spacing:2.891104pt;}
.ws35{word-spacing:2.917824pt;}
.ws8d{word-spacing:2.971264pt;}
.ws32{word-spacing:2.981952pt;}
.ws33{word-spacing:3.008672pt;}
.ws163{word-spacing:3.168992pt;}
.ws12d{word-spacing:3.185024pt;}
.ws179{word-spacing:3.190368pt;}
.ws110{word-spacing:3.195712pt;}
.ws15c{word-spacing:3.201056pt;}
.ws165{word-spacing:3.206400pt;}
.ws8c{word-spacing:3.211744pt;}
.ws167{word-spacing:3.222432pt;}
.ws4a{word-spacing:3.275872pt;}
.ws49{word-spacing:3.281216pt;}
.wsf4{word-spacing:3.291904pt;}
.ws20{word-spacing:3.494976pt;}
.wsdb{word-spacing:3.505664pt;}
.ws17{word-spacing:3.516352pt;}
.ws17a{word-spacing:3.532384pt;}
.wsc1{word-spacing:3.537728pt;}
.wsc2{word-spacing:3.553760pt;}
.ws143{word-spacing:3.564448pt;}
.ws182{word-spacing:3.585824pt;}
.wsda{word-spacing:3.820960pt;}
.ws9d{word-spacing:3.826304pt;}
.ws142{word-spacing:3.863712pt;}
.ws118{word-spacing:3.869056pt;}
.wsc7{word-spacing:3.879744pt;}
.ws125{word-spacing:3.895776pt;}
.ws126{word-spacing:3.906464pt;}
.ws194{word-spacing:3.987872pt;}
.ws175{word-spacing:4.146944pt;}
.ws168{word-spacing:4.157632pt;}
.wse3{word-spacing:4.162976pt;}
.wsbe{word-spacing:4.173664pt;}
.wsb9{word-spacing:4.205728pt;}
.ws4c{word-spacing:4.269856pt;}
.ws191{word-spacing:4.345376pt;}
.ws192{word-spacing:4.383680pt;}
.ws193{word-spacing:4.439008pt;}
.ws17f{word-spacing:4.462240pt;}
.ws4b{word-spacing:4.467584pt;}
.ws178{word-spacing:4.504992pt;}
.wsb8{word-spacing:4.558432pt;}
.ws129{word-spacing:4.611872pt;}
.ws117{word-spacing:4.617216pt;}
.wseb{word-spacing:4.766848pt;}
.ws11b{word-spacing:4.777536pt;}
.ws190{word-spacing:4.783744pt;}
.wsd6{word-spacing:4.793568pt;}
.ws145{word-spacing:4.814944pt;}
.ws186{word-spacing:4.820288pt;}
.ws177{word-spacing:4.847008pt;}
.wsf5{word-spacing:4.927168pt;}
.wsea{word-spacing:5.098176pt;}
.ws91{word-spacing:5.124896pt;}
.ws81{word-spacing:5.156960pt;}
.ws80{word-spacing:5.172992pt;}
.ws2f{word-spacing:5.189024pt;}
.ws2e{word-spacing:5.194368pt;}
.ws76{word-spacing:5.315744pt;}
.ws174{word-spacing:5.424160pt;}
.wsd7{word-spacing:5.434848pt;}
.ws38{word-spacing:5.440192pt;}
.ws141{word-spacing:5.461568pt;}
.wsbd{word-spacing:5.498976pt;}
.ws8e{word-spacing:5.760832pt;}
.ws11e{word-spacing:5.792896pt;}
.wsa3{word-spacing:5.975424pt;}
.ws2b{word-spacing:6.086816pt;}
.ws17c{word-spacing:6.092160pt;}
.wsf2{word-spacing:6.102848pt;}
.ws19{word-spacing:6.166976pt;}
.ws61{word-spacing:6.193696pt;}
.ws88{word-spacing:6.407456pt;}
.ws173{word-spacing:6.412800pt;}
.ws18{word-spacing:6.476928pt;}
.ws19c{word-spacing:6.515936pt;}
.ws19b{word-spacing:6.549984pt;}
.ws15e{word-spacing:6.701376pt;}
.wsce{word-spacing:6.706720pt;}
.ws15a{word-spacing:6.712064pt;}
.ws135{word-spacing:6.717408pt;}
.ws89{word-spacing:6.722752pt;}
.ws159{word-spacing:6.856352pt;}
.ws18f{word-spacing:6.928768pt;}
.ws15d{word-spacing:6.995296pt;}
.ws3e{word-spacing:7.032704pt;}
.wse4{word-spacing:7.048736pt;}
.ws134{word-spacing:7.080800pt;}
.ws24{word-spacing:7.134240pt;}
.ws23{word-spacing:7.155616pt;}
.ws18e{word-spacing:7.196896pt;}
.ws18d{word-spacing:7.316064pt;}
.ws161{word-spacing:7.326624pt;}
.ws12f{word-spacing:7.337312pt;}
.ws130{word-spacing:7.348000pt;}
.wsa8{word-spacing:7.358688pt;}
.ws2a{word-spacing:7.364032pt;}
.ws147{word-spacing:7.369376pt;}
.ws79{word-spacing:7.390752pt;}
.wsa7{word-spacing:7.406784pt;}
.ws162{word-spacing:7.412128pt;}
.ws4d{word-spacing:7.668640pt;}
.ws5c{word-spacing:7.673984pt;}
.ws10a{word-spacing:7.684672pt;}
.ws172{word-spacing:7.711392pt;}
.ws58{word-spacing:7.738112pt;}
.ws132{word-spacing:7.743456pt;}
.ws156{word-spacing:7.748800pt;}
.ws113{word-spacing:7.802240pt;}
.ws146{word-spacing:7.978592pt;}
.wsba{word-spacing:7.989280pt;}
.ws65{word-spacing:8.005312pt;}
.ws10e{word-spacing:8.032032pt;}
.ws12b{word-spacing:8.048064pt;}
.ws123{word-spacing:8.069440pt;}
.ws63{word-spacing:8.325952pt;}
.ws180{word-spacing:8.331296pt;}
.ws197{word-spacing:8.499232pt;}
.ws196{word-spacing:8.580096pt;}
.ws11c{word-spacing:8.635904pt;}
.wscb{word-spacing:8.662624pt;}
.ws36{word-spacing:8.710720pt;}
.ws7c{word-spacing:8.951200pt;}
.ws92{word-spacing:8.956544pt;}
.ws3d{word-spacing:8.961888pt;}
.ws1d{word-spacing:8.972576pt;}
.ws40{word-spacing:9.026016pt;}
.ws157{word-spacing:9.261152pt;}
.ws12c{word-spacing:9.277184pt;}
.wsca{word-spacing:9.293216pt;}
.ws3f{word-spacing:9.319936pt;}
.ws3c{word-spacing:9.330624pt;}
.ws171{word-spacing:9.416128pt;}
.ws1a{word-spacing:9.560416pt;}
.ws72{word-spacing:9.592480pt;}
.ws7a{word-spacing:9.608512pt;}
.ws12a{word-spacing:9.710048pt;}
.wsc9{word-spacing:9.731424pt;}
.ws10c{word-spacing:9.897088pt;}
.ws3b{word-spacing:9.913120pt;}
.ws29{word-spacing:9.918464pt;}
.wsc5{word-spacing:9.923808pt;}
.ws59{word-spacing:9.950528pt;}
.ws115{word-spacing:10.212384pt;}
.ws8f{word-spacing:10.244448pt;}
.ws131{word-spacing:10.287200pt;}
.ws44{word-spacing:10.297888pt;}
.ws5b{word-spacing:10.319264pt;}
.ws28{word-spacing:10.340640pt;}
.ws6c{word-spacing:10.559744pt;}
.ws37{word-spacing:10.565088pt;}
.ws10f{word-spacing:10.575776pt;}
.ws5a{word-spacing:10.581120pt;}
.wsab{word-spacing:10.613184pt;}
.wsaa{word-spacing:10.639904pt;}
.ws19a{word-spacing:10.733632pt;}
.ws94{word-spacing:10.891072pt;}
.ws109{word-spacing:10.896416pt;}
.ws77{word-spacing:10.933824pt;}
.wsc6{word-spacing:10.949856pt;}
.ws199{word-spacing:11.052832pt;}
.ws93{word-spacing:11.136896pt;}
.ws6d{word-spacing:11.206368pt;}
.ws6e{word-spacing:11.211712pt;}
.ws43{word-spacing:11.227744pt;}
.ws7f{word-spacing:11.516320pt;}
.ws124{word-spacing:11.591136pt;}
.ws5e{word-spacing:11.831616pt;}
.ws21{word-spacing:11.847648pt;}
.wse1{word-spacing:11.858336pt;}
.ws60{word-spacing:11.885056pt;}
.ws22{word-spacing:11.895744pt;}
.ws5f{word-spacing:11.917120pt;}
.ws71{word-spacing:11.959872pt;}
.ws62{word-spacing:12.162944pt;}
.wsf6{word-spacing:12.195008pt;}
.wsbc{word-spacing:12.216384pt;}
.ws8a{word-spacing:12.504960pt;}
.wsc3{word-spacing:12.526336pt;}
.wsc4{word-spacing:12.542368pt;}
.ws1f{word-spacing:12.766816pt;}
.ws116{word-spacing:12.782848pt;}
.wsa9{word-spacing:12.804224pt;}
.ws41{word-spacing:12.814912pt;}
.ws6f{word-spacing:13.103488pt;}
.wscc{word-spacing:13.119520pt;}
.ws70{word-spacing:13.199680pt;}
.ws34{word-spacing:13.456192pt;}
.ws121{word-spacing:13.504288pt;}
.ws17e{word-spacing:13.771488pt;}
.ws7b{word-spacing:14.092128pt;}
.wsd8{word-spacing:14.097472pt;}
.ws78{word-spacing:14.209696pt;}
.ws133{word-spacing:14.380704pt;}
.ws114{word-spacing:14.386048pt;}
.ws97{word-spacing:14.391392pt;}
.ws170{word-spacing:14.396736pt;}
.ws16{word-spacing:14.444832pt;}
.wsbf{word-spacing:14.455520pt;}
.wsc0{word-spacing:14.476896pt;}
.wsdd{word-spacing:15.080768pt;}
.wsdc{word-spacing:15.187648pt;}
.ws158{word-spacing:15.353312pt;}
.ws10d{word-spacing:15.406752pt;}
.ws185{word-spacing:15.994592pt;}
.ws25{word-spacing:16.106816pt;}
.ws57{word-spacing:16.177056pt;}
.wsbb{word-spacing:16.309888pt;}
.wsf7{word-spacing:16.320576pt;}
.ws16c{word-spacing:16.379360pt;}
.ws56{word-spacing:16.462208pt;}
.wsd5{word-spacing:16.625184pt;}
.ws1e{word-spacing:16.657248pt;}
.ws82{word-spacing:16.667936pt;}
.ws8b{word-spacing:16.694656pt;}
.ws16e{word-spacing:17.068736pt;}
.wsac{word-spacing:17.266464pt;}
.ws5d{word-spacing:17.319904pt;}
.ws86{word-spacing:18.292512pt;}
.ws9{word-spacing:18.680257pt;}
.wsb{word-spacing:19.240036pt;}
.ws184{word-spacing:19.516288pt;}
.wsa{word-spacing:19.796687pt;}
.ws4e{word-spacing:19.858304pt;}
.ws7{word-spacing:20.359913pt;}
.ws17b{word-spacing:20.617152pt;}
.ws8{word-spacing:21.195950pt;}
.ws17d{word-spacing:21.450816pt;}
.wsc8{word-spacing:22.412736pt;}
.ws15f{word-spacing:22.728032pt;}
.wsc{word-spacing:26.516204pt;}
.ws16f{word-spacing:26.522272pt;}
.ws1b{word-spacing:26.939104pt;}
.ws7d{word-spacing:27.569696pt;}
.ws7e{word-spacing:27.585728pt;}
.wsae{word-spacing:51.352113pt;}
.wsaf{word-spacing:51.671724pt;}
.ws107{word-spacing:51.778247pt;}
.ws106{word-spacing:52.417917pt;}
.ws187{word-spacing:54.140064pt;}
.wsfa{word-spacing:60.523005pt;}
.ws102{word-spacing:60.818983pt;}
.wsf9{word-spacing:61.282122pt;}
.ws103{word-spacing:61.603168pt;}
.ws101{word-spacing:61.996243pt;}
.ws100{word-spacing:66.716472pt;}
.wsff{word-spacing:71.826993pt;}
.wsef{word-spacing:81.608800pt;}
.wsee{word-spacing:90.248480pt;}
.wsed{word-spacing:107.847040pt;}
.wsec{word-spacing:124.496512pt;}
.ws4{word-spacing:138.813650pt;}
.ws6a{word-spacing:151.484756pt;}
.ws69{word-spacing:151.803560pt;}
.ws68{word-spacing:152.442013pt;}
.ws67{word-spacing:154.794921pt;}
.ws48{word-spacing:642.503776pt;}
.ws6b{word-spacing:809.614624pt;}
._d{margin-left:-809.597600pt;}
._7{margin-left:-150.106931pt;}
._5{margin-left:-130.496585pt;}
._6{margin-left:-102.977074pt;}
._1f{margin-left:-36.801632pt;}
._1e{margin-left:-35.201376pt;}
._15{margin-left:-33.445124pt;}
._1d{margin-left:-26.229728pt;}
._17{margin-left:-23.361184pt;}
._14{margin-left:-18.509024pt;}
._f{margin-left:-16.321760pt;}
._28{margin-left:-15.358656pt;}
._16{margin-left:-14.398048pt;}
._2{margin-left:-12.606496pt;}
._19{margin-left:-8.639680pt;}
._29{margin-left:-7.150304pt;}
._4{margin-left:-4.508160pt;}
._18{margin-left:-3.169408pt;}
._b{margin-left:-2.091698pt;}
._1{margin-left:-1.106208pt;}
._3{width:1.074144pt;}
._10{width:2.479616pt;}
._8{width:3.639264pt;}
._21{width:6.715968pt;}
._1a{width:16.317504pt;}
._23{width:23.037728pt;}
._a{width:24.566460pt;}
._9{width:25.877359pt;}
._c{width:27.276704pt;}
._22{width:29.438752pt;}
._20{width:32.721760pt;}
._1b{width:38.397632pt;}
._1c{width:49.918624pt;}
._12{width:57.340749pt;}
._11{width:61.184442pt;}
._27{width:62.581929pt;}
._26{width:67.742788pt;}
._13{width:69.441434pt;}
._25{width:71.926423pt;}
._24{width:76.873428pt;}
._e{width:162.812990pt;}
._0{width:1446.035584pt;}
.fsc{font-size:13.933867pt;}
.fs9{font-size:15.826133pt;}
.fs19{font-size:17.103467pt;}
.fsf{font-size:17.370133pt;}
.fs13{font-size:19.186133pt;}
.fs16{font-size:19.236267pt;}
.fsa{font-size:19.478933pt;}
.fs14{font-size:20.662400pt;}
.fs17{font-size:20.716267pt;}
.fs1a{font-size:21.051200pt;}
.fs10{font-size:21.378667pt;}
.fsb{font-size:21.913600pt;}
.fs15{font-size:23.613867pt;}
.fs18{font-size:23.674667pt;}
.fs1b{font-size:23.682667pt;}
.fs11{font-size:24.051200pt;}
.fsd{font-size:26.560000pt;}
.fs12{font-size:32.000000pt;}
.fs7{font-size:32.513600pt;}
.fse{font-size:34.560000pt;}
.fs1c{font-size:37.440000pt;}
.fs0{font-size:42.560000pt;}
.fs3{font-size:53.440000pt;}
.fs8{font-size:55.737600pt;}
.fs6{font-size:58.907174pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs5{font-size:89.267733pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.800400pt;}
.y36{bottom:4.880400pt;}
.y2c{bottom:98.022347pt;}
.y6c{bottom:99.141907pt;}
.y8c{bottom:111.465371pt;}
.yb9{bottom:112.265784pt;}
.y2b{bottom:113.622819pt;}
.y6b{bottom:114.742379pt;}
.y106{bottom:115.463763pt;}
.ye2{bottom:115.627067pt;}
.y8b{bottom:127.065843pt;}
.yb8{bottom:127.866256pt;}
.y2a{bottom:129.223291pt;}
.y6a{bottom:130.342851pt;}
.y105{bottom:131.064235pt;}
.ye1{bottom:133.867067pt;}
.yd9{bottom:142.027067pt;}
.y8a{bottom:142.666315pt;}
.yb7{bottom:143.466728pt;}
.y29{bottom:144.823763pt;}
.y69{bottom:145.943323pt;}
.y104{bottom:146.664707pt;}
.ycf{bottom:148.667067pt;}
.ydc{bottom:151.947067pt;}
.yd0{bottom:152.347067pt;}
.y199{bottom:152.907067pt;}
.y133{bottom:155.464707pt;}
.yb6{bottom:159.067200pt;}
.y28{bottom:160.424235pt;}
.y68{bottom:161.543795pt;}
.y103{bottom:162.265179pt;}
.ye0{bottom:164.987067pt;}
.y89{bottom:166.106435pt;}
.y1b5{bottom:170.667067pt;}
.y132{bottom:171.065179pt;}
.y198{bottom:171.147200pt;}
.y1df{bottom:173.227088pt;}
.y18f{bottom:174.187200pt;}
.yd1{bottom:175.387067pt;}
.y27{bottom:176.024707pt;}
.y67{bottom:177.144267pt;}
.y102{bottom:177.865651pt;}
.y183{bottom:180.747067pt;}
.y88{bottom:181.787067pt;}
.yb5{bottom:182.186027pt;}
.y192{bottom:184.027200pt;}
.y184{bottom:184.347067pt;}
.y131{bottom:186.665651pt;}
.y1b4{bottom:188.907067pt;}
.y26{bottom:191.625179pt;}
.y66{bottom:192.744739pt;}
.y101{bottom:193.466123pt;}
.y1de{bottom:193.786760pt;}
.yb4{bottom:194.746547pt;}
.yd2{bottom:198.107200pt;}
.y130{bottom:202.266123pt;}
.y185{bottom:202.427067pt;}
.y87{bottom:205.787395pt;}
.y25{bottom:207.225651pt;}
.yb3{bottom:207.306027pt;}
.y65{bottom:208.345211pt;}
.y100{bottom:209.066595pt;}
.y197{bottom:210.027200pt;}
.y1dd{bottom:214.346432pt;}
.y12f{bottom:217.866595pt;}
.yda{bottom:219.707067pt;}
.yb2{bottom:219.866547pt;}
.y186{bottom:220.587067pt;}
.yd3{bottom:221.147067pt;}
.y24{bottom:222.826123pt;}
.y64{bottom:223.945683pt;}
.yff{bottom:224.667067pt;}
.y86{bottom:226.347067pt;}
.yb1{bottom:232.427067pt;}
.y12e{bottom:233.467067pt;}
.y1dc{bottom:234.906104pt;}
.y23{bottom:238.426595pt;}
.y187{bottom:238.667067pt;}
.yd4{bottom:243.867067pt;}
.y190{bottom:244.427067pt;}
.y85{bottom:244.587067pt;}
.y63{bottom:247.385803pt;}
.yfe{bottom:247.787067pt;}
.yb0{bottom:250.667067pt;}
.yae{bottom:253.707067pt;}
.y22{bottom:254.027067pt;}
.y1db{bottom:255.465776pt;}
.y188{bottom:256.427067pt;}
.y12d{bottom:258.027067pt;}
.ya3{bottom:258.267067pt;}
.ya4{bottom:261.227067pt;}
.y62{bottom:263.066435pt;}
.yd5{bottom:266.587067pt;}
.y1da{bottom:268.026296pt;}
.ya5{bottom:270.587067pt;}
.yfc{bottom:273.066160pt;}
.y189{bottom:274.507067pt;}
.y21{bottom:278.586763pt;}
.y61{bottom:278.747067pt;}
.ya6{bottom:279.947067pt;}
.y1d9{bottom:280.586816pt;}
.yfb{bottom:285.626680pt;}
.ya7{bottom:289.067067pt;}
.yd6{bottom:289.627067pt;}
.y18a{bottom:292.587067pt;}
.yaf{bottom:296.827067pt;}
.yfd{bottom:298.186136pt;}
.yfa{bottom:298.187200pt;}
.ya8{bottom:298.427067pt;}
.y20{bottom:300.427251pt;}
.y1d8{bottom:301.146488pt;}
.y60{bottom:302.746547pt;}
.ya9{bottom:307.787067pt;}
.y18b{bottom:310.347067pt;}
.y12c{bottom:310.898099pt;}
.yd7{bottom:312.347067pt;}
.y1d7{bottom:313.707008pt;}
.y5f{bottom:315.307067pt;}
.yaa{bottom:316.907067pt;}
.yf9{bottom:317.387067pt;}
.ydf{bottom:322.347067pt;}
.yab{bottom:326.267067pt;}
.y12b{bottom:326.498571pt;}
.y18c{bottom:328.427067pt;}
.yde{bottom:328.667200pt;}
.y5e{bottom:333.547067pt;}
.y1d6{bottom:334.266680pt;}
.yd8{bottom:335.067067pt;}
.ydd{bottom:335.069526pt;}
.y195{bottom:335.307067pt;}
.yac{bottom:335.707067pt;}
.yf8{bottom:336.587067pt;}
.y5a{bottom:338.667200pt;}
.ydb{bottom:339.787067pt;}
.y196{bottom:340.907067pt;}
.y194{bottom:341.947067pt;}
.y12a{bottom:342.099043pt;}
.y44{bottom:344.667200pt;}
.yad{bottom:344.827200pt;}
.y18d{bottom:346.507067pt;}
.y1d5{bottom:346.827200pt;}
.y45{bottom:348.027067pt;}
.y1f{bottom:353.299987pt;}
.yf7{bottom:355.787067pt;}
.y46{bottom:356.587067pt;}
.y129{bottom:357.699515pt;}
.y193{bottom:364.264814pt;}
.y18e{bottom:364.267067pt;}
.y47{bottom:364.747200pt;}
.yce{bottom:366.507067pt;}
.y5d{bottom:367.227067pt;}
.y1d4{bottom:367.387360pt;}
.y1e{bottom:368.900459pt;}
.y191{bottom:368.907200pt;}
.y128{bottom:373.299987pt;}
.y48{bottom:373.307067pt;}
.yf6{bottom:374.987112pt;}
.y1d3{bottom:379.946816pt;}
.y49{bottom:381.547067pt;}
.y1d{bottom:384.500931pt;}
.ycd{bottom:384.747200pt;}
.y127{bottom:388.900459pt;}
.y4a{bottom:389.707067pt;}
.yf5{bottom:392.827200pt;}
.y182{bottom:394.824235pt;}
.y4b{bottom:398.267067pt;}
.y1c{bottom:400.101403pt;}
.y1d2{bottom:400.506488pt;}
.y1b3{bottom:404.101403pt;}
.y126{bottom:404.500931pt;}
.y4c{bottom:406.507067pt;}
.yf4{bottom:409.547067pt;}
.y181{bottom:410.424707pt;}
.ya2{bottom:411.385179pt;}
.y1d1{bottom:413.067008pt;}
.y4d{bottom:414.667200pt;}
.y1b{bottom:415.701875pt;}
.y5b{bottom:417.707067pt;}
.y1b2{bottom:419.701875pt;}
.y125{bottom:420.101403pt;}
.yf3{bottom:420.106595pt;}
.y4e{bottom:423.227067pt;}
.y180{bottom:426.025179pt;}
.ya1{bottom:426.985651pt;}
.y1a{bottom:431.302347pt;}
.y4f{bottom:431.467067pt;}
.y1d0{bottom:433.626680pt;}
.y1b1{bottom:435.302347pt;}
.y124{bottom:435.701875pt;}
.yf2{bottom:435.703291pt;}
.y50{bottom:439.627067pt;}
.y17f{bottom:441.625651pt;}
.ya0{bottom:442.586123pt;}
.y84{bottom:444.661755pt;}
.y1cf{bottom:446.187200pt;}
.y19{bottom:446.902819pt;}
.y51{bottom:448.187200pt;}
.y1b0{bottom:450.902819pt;}
.y123{bottom:451.302347pt;}
.yf1{bottom:451.303763pt;}
.y52{bottom:456.347067pt;}
.y17e{bottom:457.226123pt;}
.y9f{bottom:458.186595pt;}
.y83{bottom:460.262227pt;}
.y18{bottom:462.503291pt;}
.y53{bottom:464.587067pt;}
.y1af{bottom:466.503291pt;}
.y122{bottom:466.902819pt;}
.yf0{bottom:466.904235pt;}
.y1ce{bottom:468.187067pt;}
.y17d{bottom:472.826595pt;}
.y54{bottom:473.147067pt;}
.y9e{bottom:473.787067pt;}
.y82{bottom:475.862699pt;}
.y17{bottom:478.103763pt;}
.y55{bottom:481.307067pt;}
.y1ae{bottom:482.103763pt;}
.y121{bottom:482.503291pt;}
.yef{bottom:482.504707pt;}
.y17c{bottom:488.427067pt;}
.y56{bottom:489.547067pt;}
.y81{bottom:491.463171pt;}
.y16{bottom:493.704235pt;}
.y1ad{bottom:497.704235pt;}
.y120{bottom:498.103763pt;}
.yee{bottom:498.105179pt;}
.y57{bottom:498.107067pt;}
.y9d{bottom:499.546547pt;}
.y58{bottom:506.267067pt;}
.y80{bottom:507.063643pt;}
.y15{bottom:509.304707pt;}
.y17b{bottom:511.547067pt;}
.y9c{bottom:512.107067pt;}
.y1ac{bottom:513.304707pt;}
.y11f{bottom:513.704235pt;}
.yed{bottom:513.705651pt;}
.y59{bottom:514.507067pt;}
.y5c{bottom:518.907067pt;}
.y7f{bottom:522.664115pt;}
.y14{bottom:524.905179pt;}
.y1ab{bottom:528.905179pt;}
.y11e{bottom:529.304707pt;}
.yec{bottom:529.306123pt;}
.y17a{bottom:529.787067pt;}
.y9b{bottom:530.347067pt;}
.y170{bottom:533.947067pt;}
.y7e{bottom:538.264587pt;}
.y13{bottom:540.505651pt;}
.y165{bottom:540.587067pt;}
.y173{bottom:544.347067pt;}
.y1aa{bottom:544.505651pt;}
.y166{bottom:544.667067pt;}
.y11d{bottom:544.905179pt;}
.yeb{bottom:544.906595pt;}
.y43{bottom:546.505067pt;}
.y179{bottom:552.107067pt;}
.y7d{bottom:553.865059pt;}
.y167{bottom:555.067067pt;}
.y12{bottom:556.106123pt;}
.y1a9{bottom:560.106123pt;}
.y11c{bottom:560.505651pt;}
.yea{bottom:560.507067pt;}
.y1cd{bottom:561.064707pt;}
.y42{bottom:562.105539pt;}
.y168{bottom:565.387067pt;}
.y7c{bottom:569.465531pt;}
.y11{bottom:571.706595pt;}
.y1a8{bottom:575.706595pt;}
.y169{bottom:575.787067pt;}
.y11b{bottom:576.106123pt;}
.y171{bottom:576.347067pt;}
.y1cc{bottom:576.665179pt;}
.y41{bottom:577.706011pt;}
.ycc{bottom:582.016123pt;}
.ye9{bottom:583.627067pt;}
.y7b{bottom:585.066003pt;}
.y16a{bottom:586.107067pt;}
.y10{bottom:587.307067pt;}
.y1a7{bottom:591.307067pt;}
.y11a{bottom:591.706595pt;}
.y1cb{bottom:592.265651pt;}
.y40{bottom:593.306483pt;}
.y16b{bottom:596.507067pt;}
.ycb{bottom:597.616595pt;}
.y7a{bottom:600.666475pt;}
.ye8{bottom:601.867067pt;}
.y16c{bottom:606.827067pt;}
.y119{bottom:607.307067pt;}
.y1ca{bottom:607.866123pt;}
.y3f{bottom:608.906955pt;}
.yf{bottom:611.867067pt;}
.yca{bottom:613.217067pt;}
.y178{bottom:615.387067pt;}
.y1a6{bottom:615.867067pt;}
.y79{bottom:616.266947pt;}
.y16d{bottom:617.227067pt;}
.y177{bottom:622.347067pt;}
.y1c9{bottom:623.466595pt;}
.y3e{bottom:624.507427pt;}
.y16e{bottom:627.547067pt;}
.yc9{bottom:628.817539pt;}
.y16f{bottom:629.387067pt;}
.y174{bottom:629.387716pt;}
.y118{bottom:631.867067pt;}
.y172{bottom:634.907067pt;}
.y1c8{bottom:639.067067pt;}
.y78{bottom:639.707067pt;}
.yc8{bottom:644.418011pt;}
.y39{bottom:645.066667pt;}
.y160{bottom:651.547067pt;}
.y3b{bottom:654.107067pt;}
.y9a{bottom:655.467067pt;}
.y155{bottom:658.267067pt;}
.y38{bottom:658.987067pt;}
.y3d{bottom:658.987493pt;}
.yc7{bottom:660.018483pt;}
.y163{bottom:661.947067pt;}
.y156{bottom:662.347067pt;}
.y35{bottom:662.906667pt;}
.y1c7{bottom:663.627067pt;}
.y77{bottom:663.706547pt;}
.ye{bottom:664.747067pt;}
.y37{bottom:667.787067pt;}
.y1a5{bottom:668.742379pt;}
.y157{bottom:672.667067pt;}
.y99{bottom:673.707067pt;}
.y3c{bottom:674.027337pt;}
.yc6{bottom:675.618955pt;}
.y76{bottom:676.267067pt;}
.y158{bottom:683.067067pt;}
.y1a4{bottom:684.342851pt;}
.y117{bottom:684.743291pt;}
.yd{bottom:689.307067pt;}
.y159{bottom:693.387067pt;}
.y161{bottom:694.027067pt;}
.y34{bottom:694.420763pt;}
.y75{bottom:694.507067pt;}
.yc5{bottom:699.219395pt;}
.y1a3{bottom:699.943323pt;}
.y116{bottom:700.343763pt;}
.y15a{bottom:703.787067pt;}
.y33{bottom:710.021235pt;}
.y15b{bottom:714.107067pt;}
.yc4{bottom:714.819867pt;}
.y1a2{bottom:715.543795pt;}
.y115{bottom:715.944235pt;}
.y15c{bottom:724.507067pt;}
.yc3{bottom:730.420339pt;}
.y1a1{bottom:731.144267pt;}
.y114{bottom:731.544707pt;}
.y176{bottom:732.987200pt;}
.y32{bottom:733.461355pt;}
.y15d{bottom:734.827200pt;}
.y175{bottom:740.027067pt;}
.y15e{bottom:745.227067pt;}
.yc2{bottom:746.020811pt;}
.y1a0{bottom:746.744739pt;}
.y164{bottom:747.067547pt;}
.y113{bottom:747.145179pt;}
.y15f{bottom:747.387067pt;}
.y1c6{bottom:748.499987pt;}
.y31{bottom:749.141987pt;}
.yc{bottom:750.184275pt;}
.y162{bottom:752.587067pt;}
.yc1{bottom:761.621283pt;}
.y19f{bottom:762.345211pt;}
.y112{bottom:762.745651pt;}
.y1c5{bottom:764.100459pt;}
.yb{bottom:765.784747pt;}
.y30{bottom:773.621515pt;}
.y154{bottom:777.147200pt;}
.yc0{bottom:777.221755pt;}
.y111{bottom:778.346123pt;}
.y1c4{bottom:779.700931pt;}
.ya{bottom:781.385219pt;}
.y19e{bottom:785.945651pt;}
.y2f{bottom:789.221987pt;}
.ybf{bottom:792.822227pt;}
.y110{bottom:793.946595pt;}
.y1c3{bottom:795.301403pt;}
.y153{bottom:795.387067pt;}
.y9{bottom:796.985691pt;}
.y14b{bottom:799.467067pt;}
.y19d{bottom:801.546123pt;}
.y142{bottom:806.187067pt;}
.ybe{bottom:808.422699pt;}
.y10f{bottom:809.542819pt;}
.y14e{bottom:809.867067pt;}
.y143{bottom:810.187067pt;}
.y1c2{bottom:810.901875pt;}
.y8{bottom:812.586163pt;}
.y2e{bottom:812.822427pt;}
.y19c{bottom:817.146595pt;}
.y152{bottom:819.067067pt;}
.y144{bottom:822.027067pt;}
.ybd{bottom:824.023171pt;}
.y10e{bottom:825.143291pt;}
.ye7{bottom:825.705651pt;}
.y1c1{bottom:826.502347pt;}
.y7{bottom:828.186635pt;}
.y2d{bottom:828.422899pt;}
.y98{bottom:832.739707pt;}
.y19b{bottom:832.746595pt;}
.y145{bottom:833.867067pt;}
.y10d{bottom:840.743763pt;}
.ye6{bottom:841.306123pt;}
.y14c{bottom:841.867067pt;}
.y1c0{bottom:842.102819pt;}
.y6{bottom:844.026251pt;}
.y146{bottom:845.627067pt;}
.ybc{bottom:847.463291pt;}
.y97{bottom:848.340179pt;}
.y19a{bottom:848.342379pt;}
.y10c{bottom:856.344235pt;}
.ye5{bottom:856.906595pt;}
.y147{bottom:857.467067pt;}
.y1bf{bottom:857.703291pt;}
.y96{bottom:863.940651pt;}
.y148{bottom:869.227067pt;}
.ybb{bottom:871.942819pt;}
.y10b{bottom:871.944707pt;}
.ye4{bottom:872.507067pt;}
.y1be{bottom:873.303763pt;}
.y5{bottom:875.626659pt;}
.y95{bottom:879.541123pt;}
.y149{bottom:880.667067pt;}
.yba{bottom:887.543291pt;}
.y10a{bottom:887.545179pt;}
.y150{bottom:887.707067pt;}
.y1bd{bottom:888.904235pt;}
.y14a{bottom:892.507067pt;}
.y14f{bottom:894.746521pt;}
.y94{bottom:895.141595pt;}
.ye3{bottom:897.067067pt;}
.y14d{bottom:900.267067pt;}
.y74{bottom:903.143763pt;}
.y109{bottom:903.145651pt;}
.y1bc{bottom:904.504707pt;}
.y4{bottom:907.227067pt;}
.y93{bottom:910.742067pt;}
.y13d{bottom:916.827067pt;}
.y73{bottom:918.744235pt;}
.y108{bottom:918.746123pt;}
.y1bb{bottom:920.105179pt;}
.y134{bottom:923.467067pt;}
.y140{bottom:927.147067pt;}
.y135{bottom:927.547067pt;}
.y92{bottom:934.342507pt;}
.y72{bottom:934.344707pt;}
.y107{bottom:934.346595pt;}
.y1ba{bottom:935.705651pt;}
.y3{bottom:939.307067pt;}
.y136{bottom:939.387067pt;}
.y91{bottom:949.942979pt;}
.y71{bottom:949.945179pt;}
.y137{bottom:951.147067pt;}
.y1b9{bottom:951.306123pt;}
.y13e{bottom:959.147067pt;}
.y138{bottom:962.987067pt;}
.y90{bottom:965.543451pt;}
.y70{bottom:965.545651pt;}
.y1b8{bottom:966.906595pt;}
.y139{bottom:974.747067pt;}
.y8f{bottom:981.143923pt;}
.y6f{bottom:981.146123pt;}
.y1b7{bottom:982.507067pt;}
.y2{bottom:984.027067pt;}
.y13a{bottom:986.587067pt;}
.y8e{bottom:996.744395pt;}
.y6e{bottom:996.746595pt;}
.y13b{bottom:998.027067pt;}
.y151{bottom:1005.067067pt;}
.y1b6{bottom:1007.067067pt;}
.y13c{bottom:1009.867067pt;}
.y141{bottom:1012.026521pt;}
.y8d{bottom:1012.344867pt;}
.y6d{bottom:1012.347067pt;}
.y13f{bottom:1017.547067pt;}
.y1{bottom:1057.547067pt;}
.h15{height:12.491494pt;}
.h10{height:14.187881pt;}
.h26{height:15.332991pt;}
.h18{height:15.572053pt;}
.hc{height:16.800000pt;}
.h20{height:17.200069pt;}
.h23{height:17.245012pt;}
.h11{height:19.631112pt;}
.h9{height:20.480000pt;}
.h21{height:20.823825pt;}
.h24{height:20.878113pt;}
.h27{height:21.215663pt;}
.h19{height:21.545687pt;}
.h12{height:22.084800pt;}
.h22{height:23.798350pt;}
.h25{height:23.859625pt;}
.h28{height:23.867687pt;}
.h1a{height:24.239100pt;}
.h1c{height:28.078125pt;}
.hd{height:28.528779pt;}
.h1d{height:30.984844pt;}
.h14{height:37.343906pt;}
.h16{height:37.348066pt;}
.h2a{height:37.447813pt;}
.h1{height:38.154375pt;}
.hb{height:40.901368pt;}
.h13{height:42.892500pt;}
.h4{height:46.890469pt;}
.h1e{height:46.898021pt;}
.h1b{height:46.905573pt;}
.h1f{height:46.907461pt;}
.h17{height:46.934245pt;}
.h6{height:47.020937pt;}
.h29{height:47.039689pt;}
.h5{height:53.857500pt;}
.hf{height:55.208763pt;}
.h3{height:56.312500pt;}
.ha{height:61.981795pt;}
.he{height:73.898913pt;}
.h7{height:75.142500pt;}
.h8{height:75.170820pt;}
.h2{height:107.392500pt;}
.h0{height:1122.666667pt;}
.w1{width:4.560000pt;}
.w2{width:7.920000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1d{left:56.720000pt;}
.x20{left:66.160000pt;}
.x1{left:75.680000pt;}
.x21{left:85.040352pt;}
.x34{left:98.240000pt;}
.x32{left:102.000000pt;}
.x7{left:104.000000pt;}
.x31{left:106.000000pt;}
.x36{left:108.320000pt;}
.x1f{left:113.440296pt;}
.x2{left:115.920000pt;}
.x60{left:122.160000pt;}
.x4{left:124.880000pt;}
.x23{left:131.680000pt;}
.x30{left:150.800000pt;}
.x3b{left:153.280000pt;}
.x35{left:181.200000pt;}
.x33{left:201.120000pt;}
.x24{left:217.360728pt;}
.x39{left:275.600000pt;}
.x3{left:279.760000pt;}
.x22{left:321.840000pt;}
.x1e{left:329.200000pt;}
.x5{left:352.960584pt;}
.x2f{left:358.400000pt;}
.x38{left:361.360000pt;}
.x37{left:372.721547pt;}
.x5f{left:378.240000pt;}
.x3a{left:393.040000pt;}
.x25{left:398.719792pt;}
.x6{left:406.400584pt;}
.x8{left:417.679440pt;}
.x52{left:418.960000pt;}
.x48{left:421.200000pt;}
.x2d{left:423.760000pt;}
.x58{left:425.760000pt;}
.xa{left:427.119616pt;}
.x2b{left:428.320000pt;}
.x2a{left:430.480000pt;}
.x4c{left:431.520000pt;}
.x18{left:432.480000pt;}
.x4a{left:434.240000pt;}
.x3d{left:435.760000pt;}
.x16{left:437.040000pt;}
.x54{left:438.000000pt;}
.x15{left:439.440000pt;}
.x14{left:441.200000pt;}
.x53{left:443.680000pt;}
.x9{left:445.999968pt;}
.x12{left:447.679818pt;}
.x19{left:449.520000pt;}
.x27{left:451.760000pt;}
.x29{left:455.440296pt;}
.x13{left:461.839955pt;}
.x3e{left:471.599776pt;}
.xf{left:473.440000pt;}
.x1c{left:474.400296pt;}
.x49{left:476.320520pt;}
.x5e{left:488.560000pt;}
.xb{left:490.240000pt;}
.xe{left:502.000000pt;}
.x10{left:509.920000pt;}
.x40{left:514.239576pt;}
.x3f{left:516.239896pt;}
.x4d{left:517.200000pt;}
.x55{left:518.480000pt;}
.x5a{left:533.120000pt;}
.x11{left:534.400302pt;}
.xc{left:540.880000pt;}
.x59{left:544.000000pt;}
.xd{left:545.120000pt;}
.x4b{left:552.160000pt;}
.x2c{left:555.440000pt;}
.x41{left:558.399832pt;}
.x42{left:563.999640pt;}
.x17{left:569.680000pt;}
.x50{left:592.400000pt;}
.x43{left:605.439248pt;}
.x44{left:611.360240pt;}
.x1a{left:617.920000pt;}
.x5c{left:634.320000pt;}
.x45{left:657.519752pt;}
.x46{left:661.280360pt;}
.x4f{left:664.240000pt;}
.x5b{left:667.440000pt;}
.x56{left:682.723221pt;}
.x4e{left:686.561664pt;}
.x57{left:689.440000pt;}
.x51{left:693.520000pt;}
.x26{left:695.520000pt;}
.x28{left:696.720000pt;}
.x5d{left:701.759867pt;}
.x2e{left:706.880000pt;}
.x47{left:711.119763pt;}
.x3c{left:723.120000pt;}
.x1b{left:728.880000pt;}
}




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