
    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_6ca7645692956fcb8ea7f330.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_2debb651ae53326eaaa507c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_027d1a4546bb63f0ce469d28.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_2fda8f4773b9e5c52a6581e7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_671eaab77b62c16b70ea974f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_1431e7028e5cba8c52f699e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891113;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_14829f3a481ce0b16a1642b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_bae3cb286c7c66e7415d0dd0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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;}
.m7{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m3{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m4{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m5{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,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);}
.v8{vertical-align:-56.123990px;}
.v7{vertical-align:-45.682724px;}
.v9{vertical-align:-27.000000px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.000000px;}
.v3{vertical-align:18.000000px;}
.v6{vertical-align:32.040000px;}
.v1{vertical-align:33.120000px;}
.ls8e{letter-spacing:-3.011687px;}
.ls8d{letter-spacing:-2.072897px;}
.ls32{letter-spacing:-0.397663px;}
.ls95{letter-spacing:-0.338976px;}
.ls9b{letter-spacing:-0.329472px;}
.ls9e{letter-spacing:-0.310464px;}
.lsac{letter-spacing:-0.263151px;}
.lsb3{letter-spacing:-0.257040px;}
.ls9c{letter-spacing:-0.250272px;}
.lsa3{letter-spacing:-0.241920px;}
.ls9d{letter-spacing:-0.196416px;}
.ls71{letter-spacing:-0.158400px;}
.ls29{letter-spacing:-0.151835px;}
.ls7b{letter-spacing:-0.138276px;}
.ls2a{letter-spacing:-0.137375px;}
.ls28{letter-spacing:-0.130144px;}
.lsa2{letter-spacing:-0.120600px;}
.ls7a{letter-spacing:-0.120240px;}
.ls33{letter-spacing:-0.115684px;}
.lsa4{letter-spacing:-0.110592px;}
.lsae{letter-spacing:-0.109324px;}
.ls2c{letter-spacing:-0.108454px;}
.ls79{letter-spacing:-0.108216px;}
.lsb5{letter-spacing:-0.105984px;}
.ls2b{letter-spacing:-0.101223px;}
.lsaa{letter-spacing:-0.096505px;}
.ls2f{letter-spacing:-0.093993px;}
.ls80{letter-spacing:-0.093660px;}
.ls69{letter-spacing:-0.090972px;}
.ls78{letter-spacing:-0.090180px;}
.ls56{letter-spacing:-0.086503px;}
.ls27{letter-spacing:-0.072302px;}
.ls34{letter-spacing:-0.072169px;}
.ls74{letter-spacing:-0.072144px;}
.ls76{letter-spacing:-0.066132px;}
.ls68{letter-spacing:-0.064877px;}
.lsa9{letter-spacing:-0.062728px;}
.ls30{letter-spacing:-0.057842px;}
.ls37{letter-spacing:-0.057735px;}
.ls81{letter-spacing:-0.057637px;}
.ls96{letter-spacing:-0.057022px;}
.ls94{letter-spacing:-0.053064px;}
.ls35{letter-spacing:-0.050518px;}
.ls5a{letter-spacing:-0.050460px;}
.ls5c{letter-spacing:-0.050400px;}
.lsb2{letter-spacing:-0.043427px;}
.lsa1{letter-spacing:-0.043416px;}
.ls2e{letter-spacing:-0.043381px;}
.ls5b{letter-spacing:-0.043251px;}
.ls48{letter-spacing:-0.043245px;}
.ls72{letter-spacing:-0.043228px;}
.ls55{letter-spacing:-0.036043px;}
.ls49{letter-spacing:-0.036037px;}
.ls7e{letter-spacing:-0.036023px;}
.lsa{letter-spacing:-0.036000px;}
.ls77{letter-spacing:-0.030060px;}
.ls26{letter-spacing:-0.028921px;}
.ls36{letter-spacing:-0.028867px;}
.ls53{letter-spacing:-0.028834px;}
.ls39{letter-spacing:-0.028830px;}
.ls6e{letter-spacing:-0.028818px;}
.ls15{letter-spacing:-0.028800px;}
.ls51{letter-spacing:-0.021626px;}
.ls47{letter-spacing:-0.021622px;}
.ls6c{letter-spacing:-0.021614px;}
.lsd{letter-spacing:-0.021600px;}
.ls52{letter-spacing:-0.014417px;}
.ls46{letter-spacing:-0.014415px;}
.ls6d{letter-spacing:-0.014409px;}
.lsc{letter-spacing:-0.014400px;}
.ls31{letter-spacing:-0.007230px;}
.ls54{letter-spacing:-0.007209px;}
.ls3a{letter-spacing:-0.007207px;}
.ls6b{letter-spacing:-0.007205px;}
.lsb{letter-spacing:-0.007200px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.007200px;}
.ls60{letter-spacing:0.007205px;}
.ls38{letter-spacing:0.007207px;}
.ls57{letter-spacing:0.007209px;}
.ls19{letter-spacing:0.009360px;}
.ls1a{letter-spacing:0.009576px;}
.lsb0{letter-spacing:0.009651px;}
.ls6{letter-spacing:0.014400px;}
.ls65{letter-spacing:0.014409px;}
.ls3d{letter-spacing:0.014415px;}
.ls4f{letter-spacing:0.014417px;}
.lsa5{letter-spacing:0.014472px;}
.lsa6{letter-spacing:0.019296px;}
.ls7{letter-spacing:0.021600px;}
.ls66{letter-spacing:0.021614px;}
.ls40{letter-spacing:0.021622px;}
.ls4e{letter-spacing:0.021626px;}
.lsa0{letter-spacing:0.022176px;}
.ls1{letter-spacing:0.028800px;}
.ls64{letter-spacing:0.028818px;}
.ls3e{letter-spacing:0.028830px;}
.ls5e{letter-spacing:0.028834px;}
.lsb1{letter-spacing:0.033777px;}
.ls4{letter-spacing:0.036000px;}
.ls63{letter-spacing:0.036023px;}
.ls3c{letter-spacing:0.036037px;}
.ls4c{letter-spacing:0.036043px;}
.ls82{letter-spacing:0.039528px;}
.ls2{letter-spacing:0.043200px;}
.ls6f{letter-spacing:0.043228px;}
.ls3f{letter-spacing:0.043245px;}
.ls50{letter-spacing:0.043251px;}
.ls21{letter-spacing:0.043301px;}
.ls2d{letter-spacing:0.043381px;}
.ls90{letter-spacing:0.044351px;}
.lsa7{letter-spacing:0.048240px;}
.ls14{letter-spacing:0.050400px;}
.ls7d{letter-spacing:0.050432px;}
.ls41{letter-spacing:0.050452px;}
.ls11{letter-spacing:0.057600px;}
.ls61{letter-spacing:0.057637px;}
.ls25{letter-spacing:0.057660px;}
.ls3{letter-spacing:0.064800px;}
.ls8a{letter-spacing:0.064842px;}
.ls42{letter-spacing:0.064867px;}
.ls5d{letter-spacing:0.064877px;}
.ls22{letter-spacing:0.064952px;}
.ls12{letter-spacing:0.072000px;}
.ls62{letter-spacing:0.072046px;}
.ls4b{letter-spacing:0.072074px;}
.ls20{letter-spacing:0.072302px;}
.ls0{letter-spacing:0.075492px;}
.lsf{letter-spacing:0.079200px;}
.ls24{letter-spacing:0.079282px;}
.ls9{letter-spacing:0.083880px;}
.ls75{letter-spacing:0.084168px;}
.ls97{letter-spacing:0.085533px;}
.ls13{letter-spacing:0.086400px;}
.ls7f{letter-spacing:0.086455px;}
.ls93{letter-spacing:0.091869px;}
.ls43{letter-spacing:0.093697px;}
.ls1e{letter-spacing:0.095760px;}
.ls7c{letter-spacing:0.096192px;}
.lsa8{letter-spacing:0.106128px;}
.ls18{letter-spacing:0.108000px;}
.ls87{letter-spacing:0.111996px;}
.ls83{letter-spacing:0.118584px;}
.ls73{letter-spacing:0.120240px;}
.ls86{letter-spacing:0.125172px;}
.ls84{letter-spacing:0.131760px;}
.lsaf{letter-spacing:0.135826px;}
.ls98{letter-spacing:0.142555px;}
.ls4d{letter-spacing:0.144172px;}
.lsb6{letter-spacing:0.145728px;}
.ls85{letter-spacing:0.158112px;}
.ls17{letter-spacing:0.180000px;}
.ls8f{letter-spacing:0.190074px;}
.ls9f{letter-spacing:0.197784px;}
.ls92{letter-spacing:0.199577px;}
.ls91{letter-spacing:0.212249px;}
.lsab{letter-spacing:0.217137px;}
.ls99{letter-spacing:0.228088px;}
.lsad{letter-spacing:0.235928px;}
.lsb4{letter-spacing:0.238896px;}
.ls9a{letter-spacing:0.253432px;}
.ls1f{letter-spacing:0.255960px;}
.ls8b{letter-spacing:0.478846px;}
.ls4a{letter-spacing:0.497313px;}
.ls8c{letter-spacing:1.079231px;}
.ls58{letter-spacing:33.624000px;}
.lse{letter-spacing:33.984000px;}
.ls16{letter-spacing:87.955200px;}
.ls3b{letter-spacing:87.984000px;}
.ls44{letter-spacing:197.981169px;}
.ls6a{letter-spacing:197.990162px;}
.ls88{letter-spacing:254.230920px;}
.ls89{letter-spacing:271.557360px;}
.ls1c{letter-spacing:373.472022px;}
.ls1d{letter-spacing:422.896738px;}
.ls5f{letter-spacing:457.997693px;}
.ls23{letter-spacing:590.791154px;}
.ls1b{letter-spacing:750.113434px;}
.ls67{letter-spacing:1136.504723px;}
.ls70{letter-spacing:1136.528805px;}
.ls45{letter-spacing:1154.487739px;}
.ls10{letter-spacing:1154.520000px;}
.ls59{letter-spacing:1154.526173px;}
.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;}
}
.wsda{word-spacing:-72.046200px;}
.ws11a{word-spacing:-65.880000px;}
.wsb0{word-spacing:-41.825666px;}
.wsd7{word-spacing:-41.802644px;}
.wsaf{word-spacing:-39.575104px;}
.ws92{word-spacing:-39.568846px;}
.ws65{word-spacing:-39.504942px;}
.ws6a{word-spacing:-23.154844px;}
.ws6d{word-spacing:-23.082046px;}
.ws90{word-spacing:-18.515913px;}
.ws54{word-spacing:-18.118981px;}
.ws8f{word-spacing:-18.112297px;}
.ws52{word-spacing:-18.075600px;}
.ws8e{word-spacing:-18.069052px;}
.ws19{word-spacing:-18.057600px;}
.wsef{word-spacing:-18.054778px;}
.ws10c{word-spacing:-18.050400px;}
.ws61{word-spacing:-18.042150px;}
.ws0{word-spacing:-18.028800px;}
.ws112{word-spacing:-18.025959px;}
.wsac{word-spacing:-18.021450px;}
.ws6f{word-spacing:-18.018600px;}
.ws55{word-spacing:-18.017758px;}
.wsd9{word-spacing:-18.011550px;}
.ws64{word-spacing:-17.989500px;}
.wsc7{word-spacing:-17.949600px;}
.ws53{word-spacing:-17.923765px;}
.wsf0{word-spacing:-17.841600px;}
.ws13b{word-spacing:-13.516848px;}
.ws47{word-spacing:-11.979576px;}
.ws140{word-spacing:-11.611949px;}
.ws50{word-spacing:-10.544100px;}
.ws60{word-spacing:-10.524450px;}
.wsad{word-spacing:-10.512450px;}
.ws91{word-spacing:-10.510950px;}
.ws43{word-spacing:-10.499700px;}
.wsff{word-spacing:-9.720000px;}
.ws120{word-spacing:-9.236680px;}
.ws12e{word-spacing:-9.060180px;}
.ws12a{word-spacing:-9.034836px;}
.ws12c{word-spacing:-9.018997px;}
.ws126{word-spacing:-9.006325px;}
.ws129{word-spacing:-8.949303px;}
.ws12d{word-spacing:-8.898617px;}
.ws128{word-spacing:-8.892281px;}
.ws12b{word-spacing:-8.851098px;}
.ws136{word-spacing:-8.829216px;}
.ws127{word-spacing:-8.806748px;}
.ws125{word-spacing:-8.749726px;}
.ws135{word-spacing:-8.468064px;}
.ws148{word-spacing:-8.149680px;}
.ws141{word-spacing:-8.145571px;}
.ws123{word-spacing:-4.552184px;}
.ws122{word-spacing:-2.000441px;}
.ws124{word-spacing:-1.420785px;}
.ws121{word-spacing:-1.153490px;}
.ws42{word-spacing:-0.396000px;}
.ws3e{word-spacing:-0.374400px;}
.ws114{word-spacing:-0.353026px;}
.wsd5{word-spacing:-0.295552px;}
.wsf3{word-spacing:-0.273776px;}
.ws39{word-spacing:-0.266400px;}
.ws2c{word-spacing:-0.259200px;}
.wse1{word-spacing:-0.252162px;}
.ws40{word-spacing:-0.252000px;}
.wscc{word-spacing:-0.245092px;}
.ws10e{word-spacing:-0.244957px;}
.ws41{word-spacing:-0.237600px;}
.ws23{word-spacing:-0.230400px;}
.wsd6{word-spacing:-0.216257px;}
.ws3b{word-spacing:-0.216000px;}
.ws76{word-spacing:-0.209677px;}
.ws10f{word-spacing:-0.208934px;}
.wsbc{word-spacing:-0.201840px;}
.wsa2{word-spacing:-0.201808px;}
.wsf9{word-spacing:-0.201729px;}
.ws36{word-spacing:-0.201600px;}
.ws8a{word-spacing:-0.194601px;}
.ws115{word-spacing:-0.194525px;}
.ws110{word-spacing:-0.187320px;}
.ws3a{word-spacing:-0.187200px;}
.wsf5{word-spacing:-0.180116px;}
.ws1e{word-spacing:-0.180000px;}
.ws4{word-spacing:-0.176148px;}
.ws111{word-spacing:-0.172911px;}
.ws26{word-spacing:-0.172800px;}
.ws2{word-spacing:-0.167760px;}
.ws94{word-spacing:-0.165771px;}
.ws29{word-spacing:-0.165600px;}
.ws130{word-spacing:-0.161568px;}
.wsce{word-spacing:-0.158589px;}
.ws9b{word-spacing:-0.158564px;}
.wse4{word-spacing:-0.158502px;}
.ws3d{word-spacing:-0.158400px;}
.wsa0{word-spacing:-0.151356px;}
.wsdf{word-spacing:-0.151297px;}
.ws2f{word-spacing:-0.151200px;}
.ws7c{word-spacing:-0.144605px;}
.ws9d{word-spacing:-0.144149px;}
.wsf6{word-spacing:-0.144092px;}
.ws27{word-spacing:-0.144000px;}
.ws89{word-spacing:-0.136941px;}
.wse2{word-spacing:-0.136888px;}
.ws1a{word-spacing:-0.136800px;}
.wsbe{word-spacing:-0.129754px;}
.wsa1{word-spacing:-0.129734px;}
.wsfd{word-spacing:-0.129683px;}
.ws30{word-spacing:-0.129600px;}
.wsbf{word-spacing:-0.122546px;}
.ws9c{word-spacing:-0.122526px;}
.ws118{word-spacing:-0.122479px;}
.ws2d{word-spacing:-0.122400px;}
.ws77{word-spacing:-0.115684px;}
.wsb3{word-spacing:-0.115337px;}
.wsa3{word-spacing:-0.115319px;}
.wsf8{word-spacing:-0.115274px;}
.ws1b{word-spacing:-0.115200px;}
.wsc8{word-spacing:-0.108129px;}
.ws97{word-spacing:-0.108112px;}
.wse0{word-spacing:-0.108069px;}
.ws20{word-spacing:-0.108000px;}
.wsc9{word-spacing:-0.100920px;}
.wsea{word-spacing:-0.100865px;}
.ws32{word-spacing:-0.100800px;}
.ws87{word-spacing:-0.093819px;}
.wsd0{word-spacing:-0.093712px;}
.ws93{word-spacing:-0.093697px;}
.wsde{word-spacing:-0.093660px;}
.ws25{word-spacing:-0.093600px;}
.ws81{word-spacing:-0.086602px;}
.wsc1{word-spacing:-0.086503px;}
.ws98{word-spacing:-0.086489px;}
.wsf7{word-spacing:-0.086455px;}
.ws24{word-spacing:-0.086400px;}
.wsc2{word-spacing:-0.079294px;}
.wsa4{word-spacing:-0.079282px;}
.wsf1{word-spacing:-0.079251px;}
.ws21{word-spacing:-0.079200px;}
.wsca{word-spacing:-0.072086px;}
.ws8d{word-spacing:-0.072074px;}
.wsed{word-spacing:-0.072046px;}
.ws1c{word-spacing:-0.072000px;}
.ws11d{word-spacing:-0.065880px;}
.wsb7{word-spacing:-0.064877px;}
.ws9e{word-spacing:-0.064867px;}
.wse3{word-spacing:-0.064842px;}
.ws2a{word-spacing:-0.064800px;}
.wsd2{word-spacing:-0.057669px;}
.ws95{word-spacing:-0.057660px;}
.wse9{word-spacing:-0.057637px;}
.ws28{word-spacing:-0.057600px;}
.wsc6{word-spacing:-0.050460px;}
.ws9a{word-spacing:-0.050452px;}
.wsec{word-spacing:-0.050432px;}
.ws34{word-spacing:-0.050400px;}
.wsb9{word-spacing:-0.043251px;}
.ws9f{word-spacing:-0.043245px;}
.ws101{word-spacing:-0.043228px;}
.ws16{word-spacing:-0.043200px;}
.ws11c{word-spacing:-0.039528px;}
.wsbd{word-spacing:-0.036043px;}
.wsa6{word-spacing:-0.036037px;}
.wsee{word-spacing:-0.036023px;}
.ws17{word-spacing:-0.036000px;}
.ws11f{word-spacing:-0.032940px;}
.ws103{word-spacing:-0.030060px;}
.ws78{word-spacing:-0.028921px;}
.wscd{word-spacing:-0.028834px;}
.ws8b{word-spacing:-0.028830px;}
.wse5{word-spacing:-0.028818px;}
.ws2b{word-spacing:-0.028800px;}
.ws7d{word-spacing:-0.021691px;}
.wsb4{word-spacing:-0.021626px;}
.ws96{word-spacing:-0.021622px;}
.wse6{word-spacing:-0.021614px;}
.ws15{word-spacing:-0.021600px;}
.ws11e{word-spacing:-0.019764px;}
.ws83{word-spacing:-0.014434px;}
.wsb8{word-spacing:-0.014417px;}
.wsa7{word-spacing:-0.014415px;}
.wse7{word-spacing:-0.014409px;}
.ws1d{word-spacing:-0.014400px;}
.wsb5{word-spacing:-0.007209px;}
.ws99{word-spacing:-0.007207px;}
.wsdd{word-spacing:-0.007205px;}
.ws1f{word-spacing:-0.007200px;}
.ws10b{word-spacing:-0.006012px;}
.ws1{word-spacing:0.000000px;}
.ws104{word-spacing:0.006012px;}
.ws31{word-spacing:0.007200px;}
.wseb{word-spacing:0.007205px;}
.ws8c{word-spacing:0.007207px;}
.wsb6{word-spacing:0.007209px;}
.ws82{word-spacing:0.007217px;}
.ws14e{word-spacing:0.013248px;}
.wse8{word-spacing:0.014409px;}
.wsa5{word-spacing:0.014415px;}
.wsc4{word-spacing:0.014417px;}
.ws86{word-spacing:0.014434px;}
.ws147{word-spacing:0.019877px;}
.ws3c{word-spacing:0.021600px;}
.ws10d{word-spacing:0.021614px;}
.wscf{word-spacing:0.021626px;}
.ws79{word-spacing:0.021691px;}
.ws37{word-spacing:0.028800px;}
.wsfb{word-spacing:0.028818px;}
.wscb{word-spacing:0.028834px;}
.ws84{word-spacing:0.028867px;}
.ws74{word-spacing:0.028921px;}
.ws133{word-spacing:0.034848px;}
.wsfc{word-spacing:0.036023px;}
.ws75{word-spacing:0.036151px;}
.ws33{word-spacing:0.043200px;}
.wsf4{word-spacing:0.043228px;}
.wsdb{word-spacing:0.043251px;}
.ws7f{word-spacing:0.043381px;}
.wsdc{word-spacing:0.050460px;}
.ws22{word-spacing:0.057600px;}
.wsfa{word-spacing:0.057637px;}
.wsd4{word-spacing:0.057669px;}
.ws7a{word-spacing:0.057842px;}
.ws145{word-spacing:0.057903px;}
.ws38{word-spacing:0.064800px;}
.wsfe{word-spacing:0.064842px;}
.wsc0{word-spacing:0.064877px;}
.ws73{word-spacing:0.065072px;}
.ws3f{word-spacing:0.072000px;}
.wsc3{word-spacing:0.072086px;}
.wsba{word-spacing:0.079294px;}
.ws18{word-spacing:0.086400px;}
.wsf2{word-spacing:0.086455px;}
.wsc5{word-spacing:0.086503px;}
.ws132{word-spacing:0.088704px;}
.ws2e{word-spacing:0.093600px;}
.wsd3{word-spacing:0.093712px;}
.wsd1{word-spacing:0.100920px;}
.ws116{word-spacing:0.115274px;}
.ws106{word-spacing:0.120240px;}
.wsbb{word-spacing:0.129754px;}
.ws119{word-spacing:0.144092px;}
.ws134{word-spacing:0.148896px;}
.ws100{word-spacing:0.151297px;}
.ws105{word-spacing:0.156312px;}
.ws102{word-spacing:0.162324px;}
.ws131{word-spacing:0.167904px;}
.ws35{word-spacing:0.180000px;}
.ws107{word-spacing:0.180360px;}
.ws3{word-spacing:0.192924px;}
.ws108{word-spacing:0.198396px;}
.ws109{word-spacing:0.210420px;}
.ws13f{word-spacing:0.226728px;}
.ws13a{word-spacing:0.228096px;}
.ws10a{word-spacing:0.228456px;}
.ws14b{word-spacing:0.241263px;}
.ws13e{word-spacing:0.255672px;}
.ws13c{word-spacing:0.260496px;}
.ws14d{word-spacing:0.264960px;}
.ws146{word-spacing:0.265027px;}
.ws14a{word-spacing:0.265389px;}
.ws13d{word-spacing:0.274968px;}
.ws137{word-spacing:0.318384px;}
.ws14c{word-spacing:0.318467px;}
.ws7e{word-spacing:0.325361px;}
.ws12f{word-spacing:0.328032px;}
.ws143{word-spacing:0.337768px;}
.ws144{word-spacing:0.371545px;}
.ws138{word-spacing:0.395568px;}
.ws139{word-spacing:0.438984px;}
.ws113{word-spacing:0.439482px;}
.wsa{word-spacing:5.990400px;}
.wsb{word-spacing:6.127200px;}
.ws12{word-spacing:9.676800px;}
.ws14{word-spacing:9.741600px;}
.ws13{word-spacing:9.828000px;}
.wse{word-spacing:12.549600px;}
.wsf{word-spacing:12.585600px;}
.ws9{word-spacing:13.939200px;}
.ws8{word-spacing:13.989600px;}
.wsc{word-spacing:15.804000px;}
.wsd{word-spacing:15.832800px;}
.ws10{word-spacing:21.117600px;}
.ws11{word-spacing:21.247200px;}
.ws6{word-spacing:23.702400px;}
.ws5{word-spacing:23.796000px;}
.ws7{word-spacing:29.116800px;}
.ws51{word-spacing:41.525171px;}
.ws56{word-spacing:45.151380px;}
.wsb2{word-spacing:60.061889px;}
.ws80{word-spacing:65.796113px;}
.ws11b{word-spacing:112.364928px;}
.ws70{word-spacing:114.012000px;}
.ws142{word-spacing:167.968751px;}
.ws149{word-spacing:167.986224px;}
.wsae{word-spacing:172.339169px;}
.wsd8{word-spacing:174.856127px;}
.ws71{word-spacing:191.772000px;}
.ws88{word-spacing:197.901888px;}
.ws85{word-spacing:197.915169px;}
.ws7b{word-spacing:197.927820px;}
.wsb1{word-spacing:197.937925px;}
.ws72{word-spacing:197.949511px;}
.ws5a{word-spacing:242.921707px;}
.ws63{word-spacing:266.934538px;}
.ws6b{word-spacing:301.728734px;}
.ws4b{word-spacing:363.831772px;}
.ws45{word-spacing:420.912000px;}
.ws69{word-spacing:424.505466px;}
.ws59{word-spacing:482.844608px;}
.ws4f{word-spacing:487.409443px;}
.ws58{word-spacing:521.471304px;}
.ws68{word-spacing:522.058195px;}
.ws6e{word-spacing:525.374086px;}
.wsa9{word-spacing:527.957129px;}
.ws57{word-spacing:540.613368px;}
.ws4e{word-spacing:560.560507px;}
.ws5b{word-spacing:570.239203px;}
.ws4d{word-spacing:586.876081px;}
.ws67{word-spacing:601.020101px;}
.ws44{word-spacing:619.181983px;}
.ws66{word-spacing:624.283547px;}
.ws5f{word-spacing:644.264731px;}
.ws6c{word-spacing:656.429849px;}
.ws5c{word-spacing:691.605472px;}
.wsa8{word-spacing:723.224275px;}
.ws5e{word-spacing:842.353546px;}
.wsaa{word-spacing:848.268259px;}
.wsab{word-spacing:860.888849px;}
.ws5d{word-spacing:936.870220px;}
.ws4a{word-spacing:940.811519px;}
.ws4c{word-spacing:969.498245px;}
.ws46{word-spacing:978.998347px;}
.ws49{word-spacing:1027.833972px;}
.ws48{word-spacing:1047.424550px;}
.ws62{word-spacing:1196.988400px;}
.ws117{word-spacing:1659.591422px;}
._8c{margin-left:-1660.239837px;}
._80{margin-left:-1163.897327px;}
._24{margin-left:-704.247344px;}
._85{margin-left:-605.262687px;}
._44{margin-left:-601.619660px;}
._28{margin-left:-558.435271px;}
._41{margin-left:-553.984423px;}
._7d{margin-left:-532.566087px;}
._54{margin-left:-500.507339px;}
._53{margin-left:-498.728197px;}
._57{margin-left:-475.983298px;}
._56{margin-left:-474.170260px;}
._79{margin-left:-464.016295px;}
._43{margin-left:-445.713274px;}
._33{margin-left:-438.592384px;}
._3d{margin-left:-407.459224px;}
._27{margin-left:-395.885107px;}
._6c{margin-left:-392.604148px;}
._62{margin-left:-374.820477px;}
._5f{margin-left:-372.760331px;}
._65{margin-left:-363.426607px;}
._4d{margin-left:-360.526711px;}
._3f{margin-left:-355.935535px;}
._72{margin-left:-346.217935px;}
._6b{margin-left:-343.006438px;}
._40{margin-left:-339.048083px;}
._6f{margin-left:-334.248210px;}
._31{margin-left:-327.306989px;}
._60{margin-left:-324.296997px;}
._e{margin-left:-321.264000px;}
._74{margin-left:-307.662194px;}
._6a{margin-left:-297.595198px;}
._7b{margin-left:-295.189596px;}
._81{margin-left:-290.265551px;}
._35{margin-left:-288.858029px;}
._c{margin-left:-279.754007px;}
._3{margin-left:-277.560000px;}
._50{margin-left:-271.668244px;}
._2f{margin-left:-270.344748px;}
._d{margin-left:-266.904000px;}
._12{margin-left:-256.752000px;}
._52{margin-left:-255.213720px;}
._66{margin-left:-253.046227px;}
._b{margin-left:-249.220879px;}
._58{margin-left:-245.846282px;}
._a{margin-left:-240.233136px;}
._20{margin-left:-235.704124px;}
._26{margin-left:-233.905954px;}
._1d{margin-left:-231.601536px;}
._3c{margin-left:-225.994006px;}
._1{margin-left:-222.480000px;}
._61{margin-left:-219.646816px;}
._5e{margin-left:-217.240315px;}
._63{margin-left:-215.934902px;}
._10{margin-left:-213.552000px;}
._5{margin-left:-210.312000px;}
._76{margin-left:-208.904648px;}
._23{margin-left:-206.160448px;}
._48{margin-left:-202.577260px;}
._18{margin-left:-199.210886px;}
._67{margin-left:-197.930285px;}
._42{margin-left:-196.226423px;}
._4f{margin-left:-192.928412px;}
._34{margin-left:-191.890570px;}
._6e{margin-left:-190.262750px;}
._17{margin-left:-188.805600px;}
._7{margin-left:-186.696000px;}
._3a{margin-left:-184.564169px;}
._5a{margin-left:-178.816586px;}
._37{margin-left:-177.267480px;}
._3b{margin-left:-175.400734px;}
._6d{margin-left:-173.266858px;}
._82{margin-left:-172.041883px;}
._73{margin-left:-170.199514px;}
._25{margin-left:-168.308712px;}
._14{margin-left:-165.391274px;}
._7e{margin-left:-162.354278px;}
._86{margin-left:-160.663026px;}
._1c{margin-left:-157.841482px;}
._49{margin-left:-156.171363px;}
._78{margin-left:-153.655619px;}
._4{margin-left:-151.920000px;}
._11{margin-left:-149.616000px;}
._f{margin-left:-147.456000px;}
._30{margin-left:-145.544731px;}
._5c{margin-left:-143.500130px;}
._47{margin-left:-141.362065px;}
._45{margin-left:-140.227772px;}
._3e{margin-left:-138.465993px;}
._6{margin-left:-136.296000px;}
._87{margin-left:-134.240996px;}
._4a{margin-left:-133.223236px;}
._69{margin-left:-128.133295px;}
._64{margin-left:-126.888188px;}
._51{margin-left:-124.678282px;}
._8{margin-left:-122.616000px;}
._5d{margin-left:-121.012056px;}
._2e{margin-left:-119.773670px;}
._7c{margin-left:-117.534561px;}
._13{margin-left:-114.992714px;}
._2d{margin-left:-112.738027px;}
._16{margin-left:-110.304427px;}
._71{margin-left:-107.800303px;}
._88{margin-left:-102.089465px;}
._22{margin-left:-99.762472px;}
._21{margin-left:-94.657632px;}
._77{margin-left:-93.592032px;}
._46{margin-left:-92.018323px;}
._2c{margin-left:-89.498321px;}
._68{margin-left:-87.498322px;}
._38{margin-left:-85.466002px;}
._2a{margin-left:-84.075690px;}
._1a{margin-left:-80.053574px;}
._59{margin-left:-78.128650px;}
._1e{margin-left:-76.612916px;}
._4e{margin-left:-75.196110px;}
._32{margin-left:-73.471289px;}
._1f{margin-left:-71.135605px;}
._36{margin-left:-69.941986px;}
._1b{margin-left:-68.557411px;}
._2b{margin-left:-66.807418px;}
._5b{margin-left:-60.597180px;}
._19{margin-left:-55.215149px;}
._75{margin-left:-53.955587px;}
._2{margin-left:-52.920000px;}
._7a{margin-left:-50.207461px;}
._7f{margin-left:-48.743030px;}
._39{margin-left:-45.816826px;}
._70{margin-left:-37.629201px;}
._8a{margin-left:-17.291088px;}
._55{margin-left:-11.907819px;}
._89{margin-left:-4.087445px;}
._aa{margin-left:-2.168575px;}
._0{margin-left:-1.080000px;}
._8b{width:1.080000px;}
._ab{width:2.969803px;}
._a9{width:4.037939px;}
._29{width:6.120000px;}
._ac{width:7.650514px;}
._ad{width:8.667406px;}
._91{width:41.280408px;}
._92{width:82.086480px;}
._15{width:84.215990px;}
._84{width:96.018286px;}
._9a{width:113.537160px;}
._99{width:119.664000px;}
._a6{width:124.539120px;}
._98{width:126.449640px;}
._4b{width:132.140707px;}
._a1{width:134.724600px;}
._83{width:137.900135px;}
._a0{width:141.799680px;}
._a8{width:143.183160px;}
._96{width:145.463040px;}
._9f{width:148.361760px;}
._95{width:151.985160px;}
._94{width:159.166080px;}
._af{width:177.663154px;}
._ae{width:189.589450px;}
._97{width:215.546184px;}
._a2{width:220.948344px;}
._a5{width:222.740280px;}
._93{width:231.752664px;}
._a4{width:233.544600px;}
._a3{width:286.907400px;}
._9e{width:297.711720px;}
._9d{width:303.311520px;}
._9c{width:311.019480px;}
._8e{width:365.042993px;}
._9b{width:383.342544px;}
._a7{width:385.134480px;}
._4c{width:407.557260px;}
._90{width:477.334200px;}
._8d{width:891.485270px;}
._9{width:895.464000px;}
._8f{width:1002.998378px;}
.fc0{color:rgb(0,0,0);}
.fs26{font-size:30.240000px;}
.fs24{font-size:30.247200px;}
.fs1d{font-size:31.503000px;}
.fs20{font-size:31.678949px;}
.fs1f{font-size:31.680000px;}
.fs27{font-size:33.120000px;}
.fs25{font-size:33.128400px;}
.fs21{font-size:34.560000px;}
.fs19{font-size:38.880000px;}
.fs22{font-size:41.769600px;}
.fs15{font-size:41.869800px;}
.fs4{font-size:41.956800px;}
.fsa{font-size:41.975400px;}
.fs3{font-size:41.998800px;}
.fsf{font-size:42.043800px;}
.fs13{font-size:42.049800px;}
.fs9{font-size:42.097800px;}
.fs6{font-size:42.176400px;}
.fs2{font-size:47.880000px;}
.fs1e{font-size:48.240000px;}
.fs23{font-size:48.252600px;}
.fs1c{font-size:49.506000px;}
.fs1a{font-size:60.120000px;}
.fs1b{font-size:65.880000px;}
.fs5{font-size:71.926800px;}
.fsb{font-size:71.958000px;}
.fs0{font-size:72.000000px;}
.fs18{font-size:72.046200px;}
.fse{font-size:72.074400px;}
.fs12{font-size:72.085800px;}
.fs8{font-size:72.168600px;}
.fs7{font-size:72.302400px;}
.fs16{font-size:75.859968px;}
.fsc{font-size:76.050281px;}
.fs11{font-size:76.094487px;}
.fs17{font-size:76.143249px;}
.fs10{font-size:76.173233px;}
.fs14{font-size:76.185184px;}
.fsd{font-size:76.414400px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.960450px;}
.y1e5{bottom:57.423666px;}
.y33{bottom:57.450450px;}
.ye9{bottom:118.964159px;}
.yb1{bottom:121.843014px;}
.y127{bottom:124.066093px;}
.y168{bottom:126.201897px;}
.y139{bottom:144.734421px;}
.y101{bottom:144.811664px;}
.y32{bottom:144.930450px;}
.y3e{bottom:144.930600px;}
.yd5{bottom:144.954097px;}
.y69{bottom:158.698287px;}
.ye8{bottom:160.372713px;}
.yb0{bottom:163.238285px;}
.y126{bottom:165.474646px;}
.y86{bottom:167.419939px;}
.y83{bottom:167.430450px;}
.y167{bottom:167.610450px;}
.y80{bottom:171.890922px;}
.y89{bottom:171.930450px;}
.y138{bottom:186.142975px;}
.y100{bottom:186.220218px;}
.y31{bottom:186.330450px;}
.y3d{bottom:186.330600px;}
.yd4{bottom:186.349367px;}
.yc9{bottom:186.368435px;}
.y87{bottom:194.864029px;}
.y84{bottom:194.874540px;}
.y81{bottom:199.333250px;}
.y8b{bottom:199.372778px;}
.y8d{bottom:199.380450px;}
.y68{bottom:200.105030px;}
.ye7{bottom:201.781266px;}
.yaf{bottom:204.633555px;}
.y125{bottom:206.883200px;}
.y166{bottom:207.570450px;}
.y88{bottom:222.308120px;}
.y85{bottom:222.318631px;}
.y8a{bottom:222.870000px;}
.y82{bottom:226.775578px;}
.y8c{bottom:226.815106px;}
.y137{bottom:227.551528px;}
.yff{bottom:227.628771px;}
.y30{bottom:227.730450px;}
.y3c{bottom:227.730600px;}
.yd3{bottom:227.744638px;}
.yc8{bottom:227.763705px;}
.ye6{bottom:243.189820px;}
.y67{bottom:244.020000px;}
.yae{bottom:246.028826px;}
.y165{bottom:246.270450px;}
.y66{bottom:247.980450px;}
.y124{bottom:248.291753px;}
.y136{bottom:268.960082px;}
.yfe{bottom:269.037324px;}
.y7f{bottom:269.083250px;}
.y2f{bottom:269.130450px;}
.y3b{bottom:269.130600px;}
.yd2{bottom:269.139909px;}
.yc7{bottom:269.158976px;}
.ye5{bottom:284.598373px;}
.y164{bottom:284.970450px;}
.yad{bottom:287.424097px;}
.y123{bottom:289.700306px;}
.y65{bottom:290.720060px;}
.y135{bottom:310.368635px;}
.yfd{bottom:310.445878px;}
.y7e{bottom:310.489993px;}
.y2e{bottom:310.530450px;}
.y3a{bottom:310.530600px;}
.yd1{bottom:310.535179px;}
.yc6{bottom:310.554247px;}
.y163{bottom:323.670450px;}
.ye4{bottom:326.006927px;}
.yac{bottom:328.819367px;}
.y122{bottom:331.108860px;}
.y64{bottom:332.126795px;}
.y134{bottom:351.777189px;}
.yfc{bottom:351.854431px;}
.y7d{bottom:351.896736px;}
.y2d{bottom:351.930450px;}
.y39{bottom:351.930600px;}
.yc5{bottom:351.949517px;}
.yd0{bottom:352.029072px;}
.y162{bottom:362.370450px;}
.ye3{bottom:367.415480px;}
.yab{bottom:370.214638px;}
.y121{bottom:372.517413px;}
.y61{bottom:375.420450px;}
.y62{bottom:375.960000px;}
.y63{bottom:379.920450px;}
.y133{bottom:393.185742px;}
.yfb{bottom:393.262985px;}
.y7c{bottom:393.303479px;}
.y2c{bottom:393.330450px;}
.y38{bottom:393.330600px;}
.yc4{bottom:393.344788px;}
.ycf{bottom:393.424342px;}
.y161{bottom:401.070450px;}
.ye2{bottom:408.824034px;}
.yaa{bottom:411.609909px;}
.y120{bottom:413.925967px;}
.y60{bottom:422.674999px;}
.y132{bottom:434.594295px;}
.yfa{bottom:434.671538px;}
.y7b{bottom:434.710222px;}
.y2b{bottom:434.730450px;}
.y37{bottom:434.730600px;}
.yc3{bottom:434.740059px;}
.yce{bottom:434.819613px;}
.y160{bottom:439.770600px;}
.ye1{bottom:450.232587px;}
.ya9{bottom:453.005179px;}
.y11f{bottom:455.334520px;}
.y5d{bottom:463.800450px;}
.y5b{bottom:468.308842px;}
.y131{bottom:476.002849px;}
.yf9{bottom:476.080092px;}
.y7a{bottom:476.116964px;}
.ycd{bottom:476.124776px;}
.y2a{bottom:476.130450px;}
.y36{bottom:476.130600px;}
.yc2{bottom:476.135329px;}
.y15f{bottom:478.470450px;}
.y5f{bottom:482.430600px;}
.y5a{bottom:482.439110px;}
.y5e{bottom:489.814704px;}
.ye0{bottom:491.641140px;}
.y5c{bottom:494.321660px;}
.ya8{bottom:494.430670px;}
.y11e{bottom:496.743074px;}
.y15e{bottom:517.170450px;}
.y130{bottom:517.411402px;}
.y148{bottom:517.429414px;}
.yf8{bottom:517.488645px;}
.y79{bottom:517.523707px;}
.y29{bottom:517.530450px;}
.yc1{bottom:517.530600px;}
.ycc{bottom:517.610154px;}
.y1c0{bottom:524.525752px;}
.ydf{bottom:533.049694px;}
.ya7{bottom:535.825941px;}
.y57{bottom:537.150834px;}
.y11d{bottom:538.151627px;}
.y58{bottom:541.653447px;}
.y56{bottom:551.190450px;}
.y54{bottom:555.780450px;}
.y15d{bottom:555.870450px;}
.y35{bottom:558.750450px;}
.y12f{bottom:558.819956px;}
.y147{bottom:558.837967px;}
.yc0{bottom:558.840450px;}
.y78{bottom:558.863208px;}
.yf7{bottom:558.897199px;}
.y28{bottom:558.930450px;}
.ycb{bottom:559.005425px;}
.y55{bottom:563.788217px;}
.y1bf{bottom:565.934305px;}
.y59{bottom:567.128962px;}
.yde{bottom:574.458247px;}
.ya6{bottom:577.221211px;}
.y11c{bottom:579.560181px;}
.y15c{bottom:594.570450px;}
.ybf{bottom:600.150450px;}
.y12e{bottom:600.228509px;}
.y146{bottom:600.246521px;}
.y77{bottom:600.269951px;}
.yf6{bottom:600.305752px;}
.y27{bottom:600.330450px;}
.yca{bottom:600.400696px;}
.y1be{bottom:607.234790px;}
.y17b{bottom:607.244306px;}
.y53{bottom:608.977326px;}
.y1a{bottom:614.100450px;}
.ydd{bottom:615.866801px;}
.ya5{bottom:618.616482px;}
.y11b{bottom:620.860665px;}
.y10e{bottom:623.640450px;}
.y15b{bottom:633.180450px;}
.y19{bottom:634.800450px;}
.y12d{bottom:641.528993px;}
.y145{bottom:641.547005px;}
.y76{bottom:641.586601px;}
.yf5{bottom:641.606236px;}
.y26{bottom:641.640450px;}
.ybe{bottom:641.705859px;}
.y19a{bottom:648.643343px;}
.y17a{bottom:648.652859px;}
.y52{bottom:650.368564px;}
.y10d{bottom:651.372690px;}
.y18{bottom:655.500450px;}
.ydc{bottom:657.275354px;}
.ya4{bottom:660.011753px;}
.y11a{bottom:662.269218px;}
.y15a{bottom:671.880450px;}
.y17{bottom:676.200450px;}
.y12c{bottom:682.937547px;}
.y144{bottom:682.955558px;}
.y75{bottom:682.993343px;}
.yf4{bottom:683.014790px;}
.y25{bottom:683.040450px;}
.ybd{bottom:683.101130px;}
.y10c{bottom:685.836480px;}
.y199{bottom:690.051897px;}
.y179{bottom:690.061412px;}
.y51{bottom:693.660450px;}
.y16{bottom:696.900450px;}
.y4f{bottom:698.160450px;}
.ydb{bottom:698.683908px;}
.ya3{bottom:701.410659px;}
.y119{bottom:703.677772px;}
.y50{bottom:706.174066px;}
.y159{bottom:710.580450px;}
.y15{bottom:717.600450px;}
.y1e4{bottom:718.123343px;}
.y12b{bottom:724.346100px;}
.y143{bottom:724.364112px;}
.y74{bottom:724.400086px;}
.yf3{bottom:724.423343px;}
.y24{bottom:724.440450px;}
.ybc{bottom:724.496400px;}
.y10b{bottom:727.140450px;}
.y198{bottom:731.460450px;}
.y178{bottom:731.469966px;}
.y10a{bottom:737.575950px;}
.y14{bottom:738.300450px;}
.yda{bottom:740.092461px;}
.y4e{bottom:742.454202px;}
.ya2{bottom:742.715822px;}
.y118{bottom:745.086325px;}
.y158{bottom:749.280450px;}
.y13{bottom:759.000450px;}
.y1e3{bottom:759.531897px;}
.y109{bottom:761.610450px;}
.y12a{bottom:765.754654px;}
.y142{bottom:765.772665px;}
.y73{bottom:765.806829px;}
.yf2{bottom:765.831897px;}
.y23{bottom:765.840450px;}
.ybb{bottom:765.891671px;}
.y18a{bottom:768.260024px;}
.y187{bottom:768.265624px;}
.y184{bottom:768.271224px;}
.y18f{bottom:768.276824px;}
.y18b{bottom:768.797634px;}
.y188{bottom:768.803234px;}
.y185{bottom:768.808834px;}
.y18d{bottom:768.814434px;}
.y190{bottom:768.820034px;}
.y18c{bottom:769.693650px;}
.y189{bottom:769.699250px;}
.y186{bottom:769.704850px;}
.y183{bottom:769.710450px;}
.y18e{bottom:769.716050px;}
.y1aa{bottom:770.790600px;}
.y177{bottom:772.770450px;}
.y1bc{bottom:773.220450px;}
.y12{bottom:779.700450px;}
.yd9{bottom:781.501015px;}
.y1a8{bottom:781.767570px;}
.y4d{bottom:783.847326px;}
.y1ba{bottom:784.197570px;}
.ya1{bottom:784.201200px;}
.y1a9{bottom:786.083970px;}
.y117{bottom:786.494879px;}
.y157{bottom:787.980450px;}
.y1bb{bottom:788.513970px;}
.y108{bottom:789.336480px;}
.y1a7{bottom:792.570450px;}
.y1b9{bottom:795.000450px;}
.y17d{bottom:798.060450px;}
.y1d1{bottom:799.770450px;}
.y11{bottom:800.400450px;}
.y19c{bottom:800.580450px;}
.y1e2{bottom:800.940450px;}
.y1ae{bottom:803.010450px;}
.y129{bottom:807.163207px;}
.y141{bottom:807.181219px;}
.y72{bottom:807.213572px;}
.y22{bottom:807.240450px;}
.yba{bottom:807.286942px;}
.y10{bottom:821.100450px;}
.yd8{bottom:822.729453px;}
.y19d{bottom:823.619730px;}
.y4c{bottom:825.247326px;}
.y1af{bottom:825.867570px;}
.y156{bottom:826.680600px;}
.y9f{bottom:827.401894px;}
.y116{bottom:827.903432px;}
.y107{bottom:830.640450px;}
.ya0{bottom:831.900450px;}
.y9d{bottom:831.984572px;}
.yd6{bottom:836.760450px;}
.y1cf{bottom:839.730450px;}
.y16a{bottom:840.720450px;}
.y1e0{bottom:840.900450px;}
.yf{bottom:841.800450px;}
.y19e{bottom:846.841170px;}
.yd7{bottom:848.017669px;}
.yf1{bottom:848.460450px;}
.y128{bottom:848.571761px;}
.y140{bottom:848.589772px;}
.y71{bottom:848.620315px;}
.y17e{bottom:848.637570px;}
.y21{bottom:848.640450px;}
.yb9{bottom:848.682212px;}
.y1b0{bottom:848.906850px;}
.y9e{bottom:849.090450px;}
.y1ce{bottom:854.592874px;}
.y1df{bottom:855.750450px;}
.y1ab{bottom:857.730450px;}
.y106{bottom:858.366660px;}
.y1bd{bottom:859.080450px;}
.ye{bottom:862.500450px;}
.y155{bottom:865.380450px;}
.y1c3{bottom:865.920450px;}
.y4b{bottom:866.644612px;}
.y1d4{bottom:867.090450px;}
.y115{bottom:869.311985px;}
.y19f{bottom:869.880450px;}
.y1b1{bottom:871.763970px;}
.y197{bottom:882.480450px;}
.yd{bottom:883.200450px;}
.y14e{bottom:885.540600px;}
.y1c4{bottom:887.161546px;}
.y94{bottom:887.790600px;}
.y99{bottom:887.801112px;}
.y1d5{bottom:888.152610px;}
.yf0{bottom:889.980314px;}
.y13f{bottom:889.998326px;}
.y70{bottom:890.027057px;}
.y20{bottom:890.040450px;}
.yb8{bottom:890.077483px;}
.y16b{bottom:890.219539px;}
.y92{bottom:892.290600px;}
.y1a0{bottom:893.101890px;}
.y1b2{bottom:894.803250px;}
.y196{bottom:896.340450px;}
.y17f{bottom:899.214690px;}
.y105{bottom:899.580450px;}
.yc{bottom:903.720450px;}
.y154{bottom:904.080450px;}
.y1c5{bottom:908.402642px;}
.y49{bottom:908.490450px;}
.y1d6{bottom:909.388650px;}
.y95{bottom:909.477784px;}
.y195{bottom:910.200450px;}
.y114{bottom:910.720539px;}
.y1a1{bottom:916.141170px;}
.y1b3{bottom:917.660370px;}
.y176{bottom:920.640450px;}
.y4a{bottom:921.090649px;}
.y194{bottom:924.060450px;}
.yb{bottom:924.420450px;}
.y9c{bottom:927.660450px;}
.y14d{bottom:927.750450px;}
.y1c6{bottom:929.825222px;}
.y96{bottom:930.366022px;}
.y1d7{bottom:930.450810px;}
.y1d0{bottom:930.630450px;}
.y1e1{bottom:931.080450px;}
.y104{bottom:931.260450px;}
.yef{bottom:931.388868px;}
.y13e{bottom:931.406879px;}
.y113{bottom:931.415810px;}
.y6f{bottom:931.433800px;}
.y1f{bottom:931.440450px;}
.yb7{bottom:931.472754px;}
.y9a{bottom:934.857265px;}
.y175{bottom:935.220450px;}
.y193{bottom:937.920450px;}
.y1a2{bottom:939.362610px;}
.y16c{bottom:939.718628px;}
.y1b4{bottom:940.517490px;}
.y153{bottom:942.780450px;}
.ya{bottom:945.300450px;}
.y98{bottom:946.208285px;}
.y180{bottom:949.791810px;}
.y174{bottom:949.890450px;}
.y93{bottom:950.698119px;}
.y1c7{bottom:951.066318px;}
.y1d8{bottom:951.512970px;}
.y192{bottom:951.780450px;}
.y48{bottom:957.270450px;}
.y97{bottom:960.337017px;}
.y1a3{bottom:962.401890px;}
.y1b5{bottom:963.556770px;}
.y173{bottom:964.470450px;}
.y9b{bottom:964.826936px;}
.y191{bottom:965.640450px;}
.y9{bottom:965.910450px;}
.y14c{bottom:969.870450px;}
.y1c8{bottom:972.307414px;}
.y1d9{bottom:972.575130px;}
.y103{bottom:972.660450px;}
.y6e{bottom:972.750450px;}
.yee{bottom:972.797421px;}
.y13d{bottom:972.815433px;}
.y112{bottom:972.824363px;}
.y1e{bottom:972.840450px;}
.yb6{bottom:972.868024px;}
.y172{bottom:979.140450px;}
.y152{bottom:981.480450px;}
.y1a4{bottom:985.623330px;}
.y1b6{bottom:986.413890px;}
.y8{bottom:986.610450px;}
.y16d{bottom:990.391203px;}
.y1c9{bottom:993.639252px;}
.y171{bottom:993.720450px;}
.y1da{bottom:993.811170px;}
.y181{bottom:1000.368930px;}
.y46{bottom:1000.556834px;}
.y45{bottom:1000.560450px;}
.y91{bottom:1006.415030px;}
.y7{bottom:1007.130450px;}
.y170{bottom:1008.390450px;}
.y1a5{bottom:1008.662610px;}
.y1b7{bottom:1009.453170px;}
.y14b{bottom:1011.990450px;}
.y47{bottom:1013.070450px;}
.y6d{bottom:1014.060450px;}
.yed{bottom:1014.205974px;}
.y13c{bottom:1014.223986px;}
.y111{bottom:1014.232917px;}
.y1d{bottom:1014.240450px;}
.yb5{bottom:1014.263295px;}
.y1db{bottom:1014.873330px;}
.y1ca{bottom:1014.880348px;}
.y151{bottom:1020.180450px;}
.y6{bottom:1028.464950px;}
.y1a6{bottom:1031.884050px;}
.y1b8{bottom:1032.310290px;}
.y1dc{bottom:1035.935490px;}
.y1cb{bottom:1036.302928px;}
.y16e{bottom:1039.890292px;}
.y44{bottom:1049.340450px;}
.y8f{bottom:1050.330000px;}
.y182{bottom:1050.946050px;}
.y5{bottom:1052.580450px;}
.y14a{bottom:1054.200450px;}
.y8e{bottom:1054.275439px;}
.y90{bottom:1054.290450px;}
.yec{bottom:1055.614528px;}
.y6c{bottom:1055.626834px;}
.y13b{bottom:1055.632539px;}
.y1c{bottom:1055.640450px;}
.y110{bottom:1055.641470px;}
.yb4{bottom:1055.658565px;}
.y1dd{bottom:1057.171530px;}
.y1cc{bottom:1057.544024px;}
.y150{bottom:1058.880450px;}
.y1ad{bottom:1070.315670px;}
.y19b{bottom:1070.405670px;}
.y4{bottom:1076.160450px;}
.y1de{bottom:1078.233690px;}
.y1cd{bottom:1078.785120px;}
.y1ac{bottom:1086.150450px;}
.y17c{bottom:1086.240450px;}
.y16f{bottom:1089.389381px;}
.y43{bottom:1090.740450px;}
.y149{bottom:1096.325996px;}
.y3{bottom:1096.860450px;}
.yeb{bottom:1097.023081px;}
.y13a{bottom:1097.028447px;}
.y6b{bottom:1097.033577px;}
.y1b{bottom:1097.040450px;}
.y10f{bottom:1097.050024px;}
.yb3{bottom:1097.053836px;}
.y14f{bottom:1097.580450px;}
.y1d3{bottom:1112.251534px;}
.y1c2{bottom:1112.611534px;}
.y2{bottom:1117.560450px;}
.y169{bottom:1127.730450px;}
.y1d2{bottom:1128.090450px;}
.y1c1{bottom:1128.360450px;}
.y42{bottom:1132.590450px;}
.y40{bottom:1133.130000px;}
.y3f{bottom:1137.090450px;}
.y1{bottom:1138.260450px;}
.y102{bottom:1138.431635px;}
.yea{bottom:1138.437000px;}
.y6a{bottom:1138.438500px;}
.y34{bottom:1138.440450px;}
.yb2{bottom:1138.441950px;}
.h2a{height:21.510000px;}
.h6{height:21.960000px;}
.h1f{height:22.050000px;}
.h41{height:27.014766px;}
.h36{height:29.092151px;}
.ha{height:29.152601px;}
.h1b{height:29.165525px;}
.h29{height:29.192521px;}
.h28{height:29.213050px;}
.h2f{height:29.217219px;}
.h15{height:29.250571px;}
.hd{height:29.305184px;}
.h51{height:31.539375px;}
.h4f{height:31.546884px;}
.h47{height:32.856645px;}
.h4b{height:33.040154px;}
.h49{height:33.041250px;}
.h4a{height:33.293586px;}
.h52{height:34.543125px;}
.h50{height:34.551886px;}
.h4c{height:36.045000px;}
.h37{height:41.072475px;}
.h2b{height:41.243161px;}
.h32{height:41.249047px;}
.h17{height:41.296133px;}
.h42{height:41.772832px;}
.h44{height:44.649141px;}
.h45{height:46.170300px;}
.h1{height:48.796875px;}
.h12{height:49.976483px;}
.h7{height:49.992188px;}
.h1c{height:49.998161px;}
.h3e{height:50.024266px;}
.h3{height:50.027344px;}
.h23{height:50.043846px;}
.h31{height:50.051762px;}
.h3f{height:50.059445px;}
.h22{height:50.079039px;}
.h26{height:50.086318px;}
.h2e{height:50.086960px;}
.h20{height:50.109253px;}
.h43{height:50.110030px;}
.h3a{height:50.115587px;}
.h14{height:50.144491px;}
.h10{height:50.237459px;}
.h13{height:50.245004px;}
.h48{height:50.312812px;}
.h4e{height:50.325954px;}
.h4d{height:50.685954px;}
.h46{height:51.633211px;}
.h38{height:52.672302px;}
.h1d{height:52.804443px;}
.h2c{height:52.835137px;}
.h3d{height:52.868994px;}
.h25{height:52.889813px;}
.h34{height:52.898111px;}
.h21{height:53.057264px;}
.h2{height:56.848359px;}
.h3b{height:65.994297px;}
.h3c{height:66.240052px;}
.h39{height:66.267903px;}
.h5{height:66.388184px;}
.h27{height:66.657152px;}
.h30{height:68.009712px;}
.hb{height:68.041806px;}
.he{height:68.237459px;}
.h16{height:68.469253px;}
.h19{height:70.553665px;}
.h1a{height:70.587706px;}
.h40{height:70.674226px;}
.h24{height:70.701889px;}
.h33{height:70.713072px;}
.h35{height:70.736585px;}
.h2d{height:70.761933px;}
.h18{height:70.794296px;}
.hf{height:70.908901px;}
.h11{height:70.925548px;}
.h4{height:75.093750px;}
.h9{height:88.557100px;}
.h8{height:88.628906px;}
.h1e{height:88.794296px;}
.hc{height:88.925548px;}
.h0{height:1263.000000px;}
.w4{width:9.540000px;}
.w2{width:9.900000px;}
.w5{width:11.430000px;}
.w3{width:11.520000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2b{left:144.630000px;}
.x9{left:151.560000px;}
.x4f{left:159.210000px;}
.x4{left:170.100000px;}
.x54{left:179.640000px;}
.x6{left:185.580000px;}
.x8{left:197.100000px;}
.x5a{left:200.522947px;}
.x5e{left:201.963600px;}
.x5f{left:203.580000px;}
.x59{left:205.020000px;}
.x5d{left:206.280000px;}
.x56{left:210.420000px;}
.x85{left:212.940000px;}
.x60{left:218.157060px;}
.x57{left:220.050000px;}
.x75{left:222.840000px;}
.x7{left:224.100000px;}
.x86{left:225.180000px;}
.x61{left:234.710956px;}
.x83{left:237.060000px;}
.x4e{left:247.230000px;}
.x76{left:250.195680px;}
.x62{left:251.623258px;}
.x4c{left:254.610000px;}
.x4d{left:257.760702px;}
.x63{left:266.379521px;}
.x58{left:273.600000px;}
.x77{left:277.551360px;}
.x87{left:279.717120px;}
.x64{left:282.933417px;}
.x2{left:293.580000px;}
.x55{left:297.090000px;}
.x5c{left:298.260000px;}
.x65{left:299.845719px;}
.x78{left:304.914960px;}
.x88{left:306.898560px;}
.x3{left:311.320620px;}
.x66{left:314.422779px;}
.x4b{left:331.919937px;}
.x89{left:334.254240px;}
.x37{left:341.190000px;}
.x1c{left:343.973874px;}
.x44{left:348.487286px;}
.x48{left:352.084525px;}
.x79{left:359.626320px;}
.x1a{left:361.350974px;}
.x46{left:362.691576px;}
.x3e{left:366.120000px;}
.x27{left:367.650000px;}
.x33{left:368.820000px;}
.x67{left:379.204736px;}
.x43{left:382.862997px;}
.x39{left:383.940000px;}
.x13{left:385.380615px;}
.x7a{left:386.982000px;}
.x10{left:389.347042px;}
.x22{left:392.400000px;}
.x68{left:396.117038px;}
.x49{left:398.442278px;}
.x26{left:401.760000px;}
.x69{left:410.699699px;}
.x3d{left:413.370000px;}
.x29{left:416.880000px;}
.x16{left:421.653058px;}
.x36{left:423.803560px;}
.x6a{left:427.253594px;}
.x21{left:432.630000px;}
.x5{left:434.160000px;}
.x35{left:438.749998px;}
.x2e{left:440.039180px;}
.x7b{left:441.701280px;}
.x32{left:442.786858px;}
.x3f{left:444.870000px;}
.x23{left:447.750000px;}
.x12{left:449.552008px;}
.x2d{left:455.246878px;}
.x84{left:456.648480px;}
.x6b{left:458.748556px;}
.x34{left:460.350000px;}
.x31{left:464.386861px;}
.x53{left:465.652255px;}
.x1{left:467.730000px;}
.x2f{left:469.800000px;}
.x2c{left:476.040343px;}
.x38{left:478.170000px;}
.xf{left:486.812688px;}
.x15{left:491.133518px;}
.x6c{left:492.399557px;}
.x52{left:493.462088px;}
.x30{left:497.244090px;}
.xd{left:501.030000px;}
.x25{left:502.650000px;}
.x3a{left:504.270000px;}
.x51{left:505.800000px;}
.x6d{left:506.982218px;}
.x11{left:511.380000px;}
.x28{left:515.610000px;}
.x50{left:518.940000px;}
.xe{left:523.084342px;}
.x8a{left:524.872800px;}
.x3c{left:529.470000px;}
.x24{left:531.270000px;}
.x6e{left:540.454015px;}
.x19{left:541.798346px;}
.x2a{left:547.830000px;}
.x7c{left:551.409120px;}
.x6f{left:555.031076px;}
.x1f{left:556.470000px;}
.x14{left:557.820000px;}
.x18{left:565.825666px;}
.x70{left:571.590572px;}
.xc{left:575.010000px;}
.x7d{left:578.764800px;}
.x71{left:588.508474px;}
.x4a{left:595.890000px;}
.x1e{left:603.270000px;}
.x3b{left:607.051050px;}
.x40{left:612.270000px;}
.x1d{left:615.506238px;}
.x72{left:619.824233px;}
.x1b{left:623.970000px;}
.xb{left:630.360000px;}
.x47{left:633.240000px;}
.x45{left:637.295825px;}
.x42{left:642.510000px;}
.xa{left:644.670000px;}
.x41{left:649.530000px;}
.x73{left:651.319195px;}
.x17{left:657.360000px;}
.x7e{left:660.839760px;}
.x20{left:662.400000px;}
.x74{left:667.878691px;}
.x7f{left:688.195440px;}
.x80{left:715.559040px;}
.x5b{left:723.600000px;}
.x81{left:742.914720px;}
.x82{left:770.278320px;}
@media print{
.v8{vertical-align:-49.887991pt;}
.v7{vertical-align:-40.606866pt;}
.v9{vertical-align:-24.000000pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.000000pt;}
.v3{vertical-align:16.000000pt;}
.v6{vertical-align:28.480000pt;}
.v1{vertical-align:29.440000pt;}
.ls8e{letter-spacing:-2.677055pt;}
.ls8d{letter-spacing:-1.842575pt;}
.ls32{letter-spacing:-0.353478pt;}
.ls95{letter-spacing:-0.301312pt;}
.ls9b{letter-spacing:-0.292864pt;}
.ls9e{letter-spacing:-0.275968pt;}
.lsac{letter-spacing:-0.233912pt;}
.lsb3{letter-spacing:-0.228480pt;}
.ls9c{letter-spacing:-0.222464pt;}
.lsa3{letter-spacing:-0.215040pt;}
.ls9d{letter-spacing:-0.174592pt;}
.ls71{letter-spacing:-0.140800pt;}
.ls29{letter-spacing:-0.134964pt;}
.ls7b{letter-spacing:-0.122912pt;}
.ls2a{letter-spacing:-0.122111pt;}
.ls28{letter-spacing:-0.115684pt;}
.lsa2{letter-spacing:-0.107200pt;}
.ls7a{letter-spacing:-0.106880pt;}
.ls33{letter-spacing:-0.102830pt;}
.lsa4{letter-spacing:-0.098304pt;}
.lsae{letter-spacing:-0.097177pt;}
.ls2c{letter-spacing:-0.096403pt;}
.ls79{letter-spacing:-0.096192pt;}
.lsb5{letter-spacing:-0.094208pt;}
.ls2b{letter-spacing:-0.089976pt;}
.lsaa{letter-spacing:-0.085782pt;}
.ls2f{letter-spacing:-0.083549pt;}
.ls80{letter-spacing:-0.083253pt;}
.ls69{letter-spacing:-0.080864pt;}
.ls78{letter-spacing:-0.080160pt;}
.ls56{letter-spacing:-0.076892pt;}
.ls27{letter-spacing:-0.064269pt;}
.ls34{letter-spacing:-0.064150pt;}
.ls74{letter-spacing:-0.064128pt;}
.ls76{letter-spacing:-0.058784pt;}
.ls68{letter-spacing:-0.057669pt;}
.lsa9{letter-spacing:-0.055759pt;}
.ls30{letter-spacing:-0.051415pt;}
.ls37{letter-spacing:-0.051320pt;}
.ls81{letter-spacing:-0.051233pt;}
.ls96{letter-spacing:-0.050686pt;}
.ls94{letter-spacing:-0.047168pt;}
.ls35{letter-spacing:-0.044905pt;}
.ls5a{letter-spacing:-0.044853pt;}
.ls5c{letter-spacing:-0.044800pt;}
.lsb2{letter-spacing:-0.038602pt;}
.lsa1{letter-spacing:-0.038592pt;}
.ls2e{letter-spacing:-0.038561pt;}
.ls5b{letter-spacing:-0.038446pt;}
.ls48{letter-spacing:-0.038440pt;}
.ls72{letter-spacing:-0.038425pt;}
.ls55{letter-spacing:-0.032038pt;}
.ls49{letter-spacing:-0.032033pt;}
.ls7e{letter-spacing:-0.032021pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls77{letter-spacing:-0.026720pt;}
.ls26{letter-spacing:-0.025708pt;}
.ls36{letter-spacing:-0.025660pt;}
.ls53{letter-spacing:-0.025631pt;}
.ls39{letter-spacing:-0.025626pt;}
.ls6e{letter-spacing:-0.025616pt;}
.ls15{letter-spacing:-0.025600pt;}
.ls51{letter-spacing:-0.019223pt;}
.ls47{letter-spacing:-0.019220pt;}
.ls6c{letter-spacing:-0.019212pt;}
.lsd{letter-spacing:-0.019200pt;}
.ls52{letter-spacing:-0.012815pt;}
.ls46{letter-spacing:-0.012813pt;}
.ls6d{letter-spacing:-0.012808pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls31{letter-spacing:-0.006427pt;}
.ls54{letter-spacing:-0.006408pt;}
.ls3a{letter-spacing:-0.006407pt;}
.ls6b{letter-spacing:-0.006404pt;}
.lsb{letter-spacing:-0.006400pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.006400pt;}
.ls60{letter-spacing:0.006404pt;}
.ls38{letter-spacing:0.006407pt;}
.ls57{letter-spacing:0.006408pt;}
.ls19{letter-spacing:0.008320pt;}
.ls1a{letter-spacing:0.008512pt;}
.lsb0{letter-spacing:0.008578pt;}
.ls6{letter-spacing:0.012800pt;}
.ls65{letter-spacing:0.012808pt;}
.ls3d{letter-spacing:0.012813pt;}
.ls4f{letter-spacing:0.012815pt;}
.lsa5{letter-spacing:0.012864pt;}
.lsa6{letter-spacing:0.017152pt;}
.ls7{letter-spacing:0.019200pt;}
.ls66{letter-spacing:0.019212pt;}
.ls40{letter-spacing:0.019220pt;}
.ls4e{letter-spacing:0.019223pt;}
.lsa0{letter-spacing:0.019712pt;}
.ls1{letter-spacing:0.025600pt;}
.ls64{letter-spacing:0.025616pt;}
.ls3e{letter-spacing:0.025626pt;}
.ls5e{letter-spacing:0.025631pt;}
.lsb1{letter-spacing:0.030024pt;}
.ls4{letter-spacing:0.032000pt;}
.ls63{letter-spacing:0.032021pt;}
.ls3c{letter-spacing:0.032033pt;}
.ls4c{letter-spacing:0.032038pt;}
.ls82{letter-spacing:0.035136pt;}
.ls2{letter-spacing:0.038400pt;}
.ls6f{letter-spacing:0.038425pt;}
.ls3f{letter-spacing:0.038440pt;}
.ls50{letter-spacing:0.038446pt;}
.ls21{letter-spacing:0.038490pt;}
.ls2d{letter-spacing:0.038561pt;}
.ls90{letter-spacing:0.039423pt;}
.lsa7{letter-spacing:0.042880pt;}
.ls14{letter-spacing:0.044800pt;}
.ls7d{letter-spacing:0.044829pt;}
.ls41{letter-spacing:0.044846pt;}
.ls11{letter-spacing:0.051200pt;}
.ls61{letter-spacing:0.051233pt;}
.ls25{letter-spacing:0.051253pt;}
.ls3{letter-spacing:0.057600pt;}
.ls8a{letter-spacing:0.057637pt;}
.ls42{letter-spacing:0.057660pt;}
.ls5d{letter-spacing:0.057669pt;}
.ls22{letter-spacing:0.057735pt;}
.ls12{letter-spacing:0.064000pt;}
.ls62{letter-spacing:0.064041pt;}
.ls4b{letter-spacing:0.064066pt;}
.ls20{letter-spacing:0.064269pt;}
.ls0{letter-spacing:0.067104pt;}
.lsf{letter-spacing:0.070400pt;}
.ls24{letter-spacing:0.070473pt;}
.ls9{letter-spacing:0.074560pt;}
.ls75{letter-spacing:0.074816pt;}
.ls97{letter-spacing:0.076029pt;}
.ls13{letter-spacing:0.076800pt;}
.ls7f{letter-spacing:0.076849pt;}
.ls93{letter-spacing:0.081661pt;}
.ls43{letter-spacing:0.083286pt;}
.ls1e{letter-spacing:0.085120pt;}
.ls7c{letter-spacing:0.085504pt;}
.lsa8{letter-spacing:0.094336pt;}
.ls18{letter-spacing:0.096000pt;}
.ls87{letter-spacing:0.099552pt;}
.ls83{letter-spacing:0.105408pt;}
.ls73{letter-spacing:0.106880pt;}
.ls86{letter-spacing:0.111264pt;}
.ls84{letter-spacing:0.117120pt;}
.lsaf{letter-spacing:0.120735pt;}
.ls98{letter-spacing:0.126716pt;}
.ls4d{letter-spacing:0.128153pt;}
.lsb6{letter-spacing:0.129536pt;}
.ls85{letter-spacing:0.140544pt;}
.ls17{letter-spacing:0.160000pt;}
.ls8f{letter-spacing:0.168954pt;}
.ls9f{letter-spacing:0.175808pt;}
.ls92{letter-spacing:0.177402pt;}
.ls91{letter-spacing:0.188666pt;}
.lsab{letter-spacing:0.193010pt;}
.ls99{letter-spacing:0.202745pt;}
.lsad{letter-spacing:0.209714pt;}
.lsb4{letter-spacing:0.212352pt;}
.ls9a{letter-spacing:0.225273pt;}
.ls1f{letter-spacing:0.227520pt;}
.ls8b{letter-spacing:0.425641pt;}
.ls4a{letter-spacing:0.442056pt;}
.ls8c{letter-spacing:0.959316pt;}
.ls58{letter-spacing:29.888000pt;}
.lse{letter-spacing:30.208000pt;}
.ls16{letter-spacing:78.182400pt;}
.ls3b{letter-spacing:78.208000pt;}
.ls44{letter-spacing:175.983262pt;}
.ls6a{letter-spacing:175.991255pt;}
.ls88{letter-spacing:225.983040pt;}
.ls89{letter-spacing:241.384320pt;}
.ls1c{letter-spacing:331.975131pt;}
.ls1d{letter-spacing:375.908211pt;}
.ls5f{letter-spacing:407.109061pt;}
.ls23{letter-spacing:525.147693pt;}
.ls1b{letter-spacing:666.767497pt;}
.ls67{letter-spacing:1010.226420pt;}
.ls70{letter-spacing:1010.247827pt;}
.ls45{letter-spacing:1026.211324pt;}
.ls10{letter-spacing:1026.240000pt;}
.ls59{letter-spacing:1026.245487pt;}
.wsda{word-spacing:-64.041067pt;}
.ws11a{word-spacing:-58.560000pt;}
.wsb0{word-spacing:-37.178370pt;}
.wsd7{word-spacing:-37.157906pt;}
.wsaf{word-spacing:-35.177870pt;}
.ws92{word-spacing:-35.172307pt;}
.ws65{word-spacing:-35.115504pt;}
.ws6a{word-spacing:-20.582083pt;}
.ws6d{word-spacing:-20.517374pt;}
.ws90{word-spacing:-16.458590pt;}
.ws54{word-spacing:-16.105761pt;}
.ws8f{word-spacing:-16.099819pt;}
.ws52{word-spacing:-16.067200pt;}
.ws8e{word-spacing:-16.061380pt;}
.ws19{word-spacing:-16.051200pt;}
.wsef{word-spacing:-16.048691pt;}
.ws10c{word-spacing:-16.044800pt;}
.ws61{word-spacing:-16.037467pt;}
.ws0{word-spacing:-16.025600pt;}
.ws112{word-spacing:-16.023075pt;}
.wsac{word-spacing:-16.019067pt;}
.ws6f{word-spacing:-16.016533pt;}
.ws55{word-spacing:-16.015785pt;}
.wsd9{word-spacing:-16.010267pt;}
.ws64{word-spacing:-15.990667pt;}
.wsc7{word-spacing:-15.955200pt;}
.ws53{word-spacing:-15.932236pt;}
.wsf0{word-spacing:-15.859200pt;}
.ws13b{word-spacing:-12.014976pt;}
.ws47{word-spacing:-10.648512pt;}
.ws140{word-spacing:-10.321732pt;}
.ws50{word-spacing:-9.372533pt;}
.ws60{word-spacing:-9.355067pt;}
.wsad{word-spacing:-9.344400pt;}
.ws91{word-spacing:-9.343067pt;}
.ws43{word-spacing:-9.333067pt;}
.wsff{word-spacing:-8.640000pt;}
.ws120{word-spacing:-8.210382pt;}
.ws12e{word-spacing:-8.053493pt;}
.ws12a{word-spacing:-8.030966pt;}
.ws12c{word-spacing:-8.016886pt;}
.ws126{word-spacing:-8.005623pt;}
.ws129{word-spacing:-7.954936pt;}
.ws12d{word-spacing:-7.909882pt;}
.ws128{word-spacing:-7.904250pt;}
.ws12b{word-spacing:-7.867643pt;}
.ws136{word-spacing:-7.848192pt;}
.ws127{word-spacing:-7.828220pt;}
.ws125{word-spacing:-7.777534pt;}
.ws135{word-spacing:-7.527168pt;}
.ws148{word-spacing:-7.244160pt;}
.ws141{word-spacing:-7.240508pt;}
.ws123{word-spacing:-4.046385pt;}
.ws122{word-spacing:-1.778169pt;}
.ws124{word-spacing:-1.262920pt;}
.ws121{word-spacing:-1.025324pt;}
.ws42{word-spacing:-0.352000pt;}
.ws3e{word-spacing:-0.332800pt;}
.ws114{word-spacing:-0.313801pt;}
.wsd5{word-spacing:-0.262713pt;}
.wsf3{word-spacing:-0.243356pt;}
.ws39{word-spacing:-0.236800pt;}
.ws2c{word-spacing:-0.230400pt;}
.wse1{word-spacing:-0.224144pt;}
.ws40{word-spacing:-0.224000pt;}
.wscc{word-spacing:-0.217859pt;}
.ws10e{word-spacing:-0.217740pt;}
.ws41{word-spacing:-0.211200pt;}
.ws23{word-spacing:-0.204800pt;}
.wsd6{word-spacing:-0.192229pt;}
.ws3b{word-spacing:-0.192000pt;}
.ws76{word-spacing:-0.186380pt;}
.ws10f{word-spacing:-0.185719pt;}
.wsbc{word-spacing:-0.179414pt;}
.wsa2{word-spacing:-0.179385pt;}
.wsf9{word-spacing:-0.179315pt;}
.ws36{word-spacing:-0.179200pt;}
.ws8a{word-spacing:-0.172979pt;}
.ws115{word-spacing:-0.172911pt;}
.ws110{word-spacing:-0.166507pt;}
.ws3a{word-spacing:-0.166400pt;}
.wsf5{word-spacing:-0.160103pt;}
.ws1e{word-spacing:-0.160000pt;}
.ws4{word-spacing:-0.156576pt;}
.ws111{word-spacing:-0.153699pt;}
.ws26{word-spacing:-0.153600pt;}
.ws2{word-spacing:-0.149120pt;}
.ws94{word-spacing:-0.147352pt;}
.ws29{word-spacing:-0.147200pt;}
.ws130{word-spacing:-0.143616pt;}
.wsce{word-spacing:-0.140968pt;}
.ws9b{word-spacing:-0.140945pt;}
.wse4{word-spacing:-0.140890pt;}
.ws3d{word-spacing:-0.140800pt;}
.wsa0{word-spacing:-0.134539pt;}
.wsdf{word-spacing:-0.134486pt;}
.ws2f{word-spacing:-0.134400pt;}
.ws7c{word-spacing:-0.128538pt;}
.ws9d{word-spacing:-0.128132pt;}
.wsf6{word-spacing:-0.128082pt;}
.ws27{word-spacing:-0.128000pt;}
.ws89{word-spacing:-0.121726pt;}
.wse2{word-spacing:-0.121678pt;}
.ws1a{word-spacing:-0.121600pt;}
.wsbe{word-spacing:-0.115337pt;}
.wsa1{word-spacing:-0.115319pt;}
.wsfd{word-spacing:-0.115274pt;}
.ws30{word-spacing:-0.115200pt;}
.wsbf{word-spacing:-0.108930pt;}
.ws9c{word-spacing:-0.108912pt;}
.ws118{word-spacing:-0.108870pt;}
.ws2d{word-spacing:-0.108800pt;}
.ws77{word-spacing:-0.102830pt;}
.wsb3{word-spacing:-0.102522pt;}
.wsa3{word-spacing:-0.102506pt;}
.wsf8{word-spacing:-0.102466pt;}
.ws1b{word-spacing:-0.102400pt;}
.wsc8{word-spacing:-0.096114pt;}
.ws97{word-spacing:-0.096099pt;}
.wse0{word-spacing:-0.096062pt;}
.ws20{word-spacing:-0.096000pt;}
.wsc9{word-spacing:-0.089707pt;}
.wsea{word-spacing:-0.089657pt;}
.ws32{word-spacing:-0.089600pt;}
.ws87{word-spacing:-0.083395pt;}
.wsd0{word-spacing:-0.083299pt;}
.ws93{word-spacing:-0.083286pt;}
.wsde{word-spacing:-0.083253pt;}
.ws25{word-spacing:-0.083200pt;}
.ws81{word-spacing:-0.076980pt;}
.wsc1{word-spacing:-0.076892pt;}
.ws98{word-spacing:-0.076879pt;}
.wsf7{word-spacing:-0.076849pt;}
.ws24{word-spacing:-0.076800pt;}
.wsc2{word-spacing:-0.070484pt;}
.wsa4{word-spacing:-0.070473pt;}
.wsf1{word-spacing:-0.070445pt;}
.ws21{word-spacing:-0.070400pt;}
.wsca{word-spacing:-0.064076pt;}
.ws8d{word-spacing:-0.064066pt;}
.wsed{word-spacing:-0.064041pt;}
.ws1c{word-spacing:-0.064000pt;}
.ws11d{word-spacing:-0.058560pt;}
.wsb7{word-spacing:-0.057669pt;}
.ws9e{word-spacing:-0.057660pt;}
.wse3{word-spacing:-0.057637pt;}
.ws2a{word-spacing:-0.057600pt;}
.wsd2{word-spacing:-0.051261pt;}
.ws95{word-spacing:-0.051253pt;}
.wse9{word-spacing:-0.051233pt;}
.ws28{word-spacing:-0.051200pt;}
.wsc6{word-spacing:-0.044853pt;}
.ws9a{word-spacing:-0.044846pt;}
.wsec{word-spacing:-0.044829pt;}
.ws34{word-spacing:-0.044800pt;}
.wsb9{word-spacing:-0.038446pt;}
.ws9f{word-spacing:-0.038440pt;}
.ws101{word-spacing:-0.038425pt;}
.ws16{word-spacing:-0.038400pt;}
.ws11c{word-spacing:-0.035136pt;}
.wsbd{word-spacing:-0.032038pt;}
.wsa6{word-spacing:-0.032033pt;}
.wsee{word-spacing:-0.032021pt;}
.ws17{word-spacing:-0.032000pt;}
.ws11f{word-spacing:-0.029280pt;}
.ws103{word-spacing:-0.026720pt;}
.ws78{word-spacing:-0.025708pt;}
.wscd{word-spacing:-0.025631pt;}
.ws8b{word-spacing:-0.025626pt;}
.wse5{word-spacing:-0.025616pt;}
.ws2b{word-spacing:-0.025600pt;}
.ws7d{word-spacing:-0.019281pt;}
.wsb4{word-spacing:-0.019223pt;}
.ws96{word-spacing:-0.019220pt;}
.wse6{word-spacing:-0.019212pt;}
.ws15{word-spacing:-0.019200pt;}
.ws11e{word-spacing:-0.017568pt;}
.ws83{word-spacing:-0.012830pt;}
.wsb8{word-spacing:-0.012815pt;}
.wsa7{word-spacing:-0.012813pt;}
.wse7{word-spacing:-0.012808pt;}
.ws1d{word-spacing:-0.012800pt;}
.wsb5{word-spacing:-0.006408pt;}
.ws99{word-spacing:-0.006407pt;}
.wsdd{word-spacing:-0.006404pt;}
.ws1f{word-spacing:-0.006400pt;}
.ws10b{word-spacing:-0.005344pt;}
.ws1{word-spacing:0.000000pt;}
.ws104{word-spacing:0.005344pt;}
.ws31{word-spacing:0.006400pt;}
.wseb{word-spacing:0.006404pt;}
.ws8c{word-spacing:0.006407pt;}
.wsb6{word-spacing:0.006408pt;}
.ws82{word-spacing:0.006415pt;}
.ws14e{word-spacing:0.011776pt;}
.wse8{word-spacing:0.012808pt;}
.wsa5{word-spacing:0.012813pt;}
.wsc4{word-spacing:0.012815pt;}
.ws86{word-spacing:0.012830pt;}
.ws147{word-spacing:0.017668pt;}
.ws3c{word-spacing:0.019200pt;}
.ws10d{word-spacing:0.019212pt;}
.wscf{word-spacing:0.019223pt;}
.ws79{word-spacing:0.019281pt;}
.ws37{word-spacing:0.025600pt;}
.wsfb{word-spacing:0.025616pt;}
.wscb{word-spacing:0.025631pt;}
.ws84{word-spacing:0.025660pt;}
.ws74{word-spacing:0.025708pt;}
.ws133{word-spacing:0.030976pt;}
.wsfc{word-spacing:0.032021pt;}
.ws75{word-spacing:0.032134pt;}
.ws33{word-spacing:0.038400pt;}
.wsf4{word-spacing:0.038425pt;}
.wsdb{word-spacing:0.038446pt;}
.ws7f{word-spacing:0.038561pt;}
.wsdc{word-spacing:0.044853pt;}
.ws22{word-spacing:0.051200pt;}
.wsfa{word-spacing:0.051233pt;}
.wsd4{word-spacing:0.051261pt;}
.ws7a{word-spacing:0.051415pt;}
.ws145{word-spacing:0.051469pt;}
.ws38{word-spacing:0.057600pt;}
.wsfe{word-spacing:0.057637pt;}
.wsc0{word-spacing:0.057669pt;}
.ws73{word-spacing:0.057842pt;}
.ws3f{word-spacing:0.064000pt;}
.wsc3{word-spacing:0.064076pt;}
.wsba{word-spacing:0.070484pt;}
.ws18{word-spacing:0.076800pt;}
.wsf2{word-spacing:0.076849pt;}
.wsc5{word-spacing:0.076892pt;}
.ws132{word-spacing:0.078848pt;}
.ws2e{word-spacing:0.083200pt;}
.wsd3{word-spacing:0.083299pt;}
.wsd1{word-spacing:0.089707pt;}
.ws116{word-spacing:0.102466pt;}
.ws106{word-spacing:0.106880pt;}
.wsbb{word-spacing:0.115337pt;}
.ws119{word-spacing:0.128082pt;}
.ws134{word-spacing:0.132352pt;}
.ws100{word-spacing:0.134486pt;}
.ws105{word-spacing:0.138944pt;}
.ws102{word-spacing:0.144288pt;}
.ws131{word-spacing:0.149248pt;}
.ws35{word-spacing:0.160000pt;}
.ws107{word-spacing:0.160320pt;}
.ws3{word-spacing:0.171488pt;}
.ws108{word-spacing:0.176352pt;}
.ws109{word-spacing:0.187040pt;}
.ws13f{word-spacing:0.201536pt;}
.ws13a{word-spacing:0.202752pt;}
.ws10a{word-spacing:0.203072pt;}
.ws14b{word-spacing:0.214456pt;}
.ws13e{word-spacing:0.227264pt;}
.ws13c{word-spacing:0.231552pt;}
.ws14d{word-spacing:0.235520pt;}
.ws146{word-spacing:0.235580pt;}
.ws14a{word-spacing:0.235902pt;}
.ws13d{word-spacing:0.244416pt;}
.ws137{word-spacing:0.283008pt;}
.ws14c{word-spacing:0.283082pt;}
.ws7e{word-spacing:0.289210pt;}
.ws12f{word-spacing:0.291584pt;}
.ws143{word-spacing:0.300238pt;}
.ws144{word-spacing:0.330262pt;}
.ws138{word-spacing:0.351616pt;}
.ws139{word-spacing:0.390208pt;}
.ws113{word-spacing:0.390651pt;}
.wsa{word-spacing:5.324800pt;}
.wsb{word-spacing:5.446400pt;}
.ws12{word-spacing:8.601600pt;}
.ws14{word-spacing:8.659200pt;}
.ws13{word-spacing:8.736000pt;}
.wse{word-spacing:11.155200pt;}
.wsf{word-spacing:11.187200pt;}
.ws9{word-spacing:12.390400pt;}
.ws8{word-spacing:12.435200pt;}
.wsc{word-spacing:14.048000pt;}
.wsd{word-spacing:14.073600pt;}
.ws10{word-spacing:18.771200pt;}
.ws11{word-spacing:18.886400pt;}
.ws6{word-spacing:21.068800pt;}
.ws5{word-spacing:21.152000pt;}
.ws7{word-spacing:25.881600pt;}
.ws51{word-spacing:36.911263pt;}
.ws56{word-spacing:40.134560pt;}
.wsb2{word-spacing:53.388345pt;}
.ws80{word-spacing:58.485433pt;}
.ws11b{word-spacing:99.879936pt;}
.ws70{word-spacing:101.344000pt;}
.ws142{word-spacing:149.305556pt;}
.ws149{word-spacing:149.321088pt;}
.wsae{word-spacing:153.190373pt;}
.wsd8{word-spacing:155.427669pt;}
.ws71{word-spacing:170.464000pt;}
.ws88{word-spacing:175.912789pt;}
.ws85{word-spacing:175.924594pt;}
.ws7b{word-spacing:175.935840pt;}
.wsb1{word-spacing:175.944822pt;}
.ws72{word-spacing:175.955121pt;}
.ws5a{word-spacing:215.930406pt;}
.ws63{word-spacing:237.275145pt;}
.ws6b{word-spacing:268.203319pt;}
.ws4b{word-spacing:323.406019pt;}
.ws45{word-spacing:374.144000pt;}
.ws69{word-spacing:377.338192pt;}
.ws59{word-spacing:429.195207pt;}
.ws4f{word-spacing:433.252838pt;}
.ws58{word-spacing:463.530048pt;}
.ws68{word-spacing:464.051729pt;}
.ws6e{word-spacing:466.999188pt;}
.wsa9{word-spacing:469.295226pt;}
.ws57{word-spacing:480.545216pt;}
.ws4e{word-spacing:498.276006pt;}
.ws5b{word-spacing:506.879292pt;}
.ws4d{word-spacing:521.667628pt;}
.ws67{word-spacing:534.240090pt;}
.ws44{word-spacing:550.383985pt;}
.ws66{word-spacing:554.918708pt;}
.ws5f{word-spacing:572.679761pt;}
.ws6c{word-spacing:583.493199pt;}
.ws5c{word-spacing:614.760420pt;}
.wsa8{word-spacing:642.866022pt;}
.ws5e{word-spacing:748.758708pt;}
.wsaa{word-spacing:754.016230pt;}
.wsab{word-spacing:765.234532pt;}
.ws5d{word-spacing:832.773529pt;}
.ws4a{word-spacing:836.276906pt;}
.ws4c{word-spacing:861.776218pt;}
.ws46{word-spacing:870.220753pt;}
.ws49{word-spacing:913.630197pt;}
.ws48{word-spacing:931.044045pt;}
.ws62{word-spacing:1063.989689pt;}
.ws117{word-spacing:1475.192375pt;}
._8c{margin-left:-1475.768744pt;}
._80{margin-left:-1034.575402pt;}
._24{margin-left:-625.997639pt;}
._85{margin-left:-538.011278pt;}
._44{margin-left:-534.773031pt;}
._28{margin-left:-496.386908pt;}
._41{margin-left:-492.430598pt;}
._7d{margin-left:-473.392077pt;}
._54{margin-left:-444.895412pt;}
._53{margin-left:-443.313953pt;}
._57{margin-left:-423.096265pt;}
._56{margin-left:-421.484676pt;}
._79{margin-left:-412.458929pt;}
._43{margin-left:-396.189577pt;}
._33{margin-left:-389.859897pt;}
._3d{margin-left:-362.185977pt;}
._27{margin-left:-351.897873pt;}
._6c{margin-left:-348.981465pt;}
._62{margin-left:-333.173757pt;}
._5f{margin-left:-331.342516pt;}
._65{margin-left:-323.045873pt;}
._4d{margin-left:-320.468187pt;}
._3f{margin-left:-316.387142pt;}
._72{margin-left:-307.749276pt;}
._6b{margin-left:-304.894611pt;}
._40{margin-left:-301.376074pt;}
._6f{margin-left:-297.109520pt;}
._31{margin-left:-290.939546pt;}
._60{margin-left:-288.263997pt;}
._e{margin-left:-285.568000pt;}
._74{margin-left:-273.477506pt;}
._6a{margin-left:-264.529065pt;}
._7b{margin-left:-262.390752pt;}
._81{margin-left:-258.013824pt;}
._35{margin-left:-256.762692pt;}
._c{margin-left:-248.670228pt;}
._3{margin-left:-246.720000pt;}
._50{margin-left:-241.482884pt;}
._2f{margin-left:-240.306443pt;}
._d{margin-left:-237.248000pt;}
._12{margin-left:-228.224000pt;}
._52{margin-left:-226.856640pt;}
._66{margin-left:-224.929980pt;}
._b{margin-left:-221.529670pt;}
._58{margin-left:-218.530028pt;}
._a{margin-left:-213.540565pt;}
._20{margin-left:-209.514777pt;}
._26{margin-left:-207.916403pt;}
._1d{margin-left:-205.868032pt;}
._3c{margin-left:-200.883561pt;}
._1{margin-left:-197.760000pt;}
._61{margin-left:-195.241614pt;}
._5e{margin-left:-193.102502pt;}
._63{margin-left:-191.942135pt;}
._10{margin-left:-189.824000pt;}
._5{margin-left:-186.944000pt;}
._76{margin-left:-185.693021pt;}
._23{margin-left:-183.253731pt;}
._48{margin-left:-180.068676pt;}
._18{margin-left:-177.076343pt;}
._67{margin-left:-175.938031pt;}
._42{margin-left:-174.423487pt;}
._4f{margin-left:-171.491922pt;}
._34{margin-left:-170.569395pt;}
._6e{margin-left:-169.122445pt;}
._17{margin-left:-167.827200pt;}
._7{margin-left:-165.952000pt;}
._3a{margin-left:-164.057039pt;}
._5a{margin-left:-158.948077pt;}
._37{margin-left:-157.571093pt;}
._3b{margin-left:-155.911763pt;}
._6d{margin-left:-154.014985pt;}
._82{margin-left:-152.926118pt;}
._73{margin-left:-151.288457pt;}
._25{margin-left:-149.607744pt;}
._14{margin-left:-147.014466pt;}
._7e{margin-left:-144.314914pt;}
._86{margin-left:-142.811579pt;}
._1c{margin-left:-140.303539pt;}
._49{margin-left:-138.818989pt;}
._78{margin-left:-136.582773pt;}
._4{margin-left:-135.040000pt;}
._11{margin-left:-132.992000pt;}
._f{margin-left:-131.072000pt;}
._30{margin-left:-129.373094pt;}
._5c{margin-left:-127.555671pt;}
._47{margin-left:-125.655169pt;}
._45{margin-left:-124.646908pt;}
._3e{margin-left:-123.080883pt;}
._6{margin-left:-121.152000pt;}
._87{margin-left:-119.325330pt;}
._4a{margin-left:-118.420654pt;}
._69{margin-left:-113.896262pt;}
._64{margin-left:-112.789501pt;}
._51{margin-left:-110.825140pt;}
._8{margin-left:-108.992000pt;}
._5d{margin-left:-107.566272pt;}
._2e{margin-left:-106.465485pt;}
._7c{margin-left:-104.475165pt;}
._13{margin-left:-102.215746pt;}
._2d{margin-left:-100.211580pt;}
._16{margin-left:-98.048380pt;}
._71{margin-left:-95.822492pt;}
._88{margin-left:-90.746191pt;}
._22{margin-left:-88.677753pt;}
._21{margin-left:-84.140117pt;}
._77{margin-left:-83.192917pt;}
._46{margin-left:-81.794065pt;}
._2c{margin-left:-79.554063pt;}
._68{margin-left:-77.776286pt;}
._38{margin-left:-75.969779pt;}
._2a{margin-left:-74.733947pt;}
._1a{margin-left:-71.158733pt;}
._59{margin-left:-69.447689pt;}
._1e{margin-left:-68.100370pt;}
._4e{margin-left:-66.840987pt;}
._32{margin-left:-65.307812pt;}
._1f{margin-left:-63.231649pt;}
._36{margin-left:-62.170654pt;}
._1b{margin-left:-60.939921pt;}
._2b{margin-left:-59.384371pt;}
._5b{margin-left:-53.864160pt;}
._19{margin-left:-49.080132pt;}
._75{margin-left:-47.960522pt;}
._2{margin-left:-47.040000pt;}
._7a{margin-left:-44.628854pt;}
._7f{margin-left:-43.327138pt;}
._39{margin-left:-40.726067pt;}
._70{margin-left:-33.448179pt;}
._8a{margin-left:-15.369856pt;}
._55{margin-left:-10.584728pt;}
._89{margin-left:-3.633285pt;}
._aa{margin-left:-1.927622pt;}
._0{margin-left:-0.960000pt;}
._8b{width:0.960000pt;}
._ab{width:2.639825pt;}
._a9{width:3.589279pt;}
._29{width:5.440000pt;}
._ac{width:6.800457pt;}
._ad{width:7.704361pt;}
._91{width:36.693696pt;}
._92{width:72.965760pt;}
._15{width:74.858658pt;}
._84{width:85.349587pt;}
._9a{width:100.921920pt;}
._99{width:106.368000pt;}
._a6{width:110.701440pt;}
._98{width:112.399680pt;}
._4b{width:117.458406pt;}
._a1{width:119.755200pt;}
._83{width:122.577898pt;}
._a0{width:126.044160pt;}
._a8{width:127.273920pt;}
._96{width:129.300480pt;}
._9f{width:131.877120pt;}
._95{width:135.097920pt;}
._94{width:141.480960pt;}
._af{width:157.922803pt;}
._ae{width:168.523955pt;}
._97{width:191.596608pt;}
._a2{width:196.398528pt;}
._a5{width:197.991360pt;}
._93{width:206.002368pt;}
._a4{width:207.595200pt;}
._a3{width:255.028800pt;}
._9e{width:264.632640pt;}
._9d{width:269.610240pt;}
._9c{width:276.461760pt;}
._8e{width:324.482661pt;}
._9b{width:340.748928pt;}
._a7{width:342.341760pt;}
._4c{width:362.273120pt;}
._90{width:424.297067pt;}
._8d{width:792.431351pt;}
._9{width:795.968000pt;}
._8f{width:891.554114pt;}
.fs26{font-size:26.880000pt;}
.fs24{font-size:26.886400pt;}
.fs1d{font-size:28.002667pt;}
.fs20{font-size:28.159066pt;}
.fs1f{font-size:28.160000pt;}
.fs27{font-size:29.440000pt;}
.fs25{font-size:29.447467pt;}
.fs21{font-size:30.720000pt;}
.fs19{font-size:34.560000pt;}
.fs22{font-size:37.128533pt;}
.fs15{font-size:37.217600pt;}
.fs4{font-size:37.294933pt;}
.fsa{font-size:37.311467pt;}
.fs3{font-size:37.332267pt;}
.fsf{font-size:37.372267pt;}
.fs13{font-size:37.377600pt;}
.fs9{font-size:37.420267pt;}
.fs6{font-size:37.490133pt;}
.fs2{font-size:42.560000pt;}
.fs1e{font-size:42.880000pt;}
.fs23{font-size:42.891200pt;}
.fs1c{font-size:44.005333pt;}
.fs1a{font-size:53.440000pt;}
.fs1b{font-size:58.560000pt;}
.fs5{font-size:63.934933pt;}
.fsb{font-size:63.962667pt;}
.fs0{font-size:64.000000pt;}
.fs18{font-size:64.041067pt;}
.fse{font-size:64.066133pt;}
.fs12{font-size:64.076267pt;}
.fs8{font-size:64.149867pt;}
.fs7{font-size:64.268800pt;}
.fs16{font-size:67.431082pt;}
.fsc{font-size:67.600250pt;}
.fs11{font-size:67.639544pt;}
.fs17{font-size:67.682888pt;}
.fs10{font-size:67.709540pt;}
.fs14{font-size:67.720164pt;}
.fsd{font-size:67.923911pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:3.520400pt;}
.y1e5{bottom:51.043259pt;}
.y33{bottom:51.067067pt;}
.ye9{bottom:105.745919pt;}
.yb1{bottom:108.304901pt;}
.y127{bottom:110.280971pt;}
.y168{bottom:112.179464pt;}
.y139{bottom:128.652819pt;}
.y101{bottom:128.721479pt;}
.y32{bottom:128.827067pt;}
.y3e{bottom:128.827200pt;}
.yd5{bottom:128.848086pt;}
.y69{bottom:141.065144pt;}
.ye8{bottom:142.553523pt;}
.yb0{bottom:145.100698pt;}
.y126{bottom:147.088574pt;}
.y86{bottom:148.817724pt;}
.y83{bottom:148.827067pt;}
.y167{bottom:148.987067pt;}
.y80{bottom:152.791931pt;}
.y89{bottom:152.827067pt;}
.y138{bottom:165.460422pt;}
.y100{bottom:165.529082pt;}
.y31{bottom:165.627067pt;}
.y3d{bottom:165.627200pt;}
.yd4{bottom:165.643882pt;}
.yc9{bottom:165.660831pt;}
.y87{bottom:173.212471pt;}
.y84{bottom:173.221814pt;}
.y81{bottom:177.185111pt;}
.y8b{bottom:177.220247pt;}
.y8d{bottom:177.227067pt;}
.y68{bottom:177.871138pt;}
.ye7{bottom:179.361126pt;}
.yaf{bottom:181.896494pt;}
.y125{bottom:183.896177pt;}
.y166{bottom:184.507067pt;}
.y88{bottom:197.607218pt;}
.y85{bottom:197.616561pt;}
.y8a{bottom:198.106667pt;}
.y82{bottom:201.578291pt;}
.y8c{bottom:201.613427pt;}
.y137{bottom:202.268025pt;}
.yff{bottom:202.336685pt;}
.y30{bottom:202.427067pt;}
.y3c{bottom:202.427200pt;}
.yd3{bottom:202.439678pt;}
.yc8{bottom:202.456627pt;}
.ye6{bottom:216.168729pt;}
.y67{bottom:216.906667pt;}
.yae{bottom:218.692290pt;}
.y165{bottom:218.907067pt;}
.y66{bottom:220.427067pt;}
.y124{bottom:220.703780pt;}
.y136{bottom:239.075628pt;}
.yfe{bottom:239.144288pt;}
.y7f{bottom:239.185111pt;}
.y2f{bottom:239.227067pt;}
.y3b{bottom:239.227200pt;}
.yd2{bottom:239.235474pt;}
.yc7{bottom:239.252423pt;}
.ye5{bottom:252.976332pt;}
.y164{bottom:253.307067pt;}
.yad{bottom:255.488086pt;}
.y123{bottom:257.511383pt;}
.y65{bottom:258.417831pt;}
.y135{bottom:275.883231pt;}
.yfd{bottom:275.951891pt;}
.y7e{bottom:275.991105pt;}
.y2e{bottom:276.027067pt;}
.y3a{bottom:276.027200pt;}
.yd1{bottom:276.031271pt;}
.yc6{bottom:276.048219pt;}
.y163{bottom:287.707067pt;}
.ye4{bottom:289.783935pt;}
.yac{bottom:292.283882pt;}
.y122{bottom:294.318987pt;}
.y64{bottom:295.223817pt;}
.y134{bottom:312.690834pt;}
.yfc{bottom:312.759495pt;}
.y7d{bottom:312.797099pt;}
.y2d{bottom:312.827067pt;}
.y39{bottom:312.827200pt;}
.yc5{bottom:312.844015pt;}
.yd0{bottom:312.914730pt;}
.y162{bottom:322.107067pt;}
.ye3{bottom:326.591538pt;}
.yab{bottom:329.079678pt;}
.y121{bottom:331.126590pt;}
.y61{bottom:333.707067pt;}
.y62{bottom:334.186667pt;}
.y63{bottom:337.707067pt;}
.y133{bottom:349.498437pt;}
.yfb{bottom:349.567098pt;}
.y7c{bottom:349.603092pt;}
.y2c{bottom:349.627067pt;}
.y38{bottom:349.627200pt;}
.yc4{bottom:349.639812pt;}
.ycf{bottom:349.710527pt;}
.y161{bottom:356.507067pt;}
.ye2{bottom:363.399141pt;}
.yaa{bottom:365.875474pt;}
.y120{bottom:367.934193pt;}
.y60{bottom:375.711110pt;}
.y132{bottom:386.306040pt;}
.yfa{bottom:386.374701pt;}
.y7b{bottom:386.409086pt;}
.y2b{bottom:386.427067pt;}
.y37{bottom:386.427200pt;}
.yc3{bottom:386.435608pt;}
.yce{bottom:386.506323pt;}
.y160{bottom:390.907200pt;}
.ye1{bottom:400.206744pt;}
.ya9{bottom:402.671271pt;}
.y11f{bottom:404.741796pt;}
.y5d{bottom:412.267067pt;}
.y5b{bottom:416.274527pt;}
.y131{bottom:423.113643pt;}
.yf9{bottom:423.182304pt;}
.y7a{bottom:423.215079pt;}
.ycd{bottom:423.222023pt;}
.y2a{bottom:423.227067pt;}
.y36{bottom:423.227200pt;}
.yc2{bottom:423.231404pt;}
.y15f{bottom:425.307067pt;}
.y5f{bottom:428.827200pt;}
.y5a{bottom:428.834765pt;}
.y5e{bottom:435.390848pt;}
.ye0{bottom:437.014347pt;}
.y5c{bottom:439.397031pt;}
.ya8{bottom:439.493929pt;}
.y11e{bottom:441.549399pt;}
.y15e{bottom:459.707067pt;}
.y130{bottom:459.921247pt;}
.y148{bottom:459.937257pt;}
.yf8{bottom:459.989907pt;}
.y79{bottom:460.021073pt;}
.y29{bottom:460.027067pt;}
.yc1{bottom:460.027200pt;}
.ycc{bottom:460.097915pt;}
.y1c0{bottom:466.245113pt;}
.ydf{bottom:473.821950pt;}
.ya7{bottom:476.289725pt;}
.y57{bottom:477.467408pt;}
.y11d{bottom:478.357002pt;}
.y58{bottom:481.469730pt;}
.y56{bottom:489.947067pt;}
.y54{bottom:494.027067pt;}
.y15d{bottom:494.107067pt;}
.y35{bottom:496.667067pt;}
.y12f{bottom:496.728850pt;}
.y147{bottom:496.744860pt;}
.yc0{bottom:496.747067pt;}
.y78{bottom:496.767296pt;}
.yf7{bottom:496.797510pt;}
.y28{bottom:496.827067pt;}
.ycb{bottom:496.893711pt;}
.y55{bottom:501.145081pt;}
.y1bf{bottom:503.052716pt;}
.y59{bottom:504.114633pt;}
.yde{bottom:510.629553pt;}
.ya6{bottom:513.085521pt;}
.y11c{bottom:515.164605pt;}
.y15c{bottom:528.507067pt;}
.ybf{bottom:533.467067pt;}
.y12e{bottom:533.536453pt;}
.y146{bottom:533.552463pt;}
.y77{bottom:533.573290pt;}
.yf6{bottom:533.605113pt;}
.y27{bottom:533.627067pt;}
.yca{bottom:533.689507pt;}
.y1be{bottom:539.764257pt;}
.y17b{bottom:539.772716pt;}
.y53{bottom:541.313179pt;}
.y1a{bottom:545.867067pt;}
.ydd{bottom:547.437156pt;}
.ya5{bottom:549.881317pt;}
.y11b{bottom:551.876146pt;}
.y10e{bottom:554.347067pt;}
.y15b{bottom:562.827067pt;}
.y19{bottom:564.267067pt;}
.y12d{bottom:570.247994pt;}
.y145{bottom:570.264004pt;}
.y76{bottom:570.299201pt;}
.yf5{bottom:570.316654pt;}
.y26{bottom:570.347067pt;}
.ybe{bottom:570.405208pt;}
.y19a{bottom:576.571861pt;}
.y17a{bottom:576.580319pt;}
.y52{bottom:578.105390pt;}
.y10d{bottom:578.997947pt;}
.y18{bottom:582.667067pt;}
.ydc{bottom:584.244759pt;}
.ya4{bottom:586.677113pt;}
.y11a{bottom:588.683749pt;}
.y15a{bottom:597.227067pt;}
.y17{bottom:601.067067pt;}
.y12c{bottom:607.055597pt;}
.y144{bottom:607.071607pt;}
.y75{bottom:607.105194pt;}
.yf4{bottom:607.124257pt;}
.y25{bottom:607.147067pt;}
.ybd{bottom:607.201004pt;}
.y10c{bottom:609.632427pt;}
.y199{bottom:613.379464pt;}
.y179{bottom:613.387922pt;}
.y51{bottom:616.587067pt;}
.y16{bottom:619.467067pt;}
.y4f{bottom:620.587067pt;}
.ydb{bottom:621.052362pt;}
.ya3{bottom:623.476141pt;}
.y119{bottom:625.491353pt;}
.y50{bottom:627.710281pt;}
.y159{bottom:631.627067pt;}
.y15{bottom:637.867067pt;}
.y1e4{bottom:638.331861pt;}
.y12b{bottom:643.863200pt;}
.y143{bottom:643.879211pt;}
.y74{bottom:643.911188pt;}
.yf3{bottom:643.931861pt;}
.y24{bottom:643.947067pt;}
.ybc{bottom:643.996800pt;}
.y10b{bottom:646.347067pt;}
.y198{bottom:650.187067pt;}
.y178{bottom:650.195525pt;}
.y10a{bottom:655.623067pt;}
.y14{bottom:656.267067pt;}
.yda{bottom:657.859965pt;}
.y4e{bottom:659.959291pt;}
.ya2{bottom:660.191842pt;}
.y118{bottom:662.298956pt;}
.y158{bottom:666.027067pt;}
.y13{bottom:674.667067pt;}
.y1e3{bottom:675.139464pt;}
.y109{bottom:676.987067pt;}
.y12a{bottom:680.670803pt;}
.y142{bottom:680.686814pt;}
.y73{bottom:680.717181pt;}
.yf2{bottom:680.739464pt;}
.y23{bottom:680.747067pt;}
.ybb{bottom:680.792596pt;}
.y18a{bottom:682.897799pt;}
.y187{bottom:682.902777pt;}
.y184{bottom:682.907755pt;}
.y18f{bottom:682.912733pt;}
.y18b{bottom:683.375674pt;}
.y188{bottom:683.380652pt;}
.y185{bottom:683.385630pt;}
.y18d{bottom:683.390608pt;}
.y190{bottom:683.395586pt;}
.y18c{bottom:684.172133pt;}
.y189{bottom:684.177111pt;}
.y186{bottom:684.182089pt;}
.y183{bottom:684.187067pt;}
.y18e{bottom:684.192045pt;}
.y1aa{bottom:685.147200pt;}
.y177{bottom:686.907067pt;}
.y1bc{bottom:687.307067pt;}
.y12{bottom:693.067067pt;}
.yd9{bottom:694.667569pt;}
.y1a8{bottom:694.904507pt;}
.y4d{bottom:696.753179pt;}
.y1ba{bottom:697.064507pt;}
.ya1{bottom:697.067733pt;}
.y1a9{bottom:698.741307pt;}
.y117{bottom:699.106559pt;}
.y157{bottom:700.427067pt;}
.y1bb{bottom:700.901307pt;}
.y108{bottom:701.632427pt;}
.y1a7{bottom:704.507067pt;}
.y1b9{bottom:706.667067pt;}
.y17d{bottom:709.387067pt;}
.y1d1{bottom:710.907067pt;}
.y11{bottom:711.467067pt;}
.y19c{bottom:711.627067pt;}
.y1e2{bottom:711.947067pt;}
.y1ae{bottom:713.787067pt;}
.y129{bottom:717.478406pt;}
.y141{bottom:717.494417pt;}
.y72{bottom:717.523175pt;}
.y22{bottom:717.547067pt;}
.yba{bottom:717.588393pt;}
.y10{bottom:729.867067pt;}
.yd8{bottom:731.315069pt;}
.y19d{bottom:732.106427pt;}
.y4c{bottom:733.553179pt;}
.y1af{bottom:734.104507pt;}
.y156{bottom:734.827200pt;}
.y9f{bottom:735.468350pt;}
.y116{bottom:735.914162pt;}
.y107{bottom:738.347067pt;}
.ya0{bottom:739.467067pt;}
.y9d{bottom:739.541842pt;}
.yd6{bottom:743.787067pt;}
.y1cf{bottom:746.427067pt;}
.y16a{bottom:747.307067pt;}
.y1e0{bottom:747.467067pt;}
.yf{bottom:748.267067pt;}
.y19e{bottom:752.747707pt;}
.yd7{bottom:753.793483pt;}
.yf1{bottom:754.187067pt;}
.y128{bottom:754.286009pt;}
.y140{bottom:754.302020pt;}
.y71{bottom:754.329169pt;}
.y17e{bottom:754.344507pt;}
.y21{bottom:754.347067pt;}
.yb9{bottom:754.384189pt;}
.y1b0{bottom:754.583867pt;}
.y9e{bottom:754.747067pt;}
.y1ce{bottom:759.638110pt;}
.y1df{bottom:760.667067pt;}
.y1ab{bottom:762.427067pt;}
.y106{bottom:762.992587pt;}
.y1bd{bottom:763.627067pt;}
.ye{bottom:766.667067pt;}
.y155{bottom:769.227067pt;}
.y1c3{bottom:769.707067pt;}
.y4b{bottom:770.350766pt;}
.y1d4{bottom:770.747067pt;}
.y115{bottom:772.721765pt;}
.y19f{bottom:773.227067pt;}
.y1b1{bottom:774.901307pt;}
.y197{bottom:784.427067pt;}
.yd{bottom:785.067067pt;}
.y14e{bottom:787.147200pt;}
.y1c4{bottom:788.588041pt;}
.y94{bottom:789.147200pt;}
.y99{bottom:789.156544pt;}
.y1d5{bottom:789.468987pt;}
.yf0{bottom:791.093613pt;}
.y13f{bottom:791.109623pt;}
.y70{bottom:791.135162pt;}
.y20{bottom:791.147067pt;}
.yb8{bottom:791.179985pt;}
.y16b{bottom:791.306257pt;}
.y92{bottom:793.147200pt;}
.y1a0{bottom:793.868347pt;}
.y1b2{bottom:795.380667pt;}
.y196{bottom:796.747067pt;}
.y17f{bottom:799.301947pt;}
.y105{bottom:799.627067pt;}
.yc{bottom:803.307067pt;}
.y154{bottom:803.627067pt;}
.y1c5{bottom:807.469015pt;}
.y49{bottom:807.547067pt;}
.y1d6{bottom:808.345467pt;}
.y95{bottom:808.424697pt;}
.y195{bottom:809.067067pt;}
.y114{bottom:809.529368pt;}
.y1a1{bottom:814.347707pt;}
.y1b3{bottom:815.698107pt;}
.y176{bottom:818.347067pt;}
.y4a{bottom:818.747244pt;}
.y194{bottom:821.387067pt;}
.yb{bottom:821.707067pt;}
.y9c{bottom:824.587067pt;}
.y14d{bottom:824.667067pt;}
.y1c6{bottom:826.511308pt;}
.y96{bottom:826.992020pt;}
.y1d7{bottom:827.067387pt;}
.y1d0{bottom:827.227067pt;}
.y1e1{bottom:827.627067pt;}
.y104{bottom:827.787067pt;}
.yef{bottom:827.901216pt;}
.y13e{bottom:827.917226pt;}
.y113{bottom:827.925164pt;}
.y6f{bottom:827.941156pt;}
.y1f{bottom:827.947067pt;}
.yb7{bottom:827.975781pt;}
.y9a{bottom:830.984235pt;}
.y175{bottom:831.307067pt;}
.y193{bottom:833.707067pt;}
.y1a2{bottom:834.988987pt;}
.y16c{bottom:835.305447pt;}
.y1b4{bottom:836.015547pt;}
.y153{bottom:838.027067pt;}
.ya{bottom:840.267067pt;}
.y98{bottom:841.074031pt;}
.y180{bottom:844.259387pt;}
.y174{bottom:844.347067pt;}
.y93{bottom:845.064995pt;}
.y1c7{bottom:845.392283pt;}
.y1d8{bottom:845.789307pt;}
.y192{bottom:846.027067pt;}
.y48{bottom:850.907067pt;}
.y97{bottom:853.632904pt;}
.y1a3{bottom:855.468347pt;}
.y1b5{bottom:856.494907pt;}
.y173{bottom:857.307067pt;}
.y9b{bottom:857.623943pt;}
.y191{bottom:858.347067pt;}
.y9{bottom:858.587067pt;}
.y14c{bottom:862.107067pt;}
.y1c8{bottom:864.273257pt;}
.y1d9{bottom:864.511227pt;}
.y103{bottom:864.587067pt;}
.y6e{bottom:864.667067pt;}
.yee{bottom:864.708819pt;}
.y13d{bottom:864.724829pt;}
.y112{bottom:864.732767pt;}
.y1e{bottom:864.747067pt;}
.yb6{bottom:864.771577pt;}
.y172{bottom:870.347067pt;}
.y152{bottom:872.427067pt;}
.y1a4{bottom:876.109627pt;}
.y1b6{bottom:876.812347pt;}
.y8{bottom:876.987067pt;}
.y16d{bottom:880.347736pt;}
.y1c9{bottom:883.234891pt;}
.y171{bottom:883.307067pt;}
.y1da{bottom:883.387707pt;}
.y181{bottom:889.216827pt;}
.y46{bottom:889.383853pt;}
.y45{bottom:889.387067pt;}
.y91{bottom:894.591138pt;}
.y7{bottom:895.227067pt;}
.y170{bottom:896.347067pt;}
.y1a5{bottom:896.588987pt;}
.y1b7{bottom:897.291707pt;}
.y14b{bottom:899.547067pt;}
.y47{bottom:900.507067pt;}
.y6d{bottom:901.387067pt;}
.yed{bottom:901.516422pt;}
.y13c{bottom:901.532432pt;}
.y111{bottom:901.540370pt;}
.y1d{bottom:901.547067pt;}
.yb5{bottom:901.567373pt;}
.y1db{bottom:902.109627pt;}
.y1ca{bottom:902.115865pt;}
.y151{bottom:906.827067pt;}
.y6{bottom:914.191067pt;}
.y1a6{bottom:917.230267pt;}
.y1b8{bottom:917.609147pt;}
.y1dc{bottom:920.831547pt;}
.y1cb{bottom:921.158158pt;}
.y16e{bottom:924.346926pt;}
.y44{bottom:932.747067pt;}
.y8f{bottom:933.626667pt;}
.y182{bottom:934.174267pt;}
.y5{bottom:935.627067pt;}
.y14a{bottom:937.067067pt;}
.y8e{bottom:937.133724pt;}
.y90{bottom:937.147067pt;}
.yec{bottom:938.324025pt;}
.y6c{bottom:938.334964pt;}
.y13b{bottom:938.340035pt;}
.y1c{bottom:938.347067pt;}
.y110{bottom:938.347973pt;}
.yb4{bottom:938.363169pt;}
.y1dd{bottom:939.708027pt;}
.y1cc{bottom:940.039132pt;}
.y150{bottom:941.227067pt;}
.y1ad{bottom:951.391707pt;}
.y19b{bottom:951.471707pt;}
.y4{bottom:956.587067pt;}
.y1de{bottom:958.429947pt;}
.y1cd{bottom:958.920107pt;}
.y1ac{bottom:965.467067pt;}
.y17c{bottom:965.547067pt;}
.y16f{bottom:968.346116pt;}
.y43{bottom:969.547067pt;}
.y149{bottom:974.511997pt;}
.y3{bottom:974.987067pt;}
.yeb{bottom:975.131628pt;}
.y13a{bottom:975.136397pt;}
.y6b{bottom:975.140957pt;}
.y1b{bottom:975.147067pt;}
.y10f{bottom:975.155577pt;}
.yb3{bottom:975.158965pt;}
.y14f{bottom:975.627067pt;}
.y1d3{bottom:988.668030pt;}
.y1c2{bottom:988.988030pt;}
.y2{bottom:993.387067pt;}
.y169{bottom:1002.427067pt;}
.y1d2{bottom:1002.747067pt;}
.y1c1{bottom:1002.987067pt;}
.y42{bottom:1006.747067pt;}
.y40{bottom:1007.226667pt;}
.y3f{bottom:1010.747067pt;}
.y1{bottom:1011.787067pt;}
.y102{bottom:1011.939231pt;}
.yea{bottom:1011.944000pt;}
.y6a{bottom:1011.945333pt;}
.y34{bottom:1011.947067pt;}
.yb2{bottom:1011.948400pt;}
.h2a{height:19.120000pt;}
.h6{height:19.520000pt;}
.h1f{height:19.600000pt;}
.h41{height:24.013125pt;}
.h36{height:25.859690pt;}
.ha{height:25.913423pt;}
.h1b{height:25.924911pt;}
.h29{height:25.948908pt;}
.h28{height:25.967156pt;}
.h2f{height:25.970862pt;}
.h15{height:26.000508pt;}
.hd{height:26.049053pt;}
.h51{height:28.035000pt;}
.h4f{height:28.041675pt;}
.h47{height:29.205906pt;}
.h4b{height:29.369026pt;}
.h49{height:29.370000pt;}
.h4a{height:29.594299pt;}
.h52{height:30.705000pt;}
.h50{height:30.712787pt;}
.h4c{height:32.040000pt;}
.h37{height:36.508866pt;}
.h2b{height:36.660588pt;}
.h32{height:36.665820pt;}
.h17{height:36.707674pt;}
.h42{height:37.131406pt;}
.h44{height:39.688125pt;}
.h45{height:41.040266pt;}
.h1{height:43.375000pt;}
.h12{height:44.423540pt;}
.h7{height:44.437500pt;}
.h1c{height:44.442810pt;}
.h3e{height:44.466014pt;}
.h3{height:44.468750pt;}
.h23{height:44.483419pt;}
.h31{height:44.490455pt;}
.h3f{height:44.497284pt;}
.h22{height:44.514701pt;}
.h26{height:44.521171pt;}
.h2e{height:44.521742pt;}
.h20{height:44.541558pt;}
.h43{height:44.542249pt;}
.h3a{height:44.547188pt;}
.h14{height:44.572881pt;}
.h10{height:44.655519pt;}
.h13{height:44.662226pt;}
.h48{height:44.722500pt;}
.h4e{height:44.734181pt;}
.h4d{height:45.054181pt;}
.h46{height:45.896188pt;}
.h38{height:46.819824pt;}
.h1d{height:46.937283pt;}
.h2c{height:46.964566pt;}
.h3d{height:46.994662pt;}
.h25{height:47.013167pt;}
.h34{height:47.020543pt;}
.h21{height:47.162012pt;}
.h2{height:50.531875pt;}
.h3b{height:58.661597pt;}
.h3c{height:58.880046pt;}
.h39{height:58.904803pt;}
.h5{height:59.011719pt;}
.h27{height:59.250801pt;}
.h30{height:60.453077pt;}
.hb{height:60.481605pt;}
.he{height:60.655519pt;}
.h16{height:60.861558pt;}
.h19{height:62.714369pt;}
.h1a{height:62.744628pt;}
.h40{height:62.821535pt;}
.h24{height:62.846124pt;}
.h33{height:62.856064pt;}
.h35{height:62.876964pt;}
.h2d{height:62.899496pt;}
.h18{height:62.928263pt;}
.hf{height:63.030134pt;}
.h11{height:63.044931pt;}
.h4{height:66.750000pt;}
.h9{height:78.717422pt;}
.h8{height:78.781250pt;}
.h1e{height:78.928263pt;}
.hc{height:79.044931pt;}
.h0{height:1122.666667pt;}
.w4{width:8.480000pt;}
.w2{width:8.800000pt;}
.w5{width:10.160000pt;}
.w3{width:10.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2b{left:128.560000pt;}
.x9{left:134.720000pt;}
.x4f{left:141.520000pt;}
.x4{left:151.200000pt;}
.x54{left:159.680000pt;}
.x6{left:164.960000pt;}
.x8{left:175.200000pt;}
.x5a{left:178.242619pt;}
.x5e{left:179.523200pt;}
.x5f{left:180.960000pt;}
.x59{left:182.240000pt;}
.x5d{left:183.360000pt;}
.x56{left:187.040000pt;}
.x85{left:189.280000pt;}
.x60{left:193.917387pt;}
.x57{left:195.600000pt;}
.x75{left:198.080000pt;}
.x7{left:199.200000pt;}
.x86{left:200.160000pt;}
.x61{left:208.631961pt;}
.x83{left:210.720000pt;}
.x4e{left:219.760000pt;}
.x76{left:222.396160pt;}
.x62{left:223.665118pt;}
.x4c{left:226.320000pt;}
.x4d{left:229.120624pt;}
.x63{left:236.781797pt;}
.x58{left:243.200000pt;}
.x77{left:246.712320pt;}
.x87{left:248.637440pt;}
.x64{left:251.496371pt;}
.x2{left:260.960000pt;}
.x55{left:264.080000pt;}
.x5c{left:265.120000pt;}
.x65{left:266.529528pt;}
.x78{left:271.035520pt;}
.x88{left:272.798720pt;}
.x3{left:276.729440pt;}
.x66{left:279.486915pt;}
.x4b{left:295.039944pt;}
.x89{left:297.114880pt;}
.x37{left:303.280000pt;}
.x1c{left:305.754555pt;}
.x44{left:309.766476pt;}
.x48{left:312.964022pt;}
.x79{left:319.667840pt;}
.x1a{left:321.200866pt;}
.x46{left:322.392512pt;}
.x3e{left:325.440000pt;}
.x27{left:326.800000pt;}
.x33{left:327.840000pt;}
.x67{left:337.070877pt;}
.x43{left:340.322664pt;}
.x39{left:341.280000pt;}
.x13{left:342.560547pt;}
.x7a{left:343.984000pt;}
.x10{left:346.086259pt;}
.x22{left:348.800000pt;}
.x68{left:352.104034pt;}
.x49{left:354.170914pt;}
.x26{left:357.120000pt;}
.x69{left:365.066399pt;}
.x3d{left:367.440000pt;}
.x29{left:370.560000pt;}
.x16{left:374.802718pt;}
.x36{left:376.714275pt;}
.x6a{left:379.780973pt;}
.x21{left:384.560000pt;}
.x5{left:385.920000pt;}
.x35{left:389.999998pt;}
.x2e{left:391.145938pt;}
.x7b{left:392.623360pt;}
.x32{left:393.588319pt;}
.x3f{left:395.440000pt;}
.x23{left:398.000000pt;}
.x12{left:399.601785pt;}
.x2d{left:404.663892pt;}
.x84{left:405.909760pt;}
.x6b{left:407.776495pt;}
.x34{left:409.200000pt;}
.x31{left:412.788321pt;}
.x53{left:413.913116pt;}
.x1{left:415.760000pt;}
.x2f{left:417.600000pt;}
.x2c{left:423.146971pt;}
.x38{left:425.040000pt;}
.xf{left:432.722389pt;}
.x15{left:436.563127pt;}
.x6c{left:437.688495pt;}
.x52{left:438.632967pt;}
.x30{left:441.994747pt;}
.xd{left:445.360000pt;}
.x25{left:446.800000pt;}
.x3a{left:448.240000pt;}
.x51{left:449.600000pt;}
.x6d{left:450.650860pt;}
.x11{left:454.560000pt;}
.x28{left:458.320000pt;}
.x50{left:461.280000pt;}
.xe{left:464.963859pt;}
.x8a{left:466.553600pt;}
.x3c{left:470.640000pt;}
.x24{left:472.240000pt;}
.x6e{left:480.403569pt;}
.x19{left:481.598530pt;}
.x2a{left:486.960000pt;}
.x7c{left:490.141440pt;}
.x6f{left:493.360956pt;}
.x1f{left:494.640000pt;}
.x14{left:495.840000pt;}
.x18{left:502.956147pt;}
.x70{left:508.080508pt;}
.xc{left:511.120000pt;}
.x7d{left:514.457600pt;}
.x71{left:523.118643pt;}
.x4a{left:529.680000pt;}
.x1e{left:536.240000pt;}
.x3b{left:539.600933pt;}
.x40{left:544.240000pt;}
.x1d{left:547.116656pt;}
.x72{left:550.954874pt;}
.x1b{left:554.640000pt;}
.xb{left:560.320000pt;}
.x47{left:562.880000pt;}
.x45{left:566.485178pt;}
.x42{left:571.120000pt;}
.xa{left:573.040000pt;}
.x41{left:577.360000pt;}
.x73{left:578.950396pt;}
.x17{left:584.320000pt;}
.x7e{left:587.413120pt;}
.x20{left:588.800000pt;}
.x74{left:593.669947pt;}
.x7f{left:611.729280pt;}
.x80{left:636.052480pt;}
.x5b{left:643.200000pt;}
.x81{left:660.368640pt;}
.x82{left:684.691840pt;}
}




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