
    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_007deb127eb7bc8848cb0ddb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_3b3dd0306167ee40fef6240e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_9d7f4686f7c36e93d4125cfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2b1b7635bf6866959a0089c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5879ca5bff3bf1e95bae049b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934000;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_adfa4ccee25da09082a6bb60.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.115000;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_718fa3bbcf88b186cceebaac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.023000;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_0514dd634f0c449455162ed9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_433913fdce17a83c215fc4ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffb{font-family:ffb;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);}
.m2{transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258334,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.ls4b{letter-spacing:-2.664000px;}
.ls4a{letter-spacing:-1.512000px;}
.ls49{letter-spacing:-1.296000px;}
.ls80{letter-spacing:-1.260000px;}
.ls20{letter-spacing:-1.224000px;}
.ls7f{letter-spacing:-0.960000px;}
.ls4e{letter-spacing:-0.864000px;}
.ls69{letter-spacing:-0.594000px;}
.ls12{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.540000px;}
.ls81{letter-spacing:-0.528000px;}
.ls11{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.480000px;}
.ls67{letter-spacing:-0.462000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.420000px;}
.ls65{letter-spacing:-0.396000px;}
.ls17{letter-spacing:-0.360000px;}
.ls5d{letter-spacing:-0.330000px;}
.ls16{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls68{letter-spacing:-0.264000px;}
.ls19{letter-spacing:-0.216000px;}
.ls5e{letter-spacing:-0.198000px;}
.lsf{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.144000px;}
.ls6b{letter-spacing:-0.132000px;}
.ls48{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls82{letter-spacing:-0.066000px;}
.ls78{letter-spacing:-0.060000px;}
.lsd{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.050400px;}
.ls32{letter-spacing:0.060000px;}
.ls6a{letter-spacing:0.066000px;}
.ls28{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.084000px;}
.lsc{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.288000px;}
.ls76{letter-spacing:0.300000px;}
.ls61{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls5f{letter-spacing:0.396000px;}
.ls59{letter-spacing:0.403200px;}
.ls5a{letter-spacing:0.417600px;}
.ls54{letter-spacing:0.420000px;}
.ls2a{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.460800px;}
.ls60{letter-spacing:0.462000px;}
.ls3b{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.482400px;}
.ls8{letter-spacing:0.504000px;}
.ls64{letter-spacing:0.528000px;}
.ls26{letter-spacing:0.532800px;}
.ls35{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.547200px;}
.ls38{letter-spacing:0.568800px;}
.ls2d{letter-spacing:0.576000px;}
.ls29{letter-spacing:0.583200px;}
.ls6f{letter-spacing:0.590400px;}
.ls62{letter-spacing:0.594000px;}
.ls33{letter-spacing:0.600000px;}
.ls56{letter-spacing:0.727200px;}
.ls74{letter-spacing:0.774000px;}
.ls71{letter-spacing:0.780000px;}
.ls5b{letter-spacing:0.900000px;}
.ls5c{letter-spacing:0.924000px;}
.ls63{letter-spacing:0.990000px;}
.ls7{letter-spacing:1.152000px;}
.ls72{letter-spacing:1.194000px;}
.ls75{letter-spacing:1.200000px;}
.ls9{letter-spacing:1.224000px;}
.ls66{letter-spacing:1.254000px;}
.ls25{letter-spacing:1.368000px;}
.ls77{letter-spacing:1.500000px;}
.ls6d{letter-spacing:1.656000px;}
.ls2c{letter-spacing:2.376000px;}
.ls2b{letter-spacing:3.600000px;}
.ls7d{letter-spacing:4.380000px;}
.ls23{letter-spacing:4.824000px;}
.ls7c{letter-spacing:5.580000px;}
.ls22{letter-spacing:5.976000px;}
.ls7a{letter-spacing:6.780000px;}
.ls39{letter-spacing:7.200000px;}
.lsa{letter-spacing:9.576000px;}
.ls4c{letter-spacing:10.800000px;}
.ls3c{letter-spacing:11.952000px;}
.ls1f{letter-spacing:14.400000px;}
.ls42{letter-spacing:15.523200px;}
.ls6c{letter-spacing:15.624000px;}
.lsb{letter-spacing:16.624800px;}
.ls4d{letter-spacing:18.000000px;}
.ls24{letter-spacing:19.152000px;}
.ls7b{letter-spacing:22.380000px;}
.ls70{letter-spacing:22.920000px;}
.ls36{letter-spacing:27.576000px;}
.ls79{letter-spacing:35.580000px;}
.ls7e{letter-spacing:37.980000px;}
.ls73{letter-spacing:45.720000px;}
.ls6e{letter-spacing:54.360000px;}
.ls3d{letter-spacing:55.224000px;}
.ls55{letter-spacing:63.648000px;}
.ls30{letter-spacing:95.952000px;}
.ls2e{letter-spacing:97.152000px;}
.ls2f{letter-spacing:99.552000px;}
.ls58{letter-spacing:102.420000px;}
.ls57{letter-spacing:120.024000px;}
.ls51{letter-spacing:127.200000px;}
.ls53{letter-spacing:128.352000px;}
.ls31{letter-spacing:139.176000px;}
.ls52{letter-spacing:143.952000px;}
.ls3e{letter-spacing:158.760000px;}
.ls50{letter-spacing:235.200000px;}
.ls4f{letter-spacing:285.600000px;}
.ls45{letter-spacing:375.600000px;}
.ls47{letter-spacing:396.000000px;}
.ls44{letter-spacing:414.000000px;}
.ls3{letter-spacing:503.580000px;}
.ls46{letter-spacing:555.180000px;}
.ls43{letter-spacing:570.780000px;}
.ls41{letter-spacing:675.180000px;}
.ls40{letter-spacing:717.180000px;}
.ls3f{letter-spacing:733.980000px;}
.ls2{letter-spacing:765.180000px;}
.ls1{letter-spacing:846.780000px;}
.ls21{letter-spacing:1278.780000px;}
.ls0{letter-spacing:1397.580000px;}
.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;}
}
.ws3{word-spacing:-19.584000px;}
.wsb{word-spacing:-19.512000px;}
.ws4{word-spacing:-19.224000px;}
.wsd{word-spacing:-19.152000px;}
.ws34{word-spacing:-19.008000px;}
.ws33{word-spacing:-18.936000px;}
.ws36{word-spacing:-18.792000px;}
.ws6f{word-spacing:-18.720000px;}
.ws35{word-spacing:-18.648000px;}
.ws76{word-spacing:-18.576000px;}
.ws2{word-spacing:-18.216000px;}
.wsc5{word-spacing:-18.150000px;}
.wsc4{word-spacing:-18.018000px;}
.ws78{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws75{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.640000px;}
.wsc3{word-spacing:-17.622000px;}
.ws10b{word-spacing:-17.358000px;}
.wsc8{word-spacing:-17.292000px;}
.wsc6{word-spacing:-17.226000px;}
.wsc7{word-spacing:-17.160000px;}
.ws10a{word-spacing:-17.094000px;}
.wsb8{word-spacing:-16.920000px;}
.ws6e{word-spacing:-16.560000px;}
.ws90{word-spacing:-16.500000px;}
.ws108{word-spacing:-16.380000px;}
.ws109{word-spacing:-16.368000px;}
.wse5{word-spacing:-16.320000px;}
.ws91{word-spacing:-16.260000px;}
.ws32{word-spacing:-16.200000px;}
.ws8f{word-spacing:-16.080000px;}
.ws6{word-spacing:-16.020000px;}
.wse6{word-spacing:-15.960000px;}
.ws1{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.720000px;}
.ws7{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws5{word-spacing:-15.480000px;}
.wsae{word-spacing:-15.420000px;}
.wsad{word-spacing:-14.760000px;}
.ws8e{word-spacing:-14.700000px;}
.ws92{word-spacing:-14.640000px;}
.ws2e{word-spacing:-14.400000px;}
.wsbd{word-spacing:-5.184000px;}
.wsbc{word-spacing:-5.040000px;}
.wsb9{word-spacing:-4.752000px;}
.ws62{word-spacing:-4.680000px;}
.ws63{word-spacing:-4.464000px;}
.wsbb{word-spacing:-4.248000px;}
.ws100{word-spacing:-4.080000px;}
.wse4{word-spacing:-3.888000px;}
.ws52{word-spacing:-3.816000px;}
.wsba{word-spacing:-3.312000px;}
.ws84{word-spacing:-3.168000px;}
.wsa2{word-spacing:-3.096000px;}
.ws4a{word-spacing:-3.024000px;}
.ws22{word-spacing:-2.736000px;}
.ws23{word-spacing:-2.376000px;}
.ws9c{word-spacing:-2.088000px;}
.ws9b{word-spacing:-2.016000px;}
.ws3e{word-spacing:-1.872000px;}
.wsf8{word-spacing:-1.740000px;}
.ws71{word-spacing:-1.584000px;}
.wsff{word-spacing:-1.500000px;}
.ws47{word-spacing:-1.440000px;}
.wsfa{word-spacing:-1.320000px;}
.wsb6{word-spacing:-1.224000px;}
.wsce{word-spacing:-1.188000px;}
.wsb3{word-spacing:-1.152000px;}
.wsf7{word-spacing:-1.140000px;}
.ws46{word-spacing:-0.936000px;}
.wsd5{word-spacing:-0.924000px;}
.wsf9{word-spacing:-0.900000px;}
.wsd7{word-spacing:-0.858000px;}
.ws30{word-spacing:-0.792000px;}
.ws5e{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.660000px;}
.ws5f{word-spacing:-0.648000px;}
.wsab{word-spacing:-0.576000px;}
.wse{word-spacing:-0.540000px;}
.ws70{word-spacing:-0.480000px;}
.wscd{word-spacing:-0.462000px;}
.ws10{word-spacing:-0.420000px;}
.wsd0{word-spacing:-0.396000px;}
.ws18{word-spacing:-0.360000px;}
.wsd1{word-spacing:-0.330000px;}
.wse9{word-spacing:-0.300000px;}
.ws2b{word-spacing:-0.288000px;}
.wsca{word-spacing:-0.264000px;}
.ws11{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.168000px;}
.ws29{word-spacing:-0.144000px;}
.wsea{word-spacing:-0.120000px;}
.ws4f{word-spacing:-0.072000px;}
.wscb{word-spacing:-0.066000px;}
.ws74{word-spacing:-0.060000px;}
.wsf{word-spacing:0.000000px;}
.ws1a{word-spacing:0.060000px;}
.wscc{word-spacing:0.066000px;}
.ws2d{word-spacing:0.072000px;}
.ws110{word-spacing:0.120000px;}
.wsd6{word-spacing:0.132000px;}
.ws73{word-spacing:0.144000px;}
.ws105{word-spacing:0.180000px;}
.wscf{word-spacing:0.198000px;}
.ws21{word-spacing:0.216000px;}
.ws98{word-spacing:0.240000px;}
.ws15{word-spacing:0.252000px;}
.ws121{word-spacing:0.264000px;}
.ws57{word-spacing:0.288000px;}
.ws1b{word-spacing:0.300000px;}
.wsd3{word-spacing:0.330000px;}
.ws14{word-spacing:0.336000px;}
.ws2a{word-spacing:0.360000px;}
.ws2c{word-spacing:0.432000px;}
.wsc9{word-spacing:0.462000px;}
.wse8{word-spacing:0.480000px;}
.ws16{word-spacing:0.504000px;}
.wsd8{word-spacing:0.528000px;}
.wsb0{word-spacing:0.540000px;}
.ws17{word-spacing:0.576000px;}
.wsac{word-spacing:0.720000px;}
.wsa9{word-spacing:0.792000px;}
.wsaf{word-spacing:0.840000px;}
.ws7a{word-spacing:0.864000px;}
.ws97{word-spacing:0.900000px;}
.ws60{word-spacing:0.936000px;}
.wsb1{word-spacing:0.960000px;}
.wsd4{word-spacing:0.990000px;}
.wsd2{word-spacing:1.188000px;}
.ws106{word-spacing:1.200000px;}
.ws2f{word-spacing:1.224000px;}
.wsfb{word-spacing:1.260000px;}
.ws79{word-spacing:1.440000px;}
.ws66{word-spacing:1.512000px;}
.ws4e{word-spacing:1.584000px;}
.ws1c{word-spacing:1.728000px;}
.wsee{word-spacing:1.860000px;}
.ws69{word-spacing:2.160000px;}
.wsef{word-spacing:2.280000px;}
.wsb5{word-spacing:2.448000px;}
.wsed{word-spacing:2.460000px;}
.wsa1{word-spacing:2.808000px;}
.wsa0{word-spacing:2.880000px;}
.wsf6{word-spacing:2.940000px;}
.ws20{word-spacing:2.952000px;}
.wsa4{word-spacing:3.240000px;}
.ws5c{word-spacing:3.312000px;}
.ws3b{word-spacing:3.384000px;}
.ws120{word-spacing:3.564000px;}
.wse7{word-spacing:3.660000px;}
.ws50{word-spacing:3.672000px;}
.ws9f{word-spacing:3.816000px;}
.ws59{word-spacing:3.888000px;}
.ws11f{word-spacing:3.960000px;}
.ws3a{word-spacing:4.032000px;}
.ws5d{word-spacing:4.104000px;}
.wsf2{word-spacing:4.140000px;}
.ws27{word-spacing:4.176000px;}
.ws107{word-spacing:4.320000px;}
.ws5b{word-spacing:4.536000px;}
.wsf1{word-spacing:4.680000px;}
.wsf0{word-spacing:4.860000px;}
.ws95{word-spacing:4.968000px;}
.wsda{word-spacing:5.184000px;}
.ws67{word-spacing:5.256000px;}
.ws40{word-spacing:5.328000px;}
.ws39{word-spacing:5.760000px;}
.ws82{word-spacing:5.976000px;}
.ws113{word-spacing:6.000000px;}
.ws83{word-spacing:6.048000px;}
.ws114{word-spacing:6.060000px;}
.ws7f{word-spacing:6.408000px;}
.ws10f{word-spacing:6.540000px;}
.ws1d{word-spacing:6.552000px;}
.ws88{word-spacing:6.840000px;}
.ws64{word-spacing:6.912000px;}
.ws6b{word-spacing:6.984000px;}
.wsf4{word-spacing:7.200000px;}
.wsf3{word-spacing:7.260000px;}
.ws65{word-spacing:7.272000px;}
.wsbe{word-spacing:7.704000px;}
.ws104{word-spacing:7.740000px;}
.ws56{word-spacing:7.776000px;}
.wsa6{word-spacing:7.992000px;}
.wse0{word-spacing:8.064000px;}
.ws51{word-spacing:8.136000px;}
.ws80{word-spacing:8.424000px;}
.wsec{word-spacing:8.460000px;}
.ws81{word-spacing:8.568000px;}
.ws53{word-spacing:8.640000px;}
.wsb4{word-spacing:8.784000px;}
.ws38{word-spacing:8.928000px;}
.wsf5{word-spacing:8.940000px;}
.ws6c{word-spacing:9.216000px;}
.ws24{word-spacing:9.288000px;}
.ws1e{word-spacing:9.360000px;}
.ws58{word-spacing:9.648000px;}
.wseb{word-spacing:9.660000px;}
.ws89{word-spacing:9.864000px;}
.ws6d{word-spacing:10.008000px;}
.ws1f{word-spacing:10.152000px;}
.ws49{word-spacing:10.584000px;}
.ws54{word-spacing:10.872000px;}
.ws41{word-spacing:11.232000px;}
.ws37{word-spacing:11.376000px;}
.ws8c{word-spacing:11.664000px;}
.ws8a{word-spacing:11.736000px;}
.ws3f{word-spacing:12.024000px;}
.ws8b{word-spacing:12.456000px;}
.ws93{word-spacing:12.528000px;}
.ws25{word-spacing:12.960000px;}
.ws115{word-spacing:13.260000px;}
.wsb7{word-spacing:13.392000px;}
.ws5a{word-spacing:13.608000px;}
.wsfd{word-spacing:13.740000px;}
.ws26{word-spacing:13.752000px;}
.ws11e{word-spacing:14.322000px;}
.wsfe{word-spacing:14.460000px;}
.wsaa{word-spacing:14.472000px;}
.ws96{word-spacing:14.832000px;}
.ws11d{word-spacing:14.850000px;}
.ws48{word-spacing:14.976000px;}
.wsdd{word-spacing:15.624000px;}
.ws99{word-spacing:15.768000px;}
.wsb2{word-spacing:15.840000px;}
.wsa3{word-spacing:15.912000px;}
.ws31{word-spacing:15.984000px;}
.ws68{word-spacing:16.128000px;}
.ws4c{word-spacing:16.560000px;}
.wsde{word-spacing:17.064000px;}
.ws72{word-spacing:17.208000px;}
.ws4d{word-spacing:17.352000px;}
.wsa5{word-spacing:17.640000px;}
.ws10c{word-spacing:18.060000px;}
.ws9e{word-spacing:18.432000px;}
.ws119{word-spacing:18.540000px;}
.ws61{word-spacing:18.576000px;}
.ws43{word-spacing:18.936000px;}
.ws42{word-spacing:19.224000px;}
.ws118{word-spacing:19.260000px;}
.ws44{word-spacing:19.728000px;}
.ws28{word-spacing:20.088000px;}
.ws85{word-spacing:20.448000px;}
.ws86{word-spacing:20.592000px;}
.wsbf{word-spacing:20.808000px;}
.ws11b{word-spacing:20.940000px;}
.ws55{word-spacing:20.952000px;}
.ws11c{word-spacing:21.480000px;}
.ws102{word-spacing:21.600000px;}
.ws103{word-spacing:21.660000px;}
.wsa8{word-spacing:21.672000px;}
.ws94{word-spacing:22.176000px;}
.ws4b{word-spacing:22.824000px;}
.ws111{word-spacing:22.860000px;}
.wsdf{word-spacing:23.184000px;}
.ws6a{word-spacing:23.328000px;}
.wsd9{word-spacing:23.760000px;}
.wsc2{word-spacing:24.408000px;}
.wsc1{word-spacing:24.552000px;}
.wsa7{word-spacing:24.984000px;}
.ws87{word-spacing:25.272000px;}
.ws45{word-spacing:25.776000px;}
.ws9d{word-spacing:26.136000px;}
.wsc0{word-spacing:26.424000px;}
.ws7e{word-spacing:26.784000px;}
.ws7d{word-spacing:26.928000px;}
.wsdc{word-spacing:30.960000px;}
.wsdb{word-spacing:31.752000px;}
.ws3d{word-spacing:33.624000px;}
.ws3c{word-spacing:34.128000px;}
.ws10d{word-spacing:35.340000px;}
.ws10e{word-spacing:36.060000px;}
.wse2{word-spacing:37.224000px;}
.ws101{word-spacing:37.260000px;}
.ws11a{word-spacing:38.460000px;}
.wse3{word-spacing:44.136000px;}
.wse1{word-spacing:46.008000px;}
.ws9a{word-spacing:52.848000px;}
.ws7b{word-spacing:52.920000px;}
.ws7c{word-spacing:53.352000px;}
.ws8d{word-spacing:56.952000px;}
.ws77{word-spacing:69.242400px;}
.ws112{word-spacing:74.460000px;}
.ws116{word-spacing:94.860000px;}
.ws117{word-spacing:139.260000px;}
.wsfc{word-spacing:187.260000px;}
._2c{margin-left:-121.176000px;}
._2e{margin-left:-103.872000px;}
._33{margin-left:-102.480000px;}
._20{margin-left:-87.264000px;}
._26{margin-left:-81.576000px;}
._27{margin-left:-64.440000px;}
._1f{margin-left:-63.410400px;}
._25{margin-left:-59.976000px;}
._32{margin-left:-41.976000px;}
._b{margin-left:-15.028800px;}
._d{margin-left:-13.797600px;}
._c{margin-left:-12.763200px;}
._42{margin-left:-8.820000px;}
._35{margin-left:-5.023200px;}
._34{margin-left:-3.732000px;}
._5{margin-left:-2.454000px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._6{width:2.484000px;}
._16{width:4.032000px;}
._f{width:5.748000px;}
._e{width:6.868800px;}
._7{width:8.862000px;}
._8{width:10.742400px;}
._9{width:11.745600px;}
._30{width:13.680000px;}
._a{width:15.292800px;}
._13{width:16.308000px;}
._12{width:18.184800px;}
._10{width:21.002400px;}
._11{width:22.010400px;}
._2a{width:23.256000px;}
._40{width:24.300000px;}
._29{width:25.704000px;}
._41{width:31.824000px;}
._1e{width:33.444000px;}
._1d{width:46.416000px;}
._1b{width:48.228000px;}
._1c{width:50.016000px;}
._21{width:63.648000px;}
._43{width:74.136000px;}
._36{width:86.928000px;}
._28{width:100.800000px;}
._2f{width:103.248000px;}
._24{width:107.712000px;}
._17{width:121.980000px;}
._31{width:127.884000px;}
._2d{width:139.248000px;}
._2b{width:162.378000px;}
._38{width:196.848294px;}
._39{width:198.008295px;}
._1a{width:209.712000px;}
._18{width:210.912000px;}
._19{width:213.312000px;}
._3f{width:215.418278px;}
._3b{width:232.818294px;}
._3c{width:233.978295px;}
._3a{width:550.033047px;}
._22{width:560.316000px;}
._23{width:579.936000px;}
._3e{width:681.414927px;}
._3d{width:740.466842px;}
._3{width:765.900000px;}
._37{width:776.992809px;}
._15{width:808.860000px;}
._4{width:821.580000px;}
._2{width:1005.420000px;}
._14{width:1217.760000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.ye8{bottom:4.200000px;}
.y7{bottom:5.100000px;}
.ya{bottom:6.000000px;}
.y19d{bottom:13.500000px;}
.y9a{bottom:13.800000px;}
.y7f{bottom:14.100000px;}
.yf7{bottom:14.101500px;}
.yea{bottom:17.100000px;}
.yf6{bottom:17.101500px;}
.y105{bottom:20.400000px;}
.ya2{bottom:20.700000px;}
.y106{bottom:23.400000px;}
.ya0{bottom:23.700000px;}
.yd8{bottom:28.500000px;}
.y83{bottom:37.200000px;}
.y81{bottom:37.500000px;}
.y9c{bottom:60.600000px;}
.y4{bottom:67.800000px;}
.y152{bottom:81.900000px;}
.y64{bottom:97.212000px;}
.ye5{bottom:99.918000px;}
.y1e2{bottom:101.100000px;}
.y175{bottom:101.166000px;}
.y19b{bottom:106.218000px;}
.y14c{bottom:108.600000px;}
.ycd{bottom:108.660000px;}
.y1c0{bottom:111.018000px;}
.y101{bottom:114.006000px;}
.y7d{bottom:114.348000px;}
.y12b{bottom:118.842000px;}
.y34{bottom:119.400000px;}
.y1e1{bottom:120.600000px;}
.y63{bottom:120.612000px;}
.ye4{bottom:123.318000px;}
.y174{bottom:124.260000px;}
.y215{bottom:125.700000px;}
.ycc{bottom:131.754000px;}
.y14b{bottom:132.000000px;}
.y1bf{bottom:134.418000px;}
.ya8{bottom:136.500000px;}
.y100{bottom:137.406000px;}
.y7c{bottom:137.748000px;}
.y19a{bottom:138.312000px;}
.y1e0{bottom:139.200000px;}
.y12a{bottom:142.242000px;}
.y33{bottom:142.800000px;}
.y62{bottom:143.706000px;}
.y214{bottom:145.200000px;}
.ye3{bottom:146.718000px;}
.ya7{bottom:153.300000px;}
.ycb{bottom:155.154000px;}
.y173{bottom:156.354000px;}
.y1df{bottom:156.684000px;}
.y1be{bottom:157.818000px;}
.yff{bottom:160.806000px;}
.y7b{bottom:161.148000px;}
.y199{bottom:161.712000px;}
.y213{bottom:164.400000px;}
.y129{bottom:165.642000px;}
.y32{bottom:166.200000px;}
.y61{bottom:167.106000px;}
.y14a{bottom:169.800000px;}
.ye2{bottom:169.812000px;}
.y23e{bottom:175.200000px;}
.yca{bottom:178.248000px;}
.y172{bottom:179.754000px;}
.yfe{bottom:183.900000px;}
.y7a{bottom:184.242000px;}
.y198{bottom:185.112000px;}
.y149{bottom:186.600000px;}
.ya6{bottom:187.200000px;}
.y31{bottom:187.500000px;}
.y128{bottom:189.042000px;}
.y1bd{bottom:189.912000px;}
.y60{bottom:190.200000px;}
.y1de{bottom:191.478000px;}
.ye1{bottom:193.212000px;}
.y23d{bottom:196.800000px;}
.yc9{bottom:201.648000px;}
.y171{bottom:203.154000px;}
.y212{bottom:203.400000px;}
.y30{bottom:204.924000px;}
.yfd{bottom:205.500000px;}
.y79{bottom:207.642000px;}
.y197{bottom:208.512000px;}
.y127{bottom:212.136000px;}
.y1bc{bottom:213.312000px;}
.y5f{bottom:213.600000px;}
.ye0{bottom:216.612000px;}
.y23c{bottom:216.900000px;}
.y1dd{bottom:217.578000px;}
.ya5{bottom:219.600000px;}
.y148{bottom:220.200000px;}
.yfc{bottom:222.000000px;}
.y211{bottom:222.900000px;}
.yc8{bottom:225.048000px;}
.y170{bottom:226.554000px;}
.y2f{bottom:228.324000px;}
.y78{bottom:231.042000px;}
.y196{bottom:231.606000px;}
.y23b{bottom:233.697000px;}
.y5e{bottom:233.700000px;}
.y126{bottom:235.536000px;}
.y1bb{bottom:236.712000px;}
.yfb{bottom:238.500000px;}
.ydf{bottom:239.706000px;}
.y1dc{bottom:240.978000px;}
.y210{bottom:242.100000px;}
.y5d{bottom:244.884000px;}
.yc7{bottom:248.142000px;}
.y2e{bottom:251.418000px;}
.ya3{bottom:251.700000px;}
.y147{bottom:252.600000px;}
.y77{bottom:254.136000px;}
.y23a{bottom:254.998500px;}
.y195{bottom:255.006000px;}
.y16f{bottom:258.648000px;}
.y125{bottom:258.936000px;}
.y1ba{bottom:259.806000px;}
.y20f{bottom:261.600000px;}
.yde{bottom:263.106000px;}
.y1db{bottom:264.378000px;}
.ya4{bottom:265.800000px;}
.y5c{bottom:267.978000px;}
.yc6{bottom:271.542000px;}
.y2d{bottom:274.818000px;}
.y239{bottom:276.300000px;}
.y76{bottom:277.536000px;}
.y194{bottom:278.406000px;}
.y20e{bottom:281.100000px;}
.y124{bottom:282.030000px;}
.y16e{bottom:282.048000px;}
.y1b9{bottom:283.206000px;}
.y146{bottom:286.500000px;}
.ydd{bottom:286.506000px;}
.y1da{bottom:287.778000px;}
.yfa{bottom:289.500000px;}
.y5b{bottom:291.378000px;}
.yc5{bottom:294.942000px;}
.y2c{bottom:297.912000px;}
.y20d{bottom:300.300000px;}
.y75{bottom:300.936000px;}
.y193{bottom:301.500000px;}
.y238{bottom:302.100000px;}
.yf9{bottom:304.800000px;}
.y123{bottom:305.430000px;}
.y16d{bottom:305.448000px;}
.y1b8{bottom:306.300000px;}
.y9f{bottom:307.200000px;}
.ydc{bottom:309.600000px;}
.y1d9{bottom:310.872000px;}
.ya1{bottom:311.400000px;}
.y5a{bottom:314.778000px;}
.yc4{bottom:318.036000px;}
.y20c{bottom:319.800000px;}
.y2b{bottom:321.312000px;}
.y145{bottom:321.366000px;}
.y74{bottom:324.030000px;}
.y192{bottom:324.900000px;}
.y16c{bottom:328.542000px;}
.y122{bottom:328.830000px;}
.y1b7{bottom:329.700000px;}
.ydb{bottom:333.000000px;}
.y1d8{bottom:334.272000px;}
.y59{bottom:337.872000px;}
.y20b{bottom:339.300000px;}
.yc3{bottom:341.436000px;}
.y2a{bottom:344.712000px;}
.y237{bottom:344.998500px;}
.y9b{bottom:346.200000px;}
.y191{bottom:346.500000px;}
.y73{bottom:347.430000px;}
.y121{bottom:351.924000px;}
.y1b6{bottom:353.100000px;}
.y144{bottom:353.766000px;}
.yf8{bottom:354.000000px;}
.yda{bottom:354.600000px;}
.y1d7{bottom:357.366000px;}
.y20a{bottom:358.500000px;}
.y9e{bottom:360.000000px;}
.y16b{bottom:360.942000px;}
.y58{bottom:361.272000px;}
.y190{bottom:362.700000px;}
.yc2{bottom:364.836000px;}
.y236{bottom:366.300000px;}
.yd7{bottom:366.600000px;}
.y29{bottom:367.806000px;}
.yf5{bottom:369.298500px;}
.y72{bottom:370.524000px;}
.yd9{bottom:371.700000px;}
.y120{bottom:375.324000px;}
.y209{bottom:378.000000px;}
.y18f{bottom:379.500000px;}
.y1d6{bottom:380.766000px;}
.y9d{bottom:383.400000px;}
.y16a{bottom:384.342000px;}
.y57{bottom:384.366000px;}
.y143{bottom:385.860000px;}
.y235{bottom:386.400000px;}
.y1b5{bottom:387.300000px;}
.yc1{bottom:387.930000px;}
.y28{bottom:391.206000px;}
.y71{bottom:393.924000px;}
.y208{bottom:397.500000px;}
.y11f{bottom:398.724000px;}
.yf3{bottom:401.700000px;}
.y234{bottom:402.900000px;}
.y1b4{bottom:404.100000px;}
.y1d5{bottom:404.166000px;}
.y169{bottom:407.436000px;}
.y56{bottom:407.766000px;}
.y142{bottom:409.260000px;}
.yc0{bottom:411.330000px;}
.y18d{bottom:411.900000px;}
.yd6{bottom:413.400000px;}
.y27{bottom:414.606000px;}
.yf4{bottom:415.500000px;}
.y207{bottom:417.000000px;}
.y70{bottom:417.324000px;}
.y11e{bottom:421.818000px;}
.y233{bottom:422.400000px;}
.y99{bottom:425.100000px;}
.y18e{bottom:425.700000px;}
.y1d4{bottom:427.260000px;}
.y168{bottom:430.836000px;}
.y55{bottom:431.166000px;}
.y141{bottom:432.660000px;}
.yf2{bottom:433.800000px;}
.y1b3{bottom:434.400000px;}
.ybf{bottom:434.424000px;}
.y206{bottom:436.200000px;}
.y26{bottom:437.700000px;}
.y6f{bottom:440.418000px;}
.y232{bottom:441.000000px;}
.y11d{bottom:445.218000px;}
.y1d3{bottom:450.660000px;}
.y167{bottom:454.236000px;}
.y54{bottom:454.260000px;}
.y205{bottom:455.700000px;}
.y140{bottom:456.060000px;}
.y231{bottom:457.200000px;}
.ybe{bottom:457.824000px;}
.y98{bottom:458.700000px;}
.y25{bottom:461.100000px;}
.y6e{bottom:463.818000px;}
.yf0{bottom:466.200000px;}
.y11c{bottom:468.312000px;}
.y18b{bottom:468.900000px;}
.y1d2{bottom:474.060000px;}
.y204{bottom:475.200000px;}
.y230{bottom:476.700000px;}
.y53{bottom:477.660000px;}
.y1b2{bottom:478.500000px;}
.y13f{bottom:479.154000px;}
.yf1{bottom:480.000000px;}
.ybd{bottom:481.224000px;}
.y24{bottom:482.700000px;}
.y18c{bottom:483.000000px;}
.y166{bottom:486.330000px;}
.y6d{bottom:487.218000px;}
.y11b{bottom:491.712000px;}
.y203{bottom:494.400000px;}
.y1b1{bottom:495.300000px;}
.y22f{bottom:496.200000px;}
.y1d1{bottom:497.154000px;}
.yef{bottom:498.300000px;}
.y23{bottom:499.800000px;}
.y52{bottom:501.060000px;}
.y13e{bottom:502.554000px;}
.ybc{bottom:504.318000px;}
.y97{bottom:506.712000px;}
.y165{bottom:509.730000px;}
.y6c{bottom:510.312000px;}
.y202{bottom:513.900000px;}
.y11a{bottom:515.112000px;}
.y22e{bottom:515.400000px;}
.y18a{bottom:516.630000px;}
.y1d0{bottom:520.554000px;}
.y22{bottom:521.400000px;}
.y51{bottom:524.154000px;}
.y1b0{bottom:525.600000px;}
.ybb{bottom:527.718000px;}
.yee{bottom:530.700000px;}
.y164{bottom:532.824000px;}
.y201{bottom:533.400000px;}
.y6b{bottom:533.712000px;}
.y13d{bottom:534.648000px;}
.y22d{bottom:534.900000px;}
.y119{bottom:538.206000px;}
.y96{bottom:538.806000px;}
.y21{bottom:538.824000px;}
.y1cf{bottom:543.954000px;}
.y50{bottom:547.554000px;}
.y189{bottom:549.030000px;}
.yba{bottom:551.118000px;}
.y200{bottom:552.600000px;}
.y22c{bottom:554.400000px;}
.y1af{bottom:555.900000px;}
.y163{bottom:556.224000px;}
.y6a{bottom:557.112000px;}
.y13c{bottom:558.048000px;}
.y118{bottom:561.606000px;}
.y20{bottom:561.918000px;}
.yed{bottom:563.100000px;}
.y1ce{bottom:567.048000px;}
.y4f{bottom:570.954000px;}
.y95{bottom:571.206000px;}
.y1ff{bottom:572.100000px;}
.y22b{bottom:573.900000px;}
.yb9{bottom:574.212000px;}
.y162{bottom:579.624000px;}
.y69{bottom:580.206000px;}
.y188{bottom:581.430000px;}
.y13b{bottom:581.448000px;}
.y117{bottom:585.006000px;}
.y1f{bottom:585.318000px;}
.y1cd{bottom:590.448000px;}
.y1fe{bottom:591.600000px;}
.y22a{bottom:593.100000px;}
.y4e{bottom:594.048000px;}
.y94{bottom:594.606000px;}
.yec{bottom:595.200000px;}
.yb8{bottom:597.612000px;}
.y1ae{bottom:599.700000px;}
.y68{bottom:603.606000px;}
.y187{bottom:604.830000px;}
.y13a{bottom:604.848000px;}
.y116{bottom:608.100000px;}
.y1e{bottom:608.718000px;}
.y1fd{bottom:611.100000px;}
.y161{bottom:611.718000px;}
.y229{bottom:612.600000px;}
.y1cc{bottom:613.848000px;}
.y1ad{bottom:616.500000px;}
.y4d{bottom:617.448000px;}
.y93{bottom:618.006000px;}
.yb7{bottom:621.012000px;}
.y67{bottom:627.006000px;}
.y186{bottom:627.924000px;}
.y139{bottom:627.942000px;}
.y115{bottom:629.700000px;}
.y1ac{bottom:630.000000px;}
.y1fc{bottom:630.300000px;}
.y1d{bottom:631.812000px;}
.y228{bottom:632.100000px;}
.y160{bottom:635.118000px;}
.y1cb{bottom:636.942000px;}
.y4c{bottom:640.848000px;}
.y92{bottom:641.100000px;}
.yb6{bottom:644.106000px;}
.yeb{bottom:644.700000px;}
.y114{bottom:646.200000px;}
.y1ab{bottom:647.700000px;}
.y1fb{bottom:649.800000px;}
.y66{bottom:650.100000px;}
.y227{bottom:651.300000px;}
.y185{bottom:651.324000px;}
.y138{bottom:651.342000px;}
.y1c{bottom:655.212000px;}
.y15f{bottom:658.518000px;}
.ye9{bottom:660.000000px;}
.y1ca{bottom:660.342000px;}
.y113{bottom:662.700000px;}
.y4b{bottom:663.942000px;}
.y91{bottom:664.500000px;}
.yb5{bottom:667.506000px;}
.y1fa{bottom:669.300000px;}
.y226{bottom:670.800000px;}
.y65{bottom:671.400000px;}
.y184{bottom:674.418000px;}
.y137{bottom:674.436000px;}
.y1b{bottom:678.612000px;}
.y1aa{bottom:678.900000px;}
.y15e{bottom:681.612000px;}
.y1c9{bottom:683.436000px;}
.y90{bottom:686.100000px;}
.y4a{bottom:687.342000px;}
.y1f9{bottom:688.500000px;}
.y225{bottom:690.300000px;}
.yb4{bottom:690.906000px;}
.ye7{bottom:693.600000px;}
.y112{bottom:696.600000px;}
.y183{bottom:697.818000px;}
.y1a{bottom:701.706000px;}
.y8f{bottom:702.300000px;}
.y15d{bottom:705.012000px;}
.y136{bottom:706.836000px;}
.y1f8{bottom:708.000000px;}
.yd5{bottom:709.200000px;}
.y224{bottom:709.500000px;}
.y49{bottom:710.436000px;}
.yb3{bottom:714.000000px;}
.y1a9{bottom:722.700000px;}
.y19{bottom:725.106000px;}
.yd4{bottom:726.606000px;}
.y1f7{bottom:727.500000px;}
.y15c{bottom:728.412000px;}
.y111{bottom:729.000000px;}
.y182{bottom:729.912000px;}
.y135{bottom:730.236000px;}
.y8e{bottom:733.200000px;}
.y48{bottom:733.836000px;}
.yb2{bottom:735.600000px;}
.y1c8{bottom:738.930000px;}
.y1f6{bottom:746.700000px;}
.ye6{bottom:747.930000px;}
.y223{bottom:748.500000px;}
.y18{bottom:748.506000px;}
.yd3{bottom:750.006000px;}
.y15b{bottom:751.506000px;}
.yb1{bottom:752.100000px;}
.y1a8{bottom:753.000000px;}
.y181{bottom:753.312000px;}
.y134{bottom:753.330000px;}
.y47{bottom:757.236000px;}
.y1c7{bottom:762.330000px;}
.y1f5{bottom:766.200000px;}
.y8d{bottom:766.800000px;}
.y222{bottom:768.000000px;}
.yb0{bottom:768.600000px;}
.y1a7{bottom:769.800000px;}
.y17{bottom:771.600000px;}
.yd2{bottom:773.100000px;}
.y15a{bottom:774.906000px;}
.y180{bottom:776.712000px;}
.y133{bottom:776.730000px;}
.y110{bottom:778.200000px;}
.y46{bottom:780.330000px;}
.y1f4{bottom:785.700000px;}
.y221{bottom:787.200000px;}
.y8c{bottom:790.200000px;}
.y10f{bottom:793.500000px;}
.y1c6{bottom:794.730000px;}
.y16{bottom:795.000000px;}
.yd1{bottom:796.500000px;}
.y159{bottom:798.000000px;}
.y1a6{bottom:800.100000px;}
.y17f{bottom:800.112000px;}
.y132{bottom:800.130000px;}
.yaf{bottom:802.500000px;}
.y45{bottom:803.730000px;}
.y1f3{bottom:805.200000px;}
.y220{bottom:806.700000px;}
.y8a{bottom:810.000000px;}
.y15{bottom:816.300000px;}
.yd0{bottom:817.800000px;}
.y1c5{bottom:818.130000px;}
.y158{bottom:819.600000px;}
.y17e{bottom:823.206000px;}
.y8b{bottom:824.100000px;}
.y1f2{bottom:824.400000px;}
.y10e{bottom:825.900000px;}
.y21f{bottom:826.200000px;}
.y44{bottom:827.130000px;}
.ycf{bottom:828.600000px;}
.y131{bottom:832.224000px;}
.y14{bottom:832.800000px;}
.yae{bottom:834.900000px;}
.y157{bottom:836.100000px;}
.y1c4{bottom:841.224000px;}
.y1f1{bottom:843.900000px;}
.y1a5{bottom:844.200000px;}
.y21e{bottom:845.400000px;}
.y17d{bottom:846.606000px;}
.y43{bottom:850.224000px;}
.yce{bottom:851.700000px;}
.y13{bottom:852.300000px;}
.y130{bottom:855.624000px;}
.y1f0{bottom:863.400000px;}
.y10d{bottom:864.600000px;}
.y1c3{bottom:864.624000px;}
.y21d{bottom:864.900000px;}
.y88{bottom:865.500000px;}
.y156{bottom:866.700000px;}
.yad{bottom:867.000000px;}
.y17c{bottom:870.006000px;}
.y42{bottom:873.624000px;}
.y1a4{bottom:874.500000px;}
.y12f{bottom:879.024000px;}
.y89{bottom:879.600000px;}
.y1ef{bottom:882.600000px;}
.y21c{bottom:884.400000px;}
.y151{bottom:885.900000px;}
.y1c2{bottom:888.024000px;}
.y12{bottom:889.800000px;}
.y1a3{bottom:891.300000px;}
.y17b{bottom:893.100000px;}
.y10b{bottom:897.000000px;}
.y41{bottom:897.024000px;}
.yac{bottom:900.900000px;}
.y10c{bottom:901.200000px;}
.y1ee{bottom:902.100000px;}
.y21b{bottom:903.600000px;}
.y11{bottom:909.000000px;}
.y155{bottom:909.300000px;}
.y12e{bottom:911.118000px;}
.y40{bottom:920.118000px;}
.y1a2{bottom:921.600000px;}
.y21a{bottom:923.100000px;}
.y17a{bottom:925.212000px;}
.y154{bottom:928.800000px;}
.y10{bottom:929.406000px;}
.y12d{bottom:934.518000px;}
.y87{bottom:935.100000px;}
.y10a{bottom:935.700000px;}
.y1ed{bottom:940.800000px;}
.y219{bottom:942.600000px;}
.y3f{bottom:943.518000px;}
.y153{bottom:948.300000px;}
.yab{bottom:948.612000px;}
.y1a1{bottom:951.900000px;}
.yf{bottom:952.500000px;}
.y12c{bottom:957.612000px;}
.y86{bottom:958.500000px;}
.y1ec{bottom:960.300000px;}
.y218{bottom:962.100000px;}
.y3e{bottom:966.612000px;}
.y109{bottom:968.100000px;}
.y179{bottom:972.012000px;}
.ye{bottom:976.494000px;}
.y1eb{bottom:979.800000px;}
.yaa{bottom:981.012000px;}
.y217{bottom:981.300000px;}
.y1a0{bottom:982.200000px;}
.y150{bottom:983.700000px;}
.y3d{bottom:990.012000px;}
.y85{bottom:990.600000px;}
.y178{bottom:995.412000px;}
.y108{bottom:1000.200000px;}
.y216{bottom:1000.800000px;}
.yd{bottom:1003.794000px;}
.y1c1{bottom:1004.412000px;}
.y19f{bottom:1012.500000px;}
.ya9{bottom:1013.106000px;}
.y3c{bottom:1013.412000px;}
.y84{bottom:1014.000000px;}
.y14f{bottom:1018.506000px;}
.y1ea{bottom:1020.300000px;}
.y177{bottom:1027.506000px;}
.yc{bottom:1030.800000px;}
.y80{bottom:1033.800000px;}
.y3b{bottom:1036.506000px;}
.y1e9{bottom:1039.500000px;}
.y82{bottom:1047.900000px;}
.y107{bottom:1049.700000px;}
.y14e{bottom:1050.906000px;}
.y19e{bottom:1057.200000px;}
.yb{bottom:1058.100000px;}
.y1e8{bottom:1059.000000px;}
.y3a{bottom:1059.906000px;}
.y104{bottom:1066.500000px;}
.y176{bottom:1074.306000px;}
.y19c{bottom:1074.900000px;}
.y1e7{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y14d{bottom:1083.000000px;}
.y39{bottom:1083.306000px;}
.y7e{bottom:1090.800000px;}
.y1e6{bottom:1097.700000px;}
.y6{bottom:1103.400000px;}
.y38{bottom:1106.400000px;}
.y1e5{bottom:1117.200000px;}
.y103{bottom:1120.806000px;}
.y5{bottom:1129.200000px;}
.y37{bottom:1129.800000px;}
.y1e4{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y102{bottom:1152.900000px;}
.y36{bottom:1153.200000px;}
.y1e3{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y35{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h25{height:19.200000px;}
.h11{height:20.880000px;}
.h1e{height:23.100000px;}
.h5{height:23.401500px;}
.h9{height:23.998500px;}
.h2b{height:30.300000px;}
.h27{height:30.301500px;}
.h29{height:30.600000px;}
.h4{height:31.320000px;}
.h1b{height:32.098500px;}
.h17{height:32.100000px;}
.h14{height:32.400000px;}
.h1c{height:32.401500px;}
.h24{height:38.698500px;}
.h23{height:38.700000px;}
.h19{height:38.998500px;}
.h22{height:39.000000px;}
.h10{height:41.760000px;}
.h3{height:43.920000px;}
.h20{height:46.798500px;}
.h12{height:47.109375px;}
.h7{height:47.400000px;}
.h2e{height:48.312000px;}
.h2{height:48.420000px;}
.hf{height:52.200000px;}
.h13{height:52.704000px;}
.h28{height:53.262000px;}
.h15{height:55.500000px;}
.h1a{height:55.501500px;}
.h2a{height:57.420000px;}
.h8{height:58.104000px;}
.h16{height:58.886719px;}
.h2d{height:62.578125px;}
.he{height:62.640000px;}
.h2c{height:66.515625px;}
.hc{height:67.788000px;}
.ha{height:70.664062px;}
.h6{height:72.562500px;}
.hb{height:73.080000px;}
.h21{height:75.093750px;}
.h18{height:78.900000px;}
.hd{height:84.656250px;}
.h26{height:96.900000px;}
.h1f{height:292.500000px;}
.h1d{height:319.500000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1b{width:76.498500px;}
.w1d{width:79.198500px;}
.w1c{width:79.200000px;}
.w13{width:82.801500px;}
.w20{width:83.700000px;}
.w1f{width:84.000000px;}
.w21{width:84.001500px;}
.w8{width:87.598500px;}
.w6{width:87.600000px;}
.wa{width:87.900000px;}
.w17{width:88.500000px;}
.w7{width:89.400000px;}
.w19{width:96.301500px;}
.w5{width:103.800000px;}
.w14{width:106.198500px;}
.wb{width:106.500000px;}
.w1a{width:111.000000px;}
.w18{width:112.800000px;}
.w11{width:119.101500px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.wf{width:159.300000px;}
.we{width:159.600000px;}
.w9{width:166.501500px;}
.w10{width:237.900000px;}
.wd{width:287.100000px;}
.w15{width:297.600000px;}
.w16{width:303.298500px;}
.w12{width:329.400000px;}
.w1e{width:374.400000px;}
.w2{width:478.200000px;}
.wc{width:709.200000px;}
.w22{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x4d{left:10.500000px;}
.x70{left:12.000000px;}
.x27{left:14.100000px;}
.x28{left:15.300000px;}
.x71{left:16.800000px;}
.x31{left:18.300000px;}
.x6b{left:19.500000px;}
.x84{left:20.700000px;}
.x1a{left:23.100000px;}
.x1d{left:24.300000px;}
.x3c{left:27.300000px;}
.x39{left:28.500000px;}
.x62{left:29.700000px;}
.x40{left:31.500000px;}
.x29{left:33.300000px;}
.x64{left:35.700000px;}
.x38{left:40.500000px;}
.x69{left:44.700000px;}
.x4b{left:47.400000px;}
.x66{left:49.800000px;}
.x18{left:51.900000px;}
.x4e{left:54.300000px;}
.x75{left:56.100000px;}
.x67{left:59.700000px;}
.x3e{left:63.000000px;}
.x50{left:65.100000px;}
.x51{left:69.900000px;}
.x53{left:74.700000px;}
.x45{left:78.000000px;}
.x3{left:79.800000px;}
.x57{left:84.000000px;}
.x1{left:91.500000px;}
.x68{left:92.700000px;}
.x11{left:95.700000px;}
.xf{left:98.400000px;}
.x30{left:100.200000px;}
.x58{left:102.600000px;}
.xa1{left:105.300000px;}
.x55{left:108.000000px;}
.x54{left:109.500000px;}
.x3a{left:113.100000px;}
.x74{left:115.200000px;}
.x4f{left:117.300000px;}
.xa6{left:118.500000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.xa{left:126.591000px;}
.x9e{left:129.000000px;}
.x17{left:130.800000px;}
.x5a{left:132.900000px;}
.x6d{left:134.100000px;}
.x3b{left:135.900000px;}
.x26{left:138.900000px;}
.x60{left:140.400000px;}
.x49{left:143.400000px;}
.x12{left:144.600000px;}
.x3d{left:145.800000px;}
.x2a{left:148.200000px;}
.x21{left:149.700000px;}
.x23{left:152.700000px;}
.x25{left:155.100000px;}
.x2b{left:158.700000px;}
.x22{left:161.400000px;}
.x76{left:162.900000px;}
.x14{left:164.400000px;}
.x85{left:168.000000px;}
.xa9{left:171.582000px;}
.xaa{left:173.100000px;}
.xa7{left:176.700000px;}
.x82{left:177.900000px;}
.x9f{left:180.600000px;}
.x9{left:181.800000px;}
.xa3{left:200.400000px;}
.xd{left:202.200000px;}
.x5f{left:206.106000px;}
.xa5{left:208.500000px;}
.x16{left:211.794000px;}
.x6a{left:225.600000px;}
.x86{left:228.000000px;}
.x6c{left:229.200000px;}
.x65{left:233.400000px;}
.x19{left:234.600000px;}
.x41{left:236.700000px;}
.x5c{left:241.200000px;}
.xb{left:244.800000px;}
.x87{left:247.200000px;}
.x24{left:248.700000px;}
.x77{left:250.500000px;}
.xa4{left:254.400000px;}
.x5b{left:256.800000px;}
.x52{left:260.700000px;}
.x2c{left:262.800000px;}
.x9b{left:265.200000px;}
.x32{left:266.700000px;}
.xa2{left:268.800000px;}
.xc{left:273.900000px;}
.xa0{left:275.100000px;}
.x92{left:281.700000px;}
.x72{left:285.000000px;}
.x2f{left:288.294000px;}
.x2d{left:290.100000px;}
.x5d{left:307.200000px;}
.x99{left:313.500000px;}
.x1b{left:322.200000px;}
.x42{left:324.300000px;}
.x88{left:326.400000px;}
.x3f{left:333.006000px;}
.x47{left:337.500000px;}
.x78{left:347.400000px;}
.x33{left:354.300000px;}
.x79{left:359.700000px;}
.x93{left:360.900000px;}
.x83{left:363.012000px;}
.x7a{left:366.000000px;}
.x7b{left:370.500000px;}
.xe{left:374.100000px;}
.x61{left:378.300000px;}
.x89{left:386.400000px;}
.x8a{left:405.600000px;}
.x1c{left:409.800000px;}
.x43{left:411.900000px;}
.x4a{left:430.500000px;}
.x94{left:440.100000px;}
.x34{left:441.900000px;}
.x73{left:444.000000px;}
.x2{left:446.400000px;}
.x10{left:449.400000px;}
.x7c{left:460.500000px;}
.x7d{left:462.300000px;}
.x48{left:463.500000px;}
.x5e{left:466.200000px;}
.x13{left:473.100000px;}
.x8b{left:484.800000px;}
.xa8{left:493.800000px;}
.x1e{left:499.200000px;}
.x56{left:500.400000px;}
.x59{left:505.200000px;}
.x95{left:519.300000px;}
.x35{left:529.800000px;}
.x7e{left:532.200000px;}
.x8c{left:544.800000px;}
.x6e{left:546.300000px;}
.x9c{left:549.900000px;}
.x5{left:558.000000px;}
.x8d{left:564.000000px;}
.x1f{left:586.800000px;}
.x4c{left:590.100000px;}
.x96{left:598.500000px;}
.x36{left:617.400000px;}
.x8e{left:624.000000px;}
.x63{left:633.600000px;}
.x44{left:634.800000px;}
.x46{left:636.300000px;}
.x7f{left:643.200000px;}
.x6f{left:652.800000px;}
.x80{left:659.400000px;}
.x81{left:665.400000px;}
.x20{left:674.400000px;}
.x97{left:677.700000px;}
.x7{left:685.800000px;}
.x8f{left:703.200000px;}
.x37{left:705.000000px;}
.x9d{left:717.600000px;}
.x90{left:722.400000px;}
.x15{left:746.700000px;}
.x2e{left:752.100000px;}
.x98{left:756.900000px;}
.x91{left:782.400000px;}
.x9a{left:801.618000px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls4b{letter-spacing:-2.368000pt;}
.ls4a{letter-spacing:-1.344000pt;}
.ls49{letter-spacing:-1.152000pt;}
.ls80{letter-spacing:-1.120000pt;}
.ls20{letter-spacing:-1.088000pt;}
.ls7f{letter-spacing:-0.853333pt;}
.ls4e{letter-spacing:-0.768000pt;}
.ls69{letter-spacing:-0.528000pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls81{letter-spacing:-0.469333pt;}
.ls11{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls67{letter-spacing:-0.410667pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls65{letter-spacing:-0.352000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls5d{letter-spacing:-0.293333pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls68{letter-spacing:-0.234667pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls5e{letter-spacing:-0.176000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.128000pt;}
.ls6b{letter-spacing:-0.117333pt;}
.ls48{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls82{letter-spacing:-0.058667pt;}
.ls78{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.044800pt;}
.ls32{letter-spacing:0.053333pt;}
.ls6a{letter-spacing:0.058667pt;}
.ls28{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.074667pt;}
.lsc{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls76{letter-spacing:0.266667pt;}
.ls61{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls5f{letter-spacing:0.352000pt;}
.ls59{letter-spacing:0.358400pt;}
.ls5a{letter-spacing:0.371200pt;}
.ls54{letter-spacing:0.373333pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.409600pt;}
.ls60{letter-spacing:0.410667pt;}
.ls3b{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.428800pt;}
.ls8{letter-spacing:0.448000pt;}
.ls64{letter-spacing:0.469333pt;}
.ls26{letter-spacing:0.473600pt;}
.ls35{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.486400pt;}
.ls38{letter-spacing:0.505600pt;}
.ls2d{letter-spacing:0.512000pt;}
.ls29{letter-spacing:0.518400pt;}
.ls6f{letter-spacing:0.524800pt;}
.ls62{letter-spacing:0.528000pt;}
.ls33{letter-spacing:0.533333pt;}
.ls56{letter-spacing:0.646400pt;}
.ls74{letter-spacing:0.688000pt;}
.ls71{letter-spacing:0.693333pt;}
.ls5b{letter-spacing:0.800000pt;}
.ls5c{letter-spacing:0.821333pt;}
.ls63{letter-spacing:0.880000pt;}
.ls7{letter-spacing:1.024000pt;}
.ls72{letter-spacing:1.061333pt;}
.ls75{letter-spacing:1.066667pt;}
.ls9{letter-spacing:1.088000pt;}
.ls66{letter-spacing:1.114667pt;}
.ls25{letter-spacing:1.216000pt;}
.ls77{letter-spacing:1.333333pt;}
.ls6d{letter-spacing:1.472000pt;}
.ls2c{letter-spacing:2.112000pt;}
.ls2b{letter-spacing:3.200000pt;}
.ls7d{letter-spacing:3.893333pt;}
.ls23{letter-spacing:4.288000pt;}
.ls7c{letter-spacing:4.960000pt;}
.ls22{letter-spacing:5.312000pt;}
.ls7a{letter-spacing:6.026667pt;}
.ls39{letter-spacing:6.400000pt;}
.lsa{letter-spacing:8.512000pt;}
.ls4c{letter-spacing:9.600000pt;}
.ls3c{letter-spacing:10.624000pt;}
.ls1f{letter-spacing:12.800000pt;}
.ls42{letter-spacing:13.798400pt;}
.ls6c{letter-spacing:13.888000pt;}
.lsb{letter-spacing:14.777600pt;}
.ls4d{letter-spacing:16.000000pt;}
.ls24{letter-spacing:17.024000pt;}
.ls7b{letter-spacing:19.893333pt;}
.ls70{letter-spacing:20.373333pt;}
.ls36{letter-spacing:24.512000pt;}
.ls79{letter-spacing:31.626667pt;}
.ls7e{letter-spacing:33.760000pt;}
.ls73{letter-spacing:40.640000pt;}
.ls6e{letter-spacing:48.320000pt;}
.ls3d{letter-spacing:49.088000pt;}
.ls55{letter-spacing:56.576000pt;}
.ls30{letter-spacing:85.290667pt;}
.ls2e{letter-spacing:86.357333pt;}
.ls2f{letter-spacing:88.490667pt;}
.ls58{letter-spacing:91.040000pt;}
.ls57{letter-spacing:106.688000pt;}
.ls51{letter-spacing:113.066667pt;}
.ls53{letter-spacing:114.090667pt;}
.ls31{letter-spacing:123.712000pt;}
.ls52{letter-spacing:127.957333pt;}
.ls3e{letter-spacing:141.120000pt;}
.ls50{letter-spacing:209.066667pt;}
.ls4f{letter-spacing:253.866667pt;}
.ls45{letter-spacing:333.866667pt;}
.ls47{letter-spacing:352.000000pt;}
.ls44{letter-spacing:368.000000pt;}
.ls3{letter-spacing:447.626667pt;}
.ls46{letter-spacing:493.493333pt;}
.ls43{letter-spacing:507.360000pt;}
.ls41{letter-spacing:600.160000pt;}
.ls40{letter-spacing:637.493333pt;}
.ls3f{letter-spacing:652.426667pt;}
.ls2{letter-spacing:680.160000pt;}
.ls1{letter-spacing:752.693333pt;}
.ls21{letter-spacing:1136.693333pt;}
.ls0{letter-spacing:1242.293333pt;}
.ws3{word-spacing:-17.408000pt;}
.wsb{word-spacing:-17.344000pt;}
.ws4{word-spacing:-17.088000pt;}
.wsd{word-spacing:-17.024000pt;}
.ws34{word-spacing:-16.896000pt;}
.ws33{word-spacing:-16.832000pt;}
.ws36{word-spacing:-16.704000pt;}
.ws6f{word-spacing:-16.640000pt;}
.ws35{word-spacing:-16.576000pt;}
.ws76{word-spacing:-16.512000pt;}
.ws2{word-spacing:-16.192000pt;}
.wsc5{word-spacing:-16.133333pt;}
.wsc4{word-spacing:-16.016000pt;}
.ws78{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws75{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.680000pt;}
.wsc3{word-spacing:-15.664000pt;}
.ws10b{word-spacing:-15.429333pt;}
.wsc8{word-spacing:-15.370667pt;}
.wsc6{word-spacing:-15.312000pt;}
.wsc7{word-spacing:-15.253333pt;}
.ws10a{word-spacing:-15.194667pt;}
.wsb8{word-spacing:-15.040000pt;}
.ws6e{word-spacing:-14.720000pt;}
.ws90{word-spacing:-14.666667pt;}
.ws108{word-spacing:-14.560000pt;}
.ws109{word-spacing:-14.549333pt;}
.wse5{word-spacing:-14.506667pt;}
.ws91{word-spacing:-14.453333pt;}
.ws32{word-spacing:-14.400000pt;}
.ws8f{word-spacing:-14.293333pt;}
.ws6{word-spacing:-14.240000pt;}
.wse6{word-spacing:-14.186667pt;}
.ws1{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.973333pt;}
.ws7{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws5{word-spacing:-13.760000pt;}
.wsae{word-spacing:-13.706667pt;}
.wsad{word-spacing:-13.120000pt;}
.ws8e{word-spacing:-13.066667pt;}
.ws92{word-spacing:-13.013333pt;}
.ws2e{word-spacing:-12.800000pt;}
.wsbd{word-spacing:-4.608000pt;}
.wsbc{word-spacing:-4.480000pt;}
.wsb9{word-spacing:-4.224000pt;}
.ws62{word-spacing:-4.160000pt;}
.ws63{word-spacing:-3.968000pt;}
.wsbb{word-spacing:-3.776000pt;}
.ws100{word-spacing:-3.626667pt;}
.wse4{word-spacing:-3.456000pt;}
.ws52{word-spacing:-3.392000pt;}
.wsba{word-spacing:-2.944000pt;}
.ws84{word-spacing:-2.816000pt;}
.wsa2{word-spacing:-2.752000pt;}
.ws4a{word-spacing:-2.688000pt;}
.ws22{word-spacing:-2.432000pt;}
.ws23{word-spacing:-2.112000pt;}
.ws9c{word-spacing:-1.856000pt;}
.ws9b{word-spacing:-1.792000pt;}
.ws3e{word-spacing:-1.664000pt;}
.wsf8{word-spacing:-1.546667pt;}
.ws71{word-spacing:-1.408000pt;}
.wsff{word-spacing:-1.333333pt;}
.ws47{word-spacing:-1.280000pt;}
.wsfa{word-spacing:-1.173333pt;}
.wsb6{word-spacing:-1.088000pt;}
.wsce{word-spacing:-1.056000pt;}
.wsb3{word-spacing:-1.024000pt;}
.wsf7{word-spacing:-1.013333pt;}
.ws46{word-spacing:-0.832000pt;}
.wsd5{word-spacing:-0.821333pt;}
.wsf9{word-spacing:-0.800000pt;}
.wsd7{word-spacing:-0.762667pt;}
.ws30{word-spacing:-0.704000pt;}
.ws5e{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.586667pt;}
.ws5f{word-spacing:-0.576000pt;}
.wsab{word-spacing:-0.512000pt;}
.wse{word-spacing:-0.480000pt;}
.ws70{word-spacing:-0.426667pt;}
.wscd{word-spacing:-0.410667pt;}
.ws10{word-spacing:-0.373333pt;}
.wsd0{word-spacing:-0.352000pt;}
.ws18{word-spacing:-0.320000pt;}
.wsd1{word-spacing:-0.293333pt;}
.wse9{word-spacing:-0.266667pt;}
.ws2b{word-spacing:-0.256000pt;}
.wsca{word-spacing:-0.234667pt;}
.ws11{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.149333pt;}
.ws29{word-spacing:-0.128000pt;}
.wsea{word-spacing:-0.106667pt;}
.ws4f{word-spacing:-0.064000pt;}
.wscb{word-spacing:-0.058667pt;}
.ws74{word-spacing:-0.053333pt;}
.wsf{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.053333pt;}
.wscc{word-spacing:0.058667pt;}
.ws2d{word-spacing:0.064000pt;}
.ws110{word-spacing:0.106667pt;}
.wsd6{word-spacing:0.117333pt;}
.ws73{word-spacing:0.128000pt;}
.ws105{word-spacing:0.160000pt;}
.wscf{word-spacing:0.176000pt;}
.ws21{word-spacing:0.192000pt;}
.ws98{word-spacing:0.213333pt;}
.ws15{word-spacing:0.224000pt;}
.ws121{word-spacing:0.234667pt;}
.ws57{word-spacing:0.256000pt;}
.ws1b{word-spacing:0.266667pt;}
.wsd3{word-spacing:0.293333pt;}
.ws14{word-spacing:0.298667pt;}
.ws2a{word-spacing:0.320000pt;}
.ws2c{word-spacing:0.384000pt;}
.wsc9{word-spacing:0.410667pt;}
.wse8{word-spacing:0.426667pt;}
.ws16{word-spacing:0.448000pt;}
.wsd8{word-spacing:0.469333pt;}
.wsb0{word-spacing:0.480000pt;}
.ws17{word-spacing:0.512000pt;}
.wsac{word-spacing:0.640000pt;}
.wsa9{word-spacing:0.704000pt;}
.wsaf{word-spacing:0.746667pt;}
.ws7a{word-spacing:0.768000pt;}
.ws97{word-spacing:0.800000pt;}
.ws60{word-spacing:0.832000pt;}
.wsb1{word-spacing:0.853333pt;}
.wsd4{word-spacing:0.880000pt;}
.wsd2{word-spacing:1.056000pt;}
.ws106{word-spacing:1.066667pt;}
.ws2f{word-spacing:1.088000pt;}
.wsfb{word-spacing:1.120000pt;}
.ws79{word-spacing:1.280000pt;}
.ws66{word-spacing:1.344000pt;}
.ws4e{word-spacing:1.408000pt;}
.ws1c{word-spacing:1.536000pt;}
.wsee{word-spacing:1.653333pt;}
.ws69{word-spacing:1.920000pt;}
.wsef{word-spacing:2.026667pt;}
.wsb5{word-spacing:2.176000pt;}
.wsed{word-spacing:2.186667pt;}
.wsa1{word-spacing:2.496000pt;}
.wsa0{word-spacing:2.560000pt;}
.wsf6{word-spacing:2.613333pt;}
.ws20{word-spacing:2.624000pt;}
.wsa4{word-spacing:2.880000pt;}
.ws5c{word-spacing:2.944000pt;}
.ws3b{word-spacing:3.008000pt;}
.ws120{word-spacing:3.168000pt;}
.wse7{word-spacing:3.253333pt;}
.ws50{word-spacing:3.264000pt;}
.ws9f{word-spacing:3.392000pt;}
.ws59{word-spacing:3.456000pt;}
.ws11f{word-spacing:3.520000pt;}
.ws3a{word-spacing:3.584000pt;}
.ws5d{word-spacing:3.648000pt;}
.wsf2{word-spacing:3.680000pt;}
.ws27{word-spacing:3.712000pt;}
.ws107{word-spacing:3.840000pt;}
.ws5b{word-spacing:4.032000pt;}
.wsf1{word-spacing:4.160000pt;}
.wsf0{word-spacing:4.320000pt;}
.ws95{word-spacing:4.416000pt;}
.wsda{word-spacing:4.608000pt;}
.ws67{word-spacing:4.672000pt;}
.ws40{word-spacing:4.736000pt;}
.ws39{word-spacing:5.120000pt;}
.ws82{word-spacing:5.312000pt;}
.ws113{word-spacing:5.333333pt;}
.ws83{word-spacing:5.376000pt;}
.ws114{word-spacing:5.386667pt;}
.ws7f{word-spacing:5.696000pt;}
.ws10f{word-spacing:5.813333pt;}
.ws1d{word-spacing:5.824000pt;}
.ws88{word-spacing:6.080000pt;}
.ws64{word-spacing:6.144000pt;}
.ws6b{word-spacing:6.208000pt;}
.wsf4{word-spacing:6.400000pt;}
.wsf3{word-spacing:6.453333pt;}
.ws65{word-spacing:6.464000pt;}
.wsbe{word-spacing:6.848000pt;}
.ws104{word-spacing:6.880000pt;}
.ws56{word-spacing:6.912000pt;}
.wsa6{word-spacing:7.104000pt;}
.wse0{word-spacing:7.168000pt;}
.ws51{word-spacing:7.232000pt;}
.ws80{word-spacing:7.488000pt;}
.wsec{word-spacing:7.520000pt;}
.ws81{word-spacing:7.616000pt;}
.ws53{word-spacing:7.680000pt;}
.wsb4{word-spacing:7.808000pt;}
.ws38{word-spacing:7.936000pt;}
.wsf5{word-spacing:7.946667pt;}
.ws6c{word-spacing:8.192000pt;}
.ws24{word-spacing:8.256000pt;}
.ws1e{word-spacing:8.320000pt;}
.ws58{word-spacing:8.576000pt;}
.wseb{word-spacing:8.586667pt;}
.ws89{word-spacing:8.768000pt;}
.ws6d{word-spacing:8.896000pt;}
.ws1f{word-spacing:9.024000pt;}
.ws49{word-spacing:9.408000pt;}
.ws54{word-spacing:9.664000pt;}
.ws41{word-spacing:9.984000pt;}
.ws37{word-spacing:10.112000pt;}
.ws8c{word-spacing:10.368000pt;}
.ws8a{word-spacing:10.432000pt;}
.ws3f{word-spacing:10.688000pt;}
.ws8b{word-spacing:11.072000pt;}
.ws93{word-spacing:11.136000pt;}
.ws25{word-spacing:11.520000pt;}
.ws115{word-spacing:11.786667pt;}
.wsb7{word-spacing:11.904000pt;}
.ws5a{word-spacing:12.096000pt;}
.wsfd{word-spacing:12.213333pt;}
.ws26{word-spacing:12.224000pt;}
.ws11e{word-spacing:12.730667pt;}
.wsfe{word-spacing:12.853333pt;}
.wsaa{word-spacing:12.864000pt;}
.ws96{word-spacing:13.184000pt;}
.ws11d{word-spacing:13.200000pt;}
.ws48{word-spacing:13.312000pt;}
.wsdd{word-spacing:13.888000pt;}
.ws99{word-spacing:14.016000pt;}
.wsb2{word-spacing:14.080000pt;}
.wsa3{word-spacing:14.144000pt;}
.ws31{word-spacing:14.208000pt;}
.ws68{word-spacing:14.336000pt;}
.ws4c{word-spacing:14.720000pt;}
.wsde{word-spacing:15.168000pt;}
.ws72{word-spacing:15.296000pt;}
.ws4d{word-spacing:15.424000pt;}
.wsa5{word-spacing:15.680000pt;}
.ws10c{word-spacing:16.053333pt;}
.ws9e{word-spacing:16.384000pt;}
.ws119{word-spacing:16.480000pt;}
.ws61{word-spacing:16.512000pt;}
.ws43{word-spacing:16.832000pt;}
.ws42{word-spacing:17.088000pt;}
.ws118{word-spacing:17.120000pt;}
.ws44{word-spacing:17.536000pt;}
.ws28{word-spacing:17.856000pt;}
.ws85{word-spacing:18.176000pt;}
.ws86{word-spacing:18.304000pt;}
.wsbf{word-spacing:18.496000pt;}
.ws11b{word-spacing:18.613333pt;}
.ws55{word-spacing:18.624000pt;}
.ws11c{word-spacing:19.093333pt;}
.ws102{word-spacing:19.200000pt;}
.ws103{word-spacing:19.253333pt;}
.wsa8{word-spacing:19.264000pt;}
.ws94{word-spacing:19.712000pt;}
.ws4b{word-spacing:20.288000pt;}
.ws111{word-spacing:20.320000pt;}
.wsdf{word-spacing:20.608000pt;}
.ws6a{word-spacing:20.736000pt;}
.wsd9{word-spacing:21.120000pt;}
.wsc2{word-spacing:21.696000pt;}
.wsc1{word-spacing:21.824000pt;}
.wsa7{word-spacing:22.208000pt;}
.ws87{word-spacing:22.464000pt;}
.ws45{word-spacing:22.912000pt;}
.ws9d{word-spacing:23.232000pt;}
.wsc0{word-spacing:23.488000pt;}
.ws7e{word-spacing:23.808000pt;}
.ws7d{word-spacing:23.936000pt;}
.wsdc{word-spacing:27.520000pt;}
.wsdb{word-spacing:28.224000pt;}
.ws3d{word-spacing:29.888000pt;}
.ws3c{word-spacing:30.336000pt;}
.ws10d{word-spacing:31.413333pt;}
.ws10e{word-spacing:32.053333pt;}
.wse2{word-spacing:33.088000pt;}
.ws101{word-spacing:33.120000pt;}
.ws11a{word-spacing:34.186667pt;}
.wse3{word-spacing:39.232000pt;}
.wse1{word-spacing:40.896000pt;}
.ws9a{word-spacing:46.976000pt;}
.ws7b{word-spacing:47.040000pt;}
.ws7c{word-spacing:47.424000pt;}
.ws8d{word-spacing:50.624000pt;}
.ws77{word-spacing:61.548800pt;}
.ws112{word-spacing:66.186667pt;}
.ws116{word-spacing:84.320000pt;}
.ws117{word-spacing:123.786667pt;}
.wsfc{word-spacing:166.453333pt;}
._2c{margin-left:-107.712000pt;}
._2e{margin-left:-92.330667pt;}
._33{margin-left:-91.093333pt;}
._20{margin-left:-77.568000pt;}
._26{margin-left:-72.512000pt;}
._27{margin-left:-57.280000pt;}
._1f{margin-left:-56.364800pt;}
._25{margin-left:-53.312000pt;}
._32{margin-left:-37.312000pt;}
._b{margin-left:-13.358933pt;}
._d{margin-left:-12.264533pt;}
._c{margin-left:-11.345067pt;}
._42{margin-left:-7.840000pt;}
._35{margin-left:-4.465067pt;}
._34{margin-left:-3.317333pt;}
._5{margin-left:-2.181333pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._6{width:2.208000pt;}
._16{width:3.584000pt;}
._f{width:5.109333pt;}
._e{width:6.105600pt;}
._7{width:7.877333pt;}
._8{width:9.548800pt;}
._9{width:10.440533pt;}
._30{width:12.160000pt;}
._a{width:13.593600pt;}
._13{width:14.496000pt;}
._12{width:16.164267pt;}
._10{width:18.668800pt;}
._11{width:19.564800pt;}
._2a{width:20.672000pt;}
._40{width:21.600000pt;}
._29{width:22.848000pt;}
._41{width:28.288000pt;}
._1e{width:29.728000pt;}
._1d{width:41.258667pt;}
._1b{width:42.869333pt;}
._1c{width:44.458667pt;}
._21{width:56.576000pt;}
._43{width:65.898667pt;}
._36{width:77.269333pt;}
._28{width:89.600000pt;}
._2f{width:91.776000pt;}
._24{width:95.744000pt;}
._17{width:108.426667pt;}
._31{width:113.674667pt;}
._2d{width:123.776000pt;}
._2b{width:144.336000pt;}
._38{width:174.976262pt;}
._39{width:176.007374pt;}
._1a{width:186.410667pt;}
._18{width:187.477333pt;}
._19{width:189.610667pt;}
._3f{width:191.482914pt;}
._3b{width:206.949595pt;}
._3c{width:207.980707pt;}
._3a{width:488.918264pt;}
._22{width:498.058667pt;}
._23{width:515.498667pt;}
._3e{width:605.702157pt;}
._3d{width:658.192748pt;}
._3{width:680.800000pt;}
._37{width:690.660275pt;}
._15{width:718.986667pt;}
._4{width:730.293333pt;}
._2{width:893.706667pt;}
._14{width:1082.453333pt;}
.fs5{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.ye8{bottom:3.733333pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.333333pt;}
.y19d{bottom:12.000000pt;}
.y9a{bottom:12.266667pt;}
.y7f{bottom:12.533333pt;}
.yf7{bottom:12.534667pt;}
.yea{bottom:15.200000pt;}
.yf6{bottom:15.201333pt;}
.y105{bottom:18.133333pt;}
.ya2{bottom:18.400000pt;}
.y106{bottom:20.800000pt;}
.ya0{bottom:21.066667pt;}
.yd8{bottom:25.333333pt;}
.y83{bottom:33.066667pt;}
.y81{bottom:33.333333pt;}
.y9c{bottom:53.866667pt;}
.y4{bottom:60.266667pt;}
.y152{bottom:72.800000pt;}
.y64{bottom:86.410667pt;}
.ye5{bottom:88.816000pt;}
.y1e2{bottom:89.866667pt;}
.y175{bottom:89.925333pt;}
.y19b{bottom:94.416000pt;}
.y14c{bottom:96.533333pt;}
.ycd{bottom:96.586667pt;}
.y1c0{bottom:98.682667pt;}
.y101{bottom:101.338667pt;}
.y7d{bottom:101.642667pt;}
.y12b{bottom:105.637333pt;}
.y34{bottom:106.133333pt;}
.y1e1{bottom:107.200000pt;}
.y63{bottom:107.210667pt;}
.ye4{bottom:109.616000pt;}
.y174{bottom:110.453333pt;}
.y215{bottom:111.733333pt;}
.ycc{bottom:117.114667pt;}
.y14b{bottom:117.333333pt;}
.y1bf{bottom:119.482667pt;}
.ya8{bottom:121.333333pt;}
.y100{bottom:122.138667pt;}
.y7c{bottom:122.442667pt;}
.y19a{bottom:122.944000pt;}
.y1e0{bottom:123.733333pt;}
.y12a{bottom:126.437333pt;}
.y33{bottom:126.933333pt;}
.y62{bottom:127.738667pt;}
.y214{bottom:129.066667pt;}
.ye3{bottom:130.416000pt;}
.ya7{bottom:136.266667pt;}
.ycb{bottom:137.914667pt;}
.y173{bottom:138.981333pt;}
.y1df{bottom:139.274667pt;}
.y1be{bottom:140.282667pt;}
.yff{bottom:142.938667pt;}
.y7b{bottom:143.242667pt;}
.y199{bottom:143.744000pt;}
.y213{bottom:146.133333pt;}
.y129{bottom:147.237333pt;}
.y32{bottom:147.733333pt;}
.y61{bottom:148.538667pt;}
.y14a{bottom:150.933333pt;}
.ye2{bottom:150.944000pt;}
.y23e{bottom:155.733333pt;}
.yca{bottom:158.442667pt;}
.y172{bottom:159.781333pt;}
.yfe{bottom:163.466667pt;}
.y7a{bottom:163.770667pt;}
.y198{bottom:164.544000pt;}
.y149{bottom:165.866667pt;}
.ya6{bottom:166.400000pt;}
.y31{bottom:166.666667pt;}
.y128{bottom:168.037333pt;}
.y1bd{bottom:168.810667pt;}
.y60{bottom:169.066667pt;}
.y1de{bottom:170.202667pt;}
.ye1{bottom:171.744000pt;}
.y23d{bottom:174.933333pt;}
.yc9{bottom:179.242667pt;}
.y171{bottom:180.581333pt;}
.y212{bottom:180.800000pt;}
.y30{bottom:182.154667pt;}
.yfd{bottom:182.666667pt;}
.y79{bottom:184.570667pt;}
.y197{bottom:185.344000pt;}
.y127{bottom:188.565333pt;}
.y1bc{bottom:189.610667pt;}
.y5f{bottom:189.866667pt;}
.ye0{bottom:192.544000pt;}
.y23c{bottom:192.800000pt;}
.y1dd{bottom:193.402667pt;}
.ya5{bottom:195.200000pt;}
.y148{bottom:195.733333pt;}
.yfc{bottom:197.333333pt;}
.y211{bottom:198.133333pt;}
.yc8{bottom:200.042667pt;}
.y170{bottom:201.381333pt;}
.y2f{bottom:202.954667pt;}
.y78{bottom:205.370667pt;}
.y196{bottom:205.872000pt;}
.y23b{bottom:207.730667pt;}
.y5e{bottom:207.733333pt;}
.y126{bottom:209.365333pt;}
.y1bb{bottom:210.410667pt;}
.yfb{bottom:212.000000pt;}
.ydf{bottom:213.072000pt;}
.y1dc{bottom:214.202667pt;}
.y210{bottom:215.200000pt;}
.y5d{bottom:217.674667pt;}
.yc7{bottom:220.570667pt;}
.y2e{bottom:223.482667pt;}
.ya3{bottom:223.733333pt;}
.y147{bottom:224.533333pt;}
.y77{bottom:225.898667pt;}
.y23a{bottom:226.665333pt;}
.y195{bottom:226.672000pt;}
.y16f{bottom:229.909333pt;}
.y125{bottom:230.165333pt;}
.y1ba{bottom:230.938667pt;}
.y20f{bottom:232.533333pt;}
.yde{bottom:233.872000pt;}
.y1db{bottom:235.002667pt;}
.ya4{bottom:236.266667pt;}
.y5c{bottom:238.202667pt;}
.yc6{bottom:241.370667pt;}
.y2d{bottom:244.282667pt;}
.y239{bottom:245.600000pt;}
.y76{bottom:246.698667pt;}
.y194{bottom:247.472000pt;}
.y20e{bottom:249.866667pt;}
.y124{bottom:250.693333pt;}
.y16e{bottom:250.709333pt;}
.y1b9{bottom:251.738667pt;}
.y146{bottom:254.666667pt;}
.ydd{bottom:254.672000pt;}
.y1da{bottom:255.802667pt;}
.yfa{bottom:257.333333pt;}
.y5b{bottom:259.002667pt;}
.yc5{bottom:262.170667pt;}
.y2c{bottom:264.810667pt;}
.y20d{bottom:266.933333pt;}
.y75{bottom:267.498667pt;}
.y193{bottom:268.000000pt;}
.y238{bottom:268.533333pt;}
.yf9{bottom:270.933333pt;}
.y123{bottom:271.493333pt;}
.y16d{bottom:271.509333pt;}
.y1b8{bottom:272.266667pt;}
.y9f{bottom:273.066667pt;}
.ydc{bottom:275.200000pt;}
.y1d9{bottom:276.330667pt;}
.ya1{bottom:276.800000pt;}
.y5a{bottom:279.802667pt;}
.yc4{bottom:282.698667pt;}
.y20c{bottom:284.266667pt;}
.y2b{bottom:285.610667pt;}
.y145{bottom:285.658667pt;}
.y74{bottom:288.026667pt;}
.y192{bottom:288.800000pt;}
.y16c{bottom:292.037333pt;}
.y122{bottom:292.293333pt;}
.y1b7{bottom:293.066667pt;}
.ydb{bottom:296.000000pt;}
.y1d8{bottom:297.130667pt;}
.y59{bottom:300.330667pt;}
.y20b{bottom:301.600000pt;}
.yc3{bottom:303.498667pt;}
.y2a{bottom:306.410667pt;}
.y237{bottom:306.665333pt;}
.y9b{bottom:307.733333pt;}
.y191{bottom:308.000000pt;}
.y73{bottom:308.826667pt;}
.y121{bottom:312.821333pt;}
.y1b6{bottom:313.866667pt;}
.y144{bottom:314.458667pt;}
.yf8{bottom:314.666667pt;}
.yda{bottom:315.200000pt;}
.y1d7{bottom:317.658667pt;}
.y20a{bottom:318.666667pt;}
.y9e{bottom:320.000000pt;}
.y16b{bottom:320.837333pt;}
.y58{bottom:321.130667pt;}
.y190{bottom:322.400000pt;}
.yc2{bottom:324.298667pt;}
.y236{bottom:325.600000pt;}
.yd7{bottom:325.866667pt;}
.y29{bottom:326.938667pt;}
.yf5{bottom:328.265333pt;}
.y72{bottom:329.354667pt;}
.yd9{bottom:330.400000pt;}
.y120{bottom:333.621333pt;}
.y209{bottom:336.000000pt;}
.y18f{bottom:337.333333pt;}
.y1d6{bottom:338.458667pt;}
.y9d{bottom:340.800000pt;}
.y16a{bottom:341.637333pt;}
.y57{bottom:341.658667pt;}
.y143{bottom:342.986667pt;}
.y235{bottom:343.466667pt;}
.y1b5{bottom:344.266667pt;}
.yc1{bottom:344.826667pt;}
.y28{bottom:347.738667pt;}
.y71{bottom:350.154667pt;}
.y208{bottom:353.333333pt;}
.y11f{bottom:354.421333pt;}
.yf3{bottom:357.066667pt;}
.y234{bottom:358.133333pt;}
.y1b4{bottom:359.200000pt;}
.y1d5{bottom:359.258667pt;}
.y169{bottom:362.165333pt;}
.y56{bottom:362.458667pt;}
.y142{bottom:363.786667pt;}
.yc0{bottom:365.626667pt;}
.y18d{bottom:366.133333pt;}
.yd6{bottom:367.466667pt;}
.y27{bottom:368.538667pt;}
.yf4{bottom:369.333333pt;}
.y207{bottom:370.666667pt;}
.y70{bottom:370.954667pt;}
.y11e{bottom:374.949333pt;}
.y233{bottom:375.466667pt;}
.y99{bottom:377.866667pt;}
.y18e{bottom:378.400000pt;}
.y1d4{bottom:379.786667pt;}
.y168{bottom:382.965333pt;}
.y55{bottom:383.258667pt;}
.y141{bottom:384.586667pt;}
.yf2{bottom:385.600000pt;}
.y1b3{bottom:386.133333pt;}
.ybf{bottom:386.154667pt;}
.y206{bottom:387.733333pt;}
.y26{bottom:389.066667pt;}
.y6f{bottom:391.482667pt;}
.y232{bottom:392.000000pt;}
.y11d{bottom:395.749333pt;}
.y1d3{bottom:400.586667pt;}
.y167{bottom:403.765333pt;}
.y54{bottom:403.786667pt;}
.y205{bottom:405.066667pt;}
.y140{bottom:405.386667pt;}
.y231{bottom:406.400000pt;}
.ybe{bottom:406.954667pt;}
.y98{bottom:407.733333pt;}
.y25{bottom:409.866667pt;}
.y6e{bottom:412.282667pt;}
.yf0{bottom:414.400000pt;}
.y11c{bottom:416.277333pt;}
.y18b{bottom:416.800000pt;}
.y1d2{bottom:421.386667pt;}
.y204{bottom:422.400000pt;}
.y230{bottom:423.733333pt;}
.y53{bottom:424.586667pt;}
.y1b2{bottom:425.333333pt;}
.y13f{bottom:425.914667pt;}
.yf1{bottom:426.666667pt;}
.ybd{bottom:427.754667pt;}
.y24{bottom:429.066667pt;}
.y18c{bottom:429.333333pt;}
.y166{bottom:432.293333pt;}
.y6d{bottom:433.082667pt;}
.y11b{bottom:437.077333pt;}
.y203{bottom:439.466667pt;}
.y1b1{bottom:440.266667pt;}
.y22f{bottom:441.066667pt;}
.y1d1{bottom:441.914667pt;}
.yef{bottom:442.933333pt;}
.y23{bottom:444.266667pt;}
.y52{bottom:445.386667pt;}
.y13e{bottom:446.714667pt;}
.ybc{bottom:448.282667pt;}
.y97{bottom:450.410667pt;}
.y165{bottom:453.093333pt;}
.y6c{bottom:453.610667pt;}
.y202{bottom:456.800000pt;}
.y11a{bottom:457.877333pt;}
.y22e{bottom:458.133333pt;}
.y18a{bottom:459.226667pt;}
.y1d0{bottom:462.714667pt;}
.y22{bottom:463.466667pt;}
.y51{bottom:465.914667pt;}
.y1b0{bottom:467.200000pt;}
.ybb{bottom:469.082667pt;}
.yee{bottom:471.733333pt;}
.y164{bottom:473.621333pt;}
.y201{bottom:474.133333pt;}
.y6b{bottom:474.410667pt;}
.y13d{bottom:475.242667pt;}
.y22d{bottom:475.466667pt;}
.y119{bottom:478.405333pt;}
.y96{bottom:478.938667pt;}
.y21{bottom:478.954667pt;}
.y1cf{bottom:483.514667pt;}
.y50{bottom:486.714667pt;}
.y189{bottom:488.026667pt;}
.yba{bottom:489.882667pt;}
.y200{bottom:491.200000pt;}
.y22c{bottom:492.800000pt;}
.y1af{bottom:494.133333pt;}
.y163{bottom:494.421333pt;}
.y6a{bottom:495.210667pt;}
.y13c{bottom:496.042667pt;}
.y118{bottom:499.205333pt;}
.y20{bottom:499.482667pt;}
.yed{bottom:500.533333pt;}
.y1ce{bottom:504.042667pt;}
.y4f{bottom:507.514667pt;}
.y95{bottom:507.738667pt;}
.y1ff{bottom:508.533333pt;}
.y22b{bottom:510.133333pt;}
.yb9{bottom:510.410667pt;}
.y162{bottom:515.221333pt;}
.y69{bottom:515.738667pt;}
.y188{bottom:516.826667pt;}
.y13b{bottom:516.842667pt;}
.y117{bottom:520.005333pt;}
.y1f{bottom:520.282667pt;}
.y1cd{bottom:524.842667pt;}
.y1fe{bottom:525.866667pt;}
.y22a{bottom:527.200000pt;}
.y4e{bottom:528.042667pt;}
.y94{bottom:528.538667pt;}
.yec{bottom:529.066667pt;}
.yb8{bottom:531.210667pt;}
.y1ae{bottom:533.066667pt;}
.y68{bottom:536.538667pt;}
.y187{bottom:537.626667pt;}
.y13a{bottom:537.642667pt;}
.y116{bottom:540.533333pt;}
.y1e{bottom:541.082667pt;}
.y1fd{bottom:543.200000pt;}
.y161{bottom:543.749333pt;}
.y229{bottom:544.533333pt;}
.y1cc{bottom:545.642667pt;}
.y1ad{bottom:548.000000pt;}
.y4d{bottom:548.842667pt;}
.y93{bottom:549.338667pt;}
.yb7{bottom:552.010667pt;}
.y67{bottom:557.338667pt;}
.y186{bottom:558.154667pt;}
.y139{bottom:558.170667pt;}
.y115{bottom:559.733333pt;}
.y1ac{bottom:560.000000pt;}
.y1fc{bottom:560.266667pt;}
.y1d{bottom:561.610667pt;}
.y228{bottom:561.866667pt;}
.y160{bottom:564.549333pt;}
.y1cb{bottom:566.170667pt;}
.y4c{bottom:569.642667pt;}
.y92{bottom:569.866667pt;}
.yb6{bottom:572.538667pt;}
.yeb{bottom:573.066667pt;}
.y114{bottom:574.400000pt;}
.y1ab{bottom:575.733333pt;}
.y1fb{bottom:577.600000pt;}
.y66{bottom:577.866667pt;}
.y227{bottom:578.933333pt;}
.y185{bottom:578.954667pt;}
.y138{bottom:578.970667pt;}
.y1c{bottom:582.410667pt;}
.y15f{bottom:585.349333pt;}
.ye9{bottom:586.666667pt;}
.y1ca{bottom:586.970667pt;}
.y113{bottom:589.066667pt;}
.y4b{bottom:590.170667pt;}
.y91{bottom:590.666667pt;}
.yb5{bottom:593.338667pt;}
.y1fa{bottom:594.933333pt;}
.y226{bottom:596.266667pt;}
.y65{bottom:596.800000pt;}
.y184{bottom:599.482667pt;}
.y137{bottom:599.498667pt;}
.y1b{bottom:603.210667pt;}
.y1aa{bottom:603.466667pt;}
.y15e{bottom:605.877333pt;}
.y1c9{bottom:607.498667pt;}
.y90{bottom:609.866667pt;}
.y4a{bottom:610.970667pt;}
.y1f9{bottom:612.000000pt;}
.y225{bottom:613.600000pt;}
.yb4{bottom:614.138667pt;}
.ye7{bottom:616.533333pt;}
.y112{bottom:619.200000pt;}
.y183{bottom:620.282667pt;}
.y1a{bottom:623.738667pt;}
.y8f{bottom:624.266667pt;}
.y15d{bottom:626.677333pt;}
.y136{bottom:628.298667pt;}
.y1f8{bottom:629.333333pt;}
.yd5{bottom:630.400000pt;}
.y224{bottom:630.666667pt;}
.y49{bottom:631.498667pt;}
.yb3{bottom:634.666667pt;}
.y1a9{bottom:642.400000pt;}
.y19{bottom:644.538667pt;}
.yd4{bottom:645.872000pt;}
.y1f7{bottom:646.666667pt;}
.y15c{bottom:647.477333pt;}
.y111{bottom:648.000000pt;}
.y182{bottom:648.810667pt;}
.y135{bottom:649.098667pt;}
.y8e{bottom:651.733333pt;}
.y48{bottom:652.298667pt;}
.yb2{bottom:653.866667pt;}
.y1c8{bottom:656.826667pt;}
.y1f6{bottom:663.733333pt;}
.ye6{bottom:664.826667pt;}
.y223{bottom:665.333333pt;}
.y18{bottom:665.338667pt;}
.yd3{bottom:666.672000pt;}
.y15b{bottom:668.005333pt;}
.yb1{bottom:668.533333pt;}
.y1a8{bottom:669.333333pt;}
.y181{bottom:669.610667pt;}
.y134{bottom:669.626667pt;}
.y47{bottom:673.098667pt;}
.y1c7{bottom:677.626667pt;}
.y1f5{bottom:681.066667pt;}
.y8d{bottom:681.600000pt;}
.y222{bottom:682.666667pt;}
.yb0{bottom:683.200000pt;}
.y1a7{bottom:684.266667pt;}
.y17{bottom:685.866667pt;}
.yd2{bottom:687.200000pt;}
.y15a{bottom:688.805333pt;}
.y180{bottom:690.410667pt;}
.y133{bottom:690.426667pt;}
.y110{bottom:691.733333pt;}
.y46{bottom:693.626667pt;}
.y1f4{bottom:698.400000pt;}
.y221{bottom:699.733333pt;}
.y8c{bottom:702.400000pt;}
.y10f{bottom:705.333333pt;}
.y1c6{bottom:706.426667pt;}
.y16{bottom:706.666667pt;}
.yd1{bottom:708.000000pt;}
.y159{bottom:709.333333pt;}
.y1a6{bottom:711.200000pt;}
.y17f{bottom:711.210667pt;}
.y132{bottom:711.226667pt;}
.yaf{bottom:713.333333pt;}
.y45{bottom:714.426667pt;}
.y1f3{bottom:715.733333pt;}
.y220{bottom:717.066667pt;}
.y8a{bottom:720.000000pt;}
.y15{bottom:725.600000pt;}
.yd0{bottom:726.933333pt;}
.y1c5{bottom:727.226667pt;}
.y158{bottom:728.533333pt;}
.y17e{bottom:731.738667pt;}
.y8b{bottom:732.533333pt;}
.y1f2{bottom:732.800000pt;}
.y10e{bottom:734.133333pt;}
.y21f{bottom:734.400000pt;}
.y44{bottom:735.226667pt;}
.ycf{bottom:736.533333pt;}
.y131{bottom:739.754667pt;}
.y14{bottom:740.266667pt;}
.yae{bottom:742.133333pt;}
.y157{bottom:743.200000pt;}
.y1c4{bottom:747.754667pt;}
.y1f1{bottom:750.133333pt;}
.y1a5{bottom:750.400000pt;}
.y21e{bottom:751.466667pt;}
.y17d{bottom:752.538667pt;}
.y43{bottom:755.754667pt;}
.yce{bottom:757.066667pt;}
.y13{bottom:757.600000pt;}
.y130{bottom:760.554667pt;}
.y1f0{bottom:767.466667pt;}
.y10d{bottom:768.533333pt;}
.y1c3{bottom:768.554667pt;}
.y21d{bottom:768.800000pt;}
.y88{bottom:769.333333pt;}
.y156{bottom:770.400000pt;}
.yad{bottom:770.666667pt;}
.y17c{bottom:773.338667pt;}
.y42{bottom:776.554667pt;}
.y1a4{bottom:777.333333pt;}
.y12f{bottom:781.354667pt;}
.y89{bottom:781.866667pt;}
.y1ef{bottom:784.533333pt;}
.y21c{bottom:786.133333pt;}
.y151{bottom:787.466667pt;}
.y1c2{bottom:789.354667pt;}
.y12{bottom:790.933333pt;}
.y1a3{bottom:792.266667pt;}
.y17b{bottom:793.866667pt;}
.y10b{bottom:797.333333pt;}
.y41{bottom:797.354667pt;}
.yac{bottom:800.800000pt;}
.y10c{bottom:801.066667pt;}
.y1ee{bottom:801.866667pt;}
.y21b{bottom:803.200000pt;}
.y11{bottom:808.000000pt;}
.y155{bottom:808.266667pt;}
.y12e{bottom:809.882667pt;}
.y40{bottom:817.882667pt;}
.y1a2{bottom:819.200000pt;}
.y21a{bottom:820.533333pt;}
.y17a{bottom:822.410667pt;}
.y154{bottom:825.600000pt;}
.y10{bottom:826.138667pt;}
.y12d{bottom:830.682667pt;}
.y87{bottom:831.200000pt;}
.y10a{bottom:831.733333pt;}
.y1ed{bottom:836.266667pt;}
.y219{bottom:837.866667pt;}
.y3f{bottom:838.682667pt;}
.y153{bottom:842.933333pt;}
.yab{bottom:843.210667pt;}
.y1a1{bottom:846.133333pt;}
.yf{bottom:846.666667pt;}
.y12c{bottom:851.210667pt;}
.y86{bottom:852.000000pt;}
.y1ec{bottom:853.600000pt;}
.y218{bottom:855.200000pt;}
.y3e{bottom:859.210667pt;}
.y109{bottom:860.533333pt;}
.y179{bottom:864.010667pt;}
.ye{bottom:867.994667pt;}
.y1eb{bottom:870.933333pt;}
.yaa{bottom:872.010667pt;}
.y217{bottom:872.266667pt;}
.y1a0{bottom:873.066667pt;}
.y150{bottom:874.400000pt;}
.y3d{bottom:880.010667pt;}
.y85{bottom:880.533333pt;}
.y178{bottom:884.810667pt;}
.y108{bottom:889.066667pt;}
.y216{bottom:889.600000pt;}
.yd{bottom:892.261333pt;}
.y1c1{bottom:892.810667pt;}
.y19f{bottom:900.000000pt;}
.ya9{bottom:900.538667pt;}
.y3c{bottom:900.810667pt;}
.y84{bottom:901.333333pt;}
.y14f{bottom:905.338667pt;}
.y1ea{bottom:906.933333pt;}
.y177{bottom:913.338667pt;}
.yc{bottom:916.266667pt;}
.y80{bottom:918.933333pt;}
.y3b{bottom:921.338667pt;}
.y1e9{bottom:924.000000pt;}
.y82{bottom:931.466667pt;}
.y107{bottom:933.066667pt;}
.y14e{bottom:934.138667pt;}
.y19e{bottom:939.733333pt;}
.yb{bottom:940.533333pt;}
.y1e8{bottom:941.333333pt;}
.y3a{bottom:942.138667pt;}
.y104{bottom:948.000000pt;}
.y176{bottom:954.938667pt;}
.y19c{bottom:955.466667pt;}
.y1e7{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y14d{bottom:962.666667pt;}
.y39{bottom:962.938667pt;}
.y7e{bottom:969.600000pt;}
.y1e6{bottom:975.733333pt;}
.y6{bottom:980.800000pt;}
.y38{bottom:983.466667pt;}
.y1e5{bottom:993.066667pt;}
.y103{bottom:996.272000pt;}
.y5{bottom:1003.733333pt;}
.y37{bottom:1004.266667pt;}
.y1e4{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y102{bottom:1024.800000pt;}
.y36{bottom:1025.066667pt;}
.y1e3{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y35{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h25{height:17.066667pt;}
.h11{height:18.560000pt;}
.h1e{height:20.533333pt;}
.h5{height:20.801333pt;}
.h9{height:21.332000pt;}
.h2b{height:26.933333pt;}
.h27{height:26.934667pt;}
.h29{height:27.200000pt;}
.h4{height:27.840000pt;}
.h1b{height:28.532000pt;}
.h17{height:28.533333pt;}
.h14{height:28.800000pt;}
.h1c{height:28.801333pt;}
.h24{height:34.398667pt;}
.h23{height:34.400000pt;}
.h19{height:34.665333pt;}
.h22{height:34.666667pt;}
.h10{height:37.120000pt;}
.h3{height:39.040000pt;}
.h20{height:41.598667pt;}
.h12{height:41.875000pt;}
.h7{height:42.133333pt;}
.h2e{height:42.944000pt;}
.h2{height:43.040000pt;}
.hf{height:46.400000pt;}
.h13{height:46.848000pt;}
.h28{height:47.344000pt;}
.h15{height:49.333333pt;}
.h1a{height:49.334667pt;}
.h2a{height:51.040000pt;}
.h8{height:51.648000pt;}
.h16{height:52.343750pt;}
.h2d{height:55.625000pt;}
.he{height:55.680000pt;}
.h2c{height:59.125000pt;}
.hc{height:60.256000pt;}
.ha{height:62.812500pt;}
.h6{height:64.500000pt;}
.hb{height:64.960000pt;}
.h21{height:66.750000pt;}
.h18{height:70.133333pt;}
.hd{height:75.250000pt;}
.h26{height:86.133333pt;}
.h1f{height:260.000000pt;}
.h1d{height:284.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1b{width:67.998667pt;}
.w1d{width:70.398667pt;}
.w1c{width:70.400000pt;}
.w13{width:73.601333pt;}
.w20{width:74.400000pt;}
.w1f{width:74.666667pt;}
.w21{width:74.668000pt;}
.w8{width:77.865333pt;}
.w6{width:77.866667pt;}
.wa{width:78.133333pt;}
.w17{width:78.666667pt;}
.w7{width:79.466667pt;}
.w19{width:85.601333pt;}
.w5{width:92.266667pt;}
.w14{width:94.398667pt;}
.wb{width:94.666667pt;}
.w1a{width:98.666667pt;}
.w18{width:100.266667pt;}
.w11{width:105.868000pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.wf{width:141.600000pt;}
.we{width:141.866667pt;}
.w9{width:148.001333pt;}
.w10{width:211.466667pt;}
.wd{width:255.200000pt;}
.w15{width:264.533333pt;}
.w16{width:269.598667pt;}
.w12{width:292.800000pt;}
.w1e{width:332.800000pt;}
.w2{width:425.066667pt;}
.wc{width:630.400000pt;}
.w22{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x4d{left:9.333333pt;}
.x70{left:10.666667pt;}
.x27{left:12.533333pt;}
.x28{left:13.600000pt;}
.x71{left:14.933333pt;}
.x31{left:16.266667pt;}
.x6b{left:17.333333pt;}
.x84{left:18.400000pt;}
.x1a{left:20.533333pt;}
.x1d{left:21.600000pt;}
.x3c{left:24.266667pt;}
.x39{left:25.333333pt;}
.x62{left:26.400000pt;}
.x40{left:28.000000pt;}
.x29{left:29.600000pt;}
.x64{left:31.733333pt;}
.x38{left:36.000000pt;}
.x69{left:39.733333pt;}
.x4b{left:42.133333pt;}
.x66{left:44.266667pt;}
.x18{left:46.133333pt;}
.x4e{left:48.266667pt;}
.x75{left:49.866667pt;}
.x67{left:53.066667pt;}
.x3e{left:56.000000pt;}
.x50{left:57.866667pt;}
.x51{left:62.133333pt;}
.x53{left:66.400000pt;}
.x45{left:69.333333pt;}
.x3{left:70.933333pt;}
.x57{left:74.666667pt;}
.x1{left:81.333333pt;}
.x68{left:82.400000pt;}
.x11{left:85.066667pt;}
.xf{left:87.466667pt;}
.x30{left:89.066667pt;}
.x58{left:91.200000pt;}
.xa1{left:93.600000pt;}
.x55{left:96.000000pt;}
.x54{left:97.333333pt;}
.x3a{left:100.533333pt;}
.x74{left:102.400000pt;}
.x4f{left:104.266667pt;}
.xa6{left:105.333333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.xa{left:112.525333pt;}
.x9e{left:114.666667pt;}
.x17{left:116.266667pt;}
.x5a{left:118.133333pt;}
.x6d{left:119.200000pt;}
.x3b{left:120.800000pt;}
.x26{left:123.466667pt;}
.x60{left:124.800000pt;}
.x49{left:127.466667pt;}
.x12{left:128.533333pt;}
.x3d{left:129.600000pt;}
.x2a{left:131.733333pt;}
.x21{left:133.066667pt;}
.x23{left:135.733333pt;}
.x25{left:137.866667pt;}
.x2b{left:141.066667pt;}
.x22{left:143.466667pt;}
.x76{left:144.800000pt;}
.x14{left:146.133333pt;}
.x85{left:149.333333pt;}
.xa9{left:152.517333pt;}
.xaa{left:153.866667pt;}
.xa7{left:157.066667pt;}
.x82{left:158.133333pt;}
.x9f{left:160.533333pt;}
.x9{left:161.600000pt;}
.xa3{left:178.133333pt;}
.xd{left:179.733333pt;}
.x5f{left:183.205333pt;}
.xa5{left:185.333333pt;}
.x16{left:188.261333pt;}
.x6a{left:200.533333pt;}
.x86{left:202.666667pt;}
.x6c{left:203.733333pt;}
.x65{left:207.466667pt;}
.x19{left:208.533333pt;}
.x41{left:210.400000pt;}
.x5c{left:214.400000pt;}
.xb{left:217.600000pt;}
.x87{left:219.733333pt;}
.x24{left:221.066667pt;}
.x77{left:222.666667pt;}
.xa4{left:226.133333pt;}
.x5b{left:228.266667pt;}
.x52{left:231.733333pt;}
.x2c{left:233.600000pt;}
.x9b{left:235.733333pt;}
.x32{left:237.066667pt;}
.xa2{left:238.933333pt;}
.xc{left:243.466667pt;}
.xa0{left:244.533333pt;}
.x92{left:250.400000pt;}
.x72{left:253.333333pt;}
.x2f{left:256.261333pt;}
.x2d{left:257.866667pt;}
.x5d{left:273.066667pt;}
.x99{left:278.666667pt;}
.x1b{left:286.400000pt;}
.x42{left:288.266667pt;}
.x88{left:290.133333pt;}
.x3f{left:296.005333pt;}
.x47{left:300.000000pt;}
.x78{left:308.800000pt;}
.x33{left:314.933333pt;}
.x79{left:319.733333pt;}
.x93{left:320.800000pt;}
.x83{left:322.677333pt;}
.x7a{left:325.333333pt;}
.x7b{left:329.333333pt;}
.xe{left:332.533333pt;}
.x61{left:336.266667pt;}
.x89{left:343.466667pt;}
.x8a{left:360.533333pt;}
.x1c{left:364.266667pt;}
.x43{left:366.133333pt;}
.x4a{left:382.666667pt;}
.x94{left:391.200000pt;}
.x34{left:392.800000pt;}
.x73{left:394.666667pt;}
.x2{left:396.800000pt;}
.x10{left:399.466667pt;}
.x7c{left:409.333333pt;}
.x7d{left:410.933333pt;}
.x48{left:412.000000pt;}
.x5e{left:414.400000pt;}
.x13{left:420.533333pt;}
.x8b{left:430.933333pt;}
.xa8{left:438.933333pt;}
.x1e{left:443.733333pt;}
.x56{left:444.800000pt;}
.x59{left:449.066667pt;}
.x95{left:461.600000pt;}
.x35{left:470.933333pt;}
.x7e{left:473.066667pt;}
.x8c{left:484.266667pt;}
.x6e{left:485.600000pt;}
.x9c{left:488.800000pt;}
.x5{left:496.000000pt;}
.x8d{left:501.333333pt;}
.x1f{left:521.600000pt;}
.x4c{left:524.533333pt;}
.x96{left:532.000000pt;}
.x36{left:548.800000pt;}
.x8e{left:554.666667pt;}
.x63{left:563.200000pt;}
.x44{left:564.266667pt;}
.x46{left:565.600000pt;}
.x7f{left:571.733333pt;}
.x6f{left:580.266667pt;}
.x80{left:586.133333pt;}
.x81{left:591.466667pt;}
.x20{left:599.466667pt;}
.x97{left:602.400000pt;}
.x7{left:609.600000pt;}
.x8f{left:625.066667pt;}
.x37{left:626.666667pt;}
.x9d{left:637.866667pt;}
.x90{left:642.133333pt;}
.x15{left:663.733333pt;}
.x2e{left:668.533333pt;}
.x98{left:672.800000pt;}
.x91{left:695.466667pt;}
.x9a{left:712.549333pt;}
}




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