
    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_829f53ebf1afe47828a05214.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c04b999a5c9f15df725f5069.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e483e10698455921973e4f29.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913086;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_50625da4d826fb1a7be8f2fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b1ef3460fb3d754ef93e5a28.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_3638e4de256a646d26db4483.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.909180;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_cb906519a7cdb02913ccee66.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_d53fa0d5e87a8f2e3e0e8068.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_c4643a1255da8fa7ee29dc0b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.159180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.m3{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);}
.m1{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.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);}
.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);}
.v5{vertical-align:-38.878126px;}
.v2{vertical-align:-33.121116px;}
.v7{vertical-align:-29.879400px;}
.v9{vertical-align:-20.160600px;}
.va{vertical-align:-18.000000px;}
.v3{vertical-align:-9.000000px;}
.vd{vertical-align:-6.117264px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:9.000000px;}
.vb{vertical-align:18.000000px;}
.v8{vertical-align:27.000000px;}
.v4{vertical-align:29.880000px;}
.v1{vertical-align:33.120000px;}
.vc{vertical-align:37.077264px;}
.v6{vertical-align:45.000000px;}
.ls31{letter-spacing:-0.720252px;}
.ls65{letter-spacing:-0.619840px;}
.ls6f{letter-spacing:-0.505008px;}
.ls8e{letter-spacing:-0.381994px;}
.ls53{letter-spacing:-0.270108px;}
.ls8d{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.172692px;}
.ls8f{letter-spacing:-0.165771px;}
.ls7f{letter-spacing:-0.151632px;}
.ls63{letter-spacing:-0.136941px;}
.ls93{letter-spacing:-0.122526px;}
.ls8c{letter-spacing:-0.115319px;}
.ls73{letter-spacing:-0.105599px;}
.ls50{letter-spacing:-0.105336px;}
.ls90{letter-spacing:-0.093697px;}
.ls8a{letter-spacing:-0.093600px;}
.ls80{letter-spacing:-0.086489px;}
.ls8b{letter-spacing:-0.079282px;}
.ls7d{letter-spacing:-0.079056px;}
.ls7c{letter-spacing:-0.072468px;}
.ls64{letter-spacing:-0.072074px;}
.ls17{letter-spacing:-0.072000px;}
.ls83{letter-spacing:-0.064867px;}
.ls13{letter-spacing:-0.064800px;}
.ls7b{letter-spacing:-0.059292px;}
.ls84{letter-spacing:-0.057660px;}
.ls14{letter-spacing:-0.057600px;}
.ls27{letter-spacing:-0.052704px;}
.ls6e{letter-spacing:-0.050452px;}
.ls89{letter-spacing:-0.050400px;}
.ls60{letter-spacing:-0.043245px;}
.ls1d{letter-spacing:-0.043200px;}
.ls7e{letter-spacing:-0.039528px;}
.ls57{letter-spacing:-0.036037px;}
.ls19{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.028836px;}
.ls62{letter-spacing:-0.028830px;}
.ls12{letter-spacing:-0.028800px;}
.ls6c{letter-spacing:-0.026400px;}
.ls35{letter-spacing:-0.026352px;}
.ls61{letter-spacing:-0.021622px;}
.ls15{letter-spacing:-0.021600px;}
.ls74{letter-spacing:-0.019800px;}
.ls52{letter-spacing:-0.014418px;}
.ls55{letter-spacing:-0.014415px;}
.ls16{letter-spacing:-0.014400px;}
.ls56{letter-spacing:-0.007207px;}
.ls18{letter-spacing:-0.007200px;}
.ls6d{letter-spacing:-0.006600px;}
.ls10{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.006600px;}
.ls9{letter-spacing:0.007200px;}
.ls4d{letter-spacing:0.007207px;}
.ls26{letter-spacing:0.009360px;}
.ls0{letter-spacing:0.009612px;}
.ls66{letter-spacing:0.013200px;}
.ls7{letter-spacing:0.014400px;}
.ls4f{letter-spacing:0.014415px;}
.ls44{letter-spacing:0.014418px;}
.ls30{letter-spacing:0.019764px;}
.ls5d{letter-spacing:0.019800px;}
.ls5{letter-spacing:0.021600px;}
.ls4e{letter-spacing:0.021622px;}
.ls41{letter-spacing:0.021627px;}
.ls76{letter-spacing:0.025272px;}
.ls21{letter-spacing:0.026352px;}
.ls5f{letter-spacing:0.026400px;}
.ls75{letter-spacing:0.027000px;}
.ls8{letter-spacing:0.028800px;}
.ls68{letter-spacing:0.028830px;}
.ls42{letter-spacing:0.028836px;}
.ls28{letter-spacing:0.032940px;}
.ls72{letter-spacing:0.033000px;}
.ls3{letter-spacing:0.036000px;}
.ls67{letter-spacing:0.036037px;}
.ls3f{letter-spacing:0.036045px;}
.ls6b{letter-spacing:0.036072px;}
.ls1e{letter-spacing:0.039528px;}
.ls71{letter-spacing:0.039600px;}
.ls6{letter-spacing:0.043200px;}
.ls6a{letter-spacing:0.043245px;}
.ls43{letter-spacing:0.043254px;}
.ls33{letter-spacing:0.046116px;}
.lsd{letter-spacing:0.050400px;}
.ls5a{letter-spacing:0.050452px;}
.ls25{letter-spacing:0.052704px;}
.ls70{letter-spacing:0.052800px;}
.lsa{letter-spacing:0.057600px;}
.ls5c{letter-spacing:0.057660px;}
.ls1b{letter-spacing:0.059292px;}
.ls58{letter-spacing:0.059399px;}
.ls1{letter-spacing:0.064800px;}
.ls69{letter-spacing:0.064867px;}
.ls1a{letter-spacing:0.065880px;}
.lsc{letter-spacing:0.072000px;}
.ls86{letter-spacing:0.072074px;}
.ls34{letter-spacing:0.072468px;}
.ls24{letter-spacing:0.079056px;}
.lsf{letter-spacing:0.079200px;}
.ls54{letter-spacing:0.079282px;}
.ls51{letter-spacing:0.079299px;}
.lse{letter-spacing:0.086400px;}
.ls36{letter-spacing:0.090180px;}
.ls20{letter-spacing:0.092232px;}
.lsb{letter-spacing:0.093600px;}
.ls2e{letter-spacing:0.100800px;}
.ls23{letter-spacing:0.105408px;}
.ls4{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.128196px;}
.ls1f{letter-spacing:0.129744px;}
.ls2b{letter-spacing:0.130680px;}
.ls2c{letter-spacing:0.144936px;}
.ls2a{letter-spacing:0.156240px;}
.ls1c{letter-spacing:0.158112px;}
.ls2d{letter-spacing:0.171288px;}
.ls7a{letter-spacing:0.172979px;}
.ls2{letter-spacing:0.180000px;}
.ls78{letter-spacing:0.209844px;}
.ls79{letter-spacing:0.210312px;}
.ls5b{letter-spacing:0.245053px;}
.ls82{letter-spacing:0.253764px;}
.ls2f{letter-spacing:0.288000px;}
.ls77{letter-spacing:0.329400px;}
.ls81{letter-spacing:0.338750px;}
.ls29{letter-spacing:0.488304px;}
.ls40{letter-spacing:1.170000px;}
.ls4b{letter-spacing:1.841004px;}
.ls92{letter-spacing:3.579429px;}
.ls91{letter-spacing:8.985893px;}
.ls87{letter-spacing:10.419152px;}
.ls88{letter-spacing:10.420360px;}
.ls49{letter-spacing:31.719415px;}
.ls85{letter-spacing:33.984000px;}
.ls46{letter-spacing:77.219400px;}
.ls48{letter-spacing:84.329400px;}
.ls4c{letter-spacing:125.762807px;}
.ls4a{letter-spacing:231.151154px;}
.ls3a{letter-spacing:257.476708px;}
.ls38{letter-spacing:257.836624px;}
.ls3d{letter-spacing:257.856026px;}
.ls3b{letter-spacing:267.929400px;}
.ls59{letter-spacing:643.379550px;}
.ls37{letter-spacing:955.879309px;}
.ls3e{letter-spacing:955.898077px;}
.ls3c{letter-spacing:971.738472px;}
.ls39{letter-spacing:972.082728px;}
.ls47{letter-spacing:1026.577449px;}
.ls45{letter-spacing:1033.248581px;}
.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;}
}
.ws164{word-spacing:-72.074400px;}
.ws88{word-spacing:-72.000000px;}
.ws161{word-spacing:-65.880000px;}
.wsd4{word-spacing:-41.766187px;}
.wsd7{word-spacing:-41.739105px;}
.wsd2{word-spacing:-39.518777px;}
.wsd5{word-spacing:-39.493084px;}
.wsde{word-spacing:-38.363626px;}
.wse3{word-spacing:-38.294354px;}
.ws1a1{word-spacing:-18.069052px;}
.wse8{word-spacing:-18.058545px;}
.ws0{word-spacing:-18.036000px;}
.wsda{word-spacing:-18.022500px;}
.wse9{word-spacing:-18.018600px;}
.wsd9{word-spacing:-18.000000px;}
.ws1a3{word-spacing:-17.996978px;}
.wsd3{word-spacing:-17.995800px;}
.wsd6{word-spacing:-17.984100px;}
.ws1a0{word-spacing:-17.982563px;}
.ws1dd{word-spacing:-17.896074px;}
.ws1a2{word-spacing:-17.820000px;}
.wsdf{word-spacing:-16.529700px;}
.wse4{word-spacing:-16.499850px;}
.ws162{word-spacing:-16.489764px;}
.ws160{word-spacing:-16.470000px;}
.ws15f{word-spacing:-16.430472px;}
.ws15a{word-spacing:-16.394251px;}
.ws165{word-spacing:-12.223764px;}
.ws87{word-spacing:-11.970000px;}
.wsd8{word-spacing:-11.864664px;}
.ws103{word-spacing:-10.657200px;}
.ws86{word-spacing:-10.530000px;}
.ws163{word-spacing:-10.378368px;}
.wsdc{word-spacing:-6.398762px;}
.ws8{word-spacing:-0.468000px;}
.ws63{word-spacing:-0.432000px;}
.ws1ea{word-spacing:-0.374787px;}
.ws32{word-spacing:-0.374400px;}
.ws1e2{word-spacing:-0.353165px;}
.ws158{word-spacing:-0.266675px;}
.ws3b{word-spacing:-0.237600px;}
.ws1df{word-spacing:-0.216223px;}
.wsa{word-spacing:-0.187200px;}
.ws1f7{word-spacing:-0.180186px;}
.ws31{word-spacing:-0.180000px;}
.ws1eb{word-spacing:-0.165771px;}
.ws190{word-spacing:-0.158564px;}
.wsd1{word-spacing:-0.158400px;}
.ws1ae{word-spacing:-0.129734px;}
.ws1e1{word-spacing:-0.122526px;}
.ws101{word-spacing:-0.115319px;}
.ws2c{word-spacing:-0.115200px;}
.ws10b{word-spacing:-0.100904px;}
.ws1bd{word-spacing:-0.093697px;}
.wsc{word-spacing:-0.086400px;}
.ws9{word-spacing:-0.079200px;}
.ws16e{word-spacing:-0.072074px;}
.wscc{word-spacing:-0.072000px;}
.ws159{word-spacing:-0.064867px;}
.ws62{word-spacing:-0.064800px;}
.ws1c5{word-spacing:-0.057660px;}
.ws70{word-spacing:-0.057600px;}
.ws195{word-spacing:-0.050452px;}
.ws1be{word-spacing:-0.043245px;}
.wsf{word-spacing:-0.043200px;}
.wsfa{word-spacing:-0.036045px;}
.ws102{word-spacing:-0.036037px;}
.wsfd{word-spacing:-0.028830px;}
.ws2b{word-spacing:-0.028800px;}
.ws1dc{word-spacing:-0.021622px;}
.wse{word-spacing:-0.021600px;}
.ws1b6{word-spacing:-0.014415px;}
.wsb{word-spacing:-0.014400px;}
.ws8e{word-spacing:-0.013176px;}
.wsfb{word-spacing:-0.007209px;}
.wsfe{word-spacing:-0.007207px;}
.ws10{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
.ws15b{word-spacing:0.006600px;}
.ws128{word-spacing:0.007207px;}
.wsf9{word-spacing:0.007209px;}
.ws8f{word-spacing:0.013176px;}
.ws1c6{word-spacing:0.014415px;}
.wscd{word-spacing:0.019764px;}
.ws15c{word-spacing:0.019800px;}
.wsd{word-spacing:0.021600px;}
.ws1bf{word-spacing:0.021622px;}
.ws83{word-spacing:0.026352px;}
.ws15e{word-spacing:0.026400px;}
.wscf{word-spacing:0.028800px;}
.ws1c8{word-spacing:0.028830px;}
.ws89{word-spacing:0.032940px;}
.ws127{word-spacing:0.033000px;}
.ws1ba{word-spacing:0.036037px;}
.ws90{word-spacing:0.039528px;}
.ws125{word-spacing:0.039600px;}
.ws1d5{word-spacing:0.043245px;}
.wsb1{word-spacing:0.046116px;}
.ws129{word-spacing:0.046200px;}
.ws1d6{word-spacing:0.050452px;}
.ws8a{word-spacing:0.052704px;}
.ws126{word-spacing:0.052800px;}
.ws123{word-spacing:0.057660px;}
.wsa5{word-spacing:0.059292px;}
.ws124{word-spacing:0.059399px;}
.ws8c{word-spacing:0.065880px;}
.ws12b{word-spacing:0.065999px;}
.ws7b{word-spacing:0.072000px;}
.wsfc{word-spacing:0.072468px;}
.ws15d{word-spacing:0.079199px;}
.ws12a{word-spacing:0.085799px;}
.wsce{word-spacing:0.092232px;}
.ws4c{word-spacing:0.093600px;}
.ws166{word-spacing:0.164700px;}
.ws14c{word-spacing:0.165771px;}
.ws92{word-spacing:0.201600px;}
.wsb2{word-spacing:0.208800px;}
.ws14b{word-spacing:0.252260px;}
.ws91{word-spacing:0.259200px;}
.ws74{word-spacing:0.280800px;}
.ws20{word-spacing:0.316800px;}
.ws13a{word-spacing:0.317127px;}
.ws93{word-spacing:0.324000px;}
.ws73{word-spacing:0.331200px;}
.ws21{word-spacing:0.345600px;}
.ws1da{word-spacing:0.345957px;}
.ws75{word-spacing:0.352800px;}
.ws193{word-spacing:0.353165px;}
.ws194{word-spacing:0.374787px;}
.ws10c{word-spacing:0.432000px;}
.ws1db{word-spacing:0.439654px;}
.ws29{word-spacing:0.532800px;}
.ws81{word-spacing:0.547200px;}
.ws80{word-spacing:0.561600px;}
.ws12c{word-spacing:0.641462px;}
.ws3f{word-spacing:0.669600px;}
.ws12d{word-spacing:0.684707px;}
.ws3e{word-spacing:0.720000px;}
.ws28{word-spacing:0.727200px;}
.ws2a{word-spacing:0.741600px;}
.ws134{word-spacing:0.742366px;}
.ws82{word-spacing:0.885600px;}
.ws180{word-spacing:0.900930px;}
.ws11c{word-spacing:0.994627px;}
.ws17f{word-spacing:1.037871px;}
.ws11e{word-spacing:1.045079px;}
.ws17d{word-spacing:1.066701px;}
.ws65{word-spacing:1.101600px;}
.ws13e{word-spacing:1.109946px;}
.ws17e{word-spacing:1.117153px;}
.ws11b{word-spacing:1.131568px;}
.ws7c{word-spacing:1.296000px;}
.wsf7{word-spacing:1.326456px;}
.wsf8{word-spacing:1.333665px;}
.ws7d{word-spacing:1.339200px;}
.ws14e{word-spacing:1.347791px;}
.ws114{word-spacing:1.362206px;}
.ws64{word-spacing:1.382400px;}
.ws112{word-spacing:1.419866px;}
.ws14d{word-spacing:1.434281px;}
.ws113{word-spacing:1.441488px;}
.ws7e{word-spacing:1.483200px;}
.ws173{word-spacing:1.700956px;}
.ws9f{word-spacing:1.742400px;}
.ws153{word-spacing:1.751408px;}
.ws1e0{word-spacing:1.758615px;}
.ws133{word-spacing:1.765823px;}
.ws11d{word-spacing:1.794653px;}
.ws4d{word-spacing:1.800000px;}
.wsa0{word-spacing:1.828800px;}
.ws5c{word-spacing:1.857600px;}
.wsc9{word-spacing:2.008800px;}
.ws13d{word-spacing:2.025291px;}
.ws13b{word-spacing:2.039706px;}
.ws16a{word-spacing:2.054120px;}
.ws16b{word-spacing:2.068535px;}
.ws1cb{word-spacing:2.075743px;}
.ws5b{word-spacing:2.095200px;}
.wsca{word-spacing:2.124000px;}
.ws13c{word-spacing:2.133402px;}
.wsc7{word-spacing:2.145600px;}
.ws181{word-spacing:2.183854px;}
.ws182{word-spacing:2.205477px;}
.wsc8{word-spacing:2.268000px;}
.ws19d{word-spacing:2.320796px;}
.ws18a{word-spacing:2.421700px;}
.ws19a{word-spacing:2.428907px;}
.ws4f{word-spacing:2.455200px;}
.wsa4{word-spacing:2.484000px;}
.ws189{word-spacing:2.486567px;}
.wsa3{word-spacing:2.498400px;}
.ws18e{word-spacing:2.508189px;}
.ws1f2{word-spacing:2.558641px;}
.ws1c7{word-spacing:2.565849px;}
.ws4e{word-spacing:2.570400px;}
.ws18b{word-spacing:2.573056px;}
.ws18f{word-spacing:2.594678px;}
.ws19b{word-spacing:2.601886px;}
.ws17b{word-spacing:2.695583px;}
.wsf0{word-spacing:2.714400px;}
.wsf1{word-spacing:2.793600px;}
.wsbb{word-spacing:2.808000px;}
.ws1b{word-spacing:2.815200px;}
.ws6b{word-spacing:2.822400px;}
.wsed{word-spacing:2.836800px;}
.ws17c{word-spacing:2.846939px;}
.ws1c{word-spacing:2.880000px;}
.wsef{word-spacing:2.887200px;}
.wsee{word-spacing:2.952000px;}
.ws6a{word-spacing:3.074400px;}
.ws76{word-spacing:3.096000px;}
.ws175{word-spacing:3.142444px;}
.wsff{word-spacing:3.156859px;}
.ws77{word-spacing:3.160800px;}
.ws100{word-spacing:3.185688px;}
.wsb9{word-spacing:3.189600px;}
.ws176{word-spacing:3.200103px;}
.ws184{word-spacing:3.214518px;}
.ws174{word-spacing:3.221726px;}
.ws78{word-spacing:3.247200px;}
.wsb0{word-spacing:3.261600px;}
.wsae{word-spacing:3.268800px;}
.wsaf{word-spacing:3.276000px;}
.wsba{word-spacing:3.283200px;}
.ws177{word-spacing:3.344252px;}
.ws9e{word-spacing:3.441600px;}
.ws9a{word-spacing:3.492000px;}
.ws99{word-spacing:3.556800px;}
.ws111{word-spacing:3.567683px;}
.ws9d{word-spacing:3.585600px;}
.ws143{word-spacing:3.747869px;}
.ws141{word-spacing:3.827151px;}
.ws135{word-spacing:3.855980px;}
.ws1f1{word-spacing:3.863188px;}
.ws136{word-spacing:3.913640px;}
.ws137{word-spacing:3.920847px;}
.ws1f0{word-spacing:3.949677px;}
.ws1ee{word-spacing:3.956885px;}
.ws142{word-spacing:3.964092px;}
.ws1ef{word-spacing:3.971299px;}
.ws170{word-spacing:4.252390px;}
.ws16f{word-spacing:4.274012px;}
.wsf6{word-spacing:4.563297px;}
.wsf5{word-spacing:4.620969px;}
.ws191{word-spacing:4.627176px;}
.ws10a{word-spacing:4.641591px;}
.ws192{word-spacing:4.713666px;}
.ws1b8{word-spacing:4.872229px;}
.ws11a{word-spacing:4.879437px;}
.ws171{word-spacing:4.929889px;}
.wsad{word-spacing:4.953600px;}
.ws119{word-spacing:4.973134px;}
.ws45{word-spacing:4.975200px;}
.ws1de{word-spacing:4.980341px;}
.ws94{word-spacing:4.982400px;}
.ws95{word-spacing:4.989600px;}
.wsac{word-spacing:4.996800px;}
.ws196{word-spacing:5.023586px;}
.ws148{word-spacing:5.030793px;}
.ws197{word-spacing:5.038001px;}
.ws1b7{word-spacing:5.045208px;}
.ws1b9{word-spacing:5.052415px;}
.ws172{word-spacing:5.066830px;}
.ws44{word-spacing:5.256000px;}
.ws3a{word-spacing:5.313600px;}
.ws132{word-spacing:5.376750px;}
.ws131{word-spacing:5.434410px;}
.ws39{word-spacing:5.695200px;}
.ws139{word-spacing:5.737122px;}
.ws138{word-spacing:5.758745px;}
.ws154{word-spacing:5.765952px;}
.ws183{word-spacing:5.780367px;}
.ws155{word-spacing:5.794782px;}
.ws38{word-spacing:5.860800px;}
.ws7f{word-spacing:6.012000px;}
.ws146{word-spacing:6.018212px;}
.ws147{word-spacing:6.039835px;}
.ws16d{word-spacing:6.090287px;}
.ws98{word-spacing:6.091200px;}
.ws97{word-spacing:6.098400px;}
.ws96{word-spacing:6.127200px;}
.ws16c{word-spacing:6.220021px;}
.wsbe{word-spacing:6.228000px;}
.ws49{word-spacing:6.292800px;}
.ws19{word-spacing:6.350400px;}
.ws1a{word-spacing:6.379200px;}
.ws48{word-spacing:6.400800px;}
.wsbd{word-spacing:6.422400px;}
.ws5e{word-spacing:6.429600px;}
.ws18{word-spacing:6.472800px;}
.ws5d{word-spacing:6.494400px;}
.ws151{word-spacing:6.666882px;}
.ws152{word-spacing:6.681297px;}
.ws140{word-spacing:6.760579px;}
.ws13f{word-spacing:6.818238px;}
.ws150{word-spacing:6.832653px;}
.ws71{word-spacing:6.832800px;}
.ws14f{word-spacing:6.847068px;}
.ws1bb{word-spacing:6.861483px;}
.ws72{word-spacing:6.868800px;}
.ws1bc{word-spacing:6.875898px;}
.ws1c9{word-spacing:7.257892px;}
.ws1ca{word-spacing:7.279514px;}
.ws1d{word-spacing:7.862400px;}
.ws1e{word-spacing:7.891200px;}
.ws1d0{word-spacing:7.906562px;}
.ws1f{word-spacing:7.912800px;}
.ws1d1{word-spacing:7.928184px;}
.ws1cf{word-spacing:8.007466px;}
.ws145{word-spacing:8.137200px;}
.ws9b{word-spacing:8.208000px;}
.wsbf{word-spacing:8.229600px;}
.ws144{word-spacing:8.230896px;}
.wsc1{word-spacing:8.265600px;}
.ws9c{word-spacing:8.316000px;}
.wsc0{word-spacing:8.323200px;}
.ws1ac{word-spacing:8.627306px;}
.ws4b{word-spacing:8.654400px;}
.ws1a9{word-spacing:8.663343px;}
.ws1ad{word-spacing:8.721002px;}
.ws1ab{word-spacing:8.749832px;}
.ws185{word-spacing:8.893981px;}
.ws1ed{word-spacing:8.937226px;}
.ws4a{word-spacing:8.949600px;}
.ws1aa{word-spacing:8.973263px;}
.ws12e{word-spacing:8.987678px;}
.ws186{word-spacing:9.023715px;}
.ws1ec{word-spacing:9.045337px;}
.wsc3{word-spacing:9.208800px;}
.ws18d{word-spacing:9.261560px;}
.wscb{word-spacing:9.288000px;}
.ws59{word-spacing:9.309600px;}
.ws57{word-spacing:9.338400px;}
.ws1d8{word-spacing:9.340842px;}
.ws58{word-spacing:9.352800px;}
.wsc2{word-spacing:9.367200px;}
.wsc4{word-spacing:9.374400px;}
.wsbc{word-spacing:9.381600px;}
.ws18c{word-spacing:9.384087px;}
.ws1d9{word-spacing:9.434539px;}
.ws1d7{word-spacing:9.492198px;}
.ws12f{word-spacing:9.600310px;}
.ws56{word-spacing:9.648000px;}
.ws109{word-spacing:9.650762px;}
.ws108{word-spacing:9.694007px;}
.ws130{word-spacing:9.715629px;}
.ws1d3{word-spacing:9.939060px;}
.wsec{word-spacing:10.075179px;}
.ws1d2{word-spacing:10.090416px;}
.ws1d4{word-spacing:10.126453px;}
.ws1cd{word-spacing:10.248980px;}
.ws122{word-spacing:10.335469px;}
.ws1c2{word-spacing:10.393128px;}
.ws1cc{word-spacing:10.465203px;}
.ws1c3{word-spacing:10.472410px;}
.ws1c4{word-spacing:10.537277px;}
.ws1ce{word-spacing:10.587729px;}
.ws47{word-spacing:10.598400px;}
.ws61{word-spacing:10.728000px;}
.ws46{word-spacing:10.764000px;}
.ws198{word-spacing:10.789538px;}
.ws199{word-spacing:10.796745px;}
.ws60{word-spacing:11.102400px;}
.ws5f{word-spacing:11.109600px;}
.wsf4{word-spacing:11.433600px;}
.wsf2{word-spacing:11.462400px;}
.ws115{word-spacing:11.481452px;}
.wsf3{word-spacing:11.548800px;}
.ws120{word-spacing:12.079669px;}
.wsa1{word-spacing:12.182400px;}
.ws19c{word-spacing:12.187781px;}
.ws25{word-spacing:12.196800px;}
.wsa2{word-spacing:12.204000px;}
.ws121{word-spacing:12.295893px;}
.ws179{word-spacing:12.764376px;}
.ws178{word-spacing:12.951770px;}
.ws17a{word-spacing:12.995014px;}
.wsc5{word-spacing:13.557600px;}
.wsc6{word-spacing:13.608000px;}
.ws19f{word-spacing:13.614854px;}
.wsa8{word-spacing:13.644000px;}
.ws19e{word-spacing:13.658099px;}
.ws149{word-spacing:13.672514px;}
.ws14a{word-spacing:13.686929px;}
.ws2{word-spacing:14.158476px;}
.ws117{word-spacing:14.249109px;}
.ws187{word-spacing:14.263524px;}
.ws188{word-spacing:14.400465px;}
.ws116{word-spacing:14.407673px;}
.ws27{word-spacing:14.608800px;}
.ws118{word-spacing:14.631103px;}
.ws23{word-spacing:14.652000px;}
.ws26{word-spacing:14.680800px;}
.ws1e7{word-spacing:14.688763px;}
.ws22{word-spacing:14.745600px;}
.ws1c0{word-spacing:14.746422px;}
.ws1e6{word-spacing:14.753630px;}
.ws24{word-spacing:14.767200px;}
.ws1c1{word-spacing:14.775252px;}
.ws6f{word-spacing:14.817600px;}
.ws37{word-spacing:15.004800px;}
.ws6e{word-spacing:15.076800px;}
.ws36{word-spacing:15.084000px;}
.ws1f8{word-spacing:15.402299px;}
.ws43{word-spacing:15.494400px;}
.ws1f3{word-spacing:15.503203px;}
.ws1f4{word-spacing:15.539241px;}
.ws42{word-spacing:15.789600px;}
.ws10f{word-spacing:15.877990px;}
.ws110{word-spacing:15.950065px;}
.ws16{word-spacing:16.142400px;}
.ws17{word-spacing:16.228800px;}
.ws1a5{word-spacing:16.476208px;}
.ws33{word-spacing:16.502400px;}
.ws1a4{word-spacing:16.541075px;}
.ws1a8{word-spacing:16.757298px;}
.ws1a7{word-spacing:16.850995px;}
.ws1a6{word-spacing:16.923069px;}
.ws51{word-spacing:17.582400px;}
.wsaa{word-spacing:17.704800px;}
.ws50{word-spacing:17.740800px;}
.wsab{word-spacing:17.856000px;}
.wsa9{word-spacing:17.992800px;}
.ws69{word-spacing:18.187200px;}
.ws68{word-spacing:18.324000px;}
.ws5{word-spacing:18.540000px;}
.ws11f{word-spacing:18.652855px;}
.ws3{word-spacing:18.655200px;}
.ws4{word-spacing:18.748800px;}
.ws7{word-spacing:18.777600px;}
.ws6{word-spacing:18.784800px;}
.wsd0{word-spacing:18.993600px;}
.ws2f{word-spacing:19.411200px;}
.ws1e5{word-spacing:20.101550px;}
.ws30{word-spacing:20.102400px;}
.ws1e4{word-spacing:20.173625px;}
.wsb4{word-spacing:20.426400px;}
.wsb3{word-spacing:20.491200px;}
.ws156{word-spacing:21.579075px;}
.ws157{word-spacing:21.622320px;}
.ws2e{word-spacing:22.600800px;}
.ws10e{word-spacing:22.638569px;}
.ws10d{word-spacing:22.696229px;}
.ws2d{word-spacing:22.874400px;}
.wsb5{word-spacing:23.018400px;}
.wsb6{word-spacing:23.032800px;}
.ws67{word-spacing:23.299200px;}
.ws66{word-spacing:23.342400px;}
.wsb7{word-spacing:23.637600px;}
.ws3d{word-spacing:23.716800px;}
.wsb8{word-spacing:23.745600px;}
.ws1f5{word-spacing:23.935908px;}
.ws3c{word-spacing:23.997600px;}
.ws1f6{word-spacing:24.029605px;}
.ws1e3{word-spacing:25.182795px;}
.ws6d{word-spacing:25.869600px;}
.ws6c{word-spacing:26.229600px;}
.ws1b0{word-spacing:27.200879px;}
.ws1af{word-spacing:27.352235px;}
.ws1b1{word-spacing:27.402687px;}
.ws41{word-spacing:27.799200px;}
.ws40{word-spacing:28.000800px;}
.ws53{word-spacing:28.216800px;}
.ws52{word-spacing:28.368000px;}
.ws35{word-spacing:28.735200px;}
.ws12{word-spacing:28.857600px;}
.ws34{word-spacing:28.944000px;}
.ws11{word-spacing:29.160000px;}
.ws1b2{word-spacing:30.984785px;}
.ws1b3{word-spacing:31.006407px;}
.ws1b5{word-spacing:31.662284px;}
.ws1b4{word-spacing:31.676699px;}
.ws13{word-spacing:33.991200px;}
.ws15{word-spacing:34.207200px;}
.ws14{word-spacing:34.221600px;}
.ws7a{word-spacing:34.833600px;}
.ws79{word-spacing:34.876800px;}
.ws5a{word-spacing:38.066400px;}
.ws1e8{word-spacing:38.523767px;}
.ws1e9{word-spacing:38.588634px;}
.wsa7{word-spacing:47.795940px;}
.ws55{word-spacing:53.244000px;}
.ws54{word-spacing:53.604000px;}
.wsea{word-spacing:81.007879px;}
.ws85{word-spacing:99.294336px;}
.ws84{word-spacing:165.628908px;}
.wsdd{word-spacing:166.213529px;}
.wseb{word-spacing:228.304913px;}
.ws8d{word-spacing:256.675068px;}
.ws168{word-spacing:274.706424px;}
.ws167{word-spacing:274.713012px;}
.ws169{word-spacing:290.188224px;}
.wsa6{word-spacing:384.422976px;}
.ws8b{word-spacing:393.474888px;}
.wsdb{word-spacing:394.245792px;}
.ws105{word-spacing:437.060104px;}
.ws106{word-spacing:671.656356px;}
.ws107{word-spacing:672.527448px;}
.ws104{word-spacing:732.113136px;}
.wse0{word-spacing:1255.910387px;}
.wse5{word-spacing:1257.050624px;}
.wse6{word-spacing:1888.810429px;}
.wse1{word-spacing:1890.111688px;}
.wse7{word-spacing:2175.361949px;}
.wse2{word-spacing:2181.070948px;}
._6b{margin-left:-1372.319303px;}
._69{margin-left:-1351.799303px;}
._6d{margin-left:-1331.999303px;}
._50{margin-left:-936.534374px;}
._44{margin-left:-934.041887px;}
._49{margin-left:-926.763879px;}
._56{margin-left:-922.047200px;}
._55{margin-left:-787.656639px;}
._48{margin-left:-783.401990px;}
._53{margin-left:-569.685102px;}
._47{margin-left:-563.717553px;}
._54{margin-left:-551.343178px;}
._2d{margin-left:-544.907998px;}
._2c{margin-left:-536.151553px;}
._1e{margin-left:-489.161836px;}
._2f{margin-left:-482.951703px;}
._30{margin-left:-466.032262px;}
._2b{margin-left:-454.314768px;}
._29{margin-left:-446.389418px;}
._25{margin-left:-395.274148px;}
._9{margin-left:-394.133472px;}
._32{margin-left:-389.485251px;}
._46{margin-left:-340.134943px;}
._52{margin-left:-338.273325px;}
._15{margin-left:-331.916616px;}
._16{margin-left:-298.495692px;}
._4a{margin-left:-295.822143px;}
._45{margin-left:-286.499372px;}
._51{margin-left:-285.355006px;}
._62{margin-left:-271.200163px;}
._17{margin-left:-259.560612px;}
._a{margin-left:-256.787064px;}
._38{margin-left:-254.499327px;}
._59{margin-left:-251.676597px;}
._67{margin-left:-249.931706px;}
._64{margin-left:-248.593215px;}
._5e{margin-left:-238.393038px;}
._2a{margin-left:-224.270858px;}
._27{margin-left:-216.352706px;}
._63{margin-left:-213.958210px;}
._61{margin-left:-212.517357px;}
._66{margin-left:-210.777336px;}
._68{margin-left:-205.362108px;}
._28{margin-left:-199.789372px;}
._65{margin-left:-197.330616px;}
._57{margin-left:-195.155853px;}
._26{margin-left:-193.872353px;}
._3b{margin-left:-191.315002px;}
._3c{margin-left:-184.466850px;}
._22{margin-left:-181.923141px;}
._5f{margin-left:-180.434922px;}
._5d{margin-left:-179.352150px;}
._21{margin-left:-177.114664px;}
._4f{margin-left:-175.921401px;}
._20{margin-left:-168.829397px;}
._37{margin-left:-166.203495px;}
._34{margin-left:-164.048004px;}
._1d{margin-left:-157.959934px;}
._4d{margin-left:-156.477977px;}
._3f{margin-left:-152.582355px;}
._43{margin-left:-151.498006px;}
._3a{margin-left:-143.512005px;}
._39{margin-left:-137.106053px;}
._40{margin-left:-128.098563px;}
._41{margin-left:-123.781005px;}
._4e{margin-left:-122.474759px;}
._1c{margin-left:-119.441724px;}
._3d{margin-left:-118.015446px;}
._42{margin-left:-116.402147px;}
._4b{margin-left:-105.823438px;}
._24{margin-left:-102.230541px;}
._31{margin-left:-98.171605px;}
._60{margin-left:-86.614416px;}
._36{margin-left:-79.688286px;}
._35{margin-left:-75.644037px;}
._1f{margin-left:-61.408868px;}
._23{margin-left:-56.370044px;}
._4c{margin-left:-52.575122px;}
._3e{margin-left:-50.098215px;}
._14{margin-left:-39.600468px;}
._6{margin-left:-29.514240px;}
._8{margin-left:-26.259768px;}
._7{margin-left:-25.205688px;}
._2{margin-left:-23.400576px;}
._3{margin-left:-14.401368px;}
._76{margin-left:-5.426658px;}
._0{margin-left:-1.548000px;}
._1{width:1.281600px;}
._1b{width:4.684068px;}
._58{width:6.645028px;}
._d{width:8.265600px;}
._75{width:10.007801px;}
._73{width:11.884752px;}
._72{width:20.515032px;}
._5{width:23.762916px;}
._70{width:27.359964px;}
._74{width:34.922988px;}
._4{width:38.882376px;}
._71{width:50.398200px;}
._10{width:66.747888px;}
._11{width:80.178768px;}
._12{width:83.778768px;}
._e{width:94.452156px;}
._f{width:103.714884px;}
._6f{width:117.536508px;}
._13{width:188.317980px;}
._5a{width:208.486148px;}
._1a{width:297.000216px;}
._b{width:325.289088px;}
._18{width:336.600684px;}
._c{width:413.976744px;}
._33{width:516.240000px;}
._19{width:524.892312px;}
._5b{width:618.512056px;}
._5c{width:941.292026px;}
._6e{width:1177.233618px;}
._6a{width:1241.640104px;}
._2e{width:1921.288752px;}
._6c{width:2519.259748px;}
.fc2{color:rgb(126,126,126);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:24.120000px;}
.fs1a{font-size:38.499000px;}
.fs16{font-size:38.569200px;}
.fs1e{font-size:41.949600px;}
.fsc{font-size:41.962800px;}
.fs8{font-size:41.991000px;}
.fs1d{font-size:42.043800px;}
.fs4{font-size:42.120000px;}
.fs20{font-size:42.628800px;}
.fs2{font-size:47.880000px;}
.fs17{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs19{font-size:65.999400px;}
.fs15{font-size:66.118800px;}
.fs18{font-size:69.752922px;}
.fs14{font-size:69.879101px;}
.fs12{font-size:71.896200px;}
.fs1f{font-size:71.914200px;}
.fsa{font-size:71.936400px;}
.fs6{font-size:71.983200px;}
.fs0{font-size:72.000000px;}
.fs1c{font-size:72.074400px;}
.fsf{font-size:72.090000px;}
.fs21{font-size:73.080000px;}
.fs13{font-size:75.955027px;}
.fs11{font-size:75.985011px;}
.fsd{font-size:76.027513px;}
.fs9{font-size:76.076843px;}
.fs1b{font-size:76.173233px;}
.fs10{font-size:76.189741px;}
.fse{font-size:76.210805px;}
.fs1{font-size:96.120000px;}
.fsb{font-size:107.905800px;}
.fs7{font-size:107.976000px;}
.y0{bottom:0.000000px;}
.y129{bottom:3.960450px;}
.y199{bottom:183.000773px;}
.y1cc{bottom:185.701612px;}
.y1f5{bottom:186.330832px;}
.y70{bottom:186.690450px;}
.y2c{bottom:192.360450px;}
.y9d{bottom:193.710450px;}
.y146{bottom:195.241147px;}
.y57{bottom:201.630450px;}
.y198{bottom:201.990450px;}
.y6f{bottom:206.040450px;}
.y1cb{bottom:206.401379px;}
.y1f4{bottom:207.030915px;}
.y2b{bottom:213.060450px;}
.y9c{bottom:214.410450px;}
.y145{bottom:215.940915px;}
.y197{bottom:221.610252px;}
.y6e{bottom:222.600450px;}
.y1ca{bottom:227.101147px;}
.y8d{bottom:227.280450px;}
.y1f3{bottom:227.730682px;}
.y56{bottom:229.620600px;}
.y2a{bottom:233.760450px;}
.y189{bottom:234.666723px;}
.y9b{bottom:235.110450px;}
.y196{bottom:235.830450px;}
.y144{bottom:236.640682px;}
.y168{bottom:240.420450px;}
.y1c9{bottom:247.800915px;}
.y8c{bottom:247.980450px;}
.y1f2{bottom:248.430682px;}
.y55{bottom:250.140450px;}
.y29{bottom:254.460450px;}
.y188{bottom:255.366490px;}
.y9a{bottom:255.810450px;}
.y143{bottom:257.341077px;}
.y167{bottom:260.760194px;}
.y1c8{bottom:268.500682px;}
.y8b{bottom:268.590450px;}
.y1f1{bottom:269.130915px;}
.y54{bottom:270.480450px;}
.y28{bottom:275.160450px;}
.y187{bottom:276.066258px;}
.y99{bottom:276.510450px;}
.y142{bottom:278.040845px;}
.y166{bottom:279.749872px;}
.y1c7{bottom:289.200450px;}
.y8a{bottom:289.290450px;}
.y53{bottom:289.830450px;}
.y1f0{bottom:289.830682px;}
.y27{bottom:295.860450px;}
.y186{bottom:296.766026px;}
.y98{bottom:297.210450px;}
.y141{bottom:297.570450px;}
.y165{bottom:298.650450px;}
.y140{bottom:302.070450px;}
.y1c6{bottom:309.720450px;}
.y89{bottom:309.990450px;}
.y52{bottom:310.530450px;}
.y1ef{bottom:310.530915px;}
.y164{bottom:315.390342px;}
.y26{bottom:316.560450px;}
.y185{bottom:317.465793px;}
.y97{bottom:317.820450px;}
.y163{bottom:322.320621px;}
.y13f{bottom:327.179313px;}
.y162{bottom:329.160450px;}
.y1c5{bottom:330.420450px;}
.y88{bottom:330.690450px;}
.y51{bottom:331.230450px;}
.y1ee{bottom:331.230682px;}
.y161{bottom:334.560450px;}
.y25{bottom:337.260450px;}
.y184{bottom:338.165561px;}
.y96{bottom:338.340450px;}
.y13e{bottom:347.879956px;}
.y1c4{bottom:351.301065px;}
.y87{bottom:351.390450px;}
.y50{bottom:351.930450px;}
.y1ed{bottom:351.930915px;}
.y24{bottom:357.960450px;}
.y183{bottom:358.865329px;}
.y95{bottom:359.040450px;}
.y13d{bottom:368.580600px;}
.y1c3{bottom:372.000832px;}
.y86{bottom:372.090450px;}
.y4f{bottom:372.630450px;}
.y1ec{bottom:372.630682px;}
.y23{bottom:378.660450px;}
.y182{bottom:379.565096px;}
.y94{bottom:379.920450px;}
.y13c{bottom:389.550648px;}
.y1c2{bottom:392.700682px;}
.y85{bottom:392.790450px;}
.y4e{bottom:393.330450px;}
.y1eb{bottom:393.330915px;}
.y22{bottom:399.360450px;}
.y93{bottom:400.260690px;}
.y181{bottom:400.264864px;}
.y138{bottom:410.160567px;}
.y1c1{bottom:413.401529px;}
.y84{bottom:413.490450px;}
.y4d{bottom:413.850450px;}
.y1ea{bottom:414.030682px;}
.y92{bottom:419.250600px;}
.y21{bottom:420.060450px;}
.y180{bottom:420.964632px;}
.y137{bottom:423.030450px;}
.y13a{bottom:430.410600px;}
.y139{bottom:433.380806px;}
.y13b{bottom:433.831252px;}
.y6d{bottom:433.920450px;}
.y1c0{bottom:434.101297px;}
.y83{bottom:434.190450px;}
.y91{bottom:434.460600px;}
.y4c{bottom:434.640450px;}
.y1e9{bottom:434.730832px;}
.y20{bottom:440.760450px;}
.y17f{bottom:441.664399px;}
.y6c{bottom:454.620450px;}
.y1bf{bottom:454.801065px;}
.y82{bottom:454.890450px;}
.y4b{bottom:455.430450px;}
.y1e8{bottom:455.430682px;}
.y209{bottom:455.430915px;}
.y136{bottom:457.590171px;}
.y1f{bottom:461.460450px;}
.y17e{bottom:462.364167px;}
.y6b{bottom:475.320450px;}
.y1be{bottom:475.500832px;}
.y81{bottom:475.590450px;}
.y4a{bottom:476.130450px;}
.y1e7{bottom:476.130682px;}
.y1e{bottom:481.980450px;}
.y17d{bottom:483.063935px;}
.y6a{bottom:496.020450px;}
.y80{bottom:496.110450px;}
.y1bd{bottom:496.200682px;}
.y49{bottom:496.830450px;}
.y132{bottom:496.830576px;}
.y1e6{bottom:496.830832px;}
.y195{bottom:502.680840px;}
.y1d{bottom:502.860450px;}
.y17c{bottom:503.763702px;}
.y131{bottom:509.700600px;}
.y69{bottom:516.720450px;}
.y7f{bottom:516.810450px;}
.y1bc{bottom:516.900682px;}
.y134{bottom:517.170450px;}
.y48{bottom:517.530450px;}
.y1e5{bottom:517.530682px;}
.y133{bottom:520.140759px;}
.y135{bottom:520.590366px;}
.y194{bottom:521.581418px;}
.y1c{bottom:523.470450px;}
.y17b{bottom:524.463470px;}
.y169{bottom:526.260450px;}
.y68{bottom:537.420450px;}
.y7e{bottom:537.510450px;}
.y1bb{bottom:537.603099px;}
.y47{bottom:538.230450px;}
.y1e4{bottom:538.230775px;}
.y208{bottom:538.231240px;}
.y193{bottom:540.571095px;}
.y130{bottom:544.169872px;}
.y1b{bottom:544.170450px;}
.y17a{bottom:545.163238px;}
.y7d{bottom:558.030540px;}
.y67{bottom:558.120450px;}
.y1ba{bottom:558.302866px;}
.y46{bottom:558.840450px;}
.y1e3{bottom:558.840682px;}
.y207{bottom:558.840915px;}
.y192{bottom:559.560773px;}
.y1a{bottom:564.870450px;}
.y12f{bottom:564.870515px;}
.y179{bottom:565.863006px;}
.y160{bottom:567.840450px;}
.y7c{bottom:577.020450px;}
.y191{bottom:578.550450px;}
.y66{bottom:578.820450px;}
.y1b9{bottom:579.002634px;}
.y45{bottom:579.540450px;}
.y206{bottom:579.540682px;}
.y1e2{bottom:579.540915px;}
.y19{bottom:585.570450px;}
.y12e{bottom:585.571159px;}
.y15f{bottom:586.203563px;}
.y178{bottom:586.562773px;}
.y7b{bottom:596.370450px;}
.y190{bottom:597.900526px;}
.y65{bottom:599.520450px;}
.y1b8{bottom:599.702402px;}
.y44{bottom:600.240450px;}
.y1e1{bottom:600.240682px;}
.y205{bottom:600.240915px;}
.y12c{bottom:602.670000px;}
.y18{bottom:606.270450px;}
.y12d{bottom:606.630450px;}
.y15e{bottom:606.903331px;}
.y177{bottom:607.262541px;}
.y7a{bottom:612.930450px;}
.y18f{bottom:614.461422px;}
.y64{bottom:620.220450px;}
.y1b7{bottom:620.402169px;}
.y43{bottom:620.940450px;}
.y204{bottom:620.940682px;}
.y1e0{bottom:620.940915px;}
.y12b{bottom:626.880000px;}
.y17{bottom:626.970450px;}
.y15d{bottom:627.603099px;}
.y176{bottom:627.962309px;}
.y12a{bottom:630.840450px;}
.y63{bottom:640.920450px;}
.y1b6{bottom:641.101937px;}
.y42{bottom:641.640450px;}
.y1df{bottom:641.640682px;}
.y203{bottom:641.640915px;}
.y16{bottom:647.670450px;}
.y15c{bottom:648.302866px;}
.y175{bottom:648.662076px;}
.y128{bottom:651.180000px;}
.y127{bottom:655.140450px;}
.y62{bottom:661.620450px;}
.y1b5{bottom:661.801705px;}
.y41{bottom:662.340450px;}
.y1de{bottom:662.340682px;}
.y15{bottom:668.370450px;}
.y15b{bottom:669.002634px;}
.y174{bottom:669.361844px;}
.y126{bottom:676.110450px;}
.y61{bottom:681.870540px;}
.y1b4{bottom:682.501472px;}
.y40{bottom:683.040450px;}
.y1dd{bottom:683.040682px;}
.y14{bottom:689.070450px;}
.y15a{bottom:689.612309px;}
.y173{bottom:690.061612px;}
.y125{bottom:696.810450px;}
.y60{bottom:700.860450px;}
.y1b3{bottom:703.201240px;}
.y3f{bottom:703.740450px;}
.y202{bottom:703.740682px;}
.y1dc{bottom:703.740915px;}
.y13{bottom:709.770450px;}
.y159{bottom:710.312076px;}
.y172{bottom:710.761379px;}
.ydc{bottom:713.460450px;}
.ye8{bottom:719.397947px;}
.ydf{bottom:719.399745px;}
.y5f{bottom:720.210450px;}
.y105{bottom:720.839955px;}
.y113{bottom:720.840450px;}
.yee{bottom:720.926595px;}
.yf6{bottom:722.363525px;}
.yf3{bottom:722.365323px;}
.y1b2{bottom:723.901008px;}
.y10e{bottom:724.258652px;}
.y120{bottom:724.259331px;}
.y10b{bottom:724.260450px;}
.y3e{bottom:724.440450px;}
.y1db{bottom:724.440682px;}
.ye5{bottom:724.708652px;}
.yf5{bottom:730.373643px;}
.yf2{bottom:730.375442px;}
.y12{bottom:730.470450px;}
.y19d{bottom:730.560450px;}
.y158{bottom:731.011844px;}
.y171{bottom:731.461147px;}
.y115{bottom:733.620221px;}
.y102{bottom:733.980450px;}
.yef{bottom:735.056703px;}
.y5e{bottom:736.770450px;}
.yf1{bottom:738.115798px;}
.y10d{bottom:738.118997px;}
.y11c{bottom:738.119677px;}
.ye6{bottom:740.007725px;}
.ydd{bottom:740.009524px;}
.y1b1{bottom:744.600775px;}
.y3d{bottom:745.140450px;}
.y1da{bottom:745.140682px;}
.y114{bottom:746.130380px;}
.yf7{bottom:747.832607px;}
.yf4{bottom:747.834406px;}
.yf0{bottom:749.366651px;}
.y10c{bottom:749.459771px;}
.y11b{bottom:749.460450px;}
.y11{bottom:751.170450px;}
.y157{bottom:751.711612px;}
.y170{bottom:752.160915px;}
.y90{bottom:754.770540px;}
.y108{bottom:754.950466px;}
.y104{bottom:756.660450px;}
.ye7{bottom:757.468488px;}
.yde{bottom:757.470287px;}
.y19c{bottom:763.140450px;}
.y1b0{bottom:765.210682px;}
.y3c{bottom:765.840450px;}
.y201{bottom:765.840832px;}
.y116{bottom:770.070158px;}
.y10{bottom:771.960450px;}
.y156{bottom:772.411379px;}
.y16f{bottom:772.860682px;}
.y8f{bottom:773.760450px;}
.yec{bottom:774.927452px;}
.ye3{bottom:774.929251px;}
.y11f{bottom:777.898707px;}
.y124{bottom:777.990450px;}
.y1af{bottom:785.911379px;}
.y1d9{bottom:786.360600px;}
.y3b{bottom:786.540450px;}
.y200{bottom:786.540682px;}
.yf8{bottom:788.512642px;}
.y107{bottom:788.519657px;}
.y117{bottom:788.520152px;}
.y109{bottom:788.520706px;}
.ye9{bottom:788.607957px;}
.ye0{bottom:788.609756px;}
.y8e{bottom:788.970450px;}
.y100{bottom:790.039492px;}
.yfd{bottom:790.041290px;}
.y112{bottom:791.846496px;}
.y123{bottom:791.847175px;}
.y10f{bottom:791.848295px;}
.yf{bottom:792.660450px;}
.y155{bottom:793.111147px;}
.y16e{bottom:793.560450px;}
.yea{bottom:795.537231px;}
.ye1{bottom:795.539029px;}
.yff{bottom:797.959689px;}
.yfc{bottom:797.961488px;}
.y119{bottom:801.209703px;}
.y103{bottom:801.661665px;}
.yf9{bottom:802.732669px;}
.yfb{bottom:805.701844px;}
.y111{bottom:805.706842px;}
.y122{bottom:805.707521px;}
.y11e{bottom:805.709320px;}
.y1ae{bottom:806.611147px;}
.y3a{bottom:807.240450px;}
.y1ff{bottom:807.240682px;}
.y1d8{bottom:807.241612px;}
.y19b{bottom:808.950450px;}
.yeb{bottom:812.997994px;}
.ye2{bottom:812.999792px;}
.ye{bottom:813.360450px;}
.y118{bottom:813.810082px;}
.y154{bottom:813.810915px;}
.y16d{bottom:813.811245px;}
.y101{bottom:815.418654px;}
.yfe{bottom:815.420452px;}
.yfa{bottom:816.952697px;}
.y110{bottom:817.047616px;}
.y121{bottom:817.048295px;}
.y11d{bottom:817.050093px;}
.y10a{bottom:822.540997px;}
.y106{bottom:824.249932px;}
.y1ad{bottom:827.310915px;}
.y39{bottom:827.940450px;}
.y1fe{bottom:827.940682px;}
.y1d7{bottom:827.941379px;}
.yed{bottom:830.456958px;}
.ye4{bottom:830.458756px;}
.y16c{bottom:832.800923px;}
.y153{bottom:834.510682px;}
.y79{bottom:837.030450px;}
.y11a{bottom:837.659640px;}
.yd{bottom:842.970450px;}
.y18e{bottom:843.331877px;}
.y1ac{bottom:848.010682px;}
.y38{bottom:848.640450px;}
.y1fd{bottom:848.640682px;}
.y1d6{bottom:848.641147px;}
.y16b{bottom:851.790600px;}
.y152{bottom:855.210450px;}
.yc{bottom:855.570450px;}
.y78{bottom:857.730450px;}
.y16a{bottom:867.001110px;}
.y1ab{bottom:868.710450px;}
.y37{bottom:869.340450px;}
.y1fc{bottom:869.340832px;}
.y1d5{bottom:869.340915px;}
.y151{bottom:875.730450px;}
.ydb{bottom:876.270450px;}
.y77{bottom:878.430450px;}
.yb{bottom:884.550450px;}
.y36{bottom:890.040450px;}
.y1d4{bottom:890.040682px;}
.y1aa{bottom:894.270450px;}
.y150{bottom:896.430450px;}
.ya{bottom:896.970450px;}
.y76{bottom:899.130450px;}
.y35{bottom:910.740450px;}
.y1fb{bottom:910.740915px;}
.y14f{bottom:917.311612px;}
.yab{bottom:919.468090px;}
.ya2{bottom:919.469889px;}
.y75{bottom:919.830450px;}
.yc1{bottom:920.910027px;}
.ycc{bottom:920.910450px;}
.yb1{bottom:920.997733px;}
.y1a9{bottom:921.450450px;}
.yb6{bottom:922.439196px;}
.yc6{bottom:924.330450px;}
.yd9{bottom:924.330931px;}
.ya8{bottom:924.778650px;}
.y9f{bottom:924.780450px;}
.y9{bottom:925.950729px;}
.yb5{bottom:930.449127px;}
.y1d3{bottom:931.260450px;}
.y34{bottom:931.440450px;}
.y1fa{bottom:931.440682px;}
.yce{bottom:933.690411px;}
.ybe{bottom:934.140450px;}
.yb2{bottom:935.218014px;}
.y14e{bottom:938.011379px;}
.yb4{bottom:938.189121px;}
.yc8{bottom:938.190815px;}
.yd5{bottom:938.191296px;}
.ya9{bottom:940.078680px;}
.ya0{bottom:940.080479px;}
.y74{bottom:940.530450px;}
.ycd{bottom:946.200580px;}
.y8{bottom:946.650450px;}
.yb7{bottom:947.908652px;}
.y1a8{bottom:948.630450px;}
.yb3{bottom:949.438295px;}
.yc7{bottom:949.529969px;}
.yd4{bottom:949.530450px;}
.y1d2{bottom:951.960450px;}
.y33{bottom:952.140450px;}
.y1f9{bottom:952.140682px;}
.yc4{bottom:955.020367px;}
.yc0{bottom:956.730450px;}
.yaa{bottom:957.538205px;}
.ya1{bottom:957.540004px;}
.y14d{bottom:958.711147px;}
.y7{bottom:958.890450px;}
.y73{bottom:961.230450px;}
.y18b{bottom:966.180450px;}
.ycf{bottom:970.140698px;}
.y32{bottom:972.840450px;}
.y1f8{bottom:972.840832px;}
.y1d1{bottom:972.841147px;}
.y5d{bottom:974.640450px;}
.yaf{bottom:974.997730px;}
.ya6{bottom:974.999529px;}
.y1a7{bottom:975.720450px;}
.yd8{bottom:977.971012px;}
.y9e{bottom:978.060450px;}
.y14c{bottom:979.410915px;}
.y6{bottom:979.590450px;}
.y72{bottom:984.990450px;}
.yc3{bottom:988.590071px;}
.yd0{bottom:988.590494px;}
.yac{bottom:988.678137px;}
.ya3{bottom:988.679937px;}
.ybc{bottom:990.121400px;}
.yc9{bottom:992.010854px;}
.yda{bottom:992.011335px;}
.y31{bottom:993.540450px;}
.y1f7{bottom:993.540682px;}
.y1d0{bottom:993.540915px;}
.yad{bottom:995.608320px;}
.ya4{bottom:995.610119px;}
.y5c{bottom:995.700450px;}
.ybb{bottom:998.131331px;}
.y1a1{bottom:999.029487px;}
.y1a5{bottom:999.030171px;}
.y1a3{bottom:999.030450px;}
.y14b{bottom:1000.110682px;}
.y5{bottom:1000.290450px;}
.yd2{bottom:1001.370455px;}
.ybf{bottom:1001.730727px;}
.yb8{bottom:1002.810239px;}
.ycb{bottom:1005.871219px;}
.yba{bottom:1005.871324px;}
.yd7{bottom:1005.871701px;}
.y18c{bottom:1007.041008px;}
.y1a0{bottom:1008.300450px;}
.y71{bottom:1010.190450px;}
.yae{bottom:1013.067845px;}
.ya5{bottom:1013.069644px;}
.yd1{bottom:1013.880624px;}
.y30{bottom:1014.240450px;}
.y1cf{bottom:1014.240682px;}
.ybd{bottom:1015.590856px;}
.y5b{bottom:1016.760450px;}
.yb9{bottom:1017.120499px;}
.yca{bottom:1017.210373px;}
.yd6{bottom:1017.210854px;}
.y1a2{bottom:1017.569766px;}
.y1a6{bottom:1017.570450px;}
.y1a4{bottom:1017.570729px;}
.y14a{bottom:1020.810450px;}
.y4{bottom:1021.170450px;}
.yc5{bottom:1022.700411px;}
.yc2{bottom:1024.410494px;}
.yb0{bottom:1030.617349px;}
.ya7{bottom:1030.619149px;}
.y2f{bottom:1034.940450px;}
.y1ce{bottom:1034.940682px;}
.y19f{bottom:1036.650450px;}
.y5a{bottom:1037.280450px;}
.yd3{bottom:1037.820742px;}
.y149{bottom:1041.150450px;}
.y19a{bottom:1042.770450px;}
.y3{bottom:1042.950756px;}
.y18a{bottom:1055.550450px;}
.y2e{bottom:1055.640450px;}
.y1f6{bottom:1055.640682px;}
.y1cd{bottom:1055.641437px;}
.y19e{bottom:1056.990450px;}
.y59{bottom:1057.350450px;}
.y147{bottom:1068.330450px;}
.y148{bottom:1068.510450px;}
.y2{bottom:1070.580450px;}
.y2d{bottom:1076.340450px;}
.y18d{bottom:1076.341205px;}
.y58{bottom:1077.690450px;}
.y1{bottom:1192.440450px;}
.h27{height:15.930000px;}
.h1e{height:16.020000px;}
.h38{height:16.759160px;}
.h24{height:20.430000px;}
.h21{height:20.520000px;}
.h18{height:29.156770px;}
.he{height:29.176364px;}
.h33{height:29.213050px;}
.h5{height:33.268184px;}
.h2b{height:34.980302px;}
.h2f{height:35.221975px;}
.h3a{height:37.520508px;}
.h17{height:38.868863px;}
.hd{height:38.894984px;}
.h9{height:40.070215px;}
.h1a{height:41.163704px;}
.h10{height:41.191367px;}
.h39{height:41.772832px;}
.h1d{height:43.909277px;}
.h7{height:45.775020px;}
.h2e{height:45.857982px;}
.h2a{height:45.940944px;}
.h19{height:49.983153px;}
.hf{height:50.015671px;}
.h1{height:50.027344px;}
.h32{height:50.079039px;}
.h20{height:50.089878px;}
.h8{height:59.145996px;}
.h3c{height:60.121934px;}
.h36{height:63.099523px;}
.h2d{height:64.610007px;}
.h29{height:64.726882px;}
.h30{height:64.742575px;}
.h2c{height:64.859702px;}
.h26{height:66.595259px;}
.h14{height:66.632496px;}
.ha{height:66.675845px;}
.h23{height:66.774771px;}
.h15{height:66.992178px;}
.hb{height:67.035761px;}
.h28{height:70.354827px;}
.h25{height:70.382600px;}
.h1c{height:70.421969px;}
.h12{height:70.467662px;}
.h35{height:70.544740px;}
.h31{height:70.556944px;}
.h1b{height:70.566517px;}
.h22{height:70.572235px;}
.h1f{height:70.591747px;}
.h11{height:70.612426px;}
.h6{height:70.628906px;}
.h34{height:70.701889px;}
.h37{height:71.688340px;}
.h45{height:72.560971px;}
.h40{height:72.561199px;}
.h3f{height:72.561571px;}
.h43{height:72.562171px;}
.h3{height:72.562500px;}
.h47{height:75.090590px;}
.h46{height:75.090732px;}
.h3e{height:75.091891px;}
.h42{height:75.092221px;}
.h44{height:75.092491px;}
.h3d{height:75.092821px;}
.h41{height:75.093421px;}
.h3b{height:80.986541px;}
.h4{height:81.374062px;}
.h2{height:96.870938px;}
.h16{height:99.949855px;}
.hc{height:100.014879px;}
.h13{height:111.632496px;}
.h0{height:1263.000000px;}
.w2{width:11.160000px;}
.w3{width:11.520000px;}
.w5{width:11.610000px;}
.w4{width:11.880000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x7a{left:129.603005px;}
.x17{left:132.210000px;}
.xb{left:136.260000px;}
.x8f{left:138.149956px;}
.x14{left:142.200000px;}
.x11{left:144.180000px;}
.x95{left:145.980000px;}
.x2{left:148.950000px;}
.x1a{left:151.650000px;}
.x9b{left:153.180000px;}
.x89{left:156.960059px;}
.x79{left:158.042354px;}
.x1b{left:159.659361px;}
.x10{left:163.530000px;}
.x12{left:167.940000px;}
.x94{left:172.979478px;}
.xa1{left:175.948198px;}
.x3{left:178.020000px;}
.x5c{left:188.643334px;}
.x86{left:192.423430px;}
.x76{left:193.681599px;}
.x3d{left:198.362190px;}
.x78{left:199.531901px;}
.x66{left:201.240000px;}
.x90{left:209.610807px;}
.x85{left:215.732768px;}
.x75{left:217.352129px;}
.x5{left:222.480000px;}
.x4{left:231.480000px;}
.x7f{left:237.694029px;}
.x84{left:239.672400px;}
.x6f{left:241.381288px;}
.x42{left:243.992224px;}
.x97{left:246.238635px;}
.x1d{left:247.769339px;}
.x59{left:253.172084px;}
.x3b{left:256.951116px;}
.x65{left:261.090000px;}
.xf{left:262.710000px;}
.x37{left:265.769361px;}
.x6{left:285.210000px;}
.x92{left:288.629132px;}
.x25{left:291.690000px;}
.x34{left:293.580000px;}
.x26{left:297.450000px;}
.x27{left:299.339595px;}
.x4a{left:302.220393px;}
.x28{left:304.468796px;}
.x8{left:308.970000px;}
.x83{left:313.743527px;}
.x4b{left:314.999943px;}
.x3a{left:316.801548px;}
.x9{left:324.990000px;}
.x29{left:326.248478px;}
.x5b{left:327.333117px;}
.x61{left:335.067879px;}
.x4c{left:336.869905px;}
.x39{left:340.561402px;}
.x7{left:343.170000px;}
.x7e{left:345.962745px;}
.x57{left:348.389542px;}
.x36{left:350.280447px;}
.x15{left:351.629226px;}
.x9c{left:352.800549px;}
.x8b{left:354.960000px;}
.x44{left:356.581682px;}
.x1f{left:358.468703px;}
.x74{left:360.092701px;}
.x8a{left:363.060000px;}
.x46{left:365.940607px;}
.x22{left:367.826519px;}
.x9a{left:370.620000px;}
.x5e{left:371.969793px;}
.x3e{left:373.861217px;}
.x49{left:376.831778px;}
.x88{left:381.061022px;}
.x60{left:382.856917px;}
.x98{left:398.070000px;}
.x50{left:402.842831px;}
.x2f{left:404.729669px;}
.x55{left:413.827519px;}
.x82{left:419.672564px;}
.x73{left:422.102217px;}
.x18{left:427.049352px;}
.x6e{left:429.569978px;}
.xc{left:431.639568px;}
.x91{left:441.810328px;}
.x81{left:443.252499px;}
.xe{left:446.490000px;}
.x9d{left:452.340144px;}
.x8d{left:453.510000px;}
.x56{left:461.970253px;}
.x35{left:463.860853px;}
.x6d{left:467.459648px;}
.x45{left:469.980424px;}
.x21{left:471.867437px;}
.x4f{left:479.613357px;}
.x2e{left:481.499752px;}
.x6c{left:486.359371px;}
.x8c{left:488.880000px;}
.x54{left:490.506326px;}
.x68{left:492.300000px;}
.x99{left:498.060000px;}
.x20{left:533.067554px;}
.x24{left:535.585166px;}
.x48{left:542.071487px;}
.x72{left:544.050079px;}
.x2d{left:548.280366px;}
.x33{left:550.797979px;}
.x67{left:554.850000px;}
.x53{left:557.284886px;}
.xd{left:558.360000px;}
.x9e{left:559.709388px;}
.x2c{left:561.240942px;}
.x32{left:563.758554px;}
.x87{left:566.280000px;}
.x77{left:567.450000px;}
.x52{left:570.244229px;}
.x7d{left:575.280960px;}
.x6b{left:576.449878px;}
.x71{left:578.519462px;}
.x13{left:587.790000px;}
.x38{left:593.370000px;}
.x58{left:595.530000px;}
.x3c{left:597.872549px;}
.x5a{left:602.371152px;}
.x80{left:609.391139px;}
.x2a{left:611.550000px;}
.x4d{left:613.710000px;}
.x30{left:616.138929px;}
.x7c{left:617.850135px;}
.x6a{left:619.200350px;}
.x51{left:620.642871px;}
.x2b{left:629.099504px;}
.x4e{left:631.170763px;}
.x31{left:633.598454px;}
.x5d{left:635.940000px;}
.x3f{left:638.372118px;}
.x5f{left:642.867026px;}
.x1e{left:647.459656px;}
.x43{left:649.620002px;}
.x23{left:652.044986px;}
.x96{left:654.570000px;}
.x47{left:656.551074px;}
.x1c{left:661.410000px;}
.x16{left:664.830000px;}
.x41{left:665.910000px;}
.x19{left:668.430000px;}
.x64{left:671.130000px;}
.x40{left:673.650000px;}
.x62{left:677.430000px;}
.xa0{left:678.688668px;}
.x9f{left:683.998596px;}
.x70{left:685.260000px;}
.x93{left:703.260000px;}
.x7b{left:705.690000px;}
.x69{left:707.940000px;}
.x63{left:744.479850px;}
.x8e{left:761.219850px;}
.xa{left:792.179850px;}
@media print{
.v5{vertical-align:-34.558335pt;}
.v2{vertical-align:-29.440992pt;}
.v7{vertical-align:-26.559467pt;}
.v9{vertical-align:-17.920533pt;}
.va{vertical-align:-16.000000pt;}
.v3{vertical-align:-8.000000pt;}
.vd{vertical-align:-5.437568pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:8.000000pt;}
.vb{vertical-align:16.000000pt;}
.v8{vertical-align:24.000000pt;}
.v4{vertical-align:26.560000pt;}
.v1{vertical-align:29.440000pt;}
.vc{vertical-align:32.957568pt;}
.v6{vertical-align:40.000000pt;}
.ls31{letter-spacing:-0.640224pt;}
.ls65{letter-spacing:-0.550969pt;}
.ls6f{letter-spacing:-0.448896pt;}
.ls8e{letter-spacing:-0.339551pt;}
.ls53{letter-spacing:-0.240096pt;}
.ls8d{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.153504pt;}
.ls8f{letter-spacing:-0.147352pt;}
.ls7f{letter-spacing:-0.134784pt;}
.ls63{letter-spacing:-0.121726pt;}
.ls93{letter-spacing:-0.108912pt;}
.ls8c{letter-spacing:-0.102506pt;}
.ls73{letter-spacing:-0.093866pt;}
.ls50{letter-spacing:-0.093632pt;}
.ls90{letter-spacing:-0.083286pt;}
.ls8a{letter-spacing:-0.083200pt;}
.ls80{letter-spacing:-0.076879pt;}
.ls8b{letter-spacing:-0.070473pt;}
.ls7d{letter-spacing:-0.070272pt;}
.ls7c{letter-spacing:-0.064416pt;}
.ls64{letter-spacing:-0.064066pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls83{letter-spacing:-0.057660pt;}
.ls13{letter-spacing:-0.057600pt;}
.ls7b{letter-spacing:-0.052704pt;}
.ls84{letter-spacing:-0.051253pt;}
.ls14{letter-spacing:-0.051200pt;}
.ls27{letter-spacing:-0.046848pt;}
.ls6e{letter-spacing:-0.044846pt;}
.ls89{letter-spacing:-0.044800pt;}
.ls60{letter-spacing:-0.038440pt;}
.ls1d{letter-spacing:-0.038400pt;}
.ls7e{letter-spacing:-0.035136pt;}
.ls57{letter-spacing:-0.032033pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.025632pt;}
.ls62{letter-spacing:-0.025626pt;}
.ls12{letter-spacing:-0.025600pt;}
.ls6c{letter-spacing:-0.023466pt;}
.ls35{letter-spacing:-0.023424pt;}
.ls61{letter-spacing:-0.019220pt;}
.ls15{letter-spacing:-0.019200pt;}
.ls74{letter-spacing:-0.017600pt;}
.ls52{letter-spacing:-0.012816pt;}
.ls55{letter-spacing:-0.012813pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls56{letter-spacing:-0.006407pt;}
.ls18{letter-spacing:-0.006400pt;}
.ls6d{letter-spacing:-0.005867pt;}
.ls10{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.005867pt;}
.ls9{letter-spacing:0.006400pt;}
.ls4d{letter-spacing:0.006407pt;}
.ls26{letter-spacing:0.008320pt;}
.ls0{letter-spacing:0.008544pt;}
.ls66{letter-spacing:0.011733pt;}
.ls7{letter-spacing:0.012800pt;}
.ls4f{letter-spacing:0.012813pt;}
.ls44{letter-spacing:0.012816pt;}
.ls30{letter-spacing:0.017568pt;}
.ls5d{letter-spacing:0.017600pt;}
.ls5{letter-spacing:0.019200pt;}
.ls4e{letter-spacing:0.019220pt;}
.ls41{letter-spacing:0.019224pt;}
.ls76{letter-spacing:0.022464pt;}
.ls21{letter-spacing:0.023424pt;}
.ls5f{letter-spacing:0.023466pt;}
.ls75{letter-spacing:0.024000pt;}
.ls8{letter-spacing:0.025600pt;}
.ls68{letter-spacing:0.025626pt;}
.ls42{letter-spacing:0.025632pt;}
.ls28{letter-spacing:0.029280pt;}
.ls72{letter-spacing:0.029333pt;}
.ls3{letter-spacing:0.032000pt;}
.ls67{letter-spacing:0.032033pt;}
.ls3f{letter-spacing:0.032040pt;}
.ls6b{letter-spacing:0.032064pt;}
.ls1e{letter-spacing:0.035136pt;}
.ls71{letter-spacing:0.035200pt;}
.ls6{letter-spacing:0.038400pt;}
.ls6a{letter-spacing:0.038440pt;}
.ls43{letter-spacing:0.038448pt;}
.ls33{letter-spacing:0.040992pt;}
.lsd{letter-spacing:0.044800pt;}
.ls5a{letter-spacing:0.044846pt;}
.ls25{letter-spacing:0.046848pt;}
.ls70{letter-spacing:0.046933pt;}
.lsa{letter-spacing:0.051200pt;}
.ls5c{letter-spacing:0.051253pt;}
.ls1b{letter-spacing:0.052704pt;}
.ls58{letter-spacing:0.052800pt;}
.ls1{letter-spacing:0.057600pt;}
.ls69{letter-spacing:0.057660pt;}
.ls1a{letter-spacing:0.058560pt;}
.lsc{letter-spacing:0.064000pt;}
.ls86{letter-spacing:0.064066pt;}
.ls34{letter-spacing:0.064416pt;}
.ls24{letter-spacing:0.070272pt;}
.lsf{letter-spacing:0.070400pt;}
.ls54{letter-spacing:0.070473pt;}
.ls51{letter-spacing:0.070488pt;}
.lse{letter-spacing:0.076800pt;}
.ls36{letter-spacing:0.080160pt;}
.ls20{letter-spacing:0.081984pt;}
.lsb{letter-spacing:0.083200pt;}
.ls2e{letter-spacing:0.089600pt;}
.ls23{letter-spacing:0.093696pt;}
.ls4{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.113952pt;}
.ls1f{letter-spacing:0.115328pt;}
.ls2b{letter-spacing:0.116160pt;}
.ls2c{letter-spacing:0.128832pt;}
.ls2a{letter-spacing:0.138880pt;}
.ls1c{letter-spacing:0.140544pt;}
.ls2d{letter-spacing:0.152256pt;}
.ls7a{letter-spacing:0.153759pt;}
.ls2{letter-spacing:0.160000pt;}
.ls78{letter-spacing:0.186528pt;}
.ls79{letter-spacing:0.186944pt;}
.ls5b{letter-spacing:0.217825pt;}
.ls82{letter-spacing:0.225568pt;}
.ls2f{letter-spacing:0.256000pt;}
.ls77{letter-spacing:0.292800pt;}
.ls81{letter-spacing:0.301111pt;}
.ls29{letter-spacing:0.434048pt;}
.ls40{letter-spacing:1.040000pt;}
.ls4b{letter-spacing:1.636448pt;}
.ls92{letter-spacing:3.181715pt;}
.ls91{letter-spacing:7.987460pt;}
.ls87{letter-spacing:9.261468pt;}
.ls88{letter-spacing:9.262542pt;}
.ls49{letter-spacing:28.195035pt;}
.ls85{letter-spacing:30.208000pt;}
.ls46{letter-spacing:68.639467pt;}
.ls48{letter-spacing:74.959467pt;}
.ls4c{letter-spacing:111.789162pt;}
.ls4a{letter-spacing:205.467693pt;}
.ls3a{letter-spacing:228.868185pt;}
.ls38{letter-spacing:229.188110pt;}
.ls3d{letter-spacing:229.205356pt;}
.ls3b{letter-spacing:238.159467pt;}
.ls59{letter-spacing:571.892933pt;}
.ls37{letter-spacing:849.670497pt;}
.ls3e{letter-spacing:849.687179pt;}
.ls3c{letter-spacing:863.767531pt;}
.ls39{letter-spacing:864.073536pt;}
.ls47{letter-spacing:912.513288pt;}
.ls45{letter-spacing:918.443183pt;}
.ws164{word-spacing:-64.066133pt;}
.ws88{word-spacing:-64.000000pt;}
.ws161{word-spacing:-58.560000pt;}
.wsd4{word-spacing:-37.125500pt;}
.wsd7{word-spacing:-37.101426pt;}
.wsd2{word-spacing:-35.127802pt;}
.wsd5{word-spacing:-35.104963pt;}
.wsde{word-spacing:-34.101001pt;}
.wse3{word-spacing:-34.039426pt;}
.ws1a1{word-spacing:-16.061380pt;}
.wse8{word-spacing:-16.052040pt;}
.ws0{word-spacing:-16.032000pt;}
.wsda{word-spacing:-16.020000pt;}
.wse9{word-spacing:-16.016533pt;}
.wsd9{word-spacing:-16.000000pt;}
.ws1a3{word-spacing:-15.997313pt;}
.wsd3{word-spacing:-15.996267pt;}
.wsd6{word-spacing:-15.985867pt;}
.ws1a0{word-spacing:-15.984500pt;}
.ws1dd{word-spacing:-15.907621pt;}
.ws1a2{word-spacing:-15.840000pt;}
.wsdf{word-spacing:-14.693067pt;}
.wse4{word-spacing:-14.666533pt;}
.ws162{word-spacing:-14.657568pt;}
.ws160{word-spacing:-14.640000pt;}
.ws15f{word-spacing:-14.604864pt;}
.ws15a{word-spacing:-14.572668pt;}
.ws165{word-spacing:-10.865568pt;}
.ws87{word-spacing:-10.640000pt;}
.wsd8{word-spacing:-10.546368pt;}
.ws103{word-spacing:-9.473067pt;}
.ws86{word-spacing:-9.360000pt;}
.ws163{word-spacing:-9.225216pt;}
.wsdc{word-spacing:-5.687788pt;}
.ws8{word-spacing:-0.416000pt;}
.ws63{word-spacing:-0.384000pt;}
.ws1ea{word-spacing:-0.333144pt;}
.ws32{word-spacing:-0.332800pt;}
.ws1e2{word-spacing:-0.313924pt;}
.ws158{word-spacing:-0.237045pt;}
.ws3b{word-spacing:-0.211200pt;}
.ws1df{word-spacing:-0.192198pt;}
.wsa{word-spacing:-0.166400pt;}
.ws1f7{word-spacing:-0.160165pt;}
.ws31{word-spacing:-0.160000pt;}
.ws1eb{word-spacing:-0.147352pt;}
.ws190{word-spacing:-0.140945pt;}
.wsd1{word-spacing:-0.140800pt;}
.ws1ae{word-spacing:-0.115319pt;}
.ws1e1{word-spacing:-0.108912pt;}
.ws101{word-spacing:-0.102506pt;}
.ws2c{word-spacing:-0.102400pt;}
.ws10b{word-spacing:-0.089693pt;}
.ws1bd{word-spacing:-0.083286pt;}
.wsc{word-spacing:-0.076800pt;}
.ws9{word-spacing:-0.070400pt;}
.ws16e{word-spacing:-0.064066pt;}
.wscc{word-spacing:-0.064000pt;}
.ws159{word-spacing:-0.057660pt;}
.ws62{word-spacing:-0.057600pt;}
.ws1c5{word-spacing:-0.051253pt;}
.ws70{word-spacing:-0.051200pt;}
.ws195{word-spacing:-0.044846pt;}
.ws1be{word-spacing:-0.038440pt;}
.wsf{word-spacing:-0.038400pt;}
.wsfa{word-spacing:-0.032040pt;}
.ws102{word-spacing:-0.032033pt;}
.wsfd{word-spacing:-0.025626pt;}
.ws2b{word-spacing:-0.025600pt;}
.ws1dc{word-spacing:-0.019220pt;}
.wse{word-spacing:-0.019200pt;}
.ws1b6{word-spacing:-0.012813pt;}
.wsb{word-spacing:-0.012800pt;}
.ws8e{word-spacing:-0.011712pt;}
.wsfb{word-spacing:-0.006408pt;}
.wsfe{word-spacing:-0.006407pt;}
.ws10{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
.ws15b{word-spacing:0.005867pt;}
.ws128{word-spacing:0.006407pt;}
.wsf9{word-spacing:0.006408pt;}
.ws8f{word-spacing:0.011712pt;}
.ws1c6{word-spacing:0.012813pt;}
.wscd{word-spacing:0.017568pt;}
.ws15c{word-spacing:0.017600pt;}
.wsd{word-spacing:0.019200pt;}
.ws1bf{word-spacing:0.019220pt;}
.ws83{word-spacing:0.023424pt;}
.ws15e{word-spacing:0.023466pt;}
.wscf{word-spacing:0.025600pt;}
.ws1c8{word-spacing:0.025626pt;}
.ws89{word-spacing:0.029280pt;}
.ws127{word-spacing:0.029333pt;}
.ws1ba{word-spacing:0.032033pt;}
.ws90{word-spacing:0.035136pt;}
.ws125{word-spacing:0.035200pt;}
.ws1d5{word-spacing:0.038440pt;}
.wsb1{word-spacing:0.040992pt;}
.ws129{word-spacing:0.041066pt;}
.ws1d6{word-spacing:0.044846pt;}
.ws8a{word-spacing:0.046848pt;}
.ws126{word-spacing:0.046933pt;}
.ws123{word-spacing:0.051253pt;}
.wsa5{word-spacing:0.052704pt;}
.ws124{word-spacing:0.052800pt;}
.ws8c{word-spacing:0.058560pt;}
.ws12b{word-spacing:0.058666pt;}
.ws7b{word-spacing:0.064000pt;}
.wsfc{word-spacing:0.064416pt;}
.ws15d{word-spacing:0.070399pt;}
.ws12a{word-spacing:0.076266pt;}
.wsce{word-spacing:0.081984pt;}
.ws4c{word-spacing:0.083200pt;}
.ws166{word-spacing:0.146400pt;}
.ws14c{word-spacing:0.147352pt;}
.ws92{word-spacing:0.179200pt;}
.wsb2{word-spacing:0.185600pt;}
.ws14b{word-spacing:0.224231pt;}
.ws91{word-spacing:0.230400pt;}
.ws74{word-spacing:0.249600pt;}
.ws20{word-spacing:0.281600pt;}
.ws13a{word-spacing:0.281891pt;}
.ws93{word-spacing:0.288000pt;}
.ws73{word-spacing:0.294400pt;}
.ws21{word-spacing:0.307200pt;}
.ws1da{word-spacing:0.307517pt;}
.ws75{word-spacing:0.313600pt;}
.ws193{word-spacing:0.313924pt;}
.ws194{word-spacing:0.333144pt;}
.ws10c{word-spacing:0.384000pt;}
.ws1db{word-spacing:0.390803pt;}
.ws29{word-spacing:0.473600pt;}
.ws81{word-spacing:0.486400pt;}
.ws80{word-spacing:0.499200pt;}
.ws12c{word-spacing:0.570189pt;}
.ws3f{word-spacing:0.595200pt;}
.ws12d{word-spacing:0.608628pt;}
.ws3e{word-spacing:0.640000pt;}
.ws28{word-spacing:0.646400pt;}
.ws2a{word-spacing:0.659200pt;}
.ws134{word-spacing:0.659881pt;}
.ws82{word-spacing:0.787200pt;}
.ws180{word-spacing:0.800827pt;}
.ws11c{word-spacing:0.884113pt;}
.ws17f{word-spacing:0.922552pt;}
.ws11e{word-spacing:0.928959pt;}
.ws17d{word-spacing:0.948179pt;}
.ws65{word-spacing:0.979200pt;}
.ws13e{word-spacing:0.986618pt;}
.ws17e{word-spacing:0.993025pt;}
.ws11b{word-spacing:1.005838pt;}
.ws7c{word-spacing:1.152000pt;}
.wsf7{word-spacing:1.179072pt;}
.wsf8{word-spacing:1.185480pt;}
.ws7d{word-spacing:1.190400pt;}
.ws14e{word-spacing:1.198037pt;}
.ws114{word-spacing:1.210850pt;}
.ws64{word-spacing:1.228800pt;}
.ws112{word-spacing:1.262103pt;}
.ws14d{word-spacing:1.274916pt;}
.ws113{word-spacing:1.281323pt;}
.ws7e{word-spacing:1.318400pt;}
.ws173{word-spacing:1.511961pt;}
.ws9f{word-spacing:1.548800pt;}
.ws153{word-spacing:1.556807pt;}
.ws1e0{word-spacing:1.563214pt;}
.ws133{word-spacing:1.569620pt;}
.ws11d{word-spacing:1.595247pt;}
.ws4d{word-spacing:1.600000pt;}
.wsa0{word-spacing:1.625600pt;}
.ws5c{word-spacing:1.651200pt;}
.wsc9{word-spacing:1.785600pt;}
.ws13d{word-spacing:1.800258pt;}
.ws13b{word-spacing:1.813072pt;}
.ws16a{word-spacing:1.825885pt;}
.ws16b{word-spacing:1.838698pt;}
.ws1cb{word-spacing:1.845105pt;}
.ws5b{word-spacing:1.862400pt;}
.wsca{word-spacing:1.888000pt;}
.ws13c{word-spacing:1.896358pt;}
.wsc7{word-spacing:1.907200pt;}
.ws181{word-spacing:1.941204pt;}
.ws182{word-spacing:1.960424pt;}
.wsc8{word-spacing:2.016000pt;}
.ws19d{word-spacing:2.062929pt;}
.ws18a{word-spacing:2.152622pt;}
.ws19a{word-spacing:2.159029pt;}
.ws4f{word-spacing:2.182400pt;}
.wsa4{word-spacing:2.208000pt;}
.ws189{word-spacing:2.210282pt;}
.wsa3{word-spacing:2.220800pt;}
.ws18e{word-spacing:2.229501pt;}
.ws1f2{word-spacing:2.274348pt;}
.ws1c7{word-spacing:2.280754pt;}
.ws4e{word-spacing:2.284800pt;}
.ws18b{word-spacing:2.287161pt;}
.ws18f{word-spacing:2.306381pt;}
.ws19b{word-spacing:2.312787pt;}
.ws17b{word-spacing:2.396073pt;}
.wsf0{word-spacing:2.412800pt;}
.wsf1{word-spacing:2.483200pt;}
.wsbb{word-spacing:2.496000pt;}
.ws1b{word-spacing:2.502400pt;}
.ws6b{word-spacing:2.508800pt;}
.wsed{word-spacing:2.521600pt;}
.ws17c{word-spacing:2.530612pt;}
.ws1c{word-spacing:2.560000pt;}
.wsef{word-spacing:2.566400pt;}
.wsee{word-spacing:2.624000pt;}
.ws6a{word-spacing:2.732800pt;}
.ws76{word-spacing:2.752000pt;}
.ws175{word-spacing:2.793283pt;}
.wsff{word-spacing:2.806097pt;}
.ws77{word-spacing:2.809600pt;}
.ws100{word-spacing:2.831723pt;}
.wsb9{word-spacing:2.835200pt;}
.ws176{word-spacing:2.844536pt;}
.ws184{word-spacing:2.857350pt;}
.ws174{word-spacing:2.863756pt;}
.ws78{word-spacing:2.886400pt;}
.wsb0{word-spacing:2.899200pt;}
.wsae{word-spacing:2.905600pt;}
.wsaf{word-spacing:2.912000pt;}
.wsba{word-spacing:2.918400pt;}
.ws177{word-spacing:2.972669pt;}
.ws9e{word-spacing:3.059200pt;}
.ws9a{word-spacing:3.104000pt;}
.ws99{word-spacing:3.161600pt;}
.ws111{word-spacing:3.171274pt;}
.ws9d{word-spacing:3.187200pt;}
.ws143{word-spacing:3.331439pt;}
.ws141{word-spacing:3.401912pt;}
.ws135{word-spacing:3.427538pt;}
.ws1f1{word-spacing:3.433945pt;}
.ws136{word-spacing:3.478791pt;}
.ws137{word-spacing:3.485198pt;}
.ws1f0{word-spacing:3.510824pt;}
.ws1ee{word-spacing:3.517231pt;}
.ws142{word-spacing:3.523637pt;}
.ws1ef{word-spacing:3.530044pt;}
.ws170{word-spacing:3.779902pt;}
.ws16f{word-spacing:3.799122pt;}
.wsf6{word-spacing:4.056264pt;}
.wsf5{word-spacing:4.107528pt;}
.ws191{word-spacing:4.113046pt;}
.ws10a{word-spacing:4.125859pt;}
.ws192{word-spacing:4.189925pt;}
.ws1b8{word-spacing:4.330871pt;}
.ws11a{word-spacing:4.337277pt;}
.ws171{word-spacing:4.382124pt;}
.wsad{word-spacing:4.403200pt;}
.ws119{word-spacing:4.420563pt;}
.ws45{word-spacing:4.422400pt;}
.ws1de{word-spacing:4.426970pt;}
.ws94{word-spacing:4.428800pt;}
.ws95{word-spacing:4.435200pt;}
.wsac{word-spacing:4.441600pt;}
.ws196{word-spacing:4.465409pt;}
.ws148{word-spacing:4.471816pt;}
.ws197{word-spacing:4.478223pt;}
.ws1b7{word-spacing:4.484629pt;}
.ws1b9{word-spacing:4.491036pt;}
.ws172{word-spacing:4.503849pt;}
.ws44{word-spacing:4.672000pt;}
.ws3a{word-spacing:4.723200pt;}
.ws132{word-spacing:4.779334pt;}
.ws131{word-spacing:4.830586pt;}
.ws39{word-spacing:5.062400pt;}
.ws139{word-spacing:5.099664pt;}
.ws138{word-spacing:5.118884pt;}
.ws154{word-spacing:5.125291pt;}
.ws183{word-spacing:5.138104pt;}
.ws155{word-spacing:5.150917pt;}
.ws38{word-spacing:5.209600pt;}
.ws7f{word-spacing:5.344000pt;}
.ws146{word-spacing:5.349522pt;}
.ws147{word-spacing:5.368742pt;}
.ws16d{word-spacing:5.413588pt;}
.ws98{word-spacing:5.414400pt;}
.ws97{word-spacing:5.420800pt;}
.ws96{word-spacing:5.446400pt;}
.ws16c{word-spacing:5.528907pt;}
.wsbe{word-spacing:5.536000pt;}
.ws49{word-spacing:5.593600pt;}
.ws19{word-spacing:5.644800pt;}
.ws1a{word-spacing:5.670400pt;}
.ws48{word-spacing:5.689600pt;}
.wsbd{word-spacing:5.708800pt;}
.ws5e{word-spacing:5.715200pt;}
.ws18{word-spacing:5.753600pt;}
.ws5d{word-spacing:5.772800pt;}
.ws151{word-spacing:5.926117pt;}
.ws152{word-spacing:5.938931pt;}
.ws140{word-spacing:6.009403pt;}
.ws13f{word-spacing:6.060656pt;}
.ws150{word-spacing:6.073469pt;}
.ws71{word-spacing:6.073600pt;}
.ws14f{word-spacing:6.086283pt;}
.ws1bb{word-spacing:6.099096pt;}
.ws72{word-spacing:6.105600pt;}
.ws1bc{word-spacing:6.111909pt;}
.ws1c9{word-spacing:6.451460pt;}
.ws1ca{word-spacing:6.470679pt;}
.ws1d{word-spacing:6.988800pt;}
.ws1e{word-spacing:7.014400pt;}
.ws1d0{word-spacing:7.028055pt;}
.ws1f{word-spacing:7.033600pt;}
.ws1d1{word-spacing:7.047275pt;}
.ws1cf{word-spacing:7.117747pt;}
.ws145{word-spacing:7.233066pt;}
.ws9b{word-spacing:7.296000pt;}
.wsbf{word-spacing:7.315200pt;}
.ws144{word-spacing:7.316352pt;}
.wsc1{word-spacing:7.347200pt;}
.ws9c{word-spacing:7.392000pt;}
.wsc0{word-spacing:7.398400pt;}
.ws1ac{word-spacing:7.668716pt;}
.ws4b{word-spacing:7.692800pt;}
.ws1a9{word-spacing:7.700749pt;}
.ws1ad{word-spacing:7.752002pt;}
.ws1ab{word-spacing:7.777629pt;}
.ws185{word-spacing:7.905761pt;}
.ws1ed{word-spacing:7.944201pt;}
.ws4a{word-spacing:7.955200pt;}
.ws1aa{word-spacing:7.976234pt;}
.ws12e{word-spacing:7.989047pt;}
.ws186{word-spacing:8.021080pt;}
.ws1ec{word-spacing:8.040300pt;}
.wsc3{word-spacing:8.185600pt;}
.ws18d{word-spacing:8.232498pt;}
.wscb{word-spacing:8.256000pt;}
.ws59{word-spacing:8.275200pt;}
.ws57{word-spacing:8.300800pt;}
.ws1d8{word-spacing:8.302971pt;}
.ws58{word-spacing:8.313600pt;}
.wsc2{word-spacing:8.326400pt;}
.wsc4{word-spacing:8.332800pt;}
.wsbc{word-spacing:8.339200pt;}
.ws18c{word-spacing:8.341411pt;}
.ws1d9{word-spacing:8.386257pt;}
.ws1d7{word-spacing:8.437510pt;}
.ws12f{word-spacing:8.533609pt;}
.ws56{word-spacing:8.576000pt;}
.ws109{word-spacing:8.578455pt;}
.ws108{word-spacing:8.616895pt;}
.ws130{word-spacing:8.636115pt;}
.ws1d3{word-spacing:8.834720pt;}
.wsec{word-spacing:8.955715pt;}
.ws1d2{word-spacing:8.969259pt;}
.ws1d4{word-spacing:9.001292pt;}
.ws1cd{word-spacing:9.110204pt;}
.ws122{word-spacing:9.187084pt;}
.ws1c2{word-spacing:9.238336pt;}
.ws1cc{word-spacing:9.302403pt;}
.ws1c3{word-spacing:9.308809pt;}
.ws1c4{word-spacing:9.366469pt;}
.ws1ce{word-spacing:9.411315pt;}
.ws47{word-spacing:9.420800pt;}
.ws61{word-spacing:9.536000pt;}
.ws46{word-spacing:9.568000pt;}
.ws198{word-spacing:9.590700pt;}
.ws199{word-spacing:9.597107pt;}
.ws60{word-spacing:9.868800pt;}
.ws5f{word-spacing:9.875200pt;}
.wsf4{word-spacing:10.163200pt;}
.wsf2{word-spacing:10.188800pt;}
.ws115{word-spacing:10.205735pt;}
.wsf3{word-spacing:10.265600pt;}
.ws120{word-spacing:10.737484pt;}
.wsa1{word-spacing:10.828800pt;}
.ws19c{word-spacing:10.833583pt;}
.ws25{word-spacing:10.841600pt;}
.wsa2{word-spacing:10.848000pt;}
.ws121{word-spacing:10.929682pt;}
.ws179{word-spacing:11.346112pt;}
.ws178{word-spacing:11.512684pt;}
.ws17a{word-spacing:11.551124pt;}
.wsc5{word-spacing:12.051200pt;}
.wsc6{word-spacing:12.096000pt;}
.ws19f{word-spacing:12.102093pt;}
.wsa8{word-spacing:12.128000pt;}
.ws19e{word-spacing:12.140532pt;}
.ws149{word-spacing:12.153345pt;}
.ws14a{word-spacing:12.166159pt;}
.ws2{word-spacing:12.585312pt;}
.ws117{word-spacing:12.665875pt;}
.ws187{word-spacing:12.678688pt;}
.ws188{word-spacing:12.800413pt;}
.ws116{word-spacing:12.806820pt;}
.ws27{word-spacing:12.985600pt;}
.ws118{word-spacing:13.005425pt;}
.ws23{word-spacing:13.024000pt;}
.ws26{word-spacing:13.049600pt;}
.ws1e7{word-spacing:13.056678pt;}
.ws22{word-spacing:13.107200pt;}
.ws1c0{word-spacing:13.107931pt;}
.ws1e6{word-spacing:13.114337pt;}
.ws24{word-spacing:13.126400pt;}
.ws1c1{word-spacing:13.133557pt;}
.ws6f{word-spacing:13.171200pt;}
.ws37{word-spacing:13.337600pt;}
.ws6e{word-spacing:13.401600pt;}
.ws36{word-spacing:13.408000pt;}
.ws1f8{word-spacing:13.690933pt;}
.ws43{word-spacing:13.772800pt;}
.ws1f3{word-spacing:13.780625pt;}
.ws1f4{word-spacing:13.812658pt;}
.ws42{word-spacing:14.035200pt;}
.ws10f{word-spacing:14.113769pt;}
.ws110{word-spacing:14.177835pt;}
.ws16{word-spacing:14.348800pt;}
.ws17{word-spacing:14.425600pt;}
.ws1a5{word-spacing:14.645518pt;}
.ws33{word-spacing:14.668800pt;}
.ws1a4{word-spacing:14.703178pt;}
.ws1a8{word-spacing:14.895376pt;}
.ws1a7{word-spacing:14.978662pt;}
.ws1a6{word-spacing:15.042728pt;}
.ws51{word-spacing:15.628800pt;}
.wsaa{word-spacing:15.737600pt;}
.ws50{word-spacing:15.769600pt;}
.wsab{word-spacing:15.872000pt;}
.wsa9{word-spacing:15.993600pt;}
.ws69{word-spacing:16.166400pt;}
.ws68{word-spacing:16.288000pt;}
.ws5{word-spacing:16.480000pt;}
.ws11f{word-spacing:16.580315pt;}
.ws3{word-spacing:16.582400pt;}
.ws4{word-spacing:16.665600pt;}
.ws7{word-spacing:16.691200pt;}
.ws6{word-spacing:16.697600pt;}
.wsd0{word-spacing:16.883200pt;}
.ws2f{word-spacing:17.254400pt;}
.ws1e5{word-spacing:17.868045pt;}
.ws30{word-spacing:17.868800pt;}
.ws1e4{word-spacing:17.932111pt;}
.wsb4{word-spacing:18.156800pt;}
.wsb3{word-spacing:18.214400pt;}
.ws156{word-spacing:19.181400pt;}
.ws157{word-spacing:19.219840pt;}
.ws2e{word-spacing:20.089600pt;}
.ws10e{word-spacing:20.123172pt;}
.ws10d{word-spacing:20.174425pt;}
.ws2d{word-spacing:20.332800pt;}
.wsb5{word-spacing:20.460800pt;}
.wsb6{word-spacing:20.473600pt;}
.ws67{word-spacing:20.710400pt;}
.ws66{word-spacing:20.748800pt;}
.wsb7{word-spacing:21.011200pt;}
.ws3d{word-spacing:21.081600pt;}
.wsb8{word-spacing:21.107200pt;}
.ws1f5{word-spacing:21.276363pt;}
.ws3c{word-spacing:21.331200pt;}
.ws1f6{word-spacing:21.359649pt;}
.ws1e3{word-spacing:22.384707pt;}
.ws6d{word-spacing:22.995200pt;}
.ws6c{word-spacing:23.315200pt;}
.ws1b0{word-spacing:24.178559pt;}
.ws1af{word-spacing:24.313098pt;}
.ws1b1{word-spacing:24.357944pt;}
.ws41{word-spacing:24.710400pt;}
.ws40{word-spacing:24.889600pt;}
.ws53{word-spacing:25.081600pt;}
.ws52{word-spacing:25.216000pt;}
.ws35{word-spacing:25.542400pt;}
.ws12{word-spacing:25.651200pt;}
.ws34{word-spacing:25.728000pt;}
.ws11{word-spacing:25.920000pt;}
.ws1b2{word-spacing:27.542031pt;}
.ws1b3{word-spacing:27.561251pt;}
.ws1b5{word-spacing:28.144252pt;}
.ws1b4{word-spacing:28.157066pt;}
.ws13{word-spacing:30.214400pt;}
.ws15{word-spacing:30.406400pt;}
.ws14{word-spacing:30.419200pt;}
.ws7a{word-spacing:30.963200pt;}
.ws79{word-spacing:31.001600pt;}
.ws5a{word-spacing:33.836800pt;}
.ws1e8{word-spacing:34.243348pt;}
.ws1e9{word-spacing:34.301008pt;}
.wsa7{word-spacing:42.485280pt;}
.ws55{word-spacing:47.328000pt;}
.ws54{word-spacing:47.648000pt;}
.wsea{word-spacing:72.007004pt;}
.ws85{word-spacing:88.261632pt;}
.ws84{word-spacing:147.225696pt;}
.wsdd{word-spacing:147.745359pt;}
.wseb{word-spacing:202.937701pt;}
.ws8d{word-spacing:228.155616pt;}
.ws168{word-spacing:244.183488pt;}
.ws167{word-spacing:244.189344pt;}
.ws169{word-spacing:257.945088pt;}
.wsa6{word-spacing:341.709312pt;}
.ws8b{word-spacing:349.755456pt;}
.wsdb{word-spacing:350.440704pt;}
.ws105{word-spacing:388.497870pt;}
.ws106{word-spacing:597.027872pt;}
.ws107{word-spacing:597.802176pt;}
.ws104{word-spacing:650.767232pt;}
.wse0{word-spacing:1116.364789pt;}
.wse5{word-spacing:1117.378332pt;}
.wse6{word-spacing:1678.942603pt;}
.wse1{word-spacing:1680.099278pt;}
.wse7{word-spacing:1933.655066pt;}
.wse2{word-spacing:1938.729732pt;}
._6b{margin-left:-1219.839381pt;}
._69{margin-left:-1201.599381pt;}
._6d{margin-left:-1183.999381pt;}
._50{margin-left:-832.474999pt;}
._44{margin-left:-830.259455pt;}
._49{margin-left:-823.790115pt;}
._56{margin-left:-819.597511pt;}
._55{margin-left:-700.139235pt;}
._48{margin-left:-696.357324pt;}
._53{margin-left:-506.386757pt;}
._47{margin-left:-501.082270pt;}
._54{margin-left:-490.082825pt;}
._2d{margin-left:-484.362665pt;}
._2c{margin-left:-476.579159pt;}
._1e{margin-left:-434.810521pt;}
._2f{margin-left:-429.290403pt;}
._30{margin-left:-414.250899pt;}
._2b{margin-left:-403.835350pt;}
._29{margin-left:-396.790594pt;}
._25{margin-left:-351.354798pt;}
._9{margin-left:-350.340864pt;}
._32{margin-left:-346.209112pt;}
._46{margin-left:-302.342171pt;}
._52{margin-left:-300.687400pt;}
._15{margin-left:-295.036992pt;}
._16{margin-left:-265.329504pt;}
._4a{margin-left:-262.953016pt;}
._45{margin-left:-254.666109pt;}
._51{margin-left:-253.648894pt;}
._62{margin-left:-241.066811pt;}
._17{margin-left:-230.720544pt;}
._a{margin-left:-228.255168pt;}
._38{margin-left:-226.221624pt;}
._59{margin-left:-223.712531pt;}
._67{margin-left:-222.161516pt;}
._64{margin-left:-220.971747pt;}
._5e{margin-left:-211.904923pt;}
._2a{margin-left:-199.351874pt;}
._27{margin-left:-192.313516pt;}
._63{margin-left:-190.185076pt;}
._61{margin-left:-188.904317pt;}
._66{margin-left:-187.357632pt;}
._68{margin-left:-182.544096pt;}
._28{margin-left:-177.590553pt;}
._65{margin-left:-175.404992pt;}
._57{margin-left:-173.471869pt;}
._26{margin-left:-172.330980pt;}
._3b{margin-left:-170.057779pt;}
._3c{margin-left:-163.970533pt;}
._22{margin-left:-161.709459pt;}
._5f{margin-left:-160.386597pt;}
._5d{margin-left:-159.424134pt;}
._21{margin-left:-157.435257pt;}
._4f{margin-left:-156.374578pt;}
._20{margin-left:-150.070575pt;}
._37{margin-left:-147.736440pt;}
._34{margin-left:-145.820448pt;}
._1d{margin-left:-140.408830pt;}
._4d{margin-left:-139.091536pt;}
._3f{margin-left:-135.628760pt;}
._43{margin-left:-134.664895pt;}
._3a{margin-left:-127.566227pt;}
._39{margin-left:-121.872047pt;}
._40{margin-left:-113.865389pt;}
._41{margin-left:-110.027560pt;}
._4e{margin-left:-108.866452pt;}
._1c{margin-left:-106.170421pt;}
._3d{margin-left:-104.902619pt;}
._42{margin-left:-103.468575pt;}
._4b{margin-left:-94.065278pt;}
._24{margin-left:-90.871592pt;}
._31{margin-left:-87.263649pt;}
._60{margin-left:-76.990592pt;}
._36{margin-left:-70.834032pt;}
._35{margin-left:-67.239144pt;}
._1f{margin-left:-54.585660pt;}
._23{margin-left:-50.106706pt;}
._4c{margin-left:-46.733442pt;}
._3e{margin-left:-44.531746pt;}
._14{margin-left:-35.200416pt;}
._6{margin-left:-26.234880pt;}
._8{margin-left:-23.342016pt;}
._7{margin-left:-22.405056pt;}
._2{margin-left:-20.800512pt;}
._3{margin-left:-12.801216pt;}
._76{margin-left:-4.823696pt;}
._0{margin-left:-1.376000pt;}
._1{width:1.139200pt;}
._1b{width:4.163616pt;}
._58{width:5.906692pt;}
._d{width:7.347200pt;}
._75{width:8.895823pt;}
._73{width:10.564224pt;}
._72{width:18.235584pt;}
._5{width:21.122592pt;}
._70{width:24.319968pt;}
._74{width:31.042656pt;}
._4{width:34.562112pt;}
._71{width:44.798400pt;}
._10{width:59.331456pt;}
._11{width:71.270016pt;}
._12{width:74.470016pt;}
._e{width:83.957472pt;}
._f{width:92.191008pt;}
._6f{width:104.476896pt;}
._13{width:167.393760pt;}
._5a{width:185.321020pt;}
._1a{width:264.000192pt;}
._b{width:289.145856pt;}
._18{width:299.200608pt;}
._c{width:367.979328pt;}
._33{width:458.880000pt;}
._19{width:466.570944pt;}
._5b{width:549.788494pt;}
._5c{width:836.704023pt;}
._6e{width:1046.429883pt;}
._6a{width:1103.680092pt;}
._2e{width:1707.812224pt;}
._6c{width:2239.341998pt;}
.fs22{font-size:21.440000pt;}
.fs1a{font-size:34.221333pt;}
.fs16{font-size:34.283733pt;}
.fs1e{font-size:37.288533pt;}
.fsc{font-size:37.300267pt;}
.fs8{font-size:37.325333pt;}
.fs1d{font-size:37.372267pt;}
.fs4{font-size:37.440000pt;}
.fs20{font-size:37.892267pt;}
.fs2{font-size:42.560000pt;}
.fs17{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs19{font-size:58.666133pt;}
.fs15{font-size:58.772267pt;}
.fs18{font-size:62.002598pt;}
.fs14{font-size:62.114756pt;}
.fs12{font-size:63.907733pt;}
.fs1f{font-size:63.923733pt;}
.fsa{font-size:63.943467pt;}
.fs6{font-size:63.985067pt;}
.fs0{font-size:64.000000pt;}
.fs1c{font-size:64.066133pt;}
.fsf{font-size:64.080000pt;}
.fs21{font-size:64.960000pt;}
.fs13{font-size:67.515580pt;}
.fs11{font-size:67.542232pt;}
.fsd{font-size:67.580012pt;}
.fs9{font-size:67.623861pt;}
.fs1b{font-size:67.709540pt;}
.fs10{font-size:67.724214pt;}
.fse{font-size:67.742938pt;}
.fs1{font-size:85.440000pt;}
.fsb{font-size:95.916267pt;}
.fs7{font-size:95.978667pt;}
.y0{bottom:0.000000pt;}
.y129{bottom:3.520400pt;}
.y199{bottom:162.667353pt;}
.y1cc{bottom:165.068099pt;}
.y1f5{bottom:165.627407pt;}
.y70{bottom:165.947067pt;}
.y2c{bottom:170.987067pt;}
.y9d{bottom:172.187067pt;}
.y146{bottom:173.547686pt;}
.y57{bottom:179.227067pt;}
.y198{bottom:179.547067pt;}
.y6f{bottom:183.147067pt;}
.y1cb{bottom:183.467893pt;}
.y1f4{bottom:184.027480pt;}
.y2b{bottom:189.387067pt;}
.y9c{bottom:190.587067pt;}
.y145{bottom:191.947480pt;}
.y197{bottom:196.986891pt;}
.y6e{bottom:197.867067pt;}
.y1ca{bottom:201.867686pt;}
.y8d{bottom:202.027067pt;}
.y1f3{bottom:202.427273pt;}
.y56{bottom:204.107200pt;}
.y2a{bottom:207.787067pt;}
.y189{bottom:208.592642pt;}
.y9b{bottom:208.987067pt;}
.y196{bottom:209.627067pt;}
.y144{bottom:210.347273pt;}
.y168{bottom:213.707067pt;}
.y1c9{bottom:220.267480pt;}
.y8c{bottom:220.427067pt;}
.y1f2{bottom:220.827273pt;}
.y55{bottom:222.347067pt;}
.y29{bottom:226.187067pt;}
.y188{bottom:226.992436pt;}
.y9a{bottom:227.387067pt;}
.y143{bottom:228.747624pt;}
.y167{bottom:231.786840pt;}
.y1c8{bottom:238.667273pt;}
.y8b{bottom:238.747067pt;}
.y1f1{bottom:239.227480pt;}
.y54{bottom:240.427067pt;}
.y28{bottom:244.587067pt;}
.y187{bottom:245.392229pt;}
.y99{bottom:245.787067pt;}
.y142{bottom:247.147418pt;}
.y166{bottom:248.666553pt;}
.y1c7{bottom:257.067067pt;}
.y8a{bottom:257.147067pt;}
.y53{bottom:257.627067pt;}
.y1f0{bottom:257.627273pt;}
.y27{bottom:262.987067pt;}
.y186{bottom:263.792023pt;}
.y98{bottom:264.187067pt;}
.y141{bottom:264.507067pt;}
.y165{bottom:265.467067pt;}
.y140{bottom:268.507067pt;}
.y1c6{bottom:275.307067pt;}
.y89{bottom:275.547067pt;}
.y52{bottom:276.027067pt;}
.y1ef{bottom:276.027480pt;}
.y164{bottom:280.346971pt;}
.y26{bottom:281.387067pt;}
.y185{bottom:282.191816pt;}
.y97{bottom:282.507067pt;}
.y163{bottom:286.507219pt;}
.y13f{bottom:290.826056pt;}
.y162{bottom:292.587067pt;}
.y1c5{bottom:293.707067pt;}
.y88{bottom:293.947067pt;}
.y51{bottom:294.427067pt;}
.y1ee{bottom:294.427273pt;}
.y161{bottom:297.387067pt;}
.y25{bottom:299.787067pt;}
.y184{bottom:300.591610pt;}
.y96{bottom:300.747067pt;}
.y13e{bottom:309.226628pt;}
.y1c4{bottom:312.267613pt;}
.y87{bottom:312.347067pt;}
.y50{bottom:312.827067pt;}
.y1ed{bottom:312.827480pt;}
.y24{bottom:318.187067pt;}
.y183{bottom:318.991403pt;}
.y95{bottom:319.147067pt;}
.y13d{bottom:327.627200pt;}
.y1c3{bottom:330.667407pt;}
.y86{bottom:330.747067pt;}
.y4f{bottom:331.227067pt;}
.y1ec{bottom:331.227273pt;}
.y23{bottom:336.587067pt;}
.y182{bottom:337.391197pt;}
.y94{bottom:337.707067pt;}
.y13c{bottom:346.267243pt;}
.y1c2{bottom:349.067273pt;}
.y85{bottom:349.147067pt;}
.y4e{bottom:349.627067pt;}
.y1eb{bottom:349.627480pt;}
.y22{bottom:354.987067pt;}
.y93{bottom:355.787280pt;}
.y181{bottom:355.790990pt;}
.y138{bottom:364.587171pt;}
.y1c1{bottom:367.468026pt;}
.y84{bottom:367.547067pt;}
.y4d{bottom:367.867067pt;}
.y1ea{bottom:368.027273pt;}
.y92{bottom:372.667200pt;}
.y21{bottom:373.387067pt;}
.y180{bottom:374.190784pt;}
.y137{bottom:376.027067pt;}
.y13a{bottom:382.587200pt;}
.y139{bottom:385.227383pt;}
.y13b{bottom:385.627779pt;}
.y6d{bottom:385.707067pt;}
.y1c0{bottom:385.867820pt;}
.y83{bottom:385.947067pt;}
.y91{bottom:386.187200pt;}
.y4c{bottom:386.347067pt;}
.y1e9{bottom:386.427407pt;}
.y20{bottom:391.787067pt;}
.y17f{bottom:392.590577pt;}
.y6c{bottom:404.107067pt;}
.y1bf{bottom:404.267613pt;}
.y82{bottom:404.347067pt;}
.y4b{bottom:404.827067pt;}
.y1e8{bottom:404.827273pt;}
.y209{bottom:404.827480pt;}
.y136{bottom:406.746819pt;}
.y1f{bottom:410.187067pt;}
.y17e{bottom:410.990371pt;}
.y6b{bottom:422.507067pt;}
.y1be{bottom:422.667407pt;}
.y81{bottom:422.747067pt;}
.y4a{bottom:423.227067pt;}
.y1e7{bottom:423.227273pt;}
.y1e{bottom:428.427067pt;}
.y17d{bottom:429.390164pt;}
.y6a{bottom:440.907067pt;}
.y80{bottom:440.987067pt;}
.y1bd{bottom:441.067273pt;}
.y49{bottom:441.627067pt;}
.y132{bottom:441.627178pt;}
.y1e6{bottom:441.627407pt;}
.y195{bottom:446.827413pt;}
.y1d{bottom:446.987067pt;}
.y17c{bottom:447.789958pt;}
.y131{bottom:453.067200pt;}
.y69{bottom:459.307067pt;}
.y7f{bottom:459.387067pt;}
.y1bc{bottom:459.467273pt;}
.y134{bottom:459.707067pt;}
.y48{bottom:460.027067pt;}
.y1e5{bottom:460.027273pt;}
.y133{bottom:462.347341pt;}
.y135{bottom:462.746992pt;}
.y194{bottom:463.627927pt;}
.y1c{bottom:465.307067pt;}
.y17b{bottom:466.189751pt;}
.y169{bottom:467.787067pt;}
.y68{bottom:477.707067pt;}
.y7e{bottom:477.787067pt;}
.y1bb{bottom:477.869421pt;}
.y47{bottom:478.427067pt;}
.y1e4{bottom:478.427356pt;}
.y208{bottom:478.427769pt;}
.y193{bottom:480.507640pt;}
.y130{bottom:483.706553pt;}
.y1b{bottom:483.707067pt;}
.y17a{bottom:484.589545pt;}
.y7d{bottom:496.027147pt;}
.y67{bottom:496.107067pt;}
.y1ba{bottom:496.269214pt;}
.y46{bottom:496.747067pt;}
.y1e3{bottom:496.747273pt;}
.y207{bottom:496.747480pt;}
.y192{bottom:497.387353pt;}
.y1a{bottom:502.107067pt;}
.y12f{bottom:502.107125pt;}
.y179{bottom:502.989338pt;}
.y160{bottom:504.747067pt;}
.y7c{bottom:512.907067pt;}
.y191{bottom:514.267067pt;}
.y66{bottom:514.507067pt;}
.y1b9{bottom:514.669008pt;}
.y45{bottom:515.147067pt;}
.y206{bottom:515.147273pt;}
.y1e2{bottom:515.147480pt;}
.y19{bottom:520.507067pt;}
.y12e{bottom:520.507697pt;}
.y15f{bottom:521.069834pt;}
.y178{bottom:521.389132pt;}
.y7b{bottom:530.107067pt;}
.y190{bottom:531.467134pt;}
.y65{bottom:532.907067pt;}
.y1b8{bottom:533.068801pt;}
.y44{bottom:533.547067pt;}
.y1e1{bottom:533.547273pt;}
.y205{bottom:533.547480pt;}
.y12c{bottom:535.706667pt;}
.y18{bottom:538.907067pt;}
.y12d{bottom:539.227067pt;}
.y15e{bottom:539.469627pt;}
.y177{bottom:539.788925pt;}
.y7a{bottom:544.827067pt;}
.y18f{bottom:546.187930pt;}
.y64{bottom:551.307067pt;}
.y1b7{bottom:551.468595pt;}
.y43{bottom:551.947067pt;}
.y204{bottom:551.947273pt;}
.y1e0{bottom:551.947480pt;}
.y12b{bottom:557.226667pt;}
.y17{bottom:557.307067pt;}
.y15d{bottom:557.869421pt;}
.y176{bottom:558.188719pt;}
.y12a{bottom:560.747067pt;}
.y63{bottom:569.707067pt;}
.y1b6{bottom:569.868388pt;}
.y42{bottom:570.347067pt;}
.y1df{bottom:570.347273pt;}
.y203{bottom:570.347480pt;}
.y16{bottom:575.707067pt;}
.y15c{bottom:576.269214pt;}
.y175{bottom:576.588512pt;}
.y128{bottom:578.826667pt;}
.y127{bottom:582.347067pt;}
.y62{bottom:588.107067pt;}
.y1b5{bottom:588.268182pt;}
.y41{bottom:588.747067pt;}
.y1de{bottom:588.747273pt;}
.y15{bottom:594.107067pt;}
.y15b{bottom:594.669008pt;}
.y174{bottom:594.988306pt;}
.y126{bottom:600.987067pt;}
.y61{bottom:606.107147pt;}
.y1b4{bottom:606.667975pt;}
.y40{bottom:607.147067pt;}
.y1dd{bottom:607.147273pt;}
.y14{bottom:612.507067pt;}
.y15a{bottom:612.988719pt;}
.y173{bottom:613.388099pt;}
.y125{bottom:619.387067pt;}
.y60{bottom:622.987067pt;}
.y1b3{bottom:625.067769pt;}
.y3f{bottom:625.547067pt;}
.y202{bottom:625.547273pt;}
.y1dc{bottom:625.547480pt;}
.y13{bottom:630.907067pt;}
.y159{bottom:631.388512pt;}
.y172{bottom:631.787893pt;}
.ydc{bottom:634.187067pt;}
.ye8{bottom:639.464842pt;}
.ydf{bottom:639.466440pt;}
.y5f{bottom:640.187067pt;}
.y105{bottom:640.746627pt;}
.y113{bottom:640.747067pt;}
.yee{bottom:640.823640pt;}
.yf6{bottom:642.100911pt;}
.yf3{bottom:642.102510pt;}
.y1b2{bottom:643.467562pt;}
.y10e{bottom:643.785468pt;}
.y120{bottom:643.786072pt;}
.y10b{bottom:643.787067pt;}
.y3e{bottom:643.947067pt;}
.y1db{bottom:643.947273pt;}
.ye5{bottom:644.185468pt;}
.yf5{bottom:649.221016pt;}
.yf2{bottom:649.222615pt;}
.y12{bottom:649.307067pt;}
.y19d{bottom:649.387067pt;}
.y158{bottom:649.788306pt;}
.y171{bottom:650.187686pt;}
.y115{bottom:652.106863pt;}
.y102{bottom:652.427067pt;}
.yef{bottom:653.383736pt;}
.y5e{bottom:654.907067pt;}
.yf1{bottom:656.102932pt;}
.y10d{bottom:656.105776pt;}
.y11c{bottom:656.106379pt;}
.ye6{bottom:657.784645pt;}
.ydd{bottom:657.786243pt;}
.y1b1{bottom:661.867356pt;}
.y3d{bottom:662.347067pt;}
.y1da{bottom:662.347273pt;}
.y114{bottom:663.227005pt;}
.yf7{bottom:664.740095pt;}
.yf4{bottom:664.741694pt;}
.yf0{bottom:666.103690pt;}
.y10c{bottom:666.186463pt;}
.y11b{bottom:666.187067pt;}
.y11{bottom:667.707067pt;}
.y157{bottom:668.188099pt;}
.y170{bottom:668.587480pt;}
.y90{bottom:670.907147pt;}
.y108{bottom:671.067081pt;}
.y104{bottom:672.587067pt;}
.ye7{bottom:673.305323pt;}
.yde{bottom:673.306921pt;}
.y19c{bottom:678.347067pt;}
.y1b0{bottom:680.187273pt;}
.y3c{bottom:680.747067pt;}
.y201{bottom:680.747407pt;}
.y116{bottom:684.506807pt;}
.y10{bottom:686.187067pt;}
.y156{bottom:686.587893pt;}
.y16f{bottom:686.987273pt;}
.y8f{bottom:687.787067pt;}
.yec{bottom:688.824402pt;}
.ye3{bottom:688.826001pt;}
.y11f{bottom:691.465518pt;}
.y124{bottom:691.547067pt;}
.y1af{bottom:698.587893pt;}
.y1d9{bottom:698.987200pt;}
.y3b{bottom:699.147067pt;}
.y200{bottom:699.147273pt;}
.yf8{bottom:700.900126pt;}
.y107{bottom:700.906362pt;}
.y117{bottom:700.906802pt;}
.y109{bottom:700.907294pt;}
.ye9{bottom:700.984851pt;}
.ye0{bottom:700.986450pt;}
.y8e{bottom:701.307067pt;}
.y100{bottom:702.257326pt;}
.yfd{bottom:702.258925pt;}
.y112{bottom:703.863552pt;}
.y123{bottom:703.864156pt;}
.y10f{bottom:703.865151pt;}
.yf{bottom:704.587067pt;}
.y155{bottom:704.987686pt;}
.y16e{bottom:705.387067pt;}
.yea{bottom:707.144205pt;}
.ye1{bottom:707.145804pt;}
.yff{bottom:709.297502pt;}
.yfc{bottom:709.299100pt;}
.y119{bottom:712.186402pt;}
.y103{bottom:712.588147pt;}
.yf9{bottom:713.540151pt;}
.yfb{bottom:716.179417pt;}
.y111{bottom:716.183860pt;}
.y122{bottom:716.184463pt;}
.y11e{bottom:716.186062pt;}
.y1ae{bottom:716.987686pt;}
.y3a{bottom:717.547067pt;}
.y1ff{bottom:717.547273pt;}
.y1d8{bottom:717.548099pt;}
.y19b{bottom:719.067067pt;}
.yeb{bottom:722.664883pt;}
.ye2{bottom:722.666482pt;}
.ye{bottom:722.987067pt;}
.y118{bottom:723.386740pt;}
.y154{bottom:723.387480pt;}
.y16d{bottom:723.387774pt;}
.y101{bottom:724.816581pt;}
.yfe{bottom:724.818180pt;}
.yfa{bottom:726.180175pt;}
.y110{bottom:726.264547pt;}
.y121{bottom:726.265151pt;}
.y11d{bottom:726.266749pt;}
.y10a{bottom:731.147553pt;}
.y106{bottom:732.666606pt;}
.y1ad{bottom:735.387480pt;}
.y39{bottom:735.947067pt;}
.y1fe{bottom:735.947273pt;}
.y1d7{bottom:735.947893pt;}
.yed{bottom:738.183963pt;}
.ye4{bottom:738.185561pt;}
.y16c{bottom:740.267487pt;}
.y153{bottom:741.787273pt;}
.y79{bottom:744.027067pt;}
.y11a{bottom:744.586347pt;}
.yd{bottom:749.307067pt;}
.y18e{bottom:749.628335pt;}
.y1ac{bottom:753.787273pt;}
.y38{bottom:754.347067pt;}
.y1fd{bottom:754.347273pt;}
.y1d6{bottom:754.347686pt;}
.y16b{bottom:757.147200pt;}
.y152{bottom:760.187067pt;}
.yc{bottom:760.507067pt;}
.y78{bottom:762.427067pt;}
.y16a{bottom:770.667653pt;}
.y1ab{bottom:772.187067pt;}
.y37{bottom:772.747067pt;}
.y1fc{bottom:772.747407pt;}
.y1d5{bottom:772.747480pt;}
.y151{bottom:778.427067pt;}
.ydb{bottom:778.907067pt;}
.y77{bottom:780.827067pt;}
.yb{bottom:786.267067pt;}
.y36{bottom:791.147067pt;}
.y1d4{bottom:791.147273pt;}
.y1aa{bottom:794.907067pt;}
.y150{bottom:796.827067pt;}
.ya{bottom:797.307067pt;}
.y76{bottom:799.227067pt;}
.y35{bottom:809.547067pt;}
.y1fb{bottom:809.547480pt;}
.y14f{bottom:815.388099pt;}
.yab{bottom:817.304969pt;}
.ya2{bottom:817.306568pt;}
.y75{bottom:817.627067pt;}
.yc1{bottom:818.586691pt;}
.ycc{bottom:818.587067pt;}
.yb1{bottom:818.664651pt;}
.y1a9{bottom:819.067067pt;}
.yb6{bottom:819.945952pt;}
.yc6{bottom:821.627067pt;}
.yd9{bottom:821.627494pt;}
.ya8{bottom:822.025467pt;}
.y9f{bottom:822.027067pt;}
.y9{bottom:823.067315pt;}
.yb5{bottom:827.065891pt;}
.y1d3{bottom:827.787067pt;}
.y34{bottom:827.947067pt;}
.y1fa{bottom:827.947273pt;}
.yce{bottom:829.947032pt;}
.ybe{bottom:830.347067pt;}
.yb2{bottom:831.304901pt;}
.y14e{bottom:833.787893pt;}
.yb4{bottom:833.945885pt;}
.yc8{bottom:833.947391pt;}
.yd5{bottom:833.947819pt;}
.ya9{bottom:835.625493pt;}
.ya0{bottom:835.627093pt;}
.y74{bottom:836.027067pt;}
.ycd{bottom:841.067182pt;}
.y8{bottom:841.467067pt;}
.yb7{bottom:842.585469pt;}
.y1a8{bottom:843.227067pt;}
.yb3{bottom:843.945151pt;}
.yc7{bottom:844.026639pt;}
.yd4{bottom:844.027067pt;}
.y1d2{bottom:846.187067pt;}
.y33{bottom:846.347067pt;}
.y1f9{bottom:846.347273pt;}
.yc4{bottom:848.906992pt;}
.yc0{bottom:850.427067pt;}
.yaa{bottom:851.145071pt;}
.ya1{bottom:851.146671pt;}
.y14d{bottom:852.187686pt;}
.y7{bottom:852.347067pt;}
.y73{bottom:854.427067pt;}
.y18b{bottom:858.827067pt;}
.ycf{bottom:862.347287pt;}
.y32{bottom:864.747067pt;}
.y1f8{bottom:864.747407pt;}
.y1d1{bottom:864.747686pt;}
.y5d{bottom:866.347067pt;}
.yaf{bottom:866.664649pt;}
.ya6{bottom:866.666248pt;}
.y1a7{bottom:867.307067pt;}
.yd8{bottom:869.307567pt;}
.y9e{bottom:869.387067pt;}
.y14c{bottom:870.587480pt;}
.y6{bottom:870.747067pt;}
.y72{bottom:875.547067pt;}
.yc3{bottom:878.746730pt;}
.yd0{bottom:878.747106pt;}
.yac{bottom:878.825011pt;}
.ya3{bottom:878.826610pt;}
.ybc{bottom:880.107911pt;}
.yc9{bottom:881.787426pt;}
.yda{bottom:881.787854pt;}
.y31{bottom:883.147067pt;}
.y1f7{bottom:883.147273pt;}
.y1d0{bottom:883.147480pt;}
.yad{bottom:884.985173pt;}
.ya4{bottom:884.986773pt;}
.y5c{bottom:885.067067pt;}
.ybb{bottom:887.227850pt;}
.y1a1{bottom:888.026211pt;}
.y1a5{bottom:888.026819pt;}
.y1a3{bottom:888.027067pt;}
.y14b{bottom:888.987273pt;}
.y5{bottom:889.147067pt;}
.yd2{bottom:890.107071pt;}
.ybf{bottom:890.427313pt;}
.yb8{bottom:891.386879pt;}
.ycb{bottom:894.107751pt;}
.yba{bottom:894.107844pt;}
.yd7{bottom:894.108178pt;}
.y18c{bottom:895.147563pt;}
.y1a0{bottom:896.267067pt;}
.y71{bottom:897.947067pt;}
.yae{bottom:900.504751pt;}
.ya5{bottom:900.506351pt;}
.yd1{bottom:901.227221pt;}
.y30{bottom:901.547067pt;}
.y1cf{bottom:901.547273pt;}
.ybd{bottom:902.747428pt;}
.y5b{bottom:903.787067pt;}
.yb9{bottom:904.107110pt;}
.yca{bottom:904.186998pt;}
.yd6{bottom:904.187426pt;}
.y1a2{bottom:904.506459pt;}
.y1a6{bottom:904.507067pt;}
.y1a4{bottom:904.507315pt;}
.y14a{bottom:907.387067pt;}
.y4{bottom:907.707067pt;}
.yc5{bottom:909.067032pt;}
.yc2{bottom:910.587106pt;}
.yb0{bottom:916.104310pt;}
.ya7{bottom:916.105910pt;}
.y2f{bottom:919.947067pt;}
.y1ce{bottom:919.947273pt;}
.y19f{bottom:921.467067pt;}
.y5a{bottom:922.027067pt;}
.yd3{bottom:922.507327pt;}
.y149{bottom:925.467067pt;}
.y19a{bottom:926.907067pt;}
.y3{bottom:927.067339pt;}
.y18a{bottom:938.267067pt;}
.y2e{bottom:938.347067pt;}
.y1f6{bottom:938.347273pt;}
.y1cd{bottom:938.347944pt;}
.y19e{bottom:939.547067pt;}
.y59{bottom:939.867067pt;}
.y147{bottom:949.627067pt;}
.y148{bottom:949.787067pt;}
.y2{bottom:951.627067pt;}
.y2d{bottom:956.747067pt;}
.y18d{bottom:956.747737pt;}
.y58{bottom:957.947067pt;}
.y1{bottom:1059.947067pt;}
.h27{height:14.160000pt;}
.h1e{height:14.240000pt;}
.h38{height:14.897031pt;}
.h24{height:18.160000pt;}
.h21{height:18.240000pt;}
.h18{height:25.917129pt;}
.he{height:25.934546pt;}
.h33{height:25.967156pt;}
.h5{height:29.571719pt;}
.h2b{height:31.093602pt;}
.h2f{height:31.308423pt;}
.h3a{height:33.351562pt;}
.h17{height:34.550101pt;}
.hd{height:34.573319pt;}
.h9{height:35.617969pt;}
.h1a{height:36.589959pt;}
.h10{height:36.614548pt;}
.h39{height:37.131406pt;}
.h1d{height:39.030469pt;}
.h7{height:40.688906pt;}
.h2e{height:40.762650pt;}
.h2a{height:40.836394pt;}
.h19{height:44.429469pt;}
.hf{height:44.458374pt;}
.h1{height:44.468750pt;}
.h32{height:44.514701pt;}
.h20{height:44.524336pt;}
.h8{height:52.574219pt;}
.h3c{height:53.441719pt;}
.h36{height:56.088465pt;}
.h2d{height:57.431117pt;}
.h29{height:57.535006pt;}
.h30{height:57.548956pt;}
.h2c{height:57.653068pt;}
.h26{height:59.195786pt;}
.h14{height:59.228885pt;}
.ha{height:59.267418pt;}
.h23{height:59.355352pt;}
.h15{height:59.548602pt;}
.hb{height:59.587343pt;}
.h28{height:62.537624pt;}
.h25{height:62.562311pt;}
.h1c{height:62.597306pt;}
.h12{height:62.637922pt;}
.h35{height:62.706436pt;}
.h31{height:62.717284pt;}
.h1b{height:62.725793pt;}
.h22{height:62.730876pt;}
.h1f{height:62.748219pt;}
.h11{height:62.766601pt;}
.h6{height:62.781250pt;}
.h34{height:62.846124pt;}
.h37{height:63.722969pt;}
.h45{height:64.498641pt;}
.h40{height:64.498843pt;}
.h3f{height:64.499174pt;}
.h43{height:64.499707pt;}
.h3{height:64.500000pt;}
.h47{height:66.747191pt;}
.h46{height:66.747317pt;}
.h3e{height:66.748348pt;}
.h42{height:66.748641pt;}
.h44{height:66.748881pt;}
.h3d{height:66.749174pt;}
.h41{height:66.749707pt;}
.h3b{height:71.988037pt;}
.h4{height:72.332500pt;}
.h2{height:86.107500pt;}
.h16{height:88.844315pt;}
.hc{height:88.902115pt;}
.h13{height:99.228885pt;}
.h0{height:1122.666667pt;}
.w2{width:9.920000pt;}
.w3{width:10.240000pt;}
.w5{width:10.320000pt;}
.w4{width:10.560000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x7a{left:115.202671pt;}
.x17{left:117.520000pt;}
.xb{left:121.120000pt;}
.x8f{left:122.799961pt;}
.x14{left:126.400000pt;}
.x11{left:128.160000pt;}
.x95{left:129.760000pt;}
.x2{left:132.400000pt;}
.x1a{left:134.800000pt;}
.x9b{left:136.160000pt;}
.x89{left:139.520052pt;}
.x79{left:140.482092pt;}
.x1b{left:141.919432pt;}
.x10{left:145.360000pt;}
.x12{left:149.280000pt;}
.x94{left:153.759536pt;}
.xa1{left:156.398398pt;}
.x3{left:158.240000pt;}
.x5c{left:167.682964pt;}
.x86{left:171.043048pt;}
.x76{left:172.161421pt;}
.x3d{left:176.321947pt;}
.x78{left:177.361689pt;}
.x66{left:178.880000pt;}
.x90{left:186.320717pt;}
.x85{left:191.762460pt;}
.x75{left:193.201893pt;}
.x5{left:197.760000pt;}
.x4{left:205.760000pt;}
.x7f{left:211.283581pt;}
.x84{left:213.042133pt;}
.x6f{left:214.561145pt;}
.x42{left:216.881976pt;}
.x97{left:218.878786pt;}
.x1d{left:220.239412pt;}
.x59{left:225.041852pt;}
.x3b{left:228.400992pt;}
.x65{left:232.080000pt;}
.xf{left:233.520000pt;}
.x37{left:236.239432pt;}
.x6{left:253.520000pt;}
.x92{left:256.559228pt;}
.x25{left:259.280000pt;}
.x34{left:260.960000pt;}
.x26{left:264.400000pt;}
.x27{left:266.079640pt;}
.x4a{left:268.640349pt;}
.x28{left:270.638929pt;}
.x8{left:274.640000pt;}
.x83{left:278.883135pt;}
.x4b{left:279.999949pt;}
.x3a{left:281.601376pt;}
.x9{left:288.880000pt;}
.x29{left:289.998647pt;}
.x5b{left:290.962770pt;}
.x61{left:297.838114pt;}
.x4c{left:299.439916pt;}
.x39{left:302.721247pt;}
.x7{left:305.040000pt;}
.x7e{left:307.522440pt;}
.x57{left:309.679593pt;}
.x36{left:311.360398pt;}
.x15{left:312.559312pt;}
.x9c{left:313.600488pt;}
.x8b{left:315.520000pt;}
.x44{left:316.961495pt;}
.x1f{left:318.638847pt;}
.x74{left:320.082400pt;}
.x8a{left:322.720000pt;}
.x46{left:325.280540pt;}
.x22{left:326.956906pt;}
.x9a{left:329.440000pt;}
.x5e{left:330.639816pt;}
.x3e{left:332.321082pt;}
.x49{left:334.961581pt;}
.x88{left:338.720908pt;}
.x60{left:340.317260pt;}
.x98{left:353.840000pt;}
.x50{left:358.082516pt;}
.x2f{left:359.759706pt;}
.x55{left:367.846684pt;}
.x82{left:373.042279pt;}
.x73{left:375.201971pt;}
.x18{left:379.599424pt;}
.x6e{left:381.839981pt;}
.xc{left:383.679616pt;}
.x91{left:392.720292pt;}
.x81{left:394.002222pt;}
.xe{left:396.880000pt;}
.x9d{left:402.080128pt;}
.x8d{left:403.120000pt;}
.x56{left:410.640225pt;}
.x35{left:412.320759pt;}
.x6d{left:415.519687pt;}
.x45{left:417.760377pt;}
.x21{left:419.437722pt;}
.x4f{left:426.322984pt;}
.x2e{left:427.999780pt;}
.x6c{left:432.319441pt;}
.x8c{left:434.560000pt;}
.x54{left:436.005623pt;}
.x68{left:437.600000pt;}
.x99{left:442.720000pt;}
.x20{left:473.837825pt;}
.x24{left:476.075703pt;}
.x48{left:481.841322pt;}
.x72{left:483.600070pt;}
.x2d{left:487.360326pt;}
.x33{left:489.598203pt;}
.x67{left:493.200000pt;}
.x53{left:495.364343pt;}
.xd{left:496.320000pt;}
.x9e{left:497.519456pt;}
.x2c{left:498.880837pt;}
.x32{left:501.118715pt;}
.x87{left:503.360000pt;}
.x77{left:504.400000pt;}
.x52{left:506.883759pt;}
.x7d{left:511.360853pt;}
.x6b{left:512.399891pt;}
.x71{left:514.239522pt;}
.x13{left:522.480000pt;}
.x38{left:527.440000pt;}
.x58{left:529.360000pt;}
.x3c{left:531.442266pt;}
.x5a{left:535.441024pt;}
.x80{left:541.681012pt;}
.x2a{left:543.600000pt;}
.x4d{left:545.520000pt;}
.x30{left:547.679048pt;}
.x7c{left:549.200120pt;}
.x6a{left:550.400311pt;}
.x51{left:551.682552pt;}
.x2b{left:559.199559pt;}
.x4e{left:561.040678pt;}
.x31{left:563.198626pt;}
.x5d{left:565.280000pt;}
.x3f{left:567.441883pt;}
.x5f{left:571.437356pt;}
.x1e{left:575.519694pt;}
.x43{left:577.440002pt;}
.x23{left:579.595543pt;}
.x96{left:581.840000pt;}
.x47{left:583.600955pt;}
.x1c{left:587.920000pt;}
.x16{left:590.960000pt;}
.x41{left:591.920000pt;}
.x19{left:594.160000pt;}
.x64{left:596.560000pt;}
.x40{left:598.800000pt;}
.x62{left:602.160000pt;}
.xa0{left:603.278816pt;}
.x9f{left:607.998752pt;}
.x70{left:609.120000pt;}
.x93{left:625.120000pt;}
.x7b{left:627.280000pt;}
.x69{left:629.280000pt;}
.x63{left:661.759867pt;}
.x8e{left:676.639867pt;}
.xa{left:704.159867pt;}
}




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