
    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_ad06a6f5f1db106bca9c1f7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_7e8d7338722280d700f27b06.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.281250;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_a6bfb83e4d6e238570b955f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_77c42970499f5ae64d6e3d0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_23913aa7e76a107bb9f93de8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.216505,-0.125003,0.125003,0.216505,0,0);-ms-transform:matrix(0.216505,-0.125003,0.125003,0.216505,0,0);-webkit-transform:matrix(0.216505,-0.125003,0.125003,0.216505,0,0);}
.m1{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259583,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.279514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279514,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-64.176000px;}
.v7{vertical-align:-60.468000px;}
.v9{vertical-align:-57.666000px;}
.v1{vertical-align:-54.012000px;}
.va{vertical-align:-39.438000px;}
.v3{vertical-align:-22.500000px;}
.vf{vertical-align:-18.018000px;}
.v6{vertical-align:-13.908000px;}
.v10{vertical-align:-1.050000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.068000px;}
.v2{vertical-align:25.578000px;}
.v5{vertical-align:28.476000px;}
.vd{vertical-align:42.294000px;}
.vc{vertical-align:45.906000px;}
.ve{vertical-align:55.272000px;}
.v8{vertical-align:60.858000px;}
.ls3b{letter-spacing:-9.042000px;}
.ls49{letter-spacing:-8.580000px;}
.ls20{letter-spacing:-8.037000px;}
.ls34{letter-spacing:-7.524000px;}
.ls1c{letter-spacing:-7.467000px;}
.ls4c{letter-spacing:-6.996000px;}
.ls1e{letter-spacing:-6.327000px;}
.ls36{letter-spacing:-5.874000px;}
.ls52{letter-spacing:-5.808000px;}
.ls22{letter-spacing:-5.358000px;}
.ls33{letter-spacing:-5.244000px;}
.ls1b{letter-spacing:-5.187000px;}
.ls48{letter-spacing:-5.082000px;}
.ls1f{letter-spacing:-5.016000px;}
.ls53{letter-spacing:-2.928000px;}
.ls43{letter-spacing:-2.844600px;}
.ls25{letter-spacing:-2.736000px;}
.ls51{letter-spacing:-2.442000px;}
.ls95{letter-spacing:-2.376000px;}
.ls4f{letter-spacing:-2.323200px;}
.ls91{letter-spacing:-2.310000px;}
.ls90{letter-spacing:-2.046000px;}
.ls3d{letter-spacing:-1.999800px;}
.ls23{letter-spacing:-1.995000px;}
.ls4b{letter-spacing:-1.980000px;}
.lsb7{letter-spacing:-1.935000px;}
.lsb8{letter-spacing:-1.920000px;}
.ls42{letter-spacing:-1.848000px;}
.ls28{letter-spacing:-1.824000px;}
.ls8f{letter-spacing:-1.782000px;}
.ls8c{letter-spacing:-1.716000px;}
.ls26{letter-spacing:-1.653000px;}
.ls74{letter-spacing:-1.650000px;}
.ls30{letter-spacing:-1.635900px;}
.ls45{letter-spacing:-1.584000px;}
.ls46{letter-spacing:-1.577400px;}
.ls27{letter-spacing:-1.539000px;}
.ls94{letter-spacing:-1.518000px;}
.ls3a{letter-spacing:-1.458600px;}
.ls65{letter-spacing:-1.452000px;}
.lsb4{letter-spacing:-1.440000px;}
.lsb0{letter-spacing:-1.395000px;}
.ls60{letter-spacing:-1.386000px;}
.lsb1{letter-spacing:-1.380000px;}
.ls1a{letter-spacing:-1.368000px;}
.ls75{letter-spacing:-1.320000px;}
.ls47{letter-spacing:-1.313400px;}
.ls3e{letter-spacing:-1.254000px;}
.lsad{letter-spacing:-1.200000px;}
.ls32{letter-spacing:-1.197000px;}
.ls4e{letter-spacing:-1.194600px;}
.ls4a{letter-spacing:-1.188000px;}
.lsac{letter-spacing:-1.140000px;}
.lsab{letter-spacing:-1.125000px;}
.ls40{letter-spacing:-1.122000px;}
.lsb2{letter-spacing:-1.080000px;}
.ls38{letter-spacing:-1.056000px;}
.ls8e{letter-spacing:-1.039500px;}
.ls9c{letter-spacing:-1.035000px;}
.ls21{letter-spacing:-1.026000px;}
.ls9d{letter-spacing:-1.020000px;}
.ls7b{letter-spacing:-0.990000px;}
.ls24{letter-spacing:-0.969000px;}
.lsba{letter-spacing:-0.960000px;}
.lsb9{letter-spacing:-0.945000px;}
.ls3f{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.912000px;}
.ls37{letter-spacing:-0.858000px;}
.ls31{letter-spacing:-0.843600px;}
.lsb3{letter-spacing:-0.840000px;}
.ls19{letter-spacing:-0.798000px;}
.ls35{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.741000px;}
.ls3c{letter-spacing:-0.726000px;}
.ls1{letter-spacing:-0.720000px;}
.ls8d{letter-spacing:-0.693000px;}
.ls1d{letter-spacing:-0.684000px;}
.ls5f{letter-spacing:-0.660000px;}
.ls7a{letter-spacing:-0.643500px;}
.ls2d{letter-spacing:-0.632700px;}
.ls54{letter-spacing:-0.624000px;}
.ls44{letter-spacing:-0.594000px;}
.ls2a{letter-spacing:-0.575700px;}
.ls17{letter-spacing:-0.570000px;}
.ls4d{letter-spacing:-0.528000px;}
.ls2b{letter-spacing:-0.518700px;}
.lsb{letter-spacing:-0.513000px;}
.ls2f{letter-spacing:-0.467400px;}
.ls61{letter-spacing:-0.462000px;}
.ls2c{letter-spacing:-0.461700px;}
.ls85{letter-spacing:-0.432000px;}
.lsaf{letter-spacing:-0.420000px;}
.ls2e{letter-spacing:-0.399000px;}
.ls41{letter-spacing:-0.396000px;}
.ls29{letter-spacing:-0.359100px;}
.ls9{letter-spacing:-0.342000px;}
.ls63{letter-spacing:-0.330000px;}
.lsb5{letter-spacing:-0.315000px;}
.lsae{letter-spacing:-0.300000px;}
.ls78{letter-spacing:-0.297000px;}
.lsd{letter-spacing:-0.285000px;}
.ls66{letter-spacing:-0.270000px;}
.ls39{letter-spacing:-0.264000px;}
.lsb6{letter-spacing:-0.225000px;}
.ls62{letter-spacing:-0.198000px;}
.ls8{letter-spacing:-0.171000px;}
.ls70{letter-spacing:-0.162000px;}
.ls5e{letter-spacing:-0.132000px;}
.lsa{letter-spacing:-0.114000px;}
.ls79{letter-spacing:-0.099000px;}
.ls50{letter-spacing:-0.066000px;}
.lsaa{letter-spacing:-0.060000px;}
.lsc{letter-spacing:-0.057000px;}
.ls8b{letter-spacing:-0.049500px;}
.ls9e{letter-spacing:-0.048000px;}
.ls71{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.ls80{letter-spacing:0.006000px;}
.ls86{letter-spacing:0.042000px;}
.lsa9{letter-spacing:0.045000px;}
.ls81{letter-spacing:0.048000px;}
.ls6b{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.057000px;}
.lsa4{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.066000px;}
.ls73{letter-spacing:0.099000px;}
.lsa1{letter-spacing:0.120000px;}
.ls57{letter-spacing:0.132000px;}
.lsa2{letter-spacing:0.135000px;}
.ls4{letter-spacing:0.171000px;}
.ls9b{letter-spacing:0.180000px;}
.ls56{letter-spacing:0.198000px;}
.ls9a{letter-spacing:0.240000px;}
.ls55{letter-spacing:0.264000px;}
.ls72{letter-spacing:0.297000px;}
.ls69{letter-spacing:0.330000px;}
.ls14{letter-spacing:0.396000px;}
.ls11{letter-spacing:0.399000px;}
.lsa0{letter-spacing:0.450000px;}
.ls5{letter-spacing:0.456000px;}
.ls15{letter-spacing:0.462000px;}
.ls9f{letter-spacing:0.480000px;}
.ls6a{letter-spacing:0.486000px;}
.ls59{letter-spacing:0.528000px;}
.ls7c{letter-spacing:0.544500px;}
.ls67{letter-spacing:0.594000px;}
.ls58{letter-spacing:0.660000px;}
.ls5d{letter-spacing:0.726000px;}
.ls5c{letter-spacing:0.792000px;}
.lsa6{letter-spacing:0.840000px;}
.lsa5{letter-spacing:0.855000px;}
.ls5b{letter-spacing:0.858000px;}
.ls5a{letter-spacing:0.924000px;}
.ls2{letter-spacing:0.969000px;}
.ls88{letter-spacing:0.990000px;}
.ls98{letter-spacing:1.080000px;}
.ls89{letter-spacing:1.122000px;}
.ls64{letter-spacing:1.188000px;}
.ls8a{letter-spacing:1.254000px;}
.ls96{letter-spacing:1.320000px;}
.ls7{letter-spacing:1.350000px;}
.ls97{letter-spacing:1.380000px;}
.lsf{letter-spacing:1.404000px;}
.ls99{letter-spacing:1.440000px;}
.ls93{letter-spacing:1.584000px;}
.ls87{letter-spacing:1.650000px;}
.ls68{letter-spacing:1.716000px;}
.lsa3{letter-spacing:12.900000px;}
.ls12{letter-spacing:13.908000px;}
.ls10{letter-spacing:14.193000px;}
.ls92{letter-spacing:15.048000px;}
.ls77{letter-spacing:15.091500px;}
.lsa7{letter-spacing:16.740000px;}
.lsa8{letter-spacing:16.980000px;}
.ls76{letter-spacing:17.071500px;}
.ls16{letter-spacing:47.952000px;}
.ls6c{letter-spacing:50.988000px;}
.ls6{letter-spacing:68.742000px;}
.ls83{letter-spacing:69.678000px;}
.ls6e{letter-spacing:82.584000px;}
.ls7e{letter-spacing:84.042000px;}
.ls82{letter-spacing:88.998000px;}
.ls7f{letter-spacing:107.562000px;}
.ls6d{letter-spacing:121.608000px;}
.ls84{letter-spacing:146.748000px;}
.ls6f{letter-spacing:154.848000px;}
.ls7d{letter-spacing:183.360000px;}
.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;}
}
.ws8d{word-spacing:-18.216000px;}
.wsbd{word-spacing:-18.150000px;}
.wsb2{word-spacing:-17.688000px;}
.wsaf{word-spacing:-17.424000px;}
.wsc6{word-spacing:-17.358000px;}
.ws72{word-spacing:-17.292000px;}
.ws71{word-spacing:-17.226000px;}
.ws9e{word-spacing:-17.160000px;}
.wscf{word-spacing:-17.094000px;}
.wsb0{word-spacing:-17.028000px;}
.ws6f{word-spacing:-16.962000px;}
.wsd1{word-spacing:-16.896000px;}
.ws3c{word-spacing:-16.830000px;}
.wsac{word-spacing:-16.764000px;}
.wsb1{word-spacing:-16.698000px;}
.ws90{word-spacing:-16.632000px;}
.ws8e{word-spacing:-16.566000px;}
.ws47{word-spacing:-16.500000px;}
.wsd7{word-spacing:-16.440000px;}
.ws55{word-spacing:-16.434000px;}
.wsd4{word-spacing:-16.380000px;}
.wsa1{word-spacing:-16.368000px;}
.ws8c{word-spacing:-16.302000px;}
.ws40{word-spacing:-16.236000px;}
.ws70{word-spacing:-16.170000px;}
.ws3b{word-spacing:-16.038000px;}
.wsa3{word-spacing:-15.972000px;}
.wsae{word-spacing:-15.906000px;}
.ws8f{word-spacing:-15.840000px;}
.ws43{word-spacing:-15.774000px;}
.ws50{word-spacing:-15.708000px;}
.ws3e{word-spacing:-15.642000px;}
.ws46{word-spacing:-15.576000px;}
.wsbe{word-spacing:-15.510000px;}
.ws3f{word-spacing:-15.444000px;}
.ws48{word-spacing:-15.378000px;}
.wscb{word-spacing:-15.312000px;}
.ws53{word-spacing:-15.305400px;}
.ws45{word-spacing:-15.246000px;}
.wsd9{word-spacing:-15.240000px;}
.ws4d{word-spacing:-15.186600px;}
.wsa0{word-spacing:-15.180000px;}
.wsf2{word-spacing:-15.060000px;}
.ws41{word-spacing:-15.041400px;}
.wsd5{word-spacing:-15.000000px;}
.wse2{word-spacing:-14.940000px;}
.ws4c{word-spacing:-14.922600px;}
.ws4b{word-spacing:-14.916000px;}
.wsb{word-spacing:-14.904000px;}
.ws9f{word-spacing:-14.850000px;}
.wscd{word-spacing:-14.784000px;}
.wscc{word-spacing:-14.718000px;}
.wse5{word-spacing:-14.700000px;}
.ws49{word-spacing:-14.652000px;}
.wse6{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.535000px;}
.ws51{word-spacing:-14.520000px;}
.ws44{word-spacing:-14.500200px;}
.ws9{word-spacing:-14.421000px;}
.wsa{word-spacing:-14.307000px;}
.wsea{word-spacing:-14.280000px;}
.ws3{word-spacing:-14.250000px;}
.ws6{word-spacing:-14.193000px;}
.wsce{word-spacing:-14.190000px;}
.ws54{word-spacing:-14.176800px;}
.wsed{word-spacing:-14.160000px;}
.ws36{word-spacing:-14.079000px;}
.ws56{word-spacing:-14.058000px;}
.wsfa{word-spacing:-13.980000px;}
.ws7{word-spacing:-13.965000px;}
.wseb{word-spacing:-13.920000px;}
.ws30{word-spacing:-13.890900px;}
.ws25{word-spacing:-13.851000px;}
.wse3{word-spacing:-13.800000px;}
.ws33{word-spacing:-13.788300px;}
.ws35{word-spacing:-13.782600px;}
.ws85{word-spacing:-13.770000px;}
.ws5{word-spacing:-13.737000px;}
.ws32{word-spacing:-13.731300px;}
.ws1f{word-spacing:-13.680000px;}
.ws31{word-spacing:-13.674300px;}
.ws4a{word-spacing:-13.655400px;}
.wsee{word-spacing:-13.620000px;}
.ws34{word-spacing:-13.617300px;}
.wsf0{word-spacing:-13.560000px;}
.ws92{word-spacing:-13.554000px;}
.ws20{word-spacing:-13.509000px;}
.wsc{word-spacing:-13.500000px;}
.ws21{word-spacing:-13.452000px;}
.ws38{word-spacing:-13.406400px;}
.ws8{word-spacing:-13.338000px;}
.ws29{word-spacing:-13.224000px;}
.ws22{word-spacing:-13.167000px;}
.wsf7{word-spacing:-13.080000px;}
.wsb4{word-spacing:-12.919500px;}
.ws2e{word-spacing:-12.711000px;}
.ws9d{word-spacing:-12.672000px;}
.ws37{word-spacing:-12.614100px;}
.wsd3{word-spacing:-12.600000px;}
.ws2d{word-spacing:-12.597000px;}
.wsa2{word-spacing:-12.474000px;}
.ws2f{word-spacing:-12.426000px;}
.wsb3{word-spacing:-12.375000px;}
.ws2b{word-spacing:-12.255000px;}
.wsd{word-spacing:-12.240000px;}
.wsa9{word-spacing:-12.177000px;}
.wsf4{word-spacing:-12.105000px;}
.wsa8{word-spacing:-12.078000px;}
.ws84{word-spacing:-12.000000px;}
.wsdb{word-spacing:-11.952000px;}
.wsd0{word-spacing:-11.781000px;}
.wsad{word-spacing:-11.731500px;}
.wse4{word-spacing:-11.700000px;}
.ws2c{word-spacing:-11.514000px;}
.ws58{word-spacing:-11.472000px;}
.ws4e{word-spacing:-11.418000px;}
.wsec{word-spacing:-11.385000px;}
.ws5a{word-spacing:-11.376000px;}
.wsfb{word-spacing:-11.295000px;}
.wsd8{word-spacing:-11.250000px;}
.ws82{word-spacing:-11.187000px;}
.wsf3{word-spacing:-11.025000px;}
.wsf1{word-spacing:-10.935000px;}
.ws57{word-spacing:-10.692000px;}
.ws3d{word-spacing:-10.626000px;}
.wsb6{word-spacing:-10.542000px;}
.wse9{word-spacing:-10.530000px;}
.ws94{word-spacing:-10.500000px;}
.ws93{word-spacing:-10.458000px;}
.ws10a{word-spacing:-10.305000px;}
.wsf9{word-spacing:-10.260000px;}
.wsd6{word-spacing:-10.215000px;}
.ws91{word-spacing:-10.125000px;}
.wse7{word-spacing:-9.855000px;}
.wsef{word-spacing:-9.810000px;}
.ws52{word-spacing:-9.504000px;}
.wsf6{word-spacing:-9.315000px;}
.ws27{word-spacing:-9.234000px;}
.ws59{word-spacing:-9.072000px;}
.ws23{word-spacing:-9.063000px;}
.ws39{word-spacing:-9.006000px;}
.ws86{word-spacing:-9.000000px;}
.ws2a{word-spacing:-8.892000px;}
.ws26{word-spacing:-7.923000px;}
.ws4f{word-spacing:-7.920000px;}
.ws42{word-spacing:-7.458000px;}
.ws1{word-spacing:-7.392000px;}
.wse1{word-spacing:-7.200000px;}
.ws24{word-spacing:-6.783000px;}
.ws3a{word-spacing:-6.726000px;}
.ws28{word-spacing:-6.213000px;}
.ws98{word-spacing:-1.890000px;}
.ws8a{word-spacing:-1.782000px;}
.wsb8{word-spacing:-1.674000px;}
.wsb9{word-spacing:-1.620000px;}
.wsf5{word-spacing:-0.960000px;}
.wsa7{word-spacing:-0.858000px;}
.ws97{word-spacing:-0.810000px;}
.ws88{word-spacing:-0.792000px;}
.ws73{word-spacing:-0.726000px;}
.wsfc{word-spacing:-0.720000px;}
.ws18{word-spacing:-0.684000px;}
.ws81{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.627000px;}
.ws6c{word-spacing:-0.594000px;}
.wse{word-spacing:-0.570000px;}
.ws107{word-spacing:-0.540000px;}
.ws61{word-spacing:-0.528000px;}
.ws64{word-spacing:-0.462000px;}
.ws1a{word-spacing:-0.456000px;}
.ws6d{word-spacing:-0.432000px;}
.wsff{word-spacing:-0.420000px;}
.ws12{word-spacing:-0.399000px;}
.ws7f{word-spacing:-0.396000px;}
.ws101{word-spacing:-0.360000px;}
.ws69{word-spacing:-0.330000px;}
.ws8b{word-spacing:-0.324000px;}
.ws5e{word-spacing:-0.285000px;}
.ws66{word-spacing:-0.264000px;}
.ws17{word-spacing:-0.228000px;}
.ws76{word-spacing:-0.198000px;}
.ws7d{word-spacing:-0.132000px;}
.ws105{word-spacing:-0.120000px;}
.wsa4{word-spacing:-0.066000px;}
.ws100{word-spacing:-0.060000px;}
.ws5c{word-spacing:-0.057000px;}
.ws0{word-spacing:0.000000px;}
.wsde{word-spacing:0.060000px;}
.ws96{word-spacing:0.066000px;}
.wsf{word-spacing:0.114000px;}
.wsdc{word-spacing:0.120000px;}
.ws67{word-spacing:0.132000px;}
.ws1b{word-spacing:0.171000px;}
.ws10b{word-spacing:0.180000px;}
.wsa6{word-spacing:0.198000px;}
.ws5d{word-spacing:0.228000px;}
.ws109{word-spacing:0.240000px;}
.ws65{word-spacing:0.264000px;}
.wsdd{word-spacing:0.300000px;}
.ws6a{word-spacing:0.330000px;}
.wsdf{word-spacing:0.360000px;}
.ws89{word-spacing:0.396000px;}
.wsfd{word-spacing:0.420000px;}
.ws10{word-spacing:0.456000px;}
.wsa5{word-spacing:0.462000px;}
.ws77{word-spacing:0.528000px;}
.ws15{word-spacing:0.570000px;}
.ws7c{word-spacing:0.594000px;}
.ws102{word-spacing:0.600000px;}
.ws80{word-spacing:0.660000px;}
.ws103{word-spacing:0.720000px;}
.ws6b{word-spacing:0.726000px;}
.ws7e{word-spacing:0.792000px;}
.ws5f{word-spacing:0.858000px;}
.ws10c{word-spacing:0.900000px;}
.ws60{word-spacing:0.924000px;}
.ws1c{word-spacing:0.969000px;}
.ws7b{word-spacing:0.990000px;}
.wsfe{word-spacing:1.020000px;}
.ws5b{word-spacing:1.026000px;}
.wsb5{word-spacing:1.056000px;}
.ws74{word-spacing:1.122000px;}
.ws108{word-spacing:1.140000px;}
.ws68{word-spacing:1.188000px;}
.ws19{word-spacing:1.197000px;}
.ws13{word-spacing:1.254000px;}
.wse0{word-spacing:1.260000px;}
.ws1d{word-spacing:1.296000px;}
.ws4{word-spacing:1.311000px;}
.ws78{word-spacing:1.320000px;}
.ws11{word-spacing:1.368000px;}
.ws104{word-spacing:1.380000px;}
.ws79{word-spacing:1.386000px;}
.wsbb{word-spacing:1.404000px;}
.ws16{word-spacing:1.425000px;}
.ws106{word-spacing:1.440000px;}
.ws7a{word-spacing:1.452000px;}
.wsbc{word-spacing:1.458000px;}
.ws63{word-spacing:1.518000px;}
.ws62{word-spacing:1.584000px;}
.ws75{word-spacing:1.650000px;}
.wsd2{word-spacing:1.716000px;}
.ws1e{word-spacing:2.052000px;}
.wsba{word-spacing:2.592000px;}
.wsc9{word-spacing:4.039500px;}
.wsc8{word-spacing:4.128000px;}
.wsf8{word-spacing:4.215000px;}
.wsc7{word-spacing:4.275000px;}
.wsca{word-spacing:4.395000px;}
.wse8{word-spacing:4.515000px;}
.wsab{word-spacing:4.645500px;}
.wsaa{word-spacing:4.650000px;}
.ws9a{word-spacing:6.264000px;}
.ws99{word-spacing:6.318000px;}
.ws9b{word-spacing:6.696000px;}
.ws9c{word-spacing:6.750000px;}
.wsc1{word-spacing:8.184000px;}
.wsc4{word-spacing:9.450000px;}
.wsc0{word-spacing:13.068000px;}
.wsbf{word-spacing:13.134000px;}
.ws83{word-spacing:35.712000px;}
.wsda{word-spacing:35.904000px;}
.wsb7{word-spacing:72.786000px;}
.ws95{word-spacing:79.338000px;}
.wsc3{word-spacing:125.118000px;}
.ws87{word-spacing:144.312000px;}
.wsc5{word-spacing:161.070000px;}
.wsc2{word-spacing:179.802000px;}
.ws6e{word-spacing:857.664000px;}
._9{margin-left:-12.768000px;}
._16{margin-left:-10.296000px;}
._3{margin-left:-8.571000px;}
._5{margin-left:-7.410000px;}
._0{margin-left:-6.240000px;}
._4{margin-left:-5.058000px;}
._6{margin-left:-3.876000px;}
._b{margin-left:-2.706000px;}
._1{margin-left:-1.632000px;}
._2{width:1.152000px;}
._a{width:2.376000px;}
._7{width:13.374000px;}
._1d{width:14.682000px;}
._1b{width:15.708000px;}
._1f{width:44.898000px;}
._8{width:48.084000px;}
._18{width:51.912000px;}
._1a{width:55.482000px;}
._19{width:63.000000px;}
._1e{width:64.806000px;}
._17{width:75.600000px;}
._15{width:133.140000px;}
._e{width:140.994000px;}
._f{width:143.346000px;}
._14{width:147.336000px;}
._11{width:151.074000px;}
._12{width:153.132000px;}
._13{width:156.534000px;}
._10{width:158.340000px;}
._21{width:197.394000px;}
._c{width:221.874000px;}
._1c{width:254.856000px;}
._20{width:845.316000px;}
._d{width:869.748000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:29.400000px;}
.fsd{font-size:31.500000px;}
.fsb{font-size:35.999208px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:40.500000px;}
.fs9{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:48.600000px;}
.fs8{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs6{font-size:59.400000px;}
.fsf{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:0.646500px;}
.y4e{bottom:1.256850px;}
.y50{bottom:1.396500px;}
.y52{bottom:2.146500px;}
.y4c{bottom:3.186150px;}
.y48{bottom:3.646500px;}
.y4a{bottom:4.396500px;}
.y136{bottom:53.490000px;}
.y45{bottom:53.868000px;}
.y18f{bottom:54.000000px;}
.y89{bottom:54.208500px;}
.y22e{bottom:54.255000px;}
.yaa{bottom:54.486000px;}
.y1f{bottom:54.609000px;}
.y132{bottom:54.892500px;}
.y11a{bottom:54.942000px;}
.y203{bottom:54.952500px;}
.y1e4{bottom:54.975000px;}
.yf4{bottom:55.012500px;}
.y1f1{bottom:55.017000px;}
.y7d{bottom:55.149000px;}
.y18e{bottom:55.182000px;}
.y25e{bottom:57.885000px;}
.y135{bottom:67.728000px;}
.ya9{bottom:68.742000px;}
.y1e{bottom:68.865000px;}
.y22d{bottom:70.005000px;}
.y44{bottom:71.110500px;}
.y88{bottom:71.451000px;}
.y119{bottom:72.184500px;}
.y131{bottom:72.192000px;}
.y202{bottom:72.195000px;}
.y1e3{bottom:72.217500px;}
.yf3{bottom:72.255000px;}
.y1f0{bottom:72.259500px;}
.y7c{bottom:72.391500px;}
.y18d{bottom:72.424500px;}
.y25d{bottom:73.635000px;}
.y134{bottom:81.984000px;}
.ya8{bottom:82.998000px;}
.y22c{bottom:85.755000px;}
.y43{bottom:88.353000px;}
.y87{bottom:88.693500px;}
.y25c{bottom:89.385000px;}
.y118{bottom:89.427000px;}
.y130{bottom:89.434500px;}
.y201{bottom:89.437500px;}
.y1e2{bottom:89.460000px;}
.yf2{bottom:89.497500px;}
.y7b{bottom:89.634000px;}
.y18c{bottom:89.667000px;}
.y133{bottom:96.240000px;}
.ya7{bottom:97.254000px;}
.y1ef{bottom:98.131500px;}
.y22b{bottom:101.505000px;}
.y1cd{bottom:102.549000px;}
.y25b{bottom:105.135000px;}
.y42{bottom:105.595500px;}
.y86{bottom:105.936000px;}
.y117{bottom:106.669500px;}
.y12f{bottom:106.677000px;}
.y200{bottom:106.680000px;}
.y1e1{bottom:106.702500px;}
.yf1{bottom:106.740000px;}
.y7a{bottom:106.876500px;}
.y18b{bottom:106.909500px;}
.y1d{bottom:108.097500px;}
.ya6{bottom:111.510000px;}
.y22a{bottom:117.255000px;}
.y25a{bottom:120.885000px;}
.y41{bottom:122.838000px;}
.y1c{bottom:123.102750px;}
.y85{bottom:123.178500px;}
.y1cc{bottom:123.433500px;}
.y116{bottom:123.912000px;}
.y1ff{bottom:123.922500px;}
.y1e0{bottom:123.945000px;}
.yf0{bottom:123.982500px;}
.y79{bottom:124.119000px;}
.y18a{bottom:124.152000px;}
.y1ca{bottom:129.387000px;}
.y12e{bottom:132.549000px;}
.y229{bottom:133.005000px;}
.y259{bottom:136.635000px;}
.y1b{bottom:138.108000px;}
.y1cb{bottom:138.690000px;}
.y40{bottom:140.080500px;}
.y84{bottom:140.421000px;}
.y115{bottom:141.154500px;}
.y1fe{bottom:141.165000px;}
.y1df{bottom:141.187500px;}
.yef{bottom:141.225000px;}
.y1ee{bottom:141.262500px;}
.y78{bottom:141.361500px;}
.y189{bottom:141.394500px;}
.y1c9{bottom:142.942500px;}
.y228{bottom:148.755000px;}
.y258{bottom:152.385000px;}
.y1ce{bottom:152.560500px;}
.y1a{bottom:153.113250px;}
.y3f{bottom:157.323000px;}
.y83{bottom:157.663500px;}
.y114{bottom:158.397000px;}
.y1fd{bottom:158.407500px;}
.y1de{bottom:158.430000px;}
.yee{bottom:158.467500px;}
.y1ed{bottom:158.505000px;}
.y77{bottom:158.604000px;}
.y188{bottom:158.637000px;}
.y169{bottom:159.055500px;}
.y1c0{bottom:160.863000px;}
.y165{bottom:162.447000px;}
.y227{bottom:164.505000px;}
.y19{bottom:168.118500px;}
.y257{bottom:168.135000px;}
.y168{bottom:169.807500px;}
.y1bf{bottom:172.927500px;}
.y3e{bottom:174.565500px;}
.y82{bottom:174.906000px;}
.y113{bottom:175.639500px;}
.y1fc{bottom:175.650000px;}
.y1dd{bottom:175.672500px;}
.y12d{bottom:175.680000px;}
.yed{bottom:175.710000px;}
.y1ec{bottom:175.747500px;}
.y76{bottom:175.846500px;}
.y187{bottom:175.879500px;}
.ybd{bottom:178.642500px;}
.y167{bottom:180.580500px;}
.y18{bottom:183.123750px;}
.y256{bottom:183.885000px;}
.yb1{bottom:187.420500px;}
.y226{bottom:189.121500px;}
.yb4{bottom:190.591500px;}
.y166{bottom:191.332500px;}
.y3d{bottom:191.808000px;}
.y81{bottom:192.148500px;}
.y1fb{bottom:192.892500px;}
.y1dc{bottom:192.915000px;}
.y12c{bottom:192.922500px;}
.yec{bottom:192.952500px;}
.y1eb{bottom:192.990000px;}
.y75{bottom:193.089000px;}
.y186{bottom:193.122000px;}
.y1c1{bottom:195.420000px;}
.y1d0{bottom:197.532000px;}
.y255{bottom:199.635000px;}
.yb5{bottom:199.800000px;}
.y112{bottom:201.511500px;}
.yb3{bottom:204.094500px;}
.y160{bottom:207.166500px;}
.y3c{bottom:209.050500px;}
.y80{bottom:209.391000px;}
.y1db{bottom:210.157500px;}
.y12b{bottom:210.165000px;}
.yeb{bottom:210.195000px;}
.y1ea{bottom:210.232500px;}
.y74{bottom:210.331500px;}
.y185{bottom:210.364500px;}
.y1fa{bottom:210.397500px;}
.y1c4{bottom:210.970500px;}
.y163{bottom:212.343000px;}
.y1c3{bottom:212.850000px;}
.y1c8{bottom:213.093000px;}
.y17{bottom:213.120000px;}
.y254{bottom:215.385000px;}
.y164{bottom:218.716500px;}
.yb2{bottom:220.065000px;}
.y161{bottom:220.620000px;}
.y3b{bottom:226.293000px;}
.y1c2{bottom:226.353000px;}
.y7f{bottom:226.633500px;}
.yb6{bottom:226.722000px;}
.y1da{bottom:227.400000px;}
.y12a{bottom:227.407500px;}
.yea{bottom:227.437500px;}
.y1e9{bottom:227.475000px;}
.y73{bottom:227.574000px;}
.y184{bottom:227.607000px;}
.y225{bottom:227.632500px;}
.y1f9{bottom:227.640000px;}
.y15f{bottom:228.660000px;}
.y1be{bottom:231.034500px;}
.y253{bottom:231.135000px;}
.yb0{bottom:236.875500px;}
.y1c7{bottom:241.800000px;}
.y3a{bottom:243.535500px;}
.yc5{bottom:244.596000px;}
.y111{bottom:244.642500px;}
.y129{bottom:244.650000px;}
.ye9{bottom:244.680000px;}
.y1e8{bottom:244.717500px;}
.y72{bottom:244.816500px;}
.y183{bottom:244.849500px;}
.y224{bottom:244.875000px;}
.y1f8{bottom:244.882500px;}
.y1c5{bottom:246.082500px;}
.y252{bottom:246.885000px;}
.y16{bottom:249.087750px;}
.y1cf{bottom:254.022000px;}
.y16b{bottom:254.685000px;}
.y15b{bottom:255.970500px;}
.y162{bottom:258.795000px;}
.y39{bottom:260.778000px;}
.y7e{bottom:261.135000px;}
.y128{bottom:261.892500px;}
.ye8{bottom:261.922500px;}
.y110{bottom:261.960000px;}
.y71{bottom:262.059000px;}
.y182{bottom:262.092000px;}
.y223{bottom:262.117500px;}
.y1f7{bottom:262.125000px;}
.y251{bottom:262.635000px;}
.yc4{bottom:265.593000px;}
.yc6{bottom:265.971000px;}
.y1bd{bottom:266.251500px;}
.y1bc{bottom:269.895000px;}
.y15{bottom:270.092250px;}
.yb7{bottom:270.675000px;}
.yaf{bottom:272.922000px;}
.ycb{bottom:277.491000px;}
.y38{bottom:278.020500px;}
.y250{bottom:278.385000px;}
.y127{bottom:279.135000px;}
.ye7{bottom:279.165000px;}
.y10f{bottom:279.202500px;}
.y70{bottom:279.301500px;}
.y181{bottom:279.334500px;}
.y222{bottom:279.360000px;}
.y1f6{bottom:279.367500px;}
.yca{bottom:280.488000px;}
.y15e{bottom:281.233500px;}
.y1c6{bottom:281.827500px;}
.ybf{bottom:285.018000px;}
.y14{bottom:285.097500px;}
.y15c{bottom:293.445000px;}
.y24f{bottom:294.135000px;}
.yb8{bottom:295.129500px;}
.y37{bottom:295.263000px;}
.ye6{bottom:296.407500px;}
.y10e{bottom:296.445000px;}
.y126{bottom:296.475000px;}
.y6f{bottom:296.544000px;}
.y180{bottom:296.577000px;}
.y221{bottom:296.602500px;}
.y1f5{bottom:296.610000px;}
.y13{bottom:300.102750px;}
.yc9{bottom:300.900000px;}
.ybe{bottom:306.735000px;}
.y24e{bottom:309.885000px;}
.y36{bottom:312.505500px;}
.ye5{bottom:313.650000px;}
.y10d{bottom:313.687500px;}
.y125{bottom:313.717500px;}
.y6e{bottom:313.786500px;}
.y17f{bottom:313.819500px;}
.y220{bottom:313.845000px;}
.y1f4{bottom:313.852500px;}
.y12{bottom:315.108000px;}
.yc7{bottom:319.116000px;}
.y15d{bottom:319.422000px;}
.y1d9{bottom:322.449000px;}
.y15a{bottom:322.677000px;}
.yc3{bottom:322.770000px;}
.y24d{bottom:325.635000px;}
.y8d{bottom:329.202000px;}
.y35{bottom:329.748000px;}
.y11{bottom:330.113250px;}
.ye4{bottom:330.892500px;}
.y10c{bottom:330.930000px;}
.y124{bottom:330.960000px;}
.y6d{bottom:331.029000px;}
.y17e{bottom:331.062000px;}
.y21f{bottom:331.087500px;}
.y1f3{bottom:331.095000px;}
.yb9{bottom:336.961500px;}
.y24c{bottom:341.385000px;}
.y8c{bottom:343.458000px;}
.y10{bottom:345.118500px;}
.yae{bottom:345.487500px;}
.y10b{bottom:348.172500px;}
.y123{bottom:348.202500px;}
.y6c{bottom:348.271500px;}
.ye3{bottom:348.282000px;}
.y17d{bottom:348.304500px;}
.y21e{bottom:348.330000px;}
.y1f2{bottom:348.337500px;}
.yc2{bottom:350.151000px;}
.yc8{bottom:351.360000px;}
.y159{bottom:352.266000px;}
.y34{bottom:355.620000px;}
.y1b5{bottom:356.719500px;}
.y24b{bottom:357.135000px;}
.y8b{bottom:357.714000px;}
.yf{bottom:360.123750px;}
.ycc{bottom:363.396000px;}
.y10a{bottom:365.415000px;}
.y122{bottom:365.445000px;}
.y6b{bottom:365.514000px;}
.ye2{bottom:365.524500px;}
.y17c{bottom:365.547000px;}
.y21d{bottom:365.572500px;}
.y1d8{bottom:365.580000px;}
.ycd{bottom:366.771000px;}
.yc0{bottom:367.656000px;}
.y158{bottom:370.536000px;}
.y8a{bottom:371.970000px;}
.y24a{bottom:372.885000px;}
.y1b4{bottom:377.583000px;}
.yc1{bottom:378.654000px;}
.yad{bottom:381.156000px;}
.y109{bottom:382.657500px;}
.y121{bottom:382.687500px;}
.y6a{bottom:382.756500px;}
.ye1{bottom:382.767000px;}
.y17b{bottom:382.789500px;}
.y21c{bottom:382.815000px;}
.y1d7{bottom:382.822500px;}
.y1b2{bottom:383.547000px;}
.y249{bottom:388.635000px;}
.ye{bottom:390.120000px;}
.y157{bottom:391.788000px;}
.yac{bottom:392.170500px;}
.y1b3{bottom:392.850000px;}
.y1b1{bottom:397.102500px;}
.y108{bottom:399.900000px;}
.y120{bottom:399.930000px;}
.y69{bottom:399.999000px;}
.ye0{bottom:400.009500px;}
.y17a{bottom:400.032000px;}
.y21b{bottom:400.057500px;}
.y1d6{bottom:400.065000px;}
.y248{bottom:404.385000px;}
.yba{bottom:407.301000px;}
.y1ba{bottom:407.697000px;}
.yab{bottom:409.275000px;}
.y96{bottom:410.334000px;}
.y154{bottom:411.045000px;}
.y156{bottom:413.040000px;}
.ybc{bottom:414.189000px;}
.y1a8{bottom:415.011000px;}
.y92{bottom:415.482000px;}
.y107{bottom:417.142500px;}
.y11f{bottom:417.172500px;}
.y68{bottom:417.241500px;}
.ydf{bottom:417.252000px;}
.y179{bottom:417.274500px;}
.y21a{bottom:417.300000px;}
.y1d5{bottom:417.307500px;}
.y247{bottom:420.135000px;}
.yd{bottom:426.082500px;}
.y1a7{bottom:427.054500px;}
.y155{bottom:431.310000px;}
.ybb{bottom:432.564000px;}
.y1e7{bottom:434.407500px;}
.y11e{bottom:434.415000px;}
.y106{bottom:434.430000px;}
.y67{bottom:434.484000px;}
.yde{bottom:434.494500px;}
.y178{bottom:434.517000px;}
.y219{bottom:434.542500px;}
.y1d4{bottom:434.550000px;}
.y246{bottom:435.885000px;}
.y4f{bottom:436.500000px;}
.yc{bottom:447.087000px;}
.y1a9{bottom:449.580000px;}
.y245{bottom:451.635000px;}
.y1e6{bottom:451.650000px;}
.y11d{bottom:451.657500px;}
.y105{bottom:451.672500px;}
.y66{bottom:451.726500px;}
.ydd{bottom:451.737000px;}
.y177{bottom:451.759500px;}
.y218{bottom:451.785000px;}
.y1d3{bottom:451.792500px;}
.y4d{bottom:457.350000px;}
.y55{bottom:457.500000px;}
.y151{bottom:458.194500px;}
.y14c{bottom:459.012000px;}
.yb{bottom:462.092250px;}
.y1b9{bottom:463.200000px;}
.y1ac{bottom:465.109500px;}
.y1ab{bottom:465.382500px;}
.y1b0{bottom:467.253000px;}
.y244{bottom:467.385000px;}
.y152{bottom:468.453000px;}
.y1e5{bottom:468.892500px;}
.y11c{bottom:468.900000px;}
.y104{bottom:468.915000px;}
.y65{bottom:468.969000px;}
.ydc{bottom:468.979500px;}
.y176{bottom:469.002000px;}
.y217{bottom:469.027500px;}
.y1d2{bottom:469.035000px;}
.y14d{bottom:472.455000px;}
.y150{bottom:473.430000px;}
.y95{bottom:475.287000px;}
.y4b{bottom:475.500000px;}
.ya{bottom:477.097500px;}
.y1aa{bottom:478.885500px;}
.y14b{bottom:480.495000px;}
.y243{bottom:483.135000px;}
.y1a6{bottom:485.161500px;}
.y11b{bottom:486.142500px;}
.y103{bottom:486.157500px;}
.y64{bottom:486.211500px;}
.ydb{bottom:486.222000px;}
.y175{bottom:486.244500px;}
.y216{bottom:486.270000px;}
.y1d1{bottom:486.277500px;}
.y49{bottom:490.500000px;}
.y9{bottom:492.102750px;}
.y53{bottom:493.500000px;}
.y1af{bottom:495.960000px;}
.y14f{bottom:496.080000px;}
.y242{bottom:498.885000px;}
.y1ad{bottom:500.988000px;}
.y147{bottom:501.225000px;}
.y102{bottom:503.400000px;}
.y63{bottom:503.454000px;}
.y174{bottom:503.487000px;}
.y215{bottom:503.512500px;}
.ya5{bottom:503.520000px;}
.y153{bottom:504.783000px;}
.y1b7{bottom:504.822000px;}
.y8{bottom:507.108000px;}
.y47{bottom:511.500000px;}
.yda{bottom:512.094000px;}
.y204{bottom:512.116500px;}
.y51{bottom:513.000000px;}
.y241{bottom:514.635000px;}
.y1a5{bottom:517.386000px;}
.y101{bottom:520.642500px;}
.y62{bottom:520.696500px;}
.y173{bottom:520.729500px;}
.y214{bottom:520.755000px;}
.ya4{bottom:520.762500px;}
.y14e{bottom:520.845000px;}
.y7{bottom:522.113250px;}
.y1a3{bottom:524.053500px;}
.y1a4{bottom:529.629000px;}
.y1b8{bottom:530.221500px;}
.y240{bottom:530.385000px;}
.y14a{bottom:533.061000px;}
.y1ae{bottom:535.990500px;}
.y6{bottom:537.118500px;}
.y100{bottom:537.885000px;}
.y61{bottom:537.939000px;}
.y172{bottom:537.972000px;}
.y213{bottom:537.997500px;}
.ya3{bottom:538.005000px;}
.y46{bottom:541.335000px;}
.y1b6{bottom:544.260000px;}
.y23f{bottom:546.135000px;}
.y5{bottom:552.123750px;}
.yff{bottom:555.157500px;}
.y60{bottom:555.181500px;}
.y171{bottom:555.214500px;}
.yd9{bottom:555.225000px;}
.y212{bottom:555.240000px;}
.ya2{bottom:555.247500px;}
.y148{bottom:557.494500px;}
.y23e{bottom:561.885000px;}
.y149{bottom:571.249500px;}
.yfe{bottom:572.400000px;}
.y5f{bottom:572.424000px;}
.y170{bottom:572.457000px;}
.yd8{bottom:572.467500px;}
.y211{bottom:572.482500px;}
.ya1{bottom:572.490000px;}
.y146{bottom:574.491000px;}
.y23d{bottom:577.635000px;}
.y4{bottom:582.120000px;}
.y16c{bottom:588.780000px;}
.yfd{bottom:589.642500px;}
.y16f{bottom:589.699500px;}
.yd7{bottom:589.710000px;}
.y210{bottom:589.725000px;}
.ya0{bottom:589.732500px;}
.y23c{bottom:593.385000px;}
.y5e{bottom:598.296000px;}
.y33{bottom:600.885000px;}
.yfc{bottom:606.892500px;}
.y16e{bottom:606.942000px;}
.yd6{bottom:606.952500px;}
.y20f{bottom:606.967500px;}
.y9f{bottom:606.975000px;}
.y23b{bottom:609.135000px;}
.y1a2{bottom:621.798000px;}
.y32{bottom:621.857250px;}
.yfb{bottom:624.169500px;}
.y16d{bottom:624.184500px;}
.yd5{bottom:624.195000px;}
.y20e{bottom:624.210000px;}
.y9e{bottom:624.217500px;}
.y27{bottom:624.384000px;}
.y23a{bottom:624.885000px;}
.y91{bottom:635.551500px;}
.y142{bottom:635.947500px;}
.y90{bottom:636.393000px;}
.y31{bottom:636.862500px;}
.y26{bottom:638.640000px;}
.y239{bottom:640.635000px;}
.y5d{bottom:641.427000px;}
.yd4{bottom:641.437500px;}
.y20d{bottom:641.452500px;}
.y9d{bottom:641.460000px;}
.y1a1{bottom:642.682500px;}
.y19f{bottom:648.636000px;}
.yfa{bottom:650.041500px;}
.y141{bottom:651.025500px;}
.y30{bottom:651.867750px;}
.y238{bottom:656.385000px;}
.y1a0{bottom:657.939000px;}
.y5c{bottom:658.669500px;}
.yd3{bottom:658.680000px;}
.y20c{bottom:658.695000px;}
.y9c{bottom:658.702500px;}
.y19e{bottom:662.191500px;}
.y2f{bottom:666.873000px;}
.y1bb{bottom:671.803500px;}
.y237{bottom:672.135000px;}
.y5b{bottom:675.912000px;}
.yd2{bottom:675.922500px;}
.y20b{bottom:675.937500px;}
.y9b{bottom:675.945000px;}
.y195{bottom:680.139000px;}
.y2e{bottom:681.878250px;}
.y236{bottom:687.885000px;}
.y8f{bottom:688.350000px;}
.y13f{bottom:689.547000px;}
.y194{bottom:692.182500px;}
.y5a{bottom:693.154500px;}
.yd1{bottom:693.165000px;}
.yf9{bottom:693.172500px;}
.y20a{bottom:693.180000px;}
.y9a{bottom:693.187500px;}
.y144{bottom:694.716000px;}
.y2d{bottom:696.883500px;}
.y145{bottom:701.089500px;}
.y140{bottom:702.990000px;}
.y235{bottom:703.635000px;}
.y25{bottom:708.849000px;}
.yd0{bottom:710.407500px;}
.yf8{bottom:710.415000px;}
.y209{bottom:710.422500px;}
.y99{bottom:710.430000px;}
.y13e{bottom:711.030000px;}
.y2c{bottom:711.888750px;}
.y196{bottom:714.690000px;}
.y59{bottom:719.026500px;}
.y234{bottom:719.385000px;}
.y24{bottom:723.105000px;}
.ycf{bottom:727.650000px;}
.yf7{bottom:727.657500px;}
.y208{bottom:727.665000px;}
.y98{bottom:727.672500px;}
.y199{bottom:730.230000px;}
.y198{bottom:730.482000px;}
.y19d{bottom:732.363000px;}
.y233{bottom:735.135000px;}
.y16a{bottom:736.135500px;}
.y143{bottom:739.372500px;}
.y13a{bottom:740.134500px;}
.y23{bottom:741.105000px;}
.y2b{bottom:741.885000px;}
.y197{bottom:743.985000px;}
.yce{bottom:744.892500px;}
.yf6{bottom:744.900000px;}
.y207{bottom:744.907500px;}
.y97{bottom:744.915000px;}
.y193{bottom:750.289500px;}
.y232{bottom:750.885000px;}
.y8e{bottom:756.840000px;}
.y19c{bottom:761.070000px;}
.y138{bottom:761.386500px;}
.yf5{bottom:762.142500px;}
.y206{bottom:762.150000px;}
.y58{bottom:762.157500px;}
.y13d{bottom:763.602000px;}
.y19a{bottom:766.108500px;}
.y231{bottom:766.635000px;}
.y2{bottom:771.105000px;}
.y93{bottom:775.050000px;}
.y2a{bottom:777.875250px;}
.y205{bottom:779.392500px;}
.y57{bottom:779.400000px;}
.y230{bottom:782.385000px;}
.y13b{bottom:782.649000px;}
.y139{bottom:784.654500px;}
.y192{bottom:785.506500px;}
.y22{bottom:786.105000px;}
.y190{bottom:789.150000px;}
.y191{bottom:796.143000px;}
.y56{bottom:796.642500px;}
.y22f{bottom:798.135000px;}
.y29{bottom:798.879750px;}
.y19b{bottom:801.096000px;}
.y13c{bottom:801.790500px;}
.y137{bottom:805.035000px;}
.y1{bottom:807.105000px;}
.y21{bottom:810.105000px;}
.y28{bottom:813.885000px;}
.y94{bottom:817.230000px;}
.y20{bottom:861.105000px;}
.y3{bottom:924.000000px;}
.h11{height:10.500000px;}
.hd{height:10.800000px;}
.hf{height:12.000000px;}
.h10{height:13.500000px;}
.h9{height:16.500000px;}
.hb{height:18.000000px;}
.h15{height:38.411155px;}
.h14{height:38.412000px;}
.h13{height:44.814000px;}
.h2{height:47.085938px;}
.he{height:47.698242px;}
.h6{height:51.216000px;}
.ha{height:52.998047px;}
.h5{height:57.618000px;}
.hc{height:58.297852px;}
.h17{height:60.480000px;}
.h3{height:60.819000px;}
.h4{height:61.788000px;}
.h1f{height:64.020000px;}
.h1e{height:65.040000px;}
.h18{height:66.888000px;}
.h16{height:70.392000px;}
.h8{height:70.422000px;}
.h19{height:71.364000px;}
.h12{height:71.544000px;}
.h7{height:76.824000px;}
.h1d{height:90.720000px;}
.h1{height:102.432000px;}
.h1a{height:105.672000px;}
.h1b{height:133.014000px;}
.h1c{height:145.908000px;}
.h0{height:894.000000px;}
.w9{width:156.000000px;}
.w8{width:157.500000px;}
.w1{width:160.500000px;}
.w7{width:201.000000px;}
.w2{width:207.000000px;}
.w6{width:216.000000px;}
.w3{width:226.500000px;}
.w5{width:229.500000px;}
.w4{width:238.481250px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x3{left:6.000000px;}
.x14{left:16.146000px;}
.x13{left:27.230936px;}
.x11{left:43.168800px;}
.xf{left:54.016350px;}
.x12{left:73.509375px;}
.x4{left:76.200000px;}
.x9{left:77.415000px;}
.x10{left:82.500000px;}
.x2b{left:86.710500px;}
.x60{left:89.005500px;}
.xd{left:90.015150px;}
.x70{left:91.200000px;}
.x6f{left:92.415000px;}
.x16{left:93.442500px;}
.xa{left:94.641000px;}
.x1c{left:96.480000px;}
.x5{left:98.704500px;}
.xe{left:102.000000px;}
.x3e{left:108.045000px;}
.x3d{left:112.359000px;}
.x4a{left:113.725500px;}
.x66{left:122.823000px;}
.x1d{left:128.337000px;}
.x6e{left:134.236500px;}
.x28{left:141.058500px;}
.x5b{left:142.482000px;}
.xc{left:147.000000px;}
.x52{left:148.245000px;}
.x67{left:155.257500px;}
.x27{left:158.835000px;}
.x50{left:162.720000px;}
.x48{left:172.908000px;}
.x4f{left:177.718500px;}
.x5e{left:183.894000px;}
.x1{left:187.620000px;}
.x55{left:189.646500px;}
.x56{left:193.980000px;}
.x69{left:196.669500px;}
.x26{left:198.714000px;}
.x4b{left:200.245500px;}
.x44{left:212.266500px;}
.x2{left:213.396000px;}
.x5f{left:220.297500px;}
.x3c{left:226.651500px;}
.x6a{left:230.038500px;}
.x3f{left:244.153500px;}
.x5d{left:257.835000px;}
.x29{left:259.509000px;}
.x51{left:262.110000px;}
.x54{left:263.587500px;}
.x2f{left:267.990000px;}
.x2e{left:270.171000px;}
.x30{left:272.868090px;}
.x38{left:274.863000px;}
.x4e{left:276.670500px;}
.x5c{left:280.683000px;}
.x25{left:281.937000px;}
.x64{left:283.638000px;}
.x5a{left:289.398000px;}
.x19{left:290.722500px;}
.x2d{left:293.049000px;}
.x6d{left:296.419500px;}
.x2a{left:298.947000px;}
.xb{left:300.240000px;}
.x4c{left:302.175000px;}
.x31{left:306.239085px;}
.x53{left:308.800500px;}
.x47{left:311.497500px;}
.x43{left:312.561000px;}
.x37{left:314.445000px;}
.x40{left:316.687500px;}
.x41{left:320.163000px;}
.x18{left:325.380000px;}
.x65{left:326.877000px;}
.x3a{left:332.565000px;}
.x15{left:334.500000px;}
.x4d{left:337.014000px;}
.x49{left:339.150000px;}
.x24{left:343.540500px;}
.x34{left:345.015000px;}
.x68{left:351.103500px;}
.x1e{left:353.085000px;}
.x1f{left:355.216500px;}
.x46{left:361.015500px;}
.x42{left:364.000500px;}
.x36{left:366.573000px;}
.x32{left:372.392340px;}
.x35{left:374.340000px;}
.x33{left:375.765885px;}
.x45{left:383.790000px;}
.x6{left:384.990000px;}
.x23{left:387.861000px;}
.x63{left:390.853500px;}
.x8{left:393.405000px;}
.x3b{left:394.725000px;}
.x59{left:396.613500px;}
.x58{left:398.220000px;}
.x62{left:403.747500px;}
.x20{left:405.732000px;}
.x7{left:407.715000px;}
.x2c{left:409.977000px;}
.x6c{left:416.508000px;}
.x17{left:438.510000px;}
.x1b{left:440.205000px;}
.x21{left:455.523000px;}
.x39{left:458.670000px;}
.x61{left:536.878500px;}
.x22{left:539.869500px;}
.x57{left:542.644500px;}
.x6b{left:549.645000px;}
.x1a{left:552.400500px;}
@media print{
.vb{vertical-align:-57.045333pt;}
.v7{vertical-align:-53.749333pt;}
.v9{vertical-align:-51.258667pt;}
.v1{vertical-align:-48.010667pt;}
.va{vertical-align:-35.056000pt;}
.v3{vertical-align:-20.000000pt;}
.vf{vertical-align:-16.016000pt;}
.v6{vertical-align:-12.362667pt;}
.v10{vertical-align:-0.933333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.616000pt;}
.v2{vertical-align:22.736000pt;}
.v5{vertical-align:25.312000pt;}
.vd{vertical-align:37.594667pt;}
.vc{vertical-align:40.805333pt;}
.ve{vertical-align:49.130667pt;}
.v8{vertical-align:54.096000pt;}
.ls3b{letter-spacing:-8.037333pt;}
.ls49{letter-spacing:-7.626667pt;}
.ls20{letter-spacing:-7.144000pt;}
.ls34{letter-spacing:-6.688000pt;}
.ls1c{letter-spacing:-6.637333pt;}
.ls4c{letter-spacing:-6.218667pt;}
.ls1e{letter-spacing:-5.624000pt;}
.ls36{letter-spacing:-5.221333pt;}
.ls52{letter-spacing:-5.162667pt;}
.ls22{letter-spacing:-4.762667pt;}
.ls33{letter-spacing:-4.661333pt;}
.ls1b{letter-spacing:-4.610667pt;}
.ls48{letter-spacing:-4.517333pt;}
.ls1f{letter-spacing:-4.458667pt;}
.ls53{letter-spacing:-2.602667pt;}
.ls43{letter-spacing:-2.528533pt;}
.ls25{letter-spacing:-2.432000pt;}
.ls51{letter-spacing:-2.170667pt;}
.ls95{letter-spacing:-2.112000pt;}
.ls4f{letter-spacing:-2.065067pt;}
.ls91{letter-spacing:-2.053333pt;}
.ls90{letter-spacing:-1.818667pt;}
.ls3d{letter-spacing:-1.777600pt;}
.ls23{letter-spacing:-1.773333pt;}
.ls4b{letter-spacing:-1.760000pt;}
.lsb7{letter-spacing:-1.720000pt;}
.lsb8{letter-spacing:-1.706667pt;}
.ls42{letter-spacing:-1.642667pt;}
.ls28{letter-spacing:-1.621333pt;}
.ls8f{letter-spacing:-1.584000pt;}
.ls8c{letter-spacing:-1.525333pt;}
.ls26{letter-spacing:-1.469333pt;}
.ls74{letter-spacing:-1.466667pt;}
.ls30{letter-spacing:-1.454133pt;}
.ls45{letter-spacing:-1.408000pt;}
.ls46{letter-spacing:-1.402133pt;}
.ls27{letter-spacing:-1.368000pt;}
.ls94{letter-spacing:-1.349333pt;}
.ls3a{letter-spacing:-1.296533pt;}
.ls65{letter-spacing:-1.290667pt;}
.lsb4{letter-spacing:-1.280000pt;}
.lsb0{letter-spacing:-1.240000pt;}
.ls60{letter-spacing:-1.232000pt;}
.lsb1{letter-spacing:-1.226667pt;}
.ls1a{letter-spacing:-1.216000pt;}
.ls75{letter-spacing:-1.173333pt;}
.ls47{letter-spacing:-1.167467pt;}
.ls3e{letter-spacing:-1.114667pt;}
.lsad{letter-spacing:-1.066667pt;}
.ls32{letter-spacing:-1.064000pt;}
.ls4e{letter-spacing:-1.061867pt;}
.ls4a{letter-spacing:-1.056000pt;}
.lsac{letter-spacing:-1.013333pt;}
.lsab{letter-spacing:-1.000000pt;}
.ls40{letter-spacing:-0.997333pt;}
.lsb2{letter-spacing:-0.960000pt;}
.ls38{letter-spacing:-0.938667pt;}
.ls8e{letter-spacing:-0.924000pt;}
.ls9c{letter-spacing:-0.920000pt;}
.ls21{letter-spacing:-0.912000pt;}
.ls9d{letter-spacing:-0.906667pt;}
.ls7b{letter-spacing:-0.880000pt;}
.ls24{letter-spacing:-0.861333pt;}
.lsba{letter-spacing:-0.853333pt;}
.lsb9{letter-spacing:-0.840000pt;}
.ls3f{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.810667pt;}
.ls37{letter-spacing:-0.762667pt;}
.ls31{letter-spacing:-0.749867pt;}
.lsb3{letter-spacing:-0.746667pt;}
.ls19{letter-spacing:-0.709333pt;}
.ls35{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.658667pt;}
.ls3c{letter-spacing:-0.645333pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls8d{letter-spacing:-0.616000pt;}
.ls1d{letter-spacing:-0.608000pt;}
.ls5f{letter-spacing:-0.586667pt;}
.ls7a{letter-spacing:-0.572000pt;}
.ls2d{letter-spacing:-0.562400pt;}
.ls54{letter-spacing:-0.554667pt;}
.ls44{letter-spacing:-0.528000pt;}
.ls2a{letter-spacing:-0.511733pt;}
.ls17{letter-spacing:-0.506667pt;}
.ls4d{letter-spacing:-0.469333pt;}
.ls2b{letter-spacing:-0.461067pt;}
.lsb{letter-spacing:-0.456000pt;}
.ls2f{letter-spacing:-0.415467pt;}
.ls61{letter-spacing:-0.410667pt;}
.ls2c{letter-spacing:-0.410400pt;}
.ls85{letter-spacing:-0.384000pt;}
.lsaf{letter-spacing:-0.373333pt;}
.ls2e{letter-spacing:-0.354667pt;}
.ls41{letter-spacing:-0.352000pt;}
.ls29{letter-spacing:-0.319200pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls63{letter-spacing:-0.293333pt;}
.lsb5{letter-spacing:-0.280000pt;}
.lsae{letter-spacing:-0.266667pt;}
.ls78{letter-spacing:-0.264000pt;}
.lsd{letter-spacing:-0.253333pt;}
.ls66{letter-spacing:-0.240000pt;}
.ls39{letter-spacing:-0.234667pt;}
.lsb6{letter-spacing:-0.200000pt;}
.ls62{letter-spacing:-0.176000pt;}
.ls8{letter-spacing:-0.152000pt;}
.ls70{letter-spacing:-0.144000pt;}
.ls5e{letter-spacing:-0.117333pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls79{letter-spacing:-0.088000pt;}
.ls50{letter-spacing:-0.058667pt;}
.lsaa{letter-spacing:-0.053333pt;}
.lsc{letter-spacing:-0.050667pt;}
.ls8b{letter-spacing:-0.044000pt;}
.ls9e{letter-spacing:-0.042667pt;}
.ls71{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls80{letter-spacing:0.005333pt;}
.ls86{letter-spacing:0.037333pt;}
.lsa9{letter-spacing:0.040000pt;}
.ls81{letter-spacing:0.042667pt;}
.ls6b{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.050667pt;}
.lsa4{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.058667pt;}
.ls73{letter-spacing:0.088000pt;}
.lsa1{letter-spacing:0.106667pt;}
.ls57{letter-spacing:0.117333pt;}
.lsa2{letter-spacing:0.120000pt;}
.ls4{letter-spacing:0.152000pt;}
.ls9b{letter-spacing:0.160000pt;}
.ls56{letter-spacing:0.176000pt;}
.ls9a{letter-spacing:0.213333pt;}
.ls55{letter-spacing:0.234667pt;}
.ls72{letter-spacing:0.264000pt;}
.ls69{letter-spacing:0.293333pt;}
.ls14{letter-spacing:0.352000pt;}
.ls11{letter-spacing:0.354667pt;}
.lsa0{letter-spacing:0.400000pt;}
.ls5{letter-spacing:0.405333pt;}
.ls15{letter-spacing:0.410667pt;}
.ls9f{letter-spacing:0.426667pt;}
.ls6a{letter-spacing:0.432000pt;}
.ls59{letter-spacing:0.469333pt;}
.ls7c{letter-spacing:0.484000pt;}
.ls67{letter-spacing:0.528000pt;}
.ls58{letter-spacing:0.586667pt;}
.ls5d{letter-spacing:0.645333pt;}
.ls5c{letter-spacing:0.704000pt;}
.lsa6{letter-spacing:0.746667pt;}
.lsa5{letter-spacing:0.760000pt;}
.ls5b{letter-spacing:0.762667pt;}
.ls5a{letter-spacing:0.821333pt;}
.ls2{letter-spacing:0.861333pt;}
.ls88{letter-spacing:0.880000pt;}
.ls98{letter-spacing:0.960000pt;}
.ls89{letter-spacing:0.997333pt;}
.ls64{letter-spacing:1.056000pt;}
.ls8a{letter-spacing:1.114667pt;}
.ls96{letter-spacing:1.173333pt;}
.ls7{letter-spacing:1.200000pt;}
.ls97{letter-spacing:1.226667pt;}
.lsf{letter-spacing:1.248000pt;}
.ls99{letter-spacing:1.280000pt;}
.ls93{letter-spacing:1.408000pt;}
.ls87{letter-spacing:1.466667pt;}
.ls68{letter-spacing:1.525333pt;}
.lsa3{letter-spacing:11.466667pt;}
.ls12{letter-spacing:12.362667pt;}
.ls10{letter-spacing:12.616000pt;}
.ls92{letter-spacing:13.376000pt;}
.ls77{letter-spacing:13.414667pt;}
.lsa7{letter-spacing:14.880000pt;}
.lsa8{letter-spacing:15.093333pt;}
.ls76{letter-spacing:15.174667pt;}
.ls16{letter-spacing:42.624000pt;}
.ls6c{letter-spacing:45.322667pt;}
.ls6{letter-spacing:61.104000pt;}
.ls83{letter-spacing:61.936000pt;}
.ls6e{letter-spacing:73.408000pt;}
.ls7e{letter-spacing:74.704000pt;}
.ls82{letter-spacing:79.109333pt;}
.ls7f{letter-spacing:95.610667pt;}
.ls6d{letter-spacing:108.096000pt;}
.ls84{letter-spacing:130.442667pt;}
.ls6f{letter-spacing:137.642667pt;}
.ls7d{letter-spacing:162.986667pt;}
.ws8d{word-spacing:-16.192000pt;}
.wsbd{word-spacing:-16.133333pt;}
.wsb2{word-spacing:-15.722667pt;}
.wsaf{word-spacing:-15.488000pt;}
.wsc6{word-spacing:-15.429333pt;}
.ws72{word-spacing:-15.370667pt;}
.ws71{word-spacing:-15.312000pt;}
.ws9e{word-spacing:-15.253333pt;}
.wscf{word-spacing:-15.194667pt;}
.wsb0{word-spacing:-15.136000pt;}
.ws6f{word-spacing:-15.077333pt;}
.wsd1{word-spacing:-15.018667pt;}
.ws3c{word-spacing:-14.960000pt;}
.wsac{word-spacing:-14.901333pt;}
.wsb1{word-spacing:-14.842667pt;}
.ws90{word-spacing:-14.784000pt;}
.ws8e{word-spacing:-14.725333pt;}
.ws47{word-spacing:-14.666667pt;}
.wsd7{word-spacing:-14.613333pt;}
.ws55{word-spacing:-14.608000pt;}
.wsd4{word-spacing:-14.560000pt;}
.wsa1{word-spacing:-14.549333pt;}
.ws8c{word-spacing:-14.490667pt;}
.ws40{word-spacing:-14.432000pt;}
.ws70{word-spacing:-14.373333pt;}
.ws3b{word-spacing:-14.256000pt;}
.wsa3{word-spacing:-14.197333pt;}
.wsae{word-spacing:-14.138667pt;}
.ws8f{word-spacing:-14.080000pt;}
.ws43{word-spacing:-14.021333pt;}
.ws50{word-spacing:-13.962667pt;}
.ws3e{word-spacing:-13.904000pt;}
.ws46{word-spacing:-13.845333pt;}
.wsbe{word-spacing:-13.786667pt;}
.ws3f{word-spacing:-13.728000pt;}
.ws48{word-spacing:-13.669333pt;}
.wscb{word-spacing:-13.610667pt;}
.ws53{word-spacing:-13.604800pt;}
.ws45{word-spacing:-13.552000pt;}
.wsd9{word-spacing:-13.546667pt;}
.ws4d{word-spacing:-13.499200pt;}
.wsa0{word-spacing:-13.493333pt;}
.wsf2{word-spacing:-13.386667pt;}
.ws41{word-spacing:-13.370133pt;}
.wsd5{word-spacing:-13.333333pt;}
.wse2{word-spacing:-13.280000pt;}
.ws4c{word-spacing:-13.264533pt;}
.ws4b{word-spacing:-13.258667pt;}
.wsb{word-spacing:-13.248000pt;}
.ws9f{word-spacing:-13.200000pt;}
.wscd{word-spacing:-13.141333pt;}
.wscc{word-spacing:-13.082667pt;}
.wse5{word-spacing:-13.066667pt;}
.ws49{word-spacing:-13.024000pt;}
.wse6{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.920000pt;}
.ws51{word-spacing:-12.906667pt;}
.ws44{word-spacing:-12.889067pt;}
.ws9{word-spacing:-12.818667pt;}
.wsa{word-spacing:-12.717333pt;}
.wsea{word-spacing:-12.693333pt;}
.ws3{word-spacing:-12.666667pt;}
.ws6{word-spacing:-12.616000pt;}
.wsce{word-spacing:-12.613333pt;}
.ws54{word-spacing:-12.601600pt;}
.wsed{word-spacing:-12.586667pt;}
.ws36{word-spacing:-12.514667pt;}
.ws56{word-spacing:-12.496000pt;}
.wsfa{word-spacing:-12.426667pt;}
.ws7{word-spacing:-12.413333pt;}
.wseb{word-spacing:-12.373333pt;}
.ws30{word-spacing:-12.347467pt;}
.ws25{word-spacing:-12.312000pt;}
.wse3{word-spacing:-12.266667pt;}
.ws33{word-spacing:-12.256267pt;}
.ws35{word-spacing:-12.251200pt;}
.ws85{word-spacing:-12.240000pt;}
.ws5{word-spacing:-12.210667pt;}
.ws32{word-spacing:-12.205600pt;}
.ws1f{word-spacing:-12.160000pt;}
.ws31{word-spacing:-12.154933pt;}
.ws4a{word-spacing:-12.138133pt;}
.wsee{word-spacing:-12.106667pt;}
.ws34{word-spacing:-12.104267pt;}
.wsf0{word-spacing:-12.053333pt;}
.ws92{word-spacing:-12.048000pt;}
.ws20{word-spacing:-12.008000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws21{word-spacing:-11.957333pt;}
.ws38{word-spacing:-11.916800pt;}
.ws8{word-spacing:-11.856000pt;}
.ws29{word-spacing:-11.754667pt;}
.ws22{word-spacing:-11.704000pt;}
.wsf7{word-spacing:-11.626667pt;}
.wsb4{word-spacing:-11.484000pt;}
.ws2e{word-spacing:-11.298667pt;}
.ws9d{word-spacing:-11.264000pt;}
.ws37{word-spacing:-11.212533pt;}
.wsd3{word-spacing:-11.200000pt;}
.ws2d{word-spacing:-11.197333pt;}
.wsa2{word-spacing:-11.088000pt;}
.ws2f{word-spacing:-11.045333pt;}
.wsb3{word-spacing:-11.000000pt;}
.ws2b{word-spacing:-10.893333pt;}
.wsd{word-spacing:-10.880000pt;}
.wsa9{word-spacing:-10.824000pt;}
.wsf4{word-spacing:-10.760000pt;}
.wsa8{word-spacing:-10.736000pt;}
.ws84{word-spacing:-10.666667pt;}
.wsdb{word-spacing:-10.624000pt;}
.wsd0{word-spacing:-10.472000pt;}
.wsad{word-spacing:-10.428000pt;}
.wse4{word-spacing:-10.400000pt;}
.ws2c{word-spacing:-10.234667pt;}
.ws58{word-spacing:-10.197333pt;}
.ws4e{word-spacing:-10.149333pt;}
.wsec{word-spacing:-10.120000pt;}
.ws5a{word-spacing:-10.112000pt;}
.wsfb{word-spacing:-10.040000pt;}
.wsd8{word-spacing:-10.000000pt;}
.ws82{word-spacing:-9.944000pt;}
.wsf3{word-spacing:-9.800000pt;}
.wsf1{word-spacing:-9.720000pt;}
.ws57{word-spacing:-9.504000pt;}
.ws3d{word-spacing:-9.445333pt;}
.wsb6{word-spacing:-9.370667pt;}
.wse9{word-spacing:-9.360000pt;}
.ws94{word-spacing:-9.333333pt;}
.ws93{word-spacing:-9.296000pt;}
.ws10a{word-spacing:-9.160000pt;}
.wsf9{word-spacing:-9.120000pt;}
.wsd6{word-spacing:-9.080000pt;}
.ws91{word-spacing:-9.000000pt;}
.wse7{word-spacing:-8.760000pt;}
.wsef{word-spacing:-8.720000pt;}
.ws52{word-spacing:-8.448000pt;}
.wsf6{word-spacing:-8.280000pt;}
.ws27{word-spacing:-8.208000pt;}
.ws59{word-spacing:-8.064000pt;}
.ws23{word-spacing:-8.056000pt;}
.ws39{word-spacing:-8.005333pt;}
.ws86{word-spacing:-8.000000pt;}
.ws2a{word-spacing:-7.904000pt;}
.ws26{word-spacing:-7.042667pt;}
.ws4f{word-spacing:-7.040000pt;}
.ws42{word-spacing:-6.629333pt;}
.ws1{word-spacing:-6.570667pt;}
.wse1{word-spacing:-6.400000pt;}
.ws24{word-spacing:-6.029333pt;}
.ws3a{word-spacing:-5.978667pt;}
.ws28{word-spacing:-5.522667pt;}
.ws98{word-spacing:-1.680000pt;}
.ws8a{word-spacing:-1.584000pt;}
.wsb8{word-spacing:-1.488000pt;}
.wsb9{word-spacing:-1.440000pt;}
.wsf5{word-spacing:-0.853333pt;}
.wsa7{word-spacing:-0.762667pt;}
.ws97{word-spacing:-0.720000pt;}
.ws88{word-spacing:-0.704000pt;}
.ws73{word-spacing:-0.645333pt;}
.wsfc{word-spacing:-0.640000pt;}
.ws18{word-spacing:-0.608000pt;}
.ws81{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.557333pt;}
.ws6c{word-spacing:-0.528000pt;}
.wse{word-spacing:-0.506667pt;}
.ws107{word-spacing:-0.480000pt;}
.ws61{word-spacing:-0.469333pt;}
.ws64{word-spacing:-0.410667pt;}
.ws1a{word-spacing:-0.405333pt;}
.ws6d{word-spacing:-0.384000pt;}
.wsff{word-spacing:-0.373333pt;}
.ws12{word-spacing:-0.354667pt;}
.ws7f{word-spacing:-0.352000pt;}
.ws101{word-spacing:-0.320000pt;}
.ws69{word-spacing:-0.293333pt;}
.ws8b{word-spacing:-0.288000pt;}
.ws5e{word-spacing:-0.253333pt;}
.ws66{word-spacing:-0.234667pt;}
.ws17{word-spacing:-0.202667pt;}
.ws76{word-spacing:-0.176000pt;}
.ws7d{word-spacing:-0.117333pt;}
.ws105{word-spacing:-0.106667pt;}
.wsa4{word-spacing:-0.058667pt;}
.ws100{word-spacing:-0.053333pt;}
.ws5c{word-spacing:-0.050667pt;}
.ws0{word-spacing:0.000000pt;}
.wsde{word-spacing:0.053333pt;}
.ws96{word-spacing:0.058667pt;}
.wsf{word-spacing:0.101333pt;}
.wsdc{word-spacing:0.106667pt;}
.ws67{word-spacing:0.117333pt;}
.ws1b{word-spacing:0.152000pt;}
.ws10b{word-spacing:0.160000pt;}
.wsa6{word-spacing:0.176000pt;}
.ws5d{word-spacing:0.202667pt;}
.ws109{word-spacing:0.213333pt;}
.ws65{word-spacing:0.234667pt;}
.wsdd{word-spacing:0.266667pt;}
.ws6a{word-spacing:0.293333pt;}
.wsdf{word-spacing:0.320000pt;}
.ws89{word-spacing:0.352000pt;}
.wsfd{word-spacing:0.373333pt;}
.ws10{word-spacing:0.405333pt;}
.wsa5{word-spacing:0.410667pt;}
.ws77{word-spacing:0.469333pt;}
.ws15{word-spacing:0.506667pt;}
.ws7c{word-spacing:0.528000pt;}
.ws102{word-spacing:0.533333pt;}
.ws80{word-spacing:0.586667pt;}
.ws103{word-spacing:0.640000pt;}
.ws6b{word-spacing:0.645333pt;}
.ws7e{word-spacing:0.704000pt;}
.ws5f{word-spacing:0.762667pt;}
.ws10c{word-spacing:0.800000pt;}
.ws60{word-spacing:0.821333pt;}
.ws1c{word-spacing:0.861333pt;}
.ws7b{word-spacing:0.880000pt;}
.wsfe{word-spacing:0.906667pt;}
.ws5b{word-spacing:0.912000pt;}
.wsb5{word-spacing:0.938667pt;}
.ws74{word-spacing:0.997333pt;}
.ws108{word-spacing:1.013333pt;}
.ws68{word-spacing:1.056000pt;}
.ws19{word-spacing:1.064000pt;}
.ws13{word-spacing:1.114667pt;}
.wse0{word-spacing:1.120000pt;}
.ws1d{word-spacing:1.152000pt;}
.ws4{word-spacing:1.165333pt;}
.ws78{word-spacing:1.173333pt;}
.ws11{word-spacing:1.216000pt;}
.ws104{word-spacing:1.226667pt;}
.ws79{word-spacing:1.232000pt;}
.wsbb{word-spacing:1.248000pt;}
.ws16{word-spacing:1.266667pt;}
.ws106{word-spacing:1.280000pt;}
.ws7a{word-spacing:1.290667pt;}
.wsbc{word-spacing:1.296000pt;}
.ws63{word-spacing:1.349333pt;}
.ws62{word-spacing:1.408000pt;}
.ws75{word-spacing:1.466667pt;}
.wsd2{word-spacing:1.525333pt;}
.ws1e{word-spacing:1.824000pt;}
.wsba{word-spacing:2.304000pt;}
.wsc9{word-spacing:3.590667pt;}
.wsc8{word-spacing:3.669333pt;}
.wsf8{word-spacing:3.746667pt;}
.wsc7{word-spacing:3.800000pt;}
.wsca{word-spacing:3.906667pt;}
.wse8{word-spacing:4.013333pt;}
.wsab{word-spacing:4.129333pt;}
.wsaa{word-spacing:4.133333pt;}
.ws9a{word-spacing:5.568000pt;}
.ws99{word-spacing:5.616000pt;}
.ws9b{word-spacing:5.952000pt;}
.ws9c{word-spacing:6.000000pt;}
.wsc1{word-spacing:7.274667pt;}
.wsc4{word-spacing:8.400000pt;}
.wsc0{word-spacing:11.616000pt;}
.wsbf{word-spacing:11.674667pt;}
.ws83{word-spacing:31.744000pt;}
.wsda{word-spacing:31.914667pt;}
.wsb7{word-spacing:64.698667pt;}
.ws95{word-spacing:70.522667pt;}
.wsc3{word-spacing:111.216000pt;}
.ws87{word-spacing:128.277333pt;}
.wsc5{word-spacing:143.173333pt;}
.wsc2{word-spacing:159.824000pt;}
.ws6e{word-spacing:762.368000pt;}
._9{margin-left:-11.349333pt;}
._16{margin-left:-9.152000pt;}
._3{margin-left:-7.618667pt;}
._5{margin-left:-6.586667pt;}
._0{margin-left:-5.546667pt;}
._4{margin-left:-4.496000pt;}
._6{margin-left:-3.445333pt;}
._b{margin-left:-2.405333pt;}
._1{margin-left:-1.450667pt;}
._2{width:1.024000pt;}
._a{width:2.112000pt;}
._7{width:11.888000pt;}
._1d{width:13.050667pt;}
._1b{width:13.962667pt;}
._1f{width:39.909333pt;}
._8{width:42.741333pt;}
._18{width:46.144000pt;}
._1a{width:49.317333pt;}
._19{width:56.000000pt;}
._1e{width:57.605333pt;}
._17{width:67.200000pt;}
._15{width:118.346667pt;}
._e{width:125.328000pt;}
._f{width:127.418667pt;}
._14{width:130.965333pt;}
._11{width:134.288000pt;}
._12{width:136.117333pt;}
._13{width:139.141333pt;}
._10{width:140.746667pt;}
._21{width:175.461333pt;}
._c{width:197.221333pt;}
._1c{width:226.538667pt;}
._20{width:751.392000pt;}
._d{width:773.109333pt;}
.fse{font-size:26.133333pt;}
.fsd{font-size:28.000000pt;}
.fsb{font-size:31.999296pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:36.000000pt;}
.fs9{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:43.200000pt;}
.fs8{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs6{font-size:52.800000pt;}
.fsf{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:0.574667pt;}
.y4e{bottom:1.117200pt;}
.y50{bottom:1.241333pt;}
.y52{bottom:1.908000pt;}
.y4c{bottom:2.832133pt;}
.y48{bottom:3.241333pt;}
.y4a{bottom:3.908000pt;}
.y136{bottom:47.546667pt;}
.y45{bottom:47.882667pt;}
.y18f{bottom:48.000000pt;}
.y89{bottom:48.185333pt;}
.y22e{bottom:48.226667pt;}
.yaa{bottom:48.432000pt;}
.y1f{bottom:48.541333pt;}
.y132{bottom:48.793333pt;}
.y11a{bottom:48.837333pt;}
.y203{bottom:48.846667pt;}
.y1e4{bottom:48.866667pt;}
.yf4{bottom:48.900000pt;}
.y1f1{bottom:48.904000pt;}
.y7d{bottom:49.021333pt;}
.y18e{bottom:49.050667pt;}
.y25e{bottom:51.453333pt;}
.y135{bottom:60.202667pt;}
.ya9{bottom:61.104000pt;}
.y1e{bottom:61.213333pt;}
.y22d{bottom:62.226667pt;}
.y44{bottom:63.209333pt;}
.y88{bottom:63.512000pt;}
.y119{bottom:64.164000pt;}
.y131{bottom:64.170667pt;}
.y202{bottom:64.173333pt;}
.y1e3{bottom:64.193333pt;}
.yf3{bottom:64.226667pt;}
.y1f0{bottom:64.230667pt;}
.y7c{bottom:64.348000pt;}
.y18d{bottom:64.377333pt;}
.y25d{bottom:65.453333pt;}
.y134{bottom:72.874667pt;}
.ya8{bottom:73.776000pt;}
.y22c{bottom:76.226667pt;}
.y43{bottom:78.536000pt;}
.y87{bottom:78.838667pt;}
.y25c{bottom:79.453333pt;}
.y118{bottom:79.490667pt;}
.y130{bottom:79.497333pt;}
.y201{bottom:79.500000pt;}
.y1e2{bottom:79.520000pt;}
.yf2{bottom:79.553333pt;}
.y7b{bottom:79.674667pt;}
.y18c{bottom:79.704000pt;}
.y133{bottom:85.546667pt;}
.ya7{bottom:86.448000pt;}
.y1ef{bottom:87.228000pt;}
.y22b{bottom:90.226667pt;}
.y1cd{bottom:91.154667pt;}
.y25b{bottom:93.453333pt;}
.y42{bottom:93.862667pt;}
.y86{bottom:94.165333pt;}
.y117{bottom:94.817333pt;}
.y12f{bottom:94.824000pt;}
.y200{bottom:94.826667pt;}
.y1e1{bottom:94.846667pt;}
.yf1{bottom:94.880000pt;}
.y7a{bottom:95.001333pt;}
.y18b{bottom:95.030667pt;}
.y1d{bottom:96.086667pt;}
.ya6{bottom:99.120000pt;}
.y22a{bottom:104.226667pt;}
.y25a{bottom:107.453333pt;}
.y41{bottom:109.189333pt;}
.y1c{bottom:109.424667pt;}
.y85{bottom:109.492000pt;}
.y1cc{bottom:109.718667pt;}
.y116{bottom:110.144000pt;}
.y1ff{bottom:110.153333pt;}
.y1e0{bottom:110.173333pt;}
.yf0{bottom:110.206667pt;}
.y79{bottom:110.328000pt;}
.y18a{bottom:110.357333pt;}
.y1ca{bottom:115.010667pt;}
.y12e{bottom:117.821333pt;}
.y229{bottom:118.226667pt;}
.y259{bottom:121.453333pt;}
.y1b{bottom:122.762667pt;}
.y1cb{bottom:123.280000pt;}
.y40{bottom:124.516000pt;}
.y84{bottom:124.818667pt;}
.y115{bottom:125.470667pt;}
.y1fe{bottom:125.480000pt;}
.y1df{bottom:125.500000pt;}
.yef{bottom:125.533333pt;}
.y1ee{bottom:125.566667pt;}
.y78{bottom:125.654667pt;}
.y189{bottom:125.684000pt;}
.y1c9{bottom:127.060000pt;}
.y228{bottom:132.226667pt;}
.y258{bottom:135.453333pt;}
.y1ce{bottom:135.609333pt;}
.y1a{bottom:136.100667pt;}
.y3f{bottom:139.842667pt;}
.y83{bottom:140.145333pt;}
.y114{bottom:140.797333pt;}
.y1fd{bottom:140.806667pt;}
.y1de{bottom:140.826667pt;}
.yee{bottom:140.860000pt;}
.y1ed{bottom:140.893333pt;}
.y77{bottom:140.981333pt;}
.y188{bottom:141.010667pt;}
.y169{bottom:141.382667pt;}
.y1c0{bottom:142.989333pt;}
.y165{bottom:144.397333pt;}
.y227{bottom:146.226667pt;}
.y19{bottom:149.438667pt;}
.y257{bottom:149.453333pt;}
.y168{bottom:150.940000pt;}
.y1bf{bottom:153.713333pt;}
.y3e{bottom:155.169333pt;}
.y82{bottom:155.472000pt;}
.y113{bottom:156.124000pt;}
.y1fc{bottom:156.133333pt;}
.y1dd{bottom:156.153333pt;}
.y12d{bottom:156.160000pt;}
.yed{bottom:156.186667pt;}
.y1ec{bottom:156.220000pt;}
.y76{bottom:156.308000pt;}
.y187{bottom:156.337333pt;}
.ybd{bottom:158.793333pt;}
.y167{bottom:160.516000pt;}
.y18{bottom:162.776667pt;}
.y256{bottom:163.453333pt;}
.yb1{bottom:166.596000pt;}
.y226{bottom:168.108000pt;}
.yb4{bottom:169.414667pt;}
.y166{bottom:170.073333pt;}
.y3d{bottom:170.496000pt;}
.y81{bottom:170.798667pt;}
.y1fb{bottom:171.460000pt;}
.y1dc{bottom:171.480000pt;}
.y12c{bottom:171.486667pt;}
.yec{bottom:171.513333pt;}
.y1eb{bottom:171.546667pt;}
.y75{bottom:171.634667pt;}
.y186{bottom:171.664000pt;}
.y1c1{bottom:173.706667pt;}
.y1d0{bottom:175.584000pt;}
.y255{bottom:177.453333pt;}
.yb5{bottom:177.600000pt;}
.y112{bottom:179.121333pt;}
.yb3{bottom:181.417333pt;}
.y160{bottom:184.148000pt;}
.y3c{bottom:185.822667pt;}
.y80{bottom:186.125333pt;}
.y1db{bottom:186.806667pt;}
.y12b{bottom:186.813333pt;}
.yeb{bottom:186.840000pt;}
.y1ea{bottom:186.873333pt;}
.y74{bottom:186.961333pt;}
.y185{bottom:186.990667pt;}
.y1fa{bottom:187.020000pt;}
.y1c4{bottom:187.529333pt;}
.y163{bottom:188.749333pt;}
.y1c3{bottom:189.200000pt;}
.y1c8{bottom:189.416000pt;}
.y17{bottom:189.440000pt;}
.y254{bottom:191.453333pt;}
.y164{bottom:194.414667pt;}
.yb2{bottom:195.613333pt;}
.y161{bottom:196.106667pt;}
.y3b{bottom:201.149333pt;}
.y1c2{bottom:201.202667pt;}
.y7f{bottom:201.452000pt;}
.yb6{bottom:201.530667pt;}
.y1da{bottom:202.133333pt;}
.y12a{bottom:202.140000pt;}
.yea{bottom:202.166667pt;}
.y1e9{bottom:202.200000pt;}
.y73{bottom:202.288000pt;}
.y184{bottom:202.317333pt;}
.y225{bottom:202.340000pt;}
.y1f9{bottom:202.346667pt;}
.y15f{bottom:203.253333pt;}
.y1be{bottom:205.364000pt;}
.y253{bottom:205.453333pt;}
.yb0{bottom:210.556000pt;}
.y1c7{bottom:214.933333pt;}
.y3a{bottom:216.476000pt;}
.yc5{bottom:217.418667pt;}
.y111{bottom:217.460000pt;}
.y129{bottom:217.466667pt;}
.ye9{bottom:217.493333pt;}
.y1e8{bottom:217.526667pt;}
.y72{bottom:217.614667pt;}
.y183{bottom:217.644000pt;}
.y224{bottom:217.666667pt;}
.y1f8{bottom:217.673333pt;}
.y1c5{bottom:218.740000pt;}
.y252{bottom:219.453333pt;}
.y16{bottom:221.411333pt;}
.y1cf{bottom:225.797333pt;}
.y16b{bottom:226.386667pt;}
.y15b{bottom:227.529333pt;}
.y162{bottom:230.040000pt;}
.y39{bottom:231.802667pt;}
.y7e{bottom:232.120000pt;}
.y128{bottom:232.793333pt;}
.ye8{bottom:232.820000pt;}
.y110{bottom:232.853333pt;}
.y71{bottom:232.941333pt;}
.y182{bottom:232.970667pt;}
.y223{bottom:232.993333pt;}
.y1f7{bottom:233.000000pt;}
.y251{bottom:233.453333pt;}
.yc4{bottom:236.082667pt;}
.yc6{bottom:236.418667pt;}
.y1bd{bottom:236.668000pt;}
.y1bc{bottom:239.906667pt;}
.y15{bottom:240.082000pt;}
.yb7{bottom:240.600000pt;}
.yaf{bottom:242.597333pt;}
.ycb{bottom:246.658667pt;}
.y38{bottom:247.129333pt;}
.y250{bottom:247.453333pt;}
.y127{bottom:248.120000pt;}
.ye7{bottom:248.146667pt;}
.y10f{bottom:248.180000pt;}
.y70{bottom:248.268000pt;}
.y181{bottom:248.297333pt;}
.y222{bottom:248.320000pt;}
.y1f6{bottom:248.326667pt;}
.yca{bottom:249.322667pt;}
.y15e{bottom:249.985333pt;}
.y1c6{bottom:250.513333pt;}
.ybf{bottom:253.349333pt;}
.y14{bottom:253.420000pt;}
.y15c{bottom:260.840000pt;}
.y24f{bottom:261.453333pt;}
.yb8{bottom:262.337333pt;}
.y37{bottom:262.456000pt;}
.ye6{bottom:263.473333pt;}
.y10e{bottom:263.506667pt;}
.y126{bottom:263.533333pt;}
.y6f{bottom:263.594667pt;}
.y180{bottom:263.624000pt;}
.y221{bottom:263.646667pt;}
.y1f5{bottom:263.653333pt;}
.y13{bottom:266.758000pt;}
.yc9{bottom:267.466667pt;}
.ybe{bottom:272.653333pt;}
.y24e{bottom:275.453333pt;}
.y36{bottom:277.782667pt;}
.ye5{bottom:278.800000pt;}
.y10d{bottom:278.833333pt;}
.y125{bottom:278.860000pt;}
.y6e{bottom:278.921333pt;}
.y17f{bottom:278.950667pt;}
.y220{bottom:278.973333pt;}
.y1f4{bottom:278.980000pt;}
.y12{bottom:280.096000pt;}
.yc7{bottom:283.658667pt;}
.y15d{bottom:283.930667pt;}
.y1d9{bottom:286.621333pt;}
.y15a{bottom:286.824000pt;}
.yc3{bottom:286.906667pt;}
.y24d{bottom:289.453333pt;}
.y8d{bottom:292.624000pt;}
.y35{bottom:293.109333pt;}
.y11{bottom:293.434000pt;}
.ye4{bottom:294.126667pt;}
.y10c{bottom:294.160000pt;}
.y124{bottom:294.186667pt;}
.y6d{bottom:294.248000pt;}
.y17e{bottom:294.277333pt;}
.y21f{bottom:294.300000pt;}
.y1f3{bottom:294.306667pt;}
.yb9{bottom:299.521333pt;}
.y24c{bottom:303.453333pt;}
.y8c{bottom:305.296000pt;}
.y10{bottom:306.772000pt;}
.yae{bottom:307.100000pt;}
.y10b{bottom:309.486667pt;}
.y123{bottom:309.513333pt;}
.y6c{bottom:309.574667pt;}
.ye3{bottom:309.584000pt;}
.y17d{bottom:309.604000pt;}
.y21e{bottom:309.626667pt;}
.y1f2{bottom:309.633333pt;}
.yc2{bottom:311.245333pt;}
.yc8{bottom:312.320000pt;}
.y159{bottom:313.125333pt;}
.y34{bottom:316.106667pt;}
.y1b5{bottom:317.084000pt;}
.y24b{bottom:317.453333pt;}
.y8b{bottom:317.968000pt;}
.yf{bottom:320.110000pt;}
.ycc{bottom:323.018667pt;}
.y10a{bottom:324.813333pt;}
.y122{bottom:324.840000pt;}
.y6b{bottom:324.901333pt;}
.ye2{bottom:324.910667pt;}
.y17c{bottom:324.930667pt;}
.y21d{bottom:324.953333pt;}
.y1d8{bottom:324.960000pt;}
.ycd{bottom:326.018667pt;}
.yc0{bottom:326.805333pt;}
.y158{bottom:329.365333pt;}
.y8a{bottom:330.640000pt;}
.y24a{bottom:331.453333pt;}
.y1b4{bottom:335.629333pt;}
.yc1{bottom:336.581333pt;}
.yad{bottom:338.805333pt;}
.y109{bottom:340.140000pt;}
.y121{bottom:340.166667pt;}
.y6a{bottom:340.228000pt;}
.ye1{bottom:340.237333pt;}
.y17b{bottom:340.257333pt;}
.y21c{bottom:340.280000pt;}
.y1d7{bottom:340.286667pt;}
.y1b2{bottom:340.930667pt;}
.y249{bottom:345.453333pt;}
.ye{bottom:346.773333pt;}
.y157{bottom:348.256000pt;}
.yac{bottom:348.596000pt;}
.y1b3{bottom:349.200000pt;}
.y1b1{bottom:352.980000pt;}
.y108{bottom:355.466667pt;}
.y120{bottom:355.493333pt;}
.y69{bottom:355.554667pt;}
.ye0{bottom:355.564000pt;}
.y17a{bottom:355.584000pt;}
.y21b{bottom:355.606667pt;}
.y1d6{bottom:355.613333pt;}
.y248{bottom:359.453333pt;}
.yba{bottom:362.045333pt;}
.y1ba{bottom:362.397333pt;}
.yab{bottom:363.800000pt;}
.y96{bottom:364.741333pt;}
.y154{bottom:365.373333pt;}
.y156{bottom:367.146667pt;}
.ybc{bottom:368.168000pt;}
.y1a8{bottom:368.898667pt;}
.y92{bottom:369.317333pt;}
.y107{bottom:370.793333pt;}
.y11f{bottom:370.820000pt;}
.y68{bottom:370.881333pt;}
.ydf{bottom:370.890667pt;}
.y179{bottom:370.910667pt;}
.y21a{bottom:370.933333pt;}
.y1d5{bottom:370.940000pt;}
.y247{bottom:373.453333pt;}
.yd{bottom:378.740000pt;}
.y1a7{bottom:379.604000pt;}
.y155{bottom:383.386667pt;}
.ybb{bottom:384.501333pt;}
.y1e7{bottom:386.140000pt;}
.y11e{bottom:386.146667pt;}
.y106{bottom:386.160000pt;}
.y67{bottom:386.208000pt;}
.yde{bottom:386.217333pt;}
.y178{bottom:386.237333pt;}
.y219{bottom:386.260000pt;}
.y1d4{bottom:386.266667pt;}
.y246{bottom:387.453333pt;}
.y4f{bottom:388.000000pt;}
.yc{bottom:397.410667pt;}
.y1a9{bottom:399.626667pt;}
.y245{bottom:401.453333pt;}
.y1e6{bottom:401.466667pt;}
.y11d{bottom:401.473333pt;}
.y105{bottom:401.486667pt;}
.y66{bottom:401.534667pt;}
.ydd{bottom:401.544000pt;}
.y177{bottom:401.564000pt;}
.y218{bottom:401.586667pt;}
.y1d3{bottom:401.593333pt;}
.y4d{bottom:406.533333pt;}
.y55{bottom:406.666667pt;}
.y151{bottom:407.284000pt;}
.y14c{bottom:408.010667pt;}
.yb{bottom:410.748667pt;}
.y1b9{bottom:411.733333pt;}
.y1ac{bottom:413.430667pt;}
.y1ab{bottom:413.673333pt;}
.y1b0{bottom:415.336000pt;}
.y244{bottom:415.453333pt;}
.y152{bottom:416.402667pt;}
.y1e5{bottom:416.793333pt;}
.y11c{bottom:416.800000pt;}
.y104{bottom:416.813333pt;}
.y65{bottom:416.861333pt;}
.ydc{bottom:416.870667pt;}
.y176{bottom:416.890667pt;}
.y217{bottom:416.913333pt;}
.y1d2{bottom:416.920000pt;}
.y14d{bottom:419.960000pt;}
.y150{bottom:420.826667pt;}
.y95{bottom:422.477333pt;}
.y4b{bottom:422.666667pt;}
.ya{bottom:424.086667pt;}
.y1aa{bottom:425.676000pt;}
.y14b{bottom:427.106667pt;}
.y243{bottom:429.453333pt;}
.y1a6{bottom:431.254667pt;}
.y11b{bottom:432.126667pt;}
.y103{bottom:432.140000pt;}
.y64{bottom:432.188000pt;}
.ydb{bottom:432.197333pt;}
.y175{bottom:432.217333pt;}
.y216{bottom:432.240000pt;}
.y1d1{bottom:432.246667pt;}
.y49{bottom:436.000000pt;}
.y9{bottom:437.424667pt;}
.y53{bottom:438.666667pt;}
.y1af{bottom:440.853333pt;}
.y14f{bottom:440.960000pt;}
.y242{bottom:443.453333pt;}
.y1ad{bottom:445.322667pt;}
.y147{bottom:445.533333pt;}
.y102{bottom:447.466667pt;}
.y63{bottom:447.514667pt;}
.y174{bottom:447.544000pt;}
.y215{bottom:447.566667pt;}
.ya5{bottom:447.573333pt;}
.y153{bottom:448.696000pt;}
.y1b7{bottom:448.730667pt;}
.y8{bottom:450.762667pt;}
.y47{bottom:454.666667pt;}
.yda{bottom:455.194667pt;}
.y204{bottom:455.214667pt;}
.y51{bottom:456.000000pt;}
.y241{bottom:457.453333pt;}
.y1a5{bottom:459.898667pt;}
.y101{bottom:462.793333pt;}
.y62{bottom:462.841333pt;}
.y173{bottom:462.870667pt;}
.y214{bottom:462.893333pt;}
.ya4{bottom:462.900000pt;}
.y14e{bottom:462.973333pt;}
.y7{bottom:464.100667pt;}
.y1a3{bottom:465.825333pt;}
.y1a4{bottom:470.781333pt;}
.y1b8{bottom:471.308000pt;}
.y240{bottom:471.453333pt;}
.y14a{bottom:473.832000pt;}
.y1ae{bottom:476.436000pt;}
.y6{bottom:477.438667pt;}
.y100{bottom:478.120000pt;}
.y61{bottom:478.168000pt;}
.y172{bottom:478.197333pt;}
.y213{bottom:478.220000pt;}
.ya3{bottom:478.226667pt;}
.y46{bottom:481.186667pt;}
.y1b6{bottom:483.786667pt;}
.y23f{bottom:485.453333pt;}
.y5{bottom:490.776667pt;}
.yff{bottom:493.473333pt;}
.y60{bottom:493.494667pt;}
.y171{bottom:493.524000pt;}
.yd9{bottom:493.533333pt;}
.y212{bottom:493.546667pt;}
.ya2{bottom:493.553333pt;}
.y148{bottom:495.550667pt;}
.y23e{bottom:499.453333pt;}
.y149{bottom:507.777333pt;}
.yfe{bottom:508.800000pt;}
.y5f{bottom:508.821333pt;}
.y170{bottom:508.850667pt;}
.yd8{bottom:508.860000pt;}
.y211{bottom:508.873333pt;}
.ya1{bottom:508.880000pt;}
.y146{bottom:510.658667pt;}
.y23d{bottom:513.453333pt;}
.y4{bottom:517.440000pt;}
.y16c{bottom:523.360000pt;}
.yfd{bottom:524.126667pt;}
.y16f{bottom:524.177333pt;}
.yd7{bottom:524.186667pt;}
.y210{bottom:524.200000pt;}
.ya0{bottom:524.206667pt;}
.y23c{bottom:527.453333pt;}
.y5e{bottom:531.818667pt;}
.y33{bottom:534.120000pt;}
.yfc{bottom:539.460000pt;}
.y16e{bottom:539.504000pt;}
.yd6{bottom:539.513333pt;}
.y20f{bottom:539.526667pt;}
.y9f{bottom:539.533333pt;}
.y23b{bottom:541.453333pt;}
.y1a2{bottom:552.709333pt;}
.y32{bottom:552.762000pt;}
.yfb{bottom:554.817333pt;}
.y16d{bottom:554.830667pt;}
.yd5{bottom:554.840000pt;}
.y20e{bottom:554.853333pt;}
.y9e{bottom:554.860000pt;}
.y27{bottom:555.008000pt;}
.y23a{bottom:555.453333pt;}
.y91{bottom:564.934667pt;}
.y142{bottom:565.286667pt;}
.y90{bottom:565.682667pt;}
.y31{bottom:566.100000pt;}
.y26{bottom:567.680000pt;}
.y239{bottom:569.453333pt;}
.y5d{bottom:570.157333pt;}
.yd4{bottom:570.166667pt;}
.y20d{bottom:570.180000pt;}
.y9d{bottom:570.186667pt;}
.y1a1{bottom:571.273333pt;}
.y19f{bottom:576.565333pt;}
.yfa{bottom:577.814667pt;}
.y141{bottom:578.689333pt;}
.y30{bottom:579.438000pt;}
.y238{bottom:583.453333pt;}
.y1a0{bottom:584.834667pt;}
.y5c{bottom:585.484000pt;}
.yd3{bottom:585.493333pt;}
.y20c{bottom:585.506667pt;}
.y9c{bottom:585.513333pt;}
.y19e{bottom:588.614667pt;}
.y2f{bottom:592.776000pt;}
.y1bb{bottom:597.158667pt;}
.y237{bottom:597.453333pt;}
.y5b{bottom:600.810667pt;}
.yd2{bottom:600.820000pt;}
.y20b{bottom:600.833333pt;}
.y9b{bottom:600.840000pt;}
.y195{bottom:604.568000pt;}
.y2e{bottom:606.114000pt;}
.y236{bottom:611.453333pt;}
.y8f{bottom:611.866667pt;}
.y13f{bottom:612.930667pt;}
.y194{bottom:615.273333pt;}
.y5a{bottom:616.137333pt;}
.yd1{bottom:616.146667pt;}
.yf9{bottom:616.153333pt;}
.y20a{bottom:616.160000pt;}
.y9a{bottom:616.166667pt;}
.y144{bottom:617.525333pt;}
.y2d{bottom:619.452000pt;}
.y145{bottom:623.190667pt;}
.y140{bottom:624.880000pt;}
.y235{bottom:625.453333pt;}
.y25{bottom:630.088000pt;}
.yd0{bottom:631.473333pt;}
.yf8{bottom:631.480000pt;}
.y209{bottom:631.486667pt;}
.y99{bottom:631.493333pt;}
.y13e{bottom:632.026667pt;}
.y2c{bottom:632.790000pt;}
.y196{bottom:635.280000pt;}
.y59{bottom:639.134667pt;}
.y234{bottom:639.453333pt;}
.y24{bottom:642.760000pt;}
.ycf{bottom:646.800000pt;}
.yf7{bottom:646.806667pt;}
.y208{bottom:646.813333pt;}
.y98{bottom:646.820000pt;}
.y199{bottom:649.093333pt;}
.y198{bottom:649.317333pt;}
.y19d{bottom:650.989333pt;}
.y233{bottom:653.453333pt;}
.y16a{bottom:654.342667pt;}
.y143{bottom:657.220000pt;}
.y13a{bottom:657.897333pt;}
.y23{bottom:658.760000pt;}
.y2b{bottom:659.453333pt;}
.y197{bottom:661.320000pt;}
.yce{bottom:662.126667pt;}
.yf6{bottom:662.133333pt;}
.y207{bottom:662.140000pt;}
.y97{bottom:662.146667pt;}
.y193{bottom:666.924000pt;}
.y232{bottom:667.453333pt;}
.y8e{bottom:672.746667pt;}
.y19c{bottom:676.506667pt;}
.y138{bottom:676.788000pt;}
.yf5{bottom:677.460000pt;}
.y206{bottom:677.466667pt;}
.y58{bottom:677.473333pt;}
.y13d{bottom:678.757333pt;}
.y19a{bottom:680.985333pt;}
.y231{bottom:681.453333pt;}
.y2{bottom:685.426667pt;}
.y93{bottom:688.933333pt;}
.y2a{bottom:691.444667pt;}
.y205{bottom:692.793333pt;}
.y57{bottom:692.800000pt;}
.y230{bottom:695.453333pt;}
.y13b{bottom:695.688000pt;}
.y139{bottom:697.470667pt;}
.y192{bottom:698.228000pt;}
.y22{bottom:698.760000pt;}
.y190{bottom:701.466667pt;}
.y191{bottom:707.682667pt;}
.y56{bottom:708.126667pt;}
.y22f{bottom:709.453333pt;}
.y29{bottom:710.115333pt;}
.y19b{bottom:712.085333pt;}
.y13c{bottom:712.702667pt;}
.y137{bottom:715.586667pt;}
.y1{bottom:717.426667pt;}
.y21{bottom:720.093333pt;}
.y28{bottom:723.453333pt;}
.y94{bottom:726.426667pt;}
.y20{bottom:765.426667pt;}
.y3{bottom:821.333333pt;}
.h11{height:9.333333pt;}
.hd{height:9.600000pt;}
.hf{height:10.666667pt;}
.h10{height:12.000000pt;}
.h9{height:14.666667pt;}
.hb{height:16.000000pt;}
.h15{height:34.143249pt;}
.h14{height:34.144000pt;}
.h13{height:39.834667pt;}
.h2{height:41.854167pt;}
.he{height:42.398438pt;}
.h6{height:45.525333pt;}
.ha{height:47.109375pt;}
.h5{height:51.216000pt;}
.hc{height:51.820312pt;}
.h17{height:53.760000pt;}
.h3{height:54.061333pt;}
.h4{height:54.922667pt;}
.h1f{height:56.906667pt;}
.h1e{height:57.813333pt;}
.h18{height:59.456000pt;}
.h16{height:62.570667pt;}
.h8{height:62.597333pt;}
.h19{height:63.434667pt;}
.h12{height:63.594667pt;}
.h7{height:68.288000pt;}
.h1d{height:80.640000pt;}
.h1{height:91.050667pt;}
.h1a{height:93.930667pt;}
.h1b{height:118.234667pt;}
.h1c{height:129.696000pt;}
.h0{height:794.666667pt;}
.w9{width:138.666667pt;}
.w8{width:140.000000pt;}
.w1{width:142.666667pt;}
.w7{width:178.666667pt;}
.w2{width:184.000000pt;}
.w6{width:192.000000pt;}
.w3{width:201.333333pt;}
.w5{width:204.000000pt;}
.w4{width:211.983333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x3{left:5.333333pt;}
.x14{left:14.352000pt;}
.x13{left:24.205277pt;}
.x11{left:38.372267pt;}
.xf{left:48.014533pt;}
.x12{left:65.341667pt;}
.x4{left:67.733333pt;}
.x9{left:68.813333pt;}
.x10{left:73.333333pt;}
.x2b{left:77.076000pt;}
.x60{left:79.116000pt;}
.xd{left:80.013467pt;}
.x70{left:81.066667pt;}
.x6f{left:82.146667pt;}
.x16{left:83.060000pt;}
.xa{left:84.125333pt;}
.x1c{left:85.760000pt;}
.x5{left:87.737333pt;}
.xe{left:90.666667pt;}
.x3e{left:96.040000pt;}
.x3d{left:99.874667pt;}
.x4a{left:101.089333pt;}
.x66{left:109.176000pt;}
.x1d{left:114.077333pt;}
.x6e{left:119.321333pt;}
.x28{left:125.385333pt;}
.x5b{left:126.650667pt;}
.xc{left:130.666667pt;}
.x52{left:131.773333pt;}
.x67{left:138.006667pt;}
.x27{left:141.186667pt;}
.x50{left:144.640000pt;}
.x48{left:153.696000pt;}
.x4f{left:157.972000pt;}
.x5e{left:163.461333pt;}
.x1{left:166.773333pt;}
.x55{left:168.574667pt;}
.x56{left:172.426667pt;}
.x69{left:174.817333pt;}
.x26{left:176.634667pt;}
.x4b{left:177.996000pt;}
.x44{left:188.681333pt;}
.x2{left:189.685333pt;}
.x5f{left:195.820000pt;}
.x3c{left:201.468000pt;}
.x6a{left:204.478667pt;}
.x3f{left:217.025333pt;}
.x5d{left:229.186667pt;}
.x29{left:230.674667pt;}
.x51{left:232.986667pt;}
.x54{left:234.300000pt;}
.x2f{left:238.213333pt;}
.x2e{left:240.152000pt;}
.x30{left:242.549413pt;}
.x38{left:244.322667pt;}
.x4e{left:245.929333pt;}
.x5c{left:249.496000pt;}
.x25{left:250.610667pt;}
.x64{left:252.122667pt;}
.x5a{left:257.242667pt;}
.x19{left:258.420000pt;}
.x2d{left:260.488000pt;}
.x6d{left:263.484000pt;}
.x2a{left:265.730667pt;}
.xb{left:266.880000pt;}
.x4c{left:268.600000pt;}
.x31{left:272.212520pt;}
.x53{left:274.489333pt;}
.x47{left:276.886667pt;}
.x43{left:277.832000pt;}
.x37{left:279.506667pt;}
.x40{left:281.500000pt;}
.x41{left:284.589333pt;}
.x18{left:289.226667pt;}
.x65{left:290.557333pt;}
.x3a{left:295.613333pt;}
.x15{left:297.333333pt;}
.x4d{left:299.568000pt;}
.x49{left:301.466667pt;}
.x24{left:305.369333pt;}
.x34{left:306.680000pt;}
.x68{left:312.092000pt;}
.x1e{left:313.853333pt;}
.x1f{left:315.748000pt;}
.x46{left:320.902667pt;}
.x42{left:323.556000pt;}
.x36{left:325.842667pt;}
.x32{left:331.015413pt;}
.x35{left:332.746667pt;}
.x33{left:334.014120pt;}
.x45{left:341.146667pt;}
.x6{left:342.213333pt;}
.x23{left:344.765333pt;}
.x63{left:347.425333pt;}
.x8{left:349.693333pt;}
.x3b{left:350.866667pt;}
.x59{left:352.545333pt;}
.x58{left:353.973333pt;}
.x62{left:358.886667pt;}
.x20{left:360.650667pt;}
.x7{left:362.413333pt;}
.x2c{left:364.424000pt;}
.x6c{left:370.229333pt;}
.x17{left:389.786667pt;}
.x1b{left:391.293333pt;}
.x21{left:404.909333pt;}
.x39{left:407.706667pt;}
.x61{left:477.225333pt;}
.x22{left:479.884000pt;}
.x57{left:482.350667pt;}
.x6b{left:488.573333pt;}
.x1a{left:491.022667pt;}
}




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