
    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_ef24cca67c11fc96ef45de01.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_67dc51f223b03ccf5fa89d52.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_990a9df56fa10d4b150f5891.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_53f3387f9fbaf670767e0381.woff')format("woff");}.ff4{font-family:ff4;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d02cffdf9bfca63b04dc284c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8675879b671b1834c3b35761.woff')format("woff");}.ff6{font-family:ff6;line-height:4.457031;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_1ac953dbd9b8442994ee0a49.woff')format("woff");}.ff7{font-family:ff7;line-height:0.931152;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_fd8d780344e2cdccdcbf5fbf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e7419f0f243a8c101f557879.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_108548bf9b19dde7d3b61851.woff')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_afb24da17265593ebc320f0b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_948e0b0800f931379015560a.woff')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-149.398200px;}
.v1c{vertical-align:-134.308080px;}
.v14{vertical-align:-112.304160px;}
.v24{vertical-align:-109.057680px;}
.v15{vertical-align:-72.384480px;}
.v12{vertical-align:-69.859440px;}
.vd{vertical-align:-23.385600px;}
.v1f{vertical-align:-22.336560px;}
.v2{vertical-align:-20.880000px;}
.v8{vertical-align:-13.346640px;}
.v11{vertical-align:-12.220560px;}
.v1b{vertical-align:-8.640720px;}
.v5{vertical-align:-6.101280px;}
.v13{vertical-align:-2.525040px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.885760px;}
.v16{vertical-align:5.050080px;}
.v26{vertical-align:6.120000px;}
.v22{vertical-align:8.640000px;}
.v17{vertical-align:12.240000px;}
.v7{vertical-align:13.346640px;}
.v19{vertical-align:14.760000px;}
.v20{vertical-align:18.000000px;}
.v3{vertical-align:21.252960px;}
.v1{vertical-align:27.000000px;}
.vc{vertical-align:28.100520px;}
.v1a{vertical-align:30.240000px;}
.v1d{vertical-align:32.344560px;}
.v21{vertical-align:34.200000px;}
.v1e{vertical-align:35.296560px;}
.v9{vertical-align:36.720000px;}
.vb{vertical-align:40.340520px;}
.v18{vertical-align:42.845040px;}
.va{vertical-align:45.330480px;}
.v23{vertical-align:52.244280px;}
.v10{vertical-align:63.032400px;}
.vf{vertical-align:64.472400px;}
.v25{vertical-align:65.538720px;}
.ve{vertical-align:76.712400px;}
.ls4c{letter-spacing:-0.721440px;}
.ls8e{letter-spacing:-0.541080px;}
.ls12{letter-spacing:-0.480960px;}
.ls31{letter-spacing:-0.420840px;}
.ls35{letter-spacing:-0.380232px;}
.ls3c{letter-spacing:-0.360720px;}
.lsd{letter-spacing:-0.357840px;}
.ls32{letter-spacing:-0.300600px;}
.ls33{letter-spacing:-0.240480px;}
.ls76{letter-spacing:-0.210600px;}
.ls9{letter-spacing:-0.192240px;}
.lsf{letter-spacing:-0.180360px;}
.ls74{letter-spacing:-0.168480px;}
.lsb{letter-spacing:-0.156240px;}
.ls75{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.120240px;}
.ls78{letter-spacing:-0.084240px;}
.lsc{letter-spacing:-0.078120px;}
.ls10{letter-spacing:-0.065880px;}
.ls11{letter-spacing:-0.060120px;}
.lsa{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.010440px;}
.ls7b{letter-spacing:0.012960px;}
.ls54{letter-spacing:0.019800px;}
.ls48{letter-spacing:0.032760px;}
.ls8d{letter-spacing:0.036072px;}
.ls46{letter-spacing:0.038880px;}
.ls77{letter-spacing:0.042120px;}
.ls58{letter-spacing:0.043920px;}
.ls4b{letter-spacing:0.048960px;}
.ls5e{letter-spacing:0.050040px;}
.ls41{letter-spacing:0.052560px;}
.ls4f{letter-spacing:0.055440px;}
.ls7e{letter-spacing:0.059400px;}
.ls2{letter-spacing:0.060120px;}
.ls66{letter-spacing:0.064440px;}
.ls14{letter-spacing:0.065880px;}
.ls18{letter-spacing:0.078156px;}
.ls90{letter-spacing:0.080280px;}
.ls39{letter-spacing:0.082800px;}
.ls3b{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.096120px;}
.ls81{letter-spacing:0.102204px;}
.ls15{letter-spacing:0.114228px;}
.ls0{letter-spacing:0.120240px;}
.ls34{letter-spacing:0.126744px;}
.ls45{letter-spacing:0.138960px;}
.ls1e{letter-spacing:0.176760px;}
.ls6{letter-spacing:0.180360px;}
.ls3f{letter-spacing:0.186372px;}
.ls7{letter-spacing:0.192240px;}
.ls91{letter-spacing:0.192384px;}
.ls13{letter-spacing:0.197640px;}
.ls88{letter-spacing:0.390780px;}
.ls5{letter-spacing:0.420840px;}
.ls83{letter-spacing:0.480960px;}
.ls7d{letter-spacing:0.781560px;}
.ls7c{letter-spacing:1.142280px;}
.ls69{letter-spacing:1.379880px;}
.ls80{letter-spacing:1.503000px;}
.ls67{letter-spacing:1.620000px;}
.ls68{letter-spacing:1.728000px;}
.ls44{letter-spacing:2.172240px;}
.ls3a{letter-spacing:2.206440px;}
.ls79{letter-spacing:2.224440px;}
.ls38{letter-spacing:2.335320px;}
.ls26{letter-spacing:2.517120px;}
.ls42{letter-spacing:2.532240px;}
.ls37{letter-spacing:2.566440px;}
.ls8b{letter-spacing:2.585160px;}
.ls62{letter-spacing:2.612520px;}
.ls28{letter-spacing:2.695320px;}
.ls3e{letter-spacing:3.306600px;}
.ls84{letter-spacing:3.667320px;}
.ls64{letter-spacing:3.697920px;}
.ls5f{letter-spacing:3.709800px;}
.ls51{letter-spacing:3.935880px;}
.ls63{letter-spacing:4.018320px;}
.ls5c{letter-spacing:4.019040px;}
.ls19{letter-spacing:4.028040px;}
.ls5a{letter-spacing:4.629240px;}
.ls2b{letter-spacing:4.749480px;}
.ls5d{letter-spacing:4.989960px;}
.ls8c{letter-spacing:5.110200px;}
.ls85{letter-spacing:5.470920px;}
.ls56{letter-spacing:5.531040px;}
.ls2a{letter-spacing:5.760000px;}
.ls4{letter-spacing:5.831640px;}
.ls86{letter-spacing:6.018012px;}
.ls87{letter-spacing:6.192360px;}
.ls57{letter-spacing:6.372720px;}
.ls1f{letter-spacing:6.480000px;}
.ls55{letter-spacing:6.553080px;}
.ls1{letter-spacing:6.913800px;}
.ls16{letter-spacing:7.246800px;}
.ls8f{letter-spacing:7.274520px;}
.ls6d{letter-spacing:7.995960px;}
.ls8a{letter-spacing:8.356680px;}
.ls89{letter-spacing:8.428824px;}
.ls6f{letter-spacing:9.438840px;}
.ls1b{letter-spacing:9.619200px;}
.ls1c{letter-spacing:9.739440px;}
.ls1d{letter-spacing:9.979920px;}
.ls29{letter-spacing:10.160280px;}
.ls82{letter-spacing:10.881720px;}
.ls53{letter-spacing:11.001960px;}
.ls17{letter-spacing:11.963880px;}
.ls30{letter-spacing:12.324600px;}
.ls27{letter-spacing:13.046040px;}
.ls71{letter-spacing:13.106160px;}
.ls43{letter-spacing:13.226400px;}
.ls2d{letter-spacing:13.406760px;}
.ls50{letter-spacing:13.466880px;}
.ls6c{letter-spacing:15.120000px;}
.ls2c{letter-spacing:15.333480px;}
.ls5b{letter-spacing:15.572520px;}
.ls25{letter-spacing:15.693480px;}
.ls6b{letter-spacing:16.292520px;}
.ls22{letter-spacing:16.653240px;}
.ls1a{letter-spacing:17.013960px;}
.ls61{letter-spacing:17.975880px;}
.ls24{letter-spacing:19.298520px;}
.ls2f{letter-spacing:19.899720px;}
.ls21{letter-spacing:20.260440px;}
.ls52{letter-spacing:20.770200px;}
.ls3{letter-spacing:39.989160px;}
.ls49{letter-spacing:43.450200px;}
.ls3d{letter-spacing:46.292400px;}
.ls23{letter-spacing:53.924760px;}
.ls72{letter-spacing:59.163120px;}
.ls73{letter-spacing:61.227360px;}
.ls4d{letter-spacing:63.546840px;}
.ls6a{letter-spacing:110.340000px;}
.ls60{letter-spacing:145.892520px;}
.ls4e{letter-spacing:152.524440px;}
.ls65{letter-spacing:297.092520px;}
.ls2e{letter-spacing:317.909880px;}
.ls6e{letter-spacing:338.114880px;}
.ls7a{letter-spacing:378.810000px;}
.ls36{letter-spacing:536.150160px;}
.ls20{letter-spacing:575.709120px;}
.ls59{letter-spacing:748.554120px;}
.ls70{letter-spacing:753.904800px;}
.ls4a{letter-spacing:768.694320px;}
.ls47{letter-spacing:868.794120px;}
.ls40{letter-spacing:896.870160px;}
.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;}
}
.ws9{word-spacing:-16.667640px;}
.wsa{word-spacing:-16.535880px;}
.wse2{word-spacing:-16.470000px;}
.ws4{word-spacing:-16.404120px;}
.ws64{word-spacing:-15.210360px;}
.ws71{word-spacing:-15.150240px;}
.ws85{word-spacing:-15.090120px;}
.ws6{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.969880px;}
.ws5{word-spacing:-14.909760px;}
.ws3{word-spacing:-14.849640px;}
.ws84{word-spacing:-14.789520px;}
.wsa7{word-spacing:-14.669280px;}
.ws86{word-spacing:-14.609160px;}
.ws7{word-spacing:-14.549040px;}
.ws65{word-spacing:-13.346640px;}
.ws67{word-spacing:-13.286520px;}
.ws34{word-spacing:-13.226400px;}
.ws92{word-spacing:-13.166280px;}
.ws9f{word-spacing:-13.106160px;}
.ws6b{word-spacing:-12.985920px;}
.ws66{word-spacing:-12.925800px;}
.ws0{word-spacing:-12.780000px;}
.ws1{word-spacing:-12.422160px;}
.ws2{word-spacing:-9.720000px;}
.wsa9{word-spacing:-9.308520px;}
.ws68{word-spacing:-9.266400px;}
.wsaa{word-spacing:-9.182160px;}
.wsa0{word-spacing:-9.097920px;}
.wsa3{word-spacing:-9.055800px;}
.wsa1{word-spacing:-7.776000px;}
.wse{word-spacing:-4.998240px;}
.ws7c{word-spacing:-4.028040px;}
.ws97{word-spacing:-3.787560px;}
.ws3d{word-spacing:-3.667320px;}
.wsb1{word-spacing:-3.426840px;}
.ws96{word-spacing:-3.366720px;}
.ws43{word-spacing:-3.306600px;}
.ws87{word-spacing:-3.066120px;}
.ws88{word-spacing:-3.006000px;}
.ws58{word-spacing:-2.945880px;}
.ws5a{word-spacing:-2.885760px;}
.ws57{word-spacing:-2.705400px;}
.ws5b{word-spacing:-2.645280px;}
.ws59{word-spacing:-2.585160px;}
.wscf{word-spacing:-2.344680px;}
.wsdc{word-spacing:-2.284560px;}
.ws1e{word-spacing:-2.224440px;}
.wsc5{word-spacing:-1.983960px;}
.wsd9{word-spacing:-1.923840px;}
.ws2a{word-spacing:-1.863720px;}
.wse6{word-spacing:-1.623240px;}
.ws29{word-spacing:-1.563120px;}
.wsc7{word-spacing:-1.503000px;}
.ws95{word-spacing:-1.262520px;}
.ws49{word-spacing:-1.202400px;}
.ws1c{word-spacing:-1.142280px;}
.ws13{word-spacing:-0.901800px;}
.ws1d{word-spacing:-0.841680px;}
.ws30{word-spacing:-0.781560px;}
.wsc3{word-spacing:-0.541080px;}
.ws1f{word-spacing:-0.480960px;}
.ws74{word-spacing:-0.420840px;}
.wsf3{word-spacing:-0.360720px;}
.wsab{word-spacing:-0.329400px;}
.wsff{word-spacing:-0.300600px;}
.wsce{word-spacing:-0.240480px;}
.wse8{word-spacing:-0.197640px;}
.ws32{word-spacing:-0.180360px;}
.ws8a{word-spacing:-0.131760px;}
.ws7b{word-spacing:-0.126744px;}
.ws31{word-spacing:-0.120240px;}
.wsb{word-spacing:-0.060120px;}
.wsb6{word-spacing:-0.042120px;}
.wsc{word-spacing:-0.038880px;}
.ws10{word-spacing:0.000000px;}
.ws90{word-spacing:0.060120px;}
.ws11{word-spacing:0.078120px;}
.ws76{word-spacing:0.120240px;}
.ws53{word-spacing:0.131760px;}
.ws52{word-spacing:0.180360px;}
.ws12{word-spacing:0.240480px;}
.wsf{word-spacing:0.288360px;}
.ws46{word-spacing:0.300600px;}
.ws91{word-spacing:0.360720px;}
.ws7e{word-spacing:0.380232px;}
.ws7d{word-spacing:0.420840px;}
.ws2d{word-spacing:0.541080px;}
.ws2e{word-spacing:0.601200px;}
.wsc2{word-spacing:0.661320px;}
.ws9c{word-spacing:0.721440px;}
.wsdb{word-spacing:0.901800px;}
.ws61{word-spacing:0.961920px;}
.ws38{word-spacing:1.022040px;}
.wse3{word-spacing:1.262520px;}
.ws37{word-spacing:1.322640px;}
.ws60{word-spacing:1.382760px;}
.ws8b{word-spacing:1.563120px;}
.wsb0{word-spacing:1.623240px;}
.ws5f{word-spacing:1.683360px;}
.ws8c{word-spacing:1.743480px;}
.wsd5{word-spacing:1.923840px;}
.wsd3{word-spacing:1.983960px;}
.ws36{word-spacing:2.044080px;}
.wsbc{word-spacing:2.284560px;}
.wsba{word-spacing:2.344680px;}
.ws40{word-spacing:2.404800px;}
.ws48{word-spacing:2.645280px;}
.wsbf{word-spacing:2.705400px;}
.ws20{word-spacing:2.765520px;}
.wsea{word-spacing:2.898720px;}
.ws72{word-spacing:3.006000px;}
.ws73{word-spacing:3.066120px;}
.ws26{word-spacing:3.126240px;}
.wsc1{word-spacing:3.186360px;}
.wse9{word-spacing:3.294000px;}
.ws94{word-spacing:3.366720px;}
.wsc0{word-spacing:3.426840px;}
.ws25{word-spacing:3.486960px;}
.wsd0{word-spacing:3.727440px;}
.ws3c{word-spacing:3.787560px;}
.wse1{word-spacing:3.847680px;}
.ws5c{word-spacing:4.088160px;}
.ws4d{word-spacing:4.148280px;}
.ws16{word-spacing:4.208400px;}
.ws93{word-spacing:4.268520px;}
.ws9e{word-spacing:4.448880px;}
.ws35{word-spacing:4.509000px;}
.ws24{word-spacing:4.569120px;}
.ws78{word-spacing:4.809600px;}
.ws15{word-spacing:4.869720px;}
.ws21{word-spacing:4.929840px;}
.wsd1{word-spacing:4.989960px;}
.wsd6{word-spacing:5.170320px;}
.ws22{word-spacing:5.230440px;}
.ws23{word-spacing:5.290560px;}
.wse0{word-spacing:5.350680px;}
.ws8d{word-spacing:5.531040px;}
.ws100{word-spacing:5.591160px;}
.ws56{word-spacing:5.651280px;}
.wsbd{word-spacing:5.711400px;}
.wsbe{word-spacing:5.831640px;}
.ws27{word-spacing:5.891760px;}
.ws4a{word-spacing:5.951880px;}
.ws4b{word-spacing:6.012000px;}
.wsb2{word-spacing:6.252480px;}
.ws4c{word-spacing:6.312600px;}
.ws3a{word-spacing:6.372720px;}
.wsd4{word-spacing:6.432840px;}
.ws1a{word-spacing:6.613200px;}
.wsf1{word-spacing:6.673320px;}
.wsad{word-spacing:6.733440px;}
.ws1b{word-spacing:6.973920px;}
.wsdd{word-spacing:7.034040px;}
.ws8e{word-spacing:7.094160px;}
.wsac{word-spacing:7.334640px;}
.wsee{word-spacing:7.394760px;}
.ws99{word-spacing:7.454880px;}
.wsf7{word-spacing:7.515000px;}
.wsfd{word-spacing:7.695360px;}
.ws28{word-spacing:7.755480px;}
.ws2f{word-spacing:7.815600px;}
.ws51{word-spacing:7.875720px;}
.wsfa{word-spacing:8.056080px;}
.ws2b{word-spacing:8.116200px;}
.wsd7{word-spacing:8.176320px;}
.wsd8{word-spacing:8.236440px;}
.ws3f{word-spacing:8.416800px;}
.wscd{word-spacing:8.476920px;}
.ws3e{word-spacing:8.537040px;}
.wsf8{word-spacing:8.777520px;}
.ws62{word-spacing:8.837640px;}
.ws63{word-spacing:8.897760px;}
.wseb{word-spacing:8.957880px;}
.wsb5{word-spacing:9.198360px;}
.wsde{word-spacing:9.258480px;}
.wsb4{word-spacing:9.498960px;}
.wsda{word-spacing:9.619200px;}
.ws75{word-spacing:9.859680px;}
.ws98{word-spacing:9.919800px;}
.wse7{word-spacing:9.979920px;}
.ws89{word-spacing:10.340640px;}
.ws39{word-spacing:10.581120px;}
.ws14{word-spacing:10.641240px;}
.ws47{word-spacing:10.701360px;}
.ws33{word-spacing:10.941840px;}
.wscc{word-spacing:11.001960px;}
.ws42{word-spacing:11.062080px;}
.ws41{word-spacing:11.302560px;}
.wsf9{word-spacing:11.422800px;}
.ws55{word-spacing:11.783520px;}
.ws54{word-spacing:11.963880px;}
.ws50{word-spacing:12.084120px;}
.ws82{word-spacing:12.144240px;}
.wsd2{word-spacing:12.384720px;}
.wsdf{word-spacing:12.444840px;}
.wsc8{word-spacing:12.504960px;}
.ws9a{word-spacing:12.745440px;}
.ws45{word-spacing:12.865680px;}
.wsa5{word-spacing:12.985920px;}
.wsb8{word-spacing:13.046040px;}
.wse4{word-spacing:13.106160px;}
.ws44{word-spacing:13.166280px;}
.ws2c{word-spacing:13.226400px;}
.wsa6{word-spacing:13.346640px;}
.wsae{word-spacing:13.466880px;}
.wsaf{word-spacing:13.527000px;}
.wsf2{word-spacing:13.827600px;}
.wsb3{word-spacing:13.947840px;}
.ws77{word-spacing:14.188320px;}
.wsfc{word-spacing:14.308560px;}
.wsfb{word-spacing:14.549040px;}
.wse5{word-spacing:15.030000px;}
.ws4e{word-spacing:15.270480px;}
.ws4f{word-spacing:15.330600px;}
.ws7a{word-spacing:15.450840px;}
.wsbb{word-spacing:15.631200px;}
.ws79{word-spacing:15.691320px;}
.wsc4{word-spacing:15.751440px;}
.ws3b{word-spacing:16.112160px;}
.wsa4{word-spacing:16.232400px;}
.wsb7{word-spacing:16.292520px;}
.wsca{word-spacing:16.352640px;}
.wsc9{word-spacing:16.412760px;}
.ws5e{word-spacing:16.472880px;}
.ws5d{word-spacing:17.134200px;}
.wsf4{word-spacing:17.194320px;}
.wscb{word-spacing:17.434800px;}
.ws102{word-spacing:17.915760px;}
.ws101{word-spacing:18.216360px;}
.wsfe{word-spacing:18.877680px;}
.wsf5{word-spacing:18.997920px;}
.ws81{word-spacing:19.358640px;}
.wsf6{word-spacing:19.599120px;}
.ws80{word-spacing:19.719360px;}
.ws9b{word-spacing:19.959840px;}
.ws7f{word-spacing:20.019960px;}
.wsd{word-spacing:20.089080px;}
.ws19{word-spacing:20.440800px;}
.ws18{word-spacing:20.741400px;}
.ws8f{word-spacing:22.605120px;}
.wsef{word-spacing:25.370640px;}
.ws9d{word-spacing:25.490880px;}
.wsed{word-spacing:25.851600px;}
.wsc6{word-spacing:26.152200px;}
.wsec{word-spacing:26.212320px;}
.wsf0{word-spacing:29.398680px;}
.ws17{word-spacing:32.585040px;}
.wsa8{word-spacing:32.881968px;}
.ws70{word-spacing:69.250320px;}
.ws6d{word-spacing:69.629400px;}
.ws6a{word-spacing:92.293200px;}
.ws6f{word-spacing:105.253200px;}
.wsb9{word-spacing:105.894216px;}
.ws83{word-spacing:215.413200px;}
.wsa2{word-spacing:250.030800px;}
.ws6c{word-spacing:319.051080px;}
.ws6e{word-spacing:319.074120px;}
.ws69{word-spacing:319.093200px;}
._6{margin-left:-37.094040px;}
._f{margin-left:-20.960640px;}
._8{margin-left:-15.752160px;}
._4{margin-left:-4.610124px;}
._3{margin-left:-2.623824px;}
._0{margin-left:-1.182276px;}
._1{width:1.009260px;}
._d{width:2.684160px;}
._9{width:3.860460px;}
._e{width:5.591160px;}
._11{width:6.913800px;}
._a{width:9.068004px;}
._2{width:10.380636px;}
._7{width:12.540564px;}
._b{width:14.176836px;}
._5{width:16.472880px;}
._10{width:17.769600px;}
._c{width:19.298520px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fsa{font-size:47.880000px;}
.fs2{font-size:51.120000px;}
.fs5{font-size:60.120000px;}
.fs8{font-size:63.372044px;}
.fs3{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:78.120000px;}
.fs0{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:3.240000px;}
.ycf{bottom:20.430000px;}
.yd6{bottom:20.520000px;}
.yd2{bottom:37.800000px;}
.y6c{bottom:111.775500px;}
.y200{bottom:113.310000px;}
.ydd{bottom:113.490000px;}
.ya8{bottom:113.662620px;}
.y171{bottom:115.830270px;}
.y1af{bottom:117.918900px;}
.y293{bottom:119.018700px;}
.y104{bottom:119.340000px;}
.y280{bottom:121.374540px;}
.y25a{bottom:121.590000px;}
.y13a{bottom:123.930000px;}
.y34{bottom:124.106760px;}
.y1fd{bottom:125.870040px;}
.y6b{bottom:129.055500px;}
.ydb{bottom:129.600000px;}
.y1ff{bottom:131.130000px;}
.ya7{bottom:132.652530px;}
.y169{bottom:133.331040px;}
.y170{bottom:134.820180px;}
.y1d8{bottom:135.081180px;}
.y1bd{bottom:135.180000px;}
.y1ae{bottom:135.203400px;}
.y103{bottom:137.925540px;}
.y139{bottom:138.055320px;}
.y27f{bottom:138.659040px;}
.y292{bottom:138.903390px;}
.y259{bottom:139.590000px;}
.y33{bottom:141.391260px;}
.y1fc{bottom:143.154540px;}
.y138{bottom:145.620000px;}
.y6a{bottom:146.335320px;}
.ydc{bottom:150.120000px;}
.y168{bottom:150.615540px;}
.y1fe{bottom:151.204140px;}
.ya6{bottom:151.560090px;}
.y1d7{bottom:152.275500px;}
.y1ad{bottom:152.487900px;}
.y1bc{bottom:153.796680px;}
.y16f{bottom:153.810090px;}
.y102{bottom:155.210040px;}
.y27e{bottom:155.853360px;}
.y258{bottom:157.590000px;}
.y32{bottom:158.675760px;}
.y291{bottom:158.697900px;}
.y237{bottom:158.749830px;}
.y1fb{bottom:160.439040px;}
.y69{bottom:163.710000px;}
.y229{bottom:165.960000px;}
.y137{bottom:166.500000px;}
.y167{bottom:167.900040px;}
.y1d6{bottom:169.560000px;}
.y1ac{bottom:169.682220px;}
.ya5{bottom:170.550000px;}
.y1bb{bottom:171.081180px;}
.y101{bottom:172.404360px;}
.y16e{bottom:172.800000px;}
.y27d{bottom:173.137860px;}
.y257{bottom:175.500000px;}
.y31{bottom:175.870080px;}
.y236{bottom:175.944150px;}
.y1fa{bottom:177.633360px;}
.y290{bottom:178.582590px;}
.y136{bottom:180.540450px;}
.y68{bottom:181.530000px;}
.yda{bottom:182.160000px;}
.y1d5{bottom:183.600000px;}
.y228{bottom:183.960000px;}
.y166{bottom:185.094360px;}
.y1ab{bottom:186.966720px;}
.y1ba{bottom:188.275500px;}
.ya4{bottom:189.170820px;}
.y100{bottom:189.688860px;}
.y27c{bottom:190.422360px;}
.y16d{bottom:191.229030px;}
.y30{bottom:193.154580px;}
.y235{bottom:193.228650px;}
.y256{bottom:193.500000px;}
.y1f9{bottom:194.917860px;}
.y28f{bottom:198.377100px;}
.y67{bottom:200.016720px;}
.y165{bottom:202.378860px;}
.y1aa{bottom:204.251220px;}
.y1b9{bottom:205.560000px;}
.ya3{bottom:206.455320px;}
.yff{bottom:206.973360px;}
.y27b{bottom:207.616680px;}
.y16c{bottom:208.513530px;}
.y2f{bottom:210.348900px;}
.y234{bottom:210.513150px;}
.y255{bottom:211.500000px;}
.y1f8{bottom:212.202360px;}
.y66{bottom:217.301220px;}
.yd9{bottom:217.350000px;}
.y135{bottom:217.890000px;}
.y28e{bottom:218.171610px;}
.y227{bottom:219.240000px;}
.y164{bottom:219.663360px;}
.y1a9{bottom:221.445540px;}
.y1b8{bottom:223.200000px;}
.ya1{bottom:223.820820px;}
.ya2{bottom:223.830000px;}
.yfe{bottom:224.167680px;}
.y27a{bottom:224.901180px;}
.y16b{bottom:225.798030px;}
.y2e{bottom:227.633400px;}
.y233{bottom:227.707470px;}
.y1f7{bottom:229.396680px;}
.y254{bottom:229.500000px;}
.y65{bottom:234.585720px;}
.y134{bottom:235.136880px;}
.y163{bottom:236.857680px;}
.y28d{bottom:238.056300px;}
.y1a8{bottom:238.730040px;}
.y16a{bottom:239.745870px;}
.ya0{bottom:241.285680px;}
.yfd{bottom:241.452180px;}
.y1b7{bottom:241.731000px;}
.y279{bottom:242.185680px;}
.y2d{bottom:244.917900px;}
.y232{bottom:244.991970px;}
.y1f6{bottom:246.681180px;}
.y250{bottom:247.500000px;}
.y64{bottom:251.780040px;}
.y133{bottom:252.331200px;}
.yd8{bottom:252.630000px;}
.y162{bottom:254.142180px;}
.y226{bottom:254.430000px;}
.y1a7{bottom:256.014540px;}
.y28c{bottom:257.850810px;}
.y9f{bottom:258.480000px;}
.yfc{bottom:258.736680px;}
.y1b6{bottom:259.015500px;}
.y253{bottom:259.375500px;}
.y278{bottom:259.380000px;}
.y2c{bottom:262.112220px;}
.y231{bottom:262.276470px;}
.y1f5{bottom:263.965680px;}
.y251{bottom:268.020000px;}
.y63{bottom:269.064540px;}
.y132{bottom:270.697860px;}
.y161{bottom:271.426680px;}
.y1a6{bottom:273.208860px;}
.yfb{bottom:275.931000px;}
.y1b5{bottom:276.300000px;}
.y9a{bottom:276.651900px;}
.y9e{bottom:276.657120px;}
.y252{bottom:276.660000px;}
.y9c{bottom:276.663150px;}
.y277{bottom:277.290000px;}
.y28b{bottom:277.735500px;}
.y2b{bottom:279.396720px;}
.y230{bottom:279.470790px;}
.y1f4{bottom:281.160000px;}
.y197{bottom:285.030000px;}
.y98{bottom:285.744870px;}
.y62{bottom:286.349040px;}
.y97{bottom:286.650000px;}
.yd7{bottom:287.820000px;}
.y131{bottom:287.982360px;}
.y160{bottom:288.621000px;}
.y225{bottom:289.710000px;}
.y1b4{bottom:290.250000px;}
.y1a5{bottom:290.493360px;}
.yfa{bottom:293.215500px;}
.y28a{bottom:295.020000px;}
.y2a{bottom:296.681220px;}
.y22f{bottom:296.755290px;}
.y276{bottom:297.720000px;}
.y1f3{bottom:298.800000px;}
.y24f{bottom:300.060000px;}
.y196{bottom:303.490080px;}
.y61{bottom:303.543360px;}
.y130{bottom:305.176680px;}
.y15f{bottom:305.905500px;}
.y224{bottom:307.710000px;}
.y1a4{bottom:307.777860px;}
.yf9{bottom:310.491000px;}
.y289{bottom:312.570090px;}
.y29{bottom:313.875540px;}
.y22e{bottom:314.039790px;}
.y275{bottom:316.980000px;}
.y1f2{bottom:317.336940px;}
.y99{bottom:318.234870px;}
.y9d{bottom:320.303970px;}
.y9b{bottom:320.310000px;}
.y195{bottom:320.774580px;}
.y60{bottom:320.827860px;}
.y24e{bottom:321.208920px;}
.y12f{bottom:322.461180px;}
.yd5{bottom:323.100000px;}
.y15e{bottom:323.190000px;}
.y1a3{bottom:324.972180px;}
.y223{bottom:325.710000px;}
.yf8{bottom:327.685320px;}
.y28{bottom:331.160040px;}
.y22d{bottom:331.234110px;}
.y288{bottom:331.560000px;}
.y96{bottom:333.265680px;}
.y1f1{bottom:334.531260px;}
.y274{bottom:337.019040px;}
.y194{bottom:338.059080px;}
.y5f{bottom:338.112360px;}
.y24d{bottom:338.403240px;}
.y12e{bottom:339.745680px;}
.y15d{bottom:340.740000px;}
.y1a2{bottom:342.256680px;}
.y222{bottom:343.710000px;}
.y27{bottom:348.444540px;}
.y22c{bottom:348.518610px;}
.y95{bottom:350.460000px;}
.y287{bottom:350.820000px;}
.y1f0{bottom:351.815760px;}
.y273{bottom:354.213360px;}
.y193{bottom:355.253400px;}
.y5e{bottom:355.306680px;}
.y24c{bottom:355.687740px;}
.y12d{bottom:356.940000px;}
.yd4{bottom:358.380000px;}
.y15c{bottom:359.370000px;}
.y1a1{bottom:359.451000px;}
.y221{bottom:361.710000px;}
.y22b{bottom:362.556630px;}
.yf7{bottom:363.123360px;}
.y26{bottom:365.638860px;}
.y94{bottom:368.092530px;}
.y1ef{bottom:369.100260px;}
.y286{bottom:370.876680px;}
.y272{bottom:371.497860px;}
.y192{bottom:372.537900px;}
.y5d{bottom:372.591180px;}
.y24b{bottom:372.972240px;}
.y12c{bottom:375.107850px;}
.y1a0{bottom:376.735500px;}
.y15b{bottom:377.280000px;}
.y220{bottom:379.710000px;}
.yf6{bottom:380.317680px;}
.y25{bottom:382.923360px;}
.y1ee{bottom:386.294580px;}
.y93{bottom:387.082440px;}
.y285{bottom:388.071000px;}
.y12b{bottom:388.710000px;}
.y271{bottom:388.782360px;}
.y191{bottom:389.822400px;}
.y5c{bottom:389.875680px;}
.y24a{bottom:390.166560px;}
.yd1{bottom:393.570000px;}
.y19f{bottom:394.020000px;}
.yf5{bottom:397.602180px;}
.y15a{bottom:397.710000px;}
.y24{bottom:400.207860px;}
.y1ed{bottom:403.579080px;}
.y284{bottom:405.355500px;}
.y270{bottom:405.976680px;}
.y92{bottom:405.990000px;}
.y190{bottom:407.016720px;}
.y5b{bottom:407.070000px;}
.y249{bottom:407.451060px;}
.y19e{bottom:411.570090px;}
.yd3{bottom:414.090000px;}
.yf4{bottom:414.886680px;}
.y12a{bottom:415.431000px;}
.y159{bottom:416.196720px;}
.y23{bottom:417.402180px;}
.y1ec{bottom:420.863580px;}
.y283{bottom:422.640000px;}
.y26f{bottom:423.261180px;}
.y18f{bottom:424.301220px;}
.y91{bottom:424.602180px;}
.y5a{bottom:424.710090px;}
.y248{bottom:424.735560px;}
.y19d{bottom:430.560000px;}
.yf3{bottom:432.081000px;}
.y129{bottom:432.715500px;}
.y21f{bottom:432.990000px;}
.y158{bottom:433.481220px;}
.y22{bottom:434.686680px;}
.y1eb{bottom:438.057900px;}
.y282{bottom:440.460000px;}
.y26e{bottom:440.545680px;}
.y18e{bottom:441.585720px;}
.y90{bottom:441.886680px;}
.y247{bottom:441.929880px;}
.y59{bottom:443.700000px;}
.yce{bottom:446.130000px;}
.y19c{bottom:449.176680px;}
.yf2{bottom:449.365500px;}
.y128{bottom:449.984520px;}
.y157{bottom:450.765720px;}
.y21e{bottom:450.990000px;}
.y21{bottom:451.971180px;}
.y1ea{bottom:455.342400px;}
.y26d{bottom:457.701480px;}
.y18d{bottom:458.780040px;}
.y8f{bottom:459.171180px;}
.y246{bottom:459.214380px;}
.y281{bottom:460.890000px;}
.y58{bottom:462.174840px;}
.y19b{bottom:466.461180px;}
.yf1{bottom:466.650000px;}
.y127{bottom:467.178840px;}
.y156{bottom:467.960040px;}
.y21d{bottom:468.990000px;}
.y20{bottom:469.165500px;}
.y26c{bottom:471.739500px;}
.y1e9{bottom:472.626900px;}
.y18c{bottom:476.064540px;}
.y8e{bottom:476.365500px;}
.y245{bottom:476.498880px;}
.y57{bottom:479.369160px;}
.y19a{bottom:483.655500px;}
.yf0{bottom:483.840990px;}
.ycd{bottom:484.200090px;}
.y126{bottom:484.463340px;}
.y155{bottom:485.244540px;}
.y1f{bottom:486.450000px;}
.y21c{bottom:486.990000px;}
.y1e8{bottom:489.821220px;}
.y18b{bottom:493.349040px;}
.y8d{bottom:493.650000px;}
.y244{bottom:493.693200px;}
.y56{bottom:496.653660px;}
.y199{bottom:500.940000px;}
.y154{bottom:502.529040px;}
.y125{bottom:502.830000px;}
.ycc{bottom:503.190000px;}
.y1e{bottom:504.090000px;}
.y21b{bottom:504.990000px;}
.y1e7{bottom:507.105720px;}
.y18a{bottom:510.543360px;}
.y243{bottom:510.977700px;}
.y8a{bottom:511.821900px;}
.y8c{bottom:511.827120px;}
.y55{bottom:513.938160px;}
.y198{bottom:514.980000px;}
.y124{bottom:516.870000px;}
.y153{bottom:519.723360px;}
.y88{bottom:520.914870px;}
.ycb{bottom:521.757900px;}
.y87{bottom:521.820000px;}
.yef{bottom:521.990820px;}
.y21a{bottom:522.990000px;}
.y1d{bottom:523.260000px;}
.y1e6{bottom:524.390220px;}
.y123{bottom:524.419830px;}
.y189{bottom:527.827860px;}
.y242{bottom:528.172020px;}
.y86{bottom:531.000000px;}
.y54{bottom:531.132480px;}
.y152{bottom:537.007860px;}
.yca{bottom:538.952220px;}
.yee{bottom:539.275320px;}
.y219{bottom:540.900000px;}
.y1e5{bottom:541.584540px;}
.y1c{bottom:543.960000px;}
.y188{bottom:545.112360px;}
.y241{bottom:545.456520px;}
.y53{bottom:548.416980px;}
.y122{bottom:549.805500px;}
.y89{bottom:553.404870px;}
.y151{bottom:554.292360px;}
.y8b{bottom:555.473970px;}
.yc9{bottom:556.236720px;}
.yed{bottom:556.640460px;}
.y1e4{bottom:558.869040px;}
.y187{bottom:562.306680px;}
.y240{bottom:562.741020px;}
.y1b{bottom:563.958900px;}
.y52{bottom:565.611300px;}
.y121{bottom:567.090000px;}
.y85{bottom:568.345500px;}
.y150{bottom:571.486680px;}
.yc8{bottom:573.521220px;}
.yec{bottom:574.105320px;}
.y1e3{bottom:576.063360px;}
.y218{bottom:576.180000px;}
.y186{bottom:579.591180px;}
.y23f{bottom:579.935340px;}
.y120{bottom:581.130000px;}
.y1a{bottom:581.243400px;}
.y51{bottom:582.895800px;}
.y84{bottom:585.630000px;}
.y14f{bottom:588.771180px;}
.yc7{bottom:590.715540px;}
.y11f{bottom:591.209640px;}
.y1e2{bottom:593.347860px;}
.y217{bottom:594.180000px;}
.y185{bottom:596.785500px;}
.y23e{bottom:597.219840px;}
.y1d4{bottom:598.496940px;}
.y19{bottom:598.527900px;}
.y50{bottom:600.180300px;}
.y83{bottom:603.180090px;}
.y14e{bottom:606.055680px;}
.yc6{bottom:608.000040px;}
.yeb{bottom:608.895720px;}
.y1e1{bottom:610.632360px;}
.y216{bottom:612.180000px;}
.y184{bottom:613.963440px;}
.y23d{bottom:614.504340px;}
.y1d3{bottom:615.691260px;}
.y18{bottom:615.722220px;}
.y4f{bottom:617.374620px;}
.y11e{bottom:621.450000px;}
.y82{bottom:622.170000px;}
.y14d{bottom:623.245500px;}
.yc5{bottom:625.194360px;}
.yea{bottom:626.090040px;}
.y1e0{bottom:627.826680px;}
.y215{bottom:630.180000px;}
.y183{bottom:631.247940px;}
.y23c{bottom:631.698660px;}
.y1d2{bottom:632.975760px;}
.y17{bottom:633.006720px;}
.y4e{bottom:634.659120px;}
.y11d{bottom:635.580000px;}
.y14c{bottom:640.521180px;}
.y81{bottom:640.790820px;}
.yc4{bottom:642.478860px;}
.ye9{bottom:643.374540px;}
.y1df{bottom:645.111180px;}
.y214{bottom:648.180000px;}
.y182{bottom:648.442260px;}
.y23b{bottom:648.983160px;}
.y1d1{bottom:650.260260px;}
.y16{bottom:650.291220px;}
.y4d{bottom:651.943620px;}
.y14b{bottom:657.805680px;}
.y80{bottom:658.075320px;}
.yc3{bottom:659.763360px;}
.ye8{bottom:660.659040px;}
.y1de{bottom:662.395680px;}
.y213{bottom:665.460000px;}
.y181{bottom:665.726760px;}
.y23a{bottom:666.267660px;}
.y1d0{bottom:667.454580px;}
.y15{bottom:667.485540px;}
.y4c{bottom:669.137940px;}
.y1b3{bottom:669.222180px;}
.y14a{bottom:674.991000px;}
.y7e{bottom:675.440820px;}
.y7f{bottom:675.450000px;}
.yc2{bottom:676.957680px;}
.ye7{bottom:677.853360px;}
.y11c{bottom:679.230000px;}
.y1dd{bottom:679.590000px;}
.y212{bottom:682.650000px;}
.y180{bottom:683.011260px;}
.y239{bottom:683.461980px;}
.y1cf{bottom:684.739080px;}
.y14{bottom:684.770040px;}
.y4b{bottom:686.422440px;}
.y1b2{bottom:686.506680px;}
.y149{bottom:692.275500px;}
.y7d{bottom:692.905680px;}
.yc1{bottom:694.242180px;}
.ye6{bottom:695.137860px;}
.y11b{bottom:696.399840px;}
.y1dc{bottom:697.222620px;}
.y238{bottom:697.500000px;}
.y17f{bottom:700.205580px;}
.y211{bottom:700.650000px;}
.y1ce{bottom:702.023580px;}
.y13{bottom:702.054540px;}
.y4a{bottom:703.706940px;}
.y1b1{bottom:703.791180px;}
.y148{bottom:709.555680px;}
.y7c{bottom:710.082180px;}
.yc0{bottom:711.526680px;}
.y2a5{bottom:711.810000px;}
.ye5{bottom:712.422360px;}
.y11a{bottom:713.684340px;}
.y1db{bottom:716.212530px;}
.y17e{bottom:717.490080px;}
.y210{bottom:717.930000px;}
.y1cd{bottom:719.217900px;}
.y12{bottom:719.248860px;}
.y49{bottom:720.901260px;}
.y1b0{bottom:720.985500px;}
.y147{bottom:726.741180px;}
.y7b{bottom:727.366680px;}
.ybf{bottom:728.721000px;}
.y2a4{bottom:728.822070px;}
.ye4{bottom:729.616680px;}
.y119{bottom:732.051000px;}
.y17d{bottom:734.774580px;}
.y1da{bottom:735.202440px;}
.y20f{bottom:735.210000px;}
.y1cc{bottom:736.502400px;}
.y11{bottom:736.533360px;}
.y48{bottom:738.185760px;}
.y146{bottom:744.025680px;}
.y7a{bottom:744.651180px;}
.ybe{bottom:746.005500px;}
.ye3{bottom:746.901180px;}
.y2a3{bottom:748.706760px;}
.y118{bottom:749.245320px;}
.y17c{bottom:751.968900px;}
.y20e{bottom:753.210000px;}
.y1cb{bottom:753.696720px;}
.y10{bottom:753.727680px;}
.y1d9{bottom:754.110000px;}
.y47{bottom:755.470260px;}
.y145{bottom:761.220000px;}
.y79{bottom:761.845500px;}
.ybd{bottom:763.290000px;}
.ye2{bottom:764.095500px;}
.y117{bottom:766.614780px;}
.y2a2{bottom:768.501270px;}
.y17b{bottom:769.253400px;}
.y20d{bottom:770.400000px;}
.y1ca{bottom:770.981220px;}
.yf{bottom:771.012180px;}
.y46{bottom:772.664580px;}
.y78{bottom:779.130000px;}
.ybc{bottom:780.840000px;}
.ye1{bottom:781.380000px;}
.y115{bottom:784.255140px;}
.y116{bottom:784.260000px;}
.y26b{bottom:785.475720px;}
.y17a{bottom:786.537900px;}
.y20c{bottom:787.680000px;}
.y1c9{bottom:788.265720px;}
.y2a1{bottom:788.295780px;}
.ye{bottom:788.296680px;}
.y45{bottom:789.949080px;}
.y75{bottom:797.301900px;}
.y77{bottom:797.313150px;}
.ye0{bottom:799.020090px;}
.y144{bottom:799.191180px;}
.ybb{bottom:799.456500px;}
.y114{bottom:801.720000px;}
.y26a{bottom:802.760220px;}
.y179{bottom:803.732220px;}
.y1c8{bottom:805.460040px;}
.yd{bottom:805.491000px;}
.y20b{bottom:805.680000px;}
.y73{bottom:806.394870px;}
.y44{bottom:807.233580px;}
.y72{bottom:807.300000px;}
.y2a0{bottom:808.180470px;}
.y143{bottom:816.475680px;}
.yba{bottom:816.741000px;}
.ydf{bottom:818.010000px;}
.y269{bottom:819.954540px;}
.y178{bottom:821.016720px;}
.y1c7{bottom:822.744540px;}
.yc{bottom:822.775500px;}
.y20a{bottom:822.960000px;}
.y113{bottom:823.770000px;}
.y43{bottom:824.427900px;}
.y29f{bottom:827.974980px;}
.y110{bottom:832.867920px;}
.y142{bottom:833.670000px;}
.yb9{bottom:833.935320px;}
.yde{bottom:837.180000px;}
.y268{bottom:837.239040px;}
.y177{bottom:838.301220px;}
.y74{bottom:838.884870px;}
.y1c6{bottom:840.029040px;}
.yb{bottom:840.060000px;}
.y209{bottom:840.150000px;}
.y76{bottom:840.960000px;}
.y42{bottom:841.712400px;}
.y10f{bottom:842.938020px;}
.y111{bottom:842.940000px;}
.y29e{bottom:847.859670px;}
.yb8{bottom:851.305140px;}
.y141{bottom:851.580000px;}
.y71{bottom:853.830000px;}
.y267{bottom:854.523540px;}
.y176{bottom:855.495540px;}
.y1c5{bottom:857.223360px;}
.y208{bottom:857.430000px;}
.ya{bottom:857.610000px;}
.y41{bottom:858.996900px;}
.y112{bottom:867.510180px;}
.y29d{bottom:867.654180px;}
.yb7{bottom:868.770000px;}
.y70{bottom:871.110000px;}
.y266{bottom:871.717860px;}
.y140{bottom:872.010000px;}
.y175{bottom:872.780040px;}
.y1c4{bottom:874.507860px;}
.y207{bottom:875.430000px;}
.y40{bottom:876.191220px;}
.y9{bottom:876.870000px;}
.yb4{bottom:886.941900px;}
.yb6{bottom:886.953150px;}
.y29c{bottom:887.448690px;}
.y6f{bottom:888.660180px;}
.y265{bottom:889.002360px;}
.y10e{bottom:889.020000px;}
.y174{bottom:890.064540px;}
.y13f{bottom:890.626680px;}
.y1c3{bottom:891.792360px;}
.y3f{bottom:893.475720px;}
.yb2{bottom:896.034870px;}
.y8{bottom:896.935500px;}
.yb1{bottom:896.940000px;}
.y10d{bottom:906.176700px;}
.y264{bottom:906.196680px;}
.y173{bottom:907.258860px;}
.y29b{bottom:907.333380px;}
.y6e{bottom:907.650090px;}
.y13e{bottom:907.911180px;}
.y1c2{bottom:908.986680px;}
.y205{bottom:910.620000px;}
.y3e{bottom:910.670040px;}
.y7{bottom:919.440000px;}
.y10c{bottom:923.461200px;}
.y263{bottom:923.481180px;}
.y172{bottom:924.543360px;}
.y13d{bottom:925.105500px;}
.y1c1{bottom:926.271180px;}
.y6d{bottom:926.640000px;}
.y29a{bottom:927.127890px;}
.y3d{bottom:927.954540px;}
.yb3{bottom:928.524870px;}
.yb5{bottom:930.600000px;}
.y206{bottom:931.140000px;}
.y6{bottom:931.770000px;}
.y262{bottom:940.765680px;}
.y10b{bottom:941.737680px;}
.y13c{bottom:942.390000px;}
.y1c0{bottom:943.555680px;}
.yb0{bottom:943.560000px;}
.y3c{bottom:945.239040px;}
.y299{bottom:947.012580px;}
.y5{bottom:951.390000px;}
.y261{bottom:957.960000px;}
.y10a{bottom:959.022180px;}
.y13b{bottom:959.664870px;}
.yaf{bottom:960.727680px;}
.y1bf{bottom:960.750000px;}
.y3b{bottom:962.433360px;}
.y204{bottom:963.180000px;}
.y298{bottom:966.807090px;}
.y25f{bottom:972.720000px;}
.y4{bottom:974.782620px;}
.y109{bottom:976.306680px;}
.yae{bottom:978.012180px;}
.y1be{bottom:978.390000px;}
.y3a{bottom:979.717860px;}
.y203{bottom:981.180000px;}
.y260{bottom:984.600000px;}
.y297{bottom:986.601600px;}
.y108{bottom:993.501000px;}
.yad{bottom:995.296680px;}
.y39{bottom:997.002360px;}
.y202{bottom:999.180000px;}
.y3{bottom:1002.417120px;}
.y296{bottom:1006.486290px;}
.y25e{bottom:1008.000000px;}
.y107{bottom:1010.785500px;}
.yac{bottom:1012.491000px;}
.y38{bottom:1014.196680px;}
.y25d{bottom:1026.000000px;}
.y295{bottom:1026.280800px;}
.y106{bottom:1028.070000px;}
.yab{bottom:1029.775500px;}
.y2{bottom:1030.051620px;}
.y37{bottom:1031.481180px;}
.y201{bottom:1034.370000px;}
.y25c{bottom:1044.000000px;}
.y105{bottom:1045.620090px;}
.y22a{bottom:1045.890000px;}
.y294{bottom:1046.165490px;}
.yaa{bottom:1047.060000px;}
.y36{bottom:1048.765680px;}
.y1{bottom:1057.590000px;}
.y25b{bottom:1062.000000px;}
.ya9{bottom:1064.610000px;}
.y35{bottom:1065.960000px;}
.h38{height:17.190000px;}
.h39{height:17.191500px;}
.h37{height:17.280000px;}
.h4{height:27.014766px;}
.h3c{height:33.268184px;}
.h18{height:34.470000px;}
.h1a{height:34.471500px;}
.h1b{height:34.560000px;}
.h33{height:40.716035px;}
.h8{height:40.745391px;}
.h32{height:41.743477px;}
.h5{height:41.772832px;}
.h2f{height:41.790112px;}
.h31{height:41.790832px;}
.h2e{height:41.808112px;}
.h30{height:41.808832px;}
.h3a{height:43.909277px;}
.h34{height:44.616973px;}
.h7{height:44.649141px;}
.h3{height:45.775020px;}
.hc{height:47.230048px;}
.ha{height:47.584288px;}
.hd{height:47.912766px;}
.h21{height:47.930766px;}
.h6{height:48.796875px;}
.h9{height:50.027344px;}
.h28{height:50.089264px;}
.h13{height:50.098624px;}
.h3b{height:50.181424px;}
.h36{height:50.364304px;}
.h35{height:50.453584px;}
.h1c{height:51.750000px;}
.h19{height:51.751500px;}
.h2{height:62.519414px;}
.h1{height:65.143828px;}
.h25{height:78.403808px;}
.h20{height:81.363728px;}
.h1d{height:83.954288px;}
.h1f{height:86.693888px;}
.h2b{height:89.889968px;}
.h2d{height:89.938208px;}
.h10{height:107.624004px;}
.h24{height:118.452832px;}
.hb{height:153.617168px;}
.h17{height:153.636608px;}
.h1e{height:153.655328px;}
.h2a{height:155.781488px;}
.h22{height:158.667248px;}
.h14{height:161.926713px;}
.h15{height:166.963808px;}
.h27{height:183.857168px;}
.h2c{height:183.875888px;}
.h23{height:193.905488px;}
.hf{height:193.957688px;}
.h29{height:198.947648px;}
.h26{height:212.325248px;}
.h12{height:230.284568px;}
.h16{height:230.308688px;}
.h11{height:230.329568px;}
.he{height:235.667648px;}
.h0{height:1188.000000px;}
.w3{width:59.581500px;}
.w2{width:88.200000px;}
.w6{width:116.281500px;}
.w4{width:117.180000px;}
.w9{width:121.318500px;}
.w5{width:124.558500px;}
.wa{width:128.431500px;}
.wb{width:147.690000px;}
.w8{width:195.121500px;}
.wf{width:195.300000px;}
.wc{width:197.640000px;}
.wd{width:199.620000px;}
.we{width:397.980000px;}
.w7{width:592.561500px;}
.w1{width:594.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x23{left:8.100000px;}
.x5a{left:9.810000px;}
.x55{left:33.570000px;}
.x4a{left:44.280000px;}
.x56{left:48.780000px;}
.x47{left:59.580000px;}
.x58{left:64.800000px;}
.x57{left:66.060000px;}
.x53{left:72.270000px;}
.x46{left:74.610000px;}
.x54{left:78.120000px;}
.x4e{left:82.440000px;}
.x50{left:86.220000px;}
.x4f{left:88.560000px;}
.x59{left:89.910000px;}
.x21{left:113.040000px;}
.x4d{left:115.380000px;}
.x42{left:117.450000px;}
.x45{left:119.520000px;}
.x41{left:127.440000px;}
.x44{left:150.390000px;}
.x43{left:152.910000px;}
.x49{left:155.070000px;}
.x1{left:162.000000px;}
.x48{left:163.530000px;}
.x40{left:170.460000px;}
.x52{left:174.960000px;}
.x51{left:186.660000px;}
.x2b{left:188.993880px;}
.x3d{left:213.390000px;}
.x34{left:216.000000px;}
.x19{left:224.100000px;}
.x1a{left:241.470000px;}
.x24{left:250.200000px;}
.x2a{left:258.300000px;}
.x22{left:297.000000px;}
.x25{left:309.780000px;}
.xc{left:312.570000px;}
.x36{left:314.460000px;}
.x26{left:317.880000px;}
.x37{left:329.670000px;}
.x12{left:343.082790px;}
.x2f{left:358.109730px;}
.x4b{left:360.360000px;}
.x14{left:365.223870px;}
.x1b{left:368.100000px;}
.x13{left:370.804770px;}
.x3{left:378.000000px;}
.xd{left:380.790000px;}
.x5c{left:390.690000px;}
.xa{left:392.310000px;}
.x35{left:396.360000px;}
.x1c{left:397.622790px;}
.x4{left:407.522790px;}
.xb{left:409.590000px;}
.x2{left:414.090000px;}
.x1e{left:419.763870px;}
.x1d{left:425.344770px;}
.x27{left:426.960000px;}
.x6{left:429.659100px;}
.xf{left:432.543870px;}
.x5{left:435.240000px;}
.xe{left:438.124770px;}
.x30{left:440.368920px;}
.x38{left:453.685230px;}
.x9{left:459.000000px;}
.x2d{left:470.701170px;}
.x2c{left:472.494330px;}
.x3e{left:479.160000px;}
.x3a{left:482.880060px;}
.x2e{left:486.000000px;}
.x16{left:506.880090px;}
.x15{left:512.640000px;}
.x32{left:527.491080px;}
.x33{left:531.270000px;}
.x20{left:535.140090px;}
.x1f{left:540.900000px;}
.x28{left:551.520000px;}
.x8{left:556.020090px;}
.x11{left:558.806040px;}
.x31{left:560.520000px;}
.x7{left:561.780000px;}
.x10{left:564.565950px;}
.x39{left:579.328200px;}
.x4c{left:586.710000px;}
.x3f{left:607.590000px;}
.x18{left:620.910810px;}
.x17{left:626.670720px;}
.x3c{left:647.100000px;}
.x5b{left:654.390000px;}
.x29{left:667.800000px;}
.x3b{left:755.970570px;}
@media print{
.v6{vertical-align:-132.798400pt;}
.v1c{vertical-align:-119.384960pt;}
.v14{vertical-align:-99.825920pt;}
.v24{vertical-align:-96.940160pt;}
.v15{vertical-align:-64.341760pt;}
.v12{vertical-align:-62.097280pt;}
.vd{vertical-align:-20.787200pt;}
.v1f{vertical-align:-19.854720pt;}
.v2{vertical-align:-18.560000pt;}
.v8{vertical-align:-11.863680pt;}
.v11{vertical-align:-10.862720pt;}
.v1b{vertical-align:-7.680640pt;}
.v5{vertical-align:-5.423360pt;}
.v13{vertical-align:-2.244480pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.565120pt;}
.v16{vertical-align:4.488960pt;}
.v26{vertical-align:5.440000pt;}
.v22{vertical-align:7.680000pt;}
.v17{vertical-align:10.880000pt;}
.v7{vertical-align:11.863680pt;}
.v19{vertical-align:13.120000pt;}
.v20{vertical-align:16.000000pt;}
.v3{vertical-align:18.891520pt;}
.v1{vertical-align:24.000000pt;}
.vc{vertical-align:24.978240pt;}
.v1a{vertical-align:26.880000pt;}
.v1d{vertical-align:28.750720pt;}
.v21{vertical-align:30.400000pt;}
.v1e{vertical-align:31.374720pt;}
.v9{vertical-align:32.640000pt;}
.vb{vertical-align:35.858240pt;}
.v18{vertical-align:38.084480pt;}
.va{vertical-align:40.293760pt;}
.v23{vertical-align:46.439360pt;}
.v10{vertical-align:56.028800pt;}
.vf{vertical-align:57.308800pt;}
.v25{vertical-align:58.256640pt;}
.ve{vertical-align:68.188800pt;}
.ls4c{letter-spacing:-0.641280pt;}
.ls8e{letter-spacing:-0.480960pt;}
.ls12{letter-spacing:-0.427520pt;}
.ls31{letter-spacing:-0.374080pt;}
.ls35{letter-spacing:-0.337984pt;}
.ls3c{letter-spacing:-0.320640pt;}
.lsd{letter-spacing:-0.318080pt;}
.ls32{letter-spacing:-0.267200pt;}
.ls33{letter-spacing:-0.213760pt;}
.ls76{letter-spacing:-0.187200pt;}
.ls9{letter-spacing:-0.170880pt;}
.lsf{letter-spacing:-0.160320pt;}
.ls74{letter-spacing:-0.149760pt;}
.lsb{letter-spacing:-0.138880pt;}
.ls75{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.106880pt;}
.ls78{letter-spacing:-0.074880pt;}
.lsc{letter-spacing:-0.069440pt;}
.ls10{letter-spacing:-0.058560pt;}
.ls11{letter-spacing:-0.053440pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.009280pt;}
.ls7b{letter-spacing:0.011520pt;}
.ls54{letter-spacing:0.017600pt;}
.ls48{letter-spacing:0.029120pt;}
.ls8d{letter-spacing:0.032064pt;}
.ls46{letter-spacing:0.034560pt;}
.ls77{letter-spacing:0.037440pt;}
.ls58{letter-spacing:0.039040pt;}
.ls4b{letter-spacing:0.043520pt;}
.ls5e{letter-spacing:0.044480pt;}
.ls41{letter-spacing:0.046720pt;}
.ls4f{letter-spacing:0.049280pt;}
.ls7e{letter-spacing:0.052800pt;}
.ls2{letter-spacing:0.053440pt;}
.ls66{letter-spacing:0.057280pt;}
.ls14{letter-spacing:0.058560pt;}
.ls18{letter-spacing:0.069472pt;}
.ls90{letter-spacing:0.071360pt;}
.ls39{letter-spacing:0.073600pt;}
.ls3b{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.085440pt;}
.ls81{letter-spacing:0.090848pt;}
.ls15{letter-spacing:0.101536pt;}
.ls0{letter-spacing:0.106880pt;}
.ls34{letter-spacing:0.112661pt;}
.ls45{letter-spacing:0.123520pt;}
.ls1e{letter-spacing:0.157120pt;}
.ls6{letter-spacing:0.160320pt;}
.ls3f{letter-spacing:0.165664pt;}
.ls7{letter-spacing:0.170880pt;}
.ls91{letter-spacing:0.171008pt;}
.ls13{letter-spacing:0.175680pt;}
.ls88{letter-spacing:0.347360pt;}
.ls5{letter-spacing:0.374080pt;}
.ls83{letter-spacing:0.427520pt;}
.ls7d{letter-spacing:0.694720pt;}
.ls7c{letter-spacing:1.015360pt;}
.ls69{letter-spacing:1.226560pt;}
.ls80{letter-spacing:1.336000pt;}
.ls67{letter-spacing:1.440000pt;}
.ls68{letter-spacing:1.536000pt;}
.ls44{letter-spacing:1.930880pt;}
.ls3a{letter-spacing:1.961280pt;}
.ls79{letter-spacing:1.977280pt;}
.ls38{letter-spacing:2.075840pt;}
.ls26{letter-spacing:2.237440pt;}
.ls42{letter-spacing:2.250880pt;}
.ls37{letter-spacing:2.281280pt;}
.ls8b{letter-spacing:2.297920pt;}
.ls62{letter-spacing:2.322240pt;}
.ls28{letter-spacing:2.395840pt;}
.ls3e{letter-spacing:2.939200pt;}
.ls84{letter-spacing:3.259840pt;}
.ls64{letter-spacing:3.287040pt;}
.ls5f{letter-spacing:3.297600pt;}
.ls51{letter-spacing:3.498560pt;}
.ls63{letter-spacing:3.571840pt;}
.ls5c{letter-spacing:3.572480pt;}
.ls19{letter-spacing:3.580480pt;}
.ls5a{letter-spacing:4.114880pt;}
.ls2b{letter-spacing:4.221760pt;}
.ls5d{letter-spacing:4.435520pt;}
.ls8c{letter-spacing:4.542400pt;}
.ls85{letter-spacing:4.863040pt;}
.ls56{letter-spacing:4.916480pt;}
.ls2a{letter-spacing:5.120000pt;}
.ls4{letter-spacing:5.183680pt;}
.ls86{letter-spacing:5.349344pt;}
.ls87{letter-spacing:5.504320pt;}
.ls57{letter-spacing:5.664640pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls55{letter-spacing:5.824960pt;}
.ls1{letter-spacing:6.145600pt;}
.ls16{letter-spacing:6.441600pt;}
.ls8f{letter-spacing:6.466240pt;}
.ls6d{letter-spacing:7.107520pt;}
.ls8a{letter-spacing:7.428160pt;}
.ls89{letter-spacing:7.492288pt;}
.ls6f{letter-spacing:8.390080pt;}
.ls1b{letter-spacing:8.550400pt;}
.ls1c{letter-spacing:8.657280pt;}
.ls1d{letter-spacing:8.871040pt;}
.ls29{letter-spacing:9.031360pt;}
.ls82{letter-spacing:9.672640pt;}
.ls53{letter-spacing:9.779520pt;}
.ls17{letter-spacing:10.634560pt;}
.ls30{letter-spacing:10.955200pt;}
.ls27{letter-spacing:11.596480pt;}
.ls71{letter-spacing:11.649920pt;}
.ls43{letter-spacing:11.756800pt;}
.ls2d{letter-spacing:11.917120pt;}
.ls50{letter-spacing:11.970560pt;}
.ls6c{letter-spacing:13.440000pt;}
.ls2c{letter-spacing:13.629760pt;}
.ls5b{letter-spacing:13.842240pt;}
.ls25{letter-spacing:13.949760pt;}
.ls6b{letter-spacing:14.482240pt;}
.ls22{letter-spacing:14.802880pt;}
.ls1a{letter-spacing:15.123520pt;}
.ls61{letter-spacing:15.978560pt;}
.ls24{letter-spacing:17.154240pt;}
.ls2f{letter-spacing:17.688640pt;}
.ls21{letter-spacing:18.009280pt;}
.ls52{letter-spacing:18.462400pt;}
.ls3{letter-spacing:35.545920pt;}
.ls49{letter-spacing:38.622400pt;}
.ls3d{letter-spacing:41.148800pt;}
.ls23{letter-spacing:47.933120pt;}
.ls72{letter-spacing:52.589440pt;}
.ls73{letter-spacing:54.424320pt;}
.ls4d{letter-spacing:56.486080pt;}
.ls6a{letter-spacing:98.080000pt;}
.ls60{letter-spacing:129.682240pt;}
.ls4e{letter-spacing:135.577280pt;}
.ls65{letter-spacing:264.082240pt;}
.ls2e{letter-spacing:282.586560pt;}
.ls6e{letter-spacing:300.546560pt;}
.ls7a{letter-spacing:336.720000pt;}
.ls36{letter-spacing:476.577920pt;}
.ls20{letter-spacing:511.741440pt;}
.ls59{letter-spacing:665.381440pt;}
.ls70{letter-spacing:670.137600pt;}
.ls4a{letter-spacing:683.283840pt;}
.ls47{letter-spacing:772.261440pt;}
.ls40{letter-spacing:797.217920pt;}
.ws9{word-spacing:-14.815680pt;}
.wsa{word-spacing:-14.698560pt;}
.wse2{word-spacing:-14.640000pt;}
.ws4{word-spacing:-14.581440pt;}
.ws64{word-spacing:-13.520320pt;}
.ws71{word-spacing:-13.466880pt;}
.ws85{word-spacing:-13.413440pt;}
.ws6{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.306560pt;}
.ws5{word-spacing:-13.253120pt;}
.ws3{word-spacing:-13.199680pt;}
.ws84{word-spacing:-13.146240pt;}
.wsa7{word-spacing:-13.039360pt;}
.ws86{word-spacing:-12.985920pt;}
.ws7{word-spacing:-12.932480pt;}
.ws65{word-spacing:-11.863680pt;}
.ws67{word-spacing:-11.810240pt;}
.ws34{word-spacing:-11.756800pt;}
.ws92{word-spacing:-11.703360pt;}
.ws9f{word-spacing:-11.649920pt;}
.ws6b{word-spacing:-11.543040pt;}
.ws66{word-spacing:-11.489600pt;}
.ws0{word-spacing:-11.360000pt;}
.ws1{word-spacing:-11.041920pt;}
.ws2{word-spacing:-8.640000pt;}
.wsa9{word-spacing:-8.274240pt;}
.ws68{word-spacing:-8.236800pt;}
.wsaa{word-spacing:-8.161920pt;}
.wsa0{word-spacing:-8.087040pt;}
.wsa3{word-spacing:-8.049600pt;}
.wsa1{word-spacing:-6.912000pt;}
.wse{word-spacing:-4.442880pt;}
.ws7c{word-spacing:-3.580480pt;}
.ws97{word-spacing:-3.366720pt;}
.ws3d{word-spacing:-3.259840pt;}
.wsb1{word-spacing:-3.046080pt;}
.ws96{word-spacing:-2.992640pt;}
.ws43{word-spacing:-2.939200pt;}
.ws87{word-spacing:-2.725440pt;}
.ws88{word-spacing:-2.672000pt;}
.ws58{word-spacing:-2.618560pt;}
.ws5a{word-spacing:-2.565120pt;}
.ws57{word-spacing:-2.404800pt;}
.ws5b{word-spacing:-2.351360pt;}
.ws59{word-spacing:-2.297920pt;}
.wscf{word-spacing:-2.084160pt;}
.wsdc{word-spacing:-2.030720pt;}
.ws1e{word-spacing:-1.977280pt;}
.wsc5{word-spacing:-1.763520pt;}
.wsd9{word-spacing:-1.710080pt;}
.ws2a{word-spacing:-1.656640pt;}
.wse6{word-spacing:-1.442880pt;}
.ws29{word-spacing:-1.389440pt;}
.wsc7{word-spacing:-1.336000pt;}
.ws95{word-spacing:-1.122240pt;}
.ws49{word-spacing:-1.068800pt;}
.ws1c{word-spacing:-1.015360pt;}
.ws13{word-spacing:-0.801600pt;}
.ws1d{word-spacing:-0.748160pt;}
.ws30{word-spacing:-0.694720pt;}
.wsc3{word-spacing:-0.480960pt;}
.ws1f{word-spacing:-0.427520pt;}
.ws74{word-spacing:-0.374080pt;}
.wsf3{word-spacing:-0.320640pt;}
.wsab{word-spacing:-0.292800pt;}
.wsff{word-spacing:-0.267200pt;}
.wsce{word-spacing:-0.213760pt;}
.wse8{word-spacing:-0.175680pt;}
.ws32{word-spacing:-0.160320pt;}
.ws8a{word-spacing:-0.117120pt;}
.ws7b{word-spacing:-0.112661pt;}
.ws31{word-spacing:-0.106880pt;}
.wsb{word-spacing:-0.053440pt;}
.wsb6{word-spacing:-0.037440pt;}
.wsc{word-spacing:-0.034560pt;}
.ws10{word-spacing:0.000000pt;}
.ws90{word-spacing:0.053440pt;}
.ws11{word-spacing:0.069440pt;}
.ws76{word-spacing:0.106880pt;}
.ws53{word-spacing:0.117120pt;}
.ws52{word-spacing:0.160320pt;}
.ws12{word-spacing:0.213760pt;}
.wsf{word-spacing:0.256320pt;}
.ws46{word-spacing:0.267200pt;}
.ws91{word-spacing:0.320640pt;}
.ws7e{word-spacing:0.337984pt;}
.ws7d{word-spacing:0.374080pt;}
.ws2d{word-spacing:0.480960pt;}
.ws2e{word-spacing:0.534400pt;}
.wsc2{word-spacing:0.587840pt;}
.ws9c{word-spacing:0.641280pt;}
.wsdb{word-spacing:0.801600pt;}
.ws61{word-spacing:0.855040pt;}
.ws38{word-spacing:0.908480pt;}
.wse3{word-spacing:1.122240pt;}
.ws37{word-spacing:1.175680pt;}
.ws60{word-spacing:1.229120pt;}
.ws8b{word-spacing:1.389440pt;}
.wsb0{word-spacing:1.442880pt;}
.ws5f{word-spacing:1.496320pt;}
.ws8c{word-spacing:1.549760pt;}
.wsd5{word-spacing:1.710080pt;}
.wsd3{word-spacing:1.763520pt;}
.ws36{word-spacing:1.816960pt;}
.wsbc{word-spacing:2.030720pt;}
.wsba{word-spacing:2.084160pt;}
.ws40{word-spacing:2.137600pt;}
.ws48{word-spacing:2.351360pt;}
.wsbf{word-spacing:2.404800pt;}
.ws20{word-spacing:2.458240pt;}
.wsea{word-spacing:2.576640pt;}
.ws72{word-spacing:2.672000pt;}
.ws73{word-spacing:2.725440pt;}
.ws26{word-spacing:2.778880pt;}
.wsc1{word-spacing:2.832320pt;}
.wse9{word-spacing:2.928000pt;}
.ws94{word-spacing:2.992640pt;}
.wsc0{word-spacing:3.046080pt;}
.ws25{word-spacing:3.099520pt;}
.wsd0{word-spacing:3.313280pt;}
.ws3c{word-spacing:3.366720pt;}
.wse1{word-spacing:3.420160pt;}
.ws5c{word-spacing:3.633920pt;}
.ws4d{word-spacing:3.687360pt;}
.ws16{word-spacing:3.740800pt;}
.ws93{word-spacing:3.794240pt;}
.ws9e{word-spacing:3.954560pt;}
.ws35{word-spacing:4.008000pt;}
.ws24{word-spacing:4.061440pt;}
.ws78{word-spacing:4.275200pt;}
.ws15{word-spacing:4.328640pt;}
.ws21{word-spacing:4.382080pt;}
.wsd1{word-spacing:4.435520pt;}
.wsd6{word-spacing:4.595840pt;}
.ws22{word-spacing:4.649280pt;}
.ws23{word-spacing:4.702720pt;}
.wse0{word-spacing:4.756160pt;}
.ws8d{word-spacing:4.916480pt;}
.ws100{word-spacing:4.969920pt;}
.ws56{word-spacing:5.023360pt;}
.wsbd{word-spacing:5.076800pt;}
.wsbe{word-spacing:5.183680pt;}
.ws27{word-spacing:5.237120pt;}
.ws4a{word-spacing:5.290560pt;}
.ws4b{word-spacing:5.344000pt;}
.wsb2{word-spacing:5.557760pt;}
.ws4c{word-spacing:5.611200pt;}
.ws3a{word-spacing:5.664640pt;}
.wsd4{word-spacing:5.718080pt;}
.ws1a{word-spacing:5.878400pt;}
.wsf1{word-spacing:5.931840pt;}
.wsad{word-spacing:5.985280pt;}
.ws1b{word-spacing:6.199040pt;}
.wsdd{word-spacing:6.252480pt;}
.ws8e{word-spacing:6.305920pt;}
.wsac{word-spacing:6.519680pt;}
.wsee{word-spacing:6.573120pt;}
.ws99{word-spacing:6.626560pt;}
.wsf7{word-spacing:6.680000pt;}
.wsfd{word-spacing:6.840320pt;}
.ws28{word-spacing:6.893760pt;}
.ws2f{word-spacing:6.947200pt;}
.ws51{word-spacing:7.000640pt;}
.wsfa{word-spacing:7.160960pt;}
.ws2b{word-spacing:7.214400pt;}
.wsd7{word-spacing:7.267840pt;}
.wsd8{word-spacing:7.321280pt;}
.ws3f{word-spacing:7.481600pt;}
.wscd{word-spacing:7.535040pt;}
.ws3e{word-spacing:7.588480pt;}
.wsf8{word-spacing:7.802240pt;}
.ws62{word-spacing:7.855680pt;}
.ws63{word-spacing:7.909120pt;}
.wseb{word-spacing:7.962560pt;}
.wsb5{word-spacing:8.176320pt;}
.wsde{word-spacing:8.229760pt;}
.wsb4{word-spacing:8.443520pt;}
.wsda{word-spacing:8.550400pt;}
.ws75{word-spacing:8.764160pt;}
.ws98{word-spacing:8.817600pt;}
.wse7{word-spacing:8.871040pt;}
.ws89{word-spacing:9.191680pt;}
.ws39{word-spacing:9.405440pt;}
.ws14{word-spacing:9.458880pt;}
.ws47{word-spacing:9.512320pt;}
.ws33{word-spacing:9.726080pt;}
.wscc{word-spacing:9.779520pt;}
.ws42{word-spacing:9.832960pt;}
.ws41{word-spacing:10.046720pt;}
.wsf9{word-spacing:10.153600pt;}
.ws55{word-spacing:10.474240pt;}
.ws54{word-spacing:10.634560pt;}
.ws50{word-spacing:10.741440pt;}
.ws82{word-spacing:10.794880pt;}
.wsd2{word-spacing:11.008640pt;}
.wsdf{word-spacing:11.062080pt;}
.wsc8{word-spacing:11.115520pt;}
.ws9a{word-spacing:11.329280pt;}
.ws45{word-spacing:11.436160pt;}
.wsa5{word-spacing:11.543040pt;}
.wsb8{word-spacing:11.596480pt;}
.wse4{word-spacing:11.649920pt;}
.ws44{word-spacing:11.703360pt;}
.ws2c{word-spacing:11.756800pt;}
.wsa6{word-spacing:11.863680pt;}
.wsae{word-spacing:11.970560pt;}
.wsaf{word-spacing:12.024000pt;}
.wsf2{word-spacing:12.291200pt;}
.wsb3{word-spacing:12.398080pt;}
.ws77{word-spacing:12.611840pt;}
.wsfc{word-spacing:12.718720pt;}
.wsfb{word-spacing:12.932480pt;}
.wse5{word-spacing:13.360000pt;}
.ws4e{word-spacing:13.573760pt;}
.ws4f{word-spacing:13.627200pt;}
.ws7a{word-spacing:13.734080pt;}
.wsbb{word-spacing:13.894400pt;}
.ws79{word-spacing:13.947840pt;}
.wsc4{word-spacing:14.001280pt;}
.ws3b{word-spacing:14.321920pt;}
.wsa4{word-spacing:14.428800pt;}
.wsb7{word-spacing:14.482240pt;}
.wsca{word-spacing:14.535680pt;}
.wsc9{word-spacing:14.589120pt;}
.ws5e{word-spacing:14.642560pt;}
.ws5d{word-spacing:15.230400pt;}
.wsf4{word-spacing:15.283840pt;}
.wscb{word-spacing:15.497600pt;}
.ws102{word-spacing:15.925120pt;}
.ws101{word-spacing:16.192320pt;}
.wsfe{word-spacing:16.780160pt;}
.wsf5{word-spacing:16.887040pt;}
.ws81{word-spacing:17.207680pt;}
.wsf6{word-spacing:17.421440pt;}
.ws80{word-spacing:17.528320pt;}
.ws9b{word-spacing:17.742080pt;}
.ws7f{word-spacing:17.795520pt;}
.wsd{word-spacing:17.856960pt;}
.ws19{word-spacing:18.169600pt;}
.ws18{word-spacing:18.436800pt;}
.ws8f{word-spacing:20.093440pt;}
.wsef{word-spacing:22.551680pt;}
.ws9d{word-spacing:22.658560pt;}
.wsed{word-spacing:22.979200pt;}
.wsc6{word-spacing:23.246400pt;}
.wsec{word-spacing:23.299840pt;}
.wsf0{word-spacing:26.132160pt;}
.ws17{word-spacing:28.964480pt;}
.wsa8{word-spacing:29.228416pt;}
.ws70{word-spacing:61.555840pt;}
.ws6d{word-spacing:61.892800pt;}
.ws6a{word-spacing:82.038400pt;}
.ws6f{word-spacing:93.558400pt;}
.wsb9{word-spacing:94.128192pt;}
.ws83{word-spacing:191.478400pt;}
.wsa2{word-spacing:222.249600pt;}
.ws6c{word-spacing:283.600960pt;}
.ws6e{word-spacing:283.621440pt;}
.ws69{word-spacing:283.638400pt;}
._6{margin-left:-32.972480pt;}
._f{margin-left:-18.631680pt;}
._8{margin-left:-14.001920pt;}
._4{margin-left:-4.097888pt;}
._3{margin-left:-2.332288pt;}
._0{margin-left:-1.050912pt;}
._1{width:0.897120pt;}
._d{width:2.385920pt;}
._9{width:3.431520pt;}
._e{width:4.969920pt;}
._11{width:6.145600pt;}
._a{width:8.060448pt;}
._2{width:9.227232pt;}
._7{width:11.147168pt;}
._b{width:12.601632pt;}
._5{width:14.642560pt;}
._10{width:15.795200pt;}
._c{width:17.154240pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fsa{font-size:42.560000pt;}
.fs2{font-size:45.440000pt;}
.fs5{font-size:53.440000pt;}
.fs8{font-size:56.330706pt;}
.fs3{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.440000pt;}
.fs0{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:2.880000pt;}
.ycf{bottom:18.160000pt;}
.yd6{bottom:18.240000pt;}
.yd2{bottom:33.600000pt;}
.y6c{bottom:99.356000pt;}
.y200{bottom:100.720000pt;}
.ydd{bottom:100.880000pt;}
.ya8{bottom:101.033440pt;}
.y171{bottom:102.960240pt;}
.y1af{bottom:104.816800pt;}
.y293{bottom:105.794400pt;}
.y104{bottom:106.080000pt;}
.y280{bottom:107.888480pt;}
.y25a{bottom:108.080000pt;}
.y13a{bottom:110.160000pt;}
.y34{bottom:110.317120pt;}
.y1fd{bottom:111.884480pt;}
.y6b{bottom:114.716000pt;}
.ydb{bottom:115.200000pt;}
.y1ff{bottom:116.560000pt;}
.ya7{bottom:117.913360pt;}
.y169{bottom:118.516480pt;}
.y170{bottom:119.840160pt;}
.y1d8{bottom:120.072160pt;}
.y1bd{bottom:120.160000pt;}
.y1ae{bottom:120.180800pt;}
.y103{bottom:122.600480pt;}
.y139{bottom:122.715840pt;}
.y27f{bottom:123.252480pt;}
.y292{bottom:123.469680pt;}
.y259{bottom:124.080000pt;}
.y33{bottom:125.681120pt;}
.y1fc{bottom:127.248480pt;}
.y138{bottom:129.440000pt;}
.y6a{bottom:130.075840pt;}
.ydc{bottom:133.440000pt;}
.y168{bottom:133.880480pt;}
.y1fe{bottom:134.403680pt;}
.ya6{bottom:134.720080pt;}
.y1d7{bottom:135.356000pt;}
.y1ad{bottom:135.544800pt;}
.y1bc{bottom:136.708160pt;}
.y16f{bottom:136.720080pt;}
.y102{bottom:137.964480pt;}
.y27e{bottom:138.536320pt;}
.y258{bottom:140.080000pt;}
.y32{bottom:141.045120pt;}
.y291{bottom:141.064800pt;}
.y237{bottom:141.110960pt;}
.y1fb{bottom:142.612480pt;}
.y69{bottom:145.520000pt;}
.y229{bottom:147.520000pt;}
.y137{bottom:148.000000pt;}
.y167{bottom:149.244480pt;}
.y1d6{bottom:150.720000pt;}
.y1ac{bottom:150.828640pt;}
.ya5{bottom:151.600000pt;}
.y1bb{bottom:152.072160pt;}
.y101{bottom:153.248320pt;}
.y16e{bottom:153.600000pt;}
.y27d{bottom:153.900320pt;}
.y257{bottom:156.000000pt;}
.y31{bottom:156.328960pt;}
.y236{bottom:156.394800pt;}
.y1fa{bottom:157.896320pt;}
.y290{bottom:158.740080pt;}
.y136{bottom:160.480400pt;}
.y68{bottom:161.360000pt;}
.yda{bottom:161.920000pt;}
.y1d5{bottom:163.200000pt;}
.y228{bottom:163.520000pt;}
.y166{bottom:164.528320pt;}
.y1ab{bottom:166.192640pt;}
.y1ba{bottom:167.356000pt;}
.ya4{bottom:168.151840pt;}
.y100{bottom:168.612320pt;}
.y27c{bottom:169.264320pt;}
.y16d{bottom:169.981360pt;}
.y30{bottom:171.692960pt;}
.y235{bottom:171.758800pt;}
.y256{bottom:172.000000pt;}
.y1f9{bottom:173.260320pt;}
.y28f{bottom:176.335200pt;}
.y67{bottom:177.792640pt;}
.y165{bottom:179.892320pt;}
.y1aa{bottom:181.556640pt;}
.y1b9{bottom:182.720000pt;}
.ya3{bottom:183.515840pt;}
.yff{bottom:183.976320pt;}
.y27b{bottom:184.548160pt;}
.y16c{bottom:185.345360pt;}
.y2f{bottom:186.976800pt;}
.y234{bottom:187.122800pt;}
.y255{bottom:188.000000pt;}
.y1f8{bottom:188.624320pt;}
.y66{bottom:193.156640pt;}
.yd9{bottom:193.200000pt;}
.y135{bottom:193.680000pt;}
.y28e{bottom:193.930320pt;}
.y227{bottom:194.880000pt;}
.y164{bottom:195.256320pt;}
.y1a9{bottom:196.840480pt;}
.y1b8{bottom:198.400000pt;}
.ya1{bottom:198.951840pt;}
.ya2{bottom:198.960000pt;}
.yfe{bottom:199.260160pt;}
.y27a{bottom:199.912160pt;}
.y16b{bottom:200.709360pt;}
.y2e{bottom:202.340800pt;}
.y233{bottom:202.406640pt;}
.y1f7{bottom:203.908160pt;}
.y254{bottom:204.000000pt;}
.y65{bottom:208.520640pt;}
.y134{bottom:209.010560pt;}
.y163{bottom:210.540160pt;}
.y28d{bottom:211.605600pt;}
.y1a8{bottom:212.204480pt;}
.y16a{bottom:213.107440pt;}
.ya0{bottom:214.476160pt;}
.yfd{bottom:214.624160pt;}
.y1b7{bottom:214.872000pt;}
.y279{bottom:215.276160pt;}
.y2d{bottom:217.704800pt;}
.y232{bottom:217.770640pt;}
.y1f6{bottom:219.272160pt;}
.y250{bottom:220.000000pt;}
.y64{bottom:223.804480pt;}
.y133{bottom:224.294400pt;}
.yd8{bottom:224.560000pt;}
.y162{bottom:225.904160pt;}
.y226{bottom:226.160000pt;}
.y1a7{bottom:227.568480pt;}
.y28c{bottom:229.200720pt;}
.y9f{bottom:229.760000pt;}
.yfc{bottom:229.988160pt;}
.y1b6{bottom:230.236000pt;}
.y253{bottom:230.556000pt;}
.y278{bottom:230.560000pt;}
.y2c{bottom:232.988640pt;}
.y231{bottom:233.134640pt;}
.y1f5{bottom:234.636160pt;}
.y251{bottom:238.240000pt;}
.y63{bottom:239.168480pt;}
.y132{bottom:240.620320pt;}
.y161{bottom:241.268160pt;}
.y1a6{bottom:242.852320pt;}
.yfb{bottom:245.272000pt;}
.y1b5{bottom:245.600000pt;}
.y9a{bottom:245.912800pt;}
.y9e{bottom:245.917440pt;}
.y252{bottom:245.920000pt;}
.y9c{bottom:245.922800pt;}
.y277{bottom:246.480000pt;}
.y28b{bottom:246.876000pt;}
.y2b{bottom:248.352640pt;}
.y230{bottom:248.418480pt;}
.y1f4{bottom:249.920000pt;}
.y197{bottom:253.360000pt;}
.y98{bottom:253.995440pt;}
.y62{bottom:254.532480pt;}
.y97{bottom:254.800000pt;}
.yd7{bottom:255.840000pt;}
.y131{bottom:255.984320pt;}
.y160{bottom:256.552000pt;}
.y225{bottom:257.520000pt;}
.y1b4{bottom:258.000000pt;}
.y1a5{bottom:258.216320pt;}
.yfa{bottom:260.636000pt;}
.y28a{bottom:262.240000pt;}
.y2a{bottom:263.716640pt;}
.y22f{bottom:263.782480pt;}
.y276{bottom:264.640000pt;}
.y1f3{bottom:265.600000pt;}
.y24f{bottom:266.720000pt;}
.y196{bottom:269.768960pt;}
.y61{bottom:269.816320pt;}
.y130{bottom:271.268160pt;}
.y15f{bottom:271.916000pt;}
.y224{bottom:273.520000pt;}
.y1a4{bottom:273.580320pt;}
.yf9{bottom:275.992000pt;}
.y289{bottom:277.840080pt;}
.y29{bottom:279.000480pt;}
.y22e{bottom:279.146480pt;}
.y275{bottom:281.760000pt;}
.y1f2{bottom:282.077280pt;}
.y99{bottom:282.875440pt;}
.y9d{bottom:284.714640pt;}
.y9b{bottom:284.720000pt;}
.y195{bottom:285.132960pt;}
.y60{bottom:285.180320pt;}
.y24e{bottom:285.519040pt;}
.y12f{bottom:286.632160pt;}
.yd5{bottom:287.200000pt;}
.y15e{bottom:287.280000pt;}
.y1a3{bottom:288.864160pt;}
.y223{bottom:289.520000pt;}
.yf8{bottom:291.275840pt;}
.y28{bottom:294.364480pt;}
.y22d{bottom:294.430320pt;}
.y288{bottom:294.720000pt;}
.y96{bottom:296.236160pt;}
.y1f1{bottom:297.361120pt;}
.y274{bottom:299.572480pt;}
.y194{bottom:300.496960pt;}
.y5f{bottom:300.544320pt;}
.y24d{bottom:300.802880pt;}
.y12e{bottom:301.996160pt;}
.y15d{bottom:302.880000pt;}
.y1a2{bottom:304.228160pt;}
.y222{bottom:305.520000pt;}
.y27{bottom:309.728480pt;}
.y22c{bottom:309.794320pt;}
.y95{bottom:311.520000pt;}
.y287{bottom:311.840000pt;}
.y1f0{bottom:312.725120pt;}
.y273{bottom:314.856320pt;}
.y193{bottom:315.780800pt;}
.y5e{bottom:315.828160pt;}
.y24c{bottom:316.166880pt;}
.y12d{bottom:317.280000pt;}
.yd4{bottom:318.560000pt;}
.y15c{bottom:319.440000pt;}
.y1a1{bottom:319.512000pt;}
.y221{bottom:321.520000pt;}
.y22b{bottom:322.272560pt;}
.yf7{bottom:322.776320pt;}
.y26{bottom:325.012320pt;}
.y94{bottom:327.193360pt;}
.y1ef{bottom:328.089120pt;}
.y286{bottom:329.668160pt;}
.y272{bottom:330.220320pt;}
.y192{bottom:331.144800pt;}
.y5d{bottom:331.192160pt;}
.y24b{bottom:331.530880pt;}
.y12c{bottom:333.429200pt;}
.y1a0{bottom:334.876000pt;}
.y15b{bottom:335.360000pt;}
.y220{bottom:337.520000pt;}
.yf6{bottom:338.060160pt;}
.y25{bottom:340.376320pt;}
.y1ee{bottom:343.372960pt;}
.y93{bottom:344.073280pt;}
.y285{bottom:344.952000pt;}
.y12b{bottom:345.520000pt;}
.y271{bottom:345.584320pt;}
.y191{bottom:346.508800pt;}
.y5c{bottom:346.556160pt;}
.y24a{bottom:346.814720pt;}
.yd1{bottom:349.840000pt;}
.y19f{bottom:350.240000pt;}
.yf5{bottom:353.424160pt;}
.y15a{bottom:353.520000pt;}
.y24{bottom:355.740320pt;}
.y1ed{bottom:358.736960pt;}
.y284{bottom:360.316000pt;}
.y270{bottom:360.868160pt;}
.y92{bottom:360.880000pt;}
.y190{bottom:361.792640pt;}
.y5b{bottom:361.840000pt;}
.y249{bottom:362.178720pt;}
.y19e{bottom:365.840080pt;}
.yd3{bottom:368.080000pt;}
.yf4{bottom:368.788160pt;}
.y12a{bottom:369.272000pt;}
.y159{bottom:369.952640pt;}
.y23{bottom:371.024160pt;}
.y1ec{bottom:374.100960pt;}
.y283{bottom:375.680000pt;}
.y26f{bottom:376.232160pt;}
.y18f{bottom:377.156640pt;}
.y91{bottom:377.424160pt;}
.y5a{bottom:377.520080pt;}
.y248{bottom:377.542720pt;}
.y19d{bottom:382.720000pt;}
.yf3{bottom:384.072000pt;}
.y129{bottom:384.636000pt;}
.y21f{bottom:384.880000pt;}
.y158{bottom:385.316640pt;}
.y22{bottom:386.388160pt;}
.y1eb{bottom:389.384800pt;}
.y282{bottom:391.520000pt;}
.y26e{bottom:391.596160pt;}
.y18e{bottom:392.520640pt;}
.y90{bottom:392.788160pt;}
.y247{bottom:392.826560pt;}
.y59{bottom:394.400000pt;}
.yce{bottom:396.560000pt;}
.y19c{bottom:399.268160pt;}
.yf2{bottom:399.436000pt;}
.y128{bottom:399.986240pt;}
.y157{bottom:400.680640pt;}
.y21e{bottom:400.880000pt;}
.y21{bottom:401.752160pt;}
.y1ea{bottom:404.748800pt;}
.y26d{bottom:406.845760pt;}
.y18d{bottom:407.804480pt;}
.y8f{bottom:408.152160pt;}
.y246{bottom:408.190560pt;}
.y281{bottom:409.680000pt;}
.y58{bottom:410.822080pt;}
.y19b{bottom:414.632160pt;}
.yf1{bottom:414.800000pt;}
.y127{bottom:415.270080pt;}
.y156{bottom:415.964480pt;}
.y21d{bottom:416.880000pt;}
.y20{bottom:417.036000pt;}
.y26c{bottom:419.324000pt;}
.y1e9{bottom:420.112800pt;}
.y18c{bottom:423.168480pt;}
.y8e{bottom:423.436000pt;}
.y245{bottom:423.554560pt;}
.y57{bottom:426.105920pt;}
.y19a{bottom:429.916000pt;}
.yf0{bottom:430.080880pt;}
.ycd{bottom:430.400080pt;}
.y126{bottom:430.634080pt;}
.y155{bottom:431.328480pt;}
.y1f{bottom:432.400000pt;}
.y21c{bottom:432.880000pt;}
.y1e8{bottom:435.396640pt;}
.y18b{bottom:438.532480pt;}
.y8d{bottom:438.800000pt;}
.y244{bottom:438.838400pt;}
.y56{bottom:441.469920pt;}
.y199{bottom:445.280000pt;}
.y154{bottom:446.692480pt;}
.y125{bottom:446.960000pt;}
.ycc{bottom:447.280000pt;}
.y1e{bottom:448.080000pt;}
.y21b{bottom:448.880000pt;}
.y1e7{bottom:450.760640pt;}
.y18a{bottom:453.816320pt;}
.y243{bottom:454.202400pt;}
.y8a{bottom:454.952800pt;}
.y8c{bottom:454.957440pt;}
.y55{bottom:456.833920pt;}
.y198{bottom:457.760000pt;}
.y124{bottom:459.440000pt;}
.y153{bottom:461.976320pt;}
.y88{bottom:463.035440pt;}
.ycb{bottom:463.784800pt;}
.y87{bottom:463.840000pt;}
.yef{bottom:463.991840pt;}
.y21a{bottom:464.880000pt;}
.y1d{bottom:465.120000pt;}
.y1e6{bottom:466.124640pt;}
.y123{bottom:466.150960pt;}
.y189{bottom:469.180320pt;}
.y242{bottom:469.486240pt;}
.y86{bottom:472.000000pt;}
.y54{bottom:472.117760pt;}
.y152{bottom:477.340320pt;}
.yca{bottom:479.068640pt;}
.yee{bottom:479.355840pt;}
.y219{bottom:480.800000pt;}
.y1e5{bottom:481.408480pt;}
.y1c{bottom:483.520000pt;}
.y188{bottom:484.544320pt;}
.y241{bottom:484.850240pt;}
.y53{bottom:487.481760pt;}
.y122{bottom:488.716000pt;}
.y89{bottom:491.915440pt;}
.y151{bottom:492.704320pt;}
.y8b{bottom:493.754640pt;}
.yc9{bottom:494.432640pt;}
.yed{bottom:494.791520pt;}
.y1e4{bottom:496.772480pt;}
.y187{bottom:499.828160pt;}
.y240{bottom:500.214240pt;}
.y1b{bottom:501.296800pt;}
.y52{bottom:502.765600pt;}
.y121{bottom:504.080000pt;}
.y85{bottom:505.196000pt;}
.y150{bottom:507.988160pt;}
.yc8{bottom:509.796640pt;}
.yec{bottom:510.315840pt;}
.y1e3{bottom:512.056320pt;}
.y218{bottom:512.160000pt;}
.y186{bottom:515.192160pt;}
.y23f{bottom:515.498080pt;}
.y120{bottom:516.560000pt;}
.y1a{bottom:516.660800pt;}
.y51{bottom:518.129600pt;}
.y84{bottom:520.560000pt;}
.y14f{bottom:523.352160pt;}
.yc7{bottom:525.080480pt;}
.y11f{bottom:525.519680pt;}
.y1e2{bottom:527.420320pt;}
.y217{bottom:528.160000pt;}
.y185{bottom:530.476000pt;}
.y23e{bottom:530.862080pt;}
.y1d4{bottom:531.997280pt;}
.y19{bottom:532.024800pt;}
.y50{bottom:533.493600pt;}
.y83{bottom:536.160080pt;}
.y14e{bottom:538.716160pt;}
.yc6{bottom:540.444480pt;}
.yeb{bottom:541.240640pt;}
.y1e1{bottom:542.784320pt;}
.y216{bottom:544.160000pt;}
.y184{bottom:545.745280pt;}
.y23d{bottom:546.226080pt;}
.y1d3{bottom:547.281120pt;}
.y18{bottom:547.308640pt;}
.y4f{bottom:548.777440pt;}
.y11e{bottom:552.400000pt;}
.y82{bottom:553.040000pt;}
.y14d{bottom:553.996000pt;}
.yc5{bottom:555.728320pt;}
.yea{bottom:556.524480pt;}
.y1e0{bottom:558.068160pt;}
.y215{bottom:560.160000pt;}
.y183{bottom:561.109280pt;}
.y23c{bottom:561.509920pt;}
.y1d2{bottom:562.645120pt;}
.y17{bottom:562.672640pt;}
.y4e{bottom:564.141440pt;}
.y11d{bottom:564.960000pt;}
.y14c{bottom:569.352160pt;}
.y81{bottom:569.591840pt;}
.yc4{bottom:571.092320pt;}
.ye9{bottom:571.888480pt;}
.y1df{bottom:573.432160pt;}
.y214{bottom:576.160000pt;}
.y182{bottom:576.393120pt;}
.y23b{bottom:576.873920pt;}
.y1d1{bottom:578.009120pt;}
.y16{bottom:578.036640pt;}
.y4d{bottom:579.505440pt;}
.y14b{bottom:584.716160pt;}
.y80{bottom:584.955840pt;}
.yc3{bottom:586.456320pt;}
.ye8{bottom:587.252480pt;}
.y1de{bottom:588.796160pt;}
.y213{bottom:591.520000pt;}
.y181{bottom:591.757120pt;}
.y23a{bottom:592.237920pt;}
.y1d0{bottom:593.292960pt;}
.y15{bottom:593.320480pt;}
.y4c{bottom:594.789280pt;}
.y1b3{bottom:594.864160pt;}
.y14a{bottom:599.992000pt;}
.y7e{bottom:600.391840pt;}
.y7f{bottom:600.400000pt;}
.yc2{bottom:601.740160pt;}
.ye7{bottom:602.536320pt;}
.y11c{bottom:603.760000pt;}
.y1dd{bottom:604.080000pt;}
.y212{bottom:606.800000pt;}
.y180{bottom:607.121120pt;}
.y239{bottom:607.521760pt;}
.y1cf{bottom:608.656960pt;}
.y14{bottom:608.684480pt;}
.y4b{bottom:610.153280pt;}
.y1b2{bottom:610.228160pt;}
.y149{bottom:615.356000pt;}
.y7d{bottom:615.916160pt;}
.yc1{bottom:617.104160pt;}
.ye6{bottom:617.900320pt;}
.y11b{bottom:619.022080pt;}
.y1dc{bottom:619.753440pt;}
.y238{bottom:620.000000pt;}
.y17f{bottom:622.404960pt;}
.y211{bottom:622.800000pt;}
.y1ce{bottom:624.020960pt;}
.y13{bottom:624.048480pt;}
.y4a{bottom:625.517280pt;}
.y1b1{bottom:625.592160pt;}
.y148{bottom:630.716160pt;}
.y7c{bottom:631.184160pt;}
.yc0{bottom:632.468160pt;}
.y2a5{bottom:632.720000pt;}
.ye5{bottom:633.264320pt;}
.y11a{bottom:634.386080pt;}
.y1db{bottom:636.633360pt;}
.y17e{bottom:637.768960pt;}
.y210{bottom:638.160000pt;}
.y1cd{bottom:639.304800pt;}
.y12{bottom:639.332320pt;}
.y49{bottom:640.801120pt;}
.y1b0{bottom:640.876000pt;}
.y147{bottom:645.992160pt;}
.y7b{bottom:646.548160pt;}
.ybf{bottom:647.752000pt;}
.y2a4{bottom:647.841840pt;}
.ye4{bottom:648.548160pt;}
.y119{bottom:650.712000pt;}
.y17d{bottom:653.132960pt;}
.y1da{bottom:653.513280pt;}
.y20f{bottom:653.520000pt;}
.y1cc{bottom:654.668800pt;}
.y11{bottom:654.696320pt;}
.y48{bottom:656.165120pt;}
.y146{bottom:661.356160pt;}
.y7a{bottom:661.912160pt;}
.ybe{bottom:663.116000pt;}
.ye3{bottom:663.912160pt;}
.y2a3{bottom:665.517120pt;}
.y118{bottom:665.995840pt;}
.y17c{bottom:668.416800pt;}
.y20e{bottom:669.520000pt;}
.y1cb{bottom:669.952640pt;}
.y10{bottom:669.980160pt;}
.y1d9{bottom:670.320000pt;}
.y47{bottom:671.529120pt;}
.y145{bottom:676.640000pt;}
.y79{bottom:677.196000pt;}
.ybd{bottom:678.480000pt;}
.ye2{bottom:679.196000pt;}
.y117{bottom:681.435360pt;}
.y2a2{bottom:683.112240pt;}
.y17b{bottom:683.780800pt;}
.y20d{bottom:684.800000pt;}
.y1ca{bottom:685.316640pt;}
.yf{bottom:685.344160pt;}
.y46{bottom:686.812960pt;}
.y78{bottom:692.560000pt;}
.ybc{bottom:694.080000pt;}
.ye1{bottom:694.560000pt;}
.y115{bottom:697.115680pt;}
.y116{bottom:697.120000pt;}
.y26b{bottom:698.200640pt;}
.y17a{bottom:699.144800pt;}
.y20c{bottom:700.160000pt;}
.y1c9{bottom:700.680640pt;}
.y2a1{bottom:700.707360pt;}
.ye{bottom:700.708160pt;}
.y45{bottom:702.176960pt;}
.y75{bottom:708.712800pt;}
.y77{bottom:708.722800pt;}
.ye0{bottom:710.240080pt;}
.y144{bottom:710.392160pt;}
.ybb{bottom:710.628000pt;}
.y114{bottom:712.640000pt;}
.y26a{bottom:713.564640pt;}
.y179{bottom:714.428640pt;}
.y1c8{bottom:715.964480pt;}
.yd{bottom:715.992000pt;}
.y20b{bottom:716.160000pt;}
.y73{bottom:716.795440pt;}
.y44{bottom:717.540960pt;}
.y72{bottom:717.600000pt;}
.y2a0{bottom:718.382640pt;}
.y143{bottom:725.756160pt;}
.yba{bottom:725.992000pt;}
.ydf{bottom:727.120000pt;}
.y269{bottom:728.848480pt;}
.y178{bottom:729.792640pt;}
.y1c7{bottom:731.328480pt;}
.yc{bottom:731.356000pt;}
.y20a{bottom:731.520000pt;}
.y113{bottom:732.240000pt;}
.y43{bottom:732.824800pt;}
.y29f{bottom:735.977760pt;}
.y110{bottom:740.327040pt;}
.y142{bottom:741.040000pt;}
.yb9{bottom:741.275840pt;}
.yde{bottom:744.160000pt;}
.y268{bottom:744.212480pt;}
.y177{bottom:745.156640pt;}
.y74{bottom:745.675440pt;}
.y1c6{bottom:746.692480pt;}
.yb{bottom:746.720000pt;}
.y209{bottom:746.800000pt;}
.y76{bottom:747.520000pt;}
.y42{bottom:748.188800pt;}
.y10f{bottom:749.278240pt;}
.y111{bottom:749.280000pt;}
.y29e{bottom:753.653040pt;}
.yb8{bottom:756.715680pt;}
.y141{bottom:756.960000pt;}
.y71{bottom:758.960000pt;}
.y267{bottom:759.576480pt;}
.y176{bottom:760.440480pt;}
.y1c5{bottom:761.976320pt;}
.y208{bottom:762.160000pt;}
.ya{bottom:762.320000pt;}
.y41{bottom:763.552800pt;}
.y112{bottom:771.120160pt;}
.y29d{bottom:771.248160pt;}
.yb7{bottom:772.240000pt;}
.y70{bottom:774.320000pt;}
.y266{bottom:774.860320pt;}
.y140{bottom:775.120000pt;}
.y175{bottom:775.804480pt;}
.y1c4{bottom:777.340320pt;}
.y207{bottom:778.160000pt;}
.y40{bottom:778.836640pt;}
.y9{bottom:779.440000pt;}
.yb4{bottom:788.392800pt;}
.yb6{bottom:788.402800pt;}
.y29c{bottom:788.843280pt;}
.y6f{bottom:789.920160pt;}
.y265{bottom:790.224320pt;}
.y10e{bottom:790.240000pt;}
.y174{bottom:791.168480pt;}
.y13f{bottom:791.668160pt;}
.y1c3{bottom:792.704320pt;}
.y3f{bottom:794.200640pt;}
.yb2{bottom:796.475440pt;}
.y8{bottom:797.276000pt;}
.yb1{bottom:797.280000pt;}
.y10d{bottom:805.490400pt;}
.y264{bottom:805.508160pt;}
.y173{bottom:806.452320pt;}
.y29b{bottom:806.518560pt;}
.y6e{bottom:806.800080pt;}
.y13e{bottom:807.032160pt;}
.y1c2{bottom:807.988160pt;}
.y205{bottom:809.440000pt;}
.y3e{bottom:809.484480pt;}
.y7{bottom:817.280000pt;}
.y10c{bottom:820.854400pt;}
.y263{bottom:820.872160pt;}
.y172{bottom:821.816320pt;}
.y13d{bottom:822.316000pt;}
.y1c1{bottom:823.352160pt;}
.y6d{bottom:823.680000pt;}
.y29a{bottom:824.113680pt;}
.y3d{bottom:824.848480pt;}
.yb3{bottom:825.355440pt;}
.yb5{bottom:827.200000pt;}
.y206{bottom:827.680000pt;}
.y6{bottom:828.240000pt;}
.y262{bottom:836.236160pt;}
.y10b{bottom:837.100160pt;}
.y13c{bottom:837.680000pt;}
.y1c0{bottom:838.716160pt;}
.yb0{bottom:838.720000pt;}
.y3c{bottom:840.212480pt;}
.y299{bottom:841.788960pt;}
.y5{bottom:845.680000pt;}
.y261{bottom:851.520000pt;}
.y10a{bottom:852.464160pt;}
.y13b{bottom:853.035440pt;}
.yaf{bottom:853.980160pt;}
.y1bf{bottom:854.000000pt;}
.y3b{bottom:855.496320pt;}
.y204{bottom:856.160000pt;}
.y298{bottom:859.384080pt;}
.y25f{bottom:864.640000pt;}
.y4{bottom:866.473440pt;}
.y109{bottom:867.828160pt;}
.yae{bottom:869.344160pt;}
.y1be{bottom:869.680000pt;}
.y3a{bottom:870.860320pt;}
.y203{bottom:872.160000pt;}
.y260{bottom:875.200000pt;}
.y297{bottom:876.979200pt;}
.y108{bottom:883.112000pt;}
.yad{bottom:884.708160pt;}
.y39{bottom:886.224320pt;}
.y202{bottom:888.160000pt;}
.y3{bottom:891.037440pt;}
.y296{bottom:894.654480pt;}
.y25e{bottom:896.000000pt;}
.y107{bottom:898.476000pt;}
.yac{bottom:899.992000pt;}
.y38{bottom:901.508160pt;}
.y25d{bottom:912.000000pt;}
.y295{bottom:912.249600pt;}
.y106{bottom:913.840000pt;}
.yab{bottom:915.356000pt;}
.y2{bottom:915.601440pt;}
.y37{bottom:916.872160pt;}
.y201{bottom:919.440000pt;}
.y25c{bottom:928.000000pt;}
.y105{bottom:929.440080pt;}
.y22a{bottom:929.680000pt;}
.y294{bottom:929.924880pt;}
.yaa{bottom:930.720000pt;}
.y36{bottom:932.236160pt;}
.y1{bottom:940.080000pt;}
.y25b{bottom:944.000000pt;}
.ya9{bottom:946.320000pt;}
.y35{bottom:947.520000pt;}
.h38{height:15.280000pt;}
.h39{height:15.281333pt;}
.h37{height:15.360000pt;}
.h4{height:24.013125pt;}
.h3c{height:29.571719pt;}
.h18{height:30.640000pt;}
.h1a{height:30.641333pt;}
.h1b{height:30.720000pt;}
.h33{height:36.192031pt;}
.h8{height:36.218125pt;}
.h32{height:37.105312pt;}
.h5{height:37.131406pt;}
.h2f{height:37.146766pt;}
.h31{height:37.147406pt;}
.h2e{height:37.162766pt;}
.h30{height:37.163406pt;}
.h3a{height:39.030469pt;}
.h34{height:39.659531pt;}
.h7{height:39.688125pt;}
.h3{height:40.688906pt;}
.hc{height:41.982265pt;}
.ha{height:42.297145pt;}
.hd{height:42.589125pt;}
.h21{height:42.605125pt;}
.h6{height:43.375000pt;}
.h9{height:44.468750pt;}
.h28{height:44.523790pt;}
.h13{height:44.532110pt;}
.h3b{height:44.605710pt;}
.h36{height:44.768270pt;}
.h35{height:44.847630pt;}
.h1c{height:46.000000pt;}
.h19{height:46.001333pt;}
.h2{height:55.572812pt;}
.h1{height:57.905625pt;}
.h25{height:69.692274pt;}
.h20{height:72.323314pt;}
.h1d{height:74.626034pt;}
.h1f{height:77.061234pt;}
.h2b{height:79.902194pt;}
.h2d{height:79.945074pt;}
.h10{height:95.665781pt;}
.h24{height:105.291406pt;}
.hb{height:136.548594pt;}
.h17{height:136.565874pt;}
.h1e{height:136.582514pt;}
.h2a{height:138.472434pt;}
.h22{height:141.037554pt;}
.h14{height:143.934856pt;}
.h15{height:148.412274pt;}
.h27{height:163.428594pt;}
.h2c{height:163.445234pt;}
.h23{height:172.360434pt;}
.hf{height:172.406834pt;}
.h29{height:176.842354pt;}
.h26{height:188.733554pt;}
.h12{height:204.697394pt;}
.h16{height:204.718834pt;}
.h11{height:204.737394pt;}
.he{height:209.482354pt;}
.h0{height:1056.000000pt;}
.w3{width:52.961333pt;}
.w2{width:78.400000pt;}
.w6{width:103.361333pt;}
.w4{width:104.160000pt;}
.w9{width:107.838667pt;}
.w5{width:110.718667pt;}
.wa{width:114.161333pt;}
.wb{width:131.280000pt;}
.w8{width:173.441333pt;}
.wf{width:173.600000pt;}
.wc{width:175.680000pt;}
.wd{width:177.440000pt;}
.we{width:353.760000pt;}
.w7{width:526.721333pt;}
.w1{width:528.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x23{left:7.200000pt;}
.x5a{left:8.720000pt;}
.x55{left:29.840000pt;}
.x4a{left:39.360000pt;}
.x56{left:43.360000pt;}
.x47{left:52.960000pt;}
.x58{left:57.600000pt;}
.x57{left:58.720000pt;}
.x53{left:64.240000pt;}
.x46{left:66.320000pt;}
.x54{left:69.440000pt;}
.x4e{left:73.280000pt;}
.x50{left:76.640000pt;}
.x4f{left:78.720000pt;}
.x59{left:79.920000pt;}
.x21{left:100.480000pt;}
.x4d{left:102.560000pt;}
.x42{left:104.400000pt;}
.x45{left:106.240000pt;}
.x41{left:113.280000pt;}
.x44{left:133.680000pt;}
.x43{left:135.920000pt;}
.x49{left:137.840000pt;}
.x1{left:144.000000pt;}
.x48{left:145.360000pt;}
.x40{left:151.520000pt;}
.x52{left:155.520000pt;}
.x51{left:165.920000pt;}
.x2b{left:167.994560pt;}
.x3d{left:189.680000pt;}
.x34{left:192.000000pt;}
.x19{left:199.200000pt;}
.x1a{left:214.640000pt;}
.x24{left:222.400000pt;}
.x2a{left:229.600000pt;}
.x22{left:264.000000pt;}
.x25{left:275.360000pt;}
.xc{left:277.840000pt;}
.x36{left:279.520000pt;}
.x26{left:282.560000pt;}
.x37{left:293.040000pt;}
.x12{left:304.962480pt;}
.x2f{left:318.319760pt;}
.x4b{left:320.320000pt;}
.x14{left:324.643440pt;}
.x1b{left:327.200000pt;}
.x13{left:329.604240pt;}
.x3{left:336.000000pt;}
.xd{left:338.480000pt;}
.x5c{left:347.280000pt;}
.xa{left:348.720000pt;}
.x35{left:352.320000pt;}
.x1c{left:353.442480pt;}
.x4{left:362.242480pt;}
.xb{left:364.080000pt;}
.x2{left:368.080000pt;}
.x1e{left:373.123440pt;}
.x1d{left:378.084240pt;}
.x27{left:379.520000pt;}
.x6{left:381.919200pt;}
.xf{left:384.483440pt;}
.x5{left:386.880000pt;}
.xe{left:389.444240pt;}
.x30{left:391.439040pt;}
.x38{left:403.275760pt;}
.x9{left:408.000000pt;}
.x2d{left:418.401040pt;}
.x2c{left:419.994960pt;}
.x3e{left:425.920000pt;}
.x3a{left:429.226720pt;}
.x2e{left:432.000000pt;}
.x16{left:450.560080pt;}
.x15{left:455.680000pt;}
.x32{left:468.880960pt;}
.x33{left:472.240000pt;}
.x20{left:475.680080pt;}
.x1f{left:480.800000pt;}
.x28{left:490.240000pt;}
.x8{left:494.240080pt;}
.x11{left:496.716480pt;}
.x31{left:498.240000pt;}
.x7{left:499.360000pt;}
.x10{left:501.836400pt;}
.x39{left:514.958400pt;}
.x4c{left:521.520000pt;}
.x3f{left:540.080000pt;}
.x18{left:551.920720pt;}
.x17{left:557.040640pt;}
.x3c{left:575.200000pt;}
.x5b{left:581.680000pt;}
.x29{left:593.600000pt;}
.x3b{left:671.973840pt;}
}




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