
    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_9fe4f62c93b9abfc836b8bd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_c2526ff0a6eae877f94483de.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_7b07fc232ca9e628474550bc.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_44d5c726dc38ef65a6f715b2.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_bd2902d8df59e953047325d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_01634ffe6df0f1bf2e2ad026.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.089355;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_647ec6d963923311cb4017c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.726562;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_f18f47c796d5233963b29c98.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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_6db1bd3698cabe519e40d0aa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_594425ede4bc087979e6e97a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cb111190db4a5a343145c00b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8a25d55bf1ec57cf88f81f9c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.m1{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);}
.v2{vertical-align:-27.360000px;}
.v6{vertical-align:-10.080000px;}
.v7{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:23.760000px;}
.v5{vertical-align:25.920000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:36.000000px;}
.ls4e{letter-spacing:-1.656000px;}
.ls26{letter-spacing:-1.512000px;}
.ls29{letter-spacing:-1.440000px;}
.ls48{letter-spacing:-1.324800px;}
.ls4f{letter-spacing:-1.192320px;}
.ls24{letter-spacing:-1.008000px;}
.ls6c{letter-spacing:-0.927360px;}
.ls73{letter-spacing:-0.861120px;}
.ls87{letter-spacing:-0.792000px;}
.ls49{letter-spacing:-0.728640px;}
.ls33{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.596160px;}
.ls35{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.530640px;}
.ls42{letter-spacing:-0.504000px;}
.ls6b{letter-spacing:-0.463680px;}
.ls7{letter-spacing:-0.432000px;}
.ls55{letter-spacing:-0.397440px;}
.ls27{letter-spacing:-0.337680px;}
.ls4a{letter-spacing:-0.331200px;}
.ls6{letter-spacing:-0.324000px;}
.ls8{letter-spacing:-0.288000px;}
.ls50{letter-spacing:-0.264960px;}
.ls5{letter-spacing:-0.216000px;}
.ls6a{letter-spacing:-0.198720px;}
.ls13{letter-spacing:-0.144000px;}
.ls38{letter-spacing:-0.132480px;}
.ls14{letter-spacing:-0.072000px;}
.ls69{letter-spacing:-0.066240px;}
.ls4{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.046368px;}
.ls34{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.132480px;}
.lsa{letter-spacing:0.144000px;}
.ls6d{letter-spacing:0.145728px;}
.ls40{letter-spacing:0.149760px;}
.ls3c{letter-spacing:0.151200px;}
.ls6f{letter-spacing:0.165600px;}
.ls67{letter-spacing:0.178848px;}
.ls2{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.192960px;}
.ls76{letter-spacing:0.205344px;}
.ls28{letter-spacing:0.216000px;}
.ls4d{letter-spacing:0.262080px;}
.ls52{letter-spacing:0.264960px;}
.ls71{letter-spacing:0.278208px;}
.ls3{letter-spacing:0.288000px;}
.ls70{letter-spacing:0.298080px;}
.ls0{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.329760px;}
.ls3a{letter-spacing:0.331200px;}
.ls15{letter-spacing:0.337680px;}
.ls53{letter-spacing:0.354240px;}
.ls1{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.361800px;}
.ls16{letter-spacing:0.368640px;}
.ls18{letter-spacing:0.375840px;}
.ls9{letter-spacing:0.385920px;}
.ls5a{letter-spacing:0.393840px;}
.ls1a{letter-spacing:0.397440px;}
.ls65{letter-spacing:0.404064px;}
.ls61{letter-spacing:0.413280px;}
.ls2f{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.504000px;}
.ls41{letter-spacing:0.576000px;}
.ls5e{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.720000px;}
.ls74{letter-spacing:0.861120px;}
.ls5b{letter-spacing:0.869760px;}
.ls5c{letter-spacing:0.941040px;}
.ls43{letter-spacing:1.008000px;}
.ls31{letter-spacing:1.152000px;}
.ls7f{letter-spacing:1.231200px;}
.ls60{letter-spacing:1.425600px;}
.lsd{letter-spacing:1.440000px;}
.ls6e{letter-spacing:1.550016px;}
.lsc{letter-spacing:2.160000px;}
.ls3d{letter-spacing:2.311200px;}
.lsb{letter-spacing:2.880000px;}
.ls3e{letter-spacing:3.600000px;}
.ls2d{letter-spacing:3.793680px;}
.ls20{letter-spacing:4.320000px;}
.ls72{letter-spacing:4.438080px;}
.ls1f{letter-spacing:5.040000px;}
.ls63{letter-spacing:5.047200px;}
.ls56{letter-spacing:5.054400px;}
.ls1b{letter-spacing:5.760000px;}
.ls75{letter-spacing:5.895360px;}
.ls1c{letter-spacing:6.480000px;}
.ls5d{letter-spacing:6.491520px;}
.lsf{letter-spacing:7.200000px;}
.ls54{letter-spacing:7.920000px;}
.ls5f{letter-spacing:8.100000px;}
.ls19{letter-spacing:8.640000px;}
.ls36{letter-spacing:9.360000px;}
.ls79{letter-spacing:9.509760px;}
.ls58{letter-spacing:9.562320px;}
.ls2e{letter-spacing:10.080000px;}
.ls44{letter-spacing:10.797120px;}
.ls17{letter-spacing:10.800000px;}
.ls21{letter-spacing:11.520000px;}
.ls57{letter-spacing:12.240000px;}
.ls62{letter-spacing:12.960000px;}
.ls32{letter-spacing:13.680000px;}
.ls22{letter-spacing:14.400000px;}
.ls2a{letter-spacing:15.120000px;}
.ls51{letter-spacing:15.336000px;}
.ls10{letter-spacing:15.840000px;}
.ls59{letter-spacing:16.560000px;}
.ls3f{letter-spacing:17.280000px;}
.ls4c{letter-spacing:18.000000px;}
.ls4b{letter-spacing:18.720000px;}
.ls46{letter-spacing:19.440000px;}
.ls45{letter-spacing:20.160000px;}
.ls30{letter-spacing:23.040000px;}
.lse{letter-spacing:23.760000px;}
.ls7d{letter-spacing:23.909760px;}
.ls11{letter-spacing:25.200000px;}
.ls3b{letter-spacing:28.080000px;}
.ls84{letter-spacing:28.229760px;}
.ls7a{letter-spacing:28.949760px;}
.ls85{letter-spacing:29.088000px;}
.ls12{letter-spacing:29.520000px;}
.ls47{letter-spacing:32.400000px;}
.ls77{letter-spacing:33.984000px;}
.ls78{letter-spacing:36.000000px;}
.ls80{letter-spacing:36.869760px;}
.ls7e{letter-spacing:42.629760px;}
.ls83{letter-spacing:49.829760px;}
.ls81{letter-spacing:61.349760px;}
.ls7b{letter-spacing:67.109760px;}
.ls68{letter-spacing:116.781120px;}
.ls7c{letter-spacing:121.829760px;}
.ls82{letter-spacing:128.309760px;}
.ls86{letter-spacing:143.429760px;}
.ls64{letter-spacing:149.901120px;}
.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;}
}
.ws77{word-spacing:-72.000000px;}
.wsad{word-spacing:-54.144000px;}
.wsaa{word-spacing:-51.048000px;}
.wsa6{word-spacing:-50.400000px;}
.ws76{word-spacing:-42.135840px;}
.ws75{word-spacing:-41.760000px;}
.ws73{word-spacing:-19.008000px;}
.wsbc{word-spacing:-18.720000px;}
.wsc2{word-spacing:-18.648000px;}
.ws71{word-spacing:-18.576000px;}
.ws9a{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.288000px;}
.ws28{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.ws4d{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws74{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws4c{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws72{word-spacing:-17.496000px;}
.ws4e{word-spacing:-17.424000px;}
.ws4b{word-spacing:-17.280000px;}
.ws95{word-spacing:-16.957440px;}
.ws87{word-spacing:-16.891200px;}
.ws83{word-spacing:-16.692480px;}
.ws4f{word-spacing:-16.560000px;}
.ws86{word-spacing:-16.427520px;}
.ws93{word-spacing:-16.344000px;}
.ws9b{word-spacing:-16.295040px;}
.ws84{word-spacing:-16.228800px;}
.wsb7{word-spacing:-16.162560px;}
.ws64{word-spacing:-15.963840px;}
.ws9c{word-spacing:-15.831360px;}
.ws94{word-spacing:-15.367680px;}
.wsd3{word-spacing:-15.301440px;}
.wsb6{word-spacing:-15.235200px;}
.wsd4{word-spacing:-15.102720px;}
.wscf{word-spacing:-14.970240px;}
.wsd2{word-spacing:-14.904000px;}
.wsf2{word-spacing:-14.837760px;}
.wsd1{word-spacing:-14.771520px;}
.wsd0{word-spacing:-14.705280px;}
.wsce{word-spacing:-14.506560px;}
.ws11c{word-spacing:-14.374080px;}
.ws26{word-spacing:-12.445920px;}
.ws25{word-spacing:-12.060000px;}
.ws27{word-spacing:-11.722320px;}
.ws85{word-spacing:-10.440000px;}
.ws7d{word-spacing:-4.464000px;}
.ws1a{word-spacing:-4.320000px;}
.ws19{word-spacing:-4.248000px;}
.ws11f{word-spacing:-4.106880px;}
.ws1b{word-spacing:-4.032000px;}
.ws3d{word-spacing:-3.600000px;}
.ws11e{word-spacing:-3.576960px;}
.wsfb{word-spacing:-3.378240px;}
.ws3e{word-spacing:-3.312000px;}
.ws10b{word-spacing:-3.245760px;}
.ws10a{word-spacing:-3.179520px;}
.ws3f{word-spacing:-3.024000px;}
.ws40{word-spacing:-2.880000px;}
.ws115{word-spacing:-2.848320px;}
.wsa1{word-spacing:-2.664000px;}
.ws104{word-spacing:-2.649600px;}
.ws5f{word-spacing:-2.592000px;}
.ws6b{word-spacing:-2.448000px;}
.wsa2{word-spacing:-2.304000px;}
.ws3a{word-spacing:-2.160000px;}
.ws120{word-spacing:-2.119680px;}
.wsbd{word-spacing:-1.944000px;}
.ws100{word-spacing:-1.920960px;}
.ws63{word-spacing:-1.872000px;}
.wsf1{word-spacing:-1.788480px;}
.ws101{word-spacing:-1.722240px;}
.wsb2{word-spacing:-1.584000px;}
.ws2f{word-spacing:-1.440000px;}
.wsf0{word-spacing:-1.192320px;}
.ws53{word-spacing:-1.152000px;}
.ws6e{word-spacing:-1.059840px;}
.wsf6{word-spacing:-0.993600px;}
.ws82{word-spacing:-0.864000px;}
.ws70{word-spacing:-0.861120px;}
.ws6f{word-spacing:-0.728640px;}
.ws42{word-spacing:-0.720000px;}
.ws6c{word-spacing:-0.596160px;}
.ws102{word-spacing:-0.529920px;}
.ws88{word-spacing:-0.504000px;}
.ws113{word-spacing:-0.463680px;}
.ws41{word-spacing:-0.432000px;}
.wsee{word-spacing:-0.397440px;}
.wsb{word-spacing:-0.385920px;}
.ws92{word-spacing:-0.331200px;}
.ws7{word-spacing:-0.324000px;}
.ws18{word-spacing:-0.288000px;}
.wsae{word-spacing:-0.264960px;}
.wsd7{word-spacing:-0.216000px;}
.ws2a{word-spacing:-0.192960px;}
.wsc{word-spacing:-0.144000px;}
.ws6d{word-spacing:-0.132480px;}
.ws7c{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.wsf9{word-spacing:0.066240px;}
.wsc8{word-spacing:0.072000px;}
.wsa3{word-spacing:0.132480px;}
.ws60{word-spacing:0.144000px;}
.wsdd{word-spacing:0.198720px;}
.ws4{word-spacing:0.216000px;}
.wsde{word-spacing:0.264960px;}
.ws8{word-spacing:0.288000px;}
.ws5{word-spacing:0.324000px;}
.wsbb{word-spacing:0.331200px;}
.wsb8{word-spacing:0.397440px;}
.ws6{word-spacing:0.432000px;}
.wsef{word-spacing:0.463680px;}
.wsb0{word-spacing:0.504000px;}
.ws3b{word-spacing:0.530640px;}
.ws9f{word-spacing:0.576000px;}
.ws8d{word-spacing:0.596160px;}
.wsa{word-spacing:0.720000px;}
.ws8f{word-spacing:0.728640px;}
.ws106{word-spacing:0.861120px;}
.wse2{word-spacing:0.927360px;}
.ws3c{word-spacing:0.936000px;}
.ws9{word-spacing:1.008000px;}
.ws112{word-spacing:1.059840px;}
.ws151{word-spacing:1.296000px;}
.ws8c{word-spacing:1.324800px;}
.ws16{word-spacing:1.440000px;}
.wse1{word-spacing:1.457280px;}
.ws43{word-spacing:1.512000px;}
.wsc9{word-spacing:1.656000px;}
.wsf7{word-spacing:1.722240px;}
.ws17{word-spacing:1.728000px;}
.wsed{word-spacing:1.788480px;}
.ws11d{word-spacing:1.854720px;}
.wsaf{word-spacing:1.872000px;}
.ws6a{word-spacing:2.016000px;}
.ws11{word-spacing:2.160000px;}
.ws111{word-spacing:2.384640px;}
.ws10{word-spacing:2.448000px;}
.ws2e{word-spacing:2.736000px;}
.wsf{word-spacing:2.880000px;}
.wse6{word-spacing:3.113280px;}
.ws2d{word-spacing:3.168000px;}
.ws10c{word-spacing:3.245760px;}
.wseb{word-spacing:3.312000px;}
.ws34{word-spacing:3.456000px;}
.ws33{word-spacing:3.600000px;}
.ws8a{word-spacing:3.816000px;}
.wsd8{word-spacing:3.841920px;}
.ws32{word-spacing:3.888000px;}
.wsd9{word-spacing:3.974400px;}
.wsb9{word-spacing:4.032000px;}
.wse7{word-spacing:4.040640px;}
.ws65{word-spacing:4.176000px;}
.ws31{word-spacing:4.320000px;}
.ws14f{word-spacing:4.392000px;}
.wsff{word-spacing:4.504320px;}
.ws44{word-spacing:4.608000px;}
.ws107{word-spacing:4.636800px;}
.ws105{word-spacing:4.703040px;}
.wsb3{word-spacing:4.896000px;}
.ws1e{word-spacing:5.040000px;}
.wse8{word-spacing:5.232960px;}
.ws52{word-spacing:5.328000px;}
.wse9{word-spacing:5.365440px;}
.wsfc{word-spacing:5.431680px;}
.ws9e{word-spacing:5.472000px;}
.ws96{word-spacing:5.616000px;}
.ws35{word-spacing:5.760000px;}
.wsc3{word-spacing:5.762880px;}
.ws122{word-spacing:5.961600px;}
.ws89{word-spacing:5.976000px;}
.ws56{word-spacing:6.048000px;}
.ws114{word-spacing:6.094080px;}
.wsec{word-spacing:6.160320px;}
.ws38{word-spacing:6.192000px;}
.ws37{word-spacing:6.336000px;}
.ws36{word-spacing:6.480000px;}
.wsdc{word-spacing:6.491520px;}
.wse5{word-spacing:6.690240px;}
.ws39{word-spacing:6.768000px;}
.ws67{word-spacing:7.056000px;}
.ws1c{word-spacing:7.200000px;}
.wsdb{word-spacing:7.418880px;}
.ws58{word-spacing:7.488000px;}
.wse4{word-spacing:7.551360px;}
.wse3{word-spacing:7.617600px;}
.ws5a{word-spacing:7.632000px;}
.ws139{word-spacing:7.776000px;}
.ws59{word-spacing:7.920000px;}
.wsba{word-spacing:8.064000px;}
.ws11b{word-spacing:8.147520px;}
.ws1d{word-spacing:8.208000px;}
.ws2c{word-spacing:8.352000px;}
.ws5b{word-spacing:8.496000px;}
.ws2b{word-spacing:8.640000px;}
.ws54{word-spacing:8.856000px;}
.ws121{word-spacing:8.876160px;}
.ws5c{word-spacing:8.928000px;}
.wsf5{word-spacing:9.008640px;}
.wsc7{word-spacing:9.216000px;}
.ws66{word-spacing:9.360000px;}
.wsb5{word-spacing:9.576000px;}
.ws109{word-spacing:9.604800px;}
.wsb4{word-spacing:9.648000px;}
.wsf4{word-spacing:9.803520px;}
.ws47{word-spacing:9.936000px;}
.ws15{word-spacing:10.080000px;}
.ws103{word-spacing:10.267200px;}
.ws14{word-spacing:10.368000px;}
.ws108{word-spacing:10.465920px;}
.wsc5{word-spacing:10.512000px;}
.ws7e{word-spacing:10.656000px;}
.ws8b{word-spacing:10.797120px;}
.ws13{word-spacing:10.800000px;}
.wsea{word-spacing:10.995840px;}
.ws29{word-spacing:11.088000px;}
.ws79{word-spacing:11.376000px;}
.ws4a{word-spacing:11.520000px;}
.ws78{word-spacing:11.808000px;}
.ws9d{word-spacing:12.096000px;}
.ws46{word-spacing:12.240000px;}
.ws10d{word-spacing:12.254400px;}
.wsfd{word-spacing:12.453120px;}
.ws45{word-spacing:12.528000px;}
.wsfa{word-spacing:12.585600px;}
.ws10e{word-spacing:12.651840px;}
.wsca{word-spacing:12.816000px;}
.wsc4{word-spacing:12.960000px;}
.wsda{word-spacing:13.181760px;}
.wsd6{word-spacing:13.248000px;}
.wscb{word-spacing:13.536000px;}
.ws61{word-spacing:13.680000px;}
.ws116{word-spacing:13.711680px;}
.ws10f{word-spacing:13.910400px;}
.ws62{word-spacing:13.968000px;}
.ws110{word-spacing:14.042880px;}
.wsbe{word-spacing:14.256000px;}
.ws48{word-spacing:14.400000px;}
.wsc6{word-spacing:14.616000px;}
.ws49{word-spacing:14.688000px;}
.ws50{word-spacing:15.120000px;}
.ws51{word-spacing:15.408000px;}
.ws13e{word-spacing:15.696000px;}
.ws30{word-spacing:15.840000px;}
.wsa9{word-spacing:15.984000px;}
.wsa8{word-spacing:16.056000px;}
.ws1f{word-spacing:16.128000px;}
.ws69{word-spacing:16.560000px;}
.wsac{word-spacing:16.776000px;}
.ws68{word-spacing:16.848000px;}
.ws81{word-spacing:17.136000px;}
.ws7f{word-spacing:17.280000px;}
.ws80{word-spacing:17.568000px;}
.ws98{word-spacing:17.856000px;}
.ws99{word-spacing:18.000000px;}
.wsfe{word-spacing:18.216000px;}
.ws124{word-spacing:18.720000px;}
.wsf8{word-spacing:18.944640px;}
.ws97{word-spacing:19.008000px;}
.ws55{word-spacing:19.440000px;}
.wsa7{word-spacing:19.584000px;}
.ws8e{word-spacing:19.607040px;}
.wsa0{word-spacing:19.656000px;}
.ws57{word-spacing:19.728000px;}
.wsa5{word-spacing:20.016000px;}
.wsa4{word-spacing:20.160000px;}
.wsab{word-spacing:20.304000px;}
.wse0{word-spacing:20.865600px;}
.ws153{word-spacing:20.880000px;}
.wsdf{word-spacing:21.064320px;}
.ws156{word-spacing:21.600000px;}
.wsd5{word-spacing:22.176000px;}
.ws5e{word-spacing:22.320000px;}
.ws5d{word-spacing:22.608000px;}
.ws12{word-spacing:23.760000px;}
.ws21{word-spacing:25.200000px;}
.ws119{word-spacing:25.436160px;}
.ws20{word-spacing:25.488000px;}
.ws11a{word-spacing:25.568640px;}
.ws118{word-spacing:25.634880px;}
.wsb1{word-spacing:25.920000px;}
.ws12f{word-spacing:26.640000px;}
.ws7b{word-spacing:28.080000px;}
.wsc0{word-spacing:28.800000px;}
.wsf3{word-spacing:29.013120px;}
.wsc1{word-spacing:29.088000px;}
.ws23{word-spacing:29.232000px;}
.ws7a{word-spacing:29.520000px;}
.ws22{word-spacing:29.808000px;}
.ws125{word-spacing:30.240000px;}
.ws24{word-spacing:30.528000px;}
.ws12b{word-spacing:30.960000px;}
.wsbf{word-spacing:31.674240px;}
.wscc{word-spacing:32.400000px;}
.ws90{word-spacing:32.523840px;}
.wscd{word-spacing:32.688000px;}
.ws14d{word-spacing:33.120000px;}
.ws14e{word-spacing:33.192000px;}
.ws149{word-spacing:33.840000px;}
.ws148{word-spacing:34.128000px;}
.ws13a{word-spacing:38.016000px;}
.ws13b{word-spacing:38.160000px;}
.ws12e{word-spacing:43.920000px;}
.ws12d{word-spacing:44.208000px;}
.ws144{word-spacing:44.640000px;}
.ws143{word-spacing:44.928000px;}
.ws147{word-spacing:51.120000px;}
.ws13c{word-spacing:53.280000px;}
.ws14a{word-spacing:56.016000px;}
.ws14b{word-spacing:56.160000px;}
.ws157{word-spacing:56.448000px;}
.ws150{word-spacing:56.880000px;}
.ws141{word-spacing:62.640000px;}
.ws140{word-spacing:62.928000px;}
.ws138{word-spacing:63.360000px;}
.ws137{word-spacing:63.648000px;}
.ws152{word-spacing:66.960000px;}
.ws127{word-spacing:69.120000px;}
.ws126{word-spacing:69.336000px;}
.ws128{word-spacing:70.560000px;}
.ws91{word-spacing:71.141760px;}
.ws133{word-spacing:77.760000px;}
.ws131{word-spacing:84.960000px;}
.ws130{word-spacing:85.248000px;}
.ws123{word-spacing:88.560000px;}
.ws12a{word-spacing:115.200000px;}
.ws129{word-spacing:123.840000px;}
.ws135{word-spacing:124.560000px;}
.ws134{word-spacing:124.848000px;}
.ws13d{word-spacing:127.440000px;}
.ws142{word-spacing:129.600000px;}
.ws117{word-spacing:133.937280px;}
.ws132{word-spacing:137.520000px;}
.ws14c{word-spacing:144.720000px;}
.ws146{word-spacing:155.520000px;}
.ws145{word-spacing:155.808000px;}
.ws12c{word-spacing:174.960000px;}
.ws13f{word-spacing:177.120000px;}
.ws136{word-spacing:186.480000px;}
.ws155{word-spacing:283.680000px;}
.ws154{word-spacing:283.968000px;}
._d{margin-left:-9.440640px;}
._16{margin-left:-5.112000px;}
._5{margin-left:-4.068000px;}
._7{margin-left:-2.271600px;}
._1{margin-left:-1.263600px;}
._0{width:1.188000px;}
._2{width:2.811600px;}
._11{width:3.819600px;}
._6{width:4.968000px;}
._9{width:6.048000px;}
._8{width:7.416720px;}
._3{width:9.144000px;}
._4{width:10.188000px;}
._b{width:11.559600px;}
._f{width:13.755600px;}
._a{width:15.179760px;}
._10{width:16.848000px;}
._c{width:19.582560px;}
._e{width:22.392000px;}
._1c{width:25.632000px;}
._1f{width:27.468000px;}
._15{width:29.268000px;}
._14{width:31.500000px;}
._18{width:36.000000px;}
._26{width:37.666800px;}
._1e{width:43.848000px;}
._29{width:50.511600px;}
._27{width:53.892000px;}
._2a{width:56.066400px;}
._25{width:63.280800px;}
._2c{width:67.107600px;}
._19{width:68.904000px;}
._1a{width:70.380000px;}
._22{width:78.372000px;}
._20{width:84.420000px;}
._17{width:89.031600px;}
._1b{width:123.192000px;}
._23{width:124.308000px;}
._28{width:129.744000px;}
._21{width:138.024000px;}
._2b{width:144.864000px;}
._1d{width:175.428000px;}
._24{width:185.904000px;}
._13{width:188.868240px;}
._12{width:197.928720px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(64,64,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:74.880000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:3.600150px;}
.y84{bottom:3.960000px;}
.y87{bottom:3.960150px;}
.y7e{bottom:4.140000px;}
.y82{bottom:4.140150px;}
.y149{bottom:4.320000px;}
.y141{bottom:4.860000px;}
.yef{bottom:5.400000px;}
.yec{bottom:5.580000px;}
.y15f{bottom:6.480000px;}
.y107{bottom:6.840000px;}
.y11c{bottom:7.020000px;}
.y7d{bottom:7.560000px;}
.yff{bottom:23.040000px;}
.y148{bottom:23.220000px;}
.ybb{bottom:24.300000px;}
.yc3{bottom:24.480150px;}
.yc5{bottom:26.820000px;}
.y144{bottom:28.260000px;}
.y109{bottom:28.620000px;}
.y79{bottom:41.580000px;}
.yc0{bottom:41.940000px;}
.y161{bottom:41.940150px;}
.y168{bottom:42.120000px;}
.y13f{bottom:42.660000px;}
.y11a{bottom:51.300000px;}
.y1a{bottom:58.686480px;}
.y1{bottom:78.840000px;}
.yb6{bottom:81.720000px;}
.y15a{bottom:83.880000px;}
.yb4{bottom:112.860000px;}
.yf0{bottom:119.160000px;}
.y19c{bottom:120.240000px;}
.y18f{bottom:120.960000px;}
.y76{bottom:122.940000px;}
.y55{bottom:123.300000px;}
.y8d{bottom:123.840000px;}
.y1e4{bottom:125.586870px;}
.y118{bottom:131.040000px;}
.y1c3{bottom:131.760000px;}
.y97{bottom:133.380000px;}
.y3e{bottom:134.280000px;}
.yb3{bottom:136.620000px;}
.y224{bottom:138.147840px;}
.y257{bottom:140.760000px;}
.y19b{bottom:144.180000px;}
.y18e{bottom:144.720000px;}
.y1e3{bottom:145.740390px;}
.y75{bottom:146.700000px;}
.y54{bottom:147.060000px;}
.y158{bottom:148.860000px;}
.yab{bottom:149.580000px;}
.y117{bottom:154.800000px;}
.y1c2{bottom:155.520000px;}
.y96{bottom:157.140000px;}
.yee{bottom:157.860000px;}
.y223{bottom:158.301360px;}
.y211{bottom:158.443920px;}
.y273{bottom:159.300000px;}
.y13d{bottom:159.660000px;}
.yb2{bottom:160.380000px;}
.y256{bottom:161.640000px;}
.y26e{bottom:162.000000px;}
.y1e2{bottom:165.893910px;}
.y19a{bottom:167.940000px;}
.y3d{bottom:168.660000px;}
.y74{bottom:170.460000px;}
.y53{bottom:170.820000px;}
.y16{bottom:170.940000px;}
.y157{bottom:172.620000px;}
.yaa{bottom:173.340000px;}
.y222{bottom:178.289280px;}
.y210{bottom:178.431840px;}
.yed{bottom:178.920000px;}
.y1c1{bottom:179.280000px;}
.y263{bottom:180.000000px;}
.y95{bottom:180.900000px;}
.y255{bottom:182.700000px;}
.y18d{bottom:183.600000px;}
.yb1{bottom:184.320000px;}
.y1e1{bottom:186.047430px;}
.y235{bottom:187.200000px;}
.y167{bottom:190.080000px;}
.y199{bottom:191.700000px;}
.y80{bottom:193.500000px;}
.y116{bottom:193.680000px;}
.y73{bottom:194.400000px;}
.y52{bottom:194.760000px;}
.ya9{bottom:197.100000px;}
.y221{bottom:198.442800px;}
.y13c{bottom:198.540000px;}
.y20f{bottom:198.585360px;}
.yea{bottom:200.160000px;}
.y262{bottom:200.700000px;}
.y15{bottom:201.900000px;}
.y1c0{bottom:203.040000px;}
.y3c{bottom:203.220000px;}
.y26d{bottom:203.400000px;}
.y94{bottom:204.660000px;}
.y1e0{bottom:206.200950px;}
.y18c{bottom:207.360000px;}
.y234{bottom:207.900000px;}
.yb0{bottom:208.080000px;}
.y169{bottom:213.120000px;}
.y198{bottom:215.460000px;}
.y115{bottom:217.440000px;}
.y51{bottom:218.520000px;}
.y220{bottom:218.596320px;}
.y20e{bottom:218.738880px;}
.ya8{bottom:221.040000px;}
.yeb{bottom:221.400000px;}
.y13b{bottom:222.300000px;}
.y1df{bottom:226.354470px;}
.y93{bottom:228.600000px;}
.y72{bottom:229.860000px;}
.y18b{bottom:231.120000px;}
.yaf{bottom:231.840000px;}
.y14{bottom:233.040000px;}
.y3b{bottom:237.600000px;}
.y21f{bottom:238.749840px;}
.y20d{bottom:238.892400px;}
.y197{bottom:239.400000px;}
.y114{bottom:241.380000px;}
.y1bf{bottom:241.560000px;}
.y254{bottom:242.100000px;}
.y50{bottom:242.280000px;}
.ya7{bottom:244.800000px;}
.y8c{bottom:245.700000px;}
.y13a{bottom:246.060000px;}
.y1de{bottom:246.507990px;}
.y165{bottom:247.860000px;}
.y18a{bottom:254.880000px;}
.yae{bottom:255.600000px;}
.y21e{bottom:258.903360px;}
.y20c{bottom:259.045920px;}
.y261{bottom:260.100000px;}
.ye9{bottom:260.820000px;}
.y253{bottom:262.800000px;}
.y196{bottom:263.160000px;}
.y13{bottom:263.640000px;}
.y113{bottom:265.140000px;}
.y4f{bottom:266.040000px;}
.y1dd{bottom:266.495910px;}
.y233{bottom:267.300000px;}
.ya6{bottom:268.560000px;}
.y92{bottom:268.920000px;}
.y139{bottom:270.000000px;}
.y166{bottom:270.900000px;}
.y3a{bottom:271.980000px;}
.yce{bottom:272.700000px;}
.y189{bottom:278.820000px;}
.y21d{bottom:279.056880px;}
.y20b{bottom:279.199440px;}
.y1be{bottom:280.800000px;}
.y1dc{bottom:286.649430px;}
.y1b4{bottom:286.920000px;}
.y232{bottom:288.000000px;}
.y112{bottom:288.900000px;}
.y71{bottom:289.800000px;}
.y4e{bottom:289.980000px;}
.y91{bottom:292.140000px;}
.ya5{bottom:292.320000px;}
.ycd{bottom:292.500000px;}
.y138{bottom:293.760000px;}
.ye8{bottom:295.200000px;}
.y21c{bottom:299.210400px;}
.y20a{bottom:299.352960px;}
.y252{bottom:301.500000px;}
.y26c{bottom:301.500150px;}
.y195{bottom:301.860000px;}
.y188{bottom:302.580000px;}
.y163{bottom:305.460000px;}
.y39{bottom:306.360000px;}
.y1db{bottom:306.802950px;}
.y231{bottom:308.700000px;}
.y1b3{bottom:310.680000px;}
.ycc{bottom:312.300000px;}
.y111{bottom:312.660000px;}
.y70{bottom:313.560000px;}
.y4d{bottom:313.740000px;}
.y90{bottom:315.360000px;}
.ya4{bottom:316.260000px;}
.ye7{bottom:317.340000px;}
.y21b{bottom:319.363920px;}
.y1bd{bottom:319.500000px;}
.y209{bottom:319.506480px;}
.y251{bottom:322.200000px;}
.y26b{bottom:322.200150px;}
.y194{bottom:325.800000px;}
.y12{bottom:326.100000px;}
.y187{bottom:326.340000px;}
.y1da{bottom:326.956470px;}
.y164{bottom:328.500000px;}
.ycb{bottom:331.920000px;}
.y137{bottom:332.100000px;}
.y1b2{bottom:334.620000px;}
.y110{bottom:336.420000px;}
.y6f{bottom:337.320000px;}
.y4c{bottom:337.500000px;}
.y8f{bottom:338.760000px;}
.y21a{bottom:339.517440px;}
.ye6{bottom:339.660000px;}
.ya3{bottom:340.020000px;}
.y260{bottom:340.200000px;}
.y38{bottom:340.560000px;}
.y250{bottom:342.900000px;}
.y1bc{bottom:343.260000px;}
.y1d9{bottom:347.109990px;}
.y230{bottom:347.400000px;}
.y193{bottom:349.560000px;}
.y186{bottom:350.100000px;}
.yca{bottom:351.720000px;}
.y11{bottom:357.240000px;}
.y1b1{bottom:358.380000px;}
.y219{bottom:359.670960px;}
.y208{bottom:359.813520px;}
.y10f{bottom:360.360000px;}
.y25f{bottom:360.900000px;}
.y26a{bottom:360.900150px;}
.y6e{bottom:361.080000px;}
.y4b{bottom:361.260000px;}
.y8e{bottom:361.980000px;}
.y37{bottom:362.880000px;}
.y159{bottom:363.240000px;}
.ya2{bottom:363.780000px;}
.y1bb{bottom:367.200000px;}
.y1d8{bottom:367.263510px;}
.y22f{bottom:368.100000px;}
.yc9{bottom:371.340000px;}
.y192{bottom:373.320000px;}
.y185{bottom:374.040000px;}
.y218{bottom:379.658880px;}
.y207{bottom:379.801440px;}
.y24f{bottom:381.600000px;}
.y269{bottom:381.600150px;}
.y1b0{bottom:382.140000px;}
.y6d{bottom:385.020150px;}
.y7f{bottom:385.200000px;}
.y162{bottom:386.100150px;}
.y1d7{bottom:387.417030px;}
.ya1{bottom:387.540000px;}
.y10{bottom:388.200000px;}
.y22e{bottom:388.800000px;}
.y15d{bottom:390.247920px;}
.y1ba{bottom:390.960000px;}
.yc8{bottom:391.140000px;}
.y136{bottom:395.100000px;}
.ye5{bottom:396.180000px;}
.y36{bottom:396.900000px;}
.y191{bottom:397.080000px;}
.y4a{bottom:397.260150px;}
.y10e{bottom:398.700000px;}
.y272{bottom:399.600000px;}
.y217{bottom:399.812400px;}
.y206{bottom:399.954960px;}
.y24e{bottom:402.300000px;}
.y268{bottom:402.300150px;}
.y1af{bottom:405.900000px;}
.y1d6{bottom:407.570550px;}
.y8b{bottom:408.420000px;}
.y6c{bottom:408.780150px;}
.y15c{bottom:409.142880px;}
.yc7{bottom:410.760000px;}
.ya0{bottom:411.480000px;}
.y184{bottom:412.740150px;}
.y1b9{bottom:414.720000px;}
.y216{bottom:419.965920px;}
.y205{bottom:420.108480px;}
.y25e{bottom:420.300000px;}
.y160{bottom:420.840000px;}
.y35{bottom:421.020000px;}
.y49{bottom:421.020150px;}
.y22d{bottom:427.500000px;}
.y1d5{bottom:427.724070px;}
.y15b{bottom:428.220000px;}
.y1ae{bottom:429.660000px;}
.yc4{bottom:430.560000px;}
.ye4{bottom:430.920000px;}
.y8a{bottom:431.640000px;}
.y6b{bottom:432.540000px;}
.yf{bottom:433.920000px;}
.y135{bottom:433.980000px;}
.y9f{bottom:435.240000px;}
.y183{bottom:436.500150px;}
.y10d{bottom:437.580000px;}
.yc6{bottom:438.480000px;}
.y215{bottom:440.119440px;}
.y204{bottom:440.262000px;}
.y15e{bottom:440.640000px;}
.y24d{bottom:441.000000px;}
.y25d{bottom:441.000150px;}
.y34{bottom:444.780000px;}
.y12f{bottom:446.400000px;}
.y1d4{bottom:447.711990px;}
.y22c{bottom:448.200000px;}
.ye3{bottom:453.060000px;}
.y1ad{bottom:453.600000px;}
.y89{bottom:454.860000px;}
.y10b{bottom:455.040000px;}
.y6a{bottom:456.300000px;}
.y134{bottom:457.740000px;}
.y9e{bottom:459.000000px;}
.y214{bottom:460.272960px;}
.y203{bottom:460.415520px;}
.y182{bottom:460.440000px;}
.y24c{bottom:461.700000px;}
.y25c{bottom:461.700150px;}
.y10c{bottom:461.880000px;}
.y1b8{bottom:462.420000px;}
.ye{bottom:464.880000px;}
.y1d3{bottom:467.865510px;}
.y33{bottom:468.540000px;}
.y22b{bottom:468.900000px;}
.y12e{bottom:470.160000px;}
.yc2{bottom:473.040000px;}
.y1ac{bottom:477.360000px;}
.y88{bottom:478.260000px;}
.y271{bottom:479.700000px;}
.y69{bottom:480.240000px;}
.y213{bottom:480.426480px;}
.y202{bottom:480.569040px;}
.y133{bottom:481.500000px;}
.y25b{bottom:482.400150px;}
.y9d{bottom:482.760000px;}
.y181{bottom:484.200000px;}
.y1b7{bottom:486.180000px;}
.ye2{bottom:487.080000px;}
.y156{bottom:487.980000px;}
.y1d2{bottom:488.019030px;}
.y32{bottom:492.300000px;}
.y12d{bottom:493.920000px;}
.y108{bottom:499.500000px;}
.y24b{bottom:500.400000px;}
.y212{bottom:500.580000px;}
.y201{bottom:500.722560px;}
.y1ab{bottom:501.120000px;}
.y86{bottom:501.480000px;}
.y68{bottom:504.000000px;}
.y132{bottom:505.620000px;}
.y10a{bottom:506.340000px;}
.y9c{bottom:506.700000px;}
.y22a{bottom:507.600000px;}
.y180{bottom:507.960000px;}
.y1d1{bottom:508.172550px;}
.y1b6{bottom:509.940000px;}
.y155{bottom:512.100000px;}
.ybf{bottom:513.540000px;}
.y31{bottom:516.240000px;}
.y200{bottom:520.876080px;}
.y24a{bottom:521.100000px;}
.y25a{bottom:521.100150px;}
.ye1{bottom:521.460000px;}
.y85{bottom:524.700000px;}
.y1aa{bottom:524.880000px;}
.y229{bottom:528.300000px;}
.y1d0{bottom:528.326070px;}
.y9b{bottom:530.460000px;}
.y131{bottom:530.640000px;}
.y17f{bottom:531.720000px;}
.y12c{bottom:532.800000px;}
.y1b5{bottom:533.700000px;}
.yc1{bottom:536.580000px;}
.y154{bottom:537.120000px;}
.y30{bottom:540.000000px;}
.y1ff{bottom:541.029600px;}
.y249{bottom:541.800000px;}
.yd{bottom:542.460000px;}
.y106{bottom:543.780000px;}
.ye0{bottom:543.960000px;}
.y278{bottom:547.380000px;}
.y83{bottom:547.920000px;}
.y1cf{bottom:548.479590px;}
.y1a9{bottom:548.820000px;}
.y228{bottom:549.000000px;}
.y130{bottom:550.260000px;}
.y9a{bottom:554.220000px;}
.y17e{bottom:555.660000px;}
.y1fe{bottom:561.183120px;}
.y259{bottom:562.500000px;}
.y67{bottom:563.580000px;}
.y2f{bottom:563.760000px;}
.ydf{bottom:566.280000px;}
.y1ce{bottom:568.633110px;}
.y81{bottom:571.140000px;}
.y12b{bottom:572.040000px;}
.y1a8{bottom:572.580000px;}
.y105{bottom:573.840150px;}
.y153{bottom:576.000000px;}
.y98{bottom:578.160000px;}
.y17d{bottom:579.420150px;}
.yc{bottom:580.260000px;}
.y248{bottom:580.500000px;}
.y99{bottom:580.680000px;}
.y1fd{bottom:581.171040px;}
.y277{bottom:582.840000px;}
.y66{bottom:587.340000px;}
.y2e{bottom:587.520000px;}
.y48{bottom:587.520150px;}
.y227{bottom:587.700000px;}
.yde{bottom:588.600000px;}
.y1cd{bottom:588.786630px;}
.ybe{bottom:590.940000px;}
.y7c{bottom:594.360000px;}
.y12a{bottom:595.800000px;}
.y1a7{bottom:596.340000px;}
.y104{bottom:597.600150px;}
.y152{bottom:599.760000px;}
.y247{bottom:601.200000px;}
.y1fc{bottom:601.324560px;}
.y17c{bottom:603.180150px;}
.yb{bottom:604.560000px;}
.y1cc{bottom:608.940150px;}
.ybd{bottom:610.560000px;}
.y65{bottom:611.100000px;}
.y2d{bottom:611.280000px;}
.y47{bottom:611.280150px;}
.y78{bottom:617.760000px;}
.y1a6{bottom:620.100000px;}
.y103{bottom:621.360000px;}
.y1fb{bottom:621.478080px;}
.y276{bottom:621.720000px;}
.y246{bottom:621.900000px;}
.y151{bottom:623.520000px;}
.y226{bottom:626.495760px;}
.y17b{bottom:626.940000px;}
.y1cb{bottom:628.560000px;}
.ybc{bottom:630.360000px;}
.ydd{bottom:633.420000px;}
.y129{bottom:634.680000px;}
.y64{bottom:635.040000px;}
.y2c{bottom:635.220000px;}
.y7a{bottom:640.260000px;}
.y1fa{bottom:641.631600px;}
.ya{bottom:642.360150px;}
.y245{bottom:642.600000px;}
.y1a5{bottom:644.040000px;}
.y150{bottom:647.460000px;}
.yba{bottom:650.160000px;}
.y17a{bottom:650.700000px;}
.y102{bottom:655.560000px;}
.ydc{bottom:655.740000px;}
.y128{bottom:658.440000px;}
.y63{bottom:658.800000px;}
.y2b{bottom:658.980000px;}
.y270{bottom:660.600000px;}
.y225{bottom:661.602960px;}
.y1f9{bottom:661.785120px;}
.y267{bottom:663.300000px;}
.y9{bottom:666.660000px;}
.y1ca{bottom:667.080000px;}
.y1a4{bottom:667.800000px;}
.y14f{bottom:671.220000px;}
.y101{bottom:672.840000px;}
.y179{bottom:674.640000px;}
.ydb{bottom:678.060000px;}
.y244{bottom:681.300000px;}
.y1f8{bottom:681.938640px;}
.y127{bottom:682.200000px;}
.y62{bottom:682.560000px;}
.y2a{bottom:682.740000px;}
.yb5{bottom:690.480000px;}
.y1a3{bottom:691.560000px;}
.y100{bottom:694.080000px;}
.y14e{bottom:694.980000px;}
.y178{bottom:698.400000px;}
.yda{bottom:700.380000px;}
.y243{bottom:702.000000px;}
.y1f7{bottom:702.092160px;}
.y8{bottom:704.460000px;}
.y126{bottom:706.140000px;}
.y61{bottom:706.320000px;}
.y29{bottom:706.500000px;}
.y190{bottom:706.500150px;}
.y1c9{bottom:709.200000px;}
.yb9{bottom:713.523750px;}
.y1a2{bottom:715.320000px;}
.y14d{bottom:718.740000px;}
.y177{bottom:722.160000px;}
.y1f6{bottom:722.245680px;}
.yd9{bottom:722.700000px;}
.y7{bottom:728.760000px;}
.y77{bottom:730.080000px;}
.y60{bottom:730.260000px;}
.y28{bottom:730.440000px;}
.y46{bottom:730.440150px;}
.yb8{bottom:732.418710px;}
.yfe{bottom:732.780000px;}
.y1a1{bottom:739.260000px;}
.y242{bottom:740.700000px;}
.y1f5{bottom:742.399200px;}
.y266{bottom:743.400000px;}
.yd8{bottom:745.020000px;}
.y176{bottom:745.920000px;}
.y1c8{bottom:747.900000px;}
.yb7{bottom:751.860150px;}
.y5f{bottom:754.020000px;}
.y27{bottom:754.200000px;}
.y14c{bottom:757.260000px;}
.y241{bottom:761.400000px;}
.y1f4{bottom:762.552720px;}
.y1a0{bottom:763.020000px;}
.y6{bottom:766.560000px;}
.yd7{bottom:767.340000px;}
.y175{bottom:770.218560px;}
.yfd{bottom:771.480000px;}
.y1c7{bottom:771.840000px;}
.y5e{bottom:777.780000px;}
.y26{bottom:777.960000px;}
.y240{bottom:782.100000px;}
.y1f3{bottom:782.540640px;}
.y125{bottom:784.080000px;}
.y19f{bottom:786.780000px;}
.yd6{bottom:789.660000px;}
.y174{bottom:795.060000px;}
.y1c6{bottom:795.600000px;}
.yfc{bottom:795.780000px;}
.y14b{bottom:796.140000px;}
.y25{bottom:801.720000px;}
.y1f2{bottom:802.694160px;}
.y258{bottom:802.800000px;}
.y124{bottom:807.840000px;}
.y19e{bottom:810.540000px;}
.yd5{bottom:811.980000px;}
.y14a{bottom:813.600000px;}
.y5d{bottom:813.780000px;}
.yfb{bottom:816.480000px;}
.y173{bottom:819.360000px;}
.y23f{bottom:820.800000px;}
.y1f1{bottom:822.847680px;}
.y265{bottom:823.500000px;}
.y24{bottom:825.660000px;}
.yd4{bottom:834.300000px;}
.y19d{bottom:834.480000px;}
.y5{bottom:836.460000px;}
.y5c{bottom:837.360000px;}
.y23e{bottom:841.500000px;}
.y1f0{bottom:843.001200px;}
.y1c5{bottom:843.120000px;}
.y275{bottom:844.200000px;}
.y123{bottom:846.720000px;}
.yad{bottom:849.060000px;}
.y23{bottom:849.420000px;}
.yfa{bottom:850.680000px;}
.y147{bottom:852.480000px;}
.yd3{bottom:856.800000px;}
.y172{bottom:858.240000px;}
.y5b{bottom:861.120000px;}
.y23d{bottom:862.200000px;}
.y1ef{bottom:863.154720px;}
.y121{bottom:863.820000px;}
.y4{bottom:867.420000px;}
.yac{bottom:872.820000px;}
.yf9{bottom:873.000000px;}
.y22{bottom:873.180000px;}
.yd2{bottom:879.120000px;}
.y1c4{bottom:881.640000px;}
.y171{bottom:882.000000px;}
.y23c{bottom:882.900000px;}
.y1ee{bottom:883.308240px;}
.y5a{bottom:885.060000px;}
.y122{bottom:886.860000px;}
.y146{bottom:891.360000px;}
.yf8{bottom:895.320000px;}
.y21{bottom:896.940000px;}
.yd1{bottom:901.440000px;}
.y1ed{bottom:903.461760px;}
.y264{bottom:903.600000px;}
.y170{bottom:905.760000px;}
.y59{bottom:908.820000px;}
.yf7{bottom:917.640000px;}
.y20{bottom:920.520000px;}
.y45{bottom:920.880000px;}
.y120{bottom:921.600000px;}
.y1ec{bottom:923.615280px;}
.yd0{bottom:923.760000px;}
.y274{bottom:924.300000px;}
.y16f{bottom:929.520000px;}
.y143{bottom:930.060000px;}
.y58{bottom:932.580000px;}
.y3{bottom:936.351000px;}
.y145{bottom:939.240000px;}
.yf6{bottom:939.960000px;}
.y23b{bottom:942.300000px;}
.y1eb{bottom:943.768800px;}
.y11f{bottom:944.100000px;}
.y1f{bottom:944.280000px;}
.y44{bottom:944.640000px;}
.ycf{bottom:946.080000px;}
.y16e{bottom:953.460000px;}
.y57{bottom:956.340000px;}
.yf5{bottom:962.280000px;}
.y23a{bottom:963.000000px;}
.y1ea{bottom:963.922320px;}
.y11e{bottom:966.600000px;}
.y1e{bottom:968.040000px;}
.y43{bottom:968.400000px;}
.y13e{bottom:973.980000px;}
.y16d{bottom:977.220000px;}
.y2{bottom:982.980000px;}
.y239{bottom:983.700000px;}
.y1e9{bottom:983.910240px;}
.yf4{bottom:984.600000px;}
.y119{bottom:989.280000px;}
.y1d{bottom:991.800000px;}
.y42{bottom:992.160000px;}
.y56{bottom:992.340000px;}
.y11d{bottom:996.120000px;}
.y140{bottom:997.740000px;}
.y16c{bottom:1000.980000px;}
.y26f{bottom:1001.700000px;}
.y1e8{bottom:1004.063760px;}
.yf3{bottom:1006.920000px;}
.y142{bottom:1012.680000px;}
.y41{bottom:1016.100000px;}
.y1c{bottom:1019.340000px;}
.y238{bottom:1022.400000px;}
.y1e7{bottom:1024.217280px;}
.y16b{bottom:1024.740000px;}
.yf2{bottom:1029.240000px;}
.y11b{bottom:1033.560000px;}
.y40{bottom:1039.860000px;}
.y237{bottom:1043.100000px;}
.y1e6{bottom:1044.370800px;}
.y1b{bottom:1054.980000px;}
.y16a{bottom:1063.260000px;}
.yf1{bottom:1063.440000px;}
.y3f{bottom:1063.620000px;}
.y236{bottom:1063.800000px;}
.y1e5{bottom:1064.524320px;}
.y19{bottom:1106.997000px;}
.y18{bottom:1126.239000px;}
.y17{bottom:1144.239000px;}
.h15{height:18.900000px;}
.h16{height:19.080000px;}
.h1b{height:20.340000px;}
.h1a{height:20.520000px;}
.h2a{height:21.420000px;}
.h1f{height:21.780000px;}
.h24{height:21.781500px;}
.h23{height:21.960000px;}
.hc{height:22.498500px;}
.hf{height:22.500000px;}
.h1c{height:37.980000px;}
.h1d{height:37.981500px;}
.h28{height:38.158500px;}
.h14{height:39.600000px;}
.h17{height:39.780000px;}
.h19{height:41.760000px;}
.h18{height:41.761500px;}
.h27{height:43.200000px;}
.h21{height:43.558500px;}
.h20{height:43.560000px;}
.h8{height:43.681641px;}
.h2f{height:44.149219px;}
.h2e{height:45.895781px;}
.h4{height:47.321367px;}
.h1{height:54.628594px;}
.ha{height:56.880000px;}
.h2b{height:57.060000px;}
.h26{height:57.598500px;}
.hd{height:65.010937px;}
.h22{height:66.240000px;}
.hb{height:66.757500px;}
.h5{height:70.628906px;}
.h7{height:70.664062px;}
.h1e{height:70.664662px;}
.h6{height:72.562500px;}
.h2c{height:73.490625px;}
.h2d{height:74.704322px;}
.h3{height:74.704922px;}
.h9{height:74.705522px;}
.h30{height:75.093750px;}
.h25{height:79.980469px;}
.h12{height:82.706133px;}
.h13{height:96.660000px;}
.h29{height:98.820000px;}
.h2{height:108.843750px;}
.h11{height:112.628672px;}
.h10{height:138.780000px;}
.he{height:208.440000px;}
.h0{height:1188.000000px;}
.w1d{width:32.940000px;}
.w25{width:33.121500px;}
.w28{width:59.940000px;}
.w29{width:60.121500px;}
.w2a{width:66.780000px;}
.w13{width:80.101500px;}
.w20{width:84.421500px;}
.w22{width:86.940000px;}
.wd{width:87.120000px;}
.w12{width:88.380000px;}
.w24{width:90.720000px;}
.we{width:93.601500px;}
.w1c{width:95.040000px;}
.w23{width:100.440000px;}
.w21{width:103.140000px;}
.w10{width:106.740000px;}
.wc{width:115.020000px;}
.wf{width:120.240000px;}
.w14{width:120.601500px;}
.w1b{width:120.778500px;}
.w19{width:120.780000px;}
.w1a{width:127.620000px;}
.w15{width:147.601500px;}
.w11{width:153.001500px;}
.w1{width:156.241500px;}
.w16{width:156.600000px;}
.w3{width:157.500000px;}
.w26{width:181.440000px;}
.w27{width:188.280000px;}
.w6{width:227.520000px;}
.wb{width:228.601500px;}
.w5{width:234.360000px;}
.w8{width:234.541500px;}
.wa{width:235.800000px;}
.w7{width:237.241500px;}
.w18{width:242.278500px;}
.w17{width:249.120000px;}
.w1e{width:275.940000px;}
.w1f{width:279.720000px;}
.w2{width:310.860000px;}
.w9{width:465.121500px;}
.w4{width:700.561500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:7.740000px;}
.x20{left:10.080000px;}
.x32{left:12.420000px;}
.x1b{left:19.080000px;}
.x1d{left:46.980000px;}
.x1e{left:88.740000px;}
.x8{left:108.360000px;}
.x4c{left:109.440000px;}
.x3f{left:112.860000px;}
.x6{left:114.300000px;}
.xb{left:116.460000px;}
.x2{left:119.340000px;}
.xa{left:121.680000px;}
.x34{left:122.760000px;}
.x16{left:127.308000px;}
.x37{left:134.280000px;}
.x13{left:136.620000px;}
.x3d{left:142.020000px;}
.x1a{left:145.980000px;}
.xf{left:147.780000px;}
.x11{left:150.120000px;}
.x26{left:158.760000px;}
.x28{left:162.720000px;}
.x4{left:166.860000px;}
.x1c{left:174.420000px;}
.x40{left:204.300000px;}
.x15{left:205.380000px;}
.x4e{left:210.240000px;}
.x4f{left:217.980000px;}
.x7{left:237.960000px;}
.xc{left:240.480000px;}
.x50{left:244.080000px;}
.x46{left:246.060000px;}
.x19{left:251.280000px;}
.x4d{left:257.220000px;}
.x18{left:264.240000px;}
.x2d{left:268.920000px;}
.x3{left:272.511000px;}
.x14{left:274.500000px;}
.x29{left:278.460000px;}
.x36{left:291.960000px;}
.x39{left:299.340000px;}
.x10{left:302.400000px;}
.x52{left:304.740000px;}
.x57{left:312.480000px;}
.x42{left:323.460000px;}
.xd{left:324.540000px;}
.x47{left:331.200000px;}
.x27{left:336.780000px;}
.xe{left:339.120000px;}
.x23{left:343.800000px;}
.x5{left:351.000000px;}
.x12{left:354.600000px;}
.x2e{left:358.200000px;}
.x2a{left:366.300000px;}
.x58{left:373.320000px;}
.x3a{left:413.100000px;}
.x51{left:426.240000px;}
.x43{left:427.320000px;}
.x9{left:430.380000px;}
.x59{left:433.980000px;}
.x48{left:435.060000px;}
.x2f{left:439.200000px;}
.x35{left:450.540000px;}
.x1{left:454.680000px;}
.x17{left:459.000000px;}
.x2b{left:460.620000px;}
.x53{left:487.080000px;}
.x5a{left:494.820000px;}
.x41{left:515.160000px;}
.x49{left:522.900000px;}
.x30{left:533.700000px;}
.x38{left:541.440000px;}
.x54{left:547.740000px;}
.x3b{left:549.180000px;}
.x5b{left:555.480000px;}
.x24{left:572.040000px;}
.x25{left:580.680000px;}
.x22{left:582.300000px;}
.x44{left:602.820000px;}
.x4a{left:610.560000px;}
.x1f{left:614.520000px;}
.x5c{left:622.980000px;}
.x31{left:655.200000px;}
.x33{left:662.760000px;}
.x3c{left:670.680000px;}
.x55{left:676.080000px;}
.x5d{left:683.820000px;}
.x2c{left:689.040000px;}
.x45{left:704.160000px;}
.x4b{left:711.900000px;}
.x56{left:736.740000px;}
.x5e{left:744.480000px;}
.x3e{left:810.000000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-8.960000pt;}
.v7{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:21.120000pt;}
.v5{vertical-align:23.040000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:32.000000pt;}
.ls4e{letter-spacing:-1.472000pt;}
.ls26{letter-spacing:-1.344000pt;}
.ls29{letter-spacing:-1.280000pt;}
.ls48{letter-spacing:-1.177600pt;}
.ls4f{letter-spacing:-1.059840pt;}
.ls24{letter-spacing:-0.896000pt;}
.ls6c{letter-spacing:-0.824320pt;}
.ls73{letter-spacing:-0.765440pt;}
.ls87{letter-spacing:-0.704000pt;}
.ls49{letter-spacing:-0.647680pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.529920pt;}
.ls35{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.471680pt;}
.ls42{letter-spacing:-0.448000pt;}
.ls6b{letter-spacing:-0.412160pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls55{letter-spacing:-0.353280pt;}
.ls27{letter-spacing:-0.300160pt;}
.ls4a{letter-spacing:-0.294400pt;}
.ls6{letter-spacing:-0.288000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls50{letter-spacing:-0.235520pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls6a{letter-spacing:-0.176640pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls38{letter-spacing:-0.117760pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls69{letter-spacing:-0.058880pt;}
.ls4{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.041216pt;}
.ls34{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.117760pt;}
.lsa{letter-spacing:0.128000pt;}
.ls6d{letter-spacing:0.129536pt;}
.ls40{letter-spacing:0.133120pt;}
.ls3c{letter-spacing:0.134400pt;}
.ls6f{letter-spacing:0.147200pt;}
.ls67{letter-spacing:0.158976pt;}
.ls2{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.171520pt;}
.ls76{letter-spacing:0.182528pt;}
.ls28{letter-spacing:0.192000pt;}
.ls4d{letter-spacing:0.232960pt;}
.ls52{letter-spacing:0.235520pt;}
.ls71{letter-spacing:0.247296pt;}
.ls3{letter-spacing:0.256000pt;}
.ls70{letter-spacing:0.264960pt;}
.ls0{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.293120pt;}
.ls3a{letter-spacing:0.294400pt;}
.ls15{letter-spacing:0.300160pt;}
.ls53{letter-spacing:0.314880pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.321600pt;}
.ls16{letter-spacing:0.327680pt;}
.ls18{letter-spacing:0.334080pt;}
.ls9{letter-spacing:0.343040pt;}
.ls5a{letter-spacing:0.350080pt;}
.ls1a{letter-spacing:0.353280pt;}
.ls65{letter-spacing:0.359168pt;}
.ls61{letter-spacing:0.367360pt;}
.ls2f{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls41{letter-spacing:0.512000pt;}
.ls5e{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls74{letter-spacing:0.765440pt;}
.ls5b{letter-spacing:0.773120pt;}
.ls5c{letter-spacing:0.836480pt;}
.ls43{letter-spacing:0.896000pt;}
.ls31{letter-spacing:1.024000pt;}
.ls7f{letter-spacing:1.094400pt;}
.ls60{letter-spacing:1.267200pt;}
.lsd{letter-spacing:1.280000pt;}
.ls6e{letter-spacing:1.377792pt;}
.lsc{letter-spacing:1.920000pt;}
.ls3d{letter-spacing:2.054400pt;}
.lsb{letter-spacing:2.560000pt;}
.ls3e{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:3.372160pt;}
.ls20{letter-spacing:3.840000pt;}
.ls72{letter-spacing:3.944960pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls63{letter-spacing:4.486400pt;}
.ls56{letter-spacing:4.492800pt;}
.ls1b{letter-spacing:5.120000pt;}
.ls75{letter-spacing:5.240320pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls5d{letter-spacing:5.770240pt;}
.lsf{letter-spacing:6.400000pt;}
.ls54{letter-spacing:7.040000pt;}
.ls5f{letter-spacing:7.200000pt;}
.ls19{letter-spacing:7.680000pt;}
.ls36{letter-spacing:8.320000pt;}
.ls79{letter-spacing:8.453120pt;}
.ls58{letter-spacing:8.499840pt;}
.ls2e{letter-spacing:8.960000pt;}
.ls44{letter-spacing:9.597440pt;}
.ls17{letter-spacing:9.600000pt;}
.ls21{letter-spacing:10.240000pt;}
.ls57{letter-spacing:10.880000pt;}
.ls62{letter-spacing:11.520000pt;}
.ls32{letter-spacing:12.160000pt;}
.ls22{letter-spacing:12.800000pt;}
.ls2a{letter-spacing:13.440000pt;}
.ls51{letter-spacing:13.632000pt;}
.ls10{letter-spacing:14.080000pt;}
.ls59{letter-spacing:14.720000pt;}
.ls3f{letter-spacing:15.360000pt;}
.ls4c{letter-spacing:16.000000pt;}
.ls4b{letter-spacing:16.640000pt;}
.ls46{letter-spacing:17.280000pt;}
.ls45{letter-spacing:17.920000pt;}
.ls30{letter-spacing:20.480000pt;}
.lse{letter-spacing:21.120000pt;}
.ls7d{letter-spacing:21.253120pt;}
.ls11{letter-spacing:22.400000pt;}
.ls3b{letter-spacing:24.960000pt;}
.ls84{letter-spacing:25.093120pt;}
.ls7a{letter-spacing:25.733120pt;}
.ls85{letter-spacing:25.856000pt;}
.ls12{letter-spacing:26.240000pt;}
.ls47{letter-spacing:28.800000pt;}
.ls77{letter-spacing:30.208000pt;}
.ls78{letter-spacing:32.000000pt;}
.ls80{letter-spacing:32.773120pt;}
.ls7e{letter-spacing:37.893120pt;}
.ls83{letter-spacing:44.293120pt;}
.ls81{letter-spacing:54.533120pt;}
.ls7b{letter-spacing:59.653120pt;}
.ls68{letter-spacing:103.805440pt;}
.ls7c{letter-spacing:108.293120pt;}
.ls82{letter-spacing:114.053120pt;}
.ls86{letter-spacing:127.493120pt;}
.ls64{letter-spacing:133.245440pt;}
.ws77{word-spacing:-64.000000pt;}
.wsad{word-spacing:-48.128000pt;}
.wsaa{word-spacing:-45.376000pt;}
.wsa6{word-spacing:-44.800000pt;}
.ws76{word-spacing:-37.454080pt;}
.ws75{word-spacing:-37.120000pt;}
.ws73{word-spacing:-16.896000pt;}
.wsbc{word-spacing:-16.640000pt;}
.wsc2{word-spacing:-16.576000pt;}
.ws71{word-spacing:-16.512000pt;}
.ws9a{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws28{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.ws4d{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws74{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws4c{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws72{word-spacing:-15.552000pt;}
.ws4e{word-spacing:-15.488000pt;}
.ws4b{word-spacing:-15.360000pt;}
.ws95{word-spacing:-15.073280pt;}
.ws87{word-spacing:-15.014400pt;}
.ws83{word-spacing:-14.837760pt;}
.ws4f{word-spacing:-14.720000pt;}
.ws86{word-spacing:-14.602240pt;}
.ws93{word-spacing:-14.528000pt;}
.ws9b{word-spacing:-14.484480pt;}
.ws84{word-spacing:-14.425600pt;}
.wsb7{word-spacing:-14.366720pt;}
.ws64{word-spacing:-14.190080pt;}
.ws9c{word-spacing:-14.072320pt;}
.ws94{word-spacing:-13.660160pt;}
.wsd3{word-spacing:-13.601280pt;}
.wsb6{word-spacing:-13.542400pt;}
.wsd4{word-spacing:-13.424640pt;}
.wscf{word-spacing:-13.306880pt;}
.wsd2{word-spacing:-13.248000pt;}
.wsf2{word-spacing:-13.189120pt;}
.wsd1{word-spacing:-13.130240pt;}
.wsd0{word-spacing:-13.071360pt;}
.wsce{word-spacing:-12.894720pt;}
.ws11c{word-spacing:-12.776960pt;}
.ws26{word-spacing:-11.063040pt;}
.ws25{word-spacing:-10.720000pt;}
.ws27{word-spacing:-10.419840pt;}
.ws85{word-spacing:-9.280000pt;}
.ws7d{word-spacing:-3.968000pt;}
.ws1a{word-spacing:-3.840000pt;}
.ws19{word-spacing:-3.776000pt;}
.ws11f{word-spacing:-3.650560pt;}
.ws1b{word-spacing:-3.584000pt;}
.ws3d{word-spacing:-3.200000pt;}
.ws11e{word-spacing:-3.179520pt;}
.wsfb{word-spacing:-3.002880pt;}
.ws3e{word-spacing:-2.944000pt;}
.ws10b{word-spacing:-2.885120pt;}
.ws10a{word-spacing:-2.826240pt;}
.ws3f{word-spacing:-2.688000pt;}
.ws40{word-spacing:-2.560000pt;}
.ws115{word-spacing:-2.531840pt;}
.wsa1{word-spacing:-2.368000pt;}
.ws104{word-spacing:-2.355200pt;}
.ws5f{word-spacing:-2.304000pt;}
.ws6b{word-spacing:-2.176000pt;}
.wsa2{word-spacing:-2.048000pt;}
.ws3a{word-spacing:-1.920000pt;}
.ws120{word-spacing:-1.884160pt;}
.wsbd{word-spacing:-1.728000pt;}
.ws100{word-spacing:-1.707520pt;}
.ws63{word-spacing:-1.664000pt;}
.wsf1{word-spacing:-1.589760pt;}
.ws101{word-spacing:-1.530880pt;}
.wsb2{word-spacing:-1.408000pt;}
.ws2f{word-spacing:-1.280000pt;}
.wsf0{word-spacing:-1.059840pt;}
.ws53{word-spacing:-1.024000pt;}
.ws6e{word-spacing:-0.942080pt;}
.wsf6{word-spacing:-0.883200pt;}
.ws82{word-spacing:-0.768000pt;}
.ws70{word-spacing:-0.765440pt;}
.ws6f{word-spacing:-0.647680pt;}
.ws42{word-spacing:-0.640000pt;}
.ws6c{word-spacing:-0.529920pt;}
.ws102{word-spacing:-0.471040pt;}
.ws88{word-spacing:-0.448000pt;}
.ws113{word-spacing:-0.412160pt;}
.ws41{word-spacing:-0.384000pt;}
.wsee{word-spacing:-0.353280pt;}
.wsb{word-spacing:-0.343040pt;}
.ws92{word-spacing:-0.294400pt;}
.ws7{word-spacing:-0.288000pt;}
.ws18{word-spacing:-0.256000pt;}
.wsae{word-spacing:-0.235520pt;}
.wsd7{word-spacing:-0.192000pt;}
.ws2a{word-spacing:-0.171520pt;}
.wsc{word-spacing:-0.128000pt;}
.ws6d{word-spacing:-0.117760pt;}
.ws7c{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.058880pt;}
.wsc8{word-spacing:0.064000pt;}
.wsa3{word-spacing:0.117760pt;}
.ws60{word-spacing:0.128000pt;}
.wsdd{word-spacing:0.176640pt;}
.ws4{word-spacing:0.192000pt;}
.wsde{word-spacing:0.235520pt;}
.ws8{word-spacing:0.256000pt;}
.ws5{word-spacing:0.288000pt;}
.wsbb{word-spacing:0.294400pt;}
.wsb8{word-spacing:0.353280pt;}
.ws6{word-spacing:0.384000pt;}
.wsef{word-spacing:0.412160pt;}
.wsb0{word-spacing:0.448000pt;}
.ws3b{word-spacing:0.471680pt;}
.ws9f{word-spacing:0.512000pt;}
.ws8d{word-spacing:0.529920pt;}
.wsa{word-spacing:0.640000pt;}
.ws8f{word-spacing:0.647680pt;}
.ws106{word-spacing:0.765440pt;}
.wse2{word-spacing:0.824320pt;}
.ws3c{word-spacing:0.832000pt;}
.ws9{word-spacing:0.896000pt;}
.ws112{word-spacing:0.942080pt;}
.ws151{word-spacing:1.152000pt;}
.ws8c{word-spacing:1.177600pt;}
.ws16{word-spacing:1.280000pt;}
.wse1{word-spacing:1.295360pt;}
.ws43{word-spacing:1.344000pt;}
.wsc9{word-spacing:1.472000pt;}
.wsf7{word-spacing:1.530880pt;}
.ws17{word-spacing:1.536000pt;}
.wsed{word-spacing:1.589760pt;}
.ws11d{word-spacing:1.648640pt;}
.wsaf{word-spacing:1.664000pt;}
.ws6a{word-spacing:1.792000pt;}
.ws11{word-spacing:1.920000pt;}
.ws111{word-spacing:2.119680pt;}
.ws10{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.432000pt;}
.wsf{word-spacing:2.560000pt;}
.wse6{word-spacing:2.767360pt;}
.ws2d{word-spacing:2.816000pt;}
.ws10c{word-spacing:2.885120pt;}
.wseb{word-spacing:2.944000pt;}
.ws34{word-spacing:3.072000pt;}
.ws33{word-spacing:3.200000pt;}
.ws8a{word-spacing:3.392000pt;}
.wsd8{word-spacing:3.415040pt;}
.ws32{word-spacing:3.456000pt;}
.wsd9{word-spacing:3.532800pt;}
.wsb9{word-spacing:3.584000pt;}
.wse7{word-spacing:3.591680pt;}
.ws65{word-spacing:3.712000pt;}
.ws31{word-spacing:3.840000pt;}
.ws14f{word-spacing:3.904000pt;}
.wsff{word-spacing:4.003840pt;}
.ws44{word-spacing:4.096000pt;}
.ws107{word-spacing:4.121600pt;}
.ws105{word-spacing:4.180480pt;}
.wsb3{word-spacing:4.352000pt;}
.ws1e{word-spacing:4.480000pt;}
.wse8{word-spacing:4.651520pt;}
.ws52{word-spacing:4.736000pt;}
.wse9{word-spacing:4.769280pt;}
.wsfc{word-spacing:4.828160pt;}
.ws9e{word-spacing:4.864000pt;}
.ws96{word-spacing:4.992000pt;}
.ws35{word-spacing:5.120000pt;}
.wsc3{word-spacing:5.122560pt;}
.ws122{word-spacing:5.299200pt;}
.ws89{word-spacing:5.312000pt;}
.ws56{word-spacing:5.376000pt;}
.ws114{word-spacing:5.416960pt;}
.wsec{word-spacing:5.475840pt;}
.ws38{word-spacing:5.504000pt;}
.ws37{word-spacing:5.632000pt;}
.ws36{word-spacing:5.760000pt;}
.wsdc{word-spacing:5.770240pt;}
.wse5{word-spacing:5.946880pt;}
.ws39{word-spacing:6.016000pt;}
.ws67{word-spacing:6.272000pt;}
.ws1c{word-spacing:6.400000pt;}
.wsdb{word-spacing:6.594560pt;}
.ws58{word-spacing:6.656000pt;}
.wse4{word-spacing:6.712320pt;}
.wse3{word-spacing:6.771200pt;}
.ws5a{word-spacing:6.784000pt;}
.ws139{word-spacing:6.912000pt;}
.ws59{word-spacing:7.040000pt;}
.wsba{word-spacing:7.168000pt;}
.ws11b{word-spacing:7.242240pt;}
.ws1d{word-spacing:7.296000pt;}
.ws2c{word-spacing:7.424000pt;}
.ws5b{word-spacing:7.552000pt;}
.ws2b{word-spacing:7.680000pt;}
.ws54{word-spacing:7.872000pt;}
.ws121{word-spacing:7.889920pt;}
.ws5c{word-spacing:7.936000pt;}
.wsf5{word-spacing:8.007680pt;}
.wsc7{word-spacing:8.192000pt;}
.ws66{word-spacing:8.320000pt;}
.wsb5{word-spacing:8.512000pt;}
.ws109{word-spacing:8.537600pt;}
.wsb4{word-spacing:8.576000pt;}
.wsf4{word-spacing:8.714240pt;}
.ws47{word-spacing:8.832000pt;}
.ws15{word-spacing:8.960000pt;}
.ws103{word-spacing:9.126400pt;}
.ws14{word-spacing:9.216000pt;}
.ws108{word-spacing:9.303040pt;}
.wsc5{word-spacing:9.344000pt;}
.ws7e{word-spacing:9.472000pt;}
.ws8b{word-spacing:9.597440pt;}
.ws13{word-spacing:9.600000pt;}
.wsea{word-spacing:9.774080pt;}
.ws29{word-spacing:9.856000pt;}
.ws79{word-spacing:10.112000pt;}
.ws4a{word-spacing:10.240000pt;}
.ws78{word-spacing:10.496000pt;}
.ws9d{word-spacing:10.752000pt;}
.ws46{word-spacing:10.880000pt;}
.ws10d{word-spacing:10.892800pt;}
.wsfd{word-spacing:11.069440pt;}
.ws45{word-spacing:11.136000pt;}
.wsfa{word-spacing:11.187200pt;}
.ws10e{word-spacing:11.246080pt;}
.wsca{word-spacing:11.392000pt;}
.wsc4{word-spacing:11.520000pt;}
.wsda{word-spacing:11.717120pt;}
.wsd6{word-spacing:11.776000pt;}
.wscb{word-spacing:12.032000pt;}
.ws61{word-spacing:12.160000pt;}
.ws116{word-spacing:12.188160pt;}
.ws10f{word-spacing:12.364800pt;}
.ws62{word-spacing:12.416000pt;}
.ws110{word-spacing:12.482560pt;}
.wsbe{word-spacing:12.672000pt;}
.ws48{word-spacing:12.800000pt;}
.wsc6{word-spacing:12.992000pt;}
.ws49{word-spacing:13.056000pt;}
.ws50{word-spacing:13.440000pt;}
.ws51{word-spacing:13.696000pt;}
.ws13e{word-spacing:13.952000pt;}
.ws30{word-spacing:14.080000pt;}
.wsa9{word-spacing:14.208000pt;}
.wsa8{word-spacing:14.272000pt;}
.ws1f{word-spacing:14.336000pt;}
.ws69{word-spacing:14.720000pt;}
.wsac{word-spacing:14.912000pt;}
.ws68{word-spacing:14.976000pt;}
.ws81{word-spacing:15.232000pt;}
.ws7f{word-spacing:15.360000pt;}
.ws80{word-spacing:15.616000pt;}
.ws98{word-spacing:15.872000pt;}
.ws99{word-spacing:16.000000pt;}
.wsfe{word-spacing:16.192000pt;}
.ws124{word-spacing:16.640000pt;}
.wsf8{word-spacing:16.839680pt;}
.ws97{word-spacing:16.896000pt;}
.ws55{word-spacing:17.280000pt;}
.wsa7{word-spacing:17.408000pt;}
.ws8e{word-spacing:17.428480pt;}
.wsa0{word-spacing:17.472000pt;}
.ws57{word-spacing:17.536000pt;}
.wsa5{word-spacing:17.792000pt;}
.wsa4{word-spacing:17.920000pt;}
.wsab{word-spacing:18.048000pt;}
.wse0{word-spacing:18.547200pt;}
.ws153{word-spacing:18.560000pt;}
.wsdf{word-spacing:18.723840pt;}
.ws156{word-spacing:19.200000pt;}
.wsd5{word-spacing:19.712000pt;}
.ws5e{word-spacing:19.840000pt;}
.ws5d{word-spacing:20.096000pt;}
.ws12{word-spacing:21.120000pt;}
.ws21{word-spacing:22.400000pt;}
.ws119{word-spacing:22.609920pt;}
.ws20{word-spacing:22.656000pt;}
.ws11a{word-spacing:22.727680pt;}
.ws118{word-spacing:22.786560pt;}
.wsb1{word-spacing:23.040000pt;}
.ws12f{word-spacing:23.680000pt;}
.ws7b{word-spacing:24.960000pt;}
.wsc0{word-spacing:25.600000pt;}
.wsf3{word-spacing:25.789440pt;}
.wsc1{word-spacing:25.856000pt;}
.ws23{word-spacing:25.984000pt;}
.ws7a{word-spacing:26.240000pt;}
.ws22{word-spacing:26.496000pt;}
.ws125{word-spacing:26.880000pt;}
.ws24{word-spacing:27.136000pt;}
.ws12b{word-spacing:27.520000pt;}
.wsbf{word-spacing:28.154880pt;}
.wscc{word-spacing:28.800000pt;}
.ws90{word-spacing:28.910080pt;}
.wscd{word-spacing:29.056000pt;}
.ws14d{word-spacing:29.440000pt;}
.ws14e{word-spacing:29.504000pt;}
.ws149{word-spacing:30.080000pt;}
.ws148{word-spacing:30.336000pt;}
.ws13a{word-spacing:33.792000pt;}
.ws13b{word-spacing:33.920000pt;}
.ws12e{word-spacing:39.040000pt;}
.ws12d{word-spacing:39.296000pt;}
.ws144{word-spacing:39.680000pt;}
.ws143{word-spacing:39.936000pt;}
.ws147{word-spacing:45.440000pt;}
.ws13c{word-spacing:47.360000pt;}
.ws14a{word-spacing:49.792000pt;}
.ws14b{word-spacing:49.920000pt;}
.ws157{word-spacing:50.176000pt;}
.ws150{word-spacing:50.560000pt;}
.ws141{word-spacing:55.680000pt;}
.ws140{word-spacing:55.936000pt;}
.ws138{word-spacing:56.320000pt;}
.ws137{word-spacing:56.576000pt;}
.ws152{word-spacing:59.520000pt;}
.ws127{word-spacing:61.440000pt;}
.ws126{word-spacing:61.632000pt;}
.ws128{word-spacing:62.720000pt;}
.ws91{word-spacing:63.237120pt;}
.ws133{word-spacing:69.120000pt;}
.ws131{word-spacing:75.520000pt;}
.ws130{word-spacing:75.776000pt;}
.ws123{word-spacing:78.720000pt;}
.ws12a{word-spacing:102.400000pt;}
.ws129{word-spacing:110.080000pt;}
.ws135{word-spacing:110.720000pt;}
.ws134{word-spacing:110.976000pt;}
.ws13d{word-spacing:113.280000pt;}
.ws142{word-spacing:115.200000pt;}
.ws117{word-spacing:119.055360pt;}
.ws132{word-spacing:122.240000pt;}
.ws14c{word-spacing:128.640000pt;}
.ws146{word-spacing:138.240000pt;}
.ws145{word-spacing:138.496000pt;}
.ws12c{word-spacing:155.520000pt;}
.ws13f{word-spacing:157.440000pt;}
.ws136{word-spacing:165.760000pt;}
.ws155{word-spacing:252.160000pt;}
.ws154{word-spacing:252.416000pt;}
._d{margin-left:-8.391680pt;}
._16{margin-left:-4.544000pt;}
._5{margin-left:-3.616000pt;}
._7{margin-left:-2.019200pt;}
._1{margin-left:-1.123200pt;}
._0{width:1.056000pt;}
._2{width:2.499200pt;}
._11{width:3.395200pt;}
._6{width:4.416000pt;}
._9{width:5.376000pt;}
._8{width:6.592640pt;}
._3{width:8.128000pt;}
._4{width:9.056000pt;}
._b{width:10.275200pt;}
._f{width:12.227200pt;}
._a{width:13.493120pt;}
._10{width:14.976000pt;}
._c{width:17.406720pt;}
._e{width:19.904000pt;}
._1c{width:22.784000pt;}
._1f{width:24.416000pt;}
._15{width:26.016000pt;}
._14{width:28.000000pt;}
._18{width:32.000000pt;}
._26{width:33.481600pt;}
._1e{width:38.976000pt;}
._29{width:44.899200pt;}
._27{width:47.904000pt;}
._2a{width:49.836800pt;}
._25{width:56.249600pt;}
._2c{width:59.651200pt;}
._19{width:61.248000pt;}
._1a{width:62.560000pt;}
._22{width:69.664000pt;}
._20{width:75.040000pt;}
._17{width:79.139200pt;}
._1b{width:109.504000pt;}
._23{width:110.496000pt;}
._28{width:115.328000pt;}
._21{width:122.688000pt;}
._2b{width:128.768000pt;}
._1d{width:155.936000pt;}
._24{width:165.248000pt;}
._13{width:167.882880pt;}
._12{width:175.936640pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:66.560000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:3.200133pt;}
.y84{bottom:3.520000pt;}
.y87{bottom:3.520133pt;}
.y7e{bottom:3.680000pt;}
.y82{bottom:3.680133pt;}
.y149{bottom:3.840000pt;}
.y141{bottom:4.320000pt;}
.yef{bottom:4.800000pt;}
.yec{bottom:4.960000pt;}
.y15f{bottom:5.760000pt;}
.y107{bottom:6.080000pt;}
.y11c{bottom:6.240000pt;}
.y7d{bottom:6.720000pt;}
.yff{bottom:20.480000pt;}
.y148{bottom:20.640000pt;}
.ybb{bottom:21.600000pt;}
.yc3{bottom:21.760133pt;}
.yc5{bottom:23.840000pt;}
.y144{bottom:25.120000pt;}
.y109{bottom:25.440000pt;}
.y79{bottom:36.960000pt;}
.yc0{bottom:37.280000pt;}
.y161{bottom:37.280133pt;}
.y168{bottom:37.440000pt;}
.y13f{bottom:37.920000pt;}
.y11a{bottom:45.600000pt;}
.y1a{bottom:52.165760pt;}
.y1{bottom:70.080000pt;}
.yb6{bottom:72.640000pt;}
.y15a{bottom:74.560000pt;}
.yb4{bottom:100.320000pt;}
.yf0{bottom:105.920000pt;}
.y19c{bottom:106.880000pt;}
.y18f{bottom:107.520000pt;}
.y76{bottom:109.280000pt;}
.y55{bottom:109.600000pt;}
.y8d{bottom:110.080000pt;}
.y1e4{bottom:111.632773pt;}
.y118{bottom:116.480000pt;}
.y1c3{bottom:117.120000pt;}
.y97{bottom:118.560000pt;}
.y3e{bottom:119.360000pt;}
.yb3{bottom:121.440000pt;}
.y224{bottom:122.798080pt;}
.y257{bottom:125.120000pt;}
.y19b{bottom:128.160000pt;}
.y18e{bottom:128.640000pt;}
.y1e3{bottom:129.547013pt;}
.y75{bottom:130.400000pt;}
.y54{bottom:130.720000pt;}
.y158{bottom:132.320000pt;}
.yab{bottom:132.960000pt;}
.y117{bottom:137.600000pt;}
.y1c2{bottom:138.240000pt;}
.y96{bottom:139.680000pt;}
.yee{bottom:140.320000pt;}
.y223{bottom:140.712320pt;}
.y211{bottom:140.839040pt;}
.y273{bottom:141.600000pt;}
.y13d{bottom:141.920000pt;}
.yb2{bottom:142.560000pt;}
.y256{bottom:143.680000pt;}
.y26e{bottom:144.000000pt;}
.y1e2{bottom:147.461253pt;}
.y19a{bottom:149.280000pt;}
.y3d{bottom:149.920000pt;}
.y74{bottom:151.520000pt;}
.y53{bottom:151.840000pt;}
.y16{bottom:151.946667pt;}
.y157{bottom:153.440000pt;}
.yaa{bottom:154.080000pt;}
.y222{bottom:158.479360pt;}
.y210{bottom:158.606080pt;}
.yed{bottom:159.040000pt;}
.y1c1{bottom:159.360000pt;}
.y263{bottom:160.000000pt;}
.y95{bottom:160.800000pt;}
.y255{bottom:162.400000pt;}
.y18d{bottom:163.200000pt;}
.yb1{bottom:163.840000pt;}
.y1e1{bottom:165.375493pt;}
.y235{bottom:166.400000pt;}
.y167{bottom:168.960000pt;}
.y199{bottom:170.400000pt;}
.y80{bottom:172.000000pt;}
.y116{bottom:172.160000pt;}
.y73{bottom:172.800000pt;}
.y52{bottom:173.120000pt;}
.ya9{bottom:175.200000pt;}
.y221{bottom:176.393600pt;}
.y13c{bottom:176.480000pt;}
.y20f{bottom:176.520320pt;}
.yea{bottom:177.920000pt;}
.y262{bottom:178.400000pt;}
.y15{bottom:179.466667pt;}
.y1c0{bottom:180.480000pt;}
.y3c{bottom:180.640000pt;}
.y26d{bottom:180.800000pt;}
.y94{bottom:181.920000pt;}
.y1e0{bottom:183.289733pt;}
.y18c{bottom:184.320000pt;}
.y234{bottom:184.800000pt;}
.yb0{bottom:184.960000pt;}
.y169{bottom:189.440000pt;}
.y198{bottom:191.520000pt;}
.y115{bottom:193.280000pt;}
.y51{bottom:194.240000pt;}
.y220{bottom:194.307840pt;}
.y20e{bottom:194.434560pt;}
.ya8{bottom:196.480000pt;}
.yeb{bottom:196.800000pt;}
.y13b{bottom:197.600000pt;}
.y1df{bottom:201.203973pt;}
.y93{bottom:203.200000pt;}
.y72{bottom:204.320000pt;}
.y18b{bottom:205.440000pt;}
.yaf{bottom:206.080000pt;}
.y14{bottom:207.146667pt;}
.y3b{bottom:211.200000pt;}
.y21f{bottom:212.222080pt;}
.y20d{bottom:212.348800pt;}
.y197{bottom:212.800000pt;}
.y114{bottom:214.560000pt;}
.y1bf{bottom:214.720000pt;}
.y254{bottom:215.200000pt;}
.y50{bottom:215.360000pt;}
.ya7{bottom:217.600000pt;}
.y8c{bottom:218.400000pt;}
.y13a{bottom:218.720000pt;}
.y1de{bottom:219.118213pt;}
.y165{bottom:220.320000pt;}
.y18a{bottom:226.560000pt;}
.yae{bottom:227.200000pt;}
.y21e{bottom:230.136320pt;}
.y20c{bottom:230.263040pt;}
.y261{bottom:231.200000pt;}
.ye9{bottom:231.840000pt;}
.y253{bottom:233.600000pt;}
.y196{bottom:233.920000pt;}
.y13{bottom:234.346667pt;}
.y113{bottom:235.680000pt;}
.y4f{bottom:236.480000pt;}
.y1dd{bottom:236.885253pt;}
.y233{bottom:237.600000pt;}
.ya6{bottom:238.720000pt;}
.y92{bottom:239.040000pt;}
.y139{bottom:240.000000pt;}
.y166{bottom:240.800000pt;}
.y3a{bottom:241.760000pt;}
.yce{bottom:242.400000pt;}
.y189{bottom:247.840000pt;}
.y21d{bottom:248.050560pt;}
.y20b{bottom:248.177280pt;}
.y1be{bottom:249.600000pt;}
.y1dc{bottom:254.799493pt;}
.y1b4{bottom:255.040000pt;}
.y232{bottom:256.000000pt;}
.y112{bottom:256.800000pt;}
.y71{bottom:257.600000pt;}
.y4e{bottom:257.760000pt;}
.y91{bottom:259.680000pt;}
.ya5{bottom:259.840000pt;}
.ycd{bottom:260.000000pt;}
.y138{bottom:261.120000pt;}
.ye8{bottom:262.400000pt;}
.y21c{bottom:265.964800pt;}
.y20a{bottom:266.091520pt;}
.y252{bottom:268.000000pt;}
.y26c{bottom:268.000133pt;}
.y195{bottom:268.320000pt;}
.y188{bottom:268.960000pt;}
.y163{bottom:271.520000pt;}
.y39{bottom:272.320000pt;}
.y1db{bottom:272.713733pt;}
.y231{bottom:274.400000pt;}
.y1b3{bottom:276.160000pt;}
.ycc{bottom:277.600000pt;}
.y111{bottom:277.920000pt;}
.y70{bottom:278.720000pt;}
.y4d{bottom:278.880000pt;}
.y90{bottom:280.320000pt;}
.ya4{bottom:281.120000pt;}
.ye7{bottom:282.080000pt;}
.y21b{bottom:283.879040pt;}
.y1bd{bottom:284.000000pt;}
.y209{bottom:284.005760pt;}
.y251{bottom:286.400000pt;}
.y26b{bottom:286.400133pt;}
.y194{bottom:289.600000pt;}
.y12{bottom:289.866667pt;}
.y187{bottom:290.080000pt;}
.y1da{bottom:290.627973pt;}
.y164{bottom:292.000000pt;}
.ycb{bottom:295.040000pt;}
.y137{bottom:295.200000pt;}
.y1b2{bottom:297.440000pt;}
.y110{bottom:299.040000pt;}
.y6f{bottom:299.840000pt;}
.y4c{bottom:300.000000pt;}
.y8f{bottom:301.120000pt;}
.y21a{bottom:301.793280pt;}
.ye6{bottom:301.920000pt;}
.ya3{bottom:302.240000pt;}
.y260{bottom:302.400000pt;}
.y38{bottom:302.720000pt;}
.y250{bottom:304.800000pt;}
.y1bc{bottom:305.120000pt;}
.y1d9{bottom:308.542213pt;}
.y230{bottom:308.800000pt;}
.y193{bottom:310.720000pt;}
.y186{bottom:311.200000pt;}
.yca{bottom:312.640000pt;}
.y11{bottom:317.546667pt;}
.y1b1{bottom:318.560000pt;}
.y219{bottom:319.707520pt;}
.y208{bottom:319.834240pt;}
.y10f{bottom:320.320000pt;}
.y25f{bottom:320.800000pt;}
.y26a{bottom:320.800133pt;}
.y6e{bottom:320.960000pt;}
.y4b{bottom:321.120000pt;}
.y8e{bottom:321.760000pt;}
.y37{bottom:322.560000pt;}
.y159{bottom:322.880000pt;}
.ya2{bottom:323.360000pt;}
.y1bb{bottom:326.400000pt;}
.y1d8{bottom:326.456453pt;}
.y22f{bottom:327.200000pt;}
.yc9{bottom:330.080000pt;}
.y192{bottom:331.840000pt;}
.y185{bottom:332.480000pt;}
.y218{bottom:337.474560pt;}
.y207{bottom:337.601280pt;}
.y24f{bottom:339.200000pt;}
.y269{bottom:339.200133pt;}
.y1b0{bottom:339.680000pt;}
.y6d{bottom:342.240133pt;}
.y7f{bottom:342.400000pt;}
.y162{bottom:343.200133pt;}
.y1d7{bottom:344.370693pt;}
.ya1{bottom:344.480000pt;}
.y10{bottom:345.066667pt;}
.y22e{bottom:345.600000pt;}
.y15d{bottom:346.887040pt;}
.y1ba{bottom:347.520000pt;}
.yc8{bottom:347.680000pt;}
.y136{bottom:351.200000pt;}
.ye5{bottom:352.160000pt;}
.y36{bottom:352.800000pt;}
.y191{bottom:352.960000pt;}
.y4a{bottom:353.120133pt;}
.y10e{bottom:354.400000pt;}
.y272{bottom:355.200000pt;}
.y217{bottom:355.388800pt;}
.y206{bottom:355.515520pt;}
.y24e{bottom:357.600000pt;}
.y268{bottom:357.600133pt;}
.y1af{bottom:360.800000pt;}
.y1d6{bottom:362.284933pt;}
.y8b{bottom:363.040000pt;}
.y6c{bottom:363.360133pt;}
.y15c{bottom:363.682560pt;}
.yc7{bottom:365.120000pt;}
.ya0{bottom:365.760000pt;}
.y184{bottom:366.880133pt;}
.y1b9{bottom:368.640000pt;}
.y216{bottom:373.303040pt;}
.y205{bottom:373.429760pt;}
.y25e{bottom:373.600000pt;}
.y160{bottom:374.080000pt;}
.y35{bottom:374.240000pt;}
.y49{bottom:374.240133pt;}
.y22d{bottom:380.000000pt;}
.y1d5{bottom:380.199173pt;}
.y15b{bottom:380.640000pt;}
.y1ae{bottom:381.920000pt;}
.yc4{bottom:382.720000pt;}
.ye4{bottom:383.040000pt;}
.y8a{bottom:383.680000pt;}
.y6b{bottom:384.480000pt;}
.yf{bottom:385.706667pt;}
.y135{bottom:385.760000pt;}
.y9f{bottom:386.880000pt;}
.y183{bottom:388.000133pt;}
.y10d{bottom:388.960000pt;}
.yc6{bottom:389.760000pt;}
.y215{bottom:391.217280pt;}
.y204{bottom:391.344000pt;}
.y15e{bottom:391.680000pt;}
.y24d{bottom:392.000000pt;}
.y25d{bottom:392.000133pt;}
.y34{bottom:395.360000pt;}
.y12f{bottom:396.800000pt;}
.y1d4{bottom:397.966213pt;}
.y22c{bottom:398.400000pt;}
.ye3{bottom:402.720000pt;}
.y1ad{bottom:403.200000pt;}
.y89{bottom:404.320000pt;}
.y10b{bottom:404.480000pt;}
.y6a{bottom:405.600000pt;}
.y134{bottom:406.880000pt;}
.y9e{bottom:408.000000pt;}
.y214{bottom:409.131520pt;}
.y203{bottom:409.258240pt;}
.y182{bottom:409.280000pt;}
.y24c{bottom:410.400000pt;}
.y25c{bottom:410.400133pt;}
.y10c{bottom:410.560000pt;}
.y1b8{bottom:411.040000pt;}
.ye{bottom:413.226667pt;}
.y1d3{bottom:415.880453pt;}
.y33{bottom:416.480000pt;}
.y22b{bottom:416.800000pt;}
.y12e{bottom:417.920000pt;}
.yc2{bottom:420.480000pt;}
.y1ac{bottom:424.320000pt;}
.y88{bottom:425.120000pt;}
.y271{bottom:426.400000pt;}
.y69{bottom:426.880000pt;}
.y213{bottom:427.045760pt;}
.y202{bottom:427.172480pt;}
.y133{bottom:428.000000pt;}
.y25b{bottom:428.800133pt;}
.y9d{bottom:429.120000pt;}
.y181{bottom:430.400000pt;}
.y1b7{bottom:432.160000pt;}
.ye2{bottom:432.960000pt;}
.y156{bottom:433.760000pt;}
.y1d2{bottom:433.794693pt;}
.y32{bottom:437.600000pt;}
.y12d{bottom:439.040000pt;}
.y108{bottom:444.000000pt;}
.y24b{bottom:444.800000pt;}
.y212{bottom:444.960000pt;}
.y201{bottom:445.086720pt;}
.y1ab{bottom:445.440000pt;}
.y86{bottom:445.760000pt;}
.y68{bottom:448.000000pt;}
.y132{bottom:449.440000pt;}
.y10a{bottom:450.080000pt;}
.y9c{bottom:450.400000pt;}
.y22a{bottom:451.200000pt;}
.y180{bottom:451.520000pt;}
.y1d1{bottom:451.708933pt;}
.y1b6{bottom:453.280000pt;}
.y155{bottom:455.200000pt;}
.ybf{bottom:456.480000pt;}
.y31{bottom:458.880000pt;}
.y200{bottom:463.000960pt;}
.y24a{bottom:463.200000pt;}
.y25a{bottom:463.200133pt;}
.ye1{bottom:463.520000pt;}
.y85{bottom:466.400000pt;}
.y1aa{bottom:466.560000pt;}
.y229{bottom:469.600000pt;}
.y1d0{bottom:469.623173pt;}
.y9b{bottom:471.520000pt;}
.y131{bottom:471.680000pt;}
.y17f{bottom:472.640000pt;}
.y12c{bottom:473.600000pt;}
.y1b5{bottom:474.400000pt;}
.yc1{bottom:476.960000pt;}
.y154{bottom:477.440000pt;}
.y30{bottom:480.000000pt;}
.y1ff{bottom:480.915200pt;}
.y249{bottom:481.600000pt;}
.yd{bottom:482.186667pt;}
.y106{bottom:483.360000pt;}
.ye0{bottom:483.520000pt;}
.y278{bottom:486.560000pt;}
.y83{bottom:487.040000pt;}
.y1cf{bottom:487.537413pt;}
.y1a9{bottom:487.840000pt;}
.y228{bottom:488.000000pt;}
.y130{bottom:489.120000pt;}
.y9a{bottom:492.640000pt;}
.y17e{bottom:493.920000pt;}
.y1fe{bottom:498.829440pt;}
.y259{bottom:500.000000pt;}
.y67{bottom:500.960000pt;}
.y2f{bottom:501.120000pt;}
.ydf{bottom:503.360000pt;}
.y1ce{bottom:505.451653pt;}
.y81{bottom:507.680000pt;}
.y12b{bottom:508.480000pt;}
.y1a8{bottom:508.960000pt;}
.y105{bottom:510.080133pt;}
.y153{bottom:512.000000pt;}
.y98{bottom:513.920000pt;}
.y17d{bottom:515.040133pt;}
.yc{bottom:515.786667pt;}
.y248{bottom:516.000000pt;}
.y99{bottom:516.160000pt;}
.y1fd{bottom:516.596480pt;}
.y277{bottom:518.080000pt;}
.y66{bottom:522.080000pt;}
.y2e{bottom:522.240000pt;}
.y48{bottom:522.240133pt;}
.y227{bottom:522.400000pt;}
.yde{bottom:523.200000pt;}
.y1cd{bottom:523.365893pt;}
.ybe{bottom:525.280000pt;}
.y7c{bottom:528.320000pt;}
.y12a{bottom:529.600000pt;}
.y1a7{bottom:530.080000pt;}
.y104{bottom:531.200133pt;}
.y152{bottom:533.120000pt;}
.y247{bottom:534.400000pt;}
.y1fc{bottom:534.510720pt;}
.y17c{bottom:536.160133pt;}
.yb{bottom:537.386667pt;}
.y1cc{bottom:541.280133pt;}
.ybd{bottom:542.720000pt;}
.y65{bottom:543.200000pt;}
.y2d{bottom:543.360000pt;}
.y47{bottom:543.360133pt;}
.y78{bottom:549.120000pt;}
.y1a6{bottom:551.200000pt;}
.y103{bottom:552.320000pt;}
.y1fb{bottom:552.424960pt;}
.y276{bottom:552.640000pt;}
.y246{bottom:552.800000pt;}
.y151{bottom:554.240000pt;}
.y226{bottom:556.885120pt;}
.y17b{bottom:557.280000pt;}
.y1cb{bottom:558.720000pt;}
.ybc{bottom:560.320000pt;}
.ydd{bottom:563.040000pt;}
.y129{bottom:564.160000pt;}
.y64{bottom:564.480000pt;}
.y2c{bottom:564.640000pt;}
.y7a{bottom:569.120000pt;}
.y1fa{bottom:570.339200pt;}
.ya{bottom:570.986800pt;}
.y245{bottom:571.200000pt;}
.y1a5{bottom:572.480000pt;}
.y150{bottom:575.520000pt;}
.yba{bottom:577.920000pt;}
.y17a{bottom:578.400000pt;}
.y102{bottom:582.720000pt;}
.ydc{bottom:582.880000pt;}
.y128{bottom:585.280000pt;}
.y63{bottom:585.600000pt;}
.y2b{bottom:585.760000pt;}
.y270{bottom:587.200000pt;}
.y225{bottom:588.091520pt;}
.y1f9{bottom:588.253440pt;}
.y267{bottom:589.600000pt;}
.y9{bottom:592.586667pt;}
.y1ca{bottom:592.960000pt;}
.y1a4{bottom:593.600000pt;}
.y14f{bottom:596.640000pt;}
.y101{bottom:598.080000pt;}
.y179{bottom:599.680000pt;}
.ydb{bottom:602.720000pt;}
.y244{bottom:605.600000pt;}
.y1f8{bottom:606.167680pt;}
.y127{bottom:606.400000pt;}
.y62{bottom:606.720000pt;}
.y2a{bottom:606.880000pt;}
.yb5{bottom:613.760000pt;}
.y1a3{bottom:614.720000pt;}
.y100{bottom:616.960000pt;}
.y14e{bottom:617.760000pt;}
.y178{bottom:620.800000pt;}
.yda{bottom:622.560000pt;}
.y243{bottom:624.000000pt;}
.y1f7{bottom:624.081920pt;}
.y8{bottom:626.186667pt;}
.y126{bottom:627.680000pt;}
.y61{bottom:627.840000pt;}
.y29{bottom:628.000000pt;}
.y190{bottom:628.000133pt;}
.y1c9{bottom:630.400000pt;}
.yb9{bottom:634.243333pt;}
.y1a2{bottom:635.840000pt;}
.y14d{bottom:638.880000pt;}
.y177{bottom:641.920000pt;}
.y1f6{bottom:641.996160pt;}
.yd9{bottom:642.400000pt;}
.y7{bottom:647.786667pt;}
.y77{bottom:648.960000pt;}
.y60{bottom:649.120000pt;}
.y28{bottom:649.280000pt;}
.y46{bottom:649.280133pt;}
.yb8{bottom:651.038853pt;}
.yfe{bottom:651.360000pt;}
.y1a1{bottom:657.120000pt;}
.y242{bottom:658.400000pt;}
.y1f5{bottom:659.910400pt;}
.y266{bottom:660.800000pt;}
.yd8{bottom:662.240000pt;}
.y176{bottom:663.040000pt;}
.y1c8{bottom:664.800000pt;}
.yb7{bottom:668.320133pt;}
.y5f{bottom:670.240000pt;}
.y27{bottom:670.400000pt;}
.y14c{bottom:673.120000pt;}
.y241{bottom:676.800000pt;}
.y1f4{bottom:677.824640pt;}
.y1a0{bottom:678.240000pt;}
.y6{bottom:681.386667pt;}
.yd7{bottom:682.080000pt;}
.y175{bottom:684.638720pt;}
.yfd{bottom:685.760000pt;}
.y1c7{bottom:686.080000pt;}
.y5e{bottom:691.360000pt;}
.y26{bottom:691.520000pt;}
.y240{bottom:695.200000pt;}
.y1f3{bottom:695.591680pt;}
.y125{bottom:696.960000pt;}
.y19f{bottom:699.360000pt;}
.yd6{bottom:701.920000pt;}
.y174{bottom:706.720000pt;}
.y1c6{bottom:707.200000pt;}
.yfc{bottom:707.360000pt;}
.y14b{bottom:707.680000pt;}
.y25{bottom:712.640000pt;}
.y1f2{bottom:713.505920pt;}
.y258{bottom:713.600000pt;}
.y124{bottom:718.080000pt;}
.y19e{bottom:720.480000pt;}
.yd5{bottom:721.760000pt;}
.y14a{bottom:723.200000pt;}
.y5d{bottom:723.360000pt;}
.yfb{bottom:725.760000pt;}
.y173{bottom:728.320000pt;}
.y23f{bottom:729.600000pt;}
.y1f1{bottom:731.420160pt;}
.y265{bottom:732.000000pt;}
.y24{bottom:733.920000pt;}
.yd4{bottom:741.600000pt;}
.y19d{bottom:741.760000pt;}
.y5{bottom:743.520000pt;}
.y5c{bottom:744.320000pt;}
.y23e{bottom:748.000000pt;}
.y1f0{bottom:749.334400pt;}
.y1c5{bottom:749.440000pt;}
.y275{bottom:750.400000pt;}
.y123{bottom:752.640000pt;}
.yad{bottom:754.720000pt;}
.y23{bottom:755.040000pt;}
.yfa{bottom:756.160000pt;}
.y147{bottom:757.760000pt;}
.yd3{bottom:761.600000pt;}
.y172{bottom:762.880000pt;}
.y5b{bottom:765.440000pt;}
.y23d{bottom:766.400000pt;}
.y1ef{bottom:767.248640pt;}
.y121{bottom:767.840000pt;}
.y4{bottom:771.040000pt;}
.yac{bottom:775.840000pt;}
.yf9{bottom:776.000000pt;}
.y22{bottom:776.160000pt;}
.yd2{bottom:781.440000pt;}
.y1c4{bottom:783.680000pt;}
.y171{bottom:784.000000pt;}
.y23c{bottom:784.800000pt;}
.y1ee{bottom:785.162880pt;}
.y5a{bottom:786.720000pt;}
.y122{bottom:788.320000pt;}
.y146{bottom:792.320000pt;}
.yf8{bottom:795.840000pt;}
.y21{bottom:797.280000pt;}
.yd1{bottom:801.280000pt;}
.y1ed{bottom:803.077120pt;}
.y264{bottom:803.200000pt;}
.y170{bottom:805.120000pt;}
.y59{bottom:807.840000pt;}
.yf7{bottom:815.680000pt;}
.y20{bottom:818.240000pt;}
.y45{bottom:818.560000pt;}
.y120{bottom:819.200000pt;}
.y1ec{bottom:820.991360pt;}
.yd0{bottom:821.120000pt;}
.y274{bottom:821.600000pt;}
.y16f{bottom:826.240000pt;}
.y143{bottom:826.720000pt;}
.y58{bottom:828.960000pt;}
.y3{bottom:832.312000pt;}
.y145{bottom:834.880000pt;}
.yf6{bottom:835.520000pt;}
.y23b{bottom:837.600000pt;}
.y1eb{bottom:838.905600pt;}
.y11f{bottom:839.200000pt;}
.y1f{bottom:839.360000pt;}
.y44{bottom:839.680000pt;}
.ycf{bottom:840.960000pt;}
.y16e{bottom:847.520000pt;}
.y57{bottom:850.080000pt;}
.yf5{bottom:855.360000pt;}
.y23a{bottom:856.000000pt;}
.y1ea{bottom:856.819840pt;}
.y11e{bottom:859.200000pt;}
.y1e{bottom:860.480000pt;}
.y43{bottom:860.800000pt;}
.y13e{bottom:865.760000pt;}
.y16d{bottom:868.640000pt;}
.y2{bottom:873.760000pt;}
.y239{bottom:874.400000pt;}
.y1e9{bottom:874.586880pt;}
.yf4{bottom:875.200000pt;}
.y119{bottom:879.360000pt;}
.y1d{bottom:881.600000pt;}
.y42{bottom:881.920000pt;}
.y56{bottom:882.080000pt;}
.y11d{bottom:885.440000pt;}
.y140{bottom:886.880000pt;}
.y16c{bottom:889.760000pt;}
.y26f{bottom:890.400000pt;}
.y1e8{bottom:892.501120pt;}
.yf3{bottom:895.040000pt;}
.y142{bottom:900.160000pt;}
.y41{bottom:903.200000pt;}
.y1c{bottom:906.080000pt;}
.y238{bottom:908.800000pt;}
.y1e7{bottom:910.415360pt;}
.y16b{bottom:910.880000pt;}
.yf2{bottom:914.880000pt;}
.y11b{bottom:918.720000pt;}
.y40{bottom:924.320000pt;}
.y237{bottom:927.200000pt;}
.y1e6{bottom:928.329600pt;}
.y1b{bottom:937.760000pt;}
.y16a{bottom:945.120000pt;}
.yf1{bottom:945.280000pt;}
.y3f{bottom:945.440000pt;}
.y236{bottom:945.600000pt;}
.y1e5{bottom:946.243840pt;}
.y19{bottom:983.997333pt;}
.y18{bottom:1001.101333pt;}
.y17{bottom:1017.101333pt;}
.h15{height:16.800000pt;}
.h16{height:16.960000pt;}
.h1b{height:18.080000pt;}
.h1a{height:18.240000pt;}
.h2a{height:19.040000pt;}
.h1f{height:19.360000pt;}
.h24{height:19.361333pt;}
.h23{height:19.520000pt;}
.hc{height:19.998667pt;}
.hf{height:20.000000pt;}
.h1c{height:33.760000pt;}
.h1d{height:33.761333pt;}
.h28{height:33.918667pt;}
.h14{height:35.200000pt;}
.h17{height:35.360000pt;}
.h19{height:37.120000pt;}
.h18{height:37.121333pt;}
.h27{height:38.400000pt;}
.h21{height:38.718667pt;}
.h20{height:38.720000pt;}
.h8{height:38.828125pt;}
.h2f{height:39.243750pt;}
.h2e{height:40.796250pt;}
.h4{height:42.063437pt;}
.h1{height:48.558750pt;}
.ha{height:50.560000pt;}
.h2b{height:50.720000pt;}
.h26{height:51.198667pt;}
.hd{height:57.787500pt;}
.h22{height:58.880000pt;}
.hb{height:59.340000pt;}
.h5{height:62.781250pt;}
.h7{height:62.812500pt;}
.h1e{height:62.813033pt;}
.h6{height:64.500000pt;}
.h2c{height:65.325000pt;}
.h2d{height:66.403842pt;}
.h3{height:66.404375pt;}
.h9{height:66.404908pt;}
.h30{height:66.750000pt;}
.h25{height:71.093750pt;}
.h12{height:73.516562pt;}
.h13{height:85.920000pt;}
.h29{height:87.840000pt;}
.h2{height:96.750000pt;}
.h11{height:100.114375pt;}
.h10{height:123.360000pt;}
.he{height:185.280000pt;}
.h0{height:1056.000000pt;}
.w1d{width:29.280000pt;}
.w25{width:29.441333pt;}
.w28{width:53.280000pt;}
.w29{width:53.441333pt;}
.w2a{width:59.360000pt;}
.w13{width:71.201333pt;}
.w20{width:75.041333pt;}
.w22{width:77.280000pt;}
.wd{width:77.440000pt;}
.w12{width:78.560000pt;}
.w24{width:80.640000pt;}
.we{width:83.201333pt;}
.w1c{width:84.480000pt;}
.w23{width:89.280000pt;}
.w21{width:91.680000pt;}
.w10{width:94.880000pt;}
.wc{width:102.240000pt;}
.wf{width:106.880000pt;}
.w14{width:107.201333pt;}
.w1b{width:107.358667pt;}
.w19{width:107.360000pt;}
.w1a{width:113.440000pt;}
.w15{width:131.201333pt;}
.w11{width:136.001333pt;}
.w1{width:138.881333pt;}
.w16{width:139.200000pt;}
.w3{width:140.000000pt;}
.w26{width:161.280000pt;}
.w27{width:167.360000pt;}
.w6{width:202.240000pt;}
.wb{width:203.201333pt;}
.w5{width:208.320000pt;}
.w8{width:208.481333pt;}
.wa{width:209.600000pt;}
.w7{width:210.881333pt;}
.w18{width:215.358667pt;}
.w17{width:221.440000pt;}
.w1e{width:245.280000pt;}
.w1f{width:248.640000pt;}
.w2{width:276.320000pt;}
.w9{width:413.441333pt;}
.w4{width:622.721333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.880000pt;}
.x20{left:8.960000pt;}
.x32{left:11.040000pt;}
.x1b{left:16.960000pt;}
.x1d{left:41.760000pt;}
.x1e{left:78.880000pt;}
.x8{left:96.320000pt;}
.x4c{left:97.280000pt;}
.x3f{left:100.320000pt;}
.x6{left:101.600000pt;}
.xb{left:103.520000pt;}
.x2{left:106.080000pt;}
.xa{left:108.160000pt;}
.x34{left:109.120000pt;}
.x16{left:113.162667pt;}
.x37{left:119.360000pt;}
.x13{left:121.440000pt;}
.x3d{left:126.240000pt;}
.x1a{left:129.760000pt;}
.xf{left:131.360000pt;}
.x11{left:133.440000pt;}
.x26{left:141.120000pt;}
.x28{left:144.640000pt;}
.x4{left:148.320000pt;}
.x1c{left:155.040000pt;}
.x40{left:181.600000pt;}
.x15{left:182.560000pt;}
.x4e{left:186.880000pt;}
.x4f{left:193.760000pt;}
.x7{left:211.520000pt;}
.xc{left:213.760000pt;}
.x50{left:216.960000pt;}
.x46{left:218.720000pt;}
.x19{left:223.360000pt;}
.x4d{left:228.640000pt;}
.x18{left:234.880000pt;}
.x2d{left:239.040000pt;}
.x3{left:242.232000pt;}
.x14{left:244.000000pt;}
.x29{left:247.520000pt;}
.x36{left:259.520000pt;}
.x39{left:266.080000pt;}
.x10{left:268.800000pt;}
.x52{left:270.880000pt;}
.x57{left:277.760000pt;}
.x42{left:287.520000pt;}
.xd{left:288.480000pt;}
.x47{left:294.400000pt;}
.x27{left:299.360000pt;}
.xe{left:301.440000pt;}
.x23{left:305.600000pt;}
.x5{left:312.000000pt;}
.x12{left:315.200000pt;}
.x2e{left:318.400000pt;}
.x2a{left:325.600000pt;}
.x58{left:331.840000pt;}
.x3a{left:367.200000pt;}
.x51{left:378.880000pt;}
.x43{left:379.840000pt;}
.x9{left:382.560000pt;}
.x59{left:385.760000pt;}
.x48{left:386.720000pt;}
.x2f{left:390.400000pt;}
.x35{left:400.480000pt;}
.x1{left:404.160000pt;}
.x17{left:408.000000pt;}
.x2b{left:409.440000pt;}
.x53{left:432.960000pt;}
.x5a{left:439.840000pt;}
.x41{left:457.920000pt;}
.x49{left:464.800000pt;}
.x30{left:474.400000pt;}
.x38{left:481.280000pt;}
.x54{left:486.880000pt;}
.x3b{left:488.160000pt;}
.x5b{left:493.760000pt;}
.x24{left:508.480000pt;}
.x25{left:516.160000pt;}
.x22{left:517.600000pt;}
.x44{left:535.840000pt;}
.x4a{left:542.720000pt;}
.x1f{left:546.240000pt;}
.x5c{left:553.760000pt;}
.x31{left:582.400000pt;}
.x33{left:589.120000pt;}
.x3c{left:596.160000pt;}
.x55{left:600.960000pt;}
.x5d{left:607.840000pt;}
.x2c{left:612.480000pt;}
.x45{left:625.920000pt;}
.x4b{left:632.800000pt;}
.x56{left:654.880000pt;}
.x5e{left:661.760000pt;}
.x3e{left:720.000000pt;}
}




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